
    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_c0ba70ad3759dfab026b2b63.woff2')format("woff");}.ff1_c00000{font-family:ff1_c00000;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00000;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff2_c00000{font-family:ff2_c00000;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00000{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00000{vertical-align:0.000000px;}
.ls0_c00000{letter-spacing:0.000000px;}
.sc__c00000{text-shadow:none;}
.sc0_c00000{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00000{-webkit-text-stroke:0px transparent;}
.sc0_c00000{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00000{word-spacing:0.000000px;}
._6_c00000{margin-left:-17.760000px;}
._4_c00000{margin-left:-14.220000px;}
._2_c00000{margin-left:-11.760000px;}
._0_c00000{margin-left:-8.520000px;}
._3_c00000{margin-left:-7.440000px;}
._1_c00000{margin-left:-5.280000px;}
._5_c00000{margin-left:-4.200000px;}
.fc2_c00000{color:transparent;}
.fc1_c00000{color:rgb(128,128,128);}
.fc0_c00000{color:rgb(0,0,0);}
.fs1_c00000{font-size:48.000000px;}
.fs0_c00000{font-size:60.000000px;}
.y0_c00000{bottom:0.000000px;}
.y3_c00000{bottom:3.105000px;}
.y2_c00000{bottom:7.228363px;}
.y1_c00000{bottom:50.250000px;}
.h3_c00000{height:13.200074px;}
.h4_c00000{height:43.804688px;}
.h2_c00000{height:58.857422px;}
.h1_c00000{height:1017.750000px;}
.h0_c00000{height:1017.900000px;}
.w2_c00000{width:104.875500px;}
.w1_c00000{width:748.500000px;}
.w0_c00000{width:748.725000px;}
.x0_c00000{left:0.000000px;}
.x2_c00000{left:326.176758px;}
.x1_c00000{left:662.550000px;}
@media print{
.v0_c00000{vertical-align:0.000000pt;}
.ls0_c00000{letter-spacing:0.000000pt;}
.ws0_c00000{word-spacing:0.000000pt;}
._6_c00000{margin-left:-15.786667pt;}
._4_c00000{margin-left:-12.640000pt;}
._2_c00000{margin-left:-10.453333pt;}
._0_c00000{margin-left:-7.573333pt;}
._3_c00000{margin-left:-6.613333pt;}
._1_c00000{margin-left:-4.693333pt;}
._5_c00000{margin-left:-3.733333pt;}
.fs1_c00000{font-size:42.666667pt;}
.fs0_c00000{font-size:53.333333pt;}
.y0_c00000{bottom:0.000000pt;}
.y3_c00000{bottom:2.760000pt;}
.y2_c00000{bottom:6.425212pt;}
.y1_c00000{bottom:44.666667pt;}
.h3_c00000{height:11.733399pt;}
.h4_c00000{height:38.937500pt;}
.h2_c00000{height:52.317708pt;}
.h1_c00000{height:904.666667pt;}
.h0_c00000{height:904.800000pt;}
.w2_c00000{width:93.222667pt;}
.w1_c00000{width:665.333333pt;}
.w0_c00000{width:665.533333pt;}
.x0_c00000{left:0.000000pt;}
.x2_c00000{left:289.934896pt;}
.x1_c00000{left:588.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_569492bc12177d2d1aa0c463.woff2')format("woff");}.ff1_c00001{font-family:ff1_c00001;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00001;src:url('chunks/assets/font_9d6d8d1c9bef3f178ae11fd4.woff2')format("woff");}.ff2_c00001{font-family:ff2_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00001;src:url('chunks/assets/font_c1d86558b8916b6382f5c16b.woff2')format("woff");}.ff3_c00001{font-family:ff3_c00001;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00001;src:url('chunks/assets/font_0d6777cd4a6d842c2e7518d2.woff2')format("woff");}.ff4_c00001{font-family:ff4_c00001;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00001;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c00001{font-family:ff5_c00001;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00001{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00001{vertical-align:0.000000px;}
.v1_c00001{vertical-align:177.000000px;}
.ls2_c00001{letter-spacing:-9.000000px;}
.ls3_c00001{letter-spacing:-6.000000px;}
.ls1_c00001{letter-spacing:0.000000px;}
.ls4_c00001{letter-spacing:21.000000px;}
.ls0_c00001{letter-spacing:1313.724000px;}
.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;}
}
.ws1_c00001{word-spacing:-35.124000px;}
.ws0_c00001{word-spacing:-17.352000px;}
.ws2_c00001{word-spacing:0.000000px;}
._0_c00001{margin-left:-54.288000px;}
._7_c00001{margin-left:-50.256000px;}
._3_c00001{margin-left:-44.352000px;}
._8_c00001{margin-left:-42.624000px;}
._4_c00001{margin-left:-39.456000px;}
._5_c00001{margin-left:-37.728000px;}
._a_c00001{margin-left:-29.232000px;}
._b_c00001{margin-left:-26.928000px;}
._1_c00001{margin-left:-24.480000px;}
._2_c00001{margin-left:-23.040000px;}
._12_c00001{margin-left:-13.446000px;}
._11_c00001{margin-left:-10.368000px;}
._f_c00001{margin-left:-6.885000px;}
._14_c00001{margin-left:-1.032000px;}
._c_c00001{width:1.377000px;}
._9_c00001{width:5.184000px;}
._6_c00001{width:9.936000px;}
._18_c00001{width:28.080000px;}
._19_c00001{width:29.664000px;}
._10_c00001{width:34.992000px;}
._d_c00001{width:45.603000px;}
._e_c00001{width:47.871000px;}
._15_c00001{width:54.189000px;}
._17_c00001{width:75.744000px;}
._16_c00001{width:85.296000px;}
._13_c00001{width:86.961000px;}
.fc2_c00001{color:transparent;}
.fc1_c00001{color:rgb(128,128,128);}
.fc0_c00001{color:rgb(0,0,0);}
.fs6_c00001{font-size:48.000000px;}
.fs5_c00001{font-size:66.000000px;}
.fs4_c00001{font-size:72.000000px;}
.fs1_c00001{font-size:81.000000px;}
.fs2_c00001{font-size:102.000000px;}
.fs3_c00001{font-size:132.000000px;}
.fs0_c00001{font-size:144.000000px;}
.y0_c00001{bottom:0.000000px;}
.y7_c00001{bottom:3.105000px;}
.y6_c00001{bottom:7.228369px;}
.y4_c00001{bottom:547.020000px;}
.y5_c00001{bottom:566.970000px;}
.y3_c00001{bottom:585.270000px;}
.y2_c00001{bottom:704.070000px;}
.y1_c00001{bottom:899.370000px;}
.h7_c00001{height:13.200073px;}
.h8_c00001{height:43.804688px;}
.h4_c00001{height:79.497070px;}
.h6_c00001{height:84.269531px;}
.h3_c00001{height:129.143555px;}
.h2_c00001{height:182.320312px;}
.h5_c00001{height:261.269531px;}
.h1_c00001{height:999.750000px;}
.h0_c00001{height:1000.050000px;}
.w2_c00001{width:104.875500px;}
.w1_c00001{width:710.250000px;}
.w0_c00001{width:710.400000px;}
.x0_c00001{left:0.000000px;}
.x1_c00001{left:231.450000px;}
.x4_c00001{left:307.014267px;}
.x3_c00001{left:333.450000px;}
.x2_c00001{left:686.700000px;}
@media print{
.v0_c00001{vertical-align:0.000000pt;}
.v1_c00001{vertical-align:157.333333pt;}
.ls2_c00001{letter-spacing:-8.000000pt;}
.ls3_c00001{letter-spacing:-5.333333pt;}
.ls1_c00001{letter-spacing:0.000000pt;}
.ls4_c00001{letter-spacing:18.666667pt;}
.ls0_c00001{letter-spacing:1167.754667pt;}
.ws1_c00001{word-spacing:-31.221333pt;}
.ws0_c00001{word-spacing:-15.424000pt;}
.ws2_c00001{word-spacing:0.000000pt;}
._0_c00001{margin-left:-48.256000pt;}
._7_c00001{margin-left:-44.672000pt;}
._3_c00001{margin-left:-39.424000pt;}
._8_c00001{margin-left:-37.888000pt;}
._4_c00001{margin-left:-35.072000pt;}
._5_c00001{margin-left:-33.536000pt;}
._a_c00001{margin-left:-25.984000pt;}
._b_c00001{margin-left:-23.936000pt;}
._1_c00001{margin-left:-21.760000pt;}
._2_c00001{margin-left:-20.480000pt;}
._12_c00001{margin-left:-11.952000pt;}
._11_c00001{margin-left:-9.216000pt;}
._f_c00001{margin-left:-6.120000pt;}
._14_c00001{margin-left:-0.917333pt;}
._c_c00001{width:1.224000pt;}
._9_c00001{width:4.608000pt;}
._6_c00001{width:8.832000pt;}
._18_c00001{width:24.960000pt;}
._19_c00001{width:26.368000pt;}
._10_c00001{width:31.104000pt;}
._d_c00001{width:40.536000pt;}
._e_c00001{width:42.552000pt;}
._15_c00001{width:48.168000pt;}
._17_c00001{width:67.328000pt;}
._16_c00001{width:75.818667pt;}
._13_c00001{width:77.298667pt;}
.fs6_c00001{font-size:42.666667pt;}
.fs5_c00001{font-size:58.666667pt;}
.fs4_c00001{font-size:64.000000pt;}
.fs1_c00001{font-size:72.000000pt;}
.fs2_c00001{font-size:90.666667pt;}
.fs3_c00001{font-size:117.333333pt;}
.fs0_c00001{font-size:128.000000pt;}
.y0_c00001{bottom:0.000000pt;}
.y7_c00001{bottom:2.760000pt;}
.y6_c00001{bottom:6.425217pt;}
.y4_c00001{bottom:486.240000pt;}
.y5_c00001{bottom:503.973333pt;}
.y3_c00001{bottom:520.240000pt;}
.y2_c00001{bottom:625.840000pt;}
.y1_c00001{bottom:799.440000pt;}
.h7_c00001{height:11.733399pt;}
.h8_c00001{height:38.937500pt;}
.h4_c00001{height:70.664062pt;}
.h6_c00001{height:74.906250pt;}
.h3_c00001{height:114.794271pt;}
.h2_c00001{height:162.062500pt;}
.h5_c00001{height:232.239583pt;}
.h1_c00001{height:888.666667pt;}
.h0_c00001{height:888.933333pt;}
.w2_c00001{width:93.222667pt;}
.w1_c00001{width:631.333333pt;}
.w0_c00001{width:631.466667pt;}
.x0_c00001{left:0.000000pt;}
.x1_c00001{left:205.733333pt;}
.x4_c00001{left:272.901571pt;}
.x3_c00001{left:296.400000pt;}
.x2_c00001{left:610.400000pt;}
}





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

.ir_c00002:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00002{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00002;src:url('chunks/assets/font_95212766c372234498b90dc3.woff2')format("woff");}.ff1_c00002{font-family:ff1_c00002;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00002;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff2_c00002{font-family:ff2_c00002;line-height:1.219238;font-style: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;}
.ls1_c00002{letter-spacing:0.000000px;}
.ls0_c00002{letter-spacing:3.000000px;}
.sc__c00002{text-shadow:none;}
.sc0_c00002{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00002{-webkit-text-stroke:0px transparent;}
.sc0_c00002{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00002{word-spacing:-26.250000px;}
.ws1_c00002{word-spacing:0.000000px;}
._5_c00002{margin-left:-42.966000px;}
._d_c00002{margin-left:-38.874000px;}
._9_c00002{margin-left:-36.828000px;}
._3_c00002{margin-left:-29.505000px;}
._6_c00002{margin-left:-24.645000px;}
._2_c00002{margin-left:-22.878000px;}
._c_c00002{margin-left:-20.460000px;}
._0_c00002{margin-left:-17.763000px;}
._8_c00002{margin-left:-12.741000px;}
._a_c00002{margin-left:-10.044000px;}
._b_c00002{margin-left:-8.184000px;}
._1_c00002{width:5.208000px;}
._4_c00002{width:66.774000px;}
._7_c00002{width:104.532000px;}
.fc2_c00002{color:transparent;}
.fc1_c00002{color:rgb(128,128,128);}
.fc0_c00002{color:rgb(0,0,0);}
.fs1_c00002{font-size:48.000000px;}
.fs0_c00002{font-size:93.000000px;}
.y0_c00002{bottom:0.000000px;}
.y5_c00002{bottom:3.105000px;}
.y4_c00002{bottom:7.228369px;}
.y3_c00002{bottom:766.470000px;}
.y2_c00002{bottom:836.970000px;}
.y1_c00002{bottom:849.720000px;}
.h3_c00002{height:13.200073px;}
.h4_c00002{height:43.804688px;}
.h2_c00002{height:91.274414px;}
.h1_c00002{height:1001.250000px;}
.h0_c00002{height:1001.400000px;}
.w2_c00002{width:104.875500px;}
.w1_c00002{width:693.000000px;}
.w0_c00002{width:693.075000px;}
.x0_c00002{left:0.000000px;}
.x4_c00002{left:298.351730px;}
.x2_c00002{left:440.100000px;}
.x1_c00002{left:458.700000px;}
.x3_c00002{left:489.600000px;}
@media print{
.v0_c00002{vertical-align:0.000000pt;}
.ls1_c00002{letter-spacing:0.000000pt;}
.ls0_c00002{letter-spacing:2.666667pt;}
.ws0_c00002{word-spacing:-23.333333pt;}
.ws1_c00002{word-spacing:0.000000pt;}
._5_c00002{margin-left:-38.192000pt;}
._d_c00002{margin-left:-34.554667pt;}
._9_c00002{margin-left:-32.736000pt;}
._3_c00002{margin-left:-26.226667pt;}
._6_c00002{margin-left:-21.906667pt;}
._2_c00002{margin-left:-20.336000pt;}
._c_c00002{margin-left:-18.186667pt;}
._0_c00002{margin-left:-15.789333pt;}
._8_c00002{margin-left:-11.325333pt;}
._a_c00002{margin-left:-8.928000pt;}
._b_c00002{margin-left:-7.274667pt;}
._1_c00002{width:4.629333pt;}
._4_c00002{width:59.354667pt;}
._7_c00002{width:92.917333pt;}
.fs1_c00002{font-size:42.666667pt;}
.fs0_c00002{font-size:82.666667pt;}
.y0_c00002{bottom:0.000000pt;}
.y5_c00002{bottom:2.760000pt;}
.y4_c00002{bottom:6.425217pt;}
.y3_c00002{bottom:681.306667pt;}
.y2_c00002{bottom:743.973333pt;}
.y1_c00002{bottom:755.306667pt;}
.h3_c00002{height:11.733399pt;}
.h4_c00002{height:38.937500pt;}
.h2_c00002{height:81.132812pt;}
.h1_c00002{height:890.000000pt;}
.h0_c00002{height:890.133333pt;}
.w2_c00002{width:93.222667pt;}
.w1_c00002{width:616.000000pt;}
.w0_c00002{width:616.066667pt;}
.x0_c00002{left:0.000000pt;}
.x4_c00002{left:265.201538pt;}
.x2_c00002{left:391.200000pt;}
.x1_c00002{left:407.733333pt;}
.x3_c00002{left:435.200000pt;}
}





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

.ir_c00003:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00003{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00003;src:url('chunks/assets/font_24cccc0a7883ea9341222341.woff2')format("woff");}.ff1_c00003{font-family:ff1_c00003;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00003;src:url('chunks/assets/font_bfe76ff5c85e4859ccfe24c7.woff2')format("woff");}.ff2_c00003{font-family:ff2_c00003;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00003;src:url('chunks/assets/font_20568fe4eab1c16f624c0c6d.woff2')format("woff");}.ff3_c00003{font-family:ff3_c00003;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00003;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff4_c00003{font-family:ff4_c00003;line-height:1.219238;font-style: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);}
.v1_c00003{vertical-align:-130.800000px;}
.v0_c00003{vertical-align:0.000000px;}
.ls3_c00003{letter-spacing:-6.000000px;}
.ls1_c00003{letter-spacing:0.000000px;}
.ls2_c00003{letter-spacing:3.000000px;}
.ls0_c00003{letter-spacing:10.020000px;}
.sc__c00003{text-shadow:none;}
.sc0_c00003{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00003{-webkit-text-stroke:0px transparent;}
.sc0_c00003{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00003{word-spacing:-20.250000px;}
.ws1_c00003{word-spacing:-18.582000px;}
.ws2_c00003{word-spacing:0.000000px;}
._c_c00003{margin-left:-26.214000px;}
._b_c00003{margin-left:-23.472000px;}
._9_c00003{margin-left:-22.425000px;}
._6_c00003{margin-left:-16.926000px;}
._5_c00003{margin-left:-14.136000px;}
._1_c00003{margin-left:-11.178000px;}
._4_c00003{margin-left:-9.882000px;}
._0_c00003{margin-left:-6.885000px;}
._2_c00003{margin-left:-5.427000px;}
._3_c00003{margin-left:-3.159000px;}
._8_c00003{width:1.953000px;}
._7_c00003{width:11.532000px;}
._a_c00003{width:24.582000px;}
.fc2_c00003{color:transparent;}
.fc1_c00003{color:rgb(128,128,128);}
.fc0_c00003{color:rgb(0,0,0);}
.fs4_c00003{font-size:48.000000px;}
.fs2_c00003{font-size:60.000000px;}
.fs0_c00003{font-size:81.000000px;}
.fs1_c00003{font-size:93.000000px;}
.fs3_c00003{font-size:102.000000px;}
.y0_c00003{bottom:0.000000px;}
.y7_c00003{bottom:3.105000px;}
.y6_c00003{bottom:7.228369px;}
.y5_c00003{bottom:33.420000px;}
.y4_c00003{bottom:332.370000px;}
.y3_c00003{bottom:416.370000px;}
.y2_c00003{bottom:460.020000px;}
.y1_c00003{bottom:670.320000px;}
.h5_c00003{height:13.200073px;}
.h6_c00003{height:43.804688px;}
.h2_c00003{height:79.497070px;}
.h3_c00003{height:91.274414px;}
.h4_c00003{height:129.143555px;}
.h1_c00003{height:999.750000px;}
.h0_c00003{height:1000.050000px;}
.w2_c00003{width:104.875500px;}
.w1_c00003{width:702.750000px;}
.w0_c00003{width:702.825000px;}
.x0_c00003{left:0.000000px;}
.x4_c00003{left:156.900000px;}
.x2_c00003{left:157.950000px;}
.x3_c00003{left:193.650000px;}
.x5_c00003{left:210.150000px;}
.x6_c00003{left:303.226730px;}
.x1_c00003{left:657.000000px;}
@media print{
.v1_c00003{vertical-align:-116.266667pt;}
.v0_c00003{vertical-align:0.000000pt;}
.ls3_c00003{letter-spacing:-5.333333pt;}
.ls1_c00003{letter-spacing:0.000000pt;}
.ls2_c00003{letter-spacing:2.666667pt;}
.ls0_c00003{letter-spacing:8.906667pt;}
.ws0_c00003{word-spacing:-18.000000pt;}
.ws1_c00003{word-spacing:-16.517333pt;}
.ws2_c00003{word-spacing:0.000000pt;}
._c_c00003{margin-left:-23.301333pt;}
._b_c00003{margin-left:-20.864000pt;}
._9_c00003{margin-left:-19.933333pt;}
._6_c00003{margin-left:-15.045333pt;}
._5_c00003{margin-left:-12.565333pt;}
._1_c00003{margin-left:-9.936000pt;}
._4_c00003{margin-left:-8.784000pt;}
._0_c00003{margin-left:-6.120000pt;}
._2_c00003{margin-left:-4.824000pt;}
._3_c00003{margin-left:-2.808000pt;}
._8_c00003{width:1.736000pt;}
._7_c00003{width:10.250667pt;}
._a_c00003{width:21.850667pt;}
.fs4_c00003{font-size:42.666667pt;}
.fs2_c00003{font-size:53.333333pt;}
.fs0_c00003{font-size:72.000000pt;}
.fs1_c00003{font-size:82.666667pt;}
.fs3_c00003{font-size:90.666667pt;}
.y0_c00003{bottom:0.000000pt;}
.y7_c00003{bottom:2.760000pt;}
.y6_c00003{bottom:6.425217pt;}
.y5_c00003{bottom:29.706667pt;}
.y4_c00003{bottom:295.440000pt;}
.y3_c00003{bottom:370.106667pt;}
.y2_c00003{bottom:408.906667pt;}
.y1_c00003{bottom:595.840000pt;}
.h5_c00003{height:11.733399pt;}
.h6_c00003{height:38.937500pt;}
.h2_c00003{height:70.664062pt;}
.h3_c00003{height:81.132812pt;}
.h4_c00003{height:114.794271pt;}
.h1_c00003{height:888.666667pt;}
.h0_c00003{height:888.933333pt;}
.w2_c00003{width:93.222667pt;}
.w1_c00003{width:624.666667pt;}
.w0_c00003{width:624.733333pt;}
.x0_c00003{left:0.000000pt;}
.x4_c00003{left:139.466667pt;}
.x2_c00003{left:140.400000pt;}
.x3_c00003{left:172.133333pt;}
.x5_c00003{left:186.800000pt;}
.x6_c00003{left:269.534871pt;}
.x1_c00003{left:584.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_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_f464b37fbe140c8c2351a936.woff2')format("woff");}.ff1_c00004{font-family:ff1_c00004;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00004;src:url('chunks/assets/font_1a17d610ab175c00c77b4571.woff2')format("woff");}.ff2_c00004{font-family:ff2_c00004;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00004;src:url('chunks/assets/font_3614feec2aff527b56ce007e.woff2')format("woff");}.ff3_c00004{font-family:ff3_c00004;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00004;src:url('chunks/assets/font_94f287b19c4cb6c36e680783.woff2')format("woff");}.ff4_c00004{font-family:ff4_c00004;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00004;src:url('chunks/assets/font_5ccbaf3e4c61d92a1c7cb4a7.woff2')format("woff");}.ff5_c00004{font-family:ff5_c00004;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00004;src:url('chunks/assets/font_cdbf33fda591fbc937d15461.woff2')format("woff");}.ff6_c00004{font-family:ff6_c00004;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00004;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c00004{font-family:ff7_c00004;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00004{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,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;}
.v1_c00004{vertical-align:66.000000px;}
.lsb_c00004{letter-spacing:-9.000000px;}
.ls4_c00004{letter-spacing:0.000000px;}
.ls7_c00004{letter-spacing:3.000000px;}
.ls9_c00004{letter-spacing:6.000000px;}
.ls3_c00004{letter-spacing:8.700000px;}
.ls2_c00004{letter-spacing:13.350000px;}
.ls8_c00004{letter-spacing:15.000000px;}
.ls1_c00004{letter-spacing:18.000000px;}
.lsa_c00004{letter-spacing:21.000000px;}
.ls5_c00004{letter-spacing:36.000000px;}
.ls6_c00004{letter-spacing:63.000000px;}
.ls0_c00004{letter-spacing:1990.200000px;}
.sc__c00004{text-shadow:none;}
.sc0_c00004{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00004{-webkit-text-stroke:0px transparent;}
.sc0_c00004{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00004{word-spacing:-38.250000px;}
.ws4_c00004{word-spacing:-37.812000px;}
.ws0_c00004{word-spacing:-17.352000px;}
.ws3_c00004{word-spacing:-14.211000px;}
.ws6_c00004{word-spacing:-3.159000px;}
.ws9_c00004{word-spacing:0.000000px;}
.ws7_c00004{word-spacing:1.728000px;}
.ws5_c00004{word-spacing:4.632000px;}
.ws8_c00004{word-spacing:7.938000px;}
.ws1_c00004{word-spacing:13.896000px;}
._10_c00004{margin-left:-34.584000px;}
._f_c00004{margin-left:-33.264000px;}
._11_c00004{margin-left:-23.436000px;}
._20_c00004{margin-left:-19.566000px;}
._21_c00004{margin-left:-17.100000px;}
._0_c00004{margin-left:-14.400000px;}
._29_c00004{margin-left:-11.937000px;}
._28_c00004{margin-left:-10.587000px;}
._26_c00004{margin-left:-8.751000px;}
._24_c00004{margin-left:-7.560000px;}
._1c_c00004{margin-left:-5.940000px;}
._1b_c00004{margin-left:-4.356000px;}
._c_c00004{margin-left:-2.772000px;}
._d_c00004{margin-left:-1.584000px;}
._5_c00004{width:1.701000px;}
._14_c00004{width:3.720000px;}
._13_c00004{width:5.022000px;}
._27_c00004{width:7.629000px;}
._3_c00004{width:8.667000px;}
._2_c00004{width:10.530000px;}
._1e_c00004{width:11.535000px;}
._1_c00004{width:12.636000px;}
._1d_c00004{width:13.974000px;}
._4_c00004{width:15.741000px;}
._19_c00004{width:17.388000px;}
._16_c00004{width:18.684000px;}
._18_c00004{width:19.872000px;}
._15_c00004{width:21.384000px;}
._17_c00004{width:22.464000px;}
._2e_c00004{width:23.859000px;}
._2b_c00004{width:25.356000px;}
._25_c00004{width:26.712000px;}
._22_c00004{width:28.788000px;}
._31_c00004{width:32.832000px;}
._30_c00004{width:35.244000px;}
._2a_c00004{width:37.368000px;}
._b_c00004{width:45.036000px;}
._2f_c00004{width:50.661000px;}
._2d_c00004{width:52.488000px;}
._e_c00004{width:55.704000px;}
._9_c00004{width:56.835000px;}
._2c_c00004{width:58.536000px;}
._a_c00004{width:61.236000px;}
._8_c00004{width:64.476000px;}
._7_c00004{width:68.472000px;}
._6_c00004{width:73.548000px;}
._1a_c00004{width:74.652000px;}
._12_c00004{width:80.538000px;}
._1f_c00004{width:120.825000px;}
._23_c00004{width:201.552000px;}
._32_c00004{width:590.589000px;}
.fc2_c00004{color:transparent;}
.fc1_c00004{color:rgb(128,128,128);}
.fc0_c00004{color:rgb(0,0,0);}
.fs9_c00004{font-size:48.000000px;}
.fs0_c00004{font-size:72.000000px;}
.fs8_c00004{font-size:75.000000px;}
.fs1_c00004{font-size:81.000000px;}
.fs6_c00004{font-size:84.000000px;}
.fs7_c00004{font-size:87.000000px;}
.fs5_c00004{font-size:90.000000px;}
.fs3_c00004{font-size:93.000000px;}
.fs4_c00004{font-size:108.000000px;}
.fs2_c00004{font-size:132.000000px;}
.y0_c00004{bottom:0.000000px;}
.y17_c00004{bottom:3.105000px;}
.y16_c00004{bottom:7.228371px;}
.y15_c00004{bottom:96.165000px;}
.y12_c00004{bottom:126.315000px;}
.y14_c00004{bottom:137.115000px;}
.y13_c00004{bottom:158.265000px;}
.y11_c00004{bottom:433.815000px;}
.y10_c00004{bottom:475.965000px;}
.yf_c00004{bottom:516.765000px;}
.ye_c00004{bottom:565.365000px;}
.yd_c00004{bottom:586.965000px;}
.yc_c00004{bottom:628.215000px;}
.yb_c00004{bottom:657.915000px;}
.ya_c00004{bottom:701.415000px;}
.y9_c00004{bottom:726.315000px;}
.y8_c00004{bottom:768.915000px;}
.y2_c00004{bottom:790.815000px;}
.y1_c00004{bottom:798.915000px;}
.y7_c00004{bottom:818.115000px;}
.y6_c00004{bottom:844.065000px;}
.y5_c00004{bottom:878.265000px;}
.y4_c00004{bottom:925.065000px;}
.y3_c00004{bottom:950.865000px;}
.hc_c00004{height:13.200074px;}
.hd_c00004{height:43.804688px;}
.h4_c00004{height:79.497070px;}
.ha_c00004{height:82.441406px;}
.h2_c00004{height:84.269531px;}
.h9_c00004{height:88.286133px;}
.h8_c00004{height:88.330078px;}
.hb_c00004{height:91.176000px;}
.h6_c00004{height:91.274414px;}
.h7_c00004{height:108.843750px;}
.h3_c00004{height:150.269531px;}
.h5_c00004{height:167.126953px;}
.h1_c00004{height:993.000000px;}
.h0_c00004{height:993.075000px;}
.w2_c00004{width:104.875500px;}
.w0_c00004{width:686.850000px;}
.w1_c00004{width:687.000000px;}
.x0_c00004{left:0.000000px;}
.x1_c00004{left:32.100000px;}
.xc_c00004{left:46.200000px;}
.xa_c00004{left:49.350000px;}
.xd_c00004{left:52.650000px;}
.x11_c00004{left:53.700000px;}
.x4_c00004{left:87.750000px;}
.x13_c00004{left:95.250000px;}
.x6_c00004{left:99.600000px;}
.x5_c00004{left:101.250000px;}
.xb_c00004{left:154.200000px;}
.x9_c00004{left:161.100000px;}
.x3_c00004{left:171.900000px;}
.xe_c00004{left:175.800000px;}
.x14_c00004{left:180.600000px;}
.x12_c00004{left:195.750000px;}
.x7_c00004{left:205.950000px;}
.x15_c00004{left:295.239258px;}
.xf_c00004{left:457.650000px;}
.x10_c00004{left:463.500000px;}
.x8_c00004{left:482.100000px;}
.x2_c00004{left:568.800000px;}
@media print{
.v0_c00004{vertical-align:0.000000pt;}
.v1_c00004{vertical-align:58.666667pt;}
.lsb_c00004{letter-spacing:-8.000000pt;}
.ls4_c00004{letter-spacing:0.000000pt;}
.ls7_c00004{letter-spacing:2.666667pt;}
.ls9_c00004{letter-spacing:5.333333pt;}
.ls3_c00004{letter-spacing:7.733333pt;}
.ls2_c00004{letter-spacing:11.866667pt;}
.ls8_c00004{letter-spacing:13.333333pt;}
.ls1_c00004{letter-spacing:16.000000pt;}
.lsa_c00004{letter-spacing:18.666667pt;}
.ls5_c00004{letter-spacing:32.000000pt;}
.ls6_c00004{letter-spacing:56.000000pt;}
.ls0_c00004{letter-spacing:1769.066667pt;}
.ws2_c00004{word-spacing:-34.000000pt;}
.ws4_c00004{word-spacing:-33.610667pt;}
.ws0_c00004{word-spacing:-15.424000pt;}
.ws3_c00004{word-spacing:-12.632000pt;}
.ws6_c00004{word-spacing:-2.808000pt;}
.ws9_c00004{word-spacing:0.000000pt;}
.ws7_c00004{word-spacing:1.536000pt;}
.ws5_c00004{word-spacing:4.117333pt;}
.ws8_c00004{word-spacing:7.056000pt;}
.ws1_c00004{word-spacing:12.352000pt;}
._10_c00004{margin-left:-30.741333pt;}
._f_c00004{margin-left:-29.568000pt;}
._11_c00004{margin-left:-20.832000pt;}
._20_c00004{margin-left:-17.392000pt;}
._21_c00004{margin-left:-15.200000pt;}
._0_c00004{margin-left:-12.800000pt;}
._29_c00004{margin-left:-10.610667pt;}
._28_c00004{margin-left:-9.410667pt;}
._26_c00004{margin-left:-7.778667pt;}
._24_c00004{margin-left:-6.720000pt;}
._1c_c00004{margin-left:-5.280000pt;}
._1b_c00004{margin-left:-3.872000pt;}
._c_c00004{margin-left:-2.464000pt;}
._d_c00004{margin-left:-1.408000pt;}
._5_c00004{width:1.512000pt;}
._14_c00004{width:3.306667pt;}
._13_c00004{width:4.464000pt;}
._27_c00004{width:6.781333pt;}
._3_c00004{width:7.704000pt;}
._2_c00004{width:9.360000pt;}
._1e_c00004{width:10.253333pt;}
._1_c00004{width:11.232000pt;}
._1d_c00004{width:12.421333pt;}
._4_c00004{width:13.992000pt;}
._19_c00004{width:15.456000pt;}
._16_c00004{width:16.608000pt;}
._18_c00004{width:17.664000pt;}
._15_c00004{width:19.008000pt;}
._17_c00004{width:19.968000pt;}
._2e_c00004{width:21.208000pt;}
._2b_c00004{width:22.538667pt;}
._25_c00004{width:23.744000pt;}
._22_c00004{width:25.589333pt;}
._31_c00004{width:29.184000pt;}
._30_c00004{width:31.328000pt;}
._2a_c00004{width:33.216000pt;}
._b_c00004{width:40.032000pt;}
._2f_c00004{width:45.032000pt;}
._2d_c00004{width:46.656000pt;}
._e_c00004{width:49.514667pt;}
._9_c00004{width:50.520000pt;}
._2c_c00004{width:52.032000pt;}
._a_c00004{width:54.432000pt;}
._8_c00004{width:57.312000pt;}
._7_c00004{width:60.864000pt;}
._6_c00004{width:65.376000pt;}
._1a_c00004{width:66.357333pt;}
._12_c00004{width:71.589333pt;}
._1f_c00004{width:107.400000pt;}
._23_c00004{width:179.157333pt;}
._32_c00004{width:524.968000pt;}
.fs9_c00004{font-size:42.666667pt;}
.fs0_c00004{font-size:64.000000pt;}
.fs8_c00004{font-size:66.666667pt;}
.fs1_c00004{font-size:72.000000pt;}
.fs6_c00004{font-size:74.666667pt;}
.fs7_c00004{font-size:77.333333pt;}
.fs5_c00004{font-size:80.000000pt;}
.fs3_c00004{font-size:82.666667pt;}
.fs4_c00004{font-size:96.000000pt;}
.fs2_c00004{font-size:117.333333pt;}
.y0_c00004{bottom:0.000000pt;}
.y17_c00004{bottom:2.760000pt;}
.y16_c00004{bottom:6.425219pt;}
.y15_c00004{bottom:85.480000pt;}
.y12_c00004{bottom:112.280000pt;}
.y14_c00004{bottom:121.880000pt;}
.y13_c00004{bottom:140.680000pt;}
.y11_c00004{bottom:385.613333pt;}
.y10_c00004{bottom:423.080000pt;}
.yf_c00004{bottom:459.346667pt;}
.ye_c00004{bottom:502.546667pt;}
.yd_c00004{bottom:521.746667pt;}
.yc_c00004{bottom:558.413333pt;}
.yb_c00004{bottom:584.813333pt;}
.ya_c00004{bottom:623.480000pt;}
.y9_c00004{bottom:645.613333pt;}
.y8_c00004{bottom:683.480000pt;}
.y2_c00004{bottom:702.946667pt;}
.y1_c00004{bottom:710.146667pt;}
.y7_c00004{bottom:727.213333pt;}
.y6_c00004{bottom:750.280000pt;}
.y5_c00004{bottom:780.680000pt;}
.y4_c00004{bottom:822.280000pt;}
.y3_c00004{bottom:845.213333pt;}
.hc_c00004{height:11.733399pt;}
.hd_c00004{height:38.937500pt;}
.h4_c00004{height:70.664062pt;}
.ha_c00004{height:73.281250pt;}
.h2_c00004{height:74.906250pt;}
.h9_c00004{height:78.476562pt;}
.h8_c00004{height:78.515625pt;}
.hb_c00004{height:81.045333pt;}
.h6_c00004{height:81.132812pt;}
.h7_c00004{height:96.750000pt;}
.h3_c00004{height:133.572917pt;}
.h5_c00004{height:148.557292pt;}
.h1_c00004{height:882.666667pt;}
.h0_c00004{height:882.733333pt;}
.w2_c00004{width:93.222667pt;}
.w0_c00004{width:610.533333pt;}
.w1_c00004{width:610.666667pt;}
.x0_c00004{left:0.000000pt;}
.x1_c00004{left:28.533333pt;}
.xc_c00004{left:41.066667pt;}
.xa_c00004{left:43.866667pt;}
.xd_c00004{left:46.800000pt;}
.x11_c00004{left:47.733333pt;}
.x4_c00004{left:78.000000pt;}
.x13_c00004{left:84.666667pt;}
.x6_c00004{left:88.533333pt;}
.x5_c00004{left:90.000000pt;}
.xb_c00004{left:137.066667pt;}
.x9_c00004{left:143.200000pt;}
.x3_c00004{left:152.800000pt;}
.xe_c00004{left:156.266667pt;}
.x14_c00004{left:160.533333pt;}
.x12_c00004{left:174.000000pt;}
.x7_c00004{left:183.066667pt;}
.x15_c00004{left:262.434896pt;}
.xf_c00004{left:406.800000pt;}
.x10_c00004{left:412.000000pt;}
.x8_c00004{left:428.533333pt;}
.x2_c00004{left:505.600000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_5d88a808138d0d2b954e5b03.woff2')format("woff");}.ff1_c00005{font-family:ff1_c00005;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00005;src:url('chunks/assets/font_75890d6e3e0501ef479c7538.woff2')format("woff");}.ff2_c00005{font-family:ff2_c00005;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00005;src:url('chunks/assets/font_30d2eba50120c5e89a485ba3.woff2')format("woff");}.ff3_c00005{font-family:ff3_c00005;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00005;src:url('chunks/assets/font_86c995f05426ff6c1ee23a4c.woff2')format("woff");}.ff4_c00005{font-family:ff4_c00005;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00005;src:url('chunks/assets/font_c05662f821683c84ac5027e1.woff2')format("woff");}.ff5_c00005{font-family:ff5_c00005;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00005;src:url('chunks/assets/font_6e0bba14f5b700b79743d836.woff2')format("woff");}.ff6_c00005{font-family:ff6_c00005;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00005;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c00005{font-family:ff7_c00005;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00005{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00005{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.v1_c00005{vertical-align:-3.600000px;}
.v0_c00005{vertical-align:0.000000px;}
.ls7_c00005{letter-spacing:-15.000000px;}
.ls9_c00005{letter-spacing:-9.000000px;}
.ls8_c00005{letter-spacing:-6.000000px;}
.ls6_c00005{letter-spacing:0.000000px;}
.ls3_c00005{letter-spacing:3.000000px;}
.ls5_c00005{letter-spacing:3.900000px;}
.ls1_c00005{letter-spacing:11.400000px;}
.ls2_c00005{letter-spacing:20.700000px;}
.ls0_c00005{letter-spacing:29.946000px;}
.ls4_c00005{letter-spacing:274.218000px;}
.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;}
}
.ws2_c00005{word-spacing:-20.250000px;}
.ws1_c00005{word-spacing:-18.582000px;}
.ws3_c00005{word-spacing:0.000000px;}
.ws0_c00005{word-spacing:10.944000px;}
._27_c00005{margin-left:-58.446000px;}
._2a_c00005{margin-left:-46.500000px;}
._29_c00005{margin-left:-41.385000px;}
._15_c00005{margin-left:-27.621000px;}
._21_c00005{margin-left:-15.309000px;}
._1f_c00005{margin-left:-12.879000px;}
._11_c00005{margin-left:-9.858000px;}
._12_c00005{margin-left:-7.812000px;}
._10_c00005{margin-left:-5.487000px;}
._d_c00005{margin-left:-3.906000px;}
._c_c00005{margin-left:-2.604000px;}
._a_c00005{margin-left:-1.395000px;}
._9_c00005{width:1.395000px;}
._b_c00005{width:3.069000px;}
._e_c00005{width:4.278000px;}
._f_c00005{width:5.580000px;}
._13_c00005{width:7.254000px;}
._4_c00005{width:8.424000px;}
._5_c00005{width:10.206000px;}
._6_c00005{width:12.231000px;}
._3_c00005{width:13.527000px;}
._2_c00005{width:14.985000px;}
._7_c00005{width:16.038000px;}
._0_c00005{width:17.820000px;}
._1b_c00005{width:18.933000px;}
._1_c00005{width:22.437000px;}
._1d_c00005{width:24.705000px;}
._25_c00005{width:28.917000px;}
._24_c00005{width:30.861000px;}
._16_c00005{width:35.340000px;}
._23_c00005{width:37.827000px;}
._8_c00005{width:39.642000px;}
._14_c00005{width:52.266000px;}
._18_c00005{width:63.798000px;}
._20_c00005{width:66.987000px;}
._1e_c00005{width:69.822000px;}
._17_c00005{width:82.491000px;}
._19_c00005{width:121.491000px;}
._26_c00005{width:136.323000px;}
._1a_c00005{width:202.641000px;}
._1c_c00005{width:269.280000px;}
._22_c00005{width:411.426000px;}
._28_c00005{width:420.420000px;}
.fc2_c00005{color:transparent;}
.fc1_c00005{color:rgb(128,128,128);}
.fc0_c00005{color:rgb(0,0,0);}
.fs7_c00005{font-size:48.000000px;}
.fs2_c00005{font-size:60.000000px;}
.fs4_c00005{font-size:75.000000px;}
.fs6_c00005{font-size:78.000000px;}
.fs0_c00005{font-size:81.000000px;}
.fs5_c00005{font-size:87.000000px;}
.fs1_c00005{font-size:93.000000px;}
.fs3_c00005{font-size:102.000000px;}
.y0_c00005{bottom:0.000000px;}
.y13_c00005{bottom:3.105000px;}
.y12_c00005{bottom:7.228369px;}
.y11_c00005{bottom:159.270000px;}
.y10_c00005{bottom:182.820000px;}
.yf_c00005{bottom:238.920000px;}
.ye_c00005{bottom:360.720000px;}
.yd_c00005{bottom:478.470000px;}
.yc_c00005{bottom:505.470000px;}
.yb_c00005{bottom:518.970000px;}
.ya_c00005{bottom:650.670000px;}
.y9_c00005{bottom:658.020000px;}
.y8_c00005{bottom:723.870000px;}
.y7_c00005{bottom:752.220000px;}
.y6_c00005{bottom:782.370000px;}
.y5_c00005{bottom:812.070000px;}
.y4_c00005{bottom:841.320000px;}
.y3_c00005{bottom:872.070000px;}
.y2_c00005{bottom:900.720000px;}
.y1_c00005{bottom:954.120000px;}
.h8_c00005{height:13.200073px;}
.h9_c00005{height:43.804688px;}
.h2_c00005{height:79.497070px;}
.h6_c00005{height:81.300000px;}
.h5_c00005{height:91.176000px;}
.h3_c00005{height:91.274414px;}
.h7_c00005{height:91.291992px;}
.h4_c00005{height:129.143555px;}
.h1_c00005{height:999.750000px;}
.h0_c00005{height:1000.050000px;}
.w2_c00005{width:104.875500px;}
.w1_c00005{width:702.750000px;}
.w0_c00005{width:702.825000px;}
.x0_c00005{left:0.000000px;}
.xb_c00005{left:14.400000px;}
.x1_c00005{left:81.750000px;}
.xd_c00005{left:107.250000px;}
.x3_c00005{left:133.650000px;}
.x2_c00005{left:135.900000px;}
.x4_c00005{left:138.450000px;}
.x5_c00005{left:168.300000px;}
.xc_c00005{left:170.400000px;}
.x6_c00005{left:200.700000px;}
.x11_c00005{left:303.226730px;}
.x7_c00005{left:406.050000px;}
.x8_c00005{left:526.200000px;}
.x9_c00005{left:537.000000px;}
.xa_c00005{left:552.450000px;}
.xe_c00005{left:681.750000px;}
.xf_c00005{left:690.450000px;}
.x10_c00005{left:691.500000px;}
@media print{
.v1_c00005{vertical-align:-3.200000pt;}
.v0_c00005{vertical-align:0.000000pt;}
.ls7_c00005{letter-spacing:-13.333333pt;}
.ls9_c00005{letter-spacing:-8.000000pt;}
.ls8_c00005{letter-spacing:-5.333333pt;}
.ls6_c00005{letter-spacing:0.000000pt;}
.ls3_c00005{letter-spacing:2.666667pt;}
.ls5_c00005{letter-spacing:3.466667pt;}
.ls1_c00005{letter-spacing:10.133333pt;}
.ls2_c00005{letter-spacing:18.400000pt;}
.ls0_c00005{letter-spacing:26.618667pt;}
.ls4_c00005{letter-spacing:243.749333pt;}
.ws2_c00005{word-spacing:-18.000000pt;}
.ws1_c00005{word-spacing:-16.517333pt;}
.ws3_c00005{word-spacing:0.000000pt;}
.ws0_c00005{word-spacing:9.728000pt;}
._27_c00005{margin-left:-51.952000pt;}
._2a_c00005{margin-left:-41.333333pt;}
._29_c00005{margin-left:-36.786667pt;}
._15_c00005{margin-left:-24.552000pt;}
._21_c00005{margin-left:-13.608000pt;}
._1f_c00005{margin-left:-11.448000pt;}
._11_c00005{margin-left:-8.762667pt;}
._12_c00005{margin-left:-6.944000pt;}
._10_c00005{margin-left:-4.877333pt;}
._d_c00005{margin-left:-3.472000pt;}
._c_c00005{margin-left:-2.314667pt;}
._a_c00005{margin-left:-1.240000pt;}
._9_c00005{width:1.240000pt;}
._b_c00005{width:2.728000pt;}
._e_c00005{width:3.802667pt;}
._f_c00005{width:4.960000pt;}
._13_c00005{width:6.448000pt;}
._4_c00005{width:7.488000pt;}
._5_c00005{width:9.072000pt;}
._6_c00005{width:10.872000pt;}
._3_c00005{width:12.024000pt;}
._2_c00005{width:13.320000pt;}
._7_c00005{width:14.256000pt;}
._0_c00005{width:15.840000pt;}
._1b_c00005{width:16.829333pt;}
._1_c00005{width:19.944000pt;}
._1d_c00005{width:21.960000pt;}
._25_c00005{width:25.704000pt;}
._24_c00005{width:27.432000pt;}
._16_c00005{width:31.413333pt;}
._23_c00005{width:33.624000pt;}
._8_c00005{width:35.237333pt;}
._14_c00005{width:46.458667pt;}
._18_c00005{width:56.709333pt;}
._20_c00005{width:59.544000pt;}
._1e_c00005{width:62.064000pt;}
._17_c00005{width:73.325333pt;}
._19_c00005{width:107.992000pt;}
._26_c00005{width:121.176000pt;}
._1a_c00005{width:180.125333pt;}
._1c_c00005{width:239.360000pt;}
._22_c00005{width:365.712000pt;}
._28_c00005{width:373.706667pt;}
.fs7_c00005{font-size:42.666667pt;}
.fs2_c00005{font-size:53.333333pt;}
.fs4_c00005{font-size:66.666667pt;}
.fs6_c00005{font-size:69.333333pt;}
.fs0_c00005{font-size:72.000000pt;}
.fs5_c00005{font-size:77.333333pt;}
.fs1_c00005{font-size:82.666667pt;}
.fs3_c00005{font-size:90.666667pt;}
.y0_c00005{bottom:0.000000pt;}
.y13_c00005{bottom:2.760000pt;}
.y12_c00005{bottom:6.425217pt;}
.y11_c00005{bottom:141.573333pt;}
.y10_c00005{bottom:162.506667pt;}
.yf_c00005{bottom:212.373333pt;}
.ye_c00005{bottom:320.640000pt;}
.yd_c00005{bottom:425.306667pt;}
.yc_c00005{bottom:449.306667pt;}
.yb_c00005{bottom:461.306667pt;}
.ya_c00005{bottom:578.373333pt;}
.y9_c00005{bottom:584.906667pt;}
.y8_c00005{bottom:643.440000pt;}
.y7_c00005{bottom:668.640000pt;}
.y6_c00005{bottom:695.440000pt;}
.y5_c00005{bottom:721.840000pt;}
.y4_c00005{bottom:747.840000pt;}
.y3_c00005{bottom:775.173333pt;}
.y2_c00005{bottom:800.640000pt;}
.y1_c00005{bottom:848.106667pt;}
.h8_c00005{height:11.733399pt;}
.h9_c00005{height:38.937500pt;}
.h2_c00005{height:70.664062pt;}
.h6_c00005{height:72.266667pt;}
.h5_c00005{height:81.045333pt;}
.h3_c00005{height:81.132812pt;}
.h7_c00005{height:81.148438pt;}
.h4_c00005{height:114.794271pt;}
.h1_c00005{height:888.666667pt;}
.h0_c00005{height:888.933333pt;}
.w2_c00005{width:93.222667pt;}
.w1_c00005{width:624.666667pt;}
.w0_c00005{width:624.733333pt;}
.x0_c00005{left:0.000000pt;}
.xb_c00005{left:12.800000pt;}
.x1_c00005{left:72.666667pt;}
.xd_c00005{left:95.333333pt;}
.x3_c00005{left:118.800000pt;}
.x2_c00005{left:120.800000pt;}
.x4_c00005{left:123.066667pt;}
.x5_c00005{left:149.600000pt;}
.xc_c00005{left:151.466667pt;}
.x6_c00005{left:178.400000pt;}
.x11_c00005{left:269.534871pt;}
.x7_c00005{left:360.933333pt;}
.x8_c00005{left:467.733333pt;}
.x9_c00005{left:477.333333pt;}
.xa_c00005{left:491.066667pt;}
.xe_c00005{left:606.000000pt;}
.xf_c00005{left:613.733333pt;}
.x10_c00005{left:614.666667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ee1661c5ff1429fe61d835c5.woff2')format("woff");}.ff1_c00006{font-family:ff1_c00006;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00006;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff2_c00006{font-family:ff2_c00006;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00006;src:url('chunks/assets/font_6f6aad47a2dd7146fc763c4a.woff2')format("woff");}.ff3_c00006{font-family:ff3_c00006;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00006;src:url('chunks/assets/font_c72adf2ed3f532ca7a0af6dd.woff2')format("woff");}.ff4_c00006{font-family:ff4_c00006;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00006;src:url('chunks/assets/font_b87b4dd4f7bccf382a2a2a27.woff2')format("woff");}.ff5_c00006{font-family:ff5_c00006;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00006;src:url('chunks/assets/font_db727f01bea64c06988fe9e1.woff2')format("woff");}.ff6_c00006{font-family:ff6_c00006;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00006;src:url('chunks/assets/font_4d50069e75e238403a347377.woff2')format("woff");}.ff7_c00006{font-family:ff7_c00006;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00006;src:url('chunks/assets/font_f11bd81137b86fa9ed73860b.woff2')format("woff");}.ff8_c00006{font-family:ff8_c00006;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00006;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff9_c00006{font-family:ff9_c00006;line-height:1.219238;font-style: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.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m1_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;}
.ls4_c00006{letter-spacing:-12.000000px;}
.ls6_c00006{letter-spacing:-9.000000px;}
.ls3_c00006{letter-spacing:0.000000px;}
.ls0_c00006{letter-spacing:6.900000px;}
.ls2_c00006{letter-spacing:7.380000px;}
.ls5_c00006{letter-spacing:9.000000px;}
.ls1_c00006{letter-spacing:15.000000px;}
.sc__c00006{text-shadow:none;}
.sc0_c00006{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00006{-webkit-text-stroke:0px transparent;}
.sc0_c00006{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00006{word-spacing:-106.335000px;}
.ws6_c00006{word-spacing:-59.184000px;}
.ws4_c00006{word-spacing:-44.100000px;}
.ws5_c00006{word-spacing:-41.472000px;}
.ws3_c00006{word-spacing:-27.000000px;}
.ws1_c00006{word-spacing:-22.500000px;}
.ws0_c00006{word-spacing:-19.536000px;}
.ws8_c00006{word-spacing:0.000000px;}
.ws7_c00006{word-spacing:10.800000px;}
._2a_c00006{margin-left:-44.430000px;}
._1e_c00006{margin-left:-32.652000px;}
._34_c00006{margin-left:-30.714000px;}
._24_c00006{margin-left:-29.532000px;}
._20_c00006{margin-left:-27.576000px;}
._2e_c00006{margin-left:-23.280000px;}
._28_c00006{margin-left:-22.194000px;}
._25_c00006{margin-left:-21.156000px;}
._27_c00006{margin-left:-18.702000px;}
._1f_c00006{margin-left:-17.136000px;}
._23_c00006{margin-left:-14.304000px;}
._10_c00006{margin-left:-12.636000px;}
._1c_c00006{margin-left:-11.628000px;}
._0_c00006{margin-left:-9.828000px;}
._1b_c00006{margin-left:-8.598000px;}
._21_c00006{margin-left:-7.488000px;}
._1d_c00006{margin-left:-6.264000px;}
._1a_c00006{margin-left:-4.536000px;}
._26_c00006{margin-left:-3.510000px;}
._13_c00006{margin-left:-2.484000px;}
._14_c00006{margin-left:-1.080000px;}
._15_c00006{width:2.052000px;}
._e_c00006{width:3.240000px;}
._11_c00006{width:5.076000px;}
._12_c00006{width:6.372000px;}
._8_c00006{width:7.452000px;}
._c_c00006{width:8.748000px;}
._9_c00006{width:10.152000px;}
._16_c00006{width:11.772000px;}
._18_c00006{width:13.176000px;}
._17_c00006{width:14.796000px;}
._6_c00006{width:16.200000px;}
._b_c00006{width:17.604000px;}
._7_c00006{width:19.116000px;}
._2_c00006{width:20.322000px;}
._30_c00006{width:21.888000px;}
._32_c00006{width:23.022000px;}
._a_c00006{width:24.732000px;}
._31_c00006{width:25.920000px;}
._d_c00006{width:28.710000px;}
._3_c00006{width:30.780000px;}
._4_c00006{width:35.316000px;}
._29_c00006{width:36.756000px;}
._f_c00006{width:49.788000px;}
._33_c00006{width:51.624000px;}
._1_c00006{width:66.312000px;}
._2c_c00006{width:83.796000px;}
._5_c00006{width:98.514000px;}
._22_c00006{width:234.480000px;}
._2f_c00006{width:278.832000px;}
._2b_c00006{width:284.988000px;}
._19_c00006{width:335.664000px;}
._35_c00006{width:351.666000px;}
._2d_c00006{width:419.250000px;}
.fc2_c00006{color:transparent;}
.fc1_c00006{color:rgb(128,128,128);}
.fc0_c00006{color:rgb(0,0,0);}
.fs8_c00006{font-size:48.000000px;}
.fs6_c00006{font-size:72.000000px;}
.fs7_c00006{font-size:78.000000px;}
.fs3_c00006{font-size:81.000000px;}
.fs1_c00006{font-size:90.000000px;}
.fs2_c00006{font-size:102.000000px;}
.fs4_c00006{font-size:105.000000px;}
.fs0_c00006{font-size:108.000000px;}
.fs5_c00006{font-size:111.000000px;}
.y0_c00006{bottom:0.000000px;}
.y1f_c00006{bottom:3.105000px;}
.y1e_c00006{bottom:7.228369px;}
.y1d_c00006{bottom:86.070000px;}
.y1c_c00006{bottom:116.820000px;}
.y1b_c00006{bottom:147.720000px;}
.y1a_c00006{bottom:176.520000px;}
.y19_c00006{bottom:205.770000px;}
.y18_c00006{bottom:237.270000px;}
.y17_c00006{bottom:264.270000px;}
.y16_c00006{bottom:293.970000px;}
.y15_c00006{bottom:322.920000px;}
.y14_c00006{bottom:351.270000px;}
.y13_c00006{bottom:378.720000px;}
.y12_c00006{bottom:406.920000px;}
.y11_c00006{bottom:438.120000px;}
.y10_c00006{bottom:466.470000px;}
.yf_c00006{bottom:496.470000px;}
.ye_c00006{bottom:524.370000px;}
.yd_c00006{bottom:554.220000px;}
.yc_c00006{bottom:583.470000px;}
.yb_c00006{bottom:613.170000px;}
.ya_c00006{bottom:640.470000px;}
.y9_c00006{bottom:670.920000px;}
.y8_c00006{bottom:698.220000px;}
.y7_c00006{bottom:727.020000px;}
.y6_c00006{bottom:756.720000px;}
.y5_c00006{bottom:786.270000px;}
.y4_c00006{bottom:815.070000px;}
.y3_c00006{bottom:843.420000px;}
.y2_c00006{bottom:872.670000px;}
.y1_c00006{bottom:899.820000px;}
.h9_c00006{height:13.200073px;}
.ha_c00006{height:43.804688px;}
.h8_c00006{height:84.269531px;}
.h5_c00006{height:88.286133px;}
.h3_c00006{height:88.330078px;}
.h4_c00006{height:104.839927px;}
.h2_c00006{height:108.843750px;}
.h7_c00006{height:114.090509px;}
.h6_c00006{height:132.941895px;}
.h1_c00006{height:1001.250000px;}
.h0_c00006{height:1001.400000px;}
.w1_c00006{width:104.875500px;}
.w0_c00006{width:678.750000px;}
.x0_c00006{left:0.000000px;}
.xc_c00006{left:46.650000px;}
.x12_c00006{left:47.850000px;}
.xb_c00006{left:48.900000px;}
.x8_c00006{left:51.000000px;}
.x2_c00006{left:53.250000px;}
.x6_c00006{left:57.600000px;}
.x7_c00006{left:72.000000px;}
.x13_c00006{left:75.300000px;}
.x14_c00006{left:76.500000px;}
.x15_c00006{left:77.550000px;}
.x9_c00006{left:79.050000px;}
.x3_c00006{left:91.500000px;}
.xd_c00006{left:99.600000px;}
.x1_c00006{left:111.450000px;}
.x4_c00006{left:132.600000px;}
.xa_c00006{left:159.000000px;}
.x5_c00006{left:240.000000px;}
.x17_c00006{left:291.189240px;}
.x16_c00006{left:373.800000px;}
.xe_c00006{left:499.800000px;}
.xf_c00006{left:511.350000px;}
.x10_c00006{left:530.550000px;}
.x11_c00006{left:544.050000px;}
@media print{
.v0_c00006{vertical-align:0.000000pt;}
.ls4_c00006{letter-spacing:-10.666667pt;}
.ls6_c00006{letter-spacing:-8.000000pt;}
.ls3_c00006{letter-spacing:0.000000pt;}
.ls0_c00006{letter-spacing:6.133333pt;}
.ls2_c00006{letter-spacing:6.560000pt;}
.ls5_c00006{letter-spacing:8.000000pt;}
.ls1_c00006{letter-spacing:13.333333pt;}
.ws2_c00006{word-spacing:-94.520000pt;}
.ws6_c00006{word-spacing:-52.608000pt;}
.ws4_c00006{word-spacing:-39.200000pt;}
.ws5_c00006{word-spacing:-36.864000pt;}
.ws3_c00006{word-spacing:-24.000000pt;}
.ws1_c00006{word-spacing:-20.000000pt;}
.ws0_c00006{word-spacing:-17.365333pt;}
.ws8_c00006{word-spacing:0.000000pt;}
.ws7_c00006{word-spacing:9.600000pt;}
._2a_c00006{margin-left:-39.493333pt;}
._1e_c00006{margin-left:-29.024000pt;}
._34_c00006{margin-left:-27.301333pt;}
._24_c00006{margin-left:-26.250667pt;}
._20_c00006{margin-left:-24.512000pt;}
._2e_c00006{margin-left:-20.693333pt;}
._28_c00006{margin-left:-19.728000pt;}
._25_c00006{margin-left:-18.805333pt;}
._27_c00006{margin-left:-16.624000pt;}
._1f_c00006{margin-left:-15.232000pt;}
._23_c00006{margin-left:-12.714667pt;}
._10_c00006{margin-left:-11.232000pt;}
._1c_c00006{margin-left:-10.336000pt;}
._0_c00006{margin-left:-8.736000pt;}
._1b_c00006{margin-left:-7.642667pt;}
._21_c00006{margin-left:-6.656000pt;}
._1d_c00006{margin-left:-5.568000pt;}
._1a_c00006{margin-left:-4.032000pt;}
._26_c00006{margin-left:-3.120000pt;}
._13_c00006{margin-left:-2.208000pt;}
._14_c00006{margin-left:-0.960000pt;}
._15_c00006{width:1.824000pt;}
._e_c00006{width:2.880000pt;}
._11_c00006{width:4.512000pt;}
._12_c00006{width:5.664000pt;}
._8_c00006{width:6.624000pt;}
._c_c00006{width:7.776000pt;}
._9_c00006{width:9.024000pt;}
._16_c00006{width:10.464000pt;}
._18_c00006{width:11.712000pt;}
._17_c00006{width:13.152000pt;}
._6_c00006{width:14.400000pt;}
._b_c00006{width:15.648000pt;}
._7_c00006{width:16.992000pt;}
._2_c00006{width:18.064000pt;}
._30_c00006{width:19.456000pt;}
._32_c00006{width:20.464000pt;}
._a_c00006{width:21.984000pt;}
._31_c00006{width:23.040000pt;}
._d_c00006{width:25.520000pt;}
._3_c00006{width:27.360000pt;}
._4_c00006{width:31.392000pt;}
._29_c00006{width:32.672000pt;}
._f_c00006{width:44.256000pt;}
._33_c00006{width:45.888000pt;}
._1_c00006{width:58.944000pt;}
._2c_c00006{width:74.485333pt;}
._5_c00006{width:87.568000pt;}
._22_c00006{width:208.426667pt;}
._2f_c00006{width:247.850667pt;}
._2b_c00006{width:253.322667pt;}
._19_c00006{width:298.368000pt;}
._35_c00006{width:312.592000pt;}
._2d_c00006{width:372.666667pt;}
.fs8_c00006{font-size:42.666667pt;}
.fs6_c00006{font-size:64.000000pt;}
.fs7_c00006{font-size:69.333333pt;}
.fs3_c00006{font-size:72.000000pt;}
.fs1_c00006{font-size:80.000000pt;}
.fs2_c00006{font-size:90.666667pt;}
.fs4_c00006{font-size:93.333333pt;}
.fs0_c00006{font-size:96.000000pt;}
.fs5_c00006{font-size:98.666667pt;}
.y0_c00006{bottom:0.000000pt;}
.y1f_c00006{bottom:2.760000pt;}
.y1e_c00006{bottom:6.425217pt;}
.y1d_c00006{bottom:76.506667pt;}
.y1c_c00006{bottom:103.840000pt;}
.y1b_c00006{bottom:131.306667pt;}
.y1a_c00006{bottom:156.906667pt;}
.y19_c00006{bottom:182.906667pt;}
.y18_c00006{bottom:210.906667pt;}
.y17_c00006{bottom:234.906667pt;}
.y16_c00006{bottom:261.306667pt;}
.y15_c00006{bottom:287.040000pt;}
.y14_c00006{bottom:312.240000pt;}
.y13_c00006{bottom:336.640000pt;}
.y12_c00006{bottom:361.706667pt;}
.y11_c00006{bottom:389.440000pt;}
.y10_c00006{bottom:414.640000pt;}
.yf_c00006{bottom:441.306667pt;}
.ye_c00006{bottom:466.106667pt;}
.yd_c00006{bottom:492.640000pt;}
.yc_c00006{bottom:518.640000pt;}
.yb_c00006{bottom:545.040000pt;}
.ya_c00006{bottom:569.306667pt;}
.y9_c00006{bottom:596.373333pt;}
.y8_c00006{bottom:620.640000pt;}
.y7_c00006{bottom:646.240000pt;}
.y6_c00006{bottom:672.640000pt;}
.y5_c00006{bottom:698.906667pt;}
.y4_c00006{bottom:724.506667pt;}
.y3_c00006{bottom:749.706667pt;}
.y2_c00006{bottom:775.706667pt;}
.y1_c00006{bottom:799.840000pt;}
.h9_c00006{height:11.733399pt;}
.ha_c00006{height:38.937500pt;}
.h8_c00006{height:74.906250pt;}
.h5_c00006{height:78.476562pt;}
.h3_c00006{height:78.515625pt;}
.h4_c00006{height:93.191046pt;}
.h2_c00006{height:96.750000pt;}
.h7_c00006{height:101.413785pt;}
.h6_c00006{height:118.170573pt;}
.h1_c00006{height:890.000000pt;}
.h0_c00006{height:890.133333pt;}
.w1_c00006{width:93.222667pt;}
.w0_c00006{width:603.333333pt;}
.x0_c00006{left:0.000000pt;}
.xc_c00006{left:41.466667pt;}
.x12_c00006{left:42.533333pt;}
.xb_c00006{left:43.466667pt;}
.x8_c00006{left:45.333333pt;}
.x2_c00006{left:47.333333pt;}
.x6_c00006{left:51.200000pt;}
.x7_c00006{left:64.000000pt;}
.x13_c00006{left:66.933333pt;}
.x14_c00006{left:68.000000pt;}
.x15_c00006{left:68.933333pt;}
.x9_c00006{left:70.266667pt;}
.x3_c00006{left:81.333333pt;}
.xd_c00006{left:88.533333pt;}
.x1_c00006{left:99.066667pt;}
.x4_c00006{left:117.866667pt;}
.xa_c00006{left:141.333333pt;}
.x5_c00006{left:213.333333pt;}
.x17_c00006{left:258.834880pt;}
.x16_c00006{left:332.266667pt;}
.xe_c00006{left:444.266667pt;}
.xf_c00006{left:454.533333pt;}
.x10_c00006{left:471.600000pt;}
.x11_c00006{left:483.600000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a898c0361ae744678255173f.woff2')format("woff");}.ff1_c00007{font-family:ff1_c00007;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00007;src:url('chunks/assets/font_fc6a9b7bf106307cc363397b.woff2')format("woff");}.ff2_c00007{font-family:ff2_c00007;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00007;src:url('chunks/assets/font_5fc859eca2344605daf535ee.woff2')format("woff");}.ff3_c00007{font-family:ff3_c00007;line-height:1.311035;font-style:normal;font-weight:normal;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_b4cc1e4edb7bccd93faf782a.woff2')format("woff");}.ff4_c00007{font-family:ff4_c00007;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00007;src:url('chunks/assets/font_969d927559adb2f56b02f3a7.woff2')format("woff");}.ff5_c00007{font-family:ff5_c00007;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00007;src:url('chunks/assets/font_92dd85d8ede714a2b82aaa8d.woff2')format("woff");}.ff6_c00007{font-family:ff6_c00007;line-height:1.437000;font-style:normal;font-weight: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_c00007;src:url('chunks/assets/font_319c34aefe22bbce2f2d3b49.woff2')format("woff");}.ff7_c00007{font-family:ff7_c00007;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00007;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff8_c00007{font-family:ff8_c00007;line-height:1.219238;font-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_c00007{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,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);}
.m2_c00007{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00007{vertical-align:0.000000px;}
.ls1_c00007{letter-spacing:-9.000000px;}
.ls4_c00007{letter-spacing:-6.000000px;}
.ls2_c00007{letter-spacing:-3.000000px;}
.ls0_c00007{letter-spacing:0.000000px;}
.ls3_c00007{letter-spacing:9.000000px;}
.sc__c00007{text-shadow:none;}
.sc0_c00007{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00007{-webkit-text-stroke:0px transparent;}
.sc0_c00007{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00007{word-spacing:-83.310000px;}
.ws3_c00007{word-spacing:-59.184000px;}
.ws1_c00007{word-spacing:-30.000000px;}
.ws2_c00007{word-spacing:-20.250000px;}
.ws4_c00007{word-spacing:0.000000px;}
._3d_c00007{margin-left:-43.731000px;}
._38_c00007{margin-left:-40.107000px;}
._45_c00007{margin-left:-32.967000px;}
._31_c00007{margin-left:-30.396000px;}
._1b_c00007{margin-left:-27.540000px;}
._4a_c00007{margin-left:-26.406000px;}
._42_c00007{margin-left:-24.768000px;}
._17_c00007{margin-left:-23.652000px;}
._23_c00007{margin-left:-20.916000px;}
._48_c00007{margin-left:-19.812000px;}
._22_c00007{margin-left:-18.468000px;}
._26_c00007{margin-left:-16.464000px;}
._1e_c00007{margin-left:-15.120000px;}
._29_c00007{margin-left:-13.107000px;}
._10_c00007{margin-left:-11.844000px;}
._e_c00007{margin-left:-10.584000px;}
._f_c00007{margin-left:-8.988000px;}
._2d_c00007{margin-left:-7.728000px;}
._c_c00007{margin-left:-6.552000px;}
._0_c00007{margin-left:-4.536000px;}
._2_c00007{margin-left:-3.528000px;}
._1_c00007{margin-left:-2.016000px;}
._5_c00007{margin-left:-1.008000px;}
._4_c00007{width:1.428000px;}
._3_c00007{width:2.604000px;}
._a_c00007{width:4.032000px;}
._d_c00007{width:5.040000px;}
._7_c00007{width:6.048000px;}
._9_c00007{width:7.812000px;}
._12_c00007{width:9.648000px;}
._6_c00007{width:10.836000px;}
._b_c00007{width:12.348000px;}
._1a_c00007{width:13.968000px;}
._1c_c00007{width:15.804000px;}
._8_c00007{width:17.052000px;}
._18_c00007{width:18.120000px;}
._15_c00007{width:20.268000px;}
._3c_c00007{width:21.576000px;}
._33_c00007{width:24.612000px;}
._3f_c00007{width:25.866000px;}
._2c_c00007{width:28.704000px;}
._27_c00007{width:32.784000px;}
._14_c00007{width:34.452000px;}
._2b_c00007{width:35.595000px;}
._36_c00007{width:36.822000px;}
._19_c00007{width:40.140000px;}
._24_c00007{width:43.764000px;}
._2f_c00007{width:45.675000px;}
._11_c00007{width:47.196000px;}
._34_c00007{width:48.216000px;}
._13_c00007{width:52.488000px;}
._20_c00007{width:56.124000px;}
._3e_c00007{width:58.662000px;}
._43_c00007{width:66.447000px;}
._21_c00007{width:80.388000px;}
._41_c00007{width:100.158000px;}
._30_c00007{width:142.029000px;}
._39_c00007{width:176.256000px;}
._1f_c00007{width:187.596000px;}
._1d_c00007{width:189.000000px;}
._40_c00007{width:191.256000px;}
._3a_c00007{width:200.439000px;}
._2e_c00007{width:212.352000px;}
._16_c00007{width:220.872000px;}
._25_c00007{width:226.464000px;}
._49_c00007{width:280.905000px;}
._44_c00007{width:283.023000px;}
._3b_c00007{width:288.381000px;}
._47_c00007{width:404.838000px;}
._2a_c00007{width:535.908000px;}
._28_c00007{width:538.512000px;}
._35_c00007{width:567.195000px;}
._46_c00007{width:643.206000px;}
._37_c00007{width:704.841000px;}
._4b_c00007{width:740.226000px;}
._32_c00007{width:1275.651000px;}
.fc2_c00007{color:transparent;}
.fc1_c00007{color:rgb(128,128,128);}
.fc0_c00007{color:rgb(0,0,0);}
.fs9_c00007{font-size:48.000000px;}
.fs1_c00007{font-size:51.000000px;}
.fs6_c00007{font-size:69.000000px;}
.fs8_c00007{font-size:72.000000px;}
.fs5_c00007{font-size:81.000000px;}
.fs0_c00007{font-size:84.000000px;}
.fs7_c00007{font-size:102.000000px;}
.fs4_c00007{font-size:105.000000px;}
.fs2_c00007{font-size:108.000000px;}
.fs3_c00007{font-size:111.000000px;}
.y0_c00007{bottom:0.000000px;}
.y1b_c00007{bottom:3.105000px;}
.y1a_c00007{bottom:7.228355px;}
.y19_c00007{bottom:77.835000px;}
.y18_c00007{bottom:112.935000px;}
.y17_c00007{bottom:169.635000px;}
.y16_c00007{bottom:202.035000px;}
.y15_c00007{bottom:313.185000px;}
.y14_c00007{bottom:341.235000px;}
.y13_c00007{bottom:370.935000px;}
.y12_c00007{bottom:398.535000px;}
.y11_c00007{bottom:428.835000px;}
.y10_c00007{bottom:457.635000px;}
.yf_c00007{bottom:485.685000px;}
.ye_c00007{bottom:514.335000px;}
.yd_c00007{bottom:543.735000px;}
.yc_c00007{bottom:571.635000px;}
.yb_c00007{bottom:601.335000px;}
.ya_c00007{bottom:631.035000px;}
.y9_c00007{bottom:658.335000px;}
.y8_c00007{bottom:688.185000px;}
.y7_c00007{bottom:717.135000px;}
.y6_c00007{bottom:746.535000px;}
.y5_c00007{bottom:774.885000px;}
.y4_c00007{bottom:803.535000px;}
.y3_c00007{bottom:832.935000px;}
.y2_c00007{bottom:862.185000px;}
.y1_c00007{bottom:892.035000px;}
.ha_c00007{height:13.200074px;}
.hb_c00007{height:43.804688px;}
.h7_c00007{height:79.497070px;}
.h3_c00007{height:82.400391px;}
.h2_c00007{height:82.441406px;}
.h9_c00007{height:84.269531px;}
.h4_c00007{height:108.843750px;}
.h5_c00007{height:114.090509px;}
.h6_c00007{height:122.893066px;}
.h8_c00007{height:129.143555px;}
.h0_c00007{height:994.125000px;}
.h1_c00007{height:994.500000px;}
.w1_c00007{width:104.875500px;}
.w0_c00007{width:698.250000px;}
.x0_c00007{left:0.000000px;}
.x7_c00007{left:162.600000px;}
.x2_c00007{left:163.950000px;}
.xd_c00007{left:165.300000px;}
.xe_c00007{left:169.650000px;}
.xb_c00007{left:171.150000px;}
.xc_c00007{left:173.850000px;}
.xa_c00007{left:181.200000px;}
.x1_c00007{left:190.050000px;}
.x3_c00007{left:191.400000px;}
.x4_c00007{left:213.000000px;}
.xf_c00007{left:300.939240px;}
.x5_c00007{left:374.850000px;}
.x6_c00007{left:402.300000px;}
.x8_c00007{left:541.350000px;}
.x9_c00007{left:564.600000px;}
@media print{
.v0_c00007{vertical-align:0.000000pt;}
.ls1_c00007{letter-spacing:-8.000000pt;}
.ls4_c00007{letter-spacing:-5.333333pt;}
.ls2_c00007{letter-spacing:-2.666667pt;}
.ls0_c00007{letter-spacing:0.000000pt;}
.ls3_c00007{letter-spacing:8.000000pt;}
.ws0_c00007{word-spacing:-74.053333pt;}
.ws3_c00007{word-spacing:-52.608000pt;}
.ws1_c00007{word-spacing:-26.666667pt;}
.ws2_c00007{word-spacing:-18.000000pt;}
.ws4_c00007{word-spacing:0.000000pt;}
._3d_c00007{margin-left:-38.872000pt;}
._38_c00007{margin-left:-35.650667pt;}
._45_c00007{margin-left:-29.304000pt;}
._31_c00007{margin-left:-27.018667pt;}
._1b_c00007{margin-left:-24.480000pt;}
._4a_c00007{margin-left:-23.472000pt;}
._42_c00007{margin-left:-22.016000pt;}
._17_c00007{margin-left:-21.024000pt;}
._23_c00007{margin-left:-18.592000pt;}
._48_c00007{margin-left:-17.610667pt;}
._22_c00007{margin-left:-16.416000pt;}
._26_c00007{margin-left:-14.634667pt;}
._1e_c00007{margin-left:-13.440000pt;}
._29_c00007{margin-left:-11.650667pt;}
._10_c00007{margin-left:-10.528000pt;}
._e_c00007{margin-left:-9.408000pt;}
._f_c00007{margin-left:-7.989333pt;}
._2d_c00007{margin-left:-6.869333pt;}
._c_c00007{margin-left:-5.824000pt;}
._0_c00007{margin-left:-4.032000pt;}
._2_c00007{margin-left:-3.136000pt;}
._1_c00007{margin-left:-1.792000pt;}
._5_c00007{margin-left:-0.896000pt;}
._4_c00007{width:1.269333pt;}
._3_c00007{width:2.314667pt;}
._a_c00007{width:3.584000pt;}
._d_c00007{width:4.480000pt;}
._7_c00007{width:5.376000pt;}
._9_c00007{width:6.944000pt;}
._12_c00007{width:8.576000pt;}
._6_c00007{width:9.632000pt;}
._b_c00007{width:10.976000pt;}
._1a_c00007{width:12.416000pt;}
._1c_c00007{width:14.048000pt;}
._8_c00007{width:15.157333pt;}
._18_c00007{width:16.106667pt;}
._15_c00007{width:18.016000pt;}
._3c_c00007{width:19.178667pt;}
._33_c00007{width:21.877333pt;}
._3f_c00007{width:22.992000pt;}
._2c_c00007{width:25.514667pt;}
._27_c00007{width:29.141333pt;}
._14_c00007{width:30.624000pt;}
._2b_c00007{width:31.640000pt;}
._36_c00007{width:32.730667pt;}
._19_c00007{width:35.680000pt;}
._24_c00007{width:38.901333pt;}
._2f_c00007{width:40.600000pt;}
._11_c00007{width:41.952000pt;}
._34_c00007{width:42.858667pt;}
._13_c00007{width:46.656000pt;}
._20_c00007{width:49.888000pt;}
._3e_c00007{width:52.144000pt;}
._43_c00007{width:59.064000pt;}
._21_c00007{width:71.456000pt;}
._41_c00007{width:89.029333pt;}
._30_c00007{width:126.248000pt;}
._39_c00007{width:156.672000pt;}
._1f_c00007{width:166.752000pt;}
._1d_c00007{width:168.000000pt;}
._40_c00007{width:170.005333pt;}
._3a_c00007{width:178.168000pt;}
._2e_c00007{width:188.757333pt;}
._16_c00007{width:196.330667pt;}
._25_c00007{width:201.301333pt;}
._49_c00007{width:249.693333pt;}
._44_c00007{width:251.576000pt;}
._3b_c00007{width:256.338667pt;}
._47_c00007{width:359.856000pt;}
._2a_c00007{width:476.362667pt;}
._28_c00007{width:478.677333pt;}
._35_c00007{width:504.173333pt;}
._46_c00007{width:571.738667pt;}
._37_c00007{width:626.525333pt;}
._4b_c00007{width:657.978667pt;}
._32_c00007{width:1133.912000pt;}
.fs9_c00007{font-size:42.666667pt;}
.fs1_c00007{font-size:45.333333pt;}
.fs6_c00007{font-size:61.333333pt;}
.fs8_c00007{font-size:64.000000pt;}
.fs5_c00007{font-size:72.000000pt;}
.fs0_c00007{font-size:74.666667pt;}
.fs7_c00007{font-size:90.666667pt;}
.fs4_c00007{font-size:93.333333pt;}
.fs2_c00007{font-size:96.000000pt;}
.fs3_c00007{font-size:98.666667pt;}
.y0_c00007{bottom:0.000000pt;}
.y1b_c00007{bottom:2.760000pt;}
.y1a_c00007{bottom:6.425204pt;}
.y19_c00007{bottom:69.186667pt;}
.y18_c00007{bottom:100.386667pt;}
.y17_c00007{bottom:150.786667pt;}
.y16_c00007{bottom:179.586667pt;}
.y15_c00007{bottom:278.386667pt;}
.y14_c00007{bottom:303.320000pt;}
.y13_c00007{bottom:329.720000pt;}
.y12_c00007{bottom:354.253333pt;}
.y11_c00007{bottom:381.186667pt;}
.y10_c00007{bottom:406.786667pt;}
.yf_c00007{bottom:431.720000pt;}
.ye_c00007{bottom:457.186667pt;}
.yd_c00007{bottom:483.320000pt;}
.yc_c00007{bottom:508.120000pt;}
.yb_c00007{bottom:534.520000pt;}
.ya_c00007{bottom:560.920000pt;}
.y9_c00007{bottom:585.186667pt;}
.y8_c00007{bottom:611.720000pt;}
.y7_c00007{bottom:637.453333pt;}
.y6_c00007{bottom:663.586667pt;}
.y5_c00007{bottom:688.786667pt;}
.y4_c00007{bottom:714.253333pt;}
.y3_c00007{bottom:740.386667pt;}
.y2_c00007{bottom:766.386667pt;}
.y1_c00007{bottom:792.920000pt;}
.ha_c00007{height:11.733399pt;}
.hb_c00007{height:38.937500pt;}
.h7_c00007{height:70.664062pt;}
.h3_c00007{height:73.244792pt;}
.h2_c00007{height:73.281250pt;}
.h9_c00007{height:74.906250pt;}
.h4_c00007{height:96.750000pt;}
.h5_c00007{height:101.413785pt;}
.h6_c00007{height:109.238281pt;}
.h8_c00007{height:114.794271pt;}
.h0_c00007{height:883.666667pt;}
.h1_c00007{height:884.000000pt;}
.w1_c00007{width:93.222667pt;}
.w0_c00007{width:620.666667pt;}
.x0_c00007{left:0.000000pt;}
.x7_c00007{left:144.533333pt;}
.x2_c00007{left:145.733333pt;}
.xd_c00007{left:146.933333pt;}
.xe_c00007{left:150.800000pt;}
.xb_c00007{left:152.133333pt;}
.xc_c00007{left:154.533333pt;}
.xa_c00007{left:161.066667pt;}
.x1_c00007{left:168.933333pt;}
.x3_c00007{left:170.133333pt;}
.x4_c00007{left:189.333333pt;}
.xf_c00007{left:267.501546pt;}
.x5_c00007{left:333.200000pt;}
.x6_c00007{left:357.600000pt;}
.x8_c00007{left:481.200000pt;}
.x9_c00007{left:501.866667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_70da45fa0ecd9e4ec780be7a.woff2')format("woff");}.ff1_c00008{font-family:ff1_c00008;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00008;src:url('chunks/assets/font_535b77375da8e9461d70afef.woff2')format("woff");}.ff2_c00008{font-family:ff2_c00008;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00008;src:url('chunks/assets/font_5c592136e9c4669f8317a01b.woff2')format("woff");}.ff3_c00008{font-family:ff3_c00008;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00008;src:url('chunks/assets/font_ccef99f200a252e5bd12192a.woff2')format("woff");}.ff4_c00008{font-family:ff4_c00008;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00008;src:url('chunks/assets/font_e595b07593769883ff9bd97e.woff2')format("woff");}.ff5_c00008{font-family:ff5_c00008;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00008;src:url('chunks/assets/font_2c5da18df8e41c314309987e.woff2')format("woff");}.ff6_c00008{font-family:ff6_c00008;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00008;src:url('chunks/assets/font_ac2813c06b30c2369b340b51.woff2')format("woff");}.ff7_c00008{font-family:ff7_c00008;line-height:1.437000;font-style:normal;font-weight: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_c00008;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff8_c00008{font-family:ff8_c00008;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00008{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00008{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m2_c00008{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1_c00008{vertical-align:-37.800000px;}
.v0_c00008{vertical-align:0.000000px;}
.ls5_c00008{letter-spacing:0.000000px;}
.ls8_c00008{letter-spacing:3.000000px;}
.ls6_c00008{letter-spacing:6.000000px;}
.ls1_c00008{letter-spacing:7.350000px;}
.ls2_c00008{letter-spacing:8.550000px;}
.ls4_c00008{letter-spacing:18.000000px;}
.ls7_c00008{letter-spacing:33.000000px;}
.ls3_c00008{letter-spacing:51.216000px;}
.ls0_c00008{letter-spacing:454.746000px;}
.sc__c00008{text-shadow:none;}
.sc0_c00008{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00008{-webkit-text-stroke:0px transparent;}
.sc0_c00008{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00008{word-spacing:-67.182000px;}
.ws2_c00008{word-spacing:-59.184000px;}
.ws3_c00008{word-spacing:-35.250000px;}
.ws0_c00008{word-spacing:-17.250000px;}
.ws4_c00008{word-spacing:0.000000px;}
._2d_c00008{margin-left:-52.545000px;}
._2b_c00008{margin-left:-50.892000px;}
._1a_c00008{margin-left:-39.528000px;}
._1d_c00008{margin-left:-36.861000px;}
._3d_c00008{margin-left:-34.344000px;}
._1b_c00008{margin-left:-31.923000px;}
._1c_c00008{margin-left:-30.222000px;}
._2e_c00008{margin-left:-28.833000px;}
._35_c00008{margin-left:-27.744000px;}
._14_c00008{margin-left:-26.244000px;}
._18_c00008{margin-left:-22.632000px;}
._3a_c00008{margin-left:-21.396000px;}
._17_c00008{margin-left:-19.080000px;}
._10_c00008{margin-left:-17.112000px;}
._24_c00008{margin-left:-15.996000px;}
._28_c00008{margin-left:-14.694000px;}
._30_c00008{margin-left:-12.741000px;}
._26_c00008{margin-left:-11.346000px;}
._e_c00008{margin-left:-9.522000px;}
._21_c00008{margin-left:-8.400000px;}
._2f_c00008{margin-left:-7.086000px;}
._12_c00008{margin-left:-6.036000px;}
._2_c00008{margin-left:-4.779000px;}
._6_c00008{margin-left:-3.588000px;}
._0_c00008{margin-left:-1.782000px;}
._1_c00008{width:1.296000px;}
._3_c00008{width:3.273000px;}
._9_c00008{width:4.770000px;}
._8_c00008{width:6.003000px;}
._b_c00008{width:7.035000px;}
._c_c00008{width:8.280000px;}
._a_c00008{width:9.630000px;}
._11_c00008{width:10.725000px;}
._d_c00008{width:11.943000px;}
._4_c00008{width:14.352000px;}
._7_c00008{width:15.996000px;}
._44_c00008{width:17.856000px;}
._25_c00008{width:19.344000px;}
._31_c00008{width:20.976000px;}
._5_c00008{width:23.874000px;}
._16_c00008{width:27.288000px;}
._48_c00008{width:30.132000px;}
._4a_c00008{width:32.400000px;}
._20_c00008{width:36.120000px;}
._2a_c00008{width:39.093000px;}
._29_c00008{width:50.835000px;}
._27_c00008{width:53.847000px;}
._49_c00008{width:63.135000px;}
._3c_c00008{width:68.238000px;}
._38_c00008{width:78.288000px;}
._f_c00008{width:81.420000px;}
._33_c00008{width:84.702000px;}
._19_c00008{width:86.727000px;}
._23_c00008{width:107.895000px;}
._45_c00008{width:114.144000px;}
._37_c00008{width:127.542000px;}
._43_c00008{width:157.032000px;}
._3b_c00008{width:162.123000px;}
._42_c00008{width:171.723000px;}
._46_c00008{width:182.043000px;}
._40_c00008{width:188.544000px;}
._22_c00008{width:221.289000px;}
._34_c00008{width:235.635000px;}
._1f_c00008{width:343.512000px;}
._41_c00008{width:381.030000px;}
._3e_c00008{width:387.600000px;}
._47_c00008{width:396.921000px;}
._32_c00008{width:403.104000px;}
._1e_c00008{width:467.823000px;}
._2c_c00008{width:638.259000px;}
._3f_c00008{width:657.762000px;}
._36_c00008{width:786.432000px;}
._39_c00008{width:871.485000px;}
._13_c00008{width:1033.893000px;}
._15_c00008{width:1330.944000px;}
.fc2_c00008{color:transparent;}
.fc1_c00008{color:rgb(128,128,128);}
.fc0_c00008{color:rgb(0,0,0);}
.fs3_c00008{font-size:24.000000px;}
.fs7_c00008{font-size:48.000000px;}
.fs5_c00008{font-size:60.000000px;}
.fs2_c00008{font-size:66.000000px;}
.fs1_c00008{font-size:69.000000px;}
.fs4_c00008{font-size:72.000000px;}
.fs0_c00008{font-size:81.000000px;}
.fs6_c00008{font-size:93.000000px;}
.y0_c00008{bottom:0.000000px;}
.y22_c00008{bottom:3.105000px;}
.y21_c00008{bottom:7.228371px;}
.y20_c00008{bottom:107.415000px;}
.y1f_c00008{bottom:167.715000px;}
.y1e_c00008{bottom:180.915000px;}
.y1d_c00008{bottom:206.865000px;}
.y1c_c00008{bottom:230.565000px;}
.y1b_c00008{bottom:266.265000px;}
.y1a_c00008{bottom:278.565000px;}
.y19_c00008{bottom:300.165000px;}
.y18_c00008{bottom:321.315000px;}
.y17_c00008{bottom:342.315000px;}
.y16_c00008{bottom:363.465000px;}
.y15_c00008{bottom:384.465000px;}
.y14_c00008{bottom:405.315000px;}
.y13_c00008{bottom:447.915000px;}
.y12_c00008{bottom:502.665000px;}
.y11_c00008{bottom:514.665000px;}
.y10_c00008{bottom:535.665000px;}
.yf_c00008{bottom:572.715000px;}
.ye_c00008{bottom:596.115000px;}
.yd_c00008{bottom:612.615000px;}
.yc_c00008{bottom:637.515000px;}
.yb_c00008{bottom:658.215000px;}
.ya_c00008{bottom:679.515000px;}
.y9_c00008{bottom:699.765000px;}
.y8_c00008{bottom:722.265000px;}
.y7_c00008{bottom:741.615000px;}
.y6_c00008{bottom:762.765000px;}
.y5_c00008{bottom:784.365000px;}
.y4_c00008{bottom:805.665000px;}
.y3_c00008{bottom:825.315000px;}
.y2_c00008{bottom:846.465000px;}
.y1_c00008{bottom:883.665000px;}
.h9_c00008{height:13.200074px;}
.h6_c00008{height:23.554688px;}
.ha_c00008{height:43.804688px;}
.h3_c00008{height:69.539062px;}
.h8_c00008{height:72.312000px;}
.h2_c00008{height:79.497070px;}
.h4_c00008{height:83.563477px;}
.h5_c00008{height:84.269531px;}
.h7_c00008{height:91.274414px;}
.h0_c00008{height:990.375000px;}
.h1_c00008{height:990.750000px;}
.w1_c00008{width:104.875500px;}
.w0_c00008{width:671.250000px;}
.x0_c00008{left:0.000000px;}
.x18_c00008{left:42.150000px;}
.x17_c00008{left:43.200000px;}
.x15_c00008{left:44.250000px;}
.x19_c00008{left:47.550000px;}
.xf_c00008{left:48.900000px;}
.xc_c00008{left:51.600000px;}
.xa_c00008{left:52.650000px;}
.x7_c00008{left:55.350000px;}
.xb_c00008{left:59.100000px;}
.x9_c00008{left:61.350000px;}
.x8_c00008{left:63.150000px;}
.x10_c00008{left:76.950000px;}
.x5_c00008{left:90.750000px;}
.x13_c00008{left:105.300000px;}
.x14_c00008{left:107.550000px;}
.x12_c00008{left:111.000000px;}
.x6_c00008{left:114.450000px;}
.x1_c00008{left:118.500000px;}
.xe_c00008{left:129.900000px;}
.x2_c00008{left:136.350000px;}
.x3_c00008{left:138.750000px;}
.x4_c00008{left:140.100000px;}
.x11_c00008{left:200.400000px;}
.x16_c00008{left:275.100000px;}
.x1b_c00008{left:287.439240px;}
.x1a_c00008{left:343.200000px;}
.xd_c00008{left:413.400000px;}
@media print{
.v1_c00008{vertical-align:-33.600000pt;}
.v0_c00008{vertical-align:0.000000pt;}
.ls5_c00008{letter-spacing:0.000000pt;}
.ls8_c00008{letter-spacing:2.666667pt;}
.ls6_c00008{letter-spacing:5.333333pt;}
.ls1_c00008{letter-spacing:6.533333pt;}
.ls2_c00008{letter-spacing:7.600000pt;}
.ls4_c00008{letter-spacing:16.000000pt;}
.ls7_c00008{letter-spacing:29.333333pt;}
.ls3_c00008{letter-spacing:45.525333pt;}
.ls0_c00008{letter-spacing:404.218667pt;}
.ws1_c00008{word-spacing:-59.717333pt;}
.ws2_c00008{word-spacing:-52.608000pt;}
.ws3_c00008{word-spacing:-31.333333pt;}
.ws0_c00008{word-spacing:-15.333333pt;}
.ws4_c00008{word-spacing:0.000000pt;}
._2d_c00008{margin-left:-46.706667pt;}
._2b_c00008{margin-left:-45.237333pt;}
._1a_c00008{margin-left:-35.136000pt;}
._1d_c00008{margin-left:-32.765333pt;}
._3d_c00008{margin-left:-30.528000pt;}
._1b_c00008{margin-left:-28.376000pt;}
._1c_c00008{margin-left:-26.864000pt;}
._2e_c00008{margin-left:-25.629333pt;}
._35_c00008{margin-left:-24.661333pt;}
._14_c00008{margin-left:-23.328000pt;}
._18_c00008{margin-left:-20.117333pt;}
._3a_c00008{margin-left:-19.018667pt;}
._17_c00008{margin-left:-16.960000pt;}
._10_c00008{margin-left:-15.210667pt;}
._24_c00008{margin-left:-14.218667pt;}
._28_c00008{margin-left:-13.061333pt;}
._30_c00008{margin-left:-11.325333pt;}
._26_c00008{margin-left:-10.085333pt;}
._e_c00008{margin-left:-8.464000pt;}
._21_c00008{margin-left:-7.466667pt;}
._2f_c00008{margin-left:-6.298667pt;}
._12_c00008{margin-left:-5.365333pt;}
._2_c00008{margin-left:-4.248000pt;}
._6_c00008{margin-left:-3.189333pt;}
._0_c00008{margin-left:-1.584000pt;}
._1_c00008{width:1.152000pt;}
._3_c00008{width:2.909333pt;}
._9_c00008{width:4.240000pt;}
._8_c00008{width:5.336000pt;}
._b_c00008{width:6.253333pt;}
._c_c00008{width:7.360000pt;}
._a_c00008{width:8.560000pt;}
._11_c00008{width:9.533333pt;}
._d_c00008{width:10.616000pt;}
._4_c00008{width:12.757333pt;}
._7_c00008{width:14.218667pt;}
._44_c00008{width:15.872000pt;}
._25_c00008{width:17.194667pt;}
._31_c00008{width:18.645333pt;}
._5_c00008{width:21.221333pt;}
._16_c00008{width:24.256000pt;}
._48_c00008{width:26.784000pt;}
._4a_c00008{width:28.800000pt;}
._20_c00008{width:32.106667pt;}
._2a_c00008{width:34.749333pt;}
._29_c00008{width:45.186667pt;}
._27_c00008{width:47.864000pt;}
._49_c00008{width:56.120000pt;}
._3c_c00008{width:60.656000pt;}
._38_c00008{width:69.589333pt;}
._f_c00008{width:72.373333pt;}
._33_c00008{width:75.290667pt;}
._19_c00008{width:77.090667pt;}
._23_c00008{width:95.906667pt;}
._45_c00008{width:101.461333pt;}
._37_c00008{width:113.370667pt;}
._43_c00008{width:139.584000pt;}
._3b_c00008{width:144.109333pt;}
._42_c00008{width:152.642667pt;}
._46_c00008{width:161.816000pt;}
._40_c00008{width:167.594667pt;}
._22_c00008{width:196.701333pt;}
._34_c00008{width:209.453333pt;}
._1f_c00008{width:305.344000pt;}
._41_c00008{width:338.693333pt;}
._3e_c00008{width:344.533333pt;}
._47_c00008{width:352.818667pt;}
._32_c00008{width:358.314667pt;}
._1e_c00008{width:415.842667pt;}
._2c_c00008{width:567.341333pt;}
._3f_c00008{width:584.677333pt;}
._36_c00008{width:699.050667pt;}
._39_c00008{width:774.653333pt;}
._13_c00008{width:919.016000pt;}
._15_c00008{width:1183.061333pt;}
.fs3_c00008{font-size:21.333333pt;}
.fs7_c00008{font-size:42.666667pt;}
.fs5_c00008{font-size:53.333333pt;}
.fs2_c00008{font-size:58.666667pt;}
.fs1_c00008{font-size:61.333333pt;}
.fs4_c00008{font-size:64.000000pt;}
.fs0_c00008{font-size:72.000000pt;}
.fs6_c00008{font-size:82.666667pt;}
.y0_c00008{bottom:0.000000pt;}
.y22_c00008{bottom:2.760000pt;}
.y21_c00008{bottom:6.425219pt;}
.y20_c00008{bottom:95.480000pt;}
.y1f_c00008{bottom:149.080000pt;}
.y1e_c00008{bottom:160.813333pt;}
.y1d_c00008{bottom:183.880000pt;}
.y1c_c00008{bottom:204.946667pt;}
.y1b_c00008{bottom:236.680000pt;}
.y1a_c00008{bottom:247.613333pt;}
.y19_c00008{bottom:266.813333pt;}
.y18_c00008{bottom:285.613333pt;}
.y17_c00008{bottom:304.280000pt;}
.y16_c00008{bottom:323.080000pt;}
.y15_c00008{bottom:341.746667pt;}
.y14_c00008{bottom:360.280000pt;}
.y13_c00008{bottom:398.146667pt;}
.y12_c00008{bottom:446.813333pt;}
.y11_c00008{bottom:457.480000pt;}
.y10_c00008{bottom:476.146667pt;}
.yf_c00008{bottom:509.080000pt;}
.ye_c00008{bottom:529.880000pt;}
.yd_c00008{bottom:544.546667pt;}
.yc_c00008{bottom:566.680000pt;}
.yb_c00008{bottom:585.080000pt;}
.ya_c00008{bottom:604.013333pt;}
.y9_c00008{bottom:622.013333pt;}
.y8_c00008{bottom:642.013333pt;}
.y7_c00008{bottom:659.213333pt;}
.y6_c00008{bottom:678.013333pt;}
.y5_c00008{bottom:697.213333pt;}
.y4_c00008{bottom:716.146667pt;}
.y3_c00008{bottom:733.613333pt;}
.y2_c00008{bottom:752.413333pt;}
.y1_c00008{bottom:785.480000pt;}
.h9_c00008{height:11.733399pt;}
.h6_c00008{height:20.937500pt;}
.ha_c00008{height:38.937500pt;}
.h3_c00008{height:61.812500pt;}
.h8_c00008{height:64.277333pt;}
.h2_c00008{height:70.664062pt;}
.h4_c00008{height:74.278646pt;}
.h5_c00008{height:74.906250pt;}
.h7_c00008{height:81.132812pt;}
.h0_c00008{height:880.333333pt;}
.h1_c00008{height:880.666667pt;}
.w1_c00008{width:93.222667pt;}
.w0_c00008{width:596.666667pt;}
.x0_c00008{left:0.000000pt;}
.x18_c00008{left:37.466667pt;}
.x17_c00008{left:38.400000pt;}
.x15_c00008{left:39.333333pt;}
.x19_c00008{left:42.266667pt;}
.xf_c00008{left:43.466667pt;}
.xc_c00008{left:45.866667pt;}
.xa_c00008{left:46.800000pt;}
.x7_c00008{left:49.200000pt;}
.xb_c00008{left:52.533333pt;}
.x9_c00008{left:54.533333pt;}
.x8_c00008{left:56.133333pt;}
.x10_c00008{left:68.400000pt;}
.x5_c00008{left:80.666667pt;}
.x13_c00008{left:93.600000pt;}
.x14_c00008{left:95.600000pt;}
.x12_c00008{left:98.666667pt;}
.x6_c00008{left:101.733333pt;}
.x1_c00008{left:105.333333pt;}
.xe_c00008{left:115.466667pt;}
.x2_c00008{left:121.200000pt;}
.x3_c00008{left:123.333333pt;}
.x4_c00008{left:124.533333pt;}
.x11_c00008{left:178.133333pt;}
.x16_c00008{left:244.533333pt;}
.x1b_c00008{left:255.501546pt;}
.x1a_c00008{left:305.066667pt;}
.xd_c00008{left:367.466667pt;}
}





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

.ir_c00009:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00009{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00009;src:url('chunks/assets/font_3981bc0c29ca57ee00b01160.woff2')format("woff");}.ff1_c00009{font-family:ff1_c00009;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00009;src:url('chunks/assets/font_385e5d13e4ed70e3a4507645.woff2')format("woff");}.ff2_c00009{font-family:ff2_c00009;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00009;src:url('chunks/assets/font_54d9ac8410536c048181a407.woff2')format("woff");}.ff3_c00009{font-family:ff3_c00009;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00009;src:url('chunks/assets/font_62ae2a990741a1ab204e3303.woff2')format("woff");}.ff4_c00009{font-family:ff4_c00009;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00009;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c00009{font-family:ff5_c00009;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00009{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00009{vertical-align:0.000000px;}
.ls1_c00009{letter-spacing:-9.000000px;}
.ls2_c00009{letter-spacing:0.000000px;}
.ls0_c00009{letter-spacing:21.000000px;}
.sc__c00009{text-shadow:none;}
.sc0_c00009{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00009{-webkit-text-stroke:0px transparent;}
.sc0_c00009{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00009{word-spacing:-17.250000px;}
.ws2_c00009{word-spacing:0.000000px;}
.ws0_c00009{word-spacing:9.741000px;}
._1c_c00009{margin-left:-37.812000px;}
._5_c00009{margin-left:-34.506000px;}
._a_c00009{margin-left:-18.549000px;}
._16_c00009{margin-left:-16.284000px;}
._c_c00009{margin-left:-13.851000px;}
._1f_c00009{margin-left:-11.406000px;}
._0_c00009{margin-left:-9.108000px;}
._1_c00009{margin-left:-8.052000px;}
._1e_c00009{margin-left:-6.738000px;}
._14_c00009{margin-left:-5.106000px;}
._8_c00009{margin-left:-3.888000px;}
._3_c00009{margin-left:-2.244000px;}
._4_c00009{margin-left:-1.056000px;}
._f_c00009{width:1.311000px;}
._11_c00009{width:2.691000px;}
._12_c00009{width:4.140000px;}
._19_c00009{width:5.205000px;}
._15_c00009{width:6.375000px;}
._17_c00009{width:7.566000px;}
._13_c00009{width:8.733000px;}
._e_c00009{width:9.936000px;}
._18_c00009{width:11.490000px;}
._1b_c00009{width:13.146000px;}
._20_c00009{width:14.583000px;}
._21_c00009{width:16.056000px;}
._6_c00009{width:22.275000px;}
._10_c00009{width:25.668000px;}
._2_c00009{width:41.184000px;}
._22_c00009{width:65.442000px;}
._7_c00009{width:66.501000px;}
._b_c00009{width:71.523000px;}
._d_c00009{width:77.922000px;}
._9_c00009{width:124.917000px;}
._1a_c00009{width:374.010000px;}
._1d_c00009{width:504.114000px;}
.fc2_c00009{color:transparent;}
.fc1_c00009{color:rgb(128,128,128);}
.fc0_c00009{color:rgb(0,0,0);}
.fs3_c00009{font-size:48.000000px;}
.fs2_c00009{font-size:69.000000px;}
.fs1_c00009{font-size:81.000000px;}
.fs0_c00009{font-size:132.000000px;}
.y0_c00009{bottom:0.000000px;}
.y29_c00009{bottom:3.105000px;}
.y28_c00009{bottom:7.228357px;}
.y27_c00009{bottom:47.580000px;}
.y26_c00009{bottom:69.630000px;}
.y25_c00009{bottom:91.530000px;}
.y24_c00009{bottom:112.680000px;}
.y23_c00009{bottom:134.730000px;}
.y22_c00009{bottom:155.580000px;}
.y21_c00009{bottom:176.880000px;}
.y20_c00009{bottom:197.880000px;}
.y1f_c00009{bottom:219.330000px;}
.y1e_c00009{bottom:240.330000px;}
.y1d_c00009{bottom:261.330000px;}
.y1c_c00009{bottom:282.480000px;}
.y1b_c00009{bottom:303.180000px;}
.y1a_c00009{bottom:323.730000px;}
.y19_c00009{bottom:345.030000px;}
.y18_c00009{bottom:365.880000px;}
.y17_c00009{bottom:387.180000px;}
.y16_c00009{bottom:408.330000px;}
.y15_c00009{bottom:428.730000px;}
.y14_c00009{bottom:449.580000px;}
.y13_c00009{bottom:470.430000px;}
.y12_c00009{bottom:491.430000px;}
.y11_c00009{bottom:512.280000px;}
.y10_c00009{bottom:532.980000px;}
.yf_c00009{bottom:554.130000px;}
.ye_c00009{bottom:574.830000px;}
.yd_c00009{bottom:596.130000px;}
.yc_c00009{bottom:616.980000px;}
.yb_c00009{bottom:637.830000px;}
.ya_c00009{bottom:658.530000px;}
.y9_c00009{bottom:679.380000px;}
.y8_c00009{bottom:700.380000px;}
.y7_c00009{bottom:721.530000px;}
.y6_c00009{bottom:741.930000px;}
.y5_c00009{bottom:763.380000px;}
.y4_c00009{bottom:784.080000px;}
.y3_c00009{bottom:804.930000px;}
.y2_c00009{bottom:844.830000px;}
.y1_c00009{bottom:865.680000px;}
.h5_c00009{height:13.200074px;}
.h6_c00009{height:43.804688px;}
.h3_c00009{height:69.539062px;}
.h4_c00009{height:72.312000px;}
.h2_c00009{height:79.497070px;}
.h1_c00009{height:167.126953px;}
.h0_c00009{height:981.750000px;}
.w2_c00009{width:104.875500px;}
.w1_c00009{width:670.500000px;}
.w0_c00009{width:670.650000px;}
.x0_c00009{left:0.000000px;}
.x6_c00009{left:126.600000px;}
.x5_c00009{left:129.300000px;}
.x7_c00009{left:130.650000px;}
.x8_c00009{left:133.050000px;}
.x9_c00009{left:134.100000px;}
.xa_c00009{left:135.450000px;}
.xb_c00009{left:136.650000px;}
.xc_c00009{left:138.150000px;}
.xd_c00009{left:139.500000px;}
.xe_c00009{left:140.700000px;}
.xf_c00009{left:142.500000px;}
.x10_c00009{left:144.000000px;}
.x4_c00009{left:260.850000px;}
.x3_c00009{left:261.900000px;}
.x1_c00009{left:273.600000px;}
.x12_c00009{left:287.139267px;}
.x2_c00009{left:400.950000px;}
.x11_c00009{left:583.200000px;}
@media print{
.v0_c00009{vertical-align:0.000000pt;}
.ls1_c00009{letter-spacing:-8.000000pt;}
.ls2_c00009{letter-spacing:0.000000pt;}
.ls0_c00009{letter-spacing:18.666667pt;}
.ws1_c00009{word-spacing:-15.333333pt;}
.ws2_c00009{word-spacing:0.000000pt;}
.ws0_c00009{word-spacing:8.658667pt;}
._1c_c00009{margin-left:-33.610667pt;}
._5_c00009{margin-left:-30.672000pt;}
._a_c00009{margin-left:-16.488000pt;}
._16_c00009{margin-left:-14.474667pt;}
._c_c00009{margin-left:-12.312000pt;}
._1f_c00009{margin-left:-10.138667pt;}
._0_c00009{margin-left:-8.096000pt;}
._1_c00009{margin-left:-7.157333pt;}
._1e_c00009{margin-left:-5.989333pt;}
._14_c00009{margin-left:-4.538667pt;}
._8_c00009{margin-left:-3.456000pt;}
._3_c00009{margin-left:-1.994667pt;}
._4_c00009{margin-left:-0.938667pt;}
._f_c00009{width:1.165333pt;}
._11_c00009{width:2.392000pt;}
._12_c00009{width:3.680000pt;}
._19_c00009{width:4.626667pt;}
._15_c00009{width:5.666667pt;}
._17_c00009{width:6.725333pt;}
._13_c00009{width:7.762667pt;}
._e_c00009{width:8.832000pt;}
._18_c00009{width:10.213333pt;}
._1b_c00009{width:11.685333pt;}
._20_c00009{width:12.962667pt;}
._21_c00009{width:14.272000pt;}
._6_c00009{width:19.800000pt;}
._10_c00009{width:22.816000pt;}
._2_c00009{width:36.608000pt;}
._22_c00009{width:58.170667pt;}
._7_c00009{width:59.112000pt;}
._b_c00009{width:63.576000pt;}
._d_c00009{width:69.264000pt;}
._9_c00009{width:111.037333pt;}
._1a_c00009{width:332.453333pt;}
._1d_c00009{width:448.101333pt;}
.fs3_c00009{font-size:42.666667pt;}
.fs2_c00009{font-size:61.333333pt;}
.fs1_c00009{font-size:72.000000pt;}
.fs0_c00009{font-size:117.333333pt;}
.y0_c00009{bottom:0.000000pt;}
.y29_c00009{bottom:2.760000pt;}
.y28_c00009{bottom:6.425206pt;}
.y27_c00009{bottom:42.293333pt;}
.y26_c00009{bottom:61.893333pt;}
.y25_c00009{bottom:81.360000pt;}
.y24_c00009{bottom:100.160000pt;}
.y23_c00009{bottom:119.760000pt;}
.y22_c00009{bottom:138.293333pt;}
.y21_c00009{bottom:157.226667pt;}
.y20_c00009{bottom:175.893333pt;}
.y1f_c00009{bottom:194.960000pt;}
.y1e_c00009{bottom:213.626667pt;}
.y1d_c00009{bottom:232.293333pt;}
.y1c_c00009{bottom:251.093333pt;}
.y1b_c00009{bottom:269.493333pt;}
.y1a_c00009{bottom:287.760000pt;}
.y19_c00009{bottom:306.693333pt;}
.y18_c00009{bottom:325.226667pt;}
.y17_c00009{bottom:344.160000pt;}
.y16_c00009{bottom:362.960000pt;}
.y15_c00009{bottom:381.093333pt;}
.y14_c00009{bottom:399.626667pt;}
.y13_c00009{bottom:418.160000pt;}
.y12_c00009{bottom:436.826667pt;}
.y11_c00009{bottom:455.360000pt;}
.y10_c00009{bottom:473.760000pt;}
.yf_c00009{bottom:492.560000pt;}
.ye_c00009{bottom:510.960000pt;}
.yd_c00009{bottom:529.893333pt;}
.yc_c00009{bottom:548.426667pt;}
.yb_c00009{bottom:566.960000pt;}
.ya_c00009{bottom:585.360000pt;}
.y9_c00009{bottom:603.893333pt;}
.y8_c00009{bottom:622.560000pt;}
.y7_c00009{bottom:641.360000pt;}
.y6_c00009{bottom:659.493333pt;}
.y5_c00009{bottom:678.560000pt;}
.y4_c00009{bottom:696.960000pt;}
.y3_c00009{bottom:715.493333pt;}
.y2_c00009{bottom:750.960000pt;}
.y1_c00009{bottom:769.493333pt;}
.h5_c00009{height:11.733399pt;}
.h6_c00009{height:38.937500pt;}
.h3_c00009{height:61.812500pt;}
.h4_c00009{height:64.277333pt;}
.h2_c00009{height:70.664062pt;}
.h1_c00009{height:148.557292pt;}
.h0_c00009{height:872.666667pt;}
.w2_c00009{width:93.222667pt;}
.w1_c00009{width:596.000000pt;}
.w0_c00009{width:596.133333pt;}
.x0_c00009{left:0.000000pt;}
.x6_c00009{left:112.533333pt;}
.x5_c00009{left:114.933333pt;}
.x7_c00009{left:116.133333pt;}
.x8_c00009{left:118.266667pt;}
.x9_c00009{left:119.200000pt;}
.xa_c00009{left:120.400000pt;}
.xb_c00009{left:121.466667pt;}
.xc_c00009{left:122.800000pt;}
.xd_c00009{left:124.000000pt;}
.xe_c00009{left:125.066667pt;}
.xf_c00009{left:126.666667pt;}
.x10_c00009{left:128.000000pt;}
.x4_c00009{left:231.866667pt;}
.x3_c00009{left:232.800000pt;}
.x1_c00009{left:243.200000pt;}
.x12_c00009{left:255.234904pt;}
.x2_c00009{left:356.400000pt;}
.x11_c00009{left:518.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_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_ba34ed18f72fee4424507e67.woff2')format("woff");}.ff1_c00010{font-family:ff1_c00010;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00010;src:url('chunks/assets/font_2e8b108e0b050c16d523b7a1.woff2')format("woff");}.ff2_c00010{font-family:ff2_c00010;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00010;src:url('chunks/assets/font_41cef4fc152132ae4e3e361d.woff2')format("woff");}.ff3_c00010{font-family:ff3_c00010;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00010;src:url('chunks/assets/font_56d2b2ff0259b41d3654312f.woff2')format("woff");}.ff4_c00010{font-family:ff4_c00010;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00010;src:url('chunks/assets/font_6968ab8e90cd76e95399b75d.woff2')format("woff");}.ff5_c00010{font-family:ff5_c00010;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00010;src:url('chunks/assets/font_ab560a5ca0821ee81f5ba1d9.woff2')format("woff");}.ff6_c00010{font-family:ff6_c00010;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00010;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c00010{font-family:ff7_c00010;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00010{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m0_c00010{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00010{transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);}
.v0_c00010{vertical-align:0.000000px;}
.ls2_c00010{letter-spacing:0.000000px;}
.ls0_c00010{letter-spacing:5.100000px;}
.ls3_c00010{letter-spacing:6.000000px;}
.ls6_c00010{letter-spacing:18.000000px;}
.ls4_c00010{letter-spacing:21.000000px;}
.ls5_c00010{letter-spacing:42.000000px;}
.ls1_c00010{letter-spacing:89.988000px;}
.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;}
}
.ws3_c00010{word-spacing:-100.644000px;}
.ws2_c00010{word-spacing:-53.682000px;}
.ws4_c00010{word-spacing:-38.250000px;}
.ws1_c00010{word-spacing:-21.906000px;}
.ws0_c00010{word-spacing:-17.250000px;}
.ws5_c00010{word-spacing:0.000000px;}
._18_c00010{margin-left:-44.616000px;}
._17_c00010{margin-left:-24.048000px;}
._a_c00010{margin-left:-20.286000px;}
._c_c00010{margin-left:-18.255000px;}
._10_c00010{margin-left:-16.284000px;}
._13_c00010{margin-left:-13.800000px;}
._11_c00010{margin-left:-12.627000px;}
._16_c00010{margin-left:-11.454000px;}
._9_c00010{margin-left:-9.384000px;}
._7_c00010{margin-left:-7.176000px;}
._12_c00010{margin-left:-5.796000px;}
._1_c00010{margin-left:-4.761000px;}
._0_c00010{margin-left:-3.657000px;}
._2_c00010{margin-left:-2.346000px;}
._3_c00010{margin-left:-1.311000px;}
._8_c00010{width:1.104000px;}
._5_c00010{width:2.415000px;}
._6_c00010{width:3.864000px;}
._4_c00010{width:5.175000px;}
._d_c00010{width:6.486000px;}
._15_c00010{width:8.418000px;}
._b_c00010{width:9.729000px;}
._1e_c00010{width:11.340000px;}
._14_c00010{width:13.386000px;}
._e_c00010{width:14.973000px;}
._1f_c00010{width:30.375000px;}
._20_c00010{width:31.833000px;}
._19_c00010{width:34.452000px;}
._1a_c00010{width:35.577000px;}
._1b_c00010{width:48.471000px;}
._1d_c00010{width:82.347000px;}
._1c_c00010{width:106.878000px;}
._f_c00010{width:158.631000px;}
._21_c00010{width:229.053000px;}
.fc2_c00010{color:transparent;}
.fc1_c00010{color:rgb(128,128,128);}
.fc0_c00010{color:rgb(0,0,0);}
.fs6_c00010{font-size:48.000000px;}
.fs1_c00010{font-size:66.000000px;}
.fs0_c00010{font-size:69.000000px;}
.fs5_c00010{font-size:81.000000px;}
.fs4_c00010{font-size:84.000000px;}
.fs3_c00010{font-size:99.000000px;}
.fs2_c00010{font-size:132.000000px;}
.y0_c00010{bottom:0.000000px;}
.y17_c00010{bottom:3.105000px;}
.y16_c00010{bottom:7.228371px;}
.y15_c00010{bottom:230.565000px;}
.y14_c00010{bottom:393.315000px;}
.y13_c00010{bottom:423.915000px;}
.y12_c00010{bottom:475.215000px;}
.y11_c00010{bottom:527.865000px;}
.y10_c00010{bottom:550.215000px;}
.yf_c00010{bottom:571.515000px;}
.ye_c00010{bottom:592.065000px;}
.yd_c00010{bottom:613.215000px;}
.yc_c00010{bottom:633.915000px;}
.yb_c00010{bottom:655.065000px;}
.ya_c00010{bottom:675.765000px;}
.y9_c00010{bottom:696.015000px;}
.y8_c00010{bottom:716.865000px;}
.y7_c00010{bottom:737.415000px;}
.y6_c00010{bottom:759.015000px;}
.y5_c00010{bottom:779.715000px;}
.y4_c00010{bottom:800.265000px;}
.y3_c00010{bottom:821.865000px;}
.y2_c00010{bottom:842.715000px;}
.y1_c00010{bottom:862.065000px;}
.h9_c00010{height:13.200074px;}
.ha_c00010{height:43.804688px;}
.h2_c00010{height:69.539062px;}
.h4_c00010{height:72.312000px;}
.h8_c00010{height:79.497070px;}
.h7_c00010{height:82.400391px;}
.h6_c00010{height:82.441406px;}
.h3_c00010{height:83.563477px;}
.h5_c00010{height:167.126953px;}
.h0_c00010{height:990.375000px;}
.h1_c00010{height:990.750000px;}
.w1_c00010{width:104.875500px;}
.w0_c00010{width:671.250000px;}
.x0_c00010{left:0.000000px;}
.x1_c00010{left:54.300000px;}
.x2_c00010{left:55.950000px;}
.x3_c00010{left:59.700000px;}
.x4_c00010{left:61.350000px;}
.x5_c00010{left:62.400000px;}
.x6_c00010{left:63.450000px;}
.x7_c00010{left:65.100000px;}
.x8_c00010{left:95.850000px;}
.x9_c00010{left:135.300000px;}
.xa_c00010{left:152.550000px;}
.xb_c00010{left:160.650000px;}
.xc_c00010{left:211.650000px;}
.xd_c00010{left:259.200000px;}
.xf_c00010{left:287.439240px;}
.xe_c00010{left:374.700000px;}
@media print{
.v0_c00010{vertical-align:0.000000pt;}
.ls2_c00010{letter-spacing:0.000000pt;}
.ls0_c00010{letter-spacing:4.533333pt;}
.ls3_c00010{letter-spacing:5.333333pt;}
.ls6_c00010{letter-spacing:16.000000pt;}
.ls4_c00010{letter-spacing:18.666667pt;}
.ls5_c00010{letter-spacing:37.333333pt;}
.ls1_c00010{letter-spacing:79.989333pt;}
.ws3_c00010{word-spacing:-89.461333pt;}
.ws2_c00010{word-spacing:-47.717333pt;}
.ws4_c00010{word-spacing:-34.000000pt;}
.ws1_c00010{word-spacing:-19.472000pt;}
.ws0_c00010{word-spacing:-15.333333pt;}
.ws5_c00010{word-spacing:0.000000pt;}
._18_c00010{margin-left:-39.658667pt;}
._17_c00010{margin-left:-21.376000pt;}
._a_c00010{margin-left:-18.032000pt;}
._c_c00010{margin-left:-16.226667pt;}
._10_c00010{margin-left:-14.474667pt;}
._13_c00010{margin-left:-12.266667pt;}
._11_c00010{margin-left:-11.224000pt;}
._16_c00010{margin-left:-10.181333pt;}
._9_c00010{margin-left:-8.341333pt;}
._7_c00010{margin-left:-6.378667pt;}
._12_c00010{margin-left:-5.152000pt;}
._1_c00010{margin-left:-4.232000pt;}
._0_c00010{margin-left:-3.250667pt;}
._2_c00010{margin-left:-2.085333pt;}
._3_c00010{margin-left:-1.165333pt;}
._8_c00010{width:0.981333pt;}
._5_c00010{width:2.146667pt;}
._6_c00010{width:3.434667pt;}
._4_c00010{width:4.600000pt;}
._d_c00010{width:5.765333pt;}
._15_c00010{width:7.482667pt;}
._b_c00010{width:8.648000pt;}
._1e_c00010{width:10.080000pt;}
._14_c00010{width:11.898667pt;}
._e_c00010{width:13.309333pt;}
._1f_c00010{width:27.000000pt;}
._20_c00010{width:28.296000pt;}
._19_c00010{width:30.624000pt;}
._1a_c00010{width:31.624000pt;}
._1b_c00010{width:43.085333pt;}
._1d_c00010{width:73.197333pt;}
._1c_c00010{width:95.002667pt;}
._f_c00010{width:141.005333pt;}
._21_c00010{width:203.602667pt;}
.fs6_c00010{font-size:42.666667pt;}
.fs1_c00010{font-size:58.666667pt;}
.fs0_c00010{font-size:61.333333pt;}
.fs5_c00010{font-size:72.000000pt;}
.fs4_c00010{font-size:74.666667pt;}
.fs3_c00010{font-size:88.000000pt;}
.fs2_c00010{font-size:117.333333pt;}
.y0_c00010{bottom:0.000000pt;}
.y17_c00010{bottom:2.760000pt;}
.y16_c00010{bottom:6.425219pt;}
.y15_c00010{bottom:204.946667pt;}
.y14_c00010{bottom:349.613333pt;}
.y13_c00010{bottom:376.813333pt;}
.y12_c00010{bottom:422.413333pt;}
.y11_c00010{bottom:469.213333pt;}
.y10_c00010{bottom:489.080000pt;}
.yf_c00010{bottom:508.013333pt;}
.ye_c00010{bottom:526.280000pt;}
.yd_c00010{bottom:545.080000pt;}
.yc_c00010{bottom:563.480000pt;}
.yb_c00010{bottom:582.280000pt;}
.ya_c00010{bottom:600.680000pt;}
.y9_c00010{bottom:618.680000pt;}
.y8_c00010{bottom:637.213333pt;}
.y7_c00010{bottom:655.480000pt;}
.y6_c00010{bottom:674.680000pt;}
.y5_c00010{bottom:693.080000pt;}
.y4_c00010{bottom:711.346667pt;}
.y3_c00010{bottom:730.546667pt;}
.y2_c00010{bottom:749.080000pt;}
.y1_c00010{bottom:766.280000pt;}
.h9_c00010{height:11.733399pt;}
.ha_c00010{height:38.937500pt;}
.h2_c00010{height:61.812500pt;}
.h4_c00010{height:64.277333pt;}
.h8_c00010{height:70.664062pt;}
.h7_c00010{height:73.244792pt;}
.h6_c00010{height:73.281250pt;}
.h3_c00010{height:74.278646pt;}
.h5_c00010{height:148.557292pt;}
.h0_c00010{height:880.333333pt;}
.h1_c00010{height:880.666667pt;}
.w1_c00010{width:93.222667pt;}
.w0_c00010{width:596.666667pt;}
.x0_c00010{left:0.000000pt;}
.x1_c00010{left:48.266667pt;}
.x2_c00010{left:49.733333pt;}
.x3_c00010{left:53.066667pt;}
.x4_c00010{left:54.533333pt;}
.x5_c00010{left:55.466667pt;}
.x6_c00010{left:56.400000pt;}
.x7_c00010{left:57.866667pt;}
.x8_c00010{left:85.200000pt;}
.x9_c00010{left:120.266667pt;}
.xa_c00010{left:135.600000pt;}
.xb_c00010{left:142.800000pt;}
.xc_c00010{left:188.133333pt;}
.xd_c00010{left:230.400000pt;}
.xf_c00010{left:255.501546pt;}
.xe_c00010{left:333.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_81ddca47fd23357a53b788f0.woff2')format("woff");}.ff1_c00011{font-family:ff1_c00011;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00011;src:url('chunks/assets/font_d6e262b1aca93da05abaffc7.woff2')format("woff");}.ff2_c00011{font-family:ff2_c00011;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00011;src:url('chunks/assets/font_daddd50840efbf1fc9c2c686.woff2')format("woff");}.ff3_c00011{font-family:ff3_c00011;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00011;src:url('chunks/assets/font_f8c64eea5d2331d4b4cd2452.woff2')format("woff");}.ff4_c00011{font-family:ff4_c00011;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00011;src:url('chunks/assets/font_6ebe6d919c8552c54ce31bff.woff2')format("woff");}.ff5_c00011{font-family:ff5_c00011;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00011;src:url('chunks/assets/font_d6f181568947fabf6e6d136d.woff2')format("woff");}.ff6_c00011{font-family:ff6_c00011;line-height:1.437000;font-style:normal;font-weight: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_c00011;src:url('chunks/assets/font_d4e483eff3a3a7262898c125.woff2')format("woff");}.ff7_c00011{font-family:ff7_c00011;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00011;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff8_c00011{font-family:ff8_c00011;line-height:1.219238;font-style: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.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m1_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;}
.ls9_c00011{letter-spacing:-6.000000px;}
.ls6_c00011{letter-spacing:0.000000px;}
.ls0_c00011{letter-spacing:0.288000px;}
.ls4_c00011{letter-spacing:1.614000px;}
.ls3_c00011{letter-spacing:2.292000px;}
.lsd_c00011{letter-spacing:3.000000px;}
.ls1_c00011{letter-spacing:3.414000px;}
.ls2_c00011{letter-spacing:4.800000px;}
.ls8_c00011{letter-spacing:6.000000px;}
.lse_c00011{letter-spacing:9.000000px;}
.ls7_c00011{letter-spacing:15.000000px;}
.lsb_c00011{letter-spacing:18.000000px;}
.lsf_c00011{letter-spacing:24.000000px;}
.ls5_c00011{letter-spacing:25.359000px;}
.lsa_c00011{letter-spacing:33.000000px;}
.lsc_c00011{letter-spacing:222.000000px;}
.sc__c00011{text-shadow:none;}
.sc0_c00011{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00011{-webkit-text-stroke:0px transparent;}
.sc0_c00011{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00011{word-spacing:-53.682000px;}
.ws8_c00011{word-spacing:-41.250000px;}
.ws1_c00011{word-spacing:-24.000000px;}
.ws5_c00011{word-spacing:-21.906000px;}
.ws4_c00011{word-spacing:-20.250000px;}
.ws0_c00011{word-spacing:-19.014000px;}
.ws3_c00011{word-spacing:-18.798000px;}
.ws2_c00011{word-spacing:-13.014000px;}
.ws7_c00011{word-spacing:-4.464000px;}
.ws9_c00011{word-spacing:0.000000px;}
._2e_c00011{margin-left:-239.880000px;}
._29_c00011{margin-left:-226.920000px;}
._27_c00011{margin-left:-223.440000px;}
._23_c00011{margin-left:-220.872000px;}
._2c_c00011{margin-left:-213.192000px;}
._2d_c00011{margin-left:-211.584000px;}
._25_c00011{margin-left:-209.544000px;}
._26_c00011{margin-left:-199.872000px;}
._24_c00011{margin-left:-192.072000px;}
._2b_c00011{margin-left:-111.024000px;}
._2_c00011{margin-left:-55.836000px;}
._39_c00011{margin-left:-49.569000px;}
._1f_c00011{margin-left:-35.280000px;}
._1e_c00011{margin-left:-31.992000px;}
._c_c00011{margin-left:-29.592000px;}
._34_c00011{margin-left:-23.808000px;}
._48_c00011{margin-left:-22.608000px;}
._36_c00011{margin-left:-21.432000px;}
._18_c00011{margin-left:-19.602000px;}
._21_c00011{margin-left:-17.238000px;}
._44_c00011{margin-left:-15.798000px;}
._1b_c00011{margin-left:-14.682000px;}
._16_c00011{margin-left:-12.990000px;}
._14_c00011{margin-left:-11.586000px;}
._15_c00011{margin-left:-10.314000px;}
._17_c00011{margin-left:-9.090000px;}
._8_c00011{margin-left:-7.884000px;}
._4_c00011{margin-left:-6.696000px;}
._7_c00011{margin-left:-5.184000px;}
._6_c00011{margin-left:-3.780000px;}
._9_c00011{margin-left:-2.268000px;}
._a_c00011{margin-left:-1.080000px;}
._13_c00011{width:1.458000px;}
._d_c00011{width:2.592000px;}
._10_c00011{width:4.536000px;}
._0_c00011{width:5.616000px;}
._11_c00011{width:6.912000px;}
._12_c00011{width:7.938000px;}
._e_c00011{width:9.558000px;}
._f_c00011{width:11.448000px;}
._4c_c00011{width:12.762000px;}
._5_c00011{width:14.604000px;}
._43_c00011{width:16.878000px;}
._4a_c00011{width:19.035000px;}
._4d_c00011{width:20.472000px;}
._4e_c00011{width:23.142000px;}
._47_c00011{width:24.894000px;}
._3e_c00011{width:26.244000px;}
._41_c00011{width:31.884000px;}
._1_c00011{width:39.312000px;}
._38_c00011{width:40.362000px;}
._33_c00011{width:43.689000px;}
._3d_c00011{width:45.363000px;}
._46_c00011{width:54.882000px;}
._b_c00011{width:65.124000px;}
._20_c00011{width:67.458000px;}
._4b_c00011{width:77.481000px;}
._32_c00011{width:80.892000px;}
._31_c00011{width:85.962000px;}
._35_c00011{width:91.047000px;}
._37_c00011{width:92.535000px;}
._42_c00011{width:97.350000px;}
._45_c00011{width:126.168000px;}
._22_c00011{width:142.032000px;}
._2a_c00011{width:143.688000px;}
._28_c00011{width:144.816000px;}
._3_c00011{width:166.104000px;}
._49_c00011{width:179.280000px;}
._1d_c00011{width:186.996000px;}
._3c_c00011{width:214.437000px;}
._3b_c00011{width:318.513000px;}
._3a_c00011{width:323.487000px;}
._30_c00011{width:334.338000px;}
._2f_c00011{width:413.469000px;}
._40_c00011{width:488.235000px;}
._3f_c00011{width:577.908000px;}
._1a_c00011{width:669.213000px;}
._1c_c00011{width:882.756000px;}
._19_c00011{width:1042.611000px;}
.fc2_c00011{color:transparent;}
.fc1_c00011{color:rgb(128,128,128);}
.fc0_c00011{color:rgb(0,0,0);}
.fs7_c00011{font-size:24.000000px;}
.fsb_c00011{font-size:48.000000px;}
.fs1_c00011{font-size:54.000000px;}
.fsa_c00011{font-size:57.000000px;}
.fs2_c00011{font-size:60.000000px;}
.fs6_c00011{font-size:66.000000px;}
.fs5_c00011{font-size:69.000000px;}
.fs8_c00011{font-size:72.000000px;}
.fs4_c00011{font-size:78.000000px;}
.fs3_c00011{font-size:81.000000px;}
.fs9_c00011{font-size:93.000000px;}
.fs0_c00011{font-size:108.000000px;}
.y0_c00011{bottom:0.000000px;}
.y26_c00011{bottom:3.105000px;}
.y25_c00011{bottom:7.228357px;}
.y24_c00011{bottom:142.530000px;}
.y23_c00011{bottom:186.030000px;}
.y22_c00011{bottom:208.230000px;}
.y21_c00011{bottom:229.530000px;}
.y20_c00011{bottom:250.380000px;}
.y1f_c00011{bottom:271.680000px;}
.y1e_c00011{bottom:292.680000px;}
.y1d_c00011{bottom:313.830000px;}
.y1c_c00011{bottom:335.430000px;}
.y1b_c00011{bottom:355.380000px;}
.y1a_c00011{bottom:376.380000px;}
.y19_c00011{bottom:397.230000px;}
.y18_c00011{bottom:420.930000px;}
.y17_c00011{bottom:439.830000px;}
.y16_c00011{bottom:459.780000px;}
.y15_c00011{bottom:481.380000px;}
.y14_c00011{bottom:498.930000px;}
.y13_c00011{bottom:517.830000px;}
.y12_c00011{bottom:540.030000px;}
.y11_c00011{bottom:559.530000px;}
.y10_c00011{bottom:580.830000px;}
.yf_c00011{bottom:595.680000px;}
.ye_c00011{bottom:612.630000px;}
.yd_c00011{bottom:628.830000px;}
.yc_c00011{bottom:644.280000px;}
.yb_c00011{bottom:662.580000px;}
.ya_c00011{bottom:676.680000px;}
.y9_c00011{bottom:695.880000px;}
.y8_c00011{bottom:712.080000px;}
.y7_c00011{bottom:779.580000px;}
.y6_c00011{bottom:795.780000px;}
.y5_c00011{bottom:811.680000px;}
.y4_c00011{bottom:828.330000px;}
.y3_c00011{bottom:845.430000px;}
.y2_c00011{bottom:861.630000px;}
.y1_c00011{bottom:876.180000px;}
.hc_c00011{height:13.200074px;}
.h6_c00011{height:28.089844px;}
.hd_c00011{height:43.804688px;}
.hb_c00011{height:66.713379px;}
.h2_c00011{height:68.370117px;}
.h5_c00011{height:69.539062px;}
.h7_c00011{height:72.312000px;}
.ha_c00011{height:79.497070px;}
.h4_c00011{height:83.563477px;}
.h8_c00011{height:84.269531px;}
.h9_c00011{height:91.274414px;}
.h3_c00011{height:98.756836px;}
.h1_c00011{height:108.843750px;}
.h0_c00011{height:995.250000px;}
.w2_c00011{width:104.875500px;}
.w1_c00011{width:680.250000px;}
.w0_c00011{width:680.400000px;}
.x0_c00011{left:0.000000px;}
.x8_c00011{left:137.400000px;}
.x5_c00011{left:138.450000px;}
.xa_c00011{left:139.650000px;}
.x6_c00011{left:143.850000px;}
.x13_c00011{left:148.500000px;}
.x12_c00011{left:150.150000px;}
.x7_c00011{left:156.300000px;}
.x4_c00011{left:158.400000px;}
.x3_c00011{left:160.050000px;}
.x2_c00011{left:162.300000px;}
.x11_c00011{left:178.950000px;}
.xe_c00011{left:211.650000px;}
.x10_c00011{left:216.000000px;}
.xf_c00011{left:229.200000px;}
.xd_c00011{left:263.550000px;}
.x1_c00011{left:282.150000px;}
.x15_c00011{left:292.014267px;}
.x9_c00011{left:331.650000px;}
.xc_c00011{left:354.150000px;}
.xb_c00011{left:370.500000px;}
.x14_c00011{left:396.900000px;}
@media print{
.v0_c00011{vertical-align:0.000000pt;}
.ls9_c00011{letter-spacing:-5.333333pt;}
.ls6_c00011{letter-spacing:0.000000pt;}
.ls0_c00011{letter-spacing:0.256000pt;}
.ls4_c00011{letter-spacing:1.434667pt;}
.ls3_c00011{letter-spacing:2.037333pt;}
.lsd_c00011{letter-spacing:2.666667pt;}
.ls1_c00011{letter-spacing:3.034667pt;}
.ls2_c00011{letter-spacing:4.266667pt;}
.ls8_c00011{letter-spacing:5.333333pt;}
.lse_c00011{letter-spacing:8.000000pt;}
.ls7_c00011{letter-spacing:13.333333pt;}
.lsb_c00011{letter-spacing:16.000000pt;}
.lsf_c00011{letter-spacing:21.333333pt;}
.ls5_c00011{letter-spacing:22.541333pt;}
.lsa_c00011{letter-spacing:29.333333pt;}
.lsc_c00011{letter-spacing:197.333333pt;}
.ws6_c00011{word-spacing:-47.717333pt;}
.ws8_c00011{word-spacing:-36.666667pt;}
.ws1_c00011{word-spacing:-21.333333pt;}
.ws5_c00011{word-spacing:-19.472000pt;}
.ws4_c00011{word-spacing:-18.000000pt;}
.ws0_c00011{word-spacing:-16.901333pt;}
.ws3_c00011{word-spacing:-16.709333pt;}
.ws2_c00011{word-spacing:-11.568000pt;}
.ws7_c00011{word-spacing:-3.968000pt;}
.ws9_c00011{word-spacing:0.000000pt;}
._2e_c00011{margin-left:-213.226667pt;}
._29_c00011{margin-left:-201.706667pt;}
._27_c00011{margin-left:-198.613333pt;}
._23_c00011{margin-left:-196.330667pt;}
._2c_c00011{margin-left:-189.504000pt;}
._2d_c00011{margin-left:-188.074667pt;}
._25_c00011{margin-left:-186.261333pt;}
._26_c00011{margin-left:-177.664000pt;}
._24_c00011{margin-left:-170.730667pt;}
._2b_c00011{margin-left:-98.688000pt;}
._2_c00011{margin-left:-49.632000pt;}
._39_c00011{margin-left:-44.061333pt;}
._1f_c00011{margin-left:-31.360000pt;}
._1e_c00011{margin-left:-28.437333pt;}
._c_c00011{margin-left:-26.304000pt;}
._34_c00011{margin-left:-21.162667pt;}
._48_c00011{margin-left:-20.096000pt;}
._36_c00011{margin-left:-19.050667pt;}
._18_c00011{margin-left:-17.424000pt;}
._21_c00011{margin-left:-15.322667pt;}
._44_c00011{margin-left:-14.042667pt;}
._1b_c00011{margin-left:-13.050667pt;}
._16_c00011{margin-left:-11.546667pt;}
._14_c00011{margin-left:-10.298667pt;}
._15_c00011{margin-left:-9.168000pt;}
._17_c00011{margin-left:-8.080000pt;}
._8_c00011{margin-left:-7.008000pt;}
._4_c00011{margin-left:-5.952000pt;}
._7_c00011{margin-left:-4.608000pt;}
._6_c00011{margin-left:-3.360000pt;}
._9_c00011{margin-left:-2.016000pt;}
._a_c00011{margin-left:-0.960000pt;}
._13_c00011{width:1.296000pt;}
._d_c00011{width:2.304000pt;}
._10_c00011{width:4.032000pt;}
._0_c00011{width:4.992000pt;}
._11_c00011{width:6.144000pt;}
._12_c00011{width:7.056000pt;}
._e_c00011{width:8.496000pt;}
._f_c00011{width:10.176000pt;}
._4c_c00011{width:11.344000pt;}
._5_c00011{width:12.981333pt;}
._43_c00011{width:15.002667pt;}
._4a_c00011{width:16.920000pt;}
._4d_c00011{width:18.197333pt;}
._4e_c00011{width:20.570667pt;}
._47_c00011{width:22.128000pt;}
._3e_c00011{width:23.328000pt;}
._41_c00011{width:28.341333pt;}
._1_c00011{width:34.944000pt;}
._38_c00011{width:35.877333pt;}
._33_c00011{width:38.834667pt;}
._3d_c00011{width:40.322667pt;}
._46_c00011{width:48.784000pt;}
._b_c00011{width:57.888000pt;}
._20_c00011{width:59.962667pt;}
._4b_c00011{width:68.872000pt;}
._32_c00011{width:71.904000pt;}
._31_c00011{width:76.410667pt;}
._35_c00011{width:80.930667pt;}
._37_c00011{width:82.253333pt;}
._42_c00011{width:86.533333pt;}
._45_c00011{width:112.149333pt;}
._22_c00011{width:126.250667pt;}
._2a_c00011{width:127.722667pt;}
._28_c00011{width:128.725333pt;}
._3_c00011{width:147.648000pt;}
._49_c00011{width:159.360000pt;}
._1d_c00011{width:166.218667pt;}
._3c_c00011{width:190.610667pt;}
._3b_c00011{width:283.122667pt;}
._3a_c00011{width:287.544000pt;}
._30_c00011{width:297.189333pt;}
._2f_c00011{width:367.528000pt;}
._40_c00011{width:433.986667pt;}
._3f_c00011{width:513.696000pt;}
._1a_c00011{width:594.856000pt;}
._1c_c00011{width:784.672000pt;}
._19_c00011{width:926.765333pt;}
.fs7_c00011{font-size:21.333333pt;}
.fsb_c00011{font-size:42.666667pt;}
.fs1_c00011{font-size:48.000000pt;}
.fsa_c00011{font-size:50.666667pt;}
.fs2_c00011{font-size:53.333333pt;}
.fs6_c00011{font-size:58.666667pt;}
.fs5_c00011{font-size:61.333333pt;}
.fs8_c00011{font-size:64.000000pt;}
.fs4_c00011{font-size:69.333333pt;}
.fs3_c00011{font-size:72.000000pt;}
.fs9_c00011{font-size:82.666667pt;}
.fs0_c00011{font-size:96.000000pt;}
.y0_c00011{bottom:0.000000pt;}
.y26_c00011{bottom:2.760000pt;}
.y25_c00011{bottom:6.425206pt;}
.y24_c00011{bottom:126.693333pt;}
.y23_c00011{bottom:165.360000pt;}
.y22_c00011{bottom:185.093333pt;}
.y21_c00011{bottom:204.026667pt;}
.y20_c00011{bottom:222.560000pt;}
.y1f_c00011{bottom:241.493333pt;}
.y1e_c00011{bottom:260.160000pt;}
.y1d_c00011{bottom:278.960000pt;}
.y1c_c00011{bottom:298.160000pt;}
.y1b_c00011{bottom:315.893333pt;}
.y1a_c00011{bottom:334.560000pt;}
.y19_c00011{bottom:353.093333pt;}
.y18_c00011{bottom:374.160000pt;}
.y17_c00011{bottom:390.960000pt;}
.y16_c00011{bottom:408.693333pt;}
.y15_c00011{bottom:427.893333pt;}
.y14_c00011{bottom:443.493333pt;}
.y13_c00011{bottom:460.293333pt;}
.y12_c00011{bottom:480.026667pt;}
.y11_c00011{bottom:497.360000pt;}
.y10_c00011{bottom:516.293333pt;}
.yf_c00011{bottom:529.493333pt;}
.ye_c00011{bottom:544.560000pt;}
.yd_c00011{bottom:558.960000pt;}
.yc_c00011{bottom:572.693333pt;}
.yb_c00011{bottom:588.960000pt;}
.ya_c00011{bottom:601.493333pt;}
.y9_c00011{bottom:618.560000pt;}
.y8_c00011{bottom:632.960000pt;}
.y7_c00011{bottom:692.960000pt;}
.y6_c00011{bottom:707.360000pt;}
.y5_c00011{bottom:721.493333pt;}
.y4_c00011{bottom:736.293333pt;}
.y3_c00011{bottom:751.493333pt;}
.y2_c00011{bottom:765.893333pt;}
.y1_c00011{bottom:778.826667pt;}
.hc_c00011{height:11.733399pt;}
.h6_c00011{height:24.968750pt;}
.hd_c00011{height:38.937500pt;}
.hb_c00011{height:59.300781pt;}
.h2_c00011{height:60.773438pt;}
.h5_c00011{height:61.812500pt;}
.h7_c00011{height:64.277333pt;}
.ha_c00011{height:70.664062pt;}
.h4_c00011{height:74.278646pt;}
.h8_c00011{height:74.906250pt;}
.h9_c00011{height:81.132812pt;}
.h3_c00011{height:87.783854pt;}
.h1_c00011{height:96.750000pt;}
.h0_c00011{height:884.666667pt;}
.w2_c00011{width:93.222667pt;}
.w1_c00011{width:604.666667pt;}
.w0_c00011{width:604.800000pt;}
.x0_c00011{left:0.000000pt;}
.x8_c00011{left:122.133333pt;}
.x5_c00011{left:123.066667pt;}
.xa_c00011{left:124.133333pt;}
.x6_c00011{left:127.866667pt;}
.x13_c00011{left:132.000000pt;}
.x12_c00011{left:133.466667pt;}
.x7_c00011{left:138.933333pt;}
.x4_c00011{left:140.800000pt;}
.x3_c00011{left:142.266667pt;}
.x2_c00011{left:144.266667pt;}
.x11_c00011{left:159.066667pt;}
.xe_c00011{left:188.133333pt;}
.x10_c00011{left:192.000000pt;}
.xf_c00011{left:203.733333pt;}
.xd_c00011{left:234.266667pt;}
.x1_c00011{left:250.800000pt;}
.x15_c00011{left:259.568237pt;}
.x9_c00011{left:294.800000pt;}
.xc_c00011{left:314.800000pt;}
.xb_c00011{left:329.333333pt;}
.x14_c00011{left:352.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_8895cff2a4665f74818d8b46.woff2')format("woff");}.ff1_c00012{font-family:ff1_c00012;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00012;src:url('chunks/assets/font_3d55fd0d12ab7f25b490af37.woff2')format("woff");}.ff2_c00012{font-family:ff2_c00012;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00012;src:url('chunks/assets/font_deb007c4bfa424200165aa74.woff2')format("woff");}.ff3_c00012{font-family:ff3_c00012;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00012;src:url('chunks/assets/font_8577bfe8129bc6a5add93004.woff2')format("woff");}.ff4_c00012{font-family:ff4_c00012;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00012;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c00012{font-family:ff5_c00012;line-height:1.219238;font-style: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);}
.v1_c00012{vertical-align:-101.400000px;}
.v0_c00012{vertical-align:0.000000px;}
.ls3_c00012{letter-spacing:-6.000000px;}
.ls1_c00012{letter-spacing:0.000000px;}
.ls2_c00012{letter-spacing:3.000000px;}
.ls4_c00012{letter-spacing:9.000000px;}
.ls0_c00012{letter-spacing:26.712000px;}
.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:-59.184000px;}
.ws2_c00012{word-spacing:-39.096000px;}
.ws4_c00012{word-spacing:-28.728000px;}
.ws0_c00012{word-spacing:-26.250000px;}
.ws3_c00012{word-spacing:-20.250000px;}
.ws5_c00012{word-spacing:0.000000px;}
._13_c00012{margin-left:-44.955000px;}
._10_c00012{margin-left:-37.503000px;}
._c_c00012{margin-left:-34.461000px;}
._e_c00012{margin-left:-33.048000px;}
._b_c00012{margin-left:-30.861000px;}
._14_c00012{margin-left:-23.070000px;}
._1c_c00012{margin-left:-18.468000px;}
._2_c00012{margin-left:-16.560000px;}
._5_c00012{margin-left:-15.264000px;}
._a_c00012{margin-left:-13.299000px;}
._20_c00012{margin-left:-10.188000px;}
._11_c00012{margin-left:-8.505000px;}
._9_c00012{margin-left:-7.344000px;}
._1d_c00012{margin-left:-5.823000px;}
._3_c00012{margin-left:-4.176000px;}
._4_c00012{margin-left:-2.880000px;}
._7_c00012{margin-left:-1.152000px;}
._6_c00012{width:1.008000px;}
._17_c00012{width:2.700000px;}
._18_c00012{width:4.581000px;}
._1f_c00012{width:5.679000px;}
._15_c00012{width:6.723000px;}
._23_c00012{width:7.749000px;}
._19_c00012{width:8.766000px;}
._1e_c00012{width:10.548000px;}
._1_c00012{width:12.672000px;}
._0_c00012{width:14.256000px;}
._22_c00012{width:15.516000px;}
._21_c00012{width:16.956000px;}
._24_c00012{width:18.045000px;}
._8_c00012{width:19.584000px;}
._1a_c00012{width:29.889000px;}
._12_c00012{width:35.802000px;}
._26_c00012{width:43.764000px;}
._16_c00012{width:65.304000px;}
._27_c00012{width:97.284000px;}
._f_c00012{width:174.474000px;}
._25_c00012{width:177.309000px;}
._1b_c00012{width:765.198000px;}
._d_c00012{width:811.311000px;}
.fc2_c00012{color:transparent;}
.fc1_c00012{color:rgb(128,128,128);}
.fc0_c00012{color:rgb(0,0,0);}
.fs5_c00012{font-size:24.000000px;}
.fs6_c00012{font-size:48.000000px;}
.fs4_c00012{font-size:72.000000px;}
.fs2_c00012{font-size:81.000000px;}
.fs3_c00012{font-size:87.000000px;}
.fs1_c00012{font-size:93.000000px;}
.fs0_c00012{font-size:144.000000px;}
.y0_c00012{bottom:0.000000px;}
.y21_c00012{bottom:3.105000px;}
.y20_c00012{bottom:7.228357px;}
.y1e_c00012{bottom:120.480000px;}
.y1d_c00012{bottom:145.230000px;}
.y1c_c00012{bottom:169.530000px;}
.y1f_c00012{bottom:177.480000px;}
.y1b_c00012{bottom:193.680000px;}
.y1a_c00012{bottom:217.380000px;}
.y19_c00012{bottom:243.630000px;}
.y18_c00012{bottom:267.630000px;}
.y17_c00012{bottom:291.630000px;}
.y16_c00012{bottom:316.530000px;}
.y15_c00012{bottom:339.480000px;}
.y14_c00012{bottom:364.530000px;}
.y13_c00012{bottom:387.480000px;}
.y12_c00012{bottom:412.080000px;}
.y11_c00012{bottom:436.830000px;}
.y10_c00012{bottom:461.430000px;}
.yf_c00012{bottom:485.430000px;}
.ye_c00012{bottom:509.580000px;}
.yd_c00012{bottom:533.580000px;}
.yc_c00012{bottom:558.630000px;}
.yb_c00012{bottom:582.180000px;}
.ya_c00012{bottom:606.180000px;}
.y9_c00012{bottom:630.480000px;}
.y8_c00012{bottom:654.780000px;}
.y7_c00012{bottom:679.380000px;}
.y6_c00012{bottom:702.630000px;}
.y5_c00012{bottom:727.380000px;}
.y4_c00012{bottom:750.930000px;}
.y3_c00012{bottom:780.330000px;}
.y2_c00012{bottom:842.430000px;}
.y1_c00012{bottom:881.280000px;}
.h9_c00012{height:13.200074px;}
.h8_c00012{height:28.089844px;}
.ha_c00012{height:43.804688px;}
.h4_c00012{height:79.497070px;}
.h7_c00012{height:84.269531px;}
.h6_c00012{height:91.160156px;}
.h5_c00012{height:91.176000px;}
.h3_c00012{height:91.274414px;}
.h2_c00012{height:182.320312px;}
.h1_c00012{height:987.000000px;}
.h0_c00012{height:987.150000px;}
.w2_c00012{width:104.875500px;}
.w1_c00012{width:669.000000px;}
.w0_c00012{width:669.075000px;}
.x0_c00012{left:0.000000px;}
.xa_c00012{left:43.500000px;}
.x1_c00012{left:44.550000px;}
.x9_c00012{left:45.600000px;}
.x5_c00012{left:165.750000px;}
.x4_c00012{left:167.400000px;}
.x3_c00012{left:178.200000px;}
.x8_c00012{left:179.550000px;}
.x7_c00012{left:180.600000px;}
.x2_c00012{left:242.250000px;}
.xc_c00012{left:286.351730px;}
.x6_c00012{left:398.850000px;}
.xb_c00012{left:574.200000px;}
@media print{
.v1_c00012{vertical-align:-90.133333pt;}
.v0_c00012{vertical-align:0.000000pt;}
.ls3_c00012{letter-spacing:-5.333333pt;}
.ls1_c00012{letter-spacing:0.000000pt;}
.ls2_c00012{letter-spacing:2.666667pt;}
.ls4_c00012{letter-spacing:8.000000pt;}
.ls0_c00012{letter-spacing:23.744000pt;}
.ws1_c00012{word-spacing:-52.608000pt;}
.ws2_c00012{word-spacing:-34.752000pt;}
.ws4_c00012{word-spacing:-25.536000pt;}
.ws0_c00012{word-spacing:-23.333333pt;}
.ws3_c00012{word-spacing:-18.000000pt;}
.ws5_c00012{word-spacing:0.000000pt;}
._13_c00012{margin-left:-39.960000pt;}
._10_c00012{margin-left:-33.336000pt;}
._c_c00012{margin-left:-30.632000pt;}
._e_c00012{margin-left:-29.376000pt;}
._b_c00012{margin-left:-27.432000pt;}
._14_c00012{margin-left:-20.506667pt;}
._1c_c00012{margin-left:-16.416000pt;}
._2_c00012{margin-left:-14.720000pt;}
._5_c00012{margin-left:-13.568000pt;}
._a_c00012{margin-left:-11.821333pt;}
._20_c00012{margin-left:-9.056000pt;}
._11_c00012{margin-left:-7.560000pt;}
._9_c00012{margin-left:-6.528000pt;}
._1d_c00012{margin-left:-5.176000pt;}
._3_c00012{margin-left:-3.712000pt;}
._4_c00012{margin-left:-2.560000pt;}
._7_c00012{margin-left:-1.024000pt;}
._6_c00012{width:0.896000pt;}
._17_c00012{width:2.400000pt;}
._18_c00012{width:4.072000pt;}
._1f_c00012{width:5.048000pt;}
._15_c00012{width:5.976000pt;}
._23_c00012{width:6.888000pt;}
._19_c00012{width:7.792000pt;}
._1e_c00012{width:9.376000pt;}
._1_c00012{width:11.264000pt;}
._0_c00012{width:12.672000pt;}
._22_c00012{width:13.792000pt;}
._21_c00012{width:15.072000pt;}
._24_c00012{width:16.040000pt;}
._8_c00012{width:17.408000pt;}
._1a_c00012{width:26.568000pt;}
._12_c00012{width:31.824000pt;}
._26_c00012{width:38.901333pt;}
._16_c00012{width:58.048000pt;}
._27_c00012{width:86.474667pt;}
._f_c00012{width:155.088000pt;}
._25_c00012{width:157.608000pt;}
._1b_c00012{width:680.176000pt;}
._d_c00012{width:721.165333pt;}
.fs5_c00012{font-size:21.333333pt;}
.fs6_c00012{font-size:42.666667pt;}
.fs4_c00012{font-size:64.000000pt;}
.fs2_c00012{font-size:72.000000pt;}
.fs3_c00012{font-size:77.333333pt;}
.fs1_c00012{font-size:82.666667pt;}
.fs0_c00012{font-size:128.000000pt;}
.y0_c00012{bottom:0.000000pt;}
.y21_c00012{bottom:2.760000pt;}
.y20_c00012{bottom:6.425206pt;}
.y1e_c00012{bottom:107.093333pt;}
.y1d_c00012{bottom:129.093333pt;}
.y1c_c00012{bottom:150.693333pt;}
.y1f_c00012{bottom:157.760000pt;}
.y1b_c00012{bottom:172.160000pt;}
.y1a_c00012{bottom:193.226667pt;}
.y19_c00012{bottom:216.560000pt;}
.y18_c00012{bottom:237.893333pt;}
.y17_c00012{bottom:259.226667pt;}
.y16_c00012{bottom:281.360000pt;}
.y15_c00012{bottom:301.760000pt;}
.y14_c00012{bottom:324.026667pt;}
.y13_c00012{bottom:344.426667pt;}
.y12_c00012{bottom:366.293333pt;}
.y11_c00012{bottom:388.293333pt;}
.y10_c00012{bottom:410.160000pt;}
.yf_c00012{bottom:431.493333pt;}
.ye_c00012{bottom:452.960000pt;}
.yd_c00012{bottom:474.293333pt;}
.yc_c00012{bottom:496.560000pt;}
.yb_c00012{bottom:517.493333pt;}
.ya_c00012{bottom:538.826667pt;}
.y9_c00012{bottom:560.426667pt;}
.y8_c00012{bottom:582.026667pt;}
.y7_c00012{bottom:603.893333pt;}
.y6_c00012{bottom:624.560000pt;}
.y5_c00012{bottom:646.560000pt;}
.y4_c00012{bottom:667.493333pt;}
.y3_c00012{bottom:693.626667pt;}
.y2_c00012{bottom:748.826667pt;}
.y1_c00012{bottom:783.360000pt;}
.h9_c00012{height:11.733399pt;}
.h8_c00012{height:24.968750pt;}
.ha_c00012{height:38.937500pt;}
.h4_c00012{height:70.664062pt;}
.h7_c00012{height:74.906250pt;}
.h6_c00012{height:81.031250pt;}
.h5_c00012{height:81.045333pt;}
.h3_c00012{height:81.132812pt;}
.h2_c00012{height:162.062500pt;}
.h1_c00012{height:877.333333pt;}
.h0_c00012{height:877.466667pt;}
.w2_c00012{width:93.222667pt;}
.w1_c00012{width:594.666667pt;}
.w0_c00012{width:594.733333pt;}
.x0_c00012{left:0.000000pt;}
.xa_c00012{left:38.666667pt;}
.x1_c00012{left:39.600000pt;}
.x9_c00012{left:40.533333pt;}
.x5_c00012{left:147.333333pt;}
.x4_c00012{left:148.800000pt;}
.x3_c00012{left:158.400000pt;}
.x8_c00012{left:159.600000pt;}
.x7_c00012{left:160.533333pt;}
.x2_c00012{left:215.333333pt;}
.xc_c00012{left:254.534871pt;}
.x6_c00012{left:354.533333pt;}
.xb_c00012{left:510.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_ce632a1987e73dee2d644d18.woff2')format("woff");}.ff1_c00013{font-family:ff1_c00013;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00013;src:url('chunks/assets/font_f17a05b93e250692b1b314c7.woff2')format("woff");}.ff2_c00013{font-family:ff2_c00013;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00013;src:url('chunks/assets/font_71c36f47f5dad386300d77e3.woff2')format("woff");}.ff3_c00013{font-family:ff3_c00013;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00013;src:url('chunks/assets/font_e8526bdfe10cd890d08bdc06.woff2')format("woff");}.ff4_c00013{font-family:ff4_c00013;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00013;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c00013{font-family:ff5_c00013;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00013{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00013{vertical-align:0.000000px;}
.v1_c00013{vertical-align:6.600000px;}
.ls2_c00013{letter-spacing:0.000000px;}
.ls0_c00013{letter-spacing:5.100000px;}
.ls1_c00013{letter-spacing:22.920000px;}
.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;}
}
.ws2_c00013{word-spacing:-20.250000px;}
.ws0_c00013{word-spacing:-17.352000px;}
.ws1_c00013{word-spacing:-1.152000px;}
.ws3_c00013{word-spacing:0.000000px;}
._15_c00013{margin-left:-24.177000px;}
._18_c00013{margin-left:-13.485000px;}
._f_c00013{margin-left:-11.664000px;}
._12_c00013{margin-left:-9.942000px;}
._d_c00013{margin-left:-7.209000px;}
._b_c00013{margin-left:-6.195000px;}
._8_c00013{margin-left:-4.455000px;}
._9_c00013{margin-left:-2.658000px;}
._1_c00013{margin-left:-1.458000px;}
._0_c00013{width:1.782000px;}
._2_c00013{width:3.645000px;}
._7_c00013{width:5.346000px;}
._e_c00013{width:6.723000px;}
._6_c00013{width:7.938000px;}
._5_c00013{width:9.639000px;}
._4_c00013{width:10.773000px;}
._13_c00013{width:11.937000px;}
._11_c00013{width:13.026000px;}
._10_c00013{width:14.454000px;}
._a_c00013{width:16.605000px;}
._c_c00013{width:22.542000px;}
._3_c00013{width:34.344000px;}
._14_c00013{width:36.450000px;}
._16_c00013{width:39.741000px;}
._17_c00013{width:226.434000px;}
.fc2_c00013{color:transparent;}
.fc1_c00013{color:rgb(128,128,128);}
.fc0_c00013{color:rgb(0,0,0);}
.fs4_c00013{font-size:48.000000px;}
.fs3_c00013{font-size:60.000000px;}
.fs1_c00013{font-size:72.000000px;}
.fs0_c00013{font-size:81.000000px;}
.fs2_c00013{font-size:87.000000px;}
.y0_c00013{bottom:0.000000px;}
.y24_c00013{bottom:3.105000px;}
.y23_c00013{bottom:7.228357px;}
.y22_c00013{bottom:104.730000px;}
.y21_c00013{bottom:127.680000px;}
.y20_c00013{bottom:152.580000px;}
.y1f_c00013{bottom:176.580000px;}
.y1e_c00013{bottom:201.180000px;}
.y1d_c00013{bottom:227.130000px;}
.y1c_c00013{bottom:250.530000px;}
.y1b_c00013{bottom:275.130000px;}
.y1a_c00013{bottom:299.430000px;}
.y19_c00013{bottom:323.430000px;}
.y18_c00013{bottom:347.280000px;}
.y17_c00013{bottom:369.630000px;}
.y16_c00013{bottom:395.880000px;}
.y15_c00013{bottom:419.280000px;}
.y14_c00013{bottom:443.430000px;}
.y13_c00013{bottom:467.430000px;}
.y12_c00013{bottom:491.730000px;}
.y11_c00013{bottom:515.430000px;}
.y10_c00013{bottom:539.430000px;}
.yf_c00013{bottom:563.730000px;}
.ye_c00013{bottom:587.580000px;}
.yd_c00013{bottom:612.630000px;}
.yc_c00013{bottom:636.780000px;}
.yb_c00013{bottom:660.930000px;}
.ya_c00013{bottom:685.080000px;}
.y9_c00013{bottom:709.680000px;}
.y8_c00013{bottom:733.680000px;}
.y7_c00013{bottom:757.680000px;}
.y6_c00013{bottom:781.980000px;}
.y5_c00013{bottom:806.580000px;}
.y4_c00013{bottom:830.580000px;}
.y3_c00013{bottom:854.280000px;}
.y2_c00013{bottom:878.130000px;}
.y1_c00013{bottom:903.480000px;}
.h6_c00013{height:13.200074px;}
.h7_c00013{height:43.804688px;}
.h3_c00013{height:79.497070px;}
.h2_c00013{height:84.269531px;}
.h5_c00013{height:86.097070px;}
.h4_c00013{height:91.176000px;}
.h0_c00013{height:984.450000px;}
.h1_c00013{height:984.750000px;}
.w2_c00013{width:104.875500px;}
.w1_c00013{width:672.750000px;}
.w0_c00013{width:672.825000px;}
.x0_c00013{left:0.000000px;}
.xd_c00013{left:30.150000px;}
.xc_c00013{left:121.200000px;}
.xb_c00013{left:123.150000px;}
.xa_c00013{left:124.200000px;}
.x9_c00013{left:125.550000px;}
.x8_c00013{left:128.250000px;}
.x7_c00013{left:129.300000px;}
.x6_c00013{left:130.650000px;}
.x5_c00013{left:131.700000px;}
.x4_c00013{left:133.650000px;}
.x3_c00013{left:134.700000px;}
.x2_c00013{left:135.750000px;}
.x1_c00013{left:140.400000px;}
.xf_c00013{left:288.226730px;}
.xe_c00013{left:557.850000px;}
@media print{
.v0_c00013{vertical-align:0.000000pt;}
.v1_c00013{vertical-align:5.866667pt;}
.ls2_c00013{letter-spacing:0.000000pt;}
.ls0_c00013{letter-spacing:4.533333pt;}
.ls1_c00013{letter-spacing:20.373333pt;}
.ws2_c00013{word-spacing:-18.000000pt;}
.ws0_c00013{word-spacing:-15.424000pt;}
.ws1_c00013{word-spacing:-1.024000pt;}
.ws3_c00013{word-spacing:0.000000pt;}
._15_c00013{margin-left:-21.490667pt;}
._18_c00013{margin-left:-11.986667pt;}
._f_c00013{margin-left:-10.368000pt;}
._12_c00013{margin-left:-8.837333pt;}
._d_c00013{margin-left:-6.408000pt;}
._b_c00013{margin-left:-5.506667pt;}
._8_c00013{margin-left:-3.960000pt;}
._9_c00013{margin-left:-2.362667pt;}
._1_c00013{margin-left:-1.296000pt;}
._0_c00013{width:1.584000pt;}
._2_c00013{width:3.240000pt;}
._7_c00013{width:4.752000pt;}
._e_c00013{width:5.976000pt;}
._6_c00013{width:7.056000pt;}
._5_c00013{width:8.568000pt;}
._4_c00013{width:9.576000pt;}
._13_c00013{width:10.610667pt;}
._11_c00013{width:11.578667pt;}
._10_c00013{width:12.848000pt;}
._a_c00013{width:14.760000pt;}
._c_c00013{width:20.037333pt;}
._3_c00013{width:30.528000pt;}
._14_c00013{width:32.400000pt;}
._16_c00013{width:35.325333pt;}
._17_c00013{width:201.274667pt;}
.fs4_c00013{font-size:42.666667pt;}
.fs3_c00013{font-size:53.333333pt;}
.fs1_c00013{font-size:64.000000pt;}
.fs0_c00013{font-size:72.000000pt;}
.fs2_c00013{font-size:77.333333pt;}
.y0_c00013{bottom:0.000000pt;}
.y24_c00013{bottom:2.760000pt;}
.y23_c00013{bottom:6.425206pt;}
.y22_c00013{bottom:93.093333pt;}
.y21_c00013{bottom:113.493333pt;}
.y20_c00013{bottom:135.626667pt;}
.y1f_c00013{bottom:156.960000pt;}
.y1e_c00013{bottom:178.826667pt;}
.y1d_c00013{bottom:201.893333pt;}
.y1c_c00013{bottom:222.693333pt;}
.y1b_c00013{bottom:244.560000pt;}
.y1a_c00013{bottom:266.160000pt;}
.y19_c00013{bottom:287.493333pt;}
.y18_c00013{bottom:308.693333pt;}
.y17_c00013{bottom:328.560000pt;}
.y16_c00013{bottom:351.893333pt;}
.y15_c00013{bottom:372.693333pt;}
.y14_c00013{bottom:394.160000pt;}
.y13_c00013{bottom:415.493333pt;}
.y12_c00013{bottom:437.093333pt;}
.y11_c00013{bottom:458.160000pt;}
.y10_c00013{bottom:479.493333pt;}
.yf_c00013{bottom:501.093333pt;}
.ye_c00013{bottom:522.293333pt;}
.yd_c00013{bottom:544.560000pt;}
.yc_c00013{bottom:566.026667pt;}
.yb_c00013{bottom:587.493333pt;}
.ya_c00013{bottom:608.960000pt;}
.y9_c00013{bottom:630.826667pt;}
.y8_c00013{bottom:652.160000pt;}
.y7_c00013{bottom:673.493333pt;}
.y6_c00013{bottom:695.093333pt;}
.y5_c00013{bottom:716.960000pt;}
.y4_c00013{bottom:738.293333pt;}
.y3_c00013{bottom:759.360000pt;}
.y2_c00013{bottom:780.560000pt;}
.y1_c00013{bottom:803.093333pt;}
.h6_c00013{height:11.733399pt;}
.h7_c00013{height:38.937500pt;}
.h3_c00013{height:70.664062pt;}
.h2_c00013{height:74.906250pt;}
.h5_c00013{height:76.530729pt;}
.h4_c00013{height:81.045333pt;}
.h0_c00013{height:875.066667pt;}
.h1_c00013{height:875.333333pt;}
.w2_c00013{width:93.222667pt;}
.w1_c00013{width:598.000000pt;}
.w0_c00013{width:598.066667pt;}
.x0_c00013{left:0.000000pt;}
.xd_c00013{left:26.800000pt;}
.xc_c00013{left:107.733333pt;}
.xb_c00013{left:109.466667pt;}
.xa_c00013{left:110.400000pt;}
.x9_c00013{left:111.600000pt;}
.x8_c00013{left:114.000000pt;}
.x7_c00013{left:114.933333pt;}
.x6_c00013{left:116.133333pt;}
.x5_c00013{left:117.066667pt;}
.x4_c00013{left:118.800000pt;}
.x3_c00013{left:119.733333pt;}
.x2_c00013{left:120.666667pt;}
.x1_c00013{left:124.800000pt;}
.xf_c00013{left:256.201538pt;}
.xe_c00013{left:495.866667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_9f6dac1994509ae0e0ce6261.woff2')format("woff");}.ff1_c00014{font-family:ff1_c00014;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00014;src:url('chunks/assets/font_5efd7b0fb43d152bdc2e1b97.woff2')format("woff");}.ff2_c00014{font-family:ff2_c00014;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00014;src:url('chunks/assets/font_7c854ff2a6b7d6502800590a.woff2')format("woff");}.ff3_c00014{font-family:ff3_c00014;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00014;src:url('chunks/assets/font_ec143fecdd901ba71d920ac7.woff2')format("woff");}.ff4_c00014{font-family:ff4_c00014;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00014;src:url('chunks/assets/font_cd2464e7f52526020a8a8c39.woff2')format("woff");}.ff5_c00014{font-family:ff5_c00014;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00014;src:url('chunks/assets/font_09f2286f66f007a1b0656c1c.woff2')format("woff");}.ff6_c00014{font-family:ff6_c00014;line-height:1.437000;font-style:normal;font-weight: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_c00014;src:url('chunks/assets/font_75561c0d78a06b064ed46049.woff2')format("woff");}.ff7_c00014{font-family:ff7_c00014;line-height:1.437000;font-style:normal;font-weight: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_c00014;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff8_c00014{font-family:ff8_c00014;line-height:1.219238;font-style: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;}
.ls2_c00014{letter-spacing:-12.000000px;}
.ls3_c00014{letter-spacing:-6.000000px;}
.ls1_c00014{letter-spacing:0.000000px;}
.ls0_c00014{letter-spacing:3.480000px;}
.ls4_c00014{letter-spacing:18.000000px;}
.sc__c00014{text-shadow:none;}
.sc0_c00014{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00014{-webkit-text-stroke:0px transparent;}
.sc0_c00014{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00014{word-spacing:-59.184000px;}
.ws0_c00014{word-spacing:-45.000000px;}
.ws3_c00014{word-spacing:-38.250000px;}
.ws4_c00014{word-spacing:-20.250000px;}
.ws5_c00014{word-spacing:0.000000px;}
.ws2_c00014{word-spacing:14.094000px;}
._7_c00014{margin-left:-26.991000px;}
._8_c00014{margin-left:-24.852000px;}
._18_c00014{margin-left:-20.634000px;}
._17_c00014{margin-left:-11.883000px;}
._e_c00014{margin-left:-10.866000px;}
._12_c00014{margin-left:-9.231000px;}
._4_c00014{margin-left:-7.290000px;}
._c_c00014{margin-left:-5.208000px;}
._d_c00014{margin-left:-3.972000px;}
._3_c00014{margin-left:-2.916000px;}
._b_c00014{margin-left:-1.839000px;}
._1_c00014{width:1.782000px;}
._0_c00014{width:3.321000px;}
._6_c00014{width:4.536000px;}
._2_c00014{width:5.589000px;}
._5_c00014{width:6.642000px;}
._13_c00014{width:7.857000px;}
._a_c00014{width:9.198000px;}
._f_c00014{width:10.230000px;}
._14_c00014{width:11.745000px;}
._9_c00014{width:13.050000px;}
._11_c00014{width:14.409000px;}
._10_c00014{width:16.284000px;}
._15_c00014{width:18.639000px;}
._16_c00014{width:22.335000px;}
.fc2_c00014{color:transparent;}
.fc1_c00014{color:rgb(128,128,128);}
.fc0_c00014{color:rgb(0,0,0);}
.fs6_c00014{font-size:48.000000px;}
.fs5_c00014{font-size:57.000000px;}
.fs3_c00014{font-size:72.000000px;}
.fs4_c00014{font-size:78.000000px;}
.fs0_c00014{font-size:81.000000px;}
.fs2_c00014{font-size:90.000000px;}
.fs1_c00014{font-size:102.000000px;}
.y0_c00014{bottom:0.000000px;}
.y24_c00014{bottom:3.105000px;}
.y23_c00014{bottom:7.228371px;}
.y22_c00014{bottom:90.465000px;}
.y21_c00014{bottom:114.465000px;}
.y20_c00014{bottom:139.515000px;}
.y1f_c00014{bottom:164.415000px;}
.y1e_c00014{bottom:189.015000px;}
.y1d_c00014{bottom:213.765000px;}
.y1c_c00014{bottom:238.365000px;}
.y1b_c00014{bottom:262.965000px;}
.y1a_c00014{bottom:288.015000px;}
.y19_c00014{bottom:312.165000px;}
.y18_c00014{bottom:336.465000px;}
.y17_c00014{bottom:360.165000px;}
.y16_c00014{bottom:384.765000px;}
.y15_c00014{bottom:408.465000px;}
.y14_c00014{bottom:434.715000px;}
.y13_c00014{bottom:458.415000px;}
.y12_c00014{bottom:482.265000px;}
.y11_c00014{bottom:506.715000px;}
.y10_c00014{bottom:532.215000px;}
.yf_c00014{bottom:555.015000px;}
.ye_c00014{bottom:579.465000px;}
.yd_c00014{bottom:603.915000px;}
.yc_c00014{bottom:629.565000px;}
.yb_c00014{bottom:653.415000px;}
.ya_c00014{bottom:677.715000px;}
.y9_c00014{bottom:702.765000px;}
.y8_c00014{bottom:726.315000px;}
.y7_c00014{bottom:751.365000px;}
.y6_c00014{bottom:778.065000px;}
.y5_c00014{bottom:801.015000px;}
.y4_c00014{bottom:825.315000px;}
.y3_c00014{bottom:849.915000px;}
.y2_c00014{bottom:874.815000px;}
.y1_c00014{bottom:899.565000px;}
.h7_c00014{height:13.200074px;}
.h8_c00014{height:43.804688px;}
.h5_c00014{height:59.736000px;}
.h3_c00014{height:79.497070px;}
.h6_c00014{height:84.269531px;}
.h4_c00014{height:98.756836px;}
.h2_c00014{height:104.839927px;}
.h1_c00014{height:984.750000px;}
.h0_c00014{height:984.975000px;}
.w2_c00014{width:104.875500px;}
.w0_c00014{width:667.425000px;}
.w1_c00014{width:667.500000px;}
.x0_c00014{left:0.000000px;}
.x6_c00014{left:24.600000px;}
.x5_c00014{left:25.650000px;}
.x4_c00014{left:27.450000px;}
.x3_c00014{left:28.800000px;}
.x1_c00014{left:30.750000px;}
.x2_c00014{left:31.800000px;}
.x7_c00014{left:54.300000px;}
.x9_c00014{left:285.526749px;}
.x8_c00014{left:492.450000px;}
@media print{
.v0_c00014{vertical-align:0.000000pt;}
.ls2_c00014{letter-spacing:-10.666667pt;}
.ls3_c00014{letter-spacing:-5.333333pt;}
.ls1_c00014{letter-spacing:0.000000pt;}
.ls0_c00014{letter-spacing:3.093333pt;}
.ls4_c00014{letter-spacing:16.000000pt;}
.ws1_c00014{word-spacing:-52.608000pt;}
.ws0_c00014{word-spacing:-40.000000pt;}
.ws3_c00014{word-spacing:-34.000000pt;}
.ws4_c00014{word-spacing:-18.000000pt;}
.ws5_c00014{word-spacing:0.000000pt;}
.ws2_c00014{word-spacing:12.528000pt;}
._7_c00014{margin-left:-23.992000pt;}
._8_c00014{margin-left:-22.090667pt;}
._18_c00014{margin-left:-18.341333pt;}
._17_c00014{margin-left:-10.562667pt;}
._e_c00014{margin-left:-9.658667pt;}
._12_c00014{margin-left:-8.205333pt;}
._4_c00014{margin-left:-6.480000pt;}
._c_c00014{margin-left:-4.629333pt;}
._d_c00014{margin-left:-3.530667pt;}
._3_c00014{margin-left:-2.592000pt;}
._b_c00014{margin-left:-1.634667pt;}
._1_c00014{width:1.584000pt;}
._0_c00014{width:2.952000pt;}
._6_c00014{width:4.032000pt;}
._2_c00014{width:4.968000pt;}
._5_c00014{width:5.904000pt;}
._13_c00014{width:6.984000pt;}
._a_c00014{width:8.176000pt;}
._f_c00014{width:9.093333pt;}
._14_c00014{width:10.440000pt;}
._9_c00014{width:11.600000pt;}
._11_c00014{width:12.808000pt;}
._10_c00014{width:14.474667pt;}
._15_c00014{width:16.568000pt;}
._16_c00014{width:19.853333pt;}
.fs6_c00014{font-size:42.666667pt;}
.fs5_c00014{font-size:50.666667pt;}
.fs3_c00014{font-size:64.000000pt;}
.fs4_c00014{font-size:69.333333pt;}
.fs0_c00014{font-size:72.000000pt;}
.fs2_c00014{font-size:80.000000pt;}
.fs1_c00014{font-size:90.666667pt;}
.y0_c00014{bottom:0.000000pt;}
.y24_c00014{bottom:2.760000pt;}
.y23_c00014{bottom:6.425219pt;}
.y22_c00014{bottom:80.413333pt;}
.y21_c00014{bottom:101.746667pt;}
.y20_c00014{bottom:124.013333pt;}
.y1f_c00014{bottom:146.146667pt;}
.y1e_c00014{bottom:168.013333pt;}
.y1d_c00014{bottom:190.013333pt;}
.y1c_c00014{bottom:211.880000pt;}
.y1b_c00014{bottom:233.746667pt;}
.y1a_c00014{bottom:256.013333pt;}
.y19_c00014{bottom:277.480000pt;}
.y18_c00014{bottom:299.080000pt;}
.y17_c00014{bottom:320.146667pt;}
.y16_c00014{bottom:342.013333pt;}
.y15_c00014{bottom:363.080000pt;}
.y14_c00014{bottom:386.413333pt;}
.y13_c00014{bottom:407.480000pt;}
.y12_c00014{bottom:428.680000pt;}
.y11_c00014{bottom:450.413333pt;}
.y10_c00014{bottom:473.080000pt;}
.yf_c00014{bottom:493.346667pt;}
.ye_c00014{bottom:515.080000pt;}
.yd_c00014{bottom:536.813333pt;}
.yc_c00014{bottom:559.613333pt;}
.yb_c00014{bottom:580.813333pt;}
.ya_c00014{bottom:602.413333pt;}
.y9_c00014{bottom:624.680000pt;}
.y8_c00014{bottom:645.613333pt;}
.y7_c00014{bottom:667.880000pt;}
.y6_c00014{bottom:691.613333pt;}
.y5_c00014{bottom:712.013333pt;}
.y4_c00014{bottom:733.613333pt;}
.y3_c00014{bottom:755.480000pt;}
.y2_c00014{bottom:777.613333pt;}
.y1_c00014{bottom:799.613333pt;}
.h7_c00014{height:11.733399pt;}
.h8_c00014{height:38.937500pt;}
.h5_c00014{height:53.098667pt;}
.h3_c00014{height:70.664062pt;}
.h6_c00014{height:74.906250pt;}
.h4_c00014{height:87.783854pt;}
.h2_c00014{height:93.191046pt;}
.h1_c00014{height:875.333333pt;}
.h0_c00014{height:875.533333pt;}
.w2_c00014{width:93.222667pt;}
.w0_c00014{width:593.266667pt;}
.w1_c00014{width:593.333333pt;}
.x0_c00014{left:0.000000pt;}
.x6_c00014{left:21.866667pt;}
.x5_c00014{left:22.800000pt;}
.x4_c00014{left:24.400000pt;}
.x3_c00014{left:25.600000pt;}
.x1_c00014{left:27.333333pt;}
.x2_c00014{left:28.266667pt;}
.x7_c00014{left:48.266667pt;}
.x9_c00014{left:253.801554pt;}
.x8_c00014{left:437.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_b721cf8563a0b4e55a77a7c2.woff2')format("woff");}.ff1_c00015{font-family:ff1_c00015;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00015;src:url('chunks/assets/font_a39f251bc4a1d407b3222b61.woff2')format("woff");}.ff2_c00015{font-family:ff2_c00015;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00015;src:url('chunks/assets/font_1c39c618d541ca5c200a012d.woff2')format("woff");}.ff3_c00015{font-family:ff3_c00015;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00015;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff4_c00015{font-family:ff4_c00015;line-height:1.219238;font-style: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;}
.ls0_c00015{letter-spacing:0.000000px;}
.ls1_c00015{letter-spacing:18.000000px;}
.sc__c00015{text-shadow:none;}
.sc0_c00015{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00015{-webkit-text-stroke:0px transparent;}
.sc0_c00015{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00015{word-spacing:0.000000px;}
._f_c00015{margin-left:-32.724000px;}
._13_c00015{margin-left:-8.505000px;}
._10_c00015{margin-left:-7.128000px;}
._d_c00015{margin-left:-5.994000px;}
._11_c00015{margin-left:-4.617000px;}
._c_c00015{margin-left:-3.564000px;}
._9_c00015{margin-left:-1.539000px;}
._8_c00015{width:1.701000px;}
._6_c00015{width:2.997000px;}
._0_c00015{width:4.779000px;}
._3_c00015{width:5.832000px;}
._1_c00015{width:7.533000px;}
._4_c00015{width:9.072000px;}
._2_c00015{width:10.125000px;}
._7_c00015{width:11.259000px;}
._a_c00015{width:12.501000px;}
._5_c00015{width:14.256000px;}
._b_c00015{width:15.471000px;}
._15_c00015{width:16.875000px;}
._16_c00015{width:19.197000px;}
._12_c00015{width:22.680000px;}
._14_c00015{width:25.353000px;}
._e_c00015{width:38.556000px;}
._17_c00015{width:65.688000px;}
.fc2_c00015{color:transparent;}
.fc1_c00015{color:rgb(128,128,128);}
.fc0_c00015{color:rgb(0,0,0);}
.fs3_c00015{font-size:24.000000px;}
.fs4_c00015{font-size:48.000000px;}
.fs1_c00015{font-size:54.000000px;}
.fs2_c00015{font-size:57.000000px;}
.fs0_c00015{font-size:81.000000px;}
.y0_c00015{bottom:0.000000px;}
.y10_c00015{bottom:3.105000px;}
.yf_c00015{bottom:7.228357px;}
.ye_c00015{bottom:177.930000px;}
.yd_c00015{bottom:194.430000px;}
.yc_c00015{bottom:632.430000px;}
.yb_c00015{bottom:655.080000px;}
.ya_c00015{bottom:678.480000px;}
.y9_c00015{bottom:704.730000px;}
.y8_c00015{bottom:730.380000px;}
.y7_c00015{bottom:754.980000px;}
.y6_c00015{bottom:780.030000px;}
.y5_c00015{bottom:804.330000px;}
.y4_c00015{bottom:828.930000px;}
.y3_c00015{bottom:853.830000px;}
.y2_c00015{bottom:878.130000px;}
.y1_c00015{bottom:902.580000px;}
.h4_c00015{height:13.200074px;}
.h3_c00015{height:23.554688px;}
.h5_c00015{height:43.804688px;}
.h2_c00015{height:66.713379px;}
.h1_c00015{height:79.497070px;}
.h0_c00015{height:995.250000px;}
.w2_c00015{width:104.875500px;}
.w1_c00015{width:680.250000px;}
.w0_c00015{width:680.400000px;}
.x0_c00015{left:0.000000px;}
.x1_c00015{left:143.850000px;}
.x2_c00015{left:145.200000px;}
.x3_c00015{left:146.550000px;}
.x4_c00015{left:148.500000px;}
.x7_c00015{left:292.014267px;}
.x6_c00015{left:607.800000px;}
.x5_c00015{left:638.250000px;}
@media print{
.v0_c00015{vertical-align:0.000000pt;}
.ls0_c00015{letter-spacing:0.000000pt;}
.ls1_c00015{letter-spacing:16.000000pt;}
.ws0_c00015{word-spacing:0.000000pt;}
._f_c00015{margin-left:-29.088000pt;}
._13_c00015{margin-left:-7.560000pt;}
._10_c00015{margin-left:-6.336000pt;}
._d_c00015{margin-left:-5.328000pt;}
._11_c00015{margin-left:-4.104000pt;}
._c_c00015{margin-left:-3.168000pt;}
._9_c00015{margin-left:-1.368000pt;}
._8_c00015{width:1.512000pt;}
._6_c00015{width:2.664000pt;}
._0_c00015{width:4.248000pt;}
._3_c00015{width:5.184000pt;}
._1_c00015{width:6.696000pt;}
._4_c00015{width:8.064000pt;}
._2_c00015{width:9.000000pt;}
._7_c00015{width:10.008000pt;}
._a_c00015{width:11.112000pt;}
._5_c00015{width:12.672000pt;}
._b_c00015{width:13.752000pt;}
._15_c00015{width:15.000000pt;}
._16_c00015{width:17.064000pt;}
._12_c00015{width:20.160000pt;}
._14_c00015{width:22.536000pt;}
._e_c00015{width:34.272000pt;}
._17_c00015{width:58.389333pt;}
.fs3_c00015{font-size:21.333333pt;}
.fs4_c00015{font-size:42.666667pt;}
.fs1_c00015{font-size:48.000000pt;}
.fs2_c00015{font-size:50.666667pt;}
.fs0_c00015{font-size:72.000000pt;}
.y0_c00015{bottom:0.000000pt;}
.y10_c00015{bottom:2.760000pt;}
.yf_c00015{bottom:6.425206pt;}
.ye_c00015{bottom:158.160000pt;}
.yd_c00015{bottom:172.826667pt;}
.yc_c00015{bottom:562.160000pt;}
.yb_c00015{bottom:582.293333pt;}
.ya_c00015{bottom:603.093333pt;}
.y9_c00015{bottom:626.426667pt;}
.y8_c00015{bottom:649.226667pt;}
.y7_c00015{bottom:671.093333pt;}
.y6_c00015{bottom:693.360000pt;}
.y5_c00015{bottom:714.960000pt;}
.y4_c00015{bottom:736.826667pt;}
.y3_c00015{bottom:758.960000pt;}
.y2_c00015{bottom:780.560000pt;}
.y1_c00015{bottom:802.293333pt;}
.h4_c00015{height:11.733399pt;}
.h3_c00015{height:20.937500pt;}
.h5_c00015{height:38.937500pt;}
.h2_c00015{height:59.300781pt;}
.h1_c00015{height:70.664062pt;}
.h0_c00015{height:884.666667pt;}
.w2_c00015{width:93.222667pt;}
.w1_c00015{width:604.666667pt;}
.w0_c00015{width:604.800000pt;}
.x0_c00015{left:0.000000pt;}
.x1_c00015{left:127.866667pt;}
.x2_c00015{left:129.066667pt;}
.x3_c00015{left:130.266667pt;}
.x4_c00015{left:132.000000pt;}
.x7_c00015{left:259.568237pt;}
.x6_c00015{left:540.266667pt;}
.x5_c00015{left:567.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_3bf4d193292d63eec3b36dab.woff2')format("woff");}.ff1_c00016{font-family:ff1_c00016;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00016;src:url('chunks/assets/font_8632a64fb76e31ac03a2ac4f.woff2')format("woff");}.ff2_c00016{font-family:ff2_c00016;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00016;src:url('chunks/assets/font_b3244a5ac8eb03f75607687d.woff2')format("woff");}.ff3_c00016{font-family:ff3_c00016;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00016;src:url('chunks/assets/font_a8a2db93719e8b6efd4cefb0.woff2')format("woff");}.ff4_c00016{font-family:ff4_c00016;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00016;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c00016{font-family:ff5_c00016;line-height:1.219238;font-style: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;}
.ls1_c00016{letter-spacing:0.000000px;}
.ls0_c00016{letter-spacing:9.300000px;}
.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;}
}
.ws2_c00016{word-spacing:-18.798000px;}
.ws1_c00016{word-spacing:-17.352000px;}
.ws3_c00016{word-spacing:0.000000px;}
.ws0_c00016{word-spacing:8.496000px;}
._13_c00016{margin-left:-31.680000px;}
._17_c00016{margin-left:-23.685000px;}
._21_c00016{margin-left:-17.577000px;}
._12_c00016{margin-left:-14.256000px;}
._1a_c00016{margin-left:-12.735000px;}
._1d_c00016{margin-left:-11.457000px;}
._1b_c00016{margin-left:-9.504000px;}
._15_c00016{margin-left:-8.496000px;}
._10_c00016{margin-left:-7.443000px;}
._14_c00016{margin-left:-5.535000px;}
._11_c00016{margin-left:-3.888000px;}
._8_c00016{margin-left:-2.304000px;}
._7_c00016{margin-left:-1.296000px;}
._4_c00016{width:1.008000px;}
._6_c00016{width:2.304000px;}
._5_c00016{width:3.456000px;}
._9_c00016{width:4.464000px;}
._b_c00016{width:5.715000px;}
._a_c00016{width:7.209000px;}
._d_c00016{width:8.739000px;}
._f_c00016{width:10.224000px;}
._3_c00016{width:11.376000px;}
._1_c00016{width:13.320000px;}
._e_c00016{width:14.535000px;}
._1e_c00016{width:15.795000px;}
._1c_c00016{width:17.712000px;}
._1f_c00016{width:19.107000px;}
._c_c00016{width:24.741000px;}
._2_c00016{width:26.640000px;}
._0_c00016{width:28.584000px;}
._16_c00016{width:48.105000px;}
._18_c00016{width:77.445000px;}
._22_c00016{width:96.390000px;}
._19_c00016{width:221.535000px;}
._20_c00016{width:275.112000px;}
._23_c00016{width:337.020000px;}
.fc2_c00016{color:transparent;}
.fc1_c00016{color:rgb(128,128,128);}
.fc0_c00016{color:rgb(0,0,0);}
.fs5_c00016{font-size:48.000000px;}
.fs0_c00016{font-size:72.000000px;}
.fs4_c00016{font-size:78.000000px;}
.fs2_c00016{font-size:81.000000px;}
.fs3_c00016{font-size:87.000000px;}
.fs1_c00016{font-size:144.000000px;}
.y0_c00016{bottom:0.000000px;}
.y24_c00016{bottom:3.105000px;}
.y23_c00016{bottom:7.228357px;}
.y22_c00016{bottom:50.280000px;}
.y21_c00016{bottom:72.930000px;}
.y20_c00016{bottom:98.580000px;}
.y1f_c00016{bottom:123.630000px;}
.y1e_c00016{bottom:148.530000px;}
.y1d_c00016{bottom:173.130000px;}
.y1c_c00016{bottom:198.480000px;}
.y1b_c00016{bottom:223.380000px;}
.y1a_c00016{bottom:247.830000px;}
.y19_c00016{bottom:272.430000px;}
.y18_c00016{bottom:296.430000px;}
.y17_c00016{bottom:320.280000px;}
.y16_c00016{bottom:344.580000px;}
.y15_c00016{bottom:369.330000px;}
.y14_c00016{bottom:393.630000px;}
.y13_c00016{bottom:417.780000px;}
.y12_c00016{bottom:442.230000px;}
.y11_c00016{bottom:467.430000px;}
.y10_c00016{bottom:491.430000px;}
.yf_c00016{bottom:516.030000px;}
.ye_c00016{bottom:541.980000px;}
.yd_c00016{bottom:566.430000px;}
.yc_c00016{bottom:588.930000px;}
.yb_c00016{bottom:613.680000px;}
.ya_c00016{bottom:637.530000px;}
.y9_c00016{bottom:661.830000px;}
.y8_c00016{bottom:686.880000px;}
.y7_c00016{bottom:712.080000px;}
.y6_c00016{bottom:737.880000px;}
.y5_c00016{bottom:760.680000px;}
.y4_c00016{bottom:786.480000px;}
.y3_c00016{bottom:810.030000px;}
.y2_c00016{bottom:862.680000px;}
.y1_c00016{bottom:914.280000px;}
.h7_c00016{height:13.200074px;}
.h8_c00016{height:43.804688px;}
.h3_c00016{height:79.497070px;}
.h1_c00016{height:84.269531px;}
.h6_c00016{height:91.160156px;}
.h4_c00016{height:91.176000px;}
.h5_c00016{height:98.756836px;}
.h2_c00016{height:182.320312px;}
.h0_c00016{height:968.250000px;}
.w2_c00016{width:104.875500px;}
.w0_c00016{width:656.100000px;}
.w1_c00016{width:656.250000px;}
.x0_c00016{left:0.000000px;}
.xe_c00016{left:31.800000px;}
.xd_c00016{left:35.400000px;}
.xb_c00016{left:36.450000px;}
.xa_c00016{left:38.400000px;}
.xc_c00016{left:39.450000px;}
.x9_c00016{left:40.500000px;}
.x8_c00016{left:41.850000px;}
.x2_c00016{left:115.350000px;}
.x7_c00016{left:151.200000px;}
.x5_c00016{left:158.850000px;}
.x3_c00016{left:163.350000px;}
.x4_c00016{left:169.800000px;}
.x6_c00016{left:171.150000px;}
.x10_c00016{left:279.864258px;}
.xf_c00016{left:358.050000px;}
.x1_c00016{left:468.000000px;}
@media print{
.v0_c00016{vertical-align:0.000000pt;}
.ls1_c00016{letter-spacing:0.000000pt;}
.ls0_c00016{letter-spacing:8.266667pt;}
.ws2_c00016{word-spacing:-16.709333pt;}
.ws1_c00016{word-spacing:-15.424000pt;}
.ws3_c00016{word-spacing:0.000000pt;}
.ws0_c00016{word-spacing:7.552000pt;}
._13_c00016{margin-left:-28.160000pt;}
._17_c00016{margin-left:-21.053333pt;}
._21_c00016{margin-left:-15.624000pt;}
._12_c00016{margin-left:-12.672000pt;}
._1a_c00016{margin-left:-11.320000pt;}
._1d_c00016{margin-left:-10.184000pt;}
._1b_c00016{margin-left:-8.448000pt;}
._15_c00016{margin-left:-7.552000pt;}
._10_c00016{margin-left:-6.616000pt;}
._14_c00016{margin-left:-4.920000pt;}
._11_c00016{margin-left:-3.456000pt;}
._8_c00016{margin-left:-2.048000pt;}
._7_c00016{margin-left:-1.152000pt;}
._4_c00016{width:0.896000pt;}
._6_c00016{width:2.048000pt;}
._5_c00016{width:3.072000pt;}
._9_c00016{width:3.968000pt;}
._b_c00016{width:5.080000pt;}
._a_c00016{width:6.408000pt;}
._d_c00016{width:7.768000pt;}
._f_c00016{width:9.088000pt;}
._3_c00016{width:10.112000pt;}
._1_c00016{width:11.840000pt;}
._e_c00016{width:12.920000pt;}
._1e_c00016{width:14.040000pt;}
._1c_c00016{width:15.744000pt;}
._1f_c00016{width:16.984000pt;}
._c_c00016{width:21.992000pt;}
._2_c00016{width:23.680000pt;}
._0_c00016{width:25.408000pt;}
._16_c00016{width:42.760000pt;}
._18_c00016{width:68.840000pt;}
._22_c00016{width:85.680000pt;}
._19_c00016{width:196.920000pt;}
._20_c00016{width:244.544000pt;}
._23_c00016{width:299.573333pt;}
.fs5_c00016{font-size:42.666667pt;}
.fs0_c00016{font-size:64.000000pt;}
.fs4_c00016{font-size:69.333333pt;}
.fs2_c00016{font-size:72.000000pt;}
.fs3_c00016{font-size:77.333333pt;}
.fs1_c00016{font-size:128.000000pt;}
.y0_c00016{bottom:0.000000pt;}
.y24_c00016{bottom:2.760000pt;}
.y23_c00016{bottom:6.425206pt;}
.y22_c00016{bottom:44.693333pt;}
.y21_c00016{bottom:64.826667pt;}
.y20_c00016{bottom:87.626667pt;}
.y1f_c00016{bottom:109.893333pt;}
.y1e_c00016{bottom:132.026667pt;}
.y1d_c00016{bottom:153.893333pt;}
.y1c_c00016{bottom:176.426667pt;}
.y1b_c00016{bottom:198.560000pt;}
.y1a_c00016{bottom:220.293333pt;}
.y19_c00016{bottom:242.160000pt;}
.y18_c00016{bottom:263.493333pt;}
.y17_c00016{bottom:284.693333pt;}
.y16_c00016{bottom:306.293333pt;}
.y15_c00016{bottom:328.293333pt;}
.y14_c00016{bottom:349.893333pt;}
.y13_c00016{bottom:371.360000pt;}
.y12_c00016{bottom:393.093333pt;}
.y11_c00016{bottom:415.493333pt;}
.y10_c00016{bottom:436.826667pt;}
.yf_c00016{bottom:458.693333pt;}
.ye_c00016{bottom:481.760000pt;}
.yd_c00016{bottom:503.493333pt;}
.yc_c00016{bottom:523.493333pt;}
.yb_c00016{bottom:545.493333pt;}
.ya_c00016{bottom:566.693333pt;}
.y9_c00016{bottom:588.293333pt;}
.y8_c00016{bottom:610.560000pt;}
.y7_c00016{bottom:632.960000pt;}
.y6_c00016{bottom:655.893333pt;}
.y5_c00016{bottom:676.160000pt;}
.y4_c00016{bottom:699.093333pt;}
.y3_c00016{bottom:720.026667pt;}
.y2_c00016{bottom:766.826667pt;}
.y1_c00016{bottom:812.693333pt;}
.h7_c00016{height:11.733399pt;}
.h8_c00016{height:38.937500pt;}
.h3_c00016{height:70.664062pt;}
.h1_c00016{height:74.906250pt;}
.h6_c00016{height:81.031250pt;}
.h4_c00016{height:81.045333pt;}
.h5_c00016{height:87.783854pt;}
.h2_c00016{height:162.062500pt;}
.h0_c00016{height:860.666667pt;}
.w2_c00016{width:93.222667pt;}
.w0_c00016{width:583.200000pt;}
.w1_c00016{width:583.333333pt;}
.x0_c00016{left:0.000000pt;}
.xe_c00016{left:28.266667pt;}
.xd_c00016{left:31.466667pt;}
.xb_c00016{left:32.400000pt;}
.xa_c00016{left:34.133333pt;}
.xc_c00016{left:35.066667pt;}
.x9_c00016{left:36.000000pt;}
.x8_c00016{left:37.200000pt;}
.x2_c00016{left:102.533333pt;}
.x7_c00016{left:134.400000pt;}
.x5_c00016{left:141.200000pt;}
.x3_c00016{left:145.200000pt;}
.x4_c00016{left:150.933333pt;}
.x6_c00016{left:152.133333pt;}
.x10_c00016{left:248.768229pt;}
.xf_c00016{left:318.266667pt;}
.x1_c00016{left:416.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_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_c8d44b06ae8f17c89b915114.woff2')format("woff");}.ff1_c00017{font-family:ff1_c00017;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00017;src:url('chunks/assets/font_c15fbc959bcf1a0d68b9bc48.woff2')format("woff");}.ff2_c00017{font-family:ff2_c00017;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00017;src:url('chunks/assets/font_a49901009cb36bb250e9d83c.woff2')format("woff");}.ff3_c00017{font-family:ff3_c00017;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00017;src:url('chunks/assets/font_4c39d833922cf8468e3f856b.woff2')format("woff");}.ff4_c00017{font-family:ff4_c00017;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00017;src:url('chunks/assets/font_e9cd15b66fa0a3d9c0bc783e.woff2')format("woff");}.ff5_c00017{font-family:ff5_c00017;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00017;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c00017{font-family:ff6_c00017;line-height:1.219238;font-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_c00017{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,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);}
.v2_c00017{vertical-align:-1.200000px;}
.v0_c00017{vertical-align:0.000000px;}
.v1_c00017{vertical-align:21.000000px;}
.ls4_c00017{letter-spacing:-6.000000px;}
.ls2_c00017{letter-spacing:0.000000px;}
.ls3_c00017{letter-spacing:15.000000px;}
.ls1_c00017{letter-spacing:25.200000px;}
.ls0_c00017{letter-spacing:625.980000px;}
.sc__c00017{text-shadow:none;}
.sc0_c00017{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00017{-webkit-text-stroke:0px transparent;}
.sc0_c00017{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00017{word-spacing:-61.686000px;}
.ws0_c00017{word-spacing:-17.352000px;}
.ws2_c00017{word-spacing:0.000000px;}
._1b_c00017{margin-left:-28.836000px;}
._23_c00017{margin-left:-24.300000px;}
._2a_c00017{margin-left:-23.124000px;}
._11_c00017{margin-left:-22.041000px;}
._8_c00017{margin-left:-20.628000px;}
._19_c00017{margin-left:-19.035000px;}
._2b_c00017{margin-left:-16.500000px;}
._9_c00017{margin-left:-14.256000px;}
._18_c00017{margin-left:-12.960000px;}
._d_c00017{margin-left:-11.862000px;}
._29_c00017{margin-left:-10.260000px;}
._22_c00017{margin-left:-9.126000px;}
._16_c00017{margin-left:-7.965000px;}
._13_c00017{margin-left:-6.399000px;}
._6_c00017{margin-left:-5.256000px;}
._e_c00017{margin-left:-4.077000px;}
._12_c00017{margin-left:-2.835000px;}
._c_c00017{margin-left:-1.332000px;}
._f_c00017{width:1.116000px;}
._2_c00017{width:2.592000px;}
._b_c00017{width:3.645000px;}
._5_c00017{width:4.779000px;}
._a_c00017{width:6.075000px;}
._15_c00017{width:7.092000px;}
._4_c00017{width:8.136000px;}
._7_c00017{width:9.279000px;}
._14_c00017{width:10.368000px;}
._10_c00017{width:11.619000px;}
._0_c00017{width:13.248000px;}
._1a_c00017{width:14.256000px;}
._25_c00017{width:15.561000px;}
._17_c00017{width:16.740000px;}
._3_c00017{width:18.576000px;}
._1_c00017{width:24.984000px;}
._21_c00017{width:28.188000px;}
._1d_c00017{width:34.491000px;}
._26_c00017{width:39.150000px;}
._24_c00017{width:57.429000px;}
._1f_c00017{width:85.797000px;}
._1e_c00017{width:118.746000px;}
._20_c00017{width:137.454000px;}
._1c_c00017{width:334.125000px;}
._27_c00017{width:458.541000px;}
._28_c00017{width:1100.547000px;}
.fc2_c00017{color:transparent;}
.fc1_c00017{color:rgb(128,128,128);}
.fc0_c00017{color:rgb(0,0,0);}
.fs5_c00017{font-size:48.000000px;}
.fs0_c00017{font-size:60.000000px;}
.fs1_c00017{font-size:72.000000px;}
.fs2_c00017{font-size:81.000000px;}
.fs4_c00017{font-size:87.000000px;}
.fs3_c00017{font-size:108.000000px;}
.y0_c00017{bottom:0.000000px;}
.y26_c00017{bottom:3.105000px;}
.y25_c00017{bottom:7.228357px;}
.y24_c00017{bottom:57.780000px;}
.y23_c00017{bottom:84.030000px;}
.y22_c00017{bottom:109.680000px;}
.y21_c00017{bottom:134.730000px;}
.y20_c00017{bottom:160.080000px;}
.y1f_c00017{bottom:182.880000px;}
.y1e_c00017{bottom:210.030000px;}
.y1d_c00017{bottom:234.930000px;}
.y1c_c00017{bottom:259.530000px;}
.y1b_c00017{bottom:284.580000px;}
.y1a_c00017{bottom:309.180000px;}
.y19_c00017{bottom:332.730000px;}
.y18_c00017{bottom:357.480000px;}
.y17_c00017{bottom:382.080000px;}
.y16_c00017{bottom:406.680000px;}
.y15_c00017{bottom:431.430000px;}
.y14_c00017{bottom:455.730000px;}
.y13_c00017{bottom:480.030000px;}
.y12_c00017{bottom:501.930000px;}
.y11_c00017{bottom:528.930000px;}
.y10_c00017{bottom:553.530000px;}
.yf_c00017{bottom:578.430000px;}
.ye_c00017{bottom:602.130000px;}
.yd_c00017{bottom:627.180000px;}
.yc_c00017{bottom:651.480000px;}
.yb_c00017{bottom:676.380000px;}
.ya_c00017{bottom:700.680000px;}
.y9_c00017{bottom:725.280000px;}
.y8_c00017{bottom:749.880000px;}
.y7_c00017{bottom:774.330000px;}
.y6_c00017{bottom:798.630000px;}
.y5_c00017{bottom:823.230000px;}
.y4_c00017{bottom:847.830000px;}
.y3_c00017{bottom:871.830000px;}
.y2_c00017{bottom:896.430000px;}
.y1_c00017{bottom:928.230000px;}
.h8_c00017{height:13.200074px;}
.h9_c00017{height:43.804688px;}
.h6_c00017{height:78.297070px;}
.h2_c00017{height:79.497070px;}
.h5_c00017{height:84.269531px;}
.h4_c00017{height:91.160156px;}
.h7_c00017{height:91.176000px;}
.h1_c00017{height:105.269531px;}
.h3_c00017{height:108.843750px;}
.h0_c00017{height:981.750000px;}
.w2_c00017{width:104.875500px;}
.w1_c00017{width:670.500000px;}
.w0_c00017{width:670.650000px;}
.x0_c00017{left:0.000000px;}
.xb_c00017{left:37.050000px;}
.x9_c00017{left:62.400000px;}
.x12_c00017{left:112.350000px;}
.x1_c00017{left:121.500000px;}
.x2_c00017{left:122.550000px;}
.x5_c00017{left:123.750000px;}
.x6_c00017{left:125.100000px;}
.x7_c00017{left:126.450000px;}
.x8_c00017{left:127.500000px;}
.xa_c00017{left:129.300000px;}
.xd_c00017{left:130.500000px;}
.xe_c00017{left:131.550000px;}
.xf_c00017{left:133.200000px;}
.x11_c00017{left:135.900000px;}
.x13_c00017{left:137.400000px;}
.x10_c00017{left:146.400000px;}
.x14_c00017{left:148.500000px;}
.xc_c00017{left:164.700000px;}
.x3_c00017{left:214.350000px;}
.x4_c00017{left:233.100000px;}
.x15_c00017{left:287.139267px;}
@media print{
.v2_c00017{vertical-align:-1.066667pt;}
.v0_c00017{vertical-align:0.000000pt;}
.v1_c00017{vertical-align:18.666667pt;}
.ls4_c00017{letter-spacing:-5.333333pt;}
.ls2_c00017{letter-spacing:0.000000pt;}
.ls3_c00017{letter-spacing:13.333333pt;}
.ls1_c00017{letter-spacing:22.400000pt;}
.ls0_c00017{letter-spacing:556.426667pt;}
.ws1_c00017{word-spacing:-54.832000pt;}
.ws0_c00017{word-spacing:-15.424000pt;}
.ws2_c00017{word-spacing:0.000000pt;}
._1b_c00017{margin-left:-25.632000pt;}
._23_c00017{margin-left:-21.600000pt;}
._2a_c00017{margin-left:-20.554667pt;}
._11_c00017{margin-left:-19.592000pt;}
._8_c00017{margin-left:-18.336000pt;}
._19_c00017{margin-left:-16.920000pt;}
._2b_c00017{margin-left:-14.666667pt;}
._9_c00017{margin-left:-12.672000pt;}
._18_c00017{margin-left:-11.520000pt;}
._d_c00017{margin-left:-10.544000pt;}
._29_c00017{margin-left:-9.120000pt;}
._22_c00017{margin-left:-8.112000pt;}
._16_c00017{margin-left:-7.080000pt;}
._13_c00017{margin-left:-5.688000pt;}
._6_c00017{margin-left:-4.672000pt;}
._e_c00017{margin-left:-3.624000pt;}
._12_c00017{margin-left:-2.520000pt;}
._c_c00017{margin-left:-1.184000pt;}
._f_c00017{width:0.992000pt;}
._2_c00017{width:2.304000pt;}
._b_c00017{width:3.240000pt;}
._5_c00017{width:4.248000pt;}
._a_c00017{width:5.400000pt;}
._15_c00017{width:6.304000pt;}
._4_c00017{width:7.232000pt;}
._7_c00017{width:8.248000pt;}
._14_c00017{width:9.216000pt;}
._10_c00017{width:10.328000pt;}
._0_c00017{width:11.776000pt;}
._1a_c00017{width:12.672000pt;}
._25_c00017{width:13.832000pt;}
._17_c00017{width:14.880000pt;}
._3_c00017{width:16.512000pt;}
._1_c00017{width:22.208000pt;}
._21_c00017{width:25.056000pt;}
._1d_c00017{width:30.658667pt;}
._26_c00017{width:34.800000pt;}
._24_c00017{width:51.048000pt;}
._1f_c00017{width:76.264000pt;}
._1e_c00017{width:105.552000pt;}
._20_c00017{width:122.181333pt;}
._1c_c00017{width:297.000000pt;}
._27_c00017{width:407.592000pt;}
._28_c00017{width:978.264000pt;}
.fs5_c00017{font-size:42.666667pt;}
.fs0_c00017{font-size:53.333333pt;}
.fs1_c00017{font-size:64.000000pt;}
.fs2_c00017{font-size:72.000000pt;}
.fs4_c00017{font-size:77.333333pt;}
.fs3_c00017{font-size:96.000000pt;}
.y0_c00017{bottom:0.000000pt;}
.y26_c00017{bottom:2.760000pt;}
.y25_c00017{bottom:6.425206pt;}
.y24_c00017{bottom:51.360000pt;}
.y23_c00017{bottom:74.693333pt;}
.y22_c00017{bottom:97.493333pt;}
.y21_c00017{bottom:119.760000pt;}
.y20_c00017{bottom:142.293333pt;}
.y1f_c00017{bottom:162.560000pt;}
.y1e_c00017{bottom:186.693333pt;}
.y1d_c00017{bottom:208.826667pt;}
.y1c_c00017{bottom:230.693333pt;}
.y1b_c00017{bottom:252.960000pt;}
.y1a_c00017{bottom:274.826667pt;}
.y19_c00017{bottom:295.760000pt;}
.y18_c00017{bottom:317.760000pt;}
.y17_c00017{bottom:339.626667pt;}
.y16_c00017{bottom:361.493333pt;}
.y15_c00017{bottom:383.493333pt;}
.y14_c00017{bottom:405.093333pt;}
.y13_c00017{bottom:426.693333pt;}
.y12_c00017{bottom:446.160000pt;}
.y11_c00017{bottom:470.160000pt;}
.y10_c00017{bottom:492.026667pt;}
.yf_c00017{bottom:514.160000pt;}
.ye_c00017{bottom:535.226667pt;}
.yd_c00017{bottom:557.493333pt;}
.yc_c00017{bottom:579.093333pt;}
.yb_c00017{bottom:601.226667pt;}
.ya_c00017{bottom:622.826667pt;}
.y9_c00017{bottom:644.693333pt;}
.y8_c00017{bottom:666.560000pt;}
.y7_c00017{bottom:688.293333pt;}
.y6_c00017{bottom:709.893333pt;}
.y5_c00017{bottom:731.760000pt;}
.y4_c00017{bottom:753.626667pt;}
.y3_c00017{bottom:774.960000pt;}
.y2_c00017{bottom:796.826667pt;}
.y1_c00017{bottom:825.093333pt;}
.h8_c00017{height:11.733399pt;}
.h9_c00017{height:38.937500pt;}
.h6_c00017{height:69.597396pt;}
.h2_c00017{height:70.664062pt;}
.h5_c00017{height:74.906250pt;}
.h4_c00017{height:81.031250pt;}
.h7_c00017{height:81.045333pt;}
.h1_c00017{height:93.572917pt;}
.h3_c00017{height:96.750000pt;}
.h0_c00017{height:872.666667pt;}
.w2_c00017{width:93.222667pt;}
.w1_c00017{width:596.000000pt;}
.w0_c00017{width:596.133333pt;}
.x0_c00017{left:0.000000pt;}
.xb_c00017{left:32.933333pt;}
.x9_c00017{left:55.466667pt;}
.x12_c00017{left:99.866667pt;}
.x1_c00017{left:108.000000pt;}
.x2_c00017{left:108.933333pt;}
.x5_c00017{left:110.000000pt;}
.x6_c00017{left:111.200000pt;}
.x7_c00017{left:112.400000pt;}
.x8_c00017{left:113.333333pt;}
.xa_c00017{left:114.933333pt;}
.xd_c00017{left:116.000000pt;}
.xe_c00017{left:116.933333pt;}
.xf_c00017{left:118.400000pt;}
.x11_c00017{left:120.800000pt;}
.x13_c00017{left:122.133333pt;}
.x10_c00017{left:130.133333pt;}
.x14_c00017{left:132.000000pt;}
.xc_c00017{left:146.400000pt;}
.x3_c00017{left:190.533333pt;}
.x4_c00017{left:207.200000pt;}
.x15_c00017{left:255.234904pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_80687a76afacc30a87272b07.woff2')format("woff");}.ff1_c00018{font-family:ff1_c00018;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00018;src:url('chunks/assets/font_05c36294d4fa1d65d20d7ed3.woff2')format("woff");}.ff2_c00018{font-family:ff2_c00018;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00018;src:url('chunks/assets/font_009d30eebff34f29bae34e4d.woff2')format("woff");}.ff3_c00018{font-family:ff3_c00018;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00018;src:url('chunks/assets/font_f7dea856919fca05c76b11ce.woff2')format("woff");}.ff4_c00018{font-family:ff4_c00018;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00018;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c00018{font-family:ff5_c00018;line-height:1.219238;font-style: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;}
.ls0_c00018{letter-spacing:0.000000px;}
.sc__c00018{text-shadow:none;}
.sc0_c00018{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00018{-webkit-text-stroke:0px transparent;}
.sc0_c00018{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00018{word-spacing:-16.926000px;}
.ws1_c00018{word-spacing:0.000000px;}
._15_c00018{margin-left:-9.864000px;}
._12_c00018{margin-left:-7.992000px;}
._6_c00018{margin-left:-6.318000px;}
._a_c00018{margin-left:-4.539000px;}
._5_c00018{margin-left:-3.510000px;}
._4_c00018{margin-left:-2.418000px;}
._8_c00018{margin-left:-1.044000px;}
._7_c00018{width:1.248000px;}
._2_c00018{width:3.168000px;}
._1_c00018{width:4.257000px;}
._0_c00018{width:5.643000px;}
._c_c00018{width:6.798000px;}
._9_c00018{width:7.800000px;}
._b_c00018{width:9.060000px;}
._13_c00018{width:10.245000px;}
._14_c00018{width:11.343000px;}
._f_c00018{width:12.480000px;}
._d_c00018{width:14.085000px;}
._10_c00018{width:15.690000px;}
._19_c00018{width:17.739000px;}
._e_c00018{width:19.344000px;}
._11_c00018{width:21.039000px;}
._17_c00018{width:22.839000px;}
._1a_c00018{width:35.802000px;}
._18_c00018{width:266.871000px;}
._16_c00018{width:272.037000px;}
._1b_c00018{width:376.236000px;}
._3_c00018{width:762.894000px;}
.fc2_c00018{color:transparent;}
.fc1_c00018{color:rgb(128,128,128);}
.fc0_c00018{color:rgb(0,0,0);}
.fs4_c00018{font-size:48.000000px;}
.fs2_c00018{font-size:72.000000px;}
.fs1_c00018{font-size:78.000000px;}
.fs3_c00018{font-size:81.000000px;}
.fs0_c00018{font-size:99.000000px;}
.y0_c00018{bottom:0.000000px;}
.y26_c00018{bottom:3.105000px;}
.y25_c00018{bottom:7.228357px;}
.y24_c00018{bottom:59.130000px;}
.y23_c00018{bottom:85.380000px;}
.y22_c00018{bottom:109.680000px;}
.y21_c00018{bottom:134.730000px;}
.y20_c00018{bottom:158.580000px;}
.y1f_c00018{bottom:184.680000px;}
.y1e_c00018{bottom:208.680000px;}
.y1d_c00018{bottom:233.280000px;}
.y1c_c00018{bottom:257.580000px;}
.y1b_c00018{bottom:282.480000px;}
.y1a_c00018{bottom:307.080000px;}
.y19_c00018{bottom:331.080000px;}
.y18_c00018{bottom:355.380000px;}
.y17_c00018{bottom:379.680000px;}
.y16_c00018{bottom:403.980000px;}
.y15_c00018{bottom:428.280000px;}
.y14_c00018{bottom:453.030000px;}
.y13_c00018{bottom:477.630000px;}
.y12_c00018{bottom:502.230000px;}
.y11_c00018{bottom:526.830000px;}
.y10_c00018{bottom:551.430000px;}
.yf_c00018{bottom:575.880000px;}
.ye_c00018{bottom:600.780000px;}
.yd_c00018{bottom:624.780000px;}
.yc_c00018{bottom:648.780000px;}
.yb_c00018{bottom:672.930000px;}
.ya_c00018{bottom:697.380000px;}
.y9_c00018{bottom:721.980000px;}
.y8_c00018{bottom:746.280000px;}
.y7_c00018{bottom:770.880000px;}
.y6_c00018{bottom:795.780000px;}
.y5_c00018{bottom:820.230000px;}
.y4_c00018{bottom:844.380000px;}
.y3_c00018{bottom:869.430000px;}
.y2_c00018{bottom:894.330000px;}
.y1_c00018{bottom:926.430000px;}
.h6_c00018{height:13.200074px;}
.h7_c00018{height:43.804688px;}
.h5_c00018{height:79.497070px;}
.h3_c00018{height:83.226000px;}
.h4_c00018{height:84.269531px;}
.h2_c00018{height:115.870605px;}
.h1_c00018{height:992.250000px;}
.h0_c00018{height:992.550000px;}
.w2_c00018{width:104.875500px;}
.w1_c00018{width:672.750000px;}
.w0_c00018{width:672.825000px;}
.x0_c00018{left:0.000000px;}
.x2_c00018{left:38.100000px;}
.x3_c00018{left:40.200000px;}
.x4_c00018{left:41.400000px;}
.x5_c00018{left:42.450000px;}
.x6_c00018{left:43.800000px;}
.x7_c00018{left:44.850000px;}
.x8_c00018{left:45.900000px;}
.xa_c00018{left:47.550000px;}
.x9_c00018{left:71.850000px;}
.x1_c00018{left:251.100000px;}
.xc_c00018{left:288.226730px;}
.xb_c00018{left:343.500000px;}
@media print{
.v0_c00018{vertical-align:0.000000pt;}
.ls0_c00018{letter-spacing:0.000000pt;}
.ws0_c00018{word-spacing:-15.045333pt;}
.ws1_c00018{word-spacing:0.000000pt;}
._15_c00018{margin-left:-8.768000pt;}
._12_c00018{margin-left:-7.104000pt;}
._6_c00018{margin-left:-5.616000pt;}
._a_c00018{margin-left:-4.034667pt;}
._5_c00018{margin-left:-3.120000pt;}
._4_c00018{margin-left:-2.149333pt;}
._8_c00018{margin-left:-0.928000pt;}
._7_c00018{width:1.109333pt;}
._2_c00018{width:2.816000pt;}
._1_c00018{width:3.784000pt;}
._0_c00018{width:5.016000pt;}
._c_c00018{width:6.042667pt;}
._9_c00018{width:6.933333pt;}
._b_c00018{width:8.053333pt;}
._13_c00018{width:9.106667pt;}
._14_c00018{width:10.082667pt;}
._f_c00018{width:11.093333pt;}
._d_c00018{width:12.520000pt;}
._10_c00018{width:13.946667pt;}
._19_c00018{width:15.768000pt;}
._e_c00018{width:17.194667pt;}
._11_c00018{width:18.701333pt;}
._17_c00018{width:20.301333pt;}
._1a_c00018{width:31.824000pt;}
._18_c00018{width:237.218667pt;}
._16_c00018{width:241.810667pt;}
._1b_c00018{width:334.432000pt;}
._3_c00018{width:678.128000pt;}
.fs4_c00018{font-size:42.666667pt;}
.fs2_c00018{font-size:64.000000pt;}
.fs1_c00018{font-size:69.333333pt;}
.fs3_c00018{font-size:72.000000pt;}
.fs0_c00018{font-size:88.000000pt;}
.y0_c00018{bottom:0.000000pt;}
.y26_c00018{bottom:2.760000pt;}
.y25_c00018{bottom:6.425206pt;}
.y24_c00018{bottom:52.560000pt;}
.y23_c00018{bottom:75.893333pt;}
.y22_c00018{bottom:97.493333pt;}
.y21_c00018{bottom:119.760000pt;}
.y20_c00018{bottom:140.960000pt;}
.y1f_c00018{bottom:164.160000pt;}
.y1e_c00018{bottom:185.493333pt;}
.y1d_c00018{bottom:207.360000pt;}
.y1c_c00018{bottom:228.960000pt;}
.y1b_c00018{bottom:251.093333pt;}
.y1a_c00018{bottom:272.960000pt;}
.y19_c00018{bottom:294.293333pt;}
.y18_c00018{bottom:315.893333pt;}
.y17_c00018{bottom:337.493333pt;}
.y16_c00018{bottom:359.093333pt;}
.y15_c00018{bottom:380.693333pt;}
.y14_c00018{bottom:402.693333pt;}
.y13_c00018{bottom:424.560000pt;}
.y12_c00018{bottom:446.426667pt;}
.y11_c00018{bottom:468.293333pt;}
.y10_c00018{bottom:490.160000pt;}
.yf_c00018{bottom:511.893333pt;}
.ye_c00018{bottom:534.026667pt;}
.yd_c00018{bottom:555.360000pt;}
.yc_c00018{bottom:576.693333pt;}
.yb_c00018{bottom:598.160000pt;}
.ya_c00018{bottom:619.893333pt;}
.y9_c00018{bottom:641.760000pt;}
.y8_c00018{bottom:663.360000pt;}
.y7_c00018{bottom:685.226667pt;}
.y6_c00018{bottom:707.360000pt;}
.y5_c00018{bottom:729.093333pt;}
.y4_c00018{bottom:750.560000pt;}
.y3_c00018{bottom:772.826667pt;}
.y2_c00018{bottom:794.960000pt;}
.y1_c00018{bottom:823.493333pt;}
.h6_c00018{height:11.733399pt;}
.h7_c00018{height:38.937500pt;}
.h5_c00018{height:70.664062pt;}
.h3_c00018{height:73.978667pt;}
.h4_c00018{height:74.906250pt;}
.h2_c00018{height:102.996094pt;}
.h1_c00018{height:882.000000pt;}
.h0_c00018{height:882.266667pt;}
.w2_c00018{width:93.222667pt;}
.w1_c00018{width:598.000000pt;}
.w0_c00018{width:598.066667pt;}
.x0_c00018{left:0.000000pt;}
.x2_c00018{left:33.866667pt;}
.x3_c00018{left:35.733333pt;}
.x4_c00018{left:36.800000pt;}
.x5_c00018{left:37.733333pt;}
.x6_c00018{left:38.933333pt;}
.x7_c00018{left:39.866667pt;}
.x8_c00018{left:40.800000pt;}
.xa_c00018{left:42.266667pt;}
.x9_c00018{left:63.866667pt;}
.x1_c00018{left:223.200000pt;}
.xc_c00018{left:256.201538pt;}
.xb_c00018{left:305.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_c0a15ffac5aa4f10f48d95f3.woff2')format("woff");}.ff1_c00019{font-family:ff1_c00019;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00019;src:url('chunks/assets/font_31d2aa371b12dd88a4445dec.woff2')format("woff");}.ff2_c00019{font-family:ff2_c00019;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00019;src:url('chunks/assets/font_e9431a450d112c9e2516aca2.woff2')format("woff");}.ff3_c00019{font-family:ff3_c00019;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00019;src:url('chunks/assets/font_a158b68c7dd84537572a9c0f.woff2')format("woff");}.ff4_c00019{font-family:ff4_c00019;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00019;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c00019{font-family:ff5_c00019;line-height:1.219238;font-style: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);}
.m1_c00019{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.v0_c00019{vertical-align:0.000000px;}
.ls0_c00019{letter-spacing:0.000000px;}
.ls1_c00019{letter-spacing:21.000000px;}
.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;}
}
.ws3_c00019{word-spacing:-54.000000px;}
.ws5_c00019{word-spacing:-20.250000px;}
.ws2_c00019{word-spacing:-17.352000px;}
.ws1_c00019{word-spacing:-15.750000px;}
.ws4_c00019{word-spacing:-2.898000px;}
.ws6_c00019{word-spacing:0.000000px;}
.ws0_c00019{word-spacing:0.144000px;}
._1a_c00019{margin-left:-16.038000px;}
._15_c00019{margin-left:-12.894000px;}
._14_c00019{margin-left:-11.718000px;}
._b_c00019{margin-left:-8.586000px;}
._f_c00019{margin-left:-7.362000px;}
._c_c00019{margin-left:-5.508000px;}
._12_c00019{margin-left:-4.401000px;}
._8_c00019{margin-left:-3.321000px;}
._d_c00019{margin-left:-2.106000px;}
._16_c00019{margin-left:-1.008000px;}
._13_c00019{width:1.008000px;}
._6_c00019{width:2.106000px;}
._7_c00019{width:3.888000px;}
._10_c00019{width:4.941000px;}
._a_c00019{width:5.994000px;}
._9_c00019{width:7.128000px;}
._e_c00019{width:8.208000px;}
._11_c00019{width:9.360000px;}
._0_c00019{width:10.584000px;}
._1_c00019{width:11.664000px;}
._5_c00019{width:13.680000px;}
._19_c00019{width:14.733000px;}
._17_c00019{width:15.939000px;}
._1b_c00019{width:18.171000px;}
._18_c00019{width:20.307000px;}
._3_c00019{width:21.528000px;}
._4_c00019{width:23.040000px;}
._2_c00019{width:24.624000px;}
._1c_c00019{width:518.913000px;}
.fc2_c00019{color:transparent;}
.fc1_c00019{color:rgb(128,128,128);}
.fc0_c00019{color:rgb(0,0,0);}
.fs5_c00019{font-size:48.000000px;}
.fs4_c00019{font-size:57.000000px;}
.fs2_c00019{font-size:63.000000px;}
.fs3_c00019{font-size:66.000000px;}
.fs0_c00019{font-size:72.000000px;}
.fs1_c00019{font-size:81.000000px;}
.y0_c00019{bottom:0.000000px;}
.y26_c00019{bottom:3.105000px;}
.y25_c00019{bottom:7.228363px;}
.y24_c00019{bottom:49.950000px;}
.y23_c00019{bottom:73.950000px;}
.y22_c00019{bottom:99.450000px;}
.y21_c00019{bottom:124.200000px;}
.y20_c00019{bottom:148.950000px;}
.y1f_c00019{bottom:173.850000px;}
.y1e_c00019{bottom:198.450000px;}
.y1d_c00019{bottom:223.200000px;}
.y1c_c00019{bottom:247.950000px;}
.y1b_c00019{bottom:271.050000px;}
.y1a_c00019{bottom:297.300000px;}
.y19_c00019{bottom:321.000000px;}
.y18_c00019{bottom:345.300000px;}
.y17_c00019{bottom:369.900000px;}
.y16_c00019{bottom:393.900000px;}
.y15_c00019{bottom:418.800000px;}
.y14_c00019{bottom:444.150000px;}
.y13_c00019{bottom:467.400000px;}
.y12_c00019{bottom:491.850000px;}
.y11_c00019{bottom:516.000000px;}
.y10_c00019{bottom:540.000000px;}
.yf_c00019{bottom:564.750000px;}
.ye_c00019{bottom:588.900000px;}
.yd_c00019{bottom:613.350000px;}
.yc_c00019{bottom:638.100000px;}
.yb_c00019{bottom:662.250000px;}
.ya_c00019{bottom:686.550000px;}
.y9_c00019{bottom:711.450000px;}
.y8_c00019{bottom:735.750000px;}
.y7_c00019{bottom:760.350000px;}
.y6_c00019{bottom:784.800000px;}
.y5_c00019{bottom:809.250000px;}
.y4_c00019{bottom:833.700000px;}
.y3_c00019{bottom:857.700000px;}
.y2_c00019{bottom:882.000000px;}
.y1_c00019{bottom:918.000000px;}
.h5_c00019{height:13.200074px;}
.h6_c00019{height:43.804688px;}
.h4_c00019{height:66.713379px;}
.h3_c00019{height:79.497070px;}
.h2_c00019{height:84.269531px;}
.h0_c00019{height:974.700000px;}
.h1_c00019{height:975.000000px;}
.w2_c00019{width:104.875500px;}
.w0_c00019{width:666.375000px;}
.w1_c00019{width:666.750000px;}
.x0_c00019{left:0.000000px;}
.xe_c00019{left:125.250000px;}
.xd_c00019{left:126.600000px;}
.x9_c00019{left:129.150000px;}
.x8_c00019{left:130.650000px;}
.x7_c00019{left:132.900000px;}
.x6_c00019{left:133.950000px;}
.x5_c00019{left:136.050000px;}
.x4_c00019{left:137.250000px;}
.x3_c00019{left:138.750000px;}
.x2_c00019{left:140.700000px;}
.xc_c00019{left:160.650000px;}
.xb_c00019{left:173.700000px;}
.xa_c00019{left:275.400000px;}
.x10_c00019{left:285.001740px;}
.x1_c00019{left:314.100000px;}
.xf_c00019{left:574.500000px;}
@media print{
.v0_c00019{vertical-align:0.000000pt;}
.ls0_c00019{letter-spacing:0.000000pt;}
.ls1_c00019{letter-spacing:18.666667pt;}
.ws3_c00019{word-spacing:-48.000000pt;}
.ws5_c00019{word-spacing:-18.000000pt;}
.ws2_c00019{word-spacing:-15.424000pt;}
.ws1_c00019{word-spacing:-14.000000pt;}
.ws4_c00019{word-spacing:-2.576000pt;}
.ws6_c00019{word-spacing:0.000000pt;}
.ws0_c00019{word-spacing:0.128000pt;}
._1a_c00019{margin-left:-14.256000pt;}
._15_c00019{margin-left:-11.461333pt;}
._14_c00019{margin-left:-10.416000pt;}
._b_c00019{margin-left:-7.632000pt;}
._f_c00019{margin-left:-6.544000pt;}
._c_c00019{margin-left:-4.896000pt;}
._12_c00019{margin-left:-3.912000pt;}
._8_c00019{margin-left:-2.952000pt;}
._d_c00019{margin-left:-1.872000pt;}
._16_c00019{margin-left:-0.896000pt;}
._13_c00019{width:0.896000pt;}
._6_c00019{width:1.872000pt;}
._7_c00019{width:3.456000pt;}
._10_c00019{width:4.392000pt;}
._a_c00019{width:5.328000pt;}
._9_c00019{width:6.336000pt;}
._e_c00019{width:7.296000pt;}
._11_c00019{width:8.320000pt;}
._0_c00019{width:9.408000pt;}
._1_c00019{width:10.368000pt;}
._5_c00019{width:12.160000pt;}
._19_c00019{width:13.096000pt;}
._17_c00019{width:14.168000pt;}
._1b_c00019{width:16.152000pt;}
._18_c00019{width:18.050667pt;}
._3_c00019{width:19.136000pt;}
._4_c00019{width:20.480000pt;}
._2_c00019{width:21.888000pt;}
._1c_c00019{width:461.256000pt;}
.fs5_c00019{font-size:42.666667pt;}
.fs4_c00019{font-size:50.666667pt;}
.fs2_c00019{font-size:56.000000pt;}
.fs3_c00019{font-size:58.666667pt;}
.fs0_c00019{font-size:64.000000pt;}
.fs1_c00019{font-size:72.000000pt;}
.y0_c00019{bottom:0.000000pt;}
.y26_c00019{bottom:2.760000pt;}
.y25_c00019{bottom:6.425212pt;}
.y24_c00019{bottom:44.400000pt;}
.y23_c00019{bottom:65.733333pt;}
.y22_c00019{bottom:88.400000pt;}
.y21_c00019{bottom:110.400000pt;}
.y20_c00019{bottom:132.400000pt;}
.y1f_c00019{bottom:154.533333pt;}
.y1e_c00019{bottom:176.400000pt;}
.y1d_c00019{bottom:198.400000pt;}
.y1c_c00019{bottom:220.400000pt;}
.y1b_c00019{bottom:240.933333pt;}
.y1a_c00019{bottom:264.266667pt;}
.y19_c00019{bottom:285.333333pt;}
.y18_c00019{bottom:306.933333pt;}
.y17_c00019{bottom:328.800000pt;}
.y16_c00019{bottom:350.133333pt;}
.y15_c00019{bottom:372.266667pt;}
.y14_c00019{bottom:394.800000pt;}
.y13_c00019{bottom:415.466667pt;}
.y12_c00019{bottom:437.200000pt;}
.y11_c00019{bottom:458.666667pt;}
.y10_c00019{bottom:480.000000pt;}
.yf_c00019{bottom:502.000000pt;}
.ye_c00019{bottom:523.466667pt;}
.yd_c00019{bottom:545.200000pt;}
.yc_c00019{bottom:567.200000pt;}
.yb_c00019{bottom:588.666667pt;}
.ya_c00019{bottom:610.266667pt;}
.y9_c00019{bottom:632.400000pt;}
.y8_c00019{bottom:654.000000pt;}
.y7_c00019{bottom:675.866667pt;}
.y6_c00019{bottom:697.600000pt;}
.y5_c00019{bottom:719.333333pt;}
.y4_c00019{bottom:741.066667pt;}
.y3_c00019{bottom:762.400000pt;}
.y2_c00019{bottom:784.000000pt;}
.y1_c00019{bottom:816.000000pt;}
.h5_c00019{height:11.733399pt;}
.h6_c00019{height:38.937500pt;}
.h4_c00019{height:59.300781pt;}
.h3_c00019{height:70.664062pt;}
.h2_c00019{height:74.906250pt;}
.h0_c00019{height:866.400000pt;}
.h1_c00019{height:866.666667pt;}
.w2_c00019{width:93.222667pt;}
.w0_c00019{width:592.333333pt;}
.w1_c00019{width:592.666667pt;}
.x0_c00019{left:0.000000pt;}
.xe_c00019{left:111.333333pt;}
.xd_c00019{left:112.533333pt;}
.x9_c00019{left:114.800000pt;}
.x8_c00019{left:116.133333pt;}
.x7_c00019{left:118.133333pt;}
.x6_c00019{left:119.066667pt;}
.x5_c00019{left:120.933333pt;}
.x4_c00019{left:122.000000pt;}
.x3_c00019{left:123.333333pt;}
.x2_c00019{left:125.066667pt;}
.xc_c00019{left:142.800000pt;}
.xb_c00019{left:154.400000pt;}
.xa_c00019{left:244.800000pt;}
.x10_c00019{left:253.334880pt;}
.x1_c00019{left:279.200000pt;}
.xf_c00019{left:510.666667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_156f0c3a52caa33f0259a560.woff2')format("woff");}.ff1_c00020{font-family:ff1_c00020;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00020;src:url('chunks/assets/font_0a09a7662f422cbde5f54359.woff2')format("woff");}.ff2_c00020{font-family:ff2_c00020;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00020;src:url('chunks/assets/font_9a0d84185ad2c4185ac7e406.woff2')format("woff");}.ff3_c00020{font-family:ff3_c00020;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00020;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff4_c00020{font-family:ff4_c00020;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00020{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m0_c00020{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00020{vertical-align:0.000000px;}
.ls0_c00020{letter-spacing:0.000000px;}
.sc__c00020{text-shadow:none;}
.sc0_c00020{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00020{-webkit-text-stroke:0px transparent;}
.sc0_c00020{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00020{word-spacing:0.000000px;}
.ws0_c00020{word-spacing:3.816000px;}
._10_c00020{margin-left:-19.845000px;}
._20_c00020{margin-left:-17.739000px;}
._1b_c00020{margin-left:-13.860000px;}
._15_c00020{margin-left:-9.801000px;}
._17_c00020{margin-left:-8.262000px;}
._c_c00020{margin-left:-7.047000px;}
._e_c00020{margin-left:-5.022000px;}
._11_c00020{margin-left:-3.645000px;}
._9_c00020{margin-left:-1.701000px;}
._d_c00020{width:1.539000px;}
._8_c00020{width:2.997000px;}
._f_c00020{width:4.050000px;}
._7_c00020{width:5.103000px;}
._a_c00020{width:6.156000px;}
._6_c00020{width:7.209000px;}
._12_c00020{width:8.667000px;}
._b_c00020{width:9.720000px;}
._4_c00020{width:11.592000px;}
._1c_c00020{width:12.960000px;}
._1a_c00020{width:14.742000px;}
._19_c00020{width:15.768000px;}
._1e_c00020{width:17.010000px;}
._3_c00020{width:19.296000px;}
._2_c00020{width:22.536000px;}
._1_c00020{width:24.048000px;}
._0_c00020{width:25.200000px;}
._14_c00020{width:27.702000px;}
._18_c00020{width:31.509000px;}
._1f_c00020{width:57.672000px;}
._13_c00020{width:62.856000px;}
._16_c00020{width:69.255000px;}
._1d_c00020{width:75.978000px;}
._21_c00020{width:120.510000px;}
._22_c00020{width:210.438000px;}
._5_c00020{width:768.600000px;}
.fc2_c00020{color:transparent;}
.fc1_c00020{color:rgb(128,128,128);}
.fc0_c00020{color:rgb(0,0,0);}
.fs3_c00020{font-size:48.000000px;}
.fs0_c00020{font-size:72.000000px;}
.fs1_c00020{font-size:81.000000px;}
.fs2_c00020{font-size:108.000000px;}
.y0_c00020{bottom:0.000000px;}
.y26_c00020{bottom:3.105000px;}
.y25_c00020{bottom:7.228369px;}
.y24_c00020{bottom:45.570000px;}
.y23_c00020{bottom:70.770000px;}
.y22_c00020{bottom:96.570000px;}
.y21_c00020{bottom:121.170000px;}
.y20_c00020{bottom:145.770000px;}
.y1f_c00020{bottom:170.370000px;}
.y1e_c00020{bottom:195.120000px;}
.y1d_c00020{bottom:219.270000px;}
.y1c_c00020{bottom:244.020000px;}
.y1b_c00020{bottom:268.620000px;}
.y1a_c00020{bottom:293.520000px;}
.y19_c00020{bottom:317.820000px;}
.y18_c00020{bottom:341.520000px;}
.y17_c00020{bottom:366.120000px;}
.y16_c00020{bottom:390.120000px;}
.y15_c00020{bottom:414.720000px;}
.y14_c00020{bottom:438.420000px;}
.y13_c00020{bottom:463.320000px;}
.y12_c00020{bottom:487.920000px;}
.y11_c00020{bottom:512.220000px;}
.y10_c00020{bottom:536.370000px;}
.yf_c00020{bottom:560.820000px;}
.ye_c00020{bottom:585.270000px;}
.yd_c00020{bottom:609.120000px;}
.yc_c00020{bottom:633.420000px;}
.yb_c00020{bottom:657.720000px;}
.ya_c00020{bottom:682.620000px;}
.y9_c00020{bottom:706.620000px;}
.y8_c00020{bottom:730.620000px;}
.y7_c00020{bottom:755.220000px;}
.y6_c00020{bottom:779.520000px;}
.y5_c00020{bottom:803.970000px;}
.y4_c00020{bottom:828.570000px;}
.y3_c00020{bottom:852.870000px;}
.y2_c00020{bottom:877.470000px;}
.y1_c00020{bottom:910.170000px;}
.h5_c00020{height:13.200073px;}
.h6_c00020{height:43.804688px;}
.h3_c00020{height:79.497070px;}
.h2_c00020{height:84.269531px;}
.h4_c00020{height:108.843750px;}
.h1_c00020{height:1001.250000px;}
.h0_c00020{height:1001.400000px;}
.w1_c00020{width:104.875500px;}
.w0_c00020{width:678.750000px;}
.x0_c00020{left:0.000000px;}
.x6_c00020{left:18.450000px;}
.x3_c00020{left:19.500000px;}
.xa_c00020{left:21.900000px;}
.xf_c00020{left:25.650000px;}
.x2_c00020{left:47.850000px;}
.x4_c00020{left:48.900000px;}
.x5_c00020{left:50.550000px;}
.x7_c00020{left:51.900000px;}
.x8_c00020{left:52.950000px;}
.x9_c00020{left:54.750000px;}
.xb_c00020{left:56.250000px;}
.xe_c00020{left:58.350000px;}
.x10_c00020{left:60.450000px;}
.xc_c00020{left:62.100000px;}
.xd_c00020{left:63.150000px;}
.x11_c00020{left:94.800000px;}
.x12_c00020{left:206.850000px;}
.x1_c00020{left:253.050000px;}
.x14_c00020{left:291.189240px;}
.x13_c00020{left:357.450000px;}
@media print{
.v0_c00020{vertical-align:0.000000pt;}
.ls0_c00020{letter-spacing:0.000000pt;}
.ws1_c00020{word-spacing:0.000000pt;}
.ws0_c00020{word-spacing:3.392000pt;}
._10_c00020{margin-left:-17.640000pt;}
._20_c00020{margin-left:-15.768000pt;}
._1b_c00020{margin-left:-12.320000pt;}
._15_c00020{margin-left:-8.712000pt;}
._17_c00020{margin-left:-7.344000pt;}
._c_c00020{margin-left:-6.264000pt;}
._e_c00020{margin-left:-4.464000pt;}
._11_c00020{margin-left:-3.240000pt;}
._9_c00020{margin-left:-1.512000pt;}
._d_c00020{width:1.368000pt;}
._8_c00020{width:2.664000pt;}
._f_c00020{width:3.600000pt;}
._7_c00020{width:4.536000pt;}
._a_c00020{width:5.472000pt;}
._6_c00020{width:6.408000pt;}
._12_c00020{width:7.704000pt;}
._b_c00020{width:8.640000pt;}
._4_c00020{width:10.304000pt;}
._1c_c00020{width:11.520000pt;}
._1a_c00020{width:13.104000pt;}
._19_c00020{width:14.016000pt;}
._1e_c00020{width:15.120000pt;}
._3_c00020{width:17.152000pt;}
._2_c00020{width:20.032000pt;}
._1_c00020{width:21.376000pt;}
._0_c00020{width:22.400000pt;}
._14_c00020{width:24.624000pt;}
._18_c00020{width:28.008000pt;}
._1f_c00020{width:51.264000pt;}
._13_c00020{width:55.872000pt;}
._16_c00020{width:61.560000pt;}
._1d_c00020{width:67.536000pt;}
._21_c00020{width:107.120000pt;}
._22_c00020{width:187.056000pt;}
._5_c00020{width:683.200000pt;}
.fs3_c00020{font-size:42.666667pt;}
.fs0_c00020{font-size:64.000000pt;}
.fs1_c00020{font-size:72.000000pt;}
.fs2_c00020{font-size:96.000000pt;}
.y0_c00020{bottom:0.000000pt;}
.y26_c00020{bottom:2.760000pt;}
.y25_c00020{bottom:6.425217pt;}
.y24_c00020{bottom:40.506667pt;}
.y23_c00020{bottom:62.906667pt;}
.y22_c00020{bottom:85.840000pt;}
.y21_c00020{bottom:107.706667pt;}
.y20_c00020{bottom:129.573333pt;}
.y1f_c00020{bottom:151.440000pt;}
.y1e_c00020{bottom:173.440000pt;}
.y1d_c00020{bottom:194.906667pt;}
.y1c_c00020{bottom:216.906667pt;}
.y1b_c00020{bottom:238.773333pt;}
.y1a_c00020{bottom:260.906667pt;}
.y19_c00020{bottom:282.506667pt;}
.y18_c00020{bottom:303.573333pt;}
.y17_c00020{bottom:325.440000pt;}
.y16_c00020{bottom:346.773333pt;}
.y15_c00020{bottom:368.640000pt;}
.y14_c00020{bottom:389.706667pt;}
.y13_c00020{bottom:411.840000pt;}
.y12_c00020{bottom:433.706667pt;}
.y11_c00020{bottom:455.306667pt;}
.y10_c00020{bottom:476.773333pt;}
.yf_c00020{bottom:498.506667pt;}
.ye_c00020{bottom:520.240000pt;}
.yd_c00020{bottom:541.440000pt;}
.yc_c00020{bottom:563.040000pt;}
.yb_c00020{bottom:584.640000pt;}
.ya_c00020{bottom:606.773333pt;}
.y9_c00020{bottom:628.106667pt;}
.y8_c00020{bottom:649.440000pt;}
.y7_c00020{bottom:671.306667pt;}
.y6_c00020{bottom:692.906667pt;}
.y5_c00020{bottom:714.640000pt;}
.y4_c00020{bottom:736.506667pt;}
.y3_c00020{bottom:758.106667pt;}
.y2_c00020{bottom:779.973333pt;}
.y1_c00020{bottom:809.040000pt;}
.h5_c00020{height:11.733399pt;}
.h6_c00020{height:38.937500pt;}
.h3_c00020{height:70.664062pt;}
.h2_c00020{height:74.906250pt;}
.h4_c00020{height:96.750000pt;}
.h1_c00020{height:890.000000pt;}
.h0_c00020{height:890.133333pt;}
.w1_c00020{width:93.222667pt;}
.w0_c00020{width:603.333333pt;}
.x0_c00020{left:0.000000pt;}
.x6_c00020{left:16.400000pt;}
.x3_c00020{left:17.333333pt;}
.xa_c00020{left:19.466667pt;}
.xf_c00020{left:22.800000pt;}
.x2_c00020{left:42.533333pt;}
.x4_c00020{left:43.466667pt;}
.x5_c00020{left:44.933333pt;}
.x7_c00020{left:46.133333pt;}
.x8_c00020{left:47.066667pt;}
.x9_c00020{left:48.666667pt;}
.xb_c00020{left:50.000000pt;}
.xe_c00020{left:51.866667pt;}
.x10_c00020{left:53.733333pt;}
.xc_c00020{left:55.200000pt;}
.xd_c00020{left:56.133333pt;}
.x11_c00020{left:84.266667pt;}
.x12_c00020{left:183.866667pt;}
.x1_c00020{left:224.933333pt;}
.x14_c00020{left:258.834880pt;}
.x13_c00020{left:317.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_c2cf6b2680d8c8baa0a06569.woff2')format("woff");}.ff1_c00021{font-family:ff1_c00021;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00021;src:url('chunks/assets/font_2bbadeb61667c676d6cf9d8a.woff2')format("woff");}.ff2_c00021{font-family:ff2_c00021;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00021;src:url('chunks/assets/font_49e4f3774296ce89e17965da.woff2')format("woff");}.ff3_c00021{font-family:ff3_c00021;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00021;src:url('chunks/assets/font_584bc8f1757840438583b9a9.woff2')format("woff");}.ff4_c00021{font-family:ff4_c00021;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00021;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c00021{font-family:ff5_c00021;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00021{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00021{vertical-align:0.000000px;}
.ls1_c00021{letter-spacing:0.000000px;}
.ls0_c00021{letter-spacing:10.500000px;}
.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;}
}
.ws2_c00021{word-spacing:-20.250000px;}
.ws1_c00021{word-spacing:-18.798000px;}
.ws0_c00021{word-spacing:-17.352000px;}
.ws3_c00021{word-spacing:0.000000px;}
._14_c00021{margin-left:-39.285000px;}
._1b_c00021{margin-left:-38.151000px;}
._18_c00021{margin-left:-21.951000px;}
._17_c00021{margin-left:-12.141000px;}
._16_c00021{margin-left:-10.944000px;}
._11_c00021{margin-left:-9.369000px;}
._c_c00021{margin-left:-7.695000px;}
._f_c00021{margin-left:-6.075000px;}
._e_c00021{margin-left:-4.311000px;}
._5_c00021{margin-left:-3.240000px;}
._0_c00021{margin-left:-1.368000px;}
._b_c00021{width:1.044000px;}
._8_c00021{width:2.754000px;}
._9_c00021{width:4.536000px;}
._a_c00021{width:5.589000px;}
._d_c00021{width:7.470000px;}
._4_c00021{width:8.568000px;}
._7_c00021{width:10.584000px;}
._2_c00021{width:12.024000px;}
._3_c00021{width:13.608000px;}
._12_c00021{width:15.102000px;}
._13_c00021{width:17.406000px;}
._6_c00021{width:20.808000px;}
._10_c00021{width:24.495000px;}
._19_c00021{width:27.513000px;}
._15_c00021{width:81.972000px;}
._1a_c00021{width:86.859000px;}
._1c_c00021{width:201.186000px;}
._1_c00021{width:571.032000px;}
.fc2_c00021{color:transparent;}
.fc1_c00021{color:rgb(128,128,128);}
.fc0_c00021{color:rgb(0,0,0);}
.fs5_c00021{font-size:48.000000px;}
.fs3_c00021{font-size:60.000000px;}
.fs0_c00021{font-size:72.000000px;}
.fs2_c00021{font-size:78.000000px;}
.fs1_c00021{font-size:81.000000px;}
.fs4_c00021{font-size:87.000000px;}
.y0_c00021{bottom:0.000000px;}
.y25_c00021{bottom:3.105000px;}
.y24_c00021{bottom:7.228357px;}
.y23_c00021{bottom:68.130000px;}
.y22_c00021{bottom:95.280000px;}
.y21_c00021{bottom:119.580000px;}
.y20_c00021{bottom:145.530000px;}
.y1f_c00021{bottom:169.380000px;}
.y1e_c00021{bottom:194.130000px;}
.y1d_c00021{bottom:219.330000px;}
.y1c_c00021{bottom:243.780000px;}
.y1b_c00021{bottom:268.380000px;}
.y1a_c00021{bottom:293.730000px;}
.y19_c00021{bottom:317.280000px;}
.y18_c00021{bottom:342.180000px;}
.y17_c00021{bottom:366.630000px;}
.y16_c00021{bottom:390.780000px;}
.y15_c00021{bottom:418.530000px;}
.y14_c00021{bottom:439.530000px;}
.y13_c00021{bottom:463.830000px;}
.y12_c00021{bottom:488.730000px;}
.y11_c00021{bottom:513.330000px;}
.y10_c00021{bottom:536.280000px;}
.yf_c00021{bottom:563.280000px;}
.ye_c00021{bottom:586.530000px;}
.yd_c00021{bottom:610.530000px;}
.yc_c00021{bottom:634.830000px;}
.yb_c00021{bottom:659.430000px;}
.ya_c00021{bottom:684.780000px;}
.y9_c00021{bottom:709.530000px;}
.y8_c00021{bottom:733.380000px;}
.y7_c00021{bottom:758.430000px;}
.y6_c00021{bottom:782.280000px;}
.y5_c00021{bottom:806.730000px;}
.y4_c00021{bottom:832.680000px;}
.y3_c00021{bottom:856.530000px;}
.y2_c00021{bottom:879.930000px;}
.y1_c00021{bottom:916.980000px;}
.h6_c00021{height:13.200074px;}
.h7_c00021{height:43.804688px;}
.h2_c00021{height:79.497070px;}
.h1_c00021{height:84.269531px;}
.h3_c00021{height:91.160156px;}
.h5_c00021{height:91.176000px;}
.h4_c00021{height:98.756836px;}
.h0_c00021{height:995.250000px;}
.w2_c00021{width:104.875500px;}
.w1_c00021{width:680.250000px;}
.w0_c00021{width:680.400000px;}
.x0_c00021{left:0.000000px;}
.x10_c00021{left:39.150000px;}
.x11_c00021{left:123.450000px;}
.xf_c00021{left:137.400000px;}
.xe_c00021{left:138.600000px;}
.xd_c00021{left:140.100000px;}
.xc_c00021{left:141.300000px;}
.xb_c00021{left:142.350000px;}
.xa_c00021{left:144.000000px;}
.x9_c00021{left:145.050000px;}
.x8_c00021{left:146.700000px;}
.x7_c00021{left:147.750000px;}
.x5_c00021{left:148.800000px;}
.x6_c00021{left:149.850000px;}
.x4_c00021{left:150.900000px;}
.x3_c00021{left:152.550000px;}
.x2_c00021{left:153.600000px;}
.x1_c00021{left:154.800000px;}
.x12_c00021{left:292.014267px;}
@media print{
.v0_c00021{vertical-align:0.000000pt;}
.ls1_c00021{letter-spacing:0.000000pt;}
.ls0_c00021{letter-spacing:9.333333pt;}
.ws2_c00021{word-spacing:-18.000000pt;}
.ws1_c00021{word-spacing:-16.709333pt;}
.ws0_c00021{word-spacing:-15.424000pt;}
.ws3_c00021{word-spacing:0.000000pt;}
._14_c00021{margin-left:-34.920000pt;}
._1b_c00021{margin-left:-33.912000pt;}
._18_c00021{margin-left:-19.512000pt;}
._17_c00021{margin-left:-10.792000pt;}
._16_c00021{margin-left:-9.728000pt;}
._11_c00021{margin-left:-8.328000pt;}
._c_c00021{margin-left:-6.840000pt;}
._f_c00021{margin-left:-5.400000pt;}
._e_c00021{margin-left:-3.832000pt;}
._5_c00021{margin-left:-2.880000pt;}
._0_c00021{margin-left:-1.216000pt;}
._b_c00021{width:0.928000pt;}
._8_c00021{width:2.448000pt;}
._9_c00021{width:4.032000pt;}
._a_c00021{width:4.968000pt;}
._d_c00021{width:6.640000pt;}
._4_c00021{width:7.616000pt;}
._7_c00021{width:9.408000pt;}
._2_c00021{width:10.688000pt;}
._3_c00021{width:12.096000pt;}
._12_c00021{width:13.424000pt;}
._13_c00021{width:15.472000pt;}
._6_c00021{width:18.496000pt;}
._10_c00021{width:21.773333pt;}
._19_c00021{width:24.456000pt;}
._15_c00021{width:72.864000pt;}
._1a_c00021{width:77.208000pt;}
._1c_c00021{width:178.832000pt;}
._1_c00021{width:507.584000pt;}
.fs5_c00021{font-size:42.666667pt;}
.fs3_c00021{font-size:53.333333pt;}
.fs0_c00021{font-size:64.000000pt;}
.fs2_c00021{font-size:69.333333pt;}
.fs1_c00021{font-size:72.000000pt;}
.fs4_c00021{font-size:77.333333pt;}
.y0_c00021{bottom:0.000000pt;}
.y25_c00021{bottom:2.760000pt;}
.y24_c00021{bottom:6.425206pt;}
.y23_c00021{bottom:60.560000pt;}
.y22_c00021{bottom:84.693333pt;}
.y21_c00021{bottom:106.293333pt;}
.y20_c00021{bottom:129.360000pt;}
.y1f_c00021{bottom:150.560000pt;}
.y1e_c00021{bottom:172.560000pt;}
.y1d_c00021{bottom:194.960000pt;}
.y1c_c00021{bottom:216.693333pt;}
.y1b_c00021{bottom:238.560000pt;}
.y1a_c00021{bottom:261.093333pt;}
.y19_c00021{bottom:282.026667pt;}
.y18_c00021{bottom:304.160000pt;}
.y17_c00021{bottom:325.893333pt;}
.y16_c00021{bottom:347.360000pt;}
.y15_c00021{bottom:372.026667pt;}
.y14_c00021{bottom:390.693333pt;}
.y13_c00021{bottom:412.293333pt;}
.y12_c00021{bottom:434.426667pt;}
.y11_c00021{bottom:456.293333pt;}
.y10_c00021{bottom:476.693333pt;}
.yf_c00021{bottom:500.693333pt;}
.ye_c00021{bottom:521.360000pt;}
.yd_c00021{bottom:542.693333pt;}
.yc_c00021{bottom:564.293333pt;}
.yb_c00021{bottom:586.160000pt;}
.ya_c00021{bottom:608.693333pt;}
.y9_c00021{bottom:630.693333pt;}
.y8_c00021{bottom:651.893333pt;}
.y7_c00021{bottom:674.160000pt;}
.y6_c00021{bottom:695.360000pt;}
.y5_c00021{bottom:717.093333pt;}
.y4_c00021{bottom:740.160000pt;}
.y3_c00021{bottom:761.360000pt;}
.y2_c00021{bottom:782.160000pt;}
.y1_c00021{bottom:815.093333pt;}
.h6_c00021{height:11.733399pt;}
.h7_c00021{height:38.937500pt;}
.h2_c00021{height:70.664062pt;}
.h1_c00021{height:74.906250pt;}
.h3_c00021{height:81.031250pt;}
.h5_c00021{height:81.045333pt;}
.h4_c00021{height:87.783854pt;}
.h0_c00021{height:884.666667pt;}
.w2_c00021{width:93.222667pt;}
.w1_c00021{width:604.666667pt;}
.w0_c00021{width:604.800000pt;}
.x0_c00021{left:0.000000pt;}
.x10_c00021{left:34.800000pt;}
.x11_c00021{left:109.733333pt;}
.xf_c00021{left:122.133333pt;}
.xe_c00021{left:123.200000pt;}
.xd_c00021{left:124.533333pt;}
.xc_c00021{left:125.600000pt;}
.xb_c00021{left:126.533333pt;}
.xa_c00021{left:128.000000pt;}
.x9_c00021{left:128.933333pt;}
.x8_c00021{left:130.400000pt;}
.x7_c00021{left:131.333333pt;}
.x5_c00021{left:132.266667pt;}
.x6_c00021{left:133.200000pt;}
.x4_c00021{left:134.133333pt;}
.x3_c00021{left:135.600000pt;}
.x2_c00021{left:136.533333pt;}
.x1_c00021{left:137.600000pt;}
.x12_c00021{left:259.568237pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_33c75629508b8a88e6d47333.woff2')format("woff");}.ff1_c00022{font-family:ff1_c00022;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00022;src:url('chunks/assets/font_566095492c5916005e3561b7.woff2')format("woff");}.ff2_c00022{font-family:ff2_c00022;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00022;src:url('chunks/assets/font_f28aaa35afd732aa01987b0d.woff2')format("woff");}.ff3_c00022{font-family:ff3_c00022;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00022;src:url('chunks/assets/font_4af0892c35372ba25e9a705c.woff2')format("woff");}.ff4_c00022{font-family:ff4_c00022;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00022;src:url('chunks/assets/font_5c62acfc84252942ec38295f.woff2')format("woff");}.ff5_c00022{font-family:ff5_c00022;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00022;src:url('chunks/assets/font_a7dc1a618ffd6611696c18ef.woff2')format("woff");}.ff6_c00022{font-family:ff6_c00022;line-height:1.311035;font-style:normal;font-weight: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_c00022;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c00022{font-family:ff7_c00022;line-height:1.219238;font-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_c00022{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m0_c00022{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00022{vertical-align:0.000000px;}
.ls0_c00022{letter-spacing:0.000000px;}
.ls2_c00022{letter-spacing:9.000000px;}
.ls1_c00022{letter-spacing:21.000000px;}
.sc__c00022{text-shadow:none;}
.sc0_c00022{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00022{-webkit-text-stroke:0px transparent;}
.sc0_c00022{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00022{word-spacing:-54.000000px;}
.ws0_c00022{word-spacing:-17.352000px;}
.ws2_c00022{word-spacing:0.000000px;}
._14_c00022{margin-left:-21.861000px;}
._18_c00022{margin-left:-20.655000px;}
._1a_c00022{margin-left:-12.879000px;}
._19_c00022{margin-left:-11.424000px;}
._1c_c00022{margin-left:-9.486000px;}
._f_c00022{margin-left:-8.298000px;}
._10_c00022{margin-left:-6.525000px;}
._b_c00022{margin-left:-5.418000px;}
._9_c00022{margin-left:-3.483000px;}
._6_c00022{margin-left:-1.944000px;}
._8_c00022{width:1.692000px;}
._2_c00022{width:3.168000px;}
._1_c00022{width:4.257000px;}
._0_c00022{width:5.346000px;}
._7_c00022{width:7.128000px;}
._e_c00022{width:8.208000px;}
._4_c00022{width:9.315000px;}
._11_c00022{width:10.872000px;}
._d_c00022{width:12.501000px;}
._c_c00022{width:13.509000px;}
._12_c00022{width:14.823000px;}
._5_c00022{width:16.200000px;}
._13_c00022{width:18.414000px;}
._1f_c00022{width:20.304000px;}
._15_c00022{width:24.948000px;}
._1d_c00022{width:28.878000px;}
._16_c00022{width:31.944000px;}
._1e_c00022{width:34.338000px;}
._17_c00022{width:38.298000px;}
._1b_c00022{width:43.437000px;}
._a_c00022{width:103.833000px;}
._20_c00022{width:412.452000px;}
._3_c00022{width:760.815000px;}
.fc2_c00022{color:transparent;}
.fc1_c00022{color:rgb(128,128,128);}
.fc0_c00022{color:rgb(0,0,0);}
.fs6_c00022{font-size:48.000000px;}
.fs3_c00022{font-size:66.000000px;}
.fs2_c00022{font-size:72.000000px;}
.fs1_c00022{font-size:81.000000px;}
.fs0_c00022{font-size:99.000000px;}
.fs5_c00022{font-size:105.000000px;}
.fs4_c00022{font-size:108.000000px;}
.y0_c00022{bottom:0.000000px;}
.y26_c00022{bottom:3.105000px;}
.y25_c00022{bottom:7.228369px;}
.y24_c00022{bottom:72.870000px;}
.y23_c00022{bottom:97.470000px;}
.y22_c00022{bottom:122.820000px;}
.y21_c00022{bottom:147.120000px;}
.y20_c00022{bottom:171.720000px;}
.y1f_c00022{bottom:196.320000px;}
.y1e_c00022{bottom:220.770000px;}
.y1d_c00022{bottom:245.670000px;}
.y1c_c00022{bottom:270.570000px;}
.y1b_c00022{bottom:294.570000px;}
.y1a_c00022{bottom:319.170000px;}
.y19_c00022{bottom:343.470000px;}
.y18_c00022{bottom:367.170000px;}
.y17_c00022{bottom:392.070000px;}
.y16_c00022{bottom:415.470000px;}
.y15_c00022{bottom:440.820000px;}
.y14_c00022{bottom:464.670000px;}
.y13_c00022{bottom:490.020000px;}
.y12_c00022{bottom:513.270000px;}
.y11_c00022{bottom:538.020000px;}
.y10_c00022{bottom:561.870000px;}
.yf_c00022{bottom:586.470000px;}
.ye_c00022{bottom:610.470000px;}
.yd_c00022{bottom:634.470000px;}
.yc_c00022{bottom:658.470000px;}
.yb_c00022{bottom:682.470000px;}
.ya_c00022{bottom:707.070000px;}
.y9_c00022{bottom:732.270000px;}
.y8_c00022{bottom:755.970000px;}
.y7_c00022{bottom:780.870000px;}
.y6_c00022{bottom:805.920000px;}
.y5_c00022{bottom:829.620000px;}
.y4_c00022{bottom:854.220000px;}
.y3_c00022{bottom:879.120000px;}
.y2_c00022{bottom:903.720000px;}
.y1_c00022{bottom:938.520000px;}
.h7_c00022{height:13.200073px;}
.h8_c00022{height:43.804688px;}
.h3_c00022{height:79.497070px;}
.h4_c00022{height:91.160156px;}
.h5_c00022{height:108.843750px;}
.h2_c00022{height:115.870605px;}
.h6_c00022{height:132.941895px;}
.h1_c00022{height:1001.250000px;}
.h0_c00022{height:1001.400000px;}
.w2_c00022{width:104.875500px;}
.w0_c00022{width:666.375000px;}
.w1_c00022{width:666.750000px;}
.x0_c00022{left:0.000000px;}
.x2_c00022{left:43.650000px;}
.x4_c00022{left:48.150000px;}
.x5_c00022{left:49.650000px;}
.x6_c00022{left:50.850000px;}
.x7_c00022{left:52.200000px;}
.x8_c00022{left:53.700000px;}
.x9_c00022{left:54.900000px;}
.xa_c00022{left:56.700000px;}
.xb_c00022{left:58.050000px;}
.x3_c00022{left:71.850000px;}
.x1_c00022{left:257.100000px;}
.xf_c00022{left:285.001740px;}
.xc_c00022{left:369.150000px;}
.xd_c00022{left:400.950000px;}
.xe_c00022{left:414.000000px;}
@media print{
.v0_c00022{vertical-align:0.000000pt;}
.ls0_c00022{letter-spacing:0.000000pt;}
.ls2_c00022{letter-spacing:8.000000pt;}
.ls1_c00022{letter-spacing:18.666667pt;}
.ws1_c00022{word-spacing:-48.000000pt;}
.ws0_c00022{word-spacing:-15.424000pt;}
.ws2_c00022{word-spacing:0.000000pt;}
._14_c00022{margin-left:-19.432000pt;}
._18_c00022{margin-left:-18.360000pt;}
._1a_c00022{margin-left:-11.448000pt;}
._19_c00022{margin-left:-10.154667pt;}
._1c_c00022{margin-left:-8.432000pt;}
._f_c00022{margin-left:-7.376000pt;}
._10_c00022{margin-left:-5.800000pt;}
._b_c00022{margin-left:-4.816000pt;}
._9_c00022{margin-left:-3.096000pt;}
._6_c00022{margin-left:-1.728000pt;}
._8_c00022{width:1.504000pt;}
._2_c00022{width:2.816000pt;}
._1_c00022{width:3.784000pt;}
._0_c00022{width:4.752000pt;}
._7_c00022{width:6.336000pt;}
._e_c00022{width:7.296000pt;}
._4_c00022{width:8.280000pt;}
._11_c00022{width:9.664000pt;}
._d_c00022{width:11.112000pt;}
._c_c00022{width:12.008000pt;}
._12_c00022{width:13.176000pt;}
._5_c00022{width:14.400000pt;}
._13_c00022{width:16.368000pt;}
._1f_c00022{width:18.048000pt;}
._15_c00022{width:22.176000pt;}
._1d_c00022{width:25.669333pt;}
._16_c00022{width:28.394667pt;}
._1e_c00022{width:30.522667pt;}
._17_c00022{width:34.042667pt;}
._1b_c00022{width:38.610667pt;}
._a_c00022{width:92.296000pt;}
._20_c00022{width:366.624000pt;}
._3_c00022{width:676.280000pt;}
.fs6_c00022{font-size:42.666667pt;}
.fs3_c00022{font-size:58.666667pt;}
.fs2_c00022{font-size:64.000000pt;}
.fs1_c00022{font-size:72.000000pt;}
.fs0_c00022{font-size:88.000000pt;}
.fs5_c00022{font-size:93.333333pt;}
.fs4_c00022{font-size:96.000000pt;}
.y0_c00022{bottom:0.000000pt;}
.y26_c00022{bottom:2.760000pt;}
.y25_c00022{bottom:6.425217pt;}
.y24_c00022{bottom:64.773333pt;}
.y23_c00022{bottom:86.640000pt;}
.y22_c00022{bottom:109.173333pt;}
.y21_c00022{bottom:130.773333pt;}
.y20_c00022{bottom:152.640000pt;}
.y1f_c00022{bottom:174.506667pt;}
.y1e_c00022{bottom:196.240000pt;}
.y1d_c00022{bottom:218.373333pt;}
.y1c_c00022{bottom:240.506667pt;}
.y1b_c00022{bottom:261.840000pt;}
.y1a_c00022{bottom:283.706667pt;}
.y19_c00022{bottom:305.306667pt;}
.y18_c00022{bottom:326.373333pt;}
.y17_c00022{bottom:348.506667pt;}
.y16_c00022{bottom:369.306667pt;}
.y15_c00022{bottom:391.840000pt;}
.y14_c00022{bottom:413.040000pt;}
.y13_c00022{bottom:435.573333pt;}
.y12_c00022{bottom:456.240000pt;}
.y11_c00022{bottom:478.240000pt;}
.y10_c00022{bottom:499.440000pt;}
.yf_c00022{bottom:521.306667pt;}
.ye_c00022{bottom:542.640000pt;}
.yd_c00022{bottom:563.973333pt;}
.yc_c00022{bottom:585.306667pt;}
.yb_c00022{bottom:606.640000pt;}
.ya_c00022{bottom:628.506667pt;}
.y9_c00022{bottom:650.906667pt;}
.y8_c00022{bottom:671.973333pt;}
.y7_c00022{bottom:694.106667pt;}
.y6_c00022{bottom:716.373333pt;}
.y5_c00022{bottom:737.440000pt;}
.y4_c00022{bottom:759.306667pt;}
.y3_c00022{bottom:781.440000pt;}
.y2_c00022{bottom:803.306667pt;}
.y1_c00022{bottom:834.240000pt;}
.h7_c00022{height:11.733399pt;}
.h8_c00022{height:38.937500pt;}
.h3_c00022{height:70.664062pt;}
.h4_c00022{height:81.031250pt;}
.h5_c00022{height:96.750000pt;}
.h2_c00022{height:102.996094pt;}
.h6_c00022{height:118.170573pt;}
.h1_c00022{height:890.000000pt;}
.h0_c00022{height:890.133333pt;}
.w2_c00022{width:93.222667pt;}
.w0_c00022{width:592.333333pt;}
.w1_c00022{width:592.666667pt;}
.x0_c00022{left:0.000000pt;}
.x2_c00022{left:38.800000pt;}
.x4_c00022{left:42.800000pt;}
.x5_c00022{left:44.133333pt;}
.x6_c00022{left:45.200000pt;}
.x7_c00022{left:46.400000pt;}
.x8_c00022{left:47.733333pt;}
.x9_c00022{left:48.800000pt;}
.xa_c00022{left:50.400000pt;}
.xb_c00022{left:51.600000pt;}
.x3_c00022{left:63.866667pt;}
.x1_c00022{left:228.533333pt;}
.xf_c00022{left:253.334880pt;}
.xc_c00022{left:328.133333pt;}
.xd_c00022{left:356.400000pt;}
.xe_c00022{left:368.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_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_d2986b3eaac622bcacd72582.woff2')format("woff");}.ff1_c00023{font-family:ff1_c00023;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00023;src:url('chunks/assets/font_26a0e7e2fed22af9bce1e8bc.woff2')format("woff");}.ff2_c00023{font-family:ff2_c00023;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00023;src:url('chunks/assets/font_1eb0fe8523da1ad8f94a2481.woff2')format("woff");}.ff3_c00023{font-family:ff3_c00023;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00023;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff4_c00023{font-family:ff4_c00023;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00023;src:url('chunks/assets/font_a11d01ce19e5b7eff0b70700.woff2')format("woff");}.ff5_c00023{font-family:ff5_c00023;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00023;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c00023{font-family:ff6_c00023;line-height:1.219238;font-style: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;}
.ls0_c00023{letter-spacing:0.000000px;}
.sc__c00023{text-shadow:none;}
.sc0_c00023{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00023{-webkit-text-stroke:0px transparent;}
.sc0_c00023{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00023{word-spacing:-40.608000px;}
.ws1_c00023{word-spacing:-18.014400px;}
.ws3_c00023{word-spacing:0.000000px;}
.ws2_c00023{word-spacing:5.265000px;}
._17_c00023{margin-left:-50.400000px;}
._f_c00023{margin-left:-12.024000px;}
._16_c00023{margin-left:-10.371000px;}
._11_c00023{margin-left:-7.062000px;}
._12_c00023{margin-left:-5.490000px;}
._10_c00023{margin-left:-3.906000px;}
._14_c00023{margin-left:-2.610000px;}
._e_c00023{margin-left:-1.323000px;}
._13_c00023{width:1.053000px;}
._d_c00023{width:2.196000px;}
._c_c00023{width:3.285000px;}
._a_c00023{width:4.941000px;}
._8_c00023{width:6.597000px;}
._9_c00023{width:7.605000px;}
._5_c00023{width:8.919000px;}
._3_c00023{width:10.080000px;}
._7_c00023{width:11.871000px;}
._b_c00023{width:13.284000px;}
._0_c00023{width:14.985000px;}
._2_c00023{width:16.416000px;}
._6_c00023{width:19.728000px;}
._4_c00023{width:21.312000px;}
._19_c00023{width:28.431000px;}
._1a_c00023{width:29.970000px;}
._15_c00023{width:100.377000px;}
._18_c00023{width:367.140000px;}
._1_c00023{width:452.865000px;}
.fc2_c00023{color:transparent;}
.fc1_c00023{color:rgb(128,128,128);}
.fc0_c00023{color:rgb(0,0,0);}
.fs5_c00023{font-size:48.000000px;}
.fs3_c00023{font-size:60.000000px;}
.fs4_c00023{font-size:63.000000px;}
.fs2_c00023{font-size:64.800000px;}
.fs1_c00023{font-size:72.000000px;}
.fs0_c00023{font-size:81.000000px;}
.y0_c00023{bottom:0.000000px;}
.yc_c00023{bottom:3.105000px;}
.yb_c00023{bottom:7.228357px;}
.ya_c00023{bottom:637.230000px;}
.y9_c00023{bottom:738.780000px;}
.y8_c00023{bottom:756.330000px;}
.y7_c00023{bottom:780.930000px;}
.y6_c00023{bottom:805.680000px;}
.y5_c00023{bottom:830.880000px;}
.y4_c00023{bottom:854.280000px;}
.y3_c00023{bottom:878.580000px;}
.y2_c00023{bottom:903.780000px;}
.y1_c00023{bottom:939.030000px;}
.h4_c00023{height:13.200074px;}
.h5_c00023{height:43.804688px;}
.h3_c00023{height:75.966797px;}
.h2_c00023{height:79.497070px;}
.h1_c00023{height:84.269531px;}
.h0_c00023{height:995.250000px;}
.w2_c00023{width:104.875500px;}
.w1_c00023{width:680.250000px;}
.w0_c00023{width:680.400000px;}
.x0_c00023{left:0.000000px;}
.x1_c00023{left:142.200000px;}
.x2_c00023{left:143.850000px;}
.x4_c00023{left:145.500000px;}
.x3_c00023{left:156.900000px;}
.x5_c00023{left:219.600000px;}
.x8_c00023{left:292.014267px;}
.x6_c00023{left:297.900000px;}
.x7_c00023{left:514.350000px;}
@media print{
.v0_c00023{vertical-align:0.000000pt;}
.ls0_c00023{letter-spacing:0.000000pt;}
.ws0_c00023{word-spacing:-36.096000pt;}
.ws1_c00023{word-spacing:-16.012800pt;}
.ws3_c00023{word-spacing:0.000000pt;}
.ws2_c00023{word-spacing:4.680000pt;}
._17_c00023{margin-left:-44.800000pt;}
._f_c00023{margin-left:-10.688000pt;}
._16_c00023{margin-left:-9.218667pt;}
._11_c00023{margin-left:-6.277333pt;}
._12_c00023{margin-left:-4.880000pt;}
._10_c00023{margin-left:-3.472000pt;}
._14_c00023{margin-left:-2.320000pt;}
._e_c00023{margin-left:-1.176000pt;}
._13_c00023{width:0.936000pt;}
._d_c00023{width:1.952000pt;}
._c_c00023{width:2.920000pt;}
._a_c00023{width:4.392000pt;}
._8_c00023{width:5.864000pt;}
._9_c00023{width:6.760000pt;}
._5_c00023{width:7.928000pt;}
._3_c00023{width:8.960000pt;}
._7_c00023{width:10.552000pt;}
._b_c00023{width:11.808000pt;}
._0_c00023{width:13.320000pt;}
._2_c00023{width:14.592000pt;}
._6_c00023{width:17.536000pt;}
._4_c00023{width:18.944000pt;}
._19_c00023{width:25.272000pt;}
._1a_c00023{width:26.640000pt;}
._15_c00023{width:89.224000pt;}
._18_c00023{width:326.346667pt;}
._1_c00023{width:402.546667pt;}
.fs5_c00023{font-size:42.666667pt;}
.fs3_c00023{font-size:53.333333pt;}
.fs4_c00023{font-size:56.000000pt;}
.fs2_c00023{font-size:57.600000pt;}
.fs1_c00023{font-size:64.000000pt;}
.fs0_c00023{font-size:72.000000pt;}
.y0_c00023{bottom:0.000000pt;}
.yc_c00023{bottom:2.760000pt;}
.yb_c00023{bottom:6.425206pt;}
.ya_c00023{bottom:566.426667pt;}
.y9_c00023{bottom:656.693333pt;}
.y8_c00023{bottom:672.293333pt;}
.y7_c00023{bottom:694.160000pt;}
.y6_c00023{bottom:716.160000pt;}
.y5_c00023{bottom:738.560000pt;}
.y4_c00023{bottom:759.360000pt;}
.y3_c00023{bottom:780.960000pt;}
.y2_c00023{bottom:803.360000pt;}
.y1_c00023{bottom:834.693333pt;}
.h4_c00023{height:11.733399pt;}
.h5_c00023{height:38.937500pt;}
.h3_c00023{height:67.526042pt;}
.h2_c00023{height:70.664062pt;}
.h1_c00023{height:74.906250pt;}
.h0_c00023{height:884.666667pt;}
.w2_c00023{width:93.222667pt;}
.w1_c00023{width:604.666667pt;}
.w0_c00023{width:604.800000pt;}
.x0_c00023{left:0.000000pt;}
.x1_c00023{left:126.400000pt;}
.x2_c00023{left:127.866667pt;}
.x4_c00023{left:129.333333pt;}
.x3_c00023{left:139.466667pt;}
.x5_c00023{left:195.200000pt;}
.x8_c00023{left:259.568237pt;}
.x6_c00023{left:264.800000pt;}
.x7_c00023{left:457.200000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_48d1baaf07f7531a33d6748f.woff2')format("woff");}.ff1_c00024{font-family:ff1_c00024;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00024;src:url('chunks/assets/font_5ac6e01fc437de6d896cf6b1.woff2')format("woff");}.ff2_c00024{font-family:ff2_c00024;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00024;src:url('chunks/assets/font_839f88dd1c52809755a29620.woff2')format("woff");}.ff3_c00024{font-family:ff3_c00024;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00024;src:url('chunks/assets/font_0b6539fdad51ad562f5637c2.woff2')format("woff");}.ff4_c00024{font-family:ff4_c00024;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00024;src:url('chunks/assets/font_2793a357126775014790a710.woff2')format("woff");}.ff5_c00024{font-family:ff5_c00024;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00024;src:url('chunks/assets/font_96c3bafeaad69f048e1b070d.woff2')format("woff");}.ff6_c00024{font-family:ff6_c00024;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00024;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c00024{font-family:ff7_c00024;line-height:1.219238;font-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_c00024{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,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;}
.ls7_c00024{letter-spacing:0.000000px;}
.ls3_c00024{letter-spacing:9.336000px;}
.ls1_c00024{letter-spacing:15.552000px;}
.ls4_c00024{letter-spacing:18.000000px;}
.ls5_c00024{letter-spacing:21.000000px;}
.ls2_c00024{letter-spacing:27.648000px;}
.ls6_c00024{letter-spacing:36.000000px;}
.ls0_c00024{letter-spacing:90.750000px;}
.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:-17.352000px;}
.ws2_c00024{word-spacing:0.000000px;}
.ws0_c00024{word-spacing:2.232000px;}
._22_c00024{margin-left:-12.960000px;}
._32_c00024{margin-left:-11.187000px;}
._1e_c00024{margin-left:-9.396000px;}
._2e_c00024{margin-left:-8.181000px;}
._30_c00024{margin-left:-7.020000px;}
._19_c00024{margin-left:-5.346000px;}
._23_c00024{margin-left:-4.023000px;}
._1a_c00024{margin-left:-2.592000px;}
._2a_c00024{margin-left:-1.377000px;}
._21_c00024{width:1.728000px;}
._20_c00024{width:3.024000px;}
._1f_c00024{width:4.104000px;}
._2f_c00024{width:5.130000px;}
._1b_c00024{width:6.156000px;}
._2d_c00024{width:7.182000px;}
._4_c00024{width:8.262000px;}
._34_c00024{width:9.342000px;}
._3_c00024{width:10.368000px;}
._6_c00024{width:11.502000px;}
._17_c00024{width:12.636000px;}
._5_c00024{width:14.094000px;}
._1c_c00024{width:16.200000px;}
._0_c00024{width:17.415000px;}
._1_c00024{width:18.549000px;}
._2_c00024{width:20.493000px;}
._16_c00024{width:21.546000px;}
._25_c00024{width:23.832000px;}
._26_c00024{width:24.912000px;}
._28_c00024{width:26.124000px;}
._2b_c00024{width:28.464000px;}
._29_c00024{width:31.020000px;}
._2c_c00024{width:32.772000px;}
._31_c00024{width:36.567000px;}
._e_c00024{width:39.168000px;}
._27_c00024{width:40.869000px;}
._15_c00024{width:43.902000px;}
._18_c00024{width:46.899000px;}
._11_c00024{width:50.625000px;}
._13_c00024{width:52.164000px;}
._10_c00024{width:53.460000px;}
._9_c00024{width:58.476000px;}
._f_c00024{width:59.703000px;}
._14_c00024{width:61.236000px;}
._12_c00024{width:67.959000px;}
._8_c00024{width:70.356000px;}
._a_c00024{width:73.656000px;}
._7_c00024{width:79.332000px;}
._1d_c00024{width:87.318000px;}
._33_c00024{width:90.648000px;}
._d_c00024{width:92.928000px;}
._b_c00024{width:95.172000px;}
._c_c00024{width:105.204000px;}
._24_c00024{width:135.288000px;}
.fc2_c00024{color:transparent;}
.fc1_c00024{color:rgb(128,128,128);}
.fc0_c00024{color:rgb(0,0,0);}
.fs7_c00024{font-size:48.000000px;}
.fs4_c00024{font-size:57.600000px;}
.fs3_c00024{font-size:72.000000px;}
.fs5_c00024{font-size:75.000000px;}
.fs0_c00024{font-size:81.000000px;}
.fs6_c00024{font-size:84.000000px;}
.fs2_c00024{font-size:108.000000px;}
.fs1_c00024{font-size:132.000000px;}
.y0_c00024{bottom:0.000000px;}
.y1b_c00024{bottom:3.105000px;}
.y1a_c00024{bottom:7.228369px;}
.y19_c00024{bottom:70.470000px;}
.y18_c00024{bottom:99.120000px;}
.y17_c00024{bottom:125.220000px;}
.y16_c00024{bottom:149.820000px;}
.y15_c00024{bottom:174.870000px;}
.y14_c00024{bottom:200.070000px;}
.y13_c00024{bottom:225.120000px;}
.y12_c00024{bottom:249.420000px;}
.y11_c00024{bottom:274.020000px;}
.y10_c00024{bottom:298.320000px;}
.yf_c00024{bottom:322.920000px;}
.ye_c00024{bottom:346.920000px;}
.yd_c00024{bottom:371.970000px;}
.yc_c00024{bottom:396.120000px;}
.yb_c00024{bottom:420.570000px;}
.ya_c00024{bottom:445.470000px;}
.y9_c00024{bottom:506.220000px;}
.y8_c00024{bottom:530.820000px;}
.y7_c00024{bottom:555.120000px;}
.y6_c00024{bottom:606.720000px;}
.y5_c00024{bottom:635.070000px;}
.y4_c00024{bottom:663.420000px;}
.y3_c00024{bottom:702.720000px;}
.y2_c00024{bottom:751.620000px;}
.y1_c00024{bottom:824.820000px;}
.h9_c00024{height:13.200073px;}
.ha_c00024{height:43.804688px;}
.h6_c00024{height:73.608398px;}
.h2_c00024{height:79.497070px;}
.h7_c00024{height:82.441406px;}
.h5_c00024{height:84.269531px;}
.h8_c00024{height:91.160156px;}
.h4_c00024{height:108.843750px;}
.h3_c00024{height:167.126953px;}
.h1_c00024{height:1001.250000px;}
.h0_c00024{height:1001.400000px;}
.w2_c00024{width:104.875500px;}
.w0_c00024{width:666.375000px;}
.w1_c00024{width:666.750000px;}
.x0_c00024{left:0.000000px;}
.x2_c00024{left:55.650000px;}
.x3_c00024{left:56.700000px;}
.xc_c00024{left:58.050000px;}
.xd_c00024{left:59.100000px;}
.xe_c00024{left:60.750000px;}
.xf_c00024{left:62.850000px;}
.x10_c00024{left:64.500000px;}
.x11_c00024{left:66.450000px;}
.x8_c00024{left:79.650000px;}
.x4_c00024{left:82.650000px;}
.x5_c00024{left:119.550000px;}
.x1_c00024{left:135.900000px;}
.x7_c00024{left:152.250000px;}
.x9_c00024{left:184.950000px;}
.xb_c00024{left:189.450000px;}
.xa_c00024{left:192.750000px;}
.x6_c00024{left:214.950000px;}
.x13_c00024{left:285.001740px;}
.x12_c00024{left:345.300000px;}
@media print{
.v0_c00024{vertical-align:0.000000pt;}
.ls7_c00024{letter-spacing:0.000000pt;}
.ls3_c00024{letter-spacing:8.298667pt;}
.ls1_c00024{letter-spacing:13.824000pt;}
.ls4_c00024{letter-spacing:16.000000pt;}
.ls5_c00024{letter-spacing:18.666667pt;}
.ls2_c00024{letter-spacing:24.576000pt;}
.ls6_c00024{letter-spacing:32.000000pt;}
.ls0_c00024{letter-spacing:80.666667pt;}
.ws1_c00024{word-spacing:-15.424000pt;}
.ws2_c00024{word-spacing:0.000000pt;}
.ws0_c00024{word-spacing:1.984000pt;}
._22_c00024{margin-left:-11.520000pt;}
._32_c00024{margin-left:-9.944000pt;}
._1e_c00024{margin-left:-8.352000pt;}
._2e_c00024{margin-left:-7.272000pt;}
._30_c00024{margin-left:-6.240000pt;}
._19_c00024{margin-left:-4.752000pt;}
._23_c00024{margin-left:-3.576000pt;}
._1a_c00024{margin-left:-2.304000pt;}
._2a_c00024{margin-left:-1.224000pt;}
._21_c00024{width:1.536000pt;}
._20_c00024{width:2.688000pt;}
._1f_c00024{width:3.648000pt;}
._2f_c00024{width:4.560000pt;}
._1b_c00024{width:5.472000pt;}
._2d_c00024{width:6.384000pt;}
._4_c00024{width:7.344000pt;}
._34_c00024{width:8.304000pt;}
._3_c00024{width:9.216000pt;}
._6_c00024{width:10.224000pt;}
._17_c00024{width:11.232000pt;}
._5_c00024{width:12.528000pt;}
._1c_c00024{width:14.400000pt;}
._0_c00024{width:15.480000pt;}
._1_c00024{width:16.488000pt;}
._2_c00024{width:18.216000pt;}
._16_c00024{width:19.152000pt;}
._25_c00024{width:21.184000pt;}
._26_c00024{width:22.144000pt;}
._28_c00024{width:23.221333pt;}
._2b_c00024{width:25.301333pt;}
._29_c00024{width:27.573333pt;}
._2c_c00024{width:29.130667pt;}
._31_c00024{width:32.504000pt;}
._e_c00024{width:34.816000pt;}
._27_c00024{width:36.328000pt;}
._15_c00024{width:39.024000pt;}
._18_c00024{width:41.688000pt;}
._11_c00024{width:45.000000pt;}
._13_c00024{width:46.368000pt;}
._10_c00024{width:47.520000pt;}
._9_c00024{width:51.978667pt;}
._f_c00024{width:53.069333pt;}
._14_c00024{width:54.432000pt;}
._12_c00024{width:60.408000pt;}
._8_c00024{width:62.538667pt;}
._a_c00024{width:65.472000pt;}
._7_c00024{width:70.517333pt;}
._1d_c00024{width:77.616000pt;}
._33_c00024{width:80.576000pt;}
._d_c00024{width:82.602667pt;}
._b_c00024{width:84.597333pt;}
._c_c00024{width:93.514667pt;}
._24_c00024{width:120.256000pt;}
.fs7_c00024{font-size:42.666667pt;}
.fs4_c00024{font-size:51.200000pt;}
.fs3_c00024{font-size:64.000000pt;}
.fs5_c00024{font-size:66.666667pt;}
.fs0_c00024{font-size:72.000000pt;}
.fs6_c00024{font-size:74.666667pt;}
.fs2_c00024{font-size:96.000000pt;}
.fs1_c00024{font-size:117.333333pt;}
.y0_c00024{bottom:0.000000pt;}
.y1b_c00024{bottom:2.760000pt;}
.y1a_c00024{bottom:6.425217pt;}
.y19_c00024{bottom:62.640000pt;}
.y18_c00024{bottom:88.106667pt;}
.y17_c00024{bottom:111.306667pt;}
.y16_c00024{bottom:133.173333pt;}
.y15_c00024{bottom:155.440000pt;}
.y14_c00024{bottom:177.840000pt;}
.y13_c00024{bottom:200.106667pt;}
.y12_c00024{bottom:221.706667pt;}
.y11_c00024{bottom:243.573333pt;}
.y10_c00024{bottom:265.173333pt;}
.yf_c00024{bottom:287.040000pt;}
.ye_c00024{bottom:308.373333pt;}
.yd_c00024{bottom:330.640000pt;}
.yc_c00024{bottom:352.106667pt;}
.yb_c00024{bottom:373.840000pt;}
.ya_c00024{bottom:395.973333pt;}
.y9_c00024{bottom:449.973333pt;}
.y8_c00024{bottom:471.840000pt;}
.y7_c00024{bottom:493.440000pt;}
.y6_c00024{bottom:539.306667pt;}
.y5_c00024{bottom:564.506667pt;}
.y4_c00024{bottom:589.706667pt;}
.y3_c00024{bottom:624.640000pt;}
.y2_c00024{bottom:668.106667pt;}
.y1_c00024{bottom:733.173333pt;}
.h9_c00024{height:11.733399pt;}
.ha_c00024{height:38.937500pt;}
.h6_c00024{height:65.429688pt;}
.h2_c00024{height:70.664062pt;}
.h7_c00024{height:73.281250pt;}
.h5_c00024{height:74.906250pt;}
.h8_c00024{height:81.031250pt;}
.h4_c00024{height:96.750000pt;}
.h3_c00024{height:148.557292pt;}
.h1_c00024{height:890.000000pt;}
.h0_c00024{height:890.133333pt;}
.w2_c00024{width:93.222667pt;}
.w0_c00024{width:592.333333pt;}
.w1_c00024{width:592.666667pt;}
.x0_c00024{left:0.000000pt;}
.x2_c00024{left:49.466667pt;}
.x3_c00024{left:50.400000pt;}
.xc_c00024{left:51.600000pt;}
.xd_c00024{left:52.533333pt;}
.xe_c00024{left:54.000000pt;}
.xf_c00024{left:55.866667pt;}
.x10_c00024{left:57.333333pt;}
.x11_c00024{left:59.066667pt;}
.x8_c00024{left:70.800000pt;}
.x4_c00024{left:73.466667pt;}
.x5_c00024{left:106.266667pt;}
.x1_c00024{left:120.800000pt;}
.x7_c00024{left:135.333333pt;}
.x9_c00024{left:164.400000pt;}
.xb_c00024{left:168.400000pt;}
.xa_c00024{left:171.333333pt;}
.x6_c00024{left:191.066667pt;}
.x13_c00024{left:253.334880pt;}
.x12_c00024{left:306.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_d39a44e2e2552f7c485254a9.woff2')format("woff");}.ff1_c00025{font-family:ff1_c00025;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00025;src:url('chunks/assets/font_03a2ffcdc2cfe7772e1a199c.woff2')format("woff");}.ff2_c00025{font-family:ff2_c00025;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00025;src:url('chunks/assets/font_a03513c5dc604dd951b5791c.woff2')format("woff");}.ff3_c00025{font-family:ff3_c00025;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00025;src:url('chunks/assets/font_0c23c3d85d1e8d6712de2f15.woff2')format("woff");}.ff4_c00025{font-family:ff4_c00025;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00025;src:url('chunks/assets/font_4b2d9edaf5dc15db159de356.woff2')format("woff");}.ff5_c00025{font-family:ff5_c00025;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00025;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c00025{font-family:ff6_c00025;line-height:1.219238;font-style: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;}
.ls0_c00025{letter-spacing:0.000000px;}
.sc__c00025{text-shadow:none;}
.sc0_c00025{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00025{-webkit-text-stroke:0px transparent;}
.sc0_c00025{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00025{word-spacing:-59.184000px;}
.ws2_c00025{word-spacing:-20.250000px;}
.ws1_c00025{word-spacing:-16.629000px;}
.ws3_c00025{word-spacing:0.000000px;}
._17_c00025{margin-left:-20.928000px;}
._11_c00025{margin-left:-14.580000px;}
._14_c00025{margin-left:-9.360000px;}
._2_c00025{margin-left:-8.262000px;}
._6_c00025{margin-left:-6.399000px;}
._10_c00025{margin-left:-5.265000px;}
._4_c00025{margin-left:-4.050000px;}
._f_c00025{margin-left:-2.358000px;}
._b_c00025{margin-left:-1.029000px;}
._7_c00025{width:1.053000px;}
._5_c00025{width:2.106000px;}
._0_c00025{width:3.888000px;}
._3_c00025{width:5.103000px;}
._1_c00025{width:6.642000px;}
._a_c00025{width:7.659000px;}
._9_c00025{width:8.694000px;}
._e_c00025{width:9.882000px;}
._d_c00025{width:10.890000px;}
._12_c00025{width:12.054000px;}
._c_c00025{width:13.446000px;}
._8_c00025{width:15.318000px;}
._13_c00025{width:18.309000px;}
._18_c00025{width:19.584000px;}
._15_c00025{width:37.713000px;}
._1a_c00025{width:41.559000px;}
._19_c00025{width:240.798000px;}
._16_c00025{width:295.569000px;}
.fc2_c00025{color:transparent;}
.fc1_c00025{color:rgb(128,128,128);}
.fc0_c00025{color:rgb(0,0,0);}
.fs6_c00025{font-size:48.000000px;}
.fs3_c00025{font-size:57.000000px;}
.fs5_c00025{font-size:63.000000px;}
.fs1_c00025{font-size:69.000000px;}
.fs2_c00025{font-size:72.000000px;}
.fs0_c00025{font-size:81.000000px;}
.fs4_c00025{font-size:96.000000px;}
.y0_c00025{bottom:0.000000px;}
.y25_c00025{bottom:3.105000px;}
.y24_c00025{bottom:7.228357px;}
.y23_c00025{bottom:59.130000px;}
.y22_c00025{bottom:81.780000px;}
.y21_c00025{bottom:108.030000px;}
.y20_c00025{bottom:132.630000px;}
.y1f_c00025{bottom:157.230000px;}
.y1e_c00025{bottom:182.280000px;}
.y1d_c00025{bottom:207.030000px;}
.y1c_c00025{bottom:231.930000px;}
.y1b_c00025{bottom:256.830000px;}
.y1a_c00025{bottom:281.130000px;}
.y19_c00025{bottom:305.730000px;}
.y18_c00025{bottom:332.730000px;}
.y17_c00025{bottom:355.080000px;}
.y16_c00025{bottom:379.680000px;}
.y15_c00025{bottom:404.280000px;}
.y14_c00025{bottom:428.580000px;}
.y13_c00025{bottom:453.330000px;}
.y12_c00025{bottom:478.230000px;}
.y11_c00025{bottom:501.930000px;}
.y10_c00025{bottom:526.230000px;}
.yf_c00025{bottom:551.130000px;}
.ye_c00025{bottom:575.730000px;}
.yd_c00025{bottom:600.780000px;}
.yc_c00025{bottom:625.080000px;}
.yb_c00025{bottom:650.730000px;}
.ya_c00025{bottom:674.430000px;}
.y9_c00025{bottom:698.730000px;}
.y8_c00025{bottom:723.630000px;}
.y7_c00025{bottom:748.530000px;}
.y6_c00025{bottom:772.830000px;}
.y5_c00025{bottom:798.180000px;}
.y4_c00025{bottom:822.180000px;}
.y3_c00025{bottom:847.080000px;}
.y2_c00025{bottom:872.430000px;}
.y1_c00025{bottom:895.380000px;}
.h4_c00025{height:13.200074px;}
.h5_c00025{height:43.804688px;}
.h1_c00025{height:79.497070px;}
.h2_c00025{height:91.160156px;}
.h3_c00025{height:102.432000px;}
.h0_c00025{height:995.250000px;}
.w2_c00025{width:104.875500px;}
.w1_c00025{width:680.250000px;}
.w0_c00025{width:680.400000px;}
.x0_c00025{left:0.000000px;}
.x8_c00025{left:54.000000px;}
.x6_c00025{left:62.100000px;}
.x7_c00025{left:109.950000px;}
.xb_c00025{left:145.800000px;}
.xa_c00025{left:147.450000px;}
.x5_c00025{left:148.800000px;}
.x4_c00025{left:150.150000px;}
.x1_c00025{left:151.500000px;}
.x9_c00025{left:153.450000px;}
.x2_c00025{left:157.650000px;}
.x3_c00025{left:159.000000px;}
.xd_c00025{left:292.014267px;}
.xc_c00025{left:607.500000px;}
@media print{
.v0_c00025{vertical-align:0.000000pt;}
.ls0_c00025{letter-spacing:0.000000pt;}
.ws0_c00025{word-spacing:-52.608000pt;}
.ws2_c00025{word-spacing:-18.000000pt;}
.ws1_c00025{word-spacing:-14.781333pt;}
.ws3_c00025{word-spacing:0.000000pt;}
._17_c00025{margin-left:-18.602667pt;}
._11_c00025{margin-left:-12.960000pt;}
._14_c00025{margin-left:-8.320000pt;}
._2_c00025{margin-left:-7.344000pt;}
._6_c00025{margin-left:-5.688000pt;}
._10_c00025{margin-left:-4.680000pt;}
._4_c00025{margin-left:-3.600000pt;}
._f_c00025{margin-left:-2.096000pt;}
._b_c00025{margin-left:-0.914667pt;}
._7_c00025{width:0.936000pt;}
._5_c00025{width:1.872000pt;}
._0_c00025{width:3.456000pt;}
._3_c00025{width:4.536000pt;}
._1_c00025{width:5.904000pt;}
._a_c00025{width:6.808000pt;}
._9_c00025{width:7.728000pt;}
._e_c00025{width:8.784000pt;}
._d_c00025{width:9.680000pt;}
._12_c00025{width:10.714667pt;}
._c_c00025{width:11.952000pt;}
._8_c00025{width:13.616000pt;}
._13_c00025{width:16.274667pt;}
._18_c00025{width:17.408000pt;}
._15_c00025{width:33.522667pt;}
._1a_c00025{width:36.941333pt;}
._19_c00025{width:214.042667pt;}
._16_c00025{width:262.728000pt;}
.fs6_c00025{font-size:42.666667pt;}
.fs3_c00025{font-size:50.666667pt;}
.fs5_c00025{font-size:56.000000pt;}
.fs1_c00025{font-size:61.333333pt;}
.fs2_c00025{font-size:64.000000pt;}
.fs0_c00025{font-size:72.000000pt;}
.fs4_c00025{font-size:85.333333pt;}
.y0_c00025{bottom:0.000000pt;}
.y25_c00025{bottom:2.760000pt;}
.y24_c00025{bottom:6.425206pt;}
.y23_c00025{bottom:52.560000pt;}
.y22_c00025{bottom:72.693333pt;}
.y21_c00025{bottom:96.026667pt;}
.y20_c00025{bottom:117.893333pt;}
.y1f_c00025{bottom:139.760000pt;}
.y1e_c00025{bottom:162.026667pt;}
.y1d_c00025{bottom:184.026667pt;}
.y1c_c00025{bottom:206.160000pt;}
.y1b_c00025{bottom:228.293333pt;}
.y1a_c00025{bottom:249.893333pt;}
.y19_c00025{bottom:271.760000pt;}
.y18_c00025{bottom:295.760000pt;}
.y17_c00025{bottom:315.626667pt;}
.y16_c00025{bottom:337.493333pt;}
.y15_c00025{bottom:359.360000pt;}
.y14_c00025{bottom:380.960000pt;}
.y13_c00025{bottom:402.960000pt;}
.y12_c00025{bottom:425.093333pt;}
.y11_c00025{bottom:446.160000pt;}
.y10_c00025{bottom:467.760000pt;}
.yf_c00025{bottom:489.893333pt;}
.ye_c00025{bottom:511.760000pt;}
.yd_c00025{bottom:534.026667pt;}
.yc_c00025{bottom:555.626667pt;}
.yb_c00025{bottom:578.426667pt;}
.ya_c00025{bottom:599.493333pt;}
.y9_c00025{bottom:621.093333pt;}
.y8_c00025{bottom:643.226667pt;}
.y7_c00025{bottom:665.360000pt;}
.y6_c00025{bottom:686.960000pt;}
.y5_c00025{bottom:709.493333pt;}
.y4_c00025{bottom:730.826667pt;}
.y3_c00025{bottom:752.960000pt;}
.y2_c00025{bottom:775.493333pt;}
.y1_c00025{bottom:795.893333pt;}
.h4_c00025{height:11.733399pt;}
.h5_c00025{height:38.937500pt;}
.h1_c00025{height:70.664062pt;}
.h2_c00025{height:81.031250pt;}
.h3_c00025{height:91.050667pt;}
.h0_c00025{height:884.666667pt;}
.w2_c00025{width:93.222667pt;}
.w1_c00025{width:604.666667pt;}
.w0_c00025{width:604.800000pt;}
.x0_c00025{left:0.000000pt;}
.x8_c00025{left:48.000000pt;}
.x6_c00025{left:55.200000pt;}
.x7_c00025{left:97.733333pt;}
.xb_c00025{left:129.600000pt;}
.xa_c00025{left:131.066667pt;}
.x5_c00025{left:132.266667pt;}
.x4_c00025{left:133.466667pt;}
.x1_c00025{left:134.666667pt;}
.x9_c00025{left:136.400000pt;}
.x2_c00025{left:140.133333pt;}
.x3_c00025{left:141.333333pt;}
.xd_c00025{left:259.568237pt;}
.xc_c00025{left:540.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_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_7f244a1b3351250b5238a32a.woff2')format("woff");}.ff1_c00026{font-family:ff1_c00026;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00026;src:url('chunks/assets/font_d7ef9088a3afb1f7e0b18e11.woff2')format("woff");}.ff2_c00026{font-family:ff2_c00026;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00026;src:url('chunks/assets/font_cc6e46b8028fbc5082e9ab73.woff2')format("woff");}.ff3_c00026{font-family:ff3_c00026;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00026;src:url('chunks/assets/font_3e8dd6841d5153ab0bfc1c50.woff2')format("woff");}.ff4_c00026{font-family:ff4_c00026;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00026;src:url('chunks/assets/font_a0ec35701aaa4a9b311efb0c.woff2')format("woff");}.ff5_c00026{font-family:ff5_c00026;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00026;src:url('chunks/assets/font_01c7124238d9770a6c9e4965.woff2')format("woff");}.ff6_c00026{font-family:ff6_c00026;line-height:1.437000;font-style:normal;font-weight: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_c00026;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c00026{font-family:ff7_c00026;line-height:1.219238;font-style: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;}
.ls1_c00026{letter-spacing:-6.000000px;}
.ls0_c00026{letter-spacing:0.000000px;}
.sc__c00026{text-shadow:none;}
.sc0_c00026{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00026{-webkit-text-stroke:0px transparent;}
.sc0_c00026{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00026{word-spacing:-61.686000px;}
.ws0_c00026{word-spacing:-17.352000px;}
.ws2_c00026{word-spacing:0.000000px;}
._12_c00026{margin-left:-25.110000px;}
._d_c00026{margin-left:-23.598000px;}
._13_c00026{margin-left:-12.303000px;}
._14_c00026{margin-left:-9.477000px;}
._18_c00026{margin-left:-7.776000px;}
._10_c00026{margin-left:-6.705000px;}
._2_c00026{margin-left:-5.247000px;}
._0_c00026{margin-left:-4.158000px;}
._1_c00026{margin-left:-2.277000px;}
._b_c00026{margin-left:-1.035000px;}
._8_c00026{width:1.908000px;}
._9_c00026{width:3.015000px;}
._4_c00026{width:4.059000px;}
._7_c00026{width:5.067000px;}
._5_c00026{width:6.300000px;}
._6_c00026{width:7.803000px;}
._11_c00026{width:8.829000px;}
._f_c00026{width:9.927000px;}
._a_c00026{width:11.205000px;}
._c_c00026{width:12.447000px;}
._e_c00026{width:13.869000px;}
._16_c00026{width:15.579000px;}
._15_c00026{width:18.351000px;}
._19_c00026{width:27.231000px;}
._1a_c00026{width:63.633000px;}
._17_c00026{width:123.651000px;}
._3_c00026{width:287.595000px;}
.fc2_c00026{color:transparent;}
.fc1_c00026{color:rgb(128,128,128);}
.fc0_c00026{color:rgb(0,0,0);}
.fs6_c00026{font-size:48.000000px;}
.fs2_c00026{font-size:57.000000px;}
.fs4_c00026{font-size:72.000000px;}
.fs3_c00026{font-size:78.000000px;}
.fs1_c00026{font-size:81.000000px;}
.fs5_c00026{font-size:87.000000px;}
.fs0_c00026{font-size:99.000000px;}
.y0_c00026{bottom:0.000000px;}
.y24_c00026{bottom:3.105000px;}
.y23_c00026{bottom:7.228369px;}
.y22_c00026{bottom:102.570000px;}
.y21_c00026{bottom:128.820000px;}
.y20_c00026{bottom:152.820000px;}
.y1f_c00026{bottom:177.420000px;}
.y1e_c00026{bottom:202.470000px;}
.y1d_c00026{bottom:227.070000px;}
.y1c_c00026{bottom:252.420000px;}
.y1b_c00026{bottom:277.320000px;}
.y1a_c00026{bottom:302.070000px;}
.y19_c00026{bottom:325.920000px;}
.y18_c00026{bottom:349.620000px;}
.y17_c00026{bottom:374.220000px;}
.y16_c00026{bottom:398.220000px;}
.y15_c00026{bottom:424.470000px;}
.y14_c00026{bottom:447.420000px;}
.y13_c00026{bottom:472.170000px;}
.y12_c00026{bottom:496.170000px;}
.y11_c00026{bottom:520.770000px;}
.y10_c00026{bottom:545.370000px;}
.yf_c00026{bottom:569.670000px;}
.ye_c00026{bottom:594.720000px;}
.yd_c00026{bottom:618.270000px;}
.yc_c00026{bottom:642.570000px;}
.yb_c00026{bottom:667.170000px;}
.ya_c00026{bottom:691.920000px;}
.y9_c00026{bottom:715.770000px;}
.y8_c00026{bottom:741.420000px;}
.y7_c00026{bottom:764.820000px;}
.y6_c00026{bottom:790.020000px;}
.y5_c00026{bottom:814.770000px;}
.y4_c00026{bottom:841.020000px;}
.y3_c00026{bottom:864.270000px;}
.y2_c00026{bottom:888.870000px;}
.y1_c00026{bottom:925.020000px;}
.h8_c00026{height:13.200073px;}
.h9_c00026{height:43.804688px;}
.h3_c00026{height:79.497070px;}
.h7_c00026{height:84.269531px;}
.h5_c00026{height:91.160156px;}
.h6_c00026{height:91.176000px;}
.h4_c00026{height:98.756836px;}
.h2_c00026{height:115.870605px;}
.h1_c00026{height:1001.250000px;}
.h0_c00026{height:1001.400000px;}
.w2_c00026{width:104.875500px;}
.w0_c00026{width:666.375000px;}
.w1_c00026{width:666.750000px;}
.x0_c00026{left:0.000000px;}
.x2_c00026{left:46.800000px;}
.x3_c00026{left:47.850000px;}
.x5_c00026{left:49.500000px;}
.x4_c00026{left:50.550000px;}
.x6_c00026{left:52.350000px;}
.x1_c00026{left:153.900000px;}
.x7_c00026{left:285.001740px;}
@media print{
.v0_c00026{vertical-align:0.000000pt;}
.ls1_c00026{letter-spacing:-5.333333pt;}
.ls0_c00026{letter-spacing:0.000000pt;}
.ws1_c00026{word-spacing:-54.832000pt;}
.ws0_c00026{word-spacing:-15.424000pt;}
.ws2_c00026{word-spacing:0.000000pt;}
._12_c00026{margin-left:-22.320000pt;}
._d_c00026{margin-left:-20.976000pt;}
._13_c00026{margin-left:-10.936000pt;}
._14_c00026{margin-left:-8.424000pt;}
._18_c00026{margin-left:-6.912000pt;}
._10_c00026{margin-left:-5.960000pt;}
._2_c00026{margin-left:-4.664000pt;}
._0_c00026{margin-left:-3.696000pt;}
._1_c00026{margin-left:-2.024000pt;}
._b_c00026{margin-left:-0.920000pt;}
._8_c00026{width:1.696000pt;}
._9_c00026{width:2.680000pt;}
._4_c00026{width:3.608000pt;}
._7_c00026{width:4.504000pt;}
._5_c00026{width:5.600000pt;}
._6_c00026{width:6.936000pt;}
._11_c00026{width:7.848000pt;}
._f_c00026{width:8.824000pt;}
._a_c00026{width:9.960000pt;}
._c_c00026{width:11.064000pt;}
._e_c00026{width:12.328000pt;}
._16_c00026{width:13.848000pt;}
._15_c00026{width:16.312000pt;}
._19_c00026{width:24.205333pt;}
._1a_c00026{width:56.562667pt;}
._17_c00026{width:109.912000pt;}
._3_c00026{width:255.640000pt;}
.fs6_c00026{font-size:42.666667pt;}
.fs2_c00026{font-size:50.666667pt;}
.fs4_c00026{font-size:64.000000pt;}
.fs3_c00026{font-size:69.333333pt;}
.fs1_c00026{font-size:72.000000pt;}
.fs5_c00026{font-size:77.333333pt;}
.fs0_c00026{font-size:88.000000pt;}
.y0_c00026{bottom:0.000000pt;}
.y24_c00026{bottom:2.760000pt;}
.y23_c00026{bottom:6.425217pt;}
.y22_c00026{bottom:91.173333pt;}
.y21_c00026{bottom:114.506667pt;}
.y20_c00026{bottom:135.840000pt;}
.y1f_c00026{bottom:157.706667pt;}
.y1e_c00026{bottom:179.973333pt;}
.y1d_c00026{bottom:201.840000pt;}
.y1c_c00026{bottom:224.373333pt;}
.y1b_c00026{bottom:246.506667pt;}
.y1a_c00026{bottom:268.506667pt;}
.y19_c00026{bottom:289.706667pt;}
.y18_c00026{bottom:310.773333pt;}
.y17_c00026{bottom:332.640000pt;}
.y16_c00026{bottom:353.973333pt;}
.y15_c00026{bottom:377.306667pt;}
.y14_c00026{bottom:397.706667pt;}
.y13_c00026{bottom:419.706667pt;}
.y12_c00026{bottom:441.040000pt;}
.y11_c00026{bottom:462.906667pt;}
.y10_c00026{bottom:484.773333pt;}
.yf_c00026{bottom:506.373333pt;}
.ye_c00026{bottom:528.640000pt;}
.yd_c00026{bottom:549.573333pt;}
.yc_c00026{bottom:571.173333pt;}
.yb_c00026{bottom:593.040000pt;}
.ya_c00026{bottom:615.040000pt;}
.y9_c00026{bottom:636.240000pt;}
.y8_c00026{bottom:659.040000pt;}
.y7_c00026{bottom:679.840000pt;}
.y6_c00026{bottom:702.240000pt;}
.y5_c00026{bottom:724.240000pt;}
.y4_c00026{bottom:747.573333pt;}
.y3_c00026{bottom:768.240000pt;}
.y2_c00026{bottom:790.106667pt;}
.y1_c00026{bottom:822.240000pt;}
.h8_c00026{height:11.733399pt;}
.h9_c00026{height:38.937500pt;}
.h3_c00026{height:70.664062pt;}
.h7_c00026{height:74.906250pt;}
.h5_c00026{height:81.031250pt;}
.h6_c00026{height:81.045333pt;}
.h4_c00026{height:87.783854pt;}
.h2_c00026{height:102.996094pt;}
.h1_c00026{height:890.000000pt;}
.h0_c00026{height:890.133333pt;}
.w2_c00026{width:93.222667pt;}
.w0_c00026{width:592.333333pt;}
.w1_c00026{width:592.666667pt;}
.x0_c00026{left:0.000000pt;}
.x2_c00026{left:41.600000pt;}
.x3_c00026{left:42.533333pt;}
.x5_c00026{left:44.000000pt;}
.x4_c00026{left:44.933333pt;}
.x6_c00026{left:46.533333pt;}
.x1_c00026{left:136.800000pt;}
.x7_c00026{left:253.334880pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6346702c581ea91aa1aad75b.woff2')format("woff");}.ff1_c00027{font-family:ff1_c00027;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00027;src:url('chunks/assets/font_1fe9a6b63b2922e159a7a632.woff2')format("woff");}.ff2_c00027{font-family:ff2_c00027;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00027;src:url('chunks/assets/font_6149d6c2700f9c3ed0915854.woff2')format("woff");}.ff3_c00027{font-family:ff3_c00027;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00027;src:url('chunks/assets/font_6a3142461d2581888174c976.woff2')format("woff");}.ff4_c00027{font-family:ff4_c00027;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00027;src:url('chunks/assets/font_634e94ec02ea3a9418945213.woff2')format("woff");}.ff5_c00027{font-family:ff5_c00027;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00027;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c00027{font-family:ff6_c00027;line-height:1.219238;font-style: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;}
.ls1_c00027{letter-spacing:0.000000px;}
.ls0_c00027{letter-spacing:0.225000px;}
.sc__c00027{text-shadow:none;}
.sc0_c00027{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00027{-webkit-text-stroke:0px transparent;}
.sc0_c00027{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00027{word-spacing:-43.320000px;}
.ws1_c00027{word-spacing:-17.352000px;}
.ws2_c00027{word-spacing:0.000000px;}
._18_c00027{margin-left:-19.665000px;}
._f_c00027{margin-left:-18.570000px;}
._12_c00027{margin-left:-15.753000px;}
._14_c00027{margin-left:-14.574000px;}
._c_c00027{margin-left:-12.546000px;}
._10_c00027{margin-left:-10.950000px;}
._16_c00027{margin-left:-9.879000px;}
._d_c00027{margin-left:-7.857000px;}
._b_c00027{margin-left:-6.237000px;}
._5_c00027{margin-left:-4.617000px;}
._6_c00027{margin-left:-3.402000px;}
._3_c00027{margin-left:-1.458000px;}
._4_c00027{width:1.620000px;}
._1_c00027{width:3.078000px;}
._0_c00027{width:5.103000px;}
._7_c00027{width:6.399000px;}
._2_c00027{width:8.343000px;}
._a_c00027{width:9.720000px;}
._8_c00027{width:11.178000px;}
._e_c00027{width:13.365000px;}
._9_c00027{width:15.552000px;}
._17_c00027{width:17.664000px;}
._11_c00027{width:39.648000px;}
._19_c00027{width:86.205000px;}
._13_c00027{width:110.745000px;}
._15_c00027{width:258.024000px;}
.fc2_c00027{color:transparent;}
.fc1_c00027{color:rgb(128,128,128);}
.fc0_c00027{color:rgb(0,0,0);}
.fs6_c00027{font-size:48.000000px;}
.fs4_c00027{font-size:60.000000px;}
.fs5_c00027{font-size:72.000000px;}
.fs2_c00027{font-size:75.000000px;}
.fs1_c00027{font-size:78.000000px;}
.fs0_c00027{font-size:81.000000px;}
.fs3_c00027{font-size:84.000000px;}
.y0_c00027{bottom:0.000000px;}
.y23_c00027{bottom:3.105000px;}
.y22_c00027{bottom:7.228357px;}
.y21_c00027{bottom:48.930000px;}
.y20_c00027{bottom:73.980000px;}
.y1f_c00027{bottom:99.630000px;}
.y1e_c00027{bottom:124.530000px;}
.y1d_c00027{bottom:149.130000px;}
.y1c_c00027{bottom:174.180000px;}
.y1b_c00027{bottom:198.780000px;}
.y1a_c00027{bottom:223.530000px;}
.y19_c00027{bottom:248.730000px;}
.y18_c00027{bottom:273.030000px;}
.y17_c00027{bottom:297.630000px;}
.y16_c00027{bottom:321.930000px;}
.y15_c00027{bottom:345.930000px;}
.y14_c00027{bottom:370.530000px;}
.y13_c00027{bottom:394.830000px;}
.y12_c00027{bottom:419.580000px;}
.y11_c00027{bottom:443.880000px;}
.y10_c00027{bottom:467.880000px;}
.yf_c00027{bottom:492.480000px;}
.ye_c00027{bottom:516.330000px;}
.yd_c00027{bottom:540.780000px;}
.yc_c00027{bottom:565.380000px;}
.yb_c00027{bottom:589.380000px;}
.ya_c00027{bottom:613.980000px;}
.y9_c00027{bottom:638.280000px;}
.y8_c00027{bottom:662.580000px;}
.y7_c00027{bottom:711.180000px;}
.y6_c00027{bottom:761.430000px;}
.y5_c00027{bottom:786.480000px;}
.y4_c00027{bottom:811.080000px;}
.y3_c00027{bottom:835.680000px;}
.y2_c00027{bottom:860.730000px;}
.y1_c00027{bottom:884.880000px;}
.h7_c00027{height:13.200074px;}
.h8_c00027{height:43.804688px;}
.h3_c00027{height:73.571777px;}
.h5_c00027{height:73.608398px;}
.h1_c00027{height:79.497070px;}
.h4_c00027{height:82.441406px;}
.h6_c00027{height:84.269531px;}
.h2_c00027{height:98.756836px;}
.h0_c00027{height:995.250000px;}
.w2_c00027{width:104.875500px;}
.w1_c00027{width:680.250000px;}
.w0_c00027{width:680.400000px;}
.x0_c00027{left:0.000000px;}
.x5_c00027{left:144.900000px;}
.x2_c00027{left:146.100000px;}
.x1_c00027{left:148.500000px;}
.x4_c00027{left:150.150000px;}
.x6_c00027{left:151.500000px;}
.x7_c00027{left:152.550000px;}
.x3_c00027{left:250.050000px;}
.x9_c00027{left:292.014267px;}
.x8_c00027{left:602.850000px;}
@media print{
.v0_c00027{vertical-align:0.000000pt;}
.ls1_c00027{letter-spacing:0.000000pt;}
.ls0_c00027{letter-spacing:0.200000pt;}
.ws0_c00027{word-spacing:-38.506667pt;}
.ws1_c00027{word-spacing:-15.424000pt;}
.ws2_c00027{word-spacing:0.000000pt;}
._18_c00027{margin-left:-17.480000pt;}
._f_c00027{margin-left:-16.506667pt;}
._12_c00027{margin-left:-14.002667pt;}
._14_c00027{margin-left:-12.954667pt;}
._c_c00027{margin-left:-11.152000pt;}
._10_c00027{margin-left:-9.733333pt;}
._16_c00027{margin-left:-8.781333pt;}
._d_c00027{margin-left:-6.984000pt;}
._b_c00027{margin-left:-5.544000pt;}
._5_c00027{margin-left:-4.104000pt;}
._6_c00027{margin-left:-3.024000pt;}
._3_c00027{margin-left:-1.296000pt;}
._4_c00027{width:1.440000pt;}
._1_c00027{width:2.736000pt;}
._0_c00027{width:4.536000pt;}
._7_c00027{width:5.688000pt;}
._2_c00027{width:7.416000pt;}
._a_c00027{width:8.640000pt;}
._8_c00027{width:9.936000pt;}
._e_c00027{width:11.880000pt;}
._9_c00027{width:13.824000pt;}
._17_c00027{width:15.701333pt;}
._11_c00027{width:35.242667pt;}
._19_c00027{width:76.626667pt;}
._13_c00027{width:98.440000pt;}
._15_c00027{width:229.354667pt;}
.fs6_c00027{font-size:42.666667pt;}
.fs4_c00027{font-size:53.333333pt;}
.fs5_c00027{font-size:64.000000pt;}
.fs2_c00027{font-size:66.666667pt;}
.fs1_c00027{font-size:69.333333pt;}
.fs0_c00027{font-size:72.000000pt;}
.fs3_c00027{font-size:74.666667pt;}
.y0_c00027{bottom:0.000000pt;}
.y23_c00027{bottom:2.760000pt;}
.y22_c00027{bottom:6.425206pt;}
.y21_c00027{bottom:43.493333pt;}
.y20_c00027{bottom:65.760000pt;}
.y1f_c00027{bottom:88.560000pt;}
.y1e_c00027{bottom:110.693333pt;}
.y1d_c00027{bottom:132.560000pt;}
.y1c_c00027{bottom:154.826667pt;}
.y1b_c00027{bottom:176.693333pt;}
.y1a_c00027{bottom:198.693333pt;}
.y19_c00027{bottom:221.093333pt;}
.y18_c00027{bottom:242.693333pt;}
.y17_c00027{bottom:264.560000pt;}
.y16_c00027{bottom:286.160000pt;}
.y15_c00027{bottom:307.493333pt;}
.y14_c00027{bottom:329.360000pt;}
.y13_c00027{bottom:350.960000pt;}
.y12_c00027{bottom:372.960000pt;}
.y11_c00027{bottom:394.560000pt;}
.y10_c00027{bottom:415.893333pt;}
.yf_c00027{bottom:437.760000pt;}
.ye_c00027{bottom:458.960000pt;}
.yd_c00027{bottom:480.693333pt;}
.yc_c00027{bottom:502.560000pt;}
.yb_c00027{bottom:523.893333pt;}
.ya_c00027{bottom:545.760000pt;}
.y9_c00027{bottom:567.360000pt;}
.y8_c00027{bottom:588.960000pt;}
.y7_c00027{bottom:632.160000pt;}
.y6_c00027{bottom:676.826667pt;}
.y5_c00027{bottom:699.093333pt;}
.y4_c00027{bottom:720.960000pt;}
.y3_c00027{bottom:742.826667pt;}
.y2_c00027{bottom:765.093333pt;}
.y1_c00027{bottom:786.560000pt;}
.h7_c00027{height:11.733399pt;}
.h8_c00027{height:38.937500pt;}
.h3_c00027{height:65.397135pt;}
.h5_c00027{height:65.429688pt;}
.h1_c00027{height:70.664062pt;}
.h4_c00027{height:73.281250pt;}
.h6_c00027{height:74.906250pt;}
.h2_c00027{height:87.783854pt;}
.h0_c00027{height:884.666667pt;}
.w2_c00027{width:93.222667pt;}
.w1_c00027{width:604.666667pt;}
.w0_c00027{width:604.800000pt;}
.x0_c00027{left:0.000000pt;}
.x5_c00027{left:128.800000pt;}
.x2_c00027{left:129.866667pt;}
.x1_c00027{left:132.000000pt;}
.x4_c00027{left:133.466667pt;}
.x6_c00027{left:134.666667pt;}
.x7_c00027{left:135.600000pt;}
.x3_c00027{left:222.266667pt;}
.x9_c00027{left:259.568237pt;}
.x8_c00027{left:535.866667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_d9a397433a5589e1f8d45a8a.woff2')format("woff");}.ff1_c00028{font-family:ff1_c00028;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00028;src:url('chunks/assets/font_7ab3ad4ca5bc58a7c37b77a2.woff2')format("woff");}.ff2_c00028{font-family:ff2_c00028;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00028;src:url('chunks/assets/font_63acba1c51a1c97ece53bce3.woff2')format("woff");}.ff3_c00028{font-family:ff3_c00028;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00028;src:url('chunks/assets/font_f7f1ce8792724b013f350134.woff2')format("woff");}.ff4_c00028{font-family:ff4_c00028;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00028;src:url('chunks/assets/font_19374f3b71a0de78d4716c91.woff2')format("woff");}.ff5_c00028{font-family:ff5_c00028;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00028;src:url('chunks/assets/font_d172a568027cd2d631bd9849.woff2')format("woff");}.ff6_c00028{font-family:ff6_c00028;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00028;src:url('chunks/assets/font_4af0892c35372ba25e9a705c.woff2')format("woff");}.ff7_c00028{font-family:ff7_c00028;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00028;src:url('chunks/assets/font_6913df2b038f7d41bba3a7f8.woff2')format("woff");}.ff8_c00028{font-family:ff8_c00028;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00028;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff9_c00028{font-family:ff9_c00028;line-height:1.219238;font-style: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;}
.ls6_c00028{letter-spacing:-6.000000px;}
.ls4_c00028{letter-spacing:0.000000px;}
.ls0_c00028{letter-spacing:0.600000px;}
.ls2_c00028{letter-spacing:0.900000px;}
.ls3_c00028{letter-spacing:2.100000px;}
.ls1_c00028{letter-spacing:3.900000px;}
.ls5_c00028{letter-spacing:21.000000px;}
.sc__c00028{text-shadow:none;}
.sc0_c00028{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00028{-webkit-text-stroke:0px transparent;}
.sc0_c00028{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00028{word-spacing:-17.352000px;}
.ws1_c00028{word-spacing:-13.737000px;}
.ws0_c00028{word-spacing:-0.231000px;}
.ws3_c00028{word-spacing:0.000000px;}
._15_c00028{margin-left:-28.011000px;}
._12_c00028{margin-left:-26.709000px;}
._17_c00028{margin-left:-24.600000px;}
._6_c00028{margin-left:-20.592000px;}
._16_c00028{margin-left:-13.515000px;}
._13_c00028{margin-left:-11.415000px;}
._19_c00028{margin-left:-9.474000px;}
._1_c00028{margin-left:-7.722000px;}
._21_c00028{margin-left:-6.678000px;}
._1d_c00028{margin-left:-5.670000px;}
._2_c00028{margin-left:-4.158000px;}
._3_c00028{margin-left:-2.574000px;}
._0_c00028{margin-left:-1.386000px;}
._14_c00028{width:1.026000px;}
._d_c00028{width:2.109000px;}
._8_c00028{width:3.534000px;}
._9_c00028{width:5.415000px;}
._b_c00028{width:6.498000px;}
._e_c00028{width:7.524000px;}
._5_c00028{width:8.811000px;}
._a_c00028{width:10.032000px;}
._c_c00028{width:11.742000px;}
._22_c00028{width:12.804000px;}
._1e_c00028{width:13.824000px;}
._11_c00028{width:15.357000px;}
._4_c00028{width:16.434000px;}
._1a_c00028{width:17.643000px;}
._23_c00028{width:18.915000px;}
._f_c00028{width:20.007000px;}
._18_c00028{width:21.351000px;}
._10_c00028{width:22.515000px;}
._1c_c00028{width:25.941000px;}
._1b_c00028{width:38.304000px;}
._1f_c00028{width:79.242000px;}
._20_c00028{width:167.262000px;}
._7_c00028{width:319.176000px;}
._24_c00028{width:565.728000px;}
.fc2_c00028{color:transparent;}
.fc1_c00028{color:rgb(128,128,128);}
.fc0_c00028{color:rgb(0,0,0);}
.fsa_c00028{font-size:48.000000px;}
.fs5_c00028{font-size:54.000000px;}
.fs2_c00028{font-size:57.000000px;}
.fs3_c00028{font-size:60.000000px;}
.fs7_c00028{font-size:63.000000px;}
.fs6_c00028{font-size:69.000000px;}
.fs9_c00028{font-size:72.000000px;}
.fs4_c00028{font-size:78.000000px;}
.fs8_c00028{font-size:81.000000px;}
.fs0_c00028{font-size:99.000000px;}
.fs1_c00028{font-size:132.000000px;}
.y0_c00028{bottom:0.000000px;}
.y25_c00028{bottom:3.105000px;}
.y24_c00028{bottom:7.228357px;}
.y23_c00028{bottom:66.930000px;}
.y22_c00028{bottom:112.680000px;}
.y21_c00028{bottom:138.480000px;}
.y20_c00028{bottom:161.730000px;}
.y1f_c00028{bottom:186.630000px;}
.y1e_c00028{bottom:211.380000px;}
.y1d_c00028{bottom:235.980000px;}
.y1c_c00028{bottom:260.580000px;}
.y1b_c00028{bottom:285.180000px;}
.y1a_c00028{bottom:309.480000px;}
.y19_c00028{bottom:333.780000px;}
.y18_c00028{bottom:357.480000px;}
.y17_c00028{bottom:381.780000px;}
.y16_c00028{bottom:406.080000px;}
.y15_c00028{bottom:430.680000px;}
.y14_c00028{bottom:455.280000px;}
.y13_c00028{bottom:477.630000px;}
.y12_c00028{bottom:504.180000px;}
.y11_c00028{bottom:528.480000px;}
.y10_c00028{bottom:552.780000px;}
.yf_c00028{bottom:576.480000px;}
.ye_c00028{bottom:601.380000px;}
.yd_c00028{bottom:625.380000px;}
.yc_c00028{bottom:649.080000px;}
.yb_c00028{bottom:673.080000px;}
.ya_c00028{bottom:697.380000px;}
.y9_c00028{bottom:721.980000px;}
.y8_c00028{bottom:746.580000px;}
.y7_c00028{bottom:770.580000px;}
.y6_c00028{bottom:794.880000px;}
.y5_c00028{bottom:820.230000px;}
.y4_c00028{bottom:843.780000px;}
.y3_c00028{bottom:867.780000px;}
.y2_c00028{bottom:892.380000px;}
.y1_c00028{bottom:926.130000px;}
.h9_c00028{height:13.200074px;}
.ha_c00028{height:43.804688px;}
.h5_c00028{height:66.713379px;}
.h7_c00028{height:68.370117px;}
.h3_c00028{height:72.168457px;}
.h6_c00028{height:79.497070px;}
.h8_c00028{height:84.269531px;}
.h4_c00028{height:98.756836px;}
.h2_c00028{height:167.126953px;}
.h1_c00028{height:992.250000px;}
.h0_c00028{height:992.550000px;}
.w2_c00028{width:104.875500px;}
.w0_c00028{width:660.450000px;}
.w1_c00028{width:660.750000px;}
.x0_c00028{left:0.000000px;}
.x6_c00028{left:32.700000px;}
.x7_c00028{left:35.700000px;}
.x8_c00028{left:38.100000px;}
.x4_c00028{left:40.200000px;}
.x5_c00028{left:41.850000px;}
.x3_c00028{left:42.900000px;}
.xa_c00028{left:48.150000px;}
.x9_c00028{left:65.100000px;}
.x2_c00028{left:90.150000px;}
.xb_c00028{left:102.900000px;}
.x1_c00028{left:143.850000px;}
.xc_c00028{left:193.050000px;}
.xe_c00028{left:282.039230px;}
.xd_c00028{left:476.850000px;}
@media print{
.v0_c00028{vertical-align:0.000000pt;}
.ls6_c00028{letter-spacing:-5.333333pt;}
.ls4_c00028{letter-spacing:0.000000pt;}
.ls0_c00028{letter-spacing:0.533333pt;}
.ls2_c00028{letter-spacing:0.800000pt;}
.ls3_c00028{letter-spacing:1.866667pt;}
.ls1_c00028{letter-spacing:3.466667pt;}
.ls5_c00028{letter-spacing:18.666667pt;}
.ws2_c00028{word-spacing:-15.424000pt;}
.ws1_c00028{word-spacing:-12.210667pt;}
.ws0_c00028{word-spacing:-0.205333pt;}
.ws3_c00028{word-spacing:0.000000pt;}
._15_c00028{margin-left:-24.898667pt;}
._12_c00028{margin-left:-23.741333pt;}
._17_c00028{margin-left:-21.866667pt;}
._6_c00028{margin-left:-18.304000pt;}
._16_c00028{margin-left:-12.013333pt;}
._13_c00028{margin-left:-10.146667pt;}
._19_c00028{margin-left:-8.421333pt;}
._1_c00028{margin-left:-6.864000pt;}
._21_c00028{margin-left:-5.936000pt;}
._1d_c00028{margin-left:-5.040000pt;}
._2_c00028{margin-left:-3.696000pt;}
._3_c00028{margin-left:-2.288000pt;}
._0_c00028{margin-left:-1.232000pt;}
._14_c00028{width:0.912000pt;}
._d_c00028{width:1.874667pt;}
._8_c00028{width:3.141333pt;}
._9_c00028{width:4.813333pt;}
._b_c00028{width:5.776000pt;}
._e_c00028{width:6.688000pt;}
._5_c00028{width:7.832000pt;}
._a_c00028{width:8.917333pt;}
._c_c00028{width:10.437333pt;}
._22_c00028{width:11.381333pt;}
._1e_c00028{width:12.288000pt;}
._11_c00028{width:13.650667pt;}
._4_c00028{width:14.608000pt;}
._1a_c00028{width:15.682667pt;}
._23_c00028{width:16.813333pt;}
._f_c00028{width:17.784000pt;}
._18_c00028{width:18.978667pt;}
._10_c00028{width:20.013333pt;}
._1c_c00028{width:23.058667pt;}
._1b_c00028{width:34.048000pt;}
._1f_c00028{width:70.437333pt;}
._20_c00028{width:148.677333pt;}
._7_c00028{width:283.712000pt;}
._24_c00028{width:502.869333pt;}
.fsa_c00028{font-size:42.666667pt;}
.fs5_c00028{font-size:48.000000pt;}
.fs2_c00028{font-size:50.666667pt;}
.fs3_c00028{font-size:53.333333pt;}
.fs7_c00028{font-size:56.000000pt;}
.fs6_c00028{font-size:61.333333pt;}
.fs9_c00028{font-size:64.000000pt;}
.fs4_c00028{font-size:69.333333pt;}
.fs8_c00028{font-size:72.000000pt;}
.fs0_c00028{font-size:88.000000pt;}
.fs1_c00028{font-size:117.333333pt;}
.y0_c00028{bottom:0.000000pt;}
.y25_c00028{bottom:2.760000pt;}
.y24_c00028{bottom:6.425206pt;}
.y23_c00028{bottom:59.493333pt;}
.y22_c00028{bottom:100.160000pt;}
.y21_c00028{bottom:123.093333pt;}
.y20_c00028{bottom:143.760000pt;}
.y1f_c00028{bottom:165.893333pt;}
.y1e_c00028{bottom:187.893333pt;}
.y1d_c00028{bottom:209.760000pt;}
.y1c_c00028{bottom:231.626667pt;}
.y1b_c00028{bottom:253.493333pt;}
.y1a_c00028{bottom:275.093333pt;}
.y19_c00028{bottom:296.693333pt;}
.y18_c00028{bottom:317.760000pt;}
.y17_c00028{bottom:339.360000pt;}
.y16_c00028{bottom:360.960000pt;}
.y15_c00028{bottom:382.826667pt;}
.y14_c00028{bottom:404.693333pt;}
.y13_c00028{bottom:424.560000pt;}
.y12_c00028{bottom:448.160000pt;}
.y11_c00028{bottom:469.760000pt;}
.y10_c00028{bottom:491.360000pt;}
.yf_c00028{bottom:512.426667pt;}
.ye_c00028{bottom:534.560000pt;}
.yd_c00028{bottom:555.893333pt;}
.yc_c00028{bottom:576.960000pt;}
.yb_c00028{bottom:598.293333pt;}
.ya_c00028{bottom:619.893333pt;}
.y9_c00028{bottom:641.760000pt;}
.y8_c00028{bottom:663.626667pt;}
.y7_c00028{bottom:684.960000pt;}
.y6_c00028{bottom:706.560000pt;}
.y5_c00028{bottom:729.093333pt;}
.y4_c00028{bottom:750.026667pt;}
.y3_c00028{bottom:771.360000pt;}
.y2_c00028{bottom:793.226667pt;}
.y1_c00028{bottom:823.226667pt;}
.h9_c00028{height:11.733399pt;}
.ha_c00028{height:38.937500pt;}
.h5_c00028{height:59.300781pt;}
.h7_c00028{height:60.773438pt;}
.h3_c00028{height:64.149740pt;}
.h6_c00028{height:70.664062pt;}
.h8_c00028{height:74.906250pt;}
.h4_c00028{height:87.783854pt;}
.h2_c00028{height:148.557292pt;}
.h1_c00028{height:882.000000pt;}
.h0_c00028{height:882.266667pt;}
.w2_c00028{width:93.222667pt;}
.w0_c00028{width:587.066667pt;}
.w1_c00028{width:587.333333pt;}
.x0_c00028{left:0.000000pt;}
.x6_c00028{left:29.066667pt;}
.x7_c00028{left:31.733333pt;}
.x8_c00028{left:33.866667pt;}
.x4_c00028{left:35.733333pt;}
.x5_c00028{left:37.200000pt;}
.x3_c00028{left:38.133333pt;}
.xa_c00028{left:42.800000pt;}
.x9_c00028{left:57.866667pt;}
.x2_c00028{left:80.133333pt;}
.xb_c00028{left:91.466667pt;}
.x1_c00028{left:127.866667pt;}
.xc_c00028{left:171.600000pt;}
.xe_c00028{left:250.701538pt;}
.xd_c00028{left:423.866667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f0284c2e985aa4f38d08e78a.woff2')format("woff");}.ff1_c00029{font-family:ff1_c00029;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00029;src:url('chunks/assets/font_993b36aba601e952f9404429.woff2')format("woff");}.ff2_c00029{font-family:ff2_c00029;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00029;src:url('chunks/assets/font_f1b13d9d55d8cbf7ae8cd9b7.woff2')format("woff");}.ff3_c00029{font-family:ff3_c00029;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00029;src:url('chunks/assets/font_2d81afc0fe62fa411372fe80.woff2')format("woff");}.ff4_c00029{font-family:ff4_c00029;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00029;src:url('chunks/assets/font_2d46a2c10fed270ce4985455.woff2')format("woff");}.ff5_c00029{font-family:ff5_c00029;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00029;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c00029{font-family:ff6_c00029;line-height:1.219238;font-style: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;}
.ls1_c00029{letter-spacing:-6.000000px;}
.ls0_c00029{letter-spacing:0.000000px;}
.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;}
}
.ws2_c00029{word-spacing:-61.686000px;}
.ws1_c00029{word-spacing:-20.250000px;}
.ws0_c00029{word-spacing:-17.352000px;}
.ws3_c00029{word-spacing:0.000000px;}
._d_c00029{margin-left:-17.433000px;}
._b_c00029{margin-left:-16.245000px;}
._13_c00029{margin-left:-13.821000px;}
._2_c00029{margin-left:-12.573000px;}
._15_c00029{margin-left:-11.388000px;}
._9_c00029{margin-left:-10.305000px;}
._20_c00029{margin-left:-9.060000px;}
._f_c00029{margin-left:-7.656000px;}
._14_c00029{margin-left:-6.378000px;}
._4_c00029{margin-left:-4.851000px;}
._a_c00029{margin-left:-3.633000px;}
._3_c00029{margin-left:-2.475000px;}
._0_c00029{margin-left:-1.287000px;}
._12_c00029{width:1.014000px;}
._6_c00029{width:2.028000px;}
._5_c00029{width:3.861000px;}
._c_c00029{width:5.001000px;}
._7_c00029{width:6.369000px;}
._e_c00029{width:7.392000px;}
._10_c00029{width:8.646000px;}
._8_c00029{width:10.005000px;}
._16_c00029{width:11.097000px;}
._11_c00029{width:12.267000px;}
._18_c00029{width:13.416000px;}
._1a_c00029{width:14.598000px;}
._17_c00029{width:16.137000px;}
._1_c00029{width:17.325000px;}
._1f_c00029{width:32.904000px;}
._1d_c00029{width:35.154000px;}
._1c_c00029{width:42.282000px;}
._19_c00029{width:54.195000px;}
._1e_c00029{width:56.133000px;}
._1b_c00029{width:63.018000px;}
.fc2_c00029{color:transparent;}
.fc1_c00029{color:rgb(128,128,128);}
.fc0_c00029{color:rgb(0,0,0);}
.fs7_c00029{font-size:48.000000px;}
.fs2_c00029{font-size:51.000000px;}
.fs5_c00029{font-size:72.000000px;}
.fs4_c00029{font-size:78.000000px;}
.fs3_c00029{font-size:81.000000px;}
.fs1_c00029{font-size:84.000000px;}
.fs6_c00029{font-size:87.000000px;}
.fs0_c00029{font-size:99.000000px;}
.y0_c00029{bottom:0.000000px;}
.y25_c00029{bottom:3.105000px;}
.y24_c00029{bottom:7.228357px;}
.y23_c00029{bottom:69.480000px;}
.y22_c00029{bottom:93.480000px;}
.y20_c00029{bottom:117.480000px;}
.y21_c00029{bottom:118.230000px;}
.y1f_c00029{bottom:145.830000px;}
.y1e_c00029{bottom:168.780000px;}
.y1d_c00029{bottom:193.680000px;}
.y1c_c00029{bottom:217.980000px;}
.y1b_c00029{bottom:243.330000px;}
.y1a_c00029{bottom:267.330000px;}
.y19_c00029{bottom:292.230000px;}
.y18_c00029{bottom:316.680000px;}
.y17_c00029{bottom:340.980000px;}
.y16_c00029{bottom:365.580000px;}
.y15_c00029{bottom:389.880000px;}
.y14_c00029{bottom:414.480000px;}
.y13_c00029{bottom:438.780000px;}
.y12_c00029{bottom:463.380000px;}
.y11_c00029{bottom:487.680000px;}
.y10_c00029{bottom:512.280000px;}
.yf_c00029{bottom:537.030000px;}
.ye_c00029{bottom:561.330000px;}
.yd_c00029{bottom:586.230000px;}
.yc_c00029{bottom:610.530000px;}
.yb_c00029{bottom:636.930000px;}
.ya_c00029{bottom:662.280000px;}
.y9_c00029{bottom:685.530000px;}
.y8_c00029{bottom:710.430000px;}
.y7_c00029{bottom:735.030000px;}
.y6_c00029{bottom:759.330000px;}
.y5_c00029{bottom:815.730000px;}
.y4_c00029{bottom:844.830000px;}
.y3_c00029{bottom:874.230000px;}
.y2_c00029{bottom:902.880000px;}
.y1_c00029{bottom:940.680000px;}
.h8_c00029{height:13.200074px;}
.h9_c00029{height:43.804688px;}
.h4_c00029{height:79.497070px;}
.h3_c00029{height:82.400391px;}
.h2_c00029{height:82.441406px;}
.h6_c00029{height:84.269531px;}
.h7_c00029{height:91.176000px;}
.h5_c00029{height:98.756836px;}
.h1_c00029{height:115.870605px;}
.h0_c00029{height:995.250000px;}
.w2_c00029{width:104.875500px;}
.w1_c00029{width:680.250000px;}
.w0_c00029{width:680.400000px;}
.x0_c00029{left:0.000000px;}
.xd_c00029{left:60.750000px;}
.xb_c00029{left:146.100000px;}
.xf_c00029{left:150.900000px;}
.xe_c00029{left:152.250000px;}
.xc_c00029{left:154.200000px;}
.xa_c00029{left:155.550000px;}
.x9_c00029{left:158.250000px;}
.x8_c00029{left:160.200000px;}
.x2_c00029{left:162.450000px;}
.x3_c00029{left:189.900000px;}
.x1_c00029{left:251.400000px;}
.x4_c00029{left:256.200000px;}
.x7_c00029{left:292.200000px;}
.x6_c00029{left:294.000000px;}
.x5_c00029{left:341.100000px;}
.x10_c00029{left:578.400000px;}
@media print{
.v0_c00029{vertical-align:0.000000pt;}
.ls1_c00029{letter-spacing:-5.333333pt;}
.ls0_c00029{letter-spacing:0.000000pt;}
.ws2_c00029{word-spacing:-54.832000pt;}
.ws1_c00029{word-spacing:-18.000000pt;}
.ws0_c00029{word-spacing:-15.424000pt;}
.ws3_c00029{word-spacing:0.000000pt;}
._d_c00029{margin-left:-15.496000pt;}
._b_c00029{margin-left:-14.440000pt;}
._13_c00029{margin-left:-12.285333pt;}
._2_c00029{margin-left:-11.176000pt;}
._15_c00029{margin-left:-10.122667pt;}
._9_c00029{margin-left:-9.160000pt;}
._20_c00029{margin-left:-8.053333pt;}
._f_c00029{margin-left:-6.805333pt;}
._14_c00029{margin-left:-5.669333pt;}
._4_c00029{margin-left:-4.312000pt;}
._a_c00029{margin-left:-3.229333pt;}
._3_c00029{margin-left:-2.200000pt;}
._0_c00029{margin-left:-1.144000pt;}
._12_c00029{width:0.901333pt;}
._6_c00029{width:1.802667pt;}
._5_c00029{width:3.432000pt;}
._c_c00029{width:4.445333pt;}
._7_c00029{width:5.661333pt;}
._e_c00029{width:6.570667pt;}
._10_c00029{width:7.685333pt;}
._8_c00029{width:8.893333pt;}
._16_c00029{width:9.864000pt;}
._11_c00029{width:10.904000pt;}
._18_c00029{width:11.925333pt;}
._1a_c00029{width:12.976000pt;}
._17_c00029{width:14.344000pt;}
._1_c00029{width:15.400000pt;}
._1f_c00029{width:29.248000pt;}
._1d_c00029{width:31.248000pt;}
._1c_c00029{width:37.584000pt;}
._19_c00029{width:48.173333pt;}
._1e_c00029{width:49.896000pt;}
._1b_c00029{width:56.016000pt;}
.fs7_c00029{font-size:42.666667pt;}
.fs2_c00029{font-size:45.333333pt;}
.fs5_c00029{font-size:64.000000pt;}
.fs4_c00029{font-size:69.333333pt;}
.fs3_c00029{font-size:72.000000pt;}
.fs1_c00029{font-size:74.666667pt;}
.fs6_c00029{font-size:77.333333pt;}
.fs0_c00029{font-size:88.000000pt;}
.y0_c00029{bottom:0.000000pt;}
.y25_c00029{bottom:2.760000pt;}
.y24_c00029{bottom:6.425206pt;}
.y23_c00029{bottom:61.760000pt;}
.y22_c00029{bottom:83.093333pt;}
.y20_c00029{bottom:104.426667pt;}
.y21_c00029{bottom:105.093333pt;}
.y1f_c00029{bottom:129.626667pt;}
.y1e_c00029{bottom:150.026667pt;}
.y1d_c00029{bottom:172.160000pt;}
.y1c_c00029{bottom:193.760000pt;}
.y1b_c00029{bottom:216.293333pt;}
.y1a_c00029{bottom:237.626667pt;}
.y19_c00029{bottom:259.760000pt;}
.y18_c00029{bottom:281.493333pt;}
.y17_c00029{bottom:303.093333pt;}
.y16_c00029{bottom:324.960000pt;}
.y15_c00029{bottom:346.560000pt;}
.y14_c00029{bottom:368.426667pt;}
.y13_c00029{bottom:390.026667pt;}
.y12_c00029{bottom:411.893333pt;}
.y11_c00029{bottom:433.493333pt;}
.y10_c00029{bottom:455.360000pt;}
.yf_c00029{bottom:477.360000pt;}
.ye_c00029{bottom:498.960000pt;}
.yd_c00029{bottom:521.093333pt;}
.yc_c00029{bottom:542.693333pt;}
.yb_c00029{bottom:566.160000pt;}
.ya_c00029{bottom:588.693333pt;}
.y9_c00029{bottom:609.360000pt;}
.y8_c00029{bottom:631.493333pt;}
.y7_c00029{bottom:653.360000pt;}
.y6_c00029{bottom:674.960000pt;}
.y5_c00029{bottom:725.093333pt;}
.y4_c00029{bottom:750.960000pt;}
.y3_c00029{bottom:777.093333pt;}
.y2_c00029{bottom:802.560000pt;}
.y1_c00029{bottom:836.160000pt;}
.h8_c00029{height:11.733399pt;}
.h9_c00029{height:38.937500pt;}
.h4_c00029{height:70.664062pt;}
.h3_c00029{height:73.244792pt;}
.h2_c00029{height:73.281250pt;}
.h6_c00029{height:74.906250pt;}
.h7_c00029{height:81.045333pt;}
.h5_c00029{height:87.783854pt;}
.h1_c00029{height:102.996094pt;}
.h0_c00029{height:884.666667pt;}
.w2_c00029{width:93.222667pt;}
.w1_c00029{width:604.666667pt;}
.w0_c00029{width:604.800000pt;}
.x0_c00029{left:0.000000pt;}
.xd_c00029{left:54.000000pt;}
.xb_c00029{left:129.866667pt;}
.xf_c00029{left:134.133333pt;}
.xe_c00029{left:135.333333pt;}
.xc_c00029{left:137.066667pt;}
.xa_c00029{left:138.266667pt;}
.x9_c00029{left:140.666667pt;}
.x8_c00029{left:142.400000pt;}
.x2_c00029{left:144.400000pt;}
.x3_c00029{left:168.800000pt;}
.x1_c00029{left:223.466667pt;}
.x4_c00029{left:227.733333pt;}
.x7_c00029{left:259.733333pt;}
.x6_c00029{left:261.333333pt;}
.x5_c00029{left:303.200000pt;}
.x10_c00029{left:514.133333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ef97bf6728f7cb346f7adfe9.woff2')format("woff");}.ff1_c00030{font-family:ff1_c00030;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00030;src:url('chunks/assets/font_9bf80ef9ae1e75d87597f190.woff2')format("woff");}.ff2_c00030{font-family:ff2_c00030;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00030;src:url('chunks/assets/font_6088d03a3a734e080c77626b.woff2')format("woff");}.ff3_c00030{font-family:ff3_c00030;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00030;src:url('chunks/assets/font_4c28959252f9015972f000d9.woff2')format("woff");}.ff4_c00030{font-family:ff4_c00030;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00030;src:url('chunks/assets/font_4608b21976cd628b4263a862.woff2')format("woff");}.ff5_c00030{font-family:ff5_c00030;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00030;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c00030{font-family:ff6_c00030;line-height:1.219238;font-style: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;}
.ls1_c00030{letter-spacing:0.000000px;}
.ls0_c00030{letter-spacing:13.602000px;}
.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;}
}
.ws2_c00030{word-spacing:-17.352000px;}
.ws0_c00030{word-spacing:-17.250000px;}
.ws1_c00030{word-spacing:-0.228000px;}
.ws3_c00030{word-spacing:0.000000px;}
._15_c00030{margin-left:-20.574000px;}
._12_c00030{margin-left:-13.785000px;}
._17_c00030{margin-left:-12.585000px;}
._3_c00030{margin-left:-10.296000px;}
._1c_c00030{margin-left:-8.814000px;}
._6_c00030{margin-left:-7.623000px;}
._9_c00030{margin-left:-6.237000px;}
._8_c00030{margin-left:-4.950000px;}
._0_c00030{margin-left:-3.861000px;}
._1_c00030{margin-left:-2.376000px;}
._7_c00030{margin-left:-1.188000px;}
._2_c00030{width:1.881000px;}
._e_c00030{width:3.588000px;}
._f_c00030{width:4.968000px;}
._d_c00030{width:6.900000px;}
._c_c00030{width:8.202000px;}
._5_c00030{width:10.197000px;}
._4_c00030{width:12.177000px;}
._19_c00030{width:13.197000px;}
._10_c00030{width:14.913000px;}
._11_c00030{width:16.596000px;}
._16_c00030{width:17.721000px;}
._13_c00030{width:19.077000px;}
._b_c00030{width:22.473000px;}
._1d_c00030{width:27.675000px;}
._1a_c00030{width:41.118000px;}
._a_c00030{width:77.319000px;}
._1b_c00030{width:203.427000px;}
._14_c00030{width:210.705000px;}
._18_c00030{width:242.001000px;}
.fc2_c00030{color:transparent;}
.fc1_c00030{color:rgb(128,128,128);}
.fc0_c00030{color:rgb(0,0,0);}
.fs6_c00030{font-size:48.000000px;}
.fs2_c00030{font-size:57.000000px;}
.fs1_c00030{font-size:69.000000px;}
.fs5_c00030{font-size:72.000000px;}
.fs3_c00030{font-size:78.000000px;}
.fs4_c00030{font-size:81.000000px;}
.fs0_c00030{font-size:99.000000px;}
.y0_c00030{bottom:0.000000px;}
.y25_c00030{bottom:3.105000px;}
.y24_c00030{bottom:7.228355px;}
.y23_c00030{bottom:82.035000px;}
.y22_c00030{bottom:108.285000px;}
.y21_c00030{bottom:133.185000px;}
.y20_c00030{bottom:157.935000px;}
.y1f_c00030{bottom:182.835000px;}
.y1e_c00030{bottom:207.585000px;}
.y1d_c00030{bottom:231.885000px;}
.y1c_c00030{bottom:257.085000px;}
.y1b_c00030{bottom:281.385000px;}
.y1a_c00030{bottom:306.135000px;}
.y19_c00030{bottom:330.285000px;}
.y18_c00030{bottom:354.585000px;}
.y17_c00030{bottom:378.585000px;}
.y16_c00030{bottom:403.335000px;}
.y15_c00030{bottom:428.985000px;}
.y14_c00030{bottom:452.535000px;}
.y13_c00030{bottom:476.085000px;}
.y12_c00030{bottom:500.535000px;}
.y11_c00030{bottom:524.835000px;}
.y10_c00030{bottom:549.135000px;}
.yf_c00030{bottom:577.035000px;}
.ye_c00030{bottom:598.035000px;}
.yd_c00030{bottom:622.035000px;}
.yc_c00030{bottom:646.335000px;}
.yb_c00030{bottom:670.485000px;}
.ya_c00030{bottom:694.785000px;}
.y9_c00030{bottom:719.085000px;}
.y8_c00030{bottom:743.835000px;}
.y7_c00030{bottom:768.135000px;}
.y6_c00030{bottom:792.735000px;}
.y5_c00030{bottom:817.035000px;}
.y4_c00030{bottom:841.635000px;}
.y3_c00030{bottom:865.635000px;}
.y2_c00030{bottom:889.935000px;}
.y1_c00030{bottom:923.985000px;}
.h9_c00030{height:13.200074px;}
.ha_c00030{height:43.804688px;}
.h4_c00030{height:72.168457px;}
.h3_c00030{height:72.312000px;}
.h7_c00030{height:79.497070px;}
.h6_c00030{height:84.269531px;}
.h8_c00030{height:91.160156px;}
.h5_c00030{height:98.756836px;}
.h2_c00030{height:115.870605px;}
.h0_c00030{height:980.625000px;}
.h1_c00030{height:981.000000px;}
.w2_c00030{width:104.875500px;}
.w1_c00030{width:672.750000px;}
.w0_c00030{width:672.825000px;}
.x0_c00030{left:0.000000px;}
.x1_c00030{left:25.200000px;}
.x2_c00030{left:27.000000px;}
.x3_c00030{left:28.650000px;}
.x4_c00030{left:30.750000px;}
.x5_c00030{left:31.800000px;}
.x6_c00030{left:33.750000px;}
.x7_c00030{left:34.800000px;}
.x8_c00030{left:36.000000px;}
.x9_c00030{left:37.350000px;}
.xa_c00030{left:38.400000px;}
.xb_c00030{left:39.450000px;}
.xc_c00030{left:41.400000px;}
.xd_c00030{left:43.200000px;}
.xe_c00030{left:44.250000px;}
.xf_c00030{left:45.450000px;}
.x10_c00030{left:46.800000px;}
.x11_c00030{left:48.150000px;}
.x12_c00030{left:49.650000px;}
.x13_c00030{left:50.850000px;}
.x14_c00030{left:52.650000px;}
.x15_c00030{left:288.226730px;}
@media print{
.v0_c00030{vertical-align:0.000000pt;}
.ls1_c00030{letter-spacing:0.000000pt;}
.ls0_c00030{letter-spacing:12.090667pt;}
.ws2_c00030{word-spacing:-15.424000pt;}
.ws0_c00030{word-spacing:-15.333333pt;}
.ws1_c00030{word-spacing:-0.202667pt;}
.ws3_c00030{word-spacing:0.000000pt;}
._15_c00030{margin-left:-18.288000pt;}
._12_c00030{margin-left:-12.253333pt;}
._17_c00030{margin-left:-11.186667pt;}
._3_c00030{margin-left:-9.152000pt;}
._1c_c00030{margin-left:-7.834667pt;}
._6_c00030{margin-left:-6.776000pt;}
._9_c00030{margin-left:-5.544000pt;}
._8_c00030{margin-left:-4.400000pt;}
._0_c00030{margin-left:-3.432000pt;}
._1_c00030{margin-left:-2.112000pt;}
._7_c00030{margin-left:-1.056000pt;}
._2_c00030{width:1.672000pt;}
._e_c00030{width:3.189333pt;}
._f_c00030{width:4.416000pt;}
._d_c00030{width:6.133333pt;}
._c_c00030{width:7.290667pt;}
._5_c00030{width:9.064000pt;}
._4_c00030{width:10.824000pt;}
._19_c00030{width:11.730667pt;}
._10_c00030{width:13.256000pt;}
._11_c00030{width:14.752000pt;}
._16_c00030{width:15.752000pt;}
._13_c00030{width:16.957333pt;}
._b_c00030{width:19.976000pt;}
._1d_c00030{width:24.600000pt;}
._1a_c00030{width:36.549333pt;}
._a_c00030{width:68.728000pt;}
._1b_c00030{width:180.824000pt;}
._14_c00030{width:187.293333pt;}
._18_c00030{width:215.112000pt;}
.fs6_c00030{font-size:42.666667pt;}
.fs2_c00030{font-size:50.666667pt;}
.fs1_c00030{font-size:61.333333pt;}
.fs5_c00030{font-size:64.000000pt;}
.fs3_c00030{font-size:69.333333pt;}
.fs4_c00030{font-size:72.000000pt;}
.fs0_c00030{font-size:88.000000pt;}
.y0_c00030{bottom:0.000000pt;}
.y25_c00030{bottom:2.760000pt;}
.y24_c00030{bottom:6.425204pt;}
.y23_c00030{bottom:72.920000pt;}
.y22_c00030{bottom:96.253333pt;}
.y21_c00030{bottom:118.386667pt;}
.y20_c00030{bottom:140.386667pt;}
.y1f_c00030{bottom:162.520000pt;}
.y1e_c00030{bottom:184.520000pt;}
.y1d_c00030{bottom:206.120000pt;}
.y1c_c00030{bottom:228.520000pt;}
.y1b_c00030{bottom:250.120000pt;}
.y1a_c00030{bottom:272.120000pt;}
.y19_c00030{bottom:293.586667pt;}
.y18_c00030{bottom:315.186667pt;}
.y17_c00030{bottom:336.520000pt;}
.y16_c00030{bottom:358.520000pt;}
.y15_c00030{bottom:381.320000pt;}
.y14_c00030{bottom:402.253333pt;}
.y13_c00030{bottom:423.186667pt;}
.y12_c00030{bottom:444.920000pt;}
.y11_c00030{bottom:466.520000pt;}
.y10_c00030{bottom:488.120000pt;}
.yf_c00030{bottom:512.920000pt;}
.ye_c00030{bottom:531.586667pt;}
.yd_c00030{bottom:552.920000pt;}
.yc_c00030{bottom:574.520000pt;}
.yb_c00030{bottom:595.986667pt;}
.ya_c00030{bottom:617.586667pt;}
.y9_c00030{bottom:639.186667pt;}
.y8_c00030{bottom:661.186667pt;}
.y7_c00030{bottom:682.786667pt;}
.y6_c00030{bottom:704.653333pt;}
.y5_c00030{bottom:726.253333pt;}
.y4_c00030{bottom:748.120000pt;}
.y3_c00030{bottom:769.453333pt;}
.y2_c00030{bottom:791.053333pt;}
.y1_c00030{bottom:821.320000pt;}
.h9_c00030{height:11.733399pt;}
.ha_c00030{height:38.937500pt;}
.h4_c00030{height:64.149740pt;}
.h3_c00030{height:64.277333pt;}
.h7_c00030{height:70.664062pt;}
.h6_c00030{height:74.906250pt;}
.h8_c00030{height:81.031250pt;}
.h5_c00030{height:87.783854pt;}
.h2_c00030{height:102.996094pt;}
.h0_c00030{height:871.666667pt;}
.h1_c00030{height:872.000000pt;}
.w2_c00030{width:93.222667pt;}
.w1_c00030{width:598.000000pt;}
.w0_c00030{width:598.066667pt;}
.x0_c00030{left:0.000000pt;}
.x1_c00030{left:22.400000pt;}
.x2_c00030{left:24.000000pt;}
.x3_c00030{left:25.466667pt;}
.x4_c00030{left:27.333333pt;}
.x5_c00030{left:28.266667pt;}
.x6_c00030{left:30.000000pt;}
.x7_c00030{left:30.933333pt;}
.x8_c00030{left:32.000000pt;}
.x9_c00030{left:33.200000pt;}
.xa_c00030{left:34.133333pt;}
.xb_c00030{left:35.066667pt;}
.xc_c00030{left:36.800000pt;}
.xd_c00030{left:38.400000pt;}
.xe_c00030{left:39.333333pt;}
.xf_c00030{left:40.400000pt;}
.x10_c00030{left:41.600000pt;}
.x11_c00030{left:42.800000pt;}
.x12_c00030{left:44.133333pt;}
.x13_c00030{left:45.200000pt;}
.x14_c00030{left:46.800000pt;}
.x15_c00030{left:256.201538pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b925ddfd604335d2c75ec1ea.woff2')format("woff");}.ff1_c00031{font-family:ff1_c00031;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00031;src:url('chunks/assets/font_59232c52ba1302c185e8307f.woff2')format("woff");}.ff2_c00031{font-family:ff2_c00031;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00031;src:url('chunks/assets/font_5f7d1fa2be6fcda4d74079d1.woff2')format("woff");}.ff3_c00031{font-family:ff3_c00031;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00031;src:url('chunks/assets/font_b69918d42920663c41e68962.woff2')format("woff");}.ff4_c00031{font-family:ff4_c00031;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00031;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c00031{font-family:ff5_c00031;line-height:1.219238;font-style: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);}
.v1_c00031{vertical-align:-15.000000px;}
.v0_c00031{vertical-align:0.000000px;}
.ls2_c00031{letter-spacing:0.000000px;}
.ls0_c00031{letter-spacing:1.440000px;}
.ls3_c00031{letter-spacing:18.000000px;}
.ls1_c00031{letter-spacing:163.860000px;}
.sc__c00031{text-shadow:none;}
.sc0_c00031{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00031{-webkit-text-stroke:0px transparent;}
.sc0_c00031{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00031{word-spacing:-72.306000px;}
.ws0_c00031{word-spacing:-18.810000px;}
.ws1_c00031{word-spacing:-17.352000px;}
.ws3_c00031{word-spacing:0.000000px;}
._1a_c00031{margin-left:-41.391000px;}
._1f_c00031{margin-left:-35.721000px;}
._21_c00031{margin-left:-17.901000px;}
._1e_c00031{margin-left:-13.689000px;}
._13_c00031{margin-left:-11.358000px;}
._25_c00031{margin-left:-9.720000px;}
._19_c00031{margin-left:-8.505000px;}
._8_c00031{margin-left:-7.227000px;}
._b_c00031{margin-left:-6.156000px;}
._3_c00031{margin-left:-5.148000px;}
._2_c00031{margin-left:-3.861000px;}
._4_c00031{margin-left:-2.673000px;}
._9_c00031{margin-left:-1.386000px;}
._d_c00031{width:1.134000px;}
._16_c00031{width:2.475000px;}
._c_c00031{width:3.573000px;}
._0_c00031{width:5.445000px;}
._e_c00031{width:6.615000px;}
._a_c00031{width:7.776000px;}
._11_c00031{width:9.000000px;}
._f_c00031{width:10.287000px;}
._5_c00031{width:12.177000px;}
._6_c00031{width:13.761000px;}
._7_c00031{width:15.345000px;}
._17_c00031{width:16.992000px;}
._18_c00031{width:18.072000px;}
._1b_c00031{width:22.413000px;}
._15_c00031{width:23.733000px;}
._14_c00031{width:25.515000px;}
._10_c00031{width:27.420000px;}
._1d_c00031{width:29.574000px;}
._26_c00031{width:106.263000px;}
._24_c00031{width:112.590000px;}
._12_c00031{width:180.477000px;}
._1c_c00031{width:199.620000px;}
._1_c00031{width:217.107000px;}
._22_c00031{width:228.177000px;}
._20_c00031{width:274.347000px;}
._27_c00031{width:278.061000px;}
._28_c00031{width:399.393000px;}
._23_c00031{width:957.060000px;}
.fc2_c00031{color:transparent;}
.fc1_c00031{color:rgb(128,128,128);}
.fc0_c00031{color:rgb(0,0,0);}
.fs7_c00031{font-size:48.000000px;}
.fs4_c00031{font-size:60.000000px;}
.fs5_c00031{font-size:66.000000px;}
.fs3_c00031{font-size:72.000000px;}
.fs6_c00031{font-size:78.000000px;}
.fs2_c00031{font-size:81.000000px;}
.fs1_c00031{font-size:99.000000px;}
.fs0_c00031{font-size:132.000000px;}
.y0_c00031{bottom:0.000000px;}
.y27_c00031{bottom:3.105000px;}
.y26_c00031{bottom:7.228357px;}
.y24_c00031{bottom:59.430000px;}
.y23_c00031{bottom:81.780000px;}
.y22_c00031{bottom:106.680000px;}
.y21_c00031{bottom:130.380000px;}
.y20_c00031{bottom:155.580000px;}
.y1f_c00031{bottom:181.530000px;}
.y1e_c00031{bottom:206.280000px;}
.y1d_c00031{bottom:231.180000px;}
.y1c_c00031{bottom:255.930000px;}
.y1b_c00031{bottom:280.830000px;}
.y1a_c00031{bottom:305.130000px;}
.y19_c00031{bottom:331.830000px;}
.y18_c00031{bottom:353.130000px;}
.y17_c00031{bottom:377.730000px;}
.y16_c00031{bottom:402.630000px;}
.y15_c00031{bottom:427.230000px;}
.y14_c00031{bottom:451.680000px;}
.y13_c00031{bottom:475.530000px;}
.y12_c00031{bottom:500.280000px;}
.y11_c00031{bottom:524.130000px;}
.y10_c00031{bottom:548.430000px;}
.yf_c00031{bottom:573.480000px;}
.ye_c00031{bottom:598.380000px;}
.yd_c00031{bottom:622.080000px;}
.yc_c00031{bottom:647.430000px;}
.yb_c00031{bottom:672.930000px;}
.ya_c00031{bottom:694.980000px;}
.y9_c00031{bottom:720.180000px;}
.y8_c00031{bottom:744.480000px;}
.y25_c00031{bottom:747.630000px;}
.y7_c00031{bottom:768.780000px;}
.y6_c00031{bottom:793.230000px;}
.y5_c00031{bottom:817.830000px;}
.y4_c00031{bottom:847.230000px;}
.y3_c00031{bottom:866.430000px;}
.y2_c00031{bottom:890.280000px;}
.y1_c00031{bottom:928.830000px;}
.h6_c00031{height:13.200074px;}
.h7_c00031{height:43.804688px;}
.h3_c00031{height:75.966797px;}
.h4_c00031{height:79.497070px;}
.h2_c00031{height:84.269531px;}
.h5_c00031{height:98.756836px;}
.h1_c00031{height:167.126953px;}
.h0_c00031{height:995.250000px;}
.w2_c00031{width:104.875500px;}
.w1_c00031{width:680.250000px;}
.w0_c00031{width:680.400000px;}
.x0_c00031{left:0.000000px;}
.x14_c00031{left:39.450000px;}
.xb_c00031{left:46.950000px;}
.x12_c00031{left:54.300000px;}
.x11_c00031{left:60.300000px;}
.x13_c00031{left:74.250000px;}
.xe_c00031{left:123.900000px;}
.xa_c00031{left:130.950000px;}
.xd_c00031{left:132.300000px;}
.x10_c00031{left:135.000000px;}
.xf_c00031{left:136.350000px;}
.xc_c00031{left:138.000000px;}
.x9_c00031{left:139.650000px;}
.x8_c00031{left:141.000000px;}
.x7_c00031{left:142.050000px;}
.x6_c00031{left:144.150000px;}
.x4_c00031{left:148.200000px;}
.x2_c00031{left:149.400000px;}
.x1_c00031{left:154.200000px;}
.x3_c00031{left:193.800000px;}
.x5_c00031{left:199.350000px;}
.x17_c00031{left:292.014267px;}
.x15_c00031{left:549.000000px;}
.x16_c00031{left:651.600000px;}
@media print{
.v1_c00031{vertical-align:-13.333333pt;}
.v0_c00031{vertical-align:0.000000pt;}
.ls2_c00031{letter-spacing:0.000000pt;}
.ls0_c00031{letter-spacing:1.280000pt;}
.ls3_c00031{letter-spacing:16.000000pt;}
.ls1_c00031{letter-spacing:145.653333pt;}
.ws2_c00031{word-spacing:-64.272000pt;}
.ws0_c00031{word-spacing:-16.720000pt;}
.ws1_c00031{word-spacing:-15.424000pt;}
.ws3_c00031{word-spacing:0.000000pt;}
._1a_c00031{margin-left:-36.792000pt;}
._1f_c00031{margin-left:-31.752000pt;}
._21_c00031{margin-left:-15.912000pt;}
._1e_c00031{margin-left:-12.168000pt;}
._13_c00031{margin-left:-10.096000pt;}
._25_c00031{margin-left:-8.640000pt;}
._19_c00031{margin-left:-7.560000pt;}
._8_c00031{margin-left:-6.424000pt;}
._b_c00031{margin-left:-5.472000pt;}
._3_c00031{margin-left:-4.576000pt;}
._2_c00031{margin-left:-3.432000pt;}
._4_c00031{margin-left:-2.376000pt;}
._9_c00031{margin-left:-1.232000pt;}
._d_c00031{width:1.008000pt;}
._16_c00031{width:2.200000pt;}
._c_c00031{width:3.176000pt;}
._0_c00031{width:4.840000pt;}
._e_c00031{width:5.880000pt;}
._a_c00031{width:6.912000pt;}
._11_c00031{width:8.000000pt;}
._f_c00031{width:9.144000pt;}
._5_c00031{width:10.824000pt;}
._6_c00031{width:12.232000pt;}
._7_c00031{width:13.640000pt;}
._17_c00031{width:15.104000pt;}
._18_c00031{width:16.064000pt;}
._1b_c00031{width:19.922667pt;}
._15_c00031{width:21.096000pt;}
._14_c00031{width:22.680000pt;}
._10_c00031{width:24.373333pt;}
._1d_c00031{width:26.288000pt;}
._26_c00031{width:94.456000pt;}
._24_c00031{width:100.080000pt;}
._12_c00031{width:160.424000pt;}
._1c_c00031{width:177.440000pt;}
._1_c00031{width:192.984000pt;}
._22_c00031{width:202.824000pt;}
._20_c00031{width:243.864000pt;}
._27_c00031{width:247.165333pt;}
._28_c00031{width:355.016000pt;}
._23_c00031{width:850.720000pt;}
.fs7_c00031{font-size:42.666667pt;}
.fs4_c00031{font-size:53.333333pt;}
.fs5_c00031{font-size:58.666667pt;}
.fs3_c00031{font-size:64.000000pt;}
.fs6_c00031{font-size:69.333333pt;}
.fs2_c00031{font-size:72.000000pt;}
.fs1_c00031{font-size:88.000000pt;}
.fs0_c00031{font-size:117.333333pt;}
.y0_c00031{bottom:0.000000pt;}
.y27_c00031{bottom:2.760000pt;}
.y26_c00031{bottom:6.425206pt;}
.y24_c00031{bottom:52.826667pt;}
.y23_c00031{bottom:72.693333pt;}
.y22_c00031{bottom:94.826667pt;}
.y21_c00031{bottom:115.893333pt;}
.y20_c00031{bottom:138.293333pt;}
.y1f_c00031{bottom:161.360000pt;}
.y1e_c00031{bottom:183.360000pt;}
.y1d_c00031{bottom:205.493333pt;}
.y1c_c00031{bottom:227.493333pt;}
.y1b_c00031{bottom:249.626667pt;}
.y1a_c00031{bottom:271.226667pt;}
.y19_c00031{bottom:294.960000pt;}
.y18_c00031{bottom:313.893333pt;}
.y17_c00031{bottom:335.760000pt;}
.y16_c00031{bottom:357.893333pt;}
.y15_c00031{bottom:379.760000pt;}
.y14_c00031{bottom:401.493333pt;}
.y13_c00031{bottom:422.693333pt;}
.y12_c00031{bottom:444.693333pt;}
.y11_c00031{bottom:465.893333pt;}
.y10_c00031{bottom:487.493333pt;}
.yf_c00031{bottom:509.760000pt;}
.ye_c00031{bottom:531.893333pt;}
.yd_c00031{bottom:552.960000pt;}
.yc_c00031{bottom:575.493333pt;}
.yb_c00031{bottom:598.160000pt;}
.ya_c00031{bottom:617.760000pt;}
.y9_c00031{bottom:640.160000pt;}
.y8_c00031{bottom:661.760000pt;}
.y25_c00031{bottom:664.560000pt;}
.y7_c00031{bottom:683.360000pt;}
.y6_c00031{bottom:705.093333pt;}
.y5_c00031{bottom:726.960000pt;}
.y4_c00031{bottom:753.093333pt;}
.y3_c00031{bottom:770.160000pt;}
.y2_c00031{bottom:791.360000pt;}
.y1_c00031{bottom:825.626667pt;}
.h6_c00031{height:11.733399pt;}
.h7_c00031{height:38.937500pt;}
.h3_c00031{height:67.526042pt;}
.h4_c00031{height:70.664062pt;}
.h2_c00031{height:74.906250pt;}
.h5_c00031{height:87.783854pt;}
.h1_c00031{height:148.557292pt;}
.h0_c00031{height:884.666667pt;}
.w2_c00031{width:93.222667pt;}
.w1_c00031{width:604.666667pt;}
.w0_c00031{width:604.800000pt;}
.x0_c00031{left:0.000000pt;}
.x14_c00031{left:35.066667pt;}
.xb_c00031{left:41.733333pt;}
.x12_c00031{left:48.266667pt;}
.x11_c00031{left:53.600000pt;}
.x13_c00031{left:66.000000pt;}
.xe_c00031{left:110.133333pt;}
.xa_c00031{left:116.400000pt;}
.xd_c00031{left:117.600000pt;}
.x10_c00031{left:120.000000pt;}
.xf_c00031{left:121.200000pt;}
.xc_c00031{left:122.666667pt;}
.x9_c00031{left:124.133333pt;}
.x8_c00031{left:125.333333pt;}
.x7_c00031{left:126.266667pt;}
.x6_c00031{left:128.133333pt;}
.x4_c00031{left:131.733333pt;}
.x2_c00031{left:132.800000pt;}
.x1_c00031{left:137.066667pt;}
.x3_c00031{left:172.266667pt;}
.x5_c00031{left:177.200000pt;}
.x17_c00031{left:259.568237pt;}
.x15_c00031{left:488.000000pt;}
.x16_c00031{left:579.200000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_dfadfb18946193c522621405.woff2')format("woff");}.ff1_c00032{font-family:ff1_c00032;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00032;src:url('chunks/assets/font_709d5d7f9cfac1d25665a91b.woff2')format("woff");}.ff2_c00032{font-family:ff2_c00032;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00032;src:url('chunks/assets/font_57cfd403c040794b2abd0d9a.woff2')format("woff");}.ff3_c00032{font-family:ff3_c00032;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00032;src:url('chunks/assets/font_5f87072e090f81e577bd46c9.woff2')format("woff");}.ff4_c00032{font-family:ff4_c00032;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00032;src:url('chunks/assets/font_570ba0531d48781e1d6e51f6.woff2')format("woff");}.ff5_c00032{font-family:ff5_c00032;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00032;src:url('chunks/assets/font_7eee029ce96520bba12b432d.woff2')format("woff");}.ff6_c00032{font-family:ff6_c00032;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00032;src:url('chunks/assets/font_11a35021a7f9071bbfaef76a.woff2')format("woff");}.ff7_c00032{font-family:ff7_c00032;line-height:1.437000;font-style:normal;font-weight: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_c00032;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff8_c00032{font-family:ff8_c00032;line-height:1.219238;font-style: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;}
.ls7_c00032{letter-spacing:-6.000000px;}
.ls6_c00032{letter-spacing:0.000000px;}
.ls4_c00032{letter-spacing:0.900000px;}
.ls1_c00032{letter-spacing:1.740000px;}
.ls0_c00032{letter-spacing:4.200000px;}
.ls5_c00032{letter-spacing:11.700000px;}
.ls3_c00032{letter-spacing:15.600000px;}
.ls2_c00032{letter-spacing:18.864000px;}
.sc__c00032{text-shadow:none;}
.sc0_c00032{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00032{-webkit-text-stroke:0px transparent;}
.sc0_c00032{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00032{word-spacing:-44.346000px;}
.ws3_c00032{word-spacing:-20.250000px;}
.ws4_c00032{word-spacing:-18.798000px;}
.ws5_c00032{word-spacing:-18.750000px;}
.ws1_c00032{word-spacing:-17.352000px;}
.ws6_c00032{word-spacing:0.000000px;}
.ws0_c00032{word-spacing:1.080000px;}
._25_c00032{margin-left:-29.403000px;}
._16_c00032{margin-left:-22.092000px;}
._20_c00032{margin-left:-17.091000px;}
._13_c00032{margin-left:-15.567000px;}
._1c_c00032{margin-left:-13.185000px;}
._19_c00032{margin-left:-11.418000px;}
._7_c00032{margin-left:-10.368000px;}
._1d_c00032{margin-left:-8.991000px;}
._10_c00032{margin-left:-7.911000px;}
._b_c00032{margin-left:-6.543000px;}
._d_c00032{margin-left:-5.253000px;}
._8_c00032{margin-left:-4.230000px;}
._e_c00032{margin-left:-3.099000px;}
._f_c00032{margin-left:-1.266000px;}
._11_c00032{width:1.380000px;}
._a_c00032{width:2.430000px;}
._9_c00032{width:3.645000px;}
._c_c00032{width:4.947000px;}
._1_c00032{width:6.480000px;}
._4_c00032{width:8.160000px;}
._12_c00032{width:9.174000px;}
._3_c00032{width:10.224000px;}
._6_c00032{width:11.448000px;}
._2_c00032{width:12.600000px;}
._5_c00032{width:13.680000px;}
._0_c00032{width:14.688000px;}
._21_c00032{width:17.214000px;}
._14_c00032{width:18.495000px;}
._1a_c00032{width:19.896000px;}
._23_c00032{width:22.740000px;}
._1b_c00032{width:24.234000px;}
._15_c00032{width:34.383000px;}
._1e_c00032{width:121.779000px;}
._24_c00032{width:122.958000px;}
._1f_c00032{width:190.350000px;}
._22_c00032{width:233.832000px;}
._18_c00032{width:268.437000px;}
._17_c00032{width:320.997000px;}
._26_c00032{width:1513.323000px;}
.fc2_c00032{color:transparent;}
.fc1_c00032{color:rgb(128,128,128);}
.fc0_c00032{color:rgb(0,0,0);}
.fs9_c00032{font-size:48.000000px;}
.fs3_c00032{font-size:57.000000px;}
.fs4_c00032{font-size:60.000000px;}
.fs1_c00032{font-size:66.000000px;}
.fs0_c00032{font-size:72.000000px;}
.fs6_c00032{font-size:75.000000px;}
.fs5_c00032{font-size:78.000000px;}
.fs2_c00032{font-size:81.000000px;}
.fs7_c00032{font-size:84.000000px;}
.fs8_c00032{font-size:87.000000px;}
.y0_c00032{bottom:0.000000px;}
.y26_c00032{bottom:3.105000px;}
.y25_c00032{bottom:7.228371px;}
.y24_c00032{bottom:52.665000px;}
.y23_c00032{bottom:76.965000px;}
.y22_c00032{bottom:103.365000px;}
.y21_c00032{bottom:126.315000px;}
.y20_c00032{bottom:150.915000px;}
.y1f_c00032{bottom:175.515000px;}
.y1e_c00032{bottom:200.265000px;}
.y1d_c00032{bottom:224.565000px;}
.y1c_c00032{bottom:249.465000px;}
.y1b_c00032{bottom:273.765000px;}
.y1a_c00032{bottom:297.765000px;}
.y19_c00032{bottom:322.065000px;}
.y18_c00032{bottom:346.065000px;}
.y17_c00032{bottom:370.215000px;}
.y16_c00032{bottom:394.215000px;}
.y15_c00032{bottom:418.515000px;}
.y14_c00032{bottom:442.515000px;}
.y13_c00032{bottom:467.865000px;}
.y12_c00032{bottom:491.715000px;}
.y11_c00032{bottom:515.115000px;}
.y10_c00032{bottom:539.115000px;}
.yf_c00032{bottom:563.415000px;}
.ye_c00032{bottom:587.715000px;}
.yd_c00032{bottom:612.315000px;}
.yc_c00032{bottom:636.915000px;}
.yb_c00032{bottom:660.165000px;}
.ya_c00032{bottom:687.165000px;}
.y9_c00032{bottom:708.165000px;}
.y8_c00032{bottom:732.765000px;}
.y7_c00032{bottom:757.365000px;}
.y6_c00032{bottom:781.665000px;}
.y5_c00032{bottom:805.965000px;}
.y4_c00032{bottom:830.715000px;}
.y3_c00032{bottom:855.015000px;}
.y2_c00032{bottom:879.615000px;}
.y1_c00032{bottom:914.415000px;}
.h8_c00032{height:13.200074px;}
.h9_c00032{height:43.804688px;}
.h5_c00032{height:73.608398px;}
.h3_c00032{height:79.497070px;}
.h6_c00032{height:82.441406px;}
.h2_c00032{height:84.269531px;}
.h7_c00032{height:91.176000px;}
.h4_c00032{height:98.756836px;}
.h0_c00032{height:989.025000px;}
.h1_c00032{height:989.250000px;}
.w2_c00032{width:104.875500px;}
.w1_c00032{width:678.750000px;}
.w0_c00032{width:679.050000px;}
.x0_c00032{left:0.000000px;}
.x1_c00032{left:40.200000px;}
.x2_c00032{left:42.450000px;}
.x3_c00032{left:44.250000px;}
.x4_c00032{left:45.600000px;}
.x5_c00032{left:47.550000px;}
.x6_c00032{left:49.200000px;}
.x7_c00032{left:50.550000px;}
.x8_c00032{left:51.600000px;}
.x9_c00032{left:52.950000px;}
.xb_c00032{left:54.600000px;}
.xc_c00032{left:56.250000px;}
.xe_c00032{left:58.350000px;}
.xf_c00032{left:59.700000px;}
.x10_c00032{left:61.050000px;}
.xd_c00032{left:62.700000px;}
.x11_c00032{left:65.100000px;}
.x12_c00032{left:66.750000px;}
.x13_c00032{left:124.800000px;}
.xa_c00032{left:136.950000px;}
.x14_c00032{left:291.339249px;}
@media print{
.v0_c00032{vertical-align:0.000000pt;}
.ls7_c00032{letter-spacing:-5.333333pt;}
.ls6_c00032{letter-spacing:0.000000pt;}
.ls4_c00032{letter-spacing:0.800000pt;}
.ls1_c00032{letter-spacing:1.546667pt;}
.ls0_c00032{letter-spacing:3.733333pt;}
.ls5_c00032{letter-spacing:10.400000pt;}
.ls3_c00032{letter-spacing:13.866667pt;}
.ls2_c00032{letter-spacing:16.768000pt;}
.ws2_c00032{word-spacing:-39.418667pt;}
.ws3_c00032{word-spacing:-18.000000pt;}
.ws4_c00032{word-spacing:-16.709333pt;}
.ws5_c00032{word-spacing:-16.666667pt;}
.ws1_c00032{word-spacing:-15.424000pt;}
.ws6_c00032{word-spacing:0.000000pt;}
.ws0_c00032{word-spacing:0.960000pt;}
._25_c00032{margin-left:-26.136000pt;}
._16_c00032{margin-left:-19.637333pt;}
._20_c00032{margin-left:-15.192000pt;}
._13_c00032{margin-left:-13.837333pt;}
._1c_c00032{margin-left:-11.720000pt;}
._19_c00032{margin-left:-10.149333pt;}
._7_c00032{margin-left:-9.216000pt;}
._1d_c00032{margin-left:-7.992000pt;}
._10_c00032{margin-left:-7.032000pt;}
._b_c00032{margin-left:-5.816000pt;}
._d_c00032{margin-left:-4.669333pt;}
._8_c00032{margin-left:-3.760000pt;}
._e_c00032{margin-left:-2.754667pt;}
._f_c00032{margin-left:-1.125333pt;}
._11_c00032{width:1.226667pt;}
._a_c00032{width:2.160000pt;}
._9_c00032{width:3.240000pt;}
._c_c00032{width:4.397333pt;}
._1_c00032{width:5.760000pt;}
._4_c00032{width:7.253333pt;}
._12_c00032{width:8.154667pt;}
._3_c00032{width:9.088000pt;}
._6_c00032{width:10.176000pt;}
._2_c00032{width:11.200000pt;}
._5_c00032{width:12.160000pt;}
._0_c00032{width:13.056000pt;}
._21_c00032{width:15.301333pt;}
._14_c00032{width:16.440000pt;}
._1a_c00032{width:17.685333pt;}
._23_c00032{width:20.213333pt;}
._1b_c00032{width:21.541333pt;}
._15_c00032{width:30.562667pt;}
._1e_c00032{width:108.248000pt;}
._24_c00032{width:109.296000pt;}
._1f_c00032{width:169.200000pt;}
._22_c00032{width:207.850667pt;}
._18_c00032{width:238.610667pt;}
._17_c00032{width:285.330667pt;}
._26_c00032{width:1345.176000pt;}
.fs9_c00032{font-size:42.666667pt;}
.fs3_c00032{font-size:50.666667pt;}
.fs4_c00032{font-size:53.333333pt;}
.fs1_c00032{font-size:58.666667pt;}
.fs0_c00032{font-size:64.000000pt;}
.fs6_c00032{font-size:66.666667pt;}
.fs5_c00032{font-size:69.333333pt;}
.fs2_c00032{font-size:72.000000pt;}
.fs7_c00032{font-size:74.666667pt;}
.fs8_c00032{font-size:77.333333pt;}
.y0_c00032{bottom:0.000000pt;}
.y26_c00032{bottom:2.760000pt;}
.y25_c00032{bottom:6.425219pt;}
.y24_c00032{bottom:46.813333pt;}
.y23_c00032{bottom:68.413333pt;}
.y22_c00032{bottom:91.880000pt;}
.y21_c00032{bottom:112.280000pt;}
.y20_c00032{bottom:134.146667pt;}
.y1f_c00032{bottom:156.013333pt;}
.y1e_c00032{bottom:178.013333pt;}
.y1d_c00032{bottom:199.613333pt;}
.y1c_c00032{bottom:221.746667pt;}
.y1b_c00032{bottom:243.346667pt;}
.y1a_c00032{bottom:264.680000pt;}
.y19_c00032{bottom:286.280000pt;}
.y18_c00032{bottom:307.613333pt;}
.y17_c00032{bottom:329.080000pt;}
.y16_c00032{bottom:350.413333pt;}
.y15_c00032{bottom:372.013333pt;}
.y14_c00032{bottom:393.346667pt;}
.y13_c00032{bottom:415.880000pt;}
.y12_c00032{bottom:437.080000pt;}
.y11_c00032{bottom:457.880000pt;}
.y10_c00032{bottom:479.213333pt;}
.yf_c00032{bottom:500.813333pt;}
.ye_c00032{bottom:522.413333pt;}
.yd_c00032{bottom:544.280000pt;}
.yc_c00032{bottom:566.146667pt;}
.yb_c00032{bottom:586.813333pt;}
.ya_c00032{bottom:610.813333pt;}
.y9_c00032{bottom:629.480000pt;}
.y8_c00032{bottom:651.346667pt;}
.y7_c00032{bottom:673.213333pt;}
.y6_c00032{bottom:694.813333pt;}
.y5_c00032{bottom:716.413333pt;}
.y4_c00032{bottom:738.413333pt;}
.y3_c00032{bottom:760.013333pt;}
.y2_c00032{bottom:781.880000pt;}
.y1_c00032{bottom:812.813333pt;}
.h8_c00032{height:11.733399pt;}
.h9_c00032{height:38.937500pt;}
.h5_c00032{height:65.429688pt;}
.h3_c00032{height:70.664062pt;}
.h6_c00032{height:73.281250pt;}
.h2_c00032{height:74.906250pt;}
.h7_c00032{height:81.045333pt;}
.h4_c00032{height:87.783854pt;}
.h0_c00032{height:879.133333pt;}
.h1_c00032{height:879.333333pt;}
.w2_c00032{width:93.222667pt;}
.w1_c00032{width:603.333333pt;}
.w0_c00032{width:603.600000pt;}
.x0_c00032{left:0.000000pt;}
.x1_c00032{left:35.733333pt;}
.x2_c00032{left:37.733333pt;}
.x3_c00032{left:39.333333pt;}
.x4_c00032{left:40.533333pt;}
.x5_c00032{left:42.266667pt;}
.x6_c00032{left:43.733333pt;}
.x7_c00032{left:44.933333pt;}
.x8_c00032{left:45.866667pt;}
.x9_c00032{left:47.066667pt;}
.xb_c00032{left:48.533333pt;}
.xc_c00032{left:50.000000pt;}
.xe_c00032{left:51.866667pt;}
.xf_c00032{left:53.066667pt;}
.x10_c00032{left:54.266667pt;}
.xd_c00032{left:55.733333pt;}
.x11_c00032{left:57.866667pt;}
.x12_c00032{left:59.333333pt;}
.x13_c00032{left:110.933333pt;}
.xa_c00032{left:121.733333pt;}
.x14_c00032{left:258.968221pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_90bafc104a021860f37b0fda.woff2')format("woff");}.ff1_c00033{font-family:ff1_c00033;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00033;src:url('chunks/assets/font_1c3856dda8e925dbf943081c.woff2')format("woff");}.ff2_c00033{font-family:ff2_c00033;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00033;src:url('chunks/assets/font_a586f9893523f0f2029ddeaf.woff2')format("woff");}.ff3_c00033{font-family:ff3_c00033;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00033;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff4_c00033{font-family:ff4_c00033;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00033;src:url('chunks/assets/font_f6cd91ab1cf30991e836bc2b.woff2')format("woff");}.ff5_c00033{font-family:ff5_c00033;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00033;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c00033{font-family:ff6_c00033;line-height:1.219238;font-style: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;}
.ls1_c00033{letter-spacing:0.000000px;}
.ls0_c00033{letter-spacing:6.600000px;}
.ls2_c00033{letter-spacing:9.000000px;}
.sc__c00033{text-shadow:none;}
.sc0_c00033{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00033{-webkit-text-stroke:0px transparent;}
.sc0_c00033{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00033{word-spacing:-17.352000px;}
.ws2_c00033{word-spacing:0.000000px;}
.ws1_c00033{word-spacing:1.653000px;}
._23_c00033{margin-left:-22.659000px;}
._25_c00033{margin-left:-19.725000px;}
._22_c00033{margin-left:-16.581000px;}
._24_c00033{margin-left:-15.027000px;}
._1c_c00033{margin-left:-13.041000px;}
._20_c00033{margin-left:-11.163000px;}
._1a_c00033{margin-left:-9.594000px;}
._26_c00033{margin-left:-8.541000px;}
._17_c00033{margin-left:-6.870000px;}
._16_c00033{margin-left:-5.094000px;}
._18_c00033{margin-left:-3.906000px;}
._15_c00033{margin-left:-2.709000px;}
._13_c00033{margin-left:-1.638000px;}
._0_c00033{width:1.008000px;}
._7_c00033{width:2.880000px;}
._5_c00033{width:4.032000px;}
._6_c00033{width:5.112000px;}
._12_c00033{width:6.525000px;}
._e_c00033{width:7.752000px;}
._f_c00033{width:8.829000px;}
._1_c00033{width:10.584000px;}
._d_c00033{width:12.501000px;}
._1b_c00033{width:14.715000px;}
._a_c00033{width:16.056000px;}
._10_c00033{width:17.499000px;}
._b_c00033{width:19.296000px;}
._8_c00033{width:20.952000px;}
._c_c00033{width:22.464000px;}
._14_c00033{width:24.495000px;}
._11_c00033{width:26.916000px;}
._9_c00033{width:28.944000px;}
._2_c00033{width:37.800000px;}
._4_c00033{width:54.588000px;}
._1e_c00033{width:57.798000px;}
._1f_c00033{width:70.773000px;}
._1d_c00033{width:217.782000px;}
._3_c00033{width:226.071000px;}
._21_c00033{width:241.296000px;}
._19_c00033{width:351.930000px;}
.fc2_c00033{color:transparent;}
.fc1_c00033{color:rgb(128,128,128);}
.fc0_c00033{color:rgb(0,0,0);}
.fs6_c00033{font-size:48.000000px;}
.fs2_c00033{font-size:57.000000px;}
.fs5_c00033{font-size:66.000000px;}
.fs0_c00033{font-size:72.000000px;}
.fs3_c00033{font-size:75.000000px;}
.fs1_c00033{font-size:81.000000px;}
.fs4_c00033{font-size:84.000000px;}
.y0_c00033{bottom:0.000000px;}
.y25_c00033{bottom:3.105000px;}
.y24_c00033{bottom:7.228357px;}
.y23_c00033{bottom:74.580000px;}
.y22_c00033{bottom:99.630000px;}
.y21_c00033{bottom:125.280000px;}
.y20_c00033{bottom:149.280000px;}
.y1f_c00033{bottom:176.130000px;}
.y1e_c00033{bottom:199.830000px;}
.y1d_c00033{bottom:224.130000px;}
.y1c_c00033{bottom:248.430000px;}
.y1b_c00033{bottom:272.430000px;}
.y1a_c00033{bottom:297.630000px;}
.y19_c00033{bottom:324.630000px;}
.y18_c00033{bottom:345.030000px;}
.y17_c00033{bottom:369.930000px;}
.y16_c00033{bottom:394.230000px;}
.y15_c00033{bottom:418.530000px;}
.y14_c00033{bottom:443.580000px;}
.y13_c00033{bottom:468.480000px;}
.y12_c00033{bottom:491.730000px;}
.y11_c00033{bottom:516.030000px;}
.y10_c00033{bottom:540.780000px;}
.yf_c00033{bottom:565.080000px;}
.ye_c00033{bottom:589.980000px;}
.yd_c00033{bottom:613.980000px;}
.yc_c00033{bottom:638.880000px;}
.yb_c00033{bottom:662.880000px;}
.ya_c00033{bottom:687.480000px;}
.y9_c00033{bottom:711.780000px;}
.y8_c00033{bottom:735.030000px;}
.y7_c00033{bottom:760.380000px;}
.y6_c00033{bottom:785.130000px;}
.y5_c00033{bottom:809.730000px;}
.y4_c00033{bottom:834.030000px;}
.y3_c00033{bottom:859.380000px;}
.y2_c00033{bottom:882.930000px;}
.y1_c00033{bottom:920.730000px;}
.h9_c00033{height:13.200074px;}
.ha_c00033{height:43.804688px;}
.h2_c00033{height:57.445312px;}
.h8_c00033{height:72.168457px;}
.h6_c00033{height:73.571777px;}
.h7_c00033{height:73.608398px;}
.h3_c00033{height:79.497070px;}
.h5_c00033{height:82.441406px;}
.h1_c00033{height:84.269531px;}
.h4_c00033{height:91.160156px;}
.h0_c00033{height:995.250000px;}
.w2_c00033{width:104.875500px;}
.w1_c00033{width:680.250000px;}
.w0_c00033{width:680.400000px;}
.x0_c00033{left:0.000000px;}
.x9_c00033{left:49.650000px;}
.xa_c00033{left:52.950000px;}
.xd_c00033{left:138.750000px;}
.xf_c00033{left:139.950000px;}
.xc_c00033{left:141.300000px;}
.xe_c00033{left:142.800000px;}
.xb_c00033{left:144.000000px;}
.x8_c00033{left:145.050000px;}
.x7_c00033{left:148.050000px;}
.x6_c00033{left:149.400000px;}
.x5_c00033{left:150.450000px;}
.x3_c00033{left:152.100000px;}
.x2_c00033{left:153.900000px;}
.x1_c00033{left:154.950000px;}
.x4_c00033{left:176.400000px;}
.x10_c00033{left:292.014267px;}
@media print{
.v0_c00033{vertical-align:0.000000pt;}
.ls1_c00033{letter-spacing:0.000000pt;}
.ls0_c00033{letter-spacing:5.866667pt;}
.ls2_c00033{letter-spacing:8.000000pt;}
.ws0_c00033{word-spacing:-15.424000pt;}
.ws2_c00033{word-spacing:0.000000pt;}
.ws1_c00033{word-spacing:1.469333pt;}
._23_c00033{margin-left:-20.141333pt;}
._25_c00033{margin-left:-17.533333pt;}
._22_c00033{margin-left:-14.738667pt;}
._24_c00033{margin-left:-13.357333pt;}
._1c_c00033{margin-left:-11.592000pt;}
._20_c00033{margin-left:-9.922667pt;}
._1a_c00033{margin-left:-8.528000pt;}
._26_c00033{margin-left:-7.592000pt;}
._17_c00033{margin-left:-6.106667pt;}
._16_c00033{margin-left:-4.528000pt;}
._18_c00033{margin-left:-3.472000pt;}
._15_c00033{margin-left:-2.408000pt;}
._13_c00033{margin-left:-1.456000pt;}
._0_c00033{width:0.896000pt;}
._7_c00033{width:2.560000pt;}
._5_c00033{width:3.584000pt;}
._6_c00033{width:4.544000pt;}
._12_c00033{width:5.800000pt;}
._e_c00033{width:6.890667pt;}
._f_c00033{width:7.848000pt;}
._1_c00033{width:9.408000pt;}
._d_c00033{width:11.112000pt;}
._1b_c00033{width:13.080000pt;}
._a_c00033{width:14.272000pt;}
._10_c00033{width:15.554667pt;}
._b_c00033{width:17.152000pt;}
._8_c00033{width:18.624000pt;}
._c_c00033{width:19.968000pt;}
._14_c00033{width:21.773333pt;}
._11_c00033{width:23.925333pt;}
._9_c00033{width:25.728000pt;}
._2_c00033{width:33.600000pt;}
._4_c00033{width:48.522667pt;}
._1e_c00033{width:51.376000pt;}
._1f_c00033{width:62.909333pt;}
._1d_c00033{width:193.584000pt;}
._3_c00033{width:200.952000pt;}
._21_c00033{width:214.485333pt;}
._19_c00033{width:312.826667pt;}
.fs6_c00033{font-size:42.666667pt;}
.fs2_c00033{font-size:50.666667pt;}
.fs5_c00033{font-size:58.666667pt;}
.fs0_c00033{font-size:64.000000pt;}
.fs3_c00033{font-size:66.666667pt;}
.fs1_c00033{font-size:72.000000pt;}
.fs4_c00033{font-size:74.666667pt;}
.y0_c00033{bottom:0.000000pt;}
.y25_c00033{bottom:2.760000pt;}
.y24_c00033{bottom:6.425206pt;}
.y23_c00033{bottom:66.293333pt;}
.y22_c00033{bottom:88.560000pt;}
.y21_c00033{bottom:111.360000pt;}
.y20_c00033{bottom:132.693333pt;}
.y1f_c00033{bottom:156.560000pt;}
.y1e_c00033{bottom:177.626667pt;}
.y1d_c00033{bottom:199.226667pt;}
.y1c_c00033{bottom:220.826667pt;}
.y1b_c00033{bottom:242.160000pt;}
.y1a_c00033{bottom:264.560000pt;}
.y19_c00033{bottom:288.560000pt;}
.y18_c00033{bottom:306.693333pt;}
.y17_c00033{bottom:328.826667pt;}
.y16_c00033{bottom:350.426667pt;}
.y15_c00033{bottom:372.026667pt;}
.y14_c00033{bottom:394.293333pt;}
.y13_c00033{bottom:416.426667pt;}
.y12_c00033{bottom:437.093333pt;}
.y11_c00033{bottom:458.693333pt;}
.y10_c00033{bottom:480.693333pt;}
.yf_c00033{bottom:502.293333pt;}
.ye_c00033{bottom:524.426667pt;}
.yd_c00033{bottom:545.760000pt;}
.yc_c00033{bottom:567.893333pt;}
.yb_c00033{bottom:589.226667pt;}
.ya_c00033{bottom:611.093333pt;}
.y9_c00033{bottom:632.693333pt;}
.y8_c00033{bottom:653.360000pt;}
.y7_c00033{bottom:675.893333pt;}
.y6_c00033{bottom:697.893333pt;}
.y5_c00033{bottom:719.760000pt;}
.y4_c00033{bottom:741.360000pt;}
.y3_c00033{bottom:763.893333pt;}
.y2_c00033{bottom:784.826667pt;}
.y1_c00033{bottom:818.426667pt;}
.h9_c00033{height:11.733399pt;}
.ha_c00033{height:38.937500pt;}
.h2_c00033{height:51.062500pt;}
.h8_c00033{height:64.149740pt;}
.h6_c00033{height:65.397135pt;}
.h7_c00033{height:65.429688pt;}
.h3_c00033{height:70.664062pt;}
.h5_c00033{height:73.281250pt;}
.h1_c00033{height:74.906250pt;}
.h4_c00033{height:81.031250pt;}
.h0_c00033{height:884.666667pt;}
.w2_c00033{width:93.222667pt;}
.w1_c00033{width:604.666667pt;}
.w0_c00033{width:604.800000pt;}
.x0_c00033{left:0.000000pt;}
.x9_c00033{left:44.133333pt;}
.xa_c00033{left:47.066667pt;}
.xd_c00033{left:123.333333pt;}
.xf_c00033{left:124.400000pt;}
.xc_c00033{left:125.600000pt;}
.xe_c00033{left:126.933333pt;}
.xb_c00033{left:128.000000pt;}
.x8_c00033{left:128.933333pt;}
.x7_c00033{left:131.600000pt;}
.x6_c00033{left:132.800000pt;}
.x5_c00033{left:133.733333pt;}
.x3_c00033{left:135.200000pt;}
.x2_c00033{left:136.800000pt;}
.x1_c00033{left:137.733333pt;}
.x4_c00033{left:156.800000pt;}
.x10_c00033{left:259.568237pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b538d07ed0ea3b6364d29cec.woff2')format("woff");}.ff1_c00034{font-family:ff1_c00034;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00034;src:url('chunks/assets/font_9c2ce3481f0ecd481e46e65e.woff2')format("woff");}.ff2_c00034{font-family:ff2_c00034;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00034;src:url('chunks/assets/font_fec54f9970f8d507786ea6d7.woff2')format("woff");}.ff3_c00034{font-family:ff3_c00034;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00034;src:url('chunks/assets/font_0bdd57692834b35a59e5788b.woff2')format("woff");}.ff4_c00034{font-family:ff4_c00034;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00034;src:url('chunks/assets/font_1ebb2cd5ac4b62c91c4ae6f6.woff2')format("woff");}.ff5_c00034{font-family:ff5_c00034;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00034;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c00034{font-family:ff6_c00034;line-height:1.219238;font-style: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;}
.ls4_c00034{letter-spacing:-9.000000px;}
.ls2_c00034{letter-spacing:0.000000px;}
.ls5_c00034{letter-spacing:3.000000px;}
.ls1_c00034{letter-spacing:5.700000px;}
.ls3_c00034{letter-spacing:21.000000px;}
.ls0_c00034{letter-spacing:32.688000px;}
.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;}
}
.ws3_c00034{word-spacing:-20.250000px;}
.ws2_c00034{word-spacing:-17.352000px;}
.ws1_c00034{word-spacing:-13.737000px;}
.ws4_c00034{word-spacing:0.000000px;}
.ws0_c00034{word-spacing:10.881000px;}
._8_c00034{margin-left:-36.432000px;}
._20_c00034{margin-left:-15.696000px;}
._f_c00034{margin-left:-13.668000px;}
._1a_c00034{margin-left:-12.393000px;}
._1e_c00034{margin-left:-10.449000px;}
._2_c00034{margin-left:-7.623000px;}
._4_c00034{margin-left:-6.435000px;}
._1_c00034{margin-left:-5.049000px;}
._6_c00034{margin-left:-3.267000px;}
._0_c00034{margin-left:-1.980000px;}
._b_c00034{width:1.395000px;}
._5_c00034{width:2.574000px;}
._9_c00034{width:4.104000px;}
._11_c00034{width:5.250000px;}
._a_c00034{width:6.348000px;}
._e_c00034{width:7.923000px;}
._13_c00034{width:9.003000px;}
._3_c00034{width:10.197000px;}
._10_c00034{width:11.289000px;}
._12_c00034{width:13.062000px;}
._14_c00034{width:14.388000px;}
._18_c00034{width:15.450000px;}
._16_c00034{width:17.400000px;}
._17_c00034{width:20.280000px;}
._15_c00034{width:21.594000px;}
._c_c00034{width:25.371000px;}
._1b_c00034{width:28.701000px;}
._d_c00034{width:33.399000px;}
._19_c00034{width:35.841000px;}
._7_c00034{width:42.651000px;}
._1f_c00034{width:67.809000px;}
._1d_c00034{width:186.600000px;}
._1c_c00034{width:192.324000px;}
._21_c00034{width:330.822000px;}
.fc2_c00034{color:transparent;}
.fc1_c00034{color:rgb(128,128,128);}
.fc0_c00034{color:rgb(0,0,0);}
.fs6_c00034{font-size:30.000000px;}
.fs8_c00034{font-size:48.000000px;}
.fs2_c00034{font-size:57.000000px;}
.fs4_c00034{font-size:72.000000px;}
.fs3_c00034{font-size:78.000000px;}
.fs5_c00034{font-size:81.000000px;}
.fs7_c00034{font-size:87.000000px;}
.fs0_c00034{font-size:99.000000px;}
.fs1_c00034{font-size:132.000000px;}
.y0_c00034{bottom:0.000000px;}
.y26_c00034{bottom:3.105000px;}
.y25_c00034{bottom:7.228371px;}
.y24_c00034{bottom:66.465000px;}
.y23_c00034{bottom:88.815000px;}
.y22_c00034{bottom:113.715000px;}
.y21_c00034{bottom:138.015000px;}
.y20_c00034{bottom:162.465000px;}
.y1f_c00034{bottom:186.765000px;}
.y1e_c00034{bottom:211.665000px;}
.y1d_c00034{bottom:236.265000px;}
.y1c_c00034{bottom:260.865000px;}
.y1b_c00034{bottom:285.615000px;}
.y1a_c00034{bottom:309.915000px;}
.y19_c00034{bottom:333.915000px;}
.y18_c00034{bottom:358.515000px;}
.y17_c00034{bottom:382.365000px;}
.y16_c00034{bottom:407.415000px;}
.y15_c00034{bottom:431.415000px;}
.y14_c00034{bottom:455.415000px;}
.y13_c00034{bottom:480.615000px;}
.y12_c00034{bottom:504.315000px;}
.y11_c00034{bottom:528.315000px;}
.y10_c00034{bottom:552.615000px;}
.yf_c00034{bottom:577.215000px;}
.ye_c00034{bottom:603.165000px;}
.yd_c00034{bottom:625.815000px;}
.yc_c00034{bottom:650.115000px;}
.yb_c00034{bottom:675.315000px;}
.ya_c00034{bottom:698.715000px;}
.y9_c00034{bottom:723.015000px;}
.y8_c00034{bottom:747.315000px;}
.y7_c00034{bottom:771.915000px;}
.y6_c00034{bottom:796.965000px;}
.y5_c00034{bottom:821.115000px;}
.y4_c00034{bottom:845.415000px;}
.y3_c00034{bottom:870.165000px;}
.y2_c00034{bottom:894.165000px;}
.y1_c00034{bottom:928.815000px;}
.h8_c00034{height:13.200074px;}
.h9_c00034{height:43.804688px;}
.h5_c00034{height:79.497070px;}
.h4_c00034{height:84.269531px;}
.h6_c00034{height:91.160156px;}
.h7_c00034{height:91.176000px;}
.h3_c00034{height:98.756836px;}
.h2_c00034{height:167.126953px;}
.h0_c00034{height:989.025000px;}
.h1_c00034{height:989.250000px;}
.w2_c00034{width:104.875500px;}
.w1_c00034{width:678.750000px;}
.w0_c00034{width:679.050000px;}
.x0_c00034{left:0.000000px;}
.x7_c00034{left:35.400000px;}
.x6_c00034{left:36.900000px;}
.x4_c00034{left:38.400000px;}
.x2_c00034{left:39.450000px;}
.x3_c00034{left:40.500000px;}
.x1_c00034{left:43.500000px;}
.x5_c00034{left:64.050000px;}
.x9_c00034{left:291.339249px;}
.x8_c00034{left:346.500000px;}
@media print{
.v0_c00034{vertical-align:0.000000pt;}
.ls4_c00034{letter-spacing:-8.000000pt;}
.ls2_c00034{letter-spacing:0.000000pt;}
.ls5_c00034{letter-spacing:2.666667pt;}
.ls1_c00034{letter-spacing:5.066667pt;}
.ls3_c00034{letter-spacing:18.666667pt;}
.ls0_c00034{letter-spacing:29.056000pt;}
.ws3_c00034{word-spacing:-18.000000pt;}
.ws2_c00034{word-spacing:-15.424000pt;}
.ws1_c00034{word-spacing:-12.210667pt;}
.ws4_c00034{word-spacing:0.000000pt;}
.ws0_c00034{word-spacing:9.672000pt;}
._8_c00034{margin-left:-32.384000pt;}
._20_c00034{margin-left:-13.952000pt;}
._f_c00034{margin-left:-12.149333pt;}
._1a_c00034{margin-left:-11.016000pt;}
._1e_c00034{margin-left:-9.288000pt;}
._2_c00034{margin-left:-6.776000pt;}
._4_c00034{margin-left:-5.720000pt;}
._1_c00034{margin-left:-4.488000pt;}
._6_c00034{margin-left:-2.904000pt;}
._0_c00034{margin-left:-1.760000pt;}
._b_c00034{width:1.240000pt;}
._5_c00034{width:2.288000pt;}
._9_c00034{width:3.648000pt;}
._11_c00034{width:4.666667pt;}
._a_c00034{width:5.642667pt;}
._e_c00034{width:7.042667pt;}
._13_c00034{width:8.002667pt;}
._3_c00034{width:9.064000pt;}
._10_c00034{width:10.034667pt;}
._12_c00034{width:11.610667pt;}
._14_c00034{width:12.789333pt;}
._18_c00034{width:13.733333pt;}
._16_c00034{width:15.466667pt;}
._17_c00034{width:18.026667pt;}
._15_c00034{width:19.194667pt;}
._c_c00034{width:22.552000pt;}
._1b_c00034{width:25.512000pt;}
._d_c00034{width:29.688000pt;}
._19_c00034{width:31.858667pt;}
._7_c00034{width:37.912000pt;}
._1f_c00034{width:60.274667pt;}
._1d_c00034{width:165.866667pt;}
._1c_c00034{width:170.954667pt;}
._21_c00034{width:294.064000pt;}
.fs6_c00034{font-size:26.666667pt;}
.fs8_c00034{font-size:42.666667pt;}
.fs2_c00034{font-size:50.666667pt;}
.fs4_c00034{font-size:64.000000pt;}
.fs3_c00034{font-size:69.333333pt;}
.fs5_c00034{font-size:72.000000pt;}
.fs7_c00034{font-size:77.333333pt;}
.fs0_c00034{font-size:88.000000pt;}
.fs1_c00034{font-size:117.333333pt;}
.y0_c00034{bottom:0.000000pt;}
.y26_c00034{bottom:2.760000pt;}
.y25_c00034{bottom:6.425219pt;}
.y24_c00034{bottom:59.080000pt;}
.y23_c00034{bottom:78.946667pt;}
.y22_c00034{bottom:101.080000pt;}
.y21_c00034{bottom:122.680000pt;}
.y20_c00034{bottom:144.413333pt;}
.y1f_c00034{bottom:166.013333pt;}
.y1e_c00034{bottom:188.146667pt;}
.y1d_c00034{bottom:210.013333pt;}
.y1c_c00034{bottom:231.880000pt;}
.y1b_c00034{bottom:253.880000pt;}
.y1a_c00034{bottom:275.480000pt;}
.y19_c00034{bottom:296.813333pt;}
.y18_c00034{bottom:318.680000pt;}
.y17_c00034{bottom:339.880000pt;}
.y16_c00034{bottom:362.146667pt;}
.y15_c00034{bottom:383.480000pt;}
.y14_c00034{bottom:404.813333pt;}
.y13_c00034{bottom:427.213333pt;}
.y12_c00034{bottom:448.280000pt;}
.y11_c00034{bottom:469.613333pt;}
.y10_c00034{bottom:491.213333pt;}
.yf_c00034{bottom:513.080000pt;}
.ye_c00034{bottom:536.146667pt;}
.yd_c00034{bottom:556.280000pt;}
.yc_c00034{bottom:577.880000pt;}
.yb_c00034{bottom:600.280000pt;}
.ya_c00034{bottom:621.080000pt;}
.y9_c00034{bottom:642.680000pt;}
.y8_c00034{bottom:664.280000pt;}
.y7_c00034{bottom:686.146667pt;}
.y6_c00034{bottom:708.413333pt;}
.y5_c00034{bottom:729.880000pt;}
.y4_c00034{bottom:751.480000pt;}
.y3_c00034{bottom:773.480000pt;}
.y2_c00034{bottom:794.813333pt;}
.y1_c00034{bottom:825.613333pt;}
.h8_c00034{height:11.733399pt;}
.h9_c00034{height:38.937500pt;}
.h5_c00034{height:70.664062pt;}
.h4_c00034{height:74.906250pt;}
.h6_c00034{height:81.031250pt;}
.h7_c00034{height:81.045333pt;}
.h3_c00034{height:87.783854pt;}
.h2_c00034{height:148.557292pt;}
.h0_c00034{height:879.133333pt;}
.h1_c00034{height:879.333333pt;}
.w2_c00034{width:93.222667pt;}
.w1_c00034{width:603.333333pt;}
.w0_c00034{width:603.600000pt;}
.x0_c00034{left:0.000000pt;}
.x7_c00034{left:31.466667pt;}
.x6_c00034{left:32.800000pt;}
.x4_c00034{left:34.133333pt;}
.x2_c00034{left:35.066667pt;}
.x3_c00034{left:36.000000pt;}
.x1_c00034{left:38.666667pt;}
.x5_c00034{left:56.933333pt;}
.x9_c00034{left:258.968221pt;}
.x8_c00034{left:308.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_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_533bb27306a0c99e85e8ddd7.woff2')format("woff");}.ff1_c00035{font-family:ff1_c00035;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00035;src:url('chunks/assets/font_48edc8882742deeb92b5533e.woff2')format("woff");}.ff2_c00035{font-family:ff2_c00035;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00035;src:url('chunks/assets/font_428a6c21965df62a20e32264.woff2')format("woff");}.ff3_c00035{font-family:ff3_c00035;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00035;src:url('chunks/assets/font_2b563ccb00cc885f7fed8792.woff2')format("woff");}.ff4_c00035{font-family:ff4_c00035;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00035;src:url('chunks/assets/font_a21972797f19659e616e2768.woff2')format("woff");}.ff5_c00035{font-family:ff5_c00035;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00035;src:url('chunks/assets/font_7eeb3a224bad3b98d1f618b8.woff2')format("woff");}.ff6_c00035{font-family:ff6_c00035;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00035;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c00035{font-family:ff7_c00035;line-height:1.219238;font-style: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;}
.ls7_c00035{letter-spacing:-6.000000px;}
.ls3_c00035{letter-spacing:0.000000px;}
.ls0_c00035{letter-spacing:3.000000px;}
.ls1_c00035{letter-spacing:4.350000px;}
.ls6_c00035{letter-spacing:6.000000px;}
.ls2_c00035{letter-spacing:6.300000px;}
.ls5_c00035{letter-spacing:9.000000px;}
.ls4_c00035{letter-spacing:21.000000px;}
.sc__c00035{text-shadow:none;}
.sc0_c00035{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00035{-webkit-text-stroke:0px transparent;}
.sc0_c00035{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00035{word-spacing:-47.232000px;}
.ws5_c00035{word-spacing:-20.250000px;}
.ws1_c00035{word-spacing:-19.014000px;}
.ws3_c00035{word-spacing:-13.737000px;}
.ws4_c00035{word-spacing:-0.969000px;}
.ws6_c00035{word-spacing:0.000000px;}
.ws2_c00035{word-spacing:0.798000px;}
._3_c00035{margin-left:-45.012000px;}
._29_c00035{margin-left:-21.270000px;}
._1_c00035{margin-left:-20.085000px;}
._26_c00035{margin-left:-17.523000px;}
._1e_c00035{margin-left:-15.186000px;}
._28_c00035{margin-left:-13.689000px;}
._10_c00035{margin-left:-11.886000px;}
._14_c00035{margin-left:-9.429000px;}
._15_c00035{margin-left:-8.064000px;}
._a_c00035{margin-left:-6.732000px;}
._1a_c00035{margin-left:-5.667000px;}
._b_c00035{margin-left:-4.554000px;}
._c_c00035{margin-left:-3.069000px;}
._0_c00035{margin-left:-1.386000px;}
._5_c00035{width:1.782000px;}
._7_c00035{width:3.267000px;}
._6_c00035{width:4.455000px;}
._1b_c00035{width:5.616000px;}
._1c_c00035{width:6.831000px;}
._11_c00035{width:7.887000px;}
._e_c00035{width:9.072000px;}
._9_c00035{width:10.494000px;}
._12_c00035{width:12.405000px;}
._d_c00035{width:13.986000px;}
._f_c00035{width:15.213000px;}
._13_c00035{width:16.371000px;}
._8_c00035{width:17.820000px;}
._1f_c00035{width:20.655000px;}
._16_c00035{width:25.377000px;}
._17_c00035{width:29.886000px;}
._21_c00035{width:31.920000px;}
._20_c00035{width:33.510000px;}
._4_c00035{width:39.048000px;}
._22_c00035{width:56.577000px;}
._2_c00035{width:62.700000px;}
._23_c00035{width:76.260000px;}
._18_c00035{width:148.470000px;}
._1d_c00035{width:205.113000px;}
._27_c00035{width:216.624000px;}
._19_c00035{width:285.039000px;}
._24_c00035{width:433.224000px;}
._25_c00035{width:742.026000px;}
._2a_c00035{width:1737.801000px;}
.fc2_c00035{color:transparent;}
.fc1_c00035{color:rgb(128,128,128);}
.fc0_c00035{color:rgb(0,0,0);}
.fs8_c00035{font-size:48.000000px;}
.fs5_c00035{font-size:54.000000px;}
.fs4_c00035{font-size:57.000000px;}
.fs7_c00035{font-size:63.000000px;}
.fs6_c00035{font-size:66.000000px;}
.fs2_c00035{font-size:78.000000px;}
.fs3_c00035{font-size:81.000000px;}
.fs0_c00035{font-size:99.000000px;}
.fs1_c00035{font-size:132.000000px;}
.y0_c00035{bottom:0.000000px;}
.y28_c00035{bottom:3.105000px;}
.y27_c00035{bottom:7.228357px;}
.y24_c00035{bottom:61.080000px;}
.y23_c00035{bottom:86.130000px;}
.y22_c00035{bottom:112.680000px;}
.y21_c00035{bottom:137.430000px;}
.y20_c00035{bottom:161.730000px;}
.y26_c00035{bottom:178.980000px;}
.y1f_c00035{bottom:186.930000px;}
.y25_c00035{bottom:201.780000px;}
.y1e_c00035{bottom:211.380000px;}
.y1d_c00035{bottom:235.530000px;}
.y1c_c00035{bottom:259.530000px;}
.y1b_c00035{bottom:284.580000px;}
.y1a_c00035{bottom:311.280000px;}
.y19_c00035{bottom:334.080000px;}
.y18_c00035{bottom:357.780000px;}
.y17_c00035{bottom:382.680000px;}
.y16_c00035{bottom:406.680000px;}
.y15_c00035{bottom:431.430000px;}
.y14_c00035{bottom:455.580000px;}
.y13_c00035{bottom:480.030000px;}
.y12_c00035{bottom:504.330000px;}
.y11_c00035{bottom:528.480000px;}
.y10_c00035{bottom:552.780000px;}
.yf_c00035{bottom:577.080000px;}
.ye_c00035{bottom:602.730000px;}
.yd_c00035{bottom:625.830000px;}
.yc_c00035{bottom:650.430000px;}
.yb_c00035{bottom:674.730000px;}
.ya_c00035{bottom:699.330000px;}
.y9_c00035{bottom:724.230000px;}
.y8_c00035{bottom:748.980000px;}
.y7_c00035{bottom:772.530000px;}
.y6_c00035{bottom:799.230000px;}
.y5_c00035{bottom:822.780000px;}
.y4_c00035{bottom:845.430000px;}
.y3_c00035{bottom:870.030000px;}
.y2_c00035{bottom:894.330000px;}
.y1_c00035{bottom:928.830000px;}
.h5_c00035{height:13.200074px;}
.h6_c00035{height:43.804688px;}
.h3_c00035{height:72.168457px;}
.h4_c00035{height:79.497070px;}
.h2_c00035{height:98.756836px;}
.h1_c00035{height:167.126953px;}
.h0_c00035{height:995.250000px;}
.w2_c00035{width:104.875500px;}
.w1_c00035{width:680.250000px;}
.w0_c00035{width:680.400000px;}
.x0_c00035{left:0.000000px;}
.x4_c00035{left:52.200000px;}
.x9_c00035{left:58.800000px;}
.x10_c00035{left:66.150000px;}
.x12_c00035{left:68.550000px;}
.x18_c00035{left:72.600000px;}
.xf_c00035{left:122.250000px;}
.x11_c00035{left:125.250000px;}
.x2_c00035{left:138.750000px;}
.x3_c00035{left:140.400000px;}
.x1_c00035{left:143.100000px;}
.x5_c00035{left:144.450000px;}
.x6_c00035{left:145.800000px;}
.x7_c00035{left:146.850000px;}
.x8_c00035{left:148.500000px;}
.x17_c00035{left:150.150000px;}
.xa_c00035{left:151.950000px;}
.xb_c00035{left:153.600000px;}
.xc_c00035{left:155.250000px;}
.xd_c00035{left:156.600000px;}
.x13_c00035{left:162.450000px;}
.x14_c00035{left:164.100000px;}
.x15_c00035{left:165.750000px;}
.x16_c00035{left:167.400000px;}
.xe_c00035{left:253.500000px;}
.x19_c00035{left:292.014267px;}
@media print{
.v0_c00035{vertical-align:0.000000pt;}
.ls7_c00035{letter-spacing:-5.333333pt;}
.ls3_c00035{letter-spacing:0.000000pt;}
.ls0_c00035{letter-spacing:2.666667pt;}
.ls1_c00035{letter-spacing:3.866667pt;}
.ls6_c00035{letter-spacing:5.333333pt;}
.ls2_c00035{letter-spacing:5.600000pt;}
.ls5_c00035{letter-spacing:8.000000pt;}
.ls4_c00035{letter-spacing:18.666667pt;}
.ws0_c00035{word-spacing:-41.984000pt;}
.ws5_c00035{word-spacing:-18.000000pt;}
.ws1_c00035{word-spacing:-16.901333pt;}
.ws3_c00035{word-spacing:-12.210667pt;}
.ws4_c00035{word-spacing:-0.861333pt;}
.ws6_c00035{word-spacing:0.000000pt;}
.ws2_c00035{word-spacing:0.709333pt;}
._3_c00035{margin-left:-40.010667pt;}
._29_c00035{margin-left:-18.906667pt;}
._1_c00035{margin-left:-17.853333pt;}
._26_c00035{margin-left:-15.576000pt;}
._1e_c00035{margin-left:-13.498667pt;}
._28_c00035{margin-left:-12.168000pt;}
._10_c00035{margin-left:-10.565333pt;}
._14_c00035{margin-left:-8.381333pt;}
._15_c00035{margin-left:-7.168000pt;}
._a_c00035{margin-left:-5.984000pt;}
._1a_c00035{margin-left:-5.037333pt;}
._b_c00035{margin-left:-4.048000pt;}
._c_c00035{margin-left:-2.728000pt;}
._0_c00035{margin-left:-1.232000pt;}
._5_c00035{width:1.584000pt;}
._7_c00035{width:2.904000pt;}
._6_c00035{width:3.960000pt;}
._1b_c00035{width:4.992000pt;}
._1c_c00035{width:6.072000pt;}
._11_c00035{width:7.010667pt;}
._e_c00035{width:8.064000pt;}
._9_c00035{width:9.328000pt;}
._12_c00035{width:11.026667pt;}
._d_c00035{width:12.432000pt;}
._f_c00035{width:13.522667pt;}
._13_c00035{width:14.552000pt;}
._8_c00035{width:15.840000pt;}
._1f_c00035{width:18.360000pt;}
._16_c00035{width:22.557333pt;}
._17_c00035{width:26.565333pt;}
._21_c00035{width:28.373333pt;}
._20_c00035{width:29.786667pt;}
._4_c00035{width:34.709333pt;}
._22_c00035{width:50.290667pt;}
._2_c00035{width:55.733333pt;}
._23_c00035{width:67.786667pt;}
._18_c00035{width:131.973333pt;}
._1d_c00035{width:182.322667pt;}
._27_c00035{width:192.554667pt;}
._19_c00035{width:253.368000pt;}
._24_c00035{width:385.088000pt;}
._25_c00035{width:659.578667pt;}
._2a_c00035{width:1544.712000pt;}
.fs8_c00035{font-size:42.666667pt;}
.fs5_c00035{font-size:48.000000pt;}
.fs4_c00035{font-size:50.666667pt;}
.fs7_c00035{font-size:56.000000pt;}
.fs6_c00035{font-size:58.666667pt;}
.fs2_c00035{font-size:69.333333pt;}
.fs3_c00035{font-size:72.000000pt;}
.fs0_c00035{font-size:88.000000pt;}
.fs1_c00035{font-size:117.333333pt;}
.y0_c00035{bottom:0.000000pt;}
.y28_c00035{bottom:2.760000pt;}
.y27_c00035{bottom:6.425206pt;}
.y24_c00035{bottom:54.293333pt;}
.y23_c00035{bottom:76.560000pt;}
.y22_c00035{bottom:100.160000pt;}
.y21_c00035{bottom:122.160000pt;}
.y20_c00035{bottom:143.760000pt;}
.y26_c00035{bottom:159.093333pt;}
.y1f_c00035{bottom:166.160000pt;}
.y25_c00035{bottom:179.360000pt;}
.y1e_c00035{bottom:187.893333pt;}
.y1d_c00035{bottom:209.360000pt;}
.y1c_c00035{bottom:230.693333pt;}
.y1b_c00035{bottom:252.960000pt;}
.y1a_c00035{bottom:276.693333pt;}
.y19_c00035{bottom:296.960000pt;}
.y18_c00035{bottom:318.026667pt;}
.y17_c00035{bottom:340.160000pt;}
.y16_c00035{bottom:361.493333pt;}
.y15_c00035{bottom:383.493333pt;}
.y14_c00035{bottom:404.960000pt;}
.y13_c00035{bottom:426.693333pt;}
.y12_c00035{bottom:448.293333pt;}
.y11_c00035{bottom:469.760000pt;}
.y10_c00035{bottom:491.360000pt;}
.yf_c00035{bottom:512.960000pt;}
.ye_c00035{bottom:535.760000pt;}
.yd_c00035{bottom:556.293333pt;}
.yc_c00035{bottom:578.160000pt;}
.yb_c00035{bottom:599.760000pt;}
.ya_c00035{bottom:621.626667pt;}
.y9_c00035{bottom:643.760000pt;}
.y8_c00035{bottom:665.760000pt;}
.y7_c00035{bottom:686.693333pt;}
.y6_c00035{bottom:710.426667pt;}
.y5_c00035{bottom:731.360000pt;}
.y4_c00035{bottom:751.493333pt;}
.y3_c00035{bottom:773.360000pt;}
.y2_c00035{bottom:794.960000pt;}
.y1_c00035{bottom:825.626667pt;}
.h5_c00035{height:11.733399pt;}
.h6_c00035{height:38.937500pt;}
.h3_c00035{height:64.149740pt;}
.h4_c00035{height:70.664062pt;}
.h2_c00035{height:87.783854pt;}
.h1_c00035{height:148.557292pt;}
.h0_c00035{height:884.666667pt;}
.w2_c00035{width:93.222667pt;}
.w1_c00035{width:604.666667pt;}
.w0_c00035{width:604.800000pt;}
.x0_c00035{left:0.000000pt;}
.x4_c00035{left:46.400000pt;}
.x9_c00035{left:52.266667pt;}
.x10_c00035{left:58.800000pt;}
.x12_c00035{left:60.933333pt;}
.x18_c00035{left:64.533333pt;}
.xf_c00035{left:108.666667pt;}
.x11_c00035{left:111.333333pt;}
.x2_c00035{left:123.333333pt;}
.x3_c00035{left:124.800000pt;}
.x1_c00035{left:127.200000pt;}
.x5_c00035{left:128.400000pt;}
.x6_c00035{left:129.600000pt;}
.x7_c00035{left:130.533333pt;}
.x8_c00035{left:132.000000pt;}
.x17_c00035{left:133.466667pt;}
.xa_c00035{left:135.066667pt;}
.xb_c00035{left:136.533333pt;}
.xc_c00035{left:138.000000pt;}
.xd_c00035{left:139.200000pt;}
.x13_c00035{left:144.400000pt;}
.x14_c00035{left:145.866667pt;}
.x15_c00035{left:147.333333pt;}
.x16_c00035{left:148.800000pt;}
.xe_c00035{left:225.333333pt;}
.x19_c00035{left:259.568237pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_45f9fbe584eb3c56dcc3f355.woff2')format("woff");}.ff1_c00036{font-family:ff1_c00036;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00036;src:url('chunks/assets/font_2f16bc06e271f2ccf49c9970.woff2')format("woff");}.ff2_c00036{font-family:ff2_c00036;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00036;src:url('chunks/assets/font_08c79fbe4c48aea061d0b240.woff2')format("woff");}.ff3_c00036{font-family:ff3_c00036;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00036;src:url('chunks/assets/font_dec42cb949f1a8bf5bb1e319.woff2')format("woff");}.ff4_c00036{font-family:ff4_c00036;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00036;src:url('chunks/assets/font_e29ca824c336aa1abddd7575.woff2')format("woff");}.ff5_c00036{font-family:ff5_c00036;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00036;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c00036{font-family:ff6_c00036;line-height:1.219238;font-style: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;}
.ls4_c00036{letter-spacing:-6.000000px;}
.ls3_c00036{letter-spacing:0.000000px;}
.ls2_c00036{letter-spacing:2.700000px;}
.ls0_c00036{letter-spacing:4.500000px;}
.ls1_c00036{letter-spacing:11.700000px;}
.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:-61.686000px;}
.ws0_c00036{word-spacing:-17.352000px;}
.ws2_c00036{word-spacing:0.000000px;}
._15_c00036{margin-left:-12.153000px;}
._1d_c00036{margin-left:-10.854000px;}
._1c_c00036{margin-left:-9.153000px;}
._1a_c00036{margin-left:-6.897000px;}
._17_c00036{margin-left:-5.889000px;}
._11_c00036{margin-left:-4.374000px;}
._13_c00036{margin-left:-3.354000px;}
._4_c00036{margin-left:-2.052000px;}
._1b_c00036{margin-left:-1.023000px;}
._10_c00036{width:1.215000px;}
._9_c00036{width:2.394000px;}
._d_c00036{width:3.705000px;}
._12_c00036{width:5.043000px;}
._b_c00036{width:6.954000px;}
._14_c00036{width:8.121000px;}
._c_c00036{width:9.861000px;}
._8_c00036{width:10.887000px;}
._16_c00036{width:12.519000px;}
._19_c00036{width:14.061000px;}
._e_c00036{width:15.618000px;}
._0_c00036{width:16.644000px;}
._6_c00036{width:18.468000px;}
._a_c00036{width:19.836000px;}
._7_c00036{width:21.261000px;}
._5_c00036{width:23.427000px;}
._2_c00036{width:27.132000px;}
._18_c00036{width:28.890000px;}
._1_c00036{width:31.806000px;}
._3_c00036{width:43.605000px;}
._f_c00036{width:61.533000px;}
._1e_c00036{width:158.637000px;}
.fc2_c00036{color:transparent;}
.fc1_c00036{color:rgb(128,128,128);}
.fc0_c00036{color:rgb(0,0,0);}
.fs5_c00036{font-size:48.000000px;}
.fs0_c00036{font-size:57.000000px;}
.fs3_c00036{font-size:72.000000px;}
.fs1_c00036{font-size:78.000000px;}
.fs2_c00036{font-size:81.000000px;}
.fs4_c00036{font-size:87.000000px;}
.y0_c00036{bottom:0.000000px;}
.y25_c00036{bottom:3.105000px;}
.y24_c00036{bottom:7.228371px;}
.y23_c00036{bottom:78.315000px;}
.y22_c00036{bottom:102.315000px;}
.y21_c00036{bottom:128.265000px;}
.y20_c00036{bottom:152.265000px;}
.y1f_c00036{bottom:176.565000px;}
.y1e_c00036{bottom:202.515000px;}
.y1d_c00036{bottom:225.915000px;}
.y1c_c00036{bottom:250.215000px;}
.y1b_c00036{bottom:275.415000px;}
.y1a_c00036{bottom:299.715000px;}
.y19_c00036{bottom:323.715000px;}
.y18_c00036{bottom:347.715000px;}
.y17_c00036{bottom:372.015000px;}
.y16_c00036{bottom:395.865000px;}
.y15_c00036{bottom:420.315000px;}
.y14_c00036{bottom:444.615000px;}
.y13_c00036{bottom:469.215000px;}
.y12_c00036{bottom:493.515000px;}
.y11_c00036{bottom:517.815000px;}
.y10_c00036{bottom:544.065000px;}
.yf_c00036{bottom:567.015000px;}
.ye_c00036{bottom:591.315000px;}
.yd_c00036{bottom:615.615000px;}
.yc_c00036{bottom:640.215000px;}
.yb_c00036{bottom:663.915000px;}
.ya_c00036{bottom:690.165000px;}
.y9_c00036{bottom:712.815000px;}
.y8_c00036{bottom:737.415000px;}
.y7_c00036{bottom:762.165000px;}
.y6_c00036{bottom:786.165000px;}
.y5_c00036{bottom:810.465000px;}
.y4_c00036{bottom:838.815000px;}
.y3_c00036{bottom:859.365000px;}
.y2_c00036{bottom:884.265000px;}
.y1_c00036{bottom:920.415000px;}
.h7_c00036{height:13.200074px;}
.h8_c00036{height:43.804688px;}
.h3_c00036{height:79.497070px;}
.h4_c00036{height:84.269531px;}
.h6_c00036{height:91.160156px;}
.h5_c00036{height:91.176000px;}
.h2_c00036{height:98.756836px;}
.h0_c00036{height:989.025000px;}
.h1_c00036{height:989.250000px;}
.w2_c00036{width:104.875500px;}
.w1_c00036{width:678.750000px;}
.w0_c00036{width:679.050000px;}
.x0_c00036{left:0.000000px;}
.x3_c00036{left:22.350000px;}
.x5_c00036{left:25.650000px;}
.x7_c00036{left:28.800000px;}
.xb_c00036{left:33.300000px;}
.xe_c00036{left:37.050000px;}
.x2_c00036{left:40.200000px;}
.x4_c00036{left:42.300000px;}
.x6_c00036{left:44.850000px;}
.x8_c00036{left:46.200000px;}
.x9_c00036{left:47.250000px;}
.xa_c00036{left:49.500000px;}
.xc_c00036{left:51.000000px;}
.xd_c00036{left:52.650000px;}
.xf_c00036{left:54.600000px;}
.x10_c00036{left:55.800000px;}
.x12_c00036{left:57.450000px;}
.x13_c00036{left:58.500000px;}
.x14_c00036{left:61.050000px;}
.x11_c00036{left:81.450000px;}
.x1_c00036{left:91.050000px;}
.x15_c00036{left:291.339249px;}
@media print{
.v0_c00036{vertical-align:0.000000pt;}
.ls4_c00036{letter-spacing:-5.333333pt;}
.ls3_c00036{letter-spacing:0.000000pt;}
.ls2_c00036{letter-spacing:2.400000pt;}
.ls0_c00036{letter-spacing:4.000000pt;}
.ls1_c00036{letter-spacing:10.400000pt;}
.ws1_c00036{word-spacing:-54.832000pt;}
.ws0_c00036{word-spacing:-15.424000pt;}
.ws2_c00036{word-spacing:0.000000pt;}
._15_c00036{margin-left:-10.802667pt;}
._1d_c00036{margin-left:-9.648000pt;}
._1c_c00036{margin-left:-8.136000pt;}
._1a_c00036{margin-left:-6.130667pt;}
._17_c00036{margin-left:-5.234667pt;}
._11_c00036{margin-left:-3.888000pt;}
._13_c00036{margin-left:-2.981333pt;}
._4_c00036{margin-left:-1.824000pt;}
._1b_c00036{margin-left:-0.909333pt;}
._10_c00036{width:1.080000pt;}
._9_c00036{width:2.128000pt;}
._d_c00036{width:3.293333pt;}
._12_c00036{width:4.482667pt;}
._b_c00036{width:6.181333pt;}
._14_c00036{width:7.218667pt;}
._c_c00036{width:8.765333pt;}
._8_c00036{width:9.677333pt;}
._16_c00036{width:11.128000pt;}
._19_c00036{width:12.498667pt;}
._e_c00036{width:13.882667pt;}
._0_c00036{width:14.794667pt;}
._6_c00036{width:16.416000pt;}
._a_c00036{width:17.632000pt;}
._7_c00036{width:18.898667pt;}
._5_c00036{width:20.824000pt;}
._2_c00036{width:24.117333pt;}
._18_c00036{width:25.680000pt;}
._1_c00036{width:28.272000pt;}
._3_c00036{width:38.760000pt;}
._f_c00036{width:54.696000pt;}
._1e_c00036{width:141.010667pt;}
.fs5_c00036{font-size:42.666667pt;}
.fs0_c00036{font-size:50.666667pt;}
.fs3_c00036{font-size:64.000000pt;}
.fs1_c00036{font-size:69.333333pt;}
.fs2_c00036{font-size:72.000000pt;}
.fs4_c00036{font-size:77.333333pt;}
.y0_c00036{bottom:0.000000pt;}
.y25_c00036{bottom:2.760000pt;}
.y24_c00036{bottom:6.425219pt;}
.y23_c00036{bottom:69.613333pt;}
.y22_c00036{bottom:90.946667pt;}
.y21_c00036{bottom:114.013333pt;}
.y20_c00036{bottom:135.346667pt;}
.y1f_c00036{bottom:156.946667pt;}
.y1e_c00036{bottom:180.013333pt;}
.y1d_c00036{bottom:200.813333pt;}
.y1c_c00036{bottom:222.413333pt;}
.y1b_c00036{bottom:244.813333pt;}
.y1a_c00036{bottom:266.413333pt;}
.y19_c00036{bottom:287.746667pt;}
.y18_c00036{bottom:309.080000pt;}
.y17_c00036{bottom:330.680000pt;}
.y16_c00036{bottom:351.880000pt;}
.y15_c00036{bottom:373.613333pt;}
.y14_c00036{bottom:395.213333pt;}
.y13_c00036{bottom:417.080000pt;}
.y12_c00036{bottom:438.680000pt;}
.y11_c00036{bottom:460.280000pt;}
.y10_c00036{bottom:483.613333pt;}
.yf_c00036{bottom:504.013333pt;}
.ye_c00036{bottom:525.613333pt;}
.yd_c00036{bottom:547.213333pt;}
.yc_c00036{bottom:569.080000pt;}
.yb_c00036{bottom:590.146667pt;}
.ya_c00036{bottom:613.480000pt;}
.y9_c00036{bottom:633.613333pt;}
.y8_c00036{bottom:655.480000pt;}
.y7_c00036{bottom:677.480000pt;}
.y6_c00036{bottom:698.813333pt;}
.y5_c00036{bottom:720.413333pt;}
.y4_c00036{bottom:745.613333pt;}
.y3_c00036{bottom:763.880000pt;}
.y2_c00036{bottom:786.013333pt;}
.y1_c00036{bottom:818.146667pt;}
.h7_c00036{height:11.733399pt;}
.h8_c00036{height:38.937500pt;}
.h3_c00036{height:70.664062pt;}
.h4_c00036{height:74.906250pt;}
.h6_c00036{height:81.031250pt;}
.h5_c00036{height:81.045333pt;}
.h2_c00036{height:87.783854pt;}
.h0_c00036{height:879.133333pt;}
.h1_c00036{height:879.333333pt;}
.w2_c00036{width:93.222667pt;}
.w1_c00036{width:603.333333pt;}
.w0_c00036{width:603.600000pt;}
.x0_c00036{left:0.000000pt;}
.x3_c00036{left:19.866667pt;}
.x5_c00036{left:22.800000pt;}
.x7_c00036{left:25.600000pt;}
.xb_c00036{left:29.600000pt;}
.xe_c00036{left:32.933333pt;}
.x2_c00036{left:35.733333pt;}
.x4_c00036{left:37.600000pt;}
.x6_c00036{left:39.866667pt;}
.x8_c00036{left:41.066667pt;}
.x9_c00036{left:42.000000pt;}
.xa_c00036{left:44.000000pt;}
.xc_c00036{left:45.333333pt;}
.xd_c00036{left:46.800000pt;}
.xf_c00036{left:48.533333pt;}
.x10_c00036{left:49.600000pt;}
.x12_c00036{left:51.066667pt;}
.x13_c00036{left:52.000000pt;}
.x14_c00036{left:54.266667pt;}
.x11_c00036{left:72.400000pt;}
.x1_c00036{left:80.933333pt;}
.x15_c00036{left:258.968221pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_79abad94d4de91eefa55832a.woff2')format("woff");}.ff1_c00037{font-family:ff1_c00037;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00037;src:url('chunks/assets/font_9dc055c3deba2a37969512b8.woff2')format("woff");}.ff2_c00037{font-family:ff2_c00037;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00037;src:url('chunks/assets/font_a9a331feb36c60a30c186220.woff2')format("woff");}.ff3_c00037{font-family:ff3_c00037;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00037;src:url('chunks/assets/font_262bfb231057f6b4d1d6b26c.woff2')format("woff");}.ff4_c00037{font-family:ff4_c00037;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00037;src:url('chunks/assets/font_f65f900d61cf62d95f27c631.woff2')format("woff");}.ff5_c00037{font-family:ff5_c00037;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00037;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c00037{font-family:ff6_c00037;line-height:1.219238;font-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_c00037{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,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;}
.ls2_c00037{letter-spacing:-9.000000px;}
.ls0_c00037{letter-spacing:0.000000px;}
.ls1_c00037{letter-spacing:9.000000px;}
.sc__c00037{text-shadow:none;}
.sc0_c00037{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00037{-webkit-text-stroke:0px transparent;}
.sc0_c00037{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00037{word-spacing:-52.050000px;}
.ws1_c00037{word-spacing:-27.000000px;}
.ws0_c00037{word-spacing:-17.352000px;}
.ws3_c00037{word-spacing:0.000000px;}
._1e_c00037{margin-left:-68.352000px;}
._11_c00037{margin-left:-26.169000px;}
._21_c00037{margin-left:-22.161000px;}
._19_c00037{margin-left:-17.415000px;}
._12_c00037{margin-left:-15.675000px;}
._16_c00037{margin-left:-13.998000px;}
._1b_c00037{margin-left:-12.798000px;}
._1d_c00037{margin-left:-11.583000px;}
._20_c00037{margin-left:-10.152000px;}
._13_c00037{margin-left:-9.096000px;}
._8_c00037{margin-left:-7.722000px;}
._d_c00037{margin-left:-6.687000px;}
._1_c00037{margin-left:-5.643000px;}
._e_c00037{margin-left:-4.080000px;}
._0_c00037{margin-left:-2.871000px;}
._b_c00037{margin-left:-1.359000px;}
._a_c00037{width:1.485000px;}
._5_c00037{width:3.069000px;}
._4_c00037{width:4.455000px;}
._3_c00037{width:6.237000px;}
._c_c00037{width:8.037000px;}
._9_c00037{width:9.306000px;}
._14_c00037{width:10.458000px;}
._7_c00037{width:11.484000px;}
._f_c00037{width:12.690000px;}
._15_c00037{width:13.932000px;}
._6_c00037{width:16.137000px;}
._18_c00037{width:17.577000px;}
._1f_c00037{width:25.686000px;}
._17_c00037{width:27.567000px;}
._10_c00037{width:29.109000px;}
._1a_c00037{width:204.444000px;}
._2_c00037{width:211.662000px;}
._1c_c00037{width:215.541000px;}
.fc2_c00037{color:transparent;}
.fc1_c00037{color:rgb(128,128,128);}
.fc0_c00037{color:rgb(0,0,0);}
.fs7_c00037{font-size:48.000000px;}
.fs2_c00037{font-size:72.000000px;}
.fs3_c00037{font-size:78.000000px;}
.fs1_c00037{font-size:81.000000px;}
.fs0_c00037{font-size:99.000000px;}
.fs5_c00037{font-size:105.000000px;}
.fs4_c00037{font-size:108.000000px;}
.fs6_c00037{font-size:111.000000px;}
.y0_c00037{bottom:0.000000px;}
.y26_c00037{bottom:3.105000px;}
.y25_c00037{bottom:7.228357px;}
.y24_c00037{bottom:57.780000px;}
.y23_c00037{bottom:78.630000px;}
.y22_c00037{bottom:104.730000px;}
.y21_c00037{bottom:129.330000px;}
.y20_c00037{bottom:154.530000px;}
.y1f_c00037{bottom:178.980000px;}
.y1e_c00037{bottom:203.130000px;}
.y1d_c00037{bottom:228.480000px;}
.y1c_c00037{bottom:253.230000px;}
.y1b_c00037{bottom:277.380000px;}
.y1a_c00037{bottom:301.830000px;}
.y19_c00037{bottom:325.680000px;}
.y18_c00037{bottom:349.680000px;}
.y17_c00037{bottom:374.730000px;}
.y16_c00037{bottom:401.730000px;}
.y15_c00037{bottom:425.280000px;}
.y14_c00037{bottom:448.530000px;}
.y13_c00037{bottom:473.580000px;}
.y12_c00037{bottom:497.880000px;}
.y11_c00037{bottom:521.730000px;}
.y10_c00037{bottom:546.780000px;}
.yf_c00037{bottom:571.680000px;}
.ye_c00037{bottom:596.130000px;}
.yd_c00037{bottom:621.330000px;}
.yc_c00037{bottom:645.330000px;}
.yb_c00037{bottom:669.630000px;}
.ya_c00037{bottom:693.930000px;}
.y9_c00037{bottom:719.880000px;}
.y8_c00037{bottom:743.580000px;}
.y7_c00037{bottom:767.880000px;}
.y6_c00037{bottom:792.480000px;}
.y5_c00037{bottom:817.380000px;}
.y4_c00037{bottom:841.680000px;}
.y3_c00037{bottom:866.730000px;}
.y2_c00037{bottom:890.430000px;}
.y1_c00037{bottom:926.130000px;}
.h8_c00037{height:13.200074px;}
.h9_c00037{height:43.804688px;}
.h3_c00037{height:79.497070px;}
.h2_c00037{height:84.269531px;}
.h4_c00037{height:98.756836px;}
.h5_c00037{height:108.843750px;}
.h7_c00037{height:114.090509px;}
.h1_c00037{height:115.870605px;}
.h6_c00037{height:132.941895px;}
.h0_c00037{height:995.250000px;}
.w2_c00037{width:104.875500px;}
.w1_c00037{width:680.250000px;}
.w0_c00037{width:680.400000px;}
.x0_c00037{left:0.000000px;}
.x9_c00037{left:71.550000px;}
.x8_c00037{left:91.800000px;}
.x7_c00037{left:143.700000px;}
.x6_c00037{left:145.050000px;}
.x5_c00037{left:146.100000px;}
.x4_c00037{left:147.600000px;}
.x3_c00037{left:148.800000px;}
.x2_c00037{left:150.150000px;}
.x1_c00037{left:153.450000px;}
.xc_c00037{left:273.000000px;}
.xd_c00037{left:289.200000px;}
.x13_c00037{left:292.014267px;}
.xe_c00037{left:344.700000px;}
.xf_c00037{left:357.150000px;}
.xa_c00037{left:391.500000px;}
.xb_c00037{left:424.650000px;}
.x10_c00037{left:609.300000px;}
.x11_c00037{left:618.000000px;}
.x12_c00037{left:645.600000px;}
@media print{
.v0_c00037{vertical-align:0.000000pt;}
.ls2_c00037{letter-spacing:-8.000000pt;}
.ls0_c00037{letter-spacing:0.000000pt;}
.ls1_c00037{letter-spacing:8.000000pt;}
.ws2_c00037{word-spacing:-46.266667pt;}
.ws1_c00037{word-spacing:-24.000000pt;}
.ws0_c00037{word-spacing:-15.424000pt;}
.ws3_c00037{word-spacing:0.000000pt;}
._1e_c00037{margin-left:-60.757333pt;}
._11_c00037{margin-left:-23.261333pt;}
._21_c00037{margin-left:-19.698667pt;}
._19_c00037{margin-left:-15.480000pt;}
._12_c00037{margin-left:-13.933333pt;}
._16_c00037{margin-left:-12.442667pt;}
._1b_c00037{margin-left:-11.376000pt;}
._1d_c00037{margin-left:-10.296000pt;}
._20_c00037{margin-left:-9.024000pt;}
._13_c00037{margin-left:-8.085333pt;}
._8_c00037{margin-left:-6.864000pt;}
._d_c00037{margin-left:-5.944000pt;}
._1_c00037{margin-left:-5.016000pt;}
._e_c00037{margin-left:-3.626667pt;}
._0_c00037{margin-left:-2.552000pt;}
._b_c00037{margin-left:-1.208000pt;}
._a_c00037{width:1.320000pt;}
._5_c00037{width:2.728000pt;}
._4_c00037{width:3.960000pt;}
._3_c00037{width:5.544000pt;}
._c_c00037{width:7.144000pt;}
._9_c00037{width:8.272000pt;}
._14_c00037{width:9.296000pt;}
._7_c00037{width:10.208000pt;}
._f_c00037{width:11.280000pt;}
._15_c00037{width:12.384000pt;}
._6_c00037{width:14.344000pt;}
._18_c00037{width:15.624000pt;}
._1f_c00037{width:22.832000pt;}
._17_c00037{width:24.504000pt;}
._10_c00037{width:25.874667pt;}
._1a_c00037{width:181.728000pt;}
._2_c00037{width:188.144000pt;}
._1c_c00037{width:191.592000pt;}
.fs7_c00037{font-size:42.666667pt;}
.fs2_c00037{font-size:64.000000pt;}
.fs3_c00037{font-size:69.333333pt;}
.fs1_c00037{font-size:72.000000pt;}
.fs0_c00037{font-size:88.000000pt;}
.fs5_c00037{font-size:93.333333pt;}
.fs4_c00037{font-size:96.000000pt;}
.fs6_c00037{font-size:98.666667pt;}
.y0_c00037{bottom:0.000000pt;}
.y26_c00037{bottom:2.760000pt;}
.y25_c00037{bottom:6.425206pt;}
.y24_c00037{bottom:51.360000pt;}
.y23_c00037{bottom:69.893333pt;}
.y22_c00037{bottom:93.093333pt;}
.y21_c00037{bottom:114.960000pt;}
.y20_c00037{bottom:137.360000pt;}
.y1f_c00037{bottom:159.093333pt;}
.y1e_c00037{bottom:180.560000pt;}
.y1d_c00037{bottom:203.093333pt;}
.y1c_c00037{bottom:225.093333pt;}
.y1b_c00037{bottom:246.560000pt;}
.y1a_c00037{bottom:268.293333pt;}
.y19_c00037{bottom:289.493333pt;}
.y18_c00037{bottom:310.826667pt;}
.y17_c00037{bottom:333.093333pt;}
.y16_c00037{bottom:357.093333pt;}
.y15_c00037{bottom:378.026667pt;}
.y14_c00037{bottom:398.693333pt;}
.y13_c00037{bottom:420.960000pt;}
.y12_c00037{bottom:442.560000pt;}
.y11_c00037{bottom:463.760000pt;}
.y10_c00037{bottom:486.026667pt;}
.yf_c00037{bottom:508.160000pt;}
.ye_c00037{bottom:529.893333pt;}
.yd_c00037{bottom:552.293333pt;}
.yc_c00037{bottom:573.626667pt;}
.yb_c00037{bottom:595.226667pt;}
.ya_c00037{bottom:616.826667pt;}
.y9_c00037{bottom:639.893333pt;}
.y8_c00037{bottom:660.960000pt;}
.y7_c00037{bottom:682.560000pt;}
.y6_c00037{bottom:704.426667pt;}
.y5_c00037{bottom:726.560000pt;}
.y4_c00037{bottom:748.160000pt;}
.y3_c00037{bottom:770.426667pt;}
.y2_c00037{bottom:791.493333pt;}
.y1_c00037{bottom:823.226667pt;}
.h8_c00037{height:11.733399pt;}
.h9_c00037{height:38.937500pt;}
.h3_c00037{height:70.664062pt;}
.h2_c00037{height:74.906250pt;}
.h4_c00037{height:87.783854pt;}
.h5_c00037{height:96.750000pt;}
.h7_c00037{height:101.413785pt;}
.h1_c00037{height:102.996094pt;}
.h6_c00037{height:118.170573pt;}
.h0_c00037{height:884.666667pt;}
.w2_c00037{width:93.222667pt;}
.w1_c00037{width:604.666667pt;}
.w0_c00037{width:604.800000pt;}
.x0_c00037{left:0.000000pt;}
.x9_c00037{left:63.600000pt;}
.x8_c00037{left:81.600000pt;}
.x7_c00037{left:127.733333pt;}
.x6_c00037{left:128.933333pt;}
.x5_c00037{left:129.866667pt;}
.x4_c00037{left:131.200000pt;}
.x3_c00037{left:132.266667pt;}
.x2_c00037{left:133.466667pt;}
.x1_c00037{left:136.400000pt;}
.xc_c00037{left:242.666667pt;}
.xd_c00037{left:257.066667pt;}
.x13_c00037{left:259.568237pt;}
.xe_c00037{left:306.400000pt;}
.xf_c00037{left:317.466667pt;}
.xa_c00037{left:348.000000pt;}
.xb_c00037{left:377.466667pt;}
.x10_c00037{left:541.600000pt;}
.x11_c00037{left:549.333333pt;}
.x12_c00037{left:573.866667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_3c880c3587583a82a6446499.woff2')format("woff");}.ff1_c00038{font-family:ff1_c00038;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00038;src:url('chunks/assets/font_554eb40d46bad7438067aaa2.woff2')format("woff");}.ff2_c00038{font-family:ff2_c00038;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00038;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff3_c00038{font-family:ff3_c00038;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00038;src:url('chunks/assets/font_9858a593f94eae27103628ff.woff2')format("woff");}.ff4_c00038{font-family:ff4_c00038;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00038;src:url('chunks/assets/font_d3ba3e0ba6fa82880b2d4778.woff2')format("woff");}.ff5_c00038{font-family:ff5_c00038;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00038;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c00038{font-family:ff6_c00038;line-height:1.219238;font-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_c00038{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,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;}
.ls2_c00038{letter-spacing:-9.000000px;}
.ls1_c00038{letter-spacing:0.000000px;}
.ls0_c00038{letter-spacing:15.300000px;}
.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;}
}
.ws3_c00038{word-spacing:-20.250000px;}
.ws0_c00038{word-spacing:-17.352000px;}
.ws1_c00038{word-spacing:-8.352000px;}
.ws2_c00038{word-spacing:-2.679000px;}
.ws4_c00038{word-spacing:0.000000px;}
._11_c00038{margin-left:-15.228000px;}
._12_c00038{margin-left:-12.573000px;}
._14_c00038{margin-left:-10.008000px;}
._f_c00038{margin-left:-8.658000px;}
._5_c00038{margin-left:-7.623000px;}
._8_c00038{margin-left:-5.940000px;}
._7_c00038{margin-left:-4.455000px;}
._e_c00038{margin-left:-3.114000px;}
._6_c00038{margin-left:-1.584000px;}
._a_c00038{width:1.287000px;}
._9_c00038{width:2.574000px;}
._1_c00038{width:4.059000px;}
._2_c00038{width:5.247000px;}
._d_c00038{width:6.498000px;}
._3_c00038{width:7.821000px;}
._0_c00038{width:9.603000px;}
._4_c00038{width:10.692000px;}
._15_c00038{width:11.763000px;}
._10_c00038{width:13.284000px;}
._16_c00038{width:15.669000px;}
._c_c00038{width:16.830000px;}
._1a_c00038{width:21.375000px;}
._17_c00038{width:28.503000px;}
._1c_c00038{width:32.517000px;}
._b_c00038{width:98.010000px;}
._18_c00038{width:126.495000px;}
._1d_c00038{width:221.193000px;}
._19_c00038{width:253.377000px;}
._13_c00038{width:254.970000px;}
._1b_c00038{width:498.627000px;}
.fc2_c00038{color:transparent;}
.fc1_c00038{color:rgb(128,128,128);}
.fc0_c00038{color:rgb(0,0,0);}
.fs6_c00038{font-size:48.000000px;}
.fs3_c00038{font-size:57.000000px;}
.fs2_c00038{font-size:72.000000px;}
.fs1_c00038{font-size:81.000000px;}
.fs4_c00038{font-size:87.000000px;}
.fs0_c00038{font-size:99.000000px;}
.fs5_c00038{font-size:108.000000px;}
.y0_c00038{bottom:0.000000px;}
.y26_c00038{bottom:3.105000px;}
.y25_c00038{bottom:7.228369px;}
.y24_c00038{bottom:45.570000px;}
.y23_c00038{bottom:71.820000px;}
.y22_c00038{bottom:95.820000px;}
.y21_c00038{bottom:121.170000px;}
.y20_c00038{bottom:146.070000px;}
.y1f_c00038{bottom:170.820000px;}
.y1e_c00038{bottom:195.420000px;}
.y1d_c00038{bottom:219.720000px;}
.y1c_c00038{bottom:244.920000px;}
.y1b_c00038{bottom:269.220000px;}
.y1a_c00038{bottom:293.220000px;}
.y19_c00038{bottom:316.920000px;}
.y18_c00038{bottom:341.520000px;}
.y17_c00038{bottom:365.520000px;}
.y16_c00038{bottom:389.520000px;}
.y15_c00038{bottom:414.120000px;}
.y14_c00038{bottom:438.120000px;}
.y13_c00038{bottom:462.720000px;}
.y12_c00038{bottom:487.620000px;}
.y11_c00038{bottom:512.220000px;}
.y10_c00038{bottom:536.670000px;}
.yf_c00038{bottom:559.470000px;}
.ye_c00038{bottom:585.270000px;}
.yd_c00038{bottom:608.820000px;}
.yc_c00038{bottom:632.370000px;}
.yb_c00038{bottom:656.070000px;}
.ya_c00038{bottom:680.070000px;}
.y9_c00038{bottom:704.370000px;}
.y8_c00038{bottom:728.970000px;}
.y7_c00038{bottom:753.570000px;}
.y6_c00038{bottom:777.870000px;}
.y5_c00038{bottom:802.470000px;}
.y4_c00038{bottom:826.770000px;}
.y3_c00038{bottom:851.220000px;}
.y2_c00038{bottom:875.520000px;}
.y1_c00038{bottom:911.520000px;}
.h8_c00038{height:13.200073px;}
.h9_c00038{height:43.804688px;}
.h3_c00038{height:79.497070px;}
.h4_c00038{height:84.269531px;}
.h5_c00038{height:91.160156px;}
.h6_c00038{height:91.176000px;}
.h7_c00038{height:108.843750px;}
.h2_c00038{height:115.870605px;}
.h0_c00038{height:970.350000px;}
.h1_c00038{height:970.500000px;}
.w2_c00038{width:104.875500px;}
.w0_c00038{width:666.375000px;}
.w1_c00038{width:666.750000px;}
.x0_c00038{left:0.000000px;}
.xc_c00038{left:30.000000px;}
.x9_c00038{left:31.050000px;}
.x8_c00038{left:32.100000px;}
.x6_c00038{left:34.200000px;}
.x5_c00038{left:35.400000px;}
.x2_c00038{left:36.450000px;}
.x1_c00038{left:37.500000px;}
.x3_c00038{left:39.150000px;}
.x4_c00038{left:40.200000px;}
.x7_c00038{left:58.050000px;}
.xd_c00038{left:214.650000px;}
.xe_c00038{left:285.001740px;}
.xa_c00038{left:393.300000px;}
.xb_c00038{left:431.700000px;}
@media print{
.v0_c00038{vertical-align:0.000000pt;}
.ls2_c00038{letter-spacing:-8.000000pt;}
.ls1_c00038{letter-spacing:0.000000pt;}
.ls0_c00038{letter-spacing:13.600000pt;}
.ws3_c00038{word-spacing:-18.000000pt;}
.ws0_c00038{word-spacing:-15.424000pt;}
.ws1_c00038{word-spacing:-7.424000pt;}
.ws2_c00038{word-spacing:-2.381333pt;}
.ws4_c00038{word-spacing:0.000000pt;}
._11_c00038{margin-left:-13.536000pt;}
._12_c00038{margin-left:-11.176000pt;}
._14_c00038{margin-left:-8.896000pt;}
._f_c00038{margin-left:-7.696000pt;}
._5_c00038{margin-left:-6.776000pt;}
._8_c00038{margin-left:-5.280000pt;}
._7_c00038{margin-left:-3.960000pt;}
._e_c00038{margin-left:-2.768000pt;}
._6_c00038{margin-left:-1.408000pt;}
._a_c00038{width:1.144000pt;}
._9_c00038{width:2.288000pt;}
._1_c00038{width:3.608000pt;}
._2_c00038{width:4.664000pt;}
._d_c00038{width:5.776000pt;}
._3_c00038{width:6.952000pt;}
._0_c00038{width:8.536000pt;}
._4_c00038{width:9.504000pt;}
._15_c00038{width:10.456000pt;}
._10_c00038{width:11.808000pt;}
._16_c00038{width:13.928000pt;}
._c_c00038{width:14.960000pt;}
._1a_c00038{width:19.000000pt;}
._17_c00038{width:25.336000pt;}
._1c_c00038{width:28.904000pt;}
._b_c00038{width:87.120000pt;}
._18_c00038{width:112.440000pt;}
._1d_c00038{width:196.616000pt;}
._19_c00038{width:225.224000pt;}
._13_c00038{width:226.640000pt;}
._1b_c00038{width:443.224000pt;}
.fs6_c00038{font-size:42.666667pt;}
.fs3_c00038{font-size:50.666667pt;}
.fs2_c00038{font-size:64.000000pt;}
.fs1_c00038{font-size:72.000000pt;}
.fs4_c00038{font-size:77.333333pt;}
.fs0_c00038{font-size:88.000000pt;}
.fs5_c00038{font-size:96.000000pt;}
.y0_c00038{bottom:0.000000pt;}
.y26_c00038{bottom:2.760000pt;}
.y25_c00038{bottom:6.425217pt;}
.y24_c00038{bottom:40.506667pt;}
.y23_c00038{bottom:63.840000pt;}
.y22_c00038{bottom:85.173333pt;}
.y21_c00038{bottom:107.706667pt;}
.y20_c00038{bottom:129.840000pt;}
.y1f_c00038{bottom:151.840000pt;}
.y1e_c00038{bottom:173.706667pt;}
.y1d_c00038{bottom:195.306667pt;}
.y1c_c00038{bottom:217.706667pt;}
.y1b_c00038{bottom:239.306667pt;}
.y1a_c00038{bottom:260.640000pt;}
.y19_c00038{bottom:281.706667pt;}
.y18_c00038{bottom:303.573333pt;}
.y17_c00038{bottom:324.906667pt;}
.y16_c00038{bottom:346.240000pt;}
.y15_c00038{bottom:368.106667pt;}
.y14_c00038{bottom:389.440000pt;}
.y13_c00038{bottom:411.306667pt;}
.y12_c00038{bottom:433.440000pt;}
.y11_c00038{bottom:455.306667pt;}
.y10_c00038{bottom:477.040000pt;}
.yf_c00038{bottom:497.306667pt;}
.ye_c00038{bottom:520.240000pt;}
.yd_c00038{bottom:541.173333pt;}
.yc_c00038{bottom:562.106667pt;}
.yb_c00038{bottom:583.173333pt;}
.ya_c00038{bottom:604.506667pt;}
.y9_c00038{bottom:626.106667pt;}
.y8_c00038{bottom:647.973333pt;}
.y7_c00038{bottom:669.840000pt;}
.y6_c00038{bottom:691.440000pt;}
.y5_c00038{bottom:713.306667pt;}
.y4_c00038{bottom:734.906667pt;}
.y3_c00038{bottom:756.640000pt;}
.y2_c00038{bottom:778.240000pt;}
.y1_c00038{bottom:810.240000pt;}
.h8_c00038{height:11.733399pt;}
.h9_c00038{height:38.937500pt;}
.h3_c00038{height:70.664062pt;}
.h4_c00038{height:74.906250pt;}
.h5_c00038{height:81.031250pt;}
.h6_c00038{height:81.045333pt;}
.h7_c00038{height:96.750000pt;}
.h2_c00038{height:102.996094pt;}
.h0_c00038{height:862.533333pt;}
.h1_c00038{height:862.666667pt;}
.w2_c00038{width:93.222667pt;}
.w0_c00038{width:592.333333pt;}
.w1_c00038{width:592.666667pt;}
.x0_c00038{left:0.000000pt;}
.xc_c00038{left:26.666667pt;}
.x9_c00038{left:27.600000pt;}
.x8_c00038{left:28.533333pt;}
.x6_c00038{left:30.400000pt;}
.x5_c00038{left:31.466667pt;}
.x2_c00038{left:32.400000pt;}
.x1_c00038{left:33.333333pt;}
.x3_c00038{left:34.800000pt;}
.x4_c00038{left:35.733333pt;}
.x7_c00038{left:51.600000pt;}
.xd_c00038{left:190.800000pt;}
.xe_c00038{left:253.334880pt;}
.xa_c00038{left:349.600000pt;}
.xb_c00038{left:383.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e7c432ba7362d7163141c4e2.woff2')format("woff");}.ff1_c00039{font-family:ff1_c00039;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00039;src:url('chunks/assets/font_5d5b6691d3b4f53226d68951.woff2')format("woff");}.ff2_c00039{font-family:ff2_c00039;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00039;src:url('chunks/assets/font_f3c1ce95ada5ac361e190f74.woff2')format("woff");}.ff3_c00039{font-family:ff3_c00039;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00039;src:url('chunks/assets/font_1fc4daf11b18e45ec004354a.woff2')format("woff");}.ff4_c00039{font-family:ff4_c00039;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00039;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c00039{font-family:ff5_c00039;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00039{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00039{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.v0_c00039{vertical-align:0.000000px;}
.ls2_c00039{letter-spacing:0.000000px;}
.ls1_c00039{letter-spacing:5.700000px;}
.ls3_c00039{letter-spacing:9.000000px;}
.ls0_c00039{letter-spacing:13.500000px;}
.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:-22.737000px;}
.ws1_c00039{word-spacing:-20.250000px;}
.ws2_c00039{word-spacing:-13.737000px;}
.ws3_c00039{word-spacing:0.000000px;}
._13_c00039{margin-left:-17.775000px;}
._12_c00039{margin-left:-11.475000px;}
._f_c00039{margin-left:-10.011000px;}
._c_c00039{margin-left:-8.739000px;}
._e_c00039{margin-left:-7.164000px;}
._d_c00039{margin-left:-5.562000px;}
._6_c00039{margin-left:-4.554000px;}
._5_c00039{margin-left:-3.465000px;}
._a_c00039{margin-left:-2.385000px;}
._7_c00039{margin-left:-1.188000px;}
._9_c00039{width:1.161000px;}
._1_c00039{width:2.970000px;}
._3_c00039{width:4.356000px;}
._2_c00039{width:6.336000px;}
._0_c00039{width:8.316000px;}
._8_c00039{width:10.341000px;}
._b_c00039{width:11.568000px;}
._4_c00039{width:13.068000px;}
._10_c00039{width:15.597000px;}
._15_c00039{width:17.328000px;}
._16_c00039{width:24.168000px;}
._11_c00039{width:29.517000px;}
._14_c00039{width:35.910000px;}
.fc2_c00039{color:transparent;}
.fc1_c00039{color:rgb(128,128,128);}
.fc0_c00039{color:rgb(0,0,0);}
.fs6_c00039{font-size:48.000000px;}
.fs2_c00039{font-size:57.000000px;}
.fs4_c00039{font-size:63.000000px;}
.fs3_c00039{font-size:78.000000px;}
.fs1_c00039{font-size:81.000000px;}
.fs0_c00039{font-size:99.000000px;}
.fs5_c00039{font-size:144.000000px;}
.y0_c00039{bottom:0.000000px;}
.y27_c00039{bottom:3.105000px;}
.y26_c00039{bottom:7.228357px;}
.y24_c00039{bottom:66.180000px;}
.y23_c00039{bottom:92.430000px;}
.y22_c00039{bottom:117.780000px;}
.y21_c00039{bottom:142.830000px;}
.y20_c00039{bottom:167.730000px;}
.y1f_c00039{bottom:192.030000px;}
.y1e_c00039{bottom:216.780000px;}
.y1d_c00039{bottom:241.980000px;}
.y1c_c00039{bottom:266.580000px;}
.y1b_c00039{bottom:290.880000px;}
.y1a_c00039{bottom:315.180000px;}
.y19_c00039{bottom:338.880000px;}
.y25_c00039{bottom:357.480000px;}
.y18_c00039{bottom:363.180000px;}
.y17_c00039{bottom:388.080000px;}
.y16_c00039{bottom:413.130000px;}
.y15_c00039{bottom:437.130000px;}
.y14_c00039{bottom:462.330000px;}
.y13_c00039{bottom:487.080000px;}
.y12_c00039{bottom:511.380000px;}
.y11_c00039{bottom:535.680000px;}
.y10_c00039{bottom:559.980000px;}
.yf_c00039{bottom:584.580000px;}
.ye_c00039{bottom:608.880000px;}
.yd_c00039{bottom:633.480000px;}
.yc_c00039{bottom:658.080000px;}
.yb_c00039{bottom:682.530000px;}
.ya_c00039{bottom:706.830000px;}
.y9_c00039{bottom:731.430000px;}
.y8_c00039{bottom:756.330000px;}
.y7_c00039{bottom:780.630000px;}
.y6_c00039{bottom:804.630000px;}
.y5_c00039{bottom:828.930000px;}
.y4_c00039{bottom:853.230000px;}
.y3_c00039{bottom:877.530000px;}
.y2_c00039{bottom:901.230000px;}
.y1_c00039{bottom:937.530000px;}
.h7_c00039{height:13.200074px;}
.h8_c00039{height:43.804688px;}
.h5_c00039{height:72.168457px;}
.h3_c00039{height:79.497070px;}
.h4_c00039{height:98.756836px;}
.h2_c00039{height:115.870605px;}
.h6_c00039{height:182.320312px;}
.h1_c00039{height:987.000000px;}
.h0_c00039{height:987.150000px;}
.w2_c00039{width:104.875500px;}
.w1_c00039{width:674.250000px;}
.w0_c00039{width:674.475000px;}
.x0_c00039{left:0.000000px;}
.x2_c00039{left:143.550000px;}
.x4_c00039{left:147.150000px;}
.x5_c00039{left:149.400000px;}
.x6_c00039{left:150.900000px;}
.x7_c00039{left:152.100000px;}
.x8_c00039{left:153.150000px;}
.x9_c00039{left:154.800000px;}
.xa_c00039{left:156.150000px;}
.xb_c00039{left:157.500000px;}
.xc_c00039{left:159.000000px;}
.xd_c00039{left:160.950000px;}
.xe_c00039{left:163.050000px;}
.x13_c00039{left:165.450000px;}
.x15_c00039{left:166.500000px;}
.x14_c00039{left:168.150000px;}
.x16_c00039{left:170.550000px;}
.x17_c00039{left:172.500000px;}
.x11_c00039{left:174.450000px;}
.x12_c00039{left:200.400000px;}
.x10_c00039{left:208.950000px;}
.x3_c00039{left:216.600000px;}
.x1_c00039{left:229.200000px;}
.xf_c00039{left:247.350000px;}
.x19_c00039{left:289.051758px;}
.x18_c00039{left:601.800000px;}
@media print{
.v0_c00039{vertical-align:0.000000pt;}
.ls2_c00039{letter-spacing:0.000000pt;}
.ls1_c00039{letter-spacing:5.066667pt;}
.ls3_c00039{letter-spacing:8.000000pt;}
.ls0_c00039{letter-spacing:12.000000pt;}
.ws0_c00039{word-spacing:-20.210667pt;}
.ws1_c00039{word-spacing:-18.000000pt;}
.ws2_c00039{word-spacing:-12.210667pt;}
.ws3_c00039{word-spacing:0.000000pt;}
._13_c00039{margin-left:-15.800000pt;}
._12_c00039{margin-left:-10.200000pt;}
._f_c00039{margin-left:-8.898667pt;}
._c_c00039{margin-left:-7.768000pt;}
._e_c00039{margin-left:-6.368000pt;}
._d_c00039{margin-left:-4.944000pt;}
._6_c00039{margin-left:-4.048000pt;}
._5_c00039{margin-left:-3.080000pt;}
._a_c00039{margin-left:-2.120000pt;}
._7_c00039{margin-left:-1.056000pt;}
._9_c00039{width:1.032000pt;}
._1_c00039{width:2.640000pt;}
._3_c00039{width:3.872000pt;}
._2_c00039{width:5.632000pt;}
._0_c00039{width:7.392000pt;}
._8_c00039{width:9.192000pt;}
._b_c00039{width:10.282667pt;}
._4_c00039{width:11.616000pt;}
._10_c00039{width:13.864000pt;}
._15_c00039{width:15.402667pt;}
._16_c00039{width:21.482667pt;}
._11_c00039{width:26.237333pt;}
._14_c00039{width:31.920000pt;}
.fs6_c00039{font-size:42.666667pt;}
.fs2_c00039{font-size:50.666667pt;}
.fs4_c00039{font-size:56.000000pt;}
.fs3_c00039{font-size:69.333333pt;}
.fs1_c00039{font-size:72.000000pt;}
.fs0_c00039{font-size:88.000000pt;}
.fs5_c00039{font-size:128.000000pt;}
.y0_c00039{bottom:0.000000pt;}
.y27_c00039{bottom:2.760000pt;}
.y26_c00039{bottom:6.425206pt;}
.y24_c00039{bottom:58.826667pt;}
.y23_c00039{bottom:82.160000pt;}
.y22_c00039{bottom:104.693333pt;}
.y21_c00039{bottom:126.960000pt;}
.y20_c00039{bottom:149.093333pt;}
.y1f_c00039{bottom:170.693333pt;}
.y1e_c00039{bottom:192.693333pt;}
.y1d_c00039{bottom:215.093333pt;}
.y1c_c00039{bottom:236.960000pt;}
.y1b_c00039{bottom:258.560000pt;}
.y1a_c00039{bottom:280.160000pt;}
.y19_c00039{bottom:301.226667pt;}
.y25_c00039{bottom:317.760000pt;}
.y18_c00039{bottom:322.826667pt;}
.y17_c00039{bottom:344.960000pt;}
.y16_c00039{bottom:367.226667pt;}
.y15_c00039{bottom:388.560000pt;}
.y14_c00039{bottom:410.960000pt;}
.y13_c00039{bottom:432.960000pt;}
.y12_c00039{bottom:454.560000pt;}
.y11_c00039{bottom:476.160000pt;}
.y10_c00039{bottom:497.760000pt;}
.yf_c00039{bottom:519.626667pt;}
.ye_c00039{bottom:541.226667pt;}
.yd_c00039{bottom:563.093333pt;}
.yc_c00039{bottom:584.960000pt;}
.yb_c00039{bottom:606.693333pt;}
.ya_c00039{bottom:628.293333pt;}
.y9_c00039{bottom:650.160000pt;}
.y8_c00039{bottom:672.293333pt;}
.y7_c00039{bottom:693.893333pt;}
.y6_c00039{bottom:715.226667pt;}
.y5_c00039{bottom:736.826667pt;}
.y4_c00039{bottom:758.426667pt;}
.y3_c00039{bottom:780.026667pt;}
.y2_c00039{bottom:801.093333pt;}
.y1_c00039{bottom:833.360000pt;}
.h7_c00039{height:11.733399pt;}
.h8_c00039{height:38.937500pt;}
.h5_c00039{height:64.149740pt;}
.h3_c00039{height:70.664062pt;}
.h4_c00039{height:87.783854pt;}
.h2_c00039{height:102.996094pt;}
.h6_c00039{height:162.062500pt;}
.h1_c00039{height:877.333333pt;}
.h0_c00039{height:877.466667pt;}
.w2_c00039{width:93.222667pt;}
.w1_c00039{width:599.333333pt;}
.w0_c00039{width:599.533333pt;}
.x0_c00039{left:0.000000pt;}
.x2_c00039{left:127.600000pt;}
.x4_c00039{left:130.800000pt;}
.x5_c00039{left:132.800000pt;}
.x6_c00039{left:134.133333pt;}
.x7_c00039{left:135.200000pt;}
.x8_c00039{left:136.133333pt;}
.x9_c00039{left:137.600000pt;}
.xa_c00039{left:138.800000pt;}
.xb_c00039{left:140.000000pt;}
.xc_c00039{left:141.333333pt;}
.xd_c00039{left:143.066667pt;}
.xe_c00039{left:144.933333pt;}
.x13_c00039{left:147.066667pt;}
.x15_c00039{left:148.000000pt;}
.x14_c00039{left:149.466667pt;}
.x16_c00039{left:151.600000pt;}
.x17_c00039{left:153.333333pt;}
.x11_c00039{left:155.066667pt;}
.x12_c00039{left:178.133333pt;}
.x10_c00039{left:185.733333pt;}
.x3_c00039{left:192.533333pt;}
.x1_c00039{left:203.733333pt;}
.xf_c00039{left:219.866667pt;}
.x19_c00039{left:256.934896pt;}
.x18_c00039{left:534.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_d131441069616cec5d1660e7.woff2')format("woff");}.ff1_c00040{font-family:ff1_c00040;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00040;src:url('chunks/assets/font_acf8f5bdbf3c93308bfbb64e.woff2')format("woff");}.ff2_c00040{font-family:ff2_c00040;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00040;src:url('chunks/assets/font_9717ac7d39b66157c6e6e55c.woff2')format("woff");}.ff3_c00040{font-family:ff3_c00040;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00040;src:url('chunks/assets/font_7c7da538c08e76e391eef1e0.woff2')format("woff");}.ff4_c00040{font-family:ff4_c00040;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00040;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff5_c00040{font-family:ff5_c00040;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00040;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c00040{font-family:ff6_c00040;line-height:1.219238;font-style: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;}
.ls2_c00040{letter-spacing:-6.000000px;}
.ls1_c00040{letter-spacing:0.000000px;}
.ls0_c00040{letter-spacing:17.064000px;}
.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:-61.686000px;}
.ws0_c00040{word-spacing:-20.250000px;}
.ws2_c00040{word-spacing:-17.352000px;}
.ws3_c00040{word-spacing:0.000000px;}
._1c_c00040{margin-left:-20.979000px;}
._17_c00040{margin-left:-16.011000px;}
._16_c00040{margin-left:-14.247000px;}
._19_c00040{margin-left:-11.250000px;}
._10_c00040{margin-left:-10.188000px;}
._15_c00040{margin-left:-8.613000px;}
._8_c00040{margin-left:-7.155000px;}
._5_c00040{margin-left:-5.049000px;}
._4_c00040{margin-left:-3.762000px;}
._c_c00040{margin-left:-2.502000px;}
._3_c00040{margin-left:-1.386000px;}
._13_c00040{width:1.278000px;}
._2_c00040{width:2.376000px;}
._1_c00040{width:3.564000px;}
._0_c00040{width:5.148000px;}
._9_c00040{width:6.273000px;}
._d_c00040{width:7.812000px;}
._f_c00040{width:9.171000px;}
._b_c00040{width:10.359000px;}
._a_c00040{width:12.411000px;}
._12_c00040{width:14.319000px;}
._11_c00040{width:16.155000px;}
._e_c00040{width:25.479000px;}
._1d_c00040{width:27.414000px;}
._7_c00040{width:33.957000px;}
._1b_c00040{width:35.730000px;}
._6_c00040{width:79.695000px;}
._18_c00040{width:116.322000px;}
._14_c00040{width:148.797000px;}
._1a_c00040{width:168.039000px;}
._1e_c00040{width:334.044000px;}
.fc2_c00040{color:transparent;}
.fc1_c00040{color:rgb(128,128,128);}
.fc0_c00040{color:rgb(0,0,0);}
.fs5_c00040{font-size:48.000000px;}
.fs2_c00040{font-size:72.000000px;}
.fs4_c00040{font-size:78.000000px;}
.fs1_c00040{font-size:81.000000px;}
.fs3_c00040{font-size:87.000000px;}
.fs0_c00040{font-size:99.000000px;}
.y0_c00040{bottom:0.000000px;}
.y26_c00040{bottom:3.105000px;}
.y25_c00040{bottom:7.228369px;}
.y24_c00040{bottom:48.570000px;}
.y23_c00040{bottom:75.270000px;}
.y22_c00040{bottom:101.220000px;}
.y21_c00040{bottom:125.520000px;}
.y20_c00040{bottom:149.820000px;}
.y1f_c00040{bottom:174.420000px;}
.y1e_c00040{bottom:199.020000px;}
.y1d_c00040{bottom:223.470000px;}
.y1c_c00040{bottom:248.070000px;}
.y1b_c00040{bottom:272.670000px;}
.y1a_c00040{bottom:297.270000px;}
.y19_c00040{bottom:321.270000px;}
.y18_c00040{bottom:344.970000px;}
.y17_c00040{bottom:369.120000px;}
.y16_c00040{bottom:393.570000px;}
.y15_c00040{bottom:417.420000px;}
.y14_c00040{bottom:442.170000px;}
.y13_c00040{bottom:466.020000px;}
.y12_c00040{bottom:491.370000px;}
.y11_c00040{bottom:517.020000px;}
.y10_c00040{bottom:541.320000px;}
.yf_c00040{bottom:565.320000px;}
.ye_c00040{bottom:589.320000px;}
.yd_c00040{bottom:613.320000px;}
.yc_c00040{bottom:637.770000px;}
.yb_c00040{bottom:662.220000px;}
.ya_c00040{bottom:687.120000px;}
.y9_c00040{bottom:713.070000px;}
.y8_c00040{bottom:736.770000px;}
.y7_c00040{bottom:760.770000px;}
.y6_c00040{bottom:785.370000px;}
.y5_c00040{bottom:809.670000px;}
.y4_c00040{bottom:834.270000px;}
.y3_c00040{bottom:857.970000px;}
.y2_c00040{bottom:882.870000px;}
.y1_c00040{bottom:916.620000px;}
.h8_c00040{height:13.200073px;}
.h9_c00040{height:43.804688px;}
.h3_c00040{height:79.497070px;}
.h4_c00040{height:84.269531px;}
.h6_c00040{height:91.160156px;}
.h5_c00040{height:91.176000px;}
.h7_c00040{height:91.291992px;}
.h2_c00040{height:115.870605px;}
.h1_c00040{height:972.750000px;}
.h0_c00040{height:973.050000px;}
.w2_c00040{width:104.875500px;}
.w0_c00040{width:667.425000px;}
.w1_c00040{width:667.500000px;}
.x0_c00040{left:0.000000px;}
.xc_c00040{left:25.050000px;}
.x1_c00040{left:27.300000px;}
.x2_c00040{left:30.450000px;}
.x3_c00040{left:31.500000px;}
.x4_c00040{left:32.850000px;}
.x5_c00040{left:34.500000px;}
.x6_c00040{left:35.550000px;}
.x7_c00040{left:36.750000px;}
.x8_c00040{left:38.550000px;}
.x9_c00040{left:40.200000px;}
.xa_c00040{left:41.250000px;}
.xb_c00040{left:42.300000px;}
.xd_c00040{left:45.000000px;}
.xe_c00040{left:47.250000px;}
.xf_c00040{left:48.300000px;}
.x10_c00040{left:49.650000px;}
.x11_c00040{left:51.000000px;}
.x12_c00040{left:52.350000px;}
.x13_c00040{left:53.550000px;}
.x14_c00040{left:55.650000px;}
.x16_c00040{left:285.526749px;}
.x15_c00040{left:366.750000px;}
@media print{
.v0_c00040{vertical-align:0.000000pt;}
.ls2_c00040{letter-spacing:-5.333333pt;}
.ls1_c00040{letter-spacing:0.000000pt;}
.ls0_c00040{letter-spacing:15.168000pt;}
.ws1_c00040{word-spacing:-54.832000pt;}
.ws0_c00040{word-spacing:-18.000000pt;}
.ws2_c00040{word-spacing:-15.424000pt;}
.ws3_c00040{word-spacing:0.000000pt;}
._1c_c00040{margin-left:-18.648000pt;}
._17_c00040{margin-left:-14.232000pt;}
._16_c00040{margin-left:-12.664000pt;}
._19_c00040{margin-left:-10.000000pt;}
._10_c00040{margin-left:-9.056000pt;}
._15_c00040{margin-left:-7.656000pt;}
._8_c00040{margin-left:-6.360000pt;}
._5_c00040{margin-left:-4.488000pt;}
._4_c00040{margin-left:-3.344000pt;}
._c_c00040{margin-left:-2.224000pt;}
._3_c00040{margin-left:-1.232000pt;}
._13_c00040{width:1.136000pt;}
._2_c00040{width:2.112000pt;}
._1_c00040{width:3.168000pt;}
._0_c00040{width:4.576000pt;}
._9_c00040{width:5.576000pt;}
._d_c00040{width:6.944000pt;}
._f_c00040{width:8.152000pt;}
._b_c00040{width:9.208000pt;}
._a_c00040{width:11.032000pt;}
._12_c00040{width:12.728000pt;}
._11_c00040{width:14.360000pt;}
._e_c00040{width:22.648000pt;}
._1d_c00040{width:24.368000pt;}
._7_c00040{width:30.184000pt;}
._1b_c00040{width:31.760000pt;}
._6_c00040{width:70.840000pt;}
._18_c00040{width:103.397333pt;}
._14_c00040{width:132.264000pt;}
._1a_c00040{width:149.368000pt;}
._1e_c00040{width:296.928000pt;}
.fs5_c00040{font-size:42.666667pt;}
.fs2_c00040{font-size:64.000000pt;}
.fs4_c00040{font-size:69.333333pt;}
.fs1_c00040{font-size:72.000000pt;}
.fs3_c00040{font-size:77.333333pt;}
.fs0_c00040{font-size:88.000000pt;}
.y0_c00040{bottom:0.000000pt;}
.y26_c00040{bottom:2.760000pt;}
.y25_c00040{bottom:6.425217pt;}
.y24_c00040{bottom:43.173333pt;}
.y23_c00040{bottom:66.906667pt;}
.y22_c00040{bottom:89.973333pt;}
.y21_c00040{bottom:111.573333pt;}
.y20_c00040{bottom:133.173333pt;}
.y1f_c00040{bottom:155.040000pt;}
.y1e_c00040{bottom:176.906667pt;}
.y1d_c00040{bottom:198.640000pt;}
.y1c_c00040{bottom:220.506667pt;}
.y1b_c00040{bottom:242.373333pt;}
.y1a_c00040{bottom:264.240000pt;}
.y19_c00040{bottom:285.573333pt;}
.y18_c00040{bottom:306.640000pt;}
.y17_c00040{bottom:328.106667pt;}
.y16_c00040{bottom:349.840000pt;}
.y15_c00040{bottom:371.040000pt;}
.y14_c00040{bottom:393.040000pt;}
.y13_c00040{bottom:414.240000pt;}
.y12_c00040{bottom:436.773333pt;}
.y11_c00040{bottom:459.573333pt;}
.y10_c00040{bottom:481.173333pt;}
.yf_c00040{bottom:502.506667pt;}
.ye_c00040{bottom:523.840000pt;}
.yd_c00040{bottom:545.173333pt;}
.yc_c00040{bottom:566.906667pt;}
.yb_c00040{bottom:588.640000pt;}
.ya_c00040{bottom:610.773333pt;}
.y9_c00040{bottom:633.840000pt;}
.y8_c00040{bottom:654.906667pt;}
.y7_c00040{bottom:676.240000pt;}
.y6_c00040{bottom:698.106667pt;}
.y5_c00040{bottom:719.706667pt;}
.y4_c00040{bottom:741.573333pt;}
.y3_c00040{bottom:762.640000pt;}
.y2_c00040{bottom:784.773333pt;}
.y1_c00040{bottom:814.773333pt;}
.h8_c00040{height:11.733399pt;}
.h9_c00040{height:38.937500pt;}
.h3_c00040{height:70.664062pt;}
.h4_c00040{height:74.906250pt;}
.h6_c00040{height:81.031250pt;}
.h5_c00040{height:81.045333pt;}
.h7_c00040{height:81.148438pt;}
.h2_c00040{height:102.996094pt;}
.h1_c00040{height:864.666667pt;}
.h0_c00040{height:864.933333pt;}
.w2_c00040{width:93.222667pt;}
.w0_c00040{width:593.266667pt;}
.w1_c00040{width:593.333333pt;}
.x0_c00040{left:0.000000pt;}
.xc_c00040{left:22.266667pt;}
.x1_c00040{left:24.266667pt;}
.x2_c00040{left:27.066667pt;}
.x3_c00040{left:28.000000pt;}
.x4_c00040{left:29.200000pt;}
.x5_c00040{left:30.666667pt;}
.x6_c00040{left:31.600000pt;}
.x7_c00040{left:32.666667pt;}
.x8_c00040{left:34.266667pt;}
.x9_c00040{left:35.733333pt;}
.xa_c00040{left:36.666667pt;}
.xb_c00040{left:37.600000pt;}
.xd_c00040{left:40.000000pt;}
.xe_c00040{left:42.000000pt;}
.xf_c00040{left:42.933333pt;}
.x10_c00040{left:44.133333pt;}
.x11_c00040{left:45.333333pt;}
.x12_c00040{left:46.533333pt;}
.x13_c00040{left:47.600000pt;}
.x14_c00040{left:49.466667pt;}
.x16_c00040{left:253.801554pt;}
.x15_c00040{left:326.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_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_d3d74295c133182fd2818dbc.woff2')format("woff");}.ff1_c00041{font-family:ff1_c00041;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00041;src:url('chunks/assets/font_c5db8c923becfc698b9c7123.woff2')format("woff");}.ff2_c00041{font-family:ff2_c00041;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00041;src:url('chunks/assets/font_a4596c5d14956c3411cd7d24.woff2')format("woff");}.ff3_c00041{font-family:ff3_c00041;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00041;src:url('chunks/assets/font_fd4dd6d3b26bc89cb34d26fd.woff2')format("woff");}.ff4_c00041{font-family:ff4_c00041;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00041;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c00041{font-family:ff5_c00041;line-height:1.219238;font-style: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;}
.ls2_c00041{letter-spacing:-9.000000px;}
.ls1_c00041{letter-spacing:0.000000px;}
.ls0_c00041{letter-spacing:25.200000px;}
.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;}
}
.ws4_c00041{word-spacing:-20.250000px;}
.ws1_c00041{word-spacing:-18.798000px;}
.ws3_c00041{word-spacing:-17.352000px;}
.ws2_c00041{word-spacing:-8.352000px;}
.ws5_c00041{word-spacing:0.000000px;}
.ws0_c00041{word-spacing:1.197000px;}
._17_c00041{margin-left:-16.626000px;}
._16_c00041{margin-left:-14.397000px;}
._13_c00041{margin-left:-11.154000px;}
._14_c00041{margin-left:-9.282000px;}
._7_c00041{margin-left:-8.088000px;}
._8_c00041{margin-left:-7.029000px;}
._a_c00041{margin-left:-5.643000px;}
._4_c00041{margin-left:-3.960000px;}
._3_c00041{margin-left:-2.574000px;}
._b_c00041{margin-left:-1.287000px;}
._c_c00041{width:1.092000px;}
._9_c00041{width:2.736000px;}
._d_c00041{width:3.963000px;}
._f_c00041{width:5.004000px;}
._6_c00041{width:6.075000px;}
._1_c00041{width:7.920000px;}
._11_c00041{width:9.576000px;}
._0_c00041{width:10.692000px;}
._5_c00041{width:11.964000px;}
._15_c00041{width:13.392000px;}
._10_c00041{width:14.856000px;}
._1c_c00041{width:16.041000px;}
._12_c00041{width:17.772000px;}
._1a_c00041{width:18.873000px;}
._18_c00041{width:21.906000px;}
._1d_c00041{width:32.235000px;}
._19_c00041{width:33.957000px;}
._e_c00041{width:34.980000px;}
._2_c00041{width:169.290000px;}
._1b_c00041{width:179.898000px;}
.fc2_c00041{color:transparent;}
.fc1_c00041{color:rgb(128,128,128);}
.fc0_c00041{color:rgb(0,0,0);}
.fs5_c00041{font-size:48.000000px;}
.fs3_c00041{font-size:57.000000px;}
.fs4_c00041{font-size:72.000000px;}
.fs2_c00041{font-size:78.000000px;}
.fs1_c00041{font-size:81.000000px;}
.fs0_c00041{font-size:99.000000px;}
.y0_c00041{bottom:0.000000px;}
.y26_c00041{bottom:3.105000px;}
.y25_c00041{bottom:7.228357px;}
.y24_c00041{bottom:56.730000px;}
.y23_c00041{bottom:78.630000px;}
.y22_c00041{bottom:103.980000px;}
.y21_c00041{bottom:128.880000px;}
.y20_c00041{bottom:153.630000px;}
.y1f_c00041{bottom:178.080000px;}
.y1e_c00041{bottom:202.830000px;}
.y1d_c00041{bottom:227.580000px;}
.y1c_c00041{bottom:252.480000px;}
.y1b_c00041{bottom:276.780000px;}
.y1a_c00041{bottom:302.130000px;}
.y19_c00041{bottom:325.380000px;}
.y18_c00041{bottom:350.730000px;}
.y17_c00041{bottom:375.030000px;}
.y16_c00041{bottom:398.580000px;}
.y15_c00041{bottom:422.580000px;}
.y14_c00041{bottom:448.230000px;}
.y13_c00041{bottom:473.580000px;}
.y12_c00041{bottom:494.880000px;}
.y11_c00041{bottom:519.180000px;}
.y10_c00041{bottom:543.480000px;}
.yf_c00041{bottom:567.780000px;}
.ye_c00041{bottom:592.080000px;}
.yd_c00041{bottom:616.680000px;}
.yc_c00041{bottom:640.530000px;}
.yb_c00041{bottom:665.880000px;}
.ya_c00041{bottom:691.230000px;}
.y9_c00041{bottom:710.730000px;}
.y8_c00041{bottom:738.780000px;}
.y7_c00041{bottom:763.530000px;}
.y6_c00041{bottom:787.830000px;}
.y5_c00041{bottom:812.430000px;}
.y4_c00041{bottom:836.730000px;}
.y3_c00041{bottom:861.330000px;}
.y2_c00041{bottom:884.580000px;}
.y1_c00041{bottom:922.680000px;}
.h5_c00041{height:13.200074px;}
.h6_c00041{height:43.804688px;}
.h4_c00041{height:79.497070px;}
.h3_c00041{height:84.269531px;}
.h2_c00041{height:98.756836px;}
.h1_c00041{height:115.870605px;}
.h0_c00041{height:995.250000px;}
.w2_c00041{width:104.875500px;}
.w0_c00041{width:667.425000px;}
.w1_c00041{width:667.500000px;}
.x0_c00041{left:0.000000px;}
.xb_c00041{left:39.750000px;}
.xa_c00041{left:42.900000px;}
.x4_c00041{left:46.200000px;}
.x8_c00041{left:49.500000px;}
.xe_c00041{left:75.900000px;}
.x11_c00041{left:125.550000px;}
.x10_c00041{left:127.200000px;}
.xd_c00041{left:129.300000px;}
.xc_c00041{left:130.500000px;}
.x9_c00041{left:133.650000px;}
.x6_c00041{left:135.300000px;}
.x5_c00041{left:136.350000px;}
.x3_c00041{left:137.400000px;}
.x2_c00041{left:140.100000px;}
.x1_c00041{left:143.850000px;}
.xf_c00041{left:153.600000px;}
.x7_c00041{left:159.600000px;}
.x13_c00041{left:285.526749px;}
.x12_c00041{left:568.350000px;}
@media print{
.v0_c00041{vertical-align:0.000000pt;}
.ls2_c00041{letter-spacing:-8.000000pt;}
.ls1_c00041{letter-spacing:0.000000pt;}
.ls0_c00041{letter-spacing:22.400000pt;}
.ws4_c00041{word-spacing:-18.000000pt;}
.ws1_c00041{word-spacing:-16.709333pt;}
.ws3_c00041{word-spacing:-15.424000pt;}
.ws2_c00041{word-spacing:-7.424000pt;}
.ws5_c00041{word-spacing:0.000000pt;}
.ws0_c00041{word-spacing:1.064000pt;}
._17_c00041{margin-left:-14.778667pt;}
._16_c00041{margin-left:-12.797333pt;}
._13_c00041{margin-left:-9.914667pt;}
._14_c00041{margin-left:-8.250667pt;}
._7_c00041{margin-left:-7.189333pt;}
._8_c00041{margin-left:-6.248000pt;}
._a_c00041{margin-left:-5.016000pt;}
._4_c00041{margin-left:-3.520000pt;}
._3_c00041{margin-left:-2.288000pt;}
._b_c00041{margin-left:-1.144000pt;}
._c_c00041{width:0.970667pt;}
._9_c00041{width:2.432000pt;}
._d_c00041{width:3.522667pt;}
._f_c00041{width:4.448000pt;}
._6_c00041{width:5.400000pt;}
._1_c00041{width:7.040000pt;}
._11_c00041{width:8.512000pt;}
._0_c00041{width:9.504000pt;}
._5_c00041{width:10.634667pt;}
._15_c00041{width:11.904000pt;}
._10_c00041{width:13.205333pt;}
._1c_c00041{width:14.258667pt;}
._12_c00041{width:15.797333pt;}
._1a_c00041{width:16.776000pt;}
._18_c00041{width:19.472000pt;}
._1d_c00041{width:28.653333pt;}
._19_c00041{width:30.184000pt;}
._e_c00041{width:31.093333pt;}
._2_c00041{width:150.480000pt;}
._1b_c00041{width:159.909333pt;}
.fs5_c00041{font-size:42.666667pt;}
.fs3_c00041{font-size:50.666667pt;}
.fs4_c00041{font-size:64.000000pt;}
.fs2_c00041{font-size:69.333333pt;}
.fs1_c00041{font-size:72.000000pt;}
.fs0_c00041{font-size:88.000000pt;}
.y0_c00041{bottom:0.000000pt;}
.y26_c00041{bottom:2.760000pt;}
.y25_c00041{bottom:6.425206pt;}
.y24_c00041{bottom:50.426667pt;}
.y23_c00041{bottom:69.893333pt;}
.y22_c00041{bottom:92.426667pt;}
.y21_c00041{bottom:114.560000pt;}
.y20_c00041{bottom:136.560000pt;}
.y1f_c00041{bottom:158.293333pt;}
.y1e_c00041{bottom:180.293333pt;}
.y1d_c00041{bottom:202.293333pt;}
.y1c_c00041{bottom:224.426667pt;}
.y1b_c00041{bottom:246.026667pt;}
.y1a_c00041{bottom:268.560000pt;}
.y19_c00041{bottom:289.226667pt;}
.y18_c00041{bottom:311.760000pt;}
.y17_c00041{bottom:333.360000pt;}
.y16_c00041{bottom:354.293333pt;}
.y15_c00041{bottom:375.626667pt;}
.y14_c00041{bottom:398.426667pt;}
.y13_c00041{bottom:420.960000pt;}
.y12_c00041{bottom:439.893333pt;}
.y11_c00041{bottom:461.493333pt;}
.y10_c00041{bottom:483.093333pt;}
.yf_c00041{bottom:504.693333pt;}
.ye_c00041{bottom:526.293333pt;}
.yd_c00041{bottom:548.160000pt;}
.yc_c00041{bottom:569.360000pt;}
.yb_c00041{bottom:591.893333pt;}
.ya_c00041{bottom:614.426667pt;}
.y9_c00041{bottom:631.760000pt;}
.y8_c00041{bottom:656.693333pt;}
.y7_c00041{bottom:678.693333pt;}
.y6_c00041{bottom:700.293333pt;}
.y5_c00041{bottom:722.160000pt;}
.y4_c00041{bottom:743.760000pt;}
.y3_c00041{bottom:765.626667pt;}
.y2_c00041{bottom:786.293333pt;}
.y1_c00041{bottom:820.160000pt;}
.h5_c00041{height:11.733399pt;}
.h6_c00041{height:38.937500pt;}
.h4_c00041{height:70.664062pt;}
.h3_c00041{height:74.906250pt;}
.h2_c00041{height:87.783854pt;}
.h1_c00041{height:102.996094pt;}
.h0_c00041{height:884.666667pt;}
.w2_c00041{width:93.222667pt;}
.w0_c00041{width:593.266667pt;}
.w1_c00041{width:593.333333pt;}
.x0_c00041{left:0.000000pt;}
.xb_c00041{left:35.333333pt;}
.xa_c00041{left:38.133333pt;}
.x4_c00041{left:41.066667pt;}
.x8_c00041{left:44.000000pt;}
.xe_c00041{left:67.466667pt;}
.x11_c00041{left:111.600000pt;}
.x10_c00041{left:113.066667pt;}
.xd_c00041{left:114.933333pt;}
.xc_c00041{left:116.000000pt;}
.x9_c00041{left:118.800000pt;}
.x6_c00041{left:120.266667pt;}
.x5_c00041{left:121.200000pt;}
.x3_c00041{left:122.133333pt;}
.x2_c00041{left:124.533333pt;}
.x1_c00041{left:127.866667pt;}
.xf_c00041{left:136.533333pt;}
.x7_c00041{left:141.866667pt;}
.x13_c00041{left:253.801554pt;}
.x12_c00041{left:505.200000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a4732210999eee8a468d4382.woff2')format("woff");}.ff1_c00042{font-family:ff1_c00042;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00042;src:url('chunks/assets/font_5d2c0572efa073744b00731b.woff2')format("woff");}.ff2_c00042{font-family:ff2_c00042;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00042;src:url('chunks/assets/font_88fdedde90152859c226e5c4.woff2')format("woff");}.ff3_c00042{font-family:ff3_c00042;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00042;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff4_c00042{font-family:ff4_c00042;line-height:1.219238;font-style: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;}
.ls2_c00042{letter-spacing:-6.000000px;}
.ls0_c00042{letter-spacing:0.000000px;}
.ls1_c00042{letter-spacing:18.000000px;}
.sc__c00042{text-shadow:none;}
.sc0_c00042{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00042{-webkit-text-stroke:0px transparent;}
.sc0_c00042{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00042{word-spacing:-61.686000px;}
.ws0_c00042{word-spacing:-41.859000px;}
.ws2_c00042{word-spacing:-17.352000px;}
.ws3_c00042{word-spacing:0.000000px;}
._1e_c00042{margin-left:-34.533000px;}
._20_c00042{margin-left:-27.105000px;}
._1a_c00042{margin-left:-22.371000px;}
._17_c00042{margin-left:-14.799000px;}
._10_c00042{margin-left:-12.312000px;}
._16_c00042{margin-left:-10.410000px;}
._14_c00042{margin-left:-9.348000px;}
._2_c00042{margin-left:-8.118000px;}
._1c_c00042{margin-left:-6.846000px;}
._3_c00042{margin-left:-5.841000px;}
._5_c00042{margin-left:-4.776000px;}
._4_c00042{margin-left:-2.787000px;}
._0_c00042{margin-left:-1.683000px;}
._6_c00042{width:1.236000px;}
._b_c00042{width:2.238000px;}
._1_c00042{width:3.453000px;}
._8_c00042{width:5.295000px;}
._a_c00042{width:6.621000px;}
._7_c00042{width:7.644000px;}
._e_c00042{width:9.201000px;}
._c_c00042{width:10.479000px;}
._13_c00042{width:11.718000px;}
._9_c00042{width:13.041000px;}
._f_c00042{width:15.099000px;}
._15_c00042{width:16.218000px;}
._d_c00042{width:18.093000px;}
._1b_c00042{width:23.580000px;}
._19_c00042{width:24.633000px;}
._11_c00042{width:26.244000px;}
._1d_c00042{width:29.808000px;}
._12_c00042{width:35.364000px;}
._21_c00042{width:278.055000px;}
._1f_c00042{width:281.820000px;}
._23_c00042{width:308.946000px;}
._18_c00042{width:329.202000px;}
._22_c00042{width:402.249000px;}
.fc2_c00042{color:transparent;}
.fc1_c00042{color:rgb(128,128,128);}
.fc0_c00042{color:rgb(0,0,0);}
.fs4_c00042{font-size:48.000000px;}
.fs3_c00042{font-size:72.000000px;}
.fs1_c00042{font-size:81.000000px;}
.fs2_c00042{font-size:87.000000px;}
.fs0_c00042{font-size:99.000000px;}
.y0_c00042{bottom:0.000000px;}
.y25_c00042{bottom:3.105000px;}
.y24_c00042{bottom:7.228355px;}
.y23_c00042{bottom:86.685000px;}
.y22_c00042{bottom:110.685000px;}
.y21_c00042{bottom:135.885000px;}
.y20_c00042{bottom:159.885000px;}
.y1f_c00042{bottom:184.485000px;}
.y1e_c00042{bottom:208.935000px;}
.y1d_c00042{bottom:233.235000px;}
.y1c_c00042{bottom:257.835000px;}
.y1b_c00042{bottom:281.835000px;}
.y1a_c00042{bottom:306.435000px;}
.y19_c00042{bottom:329.985000px;}
.y18_c00042{bottom:355.035000px;}
.y17_c00042{bottom:377.985000px;}
.y16_c00042{bottom:401.985000px;}
.y15_c00042{bottom:426.135000px;}
.y14_c00042{bottom:451.485000px;}
.y13_c00042{bottom:474.885000px;}
.y12_c00042{bottom:498.735000px;}
.y11_c00042{bottom:523.335000px;}
.y10_c00042{bottom:547.335000px;}
.yf_c00042{bottom:571.335000px;}
.ye_c00042{bottom:595.635000px;}
.yd_c00042{bottom:619.935000px;}
.yc_c00042{bottom:643.935000px;}
.yb_c00042{bottom:667.185000px;}
.ya_c00042{bottom:691.785000px;}
.y9_c00042{bottom:716.385000px;}
.y8_c00042{bottom:740.685000px;}
.y7_c00042{bottom:764.685000px;}
.y6_c00042{bottom:789.285000px;}
.y5_c00042{bottom:813.585000px;}
.y4_c00042{bottom:837.585000px;}
.y3_c00042{bottom:861.885000px;}
.y2_c00042{bottom:886.635000px;}
.y1_c00042{bottom:920.235000px;}
.h6_c00042{height:13.200074px;}
.h7_c00042{height:43.804688px;}
.h3_c00042{height:79.497070px;}
.h5_c00042{height:84.269531px;}
.h4_c00042{height:91.176000px;}
.h2_c00042{height:115.870605px;}
.h1_c00042{height:975.000000px;}
.h0_c00042{height:975.225000px;}
.w2_c00042{width:104.875500px;}
.w1_c00042{width:669.000000px;}
.w0_c00042{width:669.075000px;}
.x0_c00042{left:0.000000px;}
.x3_c00042{left:28.050000px;}
.x2_c00042{left:45.150000px;}
.x4_c00042{left:46.200000px;}
.x5_c00042{left:47.550000px;}
.x1_c00042{left:100.800000px;}
.x6_c00042{left:286.351730px;}
@media print{
.v0_c00042{vertical-align:0.000000pt;}
.ls2_c00042{letter-spacing:-5.333333pt;}
.ls0_c00042{letter-spacing:0.000000pt;}
.ls1_c00042{letter-spacing:16.000000pt;}
.ws1_c00042{word-spacing:-54.832000pt;}
.ws0_c00042{word-spacing:-37.208000pt;}
.ws2_c00042{word-spacing:-15.424000pt;}
.ws3_c00042{word-spacing:0.000000pt;}
._1e_c00042{margin-left:-30.696000pt;}
._20_c00042{margin-left:-24.093333pt;}
._1a_c00042{margin-left:-19.885333pt;}
._17_c00042{margin-left:-13.154667pt;}
._10_c00042{margin-left:-10.944000pt;}
._16_c00042{margin-left:-9.253333pt;}
._14_c00042{margin-left:-8.309333pt;}
._2_c00042{margin-left:-7.216000pt;}
._1c_c00042{margin-left:-6.085333pt;}
._3_c00042{margin-left:-5.192000pt;}
._5_c00042{margin-left:-4.245333pt;}
._4_c00042{margin-left:-2.477333pt;}
._0_c00042{margin-left:-1.496000pt;}
._6_c00042{width:1.098667pt;}
._b_c00042{width:1.989333pt;}
._1_c00042{width:3.069333pt;}
._8_c00042{width:4.706667pt;}
._a_c00042{width:5.885333pt;}
._7_c00042{width:6.794667pt;}
._e_c00042{width:8.178667pt;}
._c_c00042{width:9.314667pt;}
._13_c00042{width:10.416000pt;}
._9_c00042{width:11.592000pt;}
._f_c00042{width:13.421333pt;}
._15_c00042{width:14.416000pt;}
._d_c00042{width:16.082667pt;}
._1b_c00042{width:20.960000pt;}
._19_c00042{width:21.896000pt;}
._11_c00042{width:23.328000pt;}
._1d_c00042{width:26.496000pt;}
._12_c00042{width:31.434667pt;}
._21_c00042{width:247.160000pt;}
._1f_c00042{width:250.506667pt;}
._23_c00042{width:274.618667pt;}
._18_c00042{width:292.624000pt;}
._22_c00042{width:357.554667pt;}
.fs4_c00042{font-size:42.666667pt;}
.fs3_c00042{font-size:64.000000pt;}
.fs1_c00042{font-size:72.000000pt;}
.fs2_c00042{font-size:77.333333pt;}
.fs0_c00042{font-size:88.000000pt;}
.y0_c00042{bottom:0.000000pt;}
.y25_c00042{bottom:2.760000pt;}
.y24_c00042{bottom:6.425204pt;}
.y23_c00042{bottom:77.053333pt;}
.y22_c00042{bottom:98.386667pt;}
.y21_c00042{bottom:120.786667pt;}
.y20_c00042{bottom:142.120000pt;}
.y1f_c00042{bottom:163.986667pt;}
.y1e_c00042{bottom:185.720000pt;}
.y1d_c00042{bottom:207.320000pt;}
.y1c_c00042{bottom:229.186667pt;}
.y1b_c00042{bottom:250.520000pt;}
.y1a_c00042{bottom:272.386667pt;}
.y19_c00042{bottom:293.320000pt;}
.y18_c00042{bottom:315.586667pt;}
.y17_c00042{bottom:335.986667pt;}
.y16_c00042{bottom:357.320000pt;}
.y15_c00042{bottom:378.786667pt;}
.y14_c00042{bottom:401.320000pt;}
.y13_c00042{bottom:422.120000pt;}
.y12_c00042{bottom:443.320000pt;}
.y11_c00042{bottom:465.186667pt;}
.y10_c00042{bottom:486.520000pt;}
.yf_c00042{bottom:507.853333pt;}
.ye_c00042{bottom:529.453333pt;}
.yd_c00042{bottom:551.053333pt;}
.yc_c00042{bottom:572.386667pt;}
.yb_c00042{bottom:593.053333pt;}
.ya_c00042{bottom:614.920000pt;}
.y9_c00042{bottom:636.786667pt;}
.y8_c00042{bottom:658.386667pt;}
.y7_c00042{bottom:679.720000pt;}
.y6_c00042{bottom:701.586667pt;}
.y5_c00042{bottom:723.186667pt;}
.y4_c00042{bottom:744.520000pt;}
.y3_c00042{bottom:766.120000pt;}
.y2_c00042{bottom:788.120000pt;}
.y1_c00042{bottom:817.986667pt;}
.h6_c00042{height:11.733399pt;}
.h7_c00042{height:38.937500pt;}
.h3_c00042{height:70.664062pt;}
.h5_c00042{height:74.906250pt;}
.h4_c00042{height:81.045333pt;}
.h2_c00042{height:102.996094pt;}
.h1_c00042{height:866.666667pt;}
.h0_c00042{height:866.866667pt;}
.w2_c00042{width:93.222667pt;}
.w1_c00042{width:594.666667pt;}
.w0_c00042{width:594.733333pt;}
.x0_c00042{left:0.000000pt;}
.x3_c00042{left:24.933333pt;}
.x2_c00042{left:40.133333pt;}
.x4_c00042{left:41.066667pt;}
.x5_c00042{left:42.266667pt;}
.x1_c00042{left:89.600000pt;}
.x6_c00042{left:254.534871pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c6d09de5f6fa5f9007e478ad.woff2')format("woff");}.ff1_c00043{font-family:ff1_c00043;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00043;src:url('chunks/assets/font_50f8c1db19e54bac466b5a26.woff2')format("woff");}.ff2_c00043{font-family:ff2_c00043;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00043;src:url('chunks/assets/font_6af32b5fa578296bbb5b7839.woff2')format("woff");}.ff3_c00043{font-family:ff3_c00043;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00043;src:url('chunks/assets/font_f6e746072573d8a62c9ebd18.woff2')format("woff");}.ff4_c00043{font-family:ff4_c00043;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00043;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c00043{font-family:ff5_c00043;line-height:1.219238;font-style: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;}
.ls4_c00043{letter-spacing:0.000000px;}
.ls1_c00043{letter-spacing:0.600000px;}
.ls2_c00043{letter-spacing:6.600000px;}
.ls0_c00043{letter-spacing:20.880000px;}
.ls3_c00043{letter-spacing:21.000000px;}
.sc__c00043{text-shadow:none;}
.sc0_c00043{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00043{-webkit-text-stroke:0px transparent;}
.sc0_c00043{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00043{word-spacing:-54.000000px;}
.ws0_c00043{word-spacing:-23.859000px;}
.ws1_c00043{word-spacing:-17.352000px;}
.ws3_c00043{word-spacing:0.000000px;}
._8_c00043{margin-left:-36.432000px;}
._1_c00043{margin-left:-34.452000px;}
._0_c00043{margin-left:-29.172000px;}
._1d_c00043{margin-left:-22.413000px;}
._7_c00043{margin-left:-20.652000px;}
._22_c00043{margin-left:-18.063000px;}
._12_c00043{margin-left:-13.152000px;}
._20_c00043{margin-left:-10.584000px;}
._1a_c00043{margin-left:-9.336000px;}
._13_c00043{margin-left:-8.085000px;}
._a_c00043{margin-left:-6.540000px;}
._10_c00043{margin-left:-5.184000px;}
._d_c00043{margin-left:-3.699000px;}
._b_c00043{margin-left:-2.178000px;}
._14_c00043{margin-left:-1.131000px;}
._11_c00043{width:1.140000px;}
._e_c00043{width:2.709000px;}
._3_c00043{width:4.059000px;}
._4_c00043{width:5.346000px;}
._5_c00043{width:6.534000px;}
._6_c00043{width:7.623000px;}
._c_c00043{width:9.486000px;}
._1b_c00043{width:10.815000px;}
._9_c00043{width:11.886000px;}
._15_c00043{width:13.086000px;}
._f_c00043{width:14.706000px;}
._1c_c00043{width:16.308000px;}
._21_c00043{width:30.327000px;}
._16_c00043{width:31.989000px;}
._1f_c00043{width:34.020000px;}
._17_c00043{width:111.765000px;}
._19_c00043{width:161.196000px;}
._2_c00043{width:202.152000px;}
._1e_c00043{width:492.561000px;}
._18_c00043{width:524.283000px;}
._23_c00043{width:1613.469000px;}
.fc2_c00043{color:transparent;}
.fc1_c00043{color:rgb(128,128,128);}
.fc0_c00043{color:rgb(0,0,0);}
.fs6_c00043{font-size:48.000000px;}
.fs5_c00043{font-size:66.000000px;}
.fs4_c00043{font-size:72.000000px;}
.fs3_c00043{font-size:78.000000px;}
.fs2_c00043{font-size:81.000000px;}
.fs1_c00043{font-size:99.000000px;}
.fs0_c00043{font-size:132.000000px;}
.y0_c00043{bottom:0.000000px;}
.y26_c00043{bottom:3.105000px;}
.y25_c00043{bottom:7.228369px;}
.y24_c00043{bottom:53.970000px;}
.y23_c00043{bottom:77.520000px;}
.y22_c00043{bottom:103.320000px;}
.y21_c00043{bottom:127.470000px;}
.y20_c00043{bottom:152.220000px;}
.y1f_c00043{bottom:177.120000px;}
.y1e_c00043{bottom:202.170000px;}
.y1d_c00043{bottom:227.070000px;}
.y1c_c00043{bottom:251.070000px;}
.y1b_c00043{bottom:275.970000px;}
.y1a_c00043{bottom:300.270000px;}
.y19_c00043{bottom:324.570000px;}
.y18_c00043{bottom:349.020000px;}
.y17_c00043{bottom:372.570000px;}
.y16_c00043{bottom:397.620000px;}
.y15_c00043{bottom:421.920000px;}
.y14_c00043{bottom:446.520000px;}
.y13_c00043{bottom:471.420000px;}
.y12_c00043{bottom:494.670000px;}
.y11_c00043{bottom:519.120000px;}
.y10_c00043{bottom:543.720000px;}
.yf_c00043{bottom:568.320000px;}
.ye_c00043{bottom:592.620000px;}
.yd_c00043{bottom:617.520000px;}
.yc_c00043{bottom:642.270000px;}
.yb_c00043{bottom:666.570000px;}
.ya_c00043{bottom:690.570000px;}
.y9_c00043{bottom:714.870000px;}
.y8_c00043{bottom:739.470000px;}
.y7_c00043{bottom:764.670000px;}
.y6_c00043{bottom:787.770000px;}
.y5_c00043{bottom:813.270000px;}
.y4_c00043{bottom:837.270000px;}
.y3_c00043{bottom:861.870000px;}
.y2_c00043{bottom:886.170000px;}
.y1_c00043{bottom:920.970000px;}
.h6_c00043{height:13.200073px;}
.h7_c00043{height:43.804688px;}
.h3_c00043{height:79.497070px;}
.h5_c00043{height:84.269531px;}
.h4_c00043{height:98.756836px;}
.h2_c00043{height:167.126953px;}
.h1_c00043{height:986.250000px;}
.h0_c00043{height:986.550000px;}
.w1_c00043{width:104.875500px;}
.w0_c00043{width:661.500000px;}
.x0_c00043{left:0.000000px;}
.xb_c00043{left:41.850000px;}
.x3_c00043{left:45.150000px;}
.x4_c00043{left:52.200000px;}
.x6_c00043{left:77.850000px;}
.xc_c00043{left:133.350000px;}
.x5_c00043{left:136.950000px;}
.x2_c00043{left:138.300000px;}
.x1_c00043{left:139.350000px;}
.x9_c00043{left:140.400000px;}
.x7_c00043{left:142.350000px;}
.x8_c00043{left:143.550000px;}
.xa_c00043{left:163.650000px;}
.xd_c00043{left:171.450000px;}
.xe_c00043{left:282.564240px;}
@media print{
.v0_c00043{vertical-align:0.000000pt;}
.ls4_c00043{letter-spacing:0.000000pt;}
.ls1_c00043{letter-spacing:0.533333pt;}
.ls2_c00043{letter-spacing:5.866667pt;}
.ls0_c00043{letter-spacing:18.560000pt;}
.ls3_c00043{letter-spacing:18.666667pt;}
.ws2_c00043{word-spacing:-48.000000pt;}
.ws0_c00043{word-spacing:-21.208000pt;}
.ws1_c00043{word-spacing:-15.424000pt;}
.ws3_c00043{word-spacing:0.000000pt;}
._8_c00043{margin-left:-32.384000pt;}
._1_c00043{margin-left:-30.624000pt;}
._0_c00043{margin-left:-25.930667pt;}
._1d_c00043{margin-left:-19.922667pt;}
._7_c00043{margin-left:-18.357333pt;}
._22_c00043{margin-left:-16.056000pt;}
._12_c00043{margin-left:-11.690667pt;}
._20_c00043{margin-left:-9.408000pt;}
._1a_c00043{margin-left:-8.298667pt;}
._13_c00043{margin-left:-7.186667pt;}
._a_c00043{margin-left:-5.813333pt;}
._10_c00043{margin-left:-4.608000pt;}
._d_c00043{margin-left:-3.288000pt;}
._b_c00043{margin-left:-1.936000pt;}
._14_c00043{margin-left:-1.005333pt;}
._11_c00043{width:1.013333pt;}
._e_c00043{width:2.408000pt;}
._3_c00043{width:3.608000pt;}
._4_c00043{width:4.752000pt;}
._5_c00043{width:5.808000pt;}
._6_c00043{width:6.776000pt;}
._c_c00043{width:8.432000pt;}
._1b_c00043{width:9.613333pt;}
._9_c00043{width:10.565333pt;}
._15_c00043{width:11.632000pt;}
._f_c00043{width:13.072000pt;}
._1c_c00043{width:14.496000pt;}
._21_c00043{width:26.957333pt;}
._16_c00043{width:28.434667pt;}
._1f_c00043{width:30.240000pt;}
._17_c00043{width:99.346667pt;}
._19_c00043{width:143.285333pt;}
._2_c00043{width:179.690667pt;}
._1e_c00043{width:437.832000pt;}
._18_c00043{width:466.029333pt;}
._23_c00043{width:1434.194667pt;}
.fs6_c00043{font-size:42.666667pt;}
.fs5_c00043{font-size:58.666667pt;}
.fs4_c00043{font-size:64.000000pt;}
.fs3_c00043{font-size:69.333333pt;}
.fs2_c00043{font-size:72.000000pt;}
.fs1_c00043{font-size:88.000000pt;}
.fs0_c00043{font-size:117.333333pt;}
.y0_c00043{bottom:0.000000pt;}
.y26_c00043{bottom:2.760000pt;}
.y25_c00043{bottom:6.425217pt;}
.y24_c00043{bottom:47.973333pt;}
.y23_c00043{bottom:68.906667pt;}
.y22_c00043{bottom:91.840000pt;}
.y21_c00043{bottom:113.306667pt;}
.y20_c00043{bottom:135.306667pt;}
.y1f_c00043{bottom:157.440000pt;}
.y1e_c00043{bottom:179.706667pt;}
.y1d_c00043{bottom:201.840000pt;}
.y1c_c00043{bottom:223.173333pt;}
.y1b_c00043{bottom:245.306667pt;}
.y1a_c00043{bottom:266.906667pt;}
.y19_c00043{bottom:288.506667pt;}
.y18_c00043{bottom:310.240000pt;}
.y17_c00043{bottom:331.173333pt;}
.y16_c00043{bottom:353.440000pt;}
.y15_c00043{bottom:375.040000pt;}
.y14_c00043{bottom:396.906667pt;}
.y13_c00043{bottom:419.040000pt;}
.y12_c00043{bottom:439.706667pt;}
.y11_c00043{bottom:461.440000pt;}
.y10_c00043{bottom:483.306667pt;}
.yf_c00043{bottom:505.173333pt;}
.ye_c00043{bottom:526.773333pt;}
.yd_c00043{bottom:548.906667pt;}
.yc_c00043{bottom:570.906667pt;}
.yb_c00043{bottom:592.506667pt;}
.ya_c00043{bottom:613.840000pt;}
.y9_c00043{bottom:635.440000pt;}
.y8_c00043{bottom:657.306667pt;}
.y7_c00043{bottom:679.706667pt;}
.y6_c00043{bottom:700.240000pt;}
.y5_c00043{bottom:722.906667pt;}
.y4_c00043{bottom:744.240000pt;}
.y3_c00043{bottom:766.106667pt;}
.y2_c00043{bottom:787.706667pt;}
.y1_c00043{bottom:818.640000pt;}
.h6_c00043{height:11.733399pt;}
.h7_c00043{height:38.937500pt;}
.h3_c00043{height:70.664062pt;}
.h5_c00043{height:74.906250pt;}
.h4_c00043{height:87.783854pt;}
.h2_c00043{height:148.557292pt;}
.h1_c00043{height:876.666667pt;}
.h0_c00043{height:876.933333pt;}
.w1_c00043{width:93.222667pt;}
.w0_c00043{width:588.000000pt;}
.x0_c00043{left:0.000000pt;}
.xb_c00043{left:37.200000pt;}
.x3_c00043{left:40.133333pt;}
.x4_c00043{left:46.400000pt;}
.x6_c00043{left:69.200000pt;}
.xc_c00043{left:118.533333pt;}
.x5_c00043{left:121.733333pt;}
.x2_c00043{left:122.933333pt;}
.x1_c00043{left:123.866667pt;}
.x9_c00043{left:124.800000pt;}
.x7_c00043{left:126.533333pt;}
.x8_c00043{left:127.600000pt;}
.xa_c00043{left:145.466667pt;}
.xd_c00043{left:152.400000pt;}
.xe_c00043{left:251.168213pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b9117d3b7f38205722dc0167.woff2')format("woff");}.ff1_c00044{font-family:ff1_c00044;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00044;src:url('chunks/assets/font_3be74922349a30daf00818ba.woff2')format("woff");}.ff2_c00044{font-family:ff2_c00044;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00044;src:url('chunks/assets/font_635dded05a1d6e9bab1fe0cd.woff2')format("woff");}.ff3_c00044{font-family:ff3_c00044;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00044;src:url('chunks/assets/font_51ae4b0463935837026686f6.woff2')format("woff");}.ff4_c00044{font-family:ff4_c00044;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00044;src:url('chunks/assets/font_57a2b9635afca6c25ac869c1.woff2')format("woff");}.ff5_c00044{font-family:ff5_c00044;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00044;src:url('chunks/assets/font_bc06014d2b5ded5474fe87f3.woff2')format("woff");}.ff6_c00044{font-family:ff6_c00044;line-height:1.437000;font-style:normal;font-weight: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_c00044;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c00044{font-family:ff7_c00044;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00044{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00044{vertical-align:0.000000px;}
.v1_c00044{vertical-align:16.800000px;}
.ls5_c00044{letter-spacing:0.000000px;}
.ls2_c00044{letter-spacing:3.909000px;}
.ls0_c00044{letter-spacing:5.370000px;}
.ls3_c00044{letter-spacing:6.300000px;}
.ls1_c00044{letter-spacing:9.309000px;}
.ls6_c00044{letter-spacing:18.000000px;}
.ls4_c00044{letter-spacing:150.480000px;}
.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;}
}
.ws2_c00044{word-spacing:-38.250000px;}
.ws3_c00044{word-spacing:-20.250000px;}
.ws0_c00044{word-spacing:-17.352000px;}
.ws1_c00044{word-spacing:-13.446000px;}
.ws4_c00044{word-spacing:0.000000px;}
._21_c00044{margin-left:-29.673000px;}
._17_c00044{margin-left:-25.350000px;}
._19_c00044{margin-left:-23.805000px;}
._1d_c00044{margin-left:-21.339000px;}
._1a_c00044{margin-left:-19.899000px;}
._12_c00044{margin-left:-17.139000px;}
._18_c00044{margin-left:-12.798000px;}
._16_c00044{margin-left:-10.941000px;}
._5_c00044{margin-left:-9.108000px;}
._7_c00044{margin-left:-8.019000px;}
._8_c00044{margin-left:-6.534000px;}
._6_c00044{margin-left:-5.445000px;}
._14_c00044{margin-left:-4.386000px;}
._0_c00044{margin-left:-3.267000px;}
._1_c00044{margin-left:-1.287000px;}
._2_c00044{width:1.089000px;}
._c_c00044{width:2.763000px;}
._3_c00044{width:3.861000px;}
._a_c00044{width:5.706000px;}
._d_c00044{width:7.317000px;}
._11_c00044{width:8.847000px;}
._b_c00044{width:10.773000px;}
._13_c00044{width:12.033000px;}
._15_c00044{width:13.158000px;}
._e_c00044{width:14.580000px;}
._10_c00044{width:15.939000px;}
._f_c00044{width:18.117000px;}
._20_c00044{width:19.224000px;}
._1b_c00044{width:28.668000px;}
._23_c00044{width:30.087000px;}
._1f_c00044{width:33.405000px;}
._1e_c00044{width:37.905000px;}
._9_c00044{width:83.358000px;}
._22_c00044{width:221.676000px;}
._4_c00044{width:229.977000px;}
._1c_c00044{width:236.016000px;}
.fc2_c00044{color:transparent;}
.fc1_c00044{color:rgb(128,128,128);}
.fc0_c00044{color:rgb(0,0,0);}
.fs8_c00044{font-size:48.000000px;}
.fs4_c00044{font-size:51.000000px;}
.fs3_c00044{font-size:54.000000px;}
.fs5_c00044{font-size:57.000000px;}
.fs6_c00044{font-size:60.000000px;}
.fs2_c00044{font-size:72.000000px;}
.fs7_c00044{font-size:78.000000px;}
.fs1_c00044{font-size:81.000000px;}
.fs0_c00044{font-size:99.000000px;}
.y0_c00044{bottom:0.000000px;}
.y26_c00044{bottom:3.105000px;}
.y25_c00044{bottom:7.228357px;}
.y24_c00044{bottom:56.430000px;}
.y23_c00044{bottom:78.030000px;}
.y22_c00044{bottom:104.280000px;}
.y21_c00044{bottom:128.580000px;}
.y20_c00044{bottom:153.930000px;}
.y1f_c00044{bottom:177.630000px;}
.y1e_c00044{bottom:202.830000px;}
.y1d_c00044{bottom:227.430000px;}
.y1c_c00044{bottom:251.880000px;}
.y1b_c00044{bottom:277.080000px;}
.y1a_c00044{bottom:301.080000px;}
.y19_c00044{bottom:324.630000px;}
.y18_c00044{bottom:349.380000px;}
.y17_c00044{bottom:373.680000px;}
.y16_c00044{bottom:396.930000px;}
.y15_c00044{bottom:421.230000px;}
.y14_c00044{bottom:442.080000px;}
.y13_c00044{bottom:470.880000px;}
.y12_c00044{bottom:493.080000px;}
.y11_c00044{bottom:519.180000px;}
.y10_c00044{bottom:543.780000px;}
.yf_c00044{bottom:568.080000px;}
.ye_c00044{bottom:592.680000px;}
.yd_c00044{bottom:616.380000px;}
.yc_c00044{bottom:640.680000px;}
.yb_c00044{bottom:664.830000px;}
.ya_c00044{bottom:689.280000px;}
.y9_c00044{bottom:713.880000px;}
.y8_c00044{bottom:737.880000px;}
.y7_c00044{bottom:762.480000px;}
.y6_c00044{bottom:786.780000px;}
.y5_c00044{bottom:811.380000px;}
.y4_c00044{bottom:835.380000px;}
.y3_c00044{bottom:859.680000px;}
.y2_c00044{bottom:884.580000px;}
.y1_c00044{bottom:919.680000px;}
.h6_c00044{height:13.200074px;}
.h7_c00044{height:43.804688px;}
.h4_c00044{height:59.736000px;}
.h2_c00044{height:79.497070px;}
.h3_c00044{height:84.269531px;}
.h5_c00044{height:115.556836px;}
.h1_c00044{height:115.870605px;}
.h0_c00044{height:968.250000px;}
.w2_c00044{width:104.875500px;}
.w1_c00044{width:664.500000px;}
.w0_c00044{width:664.725000px;}
.x0_c00044{left:0.000000px;}
.x1_c00044{left:22.350000px;}
.x2_c00044{left:24.600000px;}
.x3_c00044{left:25.950000px;}
.x4_c00044{left:27.750000px;}
.x5_c00044{left:31.350000px;}
.x6_c00044{left:32.700000px;}
.x7_c00044{left:34.200000px;}
.x8_c00044{left:35.400000px;}
.xc_c00044{left:38.550000px;}
.xa_c00044{left:39.600000px;}
.xd_c00044{left:40.800000px;}
.xe_c00044{left:42.150000px;}
.xf_c00044{left:43.200000px;}
.x10_c00044{left:44.850000px;}
.x11_c00044{left:45.900000px;}
.x12_c00044{left:47.250000px;}
.x13_c00044{left:48.300000px;}
.x14_c00044{left:49.350000px;}
.xb_c00044{left:88.800000px;}
.x9_c00044{left:119.250000px;}
.x16_c00044{left:284.176758px;}
.x15_c00044{left:478.650000px;}
@media print{
.v0_c00044{vertical-align:0.000000pt;}
.v1_c00044{vertical-align:14.933333pt;}
.ls5_c00044{letter-spacing:0.000000pt;}
.ls2_c00044{letter-spacing:3.474667pt;}
.ls0_c00044{letter-spacing:4.773333pt;}
.ls3_c00044{letter-spacing:5.600000pt;}
.ls1_c00044{letter-spacing:8.274667pt;}
.ls6_c00044{letter-spacing:16.000000pt;}
.ls4_c00044{letter-spacing:133.760000pt;}
.ws2_c00044{word-spacing:-34.000000pt;}
.ws3_c00044{word-spacing:-18.000000pt;}
.ws0_c00044{word-spacing:-15.424000pt;}
.ws1_c00044{word-spacing:-11.952000pt;}
.ws4_c00044{word-spacing:0.000000pt;}
._21_c00044{margin-left:-26.376000pt;}
._17_c00044{margin-left:-22.533333pt;}
._19_c00044{margin-left:-21.160000pt;}
._1d_c00044{margin-left:-18.968000pt;}
._1a_c00044{margin-left:-17.688000pt;}
._12_c00044{margin-left:-15.234667pt;}
._18_c00044{margin-left:-11.376000pt;}
._16_c00044{margin-left:-9.725333pt;}
._5_c00044{margin-left:-8.096000pt;}
._7_c00044{margin-left:-7.128000pt;}
._8_c00044{margin-left:-5.808000pt;}
._6_c00044{margin-left:-4.840000pt;}
._14_c00044{margin-left:-3.898667pt;}
._0_c00044{margin-left:-2.904000pt;}
._1_c00044{margin-left:-1.144000pt;}
._2_c00044{width:0.968000pt;}
._c_c00044{width:2.456000pt;}
._3_c00044{width:3.432000pt;}
._a_c00044{width:5.072000pt;}
._d_c00044{width:6.504000pt;}
._11_c00044{width:7.864000pt;}
._b_c00044{width:9.576000pt;}
._13_c00044{width:10.696000pt;}
._15_c00044{width:11.696000pt;}
._e_c00044{width:12.960000pt;}
._10_c00044{width:14.168000pt;}
._f_c00044{width:16.104000pt;}
._20_c00044{width:17.088000pt;}
._1b_c00044{width:25.482667pt;}
._23_c00044{width:26.744000pt;}
._1f_c00044{width:29.693333pt;}
._1e_c00044{width:33.693333pt;}
._9_c00044{width:74.096000pt;}
._22_c00044{width:197.045333pt;}
._4_c00044{width:204.424000pt;}
._1c_c00044{width:209.792000pt;}
.fs8_c00044{font-size:42.666667pt;}
.fs4_c00044{font-size:45.333333pt;}
.fs3_c00044{font-size:48.000000pt;}
.fs5_c00044{font-size:50.666667pt;}
.fs6_c00044{font-size:53.333333pt;}
.fs2_c00044{font-size:64.000000pt;}
.fs7_c00044{font-size:69.333333pt;}
.fs1_c00044{font-size:72.000000pt;}
.fs0_c00044{font-size:88.000000pt;}
.y0_c00044{bottom:0.000000pt;}
.y26_c00044{bottom:2.760000pt;}
.y25_c00044{bottom:6.425206pt;}
.y24_c00044{bottom:50.160000pt;}
.y23_c00044{bottom:69.360000pt;}
.y22_c00044{bottom:92.693333pt;}
.y21_c00044{bottom:114.293333pt;}
.y20_c00044{bottom:136.826667pt;}
.y1f_c00044{bottom:157.893333pt;}
.y1e_c00044{bottom:180.293333pt;}
.y1d_c00044{bottom:202.160000pt;}
.y1c_c00044{bottom:223.893333pt;}
.y1b_c00044{bottom:246.293333pt;}
.y1a_c00044{bottom:267.626667pt;}
.y19_c00044{bottom:288.560000pt;}
.y18_c00044{bottom:310.560000pt;}
.y17_c00044{bottom:332.160000pt;}
.y16_c00044{bottom:352.826667pt;}
.y15_c00044{bottom:374.426667pt;}
.y14_c00044{bottom:392.960000pt;}
.y13_c00044{bottom:418.560000pt;}
.y12_c00044{bottom:438.293333pt;}
.y11_c00044{bottom:461.493333pt;}
.y10_c00044{bottom:483.360000pt;}
.yf_c00044{bottom:504.960000pt;}
.ye_c00044{bottom:526.826667pt;}
.yd_c00044{bottom:547.893333pt;}
.yc_c00044{bottom:569.493333pt;}
.yb_c00044{bottom:590.960000pt;}
.ya_c00044{bottom:612.693333pt;}
.y9_c00044{bottom:634.560000pt;}
.y8_c00044{bottom:655.893333pt;}
.y7_c00044{bottom:677.760000pt;}
.y6_c00044{bottom:699.360000pt;}
.y5_c00044{bottom:721.226667pt;}
.y4_c00044{bottom:742.560000pt;}
.y3_c00044{bottom:764.160000pt;}
.y2_c00044{bottom:786.293333pt;}
.y1_c00044{bottom:817.493333pt;}
.h6_c00044{height:11.733399pt;}
.h7_c00044{height:38.937500pt;}
.h4_c00044{height:53.098667pt;}
.h2_c00044{height:70.664062pt;}
.h3_c00044{height:74.906250pt;}
.h5_c00044{height:102.717187pt;}
.h1_c00044{height:102.996094pt;}
.h0_c00044{height:860.666667pt;}
.w2_c00044{width:93.222667pt;}
.w1_c00044{width:590.666667pt;}
.w0_c00044{width:590.866667pt;}
.x0_c00044{left:0.000000pt;}
.x1_c00044{left:19.866667pt;}
.x2_c00044{left:21.866667pt;}
.x3_c00044{left:23.066667pt;}
.x4_c00044{left:24.666667pt;}
.x5_c00044{left:27.866667pt;}
.x6_c00044{left:29.066667pt;}
.x7_c00044{left:30.400000pt;}
.x8_c00044{left:31.466667pt;}
.xc_c00044{left:34.266667pt;}
.xa_c00044{left:35.200000pt;}
.xd_c00044{left:36.266667pt;}
.xe_c00044{left:37.466667pt;}
.xf_c00044{left:38.400000pt;}
.x10_c00044{left:39.866667pt;}
.x11_c00044{left:40.800000pt;}
.x12_c00044{left:42.000000pt;}
.x13_c00044{left:42.933333pt;}
.x14_c00044{left:43.866667pt;}
.xb_c00044{left:78.933333pt;}
.x9_c00044{left:106.000000pt;}
.x16_c00044{left:252.601563pt;}
.x15_c00044{left:425.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f979b039dd58f7ee8b14e59a.woff2')format("woff");}.ff1_c00045{font-family:ff1_c00045;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00045;src:url('chunks/assets/font_156b028cf35755ea2ac818a5.woff2')format("woff");}.ff2_c00045{font-family:ff2_c00045;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00045;src:url('chunks/assets/font_a52a12e6ef0d3999acf2d97e.woff2')format("woff");}.ff3_c00045{font-family:ff3_c00045;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00045;src:url('chunks/assets/font_05d15eb59113345bacd93d97.woff2')format("woff");}.ff4_c00045{font-family:ff4_c00045;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00045;src:url('chunks/assets/font_39a0d7ee778bbe5fe22072b3.woff2')format("woff");}.ff5_c00045{font-family:ff5_c00045;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00045;src:url('chunks/assets/font_6ab92555b2bba504f535f182.woff2')format("woff");}.ff6_c00045{font-family:ff6_c00045;line-height:1.311035;font-style:normal;font-weight: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_c00045;src:url('chunks/assets/font_b7f201d3e8a51a166939edb8.woff2')format("woff");}.ff7_c00045{font-family:ff7_c00045;line-height:1.437000;font-style:normal;font-weight: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_c00045;src:url('chunks/assets/font_7d2253dbfe723ea0859ac8f9.woff2')format("woff");}.ff8_c00045{font-family:ff8_c00045;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00045;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff9_c00045{font-family:ff9_c00045;line-height:1.219238;font-style: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;}
.ls6_c00045{letter-spacing:-9.000000px;}
.ls4_c00045{letter-spacing:-6.000000px;}
.ls3_c00045{letter-spacing:0.000000px;}
.ls0_c00045{letter-spacing:7.200000px;}
.ls2_c00045{letter-spacing:7.500000px;}
.ls1_c00045{letter-spacing:21.000000px;}
.ls5_c00045{letter-spacing:54.000000px;}
.sc__c00045{text-shadow:none;}
.sc0_c00045{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00045{-webkit-text-stroke:0px transparent;}
.sc0_c00045{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00045{word-spacing:-61.686000px;}
.ws1_c00045{word-spacing:-54.000000px;}
.ws2_c00045{word-spacing:-34.860000px;}
.ws6_c00045{word-spacing:-23.832000px;}
.ws5_c00045{word-spacing:-19.065600px;}
.ws3_c00045{word-spacing:-14.460000px;}
.ws4_c00045{word-spacing:-8.352000px;}
.ws7_c00045{word-spacing:0.000000px;}
._19_c00045{margin-left:-63.720000px;}
._18_c00045{margin-left:-42.000000px;}
._16_c00045{margin-left:-23.688000px;}
._17_c00045{margin-left:-18.636000px;}
._15_c00045{margin-left:-10.935000px;}
._11_c00045{margin-left:-8.766000px;}
._12_c00045{margin-left:-7.665000px;}
._f_c00045{margin-left:-6.156000px;}
._d_c00045{margin-left:-4.989000px;}
._0_c00045{margin-left:-2.997000px;}
._e_c00045{margin-left:-1.881000px;}
._b_c00045{width:1.782000px;}
._a_c00045{width:3.564000px;}
._c_c00045{width:4.941000px;}
._7_c00045{width:6.840000px;}
._8_c00045{width:8.280000px;}
._1_c00045{width:10.047000px;}
._5_c00045{width:11.520000px;}
._9_c00045{width:12.594000px;}
._4_c00045{width:14.472000px;}
._13_c00045{width:15.870000px;}
._10_c00045{width:17.019000px;}
._3_c00045{width:18.720000px;}
._6_c00045{width:21.816000px;}
._14_c00045{width:38.973000px;}
._1a_c00045{width:107.697000px;}
._2_c00045{width:212.472000px;}
._1b_c00045{width:869.928000px;}
.fc2_c00045{color:transparent;}
.fc1_c00045{color:rgb(128,128,128);}
.fc0_c00045{color:rgb(0,0,0);}
.fs8_c00045{font-size:48.000000px;}
.fs7_c00045{font-size:57.000000px;}
.fs6_c00045{font-size:57.600000px;}
.fs4_c00045{font-size:60.000000px;}
.fs5_c00045{font-size:63.000000px;}
.fs1_c00045{font-size:66.000000px;}
.fs2_c00045{font-size:72.000000px;}
.fs0_c00045{font-size:81.000000px;}
.fs3_c00045{font-size:87.000000px;}
.y0_c00045{bottom:0.000000px;}
.y26_c00045{bottom:3.105000px;}
.y25_c00045{bottom:7.228371px;}
.y24_c00045{bottom:36.165000px;}
.y23_c00045{bottom:61.065000px;}
.y22_c00045{bottom:86.715000px;}
.y21_c00045{bottom:110.715000px;}
.y20_c00045{bottom:135.315000px;}
.y1f_c00045{bottom:159.765000px;}
.y1e_c00045{bottom:184.365000px;}
.y1d_c00045{bottom:208.965000px;}
.y1c_c00045{bottom:234.015000px;}
.y1b_c00045{bottom:258.915000px;}
.y1a_c00045{bottom:283.515000px;}
.y19_c00045{bottom:308.115000px;}
.y18_c00045{bottom:332.415000px;}
.y17_c00045{bottom:357.165000px;}
.y16_c00045{bottom:381.165000px;}
.y15_c00045{bottom:405.765000px;}
.y14_c00045{bottom:430.065000px;}
.y13_c00045{bottom:454.365000px;}
.y12_c00045{bottom:479.265000px;}
.y11_c00045{bottom:502.965000px;}
.y10_c00045{bottom:527.865000px;}
.yf_c00045{bottom:552.465000px;}
.ye_c00045{bottom:576.765000px;}
.yd_c00045{bottom:601.215000px;}
.yc_c00045{bottom:626.115000px;}
.yb_c00045{bottom:650.715000px;}
.ya_c00045{bottom:675.015000px;}
.y9_c00045{bottom:699.315000px;}
.y8_c00045{bottom:723.915000px;}
.y7_c00045{bottom:747.915000px;}
.y6_c00045{bottom:772.665000px;}
.y5_c00045{bottom:797.865000px;}
.y4_c00045{bottom:822.465000px;}
.y3_c00045{bottom:846.915000px;}
.y2_c00045{bottom:871.515000px;}
.y1_c00045{bottom:906.915000px;}
.h8_c00045{height:13.200074px;}
.h9_c00045{height:43.804688px;}
.h7_c00045{height:66.713379px;}
.h6_c00045{height:75.966797px;}
.h3_c00045{height:79.497070px;}
.h2_c00045{height:84.269531px;}
.h5_c00045{height:91.160156px;}
.h4_c00045{height:91.176000px;}
.h0_c00045{height:960.675000px;}
.h1_c00045{height:960.750000px;}
.w2_c00045{width:104.875500px;}
.w1_c00045{width:643.500000px;}
.w0_c00045{width:643.650000px;}
.x0_c00045{left:0.000000px;}
.xe_c00045{left:15.150000px;}
.xd_c00045{left:107.700000px;}
.xc_c00045{left:109.800000px;}
.xb_c00045{left:111.150000px;}
.xa_c00045{left:112.350000px;}
.x9_c00045{left:113.700000px;}
.x8_c00045{left:115.500000px;}
.x7_c00045{left:116.550000px;}
.x6_c00045{left:117.900000px;}
.x5_c00045{left:119.100000px;}
.x4_c00045{left:120.450000px;}
.x3_c00045{left:121.950000px;}
.x2_c00045{left:124.200000px;}
.x1_c00045{left:132.900000px;}
.x10_c00045{left:273.639267px;}
.xf_c00045{left:548.400000px;}
@media print{
.v0_c00045{vertical-align:0.000000pt;}
.ls6_c00045{letter-spacing:-8.000000pt;}
.ls4_c00045{letter-spacing:-5.333333pt;}
.ls3_c00045{letter-spacing:0.000000pt;}
.ls0_c00045{letter-spacing:6.400000pt;}
.ls2_c00045{letter-spacing:6.666667pt;}
.ls1_c00045{letter-spacing:18.666667pt;}
.ls5_c00045{letter-spacing:48.000000pt;}
.ws0_c00045{word-spacing:-54.832000pt;}
.ws1_c00045{word-spacing:-48.000000pt;}
.ws2_c00045{word-spacing:-30.986667pt;}
.ws6_c00045{word-spacing:-21.184000pt;}
.ws5_c00045{word-spacing:-16.947200pt;}
.ws3_c00045{word-spacing:-12.853333pt;}
.ws4_c00045{word-spacing:-7.424000pt;}
.ws7_c00045{word-spacing:0.000000pt;}
._19_c00045{margin-left:-56.640000pt;}
._18_c00045{margin-left:-37.333333pt;}
._16_c00045{margin-left:-21.056000pt;}
._17_c00045{margin-left:-16.565333pt;}
._15_c00045{margin-left:-9.720000pt;}
._11_c00045{margin-left:-7.792000pt;}
._12_c00045{margin-left:-6.813333pt;}
._f_c00045{margin-left:-5.472000pt;}
._d_c00045{margin-left:-4.434667pt;}
._0_c00045{margin-left:-2.664000pt;}
._e_c00045{margin-left:-1.672000pt;}
._b_c00045{width:1.584000pt;}
._a_c00045{width:3.168000pt;}
._c_c00045{width:4.392000pt;}
._7_c00045{width:6.080000pt;}
._8_c00045{width:7.360000pt;}
._1_c00045{width:8.930667pt;}
._5_c00045{width:10.240000pt;}
._9_c00045{width:11.194667pt;}
._4_c00045{width:12.864000pt;}
._13_c00045{width:14.106667pt;}
._10_c00045{width:15.128000pt;}
._3_c00045{width:16.640000pt;}
._6_c00045{width:19.392000pt;}
._14_c00045{width:34.642667pt;}
._1a_c00045{width:95.730667pt;}
._2_c00045{width:188.864000pt;}
._1b_c00045{width:773.269333pt;}
.fs8_c00045{font-size:42.666667pt;}
.fs7_c00045{font-size:50.666667pt;}
.fs6_c00045{font-size:51.200000pt;}
.fs4_c00045{font-size:53.333333pt;}
.fs5_c00045{font-size:56.000000pt;}
.fs1_c00045{font-size:58.666667pt;}
.fs2_c00045{font-size:64.000000pt;}
.fs0_c00045{font-size:72.000000pt;}
.fs3_c00045{font-size:77.333333pt;}
.y0_c00045{bottom:0.000000pt;}
.y26_c00045{bottom:2.760000pt;}
.y25_c00045{bottom:6.425219pt;}
.y24_c00045{bottom:32.146667pt;}
.y23_c00045{bottom:54.280000pt;}
.y22_c00045{bottom:77.080000pt;}
.y21_c00045{bottom:98.413333pt;}
.y20_c00045{bottom:120.280000pt;}
.y1f_c00045{bottom:142.013333pt;}
.y1e_c00045{bottom:163.880000pt;}
.y1d_c00045{bottom:185.746667pt;}
.y1c_c00045{bottom:208.013333pt;}
.y1b_c00045{bottom:230.146667pt;}
.y1a_c00045{bottom:252.013333pt;}
.y19_c00045{bottom:273.880000pt;}
.y18_c00045{bottom:295.480000pt;}
.y17_c00045{bottom:317.480000pt;}
.y16_c00045{bottom:338.813333pt;}
.y15_c00045{bottom:360.680000pt;}
.y14_c00045{bottom:382.280000pt;}
.y13_c00045{bottom:403.880000pt;}
.y12_c00045{bottom:426.013333pt;}
.y11_c00045{bottom:447.080000pt;}
.y10_c00045{bottom:469.213333pt;}
.yf_c00045{bottom:491.080000pt;}
.ye_c00045{bottom:512.680000pt;}
.yd_c00045{bottom:534.413333pt;}
.yc_c00045{bottom:556.546667pt;}
.yb_c00045{bottom:578.413333pt;}
.ya_c00045{bottom:600.013333pt;}
.y9_c00045{bottom:621.613333pt;}
.y8_c00045{bottom:643.480000pt;}
.y7_c00045{bottom:664.813333pt;}
.y6_c00045{bottom:686.813333pt;}
.y5_c00045{bottom:709.213333pt;}
.y4_c00045{bottom:731.080000pt;}
.y3_c00045{bottom:752.813333pt;}
.y2_c00045{bottom:774.680000pt;}
.y1_c00045{bottom:806.146667pt;}
.h8_c00045{height:11.733399pt;}
.h9_c00045{height:38.937500pt;}
.h7_c00045{height:59.300781pt;}
.h6_c00045{height:67.526042pt;}
.h3_c00045{height:70.664062pt;}
.h2_c00045{height:74.906250pt;}
.h5_c00045{height:81.031250pt;}
.h4_c00045{height:81.045333pt;}
.h0_c00045{height:853.933333pt;}
.h1_c00045{height:854.000000pt;}
.w2_c00045{width:93.222667pt;}
.w1_c00045{width:572.000000pt;}
.w0_c00045{width:572.133333pt;}
.x0_c00045{left:0.000000pt;}
.xe_c00045{left:13.466667pt;}
.xd_c00045{left:95.733333pt;}
.xc_c00045{left:97.600000pt;}
.xb_c00045{left:98.800000pt;}
.xa_c00045{left:99.866667pt;}
.x9_c00045{left:101.066667pt;}
.x8_c00045{left:102.666667pt;}
.x7_c00045{left:103.600000pt;}
.x6_c00045{left:104.800000pt;}
.x5_c00045{left:105.866667pt;}
.x4_c00045{left:107.066667pt;}
.x3_c00045{left:108.400000pt;}
.x2_c00045{left:110.400000pt;}
.x1_c00045{left:118.133333pt;}
.x10_c00045{left:243.234904pt;}
.xf_c00045{left:487.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_678d3f228c5c61cd88438915.woff2')format("woff");}.ff1_c00046{font-family:ff1_c00046;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00046;src:url('chunks/assets/font_bde76589491895f90bddfda1.woff2')format("woff");}.ff2_c00046{font-family:ff2_c00046;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00046;src:url('chunks/assets/font_ae9b40b6d52b0f40c38585b6.woff2')format("woff");}.ff3_c00046{font-family:ff3_c00046;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00046;src:url('chunks/assets/font_ddb43b6f3a376975e9c2aabe.woff2')format("woff");}.ff4_c00046{font-family:ff4_c00046;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00046;src:url('chunks/assets/font_d2468da85218eef8dabd9998.woff2')format("woff");}.ff5_c00046{font-family:ff5_c00046;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00046;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c00046{font-family:ff6_c00046;line-height:1.219238;font-style: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;}
.ls3_c00046{letter-spacing:-12.000000px;}
.ls0_c00046{letter-spacing:0.000000px;}
.ls2_c00046{letter-spacing:3.000000px;}
.ls1_c00046{letter-spacing:6.000000px;}
.sc__c00046{text-shadow:none;}
.sc0_c00046{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00046{-webkit-text-stroke:0px transparent;}
.sc0_c00046{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00046{word-spacing:-20.250000px;}
.ws1_c00046{word-spacing:0.000000px;}
._1c_c00046{margin-left:-28.047000px;}
._18_c00046{margin-left:-26.805000px;}
._1b_c00046{margin-left:-25.521000px;}
._1a_c00046{margin-left:-22.053000px;}
._20_c00046{margin-left:-14.229000px;}
._f_c00046{margin-left:-11.421000px;}
._17_c00046{margin-left:-10.365000px;}
._13_c00046{margin-left:-8.844000px;}
._7_c00046{margin-left:-6.828000px;}
._11_c00046{margin-left:-5.079000px;}
._b_c00046{margin-left:-3.249000px;}
._3_c00046{margin-left:-1.683000px;}
._1_c00046{width:1.485000px;}
._2_c00046{width:3.069000px;}
._9_c00046{width:4.104000px;}
._0_c00046{width:5.148000px;}
._e_c00046{width:6.327000px;}
._8_c00046{width:7.356000px;}
._6_c00046{width:8.835000px;}
._5_c00046{width:10.602000px;}
._c_c00046{width:11.868000px;}
._14_c00046{width:12.978000px;}
._10_c00046{width:14.256000px;}
._d_c00046{width:15.789000px;}
._a_c00046{width:18.240000px;}
._22_c00046{width:19.437000px;}
._16_c00046{width:21.531000px;}
._12_c00046{width:22.599000px;}
._1d_c00046{width:35.535000px;}
._1f_c00046{width:53.610000px;}
._4_c00046{width:55.143000px;}
._19_c00046{width:70.731000px;}
._1e_c00046{width:89.430000px;}
._15_c00046{width:94.959000px;}
._21_c00046{width:378.696000px;}
._23_c00046{width:637.980000px;}
.fc2_c00046{color:transparent;}
.fc1_c00046{color:rgb(128,128,128);}
.fc0_c00046{color:rgb(0,0,0);}
.fs8_c00046{font-size:48.000000px;}
.fs4_c00046{font-size:51.000000px;}
.fs1_c00046{font-size:57.000000px;}
.fs3_c00046{font-size:75.000000px;}
.fs6_c00046{font-size:78.000000px;}
.fs2_c00046{font-size:81.000000px;}
.fs5_c00046{font-size:93.000000px;}
.fs0_c00046{font-size:99.000000px;}
.fs7_c00046{font-size:102.000000px;}
.y0_c00046{bottom:0.000000px;}
.y23_c00046{bottom:3.105000px;}
.y22_c00046{bottom:7.228371px;}
.y21_c00046{bottom:75.915000px;}
.y20_c00046{bottom:90.765000px;}
.y1f_c00046{bottom:116.415000px;}
.y1e_c00046{bottom:140.865000px;}
.y1d_c00046{bottom:165.165000px;}
.y1c_c00046{bottom:189.465000px;}
.y1b_c00046{bottom:214.665000px;}
.y1a_c00046{bottom:238.965000px;}
.y19_c00046{bottom:264.315000px;}
.y18_c00046{bottom:288.615000px;}
.y17_c00046{bottom:312.915000px;}
.y16_c00046{bottom:336.615000px;}
.y15_c00046{bottom:360.915000px;}
.y14_c00046{bottom:385.215000px;}
.y13_c00046{bottom:408.765000px;}
.y12_c00046{bottom:433.365000px;}
.y11_c00046{bottom:458.115000px;}
.y10_c00046{bottom:482.415000px;}
.yf_c00046{bottom:506.715000px;}
.ye_c00046{bottom:532.215000px;}
.yd_c00046{bottom:555.315000px;}
.yc_c00046{bottom:579.615000px;}
.yb_c00046{bottom:603.765000px;}
.ya_c00046{bottom:628.215000px;}
.y9_c00046{bottom:652.065000px;}
.y8_c00046{bottom:677.415000px;}
.y7_c00046{bottom:774.315000px;}
.y6_c00046{bottom:798.315000px;}
.y5_c00046{bottom:822.915000px;}
.y4_c00046{bottom:849.165000px;}
.y3_c00046{bottom:872.115000px;}
.y2_c00046{bottom:896.415000px;}
.y1_c00046{bottom:929.265000px;}
.h9_c00046{height:13.200074px;}
.ha_c00046{height:43.804688px;}
.h3_c00046{height:72.168457px;}
.h5_c00046{height:73.608398px;}
.h4_c00046{height:79.497070px;}
.h6_c00046{height:91.274414px;}
.h7_c00046{height:98.756836px;}
.h8_c00046{height:104.839927px;}
.h2_c00046{height:115.870605px;}
.h0_c00046{height:989.025000px;}
.h1_c00046{height:989.250000px;}
.w2_c00046{width:104.875500px;}
.w1_c00046{width:678.750000px;}
.w0_c00046{width:679.050000px;}
.x0_c00046{left:0.000000px;}
.x8_c00046{left:21.150000px;}
.x2_c00046{left:36.450000px;}
.x3_c00046{left:38.100000px;}
.x4_c00046{left:39.150000px;}
.x5_c00046{left:40.200000px;}
.x7_c00046{left:41.400000px;}
.x9_c00046{left:42.450000px;}
.x1_c00046{left:52.200000px;}
.x6_c00046{left:69.750000px;}
.xa_c00046{left:85.350000px;}
.xb_c00046{left:291.339249px;}
@media print{
.v0_c00046{vertical-align:0.000000pt;}
.ls3_c00046{letter-spacing:-10.666667pt;}
.ls0_c00046{letter-spacing:0.000000pt;}
.ls2_c00046{letter-spacing:2.666667pt;}
.ls1_c00046{letter-spacing:5.333333pt;}
.ws0_c00046{word-spacing:-18.000000pt;}
.ws1_c00046{word-spacing:0.000000pt;}
._1c_c00046{margin-left:-24.930667pt;}
._18_c00046{margin-left:-23.826667pt;}
._1b_c00046{margin-left:-22.685333pt;}
._1a_c00046{margin-left:-19.602667pt;}
._20_c00046{margin-left:-12.648000pt;}
._f_c00046{margin-left:-10.152000pt;}
._17_c00046{margin-left:-9.213333pt;}
._13_c00046{margin-left:-7.861333pt;}
._7_c00046{margin-left:-6.069333pt;}
._11_c00046{margin-left:-4.514667pt;}
._b_c00046{margin-left:-2.888000pt;}
._3_c00046{margin-left:-1.496000pt;}
._1_c00046{width:1.320000pt;}
._2_c00046{width:2.728000pt;}
._9_c00046{width:3.648000pt;}
._0_c00046{width:4.576000pt;}
._e_c00046{width:5.624000pt;}
._8_c00046{width:6.538667pt;}
._6_c00046{width:7.853333pt;}
._5_c00046{width:9.424000pt;}
._c_c00046{width:10.549333pt;}
._14_c00046{width:11.536000pt;}
._10_c00046{width:12.672000pt;}
._d_c00046{width:14.034667pt;}
._a_c00046{width:16.213333pt;}
._22_c00046{width:17.277333pt;}
._16_c00046{width:19.138667pt;}
._12_c00046{width:20.088000pt;}
._1d_c00046{width:31.586667pt;}
._1f_c00046{width:47.653333pt;}
._4_c00046{width:49.016000pt;}
._19_c00046{width:62.872000pt;}
._1e_c00046{width:79.493333pt;}
._15_c00046{width:84.408000pt;}
._21_c00046{width:336.618667pt;}
._23_c00046{width:567.093333pt;}
.fs8_c00046{font-size:42.666667pt;}
.fs4_c00046{font-size:45.333333pt;}
.fs1_c00046{font-size:50.666667pt;}
.fs3_c00046{font-size:66.666667pt;}
.fs6_c00046{font-size:69.333333pt;}
.fs2_c00046{font-size:72.000000pt;}
.fs5_c00046{font-size:82.666667pt;}
.fs0_c00046{font-size:88.000000pt;}
.fs7_c00046{font-size:90.666667pt;}
.y0_c00046{bottom:0.000000pt;}
.y23_c00046{bottom:2.760000pt;}
.y22_c00046{bottom:6.425219pt;}
.y21_c00046{bottom:67.480000pt;}
.y20_c00046{bottom:80.680000pt;}
.y1f_c00046{bottom:103.480000pt;}
.y1e_c00046{bottom:125.213333pt;}
.y1d_c00046{bottom:146.813333pt;}
.y1c_c00046{bottom:168.413333pt;}
.y1b_c00046{bottom:190.813333pt;}
.y1a_c00046{bottom:212.413333pt;}
.y19_c00046{bottom:234.946667pt;}
.y18_c00046{bottom:256.546667pt;}
.y17_c00046{bottom:278.146667pt;}
.y16_c00046{bottom:299.213333pt;}
.y15_c00046{bottom:320.813333pt;}
.y14_c00046{bottom:342.413333pt;}
.y13_c00046{bottom:363.346667pt;}
.y12_c00046{bottom:385.213333pt;}
.y11_c00046{bottom:407.213333pt;}
.y10_c00046{bottom:428.813333pt;}
.yf_c00046{bottom:450.413333pt;}
.ye_c00046{bottom:473.080000pt;}
.yd_c00046{bottom:493.613333pt;}
.yc_c00046{bottom:515.213333pt;}
.yb_c00046{bottom:536.680000pt;}
.ya_c00046{bottom:558.413333pt;}
.y9_c00046{bottom:579.613333pt;}
.y8_c00046{bottom:602.146667pt;}
.y7_c00046{bottom:688.280000pt;}
.y6_c00046{bottom:709.613333pt;}
.y5_c00046{bottom:731.480000pt;}
.y4_c00046{bottom:754.813333pt;}
.y3_c00046{bottom:775.213333pt;}
.y2_c00046{bottom:796.813333pt;}
.y1_c00046{bottom:826.013333pt;}
.h9_c00046{height:11.733399pt;}
.ha_c00046{height:38.937500pt;}
.h3_c00046{height:64.149740pt;}
.h5_c00046{height:65.429688pt;}
.h4_c00046{height:70.664062pt;}
.h6_c00046{height:81.132812pt;}
.h7_c00046{height:87.783854pt;}
.h8_c00046{height:93.191046pt;}
.h2_c00046{height:102.996094pt;}
.h0_c00046{height:879.133333pt;}
.h1_c00046{height:879.333333pt;}
.w2_c00046{width:93.222667pt;}
.w1_c00046{width:603.333333pt;}
.w0_c00046{width:603.600000pt;}
.x0_c00046{left:0.000000pt;}
.x8_c00046{left:18.800000pt;}
.x2_c00046{left:32.400000pt;}
.x3_c00046{left:33.866667pt;}
.x4_c00046{left:34.800000pt;}
.x5_c00046{left:35.733333pt;}
.x7_c00046{left:36.800000pt;}
.x9_c00046{left:37.733333pt;}
.x1_c00046{left:46.400000pt;}
.x6_c00046{left:62.000000pt;}
.xa_c00046{left:75.866667pt;}
.xb_c00046{left:258.968221pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c78a9bcf47b577d2b7f939b0.woff2')format("woff");}.ff1_c00047{font-family:ff1_c00047;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00047;src:url('chunks/assets/font_9ca2f7636e474842ce7690d5.woff2')format("woff");}.ff2_c00047{font-family:ff2_c00047;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00047;src:url('chunks/assets/font_b1af2ae12745bb3508795ac5.woff2')format("woff");}.ff3_c00047{font-family:ff3_c00047;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00047;src:url('chunks/assets/font_ef9aecc21a7aee3dfaa0ab5c.woff2')format("woff");}.ff4_c00047{font-family:ff4_c00047;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00047;src:url('chunks/assets/font_51f93e8b7ec0902f0fec220b.woff2')format("woff");}.ff5_c00047{font-family:ff5_c00047;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00047;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c00047{font-family:ff6_c00047;line-height:1.219238;font-style: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);}
.v0_c00047{vertical-align:0.000000px;}
.ls2_c00047{letter-spacing:0.000000px;}
.ls1_c00047{letter-spacing:2.400000px;}
.ls3_c00047{letter-spacing:21.000000px;}
.ls0_c00047{letter-spacing:23.292000px;}
.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:-23.859000px;}
.ws1_c00047{word-spacing:-21.000000px;}
.ws2_c00047{word-spacing:-17.352000px;}
.ws3_c00047{word-spacing:0.000000px;}
._3_c00047{margin-left:-41.844000px;}
._4_c00047{margin-left:-35.664000px;}
._23_c00047{margin-left:-24.438000px;}
._1f_c00047{margin-left:-18.468000px;}
._2_c00047{margin-left:-17.343000px;}
._13_c00047{margin-left:-11.343000px;}
._19_c00047{margin-left:-9.357000px;}
._14_c00047{margin-left:-7.620000px;}
._1_c00047{margin-left:-5.445000px;}
._0_c00047{margin-left:-3.960000px;}
._6_c00047{margin-left:-2.871000px;}
._5_c00047{margin-left:-1.782000px;}
._b_c00047{width:1.215000px;}
._9_c00047{width:2.697000px;}
._8_c00047{width:3.888000px;}
._7_c00047{width:5.103000px;}
._e_c00047{width:6.318000px;}
._d_c00047{width:7.533000px;}
._15_c00047{width:8.655000px;}
._f_c00047{width:9.759000px;}
._12_c00047{width:11.049000px;}
._a_c00047{width:12.321000px;}
._c_c00047{width:13.608000px;}
._1e_c00047{width:14.787000px;}
._16_c00047{width:16.092000px;}
._11_c00047{width:17.475000px;}
._18_c00047{width:19.638000px;}
._17_c00047{width:21.009000px;}
._1d_c00047{width:24.753000px;}
._1b_c00047{width:26.082000px;}
._1a_c00047{width:28.512000px;}
._10_c00047{width:38.889000px;}
._1c_c00047{width:52.974000px;}
._21_c00047{width:71.475000px;}
._22_c00047{width:164.148000px;}
._20_c00047{width:431.244000px;}
.fc2_c00047{color:transparent;}
.fc1_c00047{color:rgb(128,128,128);}
.fc0_c00047{color:rgb(0,0,0);}
.fs8_c00047{font-size:48.000000px;}
.fs5_c00047{font-size:51.000000px;}
.fs6_c00047{font-size:66.000000px;}
.fs7_c00047{font-size:72.000000px;}
.fs3_c00047{font-size:78.000000px;}
.fs2_c00047{font-size:81.000000px;}
.fs4_c00047{font-size:84.000000px;}
.fs1_c00047{font-size:99.000000px;}
.fs0_c00047{font-size:132.000000px;}
.y0_c00047{bottom:0.000000px;}
.y23_c00047{bottom:3.105000px;}
.y22_c00047{bottom:7.228357px;}
.y21_c00047{bottom:62.430000px;}
.y20_c00047{bottom:85.830000px;}
.y1f_c00047{bottom:111.030000px;}
.y1e_c00047{bottom:135.780000px;}
.y1d_c00047{bottom:160.380000px;}
.y1c_c00047{bottom:185.730000px;}
.y1b_c00047{bottom:210.330000px;}
.y1a_c00047{bottom:235.230000px;}
.y19_c00047{bottom:260.580000px;}
.y18_c00047{bottom:285.630000px;}
.y17_c00047{bottom:309.180000px;}
.y16_c00047{bottom:333.480000px;}
.y15_c00047{bottom:359.130000px;}
.y14_c00047{bottom:385.380000px;}
.y13_c00047{bottom:409.680000px;}
.y12_c00047{bottom:432.330000px;}
.y11_c00047{bottom:457.980000px;}
.y10_c00047{bottom:481.680000px;}
.yf_c00047{bottom:536.730000px;}
.ye_c00047{bottom:567.330000px;}
.yd_c00047{bottom:596.130000px;}
.yc_c00047{bottom:652.380000px;}
.yb_c00047{bottom:677.130000px;}
.ya_c00047{bottom:701.280000px;}
.y9_c00047{bottom:725.730000px;}
.y8_c00047{bottom:750.330000px;}
.y7_c00047{bottom:774.630000px;}
.y6_c00047{bottom:799.230000px;}
.y5_c00047{bottom:823.830000px;}
.y4_c00047{bottom:847.830000px;}
.y3_c00047{bottom:872.130000px;}
.y2_c00047{bottom:897.180000px;}
.y1_c00047{bottom:933.930000px;}
.h7_c00047{height:13.200074px;}
.h8_c00047{height:43.804688px;}
.h3_c00047{height:79.497070px;}
.h5_c00047{height:82.400391px;}
.h4_c00047{height:82.441406px;}
.h6_c00047{height:84.269531px;}
.h2_c00047{height:98.756836px;}
.h1_c00047{height:167.126953px;}
.h0_c00047{height:995.250000px;}
.w2_c00047{width:104.875500px;}
.w0_c00047{width:667.425000px;}
.w1_c00047{width:667.500000px;}
.x0_c00047{left:0.000000px;}
.xc_c00047{left:58.500000px;}
.xe_c00047{left:93.900000px;}
.x4_c00047{left:147.450000px;}
.x3_c00047{left:148.800000px;}
.x2_c00047{left:150.600000px;}
.xa_c00047{left:160.350000px;}
.x5_c00047{left:205.650000px;}
.x1_c00047{left:231.900000px;}
.x9_c00047{left:278.100000px;}
.xb_c00047{left:279.150000px;}
.x7_c00047{left:280.500000px;}
.xd_c00047{left:281.850000px;}
.x10_c00047{left:285.526749px;}
.x6_c00047{left:302.100000px;}
.x8_c00047{left:331.500000px;}
.xf_c00047{left:610.950000px;}
@media print{
.v0_c00047{vertical-align:0.000000pt;}
.ls2_c00047{letter-spacing:0.000000pt;}
.ls1_c00047{letter-spacing:2.133333pt;}
.ls3_c00047{letter-spacing:18.666667pt;}
.ls0_c00047{letter-spacing:20.704000pt;}
.ws0_c00047{word-spacing:-21.208000pt;}
.ws1_c00047{word-spacing:-18.666667pt;}
.ws2_c00047{word-spacing:-15.424000pt;}
.ws3_c00047{word-spacing:0.000000pt;}
._3_c00047{margin-left:-37.194667pt;}
._4_c00047{margin-left:-31.701333pt;}
._23_c00047{margin-left:-21.722667pt;}
._1f_c00047{margin-left:-16.416000pt;}
._2_c00047{margin-left:-15.416000pt;}
._13_c00047{margin-left:-10.082667pt;}
._19_c00047{margin-left:-8.317333pt;}
._14_c00047{margin-left:-6.773333pt;}
._1_c00047{margin-left:-4.840000pt;}
._0_c00047{margin-left:-3.520000pt;}
._6_c00047{margin-left:-2.552000pt;}
._5_c00047{margin-left:-1.584000pt;}
._b_c00047{width:1.080000pt;}
._9_c00047{width:2.397333pt;}
._8_c00047{width:3.456000pt;}
._7_c00047{width:4.536000pt;}
._e_c00047{width:5.616000pt;}
._d_c00047{width:6.696000pt;}
._15_c00047{width:7.693333pt;}
._f_c00047{width:8.674667pt;}
._12_c00047{width:9.821333pt;}
._a_c00047{width:10.952000pt;}
._c_c00047{width:12.096000pt;}
._1e_c00047{width:13.144000pt;}
._16_c00047{width:14.304000pt;}
._11_c00047{width:15.533333pt;}
._18_c00047{width:17.456000pt;}
._17_c00047{width:18.674667pt;}
._1d_c00047{width:22.002667pt;}
._1b_c00047{width:23.184000pt;}
._1a_c00047{width:25.344000pt;}
._10_c00047{width:34.568000pt;}
._1c_c00047{width:47.088000pt;}
._21_c00047{width:63.533333pt;}
._22_c00047{width:145.909333pt;}
._20_c00047{width:383.328000pt;}
.fs8_c00047{font-size:42.666667pt;}
.fs5_c00047{font-size:45.333333pt;}
.fs6_c00047{font-size:58.666667pt;}
.fs7_c00047{font-size:64.000000pt;}
.fs3_c00047{font-size:69.333333pt;}
.fs2_c00047{font-size:72.000000pt;}
.fs4_c00047{font-size:74.666667pt;}
.fs1_c00047{font-size:88.000000pt;}
.fs0_c00047{font-size:117.333333pt;}
.y0_c00047{bottom:0.000000pt;}
.y23_c00047{bottom:2.760000pt;}
.y22_c00047{bottom:6.425206pt;}
.y21_c00047{bottom:55.493333pt;}
.y20_c00047{bottom:76.293333pt;}
.y1f_c00047{bottom:98.693333pt;}
.y1e_c00047{bottom:120.693333pt;}
.y1d_c00047{bottom:142.560000pt;}
.y1c_c00047{bottom:165.093333pt;}
.y1b_c00047{bottom:186.960000pt;}
.y1a_c00047{bottom:209.093333pt;}
.y19_c00047{bottom:231.626667pt;}
.y18_c00047{bottom:253.893333pt;}
.y17_c00047{bottom:274.826667pt;}
.y16_c00047{bottom:296.426667pt;}
.y15_c00047{bottom:319.226667pt;}
.y14_c00047{bottom:342.560000pt;}
.y13_c00047{bottom:364.160000pt;}
.y12_c00047{bottom:384.293333pt;}
.y11_c00047{bottom:407.093333pt;}
.y10_c00047{bottom:428.160000pt;}
.yf_c00047{bottom:477.093333pt;}
.ye_c00047{bottom:504.293333pt;}
.yd_c00047{bottom:529.893333pt;}
.yc_c00047{bottom:579.893333pt;}
.yb_c00047{bottom:601.893333pt;}
.ya_c00047{bottom:623.360000pt;}
.y9_c00047{bottom:645.093333pt;}
.y8_c00047{bottom:666.960000pt;}
.y7_c00047{bottom:688.560000pt;}
.y6_c00047{bottom:710.426667pt;}
.y5_c00047{bottom:732.293333pt;}
.y4_c00047{bottom:753.626667pt;}
.y3_c00047{bottom:775.226667pt;}
.y2_c00047{bottom:797.493333pt;}
.y1_c00047{bottom:830.160000pt;}
.h7_c00047{height:11.733399pt;}
.h8_c00047{height:38.937500pt;}
.h3_c00047{height:70.664062pt;}
.h5_c00047{height:73.244792pt;}
.h4_c00047{height:73.281250pt;}
.h6_c00047{height:74.906250pt;}
.h2_c00047{height:87.783854pt;}
.h1_c00047{height:148.557292pt;}
.h0_c00047{height:884.666667pt;}
.w2_c00047{width:93.222667pt;}
.w0_c00047{width:593.266667pt;}
.w1_c00047{width:593.333333pt;}
.x0_c00047{left:0.000000pt;}
.xc_c00047{left:52.000000pt;}
.xe_c00047{left:83.466667pt;}
.x4_c00047{left:131.066667pt;}
.x3_c00047{left:132.266667pt;}
.x2_c00047{left:133.866667pt;}
.xa_c00047{left:142.533333pt;}
.x5_c00047{left:182.800000pt;}
.x1_c00047{left:206.133333pt;}
.x9_c00047{left:247.200000pt;}
.xb_c00047{left:248.133333pt;}
.x7_c00047{left:249.333333pt;}
.xd_c00047{left:250.533333pt;}
.x10_c00047{left:253.801554pt;}
.x6_c00047{left:268.533333pt;}
.x8_c00047{left:294.666667pt;}
.xf_c00047{left:543.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_6cadbf387ca263479521c411.woff2')format("woff");}.ff1_c00048{font-family:ff1_c00048;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00048;src:url('chunks/assets/font_6e145a400316f3449b2e81b7.woff2')format("woff");}.ff2_c00048{font-family:ff2_c00048;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00048;src:url('chunks/assets/font_19d80e243bbcc9091c414cc4.woff2')format("woff");}.ff3_c00048{font-family:ff3_c00048;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00048;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff4_c00048{font-family:ff4_c00048;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00048{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00048{vertical-align:0.000000px;}
.ls1_c00048{letter-spacing:0.000000px;}
.ls0_c00048{letter-spacing:3.816000px;}
.ls2_c00048{letter-spacing:21.000000px;}
.sc__c00048{text-shadow:none;}
.sc0_c00048{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00048{-webkit-text-stroke:0px transparent;}
.sc0_c00048{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00048{word-spacing:-17.352000px;}
.ws1_c00048{word-spacing:0.000000px;}
._c_c00048{margin-left:-34.452000px;}
._23_c00048{margin-left:-21.564000px;}
._19_c00048{margin-left:-20.088000px;}
._17_c00048{margin-left:-17.334000px;}
._9_c00048{margin-left:-15.381000px;}
._1c_c00048{margin-left:-14.364000px;}
._1_c00048{margin-left:-10.395000px;}
._7_c00048{margin-left:-8.811000px;}
._4_c00048{margin-left:-7.524000px;}
._6_c00048{margin-left:-6.039000px;}
._5_c00048{margin-left:-4.356000px;}
._0_c00048{margin-left:-2.673000px;}
._8_c00048{margin-left:-1.188000px;}
._e_c00048{width:1.071000px;}
._3_c00048{width:2.673000px;}
._b_c00048{width:4.356000px;}
._2_c00048{width:5.841000px;}
._10_c00048{width:6.984000px;}
._d_c00048{width:8.343000px;}
._13_c00048{width:9.432000px;}
._f_c00048{width:11.394000px;}
._15_c00048{width:13.095000px;}
._12_c00048{width:14.148000px;}
._1f_c00048{width:15.264000px;}
._14_c00048{width:16.848000px;}
._22_c00048{width:18.513000px;}
._20_c00048{width:21.372000px;}
._16_c00048{width:24.669000px;}
._1e_c00048{width:29.214000px;}
._24_c00048{width:31.923000px;}
._1d_c00048{width:34.020000px;}
._18_c00048{width:60.840000px;}
._1a_c00048{width:72.738000px;}
._1b_c00048{width:98.730000px;}
._11_c00048{width:136.287000px;}
._a_c00048{width:168.828000px;}
._21_c00048{width:317.349000px;}
._25_c00048{width:400.734000px;}
.fc2_c00048{color:transparent;}
.fc1_c00048{color:rgb(128,128,128);}
.fc0_c00048{color:rgb(0,0,0);}
.fs4_c00048{font-size:48.000000px;}
.fs3_c00048{font-size:72.000000px;}
.fs2_c00048{font-size:81.000000px;}
.fs0_c00048{font-size:99.000000px;}
.fs1_c00048{font-size:132.000000px;}
.y0_c00048{bottom:0.000000px;}
.y26_c00048{bottom:3.105000px;}
.y25_c00048{bottom:7.228371px;}
.y24_c00048{bottom:75.315000px;}
.y23_c00048{bottom:99.615000px;}
.y22_c00048{bottom:124.665000px;}
.y21_c00048{bottom:148.965000px;}
.y20_c00048{bottom:173.265000px;}
.y1f_c00048{bottom:197.565000px;}
.y1e_c00048{bottom:222.165000px;}
.y1d_c00048{bottom:246.165000px;}
.y1c_c00048{bottom:270.765000px;}
.y1b_c00048{bottom:295.365000px;}
.y1a_c00048{bottom:319.665000px;}
.y19_c00048{bottom:343.665000px;}
.y18_c00048{bottom:366.915000px;}
.y17_c00048{bottom:391.515000px;}
.y16_c00048{bottom:415.215000px;}
.y15_c00048{bottom:439.215000px;}
.y14_c00048{bottom:463.515000px;}
.y13_c00048{bottom:487.815000px;}
.y12_c00048{bottom:511.965000px;}
.y11_c00048{bottom:535.965000px;}
.y10_c00048{bottom:559.965000px;}
.yf_c00048{bottom:583.665000px;}
.ye_c00048{bottom:607.965000px;}
.yd_c00048{bottom:632.115000px;}
.yc_c00048{bottom:655.815000px;}
.yb_c00048{bottom:679.515000px;}
.ya_c00048{bottom:705.465000px;}
.y9_c00048{bottom:727.965000px;}
.y8_c00048{bottom:752.265000px;}
.y7_c00048{bottom:776.715000px;}
.y6_c00048{bottom:800.865000px;}
.y5_c00048{bottom:824.865000px;}
.y4_c00048{bottom:849.165000px;}
.y3_c00048{bottom:873.465000px;}
.y2_c00048{bottom:898.065000px;}
.y1_c00048{bottom:933.315000px;}
.h6_c00048{height:13.200074px;}
.h7_c00048{height:43.804688px;}
.h3_c00048{height:79.497070px;}
.h5_c00048{height:84.269531px;}
.h4_c00048{height:91.160156px;}
.h2_c00048{height:167.126953px;}
.h0_c00048{height:989.025000px;}
.h1_c00048{height:989.250000px;}
.w2_c00048{width:104.875500px;}
.w1_c00048{width:678.750000px;}
.w0_c00048{width:679.050000px;}
.x0_c00048{left:0.000000px;}
.x6_c00048{left:25.050000px;}
.x5_c00048{left:27.000000px;}
.x8_c00048{left:36.150000px;}
.x3_c00048{left:42.900000px;}
.x2_c00048{left:44.250000px;}
.x7_c00048{left:46.350000px;}
.x4_c00048{left:47.550000px;}
.x1_c00048{left:117.450000px;}
.xa_c00048{left:291.339249px;}
.x9_c00048{left:361.500000px;}
@media print{
.v0_c00048{vertical-align:0.000000pt;}
.ls1_c00048{letter-spacing:0.000000pt;}
.ls0_c00048{letter-spacing:3.392000pt;}
.ls2_c00048{letter-spacing:18.666667pt;}
.ws0_c00048{word-spacing:-15.424000pt;}
.ws1_c00048{word-spacing:0.000000pt;}
._c_c00048{margin-left:-30.624000pt;}
._23_c00048{margin-left:-19.168000pt;}
._19_c00048{margin-left:-17.856000pt;}
._17_c00048{margin-left:-15.408000pt;}
._9_c00048{margin-left:-13.672000pt;}
._1c_c00048{margin-left:-12.768000pt;}
._1_c00048{margin-left:-9.240000pt;}
._7_c00048{margin-left:-7.832000pt;}
._4_c00048{margin-left:-6.688000pt;}
._6_c00048{margin-left:-5.368000pt;}
._5_c00048{margin-left:-3.872000pt;}
._0_c00048{margin-left:-2.376000pt;}
._8_c00048{margin-left:-1.056000pt;}
._e_c00048{width:0.952000pt;}
._3_c00048{width:2.376000pt;}
._b_c00048{width:3.872000pt;}
._2_c00048{width:5.192000pt;}
._10_c00048{width:6.208000pt;}
._d_c00048{width:7.416000pt;}
._13_c00048{width:8.384000pt;}
._f_c00048{width:10.128000pt;}
._15_c00048{width:11.640000pt;}
._12_c00048{width:12.576000pt;}
._1f_c00048{width:13.568000pt;}
._14_c00048{width:14.976000pt;}
._22_c00048{width:16.456000pt;}
._20_c00048{width:18.997333pt;}
._16_c00048{width:21.928000pt;}
._1e_c00048{width:25.968000pt;}
._24_c00048{width:28.376000pt;}
._1d_c00048{width:30.240000pt;}
._18_c00048{width:54.080000pt;}
._1a_c00048{width:64.656000pt;}
._1b_c00048{width:87.760000pt;}
._11_c00048{width:121.144000pt;}
._a_c00048{width:150.069333pt;}
._21_c00048{width:282.088000pt;}
._25_c00048{width:356.208000pt;}
.fs4_c00048{font-size:42.666667pt;}
.fs3_c00048{font-size:64.000000pt;}
.fs2_c00048{font-size:72.000000pt;}
.fs0_c00048{font-size:88.000000pt;}
.fs1_c00048{font-size:117.333333pt;}
.y0_c00048{bottom:0.000000pt;}
.y26_c00048{bottom:2.760000pt;}
.y25_c00048{bottom:6.425219pt;}
.y24_c00048{bottom:66.946667pt;}
.y23_c00048{bottom:88.546667pt;}
.y22_c00048{bottom:110.813333pt;}
.y21_c00048{bottom:132.413333pt;}
.y20_c00048{bottom:154.013333pt;}
.y1f_c00048{bottom:175.613333pt;}
.y1e_c00048{bottom:197.480000pt;}
.y1d_c00048{bottom:218.813333pt;}
.y1c_c00048{bottom:240.680000pt;}
.y1b_c00048{bottom:262.546667pt;}
.y1a_c00048{bottom:284.146667pt;}
.y19_c00048{bottom:305.480000pt;}
.y18_c00048{bottom:326.146667pt;}
.y17_c00048{bottom:348.013333pt;}
.y16_c00048{bottom:369.080000pt;}
.y15_c00048{bottom:390.413333pt;}
.y14_c00048{bottom:412.013333pt;}
.y13_c00048{bottom:433.613333pt;}
.y12_c00048{bottom:455.080000pt;}
.y11_c00048{bottom:476.413333pt;}
.y10_c00048{bottom:497.746667pt;}
.yf_c00048{bottom:518.813333pt;}
.ye_c00048{bottom:540.413333pt;}
.yd_c00048{bottom:561.880000pt;}
.yc_c00048{bottom:582.946667pt;}
.yb_c00048{bottom:604.013333pt;}
.ya_c00048{bottom:627.080000pt;}
.y9_c00048{bottom:647.080000pt;}
.y8_c00048{bottom:668.680000pt;}
.y7_c00048{bottom:690.413333pt;}
.y6_c00048{bottom:711.880000pt;}
.y5_c00048{bottom:733.213333pt;}
.y4_c00048{bottom:754.813333pt;}
.y3_c00048{bottom:776.413333pt;}
.y2_c00048{bottom:798.280000pt;}
.y1_c00048{bottom:829.613333pt;}
.h6_c00048{height:11.733399pt;}
.h7_c00048{height:38.937500pt;}
.h3_c00048{height:70.664062pt;}
.h5_c00048{height:74.906250pt;}
.h4_c00048{height:81.031250pt;}
.h2_c00048{height:148.557292pt;}
.h0_c00048{height:879.133333pt;}
.h1_c00048{height:879.333333pt;}
.w2_c00048{width:93.222667pt;}
.w1_c00048{width:603.333333pt;}
.w0_c00048{width:603.600000pt;}
.x0_c00048{left:0.000000pt;}
.x6_c00048{left:22.266667pt;}
.x5_c00048{left:24.000000pt;}
.x8_c00048{left:32.133333pt;}
.x3_c00048{left:38.133333pt;}
.x2_c00048{left:39.333333pt;}
.x7_c00048{left:41.200000pt;}
.x4_c00048{left:42.266667pt;}
.x1_c00048{left:104.400000pt;}
.xa_c00048{left:258.968221pt;}
.x9_c00048{left:321.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f2f811938d61a6b44273218d.woff2')format("woff");}.ff1_c00049{font-family:ff1_c00049;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00049;src:url('chunks/assets/font_c660714aeef71c037ab925d2.woff2')format("woff");}.ff2_c00049{font-family:ff2_c00049;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00049;src:url('chunks/assets/font_6fba2b424f0568bb2e1726d6.woff2')format("woff");}.ff3_c00049{font-family:ff3_c00049;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00049;src:url('chunks/assets/font_6b8fcd2d7eecbc133d3048b8.woff2')format("woff");}.ff4_c00049{font-family:ff4_c00049;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00049;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c00049{font-family:ff5_c00049;line-height:1.219238;font-style: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;}
.ls2_c00049{letter-spacing:0.000000px;}
.ls1_c00049{letter-spacing:7.500000px;}
.ls0_c00049{letter-spacing:8.880000px;}
.ls3_c00049{letter-spacing:18.000000px;}
.sc__c00049{text-shadow:none;}
.sc0_c00049{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00049{-webkit-text-stroke:0px transparent;}
.sc0_c00049{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00049{word-spacing:-38.250000px;}
.ws2_c00049{word-spacing:-17.352000px;}
.ws0_c00049{word-spacing:-4.050000px;}
.ws3_c00049{word-spacing:-3.726000px;}
.ws4_c00049{word-spacing:0.000000px;}
._e_c00049{margin-left:-21.594000px;}
._2b_c00049{margin-left:-16.533000px;}
._13_c00049{margin-left:-14.094000px;}
._27_c00049{margin-left:-11.880000px;}
._20_c00049{margin-left:-10.605000px;}
._2a_c00049{margin-left:-9.153000px;}
._17_c00049{margin-left:-7.992000px;}
._0_c00049{margin-left:-6.786000px;}
._15_c00049{margin-left:-4.836000px;}
._1_c00049{margin-left:-3.822000px;}
._1f_c00049{margin-left:-2.133000px;}
._18_c00049{margin-left:-1.059000px;}
._16_c00049{width:1.023000px;}
._10_c00049{width:2.034000px;}
._11_c00049{width:3.048000px;}
._d_c00049{width:4.212000px;}
._a_c00049{width:5.871000px;}
._f_c00049{width:6.969000px;}
._19_c00049{width:8.991000px;}
._6_c00049{width:10.032000px;}
._9_c00049{width:11.229000px;}
._14_c00049{width:12.378000px;}
._1e_c00049{width:14.418000px;}
._22_c00049{width:15.642000px;}
._7_c00049{width:16.758000px;}
._5_c00049{width:18.354000px;}
._4_c00049{width:20.520000px;}
._c_c00049{width:21.888000px;}
._b_c00049{width:25.308000px;}
._8_c00049{width:27.075000px;}
._1d_c00049{width:29.085000px;}
._1a_c00049{width:39.690000px;}
._23_c00049{width:43.452000px;}
._24_c00049{width:48.528000px;}
._3_c00049{width:54.288000px;}
._12_c00049{width:59.607000px;}
._2c_c00049{width:61.356000px;}
._29_c00049{width:90.207000px;}
._1b_c00049{width:100.683000px;}
._1c_c00049{width:126.819000px;}
._21_c00049{width:139.167000px;}
._26_c00049{width:188.610000px;}
._25_c00049{width:197.424000px;}
._2_c00049{width:201.864000px;}
._28_c00049{width:375.054000px;}
.fc2_c00049{color:transparent;}
.fc1_c00049{color:rgb(128,128,128);}
.fc0_c00049{color:rgb(0,0,0);}
.fs5_c00049{font-size:48.000000px;}
.fs1_c00049{font-size:57.000000px;}
.fs3_c00049{font-size:72.000000px;}
.fs0_c00049{font-size:78.000000px;}
.fs2_c00049{font-size:81.000000px;}
.fs4_c00049{font-size:87.000000px;}
.y0_c00049{bottom:0.000000px;}
.y26_c00049{bottom:3.105000px;}
.y25_c00049{bottom:7.228357px;}
.y24_c00049{bottom:56.730000px;}
.y23_c00049{bottom:81.630000px;}
.y22_c00049{bottom:107.280000px;}
.y21_c00049{bottom:131.280000px;}
.y20_c00049{bottom:156.630000px;}
.y1f_c00049{bottom:180.930000px;}
.y1e_c00049{bottom:205.530000px;}
.y1d_c00049{bottom:230.280000px;}
.y1c_c00049{bottom:255.480000px;}
.y1b_c00049{bottom:279.480000px;}
.y1a_c00049{bottom:304.380000px;}
.y19_c00049{bottom:328.680000px;}
.y18_c00049{bottom:352.380000px;}
.y17_c00049{bottom:377.430000px;}
.y16_c00049{bottom:402.030000px;}
.y15_c00049{bottom:425.580000px;}
.y14_c00049{bottom:448.830000px;}
.y13_c00049{bottom:473.880000px;}
.y12_c00049{bottom:498.480000px;}
.y11_c00049{bottom:522.180000px;}
.y10_c00049{bottom:546.180000px;}
.yf_c00049{bottom:570.780000px;}
.ye_c00049{bottom:595.080000px;}
.yd_c00049{bottom:619.080000px;}
.yc_c00049{bottom:643.980000px;}
.yb_c00049{bottom:667.980000px;}
.ya_c00049{bottom:691.980000px;}
.y9_c00049{bottom:716.280000px;}
.y8_c00049{bottom:740.880000px;}
.y7_c00049{bottom:765.480000px;}
.y6_c00049{bottom:789.180000px;}
.y5_c00049{bottom:813.030000px;}
.y4_c00049{bottom:838.380000px;}
.y3_c00049{bottom:861.930000px;}
.y2_c00049{bottom:885.630000px;}
.y1_c00049{bottom:921.480000px;}
.h6_c00049{height:13.200074px;}
.h7_c00049{height:43.804688px;}
.h2_c00049{height:79.497070px;}
.h3_c00049{height:84.269531px;}
.h5_c00049{height:91.160156px;}
.h4_c00049{height:91.176000px;}
.h1_c00049{height:98.756836px;}
.h0_c00049{height:995.250000px;}
.w2_c00049{width:104.875500px;}
.w0_c00049{width:667.425000px;}
.w1_c00049{width:667.500000px;}
.x0_c00049{left:0.000000px;}
.x5_c00049{left:60.750000px;}
.x7_c00049{left:62.400000px;}
.x8_c00049{left:90.750000px;}
.x4_c00049{left:118.800000px;}
.x6_c00049{left:151.200000px;}
.x3_c00049{left:152.550000px;}
.x2_c00049{left:154.350000px;}
.xa_c00049{left:155.700000px;}
.xb_c00049{left:157.950000px;}
.xc_c00049{left:159.000000px;}
.xd_c00049{left:160.950000px;}
.x1_c00049{left:175.500000px;}
.x9_c00049{left:178.950000px;}
.xf_c00049{left:285.526749px;}
.xe_c00049{left:592.350000px;}
@media print{
.v0_c00049{vertical-align:0.000000pt;}
.ls2_c00049{letter-spacing:0.000000pt;}
.ls1_c00049{letter-spacing:6.666667pt;}
.ls0_c00049{letter-spacing:7.893333pt;}
.ls3_c00049{letter-spacing:16.000000pt;}
.ws1_c00049{word-spacing:-34.000000pt;}
.ws2_c00049{word-spacing:-15.424000pt;}
.ws0_c00049{word-spacing:-3.600000pt;}
.ws3_c00049{word-spacing:-3.312000pt;}
.ws4_c00049{word-spacing:0.000000pt;}
._e_c00049{margin-left:-19.194667pt;}
._2b_c00049{margin-left:-14.696000pt;}
._13_c00049{margin-left:-12.528000pt;}
._27_c00049{margin-left:-10.560000pt;}
._20_c00049{margin-left:-9.426667pt;}
._2a_c00049{margin-left:-8.136000pt;}
._17_c00049{margin-left:-7.104000pt;}
._0_c00049{margin-left:-6.032000pt;}
._15_c00049{margin-left:-4.298667pt;}
._1_c00049{margin-left:-3.397333pt;}
._1f_c00049{margin-left:-1.896000pt;}
._18_c00049{margin-left:-0.941333pt;}
._16_c00049{width:0.909333pt;}
._10_c00049{width:1.808000pt;}
._11_c00049{width:2.709333pt;}
._d_c00049{width:3.744000pt;}
._a_c00049{width:5.218667pt;}
._f_c00049{width:6.194667pt;}
._19_c00049{width:7.992000pt;}
._6_c00049{width:8.917333pt;}
._9_c00049{width:9.981333pt;}
._14_c00049{width:11.002667pt;}
._1e_c00049{width:12.816000pt;}
._22_c00049{width:13.904000pt;}
._7_c00049{width:14.896000pt;}
._5_c00049{width:16.314667pt;}
._4_c00049{width:18.240000pt;}
._c_c00049{width:19.456000pt;}
._b_c00049{width:22.496000pt;}
._8_c00049{width:24.066667pt;}
._1d_c00049{width:25.853333pt;}
._1a_c00049{width:35.280000pt;}
._23_c00049{width:38.624000pt;}
._24_c00049{width:43.136000pt;}
._3_c00049{width:48.256000pt;}
._12_c00049{width:52.984000pt;}
._2c_c00049{width:54.538667pt;}
._29_c00049{width:80.184000pt;}
._1b_c00049{width:89.496000pt;}
._1c_c00049{width:112.728000pt;}
._21_c00049{width:123.704000pt;}
._26_c00049{width:167.653333pt;}
._25_c00049{width:175.488000pt;}
._2_c00049{width:179.434667pt;}
._28_c00049{width:333.381333pt;}
.fs5_c00049{font-size:42.666667pt;}
.fs1_c00049{font-size:50.666667pt;}
.fs3_c00049{font-size:64.000000pt;}
.fs0_c00049{font-size:69.333333pt;}
.fs2_c00049{font-size:72.000000pt;}
.fs4_c00049{font-size:77.333333pt;}
.y0_c00049{bottom:0.000000pt;}
.y26_c00049{bottom:2.760000pt;}
.y25_c00049{bottom:6.425206pt;}
.y24_c00049{bottom:50.426667pt;}
.y23_c00049{bottom:72.560000pt;}
.y22_c00049{bottom:95.360000pt;}
.y21_c00049{bottom:116.693333pt;}
.y20_c00049{bottom:139.226667pt;}
.y1f_c00049{bottom:160.826667pt;}
.y1e_c00049{bottom:182.693333pt;}
.y1d_c00049{bottom:204.693333pt;}
.y1c_c00049{bottom:227.093333pt;}
.y1b_c00049{bottom:248.426667pt;}
.y1a_c00049{bottom:270.560000pt;}
.y19_c00049{bottom:292.160000pt;}
.y18_c00049{bottom:313.226667pt;}
.y17_c00049{bottom:335.493333pt;}
.y16_c00049{bottom:357.360000pt;}
.y15_c00049{bottom:378.293333pt;}
.y14_c00049{bottom:398.960000pt;}
.y13_c00049{bottom:421.226667pt;}
.y12_c00049{bottom:443.093333pt;}
.y11_c00049{bottom:464.160000pt;}
.y10_c00049{bottom:485.493333pt;}
.yf_c00049{bottom:507.360000pt;}
.ye_c00049{bottom:528.960000pt;}
.yd_c00049{bottom:550.293333pt;}
.yc_c00049{bottom:572.426667pt;}
.yb_c00049{bottom:593.760000pt;}
.ya_c00049{bottom:615.093333pt;}
.y9_c00049{bottom:636.693333pt;}
.y8_c00049{bottom:658.560000pt;}
.y7_c00049{bottom:680.426667pt;}
.y6_c00049{bottom:701.493333pt;}
.y5_c00049{bottom:722.693333pt;}
.y4_c00049{bottom:745.226667pt;}
.y3_c00049{bottom:766.160000pt;}
.y2_c00049{bottom:787.226667pt;}
.y1_c00049{bottom:819.093333pt;}
.h6_c00049{height:11.733399pt;}
.h7_c00049{height:38.937500pt;}
.h2_c00049{height:70.664062pt;}
.h3_c00049{height:74.906250pt;}
.h5_c00049{height:81.031250pt;}
.h4_c00049{height:81.045333pt;}
.h1_c00049{height:87.783854pt;}
.h0_c00049{height:884.666667pt;}
.w2_c00049{width:93.222667pt;}
.w0_c00049{width:593.266667pt;}
.w1_c00049{width:593.333333pt;}
.x0_c00049{left:0.000000pt;}
.x5_c00049{left:54.000000pt;}
.x7_c00049{left:55.466667pt;}
.x8_c00049{left:80.666667pt;}
.x4_c00049{left:105.600000pt;}
.x6_c00049{left:134.400000pt;}
.x3_c00049{left:135.600000pt;}
.x2_c00049{left:137.200000pt;}
.xa_c00049{left:138.400000pt;}
.xb_c00049{left:140.400000pt;}
.xc_c00049{left:141.333333pt;}
.xd_c00049{left:143.066667pt;}
.x1_c00049{left:156.000000pt;}
.x9_c00049{left:159.066667pt;}
.xf_c00049{left:253.801554pt;}
.xe_c00049{left:526.533333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_d98f6c957bfd3476a5480300.woff2')format("woff");}.ff1_c00050{font-family:ff1_c00050;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00050;src:url('chunks/assets/font_eed8efe2066b74efe89f5aa7.woff2')format("woff");}.ff2_c00050{font-family:ff2_c00050;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00050;src:url('chunks/assets/font_eea6cc4e3d745a61f0309390.woff2')format("woff");}.ff3_c00050{font-family:ff3_c00050;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00050;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff4_c00050{font-family:ff4_c00050;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00050;src:url('chunks/assets/font_442ccec3d020683cc5b9e881.woff2')format("woff");}.ff5_c00050{font-family:ff5_c00050;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00050;src:url('chunks/assets/font_aea07f8a65cd54177c8cdf85.woff2')format("woff");}.ff6_c00050{font-family:ff6_c00050;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00050;src:url('chunks/assets/font_5607448c0e119c6f8f51cf4b.woff2')format("woff");}.ff7_c00050{font-family:ff7_c00050;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00050;src:url('chunks/assets/font_a8e3199e471d629c68ceabd9.woff2')format("woff");}.ff8_c00050{font-family:ff8_c00050;line-height:1.437000;font-style:normal;font-weight: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_c00050;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff9_c00050{font-family:ff9_c00050;line-height:1.219238;font-style: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;}
.v1_c00050{vertical-align:132.000000px;}
.ls5_c00050{letter-spacing:0.000000px;}
.ls4_c00050{letter-spacing:7.200000px;}
.ls2_c00050{letter-spacing:8.136000px;}
.ls0_c00050{letter-spacing:11.402400px;}
.ls1_c00050{letter-spacing:11.949000px;}
.ls3_c00050{letter-spacing:18.300000px;}
.ls6_c00050{letter-spacing:21.000000px;}
.sc__c00050{text-shadow:none;}
.sc0_c00050{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00050{-webkit-text-stroke:0px transparent;}
.sc0_c00050{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00050{word-spacing:-54.000000px;}
.ws6_c00050{word-spacing:-20.250000px;}
.ws4_c00050{word-spacing:-18.867000px;}
.ws0_c00050{word-spacing:-18.014400px;}
.ws1_c00050{word-spacing:-17.352000px;}
.ws5_c00050{word-spacing:-15.093600px;}
.ws7_c00050{word-spacing:0.000000px;}
.ws3_c00050{word-spacing:5.184000px;}
._17_c00050{margin-left:-23.034000px;}
._f_c00050{margin-left:-18.009000px;}
._18_c00050{margin-left:-11.763000px;}
._6_c00050{margin-left:-8.811000px;}
._d_c00050{margin-left:-7.371000px;}
._13_c00050{margin-left:-6.021000px;}
._5_c00050{margin-left:-4.752000px;}
._8_c00050{margin-left:-3.663000px;}
._7_c00050{margin-left:-1.782000px;}
._b_c00050{width:1.296000px;}
._10_c00050{width:2.405400px;}
._2_c00050{width:3.564000px;}
._1_c00050{width:4.950000px;}
._3_c00050{width:6.435000px;}
._c_c00050{width:7.992000px;}
._0_c00050{width:9.603000px;}
._12_c00050{width:10.629000px;}
._11_c00050{width:11.664000px;}
._1b_c00050{width:12.911400px;}
._4_c00050{width:13.959000px;}
._1c_c00050{width:15.767400px;}
._e_c00050{width:16.902000px;}
._20_c00050{width:23.040000px;}
._14_c00050{width:26.011800px;}
._16_c00050{width:27.163200px;}
._15_c00050{width:28.396800px;}
._19_c00050{width:33.160800px;}
._1a_c00050{width:34.776000px;}
._21_c00050{width:36.384000px;}
._a_c00050{width:37.719000px;}
._1d_c00050{width:42.429600px;}
._1f_c00050{width:167.148000px;}
._9_c00050{width:210.375000px;}
._22_c00050{width:339.471000px;}
._1e_c00050{width:560.908800px;}
.fc2_c00050{color:transparent;}
.fc1_c00050{color:rgb(128,128,128);}
.fc0_c00050{color:rgb(0,0,0);}
.fs6_c00050{font-size:45.600000px;}
.fs9_c00050{font-size:48.000000px;}
.fs5_c00050{font-size:57.000000px;}
.fs2_c00050{font-size:64.800000px;}
.fs4_c00050{font-size:66.000000px;}
.fs3_c00050{font-size:72.000000px;}
.fs1_c00050{font-size:81.000000px;}
.fs8_c00050{font-size:87.000000px;}
.fs0_c00050{font-size:99.000000px;}
.fs7_c00050{font-size:246.000000px;}
.y0_c00050{bottom:0.000000px;}
.y24_c00050{bottom:3.105000px;}
.y23_c00050{bottom:7.228355px;}
.y22_c00050{bottom:71.235000px;}
.y21_c00050{bottom:94.185000px;}
.y20_c00050{bottom:118.335000px;}
.y1f_c00050{bottom:143.385000px;}
.y1e_c00050{bottom:168.285000px;}
.y1d_c00050{bottom:192.585000px;}
.y1b_c00050{bottom:209.235000px;}
.y1c_c00050{bottom:217.635000px;}
.y1a_c00050{bottom:267.285000px;}
.y19_c00050{bottom:290.535000px;}
.y18_c00050{bottom:315.135000px;}
.y17_c00050{bottom:339.435000px;}
.y16_c00050{bottom:363.735000px;}
.y15_c00050{bottom:387.735000px;}
.y14_c00050{bottom:411.735000px;}
.y13_c00050{bottom:435.735000px;}
.y12_c00050{bottom:460.635000px;}
.y11_c00050{bottom:484.635000px;}
.y10_c00050{bottom:508.935000px;}
.yf_c00050{bottom:532.935000px;}
.ye_c00050{bottom:557.085000px;}
.yd_c00050{bottom:581.085000px;}
.yc_c00050{bottom:605.085000px;}
.yb_c00050{bottom:629.685000px;}
.ya_c00050{bottom:652.635000px;}
.y9_c00050{bottom:675.885000px;}
.y8_c00050{bottom:749.235000px;}
.y7_c00050{bottom:774.135000px;}
.y6_c00050{bottom:798.735000px;}
.y5_c00050{bottom:824.085000px;}
.y4_c00050{bottom:848.085000px;}
.y3_c00050{bottom:872.085000px;}
.y2_c00050{bottom:896.085000px;}
.y1_c00050{bottom:931.035000px;}
.h9_c00050{height:13.200074px;}
.ha_c00050{height:43.804688px;}
.h5_c00050{height:66.713379px;}
.h3_c00050{height:79.497070px;}
.h8_c00050{height:84.269531px;}
.h4_c00050{height:91.160156px;}
.h7_c00050{height:91.176000px;}
.h2_c00050{height:115.870605px;}
.h6_c00050{height:262.482000px;}
.h0_c00050{height:977.925000px;}
.h1_c00050{height:978.000000px;}
.w1_c00050{width:104.875500px;}
.w0_c00050{width:671.250000px;}
.x0_c00050{left:0.000000px;}
.xd_c00050{left:16.500000px;}
.xc_c00050{left:24.300000px;}
.xb_c00050{left:26.100000px;}
.x8_c00050{left:28.800000px;}
.x7_c00050{left:30.150000px;}
.x6_c00050{left:31.350000px;}
.x5_c00050{left:33.150000px;}
.x4_c00050{left:35.550000px;}
.x3_c00050{left:36.900000px;}
.x2_c00050{left:38.850000px;}
.x9_c00050{left:53.700000px;}
.xa_c00050{left:95.850000px;}
.x1_c00050{left:121.500000px;}
.xf_c00050{left:287.439240px;}
.xe_c00050{left:334.200000px;}
@media print{
.v0_c00050{vertical-align:0.000000pt;}
.v1_c00050{vertical-align:117.333333pt;}
.ls5_c00050{letter-spacing:0.000000pt;}
.ls4_c00050{letter-spacing:6.400000pt;}
.ls2_c00050{letter-spacing:7.232000pt;}
.ls0_c00050{letter-spacing:10.135467pt;}
.ls1_c00050{letter-spacing:10.621333pt;}
.ls3_c00050{letter-spacing:16.266667pt;}
.ls6_c00050{letter-spacing:18.666667pt;}
.ws2_c00050{word-spacing:-48.000000pt;}
.ws6_c00050{word-spacing:-18.000000pt;}
.ws4_c00050{word-spacing:-16.770667pt;}
.ws0_c00050{word-spacing:-16.012800pt;}
.ws1_c00050{word-spacing:-15.424000pt;}
.ws5_c00050{word-spacing:-13.416533pt;}
.ws7_c00050{word-spacing:0.000000pt;}
.ws3_c00050{word-spacing:4.608000pt;}
._17_c00050{margin-left:-20.474667pt;}
._f_c00050{margin-left:-16.008000pt;}
._18_c00050{margin-left:-10.456000pt;}
._6_c00050{margin-left:-7.832000pt;}
._d_c00050{margin-left:-6.552000pt;}
._13_c00050{margin-left:-5.352000pt;}
._5_c00050{margin-left:-4.224000pt;}
._8_c00050{margin-left:-3.256000pt;}
._7_c00050{margin-left:-1.584000pt;}
._b_c00050{width:1.152000pt;}
._10_c00050{width:2.138133pt;}
._2_c00050{width:3.168000pt;}
._1_c00050{width:4.400000pt;}
._3_c00050{width:5.720000pt;}
._c_c00050{width:7.104000pt;}
._0_c00050{width:8.536000pt;}
._12_c00050{width:9.448000pt;}
._11_c00050{width:10.368000pt;}
._1b_c00050{width:11.476800pt;}
._4_c00050{width:12.408000pt;}
._1c_c00050{width:14.015467pt;}
._e_c00050{width:15.024000pt;}
._20_c00050{width:20.480000pt;}
._14_c00050{width:23.121600pt;}
._16_c00050{width:24.145067pt;}
._15_c00050{width:25.241600pt;}
._19_c00050{width:29.476267pt;}
._1a_c00050{width:30.912000pt;}
._21_c00050{width:32.341333pt;}
._a_c00050{width:33.528000pt;}
._1d_c00050{width:37.715200pt;}
._1f_c00050{width:148.576000pt;}
._9_c00050{width:187.000000pt;}
._22_c00050{width:301.752000pt;}
._1e_c00050{width:498.585600pt;}
.fs6_c00050{font-size:40.533333pt;}
.fs9_c00050{font-size:42.666667pt;}
.fs5_c00050{font-size:50.666667pt;}
.fs2_c00050{font-size:57.600000pt;}
.fs4_c00050{font-size:58.666667pt;}
.fs3_c00050{font-size:64.000000pt;}
.fs1_c00050{font-size:72.000000pt;}
.fs8_c00050{font-size:77.333333pt;}
.fs0_c00050{font-size:88.000000pt;}
.fs7_c00050{font-size:218.666667pt;}
.y0_c00050{bottom:0.000000pt;}
.y24_c00050{bottom:2.760000pt;}
.y23_c00050{bottom:6.425204pt;}
.y22_c00050{bottom:63.320000pt;}
.y21_c00050{bottom:83.720000pt;}
.y20_c00050{bottom:105.186667pt;}
.y1f_c00050{bottom:127.453333pt;}
.y1e_c00050{bottom:149.586667pt;}
.y1d_c00050{bottom:171.186667pt;}
.y1b_c00050{bottom:185.986667pt;}
.y1c_c00050{bottom:193.453333pt;}
.y1a_c00050{bottom:237.586667pt;}
.y19_c00050{bottom:258.253333pt;}
.y18_c00050{bottom:280.120000pt;}
.y17_c00050{bottom:301.720000pt;}
.y16_c00050{bottom:323.320000pt;}
.y15_c00050{bottom:344.653333pt;}
.y14_c00050{bottom:365.986667pt;}
.y13_c00050{bottom:387.320000pt;}
.y12_c00050{bottom:409.453333pt;}
.y11_c00050{bottom:430.786667pt;}
.y10_c00050{bottom:452.386667pt;}
.yf_c00050{bottom:473.720000pt;}
.ye_c00050{bottom:495.186667pt;}
.yd_c00050{bottom:516.520000pt;}
.yc_c00050{bottom:537.853333pt;}
.yb_c00050{bottom:559.720000pt;}
.ya_c00050{bottom:580.120000pt;}
.y9_c00050{bottom:600.786667pt;}
.y8_c00050{bottom:665.986667pt;}
.y7_c00050{bottom:688.120000pt;}
.y6_c00050{bottom:709.986667pt;}
.y5_c00050{bottom:732.520000pt;}
.y4_c00050{bottom:753.853333pt;}
.y3_c00050{bottom:775.186667pt;}
.y2_c00050{bottom:796.520000pt;}
.y1_c00050{bottom:827.586667pt;}
.h9_c00050{height:11.733399pt;}
.ha_c00050{height:38.937500pt;}
.h5_c00050{height:59.300781pt;}
.h3_c00050{height:70.664062pt;}
.h8_c00050{height:74.906250pt;}
.h4_c00050{height:81.031250pt;}
.h7_c00050{height:81.045333pt;}
.h2_c00050{height:102.996094pt;}
.h6_c00050{height:233.317333pt;}
.h0_c00050{height:869.266667pt;}
.h1_c00050{height:869.333333pt;}
.w1_c00050{width:93.222667pt;}
.w0_c00050{width:596.666667pt;}
.x0_c00050{left:0.000000pt;}
.xd_c00050{left:14.666667pt;}
.xc_c00050{left:21.600000pt;}
.xb_c00050{left:23.200000pt;}
.x8_c00050{left:25.600000pt;}
.x7_c00050{left:26.800000pt;}
.x6_c00050{left:27.866667pt;}
.x5_c00050{left:29.466667pt;}
.x4_c00050{left:31.600000pt;}
.x3_c00050{left:32.800000pt;}
.x2_c00050{left:34.533333pt;}
.x9_c00050{left:47.733333pt;}
.xa_c00050{left:85.200000pt;}
.x1_c00050{left:108.000000pt;}
.xf_c00050{left:255.501546pt;}
.xe_c00050{left:297.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_193650bae1ca12541cb4067c.woff2')format("woff");}.ff1_c00051{font-family:ff1_c00051;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00051;src:url('chunks/assets/font_da6d65144c6e575eba38e4fa.woff2')format("woff");}.ff2_c00051{font-family:ff2_c00051;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00051;src:url('chunks/assets/font_bc46261c3554f782bca65dd9.woff2')format("woff");}.ff3_c00051{font-family:ff3_c00051;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00051;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff4_c00051{font-family:ff4_c00051;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00051{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00051{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m2_c00051{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.v0_c00051{vertical-align:0.000000px;}
.ls1_c00051{letter-spacing:0.000000px;}
.ls0_c00051{letter-spacing:11.016000px;}
.ls2_c00051{letter-spacing:12.000000px;}
.sc__c00051{text-shadow:none;}
.sc0_c00051{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00051{-webkit-text-stroke:0px transparent;}
.sc0_c00051{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00051{word-spacing:-30.798000px;}
.ws2_c00051{word-spacing:-18.798000px;}
.ws1_c00051{word-spacing:-13.737000px;}
.ws3_c00051{word-spacing:0.000000px;}
._15_c00051{margin-left:-35.226000px;}
._e_c00051{margin-left:-24.648000px;}
._17_c00051{margin-left:-22.854000px;}
._1e_c00051{margin-left:-20.748000px;}
._16_c00051{margin-left:-16.839000px;}
._1b_c00051{margin-left:-14.601000px;}
._1c_c00051{margin-left:-13.494000px;}
._18_c00051{margin-left:-11.760000px;}
._13_c00051{margin-left:-9.672000px;}
._19_c00051{margin-left:-7.770000px;}
._14_c00051{margin-left:-6.645000px;}
._1_c00051{margin-left:-5.445000px;}
._0_c00051{margin-left:-4.158000px;}
._5_c00051{margin-left:-2.376000px;}
._4_c00051{margin-left:-1.287000px;}
._b_c00051{width:1.188000px;}
._a_c00051{width:2.367000px;}
._22_c00051{width:3.372000px;}
._6_c00051{width:4.374000px;}
._7_c00051{width:5.427000px;}
._8_c00051{width:7.209000px;}
._2_c00051{width:8.217000px;}
._9_c00051{width:9.423000px;}
._c_c00051{width:11.259000px;}
._10_c00051{width:12.516000px;}
._d_c00051{width:13.563000px;}
._3_c00051{width:14.652000px;}
._12_c00051{width:15.912000px;}
._1d_c00051{width:17.544000px;}
._11_c00051{width:21.432000px;}
._21_c00051{width:25.218000px;}
._20_c00051{width:29.079000px;}
._1a_c00051{width:173.070000px;}
._1f_c00051{width:229.320000px;}
._24_c00051{width:310.284000px;}
._f_c00051{width:323.466000px;}
._23_c00051{width:363.090000px;}
.fc2_c00051{color:transparent;}
.fc1_c00051{color:rgb(128,128,128);}
.fc0_c00051{color:rgb(0,0,0);}
.fs5_c00051{font-size:48.000000px;}
.fs3_c00051{font-size:57.000000px;}
.fs4_c00051{font-size:72.000000px;}
.fs2_c00051{font-size:78.000000px;}
.fs1_c00051{font-size:81.000000px;}
.fs0_c00051{font-size:99.000000px;}
.y0_c00051{bottom:0.000000px;}
.y26_c00051{bottom:3.105000px;}
.y25_c00051{bottom:7.228357px;}
.y24_c00051{bottom:71.580000px;}
.y23_c00051{bottom:97.530000px;}
.y22_c00051{bottom:123.480000px;}
.y21_c00051{bottom:148.230000px;}
.y20_c00051{bottom:173.430000px;}
.y1f_c00051{bottom:197.880000px;}
.y1e_c00051{bottom:221.730000px;}
.y1d_c00051{bottom:246.330000px;}
.y1c_c00051{bottom:272.130000px;}
.y1b_c00051{bottom:297.030000px;}
.y1a_c00051{bottom:321.030000px;}
.y19_c00051{bottom:346.980000px;}
.y18_c00051{bottom:370.530000px;}
.y17_c00051{bottom:394.230000px;}
.y16_c00051{bottom:419.280000px;}
.y15_c00051{bottom:443.130000px;}
.y14_c00051{bottom:467.880000px;}
.y13_c00051{bottom:492.030000px;}
.y12_c00051{bottom:515.730000px;}
.y11_c00051{bottom:540.030000px;}
.y10_c00051{bottom:564.630000px;}
.yf_c00051{bottom:588.930000px;}
.ye_c00051{bottom:613.530000px;}
.yd_c00051{bottom:637.830000px;}
.yc_c00051{bottom:662.880000px;}
.yb_c00051{bottom:686.880000px;}
.ya_c00051{bottom:710.130000px;}
.y9_c00051{bottom:734.730000px;}
.y8_c00051{bottom:759.030000px;}
.y7_c00051{bottom:783.030000px;}
.y6_c00051{bottom:807.630000px;}
.y5_c00051{bottom:831.330000px;}
.y4_c00051{bottom:855.630000px;}
.y3_c00051{bottom:879.930000px;}
.y2_c00051{bottom:903.780000px;}
.y1_c00051{bottom:940.380000px;}
.h5_c00051{height:13.200074px;}
.h6_c00051{height:43.804688px;}
.h2_c00051{height:79.497070px;}
.h4_c00051{height:91.160156px;}
.h3_c00051{height:98.756836px;}
.h1_c00051{height:115.870605px;}
.h0_c00051{height:995.250000px;}
.w2_c00051{width:104.875500px;}
.w0_c00051{width:667.425000px;}
.w1_c00051{width:667.500000px;}
.x0_c00051{left:0.000000px;}
.x6_c00051{left:56.250000px;}
.x7_c00051{left:59.100000px;}
.xa_c00051{left:60.450000px;}
.xc_c00051{left:87.450000px;}
.x8_c00051{left:97.200000px;}
.x9_c00051{left:119.100000px;}
.x2_c00051{left:135.600000px;}
.x3_c00051{left:137.250000px;}
.x4_c00051{left:144.000000px;}
.x5_c00051{left:145.050000px;}
.xe_c00051{left:146.100000px;}
.xb_c00051{left:150.450000px;}
.xd_c00051{left:152.100000px;}
.xf_c00051{left:153.450000px;}
.x10_c00051{left:154.500000px;}
.x12_c00051{left:156.300000px;}
.x13_c00051{left:157.650000px;}
.x14_c00051{left:158.850000px;}
.x11_c00051{left:181.950000px;}
.x1_c00051{left:221.100000px;}
.x18_c00051{left:285.526749px;}
.x15_c00051{left:350.400000px;}
.x16_c00051{left:410.700000px;}
.x17_c00051{left:428.850000px;}
@media print{
.v0_c00051{vertical-align:0.000000pt;}
.ls1_c00051{letter-spacing:0.000000pt;}
.ls0_c00051{letter-spacing:9.792000pt;}
.ls2_c00051{letter-spacing:10.666667pt;}
.ws0_c00051{word-spacing:-27.376000pt;}
.ws2_c00051{word-spacing:-16.709333pt;}
.ws1_c00051{word-spacing:-12.210667pt;}
.ws3_c00051{word-spacing:0.000000pt;}
._15_c00051{margin-left:-31.312000pt;}
._e_c00051{margin-left:-21.909333pt;}
._17_c00051{margin-left:-20.314667pt;}
._1e_c00051{margin-left:-18.442667pt;}
._16_c00051{margin-left:-14.968000pt;}
._1b_c00051{margin-left:-12.978667pt;}
._1c_c00051{margin-left:-11.994667pt;}
._18_c00051{margin-left:-10.453333pt;}
._13_c00051{margin-left:-8.597333pt;}
._19_c00051{margin-left:-6.906667pt;}
._14_c00051{margin-left:-5.906667pt;}
._1_c00051{margin-left:-4.840000pt;}
._0_c00051{margin-left:-3.696000pt;}
._5_c00051{margin-left:-2.112000pt;}
._4_c00051{margin-left:-1.144000pt;}
._b_c00051{width:1.056000pt;}
._a_c00051{width:2.104000pt;}
._22_c00051{width:2.997333pt;}
._6_c00051{width:3.888000pt;}
._7_c00051{width:4.824000pt;}
._8_c00051{width:6.408000pt;}
._2_c00051{width:7.304000pt;}
._9_c00051{width:8.376000pt;}
._c_c00051{width:10.008000pt;}
._10_c00051{width:11.125333pt;}
._d_c00051{width:12.056000pt;}
._3_c00051{width:13.024000pt;}
._12_c00051{width:14.144000pt;}
._1d_c00051{width:15.594667pt;}
._11_c00051{width:19.050667pt;}
._21_c00051{width:22.416000pt;}
._20_c00051{width:25.848000pt;}
._1a_c00051{width:153.840000pt;}
._1f_c00051{width:203.840000pt;}
._24_c00051{width:275.808000pt;}
._f_c00051{width:287.525333pt;}
._23_c00051{width:322.746667pt;}
.fs5_c00051{font-size:42.666667pt;}
.fs3_c00051{font-size:50.666667pt;}
.fs4_c00051{font-size:64.000000pt;}
.fs2_c00051{font-size:69.333333pt;}
.fs1_c00051{font-size:72.000000pt;}
.fs0_c00051{font-size:88.000000pt;}
.y0_c00051{bottom:0.000000pt;}
.y26_c00051{bottom:2.760000pt;}
.y25_c00051{bottom:6.425206pt;}
.y24_c00051{bottom:63.626667pt;}
.y23_c00051{bottom:86.693333pt;}
.y22_c00051{bottom:109.760000pt;}
.y21_c00051{bottom:131.760000pt;}
.y20_c00051{bottom:154.160000pt;}
.y1f_c00051{bottom:175.893333pt;}
.y1e_c00051{bottom:197.093333pt;}
.y1d_c00051{bottom:218.960000pt;}
.y1c_c00051{bottom:241.893333pt;}
.y1b_c00051{bottom:264.026667pt;}
.y1a_c00051{bottom:285.360000pt;}
.y19_c00051{bottom:308.426667pt;}
.y18_c00051{bottom:329.360000pt;}
.y17_c00051{bottom:350.426667pt;}
.y16_c00051{bottom:372.693333pt;}
.y15_c00051{bottom:393.893333pt;}
.y14_c00051{bottom:415.893333pt;}
.y13_c00051{bottom:437.360000pt;}
.y12_c00051{bottom:458.426667pt;}
.y11_c00051{bottom:480.026667pt;}
.y10_c00051{bottom:501.893333pt;}
.yf_c00051{bottom:523.493333pt;}
.ye_c00051{bottom:545.360000pt;}
.yd_c00051{bottom:566.960000pt;}
.yc_c00051{bottom:589.226667pt;}
.yb_c00051{bottom:610.560000pt;}
.ya_c00051{bottom:631.226667pt;}
.y9_c00051{bottom:653.093333pt;}
.y8_c00051{bottom:674.693333pt;}
.y7_c00051{bottom:696.026667pt;}
.y6_c00051{bottom:717.893333pt;}
.y5_c00051{bottom:738.960000pt;}
.y4_c00051{bottom:760.560000pt;}
.y3_c00051{bottom:782.160000pt;}
.y2_c00051{bottom:803.360000pt;}
.y1_c00051{bottom:835.893333pt;}
.h5_c00051{height:11.733399pt;}
.h6_c00051{height:38.937500pt;}
.h2_c00051{height:70.664062pt;}
.h4_c00051{height:81.031250pt;}
.h3_c00051{height:87.783854pt;}
.h1_c00051{height:102.996094pt;}
.h0_c00051{height:884.666667pt;}
.w2_c00051{width:93.222667pt;}
.w0_c00051{width:593.266667pt;}
.w1_c00051{width:593.333333pt;}
.x0_c00051{left:0.000000pt;}
.x6_c00051{left:50.000000pt;}
.x7_c00051{left:52.533333pt;}
.xa_c00051{left:53.733333pt;}
.xc_c00051{left:77.733333pt;}
.x8_c00051{left:86.400000pt;}
.x9_c00051{left:105.866667pt;}
.x2_c00051{left:120.533333pt;}
.x3_c00051{left:122.000000pt;}
.x4_c00051{left:128.000000pt;}
.x5_c00051{left:128.933333pt;}
.xe_c00051{left:129.866667pt;}
.xb_c00051{left:133.733333pt;}
.xd_c00051{left:135.200000pt;}
.xf_c00051{left:136.400000pt;}
.x10_c00051{left:137.333333pt;}
.x12_c00051{left:138.933333pt;}
.x13_c00051{left:140.133333pt;}
.x14_c00051{left:141.200000pt;}
.x11_c00051{left:161.733333pt;}
.x1_c00051{left:196.533333pt;}
.x18_c00051{left:253.801554pt;}
.x15_c00051{left:311.466667pt;}
.x16_c00051{left:365.066667pt;}
.x17_c00051{left:381.200000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_6d7ba3e9fc55d9b711989a98.woff2')format("woff");}.ff1_c00052{font-family:ff1_c00052;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00052;src:url('chunks/assets/font_9a1da7473c5207da5a772817.woff2')format("woff");}.ff2_c00052{font-family:ff2_c00052;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00052;src:url('chunks/assets/font_7b3845c727e64e9e6e9f0c2a.woff2')format("woff");}.ff3_c00052{font-family:ff3_c00052;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00052;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff4_c00052{font-family:ff4_c00052;line-height:1.219238;font-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_c00052{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,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);}
.v0_c00052{vertical-align:0.000000px;}
.ls1_c00052{letter-spacing:0.000000px;}
.ls0_c00052{letter-spacing:13.464000px;}
.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:-20.250000px;}
.ws1_c00052{word-spacing:-17.352000px;}
.ws2_c00052{word-spacing:0.000000px;}
._1b_c00052{margin-left:-27.891000px;}
._12_c00052{margin-left:-12.375000px;}
._3_c00052{margin-left:-10.989000px;}
._14_c00052{margin-left:-9.558000px;}
._1_c00052{margin-left:-8.019000px;}
._15_c00052{margin-left:-6.984000px;}
._c_c00052{margin-left:-5.886000px;}
._d_c00052{margin-left:-4.797000px;}
._6_c00052{margin-left:-3.465000px;}
._0_c00052{margin-left:-1.980000px;}
._2_c00052{width:1.386000px;}
._5_c00052{width:2.772000px;}
._a_c00052{width:4.131000px;}
._9_c00052{width:6.111000px;}
._b_c00052{width:7.533000px;}
._18_c00052{width:8.541000px;}
._4_c00052{width:9.603000px;}
._f_c00052{width:11.574000px;}
._11_c00052{width:13.509000px;}
._e_c00052{width:15.291000px;}
._10_c00052{width:16.785000px;}
._17_c00052{width:18.639000px;}
._8_c00052{width:22.770000px;}
._13_c00052{width:31.833000px;}
._19_c00052{width:35.307000px;}
._16_c00052{width:116.271000px;}
._7_c00052{width:195.030000px;}
._1a_c00052{width:246.843000px;}
._1c_c00052{width:308.844000px;}
.fc2_c00052{color:transparent;}
.fc1_c00052{color:rgb(128,128,128);}
.fc0_c00052{color:rgb(0,0,0);}
.fs4_c00052{font-size:48.000000px;}
.fs3_c00052{font-size:72.000000px;}
.fs1_c00052{font-size:81.000000px;}
.fs0_c00052{font-size:99.000000px;}
.fs2_c00052{font-size:108.000000px;}
.y0_c00052{bottom:0.000000px;}
.y26_c00052{bottom:3.105000px;}
.y25_c00052{bottom:7.228371px;}
.y24_c00052{bottom:63.765000px;}
.y23_c00052{bottom:88.065000px;}
.y22_c00052{bottom:112.515000px;}
.y21_c00052{bottom:135.465000px;}
.y20_c00052{bottom:160.665000px;}
.y1f_c00052{bottom:184.965000px;}
.y1e_c00052{bottom:209.265000px;}
.y1d_c00052{bottom:232.965000px;}
.y1c_c00052{bottom:257.565000px;}
.y1b_c00052{bottom:281.565000px;}
.y1a_c00052{bottom:305.565000px;}
.y19_c00052{bottom:329.115000px;}
.y18_c00052{bottom:352.815000px;}
.y17_c00052{bottom:376.965000px;}
.y16_c00052{bottom:400.365000px;}
.y15_c00052{bottom:423.915000px;}
.y14_c00052{bottom:447.915000px;}
.y13_c00052{bottom:472.215000px;}
.y12_c00052{bottom:495.765000px;}
.y11_c00052{bottom:519.465000px;}
.y10_c00052{bottom:543.465000px;}
.yf_c00052{bottom:567.765000px;}
.ye_c00052{bottom:591.315000px;}
.yd_c00052{bottom:616.665000px;}
.yc_c00052{bottom:639.015000px;}
.yb_c00052{bottom:662.865000px;}
.ya_c00052{bottom:686.865000px;}
.y9_c00052{bottom:710.865000px;}
.y8_c00052{bottom:734.715000px;}
.y7_c00052{bottom:759.165000px;}
.y6_c00052{bottom:783.315000px;}
.y5_c00052{bottom:807.315000px;}
.y4_c00052{bottom:831.315000px;}
.y3_c00052{bottom:855.615000px;}
.y2_c00052{bottom:879.915000px;}
.y1_c00052{bottom:914.265000px;}
.h6_c00052{height:13.200074px;}
.h7_c00052{height:43.804688px;}
.h3_c00052{height:79.497070px;}
.h5_c00052{height:84.269531px;}
.h4_c00052{height:108.843750px;}
.h2_c00052{height:115.870605px;}
.h0_c00052{height:989.025000px;}
.h1_c00052{height:989.250000px;}
.w2_c00052{width:104.875500px;}
.w1_c00052{width:678.750000px;}
.w0_c00052{width:679.050000px;}
.x0_c00052{left:0.000000px;}
.xb_c00052{left:37.800000px;}
.x2_c00052{left:41.850000px;}
.x5_c00052{left:43.200000px;}
.x6_c00052{left:45.000000px;}
.x7_c00052{left:46.950000px;}
.x8_c00052{left:48.000000px;}
.x9_c00052{left:49.050000px;}
.xa_c00052{left:50.400000px;}
.xd_c00052{left:51.750000px;}
.xc_c00052{left:52.950000px;}
.xe_c00052{left:55.350000px;}
.xf_c00052{left:57.000000px;}
.x1_c00052{left:119.100000px;}
.x11_c00052{left:291.339249px;}
.x10_c00052{left:367.950000px;}
.x3_c00052{left:516.750000px;}
.x4_c00052{left:613.500000px;}
@media print{
.v0_c00052{vertical-align:0.000000pt;}
.ls1_c00052{letter-spacing:0.000000pt;}
.ls0_c00052{letter-spacing:11.968000pt;}
.ws0_c00052{word-spacing:-18.000000pt;}
.ws1_c00052{word-spacing:-15.424000pt;}
.ws2_c00052{word-spacing:0.000000pt;}
._1b_c00052{margin-left:-24.792000pt;}
._12_c00052{margin-left:-11.000000pt;}
._3_c00052{margin-left:-9.768000pt;}
._14_c00052{margin-left:-8.496000pt;}
._1_c00052{margin-left:-7.128000pt;}
._15_c00052{margin-left:-6.208000pt;}
._c_c00052{margin-left:-5.232000pt;}
._d_c00052{margin-left:-4.264000pt;}
._6_c00052{margin-left:-3.080000pt;}
._0_c00052{margin-left:-1.760000pt;}
._2_c00052{width:1.232000pt;}
._5_c00052{width:2.464000pt;}
._a_c00052{width:3.672000pt;}
._9_c00052{width:5.432000pt;}
._b_c00052{width:6.696000pt;}
._18_c00052{width:7.592000pt;}
._4_c00052{width:8.536000pt;}
._f_c00052{width:10.288000pt;}
._11_c00052{width:12.008000pt;}
._e_c00052{width:13.592000pt;}
._10_c00052{width:14.920000pt;}
._17_c00052{width:16.568000pt;}
._8_c00052{width:20.240000pt;}
._13_c00052{width:28.296000pt;}
._19_c00052{width:31.384000pt;}
._16_c00052{width:103.352000pt;}
._7_c00052{width:173.360000pt;}
._1a_c00052{width:219.416000pt;}
._1c_c00052{width:274.528000pt;}
.fs4_c00052{font-size:42.666667pt;}
.fs3_c00052{font-size:64.000000pt;}
.fs1_c00052{font-size:72.000000pt;}
.fs0_c00052{font-size:88.000000pt;}
.fs2_c00052{font-size:96.000000pt;}
.y0_c00052{bottom:0.000000pt;}
.y26_c00052{bottom:2.760000pt;}
.y25_c00052{bottom:6.425219pt;}
.y24_c00052{bottom:56.680000pt;}
.y23_c00052{bottom:78.280000pt;}
.y22_c00052{bottom:100.013333pt;}
.y21_c00052{bottom:120.413333pt;}
.y20_c00052{bottom:142.813333pt;}
.y1f_c00052{bottom:164.413333pt;}
.y1e_c00052{bottom:186.013333pt;}
.y1d_c00052{bottom:207.080000pt;}
.y1c_c00052{bottom:228.946667pt;}
.y1b_c00052{bottom:250.280000pt;}
.y1a_c00052{bottom:271.613333pt;}
.y19_c00052{bottom:292.546667pt;}
.y18_c00052{bottom:313.613333pt;}
.y17_c00052{bottom:335.080000pt;}
.y16_c00052{bottom:355.880000pt;}
.y15_c00052{bottom:376.813333pt;}
.y14_c00052{bottom:398.146667pt;}
.y13_c00052{bottom:419.746667pt;}
.y12_c00052{bottom:440.680000pt;}
.y11_c00052{bottom:461.746667pt;}
.y10_c00052{bottom:483.080000pt;}
.yf_c00052{bottom:504.680000pt;}
.ye_c00052{bottom:525.613333pt;}
.yd_c00052{bottom:548.146667pt;}
.yc_c00052{bottom:568.013333pt;}
.yb_c00052{bottom:589.213333pt;}
.ya_c00052{bottom:610.546667pt;}
.y9_c00052{bottom:631.880000pt;}
.y8_c00052{bottom:653.080000pt;}
.y7_c00052{bottom:674.813333pt;}
.y6_c00052{bottom:696.280000pt;}
.y5_c00052{bottom:717.613333pt;}
.y4_c00052{bottom:738.946667pt;}
.y3_c00052{bottom:760.546667pt;}
.y2_c00052{bottom:782.146667pt;}
.y1_c00052{bottom:812.680000pt;}
.h6_c00052{height:11.733399pt;}
.h7_c00052{height:38.937500pt;}
.h3_c00052{height:70.664062pt;}
.h5_c00052{height:74.906250pt;}
.h4_c00052{height:96.750000pt;}
.h2_c00052{height:102.996094pt;}
.h0_c00052{height:879.133333pt;}
.h1_c00052{height:879.333333pt;}
.w2_c00052{width:93.222667pt;}
.w1_c00052{width:603.333333pt;}
.w0_c00052{width:603.600000pt;}
.x0_c00052{left:0.000000pt;}
.xb_c00052{left:33.600000pt;}
.x2_c00052{left:37.200000pt;}
.x5_c00052{left:38.400000pt;}
.x6_c00052{left:40.000000pt;}
.x7_c00052{left:41.733333pt;}
.x8_c00052{left:42.666667pt;}
.x9_c00052{left:43.600000pt;}
.xa_c00052{left:44.800000pt;}
.xd_c00052{left:46.000000pt;}
.xc_c00052{left:47.066667pt;}
.xe_c00052{left:49.200000pt;}
.xf_c00052{left:50.666667pt;}
.x1_c00052{left:105.866667pt;}
.x11_c00052{left:258.968221pt;}
.x10_c00052{left:327.066667pt;}
.x3_c00052{left:459.333333pt;}
.x4_c00052{left:545.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_52cd4db29c1f7d1ec1dcba15.woff2')format("woff");}.ff1_c00053{font-family:ff1_c00053;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00053;src:url('chunks/assets/font_2e19daab43458839c5df32b0.woff2')format("woff");}.ff2_c00053{font-family:ff2_c00053;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00053;src:url('chunks/assets/font_77409a46f722dde1fb53985e.woff2')format("woff");}.ff3_c00053{font-family:ff3_c00053;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00053;src:url('chunks/assets/font_b28bb760ad671e14631c7841.woff2')format("woff");}.ff4_c00053{font-family:ff4_c00053;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00053;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c00053{font-family:ff5_c00053;line-height:1.219238;font-style: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);}
.v0_c00053{vertical-align:0.000000px;}
.v1_c00053{vertical-align:11.400000px;}
.ls5_c00053{letter-spacing:0.000000px;}
.ls6_c00053{letter-spacing:6.000000px;}
.ls0_c00053{letter-spacing:8.550000px;}
.ls4_c00053{letter-spacing:11.436000px;}
.ls2_c00053{letter-spacing:21.108000px;}
.ls3_c00053{letter-spacing:23.460000px;}
.ls1_c00053{letter-spacing:26.700000px;}
.sc__c00053{text-shadow:none;}
.sc0_c00053{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00053{-webkit-text-stroke:0px transparent;}
.sc0_c00053{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00053{word-spacing:-19.014000px;}
.ws3_c00053{word-spacing:-14.250000px;}
.ws4_c00053{word-spacing:-2.385000px;}
.ws5_c00053{word-spacing:-2.280000px;}
.ws2_c00053{word-spacing:-1.767000px;}
.ws0_c00053{word-spacing:-0.513000px;}
.ws6_c00053{word-spacing:0.000000px;}
._21_c00053{margin-left:-17.235000px;}
._20_c00053{margin-left:-11.514000px;}
._25_c00053{margin-left:-5.871000px;}
._1e_c00053{margin-left:-3.477000px;}
._13_c00053{margin-left:-2.280000px;}
._15_c00053{margin-left:-1.197000px;}
._19_c00053{width:1.197000px;}
._c_c00053{width:2.337000px;}
._9_c00053{width:4.047000px;}
._2_c00053{width:5.073000px;}
._0_c00053{width:6.669000px;}
._a_c00053{width:7.695000px;}
._5_c00053{width:8.835000px;}
._6_c00053{width:10.089000px;}
._4_c00053{width:11.286000px;}
._8_c00053{width:12.939000px;}
._11_c00053{width:15.276000px;}
._1_c00053{width:16.302000px;}
._e_c00053{width:18.297000px;}
._d_c00053{width:19.950000px;}
._1b_c00053{width:21.546000px;}
._14_c00053{width:22.686000px;}
._7_c00053{width:23.883000px;}
._f_c00053{width:25.080000px;}
._16_c00053{width:26.220000px;}
._b_c00053{width:27.987000px;}
._10_c00053{width:29.013000px;}
._1c_c00053{width:39.843000px;}
._1d_c00053{width:43.776000px;}
._22_c00053{width:48.021000px;}
._23_c00053{width:61.821000px;}
._12_c00053{width:63.834000px;}
._3_c00053{width:67.515000px;}
._17_c00053{width:71.535000px;}
._1a_c00053{width:103.887000px;}
._26_c00053{width:122.013000px;}
._1f_c00053{width:161.166000px;}
._18_c00053{width:208.878000px;}
._24_c00053{width:253.518000px;}
._27_c00053{width:292.731000px;}
._28_c00053{width:608.679000px;}
.fc2_c00053{color:transparent;}
.fc1_c00053{color:rgb(128,128,128);}
.fc0_c00053{color:rgb(0,0,0);}
.fs4_c00053{font-size:48.000000px;}
.fs1_c00053{font-size:54.000000px;}
.fs0_c00053{font-size:57.000000px;}
.fs3_c00053{font-size:60.000000px;}
.fs2_c00053{font-size:78.000000px;}
.y0_c00053{bottom:0.000000px;}
.y25_c00053{bottom:3.105000px;}
.y24_c00053{bottom:7.228357px;}
.y23_c00053{bottom:72.930000px;}
.y22_c00053{bottom:96.180000px;}
.y21_c00053{bottom:121.530000px;}
.y20_c00053{bottom:145.830000px;}
.y1f_c00053{bottom:168.330000px;}
.y1e_c00053{bottom:194.430000px;}
.y1d_c00053{bottom:219.480000px;}
.y1c_c00053{bottom:243.330000px;}
.y1b_c00053{bottom:267.330000px;}
.y1a_c00053{bottom:292.380000px;}
.y19_c00053{bottom:316.230000px;}
.y18_c00053{bottom:339.930000px;}
.y17_c00053{bottom:363.930000px;}
.y16_c00053{bottom:388.230000px;}
.y15_c00053{bottom:413.130000px;}
.y14_c00053{bottom:436.680000px;}
.y13_c00053{bottom:460.080000px;}
.y12_c00053{bottom:484.380000px;}
.y11_c00053{bottom:508.980000px;}
.y10_c00053{bottom:532.980000px;}
.yf_c00053{bottom:556.530000px;}
.ye_c00053{bottom:580.530000px;}
.yd_c00053{bottom:605.880000px;}
.yc_c00053{bottom:628.530000px;}
.yb_c00053{bottom:652.830000px;}
.ya_c00053{bottom:676.380000px;}
.y9_c00053{bottom:700.080000px;}
.y8_c00053{bottom:723.330000px;}
.y7_c00053{bottom:748.680000px;}
.y6_c00053{bottom:772.830000px;}
.y5_c00053{bottom:796.830000px;}
.y4_c00053{bottom:821.130000px;}
.y3_c00053{bottom:844.530000px;}
.y2_c00053{bottom:868.680000px;}
.y1_c00053{bottom:891.630000px;}
.h5_c00053{height:13.200074px;}
.h6_c00053{height:43.804688px;}
.h1_c00053{height:57.445312px;}
.h2_c00053{height:68.370117px;}
.h4_c00053{height:68.845312px;}
.h3_c00053{height:98.756836px;}
.h0_c00053{height:995.250000px;}
.w2_c00053{width:104.875500px;}
.w0_c00053{width:667.425000px;}
.w1_c00053{width:667.500000px;}
.x0_c00053{left:0.000000px;}
.x1_c00053{left:58.050000px;}
.x8_c00053{left:61.650000px;}
.x3_c00053{left:63.000000px;}
.x7_c00053{left:83.700000px;}
.x6_c00053{left:156.600000px;}
.x2_c00053{left:158.550000px;}
.x4_c00053{left:159.750000px;}
.x5_c00053{left:160.950000px;}
.x9_c00053{left:169.800000px;}
.xa_c00053{left:274.950000px;}
.xb_c00053{left:285.526749px;}
@media print{
.v0_c00053{vertical-align:0.000000pt;}
.v1_c00053{vertical-align:10.133333pt;}
.ls5_c00053{letter-spacing:0.000000pt;}
.ls6_c00053{letter-spacing:5.333333pt;}
.ls0_c00053{letter-spacing:7.600000pt;}
.ls4_c00053{letter-spacing:10.165333pt;}
.ls2_c00053{letter-spacing:18.762667pt;}
.ls3_c00053{letter-spacing:20.853333pt;}
.ls1_c00053{letter-spacing:23.733333pt;}
.ws1_c00053{word-spacing:-16.901333pt;}
.ws3_c00053{word-spacing:-12.666667pt;}
.ws4_c00053{word-spacing:-2.120000pt;}
.ws5_c00053{word-spacing:-2.026667pt;}
.ws2_c00053{word-spacing:-1.570667pt;}
.ws0_c00053{word-spacing:-0.456000pt;}
.ws6_c00053{word-spacing:0.000000pt;}
._21_c00053{margin-left:-15.320000pt;}
._20_c00053{margin-left:-10.234667pt;}
._25_c00053{margin-left:-5.218667pt;}
._1e_c00053{margin-left:-3.090667pt;}
._13_c00053{margin-left:-2.026667pt;}
._15_c00053{margin-left:-1.064000pt;}
._19_c00053{width:1.064000pt;}
._c_c00053{width:2.077333pt;}
._9_c00053{width:3.597333pt;}
._2_c00053{width:4.509333pt;}
._0_c00053{width:5.928000pt;}
._a_c00053{width:6.840000pt;}
._5_c00053{width:7.853333pt;}
._6_c00053{width:8.968000pt;}
._4_c00053{width:10.032000pt;}
._8_c00053{width:11.501333pt;}
._11_c00053{width:13.578667pt;}
._1_c00053{width:14.490667pt;}
._e_c00053{width:16.264000pt;}
._d_c00053{width:17.733333pt;}
._1b_c00053{width:19.152000pt;}
._14_c00053{width:20.165333pt;}
._7_c00053{width:21.229333pt;}
._f_c00053{width:22.293333pt;}
._16_c00053{width:23.306667pt;}
._b_c00053{width:24.877333pt;}
._10_c00053{width:25.789333pt;}
._1c_c00053{width:35.416000pt;}
._1d_c00053{width:38.912000pt;}
._22_c00053{width:42.685333pt;}
._23_c00053{width:54.952000pt;}
._12_c00053{width:56.741333pt;}
._3_c00053{width:60.013333pt;}
._17_c00053{width:63.586667pt;}
._1a_c00053{width:92.344000pt;}
._26_c00053{width:108.456000pt;}
._1f_c00053{width:143.258667pt;}
._18_c00053{width:185.669333pt;}
._24_c00053{width:225.349333pt;}
._27_c00053{width:260.205333pt;}
._28_c00053{width:541.048000pt;}
.fs4_c00053{font-size:42.666667pt;}
.fs1_c00053{font-size:48.000000pt;}
.fs0_c00053{font-size:50.666667pt;}
.fs3_c00053{font-size:53.333333pt;}
.fs2_c00053{font-size:69.333333pt;}
.y0_c00053{bottom:0.000000pt;}
.y25_c00053{bottom:2.760000pt;}
.y24_c00053{bottom:6.425206pt;}
.y23_c00053{bottom:64.826667pt;}
.y22_c00053{bottom:85.493333pt;}
.y21_c00053{bottom:108.026667pt;}
.y20_c00053{bottom:129.626667pt;}
.y1f_c00053{bottom:149.626667pt;}
.y1e_c00053{bottom:172.826667pt;}
.y1d_c00053{bottom:195.093333pt;}
.y1c_c00053{bottom:216.293333pt;}
.y1b_c00053{bottom:237.626667pt;}
.y1a_c00053{bottom:259.893333pt;}
.y19_c00053{bottom:281.093333pt;}
.y18_c00053{bottom:302.160000pt;}
.y17_c00053{bottom:323.493333pt;}
.y16_c00053{bottom:345.093333pt;}
.y15_c00053{bottom:367.226667pt;}
.y14_c00053{bottom:388.160000pt;}
.y13_c00053{bottom:408.960000pt;}
.y12_c00053{bottom:430.560000pt;}
.y11_c00053{bottom:452.426667pt;}
.y10_c00053{bottom:473.760000pt;}
.yf_c00053{bottom:494.693333pt;}
.ye_c00053{bottom:516.026667pt;}
.yd_c00053{bottom:538.560000pt;}
.yc_c00053{bottom:558.693333pt;}
.yb_c00053{bottom:580.293333pt;}
.ya_c00053{bottom:601.226667pt;}
.y9_c00053{bottom:622.293333pt;}
.y8_c00053{bottom:642.960000pt;}
.y7_c00053{bottom:665.493333pt;}
.y6_c00053{bottom:686.960000pt;}
.y5_c00053{bottom:708.293333pt;}
.y4_c00053{bottom:729.893333pt;}
.y3_c00053{bottom:750.693333pt;}
.y2_c00053{bottom:772.160000pt;}
.y1_c00053{bottom:792.560000pt;}
.h5_c00053{height:11.733399pt;}
.h6_c00053{height:38.937500pt;}
.h1_c00053{height:51.062500pt;}
.h2_c00053{height:60.773438pt;}
.h4_c00053{height:61.195833pt;}
.h3_c00053{height:87.783854pt;}
.h0_c00053{height:884.666667pt;}
.w2_c00053{width:93.222667pt;}
.w0_c00053{width:593.266667pt;}
.w1_c00053{width:593.333333pt;}
.x0_c00053{left:0.000000pt;}
.x1_c00053{left:51.600000pt;}
.x8_c00053{left:54.800000pt;}
.x3_c00053{left:56.000000pt;}
.x7_c00053{left:74.400000pt;}
.x6_c00053{left:139.200000pt;}
.x2_c00053{left:140.933333pt;}
.x4_c00053{left:142.000000pt;}
.x5_c00053{left:143.066667pt;}
.x9_c00053{left:150.933333pt;}
.xa_c00053{left:244.400000pt;}
.xb_c00053{left:253.801554pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_09fc0ff4a2acb6f1ad126fa2.woff2')format("woff");}.ff1_c00054{font-family:ff1_c00054;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00054;src:url('chunks/assets/font_9759271de98c4e892873224f.woff2')format("woff");}.ff2_c00054{font-family:ff2_c00054;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00054;src:url('chunks/assets/font_a14af7933afd0b70ec2b405d.woff2')format("woff");}.ff3_c00054{font-family:ff3_c00054;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00054;src:url('chunks/assets/font_492e7f44000d2e4ecec612e9.woff2')format("woff");}.ff4_c00054{font-family:ff4_c00054;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00054;src:url('chunks/assets/font_1520e4aa3b69b87d92055291.woff2')format("woff");}.ff5_c00054{font-family:ff5_c00054;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00054;src:url('chunks/assets/font_979419bbb47ea86b7b896429.woff2')format("woff");}.ff6_c00054{font-family:ff6_c00054;line-height:1.437000;font-style:normal;font-weight: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_c00054;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c00054{font-family:ff7_c00054;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00054{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m0_c00054{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m4_c00054{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m3_c00054{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m1_c00054{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.v0_c00054{vertical-align:0.000000px;}
.ls8_c00054{letter-spacing:-9.000000px;}
.ls4_c00054{letter-spacing:-6.000000px;}
.ls3_c00054{letter-spacing:0.000000px;}
.ls0_c00054{letter-spacing:0.144000px;}
.ls6_c00054{letter-spacing:3.000000px;}
.ls1_c00054{letter-spacing:3.330000px;}
.ls2_c00054{letter-spacing:5.730000px;}
.ls5_c00054{letter-spacing:6.000000px;}
.ls7_c00054{letter-spacing:12.000000px;}
.sc__c00054{text-shadow:none;}
.sc0_c00054{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00054{-webkit-text-stroke:0px transparent;}
.sc0_c00054{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00054{word-spacing:-30.798000px;}
.ws1_c00054{word-spacing:-20.250000px;}
.ws2_c00054{word-spacing:-6.069000px;}
.ws3_c00054{word-spacing:-6.055200px;}
.ws0_c00054{word-spacing:-0.504000px;}
.ws6_c00054{word-spacing:0.000000px;}
.ws5_c00054{word-spacing:8.919000px;}
._13_c00054{margin-left:-21.726000px;}
._1a_c00054{margin-left:-15.321000px;}
._19_c00054{margin-left:-12.891000px;}
._16_c00054{margin-left:-10.341000px;}
._9_c00054{margin-left:-8.397000px;}
._0_c00054{margin-left:-7.326000px;}
._1_c00054{margin-left:-6.237000px;}
._d_c00054{margin-left:-5.058000px;}
._8_c00054{margin-left:-3.645000px;}
._3_c00054{margin-left:-1.980000px;}
._2_c00054{width:1.881000px;}
._4_c00054{width:3.645000px;}
._5_c00054{width:5.346000px;}
._6_c00054{width:6.462000px;}
._e_c00054{width:7.605000px;}
._7_c00054{width:8.667000px;}
._a_c00054{width:10.206000px;}
._f_c00054{width:11.907000px;}
._b_c00054{width:13.419000px;}
._10_c00054{width:15.264000px;}
._15_c00054{width:16.698000px;}
._17_c00054{width:18.081000px;}
._1d_c00054{width:31.416000px;}
._c_c00054{width:36.306000px;}
._11_c00054{width:38.745000px;}
._12_c00054{width:122.076000px;}
._18_c00054{width:181.926000px;}
._1e_c00054{width:299.214000px;}
._14_c00054{width:310.905000px;}
._1c_c00054{width:497.889000px;}
._1b_c00054{width:605.142000px;}
.fc2_c00054{color:transparent;}
.fc1_c00054{color:rgb(128,128,128);}
.fc0_c00054{color:rgb(0,0,0);}
.fs7_c00054{font-size:48.000000px;}
.fs5_c00054{font-size:55.200000px;}
.fs4_c00054{font-size:69.000000px;}
.fs2_c00054{font-size:72.000000px;}
.fs6_c00054{font-size:78.000000px;}
.fs1_c00054{font-size:81.000000px;}
.fs3_c00054{font-size:87.000000px;}
.fs0_c00054{font-size:99.000000px;}
.y0_c00054{bottom:0.000000px;}
.y23_c00054{bottom:3.105000px;}
.y22_c00054{bottom:7.228371px;}
.y21_c00054{bottom:80.415000px;}
.y20_c00054{bottom:101.715000px;}
.y1f_c00054{bottom:126.615000px;}
.y1e_c00054{bottom:151.215000px;}
.y1d_c00054{bottom:175.215000px;}
.y1c_c00054{bottom:200.115000px;}
.y1b_c00054{bottom:224.565000px;}
.y1a_c00054{bottom:248.715000px;}
.y19_c00054{bottom:273.465000px;}
.y18_c00054{bottom:297.465000px;}
.y17_c00054{bottom:394.665000px;}
.y16_c00054{bottom:416.565000px;}
.y15_c00054{bottom:440.865000px;}
.y14_c00054{bottom:465.465000px;}
.y13_c00054{bottom:489.015000px;}
.y12_c00054{bottom:512.715000px;}
.y11_c00054{bottom:537.015000px;}
.y10_c00054{bottom:561.015000px;}
.yf_c00054{bottom:584.265000px;}
.ye_c00054{bottom:608.265000px;}
.yd_c00054{bottom:631.815000px;}
.yc_c00054{bottom:655.815000px;}
.yb_c00054{bottom:679.365000px;}
.ya_c00054{bottom:703.065000px;}
.y9_c00054{bottom:727.665000px;}
.y8_c00054{bottom:753.765000px;}
.y7_c00054{bottom:775.215000px;}
.y6_c00054{bottom:802.965000px;}
.y5_c00054{bottom:823.815000px;}
.y4_c00054{bottom:847.815000px;}
.y3_c00054{bottom:871.815000px;}
.y2_c00054{bottom:896.415000px;}
.y1_c00054{bottom:930.165000px;}
.h8_c00054{height:13.200074px;}
.h9_c00054{height:43.804688px;}
.h3_c00054{height:79.497070px;}
.h4_c00054{height:84.269531px;}
.h6_c00054{height:87.361816px;}
.h5_c00054{height:91.176000px;}
.h7_c00054{height:98.756836px;}
.h2_c00054{height:115.870605px;}
.h0_c00054{height:989.025000px;}
.h1_c00054{height:989.250000px;}
.w2_c00054{width:104.875500px;}
.w1_c00054{width:678.750000px;}
.w0_c00054{width:679.050000px;}
.x0_c00054{left:0.000000px;}
.x4_c00054{left:17.100000px;}
.xe_c00054{left:22.200000px;}
.xd_c00054{left:27.750000px;}
.x7_c00054{left:29.400000px;}
.x6_c00054{left:31.350000px;}
.x5_c00054{left:33.000000px;}
.x2_c00054{left:34.050000px;}
.x3_c00054{left:35.400000px;}
.x8_c00054{left:57.450000px;}
.x9_c00054{left:66.150000px;}
.xc_c00054{left:72.000000px;}
.x1_c00054{left:96.150000px;}
.xa_c00054{left:103.950000px;}
.xb_c00054{left:229.650000px;}
.xf_c00054{left:291.339249px;}
@media print{
.v0_c00054{vertical-align:0.000000pt;}
.ls8_c00054{letter-spacing:-8.000000pt;}
.ls4_c00054{letter-spacing:-5.333333pt;}
.ls3_c00054{letter-spacing:0.000000pt;}
.ls0_c00054{letter-spacing:0.128000pt;}
.ls6_c00054{letter-spacing:2.666667pt;}
.ls1_c00054{letter-spacing:2.960000pt;}
.ls2_c00054{letter-spacing:5.093333pt;}
.ls5_c00054{letter-spacing:5.333333pt;}
.ls7_c00054{letter-spacing:10.666667pt;}
.ws4_c00054{word-spacing:-27.376000pt;}
.ws1_c00054{word-spacing:-18.000000pt;}
.ws2_c00054{word-spacing:-5.394667pt;}
.ws3_c00054{word-spacing:-5.382400pt;}
.ws0_c00054{word-spacing:-0.448000pt;}
.ws6_c00054{word-spacing:0.000000pt;}
.ws5_c00054{word-spacing:7.928000pt;}
._13_c00054{margin-left:-19.312000pt;}
._1a_c00054{margin-left:-13.618667pt;}
._19_c00054{margin-left:-11.458667pt;}
._16_c00054{margin-left:-9.192000pt;}
._9_c00054{margin-left:-7.464000pt;}
._0_c00054{margin-left:-6.512000pt;}
._1_c00054{margin-left:-5.544000pt;}
._d_c00054{margin-left:-4.496000pt;}
._8_c00054{margin-left:-3.240000pt;}
._3_c00054{margin-left:-1.760000pt;}
._2_c00054{width:1.672000pt;}
._4_c00054{width:3.240000pt;}
._5_c00054{width:4.752000pt;}
._6_c00054{width:5.744000pt;}
._e_c00054{width:6.760000pt;}
._7_c00054{width:7.704000pt;}
._a_c00054{width:9.072000pt;}
._f_c00054{width:10.584000pt;}
._b_c00054{width:11.928000pt;}
._10_c00054{width:13.568000pt;}
._15_c00054{width:14.842667pt;}
._17_c00054{width:16.072000pt;}
._1d_c00054{width:27.925333pt;}
._c_c00054{width:32.272000pt;}
._11_c00054{width:34.440000pt;}
._12_c00054{width:108.512000pt;}
._18_c00054{width:161.712000pt;}
._1e_c00054{width:265.968000pt;}
._14_c00054{width:276.360000pt;}
._1c_c00054{width:442.568000pt;}
._1b_c00054{width:537.904000pt;}
.fs7_c00054{font-size:42.666667pt;}
.fs5_c00054{font-size:49.066667pt;}
.fs4_c00054{font-size:61.333333pt;}
.fs2_c00054{font-size:64.000000pt;}
.fs6_c00054{font-size:69.333333pt;}
.fs1_c00054{font-size:72.000000pt;}
.fs3_c00054{font-size:77.333333pt;}
.fs0_c00054{font-size:88.000000pt;}
.y0_c00054{bottom:0.000000pt;}
.y23_c00054{bottom:2.760000pt;}
.y22_c00054{bottom:6.425219pt;}
.y21_c00054{bottom:71.480000pt;}
.y20_c00054{bottom:90.413333pt;}
.y1f_c00054{bottom:112.546667pt;}
.y1e_c00054{bottom:134.413333pt;}
.y1d_c00054{bottom:155.746667pt;}
.y1c_c00054{bottom:177.880000pt;}
.y1b_c00054{bottom:199.613333pt;}
.y1a_c00054{bottom:221.080000pt;}
.y19_c00054{bottom:243.080000pt;}
.y18_c00054{bottom:264.413333pt;}
.y17_c00054{bottom:350.813333pt;}
.y16_c00054{bottom:370.280000pt;}
.y15_c00054{bottom:391.880000pt;}
.y14_c00054{bottom:413.746667pt;}
.y13_c00054{bottom:434.680000pt;}
.y12_c00054{bottom:455.746667pt;}
.y11_c00054{bottom:477.346667pt;}
.y10_c00054{bottom:498.680000pt;}
.yf_c00054{bottom:519.346667pt;}
.ye_c00054{bottom:540.680000pt;}
.yd_c00054{bottom:561.613333pt;}
.yc_c00054{bottom:582.946667pt;}
.yb_c00054{bottom:603.880000pt;}
.ya_c00054{bottom:624.946667pt;}
.y9_c00054{bottom:646.813333pt;}
.y8_c00054{bottom:670.013333pt;}
.y7_c00054{bottom:689.080000pt;}
.y6_c00054{bottom:713.746667pt;}
.y5_c00054{bottom:732.280000pt;}
.y4_c00054{bottom:753.613333pt;}
.y3_c00054{bottom:774.946667pt;}
.y2_c00054{bottom:796.813333pt;}
.y1_c00054{bottom:826.813333pt;}
.h8_c00054{height:11.733399pt;}
.h9_c00054{height:38.937500pt;}
.h3_c00054{height:70.664062pt;}
.h4_c00054{height:74.906250pt;}
.h6_c00054{height:77.654948pt;}
.h5_c00054{height:81.045333pt;}
.h7_c00054{height:87.783854pt;}
.h2_c00054{height:102.996094pt;}
.h0_c00054{height:879.133333pt;}
.h1_c00054{height:879.333333pt;}
.w2_c00054{width:93.222667pt;}
.w1_c00054{width:603.333333pt;}
.w0_c00054{width:603.600000pt;}
.x0_c00054{left:0.000000pt;}
.x4_c00054{left:15.200000pt;}
.xe_c00054{left:19.733333pt;}
.xd_c00054{left:24.666667pt;}
.x7_c00054{left:26.133333pt;}
.x6_c00054{left:27.866667pt;}
.x5_c00054{left:29.333333pt;}
.x2_c00054{left:30.266667pt;}
.x3_c00054{left:31.466667pt;}
.x8_c00054{left:51.066667pt;}
.x9_c00054{left:58.800000pt;}
.xc_c00054{left:64.000000pt;}
.x1_c00054{left:85.466667pt;}
.xa_c00054{left:92.400000pt;}
.xb_c00054{left:204.133333pt;}
.xf_c00054{left:258.968221pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4e4274f7702a1bd28c2bee5e.woff2')format("woff");}.ff1_c00055{font-family:ff1_c00055;line-height:1.437000;font-style:normal;font-weight:normal;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_a6878e7d0e07b89431182ae5.woff2')format("woff");}.ff2_c00055{font-family:ff2_c00055;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00055;src:url('chunks/assets/font_94b07c03ea295105e86c39e6.woff2')format("woff");}.ff3_c00055{font-family:ff3_c00055;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00055;src:url('chunks/assets/font_af383abe094e5d93bd015539.woff2')format("woff");}.ff4_c00055{font-family:ff4_c00055;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00055;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c00055{font-family:ff5_c00055;line-height:1.219238;font-style: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;}
.ls5_c00055{letter-spacing:-9.000000px;}
.ls3_c00055{letter-spacing:0.000000px;}
.ls1_c00055{letter-spacing:6.816000px;}
.ls4_c00055{letter-spacing:12.000000px;}
.ls2_c00055{letter-spacing:21.000000px;}
.ls0_c00055{letter-spacing:24.300000px;}
.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:-30.798000px;}
.ws4_c00055{word-spacing:-20.250000px;}
.ws3_c00055{word-spacing:-17.352000px;}
.ws2_c00055{word-spacing:-8.352000px;}
.ws0_c00055{word-spacing:-0.105000px;}
.ws5_c00055{word-spacing:0.000000px;}
._0_c00055{margin-left:-41.412000px;}
._9_c00055{margin-left:-38.808000px;}
._a_c00055{margin-left:-32.448000px;}
._28_c00055{margin-left:-28.320000px;}
._6_c00055{margin-left:-22.968000px;}
._8_c00055{margin-left:-21.780000px;}
._26_c00055{margin-left:-19.080000px;}
._22_c00055{margin-left:-16.452000px;}
._25_c00055{margin-left:-14.436000px;}
._23_c00055{margin-left:-12.996000px;}
._5_c00055{margin-left:-11.385000px;}
._1_c00055{margin-left:-9.900000px;}
._4_c00055{margin-left:-7.920000px;}
._1a_c00055{margin-left:-6.915000px;}
._f_c00055{margin-left:-5.544000px;}
._7_c00055{margin-left:-4.158000px;}
._c_c00055{margin-left:-2.673000px;}
._b_c00055{margin-left:-1.188000px;}
._13_c00055{width:1.029000px;}
._e_c00055{width:2.277000px;}
._d_c00055{width:3.663000px;}
._12_c00055{width:4.761000px;}
._10_c00055{width:5.772000px;}
._11_c00055{width:6.942000px;}
._15_c00055{width:7.956000px;}
._1d_c00055{width:9.033000px;}
._14_c00055{width:10.506000px;}
._17_c00055{width:11.898000px;}
._18_c00055{width:13.632000px;}
._1c_c00055{width:14.661000px;}
._19_c00055{width:15.738000px;}
._16_c00055{width:18.111000px;}
._2d_c00055{width:28.599000px;}
._1b_c00055{width:30.906000px;}
._1f_c00055{width:44.037000px;}
._20_c00055{width:53.712000px;}
._2a_c00055{width:63.702000px;}
._2c_c00055{width:68.292000px;}
._29_c00055{width:75.168000px;}
._21_c00055{width:76.752000px;}
._3_c00055{width:86.076000px;}
._2b_c00055{width:146.709000px;}
._1e_c00055{width:166.317000px;}
._2_c00055{width:201.036000px;}
._24_c00055{width:262.242000px;}
._27_c00055{width:321.984000px;}
._2e_c00055{width:358.227000px;}
.fc2_c00055{color:transparent;}
.fc1_c00055{color:rgb(128,128,128);}
.fc0_c00055{color:rgb(0,0,0);}
.fs6_c00055{font-size:48.000000px;}
.fs5_c00055{font-size:72.000000px;}
.fs3_c00055{font-size:78.000000px;}
.fs4_c00055{font-size:81.000000px;}
.fs2_c00055{font-size:99.000000px;}
.fs0_c00055{font-size:105.000000px;}
.fs1_c00055{font-size:132.000000px;}
.y0_c00055{bottom:0.000000px;}
.y26_c00055{bottom:3.105000px;}
.y25_c00055{bottom:7.228357px;}
.y24_c00055{bottom:81.630000px;}
.y23_c00055{bottom:106.080000px;}
.y22_c00055{bottom:132.030000px;}
.y21_c00055{bottom:156.630000px;}
.y20_c00055{bottom:181.530000px;}
.y1f_c00055{bottom:204.180000px;}
.y1e_c00055{bottom:230.280000px;}
.y1d_c00055{bottom:254.880000px;}
.y1c_c00055{bottom:278.430000px;}
.y1b_c00055{bottom:303.480000px;}
.y1a_c00055{bottom:329.130000px;}
.y19_c00055{bottom:352.080000px;}
.y18_c00055{bottom:376.380000px;}
.y17_c00055{bottom:400.680000px;}
.y16_c00055{bottom:424.530000px;}
.y15_c00055{bottom:448.830000px;}
.y14_c00055{bottom:473.130000px;}
.y13_c00055{bottom:496.530000px;}
.y12_c00055{bottom:520.530000px;}
.y11_c00055{bottom:544.830000px;}
.y10_c00055{bottom:568.980000px;}
.yf_c00055{bottom:593.430000px;}
.ye_c00055{bottom:618.030000px;}
.yd_c00055{bottom:641.580000px;}
.yc_c00055{bottom:666.180000px;}
.yb_c00055{bottom:690.180000px;}
.ya_c00055{bottom:713.880000px;}
.y9_c00055{bottom:738.480000px;}
.y8_c00055{bottom:762.180000px;}
.y7_c00055{bottom:786.780000px;}
.y6_c00055{bottom:810.630000px;}
.y5_c00055{bottom:835.080000px;}
.y4_c00055{bottom:858.930000px;}
.y3_c00055{bottom:883.230000px;}
.y2_c00055{bottom:907.530000px;}
.y1_c00055{bottom:942.630000px;}
.h6_c00055{height:13.200074px;}
.h7_c00055{height:43.804688px;}
.h3_c00055{height:79.497070px;}
.h4_c00055{height:84.269531px;}
.h5_c00055{height:91.160156px;}
.h2_c00055{height:98.756836px;}
.h1_c00055{height:167.126953px;}
.h0_c00055{height:995.250000px;}
.w2_c00055{width:104.875500px;}
.w0_c00055{width:667.425000px;}
.w1_c00055{width:667.500000px;}
.x0_c00055{left:0.000000px;}
.x9_c00055{left:63.750000px;}
.xe_c00055{left:67.950000px;}
.x17_c00055{left:69.600000px;}
.x10_c00055{left:71.550000px;}
.x14_c00055{left:75.900000px;}
.x13_c00055{left:122.250000px;}
.x1_c00055{left:139.050000px;}
.x11_c00055{left:142.200000px;}
.x2_c00055{left:143.400000px;}
.x3_c00055{left:145.500000px;}
.x4_c00055{left:148.050000px;}
.x5_c00055{left:149.100000px;}
.x6_c00055{left:150.900000px;}
.x7_c00055{left:152.550000px;}
.x8_c00055{left:153.900000px;}
.xa_c00055{left:155.850000px;}
.xb_c00055{left:158.250000px;}
.xc_c00055{left:159.600000px;}
.xd_c00055{left:160.650000px;}
.xf_c00055{left:162.000000px;}
.x12_c00055{left:166.050000px;}
.x15_c00055{left:168.750000px;}
.x16_c00055{left:169.800000px;}
.x19_c00055{left:285.526749px;}
.x18_c00055{left:602.100000px;}
@media print{
.v0_c00055{vertical-align:0.000000pt;}
.ls5_c00055{letter-spacing:-8.000000pt;}
.ls3_c00055{letter-spacing:0.000000pt;}
.ls1_c00055{letter-spacing:6.058667pt;}
.ls4_c00055{letter-spacing:10.666667pt;}
.ls2_c00055{letter-spacing:18.666667pt;}
.ls0_c00055{letter-spacing:21.600000pt;}
.ws1_c00055{word-spacing:-27.376000pt;}
.ws4_c00055{word-spacing:-18.000000pt;}
.ws3_c00055{word-spacing:-15.424000pt;}
.ws2_c00055{word-spacing:-7.424000pt;}
.ws0_c00055{word-spacing:-0.093333pt;}
.ws5_c00055{word-spacing:0.000000pt;}
._0_c00055{margin-left:-36.810667pt;}
._9_c00055{margin-left:-34.496000pt;}
._a_c00055{margin-left:-28.842667pt;}
._28_c00055{margin-left:-25.173333pt;}
._6_c00055{margin-left:-20.416000pt;}
._8_c00055{margin-left:-19.360000pt;}
._26_c00055{margin-left:-16.960000pt;}
._22_c00055{margin-left:-14.624000pt;}
._25_c00055{margin-left:-12.832000pt;}
._23_c00055{margin-left:-11.552000pt;}
._5_c00055{margin-left:-10.120000pt;}
._1_c00055{margin-left:-8.800000pt;}
._4_c00055{margin-left:-7.040000pt;}
._1a_c00055{margin-left:-6.146667pt;}
._f_c00055{margin-left:-4.928000pt;}
._7_c00055{margin-left:-3.696000pt;}
._c_c00055{margin-left:-2.376000pt;}
._b_c00055{margin-left:-1.056000pt;}
._13_c00055{width:0.914667pt;}
._e_c00055{width:2.024000pt;}
._d_c00055{width:3.256000pt;}
._12_c00055{width:4.232000pt;}
._10_c00055{width:5.130667pt;}
._11_c00055{width:6.170667pt;}
._15_c00055{width:7.072000pt;}
._1d_c00055{width:8.029333pt;}
._14_c00055{width:9.338667pt;}
._17_c00055{width:10.576000pt;}
._18_c00055{width:12.117333pt;}
._1c_c00055{width:13.032000pt;}
._19_c00055{width:13.989333pt;}
._16_c00055{width:16.098667pt;}
._2d_c00055{width:25.421333pt;}
._1b_c00055{width:27.472000pt;}
._1f_c00055{width:39.144000pt;}
._20_c00055{width:47.744000pt;}
._2a_c00055{width:56.624000pt;}
._2c_c00055{width:60.704000pt;}
._29_c00055{width:66.816000pt;}
._21_c00055{width:68.224000pt;}
._3_c00055{width:76.512000pt;}
._2b_c00055{width:130.408000pt;}
._1e_c00055{width:147.837333pt;}
._2_c00055{width:178.698667pt;}
._24_c00055{width:233.104000pt;}
._27_c00055{width:286.208000pt;}
._2e_c00055{width:318.424000pt;}
.fs6_c00055{font-size:42.666667pt;}
.fs5_c00055{font-size:64.000000pt;}
.fs3_c00055{font-size:69.333333pt;}
.fs4_c00055{font-size:72.000000pt;}
.fs2_c00055{font-size:88.000000pt;}
.fs0_c00055{font-size:93.333333pt;}
.fs1_c00055{font-size:117.333333pt;}
.y0_c00055{bottom:0.000000pt;}
.y26_c00055{bottom:2.760000pt;}
.y25_c00055{bottom:6.425206pt;}
.y24_c00055{bottom:72.560000pt;}
.y23_c00055{bottom:94.293333pt;}
.y22_c00055{bottom:117.360000pt;}
.y21_c00055{bottom:139.226667pt;}
.y20_c00055{bottom:161.360000pt;}
.y1f_c00055{bottom:181.493333pt;}
.y1e_c00055{bottom:204.693333pt;}
.y1d_c00055{bottom:226.560000pt;}
.y1c_c00055{bottom:247.493333pt;}
.y1b_c00055{bottom:269.760000pt;}
.y1a_c00055{bottom:292.560000pt;}
.y19_c00055{bottom:312.960000pt;}
.y18_c00055{bottom:334.560000pt;}
.y17_c00055{bottom:356.160000pt;}
.y16_c00055{bottom:377.360000pt;}
.y15_c00055{bottom:398.960000pt;}
.y14_c00055{bottom:420.560000pt;}
.y13_c00055{bottom:441.360000pt;}
.y12_c00055{bottom:462.693333pt;}
.y11_c00055{bottom:484.293333pt;}
.y10_c00055{bottom:505.760000pt;}
.yf_c00055{bottom:527.493333pt;}
.ye_c00055{bottom:549.360000pt;}
.yd_c00055{bottom:570.293333pt;}
.yc_c00055{bottom:592.160000pt;}
.yb_c00055{bottom:613.493333pt;}
.ya_c00055{bottom:634.560000pt;}
.y9_c00055{bottom:656.426667pt;}
.y8_c00055{bottom:677.493333pt;}
.y7_c00055{bottom:699.360000pt;}
.y6_c00055{bottom:720.560000pt;}
.y5_c00055{bottom:742.293333pt;}
.y4_c00055{bottom:763.493333pt;}
.y3_c00055{bottom:785.093333pt;}
.y2_c00055{bottom:806.693333pt;}
.y1_c00055{bottom:837.893333pt;}
.h6_c00055{height:11.733399pt;}
.h7_c00055{height:38.937500pt;}
.h3_c00055{height:70.664062pt;}
.h4_c00055{height:74.906250pt;}
.h5_c00055{height:81.031250pt;}
.h2_c00055{height:87.783854pt;}
.h1_c00055{height:148.557292pt;}
.h0_c00055{height:884.666667pt;}
.w2_c00055{width:93.222667pt;}
.w0_c00055{width:593.266667pt;}
.w1_c00055{width:593.333333pt;}
.x0_c00055{left:0.000000pt;}
.x9_c00055{left:56.666667pt;}
.xe_c00055{left:60.400000pt;}
.x17_c00055{left:61.866667pt;}
.x10_c00055{left:63.600000pt;}
.x14_c00055{left:67.466667pt;}
.x13_c00055{left:108.666667pt;}
.x1_c00055{left:123.600000pt;}
.x11_c00055{left:126.400000pt;}
.x2_c00055{left:127.466667pt;}
.x3_c00055{left:129.333333pt;}
.x4_c00055{left:131.600000pt;}
.x5_c00055{left:132.533333pt;}
.x6_c00055{left:134.133333pt;}
.x7_c00055{left:135.600000pt;}
.x8_c00055{left:136.800000pt;}
.xa_c00055{left:138.533333pt;}
.xb_c00055{left:140.666667pt;}
.xc_c00055{left:141.866667pt;}
.xd_c00055{left:142.800000pt;}
.xf_c00055{left:144.000000pt;}
.x12_c00055{left:147.600000pt;}
.x15_c00055{left:150.000000pt;}
.x16_c00055{left:150.933333pt;}
.x19_c00055{left:253.801554pt;}
.x18_c00055{left:535.200000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_831ac38be07030eb6956ed35.woff2')format("woff");}.ff1_c00056{font-family:ff1_c00056;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00056;src:url('chunks/assets/font_53e04f76d31d052951f17fa4.woff2')format("woff");}.ff2_c00056{font-family:ff2_c00056;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00056;src:url('chunks/assets/font_4dc1224f785896b0e5519ad2.woff2')format("woff");}.ff3_c00056{font-family:ff3_c00056;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00056;src:url('chunks/assets/font_1fc4daf11b18e45ec004354a.woff2')format("woff");}.ff4_c00056{font-family:ff4_c00056;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00056;src:url('chunks/assets/font_8f4ee0801126a3a35f10262f.woff2')format("woff");}.ff5_c00056{font-family:ff5_c00056;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00056;src:url('chunks/assets/font_0f59208534573b4572d62c01.woff2')format("woff");}.ff6_c00056{font-family:ff6_c00056;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00056;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c00056{font-family:ff7_c00056;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00056{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00056{vertical-align:0.000000px;}
.v1_c00056{vertical-align:162.600000px;}
.ls4_c00056{letter-spacing:0.000000px;}
.ls2_c00056{letter-spacing:0.048000px;}
.ls3_c00056{letter-spacing:1.200000px;}
.ls0_c00056{letter-spacing:2.880000px;}
.ls6_c00056{letter-spacing:12.000000px;}
.ls1_c00056{letter-spacing:13.008000px;}
.ls7_c00056{letter-spacing:18.000000px;}
.ls5_c00056{letter-spacing:21.000000px;}
.sc__c00056{text-shadow:none;}
.sc0_c00056{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00056{-webkit-text-stroke:0px transparent;}
.sc0_c00056{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00056{word-spacing:-38.250000px;}
.ws1_c00056{word-spacing:-30.360000px;}
.ws2_c00056{word-spacing:-29.352000px;}
.ws5_c00056{word-spacing:-23.832000px;}
.ws4_c00056{word-spacing:-19.065600px;}
.ws0_c00056{word-spacing:-17.352000px;}
.ws3_c00056{word-spacing:-0.261000px;}
.ws8_c00056{word-spacing:0.000000px;}
.ws7_c00056{word-spacing:2.679000px;}
._7_c00056{margin-left:-36.300000px;}
._17_c00056{margin-left:-23.505000px;}
._13_c00056{margin-left:-21.708000px;}
._16_c00056{margin-left:-20.313000px;}
._18_c00056{margin-left:-17.100000px;}
._8_c00056{margin-left:-13.596000px;}
._1_c00056{margin-left:-11.286000px;}
._f_c00056{margin-left:-9.477000px;}
._d_c00056{margin-left:-7.662000px;}
._9_c00056{margin-left:-6.138000px;}
._12_c00056{margin-left:-4.779000px;}
._a_c00056{margin-left:-3.195000px;}
._3_c00056{margin-left:-1.881000px;}
._4_c00056{width:1.980000px;}
._0_c00056{width:3.663000px;}
._b_c00056{width:5.490000px;}
._e_c00056{width:6.543000px;}
._10_c00056{width:7.623000px;}
._c_c00056{width:8.703000px;}
._2_c00056{width:10.197000px;}
._14_c00056{width:11.259000px;}
._15_c00056{width:12.855000px;}
._6_c00056{width:13.938000px;}
._11_c00056{width:15.330000px;}
._20_c00056{width:16.500000px;}
._22_c00056{width:17.673000px;}
._1a_c00056{width:18.909000px;}
._23_c00056{width:20.124000px;}
._1c_c00056{width:21.996000px;}
._1e_c00056{width:23.562000px;}
._21_c00056{width:24.903000px;}
._1d_c00056{width:27.099000px;}
._24_c00056{width:28.626000px;}
._1f_c00056{width:34.515000px;}
._5_c00056{width:193.248000px;}
._1b_c00056{width:202.920000px;}
._19_c00056{width:343.554000px;}
.fc2_c00056{color:transparent;}
.fc1_c00056{color:rgb(128,128,128);}
.fc0_c00056{color:rgb(0,0,0);}
.fsa_c00056{font-size:48.000000px;}
.fs9_c00056{font-size:57.000000px;}
.fs7_c00056{font-size:57.600000px;}
.fs5_c00056{font-size:66.000000px;}
.fs3_c00056{font-size:72.000000px;}
.fs8_c00056{font-size:78.000000px;}
.fs2_c00056{font-size:81.000000px;}
.fs4_c00056{font-size:96.000000px;}
.fs0_c00056{font-size:99.000000px;}
.fs1_c00056{font-size:132.000000px;}
.fs6_c00056{font-size:261.000000px;}
.y0_c00056{bottom:0.000000px;}
.y26_c00056{bottom:3.105000px;}
.y25_c00056{bottom:7.228355px;}
.y23_c00056{bottom:71.835000px;}
.y22_c00056{bottom:96.735000px;}
.y21_c00056{bottom:122.385000px;}
.y20_c00056{bottom:146.835000px;}
.y1f_c00056{bottom:171.435000px;}
.y1e_c00056{bottom:196.035000px;}
.y1d_c00056{bottom:220.635000px;}
.y1c_c00056{bottom:244.935000px;}
.y1b_c00056{bottom:269.235000px;}
.y1a_c00056{bottom:293.535000px;}
.y19_c00056{bottom:317.535000px;}
.y24_c00056{bottom:318.585000px;}
.y18_c00056{bottom:341.535000px;}
.y17_c00056{bottom:365.085000px;}
.y16_c00056{bottom:389.385000px;}
.y15_c00056{bottom:413.085000px;}
.y13_c00056{bottom:420.585000px;}
.y14_c00056{bottom:437.385000px;}
.y12_c00056{bottom:484.935000px;}
.y11_c00056{bottom:532.185000px;}
.y10_c00056{bottom:557.085000px;}
.yf_c00056{bottom:581.385000px;}
.ye_c00056{bottom:605.085000px;}
.yd_c00056{bottom:628.635000px;}
.yc_c00056{bottom:653.385000px;}
.yb_c00056{bottom:676.335000px;}
.ya_c00056{bottom:700.335000px;}
.y9_c00056{bottom:724.935000px;}
.y8_c00056{bottom:748.935000px;}
.y7_c00056{bottom:772.485000px;}
.y6_c00056{bottom:796.485000px;}
.y5_c00056{bottom:820.485000px;}
.y4_c00056{bottom:845.385000px;}
.y3_c00056{bottom:868.635000px;}
.y2_c00056{bottom:892.635000px;}
.y1_c00056{bottom:925.785000px;}
.ha_c00056{height:13.200074px;}
.hb_c00056{height:43.804688px;}
.h9_c00056{height:66.713379px;}
.h3_c00056{height:79.497070px;}
.h4_c00056{height:84.269531px;}
.h5_c00056{height:91.160156px;}
.h6_c00056{height:94.218750px;}
.h8_c00056{height:98.756836px;}
.h2_c00056{height:167.126953px;}
.h7_c00056{height:271.705078px;}
.h0_c00056{height:980.625000px;}
.h1_c00056{height:981.000000px;}
.w2_c00056{width:104.875500px;}
.w1_c00056{width:672.750000px;}
.w0_c00056{width:672.825000px;}
.x0_c00056{left:0.000000px;}
.x2_c00056{left:47.550000px;}
.x3_c00056{left:48.900000px;}
.x4_c00056{left:50.400000px;}
.x5_c00056{left:52.050000px;}
.x6_c00056{left:53.550000px;}
.x7_c00056{left:55.050000px;}
.x8_c00056{left:56.250000px;}
.x9_c00056{left:57.300000px;}
.xb_c00056{left:58.950000px;}
.xd_c00056{left:60.300000px;}
.xe_c00056{left:61.350000px;}
.xf_c00056{left:62.400000px;}
.x10_c00056{left:63.450000px;}
.x11_c00056{left:64.800000px;}
.x12_c00056{left:66.150000px;}
.xc_c00056{left:87.300000px;}
.x1_c00056{left:124.500000px;}
.xa_c00056{left:137.250000px;}
.x15_c00056{left:288.226730px;}
.x13_c00056{left:378.300000px;}
.x14_c00056{left:562.200000px;}
@media print{
.v0_c00056{vertical-align:0.000000pt;}
.v1_c00056{vertical-align:144.533333pt;}
.ls4_c00056{letter-spacing:0.000000pt;}
.ls2_c00056{letter-spacing:0.042667pt;}
.ls3_c00056{letter-spacing:1.066667pt;}
.ls0_c00056{letter-spacing:2.560000pt;}
.ls6_c00056{letter-spacing:10.666667pt;}
.ls1_c00056{letter-spacing:11.562667pt;}
.ls7_c00056{letter-spacing:16.000000pt;}
.ls5_c00056{letter-spacing:18.666667pt;}
.ws6_c00056{word-spacing:-34.000000pt;}
.ws1_c00056{word-spacing:-26.986667pt;}
.ws2_c00056{word-spacing:-26.090667pt;}
.ws5_c00056{word-spacing:-21.184000pt;}
.ws4_c00056{word-spacing:-16.947200pt;}
.ws0_c00056{word-spacing:-15.424000pt;}
.ws3_c00056{word-spacing:-0.232000pt;}
.ws8_c00056{word-spacing:0.000000pt;}
.ws7_c00056{word-spacing:2.381333pt;}
._7_c00056{margin-left:-32.266667pt;}
._17_c00056{margin-left:-20.893333pt;}
._13_c00056{margin-left:-19.296000pt;}
._16_c00056{margin-left:-18.056000pt;}
._18_c00056{margin-left:-15.200000pt;}
._8_c00056{margin-left:-12.085333pt;}
._1_c00056{margin-left:-10.032000pt;}
._f_c00056{margin-left:-8.424000pt;}
._d_c00056{margin-left:-6.810667pt;}
._9_c00056{margin-left:-5.456000pt;}
._12_c00056{margin-left:-4.248000pt;}
._a_c00056{margin-left:-2.840000pt;}
._3_c00056{margin-left:-1.672000pt;}
._4_c00056{width:1.760000pt;}
._0_c00056{width:3.256000pt;}
._b_c00056{width:4.880000pt;}
._e_c00056{width:5.816000pt;}
._10_c00056{width:6.776000pt;}
._c_c00056{width:7.736000pt;}
._2_c00056{width:9.064000pt;}
._14_c00056{width:10.008000pt;}
._15_c00056{width:11.426667pt;}
._6_c00056{width:12.389333pt;}
._11_c00056{width:13.626667pt;}
._20_c00056{width:14.666667pt;}
._22_c00056{width:15.709333pt;}
._1a_c00056{width:16.808000pt;}
._23_c00056{width:17.888000pt;}
._1c_c00056{width:19.552000pt;}
._1e_c00056{width:20.944000pt;}
._21_c00056{width:22.136000pt;}
._1d_c00056{width:24.088000pt;}
._24_c00056{width:25.445333pt;}
._1f_c00056{width:30.680000pt;}
._5_c00056{width:171.776000pt;}
._1b_c00056{width:180.373333pt;}
._19_c00056{width:305.381333pt;}
.fsa_c00056{font-size:42.666667pt;}
.fs9_c00056{font-size:50.666667pt;}
.fs7_c00056{font-size:51.200000pt;}
.fs5_c00056{font-size:58.666667pt;}
.fs3_c00056{font-size:64.000000pt;}
.fs8_c00056{font-size:69.333333pt;}
.fs2_c00056{font-size:72.000000pt;}
.fs4_c00056{font-size:85.333333pt;}
.fs0_c00056{font-size:88.000000pt;}
.fs1_c00056{font-size:117.333333pt;}
.fs6_c00056{font-size:232.000000pt;}
.y0_c00056{bottom:0.000000pt;}
.y26_c00056{bottom:2.760000pt;}
.y25_c00056{bottom:6.425204pt;}
.y23_c00056{bottom:63.853333pt;}
.y22_c00056{bottom:85.986667pt;}
.y21_c00056{bottom:108.786667pt;}
.y20_c00056{bottom:130.520000pt;}
.y1f_c00056{bottom:152.386667pt;}
.y1e_c00056{bottom:174.253333pt;}
.y1d_c00056{bottom:196.120000pt;}
.y1c_c00056{bottom:217.720000pt;}
.y1b_c00056{bottom:239.320000pt;}
.y1a_c00056{bottom:260.920000pt;}
.y19_c00056{bottom:282.253333pt;}
.y24_c00056{bottom:283.186667pt;}
.y18_c00056{bottom:303.586667pt;}
.y17_c00056{bottom:324.520000pt;}
.y16_c00056{bottom:346.120000pt;}
.y15_c00056{bottom:367.186667pt;}
.y13_c00056{bottom:373.853333pt;}
.y14_c00056{bottom:388.786667pt;}
.y12_c00056{bottom:431.053333pt;}
.y11_c00056{bottom:473.053333pt;}
.y10_c00056{bottom:495.186667pt;}
.yf_c00056{bottom:516.786667pt;}
.ye_c00056{bottom:537.853333pt;}
.yd_c00056{bottom:558.786667pt;}
.yc_c00056{bottom:580.786667pt;}
.yb_c00056{bottom:601.186667pt;}
.ya_c00056{bottom:622.520000pt;}
.y9_c00056{bottom:644.386667pt;}
.y8_c00056{bottom:665.720000pt;}
.y7_c00056{bottom:686.653333pt;}
.y6_c00056{bottom:707.986667pt;}
.y5_c00056{bottom:729.320000pt;}
.y4_c00056{bottom:751.453333pt;}
.y3_c00056{bottom:772.120000pt;}
.y2_c00056{bottom:793.453333pt;}
.y1_c00056{bottom:822.920000pt;}
.ha_c00056{height:11.733399pt;}
.hb_c00056{height:38.937500pt;}
.h9_c00056{height:59.300781pt;}
.h3_c00056{height:70.664062pt;}
.h4_c00056{height:74.906250pt;}
.h5_c00056{height:81.031250pt;}
.h6_c00056{height:83.750000pt;}
.h8_c00056{height:87.783854pt;}
.h2_c00056{height:148.557292pt;}
.h7_c00056{height:241.515625pt;}
.h0_c00056{height:871.666667pt;}
.h1_c00056{height:872.000000pt;}
.w2_c00056{width:93.222667pt;}
.w1_c00056{width:598.000000pt;}
.w0_c00056{width:598.066667pt;}
.x0_c00056{left:0.000000pt;}
.x2_c00056{left:42.266667pt;}
.x3_c00056{left:43.466667pt;}
.x4_c00056{left:44.800000pt;}
.x5_c00056{left:46.266667pt;}
.x6_c00056{left:47.600000pt;}
.x7_c00056{left:48.933333pt;}
.x8_c00056{left:50.000000pt;}
.x9_c00056{left:50.933333pt;}
.xb_c00056{left:52.400000pt;}
.xd_c00056{left:53.600000pt;}
.xe_c00056{left:54.533333pt;}
.xf_c00056{left:55.466667pt;}
.x10_c00056{left:56.400000pt;}
.x11_c00056{left:57.600000pt;}
.x12_c00056{left:58.800000pt;}
.xc_c00056{left:77.600000pt;}
.x1_c00056{left:110.666667pt;}
.xa_c00056{left:122.000000pt;}
.x15_c00056{left:256.201538pt;}
.x13_c00056{left:336.266667pt;}
.x14_c00056{left:499.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_1252332a4bba0b203207756c.woff2')format("woff");}.ff1_c00057{font-family:ff1_c00057;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00057;src:url('chunks/assets/font_49b1ab92c2a21858872b83ac.woff2')format("woff");}.ff2_c00057{font-family:ff2_c00057;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00057;src:url('chunks/assets/font_befd1e12dd1ade7e771c3f61.woff2')format("woff");}.ff3_c00057{font-family:ff3_c00057;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00057;src:url('chunks/assets/font_194d1a8ce6ebd2ce912bd854.woff2')format("woff");}.ff4_c00057{font-family:ff4_c00057;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00057;src:url('chunks/assets/font_82ccfae80cac55cbac5ed196.woff2')format("woff");}.ff5_c00057{font-family:ff5_c00057;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00057;src:url('chunks/assets/font_8563d5cb5a4d76ad3d255a71.woff2')format("woff");}.ff6_c00057{font-family:ff6_c00057;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00057;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c00057{font-family:ff7_c00057;line-height:1.219238;font-style: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;}
.ls5_c00057{letter-spacing:-9.000000px;}
.ls4_c00057{letter-spacing:-6.000000px;}
.ls6_c00057{letter-spacing:-3.000000px;}
.ls3_c00057{letter-spacing:0.000000px;}
.ls0_c00057{letter-spacing:9.348000px;}
.ls1_c00057{letter-spacing:14.250000px;}
.ls2_c00057{letter-spacing:21.000000px;}
.sc__c00057{text-shadow:none;}
.sc0_c00057{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00057{-webkit-text-stroke:0px transparent;}
.sc0_c00057{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00057{word-spacing:-61.686000px;}
.ws0_c00057{word-spacing:-17.352000px;}
.ws3_c00057{word-spacing:-11.460000px;}
.ws4_c00057{word-spacing:0.000000px;}
.ws2_c00057{word-spacing:7.848000px;}
._1_c00057{margin-left:-40.920000px;}
._0_c00057{margin-left:-36.828000px;}
._22_c00057{margin-left:-29.646000px;}
._4_c00057{margin-left:-21.252000px;}
._26_c00057{margin-left:-16.818000px;}
._20_c00057{margin-left:-15.723000px;}
._2_c00057{margin-left:-14.256000px;}
._1f_c00057{margin-left:-12.642000px;}
._1e_c00057{margin-left:-10.974000px;}
._6_c00057{margin-left:-9.603000px;}
._27_c00057{margin-left:-8.568000px;}
._5_c00057{margin-left:-7.389000px;}
._7_c00057{margin-left:-5.940000px;}
._8_c00057{margin-left:-4.686000px;}
._a_c00057{margin-left:-3.267000px;}
._f_c00057{margin-left:-2.178000px;}
._10_c00057{margin-left:-1.089000px;}
._1c_c00057{width:1.068000px;}
._e_c00057{width:2.079000px;}
._1b_c00057{width:3.303000px;}
._d_c00057{width:4.320000px;}
._12_c00057{width:6.309000px;}
._14_c00057{width:7.560000px;}
._13_c00057{width:8.631000px;}
._9_c00057{width:10.197000px;}
._11_c00057{width:11.466000px;}
._15_c00057{width:13.065000px;}
._c_c00057{width:14.256000px;}
._1a_c00057{width:15.663000px;}
._16_c00057{width:16.875000px;}
._17_c00057{width:18.183000px;}
._25_c00057{width:20.229000px;}
._b_c00057{width:21.384000px;}
._21_c00057{width:23.721000px;}
._19_c00057{width:26.028000px;}
._18_c00057{width:33.291000px;}
._28_c00057{width:36.708000px;}
._24_c00057{width:41.109000px;}
._1d_c00057{width:69.453000px;}
._23_c00057{width:146.838000px;}
._29_c00057{width:161.745000px;}
._3_c00057{width:202.092000px;}
._2a_c00057{width:401.235000px;}
._2c_c00057{width:609.822000px;}
._2b_c00057{width:1009.092000px;}
.fc2_c00057{color:transparent;}
.fc1_c00057{color:rgb(128,128,128);}
.fc0_c00057{color:rgb(0,0,0);}
.fs3_c00057{font-size:27.000000px;}
.fsb_c00057{font-size:48.000000px;}
.fs6_c00057{font-size:57.000000px;}
.fsa_c00057{font-size:60.000000px;}
.fs2_c00057{font-size:63.000000px;}
.fs4_c00057{font-size:69.000000px;}
.fs8_c00057{font-size:72.000000px;}
.fs7_c00057{font-size:78.000000px;}
.fs5_c00057{font-size:81.000000px;}
.fs9_c00057{font-size:87.000000px;}
.fs1_c00057{font-size:99.000000px;}
.fs0_c00057{font-size:132.000000px;}
.y0_c00057{bottom:0.000000px;}
.y26_c00057{bottom:3.105000px;}
.y25_c00057{bottom:7.228357px;}
.y24_c00057{bottom:77.730000px;}
.y23_c00057{bottom:100.530000px;}
.y22_c00057{bottom:124.980000px;}
.y21_c00057{bottom:149.280000px;}
.y20_c00057{bottom:174.180000px;}
.y1f_c00057{bottom:199.080000px;}
.y1e_c00057{bottom:223.380000px;}
.y1d_c00057{bottom:247.830000px;}
.y1c_c00057{bottom:272.730000px;}
.y1b_c00057{bottom:296.280000px;}
.y1a_c00057{bottom:320.280000px;}
.y19_c00057{bottom:344.580000px;}
.y18_c00057{bottom:369.180000px;}
.y17_c00057{bottom:394.230000px;}
.y16_c00057{bottom:416.880000px;}
.y15_c00057{bottom:440.430000px;}
.y14_c00057{bottom:465.180000px;}
.y13_c00057{bottom:489.330000px;}
.y12_c00057{bottom:512.730000px;}
.y11_c00057{bottom:537.330000px;}
.y10_c00057{bottom:560.880000px;}
.yf_c00057{bottom:584.880000px;}
.ye_c00057{bottom:609.180000px;}
.yd_c00057{bottom:633.930000px;}
.yc_c00057{bottom:657.780000px;}
.yb_c00057{bottom:682.380000px;}
.ya_c00057{bottom:706.080000px;}
.y9_c00057{bottom:730.980000px;}
.y8_c00057{bottom:754.680000px;}
.y7_c00057{bottom:779.730000px;}
.y6_c00057{bottom:803.580000px;}
.y5_c00057{bottom:825.630000px;}
.y4_c00057{bottom:851.880000px;}
.y3_c00057{bottom:874.080000px;}
.y2_c00057{bottom:898.830000px;}
.y1_c00057{bottom:932.580000px;}
.h9_c00057{height:13.200074px;}
.ha_c00057{height:43.804688px;}
.h2_c00057{height:63.492188px;}
.h3_c00057{height:67.719727px;}
.h4_c00057{height:79.497070px;}
.h8_c00057{height:84.269531px;}
.h7_c00057{height:91.160156px;}
.h6_c00057{height:91.176000px;}
.h5_c00057{height:98.756836px;}
.h1_c00057{height:167.126953px;}
.h0_c00057{height:995.250000px;}
.w2_c00057{width:104.875500px;}
.w0_c00057{width:667.425000px;}
.w1_c00057{width:667.500000px;}
.x0_c00057{left:0.000000px;}
.xb_c00057{left:34.650000px;}
.xa_c00057{left:36.150000px;}
.x9_c00057{left:50.250000px;}
.xc_c00057{left:126.150000px;}
.x8_c00057{left:132.300000px;}
.x7_c00057{left:135.600000px;}
.x6_c00057{left:136.950000px;}
.x5_c00057{left:138.300000px;}
.x3_c00057{left:139.350000px;}
.x2_c00057{left:140.700000px;}
.x1_c00057{left:143.100000px;}
.x4_c00057{left:165.000000px;}
.xd_c00057{left:285.526749px;}
@media print{
.v0_c00057{vertical-align:0.000000pt;}
.ls5_c00057{letter-spacing:-8.000000pt;}
.ls4_c00057{letter-spacing:-5.333333pt;}
.ls6_c00057{letter-spacing:-2.666667pt;}
.ls3_c00057{letter-spacing:0.000000pt;}
.ls0_c00057{letter-spacing:8.309333pt;}
.ls1_c00057{letter-spacing:12.666667pt;}
.ls2_c00057{letter-spacing:18.666667pt;}
.ws1_c00057{word-spacing:-54.832000pt;}
.ws0_c00057{word-spacing:-15.424000pt;}
.ws3_c00057{word-spacing:-10.186667pt;}
.ws4_c00057{word-spacing:0.000000pt;}
.ws2_c00057{word-spacing:6.976000pt;}
._1_c00057{margin-left:-36.373333pt;}
._0_c00057{margin-left:-32.736000pt;}
._22_c00057{margin-left:-26.352000pt;}
._4_c00057{margin-left:-18.890667pt;}
._26_c00057{margin-left:-14.949333pt;}
._20_c00057{margin-left:-13.976000pt;}
._2_c00057{margin-left:-12.672000pt;}
._1f_c00057{margin-left:-11.237333pt;}
._1e_c00057{margin-left:-9.754667pt;}
._6_c00057{margin-left:-8.536000pt;}
._27_c00057{margin-left:-7.616000pt;}
._5_c00057{margin-left:-6.568000pt;}
._7_c00057{margin-left:-5.280000pt;}
._8_c00057{margin-left:-4.165333pt;}
._a_c00057{margin-left:-2.904000pt;}
._f_c00057{margin-left:-1.936000pt;}
._10_c00057{margin-left:-0.968000pt;}
._1c_c00057{width:0.949333pt;}
._e_c00057{width:1.848000pt;}
._1b_c00057{width:2.936000pt;}
._d_c00057{width:3.840000pt;}
._12_c00057{width:5.608000pt;}
._14_c00057{width:6.720000pt;}
._13_c00057{width:7.672000pt;}
._9_c00057{width:9.064000pt;}
._11_c00057{width:10.192000pt;}
._15_c00057{width:11.613333pt;}
._c_c00057{width:12.672000pt;}
._1a_c00057{width:13.922667pt;}
._16_c00057{width:15.000000pt;}
._17_c00057{width:16.162667pt;}
._25_c00057{width:17.981333pt;}
._b_c00057{width:19.008000pt;}
._21_c00057{width:21.085333pt;}
._19_c00057{width:23.136000pt;}
._18_c00057{width:29.592000pt;}
._28_c00057{width:32.629333pt;}
._24_c00057{width:36.541333pt;}
._1d_c00057{width:61.736000pt;}
._23_c00057{width:130.522667pt;}
._29_c00057{width:143.773333pt;}
._3_c00057{width:179.637333pt;}
._2a_c00057{width:356.653333pt;}
._2c_c00057{width:542.064000pt;}
._2b_c00057{width:896.970667pt;}
.fs3_c00057{font-size:24.000000pt;}
.fsb_c00057{font-size:42.666667pt;}
.fs6_c00057{font-size:50.666667pt;}
.fsa_c00057{font-size:53.333333pt;}
.fs2_c00057{font-size:56.000000pt;}
.fs4_c00057{font-size:61.333333pt;}
.fs8_c00057{font-size:64.000000pt;}
.fs7_c00057{font-size:69.333333pt;}
.fs5_c00057{font-size:72.000000pt;}
.fs9_c00057{font-size:77.333333pt;}
.fs1_c00057{font-size:88.000000pt;}
.fs0_c00057{font-size:117.333333pt;}
.y0_c00057{bottom:0.000000pt;}
.y26_c00057{bottom:2.760000pt;}
.y25_c00057{bottom:6.425206pt;}
.y24_c00057{bottom:69.093333pt;}
.y23_c00057{bottom:89.360000pt;}
.y22_c00057{bottom:111.093333pt;}
.y21_c00057{bottom:132.693333pt;}
.y20_c00057{bottom:154.826667pt;}
.y1f_c00057{bottom:176.960000pt;}
.y1e_c00057{bottom:198.560000pt;}
.y1d_c00057{bottom:220.293333pt;}
.y1c_c00057{bottom:242.426667pt;}
.y1b_c00057{bottom:263.360000pt;}
.y1a_c00057{bottom:284.693333pt;}
.y19_c00057{bottom:306.293333pt;}
.y18_c00057{bottom:328.160000pt;}
.y17_c00057{bottom:350.426667pt;}
.y16_c00057{bottom:370.560000pt;}
.y15_c00057{bottom:391.493333pt;}
.y14_c00057{bottom:413.493333pt;}
.y13_c00057{bottom:434.960000pt;}
.y12_c00057{bottom:455.760000pt;}
.y11_c00057{bottom:477.626667pt;}
.y10_c00057{bottom:498.560000pt;}
.yf_c00057{bottom:519.893333pt;}
.ye_c00057{bottom:541.493333pt;}
.yd_c00057{bottom:563.493333pt;}
.yc_c00057{bottom:584.693333pt;}
.yb_c00057{bottom:606.560000pt;}
.ya_c00057{bottom:627.626667pt;}
.y9_c00057{bottom:649.760000pt;}
.y8_c00057{bottom:670.826667pt;}
.y7_c00057{bottom:693.093333pt;}
.y6_c00057{bottom:714.293333pt;}
.y5_c00057{bottom:733.893333pt;}
.y4_c00057{bottom:757.226667pt;}
.y3_c00057{bottom:776.960000pt;}
.y2_c00057{bottom:798.960000pt;}
.y1_c00057{bottom:828.960000pt;}
.h9_c00057{height:11.733399pt;}
.ha_c00057{height:38.937500pt;}
.h2_c00057{height:56.437500pt;}
.h3_c00057{height:60.195312pt;}
.h4_c00057{height:70.664062pt;}
.h8_c00057{height:74.906250pt;}
.h7_c00057{height:81.031250pt;}
.h6_c00057{height:81.045333pt;}
.h5_c00057{height:87.783854pt;}
.h1_c00057{height:148.557292pt;}
.h0_c00057{height:884.666667pt;}
.w2_c00057{width:93.222667pt;}
.w0_c00057{width:593.266667pt;}
.w1_c00057{width:593.333333pt;}
.x0_c00057{left:0.000000pt;}
.xb_c00057{left:30.800000pt;}
.xa_c00057{left:32.133333pt;}
.x9_c00057{left:44.666667pt;}
.xc_c00057{left:112.133333pt;}
.x8_c00057{left:117.600000pt;}
.x7_c00057{left:120.533333pt;}
.x6_c00057{left:121.733333pt;}
.x5_c00057{left:122.933333pt;}
.x3_c00057{left:123.866667pt;}
.x2_c00057{left:125.066667pt;}
.x1_c00057{left:127.200000pt;}
.x4_c00057{left:146.666667pt;}
.xd_c00057{left:253.801554pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_26ed6ec6e0b69e2665ed1938.woff2')format("woff");}.ff1_c00058{font-family:ff1_c00058;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00058;src:url('chunks/assets/font_f2f541963f9ad183c0887e8d.woff2')format("woff");}.ff2_c00058{font-family:ff2_c00058;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00058;src:url('chunks/assets/font_a61fcf8dc2ccf89c6d65248b.woff2')format("woff");}.ff3_c00058{font-family:ff3_c00058;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00058;src:url('chunks/assets/font_55576c7665e61127d54b52c1.woff2')format("woff");}.ff4_c00058{font-family:ff4_c00058;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00058;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c00058{font-family:ff5_c00058;line-height:1.219238;font-style: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;}
.v1_c00058{vertical-align:86.400000px;}
.ls2_c00058{letter-spacing:-6.000000px;}
.ls0_c00058{letter-spacing:0.000000px;}
.ls1_c00058{letter-spacing:21.000000px;}
.sc__c00058{text-shadow:none;}
.sc0_c00058{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00058{-webkit-text-stroke:0px transparent;}
.sc0_c00058{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00058{word-spacing:-61.686000px;}
.ws3_c00058{word-spacing:-20.250000px;}
.ws0_c00058{word-spacing:-18.798000px;}
.ws1_c00058{word-spacing:-17.352000px;}
.ws4_c00058{word-spacing:0.000000px;}
._8_c00058{margin-left:-44.088000px;}
._1f_c00058{margin-left:-28.269000px;}
._b_c00058{margin-left:-23.166000px;}
._13_c00058{margin-left:-19.764000px;}
._14_c00058{margin-left:-16.686000px;}
._12_c00058{margin-left:-15.228000px;}
._21_c00058{margin-left:-13.449000px;}
._23_c00058{margin-left:-12.231000px;}
._26_c00058{margin-left:-10.968000px;}
._1b_c00058{margin-left:-9.876000px;}
._17_c00058{margin-left:-8.478000px;}
._10_c00058{margin-left:-6.939000px;}
._3_c00058{margin-left:-5.841000px;}
._5_c00058{margin-left:-4.257000px;}
._4_c00058{margin-left:-2.673000px;}
._6_c00058{margin-left:-1.584000px;}
._9_c00058{width:1.548000px;}
._2_c00058{width:2.574000px;}
._1_c00058{width:4.158000px;}
._0_c00058{width:5.445000px;}
._c_c00058{width:6.801000px;}
._e_c00058{width:8.181000px;}
._11_c00058{width:9.324000px;}
._15_c00058{width:11.007000px;}
._d_c00058{width:12.063000px;}
._a_c00058{width:14.031000px;}
._18_c00058{width:15.663000px;}
._f_c00058{width:17.589000px;}
._1c_c00058{width:24.246000px;}
._24_c00058{width:34.278000px;}
._1d_c00058{width:54.504000px;}
._20_c00058{width:67.068000px;}
._25_c00058{width:113.094000px;}
._1e_c00058{width:114.993000px;}
._16_c00058{width:122.124000px;}
._22_c00058{width:248.508000px;}
._19_c00058{width:253.590000px;}
._7_c00058{width:294.828000px;}
._1a_c00058{width:322.941000px;}
.fc2_c00058{color:transparent;}
.fc1_c00058{color:rgb(128,128,128);}
.fc0_c00058{color:rgb(0,0,0);}
.fs6_c00058{font-size:48.000000px;}
.fs4_c00058{font-size:72.000000px;}
.fs3_c00058{font-size:78.000000px;}
.fs2_c00058{font-size:81.000000px;}
.fs5_c00058{font-size:87.000000px;}
.fs0_c00058{font-size:99.000000px;}
.fs1_c00058{font-size:132.000000px;}
.y0_c00058{bottom:0.000000px;}
.y26_c00058{bottom:3.105000px;}
.y25_c00058{bottom:7.228371px;}
.y24_c00058{bottom:78.615000px;}
.y23_c00058{bottom:101.715000px;}
.y22_c00058{bottom:126.015000px;}
.y21_c00058{bottom:150.615000px;}
.y20_c00058{bottom:174.915000px;}
.y1f_c00058{bottom:199.515000px;}
.y1e_c00058{bottom:224.865000px;}
.y1d_c00058{bottom:247.365000px;}
.y1c_c00058{bottom:271.815000px;}
.y1b_c00058{bottom:295.965000px;}
.y1a_c00058{bottom:319.815000px;}
.y19_c00058{bottom:343.215000px;}
.y18_c00058{bottom:366.615000px;}
.y17_c00058{bottom:389.865000px;}
.y16_c00058{bottom:413.865000px;}
.y15_c00058{bottom:437.865000px;}
.y14_c00058{bottom:462.015000px;}
.y13_c00058{bottom:486.315000px;}
.y12_c00058{bottom:510.015000px;}
.y11_c00058{bottom:534.015000px;}
.y10_c00058{bottom:556.965000px;}
.yf_c00058{bottom:580.515000px;}
.ye_c00058{bottom:604.815000px;}
.yd_c00058{bottom:628.815000px;}
.yc_c00058{bottom:652.065000px;}
.yb_c00058{bottom:675.915000px;}
.ya_c00058{bottom:699.765000px;}
.y9_c00058{bottom:723.615000px;}
.y8_c00058{bottom:747.615000px;}
.y7_c00058{bottom:771.915000px;}
.y6_c00058{bottom:795.915000px;}
.y5_c00058{bottom:819.765000px;}
.y4_c00058{bottom:822.165000px;}
.y3_c00058{bottom:867.765000px;}
.y2_c00058{bottom:892.065000px;}
.y1_c00058{bottom:928.215000px;}
.h7_c00058{height:13.200074px;}
.h8_c00058{height:43.804688px;}
.h3_c00058{height:79.497070px;}
.h5_c00058{height:84.269531px;}
.h6_c00058{height:91.176000px;}
.h4_c00058{height:165.897070px;}
.h2_c00058{height:167.126953px;}
.h0_c00058{height:989.025000px;}
.h1_c00058{height:989.250000px;}
.w1_c00058{width:104.875500px;}
.w0_c00058{width:672.000000px;}
.x0_c00058{left:0.000000px;}
.x8_c00058{left:40.050000px;}
.x2_c00058{left:41.850000px;}
.x3_c00058{left:42.900000px;}
.x5_c00058{left:44.100000px;}
.x4_c00058{left:54.900000px;}
.x6_c00058{left:56.700000px;}
.x7_c00058{left:58.350000px;}
.x9_c00058{left:59.400000px;}
.x1_c00058{left:95.850000px;}
.xb_c00058{left:287.814240px;}
.xa_c00058{left:491.700000px;}
@media print{
.v0_c00058{vertical-align:0.000000pt;}
.v1_c00058{vertical-align:76.800000pt;}
.ls2_c00058{letter-spacing:-5.333333pt;}
.ls0_c00058{letter-spacing:0.000000pt;}
.ls1_c00058{letter-spacing:18.666667pt;}
.ws2_c00058{word-spacing:-54.832000pt;}
.ws3_c00058{word-spacing:-18.000000pt;}
.ws0_c00058{word-spacing:-16.709333pt;}
.ws1_c00058{word-spacing:-15.424000pt;}
.ws4_c00058{word-spacing:0.000000pt;}
._8_c00058{margin-left:-39.189333pt;}
._1f_c00058{margin-left:-25.128000pt;}
._b_c00058{margin-left:-20.592000pt;}
._13_c00058{margin-left:-17.568000pt;}
._14_c00058{margin-left:-14.832000pt;}
._12_c00058{margin-left:-13.536000pt;}
._21_c00058{margin-left:-11.954667pt;}
._23_c00058{margin-left:-10.872000pt;}
._26_c00058{margin-left:-9.749333pt;}
._1b_c00058{margin-left:-8.778667pt;}
._17_c00058{margin-left:-7.536000pt;}
._10_c00058{margin-left:-6.168000pt;}
._3_c00058{margin-left:-5.192000pt;}
._5_c00058{margin-left:-3.784000pt;}
._4_c00058{margin-left:-2.376000pt;}
._6_c00058{margin-left:-1.408000pt;}
._9_c00058{width:1.376000pt;}
._2_c00058{width:2.288000pt;}
._1_c00058{width:3.696000pt;}
._0_c00058{width:4.840000pt;}
._c_c00058{width:6.045333pt;}
._e_c00058{width:7.272000pt;}
._11_c00058{width:8.288000pt;}
._15_c00058{width:9.784000pt;}
._d_c00058{width:10.722667pt;}
._a_c00058{width:12.472000pt;}
._18_c00058{width:13.922667pt;}
._f_c00058{width:15.634667pt;}
._1c_c00058{width:21.552000pt;}
._24_c00058{width:30.469333pt;}
._1d_c00058{width:48.448000pt;}
._20_c00058{width:59.616000pt;}
._25_c00058{width:100.528000pt;}
._1e_c00058{width:102.216000pt;}
._16_c00058{width:108.554667pt;}
._22_c00058{width:220.896000pt;}
._19_c00058{width:225.413333pt;}
._7_c00058{width:262.069333pt;}
._1a_c00058{width:287.058667pt;}
.fs6_c00058{font-size:42.666667pt;}
.fs4_c00058{font-size:64.000000pt;}
.fs3_c00058{font-size:69.333333pt;}
.fs2_c00058{font-size:72.000000pt;}
.fs5_c00058{font-size:77.333333pt;}
.fs0_c00058{font-size:88.000000pt;}
.fs1_c00058{font-size:117.333333pt;}
.y0_c00058{bottom:0.000000pt;}
.y26_c00058{bottom:2.760000pt;}
.y25_c00058{bottom:6.425219pt;}
.y24_c00058{bottom:69.880000pt;}
.y23_c00058{bottom:90.413333pt;}
.y22_c00058{bottom:112.013333pt;}
.y21_c00058{bottom:133.880000pt;}
.y20_c00058{bottom:155.480000pt;}
.y1f_c00058{bottom:177.346667pt;}
.y1e_c00058{bottom:199.880000pt;}
.y1d_c00058{bottom:219.880000pt;}
.y1c_c00058{bottom:241.613333pt;}
.y1b_c00058{bottom:263.080000pt;}
.y1a_c00058{bottom:284.280000pt;}
.y19_c00058{bottom:305.080000pt;}
.y18_c00058{bottom:325.880000pt;}
.y17_c00058{bottom:346.546667pt;}
.y16_c00058{bottom:367.880000pt;}
.y15_c00058{bottom:389.213333pt;}
.y14_c00058{bottom:410.680000pt;}
.y13_c00058{bottom:432.280000pt;}
.y12_c00058{bottom:453.346667pt;}
.y11_c00058{bottom:474.680000pt;}
.y10_c00058{bottom:495.080000pt;}
.yf_c00058{bottom:516.013333pt;}
.ye_c00058{bottom:537.613333pt;}
.yd_c00058{bottom:558.946667pt;}
.yc_c00058{bottom:579.613333pt;}
.yb_c00058{bottom:600.813333pt;}
.ya_c00058{bottom:622.013333pt;}
.y9_c00058{bottom:643.213333pt;}
.y8_c00058{bottom:664.546667pt;}
.y7_c00058{bottom:686.146667pt;}
.y6_c00058{bottom:707.480000pt;}
.y5_c00058{bottom:728.680000pt;}
.y4_c00058{bottom:730.813333pt;}
.y3_c00058{bottom:771.346667pt;}
.y2_c00058{bottom:792.946667pt;}
.y1_c00058{bottom:825.080000pt;}
.h7_c00058{height:11.733399pt;}
.h8_c00058{height:38.937500pt;}
.h3_c00058{height:70.664062pt;}
.h5_c00058{height:74.906250pt;}
.h6_c00058{height:81.045333pt;}
.h4_c00058{height:147.464062pt;}
.h2_c00058{height:148.557292pt;}
.h0_c00058{height:879.133333pt;}
.h1_c00058{height:879.333333pt;}
.w1_c00058{width:93.222667pt;}
.w0_c00058{width:597.333333pt;}
.x0_c00058{left:0.000000pt;}
.x8_c00058{left:35.600000pt;}
.x2_c00058{left:37.200000pt;}
.x3_c00058{left:38.133333pt;}
.x5_c00058{left:39.200000pt;}
.x4_c00058{left:48.800000pt;}
.x6_c00058{left:50.400000pt;}
.x7_c00058{left:51.866667pt;}
.x9_c00058{left:52.800000pt;}
.x1_c00058{left:85.200000pt;}
.xb_c00058{left:255.834880pt;}
.xa_c00058{left:437.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a64ceaeaa3558829ef1146a5.woff2')format("woff");}.ff1_c00059{font-family:ff1_c00059;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00059;src:url('chunks/assets/font_82d9b258143ab4b2c435c1a9.woff2')format("woff");}.ff2_c00059{font-family:ff2_c00059;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00059;src:url('chunks/assets/font_35ce504d7d51f809a04a493b.woff2')format("woff");}.ff3_c00059{font-family:ff3_c00059;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00059;src:url('chunks/assets/font_b4dca5496c48747bf5d01478.woff2')format("woff");}.ff4_c00059{font-family:ff4_c00059;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00059;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c00059{font-family:ff5_c00059;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00059{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m0_c00059{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00059{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.v0_c00059{vertical-align:0.000000px;}
.ls1_c00059{letter-spacing:0.000000px;}
.ls0_c00059{letter-spacing:17.292000px;}
.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:-20.250000px;}
.ws0_c00059{word-spacing:-17.352000px;}
.ws2_c00059{word-spacing:0.000000px;}
._17_c00059{margin-left:-17.928000px;}
._18_c00059{margin-left:-13.041000px;}
._1c_c00059{margin-left:-12.033000px;}
._15_c00059{margin-left:-10.692000px;}
._10_c00059{margin-left:-8.865000px;}
._e_c00059{margin-left:-7.452000px;}
._1_c00059{margin-left:-5.742000px;}
._0_c00059{margin-left:-4.257000px;}
._2_c00059{margin-left:-3.168000px;}
._8_c00059{margin-left:-1.881000px;}
._a_c00059{width:1.026000px;}
._9_c00059{width:2.214000px;}
._4_c00059{width:3.861000px;}
._b_c00059{width:5.373000px;}
._6_c00059{width:6.633000px;}
._5_c00059{width:8.217000px;}
._c_c00059{width:9.324000px;}
._f_c00059{width:10.584000px;}
._7_c00059{width:12.276000px;}
._d_c00059{width:13.356000px;}
._12_c00059{width:15.093000px;}
._3_c00059{width:16.434000px;}
._13_c00059{width:17.478000px;}
._14_c00059{width:21.648000px;}
._1b_c00059{width:25.215000px;}
._16_c00059{width:28.161000px;}
._11_c00059{width:29.934000px;}
._1d_c00059{width:48.537000px;}
._19_c00059{width:57.429000px;}
._1a_c00059{width:262.413000px;}
.fc2_c00059{color:transparent;}
.fc1_c00059{color:rgb(128,128,128);}
.fc0_c00059{color:rgb(0,0,0);}
.fs5_c00059{font-size:48.000000px;}
.fs4_c00059{font-size:66.000000px;}
.fs3_c00059{font-size:72.000000px;}
.fs2_c00059{font-size:81.000000px;}
.fs1_c00059{font-size:99.000000px;}
.fs0_c00059{font-size:132.000000px;}
.y0_c00059{bottom:0.000000px;}
.y26_c00059{bottom:3.105000px;}
.y25_c00059{bottom:7.228363px;}
.y24_c00059{bottom:62.400000px;}
.y23_c00059{bottom:87.300000px;}
.y22_c00059{bottom:112.350000px;}
.y21_c00059{bottom:137.100000px;}
.y20_c00059{bottom:161.550000px;}
.y1f_c00059{bottom:186.000000px;}
.y1e_c00059{bottom:210.000000px;}
.y1d_c00059{bottom:234.600000px;}
.y1c_c00059{bottom:259.500000px;}
.y1b_c00059{bottom:280.800000px;}
.y1a_c00059{bottom:307.350000px;}
.y19_c00059{bottom:331.050000px;}
.y18_c00059{bottom:355.500000px;}
.y17_c00059{bottom:380.100000px;}
.y16_c00059{bottom:403.350000px;}
.y15_c00059{bottom:427.950000px;}
.y14_c00059{bottom:451.950000px;}
.y13_c00059{bottom:476.100000px;}
.y12_c00059{bottom:499.500000px;}
.y11_c00059{bottom:523.800000px;}
.y10_c00059{bottom:548.100000px;}
.yf_c00059{bottom:572.700000px;}
.ye_c00059{bottom:595.950000px;}
.yd_c00059{bottom:619.950000px;}
.yc_c00059{bottom:644.850000px;}
.yb_c00059{bottom:667.950000px;}
.ya_c00059{bottom:692.250000px;}
.y9_c00059{bottom:717.450000px;}
.y8_c00059{bottom:741.300000px;}
.y7_c00059{bottom:765.000000px;}
.y6_c00059{bottom:788.700000px;}
.y5_c00059{bottom:813.750000px;}
.y4_c00059{bottom:836.700000px;}
.y3_c00059{bottom:861.300000px;}
.y2_c00059{bottom:885.600000px;}
.y1_c00059{bottom:920.700000px;}
.h6_c00059{height:13.200074px;}
.h7_c00059{height:43.804688px;}
.h3_c00059{height:79.497070px;}
.h5_c00059{height:84.269531px;}
.h4_c00059{height:91.160156px;}
.h2_c00059{height:167.126953px;}
.h0_c00059{height:966.600000px;}
.h1_c00059{height:966.750000px;}
.w1_c00059{width:104.875500px;}
.w0_c00059{width:648.000000px;}
.x0_c00059{left:0.000000px;}
.x9_c00059{left:28.350000px;}
.x6_c00059{left:66.150000px;}
.xa_c00059{left:76.950000px;}
.x7_c00059{left:97.500000px;}
.x8_c00059{left:102.600000px;}
.x5_c00059{left:115.500000px;}
.xf_c00059{left:116.700000px;}
.xe_c00059{left:118.050000px;}
.xd_c00059{left:119.700000px;}
.xb_c00059{left:120.750000px;}
.x4_c00059{left:121.950000px;}
.x2_c00059{left:123.900000px;}
.x3_c00059{left:125.550000px;}
.xc_c00059{left:145.800000px;}
.x1_c00059{left:209.850000px;}
.x11_c00059{left:275.814240px;}
.x10_c00059{left:529.500000px;}
@media print{
.v0_c00059{vertical-align:0.000000pt;}
.ls1_c00059{letter-spacing:0.000000pt;}
.ls0_c00059{letter-spacing:15.370667pt;}
.ws1_c00059{word-spacing:-18.000000pt;}
.ws0_c00059{word-spacing:-15.424000pt;}
.ws2_c00059{word-spacing:0.000000pt;}
._17_c00059{margin-left:-15.936000pt;}
._18_c00059{margin-left:-11.592000pt;}
._1c_c00059{margin-left:-10.696000pt;}
._15_c00059{margin-left:-9.504000pt;}
._10_c00059{margin-left:-7.880000pt;}
._e_c00059{margin-left:-6.624000pt;}
._1_c00059{margin-left:-5.104000pt;}
._0_c00059{margin-left:-3.784000pt;}
._2_c00059{margin-left:-2.816000pt;}
._8_c00059{margin-left:-1.672000pt;}
._a_c00059{width:0.912000pt;}
._9_c00059{width:1.968000pt;}
._4_c00059{width:3.432000pt;}
._b_c00059{width:4.776000pt;}
._6_c00059{width:5.896000pt;}
._5_c00059{width:7.304000pt;}
._c_c00059{width:8.288000pt;}
._f_c00059{width:9.408000pt;}
._7_c00059{width:10.912000pt;}
._d_c00059{width:11.872000pt;}
._12_c00059{width:13.416000pt;}
._3_c00059{width:14.608000pt;}
._13_c00059{width:15.536000pt;}
._14_c00059{width:19.242667pt;}
._1b_c00059{width:22.413333pt;}
._16_c00059{width:25.032000pt;}
._11_c00059{width:26.608000pt;}
._1d_c00059{width:43.144000pt;}
._19_c00059{width:51.048000pt;}
._1a_c00059{width:233.256000pt;}
.fs5_c00059{font-size:42.666667pt;}
.fs4_c00059{font-size:58.666667pt;}
.fs3_c00059{font-size:64.000000pt;}
.fs2_c00059{font-size:72.000000pt;}
.fs1_c00059{font-size:88.000000pt;}
.fs0_c00059{font-size:117.333333pt;}
.y0_c00059{bottom:0.000000pt;}
.y26_c00059{bottom:2.760000pt;}
.y25_c00059{bottom:6.425212pt;}
.y24_c00059{bottom:55.466667pt;}
.y23_c00059{bottom:77.600000pt;}
.y22_c00059{bottom:99.866667pt;}
.y21_c00059{bottom:121.866667pt;}
.y20_c00059{bottom:143.600000pt;}
.y1f_c00059{bottom:165.333333pt;}
.y1e_c00059{bottom:186.666667pt;}
.y1d_c00059{bottom:208.533333pt;}
.y1c_c00059{bottom:230.666667pt;}
.y1b_c00059{bottom:249.600000pt;}
.y1a_c00059{bottom:273.200000pt;}
.y19_c00059{bottom:294.266667pt;}
.y18_c00059{bottom:316.000000pt;}
.y17_c00059{bottom:337.866667pt;}
.y16_c00059{bottom:358.533333pt;}
.y15_c00059{bottom:380.400000pt;}
.y14_c00059{bottom:401.733333pt;}
.y13_c00059{bottom:423.200000pt;}
.y12_c00059{bottom:444.000000pt;}
.y11_c00059{bottom:465.600000pt;}
.y10_c00059{bottom:487.200000pt;}
.yf_c00059{bottom:509.066667pt;}
.ye_c00059{bottom:529.733333pt;}
.yd_c00059{bottom:551.066667pt;}
.yc_c00059{bottom:573.200000pt;}
.yb_c00059{bottom:593.733333pt;}
.ya_c00059{bottom:615.333333pt;}
.y9_c00059{bottom:637.733333pt;}
.y8_c00059{bottom:658.933333pt;}
.y7_c00059{bottom:680.000000pt;}
.y6_c00059{bottom:701.066667pt;}
.y5_c00059{bottom:723.333333pt;}
.y4_c00059{bottom:743.733333pt;}
.y3_c00059{bottom:765.600000pt;}
.y2_c00059{bottom:787.200000pt;}
.y1_c00059{bottom:818.400000pt;}
.h6_c00059{height:11.733399pt;}
.h7_c00059{height:38.937500pt;}
.h3_c00059{height:70.664062pt;}
.h5_c00059{height:74.906250pt;}
.h4_c00059{height:81.031250pt;}
.h2_c00059{height:148.557292pt;}
.h0_c00059{height:859.200000pt;}
.h1_c00059{height:859.333333pt;}
.w1_c00059{width:93.222667pt;}
.w0_c00059{width:576.000000pt;}
.x0_c00059{left:0.000000pt;}
.x9_c00059{left:25.200000pt;}
.x6_c00059{left:58.800000pt;}
.xa_c00059{left:68.400000pt;}
.x7_c00059{left:86.666667pt;}
.x8_c00059{left:91.200000pt;}
.x5_c00059{left:102.666667pt;}
.xf_c00059{left:103.733333pt;}
.xe_c00059{left:104.933333pt;}
.xd_c00059{left:106.400000pt;}
.xb_c00059{left:107.333333pt;}
.x4_c00059{left:108.400000pt;}
.x2_c00059{left:110.133333pt;}
.x3_c00059{left:111.600000pt;}
.xc_c00059{left:129.600000pt;}
.x1_c00059{left:186.533333pt;}
.x11_c00059{left:245.168213pt;}
.x10_c00059{left:470.666667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_b333fa1cfac1e822a7614532.woff2')format("woff");}.ff1_c00060{font-family:ff1_c00060;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00060;src:url('chunks/assets/font_7ecb38c47204b8d32b812da6.woff2')format("woff");}.ff2_c00060{font-family:ff2_c00060;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00060;src:url('chunks/assets/font_475b35b52488e9a457a7556d.woff2')format("woff");}.ff3_c00060{font-family:ff3_c00060;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00060;src:url('chunks/assets/font_ff4298faec3a9db9148f976d.woff2')format("woff");}.ff4_c00060{font-family:ff4_c00060;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00060;src:url('chunks/assets/font_c51161bac06ffcbb7a6a8c6e.woff2')format("woff");}.ff5_c00060{font-family:ff5_c00060;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00060;src:url('chunks/assets/font_d4677627bf8e7325bfbf1155.woff2')format("woff");}.ff6_c00060{font-family:ff6_c00060;line-height:1.437000;font-style:normal;font-weight: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_c00060;src:url('chunks/assets/font_f391be605511ee0422ea7759.woff2')format("woff");}.ff7_c00060{font-family:ff7_c00060;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00060;src:url('chunks/assets/font_89c2ce3184f085f9cb41c151.woff2')format("woff");}.ff8_c00060{font-family:ff8_c00060;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00060;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff9_c00060{font-family:ff9_c00060;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00060;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ffa_c00060{font-family:ffa_c00060;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00060{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m0_c00060{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00060{vertical-align:0.000000px;}
.ls2_c00060{letter-spacing:0.000000px;}
.ls0_c00060{letter-spacing:18.000000px;}
.ls1_c00060{letter-spacing:21.000000px;}
.sc__c00060{text-shadow:none;}
.sc0_c00060{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00060{-webkit-text-stroke:0px transparent;}
.sc0_c00060{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00060{word-spacing:-27.000000px;}
.ws2_c00060{word-spacing:-17.352000px;}
.ws3_c00060{word-spacing:-15.000000px;}
.ws1_c00060{word-spacing:-2.280000px;}
.ws5_c00060{word-spacing:0.000000px;}
.ws0_c00060{word-spacing:2.508000px;}
._21_c00060{margin-left:-29.724000px;}
._1b_c00060{margin-left:-20.574000px;}
._1_c00060{margin-left:-10.197000px;}
._2_c00060{margin-left:-9.108000px;}
._3_c00060{margin-left:-7.326000px;}
._0_c00060{margin-left:-5.643000px;}
._1c_c00060{margin-left:-3.903000px;}
._5_c00060{margin-left:-2.871000px;}
._6_c00060{margin-left:-1.386000px;}
._b_c00060{width:1.368000px;}
._18_c00060{width:2.703000px;}
._19_c00060{width:3.882000px;}
._15_c00060{width:5.814000px;}
._a_c00060{width:7.122000px;}
._4_c00060{width:9.009000px;}
._9_c00060{width:10.374000px;}
._17_c00060{width:11.400000px;}
._c_c00060{width:12.426000px;}
._22_c00060{width:14.229000px;}
._f_c00060{width:15.258000px;}
._8_c00060{width:16.473000px;}
._1a_c00060{width:17.625000px;}
._10_c00060{width:18.627000px;}
._20_c00060{width:19.761000px;}
._e_c00060{width:20.880000px;}
._16_c00060{width:22.629000px;}
._d_c00060{width:24.000000px;}
._11_c00060{width:25.041000px;}
._12_c00060{width:26.619000px;}
._14_c00060{width:32.775000px;}
._13_c00060{width:34.146000px;}
._1f_c00060{width:69.945000px;}
._1d_c00060{width:246.315000px;}
._7_c00060{width:257.451000px;}
._1e_c00060{width:854.607000px;}
.fc2_c00060{color:transparent;}
.fc1_c00060{color:rgb(128,128,128);}
.fc0_c00060{color:rgb(0,0,0);}
.fs8_c00060{font-size:48.000000px;}
.fs2_c00060{font-size:57.000000px;}
.fs3_c00060{font-size:60.000000px;}
.fs5_c00060{font-size:72.000000px;}
.fs4_c00060{font-size:78.000000px;}
.fs6_c00060{font-size:81.000000px;}
.fs0_c00060{font-size:99.000000px;}
.fs1_c00060{font-size:102.000000px;}
.fs7_c00060{font-size:108.000000px;}
.y0_c00060{bottom:0.000000px;}
.y25_c00060{bottom:3.105000px;}
.y24_c00060{bottom:7.228369px;}
.y23_c00060{bottom:89.820000px;}
.y22_c00060{bottom:115.770000px;}
.y21_c00060{bottom:140.970000px;}
.y20_c00060{bottom:164.070000px;}
.y1f_c00060{bottom:190.320000px;}
.y1e_c00060{bottom:212.670000px;}
.y1d_c00060{bottom:239.970000px;}
.y1c_c00060{bottom:264.870000px;}
.y1b_c00060{bottom:289.170000px;}
.y1a_c00060{bottom:313.170000px;}
.y19_c00060{bottom:338.070000px;}
.y18_c00060{bottom:361.770000px;}
.y17_c00060{bottom:385.320000px;}
.y16_c00060{bottom:410.070000px;}
.y15_c00060{bottom:434.070000px;}
.y14_c00060{bottom:458.220000px;}
.y13_c00060{bottom:482.670000px;}
.y12_c00060{bottom:506.520000px;}
.y11_c00060{bottom:531.120000px;}
.y10_c00060{bottom:555.120000px;}
.yf_c00060{bottom:579.120000px;}
.ye_c00060{bottom:603.120000px;}
.yd_c00060{bottom:626.970000px;}
.yc_c00060{bottom:650.670000px;}
.yb_c00060{bottom:674.670000px;}
.ya_c00060{bottom:698.970000px;}
.y9_c00060{bottom:723.270000px;}
.y8_c00060{bottom:747.570000px;}
.y7_c00060{bottom:772.470000px;}
.y6_c00060{bottom:796.170000px;}
.y5_c00060{bottom:820.470000px;}
.y4_c00060{bottom:844.770000px;}
.y3_c00060{bottom:869.670000px;}
.y2_c00060{bottom:893.370000px;}
.y1_c00060{bottom:928.770000px;}
.h8_c00060{height:13.200073px;}
.h9_c00060{height:43.804688px;}
.h3_c00060{height:57.445312px;}
.h4_c00060{height:83.226000px;}
.h5_c00060{height:84.269531px;}
.h6_c00060{height:91.160156px;}
.h7_c00060{height:108.843750px;}
.h2_c00060{height:115.870605px;}
.h0_c00060{height:970.350000px;}
.h1_c00060{height:970.500000px;}
.w2_c00060{width:104.875500px;}
.w1_c00060{width:659.250000px;}
.w0_c00060{width:659.325000px;}
.x0_c00060{left:0.000000px;}
.x2_c00060{left:40.800000px;}
.x3_c00060{left:43.950000px;}
.x4_c00060{left:45.300000px;}
.x5_c00060{left:46.950000px;}
.x6_c00060{left:48.300000px;}
.x7_c00060{left:50.400000px;}
.x9_c00060{left:52.350000px;}
.xa_c00060{left:54.750000px;}
.xb_c00060{left:56.700000px;}
.xc_c00060{left:58.050000px;}
.x8_c00060{left:75.000000px;}
.x1_c00060{left:101.700000px;}
.xd_c00060{left:263.550000px;}
.xe_c00060{left:281.476730px;}
@media print{
.v0_c00060{vertical-align:0.000000pt;}
.ls2_c00060{letter-spacing:0.000000pt;}
.ls0_c00060{letter-spacing:16.000000pt;}
.ls1_c00060{letter-spacing:18.666667pt;}
.ws4_c00060{word-spacing:-24.000000pt;}
.ws2_c00060{word-spacing:-15.424000pt;}
.ws3_c00060{word-spacing:-13.333333pt;}
.ws1_c00060{word-spacing:-2.026667pt;}
.ws5_c00060{word-spacing:0.000000pt;}
.ws0_c00060{word-spacing:2.229333pt;}
._21_c00060{margin-left:-26.421333pt;}
._1b_c00060{margin-left:-18.288000pt;}
._1_c00060{margin-left:-9.064000pt;}
._2_c00060{margin-left:-8.096000pt;}
._3_c00060{margin-left:-6.512000pt;}
._0_c00060{margin-left:-5.016000pt;}
._1c_c00060{margin-left:-3.469333pt;}
._5_c00060{margin-left:-2.552000pt;}
._6_c00060{margin-left:-1.232000pt;}
._b_c00060{width:1.216000pt;}
._18_c00060{width:2.402667pt;}
._19_c00060{width:3.450667pt;}
._15_c00060{width:5.168000pt;}
._a_c00060{width:6.330667pt;}
._4_c00060{width:8.008000pt;}
._9_c00060{width:9.221333pt;}
._17_c00060{width:10.133333pt;}
._c_c00060{width:11.045333pt;}
._22_c00060{width:12.648000pt;}
._f_c00060{width:13.562667pt;}
._8_c00060{width:14.642667pt;}
._1a_c00060{width:15.666667pt;}
._10_c00060{width:16.557333pt;}
._20_c00060{width:17.565333pt;}
._e_c00060{width:18.560000pt;}
._16_c00060{width:20.114667pt;}
._d_c00060{width:21.333333pt;}
._11_c00060{width:22.258667pt;}
._12_c00060{width:23.661333pt;}
._14_c00060{width:29.133333pt;}
._13_c00060{width:30.352000pt;}
._1f_c00060{width:62.173333pt;}
._1d_c00060{width:218.946667pt;}
._7_c00060{width:228.845333pt;}
._1e_c00060{width:759.650667pt;}
.fs8_c00060{font-size:42.666667pt;}
.fs2_c00060{font-size:50.666667pt;}
.fs3_c00060{font-size:53.333333pt;}
.fs5_c00060{font-size:64.000000pt;}
.fs4_c00060{font-size:69.333333pt;}
.fs6_c00060{font-size:72.000000pt;}
.fs0_c00060{font-size:88.000000pt;}
.fs1_c00060{font-size:90.666667pt;}
.fs7_c00060{font-size:96.000000pt;}
.y0_c00060{bottom:0.000000pt;}
.y25_c00060{bottom:2.760000pt;}
.y24_c00060{bottom:6.425217pt;}
.y23_c00060{bottom:79.840000pt;}
.y22_c00060{bottom:102.906667pt;}
.y21_c00060{bottom:125.306667pt;}
.y20_c00060{bottom:145.840000pt;}
.y1f_c00060{bottom:169.173333pt;}
.y1e_c00060{bottom:189.040000pt;}
.y1d_c00060{bottom:213.306667pt;}
.y1c_c00060{bottom:235.440000pt;}
.y1b_c00060{bottom:257.040000pt;}
.y1a_c00060{bottom:278.373333pt;}
.y19_c00060{bottom:300.506667pt;}
.y18_c00060{bottom:321.573333pt;}
.y17_c00060{bottom:342.506667pt;}
.y16_c00060{bottom:364.506667pt;}
.y15_c00060{bottom:385.840000pt;}
.y14_c00060{bottom:407.306667pt;}
.y13_c00060{bottom:429.040000pt;}
.y12_c00060{bottom:450.240000pt;}
.y11_c00060{bottom:472.106667pt;}
.y10_c00060{bottom:493.440000pt;}
.yf_c00060{bottom:514.773333pt;}
.ye_c00060{bottom:536.106667pt;}
.yd_c00060{bottom:557.306667pt;}
.yc_c00060{bottom:578.373333pt;}
.yb_c00060{bottom:599.706667pt;}
.ya_c00060{bottom:621.306667pt;}
.y9_c00060{bottom:642.906667pt;}
.y8_c00060{bottom:664.506667pt;}
.y7_c00060{bottom:686.640000pt;}
.y6_c00060{bottom:707.706667pt;}
.y5_c00060{bottom:729.306667pt;}
.y4_c00060{bottom:750.906667pt;}
.y3_c00060{bottom:773.040000pt;}
.y2_c00060{bottom:794.106667pt;}
.y1_c00060{bottom:825.573333pt;}
.h8_c00060{height:11.733399pt;}
.h9_c00060{height:38.937500pt;}
.h3_c00060{height:51.062500pt;}
.h4_c00060{height:73.978667pt;}
.h5_c00060{height:74.906250pt;}
.h6_c00060{height:81.031250pt;}
.h7_c00060{height:96.750000pt;}
.h2_c00060{height:102.996094pt;}
.h0_c00060{height:862.533333pt;}
.h1_c00060{height:862.666667pt;}
.w2_c00060{width:93.222667pt;}
.w1_c00060{width:586.000000pt;}
.w0_c00060{width:586.066667pt;}
.x0_c00060{left:0.000000pt;}
.x2_c00060{left:36.266667pt;}
.x3_c00060{left:39.066667pt;}
.x4_c00060{left:40.266667pt;}
.x5_c00060{left:41.733333pt;}
.x6_c00060{left:42.933333pt;}
.x7_c00060{left:44.800000pt;}
.x9_c00060{left:46.533333pt;}
.xa_c00060{left:48.666667pt;}
.xb_c00060{left:50.400000pt;}
.xc_c00060{left:51.600000pt;}
.x8_c00060{left:66.666667pt;}
.x1_c00060{left:90.400000pt;}
.xd_c00060{left:234.266667pt;}
.xe_c00060{left:250.201538pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c43b84fac0c6618966261073.woff2')format("woff");}.ff1_c00061{font-family:ff1_c00061;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00061;src:url('chunks/assets/font_324ea149b2a487ec369e23af.woff2')format("woff");}.ff2_c00061{font-family:ff2_c00061;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00061;src:url('chunks/assets/font_c9f7a6cbcb1c34e14d7bd69b.woff2')format("woff");}.ff3_c00061{font-family:ff3_c00061;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00061;src:url('chunks/assets/font_8699f0f75a5264a678276bf8.woff2')format("woff");}.ff4_c00061{font-family:ff4_c00061;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00061;src:url('chunks/assets/font_dc998b38b97fedaec0e72b94.woff2')format("woff");}.ff5_c00061{font-family:ff5_c00061;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00061;src:url('chunks/assets/font_cf4973a9fdfdd5b88debb7cf.woff2')format("woff");}.ff6_c00061{font-family:ff6_c00061;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00061;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c00061{font-family:ff7_c00061;line-height:1.219238;font-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_c00061{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m0_c00061{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00061{vertical-align:0.000000px;}
.ls4_c00061{letter-spacing:-12.000000px;}
.ls3_c00061{letter-spacing:-9.000000px;}
.ls2_c00061{letter-spacing:0.000000px;}
.ls0_c00061{letter-spacing:2.265000px;}
.ls1_c00061{letter-spacing:2.712000px;}
.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;}
}
.ws5_c00061{word-spacing:-27.000000px;}
.ws0_c00061{word-spacing:-25.500000px;}
.ws1_c00061{word-spacing:-23.859000px;}
.ws4_c00061{word-spacing:-17.352000px;}
.ws6_c00061{word-spacing:0.000000px;}
.ws3_c00061{word-spacing:4.047000px;}
.ws2_c00061{word-spacing:6.093000px;}
._35_c00061{margin-left:-45.603000px;}
._2a_c00061{margin-left:-39.165000px;}
._27_c00061{margin-left:-36.744000px;}
._31_c00061{margin-left:-30.807000px;}
._34_c00061{margin-left:-29.784000px;}
._23_c00061{margin-left:-27.483000px;}
._26_c00061{margin-left:-25.437000px;}
._24_c00061{margin-left:-22.263000px;}
._2b_c00061{margin-left:-21.105000px;}
._1e_c00061{margin-left:-17.280000px;}
._22_c00061{margin-left:-15.756000px;}
._7_c00061{margin-left:-14.232000px;}
._1a_c00061{margin-left:-12.708000px;}
._20_c00061{margin-left:-11.658000px;}
._21_c00061{margin-left:-10.599000px;}
._18_c00061{margin-left:-9.390000px;}
._29_c00061{margin-left:-8.367000px;}
._1d_c00061{margin-left:-7.290000px;}
._1b_c00061{margin-left:-6.114000px;}
._17_c00061{margin-left:-4.515000px;}
._15_c00061{margin-left:-3.486000px;}
._11_c00061{margin-left:-2.280000px;}
._1c_c00061{margin-left:-1.242000px;}
._5_c00061{width:1.938000px;}
._6_c00061{width:3.876000px;}
._b_c00061{width:5.202000px;}
._a_c00061{width:6.222000px;}
._8_c00061{width:8.058000px;}
._c_c00061{width:9.996000px;}
._19_c00061{width:11.094000px;}
._9_c00061{width:12.138000px;}
._4_c00061{width:13.422000px;}
._f_c00061{width:15.447000px;}
._14_c00061{width:16.815000px;}
._10_c00061{width:17.955000px;}
._e_c00061{width:19.584000px;}
._3_c00061{width:21.114000px;}
._1_c00061{width:23.460000px;}
._12_c00061{width:25.200000px;}
._d_c00061{width:27.075000px;}
._13_c00061{width:28.446000px;}
._30_c00061{width:32.418000px;}
._16_c00061{width:34.086000px;}
._2f_c00061{width:37.968000px;}
._0_c00061{width:42.636000px;}
._28_c00061{width:44.604000px;}
._25_c00061{width:50.220000px;}
._2c_c00061{width:53.142000px;}
._2d_c00061{width:118.665000px;}
._33_c00061{width:180.291000px;}
._2_c00061{width:189.312000px;}
._2e_c00061{width:214.476000px;}
._32_c00061{width:267.651000px;}
._1f_c00061{width:271.512000px;}
.fc2_c00061{color:transparent;}
.fc1_c00061{color:rgb(128,128,128);}
.fc0_c00061{color:rgb(0,0,0);}
.fs7_c00061{font-size:42.000000px;}
.fs8_c00061{font-size:48.000000px;}
.fs2_c00061{font-size:57.000000px;}
.fs5_c00061{font-size:72.000000px;}
.fs6_c00061{font-size:81.000000px;}
.fs1_c00061{font-size:99.000000px;}
.fs0_c00061{font-size:102.000000px;}
.fs4_c00061{font-size:105.000000px;}
.fs3_c00061{font-size:108.000000px;}
.y0_c00061{bottom:0.000000px;}
.y25_c00061{bottom:3.105000px;}
.y24_c00061{bottom:7.228357px;}
.y23_c00061{bottom:69.480000px;}
.y22_c00061{bottom:76.980000px;}
.y21_c00061{bottom:100.980000px;}
.y20_c00061{bottom:126.630000px;}
.y1f_c00061{bottom:151.980000px;}
.y1e_c00061{bottom:176.880000px;}
.y1d_c00061{bottom:201.480000px;}
.y1c_c00061{bottom:225.780000px;}
.y1b_c00061{bottom:249.780000px;}
.y1a_c00061{bottom:276.030000px;}
.y19_c00061{bottom:299.730000px;}
.y18_c00061{bottom:323.730000px;}
.y17_c00061{bottom:348.030000px;}
.y16_c00061{bottom:372.630000px;}
.y15_c00061{bottom:395.580000px;}
.y14_c00061{bottom:420.930000px;}
.y13_c00061{bottom:445.830000px;}
.y12_c00061{bottom:469.830000px;}
.y11_c00061{bottom:494.430000px;}
.y10_c00061{bottom:517.830000px;}
.yf_c00061{bottom:542.130000px;}
.ye_c00061{bottom:566.280000px;}
.yd_c00061{bottom:590.280000px;}
.yc_c00061{bottom:613.230000px;}
.yb_c00061{bottom:640.680000px;}
.ya_c00061{bottom:664.830000px;}
.y9_c00061{bottom:688.530000px;}
.y8_c00061{bottom:713.130000px;}
.y7_c00061{bottom:737.130000px;}
.y6_c00061{bottom:762.030000px;}
.y5_c00061{bottom:818.730000px;}
.y4_c00061{bottom:847.530000px;}
.y3_c00061{bottom:876.180000px;}
.y2_c00061{bottom:904.530000px;}
.y1_c00061{bottom:943.680000px;}
.h9_c00061{height:13.200074px;}
.ha_c00061{height:43.804688px;}
.h3_c00061{height:55.914551px;}
.h2_c00061{height:55.942383px;}
.h7_c00061{height:79.497070px;}
.h6_c00061{height:84.269531px;}
.h4_c00061{height:108.843750px;}
.h1_c00061{height:115.870605px;}
.h5_c00061{height:122.893066px;}
.h8_c00061{height:129.143555px;}
.h0_c00061{height:995.250000px;}
.w2_c00061{width:104.875500px;}
.w0_c00061{width:667.425000px;}
.w1_c00061{width:667.500000px;}
.x0_c00061{left:0.000000px;}
.x1a_c00061{left:17.250000px;}
.x18_c00061{left:22.650000px;}
.xb_c00061{left:30.600000px;}
.x9_c00061{left:33.750000px;}
.x13_c00061{left:36.150000px;}
.xc_c00061{left:51.300000px;}
.x1e_c00061{left:107.550000px;}
.x1c_c00061{left:108.600000px;}
.x1b_c00061{left:110.250000px;}
.xa_c00061{left:111.750000px;}
.x19_c00061{left:113.400000px;}
.x17_c00061{left:115.050000px;}
.x14_c00061{left:116.100000px;}
.x12_c00061{left:118.500000px;}
.x11_c00061{left:120.150000px;}
.x10_c00061{left:121.200000px;}
.xf_c00061{left:122.400000px;}
.xe_c00061{left:124.200000px;}
.x2_c00061{left:134.250000px;}
.x1_c00061{left:135.900000px;}
.x3_c00061{left:161.700000px;}
.xd_c00061{left:178.800000px;}
.x8_c00061{left:197.850000px;}
.x4_c00061{left:223.350000px;}
.x7_c00061{left:257.850000px;}
.x6_c00061{left:260.100000px;}
.x1f_c00061{left:285.526749px;}
.x5_c00061{left:314.550000px;}
.x15_c00061{left:417.450000px;}
.x16_c00061{left:438.000000px;}
.x1d_c00061{left:559.500000px;}
@media print{
.v0_c00061{vertical-align:0.000000pt;}
.ls4_c00061{letter-spacing:-10.666667pt;}
.ls3_c00061{letter-spacing:-8.000000pt;}
.ls2_c00061{letter-spacing:0.000000pt;}
.ls0_c00061{letter-spacing:2.013333pt;}
.ls1_c00061{letter-spacing:2.410667pt;}
.ws5_c00061{word-spacing:-24.000000pt;}
.ws0_c00061{word-spacing:-22.666667pt;}
.ws1_c00061{word-spacing:-21.208000pt;}
.ws4_c00061{word-spacing:-15.424000pt;}
.ws6_c00061{word-spacing:0.000000pt;}
.ws3_c00061{word-spacing:3.597333pt;}
.ws2_c00061{word-spacing:5.416000pt;}
._35_c00061{margin-left:-40.536000pt;}
._2a_c00061{margin-left:-34.813333pt;}
._27_c00061{margin-left:-32.661333pt;}
._31_c00061{margin-left:-27.384000pt;}
._34_c00061{margin-left:-26.474667pt;}
._23_c00061{margin-left:-24.429333pt;}
._26_c00061{margin-left:-22.610667pt;}
._24_c00061{margin-left:-19.789333pt;}
._2b_c00061{margin-left:-18.760000pt;}
._1e_c00061{margin-left:-15.360000pt;}
._22_c00061{margin-left:-14.005333pt;}
._7_c00061{margin-left:-12.650667pt;}
._1a_c00061{margin-left:-11.296000pt;}
._20_c00061{margin-left:-10.362667pt;}
._21_c00061{margin-left:-9.421333pt;}
._18_c00061{margin-left:-8.346667pt;}
._29_c00061{margin-left:-7.437333pt;}
._1d_c00061{margin-left:-6.480000pt;}
._1b_c00061{margin-left:-5.434667pt;}
._17_c00061{margin-left:-4.013333pt;}
._15_c00061{margin-left:-3.098667pt;}
._11_c00061{margin-left:-2.026667pt;}
._1c_c00061{margin-left:-1.104000pt;}
._5_c00061{width:1.722667pt;}
._6_c00061{width:3.445333pt;}
._b_c00061{width:4.624000pt;}
._a_c00061{width:5.530667pt;}
._8_c00061{width:7.162667pt;}
._c_c00061{width:8.885333pt;}
._19_c00061{width:9.861333pt;}
._9_c00061{width:10.789333pt;}
._4_c00061{width:11.930667pt;}
._f_c00061{width:13.730667pt;}
._14_c00061{width:14.946667pt;}
._10_c00061{width:15.960000pt;}
._e_c00061{width:17.408000pt;}
._3_c00061{width:18.768000pt;}
._1_c00061{width:20.853333pt;}
._12_c00061{width:22.400000pt;}
._d_c00061{width:24.066667pt;}
._13_c00061{width:25.285333pt;}
._30_c00061{width:28.816000pt;}
._16_c00061{width:30.298667pt;}
._2f_c00061{width:33.749333pt;}
._0_c00061{width:37.898667pt;}
._28_c00061{width:39.648000pt;}
._25_c00061{width:44.640000pt;}
._2c_c00061{width:47.237333pt;}
._2d_c00061{width:105.480000pt;}
._33_c00061{width:160.258667pt;}
._2_c00061{width:168.277333pt;}
._2e_c00061{width:190.645333pt;}
._32_c00061{width:237.912000pt;}
._1f_c00061{width:241.344000pt;}
.fs7_c00061{font-size:37.333333pt;}
.fs8_c00061{font-size:42.666667pt;}
.fs2_c00061{font-size:50.666667pt;}
.fs5_c00061{font-size:64.000000pt;}
.fs6_c00061{font-size:72.000000pt;}
.fs1_c00061{font-size:88.000000pt;}
.fs0_c00061{font-size:90.666667pt;}
.fs4_c00061{font-size:93.333333pt;}
.fs3_c00061{font-size:96.000000pt;}
.y0_c00061{bottom:0.000000pt;}
.y25_c00061{bottom:2.760000pt;}
.y24_c00061{bottom:6.425206pt;}
.y23_c00061{bottom:61.760000pt;}
.y22_c00061{bottom:68.426667pt;}
.y21_c00061{bottom:89.760000pt;}
.y20_c00061{bottom:112.560000pt;}
.y1f_c00061{bottom:135.093333pt;}
.y1e_c00061{bottom:157.226667pt;}
.y1d_c00061{bottom:179.093333pt;}
.y1c_c00061{bottom:200.693333pt;}
.y1b_c00061{bottom:222.026667pt;}
.y1a_c00061{bottom:245.360000pt;}
.y19_c00061{bottom:266.426667pt;}
.y18_c00061{bottom:287.760000pt;}
.y17_c00061{bottom:309.360000pt;}
.y16_c00061{bottom:331.226667pt;}
.y15_c00061{bottom:351.626667pt;}
.y14_c00061{bottom:374.160000pt;}
.y13_c00061{bottom:396.293333pt;}
.y12_c00061{bottom:417.626667pt;}
.y11_c00061{bottom:439.493333pt;}
.y10_c00061{bottom:460.293333pt;}
.yf_c00061{bottom:481.893333pt;}
.ye_c00061{bottom:503.360000pt;}
.yd_c00061{bottom:524.693333pt;}
.yc_c00061{bottom:545.093333pt;}
.yb_c00061{bottom:569.493333pt;}
.ya_c00061{bottom:590.960000pt;}
.y9_c00061{bottom:612.026667pt;}
.y8_c00061{bottom:633.893333pt;}
.y7_c00061{bottom:655.226667pt;}
.y6_c00061{bottom:677.360000pt;}
.y5_c00061{bottom:727.760000pt;}
.y4_c00061{bottom:753.360000pt;}
.y3_c00061{bottom:778.826667pt;}
.y2_c00061{bottom:804.026667pt;}
.y1_c00061{bottom:838.826667pt;}
.h9_c00061{height:11.733399pt;}
.ha_c00061{height:38.937500pt;}
.h3_c00061{height:49.701823pt;}
.h2_c00061{height:49.726562pt;}
.h7_c00061{height:70.664062pt;}
.h6_c00061{height:74.906250pt;}
.h4_c00061{height:96.750000pt;}
.h1_c00061{height:102.996094pt;}
.h5_c00061{height:109.238281pt;}
.h8_c00061{height:114.794271pt;}
.h0_c00061{height:884.666667pt;}
.w2_c00061{width:93.222667pt;}
.w0_c00061{width:593.266667pt;}
.w1_c00061{width:593.333333pt;}
.x0_c00061{left:0.000000pt;}
.x1a_c00061{left:15.333333pt;}
.x18_c00061{left:20.133333pt;}
.xb_c00061{left:27.200000pt;}
.x9_c00061{left:30.000000pt;}
.x13_c00061{left:32.133333pt;}
.xc_c00061{left:45.600000pt;}
.x1e_c00061{left:95.600000pt;}
.x1c_c00061{left:96.533333pt;}
.x1b_c00061{left:98.000000pt;}
.xa_c00061{left:99.333333pt;}
.x19_c00061{left:100.800000pt;}
.x17_c00061{left:102.266667pt;}
.x14_c00061{left:103.200000pt;}
.x12_c00061{left:105.333333pt;}
.x11_c00061{left:106.800000pt;}
.x10_c00061{left:107.733333pt;}
.xf_c00061{left:108.800000pt;}
.xe_c00061{left:110.400000pt;}
.x2_c00061{left:119.333333pt;}
.x1_c00061{left:120.800000pt;}
.x3_c00061{left:143.733333pt;}
.xd_c00061{left:158.933333pt;}
.x8_c00061{left:175.866667pt;}
.x4_c00061{left:198.533333pt;}
.x7_c00061{left:229.200000pt;}
.x6_c00061{left:231.200000pt;}
.x1f_c00061{left:253.801554pt;}
.x5_c00061{left:279.600000pt;}
.x15_c00061{left:371.066667pt;}
.x16_c00061{left:389.333333pt;}
.x1d_c00061{left:497.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_9fd3ff8a904ad8b01f93e95e.woff2')format("woff");}.ff1_c00062{font-family:ff1_c00062;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00062;src:url('chunks/assets/font_caf232e3ce24b4e7280798b0.woff2')format("woff");}.ff2_c00062{font-family:ff2_c00062;line-height:1.311035;font-style:normal;font-weight:normal;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_6e4e08e2396bbfe9d4c6af40.woff2')format("woff");}.ff3_c00062{font-family:ff3_c00062;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00062;src:url('chunks/assets/font_80a8cfc49b487a933b1597fa.woff2')format("woff");}.ff4_c00062{font-family:ff4_c00062;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00062;src:url('chunks/assets/font_b4a07941fb2d65b15b8b29e9.woff2')format("woff");}.ff5_c00062{font-family:ff5_c00062;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00062;src:url('chunks/assets/font_ed0de76fbb42f12b97b6748c.woff2')format("woff");}.ff6_c00062{font-family:ff6_c00062;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00062;src:url('chunks/assets/font_b702a36d0f89d45c72bfb5e2.woff2')format("woff");}.ff7_c00062{font-family:ff7_c00062;line-height:1.437000;font-style:normal;font-weight: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_c00062;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff8_c00062{font-family:ff8_c00062;line-height:1.219238;font-style: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;}
.ls5_c00062{letter-spacing:0.000000px;}
.ls1_c00062{letter-spacing:1.500000px;}
.ls4_c00062{letter-spacing:5.100000px;}
.ls6_c00062{letter-spacing:6.000000px;}
.ls2_c00062{letter-spacing:9.450000px;}
.ls3_c00062{letter-spacing:10.200000px;}
.ls0_c00062{letter-spacing:249.600000px;}
.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;}
}
.ws3_c00062{word-spacing:-38.568000px;}
.ws0_c00062{word-spacing:-24.582000px;}
.ws2_c00062{word-spacing:-18.750000px;}
.ws1_c00062{word-spacing:-14.250000px;}
.ws4_c00062{word-spacing:0.000000px;}
._22_c00062{margin-left:-13.668000px;}
._17_c00062{margin-left:-11.691000px;}
._20_c00062{margin-left:-10.248000px;}
._18_c00062{margin-left:-9.048000px;}
._10_c00062{margin-left:-8.031000px;}
._4_c00062{margin-left:-6.222000px;}
._1f_c00062{margin-left:-5.091000px;}
._3_c00062{margin-left:-3.978000px;}
._14_c00062{margin-left:-2.109000px;}
._16_c00062{margin-left:-1.056000px;}
._5_c00062{width:1.530000px;}
._2_c00062{width:2.958000px;}
._d_c00062{width:4.008000px;}
._e_c00062{width:5.022000px;}
._1_c00062{width:6.324000px;}
._8_c00062{width:8.154000px;}
._0_c00062{width:9.180000px;}
._7_c00062{width:10.290000px;}
._6_c00062{width:12.000000px;}
._9_c00062{width:13.110000px;}
._b_c00062{width:15.618000px;}
._c_c00062{width:16.647000px;}
._a_c00062{width:18.249000px;}
._11_c00062{width:20.157000px;}
._1e_c00062{width:21.228000px;}
._f_c00062{width:22.359000px;}
._1b_c00062{width:23.448000px;}
._12_c00062{width:24.555000px;}
._15_c00062{width:26.166000px;}
._13_c00062{width:27.387000px;}
._19_c00062{width:29.049000px;}
._1d_c00062{width:30.555000px;}
._21_c00062{width:32.784000px;}
._1a_c00062{width:35.493000px;}
._1c_c00062{width:49.413000px;}
.fc2_c00062{color:transparent;}
.fc1_c00062{color:rgb(128,128,128);}
.fc0_c00062{color:rgb(0,0,0);}
.fs3_c00062{font-size:27.000000px;}
.fs9_c00062{font-size:48.000000px;}
.fs2_c00062{font-size:57.000000px;}
.fs6_c00062{font-size:60.000000px;}
.fs5_c00062{font-size:69.000000px;}
.fs4_c00062{font-size:75.000000px;}
.fs7_c00062{font-size:81.000000px;}
.fs8_c00062{font-size:87.000000px;}
.fs0_c00062{font-size:102.000000px;}
.fs1_c00062{font-size:120.000000px;}
.y0_c00062{bottom:0.000000px;}
.y25_c00062{bottom:3.105000px;}
.y24_c00062{bottom:7.228371px;}
.y23_c00062{bottom:86.115000px;}
.y22_c00062{bottom:111.165000px;}
.y21_c00062{bottom:135.465000px;}
.y20_c00062{bottom:159.765000px;}
.y1f_c00062{bottom:184.365000px;}
.y1e_c00062{bottom:208.965000px;}
.y1d_c00062{bottom:233.265000px;}
.y1c_c00062{bottom:257.565000px;}
.y1b_c00062{bottom:281.865000px;}
.y1a_c00062{bottom:306.465000px;}
.y19_c00062{bottom:329.865000px;}
.y18_c00062{bottom:354.165000px;}
.y17_c00062{bottom:378.015000px;}
.y16_c00062{bottom:402.015000px;}
.y15_c00062{bottom:425.715000px;}
.y14_c00062{bottom:449.565000px;}
.y13_c00062{bottom:473.865000px;}
.y12_c00062{bottom:498.465000px;}
.y11_c00062{bottom:521.865000px;}
.y10_c00062{bottom:546.165000px;}
.yf_c00062{bottom:570.465000px;}
.ye_c00062{bottom:594.315000px;}
.yd_c00062{bottom:618.315000px;}
.yc_c00062{bottom:642.315000px;}
.yb_c00062{bottom:666.615000px;}
.ya_c00062{bottom:690.165000px;}
.y9_c00062{bottom:714.465000px;}
.y8_c00062{bottom:738.165000px;}
.y7_c00062{bottom:763.515000px;}
.y6_c00062{bottom:786.465000px;}
.y5_c00062{bottom:810.765000px;}
.y4_c00062{bottom:835.365000px;}
.y3_c00062{bottom:859.965000px;}
.y2_c00062{bottom:883.665000px;}
.y1_c00062{bottom:919.365000px;}
.h9_c00062{height:13.200074px;}
.ha_c00062{height:43.804688px;}
.h3_c00062{height:57.445312px;}
.h4_c00062{height:73.608398px;}
.h7_c00062{height:79.497070px;}
.h5_c00062{height:80.758301px;}
.h6_c00062{height:87.361816px;}
.h8_c00062{height:91.176000px;}
.h2_c00062{height:129.143555px;}
.h0_c00062{height:989.025000px;}
.h1_c00062{height:989.250000px;}
.w1_c00062{width:104.875500px;}
.w0_c00062{width:672.000000px;}
.x0_c00062{left:0.000000px;}
.x2_c00062{left:56.700000px;}
.x3_c00062{left:58.350000px;}
.x4_c00062{left:59.400000px;}
.x1_c00062{left:121.800000px;}
.x5_c00062{left:287.814240px;}
@media print{
.v0_c00062{vertical-align:0.000000pt;}
.ls5_c00062{letter-spacing:0.000000pt;}
.ls1_c00062{letter-spacing:1.333333pt;}
.ls4_c00062{letter-spacing:4.533333pt;}
.ls6_c00062{letter-spacing:5.333333pt;}
.ls2_c00062{letter-spacing:8.400000pt;}
.ls3_c00062{letter-spacing:9.066667pt;}
.ls0_c00062{letter-spacing:221.866667pt;}
.ws3_c00062{word-spacing:-34.282667pt;}
.ws0_c00062{word-spacing:-21.850667pt;}
.ws2_c00062{word-spacing:-16.666667pt;}
.ws1_c00062{word-spacing:-12.666667pt;}
.ws4_c00062{word-spacing:0.000000pt;}
._22_c00062{margin-left:-12.149333pt;}
._17_c00062{margin-left:-10.392000pt;}
._20_c00062{margin-left:-9.109333pt;}
._18_c00062{margin-left:-8.042667pt;}
._10_c00062{margin-left:-7.138667pt;}
._4_c00062{margin-left:-5.530667pt;}
._1f_c00062{margin-left:-4.525333pt;}
._3_c00062{margin-left:-3.536000pt;}
._14_c00062{margin-left:-1.874667pt;}
._16_c00062{margin-left:-0.938667pt;}
._5_c00062{width:1.360000pt;}
._2_c00062{width:2.629333pt;}
._d_c00062{width:3.562667pt;}
._e_c00062{width:4.464000pt;}
._1_c00062{width:5.621333pt;}
._8_c00062{width:7.248000pt;}
._0_c00062{width:8.160000pt;}
._7_c00062{width:9.146667pt;}
._6_c00062{width:10.666667pt;}
._9_c00062{width:11.653333pt;}
._b_c00062{width:13.882667pt;}
._c_c00062{width:14.797333pt;}
._a_c00062{width:16.221333pt;}
._11_c00062{width:17.917333pt;}
._1e_c00062{width:18.869333pt;}
._f_c00062{width:19.874667pt;}
._1b_c00062{width:20.842667pt;}
._12_c00062{width:21.826667pt;}
._15_c00062{width:23.258667pt;}
._13_c00062{width:24.344000pt;}
._19_c00062{width:25.821333pt;}
._1d_c00062{width:27.160000pt;}
._21_c00062{width:29.141333pt;}
._1a_c00062{width:31.549333pt;}
._1c_c00062{width:43.922667pt;}
.fs3_c00062{font-size:24.000000pt;}
.fs9_c00062{font-size:42.666667pt;}
.fs2_c00062{font-size:50.666667pt;}
.fs6_c00062{font-size:53.333333pt;}
.fs5_c00062{font-size:61.333333pt;}
.fs4_c00062{font-size:66.666667pt;}
.fs7_c00062{font-size:72.000000pt;}
.fs8_c00062{font-size:77.333333pt;}
.fs0_c00062{font-size:90.666667pt;}
.fs1_c00062{font-size:106.666667pt;}
.y0_c00062{bottom:0.000000pt;}
.y25_c00062{bottom:2.760000pt;}
.y24_c00062{bottom:6.425219pt;}
.y23_c00062{bottom:76.546667pt;}
.y22_c00062{bottom:98.813333pt;}
.y21_c00062{bottom:120.413333pt;}
.y20_c00062{bottom:142.013333pt;}
.y1f_c00062{bottom:163.880000pt;}
.y1e_c00062{bottom:185.746667pt;}
.y1d_c00062{bottom:207.346667pt;}
.y1c_c00062{bottom:228.946667pt;}
.y1b_c00062{bottom:250.546667pt;}
.y1a_c00062{bottom:272.413333pt;}
.y19_c00062{bottom:293.213333pt;}
.y18_c00062{bottom:314.813333pt;}
.y17_c00062{bottom:336.013333pt;}
.y16_c00062{bottom:357.346667pt;}
.y15_c00062{bottom:378.413333pt;}
.y14_c00062{bottom:399.613333pt;}
.y13_c00062{bottom:421.213333pt;}
.y12_c00062{bottom:443.080000pt;}
.y11_c00062{bottom:463.880000pt;}
.y10_c00062{bottom:485.480000pt;}
.yf_c00062{bottom:507.080000pt;}
.ye_c00062{bottom:528.280000pt;}
.yd_c00062{bottom:549.613333pt;}
.yc_c00062{bottom:570.946667pt;}
.yb_c00062{bottom:592.546667pt;}
.ya_c00062{bottom:613.480000pt;}
.y9_c00062{bottom:635.080000pt;}
.y8_c00062{bottom:656.146667pt;}
.y7_c00062{bottom:678.680000pt;}
.y6_c00062{bottom:699.080000pt;}
.y5_c00062{bottom:720.680000pt;}
.y4_c00062{bottom:742.546667pt;}
.y3_c00062{bottom:764.413333pt;}
.y2_c00062{bottom:785.480000pt;}
.y1_c00062{bottom:817.213333pt;}
.h9_c00062{height:11.733399pt;}
.ha_c00062{height:38.937500pt;}
.h3_c00062{height:51.062500pt;}
.h4_c00062{height:65.429688pt;}
.h7_c00062{height:70.664062pt;}
.h5_c00062{height:71.785156pt;}
.h6_c00062{height:77.654948pt;}
.h8_c00062{height:81.045333pt;}
.h2_c00062{height:114.794271pt;}
.h0_c00062{height:879.133333pt;}
.h1_c00062{height:879.333333pt;}
.w1_c00062{width:93.222667pt;}
.w0_c00062{width:597.333333pt;}
.x0_c00062{left:0.000000pt;}
.x2_c00062{left:50.400000pt;}
.x3_c00062{left:51.866667pt;}
.x4_c00062{left:52.800000pt;}
.x1_c00062{left:108.266667pt;}
.x5_c00062{left:255.834880pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8969e146a6d31f60f155db77.woff2')format("woff");}.ff1_c00063{font-family:ff1_c00063;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00063;src:url('chunks/assets/font_d05bf9771e8332c0ca5f315c.woff2')format("woff");}.ff2_c00063{font-family:ff2_c00063;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00063;src:url('chunks/assets/font_6654ffa585e91bd8203dfa62.woff2')format("woff");}.ff3_c00063{font-family:ff3_c00063;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00063;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff4_c00063{font-family:ff4_c00063;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00063;src:url('chunks/assets/font_2722e8053e64f5df49e9474c.woff2')format("woff");}.ff5_c00063{font-family:ff5_c00063;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00063;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c00063{font-family:ff6_c00063;line-height:1.219238;font-style: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;}
.ls0_c00063{letter-spacing:0.000000px;}
.sc__c00063{text-shadow:none;}
.sc0_c00063{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00063{-webkit-text-stroke:0px transparent;}
.sc0_c00063{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00063{word-spacing:-59.184000px;}
.ws0_c00063{word-spacing:-20.250000px;}
.ws2_c00063{word-spacing:-19.065600px;}
.ws3_c00063{word-spacing:0.000000px;}
._1b_c00063{margin-left:-39.285000px;}
._8_c00063{margin-left:-14.484000px;}
._4_c00063{margin-left:-9.180000px;}
._11_c00063{margin-left:-8.052000px;}
._f_c00063{margin-left:-5.853000px;}
._9_c00063{margin-left:-4.692000px;}
._a_c00063{margin-left:-3.672000px;}
._10_c00063{margin-left:-2.553000px;}
._b_c00063{margin-left:-1.326000px;}
._e_c00063{width:1.341000px;}
._12_c00063{width:2.373000px;}
._3_c00063{width:3.468000px;}
._c_c00063{width:4.542000px;}
._d_c00063{width:5.631000px;}
._0_c00063{width:6.732000px;}
._7_c00063{width:8.670000px;}
._1_c00063{width:9.792000px;}
._6_c00063{width:10.914000px;}
._2_c00063{width:12.342000px;}
._14_c00063{width:13.605000px;}
._5_c00063{width:14.688000px;}
._17_c00063{width:16.443000px;}
._13_c00063{width:19.053000px;}
._15_c00063{width:21.279000px;}
._1a_c00063{width:25.314000px;}
._16_c00063{width:27.276000px;}
._18_c00063{width:38.829000px;}
._19_c00063{width:49.911000px;}
._1c_c00063{width:1509.111000px;}
.fc2_c00063{color:transparent;}
.fc1_c00063{color:rgb(128,128,128);}
.fc0_c00063{color:rgb(0,0,0);}
.fs4_c00063{font-size:48.000000px;}
.fs3_c00063{font-size:57.600000px;}
.fs2_c00063{font-size:72.000000px;}
.fs1_c00063{font-size:81.000000px;}
.fs0_c00063{font-size:102.000000px;}
.y0_c00063{bottom:0.000000px;}
.y26_c00063{bottom:3.105000px;}
.y25_c00063{bottom:7.228369px;}
.y24_c00063{bottom:63.720000px;}
.y23_c00063{bottom:88.470000px;}
.y22_c00063{bottom:113.970000px;}
.y21_c00063{bottom:138.720000px;}
.y20_c00063{bottom:163.620000px;}
.y1f_c00063{bottom:188.370000px;}
.y1e_c00063{bottom:212.970000px;}
.y1d_c00063{bottom:237.570000px;}
.y1c_c00063{bottom:262.170000px;}
.y1b_c00063{bottom:286.920000px;}
.y1a_c00063{bottom:311.220000px;}
.y19_c00063{bottom:335.370000px;}
.y18_c00063{bottom:359.370000px;}
.y17_c00063{bottom:383.370000px;}
.y16_c00063{bottom:408.270000px;}
.y15_c00063{bottom:432.270000px;}
.y14_c00063{bottom:456.570000px;}
.y13_c00063{bottom:480.270000px;}
.y12_c00063{bottom:504.270000px;}
.y11_c00063{bottom:528.570000px;}
.y10_c00063{bottom:553.770000px;}
.yf_c00063{bottom:577.470000px;}
.ye_c00063{bottom:602.070000px;}
.yd_c00063{bottom:626.070000px;}
.yc_c00063{bottom:650.370000px;}
.yb_c00063{bottom:674.970000px;}
.ya_c00063{bottom:698.970000px;}
.y9_c00063{bottom:722.970000px;}
.y8_c00063{bottom:747.570000px;}
.y7_c00063{bottom:772.170000px;}
.y6_c00063{bottom:795.870000px;}
.y5_c00063{bottom:820.020000px;}
.y4_c00063{bottom:844.470000px;}
.y3_c00063{bottom:868.770000px;}
.y2_c00063{bottom:892.920000px;}
.y1_c00063{bottom:928.470000px;}
.h6_c00063{height:13.200073px;}
.h7_c00063{height:43.804688px;}
.h3_c00063{height:79.497070px;}
.h4_c00063{height:84.269531px;}
.h5_c00063{height:91.160156px;}
.h2_c00063{height:100.057617px;}
.h1_c00063{height:981.000000px;}
.h0_c00063{height:981.150000px;}
.w1_c00063{width:104.875500px;}
.w0_c00063{width:657.750000px;}
.x0_c00063{left:0.000000px;}
.xd_c00063{left:17.250000px;}
.xf_c00063{left:107.700000px;}
.xe_c00063{left:109.050000px;}
.xc_c00063{left:112.800000px;}
.xb_c00063{left:115.200000px;}
.xa_c00063{left:117.750000px;}
.x8_c00063{left:119.250000px;}
.x7_c00063{left:121.200000px;}
.x6_c00063{left:122.400000px;}
.x5_c00063{left:124.200000px;}
.x4_c00063{left:125.850000px;}
.x3_c00063{left:127.200000px;}
.x2_c00063{left:128.250000px;}
.x10_c00063{left:142.500000px;}
.x9_c00063{left:145.500000px;}
.x1_c00063{left:224.850000px;}
.x11_c00063{left:280.689240px;}
@media print{
.v0_c00063{vertical-align:0.000000pt;}
.ls0_c00063{letter-spacing:0.000000pt;}
.ws1_c00063{word-spacing:-52.608000pt;}
.ws0_c00063{word-spacing:-18.000000pt;}
.ws2_c00063{word-spacing:-16.947200pt;}
.ws3_c00063{word-spacing:0.000000pt;}
._1b_c00063{margin-left:-34.920000pt;}
._8_c00063{margin-left:-12.874667pt;}
._4_c00063{margin-left:-8.160000pt;}
._11_c00063{margin-left:-7.157333pt;}
._f_c00063{margin-left:-5.202667pt;}
._9_c00063{margin-left:-4.170667pt;}
._a_c00063{margin-left:-3.264000pt;}
._10_c00063{margin-left:-2.269333pt;}
._b_c00063{margin-left:-1.178667pt;}
._e_c00063{width:1.192000pt;}
._12_c00063{width:2.109333pt;}
._3_c00063{width:3.082667pt;}
._c_c00063{width:4.037333pt;}
._d_c00063{width:5.005333pt;}
._0_c00063{width:5.984000pt;}
._7_c00063{width:7.706667pt;}
._1_c00063{width:8.704000pt;}
._6_c00063{width:9.701333pt;}
._2_c00063{width:10.970667pt;}
._14_c00063{width:12.093333pt;}
._5_c00063{width:13.056000pt;}
._17_c00063{width:14.616000pt;}
._13_c00063{width:16.936000pt;}
._15_c00063{width:18.914667pt;}
._1a_c00063{width:22.501333pt;}
._16_c00063{width:24.245333pt;}
._18_c00063{width:34.514667pt;}
._19_c00063{width:44.365333pt;}
._1c_c00063{width:1341.432000pt;}
.fs4_c00063{font-size:42.666667pt;}
.fs3_c00063{font-size:51.200000pt;}
.fs2_c00063{font-size:64.000000pt;}
.fs1_c00063{font-size:72.000000pt;}
.fs0_c00063{font-size:90.666667pt;}
.y0_c00063{bottom:0.000000pt;}
.y26_c00063{bottom:2.760000pt;}
.y25_c00063{bottom:6.425217pt;}
.y24_c00063{bottom:56.640000pt;}
.y23_c00063{bottom:78.640000pt;}
.y22_c00063{bottom:101.306667pt;}
.y21_c00063{bottom:123.306667pt;}
.y20_c00063{bottom:145.440000pt;}
.y1f_c00063{bottom:167.440000pt;}
.y1e_c00063{bottom:189.306667pt;}
.y1d_c00063{bottom:211.173333pt;}
.y1c_c00063{bottom:233.040000pt;}
.y1b_c00063{bottom:255.040000pt;}
.y1a_c00063{bottom:276.640000pt;}
.y19_c00063{bottom:298.106667pt;}
.y18_c00063{bottom:319.440000pt;}
.y17_c00063{bottom:340.773333pt;}
.y16_c00063{bottom:362.906667pt;}
.y15_c00063{bottom:384.240000pt;}
.y14_c00063{bottom:405.840000pt;}
.y13_c00063{bottom:426.906667pt;}
.y12_c00063{bottom:448.240000pt;}
.y11_c00063{bottom:469.840000pt;}
.y10_c00063{bottom:492.240000pt;}
.yf_c00063{bottom:513.306667pt;}
.ye_c00063{bottom:535.173333pt;}
.yd_c00063{bottom:556.506667pt;}
.yc_c00063{bottom:578.106667pt;}
.yb_c00063{bottom:599.973333pt;}
.ya_c00063{bottom:621.306667pt;}
.y9_c00063{bottom:642.640000pt;}
.y8_c00063{bottom:664.506667pt;}
.y7_c00063{bottom:686.373333pt;}
.y6_c00063{bottom:707.440000pt;}
.y5_c00063{bottom:728.906667pt;}
.y4_c00063{bottom:750.640000pt;}
.y3_c00063{bottom:772.240000pt;}
.y2_c00063{bottom:793.706667pt;}
.y1_c00063{bottom:825.306667pt;}
.h6_c00063{height:11.733399pt;}
.h7_c00063{height:38.937500pt;}
.h3_c00063{height:70.664062pt;}
.h4_c00063{height:74.906250pt;}
.h5_c00063{height:81.031250pt;}
.h2_c00063{height:88.940104pt;}
.h1_c00063{height:872.000000pt;}
.h0_c00063{height:872.133333pt;}
.w1_c00063{width:93.222667pt;}
.w0_c00063{width:584.666667pt;}
.x0_c00063{left:0.000000pt;}
.xd_c00063{left:15.333333pt;}
.xf_c00063{left:95.733333pt;}
.xe_c00063{left:96.933333pt;}
.xc_c00063{left:100.266667pt;}
.xb_c00063{left:102.400000pt;}
.xa_c00063{left:104.666667pt;}
.x8_c00063{left:106.000000pt;}
.x7_c00063{left:107.733333pt;}
.x6_c00063{left:108.800000pt;}
.x5_c00063{left:110.400000pt;}
.x4_c00063{left:111.866667pt;}
.x3_c00063{left:113.066667pt;}
.x2_c00063{left:114.000000pt;}
.x10_c00063{left:126.666667pt;}
.x9_c00063{left:129.333333pt;}
.x1_c00063{left:199.866667pt;}
.x11_c00063{left:249.501546pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_af68fba916dec82eec0b4c7f.woff2')format("woff");}.ff1_c00064{font-family:ff1_c00064;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00064;src:url('chunks/assets/font_ef1a9637c260f7a05cd2c001.woff2')format("woff");}.ff2_c00064{font-family:ff2_c00064;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00064;src:url('chunks/assets/font_52e987f723fbdba3dd600cb4.woff2')format("woff");}.ff3_c00064{font-family:ff3_c00064;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00064;src:url('chunks/assets/font_d50bf68ba3630e3a9793cbb9.woff2')format("woff");}.ff4_c00064{font-family:ff4_c00064;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00064;src:url('chunks/assets/font_d51540d4c89d6736ff5a7df0.woff2')format("woff");}.ff5_c00064{font-family:ff5_c00064;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00064;src:url('chunks/assets/font_a05fb1697cadc5008e97ee14.woff2')format("woff");}.ff6_c00064{font-family:ff6_c00064;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00064;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c00064{font-family:ff7_c00064;line-height:1.219238;font-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_c00064{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m0_c00064{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00064{vertical-align:0.000000px;}
.v1_c00064{vertical-align:7.200000px;}
.ls4_c00064{letter-spacing:0.000000px;}
.ls1_c00064{letter-spacing:2.400000px;}
.ls0_c00064{letter-spacing:7.500000px;}
.ls3_c00064{letter-spacing:10.500000px;}
.ls2_c00064{letter-spacing:156.060000px;}
.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:-67.686000px;}
.ws2_c00064{word-spacing:-20.250000px;}
.ws0_c00064{word-spacing:-17.352000px;}
.ws3_c00064{word-spacing:0.000000px;}
._1d_c00064{margin-left:-24.381000px;}
._1e_c00064{margin-left:-18.681000px;}
._1a_c00064{margin-left:-16.011000px;}
._c_c00064{margin-left:-13.923000px;}
._d_c00064{margin-left:-11.808000px;}
._9_c00064{margin-left:-9.801000px;}
._1c_c00064{margin-left:-8.505000px;}
._3_c00064{margin-left:-6.804000px;}
._5_c00064{margin-left:-4.941000px;}
._1_c00064{margin-left:-3.726000px;}
._e_c00064{margin-left:-2.430000px;}
._0_c00064{margin-left:-1.215000px;}
._6_c00064{width:1.134000px;}
._8_c00064{width:2.268000px;}
._4_c00064{width:3.321000px;}
._f_c00064{width:4.374000px;}
._2_c00064{width:5.427000px;}
._7_c00064{width:7.452000px;}
._a_c00064{width:8.748000px;}
._11_c00064{width:10.692000px;}
._15_c00064{width:11.826000px;}
._1f_c00064{width:12.879000px;}
._12_c00064{width:14.094000px;}
._14_c00064{width:15.876000px;}
._16_c00064{width:17.982000px;}
._13_c00064{width:25.758000px;}
._17_c00064{width:28.443000px;}
._21_c00064{width:35.316000px;}
._b_c00064{width:36.609000px;}
._10_c00064{width:38.901000px;}
._18_c00064{width:214.164000px;}
._1b_c00064{width:234.198000px;}
._22_c00064{width:334.800000px;}
._19_c00064{width:622.404000px;}
._20_c00064{width:1632.015000px;}
.fc2_c00064{color:transparent;}
.fc1_c00064{color:rgb(128,128,128);}
.fc0_c00064{color:rgb(0,0,0);}
.fs7_c00064{font-size:48.000000px;}
.fs5_c00064{font-size:60.000000px;}
.fs4_c00064{font-size:66.000000px;}
.fs1_c00064{font-size:72.000000px;}
.fs2_c00064{font-size:75.000000px;}
.fs0_c00064{font-size:81.000000px;}
.fs3_c00064{font-size:87.000000px;}
.fs6_c00064{font-size:108.000000px;}
.y0_c00064{bottom:0.000000px;}
.y25_c00064{bottom:3.105000px;}
.y24_c00064{bottom:7.228371px;}
.y23_c00064{bottom:62.865000px;}
.y22_c00064{bottom:90.165000px;}
.y21_c00064{bottom:115.515000px;}
.y20_c00064{bottom:140.715000px;}
.y1f_c00064{bottom:164.715000px;}
.y1e_c00064{bottom:189.015000px;}
.y1d_c00064{bottom:213.765000px;}
.y1c_c00064{bottom:238.365000px;}
.y1b_c00064{bottom:262.665000px;}
.y1a_c00064{bottom:286.665000px;}
.y19_c00064{bottom:311.565000px;}
.y18_c00064{bottom:335.865000px;}
.y17_c00064{bottom:360.165000px;}
.y16_c00064{bottom:383.865000px;}
.y15_c00064{bottom:406.365000px;}
.y14_c00064{bottom:432.465000px;}
.y13_c00064{bottom:458.415000px;}
.y12_c00064{bottom:482.265000px;}
.y11_c00064{bottom:506.565000px;}
.y10_c00064{bottom:531.015000px;}
.yf_c00064{bottom:555.615000px;}
.ye_c00064{bottom:579.915000px;}
.yd_c00064{bottom:603.765000px;}
.yc_c00064{bottom:628.515000px;}
.yb_c00064{bottom:652.815000px;}
.ya_c00064{bottom:677.115000px;}
.y9_c00064{bottom:701.415000px;}
.y8_c00064{bottom:726.015000px;}
.y7_c00064{bottom:750.315000px;}
.y6_c00064{bottom:774.915000px;}
.y5_c00064{bottom:799.665000px;}
.y4_c00064{bottom:824.265000px;}
.y3_c00064{bottom:848.865000px;}
.y2_c00064{bottom:873.765000px;}
.y1_c00064{bottom:897.465000px;}
.h8_c00064{height:13.200074px;}
.h9_c00064{height:43.804688px;}
.h3_c00064{height:79.497070px;}
.h5_c00064{height:84.269531px;}
.h6_c00064{height:86.697070px;}
.h2_c00064{height:91.160156px;}
.h4_c00064{height:91.176000px;}
.h7_c00064{height:108.843750px;}
.h0_c00064{height:989.025000px;}
.h1_c00064{height:989.250000px;}
.w1_c00064{width:104.875500px;}
.w0_c00064{width:672.000000px;}
.x0_c00064{left:0.000000px;}
.xa_c00064{left:35.400000px;}
.x9_c00064{left:37.050000px;}
.x8_c00064{left:38.700000px;}
.x4_c00064{left:40.500000px;}
.x3_c00064{left:41.550000px;}
.x2_c00064{left:43.650000px;}
.x1_c00064{left:45.000000px;}
.xb_c00064{left:51.600000px;}
.x7_c00064{left:90.750000px;}
.x5_c00064{left:110.700000px;}
.x6_c00064{left:228.450000px;}
.xc_c00064{left:287.814240px;}
@media print{
.v0_c00064{vertical-align:0.000000pt;}
.v1_c00064{vertical-align:6.400000pt;}
.ls4_c00064{letter-spacing:0.000000pt;}
.ls1_c00064{letter-spacing:2.133333pt;}
.ls0_c00064{letter-spacing:6.666667pt;}
.ls3_c00064{letter-spacing:9.333333pt;}
.ls2_c00064{letter-spacing:138.720000pt;}
.ws1_c00064{word-spacing:-60.165333pt;}
.ws2_c00064{word-spacing:-18.000000pt;}
.ws0_c00064{word-spacing:-15.424000pt;}
.ws3_c00064{word-spacing:0.000000pt;}
._1d_c00064{margin-left:-21.672000pt;}
._1e_c00064{margin-left:-16.605333pt;}
._1a_c00064{margin-left:-14.232000pt;}
._c_c00064{margin-left:-12.376000pt;}
._d_c00064{margin-left:-10.496000pt;}
._9_c00064{margin-left:-8.712000pt;}
._1c_c00064{margin-left:-7.560000pt;}
._3_c00064{margin-left:-6.048000pt;}
._5_c00064{margin-left:-4.392000pt;}
._1_c00064{margin-left:-3.312000pt;}
._e_c00064{margin-left:-2.160000pt;}
._0_c00064{margin-left:-1.080000pt;}
._6_c00064{width:1.008000pt;}
._8_c00064{width:2.016000pt;}
._4_c00064{width:2.952000pt;}
._f_c00064{width:3.888000pt;}
._2_c00064{width:4.824000pt;}
._7_c00064{width:6.624000pt;}
._a_c00064{width:7.776000pt;}
._11_c00064{width:9.504000pt;}
._15_c00064{width:10.512000pt;}
._1f_c00064{width:11.448000pt;}
._12_c00064{width:12.528000pt;}
._14_c00064{width:14.112000pt;}
._16_c00064{width:15.984000pt;}
._13_c00064{width:22.896000pt;}
._17_c00064{width:25.282667pt;}
._21_c00064{width:31.392000pt;}
._b_c00064{width:32.541333pt;}
._10_c00064{width:34.578667pt;}
._18_c00064{width:190.368000pt;}
._1b_c00064{width:208.176000pt;}
._22_c00064{width:297.600000pt;}
._19_c00064{width:553.248000pt;}
._20_c00064{width:1450.680000pt;}
.fs7_c00064{font-size:42.666667pt;}
.fs5_c00064{font-size:53.333333pt;}
.fs4_c00064{font-size:58.666667pt;}
.fs1_c00064{font-size:64.000000pt;}
.fs2_c00064{font-size:66.666667pt;}
.fs0_c00064{font-size:72.000000pt;}
.fs3_c00064{font-size:77.333333pt;}
.fs6_c00064{font-size:96.000000pt;}
.y0_c00064{bottom:0.000000pt;}
.y25_c00064{bottom:2.760000pt;}
.y24_c00064{bottom:6.425219pt;}
.y23_c00064{bottom:55.880000pt;}
.y22_c00064{bottom:80.146667pt;}
.y21_c00064{bottom:102.680000pt;}
.y20_c00064{bottom:125.080000pt;}
.y1f_c00064{bottom:146.413333pt;}
.y1e_c00064{bottom:168.013333pt;}
.y1d_c00064{bottom:190.013333pt;}
.y1c_c00064{bottom:211.880000pt;}
.y1b_c00064{bottom:233.480000pt;}
.y1a_c00064{bottom:254.813333pt;}
.y19_c00064{bottom:276.946667pt;}
.y18_c00064{bottom:298.546667pt;}
.y17_c00064{bottom:320.146667pt;}
.y16_c00064{bottom:341.213333pt;}
.y15_c00064{bottom:361.213333pt;}
.y14_c00064{bottom:384.413333pt;}
.y13_c00064{bottom:407.480000pt;}
.y12_c00064{bottom:428.680000pt;}
.y11_c00064{bottom:450.280000pt;}
.y10_c00064{bottom:472.013333pt;}
.yf_c00064{bottom:493.880000pt;}
.ye_c00064{bottom:515.480000pt;}
.yd_c00064{bottom:536.680000pt;}
.yc_c00064{bottom:558.680000pt;}
.yb_c00064{bottom:580.280000pt;}
.ya_c00064{bottom:601.880000pt;}
.y9_c00064{bottom:623.480000pt;}
.y8_c00064{bottom:645.346667pt;}
.y7_c00064{bottom:666.946667pt;}
.y6_c00064{bottom:688.813333pt;}
.y5_c00064{bottom:710.813333pt;}
.y4_c00064{bottom:732.680000pt;}
.y3_c00064{bottom:754.546667pt;}
.y2_c00064{bottom:776.680000pt;}
.y1_c00064{bottom:797.746667pt;}
.h8_c00064{height:11.733399pt;}
.h9_c00064{height:38.937500pt;}
.h3_c00064{height:70.664062pt;}
.h5_c00064{height:74.906250pt;}
.h6_c00064{height:77.064062pt;}
.h2_c00064{height:81.031250pt;}
.h4_c00064{height:81.045333pt;}
.h7_c00064{height:96.750000pt;}
.h0_c00064{height:879.133333pt;}
.h1_c00064{height:879.333333pt;}
.w1_c00064{width:93.222667pt;}
.w0_c00064{width:597.333333pt;}
.x0_c00064{left:0.000000pt;}
.xa_c00064{left:31.466667pt;}
.x9_c00064{left:32.933333pt;}
.x8_c00064{left:34.400000pt;}
.x4_c00064{left:36.000000pt;}
.x3_c00064{left:36.933333pt;}
.x2_c00064{left:38.800000pt;}
.x1_c00064{left:40.000000pt;}
.xb_c00064{left:45.866667pt;}
.x7_c00064{left:80.666667pt;}
.x5_c00064{left:98.400000pt;}
.x6_c00064{left:203.066667pt;}
.xc_c00064{left:255.834880pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ec447819d870a73c11cbdefc.woff2')format("woff");}.ff1_c00065{font-family:ff1_c00065;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00065;src:url('chunks/assets/font_636d5712224cb1606f8700f3.woff2')format("woff");}.ff2_c00065{font-family:ff2_c00065;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00065;src:url('chunks/assets/font_8707a13449594378608ac2e6.woff2')format("woff");}.ff3_c00065{font-family:ff3_c00065;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00065;src:url('chunks/assets/font_4af0892c35372ba25e9a705c.woff2')format("woff");}.ff4_c00065{font-family:ff4_c00065;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00065;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c00065{font-family:ff5_c00065;line-height:1.219238;font-style: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;}
.ls4_c00065{letter-spacing:0.000000px;}
.ls2_c00065{letter-spacing:5.100000px;}
.ls0_c00065{letter-spacing:8.400000px;}
.ls3_c00065{letter-spacing:10.500000px;}
.ls1_c00065{letter-spacing:224.550000px;}
.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;}
}
.ws1_c00065{word-spacing:-67.686000px;}
.ws2_c00065{word-spacing:-20.250000px;}
.ws0_c00065{word-spacing:-17.352000px;}
.ws3_c00065{word-spacing:0.000000px;}
._18_c00065{margin-left:-20.211000px;}
._1a_c00065{margin-left:-16.584000px;}
._15_c00065{margin-left:-15.309000px;}
._19_c00065{margin-left:-13.701000px;}
._1e_c00065{margin-left:-11.745000px;}
._d_c00065{margin-left:-10.611000px;}
._16_c00065{margin-left:-8.667000px;}
._5_c00065{margin-left:-7.371000px;}
._1d_c00065{margin-left:-6.318000px;}
._9_c00065{margin-left:-5.022000px;}
._a_c00065{margin-left:-3.726000px;}
._2_c00065{margin-left:-1.944000px;}
._3_c00065{width:1.134000px;}
._4_c00065{width:2.754000px;}
._c_c00065{width:4.050000px;}
._7_c00065{width:5.427000px;}
._b_c00065{width:6.561000px;}
._1_c00065{width:8.100000px;}
._e_c00065{width:9.315000px;}
._6_c00065{width:10.935000px;}
._0_c00065{width:12.312000px;}
._14_c00065{width:13.446000px;}
._8_c00065{width:16.038000px;}
._f_c00065{width:24.264000px;}
._1b_c00065{width:33.372000px;}
._1c_c00065{width:34.830000px;}
._17_c00065{width:67.455000px;}
._12_c00065{width:186.969000px;}
._13_c00065{width:238.788000px;}
._10_c00065{width:310.896000px;}
._11_c00065{width:619.230000px;}
.fc2_c00065{color:transparent;}
.fc1_c00065{color:rgb(128,128,128);}
.fc0_c00065{color:rgb(0,0,0);}
.fs4_c00065{font-size:48.000000px;}
.fs3_c00065{font-size:66.000000px;}
.fs1_c00065{font-size:72.000000px;}
.fs0_c00065{font-size:81.000000px;}
.fs2_c00065{font-size:87.000000px;}
.y0_c00065{bottom:0.000000px;}
.y25_c00065{bottom:3.105000px;}
.y24_c00065{bottom:7.228357px;}
.y23_c00065{bottom:61.530000px;}
.y22_c00065{bottom:87.030000px;}
.y21_c00065{bottom:112.830000px;}
.y20_c00065{bottom:137.730000px;}
.y1f_c00065{bottom:162.630000px;}
.y1e_c00065{bottom:187.380000px;}
.y1d_c00065{bottom:211.980000px;}
.y1c_c00065{bottom:236.880000px;}
.y1b_c00065{bottom:261.330000px;}
.y1a_c00065{bottom:286.530000px;}
.y19_c00065{bottom:310.830000px;}
.y18_c00065{bottom:335.130000px;}
.y17_c00065{bottom:359.730000px;}
.y16_c00065{bottom:384.180000px;}
.y15_c00065{bottom:408.330000px;}
.y14_c00065{bottom:432.630000px;}
.y13_c00065{bottom:456.930000px;}
.y12_c00065{bottom:480.630000px;}
.y11_c00065{bottom:504.630000px;}
.y10_c00065{bottom:530.280000px;}
.yf_c00065{bottom:554.130000px;}
.ye_c00065{bottom:579.180000px;}
.yd_c00065{bottom:604.230000px;}
.yc_c00065{bottom:628.380000px;}
.yb_c00065{bottom:652.080000px;}
.ya_c00065{bottom:677.730000px;}
.y9_c00065{bottom:701.430000px;}
.y8_c00065{bottom:726.930000px;}
.y7_c00065{bottom:751.230000px;}
.y6_c00065{bottom:773.580000px;}
.y5_c00065{bottom:801.630000px;}
.y4_c00065{bottom:824.280000px;}
.y3_c00065{bottom:848.880000px;}
.y2_c00065{bottom:873.180000px;}
.y1_c00065{bottom:897.480000px;}
.h4_c00065{height:13.200074px;}
.h5_c00065{height:43.804688px;}
.h1_c00065{height:79.497070px;}
.h2_c00065{height:84.269531px;}
.h3_c00065{height:91.176000px;}
.h0_c00065{height:995.250000px;}
.w2_c00065{width:104.875500px;}
.w0_c00065{width:667.425000px;}
.w1_c00065{width:667.500000px;}
.x0_c00065{left:0.000000px;}
.x7_c00065{left:27.000000px;}
.x3_c00065{left:28.800000px;}
.x4_c00065{left:45.600000px;}
.x8_c00065{left:102.300000px;}
.x6_c00065{left:119.850000px;}
.x5_c00065{left:120.900000px;}
.x2_c00065{left:121.950000px;}
.x1_c00065{left:123.450000px;}
.xa_c00065{left:285.526749px;}
.x9_c00065{left:546.150000px;}
@media print{
.v0_c00065{vertical-align:0.000000pt;}
.ls4_c00065{letter-spacing:0.000000pt;}
.ls2_c00065{letter-spacing:4.533333pt;}
.ls0_c00065{letter-spacing:7.466667pt;}
.ls3_c00065{letter-spacing:9.333333pt;}
.ls1_c00065{letter-spacing:199.600000pt;}
.ws1_c00065{word-spacing:-60.165333pt;}
.ws2_c00065{word-spacing:-18.000000pt;}
.ws0_c00065{word-spacing:-15.424000pt;}
.ws3_c00065{word-spacing:0.000000pt;}
._18_c00065{margin-left:-17.965333pt;}
._1a_c00065{margin-left:-14.741333pt;}
._15_c00065{margin-left:-13.608000pt;}
._19_c00065{margin-left:-12.178667pt;}
._1e_c00065{margin-left:-10.440000pt;}
._d_c00065{margin-left:-9.432000pt;}
._16_c00065{margin-left:-7.704000pt;}
._5_c00065{margin-left:-6.552000pt;}
._1d_c00065{margin-left:-5.616000pt;}
._9_c00065{margin-left:-4.464000pt;}
._a_c00065{margin-left:-3.312000pt;}
._2_c00065{margin-left:-1.728000pt;}
._3_c00065{width:1.008000pt;}
._4_c00065{width:2.448000pt;}
._c_c00065{width:3.600000pt;}
._7_c00065{width:4.824000pt;}
._b_c00065{width:5.832000pt;}
._1_c00065{width:7.200000pt;}
._e_c00065{width:8.280000pt;}
._6_c00065{width:9.720000pt;}
._0_c00065{width:10.944000pt;}
._14_c00065{width:11.952000pt;}
._8_c00065{width:14.256000pt;}
._f_c00065{width:21.568000pt;}
._1b_c00065{width:29.664000pt;}
._1c_c00065{width:30.960000pt;}
._17_c00065{width:59.960000pt;}
._12_c00065{width:166.194667pt;}
._13_c00065{width:212.256000pt;}
._10_c00065{width:276.352000pt;}
._11_c00065{width:550.426667pt;}
.fs4_c00065{font-size:42.666667pt;}
.fs3_c00065{font-size:58.666667pt;}
.fs1_c00065{font-size:64.000000pt;}
.fs0_c00065{font-size:72.000000pt;}
.fs2_c00065{font-size:77.333333pt;}
.y0_c00065{bottom:0.000000pt;}
.y25_c00065{bottom:2.760000pt;}
.y24_c00065{bottom:6.425206pt;}
.y23_c00065{bottom:54.693333pt;}
.y22_c00065{bottom:77.360000pt;}
.y21_c00065{bottom:100.293333pt;}
.y20_c00065{bottom:122.426667pt;}
.y1f_c00065{bottom:144.560000pt;}
.y1e_c00065{bottom:166.560000pt;}
.y1d_c00065{bottom:188.426667pt;}
.y1c_c00065{bottom:210.560000pt;}
.y1b_c00065{bottom:232.293333pt;}
.y1a_c00065{bottom:254.693333pt;}
.y19_c00065{bottom:276.293333pt;}
.y18_c00065{bottom:297.893333pt;}
.y17_c00065{bottom:319.760000pt;}
.y16_c00065{bottom:341.493333pt;}
.y15_c00065{bottom:362.960000pt;}
.y14_c00065{bottom:384.560000pt;}
.y13_c00065{bottom:406.160000pt;}
.y12_c00065{bottom:427.226667pt;}
.y11_c00065{bottom:448.560000pt;}
.y10_c00065{bottom:471.360000pt;}
.yf_c00065{bottom:492.560000pt;}
.ye_c00065{bottom:514.826667pt;}
.yd_c00065{bottom:537.093333pt;}
.yc_c00065{bottom:558.560000pt;}
.yb_c00065{bottom:579.626667pt;}
.ya_c00065{bottom:602.426667pt;}
.y9_c00065{bottom:623.493333pt;}
.y8_c00065{bottom:646.160000pt;}
.y7_c00065{bottom:667.760000pt;}
.y6_c00065{bottom:687.626667pt;}
.y5_c00065{bottom:712.560000pt;}
.y4_c00065{bottom:732.693333pt;}
.y3_c00065{bottom:754.560000pt;}
.y2_c00065{bottom:776.160000pt;}
.y1_c00065{bottom:797.760000pt;}
.h4_c00065{height:11.733399pt;}
.h5_c00065{height:38.937500pt;}
.h1_c00065{height:70.664062pt;}
.h2_c00065{height:74.906250pt;}
.h3_c00065{height:81.045333pt;}
.h0_c00065{height:884.666667pt;}
.w2_c00065{width:93.222667pt;}
.w0_c00065{width:593.266667pt;}
.w1_c00065{width:593.333333pt;}
.x0_c00065{left:0.000000pt;}
.x7_c00065{left:24.000000pt;}
.x3_c00065{left:25.600000pt;}
.x4_c00065{left:40.533333pt;}
.x8_c00065{left:90.933333pt;}
.x6_c00065{left:106.533333pt;}
.x5_c00065{left:107.466667pt;}
.x2_c00065{left:108.400000pt;}
.x1_c00065{left:109.733333pt;}
.xa_c00065{left:253.801554pt;}
.x9_c00065{left:485.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_223ed43f5d58b53fb3ca342a.woff2')format("woff");}.ff1_c00066{font-family:ff1_c00066;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00066;src:url('chunks/assets/font_33511f3cdfef00e00f9de9f4.woff2')format("woff");}.ff2_c00066{font-family:ff2_c00066;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00066;src:url('chunks/assets/font_0874c56242dd27c1e2a4f9c9.woff2')format("woff");}.ff3_c00066{font-family:ff3_c00066;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00066;src:url('chunks/assets/font_f260812e65f8bf0fc253edef.woff2')format("woff");}.ff4_c00066{font-family:ff4_c00066;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00066;src:url('chunks/assets/font_2d3427b6ead3807baeb12757.woff2')format("woff");}.ff5_c00066{font-family:ff5_c00066;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00066;src:url('chunks/assets/font_26b238f49222fb4eba743085.woff2')format("woff");}.ff6_c00066{font-family:ff6_c00066;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00066;src:url('chunks/assets/font_1222cb4eee9644d57e6722aa.woff2')format("woff");}.ff7_c00066{font-family:ff7_c00066;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00066;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff8_c00066{font-family:ff8_c00066;line-height:1.219238;font-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_c00066{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m0_c00066{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00066{vertical-align:0.000000px;}
.v1_c00066{vertical-align:153.600000px;}
.ls2_c00066{letter-spacing:-3.000000px;}
.ls1_c00066{letter-spacing:0.000000px;}
.ls0_c00066{letter-spacing:23.400000px;}
.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;}
}
.ws4_c00066{word-spacing:-79.299000px;}
.ws1_c00066{word-spacing:-67.686000px;}
.ws0_c00066{word-spacing:-23.859000px;}
.ws3_c00066{word-spacing:-20.250000px;}
.ws2_c00066{word-spacing:-17.352000px;}
.ws5_c00066{word-spacing:0.000000px;}
._1c_c00066{margin-left:-43.038000px;}
._16_c00066{margin-left:-20.412000px;}
._1b_c00066{margin-left:-18.885000px;}
._8_c00066{margin-left:-15.840000px;}
._3_c00066{margin-left:-11.103000px;}
._17_c00066{margin-left:-9.438000px;}
._2_c00066{margin-left:-8.130000px;}
._11_c00066{margin-left:-6.456000px;}
._5_c00066{margin-left:-5.247000px;}
._9_c00066{margin-left:-3.960000px;}
._0_c00066{margin-left:-2.673000px;}
._1_c00066{margin-left:-1.485000px;}
._c_c00066{width:1.458000px;}
._d_c00066{width:3.159000px;}
._7_c00066{width:4.356000px;}
._f_c00066{width:6.237000px;}
._10_c00066{width:8.181000px;}
._6_c00066{width:9.405000px;}
._e_c00066{width:11.016000px;}
._18_c00066{width:12.081000px;}
._4_c00066{width:13.563000px;}
._1a_c00066{width:14.976000px;}
._12_c00066{width:17.184000px;}
._19_c00066{width:18.270000px;}
._1d_c00066{width:20.628000px;}
._15_c00066{width:22.599000px;}
._14_c00066{width:24.030000px;}
._13_c00066{width:25.650000px;}
._b_c00066{width:34.749000px;}
._1e_c00066{width:44.280000px;}
._a_c00066{width:218.196000px;}
._1f_c00066{width:373.761000px;}
.fc2_c00066{color:transparent;}
.fc1_c00066{color:rgb(128,128,128);}
.fc0_c00066{color:rgb(0,0,0);}
.fs8_c00066{font-size:48.000000px;}
.fs3_c00066{font-size:72.000000px;}
.fs5_c00066{font-size:75.000000px;}
.fs2_c00066{font-size:81.000000px;}
.fs4_c00066{font-size:87.000000px;}
.fs0_c00066{font-size:99.000000px;}
.fs7_c00066{font-size:108.000000px;}
.fs1_c00066{font-size:132.000000px;}
.fs6_c00066{font-size:297.000000px;}
.y0_c00066{bottom:0.000000px;}
.y26_c00066{bottom:3.105000px;}
.y25_c00066{bottom:7.228371px;}
.y24_c00066{bottom:62.115000px;}
.y23_c00066{bottom:85.365000px;}
.y21_c00066{bottom:97.065000px;}
.y22_c00066{bottom:110.715000px;}
.y20_c00066{bottom:160.065000px;}
.y1f_c00066{bottom:183.915000px;}
.y1e_c00066{bottom:208.665000px;}
.y1d_c00066{bottom:233.865000px;}
.y1c_c00066{bottom:258.165000px;}
.y1b_c00066{bottom:282.465000px;}
.y1a_c00066{bottom:307.515000px;}
.y19_c00066{bottom:331.065000px;}
.y18_c00066{bottom:355.365000px;}
.y17_c00066{bottom:379.665000px;}
.y16_c00066{bottom:403.065000px;}
.y15_c00066{bottom:427.665000px;}
.y14_c00066{bottom:451.665000px;}
.y13_c00066{bottom:476.265000px;}
.y12_c00066{bottom:499.965000px;}
.y11_c00066{bottom:524.265000px;}
.y10_c00066{bottom:548.115000px;}
.yf_c00066{bottom:573.165000px;}
.ye_c00066{bottom:597.015000px;}
.yd_c00066{bottom:621.315000px;}
.yc_c00066{bottom:644.715000px;}
.yb_c00066{bottom:669.015000px;}
.ya_c00066{bottom:694.665000px;}
.y9_c00066{bottom:717.915000px;}
.y8_c00066{bottom:742.515000px;}
.y7_c00066{bottom:766.815000px;}
.y6_c00066{bottom:791.415000px;}
.y5_c00066{bottom:815.865000px;}
.y4_c00066{bottom:840.165000px;}
.y3_c00066{bottom:864.465000px;}
.y2_c00066{bottom:890.115000px;}
.y1_c00066{bottom:924.765000px;}
.h9_c00066{height:13.200074px;}
.ha_c00066{height:43.804688px;}
.h6_c00066{height:73.571777px;}
.h3_c00066{height:79.497070px;}
.h5_c00066{height:84.269531px;}
.h4_c00066{height:91.176000px;}
.h8_c00066{height:108.843750px;}
.h2_c00066{height:167.126953px;}
.h7_c00066{height:316.899000px;}
.h0_c00066{height:989.025000px;}
.h1_c00066{height:989.250000px;}
.w1_c00066{width:104.875500px;}
.w0_c00066{width:672.000000px;}
.x0_c00066{left:0.000000px;}
.xb_c00066{left:49.950000px;}
.xa_c00066{left:51.300000px;}
.x8_c00066{left:52.650000px;}
.x9_c00066{left:53.700000px;}
.x7_c00066{left:55.050000px;}
.x5_c00066{left:57.000000px;}
.x4_c00066{left:58.950000px;}
.x3_c00066{left:60.000000px;}
.x2_c00066{left:61.650000px;}
.xc_c00066{left:63.750000px;}
.x6_c00066{left:66.150000px;}
.xe_c00066{left:103.650000px;}
.xd_c00066{left:109.350000px;}
.x1_c00066{left:139.050000px;}
.x10_c00066{left:287.814240px;}
.xf_c00066{left:372.300000px;}
@media print{
.v0_c00066{vertical-align:0.000000pt;}
.v1_c00066{vertical-align:136.533333pt;}
.ls2_c00066{letter-spacing:-2.666667pt;}
.ls1_c00066{letter-spacing:0.000000pt;}
.ls0_c00066{letter-spacing:20.800000pt;}
.ws4_c00066{word-spacing:-70.488000pt;}
.ws1_c00066{word-spacing:-60.165333pt;}
.ws0_c00066{word-spacing:-21.208000pt;}
.ws3_c00066{word-spacing:-18.000000pt;}
.ws2_c00066{word-spacing:-15.424000pt;}
.ws5_c00066{word-spacing:0.000000pt;}
._1c_c00066{margin-left:-38.256000pt;}
._16_c00066{margin-left:-18.144000pt;}
._1b_c00066{margin-left:-16.786667pt;}
._8_c00066{margin-left:-14.080000pt;}
._3_c00066{margin-left:-9.869333pt;}
._17_c00066{margin-left:-8.389333pt;}
._2_c00066{margin-left:-7.226667pt;}
._11_c00066{margin-left:-5.738667pt;}
._5_c00066{margin-left:-4.664000pt;}
._9_c00066{margin-left:-3.520000pt;}
._0_c00066{margin-left:-2.376000pt;}
._1_c00066{margin-left:-1.320000pt;}
._c_c00066{width:1.296000pt;}
._d_c00066{width:2.808000pt;}
._7_c00066{width:3.872000pt;}
._f_c00066{width:5.544000pt;}
._10_c00066{width:7.272000pt;}
._6_c00066{width:8.360000pt;}
._e_c00066{width:9.792000pt;}
._18_c00066{width:10.738667pt;}
._4_c00066{width:12.056000pt;}
._1a_c00066{width:13.312000pt;}
._12_c00066{width:15.274667pt;}
._19_c00066{width:16.240000pt;}
._1d_c00066{width:18.336000pt;}
._15_c00066{width:20.088000pt;}
._14_c00066{width:21.360000pt;}
._13_c00066{width:22.800000pt;}
._b_c00066{width:30.888000pt;}
._1e_c00066{width:39.360000pt;}
._a_c00066{width:193.952000pt;}
._1f_c00066{width:332.232000pt;}
.fs8_c00066{font-size:42.666667pt;}
.fs3_c00066{font-size:64.000000pt;}
.fs5_c00066{font-size:66.666667pt;}
.fs2_c00066{font-size:72.000000pt;}
.fs4_c00066{font-size:77.333333pt;}
.fs0_c00066{font-size:88.000000pt;}
.fs7_c00066{font-size:96.000000pt;}
.fs1_c00066{font-size:117.333333pt;}
.fs6_c00066{font-size:264.000000pt;}
.y0_c00066{bottom:0.000000pt;}
.y26_c00066{bottom:2.760000pt;}
.y25_c00066{bottom:6.425219pt;}
.y24_c00066{bottom:55.213333pt;}
.y23_c00066{bottom:75.880000pt;}
.y21_c00066{bottom:86.280000pt;}
.y22_c00066{bottom:98.413333pt;}
.y20_c00066{bottom:142.280000pt;}
.y1f_c00066{bottom:163.480000pt;}
.y1e_c00066{bottom:185.480000pt;}
.y1d_c00066{bottom:207.880000pt;}
.y1c_c00066{bottom:229.480000pt;}
.y1b_c00066{bottom:251.080000pt;}
.y1a_c00066{bottom:273.346667pt;}
.y19_c00066{bottom:294.280000pt;}
.y18_c00066{bottom:315.880000pt;}
.y17_c00066{bottom:337.480000pt;}
.y16_c00066{bottom:358.280000pt;}
.y15_c00066{bottom:380.146667pt;}
.y14_c00066{bottom:401.480000pt;}
.y13_c00066{bottom:423.346667pt;}
.y12_c00066{bottom:444.413333pt;}
.y11_c00066{bottom:466.013333pt;}
.y10_c00066{bottom:487.213333pt;}
.yf_c00066{bottom:509.480000pt;}
.ye_c00066{bottom:530.680000pt;}
.yd_c00066{bottom:552.280000pt;}
.yc_c00066{bottom:573.080000pt;}
.yb_c00066{bottom:594.680000pt;}
.ya_c00066{bottom:617.480000pt;}
.y9_c00066{bottom:638.146667pt;}
.y8_c00066{bottom:660.013333pt;}
.y7_c00066{bottom:681.613333pt;}
.y6_c00066{bottom:703.480000pt;}
.y5_c00066{bottom:725.213333pt;}
.y4_c00066{bottom:746.813333pt;}
.y3_c00066{bottom:768.413333pt;}
.y2_c00066{bottom:791.213333pt;}
.y1_c00066{bottom:822.013333pt;}
.h9_c00066{height:11.733399pt;}
.ha_c00066{height:38.937500pt;}
.h6_c00066{height:65.397135pt;}
.h3_c00066{height:70.664062pt;}
.h5_c00066{height:74.906250pt;}
.h4_c00066{height:81.045333pt;}
.h8_c00066{height:96.750000pt;}
.h2_c00066{height:148.557292pt;}
.h7_c00066{height:281.688000pt;}
.h0_c00066{height:879.133333pt;}
.h1_c00066{height:879.333333pt;}
.w1_c00066{width:93.222667pt;}
.w0_c00066{width:597.333333pt;}
.x0_c00066{left:0.000000pt;}
.xb_c00066{left:44.400000pt;}
.xa_c00066{left:45.600000pt;}
.x8_c00066{left:46.800000pt;}
.x9_c00066{left:47.733333pt;}
.x7_c00066{left:48.933333pt;}
.x5_c00066{left:50.666667pt;}
.x4_c00066{left:52.400000pt;}
.x3_c00066{left:53.333333pt;}
.x2_c00066{left:54.800000pt;}
.xc_c00066{left:56.666667pt;}
.x6_c00066{left:58.800000pt;}
.xe_c00066{left:92.133333pt;}
.xd_c00066{left:97.200000pt;}
.x1_c00066{left:123.600000pt;}
.x10_c00066{left:255.834880pt;}
.xf_c00066{left:330.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_10ab2bcd60a876c3b5cc7366.woff2')format("woff");}.ff1_c00067{font-family:ff1_c00067;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00067;src:url('chunks/assets/font_99104937d5715a89c7698d52.woff2')format("woff");}.ff2_c00067{font-family:ff2_c00067;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00067;src:url('chunks/assets/font_f988bea5c591d2df3c707158.woff2')format("woff");}.ff3_c00067{font-family:ff3_c00067;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00067;src:url('chunks/assets/font_6683d8bc6322b0699f10c2c3.woff2')format("woff");}.ff4_c00067{font-family:ff4_c00067;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00067;src:url('chunks/assets/font_dad5a18c372cb1d9ce7c423f.woff2')format("woff");}.ff5_c00067{font-family:ff5_c00067;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00067;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c00067{font-family:ff6_c00067;line-height:1.219238;font-style: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;}
.v1_c00067{vertical-align:65.400000px;}
.ls6_c00067{letter-spacing:-6.000000px;}
.ls4_c00067{letter-spacing:-3.000000px;}
.ls5_c00067{letter-spacing:0.000000px;}
.ls1_c00067{letter-spacing:0.900000px;}
.ls0_c00067{letter-spacing:1.440000px;}
.ls2_c00067{letter-spacing:2.700000px;}
.ls3_c00067{letter-spacing:27.648000px;}
.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:-25.500000px;}
.ws3_c00067{word-spacing:-20.250000px;}
.ws2_c00067{word-spacing:-17.352000px;}
.ws4_c00067{word-spacing:0.000000px;}
.ws1_c00067{word-spacing:14.259000px;}
._1a_c00067{margin-left:-42.774000px;}
._18_c00067{margin-left:-21.660000px;}
._0_c00067{margin-left:-14.256000px;}
._14_c00067{margin-left:-12.294000px;}
._13_c00067{margin-left:-11.025000px;}
._15_c00067{margin-left:-9.765000px;}
._12_c00067{margin-left:-8.031000px;}
._6_c00067{margin-left:-6.534000px;}
._b_c00067{margin-left:-4.725000px;}
._c_c00067{margin-left:-3.033000px;}
._8_c00067{margin-left:-1.782000px;}
._3_c00067{width:1.683000px;}
._9_c00067{width:2.853000px;}
._a_c00067{width:4.050000px;}
._d_c00067{width:5.508000px;}
._e_c00067{width:6.516000px;}
._f_c00067{width:7.722000px;}
._4_c00067{width:9.504000px;}
._7_c00067{width:10.692000px;}
._1_c00067{width:12.276000px;}
._16_c00067{width:13.986000px;}
._5_c00067{width:15.939000px;}
._10_c00067{width:17.505000px;}
._11_c00067{width:19.509000px;}
._17_c00067{width:22.248000px;}
._19_c00067{width:24.492000px;}
._1b_c00067{width:82.296000px;}
._1c_c00067{width:102.978000px;}
._2_c00067{width:226.440000px;}
.fc2_c00067{color:transparent;}
.fc1_c00067{color:rgb(128,128,128);}
.fc0_c00067{color:rgb(0,0,0);}
.fs9_c00067{font-size:48.000000px;}
.fs4_c00067{font-size:57.000000px;}
.fs6_c00067{font-size:63.000000px;}
.fs3_c00067{font-size:72.000000px;}
.fs5_c00067{font-size:78.000000px;}
.fs2_c00067{font-size:81.000000px;}
.fs7_c00067{font-size:87.000000px;}
.fs1_c00067{font-size:99.000000px;}
.fs0_c00067{font-size:132.000000px;}
.fs8_c00067{font-size:144.000000px;}
.y0_c00067{bottom:0.000000px;}
.y26_c00067{bottom:3.105000px;}
.y25_c00067{bottom:7.228357px;}
.y23_c00067{bottom:84.780000px;}
.y22_c00067{bottom:109.680000px;}
.y21_c00067{bottom:136.680000px;}
.y20_c00067{bottom:145.380000px;}
.y1f_c00067{bottom:186.330000px;}
.y1e_c00067{bottom:211.380000px;}
.y1d_c00067{bottom:235.230000px;}
.y24_c00067{bottom:257.280000px;}
.y1c_c00067{bottom:260.880000px;}
.y1b_c00067{bottom:284.880000px;}
.y1a_c00067{bottom:309.480000px;}
.y19_c00067{bottom:334.080000px;}
.y18_c00067{bottom:358.380000px;}
.y17_c00067{bottom:382.680000px;}
.y16_c00067{bottom:407.130000px;}
.y15_c00067{bottom:431.430000px;}
.y14_c00067{bottom:455.730000px;}
.y13_c00067{bottom:480.630000px;}
.y12_c00067{bottom:504.930000px;}
.y11_c00067{bottom:529.230000px;}
.y10_c00067{bottom:553.530000px;}
.yf_c00067{bottom:578.130000px;}
.ye_c00067{bottom:602.580000px;}
.yd_c00067{bottom:627.180000px;}
.yc_c00067{bottom:651.780000px;}
.yb_c00067{bottom:676.080000px;}
.ya_c00067{bottom:700.980000px;}
.y9_c00067{bottom:725.730000px;}
.y8_c00067{bottom:750.930000px;}
.y7_c00067{bottom:775.530000px;}
.y6_c00067{bottom:800.580000px;}
.y5_c00067{bottom:824.580000px;}
.y4_c00067{bottom:849.180000px;}
.y3_c00067{bottom:872.880000px;}
.y2_c00067{bottom:897.180000px;}
.y1_c00067{bottom:931.830000px;}
.h9_c00067{height:13.200074px;}
.ha_c00067{height:43.804688px;}
.h7_c00067{height:66.713379px;}
.h5_c00067{height:72.168457px;}
.h3_c00067{height:79.497070px;}
.h2_c00067{height:84.269531px;}
.h6_c00067{height:91.176000px;}
.h4_c00067{height:98.756836px;}
.h8_c00067{height:164.156836px;}
.h1_c00067{height:167.126953px;}
.h0_c00067{height:995.250000px;}
.w2_c00067{width:104.875500px;}
.w0_c00067{width:667.425000px;}
.w1_c00067{width:667.500000px;}
.x0_c00067{left:0.000000px;}
.x10_c00067{left:60.000000px;}
.xe_c00067{left:117.150000px;}
.x4_c00067{left:137.400000px;}
.x2_c00067{left:140.700000px;}
.x1_c00067{left:142.650000px;}
.x3_c00067{left:145.350000px;}
.x5_c00067{left:146.400000px;}
.x6_c00067{left:148.200000px;}
.x7_c00067{left:149.550000px;}
.x8_c00067{left:150.900000px;}
.x9_c00067{left:152.850000px;}
.xf_c00067{left:154.200000px;}
.xc_c00067{left:155.850000px;}
.xd_c00067{left:162.300000px;}
.xa_c00067{left:177.750000px;}
.xb_c00067{left:181.800000px;}
.x11_c00067{left:285.526749px;}
@media print{
.v0_c00067{vertical-align:0.000000pt;}
.v1_c00067{vertical-align:58.133333pt;}
.ls6_c00067{letter-spacing:-5.333333pt;}
.ls4_c00067{letter-spacing:-2.666667pt;}
.ls5_c00067{letter-spacing:0.000000pt;}
.ls1_c00067{letter-spacing:0.800000pt;}
.ls0_c00067{letter-spacing:1.280000pt;}
.ls2_c00067{letter-spacing:2.400000pt;}
.ls3_c00067{letter-spacing:24.576000pt;}
.ws0_c00067{word-spacing:-22.666667pt;}
.ws3_c00067{word-spacing:-18.000000pt;}
.ws2_c00067{word-spacing:-15.424000pt;}
.ws4_c00067{word-spacing:0.000000pt;}
.ws1_c00067{word-spacing:12.674667pt;}
._1a_c00067{margin-left:-38.021333pt;}
._18_c00067{margin-left:-19.253333pt;}
._0_c00067{margin-left:-12.672000pt;}
._14_c00067{margin-left:-10.928000pt;}
._13_c00067{margin-left:-9.800000pt;}
._15_c00067{margin-left:-8.680000pt;}
._12_c00067{margin-left:-7.138667pt;}
._6_c00067{margin-left:-5.808000pt;}
._b_c00067{margin-left:-4.200000pt;}
._c_c00067{margin-left:-2.696000pt;}
._8_c00067{margin-left:-1.584000pt;}
._3_c00067{width:1.496000pt;}
._9_c00067{width:2.536000pt;}
._a_c00067{width:3.600000pt;}
._d_c00067{width:4.896000pt;}
._e_c00067{width:5.792000pt;}
._f_c00067{width:6.864000pt;}
._4_c00067{width:8.448000pt;}
._7_c00067{width:9.504000pt;}
._1_c00067{width:10.912000pt;}
._16_c00067{width:12.432000pt;}
._5_c00067{width:14.168000pt;}
._10_c00067{width:15.560000pt;}
._11_c00067{width:17.341333pt;}
._17_c00067{width:19.776000pt;}
._19_c00067{width:21.770667pt;}
._1b_c00067{width:73.152000pt;}
._1c_c00067{width:91.536000pt;}
._2_c00067{width:201.280000pt;}
.fs9_c00067{font-size:42.666667pt;}
.fs4_c00067{font-size:50.666667pt;}
.fs6_c00067{font-size:56.000000pt;}
.fs3_c00067{font-size:64.000000pt;}
.fs5_c00067{font-size:69.333333pt;}
.fs2_c00067{font-size:72.000000pt;}
.fs7_c00067{font-size:77.333333pt;}
.fs1_c00067{font-size:88.000000pt;}
.fs0_c00067{font-size:117.333333pt;}
.fs8_c00067{font-size:128.000000pt;}
.y0_c00067{bottom:0.000000pt;}
.y26_c00067{bottom:2.760000pt;}
.y25_c00067{bottom:6.425206pt;}
.y23_c00067{bottom:75.360000pt;}
.y22_c00067{bottom:97.493333pt;}
.y21_c00067{bottom:121.493333pt;}
.y20_c00067{bottom:129.226667pt;}
.y1f_c00067{bottom:165.626667pt;}
.y1e_c00067{bottom:187.893333pt;}
.y1d_c00067{bottom:209.093333pt;}
.y24_c00067{bottom:228.693333pt;}
.y1c_c00067{bottom:231.893333pt;}
.y1b_c00067{bottom:253.226667pt;}
.y1a_c00067{bottom:275.093333pt;}
.y19_c00067{bottom:296.960000pt;}
.y18_c00067{bottom:318.560000pt;}
.y17_c00067{bottom:340.160000pt;}
.y16_c00067{bottom:361.893333pt;}
.y15_c00067{bottom:383.493333pt;}
.y14_c00067{bottom:405.093333pt;}
.y13_c00067{bottom:427.226667pt;}
.y12_c00067{bottom:448.826667pt;}
.y11_c00067{bottom:470.426667pt;}
.y10_c00067{bottom:492.026667pt;}
.yf_c00067{bottom:513.893333pt;}
.ye_c00067{bottom:535.626667pt;}
.yd_c00067{bottom:557.493333pt;}
.yc_c00067{bottom:579.360000pt;}
.yb_c00067{bottom:600.960000pt;}
.ya_c00067{bottom:623.093333pt;}
.y9_c00067{bottom:645.093333pt;}
.y8_c00067{bottom:667.493333pt;}
.y7_c00067{bottom:689.360000pt;}
.y6_c00067{bottom:711.626667pt;}
.y5_c00067{bottom:732.960000pt;}
.y4_c00067{bottom:754.826667pt;}
.y3_c00067{bottom:775.893333pt;}
.y2_c00067{bottom:797.493333pt;}
.y1_c00067{bottom:828.293333pt;}
.h9_c00067{height:11.733399pt;}
.ha_c00067{height:38.937500pt;}
.h7_c00067{height:59.300781pt;}
.h5_c00067{height:64.149740pt;}
.h3_c00067{height:70.664062pt;}
.h2_c00067{height:74.906250pt;}
.h6_c00067{height:81.045333pt;}
.h4_c00067{height:87.783854pt;}
.h8_c00067{height:145.917188pt;}
.h1_c00067{height:148.557292pt;}
.h0_c00067{height:884.666667pt;}
.w2_c00067{width:93.222667pt;}
.w0_c00067{width:593.266667pt;}
.w1_c00067{width:593.333333pt;}
.x0_c00067{left:0.000000pt;}
.x10_c00067{left:53.333333pt;}
.xe_c00067{left:104.133333pt;}
.x4_c00067{left:122.133333pt;}
.x2_c00067{left:125.066667pt;}
.x1_c00067{left:126.800000pt;}
.x3_c00067{left:129.200000pt;}
.x5_c00067{left:130.133333pt;}
.x6_c00067{left:131.733333pt;}
.x7_c00067{left:132.933333pt;}
.x8_c00067{left:134.133333pt;}
.x9_c00067{left:135.866667pt;}
.xf_c00067{left:137.066667pt;}
.xc_c00067{left:138.533333pt;}
.xd_c00067{left:144.266667pt;}
.xa_c00067{left:158.000000pt;}
.xb_c00067{left:161.600000pt;}
.x11_c00067{left:253.801554pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_85a42e7675b1dbb6fe3a3940.woff2')format("woff");}.ff1_c00068{font-family:ff1_c00068;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00068;src:url('chunks/assets/font_0567c67d86bca2844477ff7d.woff2')format("woff");}.ff2_c00068{font-family:ff2_c00068;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00068;src:url('chunks/assets/font_95b7508b87c7a88ee7ef83a1.woff2')format("woff");}.ff3_c00068{font-family:ff3_c00068;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00068;src:url('chunks/assets/font_7b4f08c80b06f9638584e804.woff2')format("woff");}.ff4_c00068{font-family:ff4_c00068;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00068;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff5_c00068{font-family:ff5_c00068;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00068;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c00068{font-family:ff6_c00068;line-height:1.219238;font-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_c00068{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m0_c00068{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00068{vertical-align:0.000000px;}
.ls3_c00068{letter-spacing:0.000000px;}
.ls0_c00068{letter-spacing:0.900000px;}
.ls1_c00068{letter-spacing:8.568000px;}
.ls2_c00068{letter-spacing:9.300000px;}
.sc__c00068{text-shadow:none;}
.sc0_c00068{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00068{-webkit-text-stroke:0px transparent;}
.sc0_c00068{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00068{word-spacing:-67.686000px;}
.ws0_c00068{word-spacing:-17.352000px;}
.ws2_c00068{word-spacing:0.000000px;}
._1d_c00068{margin-left:-23.691000px;}
._2_c00068{margin-left:-21.546000px;}
._11_c00068{margin-left:-18.360000px;}
._0_c00068{margin-left:-16.443000px;}
._20_c00068{margin-left:-14.094000px;}
._1c_c00068{margin-left:-11.946000px;}
._d_c00068{margin-left:-10.731000px;}
._1e_c00068{margin-left:-9.570000px;}
._10_c00068{margin-left:-8.346000px;}
._14_c00068{margin-left:-6.861000px;}
._3_c00068{margin-left:-5.235000px;}
._a_c00068{margin-left:-3.735000px;}
._f_c00068{margin-left:-2.562000px;}
._b_c00068{margin-left:-1.407000px;}
._4_c00068{width:1.863000px;}
._5_c00068{width:3.159000px;}
._9_c00068{width:4.869000px;}
._7_c00068{width:5.964000px;}
._c_c00068{width:7.242000px;}
._1_c00068{width:8.829000px;}
._6_c00068{width:10.014000px;}
._8_c00068{width:11.856000px;}
._e_c00068{width:13.527000px;}
._17_c00068{width:16.020000px;}
._23_c00068{width:17.139000px;}
._25_c00068{width:19.197000px;}
._19_c00068{width:26.832000px;}
._21_c00068{width:28.590000px;}
._15_c00068{width:30.123000px;}
._16_c00068{width:32.007000px;}
._22_c00068{width:33.240000px;}
._24_c00068{width:36.855000px;}
._1a_c00068{width:42.147000px;}
._26_c00068{width:43.671000px;}
._1f_c00068{width:46.053000px;}
._12_c00068{width:91.185000px;}
._1b_c00068{width:201.246000px;}
._13_c00068{width:207.978000px;}
._27_c00068{width:278.553000px;}
._18_c00068{width:1535.679000px;}
.fc2_c00068{color:transparent;}
.fc1_c00068{color:rgb(128,128,128);}
.fc0_c00068{color:rgb(0,0,0);}
.fs4_c00068{font-size:48.000000px;}
.fs1_c00068{font-size:72.000000px;}
.fs0_c00068{font-size:81.000000px;}
.fs3_c00068{font-size:87.000000px;}
.fs2_c00068{font-size:108.000000px;}
.y0_c00068{bottom:0.000000px;}
.y27_c00068{bottom:3.105000px;}
.y26_c00068{bottom:7.228371px;}
.y25_c00068{bottom:78.765000px;}
.y24_c00068{bottom:102.315000px;}
.y23_c00068{bottom:127.365000px;}
.y22_c00068{bottom:151.665000px;}
.y21_c00068{bottom:175.965000px;}
.y20_c00068{bottom:200.565000px;}
.y1f_c00068{bottom:224.865000px;}
.y1e_c00068{bottom:249.465000px;}
.y1d_c00068{bottom:273.765000px;}
.y1c_c00068{bottom:298.065000px;}
.y1b_c00068{bottom:322.065000px;}
.y1a_c00068{bottom:345.915000px;}
.y19_c00068{bottom:369.615000px;}
.y18_c00068{bottom:394.215000px;}
.y17_c00068{bottom:418.515000px;}
.y16_c00068{bottom:441.915000px;}
.y15_c00068{bottom:465.765000px;}
.y14_c00068{bottom:490.065000px;}
.y13_c00068{bottom:514.065000px;}
.y12_c00068{bottom:538.665000px;}
.y11_c00068{bottom:561.015000px;}
.y10_c00068{bottom:586.215000px;}
.yf_c00068{bottom:611.265000px;}
.ye_c00068{bottom:634.215000px;}
.yd_c00068{bottom:657.915000px;}
.yc_c00068{bottom:681.765000px;}
.yb_c00068{bottom:705.765000px;}
.ya_c00068{bottom:729.765000px;}
.y9_c00068{bottom:757.365000px;}
.y8_c00068{bottom:781.665000px;}
.y2_c00068{bottom:790.815000px;}
.y7_c00068{bottom:802.665000px;}
.y1_c00068{bottom:815.115000px;}
.y6_c00068{bottom:826.665000px;}
.y5_c00068{bottom:850.815000px;}
.y4_c00068{bottom:875.865000px;}
.y3_c00068{bottom:899.415000px;}
.h7_c00068{height:13.200074px;}
.h8_c00068{height:43.804688px;}
.h2_c00068{height:79.497070px;}
.h3_c00068{height:84.269531px;}
.h6_c00068{height:91.160156px;}
.h5_c00068{height:91.176000px;}
.h4_c00068{height:108.843750px;}
.h0_c00068{height:989.025000px;}
.h1_c00068{height:989.250000px;}
.w1_c00068{width:104.875500px;}
.w0_c00068{width:672.000000px;}
.x0_c00068{left:0.000000px;}
.x8_c00068{left:45.900000px;}
.x3_c00068{left:58.050000px;}
.x4_c00068{left:59.700000px;}
.x6_c00068{left:61.500000px;}
.x7_c00068{left:62.850000px;}
.x9_c00068{left:64.200000px;}
.xa_c00068{left:88.200000px;}
.xc_c00068{left:287.814240px;}
.xb_c00068{left:384.750000px;}
.x5_c00068{left:498.600000px;}
.x2_c00068{left:608.100000px;}
.x1_c00068{left:630.000000px;}
@media print{
.v0_c00068{vertical-align:0.000000pt;}
.ls3_c00068{letter-spacing:0.000000pt;}
.ls0_c00068{letter-spacing:0.800000pt;}
.ls1_c00068{letter-spacing:7.616000pt;}
.ls2_c00068{letter-spacing:8.266667pt;}
.ws1_c00068{word-spacing:-60.165333pt;}
.ws0_c00068{word-spacing:-15.424000pt;}
.ws2_c00068{word-spacing:0.000000pt;}
._1d_c00068{margin-left:-21.058667pt;}
._2_c00068{margin-left:-19.152000pt;}
._11_c00068{margin-left:-16.320000pt;}
._0_c00068{margin-left:-14.616000pt;}
._20_c00068{margin-left:-12.528000pt;}
._1c_c00068{margin-left:-10.618667pt;}
._d_c00068{margin-left:-9.538667pt;}
._1e_c00068{margin-left:-8.506667pt;}
._10_c00068{margin-left:-7.418667pt;}
._14_c00068{margin-left:-6.098667pt;}
._3_c00068{margin-left:-4.653333pt;}
._a_c00068{margin-left:-3.320000pt;}
._f_c00068{margin-left:-2.277333pt;}
._b_c00068{margin-left:-1.250667pt;}
._4_c00068{width:1.656000pt;}
._5_c00068{width:2.808000pt;}
._9_c00068{width:4.328000pt;}
._7_c00068{width:5.301333pt;}
._c_c00068{width:6.437333pt;}
._1_c00068{width:7.848000pt;}
._6_c00068{width:8.901333pt;}
._8_c00068{width:10.538667pt;}
._e_c00068{width:12.024000pt;}
._17_c00068{width:14.240000pt;}
._23_c00068{width:15.234667pt;}
._25_c00068{width:17.064000pt;}
._19_c00068{width:23.850667pt;}
._21_c00068{width:25.413333pt;}
._15_c00068{width:26.776000pt;}
._16_c00068{width:28.450667pt;}
._22_c00068{width:29.546667pt;}
._24_c00068{width:32.760000pt;}
._1a_c00068{width:37.464000pt;}
._26_c00068{width:38.818667pt;}
._1f_c00068{width:40.936000pt;}
._12_c00068{width:81.053333pt;}
._1b_c00068{width:178.885333pt;}
._13_c00068{width:184.869333pt;}
._27_c00068{width:247.602667pt;}
._18_c00068{width:1365.048000pt;}
.fs4_c00068{font-size:42.666667pt;}
.fs1_c00068{font-size:64.000000pt;}
.fs0_c00068{font-size:72.000000pt;}
.fs3_c00068{font-size:77.333333pt;}
.fs2_c00068{font-size:96.000000pt;}
.y0_c00068{bottom:0.000000pt;}
.y27_c00068{bottom:2.760000pt;}
.y26_c00068{bottom:6.425219pt;}
.y25_c00068{bottom:70.013333pt;}
.y24_c00068{bottom:90.946667pt;}
.y23_c00068{bottom:113.213333pt;}
.y22_c00068{bottom:134.813333pt;}
.y21_c00068{bottom:156.413333pt;}
.y20_c00068{bottom:178.280000pt;}
.y1f_c00068{bottom:199.880000pt;}
.y1e_c00068{bottom:221.746667pt;}
.y1d_c00068{bottom:243.346667pt;}
.y1c_c00068{bottom:264.946667pt;}
.y1b_c00068{bottom:286.280000pt;}
.y1a_c00068{bottom:307.480000pt;}
.y19_c00068{bottom:328.546667pt;}
.y18_c00068{bottom:350.413333pt;}
.y17_c00068{bottom:372.013333pt;}
.y16_c00068{bottom:392.813333pt;}
.y15_c00068{bottom:414.013333pt;}
.y14_c00068{bottom:435.613333pt;}
.y13_c00068{bottom:456.946667pt;}
.y12_c00068{bottom:478.813333pt;}
.y11_c00068{bottom:498.680000pt;}
.y10_c00068{bottom:521.080000pt;}
.yf_c00068{bottom:543.346667pt;}
.ye_c00068{bottom:563.746667pt;}
.yd_c00068{bottom:584.813333pt;}
.yc_c00068{bottom:606.013333pt;}
.yb_c00068{bottom:627.346667pt;}
.ya_c00068{bottom:648.680000pt;}
.y9_c00068{bottom:673.213333pt;}
.y8_c00068{bottom:694.813333pt;}
.y2_c00068{bottom:702.946667pt;}
.y7_c00068{bottom:713.480000pt;}
.y1_c00068{bottom:724.546667pt;}
.y6_c00068{bottom:734.813333pt;}
.y5_c00068{bottom:756.280000pt;}
.y4_c00068{bottom:778.546667pt;}
.y3_c00068{bottom:799.480000pt;}
.h7_c00068{height:11.733399pt;}
.h8_c00068{height:38.937500pt;}
.h2_c00068{height:70.664062pt;}
.h3_c00068{height:74.906250pt;}
.h6_c00068{height:81.031250pt;}
.h5_c00068{height:81.045333pt;}
.h4_c00068{height:96.750000pt;}
.h0_c00068{height:879.133333pt;}
.h1_c00068{height:879.333333pt;}
.w1_c00068{width:93.222667pt;}
.w0_c00068{width:597.333333pt;}
.x0_c00068{left:0.000000pt;}
.x8_c00068{left:40.800000pt;}
.x3_c00068{left:51.600000pt;}
.x4_c00068{left:53.066667pt;}
.x6_c00068{left:54.666667pt;}
.x7_c00068{left:55.866667pt;}
.x9_c00068{left:57.066667pt;}
.xa_c00068{left:78.400000pt;}
.xc_c00068{left:255.834880pt;}
.xb_c00068{left:342.000000pt;}
.x5_c00068{left:443.200000pt;}
.x2_c00068{left:540.533333pt;}
.x1_c00068{left:560.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_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_2b94c317ea8f4d6da9cabf56.woff2')format("woff");}.ff1_c00069{font-family:ff1_c00069;line-height:1.311035;font-style:normal;font-weight:normal;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_879897705f1a250e631521be.woff2')format("woff");}.ff2_c00069{font-family:ff2_c00069;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00069;src:url('chunks/assets/font_750114919225a1fd4d92f22f.woff2')format("woff");}.ff3_c00069{font-family:ff3_c00069;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00069;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff4_c00069{font-family:ff4_c00069;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00069;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c00069{font-family:ff5_c00069;line-height:1.219238;font-style: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.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m1_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;}
.ls1_c00069{letter-spacing:0.000000px;}
.ls0_c00069{letter-spacing:5.016000px;}
.sc__c00069{text-shadow:none;}
.sc0_c00069{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00069{-webkit-text-stroke:0px transparent;}
.sc0_c00069{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00069{word-spacing:-25.305000px;}
.ws1_c00069{word-spacing:-17.352000px;}
.ws2_c00069{word-spacing:0.000000px;}
._1e_c00069{margin-left:-38.979000px;}
._9_c00069{margin-left:-16.065000px;}
._1d_c00069{margin-left:-14.097000px;}
._1a_c00069{margin-left:-11.550000px;}
._1f_c00069{margin-left:-10.440000px;}
._6_c00069{margin-left:-9.396000px;}
._8_c00069{margin-left:-7.668000px;}
._11_c00069{margin-left:-6.255000px;}
._a_c00069{margin-left:-5.040000px;}
._3_c00069{margin-left:-3.885000px;}
._4_c00069{margin-left:-2.730000px;}
._10_c00069{margin-left:-1.371000px;}
._7_c00069{width:1.890000px;}
._d_c00069{width:2.997000px;}
._c_c00069{width:4.239000px;}
._2_c00069{width:5.724000px;}
._f_c00069{width:7.155000px;}
._1_c00069{width:8.532000px;}
._0_c00069{width:10.044000px;}
._12_c00069{width:11.988000px;}
._1c_c00069{width:13.374000px;}
._b_c00069{width:14.877000px;}
._e_c00069{width:16.767000px;}
._13_c00069{width:19.197000px;}
._5_c00069{width:20.628000px;}
._15_c00069{width:28.152000px;}
._18_c00069{width:34.014000px;}
._16_c00069{width:39.897000px;}
._14_c00069{width:42.849000px;}
._17_c00069{width:46.371000px;}
._1b_c00069{width:168.771000px;}
._19_c00069{width:198.153000px;}
.fc2_c00069{color:transparent;}
.fc1_c00069{color:rgb(128,128,128);}
.fc0_c00069{color:rgb(0,0,0);}
.fs4_c00069{font-size:48.000000px;}
.fs3_c00069{font-size:72.000000px;}
.fs2_c00069{font-size:81.000000px;}
.fs1_c00069{font-size:105.000000px;}
.fs0_c00069{font-size:108.000000px;}
.y0_c00069{bottom:0.000000px;}
.y25_c00069{bottom:3.105000px;}
.y24_c00069{bottom:7.228363px;}
.y23_c00069{bottom:73.800000px;}
.y22_c00069{bottom:99.150000px;}
.y21_c00069{bottom:124.200000px;}
.y20_c00069{bottom:148.050000px;}
.y1f_c00069{bottom:173.100000px;}
.y1e_c00069{bottom:197.550000px;}
.y1d_c00069{bottom:222.000000px;}
.y1c_c00069{bottom:246.600000px;}
.y1b_c00069{bottom:271.050000px;}
.y1a_c00069{bottom:295.200000px;}
.y19_c00069{bottom:319.350000px;}
.y18_c00069{bottom:343.650000px;}
.y17_c00069{bottom:368.100000px;}
.y16_c00069{bottom:392.250000px;}
.y15_c00069{bottom:416.250000px;}
.y14_c00069{bottom:440.400000px;}
.y13_c00069{bottom:464.400000px;}
.y12_c00069{bottom:488.700000px;}
.y11_c00069{bottom:513.000000px;}
.y10_c00069{bottom:537.300000px;}
.yf_c00069{bottom:561.300000px;}
.ye_c00069{bottom:585.600000px;}
.yd_c00069{bottom:609.600000px;}
.yc_c00069{bottom:634.200000px;}
.yb_c00069{bottom:657.900000px;}
.ya_c00069{bottom:682.800000px;}
.y9_c00069{bottom:706.500000px;}
.y8_c00069{bottom:731.700000px;}
.y7_c00069{bottom:755.100000px;}
.y6_c00069{bottom:779.400000px;}
.y5_c00069{bottom:802.350000px;}
.y4_c00069{bottom:825.900000px;}
.y3_c00069{bottom:851.850000px;}
.y2_c00069{bottom:875.550000px;}
.y1_c00069{bottom:909.600000px;}
.h7_c00069{height:13.200074px;}
.h8_c00069{height:43.804688px;}
.h4_c00069{height:79.497070px;}
.h6_c00069{height:84.269531px;}
.h5_c00069{height:91.160156px;}
.h2_c00069{height:108.843750px;}
.h3_c00069{height:122.893066px;}
.h0_c00069{height:966.600000px;}
.h1_c00069{height:966.750000px;}
.w1_c00069{width:104.875500px;}
.w0_c00069{width:648.000000px;}
.x0_c00069{left:0.000000px;}
.x5_c00069{left:27.000000px;}
.x6_c00069{left:28.050000px;}
.x8_c00069{left:71.550000px;}
.xa_c00069{left:116.550000px;}
.x9_c00069{left:118.500000px;}
.x7_c00069{left:119.550000px;}
.x1_c00069{left:121.200000px;}
.x2_c00069{left:216.300000px;}
.xb_c00069{left:275.814240px;}
.x3_c00069{left:309.600000px;}
.x4_c00069{left:331.048800px;}
@media print{
.v0_c00069{vertical-align:0.000000pt;}
.ls1_c00069{letter-spacing:0.000000pt;}
.ls0_c00069{letter-spacing:4.458667pt;}
.ws0_c00069{word-spacing:-22.493333pt;}
.ws1_c00069{word-spacing:-15.424000pt;}
.ws2_c00069{word-spacing:0.000000pt;}
._1e_c00069{margin-left:-34.648000pt;}
._9_c00069{margin-left:-14.280000pt;}
._1d_c00069{margin-left:-12.530667pt;}
._1a_c00069{margin-left:-10.266667pt;}
._1f_c00069{margin-left:-9.280000pt;}
._6_c00069{margin-left:-8.352000pt;}
._8_c00069{margin-left:-6.816000pt;}
._11_c00069{margin-left:-5.560000pt;}
._a_c00069{margin-left:-4.480000pt;}
._3_c00069{margin-left:-3.453333pt;}
._4_c00069{margin-left:-2.426667pt;}
._10_c00069{margin-left:-1.218667pt;}
._7_c00069{width:1.680000pt;}
._d_c00069{width:2.664000pt;}
._c_c00069{width:3.768000pt;}
._2_c00069{width:5.088000pt;}
._f_c00069{width:6.360000pt;}
._1_c00069{width:7.584000pt;}
._0_c00069{width:8.928000pt;}
._12_c00069{width:10.656000pt;}
._1c_c00069{width:11.888000pt;}
._b_c00069{width:13.224000pt;}
._e_c00069{width:14.904000pt;}
._13_c00069{width:17.064000pt;}
._5_c00069{width:18.336000pt;}
._15_c00069{width:25.024000pt;}
._18_c00069{width:30.234667pt;}
._16_c00069{width:35.464000pt;}
._14_c00069{width:38.088000pt;}
._17_c00069{width:41.218667pt;}
._1b_c00069{width:150.018667pt;}
._19_c00069{width:176.136000pt;}
.fs4_c00069{font-size:42.666667pt;}
.fs3_c00069{font-size:64.000000pt;}
.fs2_c00069{font-size:72.000000pt;}
.fs1_c00069{font-size:93.333333pt;}
.fs0_c00069{font-size:96.000000pt;}
.y0_c00069{bottom:0.000000pt;}
.y25_c00069{bottom:2.760000pt;}
.y24_c00069{bottom:6.425212pt;}
.y23_c00069{bottom:65.600000pt;}
.y22_c00069{bottom:88.133333pt;}
.y21_c00069{bottom:110.400000pt;}
.y20_c00069{bottom:131.600000pt;}
.y1f_c00069{bottom:153.866667pt;}
.y1e_c00069{bottom:175.600000pt;}
.y1d_c00069{bottom:197.333333pt;}
.y1c_c00069{bottom:219.200000pt;}
.y1b_c00069{bottom:240.933333pt;}
.y1a_c00069{bottom:262.400000pt;}
.y19_c00069{bottom:283.866667pt;}
.y18_c00069{bottom:305.466667pt;}
.y17_c00069{bottom:327.200000pt;}
.y16_c00069{bottom:348.666667pt;}
.y15_c00069{bottom:370.000000pt;}
.y14_c00069{bottom:391.466667pt;}
.y13_c00069{bottom:412.800000pt;}
.y12_c00069{bottom:434.400000pt;}
.y11_c00069{bottom:456.000000pt;}
.y10_c00069{bottom:477.600000pt;}
.yf_c00069{bottom:498.933333pt;}
.ye_c00069{bottom:520.533333pt;}
.yd_c00069{bottom:541.866667pt;}
.yc_c00069{bottom:563.733333pt;}
.yb_c00069{bottom:584.800000pt;}
.ya_c00069{bottom:606.933333pt;}
.y9_c00069{bottom:628.000000pt;}
.y8_c00069{bottom:650.400000pt;}
.y7_c00069{bottom:671.200000pt;}
.y6_c00069{bottom:692.800000pt;}
.y5_c00069{bottom:713.200000pt;}
.y4_c00069{bottom:734.133333pt;}
.y3_c00069{bottom:757.200000pt;}
.y2_c00069{bottom:778.266667pt;}
.y1_c00069{bottom:808.533333pt;}
.h7_c00069{height:11.733399pt;}
.h8_c00069{height:38.937500pt;}
.h4_c00069{height:70.664062pt;}
.h6_c00069{height:74.906250pt;}
.h5_c00069{height:81.031250pt;}
.h2_c00069{height:96.750000pt;}
.h3_c00069{height:109.238281pt;}
.h0_c00069{height:859.200000pt;}
.h1_c00069{height:859.333333pt;}
.w1_c00069{width:93.222667pt;}
.w0_c00069{width:576.000000pt;}
.x0_c00069{left:0.000000pt;}
.x5_c00069{left:24.000000pt;}
.x6_c00069{left:24.933333pt;}
.x8_c00069{left:63.600000pt;}
.xa_c00069{left:103.600000pt;}
.x9_c00069{left:105.333333pt;}
.x7_c00069{left:106.266667pt;}
.x1_c00069{left:107.733333pt;}
.x2_c00069{left:192.266667pt;}
.xb_c00069{left:245.168213pt;}
.x3_c00069{left:275.200000pt;}
.x4_c00069{left:294.265600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_19d5818bf6e3bb976ad3148b.woff2')format("woff");}.ff1_c00070{font-family:ff1_c00070;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00070;src:url('chunks/assets/font_833d08e29120e4b2105705c2.woff2')format("woff");}.ff2_c00070{font-family:ff2_c00070;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00070;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff3_c00070{font-family:ff3_c00070;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00070;src:url('chunks/assets/font_37406bf4b58f2af9967fc618.woff2')format("woff");}.ff4_c00070{font-family:ff4_c00070;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00070;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c00070{font-family:ff5_c00070;line-height:1.219238;font-style: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;}
.ls2_c00070{letter-spacing:0.000000px;}
.ls1_c00070{letter-spacing:3.900000px;}
.ls0_c00070{letter-spacing:10.680000px;}
.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:0.000000px;}
._1a_c00070{margin-left:-26.730000px;}
._17_c00070{margin-left:-25.515000px;}
._13_c00070{margin-left:-22.878000px;}
._e_c00070{margin-left:-11.016000px;}
._14_c00070{margin-left:-9.672000px;}
._8_c00070{margin-left:-8.262000px;}
._3_c00070{margin-left:-6.966000px;}
._c_c00070{margin-left:-5.670000px;}
._6_c00070{margin-left:-4.293000px;}
._f_c00070{margin-left:-3.240000px;}
._4_c00070{margin-left:-2.025000px;}
._11_c00070{width:1.053000px;}
._0_c00070{width:2.106000px;}
._1_c00070{width:3.564000px;}
._5_c00070{width:4.860000px;}
._2_c00070{width:5.994000px;}
._9_c00070{width:7.938000px;}
._7_c00070{width:9.882000px;}
._10_c00070{width:11.178000px;}
._a_c00070{width:12.393000px;}
._d_c00070{width:14.175000px;}
._b_c00070{width:15.471000px;}
._1b_c00070{width:16.605000px;}
._1c_c00070{width:22.896000px;}
._12_c00070{width:30.672000px;}
._1d_c00070{width:33.336000px;}
._15_c00070{width:36.855000px;}
._16_c00070{width:121.338000px;}
._18_c00070{width:135.189000px;}
._19_c00070{width:232.098000px;}
._1e_c00070{width:263.481000px;}
.fc2_c00070{color:transparent;}
.fc1_c00070{color:rgb(128,128,128);}
.fc0_c00070{color:rgb(0,0,0);}
.fs3_c00070{font-size:48.000000px;}
.fs1_c00070{font-size:72.000000px;}
.fs0_c00070{font-size:81.000000px;}
.fs2_c00070{font-size:87.000000px;}
.y0_c00070{bottom:0.000000px;}
.y24_c00070{bottom:3.105000px;}
.y23_c00070{bottom:7.228371px;}
.y22_c00070{bottom:65.565000px;}
.y21_c00070{bottom:88.065000px;}
.y20_c00070{bottom:112.815000px;}
.y1f_c00070{bottom:137.115000px;}
.y1e_c00070{bottom:161.715000px;}
.y1d_c00070{bottom:186.615000px;}
.y1c_c00070{bottom:210.915000px;}
.y1b_c00070{bottom:235.365000px;}
.y1a_c00070{bottom:259.665000px;}
.y19_c00070{bottom:284.265000px;}
.y18_c00070{bottom:308.115000px;}
.y17_c00070{bottom:331.515000px;}
.y16_c00070{bottom:356.115000px;}
.y15_c00070{bottom:379.965000px;}
.y14_c00070{bottom:404.115000px;}
.y13_c00070{bottom:428.265000px;}
.y12_c00070{bottom:453.615000px;}
.y11_c00070{bottom:476.265000px;}
.y10_c00070{bottom:499.215000px;}
.yf_c00070{bottom:524.265000px;}
.ye_c00070{bottom:548.415000px;}
.yd_c00070{bottom:573.165000px;}
.yc_c00070{bottom:595.815000px;}
.yb_c00070{bottom:620.115000px;}
.ya_c00070{bottom:643.665000px;}
.y9_c00070{bottom:667.665000px;}
.y8_c00070{bottom:691.965000px;}
.y7_c00070{bottom:715.965000px;}
.y6_c00070{bottom:739.515000px;}
.y5_c00070{bottom:764.115000px;}
.y4_c00070{bottom:812.415000px;}
.y3_c00070{bottom:837.465000px;}
.y2_c00070{bottom:861.015000px;}
.y1_c00070{bottom:885.015000px;}
.h6_c00070{height:13.200074px;}
.h7_c00070{height:43.804688px;}
.h2_c00070{height:79.497070px;}
.h3_c00070{height:84.269531px;}
.h4_c00070{height:91.160156px;}
.h5_c00070{height:91.176000px;}
.h0_c00070{height:989.025000px;}
.h1_c00070{height:989.250000px;}
.w1_c00070{width:104.875500px;}
.w0_c00070{width:672.000000px;}
.x0_c00070{left:0.000000px;}
.x7_c00070{left:44.550000px;}
.xd_c00070{left:49.050000px;}
.xc_c00070{left:54.300000px;}
.xb_c00070{left:55.650000px;}
.x8_c00070{left:56.700000px;}
.xa_c00070{left:58.050000px;}
.x9_c00070{left:60.150000px;}
.x6_c00070{left:61.800000px;}
.x5_c00070{left:63.450000px;}
.x4_c00070{left:64.500000px;}
.x3_c00070{left:65.850000px;}
.x2_c00070{left:67.500000px;}
.x1_c00070{left:69.150000px;}
.xf_c00070{left:287.814240px;}
.xe_c00070{left:368.250000px;}
@media print{
.v0_c00070{vertical-align:0.000000pt;}
.ls2_c00070{letter-spacing:0.000000pt;}
.ls1_c00070{letter-spacing:3.466667pt;}
.ls0_c00070{letter-spacing:9.493333pt;}
.ws0_c00070{word-spacing:0.000000pt;}
._1a_c00070{margin-left:-23.760000pt;}
._17_c00070{margin-left:-22.680000pt;}
._13_c00070{margin-left:-20.336000pt;}
._e_c00070{margin-left:-9.792000pt;}
._14_c00070{margin-left:-8.597333pt;}
._8_c00070{margin-left:-7.344000pt;}
._3_c00070{margin-left:-6.192000pt;}
._c_c00070{margin-left:-5.040000pt;}
._6_c00070{margin-left:-3.816000pt;}
._f_c00070{margin-left:-2.880000pt;}
._4_c00070{margin-left:-1.800000pt;}
._11_c00070{width:0.936000pt;}
._0_c00070{width:1.872000pt;}
._1_c00070{width:3.168000pt;}
._5_c00070{width:4.320000pt;}
._2_c00070{width:5.328000pt;}
._9_c00070{width:7.056000pt;}
._7_c00070{width:8.784000pt;}
._10_c00070{width:9.936000pt;}
._a_c00070{width:11.016000pt;}
._d_c00070{width:12.600000pt;}
._b_c00070{width:13.752000pt;}
._1b_c00070{width:14.760000pt;}
._1c_c00070{width:20.352000pt;}
._12_c00070{width:27.264000pt;}
._1d_c00070{width:29.632000pt;}
._15_c00070{width:32.760000pt;}
._16_c00070{width:107.856000pt;}
._18_c00070{width:120.168000pt;}
._19_c00070{width:206.309333pt;}
._1e_c00070{width:234.205333pt;}
.fs3_c00070{font-size:42.666667pt;}
.fs1_c00070{font-size:64.000000pt;}
.fs0_c00070{font-size:72.000000pt;}
.fs2_c00070{font-size:77.333333pt;}
.y0_c00070{bottom:0.000000pt;}
.y24_c00070{bottom:2.760000pt;}
.y23_c00070{bottom:6.425219pt;}
.y22_c00070{bottom:58.280000pt;}
.y21_c00070{bottom:78.280000pt;}
.y20_c00070{bottom:100.280000pt;}
.y1f_c00070{bottom:121.880000pt;}
.y1e_c00070{bottom:143.746667pt;}
.y1d_c00070{bottom:165.880000pt;}
.y1c_c00070{bottom:187.480000pt;}
.y1b_c00070{bottom:209.213333pt;}
.y1a_c00070{bottom:230.813333pt;}
.y19_c00070{bottom:252.680000pt;}
.y18_c00070{bottom:273.880000pt;}
.y17_c00070{bottom:294.680000pt;}
.y16_c00070{bottom:316.546667pt;}
.y15_c00070{bottom:337.746667pt;}
.y14_c00070{bottom:359.213333pt;}
.y13_c00070{bottom:380.680000pt;}
.y12_c00070{bottom:403.213333pt;}
.y11_c00070{bottom:423.346667pt;}
.y10_c00070{bottom:443.746667pt;}
.yf_c00070{bottom:466.013333pt;}
.ye_c00070{bottom:487.480000pt;}
.yd_c00070{bottom:509.480000pt;}
.yc_c00070{bottom:529.613333pt;}
.yb_c00070{bottom:551.213333pt;}
.ya_c00070{bottom:572.146667pt;}
.y9_c00070{bottom:593.480000pt;}
.y8_c00070{bottom:615.080000pt;}
.y7_c00070{bottom:636.413333pt;}
.y6_c00070{bottom:657.346667pt;}
.y5_c00070{bottom:679.213333pt;}
.y4_c00070{bottom:722.146667pt;}
.y3_c00070{bottom:744.413333pt;}
.y2_c00070{bottom:765.346667pt;}
.y1_c00070{bottom:786.680000pt;}
.h6_c00070{height:11.733399pt;}
.h7_c00070{height:38.937500pt;}
.h2_c00070{height:70.664062pt;}
.h3_c00070{height:74.906250pt;}
.h4_c00070{height:81.031250pt;}
.h5_c00070{height:81.045333pt;}
.h0_c00070{height:879.133333pt;}
.h1_c00070{height:879.333333pt;}
.w1_c00070{width:93.222667pt;}
.w0_c00070{width:597.333333pt;}
.x0_c00070{left:0.000000pt;}
.x7_c00070{left:39.600000pt;}
.xd_c00070{left:43.600000pt;}
.xc_c00070{left:48.266667pt;}
.xb_c00070{left:49.466667pt;}
.x8_c00070{left:50.400000pt;}
.xa_c00070{left:51.600000pt;}
.x9_c00070{left:53.466667pt;}
.x6_c00070{left:54.933333pt;}
.x5_c00070{left:56.400000pt;}
.x4_c00070{left:57.333333pt;}
.x3_c00070{left:58.533333pt;}
.x2_c00070{left:60.000000pt;}
.x1_c00070{left:61.466667pt;}
.xf_c00070{left:255.834880pt;}
.xe_c00070{left:327.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_1f6b046a2e47a91c3b6c84b8.woff2')format("woff");}.ff1_c00071{font-family:ff1_c00071;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00071;src:url('chunks/assets/font_ea356293d9b98d25090f28d1.woff2')format("woff");}.ff2_c00071{font-family:ff2_c00071;line-height:1.311035;font-style:normal;font-weight:normal;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_872637dbdf6819ea9cbd7592.woff2')format("woff");}.ff3_c00071{font-family:ff3_c00071;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00071;src:url('chunks/assets/font_9966d1ecdfda1429b540fd04.woff2')format("woff");}.ff4_c00071{font-family:ff4_c00071;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00071;src:url('chunks/assets/font_1d3e5a3bcc52846f66cb706d.woff2')format("woff");}.ff5_c00071{font-family:ff5_c00071;line-height:1.338867;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00071;src:url('chunks/assets/font_30231801b03215a44335cd5b.woff2')format("woff");}.ff6_c00071{font-family:ff6_c00071;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00071;src:url('chunks/assets/font_fe01e1c9f757d15c3c35fb09.woff2')format("woff");}.ff7_c00071{font-family:ff7_c00071;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00071;src:url('chunks/assets/font_32df8425f4bb82a5c4eb1683.woff2')format("woff");}.ff8_c00071{font-family:ff8_c00071;line-height:1.437000;font-style:normal;font-weight: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_c00071;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff9_c00071{font-family:ff9_c00071;line-height:1.219238;font-style: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;}
.v1_c00071{vertical-align:129.600000px;}
.ls4_c00071{letter-spacing:-6.000000px;}
.ls3_c00071{letter-spacing:0.000000px;}
.ls1_c00071{letter-spacing:4.500000px;}
.ls2_c00071{letter-spacing:17.802000px;}
.ls0_c00071{letter-spacing:35.226000px;}
.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;}
}
.ws3_c00071{word-spacing:-67.686000px;}
.ws5_c00071{word-spacing:-17.352000px;}
.ws1_c00071{word-spacing:-13.737000px;}
.ws2_c00071{word-spacing:-9.750000px;}
.ws0_c00071{word-spacing:-2.448000px;}
.ws6_c00071{word-spacing:0.000000px;}
.ws4_c00071{word-spacing:3.168000px;}
._5_c00071{margin-left:-22.134000px;}
._9_c00071{margin-left:-19.680000px;}
._3_c00071{margin-left:-18.000000px;}
._1c_c00071{margin-left:-16.443000px;}
._23_c00071{margin-left:-15.174000px;}
._b_c00071{margin-left:-12.108000px;}
._22_c00071{margin-left:-10.830000px;}
._18_c00071{margin-left:-9.825000px;}
._1a_c00071{margin-left:-8.778000px;}
._13_c00071{margin-left:-6.786000px;}
._10_c00071{margin-left:-5.505000px;}
._12_c00071{margin-left:-4.272000px;}
._e_c00071{margin-left:-3.162000px;}
._7_c00071{margin-left:-2.142000px;}
._16_c00071{margin-left:-1.098000px;}
._6_c00071{width:1.734000px;}
._a_c00071{width:3.438000px;}
._11_c00071{width:4.875000px;}
._f_c00071{width:6.318000px;}
._8_c00071{width:8.142000px;}
._17_c00071{width:9.357000px;}
._d_c00071{width:10.404000px;}
._2_c00071{width:11.760000px;}
._19_c00071{width:12.903000px;}
._4_c00071{width:14.226000px;}
._c_c00071{width:15.300000px;}
._21_c00071{width:18.633000px;}
._25_c00071{width:23.478000px;}
._0_c00071{width:26.982000px;}
._14_c00071{width:31.038000px;}
._1e_c00071{width:35.892000px;}
._15_c00071{width:39.933000px;}
._27_c00071{width:41.403000px;}
._26_c00071{width:87.528000px;}
._20_c00071{width:104.286000px;}
._1d_c00071{width:122.553000px;}
._1b_c00071{width:154.350000px;}
._1_c00071{width:160.800000px;}
._28_c00071{width:240.591000px;}
._1f_c00071{width:259.029000px;}
._24_c00071{width:316.434000px;}
.fc2_c00071{color:transparent;}
.fc1_c00071{color:rgb(128,128,128);}
.fc0_c00071{color:rgb(0,0,0);}
.fs9_c00071{font-size:48.000000px;}
.fs5_c00071{font-size:57.000000px;}
.fs7_c00071{font-size:63.000000px;}
.fs3_c00071{font-size:72.000000px;}
.fs6_c00071{font-size:78.000000px;}
.fs2_c00071{font-size:81.000000px;}
.fs8_c00071{font-size:87.000000px;}
.fs0_c00071{font-size:102.000000px;}
.fs1_c00071{font-size:120.000000px;}
.fs4_c00071{font-size:282.000000px;}
.y0_c00071{bottom:0.000000px;}
.y20_c00071{bottom:3.105000px;}
.y1f_c00071{bottom:7.228357px;}
.y1e_c00071{bottom:58.830000px;}
.y1d_c00071{bottom:85.080000px;}
.y1c_c00071{bottom:110.730000px;}
.y1b_c00071{bottom:132.930000px;}
.y1a_c00071{bottom:160.680000px;}
.y19_c00071{bottom:184.680000px;}
.y18_c00071{bottom:208.680000px;}
.y17_c00071{bottom:259.830000px;}
.y16_c00071{bottom:284.580000px;}
.y15_c00071{bottom:308.880000px;}
.y14_c00071{bottom:333.180000px;}
.y13_c00071{bottom:357.780000px;}
.y12_c00071{bottom:382.080000px;}
.y11_c00071{bottom:406.380000px;}
.y10_c00071{bottom:430.380000px;}
.yf_c00071{bottom:454.680000px;}
.ye_c00071{bottom:478.680000px;}
.yd_c00071{bottom:502.980000px;}
.yc_c00071{bottom:527.130000px;}
.yb_c00071{bottom:551.130000px;}
.ya_c00071{bottom:575.880000px;}
.y9_c00071{bottom:600.030000px;}
.y8_c00071{bottom:624.330000px;}
.y6_c00071{bottom:640.980000px;}
.y7_c00071{bottom:648.630000px;}
.y5_c00071{bottom:724.380000px;}
.y4_c00071{bottom:746.880000px;}
.y3_c00071{bottom:797.130000px;}
.y2_c00071{bottom:820.080000px;}
.y1_c00071{bottom:926.880000px;}
.hb_c00071{height:13.200074px;}
.hc_c00071{height:43.804688px;}
.h8_c00071{height:66.713379px;}
.h4_c00071{height:70.628906px;}
.h3_c00071{height:70.664062px;}
.h7_c00071{height:72.168457px;}
.h2_c00071{height:79.497070px;}
.ha_c00071{height:84.269531px;}
.h9_c00071{height:91.176000px;}
.h6_c00071{height:98.756836px;}
.h1_c00071{height:120.937500px;}
.h5_c00071{height:297.008789px;}
.h0_c00071{height:995.250000px;}
.w2_c00071{width:104.875500px;}
.w0_c00071{width:667.425000px;}
.w1_c00071{width:667.500000px;}
.x0_c00071{left:0.000000px;}
.xa_c00071{left:49.650000px;}
.x10_c00071{left:53.100000px;}
.x11_c00071{left:55.800000px;}
.xb_c00071{left:71.250000px;}
.xf_c00071{left:106.650000px;}
.x2_c00071{left:133.050000px;}
.x1_c00071{left:135.900000px;}
.x3_c00071{left:136.950000px;}
.xd_c00071{left:139.800000px;}
.x6_c00071{left:142.050000px;}
.x8_c00071{left:143.700000px;}
.x9_c00071{left:144.750000px;}
.xc_c00071{left:145.800000px;}
.xe_c00071{left:147.450000px;}
.x4_c00071{left:171.000000px;}
.x7_c00071{left:189.900000px;}
.x5_c00071{left:274.650000px;}
.x13_c00071{left:285.526749px;}
.x12_c00071{left:571.050000px;}
@media print{
.v0_c00071{vertical-align:0.000000pt;}
.v1_c00071{vertical-align:115.200000pt;}
.ls4_c00071{letter-spacing:-5.333333pt;}
.ls3_c00071{letter-spacing:0.000000pt;}
.ls1_c00071{letter-spacing:4.000000pt;}
.ls2_c00071{letter-spacing:15.824000pt;}
.ls0_c00071{letter-spacing:31.312000pt;}
.ws3_c00071{word-spacing:-60.165333pt;}
.ws5_c00071{word-spacing:-15.424000pt;}
.ws1_c00071{word-spacing:-12.210667pt;}
.ws2_c00071{word-spacing:-8.666667pt;}
.ws0_c00071{word-spacing:-2.176000pt;}
.ws6_c00071{word-spacing:0.000000pt;}
.ws4_c00071{word-spacing:2.816000pt;}
._5_c00071{margin-left:-19.674667pt;}
._9_c00071{margin-left:-17.493333pt;}
._3_c00071{margin-left:-16.000000pt;}
._1c_c00071{margin-left:-14.616000pt;}
._23_c00071{margin-left:-13.488000pt;}
._b_c00071{margin-left:-10.762667pt;}
._22_c00071{margin-left:-9.626667pt;}
._18_c00071{margin-left:-8.733333pt;}
._1a_c00071{margin-left:-7.802667pt;}
._13_c00071{margin-left:-6.032000pt;}
._10_c00071{margin-left:-4.893333pt;}
._12_c00071{margin-left:-3.797333pt;}
._e_c00071{margin-left:-2.810667pt;}
._7_c00071{margin-left:-1.904000pt;}
._16_c00071{margin-left:-0.976000pt;}
._6_c00071{width:1.541333pt;}
._a_c00071{width:3.056000pt;}
._11_c00071{width:4.333333pt;}
._f_c00071{width:5.616000pt;}
._8_c00071{width:7.237333pt;}
._17_c00071{width:8.317333pt;}
._d_c00071{width:9.248000pt;}
._2_c00071{width:10.453333pt;}
._19_c00071{width:11.469333pt;}
._4_c00071{width:12.645333pt;}
._c_c00071{width:13.600000pt;}
._21_c00071{width:16.562667pt;}
._25_c00071{width:20.869333pt;}
._0_c00071{width:23.984000pt;}
._14_c00071{width:27.589333pt;}
._1e_c00071{width:31.904000pt;}
._15_c00071{width:35.496000pt;}
._27_c00071{width:36.802667pt;}
._26_c00071{width:77.802667pt;}
._20_c00071{width:92.698667pt;}
._1d_c00071{width:108.936000pt;}
._1b_c00071{width:137.200000pt;}
._1_c00071{width:142.933333pt;}
._28_c00071{width:213.858667pt;}
._1f_c00071{width:230.248000pt;}
._24_c00071{width:281.274667pt;}
.fs9_c00071{font-size:42.666667pt;}
.fs5_c00071{font-size:50.666667pt;}
.fs7_c00071{font-size:56.000000pt;}
.fs3_c00071{font-size:64.000000pt;}
.fs6_c00071{font-size:69.333333pt;}
.fs2_c00071{font-size:72.000000pt;}
.fs8_c00071{font-size:77.333333pt;}
.fs0_c00071{font-size:90.666667pt;}
.fs1_c00071{font-size:106.666667pt;}
.fs4_c00071{font-size:250.666667pt;}
.y0_c00071{bottom:0.000000pt;}
.y20_c00071{bottom:2.760000pt;}
.y1f_c00071{bottom:6.425206pt;}
.y1e_c00071{bottom:52.293333pt;}
.y1d_c00071{bottom:75.626667pt;}
.y1c_c00071{bottom:98.426667pt;}
.y1b_c00071{bottom:118.160000pt;}
.y1a_c00071{bottom:142.826667pt;}
.y19_c00071{bottom:164.160000pt;}
.y18_c00071{bottom:185.493333pt;}
.y17_c00071{bottom:230.960000pt;}
.y16_c00071{bottom:252.960000pt;}
.y15_c00071{bottom:274.560000pt;}
.y14_c00071{bottom:296.160000pt;}
.y13_c00071{bottom:318.026667pt;}
.y12_c00071{bottom:339.626667pt;}
.y11_c00071{bottom:361.226667pt;}
.y10_c00071{bottom:382.560000pt;}
.yf_c00071{bottom:404.160000pt;}
.ye_c00071{bottom:425.493333pt;}
.yd_c00071{bottom:447.093333pt;}
.yc_c00071{bottom:468.560000pt;}
.yb_c00071{bottom:489.893333pt;}
.ya_c00071{bottom:511.893333pt;}
.y9_c00071{bottom:533.360000pt;}
.y8_c00071{bottom:554.960000pt;}
.y6_c00071{bottom:569.760000pt;}
.y7_c00071{bottom:576.560000pt;}
.y5_c00071{bottom:643.893333pt;}
.y4_c00071{bottom:663.893333pt;}
.y3_c00071{bottom:708.560000pt;}
.y2_c00071{bottom:728.960000pt;}
.y1_c00071{bottom:823.893333pt;}
.hb_c00071{height:11.733399pt;}
.hc_c00071{height:38.937500pt;}
.h8_c00071{height:59.300781pt;}
.h4_c00071{height:62.781250pt;}
.h3_c00071{height:62.812500pt;}
.h7_c00071{height:64.149740pt;}
.h2_c00071{height:70.664062pt;}
.ha_c00071{height:74.906250pt;}
.h9_c00071{height:81.045333pt;}
.h6_c00071{height:87.783854pt;}
.h1_c00071{height:107.500000pt;}
.h5_c00071{height:264.007812pt;}
.h0_c00071{height:884.666667pt;}
.w2_c00071{width:93.222667pt;}
.w0_c00071{width:593.266667pt;}
.w1_c00071{width:593.333333pt;}
.x0_c00071{left:0.000000pt;}
.xa_c00071{left:44.133333pt;}
.x10_c00071{left:47.200000pt;}
.x11_c00071{left:49.600000pt;}
.xb_c00071{left:63.333333pt;}
.xf_c00071{left:94.800000pt;}
.x2_c00071{left:118.266667pt;}
.x1_c00071{left:120.800000pt;}
.x3_c00071{left:121.733333pt;}
.xd_c00071{left:124.266667pt;}
.x6_c00071{left:126.266667pt;}
.x8_c00071{left:127.733333pt;}
.x9_c00071{left:128.666667pt;}
.xc_c00071{left:129.600000pt;}
.xe_c00071{left:131.066667pt;}
.x4_c00071{left:152.000000pt;}
.x7_c00071{left:168.800000pt;}
.x5_c00071{left:244.133333pt;}
.x13_c00071{left:253.801554pt;}
.x12_c00071{left:507.600000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_12540d8e0f659d99a0bcd57e.woff2')format("woff");}.ff1_c00072{font-family:ff1_c00072;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00072;src:url('chunks/assets/font_dda695418fbdfc1bc2656f2d.woff2')format("woff");}.ff2_c00072{font-family:ff2_c00072;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00072;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff3_c00072{font-family:ff3_c00072;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00072;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff4_c00072{font-family:ff4_c00072;line-height:1.219238;font-style: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;}
.ls0_c00072{letter-spacing:0.000000px;}
.sc__c00072{text-shadow:none;}
.sc0_c00072{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00072{-webkit-text-stroke:0px transparent;}
.sc0_c00072{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00072{word-spacing:-17.352000px;}
.ws1_c00072{word-spacing:0.000000px;}
._17_c00072{margin-left:-20.736000px;}
._13_c00072{margin-left:-18.063000px;}
._f_c00072{margin-left:-14.175000px;}
._16_c00072{margin-left:-11.664000px;}
._12_c00072{margin-left:-10.206000px;}
._e_c00072{margin-left:-8.181000px;}
._9_c00072{margin-left:-6.561000px;}
._5_c00072{margin-left:-5.265000px;}
._3_c00072{margin-left:-3.321000px;}
._1_c00072{margin-left:-2.187000px;}
._b_c00072{margin-left:-1.053000px;}
._0_c00072{width:1.782000px;}
._6_c00072{width:3.645000px;}
._2_c00072{width:4.779000px;}
._a_c00072{width:5.832000px;}
._4_c00072{width:6.966000px;}
._8_c00072{width:8.667000px;}
._7_c00072{width:9.882000px;}
._11_c00072{width:11.583000px;}
._d_c00072{width:13.446000px;}
._15_c00072{width:14.499000px;}
._c_c00072{width:16.536000px;}
._14_c00072{width:18.711000px;}
._18_c00072{width:31.023000px;}
._10_c00072{width:118.422000px;}
.fc2_c00072{color:transparent;}
.fc1_c00072{color:rgb(128,128,128);}
.fc0_c00072{color:rgb(0,0,0);}
.fs2_c00072{font-size:48.000000px;}
.fs1_c00072{font-size:72.000000px;}
.fs0_c00072{font-size:81.000000px;}
.y0_c00072{bottom:0.000000px;}
.y25_c00072{bottom:3.105000px;}
.y24_c00072{bottom:7.228371px;}
.y23_c00072{bottom:36.165000px;}
.y22_c00072{bottom:64.515000px;}
.y21_c00072{bottom:89.865000px;}
.y20_c00072{bottom:115.515000px;}
.y1f_c00072{bottom:139.815000px;}
.y1e_c00072{bottom:164.715000px;}
.y1d_c00072{bottom:189.315000px;}
.y1c_c00072{bottom:213.765000px;}
.y1b_c00072{bottom:238.365000px;}
.y1a_c00072{bottom:262.665000px;}
.y19_c00072{bottom:286.965000px;}
.y18_c00072{bottom:311.265000px;}
.y17_c00072{bottom:335.115000px;}
.y16_c00072{bottom:359.415000px;}
.y15_c00072{bottom:383.415000px;}
.y14_c00072{bottom:407.715000px;}
.y13_c00072{bottom:431.415000px;}
.y12_c00072{bottom:455.715000px;}
.y11_c00072{bottom:480.315000px;}
.y10_c00072{bottom:504.015000px;}
.yf_c00072{bottom:528.165000px;}
.ye_c00072{bottom:552.165000px;}
.yd_c00072{bottom:576.165000px;}
.yc_c00072{bottom:600.165000px;}
.yb_c00072{bottom:624.015000px;}
.ya_c00072{bottom:647.715000px;}
.y9_c00072{bottom:671.715000px;}
.y8_c00072{bottom:695.715000px;}
.y7_c00072{bottom:722.715000px;}
.y6_c00072{bottom:747.315000px;}
.y5_c00072{bottom:768.465000px;}
.y4_c00072{bottom:793.515000px;}
.y3_c00072{bottom:817.065000px;}
.y2_c00072{bottom:841.065000px;}
.y1_c00072{bottom:865.065000px;}
.h4_c00072{height:13.200074px;}
.h5_c00072{height:43.804688px;}
.h3_c00072{height:79.497070px;}
.h2_c00072{height:91.160156px;}
.h1_c00072{height:966.000000px;}
.h0_c00072{height:966.075000px;}
.w2_c00072{width:104.875500px;}
.w0_c00072{width:656.100000px;}
.w1_c00072{width:656.250000px;}
.x0_c00072{left:0.000000px;}
.x5_c00072{left:37.800000px;}
.x1_c00072{left:43.500000px;}
.x2_c00072{left:44.850000px;}
.x3_c00072{left:46.200000px;}
.x4_c00072{left:48.150000px;}
.x6_c00072{left:49.650000px;}
.x7_c00072{left:50.700000px;}
.x8_c00072{left:52.200000px;}
.x9_c00072{left:53.700000px;}
.xa_c00072{left:55.350000px;}
.xb_c00072{left:56.700000px;}
.xc_c00072{left:57.750000px;}
.xe_c00072{left:279.864258px;}
.xd_c00072{left:370.950000px;}
@media print{
.v0_c00072{vertical-align:0.000000pt;}
.ls0_c00072{letter-spacing:0.000000pt;}
.ws0_c00072{word-spacing:-15.424000pt;}
.ws1_c00072{word-spacing:0.000000pt;}
._17_c00072{margin-left:-18.432000pt;}
._13_c00072{margin-left:-16.056000pt;}
._f_c00072{margin-left:-12.600000pt;}
._16_c00072{margin-left:-10.368000pt;}
._12_c00072{margin-left:-9.072000pt;}
._e_c00072{margin-left:-7.272000pt;}
._9_c00072{margin-left:-5.832000pt;}
._5_c00072{margin-left:-4.680000pt;}
._3_c00072{margin-left:-2.952000pt;}
._1_c00072{margin-left:-1.944000pt;}
._b_c00072{margin-left:-0.936000pt;}
._0_c00072{width:1.584000pt;}
._6_c00072{width:3.240000pt;}
._2_c00072{width:4.248000pt;}
._a_c00072{width:5.184000pt;}
._4_c00072{width:6.192000pt;}
._8_c00072{width:7.704000pt;}
._7_c00072{width:8.784000pt;}
._11_c00072{width:10.296000pt;}
._d_c00072{width:11.952000pt;}
._15_c00072{width:12.888000pt;}
._c_c00072{width:14.698667pt;}
._14_c00072{width:16.632000pt;}
._18_c00072{width:27.576000pt;}
._10_c00072{width:105.264000pt;}
.fs2_c00072{font-size:42.666667pt;}
.fs1_c00072{font-size:64.000000pt;}
.fs0_c00072{font-size:72.000000pt;}
.y0_c00072{bottom:0.000000pt;}
.y25_c00072{bottom:2.760000pt;}
.y24_c00072{bottom:6.425219pt;}
.y23_c00072{bottom:32.146667pt;}
.y22_c00072{bottom:57.346667pt;}
.y21_c00072{bottom:79.880000pt;}
.y20_c00072{bottom:102.680000pt;}
.y1f_c00072{bottom:124.280000pt;}
.y1e_c00072{bottom:146.413333pt;}
.y1d_c00072{bottom:168.280000pt;}
.y1c_c00072{bottom:190.013333pt;}
.y1b_c00072{bottom:211.880000pt;}
.y1a_c00072{bottom:233.480000pt;}
.y19_c00072{bottom:255.080000pt;}
.y18_c00072{bottom:276.680000pt;}
.y17_c00072{bottom:297.880000pt;}
.y16_c00072{bottom:319.480000pt;}
.y15_c00072{bottom:340.813333pt;}
.y14_c00072{bottom:362.413333pt;}
.y13_c00072{bottom:383.480000pt;}
.y12_c00072{bottom:405.080000pt;}
.y11_c00072{bottom:426.946667pt;}
.y10_c00072{bottom:448.013333pt;}
.yf_c00072{bottom:469.480000pt;}
.ye_c00072{bottom:490.813333pt;}
.yd_c00072{bottom:512.146667pt;}
.yc_c00072{bottom:533.480000pt;}
.yb_c00072{bottom:554.680000pt;}
.ya_c00072{bottom:575.746667pt;}
.y9_c00072{bottom:597.080000pt;}
.y8_c00072{bottom:618.413333pt;}
.y7_c00072{bottom:642.413333pt;}
.y6_c00072{bottom:664.280000pt;}
.y5_c00072{bottom:683.080000pt;}
.y4_c00072{bottom:705.346667pt;}
.y3_c00072{bottom:726.280000pt;}
.y2_c00072{bottom:747.613333pt;}
.y1_c00072{bottom:768.946667pt;}
.h4_c00072{height:11.733399pt;}
.h5_c00072{height:38.937500pt;}
.h3_c00072{height:70.664062pt;}
.h2_c00072{height:81.031250pt;}
.h1_c00072{height:858.666667pt;}
.h0_c00072{height:858.733333pt;}
.w2_c00072{width:93.222667pt;}
.w0_c00072{width:583.200000pt;}
.w1_c00072{width:583.333333pt;}
.x0_c00072{left:0.000000pt;}
.x5_c00072{left:33.600000pt;}
.x1_c00072{left:38.666667pt;}
.x2_c00072{left:39.866667pt;}
.x3_c00072{left:41.066667pt;}
.x4_c00072{left:42.800000pt;}
.x6_c00072{left:44.133333pt;}
.x7_c00072{left:45.066667pt;}
.x8_c00072{left:46.400000pt;}
.x9_c00072{left:47.733333pt;}
.xa_c00072{left:49.200000pt;}
.xb_c00072{left:50.400000pt;}
.xc_c00072{left:51.333333pt;}
.xe_c00072{left:248.768229pt;}
.xd_c00072{left:329.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_14356ed54f395e5199f8c4d7.woff2')format("woff");}.ff1_c00073{font-family:ff1_c00073;line-height:1.437000;font-style:normal;font-weight:normal;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_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff2_c00073{font-family:ff2_c00073;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00073;src:url('chunks/assets/font_cdba7eacfdf2012e03a1032d.woff2')format("woff");}.ff3_c00073{font-family:ff3_c00073;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00073;src:url('chunks/assets/font_1a6e503186cbab139464eed9.woff2')format("woff");}.ff4_c00073{font-family:ff4_c00073;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00073;src:url('chunks/assets/font_67cc6a30c67151d0e48875cd.woff2')format("woff");}.ff5_c00073{font-family:ff5_c00073;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00073;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c00073{font-family:ff6_c00073;line-height:1.219238;font-style: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;}
.ls2_c00073{letter-spacing:-3.000000px;}
.ls3_c00073{letter-spacing:0.000000px;}
.ls1_c00073{letter-spacing:4.800000px;}
.ls0_c00073{letter-spacing:272.550000px;}
.sc__c00073{text-shadow:none;}
.sc0_c00073{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00073{-webkit-text-stroke:0px transparent;}
.sc0_c00073{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00073{word-spacing:-59.184000px;}
.ws1_c00073{word-spacing:-20.250000px;}
.ws2_c00073{word-spacing:0.000000px;}
._b_c00073{margin-left:-12.879000px;}
._13_c00073{margin-left:-10.947000px;}
._4_c00073{margin-left:-9.276000px;}
._17_c00073{margin-left:-8.250000px;}
._a_c00073{margin-left:-7.209000px;}
._9_c00073{margin-left:-6.147000px;}
._c_c00073{margin-left:-5.082000px;}
._8_c00073{margin-left:-4.050000px;}
._11_c00073{margin-left:-2.679000px;}
._2_c00073{margin-left:-1.509000px;}
._d_c00073{width:1.185000px;}
._0_c00073{width:2.208000px;}
._7_c00073{width:3.351000px;}
._6_c00073{width:4.536000px;}
._3_c00073{width:5.670000px;}
._5_c00073{width:7.533000px;}
._f_c00073{width:9.483000px;}
._10_c00073{width:11.157000px;}
._12_c00073{width:12.681000px;}
._14_c00073{width:14.055000px;}
._15_c00073{width:15.081000px;}
._1_c00073{width:85.284000px;}
._16_c00073{width:95.973000px;}
._e_c00073{width:127.476000px;}
.fc2_c00073{color:transparent;}
.fc1_c00073{color:rgb(128,128,128);}
.fc0_c00073{color:rgb(0,0,0);}
.fs4_c00073{font-size:48.000000px;}
.fs3_c00073{font-size:66.000000px;}
.fs0_c00073{font-size:69.000000px;}
.fs2_c00073{font-size:72.000000px;}
.fs1_c00073{font-size:81.000000px;}
.y0_c00073{bottom:0.000000px;}
.y25_c00073{bottom:3.105000px;}
.y24_c00073{bottom:7.228371px;}
.y23_c00073{bottom:43.965000px;}
.y22_c00073{bottom:69.165000px;}
.y21_c00073{bottom:94.515000px;}
.y20_c00073{bottom:119.265000px;}
.y1f_c00073{bottom:144.165000px;}
.y1e_c00073{bottom:168.765000px;}
.y1d_c00073{bottom:193.515000px;}
.y1c_c00073{bottom:218.415000px;}
.y1b_c00073{bottom:242.715000px;}
.y1a_c00073{bottom:267.315000px;}
.y19_c00073{bottom:291.615000px;}
.y18_c00073{bottom:316.215000px;}
.y17_c00073{bottom:340.215000px;}
.y16_c00073{bottom:364.815000px;}
.y15_c00073{bottom:389.115000px;}
.y14_c00073{bottom:413.415000px;}
.y13_c00073{bottom:437.715000px;}
.y12_c00073{bottom:461.715000px;}
.y11_c00073{bottom:486.765000px;}
.y10_c00073{bottom:509.715000px;}
.yf_c00073{bottom:535.065000px;}
.ye_c00073{bottom:558.615000px;}
.yd_c00073{bottom:582.915000px;}
.yc_c00073{bottom:607.215000px;}
.yb_c00073{bottom:631.515000px;}
.ya_c00073{bottom:655.815000px;}
.y9_c00073{bottom:679.815000px;}
.y8_c00073{bottom:704.115000px;}
.y7_c00073{bottom:728.115000px;}
.y6_c00073{bottom:752.415000px;}
.y5_c00073{bottom:776.715000px;}
.y4_c00073{bottom:800.565000px;}
.y3_c00073{bottom:824.565000px;}
.y2_c00073{bottom:848.865000px;}
.y1_c00073{bottom:872.415000px;}
.h4_c00073{height:13.200074px;}
.h5_c00073{height:43.804688px;}
.h2_c00073{height:79.497070px;}
.h3_c00073{height:84.269531px;}
.h0_c00073{height:974.175000px;}
.h1_c00073{height:974.250000px;}
.w2_c00073{width:104.875500px;}
.w1_c00073{width:653.250000px;}
.w0_c00073{width:653.400000px;}
.x0_c00073{left:0.000000px;}
.x1_c00073{left:44.100000px;}
.x2_c00073{left:97.200000px;}
.x10_c00073{left:110.700000px;}
.xf_c00073{left:111.750000px;}
.xe_c00073{left:113.700000px;}
.xd_c00073{left:115.650000px;}
.xc_c00073{left:116.700000px;}
.xb_c00073{left:118.050000px;}
.xa_c00073{left:119.100000px;}
.x9_c00073{left:120.600000px;}
.x8_c00073{left:121.800000px;}
.x7_c00073{left:124.500000px;}
.x6_c00073{left:126.150000px;}
.x5_c00073{left:127.200000px;}
.x4_c00073{left:128.700000px;}
.x3_c00073{left:130.650000px;}
.x11_c00073{left:134.550000px;}
.x13_c00073{left:278.514267px;}
.x12_c00073{left:565.950000px;}
@media print{
.v0_c00073{vertical-align:0.000000pt;}
.ls2_c00073{letter-spacing:-2.666667pt;}
.ls3_c00073{letter-spacing:0.000000pt;}
.ls1_c00073{letter-spacing:4.266667pt;}
.ls0_c00073{letter-spacing:242.266667pt;}
.ws0_c00073{word-spacing:-52.608000pt;}
.ws1_c00073{word-spacing:-18.000000pt;}
.ws2_c00073{word-spacing:0.000000pt;}
._b_c00073{margin-left:-11.448000pt;}
._13_c00073{margin-left:-9.730667pt;}
._4_c00073{margin-left:-8.245333pt;}
._17_c00073{margin-left:-7.333333pt;}
._a_c00073{margin-left:-6.408000pt;}
._9_c00073{margin-left:-5.464000pt;}
._c_c00073{margin-left:-4.517333pt;}
._8_c00073{margin-left:-3.600000pt;}
._11_c00073{margin-left:-2.381333pt;}
._2_c00073{margin-left:-1.341333pt;}
._d_c00073{width:1.053333pt;}
._0_c00073{width:1.962667pt;}
._7_c00073{width:2.978667pt;}
._6_c00073{width:4.032000pt;}
._3_c00073{width:5.040000pt;}
._5_c00073{width:6.696000pt;}
._f_c00073{width:8.429333pt;}
._10_c00073{width:9.917333pt;}
._12_c00073{width:11.272000pt;}
._14_c00073{width:12.493333pt;}
._15_c00073{width:13.405333pt;}
._1_c00073{width:75.808000pt;}
._16_c00073{width:85.309333pt;}
._e_c00073{width:113.312000pt;}
.fs4_c00073{font-size:42.666667pt;}
.fs3_c00073{font-size:58.666667pt;}
.fs0_c00073{font-size:61.333333pt;}
.fs2_c00073{font-size:64.000000pt;}
.fs1_c00073{font-size:72.000000pt;}
.y0_c00073{bottom:0.000000pt;}
.y25_c00073{bottom:2.760000pt;}
.y24_c00073{bottom:6.425219pt;}
.y23_c00073{bottom:39.080000pt;}
.y22_c00073{bottom:61.480000pt;}
.y21_c00073{bottom:84.013333pt;}
.y20_c00073{bottom:106.013333pt;}
.y1f_c00073{bottom:128.146667pt;}
.y1e_c00073{bottom:150.013333pt;}
.y1d_c00073{bottom:172.013333pt;}
.y1c_c00073{bottom:194.146667pt;}
.y1b_c00073{bottom:215.746667pt;}
.y1a_c00073{bottom:237.613333pt;}
.y19_c00073{bottom:259.213333pt;}
.y18_c00073{bottom:281.080000pt;}
.y17_c00073{bottom:302.413333pt;}
.y16_c00073{bottom:324.280000pt;}
.y15_c00073{bottom:345.880000pt;}
.y14_c00073{bottom:367.480000pt;}
.y13_c00073{bottom:389.080000pt;}
.y12_c00073{bottom:410.413333pt;}
.y11_c00073{bottom:432.680000pt;}
.y10_c00073{bottom:453.080000pt;}
.yf_c00073{bottom:475.613333pt;}
.ye_c00073{bottom:496.546667pt;}
.yd_c00073{bottom:518.146667pt;}
.yc_c00073{bottom:539.746667pt;}
.yb_c00073{bottom:561.346667pt;}
.ya_c00073{bottom:582.946667pt;}
.y9_c00073{bottom:604.280000pt;}
.y8_c00073{bottom:625.880000pt;}
.y7_c00073{bottom:647.213333pt;}
.y6_c00073{bottom:668.813333pt;}
.y5_c00073{bottom:690.413333pt;}
.y4_c00073{bottom:711.613333pt;}
.y3_c00073{bottom:732.946667pt;}
.y2_c00073{bottom:754.546667pt;}
.y1_c00073{bottom:775.480000pt;}
.h4_c00073{height:11.733399pt;}
.h5_c00073{height:38.937500pt;}
.h2_c00073{height:70.664062pt;}
.h3_c00073{height:74.906250pt;}
.h0_c00073{height:865.933333pt;}
.h1_c00073{height:866.000000pt;}
.w2_c00073{width:93.222667pt;}
.w1_c00073{width:580.666667pt;}
.w0_c00073{width:580.800000pt;}
.x0_c00073{left:0.000000pt;}
.x1_c00073{left:39.200000pt;}
.x2_c00073{left:86.400000pt;}
.x10_c00073{left:98.400000pt;}
.xf_c00073{left:99.333333pt;}
.xe_c00073{left:101.066667pt;}
.xd_c00073{left:102.800000pt;}
.xc_c00073{left:103.733333pt;}
.xb_c00073{left:104.933333pt;}
.xa_c00073{left:105.866667pt;}
.x9_c00073{left:107.200000pt;}
.x8_c00073{left:108.266667pt;}
.x7_c00073{left:110.666667pt;}
.x6_c00073{left:112.133333pt;}
.x5_c00073{left:113.066667pt;}
.x4_c00073{left:114.400000pt;}
.x3_c00073{left:116.133333pt;}
.x11_c00073{left:119.600000pt;}
.x13_c00073{left:247.568237pt;}
.x12_c00073{left:503.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_3f19a0fde9ad7619d1d0619b.woff2')format("woff");}.ff1_c00074{font-family:ff1_c00074;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00074;src:url('chunks/assets/font_f7494e6a08c4a689a22f83b5.woff2')format("woff");}.ff2_c00074{font-family:ff2_c00074;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00074;src:url('chunks/assets/font_3bd72909da0f119e179bde2f.woff2')format("woff");}.ff3_c00074{font-family:ff3_c00074;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00074;src:url('chunks/assets/font_b26b01e9a650b9e140c39caf.woff2')format("woff");}.ff4_c00074{font-family:ff4_c00074;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00074;src:url('chunks/assets/font_e5f05a1b59b145452c9b4ae5.woff2')format("woff");}.ff5_c00074{font-family:ff5_c00074;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00074;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c00074{font-family:ff6_c00074;line-height:1.219238;font-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_c00074{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m0_c00074{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00074{vertical-align:0.000000px;}
.ls0_c00074{letter-spacing:-3.000000px;}
.ls1_c00074{letter-spacing:0.000000px;}
.ls2_c00074{letter-spacing:9.000000px;}
.sc__c00074{text-shadow:none;}
.sc0_c00074{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00074{-webkit-text-stroke:0px transparent;}
.sc0_c00074{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00074{word-spacing:-20.250000px;}
.ws1_c00074{word-spacing:-17.352000px;}
.ws2_c00074{word-spacing:-2.778000px;}
.ws3_c00074{word-spacing:0.000000px;}
._0_c00074{margin-left:-20.856000px;}
._1c_c00074{margin-left:-19.548000px;}
._7_c00074{margin-left:-17.721000px;}
._20_c00074{margin-left:-16.629000px;}
._4_c00074{margin-left:-15.312000px;}
._1_c00074{margin-left:-14.256000px;}
._3_c00074{margin-left:-12.144000px;}
._9_c00074{margin-left:-9.900000px;}
._8_c00074{margin-left:-8.712000px;}
._c_c00074{margin-left:-7.161000px;}
._2_c00074{margin-left:-5.412000px;}
._d_c00074{margin-left:-3.894000px;}
._b_c00074{margin-left:-2.277000px;}
._a_c00074{margin-left:-1.089000px;}
._6_c00074{width:1.584000px;}
._12_c00074{width:2.673000px;}
._14_c00074{width:4.617000px;}
._13_c00074{width:5.751000px;}
._11_c00074{width:6.885000px;}
._1b_c00074{width:7.917000px;}
._5_c00074{width:9.048000px;}
._10_c00074{width:10.773000px;}
._15_c00074{width:11.811000px;}
._16_c00074{width:13.323000px;}
._1e_c00074{width:14.676000px;}
._f_c00074{width:15.840000px;}
._17_c00074{width:18.168000px;}
._1d_c00074{width:19.338000px;}
._19_c00074{width:21.735000px;}
._1a_c00074{width:22.824000px;}
._18_c00074{width:25.131000px;}
._e_c00074{width:53.229000px;}
._21_c00074{width:184.704000px;}
._1f_c00074{width:838.449000px;}
.fc2_c00074{color:transparent;}
.fc1_c00074{color:rgb(128,128,128);}
.fc0_c00074{color:rgb(0,0,0);}
.fs4_c00074{font-size:42.000000px;}
.fs8_c00074{font-size:48.000000px;}
.fs6_c00074{font-size:51.000000px;}
.fs3_c00074{font-size:72.000000px;}
.fs2_c00074{font-size:81.000000px;}
.fs5_c00074{font-size:84.000000px;}
.fs1_c00074{font-size:99.000000px;}
.fs7_c00074{font-size:108.000000px;}
.fs0_c00074{font-size:132.000000px;}
.y0_c00074{bottom:0.000000px;}
.y21_c00074{bottom:3.105000px;}
.y20_c00074{bottom:7.228371px;}
.y1f_c00074{bottom:98.565000px;}
.y1e_c00074{bottom:123.915000px;}
.y1d_c00074{bottom:146.565000px;}
.y1c_c00074{bottom:171.915000px;}
.y1b_c00074{bottom:197.415000px;}
.y1a_c00074{bottom:220.365000px;}
.y19_c00074{bottom:261.015000px;}
.y18_c00074{bottom:290.265000px;}
.y17_c00074{bottom:318.915000px;}
.y16_c00074{bottom:347.415000px;}
.y15_c00074{bottom:394.815000px;}
.y14_c00074{bottom:418.815000px;}
.y13_c00074{bottom:442.815000px;}
.y12_c00074{bottom:466.515000px;}
.y11_c00074{bottom:490.815000px;}
.y10_c00074{bottom:514.815000px;}
.yf_c00074{bottom:538.965000px;}
.ye_c00074{bottom:563.265000px;}
.yd_c00074{bottom:586.665000px;}
.yc_c00074{bottom:611.565000px;}
.yb_c00074{bottom:634.515000px;}
.ya_c00074{bottom:657.915000px;}
.y9_c00074{bottom:681.765000px;}
.y8_c00074{bottom:706.365000px;}
.y7_c00074{bottom:730.365000px;}
.y6_c00074{bottom:754.665000px;}
.y5_c00074{bottom:779.715000px;}
.y4_c00074{bottom:804.015000px;}
.y3_c00074{bottom:828.915000px;}
.y2_c00074{bottom:848.265000px;}
.y1_c00074{bottom:933.915000px;}
.h9_c00074{height:13.200074px;}
.ha_c00074{height:43.804688px;}
.h3_c00074{height:79.497070px;}
.h6_c00074{height:82.400391px;}
.h5_c00074{height:82.441406px;}
.h7_c00074{height:84.269531px;}
.h4_c00074{height:91.160156px;}
.h8_c00074{height:108.843750px;}
.h2_c00074{height:167.126953px;}
.h0_c00074{height:989.025000px;}
.h1_c00074{height:989.250000px;}
.w1_c00074{width:104.875500px;}
.w0_c00074{width:672.000000px;}
.x0_c00074{left:0.000000px;}
.x2_c00074{left:38.100000px;}
.x1_c00074{left:40.800000px;}
.x3_c00074{left:42.300000px;}
.x4_c00074{left:43.650000px;}
.x5_c00074{left:58.350000px;}
.x6_c00074{left:94.200000px;}
.x7_c00074{left:153.150000px;}
.x9_c00074{left:167.100000px;}
.x8_c00074{left:176.850000px;}
.xa_c00074{left:223.650000px;}
.xc_c00074{left:287.814240px;}
.xb_c00074{left:308.100000px;}
@media print{
.v0_c00074{vertical-align:0.000000pt;}
.ls0_c00074{letter-spacing:-2.666667pt;}
.ls1_c00074{letter-spacing:0.000000pt;}
.ls2_c00074{letter-spacing:8.000000pt;}
.ws0_c00074{word-spacing:-18.000000pt;}
.ws1_c00074{word-spacing:-15.424000pt;}
.ws2_c00074{word-spacing:-2.469333pt;}
.ws3_c00074{word-spacing:0.000000pt;}
._0_c00074{margin-left:-18.538667pt;}
._1c_c00074{margin-left:-17.376000pt;}
._7_c00074{margin-left:-15.752000pt;}
._20_c00074{margin-left:-14.781333pt;}
._4_c00074{margin-left:-13.610667pt;}
._1_c00074{margin-left:-12.672000pt;}
._3_c00074{margin-left:-10.794667pt;}
._9_c00074{margin-left:-8.800000pt;}
._8_c00074{margin-left:-7.744000pt;}
._c_c00074{margin-left:-6.365333pt;}
._2_c00074{margin-left:-4.810667pt;}
._d_c00074{margin-left:-3.461333pt;}
._b_c00074{margin-left:-2.024000pt;}
._a_c00074{margin-left:-0.968000pt;}
._6_c00074{width:1.408000pt;}
._12_c00074{width:2.376000pt;}
._14_c00074{width:4.104000pt;}
._13_c00074{width:5.112000pt;}
._11_c00074{width:6.120000pt;}
._1b_c00074{width:7.037333pt;}
._5_c00074{width:8.042667pt;}
._10_c00074{width:9.576000pt;}
._15_c00074{width:10.498667pt;}
._16_c00074{width:11.842667pt;}
._1e_c00074{width:13.045333pt;}
._f_c00074{width:14.080000pt;}
._17_c00074{width:16.149333pt;}
._1d_c00074{width:17.189333pt;}
._19_c00074{width:19.320000pt;}
._1a_c00074{width:20.288000pt;}
._18_c00074{width:22.338667pt;}
._e_c00074{width:47.314667pt;}
._21_c00074{width:164.181333pt;}
._1f_c00074{width:745.288000pt;}
.fs4_c00074{font-size:37.333333pt;}
.fs8_c00074{font-size:42.666667pt;}
.fs6_c00074{font-size:45.333333pt;}
.fs3_c00074{font-size:64.000000pt;}
.fs2_c00074{font-size:72.000000pt;}
.fs5_c00074{font-size:74.666667pt;}
.fs1_c00074{font-size:88.000000pt;}
.fs7_c00074{font-size:96.000000pt;}
.fs0_c00074{font-size:117.333333pt;}
.y0_c00074{bottom:0.000000pt;}
.y21_c00074{bottom:2.760000pt;}
.y20_c00074{bottom:6.425219pt;}
.y1f_c00074{bottom:87.613333pt;}
.y1e_c00074{bottom:110.146667pt;}
.y1d_c00074{bottom:130.280000pt;}
.y1c_c00074{bottom:152.813333pt;}
.y1b_c00074{bottom:175.480000pt;}
.y1a_c00074{bottom:195.880000pt;}
.y19_c00074{bottom:232.013333pt;}
.y18_c00074{bottom:258.013333pt;}
.y17_c00074{bottom:283.480000pt;}
.y16_c00074{bottom:308.813333pt;}
.y15_c00074{bottom:350.946667pt;}
.y14_c00074{bottom:372.280000pt;}
.y13_c00074{bottom:393.613333pt;}
.y12_c00074{bottom:414.680000pt;}
.y11_c00074{bottom:436.280000pt;}
.y10_c00074{bottom:457.613333pt;}
.yf_c00074{bottom:479.080000pt;}
.ye_c00074{bottom:500.680000pt;}
.yd_c00074{bottom:521.480000pt;}
.yc_c00074{bottom:543.613333pt;}
.yb_c00074{bottom:564.013333pt;}
.ya_c00074{bottom:584.813333pt;}
.y9_c00074{bottom:606.013333pt;}
.y8_c00074{bottom:627.880000pt;}
.y7_c00074{bottom:649.213333pt;}
.y6_c00074{bottom:670.813333pt;}
.y5_c00074{bottom:693.080000pt;}
.y4_c00074{bottom:714.680000pt;}
.y3_c00074{bottom:736.813333pt;}
.y2_c00074{bottom:754.013333pt;}
.y1_c00074{bottom:830.146667pt;}
.h9_c00074{height:11.733399pt;}
.ha_c00074{height:38.937500pt;}
.h3_c00074{height:70.664062pt;}
.h6_c00074{height:73.244792pt;}
.h5_c00074{height:73.281250pt;}
.h7_c00074{height:74.906250pt;}
.h4_c00074{height:81.031250pt;}
.h8_c00074{height:96.750000pt;}
.h2_c00074{height:148.557292pt;}
.h0_c00074{height:879.133333pt;}
.h1_c00074{height:879.333333pt;}
.w1_c00074{width:93.222667pt;}
.w0_c00074{width:597.333333pt;}
.x0_c00074{left:0.000000pt;}
.x2_c00074{left:33.866667pt;}
.x1_c00074{left:36.266667pt;}
.x3_c00074{left:37.600000pt;}
.x4_c00074{left:38.800000pt;}
.x5_c00074{left:51.866667pt;}
.x6_c00074{left:83.733333pt;}
.x7_c00074{left:136.133333pt;}
.x9_c00074{left:148.533333pt;}
.x8_c00074{left:157.200000pt;}
.xa_c00074{left:198.800000pt;}
.xc_c00074{left:255.834880pt;}
.xb_c00074{left:273.866667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_8fbafa616418fbb1fcdd98c2.woff2')format("woff");}.ff1_c00075{font-family:ff1_c00075;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00075;src:url('chunks/assets/font_a64ceaeaa3558829ef1146a5.woff2')format("woff");}.ff2_c00075{font-family:ff2_c00075;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00075;src:url('chunks/assets/font_33449292453f4927b895f857.woff2')format("woff");}.ff3_c00075{font-family:ff3_c00075;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00075;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff4_c00075{font-family:ff4_c00075;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00075{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00075{vertical-align:0.000000px;}
.ls1_c00075{letter-spacing:-3.000000px;}
.ls0_c00075{letter-spacing:0.000000px;}
.sc__c00075{text-shadow:none;}
.sc0_c00075{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00075{-webkit-text-stroke:0px transparent;}
.sc0_c00075{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00075{word-spacing:-20.250000px;}
.ws2_c00075{word-spacing:0.000000px;}
.ws0_c00075{word-spacing:11.583000px;}
._3_c00075{margin-left:-18.711000px;}
._0_c00075{margin-left:-15.333000px;}
._14_c00075{margin-left:-9.021000px;}
._12_c00075{margin-left:-7.860000px;}
._5_c00075{margin-left:-6.633000px;}
._4_c00075{margin-left:-5.346000px;}
._f_c00075{margin-left:-4.278000px;}
._a_c00075{margin-left:-2.871000px;}
._9_c00075{margin-left:-1.683000px;}
._10_c00075{width:1.047000px;}
._6_c00075{width:2.190000px;}
._c_c00075{width:3.243000px;}
._7_c00075{width:4.443000px;}
._8_c00075{width:5.445000px;}
._e_c00075{width:7.077000px;}
._b_c00075{width:8.664000px;}
._d_c00075{width:10.353000px;}
._2_c00075{width:11.868000px;}
._16_c00075{width:13.263000px;}
._11_c00075{width:14.574000px;}
._15_c00075{width:16.974000px;}
._13_c00075{width:18.216000px;}
._1_c00075{width:203.412000px;}
._17_c00075{width:283.692000px;}
.fc2_c00075{color:transparent;}
.fc1_c00075{color:rgb(128,128,128);}
.fc0_c00075{color:rgb(0,0,0);}
.fs3_c00075{font-size:48.000000px;}
.fs2_c00075{font-size:81.000000px;}
.fs0_c00075{font-size:99.000000px;}
.fs1_c00075{font-size:132.000000px;}
.y0_c00075{bottom:0.000000px;}
.y26_c00075{bottom:3.105000px;}
.y25_c00075{bottom:7.228357px;}
.y24_c00075{bottom:74.880000px;}
.y23_c00075{bottom:99.630000px;}
.y22_c00075{bottom:124.980000px;}
.y21_c00075{bottom:149.580000px;}
.y20_c00075{bottom:174.180000px;}
.y1f_c00075{bottom:198.780000px;}
.y1e_c00075{bottom:223.380000px;}
.y1d_c00075{bottom:247.830000px;}
.y1c_c00075{bottom:272.430000px;}
.y1b_c00075{bottom:296.730000px;}
.y1a_c00075{bottom:321.030000px;}
.y19_c00075{bottom:345.330000px;}
.y18_c00075{bottom:369.630000px;}
.y17_c00075{bottom:393.930000px;}
.y16_c00075{bottom:418.230000px;}
.y15_c00075{bottom:442.530000px;}
.y14_c00075{bottom:467.130000px;}
.y13_c00075{bottom:490.680000px;}
.y12_c00075{bottom:514.980000px;}
.y11_c00075{bottom:539.280000px;}
.y10_c00075{bottom:563.280000px;}
.yf_c00075{bottom:587.880000px;}
.ye_c00075{bottom:611.880000px;}
.yd_c00075{bottom:636.630000px;}
.yc_c00075{bottom:660.780000px;}
.yb_c00075{bottom:684.480000px;}
.ya_c00075{bottom:709.080000px;}
.y9_c00075{bottom:733.080000px;}
.y8_c00075{bottom:757.380000px;}
.y7_c00075{bottom:781.680000px;}
.y6_c00075{bottom:806.280000px;}
.y5_c00075{bottom:829.980000px;}
.y4_c00075{bottom:854.280000px;}
.y3_c00075{bottom:878.580000px;}
.y2_c00075{bottom:902.580000px;}
.y1_c00075{bottom:937.680000px;}
.h3_c00075{height:13.200074px;}
.h4_c00075{height:43.804688px;}
.h2_c00075{height:79.497070px;}
.h1_c00075{height:167.126953px;}
.h0_c00075{height:995.250000px;}
.w2_c00075{width:104.875500px;}
.w0_c00075{width:667.425000px;}
.w1_c00075{width:667.500000px;}
.x0_c00075{left:0.000000px;}
.x10_c00075{left:52.650000px;}
.x11_c00075{left:129.900000px;}
.xf_c00075{left:133.350000px;}
.xe_c00075{left:135.000000px;}
.xd_c00075{left:137.400000px;}
.xc_c00075{left:138.600000px;}
.xb_c00075{left:140.100000px;}
.xa_c00075{left:142.650000px;}
.x9_c00075{left:144.450000px;}
.x8_c00075{left:145.500000px;}
.x7_c00075{left:146.700000px;}
.x5_c00075{left:148.950000px;}
.x4_c00075{left:150.600000px;}
.x3_c00075{left:153.000000px;}
.x2_c00075{left:154.200000px;}
.x1_c00075{left:155.250000px;}
.x6_c00075{left:273.600000px;}
.x13_c00075{left:285.526749px;}
.x12_c00075{left:599.700000px;}
@media print{
.v0_c00075{vertical-align:0.000000pt;}
.ls1_c00075{letter-spacing:-2.666667pt;}
.ls0_c00075{letter-spacing:0.000000pt;}
.ws1_c00075{word-spacing:-18.000000pt;}
.ws2_c00075{word-spacing:0.000000pt;}
.ws0_c00075{word-spacing:10.296000pt;}
._3_c00075{margin-left:-16.632000pt;}
._0_c00075{margin-left:-13.629333pt;}
._14_c00075{margin-left:-8.018667pt;}
._12_c00075{margin-left:-6.986667pt;}
._5_c00075{margin-left:-5.896000pt;}
._4_c00075{margin-left:-4.752000pt;}
._f_c00075{margin-left:-3.802667pt;}
._a_c00075{margin-left:-2.552000pt;}
._9_c00075{margin-left:-1.496000pt;}
._10_c00075{width:0.930667pt;}
._6_c00075{width:1.946667pt;}
._c_c00075{width:2.882667pt;}
._7_c00075{width:3.949333pt;}
._8_c00075{width:4.840000pt;}
._e_c00075{width:6.290667pt;}
._b_c00075{width:7.701333pt;}
._d_c00075{width:9.202667pt;}
._2_c00075{width:10.549333pt;}
._16_c00075{width:11.789333pt;}
._11_c00075{width:12.954667pt;}
._15_c00075{width:15.088000pt;}
._13_c00075{width:16.192000pt;}
._1_c00075{width:180.810667pt;}
._17_c00075{width:252.170667pt;}
.fs3_c00075{font-size:42.666667pt;}
.fs2_c00075{font-size:72.000000pt;}
.fs0_c00075{font-size:88.000000pt;}
.fs1_c00075{font-size:117.333333pt;}
.y0_c00075{bottom:0.000000pt;}
.y26_c00075{bottom:2.760000pt;}
.y25_c00075{bottom:6.425206pt;}
.y24_c00075{bottom:66.560000pt;}
.y23_c00075{bottom:88.560000pt;}
.y22_c00075{bottom:111.093333pt;}
.y21_c00075{bottom:132.960000pt;}
.y20_c00075{bottom:154.826667pt;}
.y1f_c00075{bottom:176.693333pt;}
.y1e_c00075{bottom:198.560000pt;}
.y1d_c00075{bottom:220.293333pt;}
.y1c_c00075{bottom:242.160000pt;}
.y1b_c00075{bottom:263.760000pt;}
.y1a_c00075{bottom:285.360000pt;}
.y19_c00075{bottom:306.960000pt;}
.y18_c00075{bottom:328.560000pt;}
.y17_c00075{bottom:350.160000pt;}
.y16_c00075{bottom:371.760000pt;}
.y15_c00075{bottom:393.360000pt;}
.y14_c00075{bottom:415.226667pt;}
.y13_c00075{bottom:436.160000pt;}
.y12_c00075{bottom:457.760000pt;}
.y11_c00075{bottom:479.360000pt;}
.y10_c00075{bottom:500.693333pt;}
.yf_c00075{bottom:522.560000pt;}
.ye_c00075{bottom:543.893333pt;}
.yd_c00075{bottom:565.893333pt;}
.yc_c00075{bottom:587.360000pt;}
.yb_c00075{bottom:608.426667pt;}
.ya_c00075{bottom:630.293333pt;}
.y9_c00075{bottom:651.626667pt;}
.y8_c00075{bottom:673.226667pt;}
.y7_c00075{bottom:694.826667pt;}
.y6_c00075{bottom:716.693333pt;}
.y5_c00075{bottom:737.760000pt;}
.y4_c00075{bottom:759.360000pt;}
.y3_c00075{bottom:780.960000pt;}
.y2_c00075{bottom:802.293333pt;}
.y1_c00075{bottom:833.493333pt;}
.h3_c00075{height:11.733399pt;}
.h4_c00075{height:38.937500pt;}
.h2_c00075{height:70.664062pt;}
.h1_c00075{height:148.557292pt;}
.h0_c00075{height:884.666667pt;}
.w2_c00075{width:93.222667pt;}
.w0_c00075{width:593.266667pt;}
.w1_c00075{width:593.333333pt;}
.x0_c00075{left:0.000000pt;}
.x10_c00075{left:46.800000pt;}
.x11_c00075{left:115.466667pt;}
.xf_c00075{left:118.533333pt;}
.xe_c00075{left:120.000000pt;}
.xd_c00075{left:122.133333pt;}
.xc_c00075{left:123.200000pt;}
.xb_c00075{left:124.533333pt;}
.xa_c00075{left:126.800000pt;}
.x9_c00075{left:128.400000pt;}
.x8_c00075{left:129.333333pt;}
.x7_c00075{left:130.400000pt;}
.x5_c00075{left:132.400000pt;}
.x4_c00075{left:133.866667pt;}
.x3_c00075{left:136.000000pt;}
.x2_c00075{left:137.066667pt;}
.x1_c00075{left:138.000000pt;}
.x6_c00075{left:243.200000pt;}
.x13_c00075{left:253.801554pt;}
.x12_c00075{left:533.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f147a8ee926b6b5096b9d924.woff2')format("woff");}.ff1_c00076{font-family:ff1_c00076;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00076;src:url('chunks/assets/font_e81311e57234d096224b4dc5.woff2')format("woff");}.ff2_c00076{font-family:ff2_c00076;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00076;src:url('chunks/assets/font_d5393c462e9c30051ca707b2.woff2')format("woff");}.ff3_c00076{font-family:ff3_c00076;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00076;src:url('chunks/assets/font_a1be317767a60fc2f55fbaee.woff2')format("woff");}.ff4_c00076{font-family:ff4_c00076;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00076;src:url('chunks/assets/font_f13a59af99743f6d72f89f8c.woff2')format("woff");}.ff5_c00076{font-family:ff5_c00076;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00076;src:url('chunks/assets/font_aa6a7c63a365025763cb3fe2.woff2')format("woff");}.ff6_c00076{font-family:ff6_c00076;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00076;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c00076{font-family:ff7_c00076;line-height:1.219238;font-style: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;}
.v1_c00076{vertical-align:16.800000px;}
.ls1_c00076{letter-spacing:0.000000px;}
.ls0_c00076{letter-spacing:134.220000px;}
.sc__c00076{text-shadow:none;}
.sc0_c00076{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00076{-webkit-text-stroke:0px transparent;}
.sc0_c00076{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00076{word-spacing:-22.518000px;}
.ws1_c00076{word-spacing:-18.014400px;}
.ws2_c00076{word-spacing:0.000000px;}
._1d_c00076{margin-left:-22.752000px;}
._1f_c00076{margin-left:-18.873000px;}
._21_c00076{margin-left:-17.730000px;}
._15_c00076{margin-left:-14.013000px;}
._26_c00076{margin-left:-10.848000px;}
._13_c00076{margin-left:-9.723000px;}
._20_c00076{margin-left:-8.172000px;}
._11_c00076{margin-left:-6.150000px;}
._c_c00076{margin-left:-4.374000px;}
._16_c00076{margin-left:-3.366000px;}
._6_c00076{margin-left:-2.142000px;}
._10_c00076{margin-left:-1.083000px;}
._7_c00076{width:1.326000px;}
._3_c00076{width:2.856000px;}
._5_c00076{width:4.794000px;}
._4_c00076{width:6.018000px;}
._e_c00076{width:7.467000px;}
._b_c00076{width:8.748000px;}
._a_c00076{width:10.191000px;}
._1_c00076{width:11.322000px;}
._0_c00076{width:12.342000px;}
._17_c00076{width:13.872000px;}
._d_c00076{width:15.126000px;}
._18_c00076{width:16.575000px;}
._2_c00076{width:18.768000px;}
._12_c00076{width:23.613000px;}
._9_c00076{width:28.200000px;}
._22_c00076{width:30.945000px;}
._24_c00076{width:33.999000px;}
._1a_c00076{width:39.174000px;}
._8_c00076{width:40.392000px;}
._23_c00076{width:41.646000px;}
._25_c00076{width:43.821000px;}
._1e_c00076{width:54.108000px;}
._19_c00076{width:81.492000px;}
._1b_c00076{width:97.524000px;}
._f_c00076{width:229.455000px;}
._14_c00076{width:295.764000px;}
._1c_c00076{width:334.869000px;}
.fc2_c00076{color:transparent;}
.fc1_c00076{color:rgb(128,128,128);}
.fc0_c00076{color:rgb(0,0,0);}
.fs8_c00076{font-size:48.000000px;}
.fs6_c00076{font-size:57.000000px;}
.fs7_c00076{font-size:60.000000px;}
.fs3_c00076{font-size:64.800000px;}
.fs4_c00076{font-size:72.000000px;}
.fs5_c00076{font-size:78.000000px;}
.fs2_c00076{font-size:81.000000px;}
.fs0_c00076{font-size:102.000000px;}
.fs1_c00076{font-size:120.000000px;}
.y0_c00076{bottom:0.000000px;}
.y24_c00076{bottom:3.105000px;}
.y23_c00076{bottom:7.228363px;}
.y22_c00076{bottom:79.950000px;}
.y21_c00076{bottom:105.300000px;}
.y20_c00076{bottom:129.600000px;}
.y1f_c00076{bottom:150.000000px;}
.y1e_c00076{bottom:178.200000px;}
.y1d_c00076{bottom:203.100000px;}
.y1c_c00076{bottom:252.450000px;}
.y1b_c00076{bottom:277.050000px;}
.y1a_c00076{bottom:301.650000px;}
.y19_c00076{bottom:325.650000px;}
.y18_c00076{bottom:349.350000px;}
.y17_c00076{bottom:373.650000px;}
.y16_c00076{bottom:397.950000px;}
.y15_c00076{bottom:422.550000px;}
.y14_c00076{bottom:447.150000px;}
.y13_c00076{bottom:471.450000px;}
.y12_c00076{bottom:496.050000px;}
.y11_c00076{bottom:520.350000px;}
.y10_c00076{bottom:544.650000px;}
.yf_c00076{bottom:568.950000px;}
.ye_c00076{bottom:592.950000px;}
.yd_c00076{bottom:617.850000px;}
.yc_c00076{bottom:641.250000px;}
.yb_c00076{bottom:666.150000px;}
.ya_c00076{bottom:690.450000px;}
.y9_c00076{bottom:715.800000px;}
.y8_c00076{bottom:739.350000px;}
.y7_c00076{bottom:764.100000px;}
.y6_c00076{bottom:788.100000px;}
.y5_c00076{bottom:812.400000px;}
.y4_c00076{bottom:836.550000px;}
.y3_c00076{bottom:860.850000px;}
.y2_c00076{bottom:885.600000px;}
.y1_c00076{bottom:919.950000px;}
.h7_c00076{height:13.200074px;}
.h8_c00076{height:43.804688px;}
.h3_c00076{height:79.497070px;}
.h4_c00076{height:84.269531px;}
.h6_c00076{height:96.297070px;}
.h5_c00076{height:98.756836px;}
.h2_c00076{height:120.937500px;}
.h0_c00076{height:974.700000px;}
.h1_c00076{height:975.000000px;}
.w2_c00076{width:104.875500px;}
.w0_c00076{width:662.025000px;}
.w1_c00076{width:662.250000px;}
.x0_c00076{left:0.000000px;}
.x2_c00076{left:46.200000px;}
.x3_c00076{left:49.050000px;}
.x4_c00076{left:50.250000px;}
.x5_c00076{left:51.300000px;}
.x6_c00076{left:52.350000px;}
.x7_c00076{left:53.700000px;}
.x8_c00076{left:54.750000px;}
.x9_c00076{left:56.100000px;}
.xa_c00076{left:57.450000px;}
.xb_c00076{left:59.400000px;}
.xe_c00076{left:62.400000px;}
.xc_c00076{left:100.650000px;}
.xf_c00076{left:106.650000px;}
.x1_c00076{left:118.050000px;}
.xd_c00076{left:228.450000px;}
.x10_c00076{left:282.826767px;}
@media print{
.v0_c00076{vertical-align:0.000000pt;}
.v1_c00076{vertical-align:14.933333pt;}
.ls1_c00076{letter-spacing:0.000000pt;}
.ls0_c00076{letter-spacing:119.306667pt;}
.ws0_c00076{word-spacing:-20.016000pt;}
.ws1_c00076{word-spacing:-16.012800pt;}
.ws2_c00076{word-spacing:0.000000pt;}
._1d_c00076{margin-left:-20.224000pt;}
._1f_c00076{margin-left:-16.776000pt;}
._21_c00076{margin-left:-15.760000pt;}
._15_c00076{margin-left:-12.456000pt;}
._26_c00076{margin-left:-9.642667pt;}
._13_c00076{margin-left:-8.642667pt;}
._20_c00076{margin-left:-7.264000pt;}
._11_c00076{margin-left:-5.466667pt;}
._c_c00076{margin-left:-3.888000pt;}
._16_c00076{margin-left:-2.992000pt;}
._6_c00076{margin-left:-1.904000pt;}
._10_c00076{margin-left:-0.962667pt;}
._7_c00076{width:1.178667pt;}
._3_c00076{width:2.538667pt;}
._5_c00076{width:4.261333pt;}
._4_c00076{width:5.349333pt;}
._e_c00076{width:6.637333pt;}
._b_c00076{width:7.776000pt;}
._a_c00076{width:9.058667pt;}
._1_c00076{width:10.064000pt;}
._0_c00076{width:10.970667pt;}
._17_c00076{width:12.330667pt;}
._d_c00076{width:13.445333pt;}
._18_c00076{width:14.733333pt;}
._2_c00076{width:16.682667pt;}
._12_c00076{width:20.989333pt;}
._9_c00076{width:25.066667pt;}
._22_c00076{width:27.506667pt;}
._24_c00076{width:30.221333pt;}
._1a_c00076{width:34.821333pt;}
._8_c00076{width:35.904000pt;}
._23_c00076{width:37.018667pt;}
._25_c00076{width:38.952000pt;}
._1e_c00076{width:48.096000pt;}
._19_c00076{width:72.437333pt;}
._1b_c00076{width:86.688000pt;}
._f_c00076{width:203.960000pt;}
._14_c00076{width:262.901333pt;}
._1c_c00076{width:297.661333pt;}
.fs8_c00076{font-size:42.666667pt;}
.fs6_c00076{font-size:50.666667pt;}
.fs7_c00076{font-size:53.333333pt;}
.fs3_c00076{font-size:57.600000pt;}
.fs4_c00076{font-size:64.000000pt;}
.fs5_c00076{font-size:69.333333pt;}
.fs2_c00076{font-size:72.000000pt;}
.fs0_c00076{font-size:90.666667pt;}
.fs1_c00076{font-size:106.666667pt;}
.y0_c00076{bottom:0.000000pt;}
.y24_c00076{bottom:2.760000pt;}
.y23_c00076{bottom:6.425212pt;}
.y22_c00076{bottom:71.066667pt;}
.y21_c00076{bottom:93.600000pt;}
.y20_c00076{bottom:115.200000pt;}
.y1f_c00076{bottom:133.333333pt;}
.y1e_c00076{bottom:158.400000pt;}
.y1d_c00076{bottom:180.533333pt;}
.y1c_c00076{bottom:224.400000pt;}
.y1b_c00076{bottom:246.266667pt;}
.y1a_c00076{bottom:268.133333pt;}
.y19_c00076{bottom:289.466667pt;}
.y18_c00076{bottom:310.533333pt;}
.y17_c00076{bottom:332.133333pt;}
.y16_c00076{bottom:353.733333pt;}
.y15_c00076{bottom:375.600000pt;}
.y14_c00076{bottom:397.466667pt;}
.y13_c00076{bottom:419.066667pt;}
.y12_c00076{bottom:440.933333pt;}
.y11_c00076{bottom:462.533333pt;}
.y10_c00076{bottom:484.133333pt;}
.yf_c00076{bottom:505.733333pt;}
.ye_c00076{bottom:527.066667pt;}
.yd_c00076{bottom:549.200000pt;}
.yc_c00076{bottom:570.000000pt;}
.yb_c00076{bottom:592.133333pt;}
.ya_c00076{bottom:613.733333pt;}
.y9_c00076{bottom:636.266667pt;}
.y8_c00076{bottom:657.200000pt;}
.y7_c00076{bottom:679.200000pt;}
.y6_c00076{bottom:700.533333pt;}
.y5_c00076{bottom:722.133333pt;}
.y4_c00076{bottom:743.600000pt;}
.y3_c00076{bottom:765.200000pt;}
.y2_c00076{bottom:787.200000pt;}
.y1_c00076{bottom:817.733333pt;}
.h7_c00076{height:11.733399pt;}
.h8_c00076{height:38.937500pt;}
.h3_c00076{height:70.664062pt;}
.h4_c00076{height:74.906250pt;}
.h6_c00076{height:85.597396pt;}
.h5_c00076{height:87.783854pt;}
.h2_c00076{height:107.500000pt;}
.h0_c00076{height:866.400000pt;}
.h1_c00076{height:866.666667pt;}
.w2_c00076{width:93.222667pt;}
.w0_c00076{width:588.466667pt;}
.w1_c00076{width:588.666667pt;}
.x0_c00076{left:0.000000pt;}
.x2_c00076{left:41.066667pt;}
.x3_c00076{left:43.600000pt;}
.x4_c00076{left:44.666667pt;}
.x5_c00076{left:45.600000pt;}
.x6_c00076{left:46.533333pt;}
.x7_c00076{left:47.733333pt;}
.x8_c00076{left:48.666667pt;}
.x9_c00076{left:49.866667pt;}
.xa_c00076{left:51.066667pt;}
.xb_c00076{left:52.800000pt;}
.xe_c00076{left:55.466667pt;}
.xc_c00076{left:89.466667pt;}
.xf_c00076{left:94.800000pt;}
.x1_c00076{left:104.933333pt;}
.xd_c00076{left:203.066667pt;}
.x10_c00076{left:251.401571pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0cf1afdf30f021f3e42ffc29.woff2')format("woff");}.ff1_c00077{font-family:ff1_c00077;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00077;src:url('chunks/assets/font_0663ee45fedadfa423d62006.woff2')format("woff");}.ff2_c00077{font-family:ff2_c00077;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00077;src:url('chunks/assets/font_3be74222f6e191a8d01909b5.woff2')format("woff");}.ff3_c00077{font-family:ff3_c00077;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00077;src:url('chunks/assets/font_2a0673957f56657eb9d8aea1.woff2')format("woff");}.ff4_c00077{font-family:ff4_c00077;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00077;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c00077{font-family:ff5_c00077;line-height:1.219238;font-style: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;}
.ls0_c00077{letter-spacing:-3.000000px;}
.ls1_c00077{letter-spacing:0.000000px;}
.ls2_c00077{letter-spacing:3.000000px;}
.sc__c00077{text-shadow:none;}
.sc0_c00077{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00077{-webkit-text-stroke:0px transparent;}
.sc0_c00077{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00077{word-spacing:-20.250000px;}
.ws0_c00077{word-spacing:-17.352000px;}
.ws2_c00077{word-spacing:0.000000px;}
._0_c00077{margin-left:-22.836000px;}
._1_c00077{margin-left:-18.252000px;}
._6_c00077{margin-left:-16.401000px;}
._16_c00077{margin-left:-14.730000px;}
._11_c00077{margin-left:-13.320000px;}
._15_c00077{margin-left:-10.551000px;}
._d_c00077{margin-left:-8.505000px;}
._12_c00077{margin-left:-7.443000px;}
._7_c00077{margin-left:-5.988000px;}
._b_c00077{margin-left:-4.338000px;}
._9_c00077{margin-left:-2.871000px;}
._a_c00077{margin-left:-1.386000px;}
._4_c00077{width:1.683000px;}
._5_c00077{width:2.772000px;}
._2_c00077{width:4.257000px;}
._c_c00077{width:5.895000px;}
._e_c00077{width:7.128000px;}
._f_c00077{width:8.559000px;}
._10_c00077{width:10.584000px;}
._1f_c00077{width:12.105000px;}
._8_c00077{width:13.266000px;}
._21_c00077{width:14.418000px;}
._19_c00077{width:15.705000px;}
._20_c00077{width:17.091000px;}
._18_c00077{width:18.954000px;}
._24_c00077{width:22.221000px;}
._13_c00077{width:25.029000px;}
._22_c00077{width:26.640000px;}
._1b_c00077{width:28.398000px;}
._1a_c00077{width:55.950000px;}
._1d_c00077{width:86.598000px;}
._14_c00077{width:154.437000px;}
._23_c00077{width:165.777000px;}
._1e_c00077{width:208.242000px;}
._1c_c00077{width:238.617000px;}
._3_c00077{width:246.114000px;}
._17_c00077{width:408.801000px;}
.fc2_c00077{color:transparent;}
.fc1_c00077{color:rgb(128,128,128);}
.fc0_c00077{color:rgb(0,0,0);}
.fs5_c00077{font-size:48.000000px;}
.fs4_c00077{font-size:69.000000px;}
.fs3_c00077{font-size:72.000000px;}
.fs2_c00077{font-size:81.000000px;}
.fs1_c00077{font-size:99.000000px;}
.fs0_c00077{font-size:132.000000px;}
.y0_c00077{bottom:0.000000px;}
.y26_c00077{bottom:3.105000px;}
.y25_c00077{bottom:7.228357px;}
.y24_c00077{bottom:67.530000px;}
.y23_c00077{bottom:94.230000px;}
.y22_c00077{bottom:119.430000px;}
.y21_c00077{bottom:144.180000px;}
.y20_c00077{bottom:168.480000px;}
.y1f_c00077{bottom:193.830000px;}
.y1e_c00077{bottom:218.430000px;}
.y1d_c00077{bottom:243.330000px;}
.y1c_c00077{bottom:268.080000px;}
.y1b_c00077{bottom:292.380000px;}
.y1a_c00077{bottom:316.980000px;}
.y19_c00077{bottom:341.280000px;}
.y18_c00077{bottom:365.580000px;}
.y17_c00077{bottom:390.480000px;}
.y16_c00077{bottom:414.780000px;}
.y15_c00077{bottom:439.380000px;}
.y14_c00077{bottom:463.680000px;}
.y13_c00077{bottom:487.980000px;}
.y12_c00077{bottom:512.730000px;}
.y11_c00077{bottom:536.280000px;}
.y10_c00077{bottom:561.030000px;}
.yf_c00077{bottom:586.530000px;}
.ye_c00077{bottom:610.230000px;}
.yd_c00077{bottom:635.280000px;}
.yc_c00077{bottom:659.130000px;}
.yb_c00077{bottom:683.430000px;}
.ya_c00077{bottom:708.180000px;}
.y9_c00077{bottom:730.980000px;}
.y8_c00077{bottom:757.080000px;}
.y7_c00077{bottom:781.680000px;}
.y6_c00077{bottom:805.680000px;}
.y5_c00077{bottom:829.680000px;}
.y4_c00077{bottom:854.580000px;}
.y3_c00077{bottom:878.880000px;}
.y2_c00077{bottom:903.180000px;}
.y1_c00077{bottom:938.580000px;}
.h4_c00077{height:13.200074px;}
.h5_c00077{height:43.804688px;}
.h2_c00077{height:79.497070px;}
.h3_c00077{height:84.269531px;}
.h1_c00077{height:167.126953px;}
.h0_c00077{height:995.250000px;}
.w2_c00077{width:104.875500px;}
.w0_c00077{width:667.425000px;}
.w1_c00077{width:667.500000px;}
.x0_c00077{left:0.000000px;}
.x13_c00077{left:19.950000px;}
.x12_c00077{left:21.900000px;}
.xd_c00077{left:27.900000px;}
.xc_c00077{left:31.350000px;}
.x3_c00077{left:37.350000px;}
.xb_c00077{left:72.150000px;}
.x4_c00077{left:84.600000px;}
.x7_c00077{left:86.700000px;}
.x15_c00077{left:111.600000px;}
.x14_c00077{left:113.700000px;}
.x11_c00077{left:115.050000px;}
.x10_c00077{left:117.750000px;}
.xf_c00077{left:119.100000px;}
.xe_c00077{left:121.200000px;}
.xa_c00077{left:125.100000px;}
.x9_c00077{left:126.900000px;}
.x8_c00077{left:127.950000px;}
.x6_c00077{left:129.150000px;}
.x5_c00077{left:131.250000px;}
.x2_c00077{left:134.550000px;}
.x1_c00077{left:136.950000px;}
.x17_c00077{left:285.526749px;}
.x16_c00077{left:565.200000px;}
@media print{
.v0_c00077{vertical-align:0.000000pt;}
.ls0_c00077{letter-spacing:-2.666667pt;}
.ls1_c00077{letter-spacing:0.000000pt;}
.ls2_c00077{letter-spacing:2.666667pt;}
.ws1_c00077{word-spacing:-18.000000pt;}
.ws0_c00077{word-spacing:-15.424000pt;}
.ws2_c00077{word-spacing:0.000000pt;}
._0_c00077{margin-left:-20.298667pt;}
._1_c00077{margin-left:-16.224000pt;}
._6_c00077{margin-left:-14.578667pt;}
._16_c00077{margin-left:-13.093333pt;}
._11_c00077{margin-left:-11.840000pt;}
._15_c00077{margin-left:-9.378667pt;}
._d_c00077{margin-left:-7.560000pt;}
._12_c00077{margin-left:-6.616000pt;}
._7_c00077{margin-left:-5.322667pt;}
._b_c00077{margin-left:-3.856000pt;}
._9_c00077{margin-left:-2.552000pt;}
._a_c00077{margin-left:-1.232000pt;}
._4_c00077{width:1.496000pt;}
._5_c00077{width:2.464000pt;}
._2_c00077{width:3.784000pt;}
._c_c00077{width:5.240000pt;}
._e_c00077{width:6.336000pt;}
._f_c00077{width:7.608000pt;}
._10_c00077{width:9.408000pt;}
._1f_c00077{width:10.760000pt;}
._8_c00077{width:11.792000pt;}
._21_c00077{width:12.816000pt;}
._19_c00077{width:13.960000pt;}
._20_c00077{width:15.192000pt;}
._18_c00077{width:16.848000pt;}
._24_c00077{width:19.752000pt;}
._13_c00077{width:22.248000pt;}
._22_c00077{width:23.680000pt;}
._1b_c00077{width:25.242667pt;}
._1a_c00077{width:49.733333pt;}
._1d_c00077{width:76.976000pt;}
._14_c00077{width:137.277333pt;}
._23_c00077{width:147.357333pt;}
._1e_c00077{width:185.104000pt;}
._1c_c00077{width:212.104000pt;}
._3_c00077{width:218.768000pt;}
._17_c00077{width:363.378667pt;}
.fs5_c00077{font-size:42.666667pt;}
.fs4_c00077{font-size:61.333333pt;}
.fs3_c00077{font-size:64.000000pt;}
.fs2_c00077{font-size:72.000000pt;}
.fs1_c00077{font-size:88.000000pt;}
.fs0_c00077{font-size:117.333333pt;}
.y0_c00077{bottom:0.000000pt;}
.y26_c00077{bottom:2.760000pt;}
.y25_c00077{bottom:6.425206pt;}
.y24_c00077{bottom:60.026667pt;}
.y23_c00077{bottom:83.760000pt;}
.y22_c00077{bottom:106.160000pt;}
.y21_c00077{bottom:128.160000pt;}
.y20_c00077{bottom:149.760000pt;}
.y1f_c00077{bottom:172.293333pt;}
.y1e_c00077{bottom:194.160000pt;}
.y1d_c00077{bottom:216.293333pt;}
.y1c_c00077{bottom:238.293333pt;}
.y1b_c00077{bottom:259.893333pt;}
.y1a_c00077{bottom:281.760000pt;}
.y19_c00077{bottom:303.360000pt;}
.y18_c00077{bottom:324.960000pt;}
.y17_c00077{bottom:347.093333pt;}
.y16_c00077{bottom:368.693333pt;}
.y15_c00077{bottom:390.560000pt;}
.y14_c00077{bottom:412.160000pt;}
.y13_c00077{bottom:433.760000pt;}
.y12_c00077{bottom:455.760000pt;}
.y11_c00077{bottom:476.693333pt;}
.y10_c00077{bottom:498.693333pt;}
.yf_c00077{bottom:521.360000pt;}
.ye_c00077{bottom:542.426667pt;}
.yd_c00077{bottom:564.693333pt;}
.yc_c00077{bottom:585.893333pt;}
.yb_c00077{bottom:607.493333pt;}
.ya_c00077{bottom:629.493333pt;}
.y9_c00077{bottom:649.760000pt;}
.y8_c00077{bottom:672.960000pt;}
.y7_c00077{bottom:694.826667pt;}
.y6_c00077{bottom:716.160000pt;}
.y5_c00077{bottom:737.493333pt;}
.y4_c00077{bottom:759.626667pt;}
.y3_c00077{bottom:781.226667pt;}
.y2_c00077{bottom:802.826667pt;}
.y1_c00077{bottom:834.293333pt;}
.h4_c00077{height:11.733399pt;}
.h5_c00077{height:38.937500pt;}
.h2_c00077{height:70.664062pt;}
.h3_c00077{height:74.906250pt;}
.h1_c00077{height:148.557292pt;}
.h0_c00077{height:884.666667pt;}
.w2_c00077{width:93.222667pt;}
.w0_c00077{width:593.266667pt;}
.w1_c00077{width:593.333333pt;}
.x0_c00077{left:0.000000pt;}
.x13_c00077{left:17.733333pt;}
.x12_c00077{left:19.466667pt;}
.xd_c00077{left:24.800000pt;}
.xc_c00077{left:27.866667pt;}
.x3_c00077{left:33.200000pt;}
.xb_c00077{left:64.133333pt;}
.x4_c00077{left:75.200000pt;}
.x7_c00077{left:77.066667pt;}
.x15_c00077{left:99.200000pt;}
.x14_c00077{left:101.066667pt;}
.x11_c00077{left:102.266667pt;}
.x10_c00077{left:104.666667pt;}
.xf_c00077{left:105.866667pt;}
.xe_c00077{left:107.733333pt;}
.xa_c00077{left:111.200000pt;}
.x9_c00077{left:112.800000pt;}
.x8_c00077{left:113.733333pt;}
.x6_c00077{left:114.800000pt;}
.x5_c00077{left:116.666667pt;}
.x2_c00077{left:119.600000pt;}
.x1_c00077{left:121.733333pt;}
.x17_c00077{left:253.801554pt;}
.x16_c00077{left:502.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_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_3df7d084b17c5a9f892756c6.woff2')format("woff");}.ff1_c00078{font-family:ff1_c00078;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00078;src:url('chunks/assets/font_67cc6a30c67151d0e48875cd.woff2')format("woff");}.ff2_c00078{font-family:ff2_c00078;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00078;src:url('chunks/assets/font_790b77335775717a0044dedd.woff2')format("woff");}.ff3_c00078{font-family:ff3_c00078;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00078;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff4_c00078{font-family:ff4_c00078;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00078{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00078{vertical-align:0.000000px;}
.ls1_c00078{letter-spacing:0.000000px;}
.ls0_c00078{letter-spacing:29.400000px;}
.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;}
}
.ws1_c00078{word-spacing:-20.250000px;}
.ws0_c00078{word-spacing:-17.352000px;}
.ws2_c00078{word-spacing:0.000000px;}
._19_c00078{margin-left:-29.727000px;}
._1c_c00078{margin-left:-22.398000px;}
._1b_c00078{margin-left:-20.115000px;}
._18_c00078{margin-left:-14.454000px;}
._17_c00078{margin-left:-13.041000px;}
._16_c00078{margin-left:-11.448000px;}
._1a_c00078{margin-left:-10.278000px;}
._1d_c00078{margin-left:-8.613000px;}
._10_c00078{margin-left:-7.032000px;}
._d_c00078{margin-left:-5.373000px;}
._c_c00078{margin-left:-4.212000px;}
._e_c00078{margin-left:-2.637000px;}
._11_c00078{margin-left:-1.548000px;}
._7_c00078{width:1.728000px;}
._a_c00078{width:3.420000px;}
._8_c00078{width:4.608000px;}
._2_c00078{width:5.976000px;}
._15_c00078{width:7.083000px;}
._1_c00078{width:8.136000px;}
._f_c00078{width:9.171000px;}
._5_c00078{width:10.512000px;}
._4_c00078{width:11.808000px;}
._3_c00078{width:13.464000px;}
._6_c00078{width:14.472000px;}
._b_c00078{width:16.173000px;}
._12_c00078{width:17.235000px;}
._0_c00078{width:19.800000px;}
._13_c00078{width:33.606000px;}
._14_c00078{width:42.660000px;}
._9_c00078{width:111.768000px;}
.fc2_c00078{color:transparent;}
.fc1_c00078{color:rgb(128,128,128);}
.fc0_c00078{color:rgb(0,0,0);}
.fs4_c00078{font-size:48.000000px;}
.fs1_c00078{font-size:66.000000px;}
.fs0_c00078{font-size:72.000000px;}
.fs2_c00078{font-size:81.000000px;}
.fs3_c00078{font-size:84.000000px;}
.y0_c00078{bottom:0.000000px;}
.y26_c00078{bottom:3.105000px;}
.y25_c00078{bottom:7.228363px;}
.y24_c00078{bottom:61.050000px;}
.y23_c00078{bottom:84.450000px;}
.y22_c00078{bottom:110.100000px;}
.y21_c00078{bottom:134.400000px;}
.y20_c00078{bottom:159.300000px;}
.y1f_c00078{bottom:183.300000px;}
.y1e_c00078{bottom:207.600000px;}
.y1d_c00078{bottom:232.950000px;}
.y1c_c00078{bottom:257.250000px;}
.y1b_c00078{bottom:282.150000px;}
.y1a_c00078{bottom:306.450000px;}
.y19_c00078{bottom:330.450000px;}
.y18_c00078{bottom:354.450000px;}
.y17_c00078{bottom:378.000000px;}
.y16_c00078{bottom:403.050000px;}
.y15_c00078{bottom:426.900000px;}
.y14_c00078{bottom:451.350000px;}
.y13_c00078{bottom:475.800000px;}
.y12_c00078{bottom:500.550000px;}
.y11_c00078{bottom:524.100000px;}
.y10_c00078{bottom:548.700000px;}
.yf_c00078{bottom:572.850000px;}
.ye_c00078{bottom:597.300000px;}
.yd_c00078{bottom:621.900000px;}
.yc_c00078{bottom:645.600000px;}
.yb_c00078{bottom:669.750000px;}
.ya_c00078{bottom:694.500000px;}
.y9_c00078{bottom:719.250000px;}
.y8_c00078{bottom:743.400000px;}
.y7_c00078{bottom:768.150000px;}
.y6_c00078{bottom:792.750000px;}
.y5_c00078{bottom:816.750000px;}
.y4_c00078{bottom:841.950000px;}
.y3_c00078{bottom:866.700000px;}
.y2_c00078{bottom:889.950000px;}
.y1_c00078{bottom:923.700000px;}
.h5_c00078{height:13.200074px;}
.h6_c00078{height:43.804688px;}
.h3_c00078{height:79.497070px;}
.h4_c00078{height:82.441406px;}
.h2_c00078{height:84.269531px;}
.h0_c00078{height:980.100000px;}
.h1_c00078{height:980.250000px;}
.w2_c00078{width:104.875500px;}
.w0_c00078{width:665.850000px;}
.w1_c00078{width:666.000000px;}
.x0_c00078{left:0.000000px;}
.x1_c00078{left:33.750000px;}
.x2_c00078{left:34.800000px;}
.x3_c00078{left:36.150000px;}
.x4_c00078{left:37.200000px;}
.x6_c00078{left:38.550000px;}
.x5_c00078{left:39.600000px;}
.x7_c00078{left:40.950000px;}
.x8_c00078{left:42.150000px;}
.xa_c00078{left:284.739258px;}
.x9_c00078{left:468.450000px;}
@media print{
.v0_c00078{vertical-align:0.000000pt;}
.ls1_c00078{letter-spacing:0.000000pt;}
.ls0_c00078{letter-spacing:26.133333pt;}
.ws1_c00078{word-spacing:-18.000000pt;}
.ws0_c00078{word-spacing:-15.424000pt;}
.ws2_c00078{word-spacing:0.000000pt;}
._19_c00078{margin-left:-26.424000pt;}
._1c_c00078{margin-left:-19.909333pt;}
._1b_c00078{margin-left:-17.880000pt;}
._18_c00078{margin-left:-12.848000pt;}
._17_c00078{margin-left:-11.592000pt;}
._16_c00078{margin-left:-10.176000pt;}
._1a_c00078{margin-left:-9.136000pt;}
._1d_c00078{margin-left:-7.656000pt;}
._10_c00078{margin-left:-6.250667pt;}
._d_c00078{margin-left:-4.776000pt;}
._c_c00078{margin-left:-3.744000pt;}
._e_c00078{margin-left:-2.344000pt;}
._11_c00078{margin-left:-1.376000pt;}
._7_c00078{width:1.536000pt;}
._a_c00078{width:3.040000pt;}
._8_c00078{width:4.096000pt;}
._2_c00078{width:5.312000pt;}
._15_c00078{width:6.296000pt;}
._1_c00078{width:7.232000pt;}
._f_c00078{width:8.152000pt;}
._5_c00078{width:9.344000pt;}
._4_c00078{width:10.496000pt;}
._3_c00078{width:11.968000pt;}
._6_c00078{width:12.864000pt;}
._b_c00078{width:14.376000pt;}
._12_c00078{width:15.320000pt;}
._0_c00078{width:17.600000pt;}
._13_c00078{width:29.872000pt;}
._14_c00078{width:37.920000pt;}
._9_c00078{width:99.349333pt;}
.fs4_c00078{font-size:42.666667pt;}
.fs1_c00078{font-size:58.666667pt;}
.fs0_c00078{font-size:64.000000pt;}
.fs2_c00078{font-size:72.000000pt;}
.fs3_c00078{font-size:74.666667pt;}
.y0_c00078{bottom:0.000000pt;}
.y26_c00078{bottom:2.760000pt;}
.y25_c00078{bottom:6.425212pt;}
.y24_c00078{bottom:54.266667pt;}
.y23_c00078{bottom:75.066667pt;}
.y22_c00078{bottom:97.866667pt;}
.y21_c00078{bottom:119.466667pt;}
.y20_c00078{bottom:141.600000pt;}
.y1f_c00078{bottom:162.933333pt;}
.y1e_c00078{bottom:184.533333pt;}
.y1d_c00078{bottom:207.066667pt;}
.y1c_c00078{bottom:228.666667pt;}
.y1b_c00078{bottom:250.800000pt;}
.y1a_c00078{bottom:272.400000pt;}
.y19_c00078{bottom:293.733333pt;}
.y18_c00078{bottom:315.066667pt;}
.y17_c00078{bottom:336.000000pt;}
.y16_c00078{bottom:358.266667pt;}
.y15_c00078{bottom:379.466667pt;}
.y14_c00078{bottom:401.200000pt;}
.y13_c00078{bottom:422.933333pt;}
.y12_c00078{bottom:444.933333pt;}
.y11_c00078{bottom:465.866667pt;}
.y10_c00078{bottom:487.733333pt;}
.yf_c00078{bottom:509.200000pt;}
.ye_c00078{bottom:530.933333pt;}
.yd_c00078{bottom:552.800000pt;}
.yc_c00078{bottom:573.866667pt;}
.yb_c00078{bottom:595.333333pt;}
.ya_c00078{bottom:617.333333pt;}
.y9_c00078{bottom:639.333333pt;}
.y8_c00078{bottom:660.800000pt;}
.y7_c00078{bottom:682.800000pt;}
.y6_c00078{bottom:704.666667pt;}
.y5_c00078{bottom:726.000000pt;}
.y4_c00078{bottom:748.400000pt;}
.y3_c00078{bottom:770.400000pt;}
.y2_c00078{bottom:791.066667pt;}
.y1_c00078{bottom:821.066667pt;}
.h5_c00078{height:11.733399pt;}
.h6_c00078{height:38.937500pt;}
.h3_c00078{height:70.664062pt;}
.h4_c00078{height:73.281250pt;}
.h2_c00078{height:74.906250pt;}
.h0_c00078{height:871.200000pt;}
.h1_c00078{height:871.333333pt;}
.w2_c00078{width:93.222667pt;}
.w0_c00078{width:591.866667pt;}
.w1_c00078{width:592.000000pt;}
.x0_c00078{left:0.000000pt;}
.x1_c00078{left:30.000000pt;}
.x2_c00078{left:30.933333pt;}
.x3_c00078{left:32.133333pt;}
.x4_c00078{left:33.066667pt;}
.x6_c00078{left:34.266667pt;}
.x5_c00078{left:35.200000pt;}
.x7_c00078{left:36.400000pt;}
.x8_c00078{left:37.466667pt;}
.xa_c00078{left:253.101563pt;}
.x9_c00078{left:416.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_77e490838d683b63e655c6c1.woff2')format("woff");}.ff1_c00079{font-family:ff1_c00079;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00079;src:url('chunks/assets/font_26755b02d18c7e2e9a15d2ec.woff2')format("woff");}.ff2_c00079{font-family:ff2_c00079;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00079;src:url('chunks/assets/font_4d4d68cf91f3fadab4d28439.woff2')format("woff");}.ff3_c00079{font-family:ff3_c00079;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00079;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff4_c00079{font-family:ff4_c00079;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00079;src:url('chunks/assets/font_e262ad55c37191f3bccf41a5.woff2')format("woff");}.ff5_c00079{font-family:ff5_c00079;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00079;src:url('chunks/assets/font_bda3e9d07d4800269ca0e76c.woff2')format("woff");}.ff6_c00079{font-family:ff6_c00079;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00079;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c00079{font-family:ff7_c00079;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00079{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00079{vertical-align:0.000000px;}
.ls0_c00079{letter-spacing:0.000000px;}
.ls1_c00079{letter-spacing:6.000000px;}
.sc__c00079{text-shadow:none;}
.sc0_c00079{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00079{-webkit-text-stroke:0px transparent;}
.sc0_c00079{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00079{word-spacing:-17.352000px;}
.ws1_c00079{word-spacing:-16.500000px;}
.ws2_c00079{word-spacing:0.000000px;}
._20_c00079{margin-left:-25.107000px;}
._1e_c00079{margin-left:-20.979000px;}
._1b_c00079{margin-left:-11.931000px;}
._12_c00079{margin-left:-10.449000px;}
._b_c00079{margin-left:-7.974000px;}
._10_c00079{margin-left:-6.201000px;}
._9_c00079{margin-left:-5.100000px;}
._c_c00079{margin-left:-3.519000px;}
._11_c00079{margin-left:-2.421000px;}
._a_c00079{margin-left:-1.350000px;}
._0_c00079{width:1.632000px;}
._3_c00079{width:2.856000px;}
._2_c00079{width:3.978000px;}
._5_c00079{width:5.916000px;}
._d_c00079{width:7.272000px;}
._8_c00079{width:8.568000px;}
._f_c00079{width:9.600000px;}
._6_c00079{width:10.812000px;}
._4_c00079{width:12.240000px;}
._e_c00079{width:13.851000px;}
._7_c00079{width:15.504000px;}
._19_c00079{width:18.096000px;}
._17_c00079{width:20.049000px;}
._18_c00079{width:21.924000px;}
._13_c00079{width:23.814000px;}
._1a_c00079{width:25.137000px;}
._22_c00079{width:33.813000px;}
._14_c00079{width:35.388000px;}
._1c_c00079{width:50.121000px;}
._1f_c00079{width:95.766000px;}
._23_c00079{width:96.774000px;}
._21_c00079{width:98.679000px;}
._1d_c00079{width:133.494000px;}
._1_c00079{width:202.776000px;}
._15_c00079{width:236.115000px;}
._25_c00079{width:276.291000px;}
._16_c00079{width:284.139000px;}
._24_c00079{width:1168.092000px;}
.fc2_c00079{color:transparent;}
.fc1_c00079{color:rgb(128,128,128);}
.fc0_c00079{color:rgb(0,0,0);}
.fs3_c00079{font-size:42.000000px;}
.fs6_c00079{font-size:48.000000px;}
.fs4_c00079{font-size:66.000000px;}
.fs2_c00079{font-size:72.000000px;}
.fs5_c00079{font-size:75.000000px;}
.fs1_c00079{font-size:81.000000px;}
.fs0_c00079{font-size:102.000000px;}
.y0_c00079{bottom:0.000000px;}
.y26_c00079{bottom:3.105000px;}
.y25_c00079{bottom:7.228369px;}
.y24_c00079{bottom:56.970000px;}
.y23_c00079{bottom:81.720000px;}
.y22_c00079{bottom:107.220000px;}
.y21_c00079{bottom:131.970000px;}
.y20_c00079{bottom:156.870000px;}
.y1f_c00079{bottom:181.920000px;}
.y1e_c00079{bottom:206.820000px;}
.y1d_c00079{bottom:231.420000px;}
.y1c_c00079{bottom:256.470000px;}
.y1b_c00079{bottom:280.470000px;}
.y1a_c00079{bottom:304.770000px;}
.y19_c00079{bottom:331.320000px;}
.y18_c00079{bottom:354.270000px;}
.y17_c00079{bottom:378.270000px;}
.y16_c00079{bottom:402.870000px;}
.y15_c00079{bottom:427.170000px;}
.y14_c00079{bottom:451.620000px;}
.y13_c00079{bottom:479.970000px;}
.y12_c00079{bottom:500.520000px;}
.y11_c00079{bottom:525.120000px;}
.y10_c00079{bottom:550.170000px;}
.yf_c00079{bottom:574.470000px;}
.ye_c00079{bottom:598.770000px;}
.yd_c00079{bottom:624.720000px;}
.yc_c00079{bottom:647.370000px;}
.yb_c00079{bottom:672.570000px;}
.ya_c00079{bottom:696.870000px;}
.y9_c00079{bottom:722.820000px;}
.y8_c00079{bottom:745.770000px;}
.y7_c00079{bottom:770.220000px;}
.y6_c00079{bottom:790.770000px;}
.y5_c00079{bottom:818.070000px;}
.y4_c00079{bottom:843.120000px;}
.y3_c00079{bottom:867.270000px;}
.y2_c00079{bottom:891.570000px;}
.y1_c00079{bottom:926.820000px;}
.h5_c00079{height:13.200073px;}
.h6_c00079{height:43.804688px;}
.h2_c00079{height:79.497070px;}
.h4_c00079{height:84.269531px;}
.h3_c00079{height:91.160156px;}
.h1_c00079{height:100.057617px;}
.h0_c00079{height:989.250000px;}
.w2_c00079{width:104.875500px;}
.w1_c00079{width:663.000000px;}
.w0_c00079{width:663.150000px;}
.x0_c00079{left:0.000000px;}
.x11_c00079{left:21.600000px;}
.xf_c00079{left:33.150000px;}
.x7_c00079{left:44.850000px;}
.x9_c00079{left:52.050000px;}
.xb_c00079{left:81.000000px;}
.x13_c00079{left:118.500000px;}
.x12_c00079{left:119.550000px;}
.x10_c00079{left:120.900000px;}
.x5_c00079{left:123.600000px;}
.xe_c00079{left:126.600000px;}
.xd_c00079{left:128.550000px;}
.xc_c00079{left:130.350000px;}
.xa_c00079{left:133.650000px;}
.x8_c00079{left:135.750000px;}
.x6_c00079{left:137.400000px;}
.x4_c00079{left:138.450000px;}
.x3_c00079{left:139.500000px;}
.x2_c00079{left:142.800000px;}
.x1_c00079{left:146.700000px;}
.x14_c00079{left:283.389267px;}
@media print{
.v0_c00079{vertical-align:0.000000pt;}
.ls0_c00079{letter-spacing:0.000000pt;}
.ls1_c00079{letter-spacing:5.333333pt;}
.ws0_c00079{word-spacing:-15.424000pt;}
.ws1_c00079{word-spacing:-14.666667pt;}
.ws2_c00079{word-spacing:0.000000pt;}
._20_c00079{margin-left:-22.317333pt;}
._1e_c00079{margin-left:-18.648000pt;}
._1b_c00079{margin-left:-10.605333pt;}
._12_c00079{margin-left:-9.288000pt;}
._b_c00079{margin-left:-7.088000pt;}
._10_c00079{margin-left:-5.512000pt;}
._9_c00079{margin-left:-4.533333pt;}
._c_c00079{margin-left:-3.128000pt;}
._11_c00079{margin-left:-2.152000pt;}
._a_c00079{margin-left:-1.200000pt;}
._0_c00079{width:1.450667pt;}
._3_c00079{width:2.538667pt;}
._2_c00079{width:3.536000pt;}
._5_c00079{width:5.258667pt;}
._d_c00079{width:6.464000pt;}
._8_c00079{width:7.616000pt;}
._f_c00079{width:8.533333pt;}
._6_c00079{width:9.610667pt;}
._4_c00079{width:10.880000pt;}
._e_c00079{width:12.312000pt;}
._7_c00079{width:13.781333pt;}
._19_c00079{width:16.085333pt;}
._17_c00079{width:17.821333pt;}
._18_c00079{width:19.488000pt;}
._13_c00079{width:21.168000pt;}
._1a_c00079{width:22.344000pt;}
._22_c00079{width:30.056000pt;}
._14_c00079{width:31.456000pt;}
._1c_c00079{width:44.552000pt;}
._1f_c00079{width:85.125333pt;}
._23_c00079{width:86.021333pt;}
._21_c00079{width:87.714667pt;}
._1d_c00079{width:118.661333pt;}
._1_c00079{width:180.245333pt;}
._15_c00079{width:209.880000pt;}
._25_c00079{width:245.592000pt;}
._16_c00079{width:252.568000pt;}
._24_c00079{width:1038.304000pt;}
.fs3_c00079{font-size:37.333333pt;}
.fs6_c00079{font-size:42.666667pt;}
.fs4_c00079{font-size:58.666667pt;}
.fs2_c00079{font-size:64.000000pt;}
.fs5_c00079{font-size:66.666667pt;}
.fs1_c00079{font-size:72.000000pt;}
.fs0_c00079{font-size:90.666667pt;}
.y0_c00079{bottom:0.000000pt;}
.y26_c00079{bottom:2.760000pt;}
.y25_c00079{bottom:6.425217pt;}
.y24_c00079{bottom:50.640000pt;}
.y23_c00079{bottom:72.640000pt;}
.y22_c00079{bottom:95.306667pt;}
.y21_c00079{bottom:117.306667pt;}
.y20_c00079{bottom:139.440000pt;}
.y1f_c00079{bottom:161.706667pt;}
.y1e_c00079{bottom:183.840000pt;}
.y1d_c00079{bottom:205.706667pt;}
.y1c_c00079{bottom:227.973333pt;}
.y1b_c00079{bottom:249.306667pt;}
.y1a_c00079{bottom:270.906667pt;}
.y19_c00079{bottom:294.506667pt;}
.y18_c00079{bottom:314.906667pt;}
.y17_c00079{bottom:336.240000pt;}
.y16_c00079{bottom:358.106667pt;}
.y15_c00079{bottom:379.706667pt;}
.y14_c00079{bottom:401.440000pt;}
.y13_c00079{bottom:426.640000pt;}
.y12_c00079{bottom:444.906667pt;}
.y11_c00079{bottom:466.773333pt;}
.y10_c00079{bottom:489.040000pt;}
.yf_c00079{bottom:510.640000pt;}
.ye_c00079{bottom:532.240000pt;}
.yd_c00079{bottom:555.306667pt;}
.yc_c00079{bottom:575.440000pt;}
.yb_c00079{bottom:597.840000pt;}
.ya_c00079{bottom:619.440000pt;}
.y9_c00079{bottom:642.506667pt;}
.y8_c00079{bottom:662.906667pt;}
.y7_c00079{bottom:684.640000pt;}
.y6_c00079{bottom:702.906667pt;}
.y5_c00079{bottom:727.173333pt;}
.y4_c00079{bottom:749.440000pt;}
.y3_c00079{bottom:770.906667pt;}
.y2_c00079{bottom:792.506667pt;}
.y1_c00079{bottom:823.840000pt;}
.h5_c00079{height:11.733399pt;}
.h6_c00079{height:38.937500pt;}
.h2_c00079{height:70.664062pt;}
.h4_c00079{height:74.906250pt;}
.h3_c00079{height:81.031250pt;}
.h1_c00079{height:88.940104pt;}
.h0_c00079{height:879.333333pt;}
.w2_c00079{width:93.222667pt;}
.w1_c00079{width:589.333333pt;}
.w0_c00079{width:589.466667pt;}
.x0_c00079{left:0.000000pt;}
.x11_c00079{left:19.200000pt;}
.xf_c00079{left:29.466667pt;}
.x7_c00079{left:39.866667pt;}
.x9_c00079{left:46.266667pt;}
.xb_c00079{left:72.000000pt;}
.x13_c00079{left:105.333333pt;}
.x12_c00079{left:106.266667pt;}
.x10_c00079{left:107.466667pt;}
.x5_c00079{left:109.866667pt;}
.xe_c00079{left:112.533333pt;}
.xd_c00079{left:114.266667pt;}
.xc_c00079{left:115.866667pt;}
.xa_c00079{left:118.800000pt;}
.x8_c00079{left:120.666667pt;}
.x6_c00079{left:122.133333pt;}
.x4_c00079{left:123.066667pt;}
.x3_c00079{left:124.000000pt;}
.x2_c00079{left:126.933333pt;}
.x1_c00079{left:130.400000pt;}
.x14_c00079{left:251.901571pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_de201808f565ee7593205dae.woff2')format("woff");}.ff1_c00080{font-family:ff1_c00080;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00080;src:url('chunks/assets/font_dce29fdb22aab9f4db34ebdf.woff2')format("woff");}.ff2_c00080{font-family:ff2_c00080;line-height:1.311035;font-style:normal;font-weight:normal;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_3cb26c530fc142f7388dfd82.woff2')format("woff");}.ff3_c00080{font-family:ff3_c00080;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00080;src:url('chunks/assets/font_00b086a796d22e6875b5853d.woff2')format("woff");}.ff4_c00080{font-family:ff4_c00080;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00080;src:url('chunks/assets/font_a2a959d158432d02173e84b3.woff2')format("woff");}.ff5_c00080{font-family:ff5_c00080;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00080;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c00080{font-family:ff6_c00080;line-height:1.219238;font-style: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;}
.v1_c00080{vertical-align:254.400000px;}
.ls3_c00080{letter-spacing:-9.000000px;}
.ls2_c00080{letter-spacing:0.000000px;}
.ls0_c00080{letter-spacing:5.400000px;}
.ls1_c00080{letter-spacing:15.300000px;}
.sc__c00080{text-shadow:none;}
.sc0_c00080{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00080{-webkit-text-stroke:0px transparent;}
.sc0_c00080{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00080{word-spacing:-47.100000px;}
.ws1_c00080{word-spacing:-17.352000px;}
.ws0_c00080{word-spacing:-14.460000px;}
.ws3_c00080{word-spacing:0.000000px;}
._18_c00080{margin-left:-29.676000px;}
._15_c00080{margin-left:-28.335000px;}
._1e_c00080{margin-left:-26.505000px;}
._12_c00080{margin-left:-22.113000px;}
._11_c00080{margin-left:-14.595000px;}
._19_c00080{margin-left:-12.807000px;}
._1a_c00080{margin-left:-11.304000px;}
._1b_c00080{margin-left:-9.792000px;}
._17_c00080{margin-left:-8.496000px;}
._a_c00080{margin-left:-6.966000px;}
._13_c00080{margin-left:-4.941000px;}
._b_c00080{margin-left:-3.726000px;}
._6_c00080{margin-left:-2.025000px;}
._7_c00080{width:1.701000px;}
._1_c00080{width:3.321000px;}
._2_c00080{width:4.536000px;}
._0_c00080{width:5.670000px;}
._5_c00080{width:7.533000px;}
._4_c00080{width:8.748000px;}
._8_c00080{width:10.287000px;}
._c_c00080{width:11.421000px;}
._9_c00080{width:12.960000px;}
._3_c00080{width:14.985000px;}
._1c_c00080{width:16.275000px;}
._14_c00080{width:17.496000px;}
._10_c00080{width:18.942000px;}
._f_c00080{width:22.218000px;}
._1d_c00080{width:24.138000px;}
._16_c00080{width:25.758000px;}
._e_c00080{width:27.321000px;}
._1f_c00080{width:29.355000px;}
._d_c00080{width:33.453000px;}
._20_c00080{width:358.779000px;}
.fc2_c00080{color:transparent;}
.fc1_c00080{color:rgb(128,128,128);}
.fc0_c00080{color:rgb(0,0,0);}
.fs1_c00080{font-size:42.000000px;}
.fs6_c00080{font-size:48.000000px;}
.fs2_c00080{font-size:60.000000px;}
.fs3_c00080{font-size:72.000000px;}
.fs0_c00080{font-size:81.000000px;}
.fs5_c00080{font-size:102.000000px;}
.fs4_c00080{font-size:426.000000px;}
.y0_c00080{bottom:0.000000px;}
.y24_c00080{bottom:3.105000px;}
.y23_c00080{bottom:7.228357px;}
.y22_c00080{bottom:37.830000px;}
.y21_c00080{bottom:61.230000px;}
.y1f_c00080{bottom:62.730000px;}
.y20_c00080{bottom:102.030000px;}
.y1e_c00080{bottom:174.480000px;}
.y1d_c00080{bottom:199.530000px;}
.y1c_c00080{bottom:223.380000px;}
.y1b_c00080{bottom:247.830000px;}
.y1a_c00080{bottom:272.130000px;}
.y19_c00080{bottom:295.680000px;}
.y18_c00080{bottom:319.680000px;}
.y17_c00080{bottom:343.530000px;}
.y16_c00080{bottom:367.530000px;}
.y15_c00080{bottom:391.230000px;}
.y14_c00080{bottom:415.080000px;}
.y13_c00080{bottom:439.530000px;}
.y12_c00080{bottom:463.380000px;}
.y11_c00080{bottom:487.080000px;}
.y10_c00080{bottom:511.680000px;}
.yf_c00080{bottom:535.680000px;}
.ye_c00080{bottom:559.680000px;}
.yd_c00080{bottom:583.530000px;}
.yc_c00080{bottom:607.230000px;}
.yb_c00080{bottom:631.230000px;}
.ya_c00080{bottom:655.530000px;}
.y9_c00080{bottom:680.730000px;}
.y8_c00080{bottom:703.980000px;}
.y7_c00080{bottom:728.430000px;}
.y6_c00080{bottom:752.580000px;}
.y5_c00080{bottom:777.930000px;}
.y4_c00080{bottom:801.330000px;}
.y3_c00080{bottom:827.280000px;}
.y2_c00080{bottom:851.280000px;}
.y1_c00080{bottom:875.430000px;}
.h7_c00080{height:13.200074px;}
.h8_c00080{height:43.804688px;}
.h2_c00080{height:79.497070px;}
.h4_c00080{height:84.269531px;}
.h3_c00080{height:91.160156px;}
.h6_c00080{height:104.839927px;}
.h5_c00080{height:437.860871px;}
.h0_c00080{height:962.850000px;}
.h1_c00080{height:963.000000px;}
.w2_c00080{width:104.875500px;}
.w0_c00080{width:653.925000px;}
.w1_c00080{width:654.000000px;}
.x0_c00080{left:0.000000px;}
.x1_c00080{left:42.450000px;}
.x2_c00080{left:43.500000px;}
.x3_c00080{left:45.450000px;}
.x4_c00080{left:46.800000px;}
.x5_c00080{left:47.850000px;}
.x6_c00080{left:53.250000px;}
.x9_c00080{left:105.300000px;}
.x8_c00080{left:109.650000px;}
.x7_c00080{left:147.750000px;}
.xb_c00080{left:278.776749px;}
.xa_c00080{left:368.550000px;}
@media print{
.v0_c00080{vertical-align:0.000000pt;}
.v1_c00080{vertical-align:226.133333pt;}
.ls3_c00080{letter-spacing:-8.000000pt;}
.ls2_c00080{letter-spacing:0.000000pt;}
.ls0_c00080{letter-spacing:4.800000pt;}
.ls1_c00080{letter-spacing:13.600000pt;}
.ws2_c00080{word-spacing:-41.866667pt;}
.ws1_c00080{word-spacing:-15.424000pt;}
.ws0_c00080{word-spacing:-12.853333pt;}
.ws3_c00080{word-spacing:0.000000pt;}
._18_c00080{margin-left:-26.378667pt;}
._15_c00080{margin-left:-25.186667pt;}
._1e_c00080{margin-left:-23.560000pt;}
._12_c00080{margin-left:-19.656000pt;}
._11_c00080{margin-left:-12.973333pt;}
._19_c00080{margin-left:-11.384000pt;}
._1a_c00080{margin-left:-10.048000pt;}
._1b_c00080{margin-left:-8.704000pt;}
._17_c00080{margin-left:-7.552000pt;}
._a_c00080{margin-left:-6.192000pt;}
._13_c00080{margin-left:-4.392000pt;}
._b_c00080{margin-left:-3.312000pt;}
._6_c00080{margin-left:-1.800000pt;}
._7_c00080{width:1.512000pt;}
._1_c00080{width:2.952000pt;}
._2_c00080{width:4.032000pt;}
._0_c00080{width:5.040000pt;}
._5_c00080{width:6.696000pt;}
._4_c00080{width:7.776000pt;}
._8_c00080{width:9.144000pt;}
._c_c00080{width:10.152000pt;}
._9_c00080{width:11.520000pt;}
._3_c00080{width:13.320000pt;}
._1c_c00080{width:14.466667pt;}
._14_c00080{width:15.552000pt;}
._10_c00080{width:16.837333pt;}
._f_c00080{width:19.749333pt;}
._1d_c00080{width:21.456000pt;}
._16_c00080{width:22.896000pt;}
._e_c00080{width:24.285333pt;}
._1f_c00080{width:26.093333pt;}
._d_c00080{width:29.736000pt;}
._20_c00080{width:318.914667pt;}
.fs1_c00080{font-size:37.333333pt;}
.fs6_c00080{font-size:42.666667pt;}
.fs2_c00080{font-size:53.333333pt;}
.fs3_c00080{font-size:64.000000pt;}
.fs0_c00080{font-size:72.000000pt;}
.fs5_c00080{font-size:90.666667pt;}
.fs4_c00080{font-size:378.666667pt;}
.y0_c00080{bottom:0.000000pt;}
.y24_c00080{bottom:2.760000pt;}
.y23_c00080{bottom:6.425206pt;}
.y22_c00080{bottom:33.626667pt;}
.y21_c00080{bottom:54.426667pt;}
.y1f_c00080{bottom:55.760000pt;}
.y20_c00080{bottom:90.693333pt;}
.y1e_c00080{bottom:155.093333pt;}
.y1d_c00080{bottom:177.360000pt;}
.y1c_c00080{bottom:198.560000pt;}
.y1b_c00080{bottom:220.293333pt;}
.y1a_c00080{bottom:241.893333pt;}
.y19_c00080{bottom:262.826667pt;}
.y18_c00080{bottom:284.160000pt;}
.y17_c00080{bottom:305.360000pt;}
.y16_c00080{bottom:326.693333pt;}
.y15_c00080{bottom:347.760000pt;}
.y14_c00080{bottom:368.960000pt;}
.y13_c00080{bottom:390.693333pt;}
.y12_c00080{bottom:411.893333pt;}
.y11_c00080{bottom:432.960000pt;}
.y10_c00080{bottom:454.826667pt;}
.yf_c00080{bottom:476.160000pt;}
.ye_c00080{bottom:497.493333pt;}
.yd_c00080{bottom:518.693333pt;}
.yc_c00080{bottom:539.760000pt;}
.yb_c00080{bottom:561.093333pt;}
.ya_c00080{bottom:582.693333pt;}
.y9_c00080{bottom:605.093333pt;}
.y8_c00080{bottom:625.760000pt;}
.y7_c00080{bottom:647.493333pt;}
.y6_c00080{bottom:668.960000pt;}
.y5_c00080{bottom:691.493333pt;}
.y4_c00080{bottom:712.293333pt;}
.y3_c00080{bottom:735.360000pt;}
.y2_c00080{bottom:756.693333pt;}
.y1_c00080{bottom:778.160000pt;}
.h7_c00080{height:11.733399pt;}
.h8_c00080{height:38.937500pt;}
.h2_c00080{height:70.664062pt;}
.h4_c00080{height:74.906250pt;}
.h3_c00080{height:81.031250pt;}
.h6_c00080{height:93.191046pt;}
.h5_c00080{height:389.209663pt;}
.h0_c00080{height:855.866667pt;}
.h1_c00080{height:856.000000pt;}
.w2_c00080{width:93.222667pt;}
.w0_c00080{width:581.266667pt;}
.w1_c00080{width:581.333333pt;}
.x0_c00080{left:0.000000pt;}
.x1_c00080{left:37.733333pt;}
.x2_c00080{left:38.666667pt;}
.x3_c00080{left:40.400000pt;}
.x4_c00080{left:41.600000pt;}
.x5_c00080{left:42.533333pt;}
.x6_c00080{left:47.333333pt;}
.x9_c00080{left:93.600000pt;}
.x8_c00080{left:97.466667pt;}
.x7_c00080{left:131.333333pt;}
.xb_c00080{left:247.801554pt;}
.xa_c00080{left:327.600000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_adc9551d5a77e80852e07fa1.woff2')format("woff");}.ff1_c00081{font-family:ff1_c00081;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00081;src:url('chunks/assets/font_6beedb28ebc0b67f09f9d360.woff2')format("woff");}.ff2_c00081{font-family:ff2_c00081;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00081;src:url('chunks/assets/font_68dbf575db627e420e3c60eb.woff2')format("woff");}.ff3_c00081{font-family:ff3_c00081;line-height:1.311035;font-style:normal;font-weight:normal;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_c2b3aac841de5d57ebdbf991.woff2')format("woff");}.ff4_c00081{font-family:ff4_c00081;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00081;src:url('chunks/assets/font_1c4df58f64a1712896743275.woff2')format("woff");}.ff5_c00081{font-family:ff5_c00081;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00081;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff6_c00081{font-family:ff6_c00081;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00081;src:url('chunks/assets/font_22b51f72028c5f23de668ade.woff2')format("woff");}.ff7_c00081{font-family:ff7_c00081;line-height:1.437000;font-style:normal;font-weight: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_c00081;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff8_c00081{font-family:ff8_c00081;line-height:1.219238;font-style: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;}
.ls1_c00081{letter-spacing:0.000000px;}
.ls2_c00081{letter-spacing:6.000000px;}
.ls0_c00081{letter-spacing:13.002000px;}
.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:-67.686000px;}
.ws0_c00081{word-spacing:-20.250000px;}
.ws2_c00081{word-spacing:0.000000px;}
._19_c00081{margin-left:-17.514000px;}
._12_c00081{margin-left:-15.147000px;}
._1b_c00081{margin-left:-13.914000px;}
._7_c00081{margin-left:-11.322000px;}
._11_c00081{margin-left:-9.681000px;}
._6_c00081{margin-left:-7.242000px;}
._d_c00081{margin-left:-5.436000px;}
._a_c00081{margin-left:-4.080000px;}
._e_c00081{margin-left:-2.970000px;}
._f_c00081{margin-left:-1.020000px;}
._8_c00081{width:1.020000px;}
._9_c00081{width:2.346000px;}
._3_c00081{width:4.080000px;}
._4_c00081{width:6.018000px;}
._2_c00081{width:7.038000px;}
._10_c00081{width:8.565000px;}
._b_c00081{width:9.744000px;}
._16_c00081{width:10.905000px;}
._13_c00081{width:11.991000px;}
._c_c00081{width:12.993000px;}
._5_c00081{width:14.586000px;}
._14_c00081{width:15.951000px;}
._18_c00081{width:17.049000px;}
._0_c00081{width:18.564000px;}
._1a_c00081{width:21.450000px;}
._1f_c00081{width:22.770000px;}
._1e_c00081{width:26.094000px;}
._1d_c00081{width:28.059000px;}
._15_c00081{width:98.766000px;}
._1c_c00081{width:200.199000px;}
._1_c00081{width:211.242000px;}
._17_c00081{width:263.739000px;}
._20_c00081{width:474.807000px;}
.fc2_c00081{color:transparent;}
.fc1_c00081{color:rgb(128,128,128);}
.fc0_c00081{color:rgb(0,0,0);}
.fs7_c00081{font-size:48.000000px;}
.fs3_c00081{font-size:57.000000px;}
.fs4_c00081{font-size:69.000000px;}
.fs2_c00081{font-size:72.000000px;}
.fs5_c00081{font-size:78.000000px;}
.fs1_c00081{font-size:81.000000px;}
.fs6_c00081{font-size:87.000000px;}
.fs0_c00081{font-size:102.000000px;}
.y0_c00081{bottom:0.000000px;}
.y25_c00081{bottom:3.105000px;}
.y24_c00081{bottom:7.228357px;}
.y23_c00081{bottom:79.080000px;}
.y22_c00081{bottom:105.330000px;}
.y21_c00081{bottom:130.380000px;}
.y20_c00081{bottom:154.980000px;}
.y1f_c00081{bottom:179.280000px;}
.y1e_c00081{bottom:204.480000px;}
.y1d_c00081{bottom:228.930000px;}
.y1c_c00081{bottom:253.230000px;}
.y1b_c00081{bottom:277.530000px;}
.y1a_c00081{bottom:302.430000px;}
.y19_c00081{bottom:326.130000px;}
.y18_c00081{bottom:350.430000px;}
.y17_c00081{bottom:375.030000px;}
.y16_c00081{bottom:399.330000px;}
.y15_c00081{bottom:423.630000px;}
.y14_c00081{bottom:447.180000px;}
.y13_c00081{bottom:471.930000px;}
.y12_c00081{bottom:496.080000px;}
.y11_c00081{bottom:520.080000px;}
.y10_c00081{bottom:544.080000px;}
.yf_c00081{bottom:569.430000px;}
.ye_c00081{bottom:592.980000px;}
.yd_c00081{bottom:617.280000px;}
.yc_c00081{bottom:641.880000px;}
.yb_c00081{bottom:666.630000px;}
.ya_c00081{bottom:690.480000px;}
.y9_c00081{bottom:715.230000px;}
.y8_c00081{bottom:739.830000px;}
.y7_c00081{bottom:763.530000px;}
.y6_c00081{bottom:787.680000px;}
.y5_c00081{bottom:812.430000px;}
.y4_c00081{bottom:836.280000px;}
.y3_c00081{bottom:860.580000px;}
.y2_c00081{bottom:884.880000px;}
.y1_c00081{bottom:919.080000px;}
.h6_c00081{height:13.200074px;}
.h7_c00081{height:43.804688px;}
.h2_c00081{height:79.497070px;}
.h3_c00081{height:80.758301px;}
.h5_c00081{height:91.176000px;}
.h4_c00081{height:98.756836px;}
.h1_c00081{height:100.057617px;}
.h0_c00081{height:995.250000px;}
.w2_c00081{width:104.875500px;}
.w0_c00081{width:667.425000px;}
.w1_c00081{width:667.500000px;}
.x0_c00081{left:0.000000px;}
.x4_c00081{left:33.750000px;}
.x3_c00081{left:129.900000px;}
.x1_c00081{left:130.950000px;}
.x2_c00081{left:132.900000px;}
.x5_c00081{left:285.526749px;}
@media print{
.v0_c00081{vertical-align:0.000000pt;}
.ls1_c00081{letter-spacing:0.000000pt;}
.ls2_c00081{letter-spacing:5.333333pt;}
.ls0_c00081{letter-spacing:11.557333pt;}
.ws1_c00081{word-spacing:-60.165333pt;}
.ws0_c00081{word-spacing:-18.000000pt;}
.ws2_c00081{word-spacing:0.000000pt;}
._19_c00081{margin-left:-15.568000pt;}
._12_c00081{margin-left:-13.464000pt;}
._1b_c00081{margin-left:-12.368000pt;}
._7_c00081{margin-left:-10.064000pt;}
._11_c00081{margin-left:-8.605333pt;}
._6_c00081{margin-left:-6.437333pt;}
._d_c00081{margin-left:-4.832000pt;}
._a_c00081{margin-left:-3.626667pt;}
._e_c00081{margin-left:-2.640000pt;}
._f_c00081{margin-left:-0.906667pt;}
._8_c00081{width:0.906667pt;}
._9_c00081{width:2.085333pt;}
._3_c00081{width:3.626667pt;}
._4_c00081{width:5.349333pt;}
._2_c00081{width:6.256000pt;}
._10_c00081{width:7.613333pt;}
._b_c00081{width:8.661333pt;}
._16_c00081{width:9.693333pt;}
._13_c00081{width:10.658667pt;}
._c_c00081{width:11.549333pt;}
._5_c00081{width:12.965333pt;}
._14_c00081{width:14.178667pt;}
._18_c00081{width:15.154667pt;}
._0_c00081{width:16.501333pt;}
._1a_c00081{width:19.066667pt;}
._1f_c00081{width:20.240000pt;}
._1e_c00081{width:23.194667pt;}
._1d_c00081{width:24.941333pt;}
._15_c00081{width:87.792000pt;}
._1c_c00081{width:177.954667pt;}
._1_c00081{width:187.770667pt;}
._17_c00081{width:234.434667pt;}
._20_c00081{width:422.050667pt;}
.fs7_c00081{font-size:42.666667pt;}
.fs3_c00081{font-size:50.666667pt;}
.fs4_c00081{font-size:61.333333pt;}
.fs2_c00081{font-size:64.000000pt;}
.fs5_c00081{font-size:69.333333pt;}
.fs1_c00081{font-size:72.000000pt;}
.fs6_c00081{font-size:77.333333pt;}
.fs0_c00081{font-size:90.666667pt;}
.y0_c00081{bottom:0.000000pt;}
.y25_c00081{bottom:2.760000pt;}
.y24_c00081{bottom:6.425206pt;}
.y23_c00081{bottom:70.293333pt;}
.y22_c00081{bottom:93.626667pt;}
.y21_c00081{bottom:115.893333pt;}
.y20_c00081{bottom:137.760000pt;}
.y1f_c00081{bottom:159.360000pt;}
.y1e_c00081{bottom:181.760000pt;}
.y1d_c00081{bottom:203.493333pt;}
.y1c_c00081{bottom:225.093333pt;}
.y1b_c00081{bottom:246.693333pt;}
.y1a_c00081{bottom:268.826667pt;}
.y19_c00081{bottom:289.893333pt;}
.y18_c00081{bottom:311.493333pt;}
.y17_c00081{bottom:333.360000pt;}
.y16_c00081{bottom:354.960000pt;}
.y15_c00081{bottom:376.560000pt;}
.y14_c00081{bottom:397.493333pt;}
.y13_c00081{bottom:419.493333pt;}
.y12_c00081{bottom:440.960000pt;}
.y11_c00081{bottom:462.293333pt;}
.y10_c00081{bottom:483.626667pt;}
.yf_c00081{bottom:506.160000pt;}
.ye_c00081{bottom:527.093333pt;}
.yd_c00081{bottom:548.693333pt;}
.yc_c00081{bottom:570.560000pt;}
.yb_c00081{bottom:592.560000pt;}
.ya_c00081{bottom:613.760000pt;}
.y9_c00081{bottom:635.760000pt;}
.y8_c00081{bottom:657.626667pt;}
.y7_c00081{bottom:678.693333pt;}
.y6_c00081{bottom:700.160000pt;}
.y5_c00081{bottom:722.160000pt;}
.y4_c00081{bottom:743.360000pt;}
.y3_c00081{bottom:764.960000pt;}
.y2_c00081{bottom:786.560000pt;}
.y1_c00081{bottom:816.960000pt;}
.h6_c00081{height:11.733399pt;}
.h7_c00081{height:38.937500pt;}
.h2_c00081{height:70.664062pt;}
.h3_c00081{height:71.785156pt;}
.h5_c00081{height:81.045333pt;}
.h4_c00081{height:87.783854pt;}
.h1_c00081{height:88.940104pt;}
.h0_c00081{height:884.666667pt;}
.w2_c00081{width:93.222667pt;}
.w0_c00081{width:593.266667pt;}
.w1_c00081{width:593.333333pt;}
.x0_c00081{left:0.000000pt;}
.x4_c00081{left:30.000000pt;}
.x3_c00081{left:115.466667pt;}
.x1_c00081{left:116.400000pt;}
.x2_c00081{left:118.133333pt;}
.x5_c00081{left:253.801554pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_25a9127a85fd08aeeb79ce25.woff2')format("woff");}.ff1_c00082{font-family:ff1_c00082;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00082;src:url('chunks/assets/font_432ef93d822cf76f8aa67886.woff2')format("woff");}.ff2_c00082{font-family:ff2_c00082;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00082;src:url('chunks/assets/font_54d94e371da56914531659a5.woff2')format("woff");}.ff3_c00082{font-family:ff3_c00082;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00082;src:url('chunks/assets/font_c5d8a9cd6f45bc7773fe84e6.woff2')format("woff");}.ff4_c00082{font-family:ff4_c00082;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00082;src:url('chunks/assets/font_d2b66d56f22b77ab4ed6f810.woff2')format("woff");}.ff5_c00082{font-family:ff5_c00082;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00082;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c00082{font-family:ff6_c00082;line-height:1.219238;font-style: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;}
.ls4_c00082{letter-spacing:-9.000000px;}
.ls2_c00082{letter-spacing:0.000000px;}
.ls1_c00082{letter-spacing:2.106000px;}
.ls0_c00082{letter-spacing:12.480000px;}
.ls3_c00082{letter-spacing:24.000000px;}
.sc__c00082{text-shadow:none;}
.sc0_c00082{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00082{-webkit-text-stroke:0px transparent;}
.sc0_c00082{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00082{word-spacing:-67.686000px;}
.ws0_c00082{word-spacing:-41.352000px;}
.ws3_c00082{word-spacing:-20.250000px;}
.ws1_c00082{word-spacing:-17.352000px;}
.ws4_c00082{word-spacing:0.000000px;}
._1c_c00082{margin-left:-33.696000px;}
._14_c00082{margin-left:-27.726000px;}
._16_c00082{margin-left:-25.515000px;}
._28_c00082{margin-left:-22.791000px;}
._17_c00082{margin-left:-20.736000px;}
._1e_c00082{margin-left:-17.184000px;}
._2b_c00082{margin-left:-14.817000px;}
._15_c00082{margin-left:-13.770000px;}
._2c_c00082{margin-left:-12.588000px;}
._22_c00082{margin-left:-10.701000px;}
._18_c00082{margin-left:-9.099000px;}
._12_c00082{margin-left:-7.602000px;}
._11_c00082{margin-left:-6.468000px;}
._13_c00082{margin-left:-5.382000px;}
._2_c00082{margin-left:-4.050000px;}
._24_c00082{margin-left:-2.997000px;}
._4_c00082{margin-left:-1.944000px;}
._3_c00082{width:1.215000px;}
._c_c00082{width:2.268000px;}
._1_c00082{width:3.483000px;}
._a_c00082{width:4.617000px;}
._0_c00082{width:5.670000px;}
._8_c00082{width:6.966000px;}
._5_c00082{width:8.343000px;}
._6_c00082{width:9.396000px;}
._7_c00082{width:11.178000px;}
._20_c00082{width:12.231000px;}
._b_c00082{width:13.284000px;}
._21_c00082{width:14.661000px;}
._d_c00082{width:15.957000px;}
._9_c00082{width:17.253000px;}
._10_c00082{width:18.630000px;}
._f_c00082{width:22.923000px;}
._19_c00082{width:24.138000px;}
._26_c00082{width:25.515000px;}
._e_c00082{width:26.649000px;}
._25_c00082{width:27.783000px;}
._1f_c00082{width:28.836000px;}
._27_c00082{width:30.132000px;}
._2a_c00082{width:34.020000px;}
._23_c00082{width:35.235000px;}
._29_c00082{width:37.017000px;}
._1b_c00082{width:209.484000px;}
._1d_c00082{width:277.908000px;}
._1a_c00082{width:285.075000px;}
.fc2_c00082{color:transparent;}
.fc1_c00082{color:rgb(128,128,128);}
.fc0_c00082{color:rgb(0,0,0);}
.fs5_c00082{font-size:48.000000px;}
.fs1_c00082{font-size:72.000000px;}
.fs2_c00082{font-size:78.000000px;}
.fs0_c00082{font-size:81.000000px;}
.fs3_c00082{font-size:87.000000px;}
.fs4_c00082{font-size:102.000000px;}
.y0_c00082{bottom:0.000000px;}
.y25_c00082{bottom:3.105000px;}
.y24_c00082{bottom:7.228357px;}
.y23_c00082{bottom:48.930000px;}
.y22_c00082{bottom:72.630000px;}
.y21_c00082{bottom:97.530000px;}
.y20_c00082{bottom:121.830000px;}
.y1f_c00082{bottom:146.880000px;}
.y1e_c00082{bottom:171.180000px;}
.y1d_c00082{bottom:195.780000px;}
.y1c_c00082{bottom:220.380000px;}
.y1b_c00082{bottom:244.680000px;}
.y1a_c00082{bottom:269.430000px;}
.y19_c00082{bottom:293.580000px;}
.y18_c00082{bottom:317.280000px;}
.y17_c00082{bottom:341.580000px;}
.y16_c00082{bottom:365.580000px;}
.y15_c00082{bottom:389.580000px;}
.y14_c00082{bottom:413.730000px;}
.y13_c00082{bottom:437.430000px;}
.y12_c00082{bottom:462.480000px;}
.y11_c00082{bottom:485.730000px;}
.y10_c00082{bottom:509.730000px;}
.yf_c00082{bottom:534.030000px;}
.ye_c00082{bottom:558.180000px;}
.yd_c00082{bottom:582.480000px;}
.yc_c00082{bottom:606.480000px;}
.yb_c00082{bottom:630.480000px;}
.ya_c00082{bottom:655.380000px;}
.y9_c00082{bottom:679.380000px;}
.y8_c00082{bottom:703.980000px;}
.y7_c00082{bottom:728.430000px;}
.y6_c00082{bottom:751.980000px;}
.y5_c00082{bottom:775.980000px;}
.y4_c00082{bottom:800.280000px;}
.y3_c00082{bottom:824.280000px;}
.y2_c00082{bottom:849.180000px;}
.y1_c00082{bottom:873.780000px;}
.h8_c00082{height:13.200074px;}
.h9_c00082{height:43.804688px;}
.h2_c00082{height:79.497070px;}
.h3_c00082{height:84.269531px;}
.h4_c00082{height:91.160156px;}
.h6_c00082{height:91.176000px;}
.h5_c00082{height:98.756836px;}
.h7_c00082{height:104.839927px;}
.h0_c00082{height:962.850000px;}
.h1_c00082{height:963.000000px;}
.w2_c00082{width:104.875500px;}
.w0_c00082{width:653.925000px;}
.w1_c00082{width:654.000000px;}
.x0_c00082{left:0.000000px;}
.x8_c00082{left:34.050000px;}
.xa_c00082{left:35.100000px;}
.x9_c00082{left:36.150000px;}
.x6_c00082{left:37.200000px;}
.x7_c00082{left:38.850000px;}
.x5_c00082{left:39.900000px;}
.x4_c00082{left:42.150000px;}
.x2_c00082{left:43.500000px;}
.x1_c00082{left:44.550000px;}
.x3_c00082{left:46.200000px;}
.xc_c00082{left:278.776749px;}
.xb_c00082{left:348.900000px;}
@media print{
.v0_c00082{vertical-align:0.000000pt;}
.ls4_c00082{letter-spacing:-8.000000pt;}
.ls2_c00082{letter-spacing:0.000000pt;}
.ls1_c00082{letter-spacing:1.872000pt;}
.ls0_c00082{letter-spacing:11.093333pt;}
.ls3_c00082{letter-spacing:21.333333pt;}
.ws2_c00082{word-spacing:-60.165333pt;}
.ws0_c00082{word-spacing:-36.757333pt;}
.ws3_c00082{word-spacing:-18.000000pt;}
.ws1_c00082{word-spacing:-15.424000pt;}
.ws4_c00082{word-spacing:0.000000pt;}
._1c_c00082{margin-left:-29.952000pt;}
._14_c00082{margin-left:-24.645333pt;}
._16_c00082{margin-left:-22.680000pt;}
._28_c00082{margin-left:-20.258667pt;}
._17_c00082{margin-left:-18.432000pt;}
._1e_c00082{margin-left:-15.274667pt;}
._2b_c00082{margin-left:-13.170667pt;}
._15_c00082{margin-left:-12.240000pt;}
._2c_c00082{margin-left:-11.189333pt;}
._22_c00082{margin-left:-9.512000pt;}
._18_c00082{margin-left:-8.088000pt;}
._12_c00082{margin-left:-6.757333pt;}
._11_c00082{margin-left:-5.749333pt;}
._13_c00082{margin-left:-4.784000pt;}
._2_c00082{margin-left:-3.600000pt;}
._24_c00082{margin-left:-2.664000pt;}
._4_c00082{margin-left:-1.728000pt;}
._3_c00082{width:1.080000pt;}
._c_c00082{width:2.016000pt;}
._1_c00082{width:3.096000pt;}
._a_c00082{width:4.104000pt;}
._0_c00082{width:5.040000pt;}
._8_c00082{width:6.192000pt;}
._5_c00082{width:7.416000pt;}
._6_c00082{width:8.352000pt;}
._7_c00082{width:9.936000pt;}
._20_c00082{width:10.872000pt;}
._b_c00082{width:11.808000pt;}
._21_c00082{width:13.032000pt;}
._d_c00082{width:14.184000pt;}
._9_c00082{width:15.336000pt;}
._10_c00082{width:16.560000pt;}
._f_c00082{width:20.376000pt;}
._19_c00082{width:21.456000pt;}
._26_c00082{width:22.680000pt;}
._e_c00082{width:23.688000pt;}
._25_c00082{width:24.696000pt;}
._1f_c00082{width:25.632000pt;}
._27_c00082{width:26.784000pt;}
._2a_c00082{width:30.240000pt;}
._23_c00082{width:31.320000pt;}
._29_c00082{width:32.904000pt;}
._1b_c00082{width:186.208000pt;}
._1d_c00082{width:247.029333pt;}
._1a_c00082{width:253.400000pt;}
.fs5_c00082{font-size:42.666667pt;}
.fs1_c00082{font-size:64.000000pt;}
.fs2_c00082{font-size:69.333333pt;}
.fs0_c00082{font-size:72.000000pt;}
.fs3_c00082{font-size:77.333333pt;}
.fs4_c00082{font-size:90.666667pt;}
.y0_c00082{bottom:0.000000pt;}
.y25_c00082{bottom:2.760000pt;}
.y24_c00082{bottom:6.425206pt;}
.y23_c00082{bottom:43.493333pt;}
.y22_c00082{bottom:64.560000pt;}
.y21_c00082{bottom:86.693333pt;}
.y20_c00082{bottom:108.293333pt;}
.y1f_c00082{bottom:130.560000pt;}
.y1e_c00082{bottom:152.160000pt;}
.y1d_c00082{bottom:174.026667pt;}
.y1c_c00082{bottom:195.893333pt;}
.y1b_c00082{bottom:217.493333pt;}
.y1a_c00082{bottom:239.493333pt;}
.y19_c00082{bottom:260.960000pt;}
.y18_c00082{bottom:282.026667pt;}
.y17_c00082{bottom:303.626667pt;}
.y16_c00082{bottom:324.960000pt;}
.y15_c00082{bottom:346.293333pt;}
.y14_c00082{bottom:367.760000pt;}
.y13_c00082{bottom:388.826667pt;}
.y12_c00082{bottom:411.093333pt;}
.y11_c00082{bottom:431.760000pt;}
.y10_c00082{bottom:453.093333pt;}
.yf_c00082{bottom:474.693333pt;}
.ye_c00082{bottom:496.160000pt;}
.yd_c00082{bottom:517.760000pt;}
.yc_c00082{bottom:539.093333pt;}
.yb_c00082{bottom:560.426667pt;}
.ya_c00082{bottom:582.560000pt;}
.y9_c00082{bottom:603.893333pt;}
.y8_c00082{bottom:625.760000pt;}
.y7_c00082{bottom:647.493333pt;}
.y6_c00082{bottom:668.426667pt;}
.y5_c00082{bottom:689.760000pt;}
.y4_c00082{bottom:711.360000pt;}
.y3_c00082{bottom:732.693333pt;}
.y2_c00082{bottom:754.826667pt;}
.y1_c00082{bottom:776.693333pt;}
.h8_c00082{height:11.733399pt;}
.h9_c00082{height:38.937500pt;}
.h2_c00082{height:70.664062pt;}
.h3_c00082{height:74.906250pt;}
.h4_c00082{height:81.031250pt;}
.h6_c00082{height:81.045333pt;}
.h5_c00082{height:87.783854pt;}
.h7_c00082{height:93.191046pt;}
.h0_c00082{height:855.866667pt;}
.h1_c00082{height:856.000000pt;}
.w2_c00082{width:93.222667pt;}
.w0_c00082{width:581.266667pt;}
.w1_c00082{width:581.333333pt;}
.x0_c00082{left:0.000000pt;}
.x8_c00082{left:30.266667pt;}
.xa_c00082{left:31.200000pt;}
.x9_c00082{left:32.133333pt;}
.x6_c00082{left:33.066667pt;}
.x7_c00082{left:34.533333pt;}
.x5_c00082{left:35.466667pt;}
.x4_c00082{left:37.466667pt;}
.x2_c00082{left:38.666667pt;}
.x1_c00082{left:39.600000pt;}
.x3_c00082{left:41.066667pt;}
.xc_c00082{left:247.801554pt;}
.xb_c00082{left:310.133333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f5fa1ff2675f3043281a94d9.woff2')format("woff");}.ff1_c00083{font-family:ff1_c00083;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00083;src:url('chunks/assets/font_a5d8a8cd223b434a80e41bbd.woff2')format("woff");}.ff2_c00083{font-family:ff2_c00083;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00083;src:url('chunks/assets/font_5396c39b11a68eccb084c4d7.woff2')format("woff");}.ff3_c00083{font-family:ff3_c00083;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00083;src:url('chunks/assets/font_e6a9a3b9abaa77caa386179f.woff2')format("woff");}.ff4_c00083{font-family:ff4_c00083;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00083;src:url('chunks/assets/font_5fe7b293fd5494ccf90c550c.woff2')format("woff");}.ff5_c00083{font-family:ff5_c00083;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00083;src:url('chunks/assets/font_57d9d52014c3f274c2dbbba3.woff2')format("woff");}.ff6_c00083{font-family:ff6_c00083;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00083;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c00083{font-family:ff7_c00083;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00083{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00083{vertical-align:0.000000px;}
.ls2_c00083{letter-spacing:-9.000000px;}
.ls1_c00083{letter-spacing:0.000000px;}
.ls0_c00083{letter-spacing:7.800000px;}
.sc__c00083{text-shadow:none;}
.sc0_c00083{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00083{-webkit-text-stroke:0px transparent;}
.sc0_c00083{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00083{word-spacing:-25.500000px;}
.ws1_c00083{word-spacing:0.000000px;}
._1a_c00083{margin-left:-37.113000px;}
._2a_c00083{margin-left:-20.586000px;}
._1f_c00083{margin-left:-17.253000px;}
._7_c00083{margin-left:-7.635000px;}
._27_c00083{margin-left:-6.591000px;}
._10_c00083{margin-left:-5.427000px;}
._9_c00083{margin-left:-3.264000px;}
._8_c00083{margin-left:-1.224000px;}
._a_c00083{width:1.440000px;}
._6_c00083{width:2.664000px;}
._1d_c00083{width:3.687000px;}
._b_c00083{width:4.752000px;}
._d_c00083{width:6.462000px;}
._5_c00083{width:7.956000px;}
._23_c00083{width:8.961000px;}
._22_c00083{width:10.056000px;}
._1c_c00083{width:11.421000px;}
._0_c00083{width:12.852000px;}
._1_c00083{width:14.436000px;}
._4_c00083{width:16.218000px;}
._17_c00083{width:17.226000px;}
._12_c00083{width:19.053000px;}
._3_c00083{width:21.360000px;}
._24_c00083{width:23.403000px;}
._13_c00083{width:25.299000px;}
._19_c00083{width:26.619000px;}
._14_c00083{width:28.944000px;}
._e_c00083{width:30.915000px;}
._25_c00083{width:32.088000px;}
._16_c00083{width:33.231000px;}
._21_c00083{width:34.458000px;}
._15_c00083{width:35.859000px;}
._28_c00083{width:38.154000px;}
._29_c00083{width:41.472000px;}
._18_c00083{width:42.687000px;}
._11_c00083{width:44.028000px;}
._1b_c00083{width:46.068000px;}
._c_c00083{width:47.739000px;}
._26_c00083{width:52.431000px;}
._f_c00083{width:99.792000px;}
._20_c00083{width:101.817000px;}
._2_c00083{width:172.200000px;}
._1e_c00083{width:323.037000px;}
.fc2_c00083{color:transparent;}
.fc1_c00083{color:rgb(128,128,128);}
.fc0_c00083{color:rgb(0,0,0);}
.fs6_c00083{font-size:48.000000px;}
.fs4_c00083{font-size:66.000000px;}
.fs3_c00083{font-size:72.000000px;}
.fs5_c00083{font-size:78.000000px;}
.fs2_c00083{font-size:81.000000px;}
.fs0_c00083{font-size:102.000000px;}
.fs1_c00083{font-size:120.000000px;}
.y0_c00083{bottom:0.000000px;}
.y23_c00083{bottom:3.105000px;}
.y22_c00083{bottom:7.228355px;}
.y21_c00083{bottom:101.235000px;}
.y20_c00083{bottom:126.885000px;}
.y1f_c00083{bottom:151.485000px;}
.y1e_c00083{bottom:176.385000px;}
.y1d_c00083{bottom:201.135000px;}
.y1c_c00083{bottom:225.735000px;}
.y1b_c00083{bottom:250.335000px;}
.y1a_c00083{bottom:274.935000px;}
.y19_c00083{bottom:298.935000px;}
.y18_c00083{bottom:323.535000px;}
.y17_c00083{bottom:347.835000px;}
.y16_c00083{bottom:372.885000px;}
.y15_c00083{bottom:396.885000px;}
.y14_c00083{bottom:421.185000px;}
.y13_c00083{bottom:445.485000px;}
.y12_c00083{bottom:469.785000px;}
.y11_c00083{bottom:493.635000px;}
.y10_c00083{bottom:518.085000px;}
.yf_c00083{bottom:542.385000px;}
.ye_c00083{bottom:565.635000px;}
.yd_c00083{bottom:591.885000px;}
.yc_c00083{bottom:616.185000px;}
.yb_c00083{bottom:640.935000px;}
.ya_c00083{bottom:665.535000px;}
.y9_c00083{bottom:690.885000px;}
.y8_c00083{bottom:713.835000px;}
.y7_c00083{bottom:738.435000px;}
.y6_c00083{bottom:762.735000px;}
.y5_c00083{bottom:786.735000px;}
.y4_c00083{bottom:811.035000px;}
.y3_c00083{bottom:833.835000px;}
.y2_c00083{bottom:858.135000px;}
.y1_c00083{bottom:895.035000px;}
.h6_c00083{height:13.200074px;}
.h7_c00083{height:43.804688px;}
.h4_c00083{height:79.497070px;}
.h3_c00083{height:84.269531px;}
.h5_c00083{height:98.756836px;}
.h2_c00083{height:120.937500px;}
.h0_c00083{height:950.925000px;}
.h1_c00083{height:951.000000px;}
.w2_c00083{width:104.875500px;}
.w0_c00083{width:637.200000px;}
.w1_c00083{width:637.500000px;}
.x0_c00083{left:0.000000px;}
.x2_c00083{left:18.000000px;}
.x5_c00083{left:20.700000px;}
.xe_c00083{left:98.850000px;}
.xf_c00083{left:108.450000px;}
.x1_c00083{left:110.400000px;}
.x3_c00083{left:111.450000px;}
.x4_c00083{left:112.800000px;}
.x7_c00083{left:114.150000px;}
.x8_c00083{left:115.500000px;}
.x9_c00083{left:116.850000px;}
.xa_c00083{left:118.200000px;}
.xc_c00083{left:119.250000px;}
.xd_c00083{left:120.450000px;}
.x10_c00083{left:121.800000px;}
.x11_c00083{left:122.850000px;}
.x12_c00083{left:124.200000px;}
.xb_c00083{left:148.800000px;}
.x6_c00083{left:191.400000px;}
.x13_c00083{left:270.414230px;}
@media print{
.v0_c00083{vertical-align:0.000000pt;}
.ls2_c00083{letter-spacing:-8.000000pt;}
.ls1_c00083{letter-spacing:0.000000pt;}
.ls0_c00083{letter-spacing:6.933333pt;}
.ws0_c00083{word-spacing:-22.666667pt;}
.ws1_c00083{word-spacing:0.000000pt;}
._1a_c00083{margin-left:-32.989333pt;}
._2a_c00083{margin-left:-18.298667pt;}
._1f_c00083{margin-left:-15.336000pt;}
._7_c00083{margin-left:-6.786667pt;}
._27_c00083{margin-left:-5.858667pt;}
._10_c00083{margin-left:-4.824000pt;}
._9_c00083{margin-left:-2.901333pt;}
._8_c00083{margin-left:-1.088000pt;}
._a_c00083{width:1.280000pt;}
._6_c00083{width:2.368000pt;}
._1d_c00083{width:3.277333pt;}
._b_c00083{width:4.224000pt;}
._d_c00083{width:5.744000pt;}
._5_c00083{width:7.072000pt;}
._23_c00083{width:7.965333pt;}
._22_c00083{width:8.938667pt;}
._1c_c00083{width:10.152000pt;}
._0_c00083{width:11.424000pt;}
._1_c00083{width:12.832000pt;}
._4_c00083{width:14.416000pt;}
._17_c00083{width:15.312000pt;}
._12_c00083{width:16.936000pt;}
._3_c00083{width:18.986667pt;}
._24_c00083{width:20.802667pt;}
._13_c00083{width:22.488000pt;}
._19_c00083{width:23.661333pt;}
._14_c00083{width:25.728000pt;}
._e_c00083{width:27.480000pt;}
._25_c00083{width:28.522667pt;}
._16_c00083{width:29.538667pt;}
._21_c00083{width:30.629333pt;}
._15_c00083{width:31.874667pt;}
._28_c00083{width:33.914667pt;}
._29_c00083{width:36.864000pt;}
._18_c00083{width:37.944000pt;}
._11_c00083{width:39.136000pt;}
._1b_c00083{width:40.949333pt;}
._c_c00083{width:42.434667pt;}
._26_c00083{width:46.605333pt;}
._f_c00083{width:88.704000pt;}
._20_c00083{width:90.504000pt;}
._2_c00083{width:153.066667pt;}
._1e_c00083{width:287.144000pt;}
.fs6_c00083{font-size:42.666667pt;}
.fs4_c00083{font-size:58.666667pt;}
.fs3_c00083{font-size:64.000000pt;}
.fs5_c00083{font-size:69.333333pt;}
.fs2_c00083{font-size:72.000000pt;}
.fs0_c00083{font-size:90.666667pt;}
.fs1_c00083{font-size:106.666667pt;}
.y0_c00083{bottom:0.000000pt;}
.y23_c00083{bottom:2.760000pt;}
.y22_c00083{bottom:6.425204pt;}
.y21_c00083{bottom:89.986667pt;}
.y20_c00083{bottom:112.786667pt;}
.y1f_c00083{bottom:134.653333pt;}
.y1e_c00083{bottom:156.786667pt;}
.y1d_c00083{bottom:178.786667pt;}
.y1c_c00083{bottom:200.653333pt;}
.y1b_c00083{bottom:222.520000pt;}
.y1a_c00083{bottom:244.386667pt;}
.y19_c00083{bottom:265.720000pt;}
.y18_c00083{bottom:287.586667pt;}
.y17_c00083{bottom:309.186667pt;}
.y16_c00083{bottom:331.453333pt;}
.y15_c00083{bottom:352.786667pt;}
.y14_c00083{bottom:374.386667pt;}
.y13_c00083{bottom:395.986667pt;}
.y12_c00083{bottom:417.586667pt;}
.y11_c00083{bottom:438.786667pt;}
.y10_c00083{bottom:460.520000pt;}
.yf_c00083{bottom:482.120000pt;}
.ye_c00083{bottom:502.786667pt;}
.yd_c00083{bottom:526.120000pt;}
.yc_c00083{bottom:547.720000pt;}
.yb_c00083{bottom:569.720000pt;}
.ya_c00083{bottom:591.586667pt;}
.y9_c00083{bottom:614.120000pt;}
.y8_c00083{bottom:634.520000pt;}
.y7_c00083{bottom:656.386667pt;}
.y6_c00083{bottom:677.986667pt;}
.y5_c00083{bottom:699.320000pt;}
.y4_c00083{bottom:720.920000pt;}
.y3_c00083{bottom:741.186667pt;}
.y2_c00083{bottom:762.786667pt;}
.y1_c00083{bottom:795.586667pt;}
.h6_c00083{height:11.733399pt;}
.h7_c00083{height:38.937500pt;}
.h4_c00083{height:70.664062pt;}
.h3_c00083{height:74.906250pt;}
.h5_c00083{height:87.783854pt;}
.h2_c00083{height:107.500000pt;}
.h0_c00083{height:845.266667pt;}
.h1_c00083{height:845.333333pt;}
.w2_c00083{width:93.222667pt;}
.w0_c00083{width:566.400000pt;}
.w1_c00083{width:566.666667pt;}
.x0_c00083{left:0.000000pt;}
.x2_c00083{left:16.000000pt;}
.x5_c00083{left:18.400000pt;}
.xe_c00083{left:87.866667pt;}
.xf_c00083{left:96.400000pt;}
.x1_c00083{left:98.133333pt;}
.x3_c00083{left:99.066667pt;}
.x4_c00083{left:100.266667pt;}
.x7_c00083{left:101.466667pt;}
.x8_c00083{left:102.666667pt;}
.x9_c00083{left:103.866667pt;}
.xa_c00083{left:105.066667pt;}
.xc_c00083{left:106.000000pt;}
.xd_c00083{left:107.066667pt;}
.x10_c00083{left:108.266667pt;}
.x11_c00083{left:109.200000pt;}
.x12_c00083{left:110.400000pt;}
.xb_c00083{left:132.266667pt;}
.x6_c00083{left:170.133333pt;}
.x13_c00083{left:240.368205pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_745bba8a1c5139816ed1193f.woff2')format("woff");}.ff1_c00084{font-family:ff1_c00084;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00084;src:url('chunks/assets/font_d97acb2b78b10fbcae85befa.woff2')format("woff");}.ff2_c00084{font-family:ff2_c00084;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00084;src:url('chunks/assets/font_797c5735108060c54170f2d8.woff2')format("woff");}.ff3_c00084{font-family:ff3_c00084;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00084;src:url('chunks/assets/font_eb4ff11d5cb0ad34c57f22b9.woff2')format("woff");}.ff4_c00084{font-family:ff4_c00084;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00084;src:url('chunks/assets/font_9e5cce49da76d03cdc538526.woff2')format("woff");}.ff5_c00084{font-family:ff5_c00084;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00084;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff6_c00084{font-family:ff6_c00084;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00084;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c00084{font-family:ff7_c00084;line-height:1.219238;font-style: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;}
.ls1_c00084{letter-spacing:-9.000000px;}
.ls0_c00084{letter-spacing:0.000000px;}
.ls2_c00084{letter-spacing:3.000000px;}
.ls3_c00084{letter-spacing:45.000000px;}
.sc__c00084{text-shadow:none;}
.sc0_c00084{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00084{-webkit-text-stroke:0px transparent;}
.sc0_c00084{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00084{word-spacing:-65.250000px;}
.ws0_c00084{word-spacing:-59.184000px;}
.ws2_c00084{word-spacing:0.000000px;}
._24_c00084{margin-left:-37.194000px;}
._14_c00084{margin-left:-32.757000px;}
._15_c00084{margin-left:-29.571000px;}
._16_c00084{margin-left:-26.412000px;}
._23_c00084{margin-left:-24.903000px;}
._2a_c00084{margin-left:-23.715000px;}
._11_c00084{margin-left:-20.277000px;}
._1b_c00084{margin-left:-18.663000px;}
._12_c00084{margin-left:-17.100000px;}
._1d_c00084{margin-left:-15.219000px;}
._1c_c00084{margin-left:-12.984000px;}
._f_c00084{margin-left:-11.517000px;}
._13_c00084{margin-left:-10.383000px;}
._d_c00084{margin-left:-8.610000px;}
._a_c00084{margin-left:-6.723000px;}
._10_c00084{margin-left:-5.694000px;}
._5_c00084{margin-left:-4.590000px;}
._c_c00084{margin-left:-3.462000px;}
._9_c00084{margin-left:-1.944000px;}
._2_c00084{width:1.938000px;}
._4_c00084{width:2.958000px;}
._1_c00084{width:4.284000px;}
._0_c00084{width:5.508000px;}
._6_c00084{width:6.528000px;}
._7_c00084{width:7.548000px;}
._b_c00084{width:8.838000px;}
._3_c00084{width:10.404000px;}
._e_c00084{width:12.180000px;}
._8_c00084{width:14.079000px;}
._22_c00084{width:15.738000px;}
._1e_c00084{width:16.776000px;}
._2d_c00084{width:19.152000px;}
._17_c00084{width:24.432000px;}
._2e_c00084{width:27.249000px;}
._28_c00084{width:28.500000px;}
._20_c00084{width:30.621000px;}
._21_c00084{width:33.636000px;}
._1a_c00084{width:41.796000px;}
._26_c00084{width:73.224000px;}
._29_c00084{width:110.040000px;}
._19_c00084{width:113.613000px;}
._1f_c00084{width:291.714000px;}
._2f_c00084{width:321.129000px;}
._18_c00084{width:350.424000px;}
._27_c00084{width:374.868000px;}
._2b_c00084{width:421.662000px;}
._2c_c00084{width:438.795000px;}
._25_c00084{width:505.728000px;}
.fc2_c00084{color:transparent;}
.fc1_c00084{color:rgb(128,128,128);}
.fc0_c00084{color:rgb(0,0,0);}
.fs5_c00084{font-size:24.000000px;}
.fs8_c00084{font-size:48.000000px;}
.fs6_c00084{font-size:60.000000px;}
.fs3_c00084{font-size:69.000000px;}
.fs4_c00084{font-size:72.000000px;}
.fs1_c00084{font-size:81.000000px;}
.fs2_c00084{font-size:90.000000px;}
.fs7_c00084{font-size:93.000000px;}
.fs0_c00084{font-size:102.000000px;}
.y0_c00084{bottom:0.000000px;}
.y24_c00084{bottom:3.105000px;}
.y23_c00084{bottom:7.228371px;}
.y22_c00084{bottom:68.565000px;}
.y21_c00084{bottom:93.165000px;}
.y20_c00084{bottom:118.215000px;}
.y1f_c00084{bottom:142.065000px;}
.y1e_c00084{bottom:165.765000px;}
.y1d_c00084{bottom:190.665000px;}
.y1c_c00084{bottom:214.665000px;}
.y1b_c00084{bottom:271.065000px;}
.y1a_c00084{bottom:300.165000px;}
.y19_c00084{bottom:328.815000px;}
.y18_c00084{bottom:362.115000px;}
.y17_c00084{bottom:383.415000px;}
.y16_c00084{bottom:407.415000px;}
.y15_c00084{bottom:431.415000px;}
.y14_c00084{bottom:454.965000px;}
.y13_c00084{bottom:479.265000px;}
.y12_c00084{bottom:503.265000px;}
.y11_c00084{bottom:528.315000px;}
.y10_c00084{bottom:552.165000px;}
.yf_c00084{bottom:577.215000px;}
.ye_c00084{bottom:599.715000px;}
.yd_c00084{bottom:624.765000px;}
.yc_c00084{bottom:647.415000px;}
.yb_c00084{bottom:671.715000px;}
.ya_c00084{bottom:695.715000px;}
.y9_c00084{bottom:719.865000px;}
.y8_c00084{bottom:744.165000px;}
.y7_c00084{bottom:768.165000px;}
.y6_c00084{bottom:792.765000px;}
.y5_c00084{bottom:818.115000px;}
.y4_c00084{bottom:841.065000px;}
.y3_c00084{bottom:865.365000px;}
.y2_c00084{bottom:889.665000px;}
.y1_c00084{bottom:926.565000px;}
.hb_c00084{height:13.200074px;}
.h7_c00084{height:23.554688px;}
.hc_c00084{height:43.804688px;}
.h3_c00084{height:79.497070px;}
.h5_c00084{height:84.269531px;}
.h9_c00084{height:88.286133px;}
.h8_c00084{height:88.330078px;}
.h6_c00084{height:91.160156px;}
.ha_c00084{height:91.274414px;}
.h2_c00084{height:100.057617px;}
.h4_c00084{height:104.839927px;}
.h0_c00084{height:989.025000px;}
.h1_c00084{height:989.250000px;}
.w1_c00084{width:104.875500px;}
.w0_c00084{width:672.000000px;}
.x0_c00084{left:0.000000px;}
.x4_c00084{left:51.600000px;}
.x1_c00084{left:53.250000px;}
.x2_c00084{left:54.750000px;}
.x3_c00084{left:55.800000px;}
.x6_c00084{left:110.700000px;}
.x8_c00084{left:180.900000px;}
.x9_c00084{left:210.300000px;}
.x7_c00084{left:215.550000px;}
.xa_c00084{left:287.814240px;}
.x5_c00084{left:609.750000px;}
@media print{
.v0_c00084{vertical-align:0.000000pt;}
.ls1_c00084{letter-spacing:-8.000000pt;}
.ls0_c00084{letter-spacing:0.000000pt;}
.ls2_c00084{letter-spacing:2.666667pt;}
.ls3_c00084{letter-spacing:40.000000pt;}
.ws1_c00084{word-spacing:-58.000000pt;}
.ws0_c00084{word-spacing:-52.608000pt;}
.ws2_c00084{word-spacing:0.000000pt;}
._24_c00084{margin-left:-33.061333pt;}
._14_c00084{margin-left:-29.117333pt;}
._15_c00084{margin-left:-26.285333pt;}
._16_c00084{margin-left:-23.477333pt;}
._23_c00084{margin-left:-22.136000pt;}
._2a_c00084{margin-left:-21.080000pt;}
._11_c00084{margin-left:-18.024000pt;}
._1b_c00084{margin-left:-16.589333pt;}
._12_c00084{margin-left:-15.200000pt;}
._1d_c00084{margin-left:-13.528000pt;}
._1c_c00084{margin-left:-11.541333pt;}
._f_c00084{margin-left:-10.237333pt;}
._13_c00084{margin-left:-9.229333pt;}
._d_c00084{margin-left:-7.653333pt;}
._a_c00084{margin-left:-5.976000pt;}
._10_c00084{margin-left:-5.061333pt;}
._5_c00084{margin-left:-4.080000pt;}
._c_c00084{margin-left:-3.077333pt;}
._9_c00084{margin-left:-1.728000pt;}
._2_c00084{width:1.722667pt;}
._4_c00084{width:2.629333pt;}
._1_c00084{width:3.808000pt;}
._0_c00084{width:4.896000pt;}
._6_c00084{width:5.802667pt;}
._7_c00084{width:6.709333pt;}
._b_c00084{width:7.856000pt;}
._3_c00084{width:9.248000pt;}
._e_c00084{width:10.826667pt;}
._8_c00084{width:12.514667pt;}
._22_c00084{width:13.989333pt;}
._1e_c00084{width:14.912000pt;}
._2d_c00084{width:17.024000pt;}
._17_c00084{width:21.717333pt;}
._2e_c00084{width:24.221333pt;}
._28_c00084{width:25.333333pt;}
._20_c00084{width:27.218667pt;}
._21_c00084{width:29.898667pt;}
._1a_c00084{width:37.152000pt;}
._26_c00084{width:65.088000pt;}
._29_c00084{width:97.813333pt;}
._19_c00084{width:100.989333pt;}
._1f_c00084{width:259.301333pt;}
._2f_c00084{width:285.448000pt;}
._18_c00084{width:311.488000pt;}
._27_c00084{width:333.216000pt;}
._2b_c00084{width:374.810667pt;}
._2c_c00084{width:390.040000pt;}
._25_c00084{width:449.536000pt;}
.fs5_c00084{font-size:21.333333pt;}
.fs8_c00084{font-size:42.666667pt;}
.fs6_c00084{font-size:53.333333pt;}
.fs3_c00084{font-size:61.333333pt;}
.fs4_c00084{font-size:64.000000pt;}
.fs1_c00084{font-size:72.000000pt;}
.fs2_c00084{font-size:80.000000pt;}
.fs7_c00084{font-size:82.666667pt;}
.fs0_c00084{font-size:90.666667pt;}
.y0_c00084{bottom:0.000000pt;}
.y24_c00084{bottom:2.760000pt;}
.y23_c00084{bottom:6.425219pt;}
.y22_c00084{bottom:60.946667pt;}
.y21_c00084{bottom:82.813333pt;}
.y20_c00084{bottom:105.080000pt;}
.y1f_c00084{bottom:126.280000pt;}
.y1e_c00084{bottom:147.346667pt;}
.y1d_c00084{bottom:169.480000pt;}
.y1c_c00084{bottom:190.813333pt;}
.y1b_c00084{bottom:240.946667pt;}
.y1a_c00084{bottom:266.813333pt;}
.y19_c00084{bottom:292.280000pt;}
.y18_c00084{bottom:321.880000pt;}
.y17_c00084{bottom:340.813333pt;}
.y16_c00084{bottom:362.146667pt;}
.y15_c00084{bottom:383.480000pt;}
.y14_c00084{bottom:404.413333pt;}
.y13_c00084{bottom:426.013333pt;}
.y12_c00084{bottom:447.346667pt;}
.y11_c00084{bottom:469.613333pt;}
.y10_c00084{bottom:490.813333pt;}
.yf_c00084{bottom:513.080000pt;}
.ye_c00084{bottom:533.080000pt;}
.yd_c00084{bottom:555.346667pt;}
.yc_c00084{bottom:575.480000pt;}
.yb_c00084{bottom:597.080000pt;}
.ya_c00084{bottom:618.413333pt;}
.y9_c00084{bottom:639.880000pt;}
.y8_c00084{bottom:661.480000pt;}
.y7_c00084{bottom:682.813333pt;}
.y6_c00084{bottom:704.680000pt;}
.y5_c00084{bottom:727.213333pt;}
.y4_c00084{bottom:747.613333pt;}
.y3_c00084{bottom:769.213333pt;}
.y2_c00084{bottom:790.813333pt;}
.y1_c00084{bottom:823.613333pt;}
.hb_c00084{height:11.733399pt;}
.h7_c00084{height:20.937500pt;}
.hc_c00084{height:38.937500pt;}
.h3_c00084{height:70.664062pt;}
.h5_c00084{height:74.906250pt;}
.h9_c00084{height:78.476562pt;}
.h8_c00084{height:78.515625pt;}
.h6_c00084{height:81.031250pt;}
.ha_c00084{height:81.132812pt;}
.h2_c00084{height:88.940104pt;}
.h4_c00084{height:93.191046pt;}
.h0_c00084{height:879.133333pt;}
.h1_c00084{height:879.333333pt;}
.w1_c00084{width:93.222667pt;}
.w0_c00084{width:597.333333pt;}
.x0_c00084{left:0.000000pt;}
.x4_c00084{left:45.866667pt;}
.x1_c00084{left:47.333333pt;}
.x2_c00084{left:48.666667pt;}
.x3_c00084{left:49.600000pt;}
.x6_c00084{left:98.400000pt;}
.x8_c00084{left:160.800000pt;}
.x9_c00084{left:186.933333pt;}
.x7_c00084{left:191.600000pt;}
.xa_c00084{left:255.834880pt;}
.x5_c00084{left:542.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_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_b51306e46677471cd854f0fa.woff2')format("woff");}.ff1_c00085{font-family:ff1_c00085;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00085;src:url('chunks/assets/font_5e1ae0084d74b55537511396.woff2')format("woff");}.ff2_c00085{font-family:ff2_c00085;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00085;src:url('chunks/assets/font_9e23a81faf1973ddb8cdc7ce.woff2')format("woff");}.ff3_c00085{font-family:ff3_c00085;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00085;src:url('chunks/assets/font_076551d4dc95205a0ecfb8af.woff2')format("woff");}.ff4_c00085{font-family:ff4_c00085;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00085;src:url('chunks/assets/font_6a8cb5cef7fbd38b330ce042.woff2')format("woff");}.ff5_c00085{font-family:ff5_c00085;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00085;src:url('chunks/assets/font_74f6082bbd7cfd7b564cb4f5.woff2')format("woff");}.ff6_c00085{font-family:ff6_c00085;line-height:1.437000;font-style:normal;font-weight: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_c00085;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c00085{font-family:ff7_c00085;line-height:1.219238;font-style: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);}
.m1_c00085{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m2_c00085{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.v0_c00085{vertical-align:0.000000px;}
.ls2_c00085{letter-spacing:0.000000px;}
.ls0_c00085{letter-spacing:3.300000px;}
.ls1_c00085{letter-spacing:6.600000px;}
.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:-67.686000px;}
.ws3_c00085{word-spacing:-20.250000px;}
.ws0_c00085{word-spacing:-17.352000px;}
.ws1_c00085{word-spacing:-9.000000px;}
.ws4_c00085{word-spacing:0.000000px;}
._23_c00085{margin-left:-22.194000px;}
._25_c00085{margin-left:-21.060000px;}
._2b_c00085{margin-left:-19.848000px;}
._2e_c00085{margin-left:-18.726000px;}
._20_c00085{margin-left:-17.253000px;}
._d_c00085{margin-left:-14.013000px;}
._21_c00085{margin-left:-11.775000px;}
._5_c00085{margin-left:-10.692000px;}
._e_c00085{margin-left:-9.447000px;}
._a_c00085{margin-left:-8.100000px;}
._27_c00085{margin-left:-7.044000px;}
._9_c00085{margin-left:-5.832000px;}
._2_c00085{margin-left:-4.050000px;}
._c_c00085{margin-left:-2.997000px;}
._8_c00085{margin-left:-1.701000px;}
._b_c00085{width:1.296000px;}
._6_c00085{width:2.349000px;}
._0_c00085{width:3.645000px;}
._1_c00085{width:5.103000px;}
._4_c00085{width:6.156000px;}
._f_c00085{width:7.209000px;}
._3_c00085{width:8.343000px;}
._7_c00085{width:10.206000px;}
._2f_c00085{width:11.340000px;}
._13_c00085{width:12.399000px;}
._10_c00085{width:13.851000px;}
._17_c00085{width:15.633000px;}
._26_c00085{width:17.187000px;}
._14_c00085{width:18.522000px;}
._15_c00085{width:21.000000px;}
._2d_c00085{width:22.107000px;}
._2c_c00085{width:23.241000px;}
._16_c00085{width:28.977000px;}
._1a_c00085{width:34.893000px;}
._18_c00085{width:43.254000px;}
._22_c00085{width:51.900000px;}
._28_c00085{width:53.301000px;}
._1c_c00085{width:55.800000px;}
._32_c00085{width:61.317000px;}
._1b_c00085{width:70.200000px;}
._31_c00085{width:81.294000px;}
._29_c00085{width:102.276000px;}
._19_c00085{width:107.820000px;}
._12_c00085{width:109.026000px;}
._1e_c00085{width:136.503000px;}
._2a_c00085{width:188.184000px;}
._1d_c00085{width:195.921000px;}
._11_c00085{width:211.719000px;}
._30_c00085{width:236.355000px;}
._24_c00085{width:260.577000px;}
._1f_c00085{width:282.309000px;}
._34_c00085{width:394.875000px;}
._33_c00085{width:502.605000px;}
.fc2_c00085{color:transparent;}
.fc1_c00085{color:rgb(128,128,128);}
.fc0_c00085{color:rgb(0,0,0);}
.fs4_c00085{font-size:36.000000px;}
.fs3_c00085{font-size:42.000000px;}
.fs7_c00085{font-size:48.000000px;}
.fs6_c00085{font-size:66.000000px;}
.fs2_c00085{font-size:72.000000px;}
.fs1_c00085{font-size:78.000000px;}
.fs0_c00085{font-size:81.000000px;}
.fs5_c00085{font-size:87.000000px;}
.y0_c00085{bottom:0.000000px;}
.y26_c00085{bottom:3.105000px;}
.y25_c00085{bottom:7.228357px;}
.y24_c00085{bottom:75.330000px;}
.y23_c00085{bottom:98.880000px;}
.y22_c00085{bottom:124.980000px;}
.y21_c00085{bottom:149.130000px;}
.y20_c00085{bottom:172.830000px;}
.y1f_c00085{bottom:197.430000px;}
.y1e_c00085{bottom:222.780000px;}
.y1d_c00085{bottom:247.380000px;}
.y1c_c00085{bottom:271.380000px;}
.y1b_c00085{bottom:295.980000px;}
.y1a_c00085{bottom:322.380000px;}
.y19_c00085{bottom:344.280000px;}
.y18_c00085{bottom:369.330000px;}
.y17_c00085{bottom:393.480000px;}
.y16_c00085{bottom:417.480000px;}
.y15_c00085{bottom:441.180000px;}
.y14_c00085{bottom:467.130000px;}
.y13_c00085{bottom:488.430000px;}
.y12_c00085{bottom:513.630000px;}
.y11_c00085{bottom:522.780000px;}
.y10_c00085{bottom:537.930000px;}
.yf_c00085{bottom:563.280000px;}
.ye_c00085{bottom:586.980000px;}
.yd_c00085{bottom:610.530000px;}
.yc_c00085{bottom:634.830000px;}
.yb_c00085{bottom:659.580000px;}
.ya_c00085{bottom:683.880000px;}
.y9_c00085{bottom:708.030000px;}
.y8_c00085{bottom:732.780000px;}
.y7_c00085{bottom:756.630000px;}
.y6_c00085{bottom:781.080000px;}
.y5_c00085{bottom:805.680000px;}
.y4_c00085{bottom:829.230000px;}
.y3_c00085{bottom:853.230000px;}
.y2_c00085{bottom:877.530000px;}
.y1_c00085{bottom:901.830000px;}
.h7_c00085{height:13.200074px;}
.h4_c00085{height:36.281250px;}
.h8_c00085{height:43.804688px;}
.h1_c00085{height:79.497070px;}
.h3_c00085{height:84.269531px;}
.h5_c00085{height:91.160156px;}
.h6_c00085{height:91.176000px;}
.h2_c00085{height:98.756836px;}
.h0_c00085{height:995.250000px;}
.w2_c00085{width:104.875500px;}
.w0_c00085{width:667.425000px;}
.w1_c00085{width:667.500000px;}
.x0_c00085{left:0.000000px;}
.xb_c00085{left:41.850000px;}
.x8_c00085{left:43.500000px;}
.x4_c00085{left:46.200000px;}
.x9_c00085{left:100.200000px;}
.xc_c00085{left:138.000000px;}
.xa_c00085{left:139.050000px;}
.x3_c00085{left:140.400000px;}
.x2_c00085{left:141.750000px;}
.x1_c00085{left:143.400000px;}
.xd_c00085{left:163.950000px;}
.xe_c00085{left:199.800000px;}
.x5_c00085{left:278.400000px;}
.xf_c00085{left:285.526749px;}
.x6_c00085{left:287.850000px;}
.x7_c00085{left:296.700000px;}
@media print{
.v0_c00085{vertical-align:0.000000pt;}
.ls2_c00085{letter-spacing:0.000000pt;}
.ls0_c00085{letter-spacing:2.933333pt;}
.ls1_c00085{letter-spacing:5.866667pt;}
.ws2_c00085{word-spacing:-60.165333pt;}
.ws3_c00085{word-spacing:-18.000000pt;}
.ws0_c00085{word-spacing:-15.424000pt;}
.ws1_c00085{word-spacing:-8.000000pt;}
.ws4_c00085{word-spacing:0.000000pt;}
._23_c00085{margin-left:-19.728000pt;}
._25_c00085{margin-left:-18.720000pt;}
._2b_c00085{margin-left:-17.642667pt;}
._2e_c00085{margin-left:-16.645333pt;}
._20_c00085{margin-left:-15.336000pt;}
._d_c00085{margin-left:-12.456000pt;}
._21_c00085{margin-left:-10.466667pt;}
._5_c00085{margin-left:-9.504000pt;}
._e_c00085{margin-left:-8.397333pt;}
._a_c00085{margin-left:-7.200000pt;}
._27_c00085{margin-left:-6.261333pt;}
._9_c00085{margin-left:-5.184000pt;}
._2_c00085{margin-left:-3.600000pt;}
._c_c00085{margin-left:-2.664000pt;}
._8_c00085{margin-left:-1.512000pt;}
._b_c00085{width:1.152000pt;}
._6_c00085{width:2.088000pt;}
._0_c00085{width:3.240000pt;}
._1_c00085{width:4.536000pt;}
._4_c00085{width:5.472000pt;}
._f_c00085{width:6.408000pt;}
._3_c00085{width:7.416000pt;}
._7_c00085{width:9.072000pt;}
._2f_c00085{width:10.080000pt;}
._13_c00085{width:11.021333pt;}
._10_c00085{width:12.312000pt;}
._17_c00085{width:13.896000pt;}
._26_c00085{width:15.277333pt;}
._14_c00085{width:16.464000pt;}
._15_c00085{width:18.666667pt;}
._2d_c00085{width:19.650667pt;}
._2c_c00085{width:20.658667pt;}
._16_c00085{width:25.757333pt;}
._1a_c00085{width:31.016000pt;}
._18_c00085{width:38.448000pt;}
._22_c00085{width:46.133333pt;}
._28_c00085{width:47.378667pt;}
._1c_c00085{width:49.600000pt;}
._32_c00085{width:54.504000pt;}
._1b_c00085{width:62.400000pt;}
._31_c00085{width:72.261333pt;}
._29_c00085{width:90.912000pt;}
._19_c00085{width:95.840000pt;}
._12_c00085{width:96.912000pt;}
._1e_c00085{width:121.336000pt;}
._2a_c00085{width:167.274667pt;}
._1d_c00085{width:174.152000pt;}
._11_c00085{width:188.194667pt;}
._30_c00085{width:210.093333pt;}
._24_c00085{width:231.624000pt;}
._1f_c00085{width:250.941333pt;}
._34_c00085{width:351.000000pt;}
._33_c00085{width:446.760000pt;}
.fs4_c00085{font-size:32.000000pt;}
.fs3_c00085{font-size:37.333333pt;}
.fs7_c00085{font-size:42.666667pt;}
.fs6_c00085{font-size:58.666667pt;}
.fs2_c00085{font-size:64.000000pt;}
.fs1_c00085{font-size:69.333333pt;}
.fs0_c00085{font-size:72.000000pt;}
.fs5_c00085{font-size:77.333333pt;}
.y0_c00085{bottom:0.000000pt;}
.y26_c00085{bottom:2.760000pt;}
.y25_c00085{bottom:6.425206pt;}
.y24_c00085{bottom:66.960000pt;}
.y23_c00085{bottom:87.893333pt;}
.y22_c00085{bottom:111.093333pt;}
.y21_c00085{bottom:132.560000pt;}
.y20_c00085{bottom:153.626667pt;}
.y1f_c00085{bottom:175.493333pt;}
.y1e_c00085{bottom:198.026667pt;}
.y1d_c00085{bottom:219.893333pt;}
.y1c_c00085{bottom:241.226667pt;}
.y1b_c00085{bottom:263.093333pt;}
.y1a_c00085{bottom:286.560000pt;}
.y19_c00085{bottom:306.026667pt;}
.y18_c00085{bottom:328.293333pt;}
.y17_c00085{bottom:349.760000pt;}
.y16_c00085{bottom:371.093333pt;}
.y15_c00085{bottom:392.160000pt;}
.y14_c00085{bottom:415.226667pt;}
.y13_c00085{bottom:434.160000pt;}
.y12_c00085{bottom:456.560000pt;}
.y11_c00085{bottom:464.693333pt;}
.y10_c00085{bottom:478.160000pt;}
.yf_c00085{bottom:500.693333pt;}
.ye_c00085{bottom:521.760000pt;}
.yd_c00085{bottom:542.693333pt;}
.yc_c00085{bottom:564.293333pt;}
.yb_c00085{bottom:586.293333pt;}
.ya_c00085{bottom:607.893333pt;}
.y9_c00085{bottom:629.360000pt;}
.y8_c00085{bottom:651.360000pt;}
.y7_c00085{bottom:672.560000pt;}
.y6_c00085{bottom:694.293333pt;}
.y5_c00085{bottom:716.160000pt;}
.y4_c00085{bottom:737.093333pt;}
.y3_c00085{bottom:758.426667pt;}
.y2_c00085{bottom:780.026667pt;}
.y1_c00085{bottom:801.626667pt;}
.h7_c00085{height:11.733399pt;}
.h4_c00085{height:32.250000pt;}
.h8_c00085{height:38.937500pt;}
.h1_c00085{height:70.664062pt;}
.h3_c00085{height:74.906250pt;}
.h5_c00085{height:81.031250pt;}
.h6_c00085{height:81.045333pt;}
.h2_c00085{height:87.783854pt;}
.h0_c00085{height:884.666667pt;}
.w2_c00085{width:93.222667pt;}
.w0_c00085{width:593.266667pt;}
.w1_c00085{width:593.333333pt;}
.x0_c00085{left:0.000000pt;}
.xb_c00085{left:37.200000pt;}
.x8_c00085{left:38.666667pt;}
.x4_c00085{left:41.066667pt;}
.x9_c00085{left:89.066667pt;}
.xc_c00085{left:122.666667pt;}
.xa_c00085{left:123.600000pt;}
.x3_c00085{left:124.800000pt;}
.x2_c00085{left:126.000000pt;}
.x1_c00085{left:127.466667pt;}
.xd_c00085{left:145.733333pt;}
.xe_c00085{left:177.600000pt;}
.x5_c00085{left:247.466667pt;}
.xf_c00085{left:253.801554pt;}
.x6_c00085{left:255.866667pt;}
.x7_c00085{left:263.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_3eb6c36ecf90f9f90f1cc6a0.woff2')format("woff");}.ff1_c00086{font-family:ff1_c00086;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00086;src:url('chunks/assets/font_0d290e28d354abcc71b38c39.woff2')format("woff");}.ff2_c00086{font-family:ff2_c00086;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00086;src:url('chunks/assets/font_7c992eeb232c39d463674832.woff2')format("woff");}.ff3_c00086{font-family:ff3_c00086;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00086;src:url('chunks/assets/font_d17c56dacd65932a7ac42fb6.woff2')format("woff");}.ff4_c00086{font-family:ff4_c00086;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00086;src:url('chunks/assets/font_9f08ec5b8716ac5e126e7228.woff2')format("woff");}.ff5_c00086{font-family:ff5_c00086;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00086;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c00086{font-family:ff6_c00086;line-height:1.219238;font-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_c00086{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m0_c00086{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00086{vertical-align:-15.000000px;}
.v0_c00086{vertical-align:0.000000px;}
.v1_c00086{vertical-align:3.000000px;}
.ls7_c00086{letter-spacing:-3.000000px;}
.ls6_c00086{letter-spacing:0.000000px;}
.ls4_c00086{letter-spacing:0.402000px;}
.ls3_c00086{letter-spacing:4.500000px;}
.ls0_c00086{letter-spacing:5.802000px;}
.ls5_c00086{letter-spacing:19.500000px;}
.ls1_c00086{letter-spacing:29.400000px;}
.ls2_c00086{letter-spacing:105.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;}
}
.ws3_c00086{word-spacing:-33.000000px;}
.ws4_c00086{word-spacing:-13.737000px;}
.ws5_c00086{word-spacing:-12.000000px;}
.ws6_c00086{word-spacing:0.000000px;}
.ws2_c00086{word-spacing:0.741000px;}
.ws0_c00086{word-spacing:2.520000px;}
.ws1_c00086{word-spacing:3.744000px;}
._2b_c00086{margin-left:-32.505000px;}
._21_c00086{margin-left:-19.449000px;}
._29_c00086{margin-left:-14.466000px;}
._28_c00086{margin-left:-13.176000px;}
._13_c00086{margin-left:-12.138000px;}
._2a_c00086{margin-left:-11.121000px;}
._1f_c00086{margin-left:-9.606000px;}
._1_c00086{margin-left:-7.665000px;}
._1e_c00086{margin-left:-6.555000px;}
._4_c00086{margin-left:-5.460000px;}
._8_c00086{margin-left:-3.780000px;}
._3_c00086{margin-left:-2.520000px;}
._9_c00086{margin-left:-1.470000px;}
._b_c00086{width:1.413000px;}
._0_c00086{width:3.360000px;}
._6_c00086{width:4.410000px;}
._7_c00086{width:5.670000px;}
._5_c00086{width:7.560000px;}
._a_c00086{width:8.640000px;}
._10_c00086{width:9.882000px;}
._f_c00086{width:11.880000px;}
._11_c00086{width:13.446000px;}
._16_c00086{width:15.120000px;}
._c_c00086{width:16.878000px;}
._e_c00086{width:18.063000px;}
._15_c00086{width:19.740000px;}
._1a_c00086{width:21.123000px;}
._19_c00086{width:22.176000px;}
._1c_c00086{width:23.232000px;}
._18_c00086{width:24.654000px;}
._1b_c00086{width:25.812000px;}
._22_c00086{width:27.321000px;}
._24_c00086{width:28.515000px;}
._2_c00086{width:31.920000px;}
._1d_c00086{width:33.972000px;}
._17_c00086{width:36.414000px;}
._2d_c00086{width:53.118000px;}
._26_c00086{width:81.729000px;}
._12_c00086{width:94.662000px;}
._31_c00086{width:103.821000px;}
._2e_c00086{width:107.250000px;}
._23_c00086{width:112.485000px;}
._27_c00086{width:143.775000px;}
._25_c00086{width:162.114000px;}
._2f_c00086{width:168.738000px;}
._30_c00086{width:170.595000px;}
._20_c00086{width:205.770000px;}
._32_c00086{width:328.665000px;}
._14_c00086{width:343.812000px;}
._2c_c00086{width:373.785000px;}
._d_c00086{width:377.217000px;}
.fc2_c00086{color:transparent;}
.fc1_c00086{color:rgb(128,128,128);}
.fc0_c00086{color:rgb(0,0,0);}
.fs3_c00086{font-size:42.000000px;}
.fsb_c00086{font-size:48.000000px;}
.fs5_c00086{font-size:57.000000px;}
.fs7_c00086{font-size:60.000000px;}
.fsa_c00086{font-size:63.000000px;}
.fs8_c00086{font-size:66.000000px;}
.fs9_c00086{font-size:69.000000px;}
.fs4_c00086{font-size:72.000000px;}
.fs6_c00086{font-size:78.000000px;}
.fs2_c00086{font-size:81.000000px;}
.fs0_c00086{font-size:105.000000px;}
.fs1_c00086{font-size:108.000000px;}
.y0_c00086{bottom:0.000000px;}
.y24_c00086{bottom:3.105000px;}
.y23_c00086{bottom:7.228369px;}
.y22_c00086{bottom:55.920000px;}
.y21_c00086{bottom:77.670000px;}
.y20_c00086{bottom:102.570000px;}
.y1f_c00086{bottom:126.270000px;}
.y1e_c00086{bottom:150.570000px;}
.y1d_c00086{bottom:176.220000px;}
.y1c_c00086{bottom:201.120000px;}
.y1b_c00086{bottom:224.820000px;}
.y1a_c00086{bottom:249.720000px;}
.y19_c00086{bottom:273.720000px;}
.y18_c00086{bottom:298.020000px;}
.y17_c00086{bottom:325.620000px;}
.y16_c00086{bottom:369.270000px;}
.y15_c00086{bottom:418.470000px;}
.y14_c00086{bottom:442.470000px;}
.y13_c00086{bottom:466.020000px;}
.y12_c00086{bottom:489.270000px;}
.y11_c00086{bottom:513.570000px;}
.y10_c00086{bottom:537.570000px;}
.yf_c00086{bottom:560.970000px;}
.ye_c00086{bottom:584.820000px;}
.yd_c00086{bottom:609.870000px;}
.yc_c00086{bottom:632.370000px;}
.yb_c00086{bottom:656.670000px;}
.ya_c00086{bottom:683.070000px;}
.y9_c00086{bottom:704.670000px;}
.y8_c00086{bottom:728.970000px;}
.y7_c00086{bottom:755.370000px;}
.y6_c00086{bottom:777.570000px;}
.y5_c00086{bottom:806.220000px;}
.y4_c00086{bottom:826.470000px;}
.y3_c00086{bottom:850.770000px;}
.y2_c00086{bottom:874.020000px;}
.y1_c00086{bottom:908.820000px;}
.he_c00086{height:13.200073px;}
.h6_c00086{height:42.328125px;}
.hf_c00086{height:43.804688px;}
.hd_c00086{height:66.713379px;}
.hb_c00086{height:69.539062px;}
.h8_c00086{height:72.168457px;}
.hc_c00086{height:75.966797px;}
.h5_c00086{height:79.497070px;}
.h7_c00086{height:84.269531px;}
.ha_c00086{height:87.269531px;}
.h9_c00086{height:98.756836px;}
.h3_c00086{height:108.843750px;}
.h2_c00086{height:122.893066px;}
.h4_c00086{height:132.941895px;}
.h0_c00086{height:970.350000px;}
.h1_c00086{height:970.500000px;}
.w2_c00086{width:104.875500px;}
.w1_c00086{width:659.250000px;}
.w0_c00086{width:659.325000px;}
.x0_c00086{left:0.000000px;}
.x10_c00086{left:27.000000px;}
.xe_c00086{left:30.000000px;}
.xf_c00086{left:32.100000px;}
.xd_c00086{left:33.450000px;}
.x7_c00086{left:37.050000px;}
.x9_c00086{left:38.550000px;}
.x1_c00086{left:39.750000px;}
.x5_c00086{left:40.800000px;}
.x8_c00086{left:41.850000px;}
.x6_c00086{left:45.900000px;}
.xa_c00086{left:49.950000px;}
.xc_c00086{left:74.550000px;}
.xb_c00086{left:119.100000px;}
.x12_c00086{left:281.476730px;}
.x11_c00086{left:349.050000px;}
.x2_c00086{left:477.450000px;}
.x3_c00086{left:494.400000px;}
.x4_c00086{left:511.950000px;}
@media print{
.v2_c00086{vertical-align:-13.333333pt;}
.v0_c00086{vertical-align:0.000000pt;}
.v1_c00086{vertical-align:2.666667pt;}
.ls7_c00086{letter-spacing:-2.666667pt;}
.ls6_c00086{letter-spacing:0.000000pt;}
.ls4_c00086{letter-spacing:0.357333pt;}
.ls3_c00086{letter-spacing:4.000000pt;}
.ls0_c00086{letter-spacing:5.157333pt;}
.ls5_c00086{letter-spacing:17.333333pt;}
.ls1_c00086{letter-spacing:26.133333pt;}
.ls2_c00086{letter-spacing:93.333333pt;}
.ws3_c00086{word-spacing:-29.333333pt;}
.ws4_c00086{word-spacing:-12.210667pt;}
.ws5_c00086{word-spacing:-10.666667pt;}
.ws6_c00086{word-spacing:0.000000pt;}
.ws2_c00086{word-spacing:0.658667pt;}
.ws0_c00086{word-spacing:2.240000pt;}
.ws1_c00086{word-spacing:3.328000pt;}
._2b_c00086{margin-left:-28.893333pt;}
._21_c00086{margin-left:-17.288000pt;}
._29_c00086{margin-left:-12.858667pt;}
._28_c00086{margin-left:-11.712000pt;}
._13_c00086{margin-left:-10.789333pt;}
._2a_c00086{margin-left:-9.885333pt;}
._1f_c00086{margin-left:-8.538667pt;}
._1_c00086{margin-left:-6.813333pt;}
._1e_c00086{margin-left:-5.826667pt;}
._4_c00086{margin-left:-4.853333pt;}
._8_c00086{margin-left:-3.360000pt;}
._3_c00086{margin-left:-2.240000pt;}
._9_c00086{margin-left:-1.306667pt;}
._b_c00086{width:1.256000pt;}
._0_c00086{width:2.986667pt;}
._6_c00086{width:3.920000pt;}
._7_c00086{width:5.040000pt;}
._5_c00086{width:6.720000pt;}
._a_c00086{width:7.680000pt;}
._10_c00086{width:8.784000pt;}
._f_c00086{width:10.560000pt;}
._11_c00086{width:11.952000pt;}
._16_c00086{width:13.440000pt;}
._c_c00086{width:15.002667pt;}
._e_c00086{width:16.056000pt;}
._15_c00086{width:17.546667pt;}
._1a_c00086{width:18.776000pt;}
._19_c00086{width:19.712000pt;}
._1c_c00086{width:20.650667pt;}
._18_c00086{width:21.914667pt;}
._1b_c00086{width:22.944000pt;}
._22_c00086{width:24.285333pt;}
._24_c00086{width:25.346667pt;}
._2_c00086{width:28.373333pt;}
._1d_c00086{width:30.197333pt;}
._17_c00086{width:32.368000pt;}
._2d_c00086{width:47.216000pt;}
._26_c00086{width:72.648000pt;}
._12_c00086{width:84.144000pt;}
._31_c00086{width:92.285333pt;}
._2e_c00086{width:95.333333pt;}
._23_c00086{width:99.986667pt;}
._27_c00086{width:127.800000pt;}
._25_c00086{width:144.101333pt;}
._2f_c00086{width:149.989333pt;}
._30_c00086{width:151.640000pt;}
._20_c00086{width:182.906667pt;}
._32_c00086{width:292.146667pt;}
._14_c00086{width:305.610667pt;}
._2c_c00086{width:332.253333pt;}
._d_c00086{width:335.304000pt;}
.fs3_c00086{font-size:37.333333pt;}
.fsb_c00086{font-size:42.666667pt;}
.fs5_c00086{font-size:50.666667pt;}
.fs7_c00086{font-size:53.333333pt;}
.fsa_c00086{font-size:56.000000pt;}
.fs8_c00086{font-size:58.666667pt;}
.fs9_c00086{font-size:61.333333pt;}
.fs4_c00086{font-size:64.000000pt;}
.fs6_c00086{font-size:69.333333pt;}
.fs2_c00086{font-size:72.000000pt;}
.fs0_c00086{font-size:93.333333pt;}
.fs1_c00086{font-size:96.000000pt;}
.y0_c00086{bottom:0.000000pt;}
.y24_c00086{bottom:2.760000pt;}
.y23_c00086{bottom:6.425217pt;}
.y22_c00086{bottom:49.706667pt;}
.y21_c00086{bottom:69.040000pt;}
.y20_c00086{bottom:91.173333pt;}
.y1f_c00086{bottom:112.240000pt;}
.y1e_c00086{bottom:133.840000pt;}
.y1d_c00086{bottom:156.640000pt;}
.y1c_c00086{bottom:178.773333pt;}
.y1b_c00086{bottom:199.840000pt;}
.y1a_c00086{bottom:221.973333pt;}
.y19_c00086{bottom:243.306667pt;}
.y18_c00086{bottom:264.906667pt;}
.y17_c00086{bottom:289.440000pt;}
.y16_c00086{bottom:328.240000pt;}
.y15_c00086{bottom:371.973333pt;}
.y14_c00086{bottom:393.306667pt;}
.y13_c00086{bottom:414.240000pt;}
.y12_c00086{bottom:434.906667pt;}
.y11_c00086{bottom:456.506667pt;}
.y10_c00086{bottom:477.840000pt;}
.yf_c00086{bottom:498.640000pt;}
.ye_c00086{bottom:519.840000pt;}
.yd_c00086{bottom:542.106667pt;}
.yc_c00086{bottom:562.106667pt;}
.yb_c00086{bottom:583.706667pt;}
.ya_c00086{bottom:607.173333pt;}
.y9_c00086{bottom:626.373333pt;}
.y8_c00086{bottom:647.973333pt;}
.y7_c00086{bottom:671.440000pt;}
.y6_c00086{bottom:691.173333pt;}
.y5_c00086{bottom:716.640000pt;}
.y4_c00086{bottom:734.640000pt;}
.y3_c00086{bottom:756.240000pt;}
.y2_c00086{bottom:776.906667pt;}
.y1_c00086{bottom:807.840000pt;}
.he_c00086{height:11.733399pt;}
.h6_c00086{height:37.625000pt;}
.hf_c00086{height:38.937500pt;}
.hd_c00086{height:59.300781pt;}
.hb_c00086{height:61.812500pt;}
.h8_c00086{height:64.149740pt;}
.hc_c00086{height:67.526042pt;}
.h5_c00086{height:70.664062pt;}
.h7_c00086{height:74.906250pt;}
.ha_c00086{height:77.572917pt;}
.h9_c00086{height:87.783854pt;}
.h3_c00086{height:96.750000pt;}
.h2_c00086{height:109.238281pt;}
.h4_c00086{height:118.170573pt;}
.h0_c00086{height:862.533333pt;}
.h1_c00086{height:862.666667pt;}
.w2_c00086{width:93.222667pt;}
.w1_c00086{width:586.000000pt;}
.w0_c00086{width:586.066667pt;}
.x0_c00086{left:0.000000pt;}
.x10_c00086{left:24.000000pt;}
.xe_c00086{left:26.666667pt;}
.xf_c00086{left:28.533333pt;}
.xd_c00086{left:29.733333pt;}
.x7_c00086{left:32.933333pt;}
.x9_c00086{left:34.266667pt;}
.x1_c00086{left:35.333333pt;}
.x5_c00086{left:36.266667pt;}
.x8_c00086{left:37.200000pt;}
.x6_c00086{left:40.800000pt;}
.xa_c00086{left:44.400000pt;}
.xc_c00086{left:66.266667pt;}
.xb_c00086{left:105.866667pt;}
.x12_c00086{left:250.201538pt;}
.x11_c00086{left:310.266667pt;}
.x2_c00086{left:424.400000pt;}
.x3_c00086{left:439.466667pt;}
.x4_c00086{left:455.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_7c89bcb78875b25ca196647a.woff2')format("woff");}.ff1_c00087{font-family:ff1_c00087;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00087;src:url('chunks/assets/font_739e78a026ec3dd86290264c.woff2')format("woff");}.ff2_c00087{font-family:ff2_c00087;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00087;src:url('chunks/assets/font_df3a1d69f444d038cf855c86.woff2')format("woff");}.ff3_c00087{font-family:ff3_c00087;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00087;src:url('chunks/assets/font_6ad4e1ece2b8ccee9bebbfe1.woff2')format("woff");}.ff4_c00087{font-family:ff4_c00087;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00087;src:url('chunks/assets/font_48c2c24e8225607b22f4d386.woff2')format("woff");}.ff5_c00087{font-family:ff5_c00087;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00087;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c00087{font-family:ff6_c00087;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00087{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00087{vertical-align:0.000000px;}
.ls8_c00087{letter-spacing:-9.000000px;}
.ls6_c00087{letter-spacing:0.000000px;}
.ls2_c00087{letter-spacing:0.870000px;}
.ls3_c00087{letter-spacing:15.078000px;}
.ls5_c00087{letter-spacing:16.500000px;}
.ls7_c00087{letter-spacing:21.000000px;}
.ls0_c00087{letter-spacing:25.200000px;}
.ls4_c00087{letter-spacing:45.678000px;}
.ls1_c00087{letter-spacing:223.650000px;}
.sc__c00087{text-shadow:none;}
.sc0_c00087{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00087{-webkit-text-stroke:0px transparent;}
.sc0_c00087{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00087{word-spacing:-1.989000px;}
.ws2_c00087{word-spacing:-1.122000px;}
.ws3_c00087{word-spacing:-0.459000px;}
.ws5_c00087{word-spacing:0.000000px;}
.ws0_c00087{word-spacing:1.080000px;}
.ws4_c00087{word-spacing:11.040000px;}
._1e_c00087{margin-left:-16.371000px;}
._1d_c00087{margin-left:-13.056000px;}
._17_c00087{margin-left:-10.791000px;}
._28_c00087{margin-left:-8.571000px;}
._1b_c00087{margin-left:-7.038000px;}
._1c_c00087{margin-left:-5.964000px;}
._6_c00087{margin-left:-4.032000px;}
._18_c00087{margin-left:-2.685000px;}
._e_c00087{margin-left:-1.653000px;}
._f_c00087{width:1.767000px;}
._9_c00087{width:3.096000px;}
._14_c00087{width:4.260000px;}
._13_c00087{width:5.592000px;}
._c_c00087{width:7.344000px;}
._b_c00087{width:9.114000px;}
._5_c00087{width:11.016000px;}
._d_c00087{width:12.600000px;}
._3_c00087{width:14.022000px;}
._12_c00087{width:15.147000px;}
._a_c00087{width:16.200000px;}
._11_c00087{width:17.748000px;}
._1_c00087{width:18.954000px;}
._4_c00087{width:20.664000px;}
._15_c00087{width:22.467000px;}
._19_c00087{width:24.012000px;}
._10_c00087{width:25.329000px;}
._21_c00087{width:26.439000px;}
._0_c00087{width:28.188000px;}
._25_c00087{width:29.997000px;}
._7_c00087{width:31.104000px;}
._27_c00087{width:32.301000px;}
._1f_c00087{width:33.675000px;}
._16_c00087{width:36.822000px;}
._8_c00087{width:38.610000px;}
._2c_c00087{width:40.434000px;}
._23_c00087{width:44.754000px;}
._2f_c00087{width:45.975000px;}
._29_c00087{width:50.235000px;}
._24_c00087{width:51.705000px;}
._20_c00087{width:65.463000px;}
._31_c00087{width:98.073000px;}
._2b_c00087{width:103.029000px;}
._2a_c00087{width:119.850000px;}
._2d_c00087{width:129.846000px;}
._2e_c00087{width:138.468000px;}
._1a_c00087{width:171.885000px;}
._2_c00087{width:193.335000px;}
._26_c00087{width:212.049000px;}
._32_c00087{width:239.292000px;}
._22_c00087{width:319.899000px;}
._30_c00087{width:938.793000px;}
.fc2_c00087{color:transparent;}
.fc1_c00087{color:rgb(128,128,128);}
.fc0_c00087{color:rgb(0,0,0);}
.fs4_c00087{font-size:48.000000px;}
.fs3_c00087{font-size:51.000000px;}
.fs2_c00087{font-size:66.000000px;}
.fs1_c00087{font-size:72.000000px;}
.fs0_c00087{font-size:81.000000px;}
.y0_c00087{bottom:0.000000px;}
.y25_c00087{bottom:3.105000px;}
.y24_c00087{bottom:7.228357px;}
.y23_c00087{bottom:90.780000px;}
.y22_c00087{bottom:116.130000px;}
.y21_c00087{bottom:140.730000px;}
.y20_c00087{bottom:165.480000px;}
.y1f_c00087{bottom:187.680000px;}
.y1e_c00087{bottom:216.330000px;}
.y1d_c00087{bottom:240.630000px;}
.y1c_c00087{bottom:264.630000px;}
.y1b_c00087{bottom:289.680000px;}
.y1a_c00087{bottom:313.530000px;}
.y19_c00087{bottom:336.780000px;}
.y18_c00087{bottom:362.430000px;}
.y17_c00087{bottom:386.730000px;}
.y16_c00087{bottom:412.080000px;}
.y15_c00087{bottom:435.480000px;}
.y14_c00087{bottom:459.030000px;}
.y13_c00087{bottom:484.380000px;}
.y12_c00087{bottom:508.380000px;}
.y11_c00087{bottom:532.680000px;}
.y10_c00087{bottom:556.230000px;}
.yf_c00087{bottom:580.830000px;}
.ye_c00087{bottom:605.580000px;}
.yd_c00087{bottom:629.130000px;}
.yc_c00087{bottom:654.480000px;}
.yb_c00087{bottom:678.030000px;}
.ya_c00087{bottom:703.380000px;}
.y9_c00087{bottom:727.080000px;}
.y8_c00087{bottom:751.380000px;}
.y7_c00087{bottom:775.230000px;}
.y6_c00087{bottom:801.930000px;}
.y5_c00087{bottom:822.480000px;}
.y4_c00087{bottom:849.780000px;}
.y3_c00087{bottom:870.180000px;}
.y2_c00087{bottom:895.680000px;}
.y1_c00087{bottom:930.930000px;}
.h6_c00087{height:13.200074px;}
.h7_c00087{height:43.804688px;}
.h2_c00087{height:50.053711px;}
.h3_c00087{height:51.398438px;}
.h5_c00087{height:59.690918px;}
.h4_c00087{height:64.571777px;}
.h1_c00087{height:84.269531px;}
.h0_c00087{height:995.250000px;}
.w2_c00087{width:104.875500px;}
.w0_c00087{width:667.425000px;}
.w1_c00087{width:667.500000px;}
.x0_c00087{left:0.000000px;}
.x5_c00087{left:35.400000px;}
.x7_c00087{left:38.850000px;}
.xf_c00087{left:48.600000px;}
.x10_c00087{left:51.000000px;}
.x15_c00087{left:53.250000px;}
.x16_c00087{left:54.900000px;}
.x18_c00087{left:64.800000px;}
.x4_c00087{left:69.150000px;}
.xe_c00087{left:88.800000px;}
.x17_c00087{left:97.800000px;}
.x14_c00087{left:106.950000px;}
.xd_c00087{left:115.800000px;}
.x1_c00087{left:126.900000px;}
.x2_c00087{left:128.700000px;}
.x3_c00087{left:129.900000px;}
.x6_c00087{left:132.300000px;}
.x8_c00087{left:133.950000px;}
.x9_c00087{left:136.650000px;}
.xa_c00087{left:138.000000px;}
.xb_c00087{left:139.350000px;}
.xc_c00087{left:140.400000px;}
.x11_c00087{left:143.850000px;}
.x12_c00087{left:144.900000px;}
.x19_c00087{left:147.450000px;}
.x13_c00087{left:170.400000px;}
.x1a_c00087{left:285.526749px;}
@media print{
.v0_c00087{vertical-align:0.000000pt;}
.ls8_c00087{letter-spacing:-8.000000pt;}
.ls6_c00087{letter-spacing:0.000000pt;}
.ls2_c00087{letter-spacing:0.773333pt;}
.ls3_c00087{letter-spacing:13.402667pt;}
.ls5_c00087{letter-spacing:14.666667pt;}
.ls7_c00087{letter-spacing:18.666667pt;}
.ls0_c00087{letter-spacing:22.400000pt;}
.ls4_c00087{letter-spacing:40.602667pt;}
.ls1_c00087{letter-spacing:198.800000pt;}
.ws1_c00087{word-spacing:-1.768000pt;}
.ws2_c00087{word-spacing:-0.997333pt;}
.ws3_c00087{word-spacing:-0.408000pt;}
.ws5_c00087{word-spacing:0.000000pt;}
.ws0_c00087{word-spacing:0.960000pt;}
.ws4_c00087{word-spacing:9.813333pt;}
._1e_c00087{margin-left:-14.552000pt;}
._1d_c00087{margin-left:-11.605333pt;}
._17_c00087{margin-left:-9.592000pt;}
._28_c00087{margin-left:-7.618667pt;}
._1b_c00087{margin-left:-6.256000pt;}
._1c_c00087{margin-left:-5.301333pt;}
._6_c00087{margin-left:-3.584000pt;}
._18_c00087{margin-left:-2.386667pt;}
._e_c00087{margin-left:-1.469333pt;}
._f_c00087{width:1.570667pt;}
._9_c00087{width:2.752000pt;}
._14_c00087{width:3.786667pt;}
._13_c00087{width:4.970667pt;}
._c_c00087{width:6.528000pt;}
._b_c00087{width:8.101333pt;}
._5_c00087{width:9.792000pt;}
._d_c00087{width:11.200000pt;}
._3_c00087{width:12.464000pt;}
._12_c00087{width:13.464000pt;}
._a_c00087{width:14.400000pt;}
._11_c00087{width:15.776000pt;}
._1_c00087{width:16.848000pt;}
._4_c00087{width:18.368000pt;}
._15_c00087{width:19.970667pt;}
._19_c00087{width:21.344000pt;}
._10_c00087{width:22.514667pt;}
._21_c00087{width:23.501333pt;}
._0_c00087{width:25.056000pt;}
._25_c00087{width:26.664000pt;}
._7_c00087{width:27.648000pt;}
._27_c00087{width:28.712000pt;}
._1f_c00087{width:29.933333pt;}
._16_c00087{width:32.730667pt;}
._8_c00087{width:34.320000pt;}
._2c_c00087{width:35.941333pt;}
._23_c00087{width:39.781333pt;}
._2f_c00087{width:40.866667pt;}
._29_c00087{width:44.653333pt;}
._24_c00087{width:45.960000pt;}
._20_c00087{width:58.189333pt;}
._31_c00087{width:87.176000pt;}
._2b_c00087{width:91.581333pt;}
._2a_c00087{width:106.533333pt;}
._2d_c00087{width:115.418667pt;}
._2e_c00087{width:123.082667pt;}
._1a_c00087{width:152.786667pt;}
._2_c00087{width:171.853333pt;}
._26_c00087{width:188.488000pt;}
._32_c00087{width:212.704000pt;}
._22_c00087{width:284.354667pt;}
._30_c00087{width:834.482667pt;}
.fs4_c00087{font-size:42.666667pt;}
.fs3_c00087{font-size:45.333333pt;}
.fs2_c00087{font-size:58.666667pt;}
.fs1_c00087{font-size:64.000000pt;}
.fs0_c00087{font-size:72.000000pt;}
.y0_c00087{bottom:0.000000pt;}
.y25_c00087{bottom:2.760000pt;}
.y24_c00087{bottom:6.425206pt;}
.y23_c00087{bottom:80.693333pt;}
.y22_c00087{bottom:103.226667pt;}
.y21_c00087{bottom:125.093333pt;}
.y20_c00087{bottom:147.093333pt;}
.y1f_c00087{bottom:166.826667pt;}
.y1e_c00087{bottom:192.293333pt;}
.y1d_c00087{bottom:213.893333pt;}
.y1c_c00087{bottom:235.226667pt;}
.y1b_c00087{bottom:257.493333pt;}
.y1a_c00087{bottom:278.693333pt;}
.y19_c00087{bottom:299.360000pt;}
.y18_c00087{bottom:322.160000pt;}
.y17_c00087{bottom:343.760000pt;}
.y16_c00087{bottom:366.293333pt;}
.y15_c00087{bottom:387.093333pt;}
.y14_c00087{bottom:408.026667pt;}
.y13_c00087{bottom:430.560000pt;}
.y12_c00087{bottom:451.893333pt;}
.y11_c00087{bottom:473.493333pt;}
.y10_c00087{bottom:494.426667pt;}
.yf_c00087{bottom:516.293333pt;}
.ye_c00087{bottom:538.293333pt;}
.yd_c00087{bottom:559.226667pt;}
.yc_c00087{bottom:581.760000pt;}
.yb_c00087{bottom:602.693333pt;}
.ya_c00087{bottom:625.226667pt;}
.y9_c00087{bottom:646.293333pt;}
.y8_c00087{bottom:667.893333pt;}
.y7_c00087{bottom:689.093333pt;}
.y6_c00087{bottom:712.826667pt;}
.y5_c00087{bottom:731.093333pt;}
.y4_c00087{bottom:755.360000pt;}
.y3_c00087{bottom:773.493333pt;}
.y2_c00087{bottom:796.160000pt;}
.y1_c00087{bottom:827.493333pt;}
.h6_c00087{height:11.733399pt;}
.h7_c00087{height:38.937500pt;}
.h2_c00087{height:44.492188pt;}
.h3_c00087{height:45.687500pt;}
.h5_c00087{height:53.058594pt;}
.h4_c00087{height:57.397135pt;}
.h1_c00087{height:74.906250pt;}
.h0_c00087{height:884.666667pt;}
.w2_c00087{width:93.222667pt;}
.w0_c00087{width:593.266667pt;}
.w1_c00087{width:593.333333pt;}
.x0_c00087{left:0.000000pt;}
.x5_c00087{left:31.466667pt;}
.x7_c00087{left:34.533333pt;}
.xf_c00087{left:43.200000pt;}
.x10_c00087{left:45.333333pt;}
.x15_c00087{left:47.333333pt;}
.x16_c00087{left:48.800000pt;}
.x18_c00087{left:57.600000pt;}
.x4_c00087{left:61.466667pt;}
.xe_c00087{left:78.933333pt;}
.x17_c00087{left:86.933333pt;}
.x14_c00087{left:95.066667pt;}
.xd_c00087{left:102.933333pt;}
.x1_c00087{left:112.800000pt;}
.x2_c00087{left:114.400000pt;}
.x3_c00087{left:115.466667pt;}
.x6_c00087{left:117.600000pt;}
.x8_c00087{left:119.066667pt;}
.x9_c00087{left:121.466667pt;}
.xa_c00087{left:122.666667pt;}
.xb_c00087{left:123.866667pt;}
.xc_c00087{left:124.800000pt;}
.x11_c00087{left:127.866667pt;}
.x12_c00087{left:128.800000pt;}
.x19_c00087{left:131.066667pt;}
.x13_c00087{left:151.466667pt;}
.x1a_c00087{left:253.801554pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d5f6f8186ca210f066659a37.woff2')format("woff");}.ff1_c00088{font-family:ff1_c00088;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00088;src:url('chunks/assets/font_488f3cd674997b7afd0bb4ae.woff2')format("woff");}.ff2_c00088{font-family:ff2_c00088;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00088;src:url('chunks/assets/font_9cd91dbf6f7948eedb78cf72.woff2')format("woff");}.ff3_c00088{font-family:ff3_c00088;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00088;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff4_c00088{font-family:ff4_c00088;line-height:1.219238;font-style: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;}
.ls1_c00088{letter-spacing:-3.000000px;}
.ls0_c00088{letter-spacing:0.000000px;}
.sc__c00088{text-shadow:none;}
.sc0_c00088{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00088{-webkit-text-stroke:0px transparent;}
.sc0_c00088{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00088{word-spacing:-23.859000px;}
.ws1_c00088{word-spacing:-17.352000px;}
.ws2_c00088{word-spacing:0.000000px;}
._17_c00088{margin-left:-27.216000px;}
._1d_c00088{margin-left:-20.379000px;}
._4_c00088{margin-left:-17.160000px;}
._19_c00088{margin-left:-14.928000px;}
._8_c00088{margin-left:-12.549000px;}
._0_c00088{margin-left:-11.385000px;}
._2_c00088{margin-left:-9.900000px;}
._3_c00088{margin-left:-8.274000px;}
._6_c00088{margin-left:-6.624000px;}
._5_c00088{margin-left:-4.620000px;}
._1_c00088{margin-left:-3.564000px;}
._7_c00088{margin-left:-1.659000px;}
._d_c00088{width:1.443000px;}
._a_c00088{width:2.475000px;}
._9_c00088{width:4.113000px;}
._e_c00088{width:5.115000px;}
._13_c00088{width:6.276000px;}
._11_c00088{width:7.314000px;}
._10_c00088{width:8.319000px;}
._f_c00088{width:9.912000px;}
._14_c00088{width:11.580000px;}
._1a_c00088{width:14.130000px;}
._c_c00088{width:15.345000px;}
._12_c00088{width:18.387000px;}
._1f_c00088{width:22.974000px;}
._18_c00088{width:25.392000px;}
._1e_c00088{width:34.701000px;}
._21_c00088{width:36.660000px;}
._b_c00088{width:43.563000px;}
._16_c00088{width:67.797000px;}
._1c_c00088{width:117.711000px;}
._15_c00088{width:140.292000px;}
._1b_c00088{width:250.032000px;}
._20_c00088{width:301.119000px;}
.fc2_c00088{color:transparent;}
.fc1_c00088{color:rgb(128,128,128);}
.fc0_c00088{color:rgb(0,0,0);}
.fs4_c00088{font-size:48.000000px;}
.fs3_c00088{font-size:72.000000px;}
.fs2_c00088{font-size:81.000000px;}
.fs0_c00088{font-size:99.000000px;}
.fs1_c00088{font-size:132.000000px;}
.y0_c00088{bottom:0.000000px;}
.y26_c00088{bottom:3.105000px;}
.y25_c00088{bottom:7.228371px;}
.y24_c00088{bottom:59.865000px;}
.y23_c00088{bottom:87.165000px;}
.y22_c00088{bottom:112.365000px;}
.y21_c00088{bottom:137.115000px;}
.y20_c00088{bottom:161.715000px;}
.y1f_c00088{bottom:185.265000px;}
.y1e_c00088{bottom:211.065000px;}
.y1d_c00088{bottom:235.365000px;}
.y1c_c00088{bottom:259.215000px;}
.y1b_c00088{bottom:284.415000px;}
.y1a_c00088{bottom:308.265000px;}
.y19_c00088{bottom:332.115000px;}
.y18_c00088{bottom:356.415000px;}
.y17_c00088{bottom:380.115000px;}
.y16_c00088{bottom:403.965000px;}
.y15_c00088{bottom:428.415000px;}
.y14_c00088{bottom:452.715000px;}
.y13_c00088{bottom:477.015000px;}
.y12_c00088{bottom:500.865000px;}
.y11_c00088{bottom:525.465000px;}
.y10_c00088{bottom:549.465000px;}
.yf_c00088{bottom:573.615000px;}
.ye_c00088{bottom:597.465000px;}
.yd_c00088{bottom:621.315000px;}
.yc_c00088{bottom:645.315000px;}
.yb_c00088{bottom:670.365000px;}
.ya_c00088{bottom:693.615000px;}
.y9_c00088{bottom:718.215000px;}
.y8_c00088{bottom:741.915000px;}
.y7_c00088{bottom:766.515000px;}
.y6_c00088{bottom:790.815000px;}
.y5_c00088{bottom:814.815000px;}
.y4_c00088{bottom:839.115000px;}
.y3_c00088{bottom:863.115000px;}
.y2_c00088{bottom:887.415000px;}
.y1_c00088{bottom:920.115000px;}
.h5_c00088{height:13.200074px;}
.h6_c00088{height:43.804688px;}
.h3_c00088{height:79.497070px;}
.h4_c00088{height:91.160156px;}
.h2_c00088{height:167.126953px;}
.h0_c00088{height:989.025000px;}
.h1_c00088{height:989.250000px;}
.w1_c00088{width:104.875500px;}
.w0_c00088{width:672.000000px;}
.x0_c00088{left:0.000000px;}
.xc_c00088{left:30.750000px;}
.x1_c00088{left:34.800000px;}
.x2_c00088{left:36.750000px;}
.x3_c00088{left:37.800000px;}
.x4_c00088{left:38.850000px;}
.x5_c00088{left:40.050000px;}
.x6_c00088{left:41.100000px;}
.x7_c00088{left:42.900000px;}
.x8_c00088{left:44.550000px;}
.x9_c00088{left:45.600000px;}
.xb_c00088{left:46.650000px;}
.xa_c00088{left:47.850000px;}
.xd_c00088{left:49.650000px;}
.xe_c00088{left:51.000000px;}
.xf_c00088{left:52.650000px;}
.x10_c00088{left:54.000000px;}
.x11_c00088{left:55.950000px;}
.x12_c00088{left:57.300000px;}
.x14_c00088{left:287.814240px;}
.x13_c00088{left:375.300000px;}
@media print{
.v0_c00088{vertical-align:0.000000pt;}
.ls1_c00088{letter-spacing:-2.666667pt;}
.ls0_c00088{letter-spacing:0.000000pt;}
.ws0_c00088{word-spacing:-21.208000pt;}
.ws1_c00088{word-spacing:-15.424000pt;}
.ws2_c00088{word-spacing:0.000000pt;}
._17_c00088{margin-left:-24.192000pt;}
._1d_c00088{margin-left:-18.114667pt;}
._4_c00088{margin-left:-15.253333pt;}
._19_c00088{margin-left:-13.269333pt;}
._8_c00088{margin-left:-11.154667pt;}
._0_c00088{margin-left:-10.120000pt;}
._2_c00088{margin-left:-8.800000pt;}
._3_c00088{margin-left:-7.354667pt;}
._6_c00088{margin-left:-5.888000pt;}
._5_c00088{margin-left:-4.106667pt;}
._1_c00088{margin-left:-3.168000pt;}
._7_c00088{margin-left:-1.474667pt;}
._d_c00088{width:1.282667pt;}
._a_c00088{width:2.200000pt;}
._9_c00088{width:3.656000pt;}
._e_c00088{width:4.546667pt;}
._13_c00088{width:5.578667pt;}
._11_c00088{width:6.501333pt;}
._10_c00088{width:7.394667pt;}
._f_c00088{width:8.810667pt;}
._14_c00088{width:10.293333pt;}
._1a_c00088{width:12.560000pt;}
._c_c00088{width:13.640000pt;}
._12_c00088{width:16.344000pt;}
._1f_c00088{width:20.421333pt;}
._18_c00088{width:22.570667pt;}
._1e_c00088{width:30.845333pt;}
._21_c00088{width:32.586667pt;}
._b_c00088{width:38.722667pt;}
._16_c00088{width:60.264000pt;}
._1c_c00088{width:104.632000pt;}
._15_c00088{width:124.704000pt;}
._1b_c00088{width:222.250667pt;}
._20_c00088{width:267.661333pt;}
.fs4_c00088{font-size:42.666667pt;}
.fs3_c00088{font-size:64.000000pt;}
.fs2_c00088{font-size:72.000000pt;}
.fs0_c00088{font-size:88.000000pt;}
.fs1_c00088{font-size:117.333333pt;}
.y0_c00088{bottom:0.000000pt;}
.y26_c00088{bottom:2.760000pt;}
.y25_c00088{bottom:6.425219pt;}
.y24_c00088{bottom:53.213333pt;}
.y23_c00088{bottom:77.480000pt;}
.y22_c00088{bottom:99.880000pt;}
.y21_c00088{bottom:121.880000pt;}
.y20_c00088{bottom:143.746667pt;}
.y1f_c00088{bottom:164.680000pt;}
.y1e_c00088{bottom:187.613333pt;}
.y1d_c00088{bottom:209.213333pt;}
.y1c_c00088{bottom:230.413333pt;}
.y1b_c00088{bottom:252.813333pt;}
.y1a_c00088{bottom:274.013333pt;}
.y19_c00088{bottom:295.213333pt;}
.y18_c00088{bottom:316.813333pt;}
.y17_c00088{bottom:337.880000pt;}
.y16_c00088{bottom:359.080000pt;}
.y15_c00088{bottom:380.813333pt;}
.y14_c00088{bottom:402.413333pt;}
.y13_c00088{bottom:424.013333pt;}
.y12_c00088{bottom:445.213333pt;}
.y11_c00088{bottom:467.080000pt;}
.y10_c00088{bottom:488.413333pt;}
.yf_c00088{bottom:509.880000pt;}
.ye_c00088{bottom:531.080000pt;}
.yd_c00088{bottom:552.280000pt;}
.yc_c00088{bottom:573.613333pt;}
.yb_c00088{bottom:595.880000pt;}
.ya_c00088{bottom:616.546667pt;}
.y9_c00088{bottom:638.413333pt;}
.y8_c00088{bottom:659.480000pt;}
.y7_c00088{bottom:681.346667pt;}
.y6_c00088{bottom:702.946667pt;}
.y5_c00088{bottom:724.280000pt;}
.y4_c00088{bottom:745.880000pt;}
.y3_c00088{bottom:767.213333pt;}
.y2_c00088{bottom:788.813333pt;}
.y1_c00088{bottom:817.880000pt;}
.h5_c00088{height:11.733399pt;}
.h6_c00088{height:38.937500pt;}
.h3_c00088{height:70.664062pt;}
.h4_c00088{height:81.031250pt;}
.h2_c00088{height:148.557292pt;}
.h0_c00088{height:879.133333pt;}
.h1_c00088{height:879.333333pt;}
.w1_c00088{width:93.222667pt;}
.w0_c00088{width:597.333333pt;}
.x0_c00088{left:0.000000pt;}
.xc_c00088{left:27.333333pt;}
.x1_c00088{left:30.933333pt;}
.x2_c00088{left:32.666667pt;}
.x3_c00088{left:33.600000pt;}
.x4_c00088{left:34.533333pt;}
.x5_c00088{left:35.600000pt;}
.x6_c00088{left:36.533333pt;}
.x7_c00088{left:38.133333pt;}
.x8_c00088{left:39.600000pt;}
.x9_c00088{left:40.533333pt;}
.xb_c00088{left:41.466667pt;}
.xa_c00088{left:42.533333pt;}
.xd_c00088{left:44.133333pt;}
.xe_c00088{left:45.333333pt;}
.xf_c00088{left:46.800000pt;}
.x10_c00088{left:48.000000pt;}
.x11_c00088{left:49.733333pt;}
.x12_c00088{left:50.933333pt;}
.x14_c00088{left:255.834880pt;}
.x13_c00088{left:333.600000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_bfb7ae91be43b1345ea2e5d5.woff2')format("woff");}.ff1_c00089{font-family:ff1_c00089;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00089;src:url('chunks/assets/font_3d57a6fda9899a5b38941786.woff2')format("woff");}.ff2_c00089{font-family:ff2_c00089;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00089;src:url('chunks/assets/font_9f45fe877faac2aa2b0d8630.woff2')format("woff");}.ff3_c00089{font-family:ff3_c00089;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00089;src:url('chunks/assets/font_56c5ce0a1c23435ccc4448a0.woff2')format("woff");}.ff4_c00089{font-family:ff4_c00089;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00089;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c00089{font-family:ff5_c00089;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00089{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00089{vertical-align:-88.800000px;}
.v0_c00089{vertical-align:0.000000px;}
.v2_c00089{vertical-align:160.200000px;}
.ls2_c00089{letter-spacing:0.000000px;}
.ls1_c00089{letter-spacing:3.600000px;}
.ls3_c00089{letter-spacing:9.000000px;}
.ls0_c00089{letter-spacing:18.936000px;}
.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;}
}
.ws6_c00089{word-spacing:-72.750000px;}
.ws0_c00089{word-spacing:-27.000000px;}
.ws7_c00089{word-spacing:-20.250000px;}
.ws2_c00089{word-spacing:-17.352000px;}
.ws3_c00089{word-spacing:-15.750000px;}
.ws4_c00089{word-spacing:-1.953000px;}
.ws1_c00089{word-spacing:-1.944000px;}
.ws8_c00089{word-spacing:0.000000px;}
.ws5_c00089{word-spacing:0.504000px;}
._13_c00089{margin-left:-19.197000px;}
._12_c00089{margin-left:-16.830000px;}
._17_c00089{margin-left:-15.726000px;}
._18_c00089{margin-left:-13.179000px;}
._1c_c00089{margin-left:-11.439000px;}
._1a_c00089{margin-left:-10.314000px;}
._11_c00089{margin-left:-8.253000px;}
._e_c00089{margin-left:-6.399000px;}
._a_c00089{margin-left:-4.932000px;}
._d_c00089{margin-left:-3.258000px;}
._c_c00089{margin-left:-1.701000px;}
._b_c00089{width:1.494000px;}
._3_c00089{width:2.664000px;}
._9_c00089{width:4.536000px;}
._f_c00089{width:5.670000px;}
._10_c00089{width:6.894000px;}
._5_c00089{width:8.064000px;}
._8_c00089{width:9.288000px;}
._7_c00089{width:11.232000px;}
._6_c00089{width:12.888000px;}
._2_c00089{width:15.408000px;}
._15_c00089{width:17.220000px;}
._16_c00089{width:18.252000px;}
._1_c00089{width:21.240000px;}
._4_c00089{width:25.416000px;}
._0_c00089{width:27.576000px;}
._1b_c00089{width:95.271000px;}
._19_c00089{width:170.784000px;}
._14_c00089{width:294.111000px;}
.fc2_c00089{color:transparent;}
.fc1_c00089{color:rgb(128,128,128);}
.fc0_c00089{color:rgb(0,0,0);}
.fs6_c00089{font-size:48.000000px;}
.fs2_c00089{font-size:63.000000px;}
.fs3_c00089{font-size:66.000000px;}
.fs0_c00089{font-size:72.000000px;}
.fs4_c00089{font-size:75.000000px;}
.fs1_c00089{font-size:81.000000px;}
.fs5_c00089{font-size:291.000000px;}
.y0_c00089{bottom:0.000000px;}
.y24_c00089{bottom:3.105000px;}
.y23_c00089{bottom:7.228357px;}
.y22_c00089{bottom:68.880000px;}
.y21_c00089{bottom:92.580000px;}
.y20_c00089{bottom:118.080000px;}
.y1f_c00089{bottom:142.380000px;}
.y1d_c00089{bottom:152.730000px;}
.y1e_c00089{bottom:167.430000px;}
.y1c_c00089{bottom:263.280000px;}
.y1b_c00089{bottom:289.530000px;}
.y1a_c00089{bottom:314.580000px;}
.y19_c00089{bottom:338.280000px;}
.y18_c00089{bottom:362.580000px;}
.y17_c00089{bottom:388.530000px;}
.y16_c00089{bottom:413.880000px;}
.y15_c00089{bottom:435.480000px;}
.y14_c00089{bottom:459.330000px;}
.y13_c00089{bottom:483.930000px;}
.y12_c00089{bottom:507.930000px;}
.y11_c00089{bottom:531.930000px;}
.y10_c00089{bottom:556.230000px;}
.yf_c00089{bottom:580.530000px;}
.ye_c00089{bottom:606.930000px;}
.yd_c00089{bottom:629.430000px;}
.yc_c00089{bottom:654.480000px;}
.yb_c00089{bottom:680.130000px;}
.ya_c00089{bottom:701.730000px;}
.y9_c00089{bottom:726.330000px;}
.y8_c00089{bottom:750.930000px;}
.y7_c00089{bottom:774.180000px;}
.y6_c00089{bottom:799.530000px;}
.y5_c00089{bottom:823.230000px;}
.y4_c00089{bottom:847.080000px;}
.y3_c00089{bottom:871.830000px;}
.y2_c00089{bottom:895.080000px;}
.y1_c00089{bottom:933.480000px;}
.h6_c00089{height:13.200074px;}
.h7_c00089{height:43.804688px;}
.h4_c00089{height:63.492188px;}
.h1_c00089{height:70.628906px;}
.h2_c00089{height:79.497070px;}
.h3_c00089{height:84.269531px;}
.h5_c00089{height:285.600586px;}
.h0_c00089{height:995.250000px;}
.w2_c00089{width:104.875500px;}
.w0_c00089{width:667.425000px;}
.w1_c00089{width:667.500000px;}
.x0_c00089{left:0.000000px;}
.xb_c00089{left:36.900000px;}
.x3_c00089{left:43.650000px;}
.x8_c00089{left:45.900000px;}
.x10_c00089{left:121.500000px;}
.xe_c00089{left:123.300000px;}
.xd_c00089{left:124.500000px;}
.xc_c00089{left:125.550000px;}
.xa_c00089{left:127.800000px;}
.x7_c00089{left:128.850000px;}
.x6_c00089{left:129.900000px;}
.x5_c00089{left:130.950000px;}
.x4_c00089{left:132.750000px;}
.x2_c00089{left:135.300000px;}
.xf_c00089{left:163.650000px;}
.x1_c00089{left:212.850000px;}
.x9_c00089{left:232.200000px;}
.x12_c00089{left:285.526749px;}
.x11_c00089{left:570.450000px;}
@media print{
.v1_c00089{vertical-align:-78.933333pt;}
.v0_c00089{vertical-align:0.000000pt;}
.v2_c00089{vertical-align:142.400000pt;}
.ls2_c00089{letter-spacing:0.000000pt;}
.ls1_c00089{letter-spacing:3.200000pt;}
.ls3_c00089{letter-spacing:8.000000pt;}
.ls0_c00089{letter-spacing:16.832000pt;}
.ws6_c00089{word-spacing:-64.666667pt;}
.ws0_c00089{word-spacing:-24.000000pt;}
.ws7_c00089{word-spacing:-18.000000pt;}
.ws2_c00089{word-spacing:-15.424000pt;}
.ws3_c00089{word-spacing:-14.000000pt;}
.ws4_c00089{word-spacing:-1.736000pt;}
.ws1_c00089{word-spacing:-1.728000pt;}
.ws8_c00089{word-spacing:0.000000pt;}
.ws5_c00089{word-spacing:0.448000pt;}
._13_c00089{margin-left:-17.064000pt;}
._12_c00089{margin-left:-14.960000pt;}
._17_c00089{margin-left:-13.978667pt;}
._18_c00089{margin-left:-11.714667pt;}
._1c_c00089{margin-left:-10.168000pt;}
._1a_c00089{margin-left:-9.168000pt;}
._11_c00089{margin-left:-7.336000pt;}
._e_c00089{margin-left:-5.688000pt;}
._a_c00089{margin-left:-4.384000pt;}
._d_c00089{margin-left:-2.896000pt;}
._c_c00089{margin-left:-1.512000pt;}
._b_c00089{width:1.328000pt;}
._3_c00089{width:2.368000pt;}
._9_c00089{width:4.032000pt;}
._f_c00089{width:5.040000pt;}
._10_c00089{width:6.128000pt;}
._5_c00089{width:7.168000pt;}
._8_c00089{width:8.256000pt;}
._7_c00089{width:9.984000pt;}
._6_c00089{width:11.456000pt;}
._2_c00089{width:13.696000pt;}
._15_c00089{width:15.306667pt;}
._16_c00089{width:16.224000pt;}
._1_c00089{width:18.880000pt;}
._4_c00089{width:22.592000pt;}
._0_c00089{width:24.512000pt;}
._1b_c00089{width:84.685333pt;}
._19_c00089{width:151.808000pt;}
._14_c00089{width:261.432000pt;}
.fs6_c00089{font-size:42.666667pt;}
.fs2_c00089{font-size:56.000000pt;}
.fs3_c00089{font-size:58.666667pt;}
.fs0_c00089{font-size:64.000000pt;}
.fs4_c00089{font-size:66.666667pt;}
.fs1_c00089{font-size:72.000000pt;}
.fs5_c00089{font-size:258.666667pt;}
.y0_c00089{bottom:0.000000pt;}
.y24_c00089{bottom:2.760000pt;}
.y23_c00089{bottom:6.425206pt;}
.y22_c00089{bottom:61.226667pt;}
.y21_c00089{bottom:82.293333pt;}
.y20_c00089{bottom:104.960000pt;}
.y1f_c00089{bottom:126.560000pt;}
.y1d_c00089{bottom:135.760000pt;}
.y1e_c00089{bottom:148.826667pt;}
.y1c_c00089{bottom:234.026667pt;}
.y1b_c00089{bottom:257.360000pt;}
.y1a_c00089{bottom:279.626667pt;}
.y19_c00089{bottom:300.693333pt;}
.y18_c00089{bottom:322.293333pt;}
.y17_c00089{bottom:345.360000pt;}
.y16_c00089{bottom:367.893333pt;}
.y15_c00089{bottom:387.093333pt;}
.y14_c00089{bottom:408.293333pt;}
.y13_c00089{bottom:430.160000pt;}
.y12_c00089{bottom:451.493333pt;}
.y11_c00089{bottom:472.826667pt;}
.y10_c00089{bottom:494.426667pt;}
.yf_c00089{bottom:516.026667pt;}
.ye_c00089{bottom:539.493333pt;}
.yd_c00089{bottom:559.493333pt;}
.yc_c00089{bottom:581.760000pt;}
.yb_c00089{bottom:604.560000pt;}
.ya_c00089{bottom:623.760000pt;}
.y9_c00089{bottom:645.626667pt;}
.y8_c00089{bottom:667.493333pt;}
.y7_c00089{bottom:688.160000pt;}
.y6_c00089{bottom:710.693333pt;}
.y5_c00089{bottom:731.760000pt;}
.y4_c00089{bottom:752.960000pt;}
.y3_c00089{bottom:774.960000pt;}
.y2_c00089{bottom:795.626667pt;}
.y1_c00089{bottom:829.760000pt;}
.h6_c00089{height:11.733399pt;}
.h7_c00089{height:38.937500pt;}
.h4_c00089{height:56.437500pt;}
.h1_c00089{height:62.781250pt;}
.h2_c00089{height:70.664062pt;}
.h3_c00089{height:74.906250pt;}
.h5_c00089{height:253.867188pt;}
.h0_c00089{height:884.666667pt;}
.w2_c00089{width:93.222667pt;}
.w0_c00089{width:593.266667pt;}
.w1_c00089{width:593.333333pt;}
.x0_c00089{left:0.000000pt;}
.xb_c00089{left:32.800000pt;}
.x3_c00089{left:38.800000pt;}
.x8_c00089{left:40.800000pt;}
.x10_c00089{left:108.000000pt;}
.xe_c00089{left:109.600000pt;}
.xd_c00089{left:110.666667pt;}
.xc_c00089{left:111.600000pt;}
.xa_c00089{left:113.600000pt;}
.x7_c00089{left:114.533333pt;}
.x6_c00089{left:115.466667pt;}
.x5_c00089{left:116.400000pt;}
.x4_c00089{left:118.000000pt;}
.x2_c00089{left:120.266667pt;}
.xf_c00089{left:145.466667pt;}
.x1_c00089{left:189.200000pt;}
.x9_c00089{left:206.400000pt;}
.x12_c00089{left:253.801554pt;}
.x11_c00089{left:507.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_008f7c66e940177eaa6370b8.woff2')format("woff");}.ff1_c00090{font-family:ff1_c00090;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00090;src:url('chunks/assets/font_a0b1e6dfa80c06fb87a9dd08.woff2')format("woff");}.ff2_c00090{font-family:ff2_c00090;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00090;src:url('chunks/assets/font_b9f6390e08d6e0b437bc2cb1.woff2')format("woff");}.ff3_c00090{font-family:ff3_c00090;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00090;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff4_c00090{font-family:ff4_c00090;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00090;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c00090{font-family:ff5_c00090;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00090{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00090{vertical-align:-90.600000px;}
.v0_c00090{vertical-align:0.000000px;}
.ls1_c00090{letter-spacing:0.000000px;}
.ls0_c00090{letter-spacing:1.200000px;}
.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:-17.352000px;}
.ws1_c00090{word-spacing:-3.483000px;}
.ws2_c00090{word-spacing:0.000000px;}
._10_c00090{margin-left:-22.842000px;}
._17_c00090{margin-left:-20.979000px;}
._16_c00090{margin-left:-14.337000px;}
._f_c00090{margin-left:-13.203000px;}
._18_c00090{margin-left:-11.421000px;}
._1a_c00090{margin-left:-9.720000px;}
._19_c00090{margin-left:-7.776000px;}
._c_c00090{margin-left:-6.561000px;}
._d_c00090{margin-left:-5.427000px;}
._3_c00090{margin-left:-3.888000px;}
._b_c00090{margin-left:-2.430000px;}
._13_c00090{margin-left:-1.215000px;}
._4_c00090{width:1.215000px;}
._5_c00090{width:2.349000px;}
._1_c00090{width:3.564000px;}
._9_c00090{width:4.941000px;}
._2_c00090{width:5.994000px;}
._0_c00090{width:7.209000px;}
._7_c00090{width:8.505000px;}
._6_c00090{width:10.449000px;}
._8_c00090{width:11.502000px;}
._e_c00090{width:13.446000px;}
._14_c00090{width:15.390000px;}
._11_c00090{width:16.524000px;}
._12_c00090{width:18.306000px;}
._a_c00090{width:21.384000px;}
._15_c00090{width:23.328000px;}
._20_c00090{width:27.054000px;}
._1c_c00090{width:147.825000px;}
._1d_c00090{width:168.636000px;}
._1b_c00090{width:175.551000px;}
._1e_c00090{width:367.443000px;}
._1f_c00090{width:661.527000px;}
.fc2_c00090{color:transparent;}
.fc1_c00090{color:rgb(128,128,128);}
.fc0_c00090{color:rgb(0,0,0);}
.fs3_c00090{font-size:48.000000px;}
.fs2_c00090{font-size:66.000000px;}
.fs1_c00090{font-size:72.000000px;}
.fs0_c00090{font-size:81.000000px;}
.y0_c00090{bottom:0.000000px;}
.y24_c00090{bottom:3.105000px;}
.y23_c00090{bottom:7.228355px;}
.y22_c00090{bottom:90.735000px;}
.y21_c00090{bottom:115.035000px;}
.y20_c00090{bottom:138.735000px;}
.y1f_c00090{bottom:163.335000px;}
.y1e_c00090{bottom:188.535000px;}
.y1d_c00090{bottom:212.535000px;}
.y1c_c00090{bottom:237.285000px;}
.y1b_c00090{bottom:261.435000px;}
.y1a_c00090{bottom:284.535000px;}
.y19_c00090{bottom:308.985000px;}
.y18_c00090{bottom:332.685000px;}
.y17_c00090{bottom:356.385000px;}
.y16_c00090{bottom:380.235000px;}
.y15_c00090{bottom:404.535000px;}
.y14_c00090{bottom:427.635000px;}
.y13_c00090{bottom:452.835000px;}
.y12_c00090{bottom:476.235000px;}
.y11_c00090{bottom:500.535000px;}
.y10_c00090{bottom:524.835000px;}
.yf_c00090{bottom:548.685000px;}
.ye_c00090{bottom:572.685000px;}
.yd_c00090{bottom:597.585000px;}
.yc_c00090{bottom:620.685000px;}
.yb_c00090{bottom:644.535000px;}
.ya_c00090{bottom:667.935000px;}
.y9_c00090{bottom:692.235000px;}
.y8_c00090{bottom:716.835000px;}
.y7_c00090{bottom:741.135000px;}
.y6_c00090{bottom:764.085000px;}
.y5_c00090{bottom:790.035000px;}
.y4_c00090{bottom:813.735000px;}
.y3_c00090{bottom:837.585000px;}
.y2_c00090{bottom:861.885000px;}
.y1_c00090{bottom:886.185000px;}
.h5_c00090{height:13.200074px;}
.h6_c00090{height:43.804688px;}
.h2_c00090{height:79.497070px;}
.h3_c00090{height:84.269531px;}
.h4_c00090{height:91.160156px;}
.h0_c00090{height:977.925000px;}
.h1_c00090{height:978.000000px;}
.w2_c00090{width:104.875500px;}
.w0_c00090{width:664.200000px;}
.w1_c00090{width:664.500000px;}
.x0_c00090{left:0.000000px;}
.x1_c00090{left:35.100000px;}
.x2_c00090{left:36.450000px;}
.x3_c00090{left:37.800000px;}
.x5_c00090{left:38.850000px;}
.x4_c00090{left:39.900000px;}
.x6_c00090{left:41.850000px;}
.x7_c00090{left:283.914230px;}
@media print{
.v1_c00090{vertical-align:-80.533333pt;}
.v0_c00090{vertical-align:0.000000pt;}
.ls1_c00090{letter-spacing:0.000000pt;}
.ls0_c00090{letter-spacing:1.066667pt;}
.ws0_c00090{word-spacing:-15.424000pt;}
.ws1_c00090{word-spacing:-3.096000pt;}
.ws2_c00090{word-spacing:0.000000pt;}
._10_c00090{margin-left:-20.304000pt;}
._17_c00090{margin-left:-18.648000pt;}
._16_c00090{margin-left:-12.744000pt;}
._f_c00090{margin-left:-11.736000pt;}
._18_c00090{margin-left:-10.152000pt;}
._1a_c00090{margin-left:-8.640000pt;}
._19_c00090{margin-left:-6.912000pt;}
._c_c00090{margin-left:-5.832000pt;}
._d_c00090{margin-left:-4.824000pt;}
._3_c00090{margin-left:-3.456000pt;}
._b_c00090{margin-left:-2.160000pt;}
._13_c00090{margin-left:-1.080000pt;}
._4_c00090{width:1.080000pt;}
._5_c00090{width:2.088000pt;}
._1_c00090{width:3.168000pt;}
._9_c00090{width:4.392000pt;}
._2_c00090{width:5.328000pt;}
._0_c00090{width:6.408000pt;}
._7_c00090{width:7.560000pt;}
._6_c00090{width:9.288000pt;}
._8_c00090{width:10.224000pt;}
._e_c00090{width:11.952000pt;}
._14_c00090{width:13.680000pt;}
._11_c00090{width:14.688000pt;}
._12_c00090{width:16.272000pt;}
._a_c00090{width:19.008000pt;}
._15_c00090{width:20.736000pt;}
._20_c00090{width:24.048000pt;}
._1c_c00090{width:131.400000pt;}
._1d_c00090{width:149.898667pt;}
._1b_c00090{width:156.045333pt;}
._1e_c00090{width:326.616000pt;}
._1f_c00090{width:588.024000pt;}
.fs3_c00090{font-size:42.666667pt;}
.fs2_c00090{font-size:58.666667pt;}
.fs1_c00090{font-size:64.000000pt;}
.fs0_c00090{font-size:72.000000pt;}
.y0_c00090{bottom:0.000000pt;}
.y24_c00090{bottom:2.760000pt;}
.y23_c00090{bottom:6.425204pt;}
.y22_c00090{bottom:80.653333pt;}
.y21_c00090{bottom:102.253333pt;}
.y20_c00090{bottom:123.320000pt;}
.y1f_c00090{bottom:145.186667pt;}
.y1e_c00090{bottom:167.586667pt;}
.y1d_c00090{bottom:188.920000pt;}
.y1c_c00090{bottom:210.920000pt;}
.y1b_c00090{bottom:232.386667pt;}
.y1a_c00090{bottom:252.920000pt;}
.y19_c00090{bottom:274.653333pt;}
.y18_c00090{bottom:295.720000pt;}
.y17_c00090{bottom:316.786667pt;}
.y16_c00090{bottom:337.986667pt;}
.y15_c00090{bottom:359.586667pt;}
.y14_c00090{bottom:380.120000pt;}
.y13_c00090{bottom:402.520000pt;}
.y12_c00090{bottom:423.320000pt;}
.y11_c00090{bottom:444.920000pt;}
.y10_c00090{bottom:466.520000pt;}
.yf_c00090{bottom:487.720000pt;}
.ye_c00090{bottom:509.053333pt;}
.yd_c00090{bottom:531.186667pt;}
.yc_c00090{bottom:551.720000pt;}
.yb_c00090{bottom:572.920000pt;}
.ya_c00090{bottom:593.720000pt;}
.y9_c00090{bottom:615.320000pt;}
.y8_c00090{bottom:637.186667pt;}
.y7_c00090{bottom:658.786667pt;}
.y6_c00090{bottom:679.186667pt;}
.y5_c00090{bottom:702.253333pt;}
.y4_c00090{bottom:723.320000pt;}
.y3_c00090{bottom:744.520000pt;}
.y2_c00090{bottom:766.120000pt;}
.y1_c00090{bottom:787.720000pt;}
.h5_c00090{height:11.733399pt;}
.h6_c00090{height:38.937500pt;}
.h2_c00090{height:70.664062pt;}
.h3_c00090{height:74.906250pt;}
.h4_c00090{height:81.031250pt;}
.h0_c00090{height:869.266667pt;}
.h1_c00090{height:869.333333pt;}
.w2_c00090{width:93.222667pt;}
.w0_c00090{width:590.400000pt;}
.w1_c00090{width:590.666667pt;}
.x0_c00090{left:0.000000pt;}
.x1_c00090{left:31.200000pt;}
.x2_c00090{left:32.400000pt;}
.x3_c00090{left:33.600000pt;}
.x5_c00090{left:34.533333pt;}
.x4_c00090{left:35.466667pt;}
.x6_c00090{left:37.200000pt;}
.x7_c00090{left:252.368205pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ce8916c99a3c98033e8e59bb.woff2')format("woff");}.ff1_c00091{font-family:ff1_c00091;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00091;src:url('chunks/assets/font_28db778658aa76149253e312.woff2')format("woff");}.ff2_c00091{font-family:ff2_c00091;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00091;src:url('chunks/assets/font_c570ce3c754674f95d42f6a9.woff2')format("woff");}.ff3_c00091{font-family:ff3_c00091;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00091;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff4_c00091{font-family:ff4_c00091;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00091;src:url('chunks/assets/font_abc62d72a67dd9922755aa57.woff2')format("woff");}.ff5_c00091{font-family:ff5_c00091;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00091;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c00091{font-family:ff6_c00091;line-height:1.219238;font-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_c00091{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,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;}
.ls4_c00091{letter-spacing:0.000000px;}
.ls0_c00091{letter-spacing:6.900000px;}
.ls3_c00091{letter-spacing:7.992000px;}
.ls1_c00091{letter-spacing:18.024000px;}
.ls2_c00091{letter-spacing:179.400000px;}
.sc__c00091{text-shadow:none;}
.sc0_c00091{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00091{-webkit-text-stroke:0px transparent;}
.sc0_c00091{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00091{word-spacing:-25.305000px;}
.ws3_c00091{word-spacing:-20.250000px;}
.ws2_c00091{word-spacing:-18.750000px;}
.ws1_c00091{word-spacing:-17.352000px;}
.ws4_c00091{word-spacing:0.000000px;}
._10_c00091{margin-left:-14.895000px;}
._19_c00091{margin-left:-12.600000px;}
._15_c00091{margin-left:-10.419000px;}
._c_c00091{margin-left:-8.193000px;}
._9_c00091{margin-left:-7.152000px;}
._e_c00091{margin-left:-5.166000px;}
._b_c00091{margin-left:-3.468000px;}
._2_c00091{margin-left:-2.310000px;}
._3_c00091{margin-left:-1.260000px;}
._f_c00091{width:1.095000px;}
._0_c00091{width:2.100000px;}
._5_c00091{width:3.465000px;}
._6_c00091{width:4.830000px;}
._a_c00091{width:6.642000px;}
._d_c00091{width:8.250000px;}
._8_c00091{width:9.558000px;}
._11_c00091{width:11.148000px;}
._4_c00091{width:12.744000px;}
._13_c00091{width:14.616000px;}
._7_c00091{width:15.957000px;}
._14_c00091{width:17.151000px;}
._18_c00091{width:19.143000px;}
._1a_c00091{width:22.776000px;}
._17_c00091{width:31.833000px;}
._1_c00091{width:238.980000px;}
._12_c00091{width:373.656000px;}
._16_c00091{width:846.471000px;}
.fc2_c00091{color:transparent;}
.fc1_c00091{color:rgb(128,128,128);}
.fc0_c00091{color:rgb(0,0,0);}
.fs5_c00091{font-size:48.000000px;}
.fs3_c00091{font-size:72.000000px;}
.fs4_c00091{font-size:75.000000px;}
.fs2_c00091{font-size:81.000000px;}
.fs0_c00091{font-size:105.000000px;}
.fs1_c00091{font-size:108.000000px;}
.y0_c00091{bottom:0.000000px;}
.y26_c00091{bottom:3.105000px;}
.y25_c00091{bottom:7.228357px;}
.y24_c00091{bottom:56.730000px;}
.y23_c00091{bottom:80.280000px;}
.y22_c00091{bottom:105.030000px;}
.y21_c00091{bottom:129.630000px;}
.y20_c00091{bottom:153.930000px;}
.y1f_c00091{bottom:178.530000px;}
.y1e_c00091{bottom:203.130000px;}
.y1d_c00091{bottom:227.880000px;}
.y1c_c00091{bottom:252.480000px;}
.y1b_c00091{bottom:276.780000px;}
.y1a_c00091{bottom:300.780000px;}
.y19_c00091{bottom:325.080000px;}
.y18_c00091{bottom:349.980000px;}
.y17_c00091{bottom:374.580000px;}
.y16_c00091{bottom:398.580000px;}
.y15_c00091{bottom:423.180000px;}
.y14_c00091{bottom:446.280000px;}
.y13_c00091{bottom:470.880000px;}
.y12_c00091{bottom:494.880000px;}
.y11_c00091{bottom:519.180000px;}
.y10_c00091{bottom:544.380000px;}
.yf_c00091{bottom:568.380000px;}
.ye_c00091{bottom:592.680000px;}
.yd_c00091{bottom:617.580000px;}
.yc_c00091{bottom:640.980000px;}
.yb_c00091{bottom:665.580000px;}
.ya_c00091{bottom:689.580000px;}
.y9_c00091{bottom:714.780000px;}
.y8_c00091{bottom:740.130000px;}
.y7_c00091{bottom:762.780000px;}
.y6_c00091{bottom:786.780000px;}
.y5_c00091{bottom:811.680000px;}
.y4_c00091{bottom:835.980000px;}
.y3_c00091{bottom:859.380000px;}
.y2_c00091{bottom:883.680000px;}
.y1_c00091{bottom:918.330000px;}
.h7_c00091{height:13.200074px;}
.h8_c00091{height:43.804688px;}
.h5_c00091{height:79.497070px;}
.h4_c00091{height:84.269531px;}
.h6_c00091{height:91.160156px;}
.h3_c00091{height:108.843750px;}
.h2_c00091{height:122.893066px;}
.h0_c00091{height:957.450000px;}
.h1_c00091{height:957.750000px;}
.w2_c00091{width:104.875500px;}
.w1_c00091{width:642.000000px;}
.w0_c00091{width:642.075000px;}
.x0_c00091{left:0.000000px;}
.x6_c00091{left:27.000000px;}
.xe_c00091{left:73.200000px;}
.xf_c00091{left:87.300000px;}
.x17_c00091{left:102.150000px;}
.x16_c00091{left:103.650000px;}
.x15_c00091{left:105.000000px;}
.x13_c00091{left:106.650000px;}
.x12_c00091{left:108.000000px;}
.x10_c00091{left:110.250000px;}
.x11_c00091{left:111.600000px;}
.xc_c00091{left:113.700000px;}
.xb_c00091{left:115.650000px;}
.x9_c00091{left:117.150000px;}
.x7_c00091{left:118.350000px;}
.x5_c00091{left:120.150000px;}
.x1_c00091{left:121.200000px;}
.xa_c00091{left:123.150000px;}
.x14_c00091{left:131.250000px;}
.xd_c00091{left:136.650000px;}
.x4_c00091{left:145.500000px;}
.x19_c00091{left:272.851730px;}
.x2_c00091{left:313.650000px;}
.x3_c00091{left:335.550000px;}
.x18_c00091{left:538.650000px;}
.x8_c00091{left:589.200000px;}
@media print{
.v0_c00091{vertical-align:0.000000pt;}
.ls4_c00091{letter-spacing:0.000000pt;}
.ls0_c00091{letter-spacing:6.133333pt;}
.ls3_c00091{letter-spacing:7.104000pt;}
.ls1_c00091{letter-spacing:16.021333pt;}
.ls2_c00091{letter-spacing:159.466667pt;}
.ws0_c00091{word-spacing:-22.493333pt;}
.ws3_c00091{word-spacing:-18.000000pt;}
.ws2_c00091{word-spacing:-16.666667pt;}
.ws1_c00091{word-spacing:-15.424000pt;}
.ws4_c00091{word-spacing:0.000000pt;}
._10_c00091{margin-left:-13.240000pt;}
._19_c00091{margin-left:-11.200000pt;}
._15_c00091{margin-left:-9.261333pt;}
._c_c00091{margin-left:-7.282667pt;}
._9_c00091{margin-left:-6.357333pt;}
._e_c00091{margin-left:-4.592000pt;}
._b_c00091{margin-left:-3.082667pt;}
._2_c00091{margin-left:-2.053333pt;}
._3_c00091{margin-left:-1.120000pt;}
._f_c00091{width:0.973333pt;}
._0_c00091{width:1.866667pt;}
._5_c00091{width:3.080000pt;}
._6_c00091{width:4.293333pt;}
._a_c00091{width:5.904000pt;}
._d_c00091{width:7.333333pt;}
._8_c00091{width:8.496000pt;}
._11_c00091{width:9.909333pt;}
._4_c00091{width:11.328000pt;}
._13_c00091{width:12.992000pt;}
._7_c00091{width:14.184000pt;}
._14_c00091{width:15.245333pt;}
._18_c00091{width:17.016000pt;}
._1a_c00091{width:20.245333pt;}
._17_c00091{width:28.296000pt;}
._1_c00091{width:212.426667pt;}
._12_c00091{width:332.138667pt;}
._16_c00091{width:752.418667pt;}
.fs5_c00091{font-size:42.666667pt;}
.fs3_c00091{font-size:64.000000pt;}
.fs4_c00091{font-size:66.666667pt;}
.fs2_c00091{font-size:72.000000pt;}
.fs0_c00091{font-size:93.333333pt;}
.fs1_c00091{font-size:96.000000pt;}
.y0_c00091{bottom:0.000000pt;}
.y26_c00091{bottom:2.760000pt;}
.y25_c00091{bottom:6.425206pt;}
.y24_c00091{bottom:50.426667pt;}
.y23_c00091{bottom:71.360000pt;}
.y22_c00091{bottom:93.360000pt;}
.y21_c00091{bottom:115.226667pt;}
.y20_c00091{bottom:136.826667pt;}
.y1f_c00091{bottom:158.693333pt;}
.y1e_c00091{bottom:180.560000pt;}
.y1d_c00091{bottom:202.560000pt;}
.y1c_c00091{bottom:224.426667pt;}
.y1b_c00091{bottom:246.026667pt;}
.y1a_c00091{bottom:267.360000pt;}
.y19_c00091{bottom:288.960000pt;}
.y18_c00091{bottom:311.093333pt;}
.y17_c00091{bottom:332.960000pt;}
.y16_c00091{bottom:354.293333pt;}
.y15_c00091{bottom:376.160000pt;}
.y14_c00091{bottom:396.693333pt;}
.y13_c00091{bottom:418.560000pt;}
.y12_c00091{bottom:439.893333pt;}
.y11_c00091{bottom:461.493333pt;}
.y10_c00091{bottom:483.893333pt;}
.yf_c00091{bottom:505.226667pt;}
.ye_c00091{bottom:526.826667pt;}
.yd_c00091{bottom:548.960000pt;}
.yc_c00091{bottom:569.760000pt;}
.yb_c00091{bottom:591.626667pt;}
.ya_c00091{bottom:612.960000pt;}
.y9_c00091{bottom:635.360000pt;}
.y8_c00091{bottom:657.893333pt;}
.y7_c00091{bottom:678.026667pt;}
.y6_c00091{bottom:699.360000pt;}
.y5_c00091{bottom:721.493333pt;}
.y4_c00091{bottom:743.093333pt;}
.y3_c00091{bottom:763.893333pt;}
.y2_c00091{bottom:785.493333pt;}
.y1_c00091{bottom:816.293333pt;}
.h7_c00091{height:11.733399pt;}
.h8_c00091{height:38.937500pt;}
.h5_c00091{height:70.664062pt;}
.h4_c00091{height:74.906250pt;}
.h6_c00091{height:81.031250pt;}
.h3_c00091{height:96.750000pt;}
.h2_c00091{height:109.238281pt;}
.h0_c00091{height:851.066667pt;}
.h1_c00091{height:851.333333pt;}
.w2_c00091{width:93.222667pt;}
.w1_c00091{width:570.666667pt;}
.w0_c00091{width:570.733333pt;}
.x0_c00091{left:0.000000pt;}
.x6_c00091{left:24.000000pt;}
.xe_c00091{left:65.066667pt;}
.xf_c00091{left:77.600000pt;}
.x17_c00091{left:90.800000pt;}
.x16_c00091{left:92.133333pt;}
.x15_c00091{left:93.333333pt;}
.x13_c00091{left:94.800000pt;}
.x12_c00091{left:96.000000pt;}
.x10_c00091{left:98.000000pt;}
.x11_c00091{left:99.200000pt;}
.xc_c00091{left:101.066667pt;}
.xb_c00091{left:102.800000pt;}
.x9_c00091{left:104.133333pt;}
.x7_c00091{left:105.200000pt;}
.x5_c00091{left:106.800000pt;}
.x1_c00091{left:107.733333pt;}
.xa_c00091{left:109.466667pt;}
.x14_c00091{left:116.666667pt;}
.xd_c00091{left:121.466667pt;}
.x4_c00091{left:129.333333pt;}
.x19_c00091{left:242.534871pt;}
.x2_c00091{left:278.800000pt;}
.x3_c00091{left:298.266667pt;}
.x18_c00091{left:478.800000pt;}
.x8_c00091{left:523.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_90103cabd03d9a5ea857c0a4.woff2')format("woff");}.ff1_c00092{font-family:ff1_c00092;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00092;src:url('chunks/assets/font_d16f3926b2c54c6606ecab1e.woff2')format("woff");}.ff2_c00092{font-family:ff2_c00092;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00092;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff3_c00092{font-family:ff3_c00092;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00092;src:url('chunks/assets/font_1fc4daf11b18e45ec004354a.woff2')format("woff");}.ff4_c00092{font-family:ff4_c00092;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00092;src:url('chunks/assets/font_8b9a3ba9d9ca3b0937573462.woff2')format("woff");}.ff5_c00092{font-family:ff5_c00092;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00092;src:url('chunks/assets/font_6d6433c066fa732aafdeab83.woff2')format("woff");}.ff6_c00092{font-family:ff6_c00092;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00092;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c00092{font-family:ff7_c00092;line-height:1.219238;font-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_c00092{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,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;}
.ls1_c00092{letter-spacing:0.000000px;}
.ls0_c00092{letter-spacing:4.680000px;}
.sc__c00092{text-shadow:none;}
.sc0_c00092{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00092{-webkit-text-stroke:0px transparent;}
.sc0_c00092{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00092{word-spacing:-67.686000px;}
.ws0_c00092{word-spacing:-33.000000px;}
.ws2_c00092{word-spacing:-17.352000px;}
.ws3_c00092{word-spacing:0.000000px;}
._e_c00092{margin-left:-17.577000px;}
._1a_c00092{margin-left:-15.894000px;}
._1b_c00092{margin-left:-14.271000px;}
._d_c00092{margin-left:-12.798000px;}
._17_c00092{margin-left:-11.232000px;}
._12_c00092{margin-left:-9.963000px;}
._3_c00092{margin-left:-8.505000px;}
._f_c00092{margin-left:-7.209000px;}
._16_c00092{margin-left:-6.192000px;}
._11_c00092{margin-left:-5.103000px;}
._1_c00092{margin-left:-3.726000px;}
._5_c00092{margin-left:-2.430000px;}
._13_c00092{margin-left:-1.317000px;}
._2_c00092{width:1.296000px;}
._0_c00092{width:2.997000px;}
._4_c00092{width:4.374000px;}
._6_c00092{width:5.751000px;}
._9_c00092{width:7.209000px;}
._7_c00092{width:8.262000px;}
._10_c00092{width:9.396000px;}
._b_c00092{width:10.530000px;}
._8_c00092{width:12.555000px;}
._a_c00092{width:15.714000px;}
._c_c00092{width:16.767000px;}
._18_c00092{width:19.503000px;}
._1c_c00092{width:22.077000px;}
._19_c00092{width:24.591000px;}
._1d_c00092{width:26.973000px;}
._14_c00092{width:39.432000px;}
._15_c00092{width:97.491000px;}
.fc2_c00092{color:transparent;}
.fc1_c00092{color:rgb(128,128,128);}
.fc0_c00092{color:rgb(0,0,0);}
.fs5_c00092{font-size:48.000000px;}
.fs2_c00092{font-size:66.000000px;}
.fs1_c00092{font-size:72.000000px;}
.fs0_c00092{font-size:81.000000px;}
.fs3_c00092{font-size:87.000000px;}
.fs4_c00092{font-size:108.000000px;}
.y0_c00092{bottom:0.000000px;}
.y24_c00092{bottom:3.105000px;}
.y23_c00092{bottom:7.228363px;}
.y22_c00092{bottom:74.250000px;}
.y21_c00092{bottom:98.850000px;}
.y20_c00092{bottom:123.600000px;}
.y1f_c00092{bottom:147.150000px;}
.y1e_c00092{bottom:172.500000px;}
.y1d_c00092{bottom:197.100000px;}
.y1c_c00092{bottom:221.700000px;}
.y1b_c00092{bottom:246.450000px;}
.y1a_c00092{bottom:270.750000px;}
.y19_c00092{bottom:295.350000px;}
.y18_c00092{bottom:319.050000px;}
.y17_c00092{bottom:343.200000px;}
.y16_c00092{bottom:367.650000px;}
.y15_c00092{bottom:392.250000px;}
.y14_c00092{bottom:416.550000px;}
.y13_c00092{bottom:441.150000px;}
.y12_c00092{bottom:465.750000px;}
.y11_c00092{bottom:490.350000px;}
.y10_c00092{bottom:514.650000px;}
.yf_c00092{bottom:538.650000px;}
.ye_c00092{bottom:562.950000px;}
.yd_c00092{bottom:586.950000px;}
.yc_c00092{bottom:611.550000px;}
.yb_c00092{bottom:635.250000px;}
.ya_c00092{bottom:659.100000px;}
.y9_c00092{bottom:683.550000px;}
.y8_c00092{bottom:707.400000px;}
.y7_c00092{bottom:732.000000px;}
.y6_c00092{bottom:756.000000px;}
.y5_c00092{bottom:780.300000px;}
.y4_c00092{bottom:804.000000px;}
.y3_c00092{bottom:828.300000px;}
.y2_c00092{bottom:852.600000px;}
.y1_c00092{bottom:877.050000px;}
.h7_c00092{height:13.200074px;}
.h8_c00092{height:43.804688px;}
.h2_c00092{height:79.497070px;}
.h3_c00092{height:84.269531px;}
.h4_c00092{height:91.160156px;}
.h5_c00092{height:91.176000px;}
.h6_c00092{height:108.843750px;}
.h0_c00092{height:980.100000px;}
.h1_c00092{height:980.250000px;}
.w2_c00092{width:104.875500px;}
.w0_c00092{width:665.850000px;}
.w1_c00092{width:666.000000px;}
.x0_c00092{left:0.000000px;}
.x1_c00092{left:43.500000px;}
.x2_c00092{left:44.850000px;}
.x3_c00092{left:46.500000px;}
.x4_c00092{left:48.000000px;}
.x5_c00092{left:50.400000px;}
.x6_c00092{left:51.600000px;}
.x7_c00092{left:52.950000px;}
.x8_c00092{left:54.300000px;}
.x9_c00092{left:55.800000px;}
.xa_c00092{left:57.150000px;}
.xb_c00092{left:58.350000px;}
.xc_c00092{left:88.800000px;}
.xd_c00092{left:208.350000px;}
.xe_c00092{left:237.000000px;}
.x10_c00092{left:284.739258px;}
.xf_c00092{left:397.941600px;}
@media print{
.v0_c00092{vertical-align:0.000000pt;}
.ls1_c00092{letter-spacing:0.000000pt;}
.ls0_c00092{letter-spacing:4.160000pt;}
.ws1_c00092{word-spacing:-60.165333pt;}
.ws0_c00092{word-spacing:-29.333333pt;}
.ws2_c00092{word-spacing:-15.424000pt;}
.ws3_c00092{word-spacing:0.000000pt;}
._e_c00092{margin-left:-15.624000pt;}
._1a_c00092{margin-left:-14.128000pt;}
._1b_c00092{margin-left:-12.685333pt;}
._d_c00092{margin-left:-11.376000pt;}
._17_c00092{margin-left:-9.984000pt;}
._12_c00092{margin-left:-8.856000pt;}
._3_c00092{margin-left:-7.560000pt;}
._f_c00092{margin-left:-6.408000pt;}
._16_c00092{margin-left:-5.504000pt;}
._11_c00092{margin-left:-4.536000pt;}
._1_c00092{margin-left:-3.312000pt;}
._5_c00092{margin-left:-2.160000pt;}
._13_c00092{margin-left:-1.170667pt;}
._2_c00092{width:1.152000pt;}
._0_c00092{width:2.664000pt;}
._4_c00092{width:3.888000pt;}
._6_c00092{width:5.112000pt;}
._9_c00092{width:6.408000pt;}
._7_c00092{width:7.344000pt;}
._10_c00092{width:8.352000pt;}
._b_c00092{width:9.360000pt;}
._8_c00092{width:11.160000pt;}
._a_c00092{width:13.968000pt;}
._c_c00092{width:14.904000pt;}
._18_c00092{width:17.336000pt;}
._1c_c00092{width:19.624000pt;}
._19_c00092{width:21.858667pt;}
._1d_c00092{width:23.976000pt;}
._14_c00092{width:35.050667pt;}
._15_c00092{width:86.658667pt;}
.fs5_c00092{font-size:42.666667pt;}
.fs2_c00092{font-size:58.666667pt;}
.fs1_c00092{font-size:64.000000pt;}
.fs0_c00092{font-size:72.000000pt;}
.fs3_c00092{font-size:77.333333pt;}
.fs4_c00092{font-size:96.000000pt;}
.y0_c00092{bottom:0.000000pt;}
.y24_c00092{bottom:2.760000pt;}
.y23_c00092{bottom:6.425212pt;}
.y22_c00092{bottom:66.000000pt;}
.y21_c00092{bottom:87.866667pt;}
.y20_c00092{bottom:109.866667pt;}
.y1f_c00092{bottom:130.800000pt;}
.y1e_c00092{bottom:153.333333pt;}
.y1d_c00092{bottom:175.200000pt;}
.y1c_c00092{bottom:197.066667pt;}
.y1b_c00092{bottom:219.066667pt;}
.y1a_c00092{bottom:240.666667pt;}
.y19_c00092{bottom:262.533333pt;}
.y18_c00092{bottom:283.600000pt;}
.y17_c00092{bottom:305.066667pt;}
.y16_c00092{bottom:326.800000pt;}
.y15_c00092{bottom:348.666667pt;}
.y14_c00092{bottom:370.266667pt;}
.y13_c00092{bottom:392.133333pt;}
.y12_c00092{bottom:414.000000pt;}
.y11_c00092{bottom:435.866667pt;}
.y10_c00092{bottom:457.466667pt;}
.yf_c00092{bottom:478.800000pt;}
.ye_c00092{bottom:500.400000pt;}
.yd_c00092{bottom:521.733333pt;}
.yc_c00092{bottom:543.600000pt;}
.yb_c00092{bottom:564.666667pt;}
.ya_c00092{bottom:585.866667pt;}
.y9_c00092{bottom:607.600000pt;}
.y8_c00092{bottom:628.800000pt;}
.y7_c00092{bottom:650.666667pt;}
.y6_c00092{bottom:672.000000pt;}
.y5_c00092{bottom:693.600000pt;}
.y4_c00092{bottom:714.666667pt;}
.y3_c00092{bottom:736.266667pt;}
.y2_c00092{bottom:757.866667pt;}
.y1_c00092{bottom:779.600000pt;}
.h7_c00092{height:11.733399pt;}
.h8_c00092{height:38.937500pt;}
.h2_c00092{height:70.664062pt;}
.h3_c00092{height:74.906250pt;}
.h4_c00092{height:81.031250pt;}
.h5_c00092{height:81.045333pt;}
.h6_c00092{height:96.750000pt;}
.h0_c00092{height:871.200000pt;}
.h1_c00092{height:871.333333pt;}
.w2_c00092{width:93.222667pt;}
.w0_c00092{width:591.866667pt;}
.w1_c00092{width:592.000000pt;}
.x0_c00092{left:0.000000pt;}
.x1_c00092{left:38.666667pt;}
.x2_c00092{left:39.866667pt;}
.x3_c00092{left:41.333333pt;}
.x4_c00092{left:42.666667pt;}
.x5_c00092{left:44.800000pt;}
.x6_c00092{left:45.866667pt;}
.x7_c00092{left:47.066667pt;}
.x8_c00092{left:48.266667pt;}
.x9_c00092{left:49.600000pt;}
.xa_c00092{left:50.800000pt;}
.xb_c00092{left:51.866667pt;}
.xc_c00092{left:78.933333pt;}
.xd_c00092{left:185.200000pt;}
.xe_c00092{left:210.666667pt;}
.x10_c00092{left:253.101563pt;}
.xf_c00092{left:353.725867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5f15638b87d4927413444905.woff2')format("woff");}.ff1_c00093{font-family:ff1_c00093;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00093;src:url('chunks/assets/font_e1429eb1b650dea707f2c0c4.woff2')format("woff");}.ff2_c00093{font-family:ff2_c00093;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00093;src:url('chunks/assets/font_5d618eb4bd37acb516fafcf1.woff2')format("woff");}.ff3_c00093{font-family:ff3_c00093;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00093;src:url('chunks/assets/font_c248beea90eff656b8976aab.woff2')format("woff");}.ff4_c00093{font-family:ff4_c00093;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00093;src:url('chunks/assets/font_265c0281b980bf0c2dd3d27f.woff2')format("woff");}.ff5_c00093{font-family:ff5_c00093;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00093;src:url('chunks/assets/font_1fc4daf11b18e45ec004354a.woff2')format("woff");}.ff6_c00093{font-family:ff6_c00093;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00093;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c00093{font-family:ff7_c00093;line-height:1.219238;font-style: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;}
.ls1_c00093{letter-spacing:0.000000px;}
.ls2_c00093{letter-spacing:3.000000px;}
.ls0_c00093{letter-spacing:6.300000px;}
.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;}
}
.ws2_c00093{word-spacing:-20.250000px;}
.ws1_c00093{word-spacing:-17.352000px;}
.ws0_c00093{word-spacing:-13.737000px;}
.ws3_c00093{word-spacing:0.000000px;}
._1_c00093{margin-left:-17.040000px;}
._1a_c00093{margin-left:-13.068000px;}
._1e_c00093{margin-left:-11.736000px;}
._2_c00093{margin-left:-9.360000px;}
._16_c00093{margin-left:-8.187000px;}
._8_c00093{margin-left:-7.038000px;}
._f_c00093{margin-left:-5.592000px;}
._9_c00093{margin-left:-4.590000px;}
._c_c00093{margin-left:-2.826000px;}
._e_c00093{margin-left:-1.521000px;}
._a_c00093{width:1.020000px;}
._7_c00093{width:2.346000px;}
._5_c00093{width:3.468000px;}
._d_c00093{width:4.473000px;}
._4_c00093{width:5.508000px;}
._0_c00093{width:7.200000px;}
._b_c00093{width:8.352000px;}
._10_c00093{width:9.573000px;}
._6_c00093{width:10.608000px;}
._14_c00093{width:12.330000px;}
._1f_c00093{width:13.782000px;}
._15_c00093{width:14.895000px;}
._13_c00093{width:15.903000px;}
._19_c00093{width:18.159000px;}
._22_c00093{width:19.779000px;}
._17_c00093{width:22.110000px;}
._20_c00093{width:26.808000px;}
._21_c00093{width:28.716000px;}
._1b_c00093{width:33.825000px;}
._1d_c00093{width:81.900000px;}
._18_c00093{width:120.966000px;}
._1c_c00093{width:191.874000px;}
._3_c00093{width:207.600000px;}
._12_c00093{width:238.176000px;}
._11_c00093{width:467.922000px;}
.fc2_c00093{color:transparent;}
.fc1_c00093{color:rgb(128,128,128);}
.fc0_c00093{color:rgb(0,0,0);}
.fs8_c00093{font-size:48.000000px;}
.fs3_c00093{font-size:57.000000px;}
.fs6_c00093{font-size:63.000000px;}
.fs7_c00093{font-size:66.000000px;}
.fs5_c00093{font-size:72.000000px;}
.fs4_c00093{font-size:78.000000px;}
.fs2_c00093{font-size:81.000000px;}
.fs1_c00093{font-size:102.000000px;}
.fs0_c00093{font-size:120.000000px;}
.y0_c00093{bottom:0.000000px;}
.y24_c00093{bottom:3.105000px;}
.y23_c00093{bottom:7.228357px;}
.y22_c00093{bottom:70.230000px;}
.y21_c00093{bottom:93.180000px;}
.y20_c00093{bottom:118.830000px;}
.y1f_c00093{bottom:143.730000px;}
.y1e_c00093{bottom:169.530000px;}
.y1d_c00093{bottom:195.030000px;}
.y1c_c00093{bottom:219.330000px;}
.y1b_c00093{bottom:244.380000px;}
.y1a_c00093{bottom:268.980000px;}
.y19_c00093{bottom:294.930000px;}
.y18_c00093{bottom:332.430000px;}
.y17_c00093{bottom:363.180000px;}
.y16_c00093{bottom:411.480000px;}
.y15_c00093{bottom:437.430000px;}
.y14_c00093{bottom:461.430000px;}
.y13_c00093{bottom:485.430000px;}
.y12_c00093{bottom:510.930000px;}
.y11_c00093{bottom:533.880000px;}
.y10_c00093{bottom:558.330000px;}
.yf_c00093{bottom:583.230000px;}
.ye_c00093{bottom:607.830000px;}
.yd_c00093{bottom:630.480000px;}
.yc_c00093{bottom:656.130000px;}
.yb_c00093{bottom:680.430000px;}
.ya_c00093{bottom:704.430000px;}
.y9_c00093{bottom:729.030000px;}
.y8_c00093{bottom:754.380000px;}
.y7_c00093{bottom:777.030000px;}
.y6_c00093{bottom:801.630000px;}
.y5_c00093{bottom:825.480000px;}
.y4_c00093{bottom:849.480000px;}
.y3_c00093{bottom:874.080000px;}
.y2_c00093{bottom:898.080000px;}
.y1_c00093{bottom:933.180000px;}
.h7_c00093{height:13.200074px;}
.h8_c00093{height:43.804688px;}
.h3_c00093{height:66.713379px;}
.h4_c00093{height:72.168457px;}
.h2_c00093{height:79.497070px;}
.h6_c00093{height:84.269531px;}
.h5_c00093{height:98.756836px;}
.h1_c00093{height:120.937500px;}
.h0_c00093{height:995.250000px;}
.w2_c00093{width:104.875500px;}
.w0_c00093{width:667.425000px;}
.w1_c00093{width:667.500000px;}
.x0_c00093{left:0.000000px;}
.x6_c00093{left:46.650000px;}
.x8_c00093{left:47.700000px;}
.x4_c00093{left:53.400000px;}
.x7_c00093{left:80.700000px;}
.x11_c00093{left:135.000000px;}
.x10_c00093{left:136.050000px;}
.xa_c00093{left:137.700000px;}
.x9_c00093{left:140.100000px;}
.x5_c00093{left:143.850000px;}
.x2_c00093{left:146.100000px;}
.x1_c00093{left:148.200000px;}
.x3_c00093{left:170.100000px;}
.xb_c00093{left:184.650000px;}
.xf_c00093{left:251.100000px;}
.xc_c00093{left:268.050000px;}
.xd_c00093{left:269.400000px;}
.xe_c00093{left:270.450000px;}
.x13_c00093{left:285.526749px;}
.x12_c00093{left:588.000000px;}
@media print{
.v0_c00093{vertical-align:0.000000pt;}
.ls1_c00093{letter-spacing:0.000000pt;}
.ls2_c00093{letter-spacing:2.666667pt;}
.ls0_c00093{letter-spacing:5.600000pt;}
.ws2_c00093{word-spacing:-18.000000pt;}
.ws1_c00093{word-spacing:-15.424000pt;}
.ws0_c00093{word-spacing:-12.210667pt;}
.ws3_c00093{word-spacing:0.000000pt;}
._1_c00093{margin-left:-15.146667pt;}
._1a_c00093{margin-left:-11.616000pt;}
._1e_c00093{margin-left:-10.432000pt;}
._2_c00093{margin-left:-8.320000pt;}
._16_c00093{margin-left:-7.277333pt;}
._8_c00093{margin-left:-6.256000pt;}
._f_c00093{margin-left:-4.970667pt;}
._9_c00093{margin-left:-4.080000pt;}
._c_c00093{margin-left:-2.512000pt;}
._e_c00093{margin-left:-1.352000pt;}
._a_c00093{width:0.906667pt;}
._7_c00093{width:2.085333pt;}
._5_c00093{width:3.082667pt;}
._d_c00093{width:3.976000pt;}
._4_c00093{width:4.896000pt;}
._0_c00093{width:6.400000pt;}
._b_c00093{width:7.424000pt;}
._10_c00093{width:8.509333pt;}
._6_c00093{width:9.429333pt;}
._14_c00093{width:10.960000pt;}
._1f_c00093{width:12.250667pt;}
._15_c00093{width:13.240000pt;}
._13_c00093{width:14.136000pt;}
._19_c00093{width:16.141333pt;}
._22_c00093{width:17.581333pt;}
._17_c00093{width:19.653333pt;}
._20_c00093{width:23.829333pt;}
._21_c00093{width:25.525333pt;}
._1b_c00093{width:30.066667pt;}
._1d_c00093{width:72.800000pt;}
._18_c00093{width:107.525333pt;}
._1c_c00093{width:170.554667pt;}
._3_c00093{width:184.533333pt;}
._12_c00093{width:211.712000pt;}
._11_c00093{width:415.930667pt;}
.fs8_c00093{font-size:42.666667pt;}
.fs3_c00093{font-size:50.666667pt;}
.fs6_c00093{font-size:56.000000pt;}
.fs7_c00093{font-size:58.666667pt;}
.fs5_c00093{font-size:64.000000pt;}
.fs4_c00093{font-size:69.333333pt;}
.fs2_c00093{font-size:72.000000pt;}
.fs1_c00093{font-size:90.666667pt;}
.fs0_c00093{font-size:106.666667pt;}
.y0_c00093{bottom:0.000000pt;}
.y24_c00093{bottom:2.760000pt;}
.y23_c00093{bottom:6.425206pt;}
.y22_c00093{bottom:62.426667pt;}
.y21_c00093{bottom:82.826667pt;}
.y20_c00093{bottom:105.626667pt;}
.y1f_c00093{bottom:127.760000pt;}
.y1e_c00093{bottom:150.693333pt;}
.y1d_c00093{bottom:173.360000pt;}
.y1c_c00093{bottom:194.960000pt;}
.y1b_c00093{bottom:217.226667pt;}
.y1a_c00093{bottom:239.093333pt;}
.y19_c00093{bottom:262.160000pt;}
.y18_c00093{bottom:295.493333pt;}
.y17_c00093{bottom:322.826667pt;}
.y16_c00093{bottom:365.760000pt;}
.y15_c00093{bottom:388.826667pt;}
.y14_c00093{bottom:410.160000pt;}
.y13_c00093{bottom:431.493333pt;}
.y12_c00093{bottom:454.160000pt;}
.y11_c00093{bottom:474.560000pt;}
.y10_c00093{bottom:496.293333pt;}
.yf_c00093{bottom:518.426667pt;}
.ye_c00093{bottom:540.293333pt;}
.yd_c00093{bottom:560.426667pt;}
.yc_c00093{bottom:583.226667pt;}
.yb_c00093{bottom:604.826667pt;}
.ya_c00093{bottom:626.160000pt;}
.y9_c00093{bottom:648.026667pt;}
.y8_c00093{bottom:670.560000pt;}
.y7_c00093{bottom:690.693333pt;}
.y6_c00093{bottom:712.560000pt;}
.y5_c00093{bottom:733.760000pt;}
.y4_c00093{bottom:755.093333pt;}
.y3_c00093{bottom:776.960000pt;}
.y2_c00093{bottom:798.293333pt;}
.y1_c00093{bottom:829.493333pt;}
.h7_c00093{height:11.733399pt;}
.h8_c00093{height:38.937500pt;}
.h3_c00093{height:59.300781pt;}
.h4_c00093{height:64.149740pt;}
.h2_c00093{height:70.664062pt;}
.h6_c00093{height:74.906250pt;}
.h5_c00093{height:87.783854pt;}
.h1_c00093{height:107.500000pt;}
.h0_c00093{height:884.666667pt;}
.w2_c00093{width:93.222667pt;}
.w0_c00093{width:593.266667pt;}
.w1_c00093{width:593.333333pt;}
.x0_c00093{left:0.000000pt;}
.x6_c00093{left:41.466667pt;}
.x8_c00093{left:42.400000pt;}
.x4_c00093{left:47.466667pt;}
.x7_c00093{left:71.733333pt;}
.x11_c00093{left:120.000000pt;}
.x10_c00093{left:120.933333pt;}
.xa_c00093{left:122.400000pt;}
.x9_c00093{left:124.533333pt;}
.x5_c00093{left:127.866667pt;}
.x2_c00093{left:129.866667pt;}
.x1_c00093{left:131.733333pt;}
.x3_c00093{left:151.200000pt;}
.xb_c00093{left:164.133333pt;}
.xf_c00093{left:223.200000pt;}
.xc_c00093{left:238.266667pt;}
.xd_c00093{left:239.466667pt;}
.xe_c00093{left:240.400000pt;}
.x13_c00093{left:253.801554pt;}
.x12_c00093{left:522.666667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e2b09a0af8e3f87379b8d8db.woff2')format("woff");}.ff1_c00094{font-family:ff1_c00094;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00094;src:url('chunks/assets/font_7c3b4a191c5d37cfdefec9c2.woff2')format("woff");}.ff2_c00094{font-family:ff2_c00094;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00094;src:url('chunks/assets/font_48fad2df43156a6e20c1b21f.woff2')format("woff");}.ff3_c00094{font-family:ff3_c00094;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00094;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff4_c00094{font-family:ff4_c00094;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00094{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00094{vertical-align:0.000000px;}
.ls1_c00094{letter-spacing:-3.000000px;}
.ls0_c00094{letter-spacing:0.000000px;}
.sc__c00094{text-shadow:none;}
.sc0_c00094{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00094{-webkit-text-stroke:0px transparent;}
.sc0_c00094{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00094{word-spacing:-17.352000px;}
.ws1_c00094{word-spacing:0.000000px;}
._18_c00094{margin-left:-31.896000px;}
._3_c00094{margin-left:-22.671000px;}
._1b_c00094{margin-left:-18.522000px;}
._14_c00094{margin-left:-14.391000px;}
._1_c00094{margin-left:-10.890000px;}
._1a_c00094{margin-left:-9.216000px;}
._19_c00094{margin-left:-8.019000px;}
._13_c00094{margin-left:-6.858000px;}
._6_c00094{margin-left:-5.544000px;}
._11_c00094{margin-left:-4.500000px;}
._7_c00094{margin-left:-3.465000px;}
._10_c00094{margin-left:-2.295000px;}
._0_c00094{margin-left:-1.188000px;}
._2_c00094{width:1.287000px;}
._c_c00094{width:2.304000px;}
._9_c00094{width:3.366000px;}
._8_c00094{width:4.653000px;}
._a_c00094{width:6.138000px;}
._e_c00094{width:7.209000px;}
._f_c00094{width:8.991000px;}
._12_c00094{width:10.035000px;}
._d_c00094{width:11.133000px;}
._15_c00094{width:12.348000px;}
._5_c00094{width:13.563000px;}
._4_c00094{width:14.652000px;}
._16_c00094{width:77.544000px;}
._b_c00094{width:84.162000px;}
._17_c00094{width:252.138000px;}
._1c_c00094{width:291.573000px;}
.fc2_c00094{color:transparent;}
.fc1_c00094{color:rgb(128,128,128);}
.fc0_c00094{color:rgb(0,0,0);}
.fs4_c00094{font-size:48.000000px;}
.fs3_c00094{font-size:72.000000px;}
.fs2_c00094{font-size:81.000000px;}
.fs0_c00094{font-size:99.000000px;}
.fs1_c00094{font-size:132.000000px;}
.y0_c00094{bottom:0.000000px;}
.y25_c00094{bottom:3.105000px;}
.y24_c00094{bottom:7.228371px;}
.y23_c00094{bottom:79.665000px;}
.y22_c00094{bottom:105.615000px;}
.y21_c00094{bottom:129.615000px;}
.y20_c00094{bottom:154.665000px;}
.y1f_c00094{bottom:179.265000px;}
.y1e_c00094{bottom:203.265000px;}
.y1d_c00094{bottom:227.865000px;}
.y1c_c00094{bottom:252.465000px;}
.y1b_c00094{bottom:276.765000px;}
.y1a_c00094{bottom:301.065000px;}
.y19_c00094{bottom:324.765000px;}
.y18_c00094{bottom:348.765000px;}
.y17_c00094{bottom:372.315000px;}
.y16_c00094{bottom:396.915000px;}
.y15_c00094{bottom:420.615000px;}
.y14_c00094{bottom:444.615000px;}
.y13_c00094{bottom:469.215000px;}
.y12_c00094{bottom:494.415000px;}
.y11_c00094{bottom:519.465000px;}
.y10_c00094{bottom:543.465000px;}
.yf_c00094{bottom:567.765000px;}
.ye_c00094{bottom:592.065000px;}
.yd_c00094{bottom:615.915000px;}
.yc_c00094{bottom:639.915000px;}
.yb_c00094{bottom:663.915000px;}
.ya_c00094{bottom:688.215000px;}
.y9_c00094{bottom:712.215000px;}
.y8_c00094{bottom:736.515000px;}
.y7_c00094{bottom:760.815000px;}
.y6_c00094{bottom:785.415000px;}
.y5_c00094{bottom:809.415000px;}
.y4_c00094{bottom:833.715000px;}
.y3_c00094{bottom:859.065000px;}
.y2_c00094{bottom:882.615000px;}
.y1_c00094{bottom:918.315000px;}
.h6_c00094{height:13.200074px;}
.h7_c00094{height:43.804688px;}
.h3_c00094{height:79.497070px;}
.h5_c00094{height:84.269531px;}
.h4_c00094{height:91.160156px;}
.h2_c00094{height:167.126953px;}
.h0_c00094{height:989.025000px;}
.h1_c00094{height:989.250000px;}
.w1_c00094{width:104.875500px;}
.w0_c00094{width:672.000000px;}
.x0_c00094{left:0.000000px;}
.x2_c00094{left:27.300000px;}
.x3_c00094{left:28.350000px;}
.x4_c00094{left:29.700000px;}
.x5_c00094{left:31.350000px;}
.x6_c00094{left:32.700000px;}
.x7_c00094{left:33.750000px;}
.x8_c00094{left:39.150000px;}
.x1_c00094{left:96.900000px;}
.x9_c00094{left:287.814240px;}
@media print{
.v0_c00094{vertical-align:0.000000pt;}
.ls1_c00094{letter-spacing:-2.666667pt;}
.ls0_c00094{letter-spacing:0.000000pt;}
.ws0_c00094{word-spacing:-15.424000pt;}
.ws1_c00094{word-spacing:0.000000pt;}
._18_c00094{margin-left:-28.352000pt;}
._3_c00094{margin-left:-20.152000pt;}
._1b_c00094{margin-left:-16.464000pt;}
._14_c00094{margin-left:-12.792000pt;}
._1_c00094{margin-left:-9.680000pt;}
._1a_c00094{margin-left:-8.192000pt;}
._19_c00094{margin-left:-7.128000pt;}
._13_c00094{margin-left:-6.096000pt;}
._6_c00094{margin-left:-4.928000pt;}
._11_c00094{margin-left:-4.000000pt;}
._7_c00094{margin-left:-3.080000pt;}
._10_c00094{margin-left:-2.040000pt;}
._0_c00094{margin-left:-1.056000pt;}
._2_c00094{width:1.144000pt;}
._c_c00094{width:2.048000pt;}
._9_c00094{width:2.992000pt;}
._8_c00094{width:4.136000pt;}
._a_c00094{width:5.456000pt;}
._e_c00094{width:6.408000pt;}
._f_c00094{width:7.992000pt;}
._12_c00094{width:8.920000pt;}
._d_c00094{width:9.896000pt;}
._15_c00094{width:10.976000pt;}
._5_c00094{width:12.056000pt;}
._4_c00094{width:13.024000pt;}
._16_c00094{width:68.928000pt;}
._b_c00094{width:74.810667pt;}
._17_c00094{width:224.122667pt;}
._1c_c00094{width:259.176000pt;}
.fs4_c00094{font-size:42.666667pt;}
.fs3_c00094{font-size:64.000000pt;}
.fs2_c00094{font-size:72.000000pt;}
.fs0_c00094{font-size:88.000000pt;}
.fs1_c00094{font-size:117.333333pt;}
.y0_c00094{bottom:0.000000pt;}
.y25_c00094{bottom:2.760000pt;}
.y24_c00094{bottom:6.425219pt;}
.y23_c00094{bottom:70.813333pt;}
.y22_c00094{bottom:93.880000pt;}
.y21_c00094{bottom:115.213333pt;}
.y20_c00094{bottom:137.480000pt;}
.y1f_c00094{bottom:159.346667pt;}
.y1e_c00094{bottom:180.680000pt;}
.y1d_c00094{bottom:202.546667pt;}
.y1c_c00094{bottom:224.413333pt;}
.y1b_c00094{bottom:246.013333pt;}
.y1a_c00094{bottom:267.613333pt;}
.y19_c00094{bottom:288.680000pt;}
.y18_c00094{bottom:310.013333pt;}
.y17_c00094{bottom:330.946667pt;}
.y16_c00094{bottom:352.813333pt;}
.y15_c00094{bottom:373.880000pt;}
.y14_c00094{bottom:395.213333pt;}
.y13_c00094{bottom:417.080000pt;}
.y12_c00094{bottom:439.480000pt;}
.y11_c00094{bottom:461.746667pt;}
.y10_c00094{bottom:483.080000pt;}
.yf_c00094{bottom:504.680000pt;}
.ye_c00094{bottom:526.280000pt;}
.yd_c00094{bottom:547.480000pt;}
.yc_c00094{bottom:568.813333pt;}
.yb_c00094{bottom:590.146667pt;}
.ya_c00094{bottom:611.746667pt;}
.y9_c00094{bottom:633.080000pt;}
.y8_c00094{bottom:654.680000pt;}
.y7_c00094{bottom:676.280000pt;}
.y6_c00094{bottom:698.146667pt;}
.y5_c00094{bottom:719.480000pt;}
.y4_c00094{bottom:741.080000pt;}
.y3_c00094{bottom:763.613333pt;}
.y2_c00094{bottom:784.546667pt;}
.y1_c00094{bottom:816.280000pt;}
.h6_c00094{height:11.733399pt;}
.h7_c00094{height:38.937500pt;}
.h3_c00094{height:70.664062pt;}
.h5_c00094{height:74.906250pt;}
.h4_c00094{height:81.031250pt;}
.h2_c00094{height:148.557292pt;}
.h0_c00094{height:879.133333pt;}
.h1_c00094{height:879.333333pt;}
.w1_c00094{width:93.222667pt;}
.w0_c00094{width:597.333333pt;}
.x0_c00094{left:0.000000pt;}
.x2_c00094{left:24.266667pt;}
.x3_c00094{left:25.200000pt;}
.x4_c00094{left:26.400000pt;}
.x5_c00094{left:27.866667pt;}
.x6_c00094{left:29.066667pt;}
.x7_c00094{left:30.000000pt;}
.x8_c00094{left:34.800000pt;}
.x1_c00094{left:86.133333pt;}
.x9_c00094{left:255.834880pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d73893d8b0eca42350c6353f.woff2')format("woff");}.ff1_c00095{font-family:ff1_c00095;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00095;src:url('chunks/assets/font_c59772838543b1b4cd4c0e52.woff2')format("woff");}.ff2_c00095{font-family:ff2_c00095;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00095;src:url('chunks/assets/font_b860db59ce98b671fb014f18.woff2')format("woff");}.ff3_c00095{font-family:ff3_c00095;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00095;src:url('chunks/assets/font_edb470b7199779ccc4633cd3.woff2')format("woff");}.ff4_c00095{font-family:ff4_c00095;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00095;src:url('chunks/assets/font_e7d274e30f2bddf4c062e032.woff2')format("woff");}.ff5_c00095{font-family:ff5_c00095;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00095;src:url('chunks/assets/font_e1767c7a8c1a52c9ba3b024b.woff2')format("woff");}.ff6_c00095{font-family:ff6_c00095;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00095;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff7_c00095{font-family:ff7_c00095;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00095;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff8_c00095{font-family:ff8_c00095;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00095{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00095{vertical-align:0.000000px;}
.ls4_c00095{letter-spacing:-9.000000px;}
.ls3_c00095{letter-spacing:0.000000px;}
.ls0_c00095{letter-spacing:6.600000px;}
.ls2_c00095{letter-spacing:8.400000px;}
.ls1_c00095{letter-spacing:12.840000px;}
.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:-20.250000px;}
.ws0_c00095{word-spacing:-17.352000px;}
.ws2_c00095{word-spacing:0.000000px;}
._11_c00095{margin-left:-29.454000px;}
._19_c00095{margin-left:-23.571000px;}
._13_c00095{margin-left:-22.176000px;}
._10_c00095{margin-left:-14.382000px;}
._7_c00095{margin-left:-10.506000px;}
._6_c00095{margin-left:-7.650000px;}
._1f_c00095{margin-left:-6.582000px;}
._9_c00095{margin-left:-5.304000px;}
._a_c00095{margin-left:-4.182000px;}
._8_c00095{margin-left:-2.550000px;}
._f_c00095{margin-left:-1.278000px;}
._15_c00095{width:1.038000px;}
._2_c00095{width:2.142000px;}
._3_c00095{width:3.264000px;}
._d_c00095{width:4.311000px;}
._4_c00095{width:5.508000px;}
._c_c00095{width:6.981000px;}
._b_c00095{width:8.100000px;}
._5_c00095{width:9.792000px;}
._1e_c00095{width:10.836000px;}
._16_c00095{width:11.988000px;}
._e_c00095{width:13.110000px;}
._17_c00095{width:15.000000px;}
._1_c00095{width:17.400000px;}
._12_c00095{width:19.146000px;}
._20_c00095{width:20.982000px;}
._21_c00095{width:22.422000px;}
._1b_c00095{width:27.135000px;}
._1d_c00095{width:34.407000px;}
._1c_c00095{width:35.751000px;}
._14_c00095{width:142.533000px;}
._0_c00095{width:180.360000px;}
._22_c00095{width:190.113000px;}
._1a_c00095{width:309.096000px;}
._18_c00095{width:357.696000px;}
.fc2_c00095{color:transparent;}
.fc1_c00095{color:rgb(128,128,128);}
.fc0_c00095{color:rgb(0,0,0);}
.fs5_c00095{font-size:48.000000px;}
.fs4_c00095{font-size:66.000000px;}
.fs3_c00095{font-size:72.000000px;}
.fs2_c00095{font-size:81.000000px;}
.fs1_c00095{font-size:102.000000px;}
.fs0_c00095{font-size:120.000000px;}
.y0_c00095{bottom:0.000000px;}
.y26_c00095{bottom:3.105000px;}
.y25_c00095{bottom:7.228369px;}
.y24_c00095{bottom:62.070000px;}
.y23_c00095{bottom:82.020000px;}
.y22_c00095{bottom:108.270000px;}
.y21_c00095{bottom:131.670000px;}
.y20_c00095{bottom:157.170000px;}
.y1f_c00095{bottom:181.170000px;}
.y1e_c00095{bottom:205.920000px;}
.y1d_c00095{bottom:231.570000px;}
.y1c_c00095{bottom:256.770000px;}
.y1b_c00095{bottom:279.720000px;}
.y1a_c00095{bottom:303.720000px;}
.y19_c00095{bottom:328.020000px;}
.y18_c00095{bottom:352.920000px;}
.y17_c00095{bottom:378.720000px;}
.y16_c00095{bottom:401.670000px;}
.y15_c00095{bottom:425.520000px;}
.y14_c00095{bottom:449.520000px;}
.y13_c00095{bottom:473.820000px;}
.y12_c00095{bottom:498.420000px;}
.y11_c00095{bottom:522.120000px;}
.y10_c00095{bottom:546.420000px;}
.yf_c00095{bottom:570.420000px;}
.ye_c00095{bottom:594.720000px;}
.yd_c00095{bottom:619.020000px;}
.yc_c00095{bottom:643.320000px;}
.yb_c00095{bottom:668.220000px;}
.ya_c00095{bottom:692.220000px;}
.y9_c00095{bottom:716.220000px;}
.y8_c00095{bottom:740.520000px;}
.y7_c00095{bottom:765.720000px;}
.y6_c00095{bottom:790.020000px;}
.y5_c00095{bottom:814.620000px;}
.y4_c00095{bottom:837.570000px;}
.y3_c00095{bottom:861.570000px;}
.y2_c00095{bottom:885.870000px;}
.y1_c00095{bottom:921.420000px;}
.h7_c00095{height:13.200073px;}
.h8_c00095{height:43.804688px;}
.h3_c00095{height:79.497070px;}
.h5_c00095{height:84.269531px;}
.h6_c00095{height:91.160156px;}
.h4_c00095{height:104.839927px;}
.h2_c00095{height:120.937500px;}
.h1_c00095{height:986.250000px;}
.h0_c00095{height:986.550000px;}
.w1_c00095{width:104.875500px;}
.w0_c00095{width:661.500000px;}
.x0_c00095{left:0.000000px;}
.xf_c00095{left:52.950000px;}
.x8_c00095{left:62.850000px;}
.x6_c00095{left:66.600000px;}
.x5_c00095{left:67.950000px;}
.xd_c00095{left:141.450000px;}
.x10_c00095{left:143.400000px;}
.xe_c00095{left:144.450000px;}
.xc_c00095{left:147.150000px;}
.xb_c00095{left:148.500000px;}
.xa_c00095{left:149.550000px;}
.x9_c00095{left:151.200000px;}
.x7_c00095{left:152.550000px;}
.x4_c00095{left:158.250000px;}
.x3_c00095{left:159.600000px;}
.x2_c00095{left:160.950000px;}
.x1_c00095{left:162.300000px;}
.x12_c00095{left:282.564240px;}
.x11_c00095{left:596.700000px;}
@media print{
.v0_c00095{vertical-align:0.000000pt;}
.ls4_c00095{letter-spacing:-8.000000pt;}
.ls3_c00095{letter-spacing:0.000000pt;}
.ls0_c00095{letter-spacing:5.866667pt;}
.ls2_c00095{letter-spacing:7.466667pt;}
.ls1_c00095{letter-spacing:11.413333pt;}
.ws1_c00095{word-spacing:-18.000000pt;}
.ws0_c00095{word-spacing:-15.424000pt;}
.ws2_c00095{word-spacing:0.000000pt;}
._11_c00095{margin-left:-26.181333pt;}
._19_c00095{margin-left:-20.952000pt;}
._13_c00095{margin-left:-19.712000pt;}
._10_c00095{margin-left:-12.784000pt;}
._7_c00095{margin-left:-9.338667pt;}
._6_c00095{margin-left:-6.800000pt;}
._1f_c00095{margin-left:-5.850667pt;}
._9_c00095{margin-left:-4.714667pt;}
._a_c00095{margin-left:-3.717333pt;}
._8_c00095{margin-left:-2.266667pt;}
._f_c00095{margin-left:-1.136000pt;}
._15_c00095{width:0.922667pt;}
._2_c00095{width:1.904000pt;}
._3_c00095{width:2.901333pt;}
._d_c00095{width:3.832000pt;}
._4_c00095{width:4.896000pt;}
._c_c00095{width:6.205333pt;}
._b_c00095{width:7.200000pt;}
._5_c00095{width:8.704000pt;}
._1e_c00095{width:9.632000pt;}
._16_c00095{width:10.656000pt;}
._e_c00095{width:11.653333pt;}
._17_c00095{width:13.333333pt;}
._1_c00095{width:15.466667pt;}
._12_c00095{width:17.018667pt;}
._20_c00095{width:18.650667pt;}
._21_c00095{width:19.930667pt;}
._1b_c00095{width:24.120000pt;}
._1d_c00095{width:30.584000pt;}
._1c_c00095{width:31.778667pt;}
._14_c00095{width:126.696000pt;}
._0_c00095{width:160.320000pt;}
._22_c00095{width:168.989333pt;}
._1a_c00095{width:274.752000pt;}
._18_c00095{width:317.952000pt;}
.fs5_c00095{font-size:42.666667pt;}
.fs4_c00095{font-size:58.666667pt;}
.fs3_c00095{font-size:64.000000pt;}
.fs2_c00095{font-size:72.000000pt;}
.fs1_c00095{font-size:90.666667pt;}
.fs0_c00095{font-size:106.666667pt;}
.y0_c00095{bottom:0.000000pt;}
.y26_c00095{bottom:2.760000pt;}
.y25_c00095{bottom:6.425217pt;}
.y24_c00095{bottom:55.173333pt;}
.y23_c00095{bottom:72.906667pt;}
.y22_c00095{bottom:96.240000pt;}
.y21_c00095{bottom:117.040000pt;}
.y20_c00095{bottom:139.706667pt;}
.y1f_c00095{bottom:161.040000pt;}
.y1e_c00095{bottom:183.040000pt;}
.y1d_c00095{bottom:205.840000pt;}
.y1c_c00095{bottom:228.240000pt;}
.y1b_c00095{bottom:248.640000pt;}
.y1a_c00095{bottom:269.973333pt;}
.y19_c00095{bottom:291.573333pt;}
.y18_c00095{bottom:313.706667pt;}
.y17_c00095{bottom:336.640000pt;}
.y16_c00095{bottom:357.040000pt;}
.y15_c00095{bottom:378.240000pt;}
.y14_c00095{bottom:399.573333pt;}
.y13_c00095{bottom:421.173333pt;}
.y12_c00095{bottom:443.040000pt;}
.y11_c00095{bottom:464.106667pt;}
.y10_c00095{bottom:485.706667pt;}
.yf_c00095{bottom:507.040000pt;}
.ye_c00095{bottom:528.640000pt;}
.yd_c00095{bottom:550.240000pt;}
.yc_c00095{bottom:571.840000pt;}
.yb_c00095{bottom:593.973333pt;}
.ya_c00095{bottom:615.306667pt;}
.y9_c00095{bottom:636.640000pt;}
.y8_c00095{bottom:658.240000pt;}
.y7_c00095{bottom:680.640000pt;}
.y6_c00095{bottom:702.240000pt;}
.y5_c00095{bottom:724.106667pt;}
.y4_c00095{bottom:744.506667pt;}
.y3_c00095{bottom:765.840000pt;}
.y2_c00095{bottom:787.440000pt;}
.y1_c00095{bottom:819.040000pt;}
.h7_c00095{height:11.733399pt;}
.h8_c00095{height:38.937500pt;}
.h3_c00095{height:70.664062pt;}
.h5_c00095{height:74.906250pt;}
.h6_c00095{height:81.031250pt;}
.h4_c00095{height:93.191046pt;}
.h2_c00095{height:107.500000pt;}
.h1_c00095{height:876.666667pt;}
.h0_c00095{height:876.933333pt;}
.w1_c00095{width:93.222667pt;}
.w0_c00095{width:588.000000pt;}
.x0_c00095{left:0.000000pt;}
.xf_c00095{left:47.066667pt;}
.x8_c00095{left:55.866667pt;}
.x6_c00095{left:59.200000pt;}
.x5_c00095{left:60.400000pt;}
.xd_c00095{left:125.733333pt;}
.x10_c00095{left:127.466667pt;}
.xe_c00095{left:128.400000pt;}
.xc_c00095{left:130.800000pt;}
.xb_c00095{left:132.000000pt;}
.xa_c00095{left:132.933333pt;}
.x9_c00095{left:134.400000pt;}
.x7_c00095{left:135.600000pt;}
.x4_c00095{left:140.666667pt;}
.x3_c00095{left:141.866667pt;}
.x2_c00095{left:143.066667pt;}
.x1_c00095{left:144.266667pt;}
.x12_c00095{left:251.168213pt;}
.x11_c00095{left:530.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_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_796cbd109484d6914f528019.woff2')format("woff");}.ff1_c00096{font-family:ff1_c00096;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00096;src:url('chunks/assets/font_83baea47dd90d7e4dc58b78b.woff2')format("woff");}.ff2_c00096{font-family:ff2_c00096;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00096;src:url('chunks/assets/font_766cab31e6afdb51fd0308d0.woff2')format("woff");}.ff3_c00096{font-family:ff3_c00096;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00096;src:url('chunks/assets/font_3fa6295fc36471868f2d1b8e.woff2')format("woff");}.ff4_c00096{font-family:ff4_c00096;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00096;src:url('chunks/assets/font_233b8a9ff6723a8434fda829.woff2')format("woff");}.ff5_c00096{font-family:ff5_c00096;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00096;src:url('chunks/assets/font_cedb99fd5aa3ada53b7541a3.woff2')format("woff");}.ff6_c00096{font-family:ff6_c00096;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00096;src:url('chunks/assets/font_53adf7b17146c3c9cc543b18.woff2')format("woff");}.ff7_c00096{font-family:ff7_c00096;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00096;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff8_c00096{font-family:ff8_c00096;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00096{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00096{vertical-align:-15.000000px;}
.v0_c00096{vertical-align:0.000000px;}
.v1_c00096{vertical-align:3.000000px;}
.ls4_c00096{letter-spacing:0.000000px;}
.ls0_c00096{letter-spacing:12.900000px;}
.ls3_c00096{letter-spacing:19.104000px;}
.ls1_c00096{letter-spacing:25.200000px;}
.ls2_c00096{letter-spacing:48.420000px;}
.sc__c00096{text-shadow:none;}
.sc0_c00096{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00096{-webkit-text-stroke:0px transparent;}
.sc0_c00096{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00096{word-spacing:-18.750000px;}
.ws0_c00096{word-spacing:-17.352000px;}
.ws2_c00096{word-spacing:0.000000px;}
._12_c00096{margin-left:-20.898000px;}
._9_c00096{margin-left:-19.380000px;}
._7_c00096{margin-left:-15.912000px;}
._18_c00096{margin-left:-14.904000px;}
._19_c00096{margin-left:-13.560000px;}
._15_c00096{margin-left:-10.884000px;}
._16_c00096{margin-left:-9.828000px;}
._3_c00096{margin-left:-8.568000px;}
._4_c00096{margin-left:-6.528000px;}
._c_c00096{margin-left:-5.064000px;}
._b_c00096{margin-left:-3.078000px;}
._d_c00096{margin-left:-1.161000px;}
._6_c00096{width:1.020000px;}
._5_c00096{width:2.346000px;}
._2_c00096{width:3.570000px;}
._1_c00096{width:5.100000px;}
._0_c00096{width:6.630000px;}
._8_c00096{width:8.160000px;}
._14_c00096{width:9.264000px;}
._e_c00096{width:10.824000px;}
._f_c00096{width:12.645000px;}
._10_c00096{width:13.770000px;}
._11_c00096{width:16.647000px;}
._1f_c00096{width:22.449000px;}
._1a_c00096{width:26.952000px;}
._1d_c00096{width:30.696000px;}
._1b_c00096{width:33.525000px;}
._13_c00096{width:38.016000px;}
._17_c00096{width:67.626000px;}
._1e_c00096{width:117.618000px;}
._a_c00096{width:163.512000px;}
._1c_c00096{width:281.136000px;}
._20_c00096{width:290.424000px;}
.fc2_c00096{color:transparent;}
.fc1_c00096{color:rgb(128,128,128);}
.fc0_c00096{color:rgb(0,0,0);}
.fs7_c00096{font-size:48.000000px;}
.fs5_c00096{font-size:60.000000px;}
.fs3_c00096{font-size:72.000000px;}
.fs6_c00096{font-size:75.000000px;}
.fs2_c00096{font-size:81.000000px;}
.fs4_c00096{font-size:87.000000px;}
.fs0_c00096{font-size:102.000000px;}
.fs1_c00096{font-size:120.000000px;}
.y0_c00096{bottom:0.000000px;}
.y24_c00096{bottom:3.105000px;}
.y23_c00096{bottom:7.228357px;}
.y22_c00096{bottom:60.480000px;}
.y21_c00096{bottom:83.430000px;}
.y20_c00096{bottom:108.330000px;}
.y1f_c00096{bottom:132.930000px;}
.y1e_c00096{bottom:156.630000px;}
.y1d_c00096{bottom:180.630000px;}
.y1c_c00096{bottom:205.230000px;}
.y1b_c00096{bottom:229.830000px;}
.y1a_c00096{bottom:254.130000px;}
.y19_c00096{bottom:282.180000px;}
.y18_c00096{bottom:324.780000px;}
.y17_c00096{bottom:372.930000px;}
.y16_c00096{bottom:397.230000px;}
.y15_c00096{bottom:420.930000px;}
.y14_c00096{bottom:444.930000px;}
.y13_c00096{bottom:469.080000px;}
.y12_c00096{bottom:493.080000px;}
.y11_c00096{bottom:516.030000px;}
.y10_c00096{bottom:540.780000px;}
.yf_c00096{bottom:564.030000px;}
.ye_c00096{bottom:588.030000px;}
.yd_c00096{bottom:611.580000px;}
.yc_c00096{bottom:635.880000px;}
.yb_c00096{bottom:659.430000px;}
.ya_c00096{bottom:683.430000px;}
.y9_c00096{bottom:707.430000px;}
.y8_c00096{bottom:731.730000px;}
.y7_c00096{bottom:755.730000px;}
.y6_c00096{bottom:780.030000px;}
.y5_c00096{bottom:804.930000px;}
.y4_c00096{bottom:828.630000px;}
.y3_c00096{bottom:852.480000px;}
.y2_c00096{bottom:876.930000px;}
.y1_c00096{bottom:909.930000px;}
.h9_c00096{height:13.200074px;}
.ha_c00096{height:43.804688px;}
.h6_c00096{height:73.571777px;}
.h7_c00096{height:75.966797px;}
.h2_c00096{height:79.497070px;}
.h5_c00096{height:82.497070px;}
.h3_c00096{height:84.269531px;}
.h8_c00096{height:91.160156px;}
.h4_c00096{height:91.176000px;}
.h1_c00096{height:120.937500px;}
.h0_c00096{height:968.250000px;}
.w1_c00096{width:104.875500px;}
.w0_c00096{width:657.750000px;}
.x0_c00096{left:0.000000px;}
.x3_c00096{left:30.000000px;}
.x2_c00096{left:31.050000px;}
.x6_c00096{left:32.100000px;}
.xc_c00096{left:33.150000px;}
.x4_c00096{left:34.500000px;}
.x5_c00096{left:35.850000px;}
.x9_c00096{left:37.800000px;}
.xb_c00096{left:44.850000px;}
.x7_c00096{left:46.200000px;}
.xa_c00096{left:59.700000px;}
.x1_c00096{left:90.000000px;}
.x8_c00096{left:100.200000px;}
.xe_c00096{left:280.689240px;}
.xd_c00096{left:364.800000px;}
@media print{
.v2_c00096{vertical-align:-13.333333pt;}
.v0_c00096{vertical-align:0.000000pt;}
.v1_c00096{vertical-align:2.666667pt;}
.ls4_c00096{letter-spacing:0.000000pt;}
.ls0_c00096{letter-spacing:11.466667pt;}
.ls3_c00096{letter-spacing:16.981333pt;}
.ls1_c00096{letter-spacing:22.400000pt;}
.ls2_c00096{letter-spacing:43.040000pt;}
.ws1_c00096{word-spacing:-16.666667pt;}
.ws0_c00096{word-spacing:-15.424000pt;}
.ws2_c00096{word-spacing:0.000000pt;}
._12_c00096{margin-left:-18.576000pt;}
._9_c00096{margin-left:-17.226667pt;}
._7_c00096{margin-left:-14.144000pt;}
._18_c00096{margin-left:-13.248000pt;}
._19_c00096{margin-left:-12.053333pt;}
._15_c00096{margin-left:-9.674667pt;}
._16_c00096{margin-left:-8.736000pt;}
._3_c00096{margin-left:-7.616000pt;}
._4_c00096{margin-left:-5.802667pt;}
._c_c00096{margin-left:-4.501333pt;}
._b_c00096{margin-left:-2.736000pt;}
._d_c00096{margin-left:-1.032000pt;}
._6_c00096{width:0.906667pt;}
._5_c00096{width:2.085333pt;}
._2_c00096{width:3.173333pt;}
._1_c00096{width:4.533333pt;}
._0_c00096{width:5.893333pt;}
._8_c00096{width:7.253333pt;}
._14_c00096{width:8.234667pt;}
._e_c00096{width:9.621333pt;}
._f_c00096{width:11.240000pt;}
._10_c00096{width:12.240000pt;}
._11_c00096{width:14.797333pt;}
._1f_c00096{width:19.954667pt;}
._1a_c00096{width:23.957333pt;}
._1d_c00096{width:27.285333pt;}
._1b_c00096{width:29.800000pt;}
._13_c00096{width:33.792000pt;}
._17_c00096{width:60.112000pt;}
._1e_c00096{width:104.549333pt;}
._a_c00096{width:145.344000pt;}
._1c_c00096{width:249.898667pt;}
._20_c00096{width:258.154667pt;}
.fs7_c00096{font-size:42.666667pt;}
.fs5_c00096{font-size:53.333333pt;}
.fs3_c00096{font-size:64.000000pt;}
.fs6_c00096{font-size:66.666667pt;}
.fs2_c00096{font-size:72.000000pt;}
.fs4_c00096{font-size:77.333333pt;}
.fs0_c00096{font-size:90.666667pt;}
.fs1_c00096{font-size:106.666667pt;}
.y0_c00096{bottom:0.000000pt;}
.y24_c00096{bottom:2.760000pt;}
.y23_c00096{bottom:6.425206pt;}
.y22_c00096{bottom:53.760000pt;}
.y21_c00096{bottom:74.160000pt;}
.y20_c00096{bottom:96.293333pt;}
.y1f_c00096{bottom:118.160000pt;}
.y1e_c00096{bottom:139.226667pt;}
.y1d_c00096{bottom:160.560000pt;}
.y1c_c00096{bottom:182.426667pt;}
.y1b_c00096{bottom:204.293333pt;}
.y1a_c00096{bottom:225.893333pt;}
.y19_c00096{bottom:250.826667pt;}
.y18_c00096{bottom:288.693333pt;}
.y17_c00096{bottom:331.493333pt;}
.y16_c00096{bottom:353.093333pt;}
.y15_c00096{bottom:374.160000pt;}
.y14_c00096{bottom:395.493333pt;}
.y13_c00096{bottom:416.960000pt;}
.y12_c00096{bottom:438.293333pt;}
.y11_c00096{bottom:458.693333pt;}
.y10_c00096{bottom:480.693333pt;}
.yf_c00096{bottom:501.360000pt;}
.ye_c00096{bottom:522.693333pt;}
.yd_c00096{bottom:543.626667pt;}
.yc_c00096{bottom:565.226667pt;}
.yb_c00096{bottom:586.160000pt;}
.ya_c00096{bottom:607.493333pt;}
.y9_c00096{bottom:628.826667pt;}
.y8_c00096{bottom:650.426667pt;}
.y7_c00096{bottom:671.760000pt;}
.y6_c00096{bottom:693.360000pt;}
.y5_c00096{bottom:715.493333pt;}
.y4_c00096{bottom:736.560000pt;}
.y3_c00096{bottom:757.760000pt;}
.y2_c00096{bottom:779.493333pt;}
.y1_c00096{bottom:808.826667pt;}
.h9_c00096{height:11.733399pt;}
.ha_c00096{height:38.937500pt;}
.h6_c00096{height:65.397135pt;}
.h7_c00096{height:67.526042pt;}
.h2_c00096{height:70.664062pt;}
.h5_c00096{height:73.330729pt;}
.h3_c00096{height:74.906250pt;}
.h8_c00096{height:81.031250pt;}
.h4_c00096{height:81.045333pt;}
.h1_c00096{height:107.500000pt;}
.h0_c00096{height:860.666667pt;}
.w1_c00096{width:93.222667pt;}
.w0_c00096{width:584.666667pt;}
.x0_c00096{left:0.000000pt;}
.x3_c00096{left:26.666667pt;}
.x2_c00096{left:27.600000pt;}
.x6_c00096{left:28.533333pt;}
.xc_c00096{left:29.466667pt;}
.x4_c00096{left:30.666667pt;}
.x5_c00096{left:31.866667pt;}
.x9_c00096{left:33.600000pt;}
.xb_c00096{left:39.866667pt;}
.x7_c00096{left:41.066667pt;}
.xa_c00096{left:53.066667pt;}
.x1_c00096{left:80.000000pt;}
.x8_c00096{left:89.066667pt;}
.xe_c00096{left:249.501546pt;}
.xd_c00096{left:324.266667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_76b0288eaa8ad1c63e4614ca.woff2')format("woff");}.ff1_c00097{font-family:ff1_c00097;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00097;src:url('chunks/assets/font_7fc6af35adf251fc5426121e.woff2')format("woff");}.ff2_c00097{font-family:ff2_c00097;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00097;src:url('chunks/assets/font_ee5de768ec675a6d0d86eb9a.woff2')format("woff");}.ff3_c00097{font-family:ff3_c00097;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00097;src:url('chunks/assets/font_1946c3670c3fa71091e6d717.woff2')format("woff");}.ff4_c00097{font-family:ff4_c00097;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00097;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c00097{font-family:ff5_c00097;line-height:1.219238;font-style: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;}
.ls1_c00097{letter-spacing:0.000000px;}
.ls0_c00097{letter-spacing:3.216000px;}
.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;}
}
.ws2_c00097{word-spacing:-67.686000px;}
.ws1_c00097{word-spacing:-18.798000px;}
.ws0_c00097{word-spacing:-17.352000px;}
.ws3_c00097{word-spacing:0.000000px;}
._24_c00097{margin-left:-40.176000px;}
._18_c00097{margin-left:-25.839000px;}
._17_c00097{margin-left:-24.705000px;}
._1b_c00097{margin-left:-20.817000px;}
._10_c00097{margin-left:-18.549000px;}
._11_c00097{margin-left:-17.091000px;}
._0_c00097{margin-left:-15.120000px;}
._26_c00097{margin-left:-13.041000px;}
._13_c00097{margin-left:-11.259000px;}
._2a_c00097{margin-left:-10.119000px;}
._19_c00097{margin-left:-8.910000px;}
._15_c00097{margin-left:-7.695000px;}
._1_c00097{margin-left:-6.480000px;}
._9_c00097{margin-left:-5.346000px;}
._6_c00097{margin-left:-3.807000px;}
._5_c00097{margin-left:-2.754000px;}
._8_c00097{margin-left:-1.539000px;}
._a_c00097{width:1.377000px;}
._2_c00097{width:2.430000px;}
._3_c00097{width:3.645000px;}
._1e_c00097{width:4.656000px;}
._4_c00097{width:5.670000px;}
._c_c00097{width:6.885000px;}
._7_c00097{width:8.100000px;}
._d_c00097{width:9.888000px;}
._1c_c00097{width:11.421000px;}
._b_c00097{width:12.555000px;}
._e_c00097{width:14.574000px;}
._1f_c00097{width:15.720000px;}
._f_c00097{width:18.225000px;}
._14_c00097{width:33.126000px;}
._12_c00097{width:35.793000px;}
._28_c00097{width:37.233000px;}
._20_c00097{width:46.494000px;}
._1d_c00097{width:51.921000px;}
._27_c00097{width:71.523000px;}
._29_c00097{width:106.029000px;}
._21_c00097{width:141.582000px;}
._25_c00097{width:232.308000px;}
._16_c00097{width:280.017000px;}
._1a_c00097{width:297.432000px;}
._22_c00097{width:394.449000px;}
._23_c00097{width:396.495000px;}
.fc2_c00097{color:transparent;}
.fc1_c00097{color:rgb(128,128,128);}
.fc0_c00097{color:rgb(0,0,0);}
.fs4_c00097{font-size:48.000000px;}
.fs0_c00097{font-size:72.000000px;}
.fs2_c00097{font-size:78.000000px;}
.fs1_c00097{font-size:81.000000px;}
.fs3_c00097{font-size:87.000000px;}
.y0_c00097{bottom:0.000000px;}
.y25_c00097{bottom:3.105000px;}
.y24_c00097{bottom:7.228357px;}
.y23_c00097{bottom:72.180000px;}
.y22_c00097{bottom:96.180000px;}
.y21_c00097{bottom:120.930000px;}
.y20_c00097{bottom:146.430000px;}
.y1f_c00097{bottom:170.880000px;}
.y1e_c00097{bottom:195.030000px;}
.y1d_c00097{bottom:220.080000px;}
.y1c_c00097{bottom:243.330000px;}
.y1b_c00097{bottom:268.680000px;}
.y1a_c00097{bottom:293.280000px;}
.y19_c00097{bottom:316.980000px;}
.y18_c00097{bottom:339.630000px;}
.y17_c00097{bottom:367.230000px;}
.y16_c00097{bottom:390.780000px;}
.y15_c00097{bottom:414.480000px;}
.y14_c00097{bottom:438.480000px;}
.y13_c00097{bottom:462.780000px;}
.y12_c00097{bottom:486.780000px;}
.y11_c00097{bottom:510.630000px;}
.y10_c00097{bottom:534.630000px;}
.yf_c00097{bottom:558.630000px;}
.ye_c00097{bottom:584.880000px;}
.yd_c00097{bottom:606.780000px;}
.yc_c00097{bottom:631.080000px;}
.yb_c00097{bottom:655.530000px;}
.ya_c00097{bottom:679.380000px;}
.y9_c00097{bottom:703.380000px;}
.y8_c00097{bottom:727.380000px;}
.y7_c00097{bottom:751.380000px;}
.y6_c00097{bottom:775.680000px;}
.y5_c00097{bottom:799.530000px;}
.y4_c00097{bottom:823.530000px;}
.y3_c00097{bottom:847.830000px;}
.y2_c00097{bottom:871.380000px;}
.y1_c00097{bottom:895.680000px;}
.h5_c00097{height:13.200074px;}
.h6_c00097{height:43.804688px;}
.h2_c00097{height:79.497070px;}
.h1_c00097{height:84.269531px;}
.h4_c00097{height:91.176000px;}
.h3_c00097{height:98.756836px;}
.h0_c00097{height:995.250000px;}
.w2_c00097{width:104.875500px;}
.w0_c00097{width:667.425000px;}
.w1_c00097{width:667.500000px;}
.x0_c00097{left:0.000000px;}
.x5_c00097{left:54.000000px;}
.x6_c00097{left:55.950000px;}
.x4_c00097{left:57.300000px;}
.x8_c00097{left:82.350000px;}
.xa_c00097{left:96.900000px;}
.x7_c00097{left:123.450000px;}
.x9_c00097{left:124.800000px;}
.xb_c00097{left:148.200000px;}
.x1_c00097{left:149.550000px;}
.x2_c00097{left:150.750000px;}
.x3_c00097{left:152.550000px;}
.xd_c00097{left:285.526749px;}
.xc_c00097{left:582.450000px;}
@media print{
.v0_c00097{vertical-align:0.000000pt;}
.ls1_c00097{letter-spacing:0.000000pt;}
.ls0_c00097{letter-spacing:2.858667pt;}
.ws2_c00097{word-spacing:-60.165333pt;}
.ws1_c00097{word-spacing:-16.709333pt;}
.ws0_c00097{word-spacing:-15.424000pt;}
.ws3_c00097{word-spacing:0.000000pt;}
._24_c00097{margin-left:-35.712000pt;}
._18_c00097{margin-left:-22.968000pt;}
._17_c00097{margin-left:-21.960000pt;}
._1b_c00097{margin-left:-18.504000pt;}
._10_c00097{margin-left:-16.488000pt;}
._11_c00097{margin-left:-15.192000pt;}
._0_c00097{margin-left:-13.440000pt;}
._26_c00097{margin-left:-11.592000pt;}
._13_c00097{margin-left:-10.008000pt;}
._2a_c00097{margin-left:-8.994667pt;}
._19_c00097{margin-left:-7.920000pt;}
._15_c00097{margin-left:-6.840000pt;}
._1_c00097{margin-left:-5.760000pt;}
._9_c00097{margin-left:-4.752000pt;}
._6_c00097{margin-left:-3.384000pt;}
._5_c00097{margin-left:-2.448000pt;}
._8_c00097{margin-left:-1.368000pt;}
._a_c00097{width:1.224000pt;}
._2_c00097{width:2.160000pt;}
._3_c00097{width:3.240000pt;}
._1e_c00097{width:4.138667pt;}
._4_c00097{width:5.040000pt;}
._c_c00097{width:6.120000pt;}
._7_c00097{width:7.200000pt;}
._d_c00097{width:8.789333pt;}
._1c_c00097{width:10.152000pt;}
._b_c00097{width:11.160000pt;}
._e_c00097{width:12.954667pt;}
._1f_c00097{width:13.973333pt;}
._f_c00097{width:16.200000pt;}
._14_c00097{width:29.445333pt;}
._12_c00097{width:31.816000pt;}
._28_c00097{width:33.096000pt;}
._20_c00097{width:41.328000pt;}
._1d_c00097{width:46.152000pt;}
._27_c00097{width:63.576000pt;}
._29_c00097{width:94.248000pt;}
._21_c00097{width:125.850667pt;}
._25_c00097{width:206.496000pt;}
._16_c00097{width:248.904000pt;}
._1a_c00097{width:264.384000pt;}
._22_c00097{width:350.621333pt;}
._23_c00097{width:352.440000pt;}
.fs4_c00097{font-size:42.666667pt;}
.fs0_c00097{font-size:64.000000pt;}
.fs2_c00097{font-size:69.333333pt;}
.fs1_c00097{font-size:72.000000pt;}
.fs3_c00097{font-size:77.333333pt;}
.y0_c00097{bottom:0.000000pt;}
.y25_c00097{bottom:2.760000pt;}
.y24_c00097{bottom:6.425206pt;}
.y23_c00097{bottom:64.160000pt;}
.y22_c00097{bottom:85.493333pt;}
.y21_c00097{bottom:107.493333pt;}
.y20_c00097{bottom:130.160000pt;}
.y1f_c00097{bottom:151.893333pt;}
.y1e_c00097{bottom:173.360000pt;}
.y1d_c00097{bottom:195.626667pt;}
.y1c_c00097{bottom:216.293333pt;}
.y1b_c00097{bottom:238.826667pt;}
.y1a_c00097{bottom:260.693333pt;}
.y19_c00097{bottom:281.760000pt;}
.y18_c00097{bottom:301.893333pt;}
.y17_c00097{bottom:326.426667pt;}
.y16_c00097{bottom:347.360000pt;}
.y15_c00097{bottom:368.426667pt;}
.y14_c00097{bottom:389.760000pt;}
.y13_c00097{bottom:411.360000pt;}
.y12_c00097{bottom:432.693333pt;}
.y11_c00097{bottom:453.893333pt;}
.y10_c00097{bottom:475.226667pt;}
.yf_c00097{bottom:496.560000pt;}
.ye_c00097{bottom:519.893333pt;}
.yd_c00097{bottom:539.360000pt;}
.yc_c00097{bottom:560.960000pt;}
.yb_c00097{bottom:582.693333pt;}
.ya_c00097{bottom:603.893333pt;}
.y9_c00097{bottom:625.226667pt;}
.y8_c00097{bottom:646.560000pt;}
.y7_c00097{bottom:667.893333pt;}
.y6_c00097{bottom:689.493333pt;}
.y5_c00097{bottom:710.693333pt;}
.y4_c00097{bottom:732.026667pt;}
.y3_c00097{bottom:753.626667pt;}
.y2_c00097{bottom:774.560000pt;}
.y1_c00097{bottom:796.160000pt;}
.h5_c00097{height:11.733399pt;}
.h6_c00097{height:38.937500pt;}
.h2_c00097{height:70.664062pt;}
.h1_c00097{height:74.906250pt;}
.h4_c00097{height:81.045333pt;}
.h3_c00097{height:87.783854pt;}
.h0_c00097{height:884.666667pt;}
.w2_c00097{width:93.222667pt;}
.w0_c00097{width:593.266667pt;}
.w1_c00097{width:593.333333pt;}
.x0_c00097{left:0.000000pt;}
.x5_c00097{left:48.000000pt;}
.x6_c00097{left:49.733333pt;}
.x4_c00097{left:50.933333pt;}
.x8_c00097{left:73.200000pt;}
.xa_c00097{left:86.133333pt;}
.x7_c00097{left:109.733333pt;}
.x9_c00097{left:110.933333pt;}
.xb_c00097{left:131.733333pt;}
.x1_c00097{left:132.933333pt;}
.x2_c00097{left:134.000000pt;}
.x3_c00097{left:135.600000pt;}
.xd_c00097{left:253.801554pt;}
.xc_c00097{left:517.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_18d8e4f38da5eb455fb1ccb3.woff2')format("woff");}.ff1_c00098{font-family:ff1_c00098;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00098;src:url('chunks/assets/font_0aaacb60b33b5e9830baaee5.woff2')format("woff");}.ff2_c00098{font-family:ff2_c00098;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00098;src:url('chunks/assets/font_4ce0379cc3bf59853d443199.woff2')format("woff");}.ff3_c00098{font-family:ff3_c00098;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00098;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff4_c00098{font-family:ff4_c00098;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00098{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00098{vertical-align:0.000000px;}
.ls0_c00098{letter-spacing:0.000000px;}
.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:0.000000px;}
._f_c00098{margin-left:-14.697000px;}
._1a_c00098{margin-left:-13.095000px;}
._7_c00098{margin-left:-12.078000px;}
._12_c00098{margin-left:-9.945000px;}
._3_c00098{margin-left:-7.722000px;}
._15_c00098{margin-left:-6.606000px;}
._1_c00098{margin-left:-5.445000px;}
._2_c00098{margin-left:-3.960000px;}
._0_c00098{margin-left:-2.673000px;}
._4_c00098{margin-left:-1.287000px;}
._6_c00098{width:1.584000px;}
._5_c00098{width:2.772000px;}
._9_c00098{width:4.257000px;}
._a_c00098{width:5.625000px;}
._b_c00098{width:7.353000px;}
._8_c00098{width:8.991000px;}
._14_c00098{width:10.341000px;}
._c_c00098{width:11.466000px;}
._10_c00098{width:12.846000px;}
._11_c00098{width:14.022000px;}
._d_c00098{width:15.156000px;}
._19_c00098{width:16.395000px;}
._e_c00098{width:17.541000px;}
._13_c00098{width:22.755000px;}
._18_c00098{width:25.791000px;}
._16_c00098{width:28.473000px;}
._17_c00098{width:34.218000px;}
._1b_c00098{width:36.693000px;}
._1c_c00098{width:312.174000px;}
.fc2_c00098{color:transparent;}
.fc1_c00098{color:rgb(128,128,128);}
.fc0_c00098{color:rgb(0,0,0);}
.fs3_c00098{font-size:48.000000px;}
.fs2_c00098{font-size:51.000000px;}
.fs1_c00098{font-size:81.000000px;}
.fs0_c00098{font-size:99.000000px;}
.y0_c00098{bottom:0.000000px;}
.y26_c00098{bottom:3.105000px;}
.y25_c00098{bottom:7.228371px;}
.y24_c00098{bottom:80.115000px;}
.y23_c00098{bottom:103.665000px;}
.y22_c00098{bottom:127.665000px;}
.y21_c00098{bottom:152.865000px;}
.y20_c00098{bottom:177.315000px;}
.y1f_c00098{bottom:201.465000px;}
.y1e_c00098{bottom:225.165000px;}
.y1d_c00098{bottom:250.515000px;}
.y1c_c00098{bottom:274.815000px;}
.y1b_c00098{bottom:299.115000px;}
.y1a_c00098{bottom:322.965000px;}
.y19_c00098{bottom:346.665000px;}
.y18_c00098{bottom:370.665000px;}
.y17_c00098{bottom:394.515000px;}
.y16_c00098{bottom:418.815000px;}
.y15_c00098{bottom:442.515000px;}
.y14_c00098{bottom:466.515000px;}
.y13_c00098{bottom:490.815000px;}
.y12_c00098{bottom:514.815000px;}
.y11_c00098{bottom:538.665000px;}
.y10_c00098{bottom:562.965000px;}
.yf_c00098{bottom:586.215000px;}
.ye_c00098{bottom:610.215000px;}
.yd_c00098{bottom:633.615000px;}
.yc_c00098{bottom:658.515000px;}
.yb_c00098{bottom:680.865000px;}
.ya_c00098{bottom:705.765000px;}
.y9_c00098{bottom:729.015000px;}
.y8_c00098{bottom:753.315000px;}
.y7_c00098{bottom:777.015000px;}
.y6_c00098{bottom:802.965000px;}
.y5_c00098{bottom:825.315000px;}
.y4_c00098{bottom:849.465000px;}
.y3_c00098{bottom:873.915000px;}
.y2_c00098{bottom:898.065000px;}
.y1_c00098{bottom:934.215000px;}
.h4_c00098{height:13.200074px;}
.h5_c00098{height:43.804688px;}
.h3_c00098{height:79.497070px;}
.h2_c00098{height:115.870605px;}
.h0_c00098{height:989.025000px;}
.h1_c00098{height:989.250000px;}
.w1_c00098{width:104.875500px;}
.w0_c00098{width:672.000000px;}
.x0_c00098{left:0.000000px;}
.x8_c00098{left:26.400000px;}
.x7_c00098{left:28.350000px;}
.x4_c00098{left:30.000000px;}
.x3_c00098{left:31.050000px;}
.x2_c00098{left:32.700000px;}
.x5_c00098{left:35.550000px;}
.x6_c00098{left:55.650000px;}
.x1_c00098{left:205.500000px;}
.xa_c00098{left:287.814240px;}
.x9_c00098{left:327.000000px;}
@media print{
.v0_c00098{vertical-align:0.000000pt;}
.ls0_c00098{letter-spacing:0.000000pt;}
.ws0_c00098{word-spacing:0.000000pt;}
._f_c00098{margin-left:-13.064000pt;}
._1a_c00098{margin-left:-11.640000pt;}
._7_c00098{margin-left:-10.736000pt;}
._12_c00098{margin-left:-8.840000pt;}
._3_c00098{margin-left:-6.864000pt;}
._15_c00098{margin-left:-5.872000pt;}
._1_c00098{margin-left:-4.840000pt;}
._2_c00098{margin-left:-3.520000pt;}
._0_c00098{margin-left:-2.376000pt;}
._4_c00098{margin-left:-1.144000pt;}
._6_c00098{width:1.408000pt;}
._5_c00098{width:2.464000pt;}
._9_c00098{width:3.784000pt;}
._a_c00098{width:5.000000pt;}
._b_c00098{width:6.536000pt;}
._8_c00098{width:7.992000pt;}
._14_c00098{width:9.192000pt;}
._c_c00098{width:10.192000pt;}
._10_c00098{width:11.418667pt;}
._11_c00098{width:12.464000pt;}
._d_c00098{width:13.472000pt;}
._19_c00098{width:14.573333pt;}
._e_c00098{width:15.592000pt;}
._13_c00098{width:20.226667pt;}
._18_c00098{width:22.925333pt;}
._16_c00098{width:25.309333pt;}
._17_c00098{width:30.416000pt;}
._1b_c00098{width:32.616000pt;}
._1c_c00098{width:277.488000pt;}
.fs3_c00098{font-size:42.666667pt;}
.fs2_c00098{font-size:45.333333pt;}
.fs1_c00098{font-size:72.000000pt;}
.fs0_c00098{font-size:88.000000pt;}
.y0_c00098{bottom:0.000000pt;}
.y26_c00098{bottom:2.760000pt;}
.y25_c00098{bottom:6.425219pt;}
.y24_c00098{bottom:71.213333pt;}
.y23_c00098{bottom:92.146667pt;}
.y22_c00098{bottom:113.480000pt;}
.y21_c00098{bottom:135.880000pt;}
.y20_c00098{bottom:157.613333pt;}
.y1f_c00098{bottom:179.080000pt;}
.y1e_c00098{bottom:200.146667pt;}
.y1d_c00098{bottom:222.680000pt;}
.y1c_c00098{bottom:244.280000pt;}
.y1b_c00098{bottom:265.880000pt;}
.y1a_c00098{bottom:287.080000pt;}
.y19_c00098{bottom:308.146667pt;}
.y18_c00098{bottom:329.480000pt;}
.y17_c00098{bottom:350.680000pt;}
.y16_c00098{bottom:372.280000pt;}
.y15_c00098{bottom:393.346667pt;}
.y14_c00098{bottom:414.680000pt;}
.y13_c00098{bottom:436.280000pt;}
.y12_c00098{bottom:457.613333pt;}
.y11_c00098{bottom:478.813333pt;}
.y10_c00098{bottom:500.413333pt;}
.yf_c00098{bottom:521.080000pt;}
.ye_c00098{bottom:542.413333pt;}
.yd_c00098{bottom:563.213333pt;}
.yc_c00098{bottom:585.346667pt;}
.yb_c00098{bottom:605.213333pt;}
.ya_c00098{bottom:627.346667pt;}
.y9_c00098{bottom:648.013333pt;}
.y8_c00098{bottom:669.613333pt;}
.y7_c00098{bottom:690.680000pt;}
.y6_c00098{bottom:713.746667pt;}
.y5_c00098{bottom:733.613333pt;}
.y4_c00098{bottom:755.080000pt;}
.y3_c00098{bottom:776.813333pt;}
.y2_c00098{bottom:798.280000pt;}
.y1_c00098{bottom:830.413333pt;}
.h4_c00098{height:11.733399pt;}
.h5_c00098{height:38.937500pt;}
.h3_c00098{height:70.664062pt;}
.h2_c00098{height:102.996094pt;}
.h0_c00098{height:879.133333pt;}
.h1_c00098{height:879.333333pt;}
.w1_c00098{width:93.222667pt;}
.w0_c00098{width:597.333333pt;}
.x0_c00098{left:0.000000pt;}
.x8_c00098{left:23.466667pt;}
.x7_c00098{left:25.200000pt;}
.x4_c00098{left:26.666667pt;}
.x3_c00098{left:27.600000pt;}
.x2_c00098{left:29.066667pt;}
.x5_c00098{left:31.600000pt;}
.x6_c00098{left:49.466667pt;}
.x1_c00098{left:182.666667pt;}
.xa_c00098{left:255.834880pt;}
.x9_c00098{left:290.666667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_9eb0e540790eb377f7e94f9b.woff2')format("woff");}.ff1_c00099{font-family:ff1_c00099;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00099;src:url('chunks/assets/font_64d695285a92d4a8418fc22a.woff2')format("woff");}.ff2_c00099{font-family:ff2_c00099;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00099;src:url('chunks/assets/font_5493cbfebd498b8b1764a921.woff2')format("woff");}.ff3_c00099{font-family:ff3_c00099;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00099;src:url('chunks/assets/font_3b7de1a6fd49c8f368261e13.woff2')format("woff");}.ff4_c00099{font-family:ff4_c00099;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00099;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c00099{font-family:ff5_c00099;line-height:1.219238;font-style: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;}
.ls2_c00099{letter-spacing:-6.000000px;}
.ls3_c00099{letter-spacing:0.000000px;}
.ls0_c00099{letter-spacing:2.880000px;}
.ls1_c00099{letter-spacing:3.000000px;}
.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:-34.320000px;}
.ws2_c00099{word-spacing:-17.352000px;}
.ws3_c00099{word-spacing:-16.500000px;}
.ws4_c00099{word-spacing:0.000000px;}
.ws1_c00099{word-spacing:7.800000px;}
._1a_c00099{margin-left:-26.406000px;}
._2c_c00099{margin-left:-24.288000px;}
._27_c00099{margin-left:-21.204000px;}
._21_c00099{margin-left:-19.890000px;}
._22_c00099{margin-left:-16.023000px;}
._23_c00099{margin-left:-13.938000px;}
._26_c00099{margin-left:-12.636000px;}
._e_c00099{margin-left:-10.728000px;}
._d_c00099{margin-left:-9.600000px;}
._1d_c00099{margin-left:-8.100000px;}
._f_c00099{margin-left:-6.924000px;}
._1e_c00099{margin-left:-5.679000px;}
._20_c00099{margin-left:-4.374000px;}
._16_c00099{margin-left:-3.114000px;}
._11_c00099{margin-left:-1.377000px;}
._17_c00099{width:1.539000px;}
._7_c00099{width:2.820000px;}
._13_c00099{width:4.212000px;}
._14_c00099{width:5.310000px;}
._12_c00099{width:6.399000px;}
._15_c00099{width:7.482000px;}
._c_c00099{width:9.000000px;}
._1f_c00099{width:10.641000px;}
._4_c00099{width:12.420000px;}
._b_c00099{width:13.824000px;}
._24_c00099{width:14.841000px;}
._1c_c00099{width:15.984000px;}
._3_c00099{width:18.060000px;}
._a_c00099{width:19.560000px;}
._8_c00099{width:20.700000px;}
._9_c00099{width:21.780000px;}
._5_c00099{width:23.280000px;}
._0_c00099{width:25.440000px;}
._6_c00099{width:27.492000px;}
._25_c00099{width:28.497000px;}
._29_c00099{width:29.931000px;}
._1b_c00099{width:32.805000px;}
._19_c00099{width:35.838000px;}
._2_c00099{width:44.832000px;}
._2d_c00099{width:50.556000px;}
._30_c00099{width:53.865000px;}
._18_c00099{width:61.407000px;}
._10_c00099{width:155.520000px;}
._2b_c00099{width:169.290000px;}
._1_c00099{width:189.312000px;}
._2a_c00099{width:282.888000px;}
._28_c00099{width:469.557000px;}
._2e_c00099{width:534.015000px;}
._2f_c00099{width:535.572000px;}
.fc2_c00099{color:transparent;}
.fc1_c00099{color:rgb(128,128,128);}
.fc0_c00099{color:rgb(0,0,0);}
.fs5_c00099{font-size:48.000000px;}
.fs0_c00099{font-size:60.000000px;}
.fs4_c00099{font-size:66.000000px;}
.fs2_c00099{font-size:72.000000px;}
.fs3_c00099{font-size:81.000000px;}
.fs1_c00099{font-size:96.000000px;}
.y0_c00099{bottom:0.000000px;}
.y25_c00099{bottom:3.105000px;}
.y24_c00099{bottom:7.228369px;}
.y23_c00099{bottom:82.920000px;}
.y22_c00099{bottom:108.720000px;}
.y21_c00099{bottom:133.920000px;}
.y20_c00099{bottom:158.970000px;}
.y1f_c00099{bottom:182.220000px;}
.y1e_c00099{bottom:206.820000px;}
.y1d_c00099{bottom:233.520000px;}
.y1c_c00099{bottom:257.220000px;}
.y1b_c00099{bottom:281.520000px;}
.y1a_c00099{bottom:306.120000px;}
.y19_c00099{bottom:330.420000px;}
.y18_c00099{bottom:353.970000px;}
.y17_c00099{bottom:378.720000px;}
.y16_c00099{bottom:403.020000px;}
.y15_c00099{bottom:427.320000px;}
.y14_c00099{bottom:451.620000px;}
.y13_c00099{bottom:475.920000px;}
.y12_c00099{bottom:500.070000px;}
.y11_c00099{bottom:523.470000px;}
.y10_c00099{bottom:547.770000px;}
.yf_c00099{bottom:572.070000px;}
.ye_c00099{bottom:596.070000px;}
.yd_c00099{bottom:620.370000px;}
.yc_c00099{bottom:644.520000px;}
.yb_c00099{bottom:668.520000px;}
.ya_c00099{bottom:692.820000px;}
.y9_c00099{bottom:716.820000px;}
.y8_c00099{bottom:740.820000px;}
.y7_c00099{bottom:764.820000px;}
.y6_c00099{bottom:789.120000px;}
.y5_c00099{bottom:813.270000px;}
.y4_c00099{bottom:837.570000px;}
.y3_c00099{bottom:860.970000px;}
.y2_c00099{bottom:882.270000px;}
.y1_c00099{bottom:920.370000px;}
.h5_c00099{height:13.200073px;}
.h6_c00099{height:43.804688px;}
.h4_c00099{height:79.497070px;}
.h3_c00099{height:84.269531px;}
.h2_c00099{height:94.218750px;}
.h1_c00099{height:986.250000px;}
.h0_c00099{height:986.550000px;}
.w1_c00099{width:104.875500px;}
.w0_c00099{width:661.500000px;}
.x0_c00099{left:0.000000px;}
.x2_c00099{left:48.300000px;}
.x3_c00099{left:52.950000px;}
.xb_c00099{left:103.950000px;}
.x9_c00099{left:123.150000px;}
.x5_c00099{left:139.050000px;}
.x1_c00099{left:140.100000px;}
.x4_c00099{left:141.450000px;}
.x8_c00099{left:142.800000px;}
.x7_c00099{left:144.000000px;}
.x6_c00099{left:165.300000px;}
.xa_c00099{left:185.550000px;}
.xc_c00099{left:282.564240px;}
@media print{
.v0_c00099{vertical-align:0.000000pt;}
.ls2_c00099{letter-spacing:-5.333333pt;}
.ls3_c00099{letter-spacing:0.000000pt;}
.ls0_c00099{letter-spacing:2.560000pt;}
.ls1_c00099{letter-spacing:2.666667pt;}
.ws0_c00099{word-spacing:-30.506667pt;}
.ws2_c00099{word-spacing:-15.424000pt;}
.ws3_c00099{word-spacing:-14.666667pt;}
.ws4_c00099{word-spacing:0.000000pt;}
.ws1_c00099{word-spacing:6.933333pt;}
._1a_c00099{margin-left:-23.472000pt;}
._2c_c00099{margin-left:-21.589333pt;}
._27_c00099{margin-left:-18.848000pt;}
._21_c00099{margin-left:-17.680000pt;}
._22_c00099{margin-left:-14.242667pt;}
._23_c00099{margin-left:-12.389333pt;}
._26_c00099{margin-left:-11.232000pt;}
._e_c00099{margin-left:-9.536000pt;}
._d_c00099{margin-left:-8.533333pt;}
._1d_c00099{margin-left:-7.200000pt;}
._f_c00099{margin-left:-6.154667pt;}
._1e_c00099{margin-left:-5.048000pt;}
._20_c00099{margin-left:-3.888000pt;}
._16_c00099{margin-left:-2.768000pt;}
._11_c00099{margin-left:-1.224000pt;}
._17_c00099{width:1.368000pt;}
._7_c00099{width:2.506667pt;}
._13_c00099{width:3.744000pt;}
._14_c00099{width:4.720000pt;}
._12_c00099{width:5.688000pt;}
._15_c00099{width:6.650667pt;}
._c_c00099{width:8.000000pt;}
._1f_c00099{width:9.458667pt;}
._4_c00099{width:11.040000pt;}
._b_c00099{width:12.288000pt;}
._24_c00099{width:13.192000pt;}
._1c_c00099{width:14.208000pt;}
._3_c00099{width:16.053333pt;}
._a_c00099{width:17.386667pt;}
._8_c00099{width:18.400000pt;}
._9_c00099{width:19.360000pt;}
._5_c00099{width:20.693333pt;}
._0_c00099{width:22.613333pt;}
._6_c00099{width:24.437333pt;}
._25_c00099{width:25.330667pt;}
._29_c00099{width:26.605333pt;}
._1b_c00099{width:29.160000pt;}
._19_c00099{width:31.856000pt;}
._2_c00099{width:39.850667pt;}
._2d_c00099{width:44.938667pt;}
._30_c00099{width:47.880000pt;}
._18_c00099{width:54.584000pt;}
._10_c00099{width:138.240000pt;}
._2b_c00099{width:150.480000pt;}
._1_c00099{width:168.277333pt;}
._2a_c00099{width:251.456000pt;}
._28_c00099{width:417.384000pt;}
._2e_c00099{width:474.680000pt;}
._2f_c00099{width:476.064000pt;}
.fs5_c00099{font-size:42.666667pt;}
.fs0_c00099{font-size:53.333333pt;}
.fs4_c00099{font-size:58.666667pt;}
.fs2_c00099{font-size:64.000000pt;}
.fs3_c00099{font-size:72.000000pt;}
.fs1_c00099{font-size:85.333333pt;}
.y0_c00099{bottom:0.000000pt;}
.y25_c00099{bottom:2.760000pt;}
.y24_c00099{bottom:6.425217pt;}
.y23_c00099{bottom:73.706667pt;}
.y22_c00099{bottom:96.640000pt;}
.y21_c00099{bottom:119.040000pt;}
.y20_c00099{bottom:141.306667pt;}
.y1f_c00099{bottom:161.973333pt;}
.y1e_c00099{bottom:183.840000pt;}
.y1d_c00099{bottom:207.573333pt;}
.y1c_c00099{bottom:228.640000pt;}
.y1b_c00099{bottom:250.240000pt;}
.y1a_c00099{bottom:272.106667pt;}
.y19_c00099{bottom:293.706667pt;}
.y18_c00099{bottom:314.640000pt;}
.y17_c00099{bottom:336.640000pt;}
.y16_c00099{bottom:358.240000pt;}
.y15_c00099{bottom:379.840000pt;}
.y14_c00099{bottom:401.440000pt;}
.y13_c00099{bottom:423.040000pt;}
.y12_c00099{bottom:444.506667pt;}
.y11_c00099{bottom:465.306667pt;}
.y10_c00099{bottom:486.906667pt;}
.yf_c00099{bottom:508.506667pt;}
.ye_c00099{bottom:529.840000pt;}
.yd_c00099{bottom:551.440000pt;}
.yc_c00099{bottom:572.906667pt;}
.yb_c00099{bottom:594.240000pt;}
.ya_c00099{bottom:615.840000pt;}
.y9_c00099{bottom:637.173333pt;}
.y8_c00099{bottom:658.506667pt;}
.y7_c00099{bottom:679.840000pt;}
.y6_c00099{bottom:701.440000pt;}
.y5_c00099{bottom:722.906667pt;}
.y4_c00099{bottom:744.506667pt;}
.y3_c00099{bottom:765.306667pt;}
.y2_c00099{bottom:784.240000pt;}
.y1_c00099{bottom:818.106667pt;}
.h5_c00099{height:11.733399pt;}
.h6_c00099{height:38.937500pt;}
.h4_c00099{height:70.664062pt;}
.h3_c00099{height:74.906250pt;}
.h2_c00099{height:83.750000pt;}
.h1_c00099{height:876.666667pt;}
.h0_c00099{height:876.933333pt;}
.w1_c00099{width:93.222667pt;}
.w0_c00099{width:588.000000pt;}
.x0_c00099{left:0.000000pt;}
.x2_c00099{left:42.933333pt;}
.x3_c00099{left:47.066667pt;}
.xb_c00099{left:92.400000pt;}
.x9_c00099{left:109.466667pt;}
.x5_c00099{left:123.600000pt;}
.x1_c00099{left:124.533333pt;}
.x4_c00099{left:125.733333pt;}
.x8_c00099{left:126.933333pt;}
.x7_c00099{left:128.000000pt;}
.x6_c00099{left:146.933333pt;}
.xa_c00099{left:164.933333pt;}
.xc_c00099{left:251.168213pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e284371bb44c373e2d9efcd5.woff2')format("woff");}.ff1_c00100{font-family:ff1_c00100;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00100;src:url('chunks/assets/font_fcc8845f4ad5f20b0d651d34.woff2')format("woff");}.ff2_c00100{font-family:ff2_c00100;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00100;src:url('chunks/assets/font_f5e779a552e6f9281b11413a.woff2')format("woff");}.ff3_c00100{font-family:ff3_c00100;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00100;src:url('chunks/assets/font_c59965b513639858fda42f2e.woff2')format("woff");}.ff4_c00100{font-family:ff4_c00100;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00100;src:url('chunks/assets/font_bbc431751ceeb98363d2082c.woff2')format("woff");}.ff5_c00100{font-family:ff5_c00100;line-height:1.338867;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00100;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c00100{font-family:ff6_c00100;line-height:1.219238;font-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_c00100{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,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;}
.v1_c00100{vertical-align:120.000000px;}
.ls0_c00100{letter-spacing:0.000000px;}
.sc__c00100{text-shadow:none;}
.sc0_c00100{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00100{-webkit-text-stroke:0px transparent;}
.sc0_c00100{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00100{word-spacing:-59.184000px;}
.ws1_c00100{word-spacing:-0.282000px;}
.ws2_c00100{word-spacing:0.000000px;}
._1b_c00100{margin-left:-35.964000px;}
._19_c00100{margin-left:-17.901000px;}
._18_c00100{margin-left:-16.548000px;}
._15_c00100{margin-left:-14.013000px;}
._b_c00100{margin-left:-9.234000px;}
._16_c00100{margin-left:-8.019000px;}
._f_c00100{margin-left:-5.022000px;}
._9_c00100{margin-left:-3.969000px;}
._d_c00100{margin-left:-2.916000px;}
._8_c00100{margin-left:-1.053000px;}
._3_c00100{width:1.620000px;}
._5_c00100{width:2.673000px;}
._2_c00100{width:3.888000px;}
._0_c00100{width:5.103000px;}
._7_c00100{width:6.318000px;}
._1_c00100{width:7.452000px;}
._c_c00100{width:8.667000px;}
._a_c00100{width:10.044000px;}
._4_c00100{width:11.259000px;}
._6_c00100{width:12.798000px;}
._11_c00100{width:14.580000px;}
._17_c00100{width:16.200000px;}
._e_c00100{width:17.496000px;}
._14_c00100{width:18.549000px;}
._12_c00100{width:22.518000px;}
._13_c00100{width:33.615000px;}
._10_c00100{width:36.774000px;}
._1d_c00100{width:44.064000px;}
._1c_c00100{width:66.987000px;}
._1e_c00100{width:317.439000px;}
._1a_c00100{width:1125.981000px;}
.fc2_c00100{color:transparent;}
.fc1_c00100{color:rgb(128,128,128);}
.fc0_c00100{color:rgb(0,0,0);}
.fs5_c00100{font-size:48.000000px;}
.fs1_c00100{font-size:72.000000px;}
.fs2_c00100{font-size:75.000000px;}
.fs0_c00100{font-size:81.000000px;}
.fs4_c00100{font-size:108.000000px;}
.fs3_c00100{font-size:282.000000px;}
.y0_c00100{bottom:0.000000px;}
.y24_c00100{bottom:3.105000px;}
.y23_c00100{bottom:7.228371px;}
.y22_c00100{bottom:57.765000px;}
.y21_c00100{bottom:84.165000px;}
.y20_c00100{bottom:109.815000px;}
.y1f_c00100{bottom:134.715000px;}
.y1e_c00100{bottom:159.015000px;}
.y1d_c00100{bottom:183.615000px;}
.y1c_c00100{bottom:208.365000px;}
.y1a_c00100{bottom:227.565000px;}
.y1b_c00100{bottom:232.665000px;}
.y19_c00100{bottom:306.465000px;}
.y18_c00100{bottom:329.415000px;}
.y17_c00100{bottom:355.515000px;}
.y16_c00100{bottom:378.315000px;}
.y15_c00100{bottom:402.765000px;}
.y14_c00100{bottom:426.915000px;}
.y13_c00100{bottom:451.215000px;}
.y12_c00100{bottom:475.665000px;}
.y11_c00100{bottom:499.965000px;}
.y10_c00100{bottom:524.265000px;}
.yf_c00100{bottom:548.415000px;}
.ye_c00100{bottom:572.715000px;}
.yd_c00100{bottom:597.015000px;}
.yc_c00100{bottom:621.015000px;}
.yb_c00100{bottom:644.715000px;}
.ya_c00100{bottom:668.715000px;}
.y9_c00100{bottom:693.615000px;}
.y8_c00100{bottom:717.615000px;}
.y7_c00100{bottom:742.215000px;}
.y6_c00100{bottom:766.815000px;}
.y5_c00100{bottom:791.565000px;}
.y4_c00100{bottom:815.415000px;}
.y3_c00100{bottom:839.715000px;}
.y2_c00100{bottom:864.765000px;}
.y1_c00100{bottom:889.665000px;}
.h8_c00100{height:13.200074px;}
.h9_c00100{height:43.804688px;}
.h5_c00100{height:73.571777px;}
.h4_c00100{height:73.608398px;}
.h2_c00100{height:79.497070px;}
.h3_c00100{height:84.269531px;}
.h7_c00100{height:108.843750px;}
.h6_c00100{height:297.008789px;}
.h0_c00100{height:989.025000px;}
.h1_c00100{height:989.250000px;}
.w1_c00100{width:104.875500px;}
.w0_c00100{width:672.000000px;}
.x0_c00100{left:0.000000px;}
.x2_c00100{left:65.250000px;}
.x1_c00100{left:66.450000px;}
.x3_c00100{left:68.550000px;}
.x4_c00100{left:70.500000px;}
.x9_c00100{left:71.550000px;}
.x7_c00100{left:72.900000px;}
.x8_c00100{left:111.000000px;}
.x5_c00100{left:169.050000px;}
.x6_c00100{left:237.600000px;}
.xe_c00100{left:287.814240px;}
.xa_c00100{left:291.300000px;}
.xb_c00100{left:326.700000px;}
.xc_c00100{left:459.600000px;}
.xd_c00100{left:521.700000px;}
@media print{
.v0_c00100{vertical-align:0.000000pt;}
.v1_c00100{vertical-align:106.666667pt;}
.ls0_c00100{letter-spacing:0.000000pt;}
.ws0_c00100{word-spacing:-52.608000pt;}
.ws1_c00100{word-spacing:-0.250667pt;}
.ws2_c00100{word-spacing:0.000000pt;}
._1b_c00100{margin-left:-31.968000pt;}
._19_c00100{margin-left:-15.912000pt;}
._18_c00100{margin-left:-14.709333pt;}
._15_c00100{margin-left:-12.456000pt;}
._b_c00100{margin-left:-8.208000pt;}
._16_c00100{margin-left:-7.128000pt;}
._f_c00100{margin-left:-4.464000pt;}
._9_c00100{margin-left:-3.528000pt;}
._d_c00100{margin-left:-2.592000pt;}
._8_c00100{margin-left:-0.936000pt;}
._3_c00100{width:1.440000pt;}
._5_c00100{width:2.376000pt;}
._2_c00100{width:3.456000pt;}
._0_c00100{width:4.536000pt;}
._7_c00100{width:5.616000pt;}
._1_c00100{width:6.624000pt;}
._c_c00100{width:7.704000pt;}
._a_c00100{width:8.928000pt;}
._4_c00100{width:10.008000pt;}
._6_c00100{width:11.376000pt;}
._11_c00100{width:12.960000pt;}
._17_c00100{width:14.400000pt;}
._e_c00100{width:15.552000pt;}
._14_c00100{width:16.488000pt;}
._12_c00100{width:20.016000pt;}
._13_c00100{width:29.880000pt;}
._10_c00100{width:32.688000pt;}
._1d_c00100{width:39.168000pt;}
._1c_c00100{width:59.544000pt;}
._1e_c00100{width:282.168000pt;}
._1a_c00100{width:1000.872000pt;}
.fs5_c00100{font-size:42.666667pt;}
.fs1_c00100{font-size:64.000000pt;}
.fs2_c00100{font-size:66.666667pt;}
.fs0_c00100{font-size:72.000000pt;}
.fs4_c00100{font-size:96.000000pt;}
.fs3_c00100{font-size:250.666667pt;}
.y0_c00100{bottom:0.000000pt;}
.y24_c00100{bottom:2.760000pt;}
.y23_c00100{bottom:6.425219pt;}
.y22_c00100{bottom:51.346667pt;}
.y21_c00100{bottom:74.813333pt;}
.y20_c00100{bottom:97.613333pt;}
.y1f_c00100{bottom:119.746667pt;}
.y1e_c00100{bottom:141.346667pt;}
.y1d_c00100{bottom:163.213333pt;}
.y1c_c00100{bottom:185.213333pt;}
.y1a_c00100{bottom:202.280000pt;}
.y1b_c00100{bottom:206.813333pt;}
.y19_c00100{bottom:272.413333pt;}
.y18_c00100{bottom:292.813333pt;}
.y17_c00100{bottom:316.013333pt;}
.y16_c00100{bottom:336.280000pt;}
.y15_c00100{bottom:358.013333pt;}
.y14_c00100{bottom:379.480000pt;}
.y13_c00100{bottom:401.080000pt;}
.y12_c00100{bottom:422.813333pt;}
.y11_c00100{bottom:444.413333pt;}
.y10_c00100{bottom:466.013333pt;}
.yf_c00100{bottom:487.480000pt;}
.ye_c00100{bottom:509.080000pt;}
.yd_c00100{bottom:530.680000pt;}
.yc_c00100{bottom:552.013333pt;}
.yb_c00100{bottom:573.080000pt;}
.ya_c00100{bottom:594.413333pt;}
.y9_c00100{bottom:616.546667pt;}
.y8_c00100{bottom:637.880000pt;}
.y7_c00100{bottom:659.746667pt;}
.y6_c00100{bottom:681.613333pt;}
.y5_c00100{bottom:703.613333pt;}
.y4_c00100{bottom:724.813333pt;}
.y3_c00100{bottom:746.413333pt;}
.y2_c00100{bottom:768.680000pt;}
.y1_c00100{bottom:790.813333pt;}
.h8_c00100{height:11.733399pt;}
.h9_c00100{height:38.937500pt;}
.h5_c00100{height:65.397135pt;}
.h4_c00100{height:65.429688pt;}
.h2_c00100{height:70.664062pt;}
.h3_c00100{height:74.906250pt;}
.h7_c00100{height:96.750000pt;}
.h6_c00100{height:264.007812pt;}
.h0_c00100{height:879.133333pt;}
.h1_c00100{height:879.333333pt;}
.w1_c00100{width:93.222667pt;}
.w0_c00100{width:597.333333pt;}
.x0_c00100{left:0.000000pt;}
.x2_c00100{left:58.000000pt;}
.x1_c00100{left:59.066667pt;}
.x3_c00100{left:60.933333pt;}
.x4_c00100{left:62.666667pt;}
.x9_c00100{left:63.600000pt;}
.x7_c00100{left:64.800000pt;}
.x8_c00100{left:98.666667pt;}
.x5_c00100{left:150.266667pt;}
.x6_c00100{left:211.200000pt;}
.xe_c00100{left:255.834880pt;}
.xa_c00100{left:258.933333pt;}
.xb_c00100{left:290.400000pt;}
.xc_c00100{left:408.533333pt;}
.xd_c00100{left:463.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_fbcb41c78dfa8199d572e278.woff2')format("woff");}.ff1_c00101{font-family:ff1_c00101;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00101;src:url('chunks/assets/font_7233dee963a6cd3219fe6c53.woff2')format("woff");}.ff2_c00101{font-family:ff2_c00101;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00101;src:url('chunks/assets/font_8e721c3646c6a28978568960.woff2')format("woff");}.ff3_c00101{font-family:ff3_c00101;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00101;src:url('chunks/assets/font_5fcddfc4d952386ba28d4b9a.woff2')format("woff");}.ff4_c00101{font-family:ff4_c00101;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00101;src:url('chunks/assets/font_bb492e6dd48d5db7ef3ca4f2.woff2')format("woff");}.ff5_c00101{font-family:ff5_c00101;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00101;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c00101{font-family:ff6_c00101;line-height:1.219238;font-style: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.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m1_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;}
.ls1_c00101{letter-spacing:0.000000px;}
.ls0_c00101{letter-spacing:4.800000px;}
.sc__c00101{text-shadow:none;}
.sc0_c00101{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00101{-webkit-text-stroke:0px transparent;}
.sc0_c00101{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00101{word-spacing:-21.750000px;}
.ws1_c00101{word-spacing:-17.352000px;}
.ws2_c00101{word-spacing:-16.500000px;}
.ws3_c00101{word-spacing:0.000000px;}
._1c_c00101{margin-left:-24.786000px;}
._13_c00101{margin-left:-23.409000px;}
._1a_c00101{margin-left:-20.382000px;}
._18_c00101{margin-left:-16.974000px;}
._f_c00101{margin-left:-15.096000px;}
._15_c00101{margin-left:-13.983000px;}
._4_c00101{margin-left:-11.859000px;}
._10_c00101{margin-left:-10.035000px;}
._e_c00101{margin-left:-8.490000px;}
._1b_c00101{margin-left:-6.669000px;}
._6_c00101{margin-left:-4.620000px;}
._7_c00101{margin-left:-3.360000px;}
._5_c00101{margin-left:-1.890000px;}
._2_c00101{width:1.995000px;}
._c_c00101{width:3.060000px;}
._3_c00101{width:4.095000px;}
._8_c00101{width:5.580000px;}
._20_c00101{width:6.582000px;}
._9_c00101{width:7.599000px;}
._a_c00101{width:8.979000px;}
._19_c00101{width:10.083000px;}
._0_c00101{width:11.232000px;}
._b_c00101{width:12.729000px;}
._d_c00101{width:14.871000px;}
._17_c00101{width:16.410000px;}
._14_c00101{width:52.083000px;}
._1e_c00101{width:57.108000px;}
._11_c00101{width:70.992000px;}
._21_c00101{width:103.932000px;}
._1f_c00101{width:185.562000px;}
._1_c00101{width:193.620000px;}
._16_c00101{width:242.808000px;}
._12_c00101{width:257.694000px;}
._1d_c00101{width:346.032000px;}
.fc2_c00101{color:transparent;}
.fc1_c00101{color:rgb(128,128,128);}
.fc0_c00101{color:rgb(0,0,0);}
.fs7_c00101{font-size:48.000000px;}
.fs5_c00101{font-size:66.000000px;}
.fs4_c00101{font-size:72.000000px;}
.fs6_c00101{font-size:75.000000px;}
.fs2_c00101{font-size:81.000000px;}
.fs3_c00101{font-size:87.000000px;}
.fs1_c00101{font-size:105.000000px;}
.fs0_c00101{font-size:108.000000px;}
.y0_c00101{bottom:0.000000px;}
.y25_c00101{bottom:3.105000px;}
.y24_c00101{bottom:7.228369px;}
.y23_c00101{bottom:77.670000px;}
.y22_c00101{bottom:103.170000px;}
.y21_c00101{bottom:127.920000px;}
.y20_c00101{bottom:153.270000px;}
.y1f_c00101{bottom:177.870000px;}
.y1e_c00101{bottom:202.470000px;}
.y1d_c00101{bottom:227.370000px;}
.y1c_c00101{bottom:251.670000px;}
.y1b_c00101{bottom:276.720000px;}
.y1a_c00101{bottom:301.020000px;}
.y19_c00101{bottom:325.620000px;}
.y18_c00101{bottom:349.920000px;}
.y17_c00101{bottom:374.520000px;}
.y16_c00101{bottom:398.970000px;}
.y15_c00101{bottom:423.570000px;}
.y14_c00101{bottom:448.170000px;}
.y13_c00101{bottom:472.470000px;}
.y12_c00101{bottom:496.770000px;}
.y11_c00101{bottom:520.770000px;}
.y10_c00101{bottom:545.370000px;}
.yf_c00101{bottom:569.970000px;}
.ye_c00101{bottom:594.720000px;}
.yd_c00101{bottom:618.870000px;}
.yc_c00101{bottom:643.320000px;}
.yb_c00101{bottom:667.620000px;}
.ya_c00101{bottom:691.470000px;}
.y9_c00101{bottom:715.770000px;}
.y8_c00101{bottom:740.520000px;}
.y7_c00101{bottom:765.120000px;}
.y6_c00101{bottom:789.120000px;}
.y5_c00101{bottom:813.420000px;}
.y4_c00101{bottom:837.720000px;}
.y3_c00101{bottom:862.320000px;}
.y2_c00101{bottom:886.170000px;}
.y1_c00101{bottom:920.670000px;}
.h8_c00101{height:13.200073px;}
.h9_c00101{height:43.804688px;}
.h7_c00101{height:73.608398px;}
.h4_c00101{height:79.497070px;}
.h6_c00101{height:84.269531px;}
.h5_c00101{height:91.176000px;}
.h2_c00101{height:108.843750px;}
.h3_c00101{height:122.893066px;}
.h1_c00101{height:986.250000px;}
.h0_c00101{height:986.550000px;}
.w1_c00101{width:104.875500px;}
.w0_c00101{width:661.500000px;}
.x0_c00101{left:0.000000px;}
.x6_c00101{left:18.900000px;}
.x9_c00101{left:36.450000px;}
.xa_c00101{left:75.900000px;}
.x5_c00101{left:77.250000px;}
.x4_c00101{left:86.100000px;}
.xd_c00101{left:109.650000px;}
.xc_c00101{left:111.000000px;}
.xb_c00101{left:112.800000px;}
.x8_c00101{left:114.150000px;}
.x7_c00101{left:115.500000px;}
.x1_c00101{left:118.200000px;}
.x3_c00101{left:119.550000px;}
.x2_c00101{left:135.300000px;}
.xe_c00101{left:282.564240px;}
@media print{
.v0_c00101{vertical-align:0.000000pt;}
.ls1_c00101{letter-spacing:0.000000pt;}
.ls0_c00101{letter-spacing:4.266667pt;}
.ws0_c00101{word-spacing:-19.333333pt;}
.ws1_c00101{word-spacing:-15.424000pt;}
.ws2_c00101{word-spacing:-14.666667pt;}
.ws3_c00101{word-spacing:0.000000pt;}
._1c_c00101{margin-left:-22.032000pt;}
._13_c00101{margin-left:-20.808000pt;}
._1a_c00101{margin-left:-18.117333pt;}
._18_c00101{margin-left:-15.088000pt;}
._f_c00101{margin-left:-13.418667pt;}
._15_c00101{margin-left:-12.429333pt;}
._4_c00101{margin-left:-10.541333pt;}
._10_c00101{margin-left:-8.920000pt;}
._e_c00101{margin-left:-7.546667pt;}
._1b_c00101{margin-left:-5.928000pt;}
._6_c00101{margin-left:-4.106667pt;}
._7_c00101{margin-left:-2.986667pt;}
._5_c00101{margin-left:-1.680000pt;}
._2_c00101{width:1.773333pt;}
._c_c00101{width:2.720000pt;}
._3_c00101{width:3.640000pt;}
._8_c00101{width:4.960000pt;}
._20_c00101{width:5.850667pt;}
._9_c00101{width:6.754667pt;}
._a_c00101{width:7.981333pt;}
._19_c00101{width:8.962667pt;}
._0_c00101{width:9.984000pt;}
._b_c00101{width:11.314667pt;}
._d_c00101{width:13.218667pt;}
._17_c00101{width:14.586667pt;}
._14_c00101{width:46.296000pt;}
._1e_c00101{width:50.762667pt;}
._11_c00101{width:63.104000pt;}
._21_c00101{width:92.384000pt;}
._1f_c00101{width:164.944000pt;}
._1_c00101{width:172.106667pt;}
._16_c00101{width:215.829333pt;}
._12_c00101{width:229.061333pt;}
._1d_c00101{width:307.584000pt;}
.fs7_c00101{font-size:42.666667pt;}
.fs5_c00101{font-size:58.666667pt;}
.fs4_c00101{font-size:64.000000pt;}
.fs6_c00101{font-size:66.666667pt;}
.fs2_c00101{font-size:72.000000pt;}
.fs3_c00101{font-size:77.333333pt;}
.fs1_c00101{font-size:93.333333pt;}
.fs0_c00101{font-size:96.000000pt;}
.y0_c00101{bottom:0.000000pt;}
.y25_c00101{bottom:2.760000pt;}
.y24_c00101{bottom:6.425217pt;}
.y23_c00101{bottom:69.040000pt;}
.y22_c00101{bottom:91.706667pt;}
.y21_c00101{bottom:113.706667pt;}
.y20_c00101{bottom:136.240000pt;}
.y1f_c00101{bottom:158.106667pt;}
.y1e_c00101{bottom:179.973333pt;}
.y1d_c00101{bottom:202.106667pt;}
.y1c_c00101{bottom:223.706667pt;}
.y1b_c00101{bottom:245.973333pt;}
.y1a_c00101{bottom:267.573333pt;}
.y19_c00101{bottom:289.440000pt;}
.y18_c00101{bottom:311.040000pt;}
.y17_c00101{bottom:332.906667pt;}
.y16_c00101{bottom:354.640000pt;}
.y15_c00101{bottom:376.506667pt;}
.y14_c00101{bottom:398.373333pt;}
.y13_c00101{bottom:419.973333pt;}
.y12_c00101{bottom:441.573333pt;}
.y11_c00101{bottom:462.906667pt;}
.y10_c00101{bottom:484.773333pt;}
.yf_c00101{bottom:506.640000pt;}
.ye_c00101{bottom:528.640000pt;}
.yd_c00101{bottom:550.106667pt;}
.yc_c00101{bottom:571.840000pt;}
.yb_c00101{bottom:593.440000pt;}
.ya_c00101{bottom:614.640000pt;}
.y9_c00101{bottom:636.240000pt;}
.y8_c00101{bottom:658.240000pt;}
.y7_c00101{bottom:680.106667pt;}
.y6_c00101{bottom:701.440000pt;}
.y5_c00101{bottom:723.040000pt;}
.y4_c00101{bottom:744.640000pt;}
.y3_c00101{bottom:766.506667pt;}
.y2_c00101{bottom:787.706667pt;}
.y1_c00101{bottom:818.373333pt;}
.h8_c00101{height:11.733399pt;}
.h9_c00101{height:38.937500pt;}
.h7_c00101{height:65.429688pt;}
.h4_c00101{height:70.664062pt;}
.h6_c00101{height:74.906250pt;}
.h5_c00101{height:81.045333pt;}
.h2_c00101{height:96.750000pt;}
.h3_c00101{height:109.238281pt;}
.h1_c00101{height:876.666667pt;}
.h0_c00101{height:876.933333pt;}
.w1_c00101{width:93.222667pt;}
.w0_c00101{width:588.000000pt;}
.x0_c00101{left:0.000000pt;}
.x6_c00101{left:16.800000pt;}
.x9_c00101{left:32.400000pt;}
.xa_c00101{left:67.466667pt;}
.x5_c00101{left:68.666667pt;}
.x4_c00101{left:76.533333pt;}
.xd_c00101{left:97.466667pt;}
.xc_c00101{left:98.666667pt;}
.xb_c00101{left:100.266667pt;}
.x8_c00101{left:101.466667pt;}
.x7_c00101{left:102.666667pt;}
.x1_c00101{left:105.066667pt;}
.x3_c00101{left:106.266667pt;}
.x2_c00101{left:120.266667pt;}
.xe_c00101{left:251.168213pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4d9bdf506266e41956be1f4e.woff2')format("woff");}.ff1_c00102{font-family:ff1_c00102;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00102;src:url('chunks/assets/font_4b720aacfa51bf2329f7d849.woff2')format("woff");}.ff2_c00102{font-family:ff2_c00102;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00102;src:url('chunks/assets/font_16c57e7cb166ff041b28ef0f.woff2')format("woff");}.ff3_c00102{font-family:ff3_c00102;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00102;src:url('chunks/assets/font_a564cd37a280d81b4e369991.woff2')format("woff");}.ff4_c00102{font-family:ff4_c00102;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00102;src:url('chunks/assets/font_2d3f11c63d4f4e8a198b0ff6.woff2')format("woff");}.ff5_c00102{font-family:ff5_c00102;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00102;src:url('chunks/assets/font_eef1f04cd1d02254f6d1c498.woff2')format("woff");}.ff6_c00102{font-family:ff6_c00102;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00102;src:url('chunks/assets/font_4f43f06dd63e364d224b419b.woff2')format("woff");}.ff7_c00102{font-family:ff7_c00102;line-height:1.401855;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00102;src:url('chunks/assets/font_e82810c8861ce69f4bf7870c.woff2')format("woff");}.ff8_c00102{font-family:ff8_c00102;line-height:1.437000;font-style:normal;font-weight: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_c00102;src:url('chunks/assets/font_0428be0f7caca800f25e6922.woff2')format("woff");}.ff9_c00102{font-family:ff9_c00102;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00102;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ffa_c00102{font-family:ffa_c00102;line-height:1.219238;font-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_c00102{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,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;}
.ls4_c00102{letter-spacing:-3.000000px;}
.ls2_c00102{letter-spacing:0.000000px;}
.ls1_c00102{letter-spacing:3.900000px;}
.ls3_c00102{letter-spacing:6.000000px;}
.ls0_c00102{letter-spacing:37.800000px;}
.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:-94.554000px;}
.ws1_c00102{word-spacing:-31.350000px;}
.ws2_c00102{word-spacing:-19.098000px;}
.ws3_c00102{word-spacing:-17.250000px;}
.ws4_c00102{word-spacing:0.000000px;}
._8_c00102{margin-left:-24.480000px;}
._a_c00102{margin-left:-14.994000px;}
._15_c00102{margin-left:-13.257000px;}
._f_c00102{margin-left:-11.676000px;}
._1b_c00102{margin-left:-10.644000px;}
._7_c00102{margin-left:-9.384000px;}
._c_c00102{margin-left:-7.608000px;}
._d_c00102{margin-left:-6.249000px;}
._6_c00102{margin-left:-5.100000px;}
._11_c00102{margin-left:-4.050000px;}
._4_c00102{margin-left:-2.958000px;}
._10_c00102{margin-left:-1.260000px;}
._e_c00102{width:1.464000px;}
._5_c00102{width:2.550000px;}
._b_c00102{width:3.978000px;}
._2_c00102{width:5.100000px;}
._3_c00102{width:6.528000px;}
._9_c00102{width:7.752000px;}
._14_c00102{width:9.018000px;}
._1_c00102{width:10.200000px;}
._16_c00102{width:11.745000px;}
._0_c00102{width:13.260000px;}
._1a_c00102{width:15.324000px;}
._19_c00102{width:16.848000px;}
._1c_c00102{width:18.087000px;}
._13_c00102{width:19.521000px;}
._12_c00102{width:22.491000px;}
._21_c00102{width:27.864000px;}
._17_c00102{width:40.755000px;}
._22_c00102{width:42.039000px;}
._18_c00102{width:51.699000px;}
._1e_c00102{width:63.597000px;}
._1d_c00102{width:146.181000px;}
._20_c00102{width:283.275000px;}
._1f_c00102{width:291.966000px;}
.fc2_c00102{color:transparent;}
.fc1_c00102{color:rgb(128,128,128);}
.fc0_c00102{color:rgb(0,0,0);}
.fs3_c00102{font-size:27.000000px;}
.fs8_c00102{font-size:48.000000px;}
.fs7_c00102{font-size:57.000000px;}
.fs6_c00102{font-size:69.000000px;}
.fs5_c00102{font-size:72.000000px;}
.fs2_c00102{font-size:81.000000px;}
.fs4_c00102{font-size:87.000000px;}
.fs0_c00102{font-size:102.000000px;}
.fs1_c00102{font-size:120.000000px;}
.y0_c00102{bottom:0.000000px;}
.y25_c00102{bottom:3.105000px;}
.y24_c00102{bottom:7.228357px;}
.y23_c00102{bottom:72.930000px;}
.y22_c00102{bottom:97.530000px;}
.y21_c00102{bottom:122.580000px;}
.y20_c00102{bottom:147.930000px;}
.y1f_c00102{bottom:172.530000px;}
.y1e_c00102{bottom:197.730000px;}
.y1d_c00102{bottom:222.180000px;}
.y1c_c00102{bottom:247.080000px;}
.y1b_c00102{bottom:271.380000px;}
.y1a_c00102{bottom:295.980000px;}
.y19_c00102{bottom:319.380000px;}
.y18_c00102{bottom:343.980000px;}
.y17_c00102{bottom:368.280000px;}
.y16_c00102{bottom:392.280000px;}
.y15_c00102{bottom:416.880000px;}
.y14_c00102{bottom:441.180000px;}
.y13_c00102{bottom:465.480000px;}
.y12_c00102{bottom:489.780000px;}
.y11_c00102{bottom:514.080000px;}
.y10_c00102{bottom:538.380000px;}
.yf_c00102{bottom:562.680000px;}
.ye_c00102{bottom:586.530000px;}
.yd_c00102{bottom:610.530000px;}
.yc_c00102{bottom:634.830000px;}
.yb_c00102{bottom:659.430000px;}
.ya_c00102{bottom:683.430000px;}
.y9_c00102{bottom:709.080000px;}
.y8_c00102{bottom:734.430000px;}
.y7_c00102{bottom:756.780000px;}
.y6_c00102{bottom:784.080000px;}
.y5_c00102{bottom:805.980000px;}
.y4_c00102{bottom:830.280000px;}
.y3_c00102{bottom:856.230000px;}
.y2_c00102{bottom:878.280000px;}
.y1_c00102{bottom:911.280000px;}
.h8_c00102{height:13.200074px;}
.h3_c00102{height:27.210938px;}
.h9_c00102{height:43.804688px;}
.h5_c00102{height:72.562500px;}
.h2_c00102{height:79.497070px;}
.h4_c00102{height:87.679688px;}
.h7_c00102{height:91.176000px;}
.h6_c00102{height:110.151855px;}
.h1_c00102{height:129.143555px;}
.h0_c00102{height:968.250000px;}
.w1_c00102{width:104.875500px;}
.w0_c00102{width:657.750000px;}
.x0_c00102{left:0.000000px;}
.xb_c00102{left:52.200000px;}
.x8_c00102{left:54.000000px;}
.x2_c00102{left:55.800000px;}
.xa_c00102{left:57.450000px;}
.x9_c00102{left:59.100000px;}
.x1_c00102{left:60.300000px;}
.x7_c00102{left:61.350000px;}
.x6_c00102{left:63.450000px;}
.x3_c00102{left:65.550000px;}
.x4_c00102{left:73.200000px;}
.x5_c00102{left:111.000000px;}
.xd_c00102{left:280.689240px;}
.xc_c00102{left:372.300000px;}
@media print{
.v0_c00102{vertical-align:0.000000pt;}
.ls4_c00102{letter-spacing:-2.666667pt;}
.ls2_c00102{letter-spacing:0.000000pt;}
.ls1_c00102{letter-spacing:3.466667pt;}
.ls3_c00102{letter-spacing:5.333333pt;}
.ls0_c00102{letter-spacing:33.600000pt;}
.ws0_c00102{word-spacing:-84.048000pt;}
.ws1_c00102{word-spacing:-27.866667pt;}
.ws2_c00102{word-spacing:-16.976000pt;}
.ws3_c00102{word-spacing:-15.333333pt;}
.ws4_c00102{word-spacing:0.000000pt;}
._8_c00102{margin-left:-21.760000pt;}
._a_c00102{margin-left:-13.328000pt;}
._15_c00102{margin-left:-11.784000pt;}
._f_c00102{margin-left:-10.378667pt;}
._1b_c00102{margin-left:-9.461333pt;}
._7_c00102{margin-left:-8.341333pt;}
._c_c00102{margin-left:-6.762667pt;}
._d_c00102{margin-left:-5.554667pt;}
._6_c00102{margin-left:-4.533333pt;}
._11_c00102{margin-left:-3.600000pt;}
._4_c00102{margin-left:-2.629333pt;}
._10_c00102{margin-left:-1.120000pt;}
._e_c00102{width:1.301333pt;}
._5_c00102{width:2.266667pt;}
._b_c00102{width:3.536000pt;}
._2_c00102{width:4.533333pt;}
._3_c00102{width:5.802667pt;}
._9_c00102{width:6.890667pt;}
._14_c00102{width:8.016000pt;}
._1_c00102{width:9.066667pt;}
._16_c00102{width:10.440000pt;}
._0_c00102{width:11.786667pt;}
._1a_c00102{width:13.621333pt;}
._19_c00102{width:14.976000pt;}
._1c_c00102{width:16.077333pt;}
._13_c00102{width:17.352000pt;}
._12_c00102{width:19.992000pt;}
._21_c00102{width:24.768000pt;}
._17_c00102{width:36.226667pt;}
._22_c00102{width:37.368000pt;}
._18_c00102{width:45.954667pt;}
._1e_c00102{width:56.530667pt;}
._1d_c00102{width:129.938667pt;}
._20_c00102{width:251.800000pt;}
._1f_c00102{width:259.525333pt;}
.fs3_c00102{font-size:24.000000pt;}
.fs8_c00102{font-size:42.666667pt;}
.fs7_c00102{font-size:50.666667pt;}
.fs6_c00102{font-size:61.333333pt;}
.fs5_c00102{font-size:64.000000pt;}
.fs2_c00102{font-size:72.000000pt;}
.fs4_c00102{font-size:77.333333pt;}
.fs0_c00102{font-size:90.666667pt;}
.fs1_c00102{font-size:106.666667pt;}
.y0_c00102{bottom:0.000000pt;}
.y25_c00102{bottom:2.760000pt;}
.y24_c00102{bottom:6.425206pt;}
.y23_c00102{bottom:64.826667pt;}
.y22_c00102{bottom:86.693333pt;}
.y21_c00102{bottom:108.960000pt;}
.y20_c00102{bottom:131.493333pt;}
.y1f_c00102{bottom:153.360000pt;}
.y1e_c00102{bottom:175.760000pt;}
.y1d_c00102{bottom:197.493333pt;}
.y1c_c00102{bottom:219.626667pt;}
.y1b_c00102{bottom:241.226667pt;}
.y1a_c00102{bottom:263.093333pt;}
.y19_c00102{bottom:283.893333pt;}
.y18_c00102{bottom:305.760000pt;}
.y17_c00102{bottom:327.360000pt;}
.y16_c00102{bottom:348.693333pt;}
.y15_c00102{bottom:370.560000pt;}
.y14_c00102{bottom:392.160000pt;}
.y13_c00102{bottom:413.760000pt;}
.y12_c00102{bottom:435.360000pt;}
.y11_c00102{bottom:456.960000pt;}
.y10_c00102{bottom:478.560000pt;}
.yf_c00102{bottom:500.160000pt;}
.ye_c00102{bottom:521.360000pt;}
.yd_c00102{bottom:542.693333pt;}
.yc_c00102{bottom:564.293333pt;}
.yb_c00102{bottom:586.160000pt;}
.ya_c00102{bottom:607.493333pt;}
.y9_c00102{bottom:630.293333pt;}
.y8_c00102{bottom:652.826667pt;}
.y7_c00102{bottom:672.693333pt;}
.y6_c00102{bottom:696.960000pt;}
.y5_c00102{bottom:716.426667pt;}
.y4_c00102{bottom:738.026667pt;}
.y3_c00102{bottom:761.093333pt;}
.y2_c00102{bottom:780.693333pt;}
.y1_c00102{bottom:810.026667pt;}
.h8_c00102{height:11.733399pt;}
.h3_c00102{height:24.187500pt;}
.h9_c00102{height:38.937500pt;}
.h5_c00102{height:64.500000pt;}
.h2_c00102{height:70.664062pt;}
.h4_c00102{height:77.937500pt;}
.h7_c00102{height:81.045333pt;}
.h6_c00102{height:97.912760pt;}
.h1_c00102{height:114.794271pt;}
.h0_c00102{height:860.666667pt;}
.w1_c00102{width:93.222667pt;}
.w0_c00102{width:584.666667pt;}
.x0_c00102{left:0.000000pt;}
.xb_c00102{left:46.400000pt;}
.x8_c00102{left:48.000000pt;}
.x2_c00102{left:49.600000pt;}
.xa_c00102{left:51.066667pt;}
.x9_c00102{left:52.533333pt;}
.x1_c00102{left:53.600000pt;}
.x7_c00102{left:54.533333pt;}
.x6_c00102{left:56.400000pt;}
.x3_c00102{left:58.266667pt;}
.x4_c00102{left:65.066667pt;}
.x5_c00102{left:98.666667pt;}
.xd_c00102{left:249.501546pt;}
.xc_c00102{left:330.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_1267ca861d6901c0a5bf2815.woff2')format("woff");}.ff1_c00103{font-family:ff1_c00103;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00103;src:url('chunks/assets/font_dccaea6e54559a5d71a2c45b.woff2')format("woff");}.ff2_c00103{font-family:ff2_c00103;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00103;src:url('chunks/assets/font_94084cfaf032042650233276.woff2')format("woff");}.ff3_c00103{font-family:ff3_c00103;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00103;src:url('chunks/assets/font_7d7c27e8ecca87362ddd2718.woff2')format("woff");}.ff4_c00103{font-family:ff4_c00103;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00103;src:url('chunks/assets/font_e9d6ad5bd58a66d6f109e9e7.woff2')format("woff");}.ff5_c00103{font-family:ff5_c00103;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00103;src:url('chunks/assets/font_a83e31ad8cc9b6c4e2faacab.woff2')format("woff");}.ff6_c00103{font-family:ff6_c00103;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00103;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c00103{font-family:ff7_c00103;line-height:1.219238;font-style: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;}
.ls0_c00103{letter-spacing:0.000000px;}
.sc__c00103{text-shadow:none;}
.sc0_c00103{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00103{-webkit-text-stroke:0px transparent;}
.sc0_c00103{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00103{word-spacing:-21.000000px;}
.ws1_c00103{word-spacing:-17.352000px;}
.ws2_c00103{word-spacing:0.000000px;}
._1c_c00103{margin-left:-23.739000px;}
._16_c00103{margin-left:-20.784000px;}
._9_c00103{margin-left:-19.200000px;}
._8_c00103{margin-left:-16.200000px;}
._d_c00103{margin-left:-14.280000px;}
._13_c00103{margin-left:-11.586000px;}
._15_c00103{margin-left:-10.164000px;}
._21_c00103{margin-left:-9.120000px;}
._a_c00103{margin-left:-7.140000px;}
._11_c00103{margin-left:-5.814000px;}
._0_c00103{margin-left:-4.800000px;}
._e_c00103{margin-left:-2.748000px;}
._c_c00103{margin-left:-1.326000px;}
._b_c00103{width:1.326000px;}
._4_c00103{width:2.550000px;}
._3_c00103{width:4.182000px;}
._5_c00103{width:5.304000px;}
._2_c00103{width:6.630000px;}
._f_c00103{width:8.628000px;}
._17_c00103{width:9.705000px;}
._6_c00103{width:10.914000px;}
._10_c00103{width:12.264000px;}
._19_c00103{width:13.692000px;}
._12_c00103{width:14.700000px;}
._14_c00103{width:16.632000px;}
._1a_c00103{width:17.967000px;}
._7_c00103{width:20.922000px;}
._1b_c00103{width:22.509000px;}
._18_c00103{width:26.331000px;}
._20_c00103{width:43.431000px;}
._1f_c00103{width:47.178000px;}
._1d_c00103{width:85.266000px;}
._22_c00103{width:96.780000px;}
._1e_c00103{width:197.748000px;}
._1_c00103{width:230.400000px;}
.fc2_c00103{color:transparent;}
.fc1_c00103{color:rgb(128,128,128);}
.fc0_c00103{color:rgb(0,0,0);}
.fs6_c00103{font-size:48.000000px;}
.fs5_c00103{font-size:72.000000px;}
.fs3_c00103{font-size:78.000000px;}
.fs4_c00103{font-size:81.000000px;}
.fs2_c00103{font-size:84.000000px;}
.fs1_c00103{font-size:102.000000px;}
.fs0_c00103{font-size:120.000000px;}
.y0_c00103{bottom:0.000000px;}
.y23_c00103{bottom:3.105000px;}
.y22_c00103{bottom:7.228357px;}
.y21_c00103{bottom:65.430000px;}
.y20_c00103{bottom:91.230000px;}
.y1f_c00103{bottom:116.130000px;}
.y1e_c00103{bottom:141.030000px;}
.y1d_c00103{bottom:166.080000px;}
.y1c_c00103{bottom:192.780000px;}
.y1b_c00103{bottom:216.330000px;}
.y1a_c00103{bottom:240.630000px;}
.y19_c00103{bottom:263.880000px;}
.y18_c00103{bottom:289.680000px;}
.y17_c00103{bottom:314.580000px;}
.y16_c00103{bottom:339.180000px;}
.y15_c00103{bottom:364.230000px;}
.y14_c00103{bottom:388.830000px;}
.y13_c00103{bottom:413.430000px;}
.y12_c00103{bottom:438.180000px;}
.y11_c00103{bottom:462.330000px;}
.y10_c00103{bottom:486.780000px;}
.yf_c00103{bottom:511.680000px;}
.ye_c00103{bottom:535.380000px;}
.yd_c00103{bottom:559.980000px;}
.yc_c00103{bottom:585.180000px;}
.yb_c00103{bottom:609.480000px;}
.ya_c00103{bottom:634.230000px;}
.y9_c00103{bottom:658.530000px;}
.y8_c00103{bottom:683.130000px;}
.y7_c00103{bottom:707.430000px;}
.y6_c00103{bottom:759.480000px;}
.y5_c00103{bottom:789.780000px;}
.y4_c00103{bottom:818.730000px;}
.y3_c00103{bottom:847.530000px;}
.y2_c00103{bottom:876.930000px;}
.y1_c00103{bottom:913.680000px;}
.h8_c00103{height:13.200074px;}
.h9_c00103{height:43.804688px;}
.h6_c00103{height:79.497070px;}
.h5_c00103{height:82.400391px;}
.h3_c00103{height:82.441406px;}
.h7_c00103{height:84.269531px;}
.h4_c00103{height:84.552000px;}
.h2_c00103{height:120.937500px;}
.h1_c00103{height:978.750000px;}
.h0_c00103{height:979.050000px;}
.w2_c00103{width:104.875500px;}
.w0_c00103{width:656.100000px;}
.w1_c00103{width:656.250000px;}
.x0_c00103{left:0.000000px;}
.xe_c00103{left:39.450000px;}
.xf_c00103{left:40.500000px;}
.x10_c00103{left:42.150000px;}
.x11_c00103{left:65.850000px;}
.x1_c00103{left:118.500000px;}
.x15_c00103{left:122.700000px;}
.x9_c00103{left:127.800000px;}
.xa_c00103{left:129.150000px;}
.xb_c00103{left:130.650000px;}
.xc_c00103{left:133.200000px;}
.xd_c00103{left:134.250000px;}
.x12_c00103{left:135.900000px;}
.x13_c00103{left:136.950000px;}
.x14_c00103{left:141.000000px;}
.x2_c00103{left:159.000000px;}
.x3_c00103{left:205.650000px;}
.x6_c00103{left:252.000000px;}
.x7_c00103{left:253.800000px;}
.x8_c00103{left:255.150000px;}
.x4_c00103{left:257.250000px;}
.x16_c00103{left:279.864258px;}
.x5_c00103{left:329.400000px;}
@media print{
.v0_c00103{vertical-align:0.000000pt;}
.ls0_c00103{letter-spacing:0.000000pt;}
.ws0_c00103{word-spacing:-18.666667pt;}
.ws1_c00103{word-spacing:-15.424000pt;}
.ws2_c00103{word-spacing:0.000000pt;}
._1c_c00103{margin-left:-21.101333pt;}
._16_c00103{margin-left:-18.474667pt;}
._9_c00103{margin-left:-17.066667pt;}
._8_c00103{margin-left:-14.400000pt;}
._d_c00103{margin-left:-12.693333pt;}
._13_c00103{margin-left:-10.298667pt;}
._15_c00103{margin-left:-9.034667pt;}
._21_c00103{margin-left:-8.106667pt;}
._a_c00103{margin-left:-6.346667pt;}
._11_c00103{margin-left:-5.168000pt;}
._0_c00103{margin-left:-4.266667pt;}
._e_c00103{margin-left:-2.442667pt;}
._c_c00103{margin-left:-1.178667pt;}
._b_c00103{width:1.178667pt;}
._4_c00103{width:2.266667pt;}
._3_c00103{width:3.717333pt;}
._5_c00103{width:4.714667pt;}
._2_c00103{width:5.893333pt;}
._f_c00103{width:7.669333pt;}
._17_c00103{width:8.626667pt;}
._6_c00103{width:9.701333pt;}
._10_c00103{width:10.901333pt;}
._19_c00103{width:12.170667pt;}
._12_c00103{width:13.066667pt;}
._14_c00103{width:14.784000pt;}
._1a_c00103{width:15.970667pt;}
._7_c00103{width:18.597333pt;}
._1b_c00103{width:20.008000pt;}
._18_c00103{width:23.405333pt;}
._20_c00103{width:38.605333pt;}
._1f_c00103{width:41.936000pt;}
._1d_c00103{width:75.792000pt;}
._22_c00103{width:86.026667pt;}
._1e_c00103{width:175.776000pt;}
._1_c00103{width:204.800000pt;}
.fs6_c00103{font-size:42.666667pt;}
.fs5_c00103{font-size:64.000000pt;}
.fs3_c00103{font-size:69.333333pt;}
.fs4_c00103{font-size:72.000000pt;}
.fs2_c00103{font-size:74.666667pt;}
.fs1_c00103{font-size:90.666667pt;}
.fs0_c00103{font-size:106.666667pt;}
.y0_c00103{bottom:0.000000pt;}
.y23_c00103{bottom:2.760000pt;}
.y22_c00103{bottom:6.425206pt;}
.y21_c00103{bottom:58.160000pt;}
.y20_c00103{bottom:81.093333pt;}
.y1f_c00103{bottom:103.226667pt;}
.y1e_c00103{bottom:125.360000pt;}
.y1d_c00103{bottom:147.626667pt;}
.y1c_c00103{bottom:171.360000pt;}
.y1b_c00103{bottom:192.293333pt;}
.y1a_c00103{bottom:213.893333pt;}
.y19_c00103{bottom:234.560000pt;}
.y18_c00103{bottom:257.493333pt;}
.y17_c00103{bottom:279.626667pt;}
.y16_c00103{bottom:301.493333pt;}
.y15_c00103{bottom:323.760000pt;}
.y14_c00103{bottom:345.626667pt;}
.y13_c00103{bottom:367.493333pt;}
.y12_c00103{bottom:389.493333pt;}
.y11_c00103{bottom:410.960000pt;}
.y10_c00103{bottom:432.693333pt;}
.yf_c00103{bottom:454.826667pt;}
.ye_c00103{bottom:475.893333pt;}
.yd_c00103{bottom:497.760000pt;}
.yc_c00103{bottom:520.160000pt;}
.yb_c00103{bottom:541.760000pt;}
.ya_c00103{bottom:563.760000pt;}
.y9_c00103{bottom:585.360000pt;}
.y8_c00103{bottom:607.226667pt;}
.y7_c00103{bottom:628.826667pt;}
.y6_c00103{bottom:675.093333pt;}
.y5_c00103{bottom:702.026667pt;}
.y4_c00103{bottom:727.760000pt;}
.y3_c00103{bottom:753.360000pt;}
.y2_c00103{bottom:779.493333pt;}
.y1_c00103{bottom:812.160000pt;}
.h8_c00103{height:11.733399pt;}
.h9_c00103{height:38.937500pt;}
.h6_c00103{height:70.664062pt;}
.h5_c00103{height:73.244792pt;}
.h3_c00103{height:73.281250pt;}
.h7_c00103{height:74.906250pt;}
.h4_c00103{height:75.157333pt;}
.h2_c00103{height:107.500000pt;}
.h1_c00103{height:870.000000pt;}
.h0_c00103{height:870.266667pt;}
.w2_c00103{width:93.222667pt;}
.w0_c00103{width:583.200000pt;}
.w1_c00103{width:583.333333pt;}
.x0_c00103{left:0.000000pt;}
.xe_c00103{left:35.066667pt;}
.xf_c00103{left:36.000000pt;}
.x10_c00103{left:37.466667pt;}
.x11_c00103{left:58.533333pt;}
.x1_c00103{left:105.333333pt;}
.x15_c00103{left:109.066667pt;}
.x9_c00103{left:113.600000pt;}
.xa_c00103{left:114.800000pt;}
.xb_c00103{left:116.133333pt;}
.xc_c00103{left:118.400000pt;}
.xd_c00103{left:119.333333pt;}
.x12_c00103{left:120.800000pt;}
.x13_c00103{left:121.733333pt;}
.x14_c00103{left:125.333333pt;}
.x2_c00103{left:141.333333pt;}
.x3_c00103{left:182.800000pt;}
.x6_c00103{left:224.000000pt;}
.x7_c00103{left:225.600000pt;}
.x8_c00103{left:226.800000pt;}
.x4_c00103{left:228.666667pt;}
.x16_c00103{left:248.768229pt;}
.x5_c00103{left:292.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_92e3478dd90d46457332551c.woff2')format("woff");}.ff1_c00104{font-family:ff1_c00104;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00104;src:url('chunks/assets/font_150c95f592428c786882b140.woff2')format("woff");}.ff2_c00104{font-family:ff2_c00104;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00104;src:url('chunks/assets/font_174c1614b4ef002734742ebd.woff2')format("woff");}.ff3_c00104{font-family:ff3_c00104;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00104;src:url('chunks/assets/font_646fdc93f971c3b15027c594.woff2')format("woff");}.ff4_c00104{font-family:ff4_c00104;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00104;src:url('chunks/assets/font_b9f6390e08d6e0b437bc2cb1.woff2')format("woff");}.ff5_c00104{font-family:ff5_c00104;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00104;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c00104{font-family:ff6_c00104;line-height:1.219238;font-style: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;}
.ls4_c00104{letter-spacing:-12.000000px;}
.ls5_c00104{letter-spacing:-6.000000px;}
.ls3_c00104{letter-spacing:0.000000px;}
.ls0_c00104{letter-spacing:6.300000px;}
.ls1_c00104{letter-spacing:6.600000px;}
.ls2_c00104{letter-spacing:20.202000px;}
.sc__c00104{text-shadow:none;}
.sc0_c00104{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00104{-webkit-text-stroke:0px transparent;}
.sc0_c00104{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00104{word-spacing:-67.686000px;}
.ws4_c00104{word-spacing:-25.500000px;}
.ws2_c00104{word-spacing:-18.798000px;}
.ws5_c00104{word-spacing:-17.352000px;}
.ws3_c00104{word-spacing:-13.737000px;}
.ws6_c00104{word-spacing:0.000000px;}
.ws1_c00104{word-spacing:27.675000px;}
._11_c00104{margin-left:-23.409000px;}
._21_c00104{margin-left:-21.669000px;}
._23_c00104{margin-left:-20.088000px;}
._10_c00104{margin-left:-18.954000px;}
._14_c00104{margin-left:-16.200000px;}
._16_c00104{margin-left:-11.655000px;}
._20_c00104{margin-left:-9.585000px;}
._12_c00104{margin-left:-8.019000px;}
._2_c00104{margin-left:-6.399000px;}
._3_c00104{margin-left:-4.698000px;}
._8_c00104{margin-left:-3.240000px;}
._5_c00104{margin-left:-1.215000px;}
._6_c00104{width:1.377000px;}
._1_c00104{width:2.997000px;}
._9_c00104{width:4.050000px;}
._0_c00104{width:5.103000px;}
._4_c00104{width:6.561000px;}
._19_c00104{width:7.596000px;}
._b_c00104{width:8.667000px;}
._d_c00104{width:10.449000px;}
._e_c00104{width:11.583000px;}
._c_c00104{width:12.798000px;}
._a_c00104{width:14.013000px;}
._26_c00104{width:15.021000px;}
._7_c00104{width:16.119000px;}
._1a_c00104{width:17.439000px;}
._f_c00104{width:18.549000px;}
._17_c00104{width:19.938000px;}
._1b_c00104{width:21.186000px;}
._1e_c00104{width:23.709000px;}
._18_c00104{width:25.422000px;}
._29_c00104{width:26.892000px;}
._1c_c00104{width:32.397000px;}
._1d_c00104{width:35.406000px;}
._13_c00104{width:112.509000px;}
._1f_c00104{width:139.056000px;}
._28_c00104{width:146.910000px;}
._22_c00104{width:178.947000px;}
._24_c00104{width:185.328000px;}
._15_c00104{width:216.786000px;}
._25_c00104{width:250.650000px;}
._2a_c00104{width:301.743000px;}
._27_c00104{width:327.582000px;}
.fc2_c00104{color:transparent;}
.fc1_c00104{color:rgb(128,128,128);}
.fc0_c00104{color:rgb(0,0,0);}
.fs7_c00104{font-size:48.000000px;}
.fs2_c00104{font-size:57.000000px;}
.fs5_c00104{font-size:60.000000px;}
.fs6_c00104{font-size:63.000000px;}
.fs3_c00104{font-size:72.000000px;}
.fs4_c00104{font-size:78.000000px;}
.fs0_c00104{font-size:81.000000px;}
.fs1_c00104{font-size:87.000000px;}
.y0_c00104{bottom:0.000000px;}
.y23_c00104{bottom:3.105000px;}
.y22_c00104{bottom:7.228371px;}
.y21_c00104{bottom:109.665000px;}
.y20_c00104{bottom:134.715000px;}
.y1f_c00104{bottom:159.765000px;}
.y1e_c00104{bottom:184.365000px;}
.y1d_c00104{bottom:208.665000px;}
.y1c_c00104{bottom:234.015000px;}
.y1b_c00104{bottom:258.165000px;}
.y1a_c00104{bottom:283.965000px;}
.y19_c00104{bottom:308.265000px;}
.y18_c00104{bottom:332.565000px;}
.y17_c00104{bottom:356.715000px;}
.y16_c00104{bottom:381.465000px;}
.y15_c00104{bottom:405.465000px;}
.y14_c00104{bottom:430.665000px;}
.y13_c00104{bottom:454.665000px;}
.y12_c00104{bottom:481.065000px;}
.y11_c00104{bottom:505.215000px;}
.y10_c00104{bottom:528.915000px;}
.yf_c00104{bottom:553.515000px;}
.ye_c00104{bottom:577.515000px;}
.yd_c00104{bottom:601.815000px;}
.yc_c00104{bottom:625.815000px;}
.yb_c00104{bottom:650.415000px;}
.ya_c00104{bottom:674.115000px;}
.y9_c00104{bottom:699.765000px;}
.y8_c00104{bottom:723.315000px;}
.y7_c00104{bottom:748.215000px;}
.y6_c00104{bottom:772.665000px;}
.y5_c00104{bottom:797.565000px;}
.y4_c00104{bottom:822.465000px;}
.y3_c00104{bottom:847.515000px;}
.y2_c00104{bottom:872.115000px;}
.y1_c00104{bottom:896.415000px;}
.h8_c00104{height:13.200074px;}
.h9_c00104{height:43.804688px;}
.h5_c00104{height:72.168457px;}
.h2_c00104{height:79.497070px;}
.h4_c00104{height:84.269531px;}
.h7_c00104{height:91.160156px;}
.h3_c00104{height:91.176000px;}
.h6_c00104{height:98.756836px;}
.h0_c00104{height:989.025000px;}
.h1_c00104{height:989.250000px;}
.w1_c00104{width:104.875500px;}
.w0_c00104{width:672.000000px;}
.x0_c00104{left:0.000000px;}
.x2_c00104{left:45.600000px;}
.x1_c00104{left:47.250000px;}
.x3_c00104{left:49.500000px;}
.x4_c00104{left:50.550000px;}
.x5_c00104{left:52.650000px;}
.x6_c00104{left:53.700000px;}
.x7_c00104{left:55.350000px;}
.x8_c00104{left:57.600000px;}
.x9_c00104{left:59.400000px;}
.xa_c00104{left:60.750000px;}
.xb_c00104{left:62.100000px;}
.xc_c00104{left:63.450000px;}
.xd_c00104{left:64.800000px;}
.xe_c00104{left:287.814240px;}
@media print{
.v0_c00104{vertical-align:0.000000pt;}
.ls4_c00104{letter-spacing:-10.666667pt;}
.ls5_c00104{letter-spacing:-5.333333pt;}
.ls3_c00104{letter-spacing:0.000000pt;}
.ls0_c00104{letter-spacing:5.600000pt;}
.ls1_c00104{letter-spacing:5.866667pt;}
.ls2_c00104{letter-spacing:17.957333pt;}
.ws0_c00104{word-spacing:-60.165333pt;}
.ws4_c00104{word-spacing:-22.666667pt;}
.ws2_c00104{word-spacing:-16.709333pt;}
.ws5_c00104{word-spacing:-15.424000pt;}
.ws3_c00104{word-spacing:-12.210667pt;}
.ws6_c00104{word-spacing:0.000000pt;}
.ws1_c00104{word-spacing:24.600000pt;}
._11_c00104{margin-left:-20.808000pt;}
._21_c00104{margin-left:-19.261333pt;}
._23_c00104{margin-left:-17.856000pt;}
._10_c00104{margin-left:-16.848000pt;}
._14_c00104{margin-left:-14.400000pt;}
._16_c00104{margin-left:-10.360000pt;}
._20_c00104{margin-left:-8.520000pt;}
._12_c00104{margin-left:-7.128000pt;}
._2_c00104{margin-left:-5.688000pt;}
._3_c00104{margin-left:-4.176000pt;}
._8_c00104{margin-left:-2.880000pt;}
._5_c00104{margin-left:-1.080000pt;}
._6_c00104{width:1.224000pt;}
._1_c00104{width:2.664000pt;}
._9_c00104{width:3.600000pt;}
._0_c00104{width:4.536000pt;}
._4_c00104{width:5.832000pt;}
._19_c00104{width:6.752000pt;}
._b_c00104{width:7.704000pt;}
._d_c00104{width:9.288000pt;}
._e_c00104{width:10.296000pt;}
._c_c00104{width:11.376000pt;}
._a_c00104{width:12.456000pt;}
._26_c00104{width:13.352000pt;}
._7_c00104{width:14.328000pt;}
._1a_c00104{width:15.501333pt;}
._f_c00104{width:16.488000pt;}
._17_c00104{width:17.722667pt;}
._1b_c00104{width:18.832000pt;}
._1e_c00104{width:21.074667pt;}
._18_c00104{width:22.597333pt;}
._29_c00104{width:23.904000pt;}
._1c_c00104{width:28.797333pt;}
._1d_c00104{width:31.472000pt;}
._13_c00104{width:100.008000pt;}
._1f_c00104{width:123.605333pt;}
._28_c00104{width:130.586667pt;}
._22_c00104{width:159.064000pt;}
._24_c00104{width:164.736000pt;}
._15_c00104{width:192.698667pt;}
._25_c00104{width:222.800000pt;}
._2a_c00104{width:268.216000pt;}
._27_c00104{width:291.184000pt;}
.fs7_c00104{font-size:42.666667pt;}
.fs2_c00104{font-size:50.666667pt;}
.fs5_c00104{font-size:53.333333pt;}
.fs6_c00104{font-size:56.000000pt;}
.fs3_c00104{font-size:64.000000pt;}
.fs4_c00104{font-size:69.333333pt;}
.fs0_c00104{font-size:72.000000pt;}
.fs1_c00104{font-size:77.333333pt;}
.y0_c00104{bottom:0.000000pt;}
.y23_c00104{bottom:2.760000pt;}
.y22_c00104{bottom:6.425219pt;}
.y21_c00104{bottom:97.480000pt;}
.y20_c00104{bottom:119.746667pt;}
.y1f_c00104{bottom:142.013333pt;}
.y1e_c00104{bottom:163.880000pt;}
.y1d_c00104{bottom:185.480000pt;}
.y1c_c00104{bottom:208.013333pt;}
.y1b_c00104{bottom:229.480000pt;}
.y1a_c00104{bottom:252.413333pt;}
.y19_c00104{bottom:274.013333pt;}
.y18_c00104{bottom:295.613333pt;}
.y17_c00104{bottom:317.080000pt;}
.y16_c00104{bottom:339.080000pt;}
.y15_c00104{bottom:360.413333pt;}
.y14_c00104{bottom:382.813333pt;}
.y13_c00104{bottom:404.146667pt;}
.y12_c00104{bottom:427.613333pt;}
.y11_c00104{bottom:449.080000pt;}
.y10_c00104{bottom:470.146667pt;}
.yf_c00104{bottom:492.013333pt;}
.ye_c00104{bottom:513.346667pt;}
.yd_c00104{bottom:534.946667pt;}
.yc_c00104{bottom:556.280000pt;}
.yb_c00104{bottom:578.146667pt;}
.ya_c00104{bottom:599.213333pt;}
.y9_c00104{bottom:622.013333pt;}
.y8_c00104{bottom:642.946667pt;}
.y7_c00104{bottom:665.080000pt;}
.y6_c00104{bottom:686.813333pt;}
.y5_c00104{bottom:708.946667pt;}
.y4_c00104{bottom:731.080000pt;}
.y3_c00104{bottom:753.346667pt;}
.y2_c00104{bottom:775.213333pt;}
.y1_c00104{bottom:796.813333pt;}
.h8_c00104{height:11.733399pt;}
.h9_c00104{height:38.937500pt;}
.h5_c00104{height:64.149740pt;}
.h2_c00104{height:70.664062pt;}
.h4_c00104{height:74.906250pt;}
.h7_c00104{height:81.031250pt;}
.h3_c00104{height:81.045333pt;}
.h6_c00104{height:87.783854pt;}
.h0_c00104{height:879.133333pt;}
.h1_c00104{height:879.333333pt;}
.w1_c00104{width:93.222667pt;}
.w0_c00104{width:597.333333pt;}
.x0_c00104{left:0.000000pt;}
.x2_c00104{left:40.533333pt;}
.x1_c00104{left:42.000000pt;}
.x3_c00104{left:44.000000pt;}
.x4_c00104{left:44.933333pt;}
.x5_c00104{left:46.800000pt;}
.x6_c00104{left:47.733333pt;}
.x7_c00104{left:49.200000pt;}
.x8_c00104{left:51.200000pt;}
.x9_c00104{left:52.800000pt;}
.xa_c00104{left:54.000000pt;}
.xb_c00104{left:55.200000pt;}
.xc_c00104{left:56.400000pt;}
.xd_c00104{left:57.600000pt;}
.xe_c00104{left:255.834880pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_18cc8eea48289446abb8104d.woff2')format("woff");}.ff1_c00105{font-family:ff1_c00105;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00105;src:url('chunks/assets/font_6d0816892c4860ffdae3554d.woff2')format("woff");}.ff2_c00105{font-family:ff2_c00105;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00105;src:url('chunks/assets/font_5506366ba8ac06919541e53f.woff2')format("woff");}.ff3_c00105{font-family:ff3_c00105;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00105;src:url('chunks/assets/font_8355ec936e7aa35d4c97de63.woff2')format("woff");}.ff4_c00105{font-family:ff4_c00105;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00105;src:url('chunks/assets/font_49292c66ae1e2be5930fb701.woff2')format("woff");}.ff5_c00105{font-family:ff5_c00105;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00105;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c00105{font-family:ff6_c00105;line-height:1.219238;font-style: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;}
.v1_c00105{vertical-align:167.400000px;}
.ls3_c00105{letter-spacing:0.000000px;}
.ls2_c00105{letter-spacing:3.000000px;}
.ls1_c00105{letter-spacing:3.600000px;}
.ls0_c00105{letter-spacing:39.600000px;}
.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:-81.378000px;}
.ws2_c00105{word-spacing:-59.184000px;}
.ws1_c00105{word-spacing:-25.500000px;}
.ws3_c00105{word-spacing:-18.750000px;}
.ws4_c00105{word-spacing:0.000000px;}
._17_c00105{margin-left:-22.077000px;}
._14_c00105{margin-left:-19.440000px;}
._19_c00105{margin-left:-17.751000px;}
._18_c00105{margin-left:-15.633000px;}
._0_c00105{margin-left:-14.034000px;}
._15_c00105{margin-left:-12.717000px;}
._1a_c00105{margin-left:-11.052000px;}
._4_c00105{margin-left:-9.300000px;}
._11_c00105{margin-left:-7.917000px;}
._1b_c00105{margin-left:-6.798000px;}
._9_c00105{margin-left:-5.610000px;}
._e_c00105{margin-left:-4.350000px;}
._7_c00105{margin-left:-3.060000px;}
._3_c00105{margin-left:-1.530000px;}
._8_c00105{width:1.938000px;}
._c_c00105{width:3.756000px;}
._f_c00105{width:5.172000px;}
._d_c00105{width:6.258000px;}
._10_c00105{width:7.830000px;}
._12_c00105{width:9.123000px;}
._b_c00105{width:10.125000px;}
._13_c00105{width:11.271000px;}
._6_c00105{width:13.260000px;}
._5_c00105{width:14.382000px;}
._16_c00105{width:17.178000px;}
._a_c00105{width:18.630000px;}
._2_c00105{width:24.000000px;}
._1c_c00105{width:26.124000px;}
._1_c00105{width:247.560000px;}
.fc2_c00105{color:transparent;}
.fc1_c00105{color:rgb(128,128,128);}
.fc0_c00105{color:rgb(0,0,0);}
.fs7_c00105{font-size:48.000000px;}
.fs4_c00105{font-size:72.000000px;}
.fs5_c00105{font-size:75.000000px;}
.fs3_c00105{font-size:81.000000px;}
.fs1_c00105{font-size:99.000000px;}
.fs0_c00105{font-size:102.000000px;}
.fs2_c00105{font-size:120.000000px;}
.fs6_c00105{font-size:300.000000px;}
.y0_c00105{bottom:0.000000px;}
.y25_c00105{bottom:3.105000px;}
.y24_c00105{bottom:7.228357px;}
.y23_c00105{bottom:45.330000px;}
.y22_c00105{bottom:68.880000px;}
.y20_c00105{bottom:78.630000px;}
.y21_c00105{bottom:94.530000px;}
.y1f_c00105{bottom:145.080000px;}
.y1e_c00105{bottom:194.730000px;}
.y1d_c00105{bottom:220.080000px;}
.y1c_c00105{bottom:245.130000px;}
.y1b_c00105{bottom:269.730000px;}
.y1a_c00105{bottom:294.630000px;}
.y19_c00105{bottom:319.380000px;}
.y18_c00105{bottom:344.280000px;}
.y17_c00105{bottom:368.280000px;}
.y16_c00105{bottom:392.880000px;}
.y15_c00105{bottom:417.780000px;}
.y14_c00105{bottom:442.530000px;}
.y13_c00105{bottom:467.130000px;}
.y12_c00105{bottom:491.730000px;}
.y11_c00105{bottom:516.030000px;}
.y10_c00105{bottom:540.630000px;}
.yf_c00105{bottom:564.930000px;}
.ye_c00105{bottom:589.380000px;}
.yd_c00105{bottom:614.880000px;}
.yc_c00105{bottom:638.580000px;}
.yb_c00105{bottom:663.630000px;}
.ya_c00105{bottom:687.480000px;}
.y9_c00105{bottom:712.080000px;}
.y8_c00105{bottom:736.530000px;}
.y7_c00105{bottom:761.730000px;}
.y6_c00105{bottom:785.730000px;}
.y5_c00105{bottom:810.330000px;}
.y4_c00105{bottom:834.630000px;}
.y3_c00105{bottom:858.330000px;}
.y2_c00105{bottom:883.230000px;}
.y1_c00105{bottom:918.630000px;}
.h6_c00105{height:13.200074px;}
.h7_c00105{height:43.804688px;}
.h4_c00105{height:73.571777px;}
.h2_c00105{height:79.497070px;}
.h3_c00105{height:84.269531px;}
.h1_c00105{height:120.937500px;}
.h5_c00105{height:294.433594px;}
.h0_c00105{height:995.250000px;}
.w2_c00105{width:104.875500px;}
.w0_c00105{width:667.425000px;}
.w1_c00105{width:667.500000px;}
.x0_c00105{left:0.000000px;}
.xa_c00105{left:107.700000px;}
.xd_c00105{left:109.800000px;}
.xb_c00105{left:112.800000px;}
.x9_c00105{left:114.000000px;}
.x8_c00105{left:115.050000px;}
.x7_c00105{left:116.700000px;}
.x6_c00105{left:117.750000px;}
.x5_c00105{left:118.800000px;}
.x4_c00105{left:121.200000px;}
.x3_c00105{left:122.550000px;}
.x2_c00105{left:123.900000px;}
.x1_c00105{left:126.150000px;}
.xc_c00105{left:129.600000px;}
.xe_c00105{left:152.250000px;}
.x10_c00105{left:285.526749px;}
.xf_c00105{left:544.500000px;}
@media print{
.v0_c00105{vertical-align:0.000000pt;}
.v1_c00105{vertical-align:148.800000pt;}
.ls3_c00105{letter-spacing:0.000000pt;}
.ls2_c00105{letter-spacing:2.666667pt;}
.ls1_c00105{letter-spacing:3.200000pt;}
.ls0_c00105{letter-spacing:35.200000pt;}
.ws0_c00105{word-spacing:-72.336000pt;}
.ws2_c00105{word-spacing:-52.608000pt;}
.ws1_c00105{word-spacing:-22.666667pt;}
.ws3_c00105{word-spacing:-16.666667pt;}
.ws4_c00105{word-spacing:0.000000pt;}
._17_c00105{margin-left:-19.624000pt;}
._14_c00105{margin-left:-17.280000pt;}
._19_c00105{margin-left:-15.778667pt;}
._18_c00105{margin-left:-13.896000pt;}
._0_c00105{margin-left:-12.474667pt;}
._15_c00105{margin-left:-11.304000pt;}
._1a_c00105{margin-left:-9.824000pt;}
._4_c00105{margin-left:-8.266667pt;}
._11_c00105{margin-left:-7.037333pt;}
._1b_c00105{margin-left:-6.042667pt;}
._9_c00105{margin-left:-4.986667pt;}
._e_c00105{margin-left:-3.866667pt;}
._7_c00105{margin-left:-2.720000pt;}
._3_c00105{margin-left:-1.360000pt;}
._8_c00105{width:1.722667pt;}
._c_c00105{width:3.338667pt;}
._f_c00105{width:4.597333pt;}
._d_c00105{width:5.562667pt;}
._10_c00105{width:6.960000pt;}
._12_c00105{width:8.109333pt;}
._b_c00105{width:9.000000pt;}
._13_c00105{width:10.018667pt;}
._6_c00105{width:11.786667pt;}
._5_c00105{width:12.784000pt;}
._16_c00105{width:15.269333pt;}
._a_c00105{width:16.560000pt;}
._2_c00105{width:21.333333pt;}
._1c_c00105{width:23.221333pt;}
._1_c00105{width:220.053333pt;}
.fs7_c00105{font-size:42.666667pt;}
.fs4_c00105{font-size:64.000000pt;}
.fs5_c00105{font-size:66.666667pt;}
.fs3_c00105{font-size:72.000000pt;}
.fs1_c00105{font-size:88.000000pt;}
.fs0_c00105{font-size:90.666667pt;}
.fs2_c00105{font-size:106.666667pt;}
.fs6_c00105{font-size:266.666667pt;}
.y0_c00105{bottom:0.000000pt;}
.y25_c00105{bottom:2.760000pt;}
.y24_c00105{bottom:6.425206pt;}
.y23_c00105{bottom:40.293333pt;}
.y22_c00105{bottom:61.226667pt;}
.y20_c00105{bottom:69.893333pt;}
.y21_c00105{bottom:84.026667pt;}
.y1f_c00105{bottom:128.960000pt;}
.y1e_c00105{bottom:173.093333pt;}
.y1d_c00105{bottom:195.626667pt;}
.y1c_c00105{bottom:217.893333pt;}
.y1b_c00105{bottom:239.760000pt;}
.y1a_c00105{bottom:261.893333pt;}
.y19_c00105{bottom:283.893333pt;}
.y18_c00105{bottom:306.026667pt;}
.y17_c00105{bottom:327.360000pt;}
.y16_c00105{bottom:349.226667pt;}
.y15_c00105{bottom:371.360000pt;}
.y14_c00105{bottom:393.360000pt;}
.y13_c00105{bottom:415.226667pt;}
.y12_c00105{bottom:437.093333pt;}
.y11_c00105{bottom:458.693333pt;}
.y10_c00105{bottom:480.560000pt;}
.yf_c00105{bottom:502.160000pt;}
.ye_c00105{bottom:523.893333pt;}
.yd_c00105{bottom:546.560000pt;}
.yc_c00105{bottom:567.626667pt;}
.yb_c00105{bottom:589.893333pt;}
.ya_c00105{bottom:611.093333pt;}
.y9_c00105{bottom:632.960000pt;}
.y8_c00105{bottom:654.693333pt;}
.y7_c00105{bottom:677.093333pt;}
.y6_c00105{bottom:698.426667pt;}
.y5_c00105{bottom:720.293333pt;}
.y4_c00105{bottom:741.893333pt;}
.y3_c00105{bottom:762.960000pt;}
.y2_c00105{bottom:785.093333pt;}
.y1_c00105{bottom:816.560000pt;}
.h6_c00105{height:11.733399pt;}
.h7_c00105{height:38.937500pt;}
.h4_c00105{height:65.397135pt;}
.h2_c00105{height:70.664062pt;}
.h3_c00105{height:74.906250pt;}
.h1_c00105{height:107.500000pt;}
.h5_c00105{height:261.718750pt;}
.h0_c00105{height:884.666667pt;}
.w2_c00105{width:93.222667pt;}
.w0_c00105{width:593.266667pt;}
.w1_c00105{width:593.333333pt;}
.x0_c00105{left:0.000000pt;}
.xa_c00105{left:95.733333pt;}
.xd_c00105{left:97.600000pt;}
.xb_c00105{left:100.266667pt;}
.x9_c00105{left:101.333333pt;}
.x8_c00105{left:102.266667pt;}
.x7_c00105{left:103.733333pt;}
.x6_c00105{left:104.666667pt;}
.x5_c00105{left:105.600000pt;}
.x4_c00105{left:107.733333pt;}
.x3_c00105{left:108.933333pt;}
.x2_c00105{left:110.133333pt;}
.x1_c00105{left:112.133333pt;}
.xc_c00105{left:115.200000pt;}
.xe_c00105{left:135.333333pt;}
.x10_c00105{left:253.801554pt;}
.xf_c00105{left:484.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_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_8f2888256f99c084d76437f0.woff2')format("woff");}.ff1_c00106{font-family:ff1_c00106;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00106;src:url('chunks/assets/font_7f485d28afb6e7b0990a1f4b.woff2')format("woff");}.ff2_c00106{font-family:ff2_c00106;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00106;src:url('chunks/assets/font_4af0892c35372ba25e9a705c.woff2')format("woff");}.ff3_c00106{font-family:ff3_c00106;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00106;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff4_c00106{font-family:ff4_c00106;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00106;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c00106{font-family:ff5_c00106;line-height:1.219238;font-style: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;}
.ls1_c00106{letter-spacing:0.000000px;}
.ls0_c00106{letter-spacing:6.600000px;}
.sc__c00106{text-shadow:none;}
.sc0_c00106{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00106{-webkit-text-stroke:0px transparent;}
.sc0_c00106{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00106{word-spacing:-17.352000px;}
.ws1_c00106{word-spacing:0.000000px;}
._15_c00106{margin-left:-46.332000px;}
._11_c00106{margin-left:-26.811000px;}
._1e_c00106{margin-left:-19.440000px;}
._1a_c00106{margin-left:-16.740000px;}
._18_c00106{margin-left:-15.417000px;}
._e_c00106{margin-left:-14.229000px;}
._8_c00106{margin-left:-9.477000px;}
._b_c00106{margin-left:-7.857000px;}
._9_c00106{margin-left:-5.913000px;}
._7_c00106{margin-left:-4.860000px;}
._5_c00106{margin-left:-3.240000px;}
._1_c00106{margin-left:-1.701000px;}
._3_c00106{width:1.296000px;}
._2_c00106{width:3.321000px;}
._4_c00106{width:5.022000px;}
._0_c00106{width:6.318000px;}
._6_c00106{width:7.857000px;}
._f_c00106{width:9.234000px;}
._a_c00106{width:10.287000px;}
._13_c00106{width:11.799000px;}
._d_c00106{width:12.879000px;}
._c_c00106{width:14.499000px;}
._10_c00106{width:15.714000px;}
._12_c00106{width:17.496000px;}
._16_c00106{width:25.029000px;}
._1b_c00106{width:26.244000px;}
._17_c00106{width:31.104000px;}
._1d_c00106{width:37.638000px;}
._19_c00106{width:38.880000px;}
._1c_c00106{width:52.515000px;}
._20_c00106{width:217.323000px;}
._14_c00106{width:222.912000px;}
._1f_c00106{width:289.251000px;}
.fc2_c00106{color:transparent;}
.fc1_c00106{color:rgb(128,128,128);}
.fc0_c00106{color:rgb(0,0,0);}
.fs5_c00106{font-size:48.000000px;}
.fs3_c00106{font-size:57.000000px;}
.fs4_c00106{font-size:60.000000px;}
.fs2_c00106{font-size:66.000000px;}
.fs1_c00106{font-size:72.000000px;}
.fs0_c00106{font-size:81.000000px;}
.y0_c00106{bottom:0.000000px;}
.y25_c00106{bottom:3.105000px;}
.y24_c00106{bottom:7.228363px;}
.y23_c00106{bottom:50.700000px;}
.y22_c00106{bottom:75.000000px;}
.y21_c00106{bottom:100.350000px;}
.y20_c00106{bottom:124.650000px;}
.y1f_c00106{bottom:150.150000px;}
.y1e_c00106{bottom:174.900000px;}
.y1d_c00106{bottom:199.800000px;}
.y1c_c00106{bottom:224.400000px;}
.y1b_c00106{bottom:248.850000px;}
.y1a_c00106{bottom:273.750000px;}
.y19_c00106{bottom:297.300000px;}
.y18_c00106{bottom:321.750000px;}
.y17_c00106{bottom:346.350000px;}
.y16_c00106{bottom:370.650000px;}
.y15_c00106{bottom:394.500000px;}
.y14_c00106{bottom:418.950000px;}
.y13_c00106{bottom:443.250000px;}
.y12_c00106{bottom:467.550000px;}
.y11_c00106{bottom:492.150000px;}
.y10_c00106{bottom:516.450000px;}
.yf_c00106{bottom:541.350000px;}
.ye_c00106{bottom:565.050000px;}
.yd_c00106{bottom:589.050000px;}
.yc_c00106{bottom:614.250000px;}
.yb_c00106{bottom:637.200000px;}
.ya_c00106{bottom:661.500000px;}
.y9_c00106{bottom:686.100000px;}
.y8_c00106{bottom:710.400000px;}
.y7_c00106{bottom:734.850000px;}
.y6_c00106{bottom:759.450000px;}
.y5_c00106{bottom:784.350000px;}
.y4_c00106{bottom:808.350000px;}
.y3_c00106{bottom:833.250000px;}
.y2_c00106{bottom:857.250000px;}
.y1_c00106{bottom:881.550000px;}
.h6_c00106{height:13.200074px;}
.h7_c00106{height:43.804688px;}
.h4_c00106{height:72.168457px;}
.h2_c00106{height:79.497070px;}
.h5_c00106{height:84.269531px;}
.h3_c00106{height:91.160156px;}
.h1_c00106{height:969.000000px;}
.h0_c00106{height:969.300000px;}
.w2_c00106{width:104.875500px;}
.w0_c00106{width:658.275000px;}
.w1_c00106{width:658.500000px;}
.x0_c00106{left:0.000000px;}
.x6_c00106{left:41.850000px;}
.x1_c00106{left:44.550000px;}
.x2_c00106{left:46.200000px;}
.x3_c00106{left:47.250000px;}
.x4_c00106{left:48.300000px;}
.x7_c00106{left:49.350000px;}
.x5_c00106{left:72.900000px;}
.x9_c00106{left:280.951767px;}
.x8_c00106{left:485.400000px;}
@media print{
.v0_c00106{vertical-align:0.000000pt;}
.ls1_c00106{letter-spacing:0.000000pt;}
.ls0_c00106{letter-spacing:5.866667pt;}
.ws0_c00106{word-spacing:-15.424000pt;}
.ws1_c00106{word-spacing:0.000000pt;}
._15_c00106{margin-left:-41.184000pt;}
._11_c00106{margin-left:-23.832000pt;}
._1e_c00106{margin-left:-17.280000pt;}
._1a_c00106{margin-left:-14.880000pt;}
._18_c00106{margin-left:-13.704000pt;}
._e_c00106{margin-left:-12.648000pt;}
._8_c00106{margin-left:-8.424000pt;}
._b_c00106{margin-left:-6.984000pt;}
._9_c00106{margin-left:-5.256000pt;}
._7_c00106{margin-left:-4.320000pt;}
._5_c00106{margin-left:-2.880000pt;}
._1_c00106{margin-left:-1.512000pt;}
._3_c00106{width:1.152000pt;}
._2_c00106{width:2.952000pt;}
._4_c00106{width:4.464000pt;}
._0_c00106{width:5.616000pt;}
._6_c00106{width:6.984000pt;}
._f_c00106{width:8.208000pt;}
._a_c00106{width:9.144000pt;}
._13_c00106{width:10.488000pt;}
._d_c00106{width:11.448000pt;}
._c_c00106{width:12.888000pt;}
._10_c00106{width:13.968000pt;}
._12_c00106{width:15.552000pt;}
._16_c00106{width:22.248000pt;}
._1b_c00106{width:23.328000pt;}
._17_c00106{width:27.648000pt;}
._1d_c00106{width:33.456000pt;}
._19_c00106{width:34.560000pt;}
._1c_c00106{width:46.680000pt;}
._20_c00106{width:193.176000pt;}
._14_c00106{width:198.144000pt;}
._1f_c00106{width:257.112000pt;}
.fs5_c00106{font-size:42.666667pt;}
.fs3_c00106{font-size:50.666667pt;}
.fs4_c00106{font-size:53.333333pt;}
.fs2_c00106{font-size:58.666667pt;}
.fs1_c00106{font-size:64.000000pt;}
.fs0_c00106{font-size:72.000000pt;}
.y0_c00106{bottom:0.000000pt;}
.y25_c00106{bottom:2.760000pt;}
.y24_c00106{bottom:6.425212pt;}
.y23_c00106{bottom:45.066667pt;}
.y22_c00106{bottom:66.666667pt;}
.y21_c00106{bottom:89.200000pt;}
.y20_c00106{bottom:110.800000pt;}
.y1f_c00106{bottom:133.466667pt;}
.y1e_c00106{bottom:155.466667pt;}
.y1d_c00106{bottom:177.600000pt;}
.y1c_c00106{bottom:199.466667pt;}
.y1b_c00106{bottom:221.200000pt;}
.y1a_c00106{bottom:243.333333pt;}
.y19_c00106{bottom:264.266667pt;}
.y18_c00106{bottom:286.000000pt;}
.y17_c00106{bottom:307.866667pt;}
.y16_c00106{bottom:329.466667pt;}
.y15_c00106{bottom:350.666667pt;}
.y14_c00106{bottom:372.400000pt;}
.y13_c00106{bottom:394.000000pt;}
.y12_c00106{bottom:415.600000pt;}
.y11_c00106{bottom:437.466667pt;}
.y10_c00106{bottom:459.066667pt;}
.yf_c00106{bottom:481.200000pt;}
.ye_c00106{bottom:502.266667pt;}
.yd_c00106{bottom:523.600000pt;}
.yc_c00106{bottom:546.000000pt;}
.yb_c00106{bottom:566.400000pt;}
.ya_c00106{bottom:588.000000pt;}
.y9_c00106{bottom:609.866667pt;}
.y8_c00106{bottom:631.466667pt;}
.y7_c00106{bottom:653.200000pt;}
.y6_c00106{bottom:675.066667pt;}
.y5_c00106{bottom:697.200000pt;}
.y4_c00106{bottom:718.533333pt;}
.y3_c00106{bottom:740.666667pt;}
.y2_c00106{bottom:762.000000pt;}
.y1_c00106{bottom:783.600000pt;}
.h6_c00106{height:11.733399pt;}
.h7_c00106{height:38.937500pt;}
.h4_c00106{height:64.149740pt;}
.h2_c00106{height:70.664062pt;}
.h5_c00106{height:74.906250pt;}
.h3_c00106{height:81.031250pt;}
.h1_c00106{height:861.333333pt;}
.h0_c00106{height:861.600000pt;}
.w2_c00106{width:93.222667pt;}
.w0_c00106{width:585.133333pt;}
.w1_c00106{width:585.333333pt;}
.x0_c00106{left:0.000000pt;}
.x6_c00106{left:37.200000pt;}
.x1_c00106{left:39.600000pt;}
.x2_c00106{left:41.066667pt;}
.x3_c00106{left:42.000000pt;}
.x4_c00106{left:42.933333pt;}
.x7_c00106{left:43.866667pt;}
.x5_c00106{left:64.800000pt;}
.x9_c00106{left:249.734904pt;}
.x8_c00106{left:431.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_6909d1d6ebdd25322f8ab104.woff2')format("woff");}.ff1_c00107{font-family:ff1_c00107;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00107;src:url('chunks/assets/font_a5d8a8cd223b434a80e41bbd.woff2')format("woff");}.ff2_c00107{font-family:ff2_c00107;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00107;src:url('chunks/assets/font_a126fd93148c669f0f22a18d.woff2')format("woff");}.ff3_c00107{font-family:ff3_c00107;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00107;src:url('chunks/assets/font_e3279aeff14af55be869676f.woff2')format("woff");}.ff4_c00107{font-family:ff4_c00107;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00107;src:url('chunks/assets/font_fc07e4fbf6a2c127c29afec8.woff2')format("woff");}.ff5_c00107{font-family:ff5_c00107;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00107;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c00107{font-family:ff6_c00107;line-height:1.219238;font-style: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;}
.ls2_c00107{letter-spacing:0.000000px;}
.ls1_c00107{letter-spacing:7.080000px;}
.ls0_c00107{letter-spacing:18.216000px;}
.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;}
}
.ws1_c00107{word-spacing:-59.184000px;}
.ws0_c00107{word-spacing:-25.500000px;}
.ws2_c00107{word-spacing:-20.250000px;}
.ws3_c00107{word-spacing:0.000000px;}
._21_c00107{margin-left:-40.656000px;}
._4_c00107{margin-left:-24.960000px;}
._8_c00107{margin-left:-21.288000px;}
._5_c00107{margin-left:-18.870000px;}
._17_c00107{margin-left:-14.430000px;}
._15_c00107{margin-left:-12.966000px;}
._20_c00107{margin-left:-11.838000px;}
._16_c00107{margin-left:-9.672000px;}
._19_c00107{margin-left:-8.019000px;}
._22_c00107{margin-left:-6.846000px;}
._c_c00107{margin-left:-5.754000px;}
._1b_c00107{margin-left:-4.470000px;}
._12_c00107{margin-left:-3.468000px;}
._9_c00107{margin-left:-2.448000px;}
._e_c00107{margin-left:-1.020000px;}
._b_c00107{width:1.662000px;}
._7_c00107{width:2.856000px;}
._6_c00107{width:4.560000px;}
._d_c00107{width:5.958000px;}
._13_c00107{width:7.269000px;}
._f_c00107{width:8.319000px;}
._1c_c00107{width:9.903000px;}
._a_c00107{width:11.118000px;}
._3_c00107{width:12.720000px;}
._1_c00107{width:14.064000px;}
._1f_c00107{width:15.816000px;}
._10_c00107{width:17.085000px;}
._0_c00107{width:18.258000px;}
._1d_c00107{width:29.106000px;}
._18_c00107{width:55.878000px;}
._24_c00107{width:103.314000px;}
._23_c00107{width:114.129000px;}
._25_c00107{width:157.329000px;}
._14_c00107{width:209.835000px;}
._2_c00107{width:225.000000px;}
._1e_c00107{width:254.547000px;}
._11_c00107{width:295.590000px;}
._1a_c00107{width:503.577000px;}
.fc2_c00107{color:transparent;}
.fc1_c00107{color:rgb(128,128,128);}
.fc0_c00107{color:rgb(0,0,0);}
.fs5_c00107{font-size:48.000000px;}
.fs3_c00107{font-size:72.000000px;}
.fs4_c00107{font-size:78.000000px;}
.fs2_c00107{font-size:81.000000px;}
.fs0_c00107{font-size:102.000000px;}
.fs1_c00107{font-size:120.000000px;}
.y0_c00107{bottom:0.000000px;}
.y26_c00107{bottom:3.105000px;}
.y25_c00107{bottom:7.228369px;}
.y24_c00107{bottom:56.070000px;}
.y23_c00107{bottom:79.920000px;}
.y22_c00107{bottom:107.370000px;}
.y21_c00107{bottom:130.170000px;}
.y20_c00107{bottom:154.470000px;}
.y1f_c00107{bottom:182.520000px;}
.y1e_c00107{bottom:204.870000px;}
.y1d_c00107{bottom:230.070000px;}
.y1c_c00107{bottom:254.070000px;}
.y1b_c00107{bottom:279.420000px;}
.y1a_c00107{bottom:304.020000px;}
.y19_c00107{bottom:328.770000px;}
.y18_c00107{bottom:353.070000px;}
.y17_c00107{bottom:377.970000px;}
.y16_c00107{bottom:402.570000px;}
.y15_c00107{bottom:427.170000px;}
.y14_c00107{bottom:451.620000px;}
.y13_c00107{bottom:477.120000px;}
.y12_c00107{bottom:500.520000px;}
.y11_c00107{bottom:524.520000px;}
.y10_c00107{bottom:549.420000px;}
.yf_c00107{bottom:574.320000px;}
.ye_c00107{bottom:598.620000px;}
.yd_c00107{bottom:623.070000px;}
.yc_c00107{bottom:647.970000px;}
.yb_c00107{bottom:672.570000px;}
.ya_c00107{bottom:696.870000px;}
.y9_c00107{bottom:721.470000px;}
.y8_c00107{bottom:745.470000px;}
.y7_c00107{bottom:770.820000px;}
.y6_c00107{bottom:794.520000px;}
.y5_c00107{bottom:818.670000px;}
.y4_c00107{bottom:845.370000px;}
.y3_c00107{bottom:867.420000px;}
.y2_c00107{bottom:892.620000px;}
.y1_c00107{bottom:927.420000px;}
.h7_c00107{height:13.200073px;}
.h8_c00107{height:43.804688px;}
.h5_c00107{height:79.497070px;}
.h4_c00107{height:84.269531px;}
.h3_c00107{height:91.160156px;}
.h6_c00107{height:98.756836px;}
.h2_c00107{height:120.937500px;}
.h1_c00107{height:981.000000px;}
.h0_c00107{height:981.150000px;}
.w1_c00107{width:104.875500px;}
.w0_c00107{width:657.750000px;}
.x0_c00107{left:0.000000px;}
.x13_c00107{left:19.950000px;}
.x12_c00107{left:22.350000px;}
.x8_c00107{left:36.000000px;}
.x5_c00107{left:37.500000px;}
.x4_c00107{left:39.900000px;}
.x3_c00107{left:49.050000px;}
.x16_c00107{left:103.350000px;}
.x15_c00107{left:105.300000px;}
.x14_c00107{left:107.100000px;}
.x11_c00107{left:114.450000px;}
.xf_c00107{left:118.800000px;}
.xe_c00107{left:120.600000px;}
.xd_c00107{left:121.800000px;}
.xc_c00107{left:123.150000px;}
.xb_c00107{left:124.200000px;}
.xa_c00107{left:125.850000px;}
.x9_c00107{left:126.900000px;}
.x7_c00107{left:128.550000px;}
.x6_c00107{left:132.000000px;}
.x2_c00107{left:134.700000px;}
.x1_c00107{left:136.650000px;}
.x10_c00107{left:142.050000px;}
.x18_c00107{left:280.689240px;}
.x17_c00107{left:561.000000px;}
@media print{
.v0_c00107{vertical-align:0.000000pt;}
.ls2_c00107{letter-spacing:0.000000pt;}
.ls1_c00107{letter-spacing:6.293333pt;}
.ls0_c00107{letter-spacing:16.192000pt;}
.ws1_c00107{word-spacing:-52.608000pt;}
.ws0_c00107{word-spacing:-22.666667pt;}
.ws2_c00107{word-spacing:-18.000000pt;}
.ws3_c00107{word-spacing:0.000000pt;}
._21_c00107{margin-left:-36.138667pt;}
._4_c00107{margin-left:-22.186667pt;}
._8_c00107{margin-left:-18.922667pt;}
._5_c00107{margin-left:-16.773333pt;}
._17_c00107{margin-left:-12.826667pt;}
._15_c00107{margin-left:-11.525333pt;}
._20_c00107{margin-left:-10.522667pt;}
._16_c00107{margin-left:-8.597333pt;}
._19_c00107{margin-left:-7.128000pt;}
._22_c00107{margin-left:-6.085333pt;}
._c_c00107{margin-left:-5.114667pt;}
._1b_c00107{margin-left:-3.973333pt;}
._12_c00107{margin-left:-3.082667pt;}
._9_c00107{margin-left:-2.176000pt;}
._e_c00107{margin-left:-0.906667pt;}
._b_c00107{width:1.477333pt;}
._7_c00107{width:2.538667pt;}
._6_c00107{width:4.053333pt;}
._d_c00107{width:5.296000pt;}
._13_c00107{width:6.461333pt;}
._f_c00107{width:7.394667pt;}
._1c_c00107{width:8.802667pt;}
._a_c00107{width:9.882667pt;}
._3_c00107{width:11.306667pt;}
._1_c00107{width:12.501333pt;}
._1f_c00107{width:14.058667pt;}
._10_c00107{width:15.186667pt;}
._0_c00107{width:16.229333pt;}
._1d_c00107{width:25.872000pt;}
._18_c00107{width:49.669333pt;}
._24_c00107{width:91.834667pt;}
._23_c00107{width:101.448000pt;}
._25_c00107{width:139.848000pt;}
._14_c00107{width:186.520000pt;}
._2_c00107{width:200.000000pt;}
._1e_c00107{width:226.264000pt;}
._11_c00107{width:262.746667pt;}
._1a_c00107{width:447.624000pt;}
.fs5_c00107{font-size:42.666667pt;}
.fs3_c00107{font-size:64.000000pt;}
.fs4_c00107{font-size:69.333333pt;}
.fs2_c00107{font-size:72.000000pt;}
.fs0_c00107{font-size:90.666667pt;}
.fs1_c00107{font-size:106.666667pt;}
.y0_c00107{bottom:0.000000pt;}
.y26_c00107{bottom:2.760000pt;}
.y25_c00107{bottom:6.425217pt;}
.y24_c00107{bottom:49.840000pt;}
.y23_c00107{bottom:71.040000pt;}
.y22_c00107{bottom:95.440000pt;}
.y21_c00107{bottom:115.706667pt;}
.y20_c00107{bottom:137.306667pt;}
.y1f_c00107{bottom:162.240000pt;}
.y1e_c00107{bottom:182.106667pt;}
.y1d_c00107{bottom:204.506667pt;}
.y1c_c00107{bottom:225.840000pt;}
.y1b_c00107{bottom:248.373333pt;}
.y1a_c00107{bottom:270.240000pt;}
.y19_c00107{bottom:292.240000pt;}
.y18_c00107{bottom:313.840000pt;}
.y17_c00107{bottom:335.973333pt;}
.y16_c00107{bottom:357.840000pt;}
.y15_c00107{bottom:379.706667pt;}
.y14_c00107{bottom:401.440000pt;}
.y13_c00107{bottom:424.106667pt;}
.y12_c00107{bottom:444.906667pt;}
.y11_c00107{bottom:466.240000pt;}
.y10_c00107{bottom:488.373333pt;}
.yf_c00107{bottom:510.506667pt;}
.ye_c00107{bottom:532.106667pt;}
.yd_c00107{bottom:553.840000pt;}
.yc_c00107{bottom:575.973333pt;}
.yb_c00107{bottom:597.840000pt;}
.ya_c00107{bottom:619.440000pt;}
.y9_c00107{bottom:641.306667pt;}
.y8_c00107{bottom:662.640000pt;}
.y7_c00107{bottom:685.173333pt;}
.y6_c00107{bottom:706.240000pt;}
.y5_c00107{bottom:727.706667pt;}
.y4_c00107{bottom:751.440000pt;}
.y3_c00107{bottom:771.040000pt;}
.y2_c00107{bottom:793.440000pt;}
.y1_c00107{bottom:824.373333pt;}
.h7_c00107{height:11.733399pt;}
.h8_c00107{height:38.937500pt;}
.h5_c00107{height:70.664062pt;}
.h4_c00107{height:74.906250pt;}
.h3_c00107{height:81.031250pt;}
.h6_c00107{height:87.783854pt;}
.h2_c00107{height:107.500000pt;}
.h1_c00107{height:872.000000pt;}
.h0_c00107{height:872.133333pt;}
.w1_c00107{width:93.222667pt;}
.w0_c00107{width:584.666667pt;}
.x0_c00107{left:0.000000pt;}
.x13_c00107{left:17.733333pt;}
.x12_c00107{left:19.866667pt;}
.x8_c00107{left:32.000000pt;}
.x5_c00107{left:33.333333pt;}
.x4_c00107{left:35.466667pt;}
.x3_c00107{left:43.600000pt;}
.x16_c00107{left:91.866667pt;}
.x15_c00107{left:93.600000pt;}
.x14_c00107{left:95.200000pt;}
.x11_c00107{left:101.733333pt;}
.xf_c00107{left:105.600000pt;}
.xe_c00107{left:107.200000pt;}
.xd_c00107{left:108.266667pt;}
.xc_c00107{left:109.466667pt;}
.xb_c00107{left:110.400000pt;}
.xa_c00107{left:111.866667pt;}
.x9_c00107{left:112.800000pt;}
.x7_c00107{left:114.266667pt;}
.x6_c00107{left:117.333333pt;}
.x2_c00107{left:119.733333pt;}
.x1_c00107{left:121.466667pt;}
.x10_c00107{left:126.266667pt;}
.x18_c00107{left:249.501546pt;}
.x17_c00107{left:498.666667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_b0cfcdd83494c2f40c627054.woff2')format("woff");}.ff1_c00108{font-family:ff1_c00108;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00108;src:url('chunks/assets/font_6e7cf3603bc6744f3d12653a.woff2')format("woff");}.ff2_c00108{font-family:ff2_c00108;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00108;src:url('chunks/assets/font_cf4e101d1d3cbeb81a1cd9ac.woff2')format("woff");}.ff3_c00108{font-family:ff3_c00108;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00108;src:url('chunks/assets/font_c7d2de7914724a8c443042c7.woff2')format("woff");}.ff4_c00108{font-family:ff4_c00108;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00108;src:url('chunks/assets/font_dd836905269bb0191cfe1746.woff2')format("woff");}.ff5_c00108{font-family:ff5_c00108;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00108;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c00108{font-family:ff6_c00108;line-height:1.219238;font-style: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;}
.ls1_c00108{letter-spacing:-9.000000px;}
.ls0_c00108{letter-spacing:0.000000px;}
.sc__c00108{text-shadow:none;}
.sc0_c00108{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00108{-webkit-text-stroke:0px transparent;}
.sc0_c00108{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00108{word-spacing:-72.306000px;}
.ws1_c00108{word-spacing:-59.184000px;}
.ws2_c00108{word-spacing:-52.806000px;}
.ws3_c00108{word-spacing:-47.100000px;}
.ws4_c00108{word-spacing:0.000000px;}
._2d_c00108{margin-left:-38.052000px;}
._2b_c00108{margin-left:-35.496000px;}
._26_c00108{margin-left:-34.167000px;}
._2a_c00108{margin-left:-32.427000px;}
._27_c00108{margin-left:-31.359000px;}
._1e_c00108{margin-left:-30.294000px;}
._24_c00108{margin-left:-28.992000px;}
._21_c00108{margin-left:-27.057000px;}
._23_c00108{margin-left:-25.908000px;}
._20_c00108{margin-left:-23.949000px;}
._2c_c00108{margin-left:-20.178000px;}
._25_c00108{margin-left:-18.621000px;}
._f_c00108{margin-left:-16.443000px;}
._29_c00108{margin-left:-15.390000px;}
._22_c00108{margin-left:-14.076000px;}
._14_c00108{margin-left:-12.960000px;}
._11_c00108{margin-left:-11.907000px;}
._1d_c00108{margin-left:-10.812000px;}
._1c_c00108{margin-left:-9.774000px;}
._1f_c00108{margin-left:-8.700000px;}
._1a_c00108{margin-left:-7.695000px;}
._a_c00108{margin-left:-6.318000px;}
._3_c00108{margin-left:-5.184000px;}
._6_c00108{margin-left:-3.159000px;}
._4_c00108{margin-left:-1.620000px;}
._0_c00108{width:1.863000px;}
._1_c00108{width:3.240000px;}
._2_c00108{width:4.617000px;}
._5_c00108{width:6.075000px;}
._7_c00108{width:8.019000px;}
._b_c00108{width:9.720000px;}
._c_c00108{width:11.016000px;}
._15_c00108{width:12.474000px;}
._19_c00108{width:14.256000px;}
._17_c00108{width:15.552000px;}
._16_c00108{width:17.496000px;}
._e_c00108{width:21.303000px;}
._12_c00108{width:24.705000px;}
._28_c00108{width:28.023000px;}
._18_c00108{width:30.375000px;}
._1b_c00108{width:31.662000px;}
._8_c00108{width:43.254000px;}
._9_c00108{width:97.119000px;}
._d_c00108{width:243.243000px;}
._10_c00108{width:249.396000px;}
._13_c00108{width:267.462000px;}
.fc2_c00108{color:transparent;}
.fc1_c00108{color:rgb(128,128,128);}
.fc0_c00108{color:rgb(0,0,0);}
.fs4_c00108{font-size:48.000000px;}
.fs2_c00108{font-size:72.000000px;}
.fs1_c00108{font-size:78.000000px;}
.fs0_c00108{font-size:81.000000px;}
.fs3_c00108{font-size:102.000000px;}
.y0_c00108{bottom:0.000000px;}
.y25_c00108{bottom:3.105000px;}
.y24_c00108{bottom:7.228357px;}
.y23_c00108{bottom:61.080000px;}
.y22_c00108{bottom:84.780000px;}
.y21_c00108{bottom:110.130000px;}
.y20_c00108{bottom:135.030000px;}
.y1f_c00108{bottom:159.330000px;}
.y1e_c00108{bottom:183.630000px;}
.y1d_c00108{bottom:208.680000px;}
.y1c_c00108{bottom:233.280000px;}
.y1b_c00108{bottom:257.880000px;}
.y1a_c00108{bottom:281.880000px;}
.y19_c00108{bottom:306.180000px;}
.y18_c00108{bottom:329.130000px;}
.y17_c00108{bottom:353.430000px;}
.y16_c00108{bottom:378.030000px;}
.y15_c00108{bottom:401.730000px;}
.y14_c00108{bottom:425.880000px;}
.y13_c00108{bottom:450.180000px;}
.y12_c00108{bottom:474.180000px;}
.y11_c00108{bottom:498.780000px;}
.y10_c00108{bottom:522.480000px;}
.yf_c00108{bottom:546.780000px;}
.ye_c00108{bottom:571.080000px;}
.yd_c00108{bottom:594.330000px;}
.yc_c00108{bottom:617.730000px;}
.yb_c00108{bottom:643.230000px;}
.ya_c00108{bottom:666.330000px;}
.y9_c00108{bottom:692.280000px;}
.y8_c00108{bottom:714.930000px;}
.y7_c00108{bottom:738.480000px;}
.y6_c00108{bottom:763.380000px;}
.y5_c00108{bottom:787.080000px;}
.y4_c00108{bottom:811.980000px;}
.y3_c00108{bottom:836.280000px;}
.y2_c00108{bottom:860.580000px;}
.y1_c00108{bottom:884.580000px;}
.h6_c00108{height:13.200074px;}
.h7_c00108{height:43.804688px;}
.h2_c00108{height:79.497070px;}
.h4_c00108{height:84.269531px;}
.h3_c00108{height:98.756836px;}
.h5_c00108{height:104.839927px;}
.h0_c00108{height:962.850000px;}
.h1_c00108{height:963.000000px;}
.w2_c00108{width:104.875500px;}
.w0_c00108{width:653.925000px;}
.w1_c00108{width:654.000000px;}
.x0_c00108{left:0.000000px;}
.x4_c00108{left:54.450000px;}
.x1_c00108{left:55.950000px;}
.x2_c00108{left:57.150000px;}
.x3_c00108{left:58.350000px;}
.x6_c00108{left:278.776749px;}
.x5_c00108{left:498.750000px;}
@media print{
.v0_c00108{vertical-align:0.000000pt;}
.ls1_c00108{letter-spacing:-8.000000pt;}
.ls0_c00108{letter-spacing:0.000000pt;}
.ws0_c00108{word-spacing:-64.272000pt;}
.ws1_c00108{word-spacing:-52.608000pt;}
.ws2_c00108{word-spacing:-46.938667pt;}
.ws3_c00108{word-spacing:-41.866667pt;}
.ws4_c00108{word-spacing:0.000000pt;}
._2d_c00108{margin-left:-33.824000pt;}
._2b_c00108{margin-left:-31.552000pt;}
._26_c00108{margin-left:-30.370667pt;}
._2a_c00108{margin-left:-28.824000pt;}
._27_c00108{margin-left:-27.874667pt;}
._1e_c00108{margin-left:-26.928000pt;}
._24_c00108{margin-left:-25.770667pt;}
._21_c00108{margin-left:-24.050667pt;}
._23_c00108{margin-left:-23.029333pt;}
._20_c00108{margin-left:-21.288000pt;}
._2c_c00108{margin-left:-17.936000pt;}
._25_c00108{margin-left:-16.552000pt;}
._f_c00108{margin-left:-14.616000pt;}
._29_c00108{margin-left:-13.680000pt;}
._22_c00108{margin-left:-12.512000pt;}
._14_c00108{margin-left:-11.520000pt;}
._11_c00108{margin-left:-10.584000pt;}
._1d_c00108{margin-left:-9.610667pt;}
._1c_c00108{margin-left:-8.688000pt;}
._1f_c00108{margin-left:-7.733333pt;}
._1a_c00108{margin-left:-6.840000pt;}
._a_c00108{margin-left:-5.616000pt;}
._3_c00108{margin-left:-4.608000pt;}
._6_c00108{margin-left:-2.808000pt;}
._4_c00108{margin-left:-1.440000pt;}
._0_c00108{width:1.656000pt;}
._1_c00108{width:2.880000pt;}
._2_c00108{width:4.104000pt;}
._5_c00108{width:5.400000pt;}
._7_c00108{width:7.128000pt;}
._b_c00108{width:8.640000pt;}
._c_c00108{width:9.792000pt;}
._15_c00108{width:11.088000pt;}
._19_c00108{width:12.672000pt;}
._17_c00108{width:13.824000pt;}
._16_c00108{width:15.552000pt;}
._e_c00108{width:18.936000pt;}
._12_c00108{width:21.960000pt;}
._28_c00108{width:24.909333pt;}
._18_c00108{width:27.000000pt;}
._1b_c00108{width:28.144000pt;}
._8_c00108{width:38.448000pt;}
._9_c00108{width:86.328000pt;}
._d_c00108{width:216.216000pt;}
._10_c00108{width:221.685333pt;}
._13_c00108{width:237.744000pt;}
.fs4_c00108{font-size:42.666667pt;}
.fs2_c00108{font-size:64.000000pt;}
.fs1_c00108{font-size:69.333333pt;}
.fs0_c00108{font-size:72.000000pt;}
.fs3_c00108{font-size:90.666667pt;}
.y0_c00108{bottom:0.000000pt;}
.y25_c00108{bottom:2.760000pt;}
.y24_c00108{bottom:6.425206pt;}
.y23_c00108{bottom:54.293333pt;}
.y22_c00108{bottom:75.360000pt;}
.y21_c00108{bottom:97.893333pt;}
.y20_c00108{bottom:120.026667pt;}
.y1f_c00108{bottom:141.626667pt;}
.y1e_c00108{bottom:163.226667pt;}
.y1d_c00108{bottom:185.493333pt;}
.y1c_c00108{bottom:207.360000pt;}
.y1b_c00108{bottom:229.226667pt;}
.y1a_c00108{bottom:250.560000pt;}
.y19_c00108{bottom:272.160000pt;}
.y18_c00108{bottom:292.560000pt;}
.y17_c00108{bottom:314.160000pt;}
.y16_c00108{bottom:336.026667pt;}
.y15_c00108{bottom:357.093333pt;}
.y14_c00108{bottom:378.560000pt;}
.y13_c00108{bottom:400.160000pt;}
.y12_c00108{bottom:421.493333pt;}
.y11_c00108{bottom:443.360000pt;}
.y10_c00108{bottom:464.426667pt;}
.yf_c00108{bottom:486.026667pt;}
.ye_c00108{bottom:507.626667pt;}
.yd_c00108{bottom:528.293333pt;}
.yc_c00108{bottom:549.093333pt;}
.yb_c00108{bottom:571.760000pt;}
.ya_c00108{bottom:592.293333pt;}
.y9_c00108{bottom:615.360000pt;}
.y8_c00108{bottom:635.493333pt;}
.y7_c00108{bottom:656.426667pt;}
.y6_c00108{bottom:678.560000pt;}
.y5_c00108{bottom:699.626667pt;}
.y4_c00108{bottom:721.760000pt;}
.y3_c00108{bottom:743.360000pt;}
.y2_c00108{bottom:764.960000pt;}
.y1_c00108{bottom:786.293333pt;}
.h6_c00108{height:11.733399pt;}
.h7_c00108{height:38.937500pt;}
.h2_c00108{height:70.664062pt;}
.h4_c00108{height:74.906250pt;}
.h3_c00108{height:87.783854pt;}
.h5_c00108{height:93.191046pt;}
.h0_c00108{height:855.866667pt;}
.h1_c00108{height:856.000000pt;}
.w2_c00108{width:93.222667pt;}
.w0_c00108{width:581.266667pt;}
.w1_c00108{width:581.333333pt;}
.x0_c00108{left:0.000000pt;}
.x4_c00108{left:48.400000pt;}
.x1_c00108{left:49.733333pt;}
.x2_c00108{left:50.800000pt;}
.x3_c00108{left:51.866667pt;}
.x6_c00108{left:247.801554pt;}
.x5_c00108{left:443.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e408e995bbc0584a0c1e68c1.woff2')format("woff");}.ff1_c00109{font-family:ff1_c00109;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00109;src:url('chunks/assets/font_7735bd42e258d8a5117951e4.woff2')format("woff");}.ff2_c00109{font-family:ff2_c00109;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00109;src:url('chunks/assets/font_f2d66f7fb1116d13842a9898.woff2')format("woff");}.ff3_c00109{font-family:ff3_c00109;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00109;src:url('chunks/assets/font_3046a5a3c2986997436a1f54.woff2')format("woff");}.ff4_c00109{font-family:ff4_c00109;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00109;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c00109{font-family:ff5_c00109;line-height:1.219238;font-style: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;}
.v1_c00109{vertical-align:155.400000px;}
.ls1_c00109{letter-spacing:0.000000px;}
.ls0_c00109{letter-spacing:4.740000px;}
.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;}
}
.ws1_c00109{word-spacing:-20.250000px;}
.ws0_c00109{word-spacing:-17.352000px;}
.ws2_c00109{word-spacing:0.000000px;}
._1c_c00109{margin-left:-18.306000px;}
._1_c00109{margin-left:-13.560000px;}
._2_c00109{margin-left:-11.880000px;}
._c_c00109{margin-left:-10.608000px;}
._e_c00109{margin-left:-9.282000px;}
._0_c00109{margin-left:-8.160000px;}
._f_c00109{margin-left:-6.324000px;}
._d_c00109{margin-left:-5.316000px;}
._a_c00109{margin-left:-4.182000px;}
._8_c00109{margin-left:-3.060000px;}
._10_c00109{margin-left:-1.701000px;}
._b_c00109{width:1.938000px;}
._7_c00109{width:3.162000px;}
._12_c00109{width:4.422000px;}
._11_c00109{width:5.469000px;}
._4_c00109{width:7.038000px;}
._13_c00109{width:8.136000px;}
._5_c00109{width:10.098000px;}
._18_c00109{width:11.163000px;}
._6_c00109{width:12.648000px;}
._1a_c00109{width:13.668000px;}
._9_c00109{width:14.688000px;}
._15_c00109{width:16.155000px;}
._17_c00109{width:18.426000px;}
._16_c00109{width:22.326000px;}
._1b_c00109{width:25.983000px;}
._1d_c00109{width:29.301000px;}
._14_c00109{width:35.832000px;}
._19_c00109{width:38.505000px;}
._3_c00109{width:232.440000px;}
.fc2_c00109{color:transparent;}
.fc1_c00109{color:rgb(128,128,128);}
.fc0_c00109{color:rgb(0,0,0);}
.fs6_c00109{font-size:48.000000px;}
.fs4_c00109{font-size:57.000000px;}
.fs3_c00109{font-size:72.000000px;}
.fs2_c00109{font-size:81.000000px;}
.fs1_c00109{font-size:102.000000px;}
.fs0_c00109{font-size:120.000000px;}
.fs5_c00109{font-size:285.000000px;}
.y0_c00109{bottom:0.000000px;}
.y25_c00109{bottom:3.105000px;}
.y24_c00109{bottom:7.228357px;}
.y23_c00109{bottom:66.480000px;}
.y22_c00109{bottom:89.130000px;}
.y21_c00109{bottom:114.480000px;}
.y20_c00109{bottom:138.780000px;}
.y1f_c00109{bottom:163.380000px;}
.y1e_c00109{bottom:187.980000px;}
.y1d_c00109{bottom:212.580000px;}
.y1c_c00109{bottom:237.330000px;}
.y1b_c00109{bottom:261.330000px;}
.y1a_c00109{bottom:285.930000px;}
.y19_c00109{bottom:310.230000px;}
.y18_c00109{bottom:334.530000px;}
.y17_c00109{bottom:358.530000px;}
.y16_c00109{bottom:382.830000px;}
.y15_c00109{bottom:406.980000px;}
.y13_c00109{bottom:416.880000px;}
.y14_c00109{bottom:431.430000px;}
.y12_c00109{bottom:480.030000px;}
.y11_c00109{bottom:527.580000px;}
.y10_c00109{bottom:552.180000px;}
.yf_c00109{bottom:576.180000px;}
.ye_c00109{bottom:600.180000px;}
.yd_c00109{bottom:624.480000px;}
.yc_c00109{bottom:648.630000px;}
.yb_c00109{bottom:672.630000px;}
.ya_c00109{bottom:696.630000px;}
.y9_c00109{bottom:721.230000px;}
.y8_c00109{bottom:745.980000px;}
.y7_c00109{bottom:768.930000px;}
.y6_c00109{bottom:793.230000px;}
.y5_c00109{bottom:817.080000px;}
.y4_c00109{bottom:841.080000px;}
.y3_c00109{bottom:865.080000px;}
.y2_c00109{bottom:889.080000px;}
.y1_c00109{bottom:923.430000px;}
.h6_c00109{height:13.200074px;}
.h7_c00109{height:43.804688px;}
.h4_c00109{height:66.713379px;}
.h2_c00109{height:79.497070px;}
.h3_c00109{height:84.269531px;}
.h1_c00109{height:120.937500px;}
.h5_c00109{height:279.711914px;}
.h0_c00109{height:995.250000px;}
.w2_c00109{width:104.875500px;}
.w0_c00109{width:667.425000px;}
.w1_c00109{width:667.500000px;}
.x0_c00109{left:0.000000px;}
.x4_c00109{left:38.550000px;}
.x11_c00109{left:112.350000px;}
.x10_c00109{left:113.700000px;}
.xf_c00109{left:114.750000px;}
.xe_c00109{left:115.800000px;}
.xd_c00109{left:116.850000px;}
.xc_c00109{left:117.900000px;}
.xb_c00109{left:119.850000px;}
.x8_c00109{left:123.300000px;}
.x7_c00109{left:124.950000px;}
.x6_c00109{left:126.600000px;}
.x3_c00109{left:128.550000px;}
.x2_c00109{left:129.600000px;}
.x1_c00109{left:131.550000px;}
.xa_c00109{left:164.400000px;}
.x5_c00109{left:173.100000px;}
.x9_c00109{left:245.700000px;}
.x13_c00109{left:285.526749px;}
.x12_c00109{left:534.000000px;}
@media print{
.v0_c00109{vertical-align:0.000000pt;}
.v1_c00109{vertical-align:138.133333pt;}
.ls1_c00109{letter-spacing:0.000000pt;}
.ls0_c00109{letter-spacing:4.213333pt;}
.ws1_c00109{word-spacing:-18.000000pt;}
.ws0_c00109{word-spacing:-15.424000pt;}
.ws2_c00109{word-spacing:0.000000pt;}
._1c_c00109{margin-left:-16.272000pt;}
._1_c00109{margin-left:-12.053333pt;}
._2_c00109{margin-left:-10.560000pt;}
._c_c00109{margin-left:-9.429333pt;}
._e_c00109{margin-left:-8.250667pt;}
._0_c00109{margin-left:-7.253333pt;}
._f_c00109{margin-left:-5.621333pt;}
._d_c00109{margin-left:-4.725333pt;}
._a_c00109{margin-left:-3.717333pt;}
._8_c00109{margin-left:-2.720000pt;}
._10_c00109{margin-left:-1.512000pt;}
._b_c00109{width:1.722667pt;}
._7_c00109{width:2.810667pt;}
._12_c00109{width:3.930667pt;}
._11_c00109{width:4.861333pt;}
._4_c00109{width:6.256000pt;}
._13_c00109{width:7.232000pt;}
._5_c00109{width:8.976000pt;}
._18_c00109{width:9.922667pt;}
._6_c00109{width:11.242667pt;}
._1a_c00109{width:12.149333pt;}
._9_c00109{width:13.056000pt;}
._15_c00109{width:14.360000pt;}
._17_c00109{width:16.378667pt;}
._16_c00109{width:19.845333pt;}
._1b_c00109{width:23.096000pt;}
._1d_c00109{width:26.045333pt;}
._14_c00109{width:31.850667pt;}
._19_c00109{width:34.226667pt;}
._3_c00109{width:206.613333pt;}
.fs6_c00109{font-size:42.666667pt;}
.fs4_c00109{font-size:50.666667pt;}
.fs3_c00109{font-size:64.000000pt;}
.fs2_c00109{font-size:72.000000pt;}
.fs1_c00109{font-size:90.666667pt;}
.fs0_c00109{font-size:106.666667pt;}
.fs5_c00109{font-size:253.333333pt;}
.y0_c00109{bottom:0.000000pt;}
.y25_c00109{bottom:2.760000pt;}
.y24_c00109{bottom:6.425206pt;}
.y23_c00109{bottom:59.093333pt;}
.y22_c00109{bottom:79.226667pt;}
.y21_c00109{bottom:101.760000pt;}
.y20_c00109{bottom:123.360000pt;}
.y1f_c00109{bottom:145.226667pt;}
.y1e_c00109{bottom:167.093333pt;}
.y1d_c00109{bottom:188.960000pt;}
.y1c_c00109{bottom:210.960000pt;}
.y1b_c00109{bottom:232.293333pt;}
.y1a_c00109{bottom:254.160000pt;}
.y19_c00109{bottom:275.760000pt;}
.y18_c00109{bottom:297.360000pt;}
.y17_c00109{bottom:318.693333pt;}
.y16_c00109{bottom:340.293333pt;}
.y15_c00109{bottom:361.760000pt;}
.y13_c00109{bottom:370.560000pt;}
.y14_c00109{bottom:383.493333pt;}
.y12_c00109{bottom:426.693333pt;}
.y11_c00109{bottom:468.960000pt;}
.y10_c00109{bottom:490.826667pt;}
.yf_c00109{bottom:512.160000pt;}
.ye_c00109{bottom:533.493333pt;}
.yd_c00109{bottom:555.093333pt;}
.yc_c00109{bottom:576.560000pt;}
.yb_c00109{bottom:597.893333pt;}
.ya_c00109{bottom:619.226667pt;}
.y9_c00109{bottom:641.093333pt;}
.y8_c00109{bottom:663.093333pt;}
.y7_c00109{bottom:683.493333pt;}
.y6_c00109{bottom:705.093333pt;}
.y5_c00109{bottom:726.293333pt;}
.y4_c00109{bottom:747.626667pt;}
.y3_c00109{bottom:768.960000pt;}
.y2_c00109{bottom:790.293333pt;}
.y1_c00109{bottom:820.826667pt;}
.h6_c00109{height:11.733399pt;}
.h7_c00109{height:38.937500pt;}
.h4_c00109{height:59.300781pt;}
.h2_c00109{height:70.664062pt;}
.h3_c00109{height:74.906250pt;}
.h1_c00109{height:107.500000pt;}
.h5_c00109{height:248.632812pt;}
.h0_c00109{height:884.666667pt;}
.w2_c00109{width:93.222667pt;}
.w0_c00109{width:593.266667pt;}
.w1_c00109{width:593.333333pt;}
.x0_c00109{left:0.000000pt;}
.x4_c00109{left:34.266667pt;}
.x11_c00109{left:99.866667pt;}
.x10_c00109{left:101.066667pt;}
.xf_c00109{left:102.000000pt;}
.xe_c00109{left:102.933333pt;}
.xd_c00109{left:103.866667pt;}
.xc_c00109{left:104.800000pt;}
.xb_c00109{left:106.533333pt;}
.x8_c00109{left:109.600000pt;}
.x7_c00109{left:111.066667pt;}
.x6_c00109{left:112.533333pt;}
.x3_c00109{left:114.266667pt;}
.x2_c00109{left:115.200000pt;}
.x1_c00109{left:116.933333pt;}
.xa_c00109{left:146.133333pt;}
.x5_c00109{left:153.866667pt;}
.x9_c00109{left:218.400000pt;}
.x13_c00109{left:253.801554pt;}
.x12_c00109{left:474.666667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_68451b1671ac1115c8bc74db.woff2')format("woff");}.ff1_c00110{font-family:ff1_c00110;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00110;src:url('chunks/assets/font_d333d102418b09bfd0c51cee.woff2')format("woff");}.ff2_c00110{font-family:ff2_c00110;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00110;src:url('chunks/assets/font_8bb52ba1621e03398c9a6a77.woff2')format("woff");}.ff3_c00110{font-family:ff3_c00110;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00110;src:url('chunks/assets/font_e928dbd8501a77da41edf29c.woff2')format("woff");}.ff4_c00110{font-family:ff4_c00110;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00110;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff5_c00110{font-family:ff5_c00110;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00110;src:url('chunks/assets/font_a158b68c7dd84537572a9c0f.woff2')format("woff");}.ff6_c00110{font-family:ff6_c00110;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00110;src:url('chunks/assets/font_2d3854195a3a858c1e4da05a.woff2')format("woff");}.ff7_c00110{font-family:ff7_c00110;line-height:1.437000;font-style:normal;font-weight: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_c00110;src:url('chunks/assets/font_f8b0c5a3ca2c23ba0b67ece1.woff2')format("woff");}.ff8_c00110{font-family:ff8_c00110;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00110;src:url('chunks/assets/font_f1401c5984200e96d38af592.woff2')format("woff");}.ff9_c00110{font-family:ff9_c00110;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00110;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ffa_c00110{font-family:ffa_c00110;line-height:1.219238;font-style: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;}
.ls6_c00110{letter-spacing:-9.000000px;}
.ls5_c00110{letter-spacing:0.000000px;}
.ls3_c00110{letter-spacing:6.000000px;}
.ls0_c00110{letter-spacing:8.100000px;}
.ls4_c00110{letter-spacing:10.171200px;}
.ls1_c00110{letter-spacing:22.804800px;}
.ls2_c00110{letter-spacing:25.650000px;}
.sc__c00110{text-shadow:none;}
.sc0_c00110{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00110{-webkit-text-stroke:0px transparent;}
.sc0_c00110{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00110{word-spacing:-67.686000px;}
.ws2_c00110{word-spacing:-33.000000px;}
.ws5_c00110{word-spacing:-22.518000px;}
.ws1_c00110{word-spacing:-17.352000px;}
.ws0_c00110{word-spacing:-9.321000px;}
.ws4_c00110{word-spacing:-0.936000px;}
.ws6_c00110{word-spacing:0.000000px;}
._25_c00110{margin-left:-32.196000px;}
._27_c00110{margin-left:-30.819000px;}
._26_c00110{margin-left:-28.476000px;}
._1d_c00110{margin-left:-23.253000px;}
._e_c00110{margin-left:-21.177000px;}
._21_c00110{margin-left:-17.973000px;}
._23_c00110{margin-left:-16.812000px;}
._24_c00110{margin-left:-15.303000px;}
._12_c00110{margin-left:-14.112000px;}
._11_c00110{margin-left:-12.654000px;}
._22_c00110{margin-left:-11.604000px;}
._d_c00110{margin-left:-9.639000px;}
._c_c00110{margin-left:-8.244000px;}
._10_c00110{margin-left:-7.155000px;}
._a_c00110{margin-left:-6.030000px;}
._4_c00110{margin-left:-4.059000px;}
._7_c00110{margin-left:-2.673000px;}
._6_c00110{margin-left:-1.584000px;}
._5_c00110{width:1.287000px;}
._3_c00110{width:2.376000px;}
._2_c00110{width:3.465000px;}
._b_c00110{width:4.572000px;}
._1_c00110{width:5.643000px;}
._0_c00110{width:7.524000px;}
._13_c00110{width:8.730000px;}
._14_c00110{width:10.602000px;}
._15_c00110{width:11.664000px;}
._17_c00110{width:13.230000px;}
._f_c00110{width:14.538000px;}
._18_c00110{width:15.957000px;}
._20_c00110{width:17.175000px;}
._1a_c00110{width:18.927000px;}
._16_c00110{width:21.666000px;}
._1e_c00110{width:26.748000px;}
._9_c00110{width:33.363000px;}
._1c_c00110{width:35.262000px;}
._8_c00110{width:38.016000px;}
._1b_c00110{width:124.128000px;}
._1f_c00110{width:170.199000px;}
._19_c00110{width:1287.306000px;}
.fc2_c00110{color:transparent;}
.fc1_c00110{color:rgb(128,128,128);}
.fc0_c00110{color:rgb(0,0,0);}
.fs3_c00110{font-size:21.600000px;}
.fs2_c00110{font-size:27.000000px;}
.fs9_c00110{font-size:48.000000px;}
.fs7_c00110{font-size:64.800000px;}
.fs5_c00110{font-size:66.000000px;}
.fs4_c00110{font-size:72.000000px;}
.fs1_c00110{font-size:81.000000px;}
.fs6_c00110{font-size:87.000000px;}
.fs0_c00110{font-size:99.000000px;}
.fs8_c00110{font-size:102.000000px;}
.y0_c00110{bottom:0.000000px;}
.y25_c00110{bottom:3.105000px;}
.y24_c00110{bottom:7.228371px;}
.y23_c00110{bottom:97.515000px;}
.y22_c00110{bottom:122.865000px;}
.y21_c00110{bottom:147.465000px;}
.y20_c00110{bottom:171.165000px;}
.y1f_c00110{bottom:195.465000px;}
.y1e_c00110{bottom:219.765000px;}
.y1d_c00110{bottom:244.365000px;}
.y1c_c00110{bottom:268.365000px;}
.y1b_c00110{bottom:292.365000px;}
.y1a_c00110{bottom:316.215000px;}
.y19_c00110{bottom:339.915000px;}
.y18_c00110{bottom:364.515000px;}
.y17_c00110{bottom:387.915000px;}
.y16_c00110{bottom:412.215000px;}
.y15_c00110{bottom:438.765000px;}
.y14_c00110{bottom:460.365000px;}
.y13_c00110{bottom:484.065000px;}
.y12_c00110{bottom:508.065000px;}
.y11_c00110{bottom:532.665000px;}
.y10_c00110{bottom:555.915000px;}
.yf_c00110{bottom:580.215000px;}
.ye_c00110{bottom:603.165000px;}
.yd_c00110{bottom:627.165000px;}
.yc_c00110{bottom:651.165000px;}
.yb_c00110{bottom:675.315000px;}
.ya_c00110{bottom:693.915000px;}
.y9_c00110{bottom:723.015000px;}
.y8_c00110{bottom:747.315000px;}
.y7_c00110{bottom:771.315000px;}
.y6_c00110{bottom:796.215000px;}
.y5_c00110{bottom:819.765000px;}
.y4_c00110{bottom:844.065000px;}
.y3_c00110{bottom:869.415000px;}
.y2_c00110{bottom:892.815000px;}
.y1_c00110{bottom:927.765000px;}
.h8_c00110{height:13.200074px;}
.h9_c00110{height:43.804688px;}
.h3_c00110{height:79.497070px;}
.h5_c00110{height:84.269531px;}
.h4_c00110{height:91.160156px;}
.h6_c00110{height:91.176000px;}
.h7_c00110{height:104.839927px;}
.h2_c00110{height:115.870605px;}
.h0_c00110{height:989.025000px;}
.h1_c00110{height:989.250000px;}
.w1_c00110{width:104.875500px;}
.w0_c00110{width:672.000000px;}
.x0_c00110{left:0.000000px;}
.x3_c00110{left:47.850000px;}
.x2_c00110{left:51.750000px;}
.x4_c00110{left:53.550000px;}
.x5_c00110{left:54.600000px;}
.x6_c00110{left:55.650000px;}
.x8_c00110{left:56.700000px;}
.x9_c00110{left:57.750000px;}
.xa_c00110{left:58.800000px;}
.xb_c00110{left:59.850000px;}
.xc_c00110{left:61.050000px;}
.xd_c00110{left:62.100000px;}
.xe_c00110{left:63.900000px;}
.x7_c00110{left:81.000000px;}
.x1_c00110{left:95.850000px;}
.xf_c00110{left:287.814240px;}
@media print{
.v0_c00110{vertical-align:0.000000pt;}
.ls6_c00110{letter-spacing:-8.000000pt;}
.ls5_c00110{letter-spacing:0.000000pt;}
.ls3_c00110{letter-spacing:5.333333pt;}
.ls0_c00110{letter-spacing:7.200000pt;}
.ls4_c00110{letter-spacing:9.041067pt;}
.ls1_c00110{letter-spacing:20.270933pt;}
.ls2_c00110{letter-spacing:22.800000pt;}
.ws3_c00110{word-spacing:-60.165333pt;}
.ws2_c00110{word-spacing:-29.333333pt;}
.ws5_c00110{word-spacing:-20.016000pt;}
.ws1_c00110{word-spacing:-15.424000pt;}
.ws0_c00110{word-spacing:-8.285333pt;}
.ws4_c00110{word-spacing:-0.832000pt;}
.ws6_c00110{word-spacing:0.000000pt;}
._25_c00110{margin-left:-28.618667pt;}
._27_c00110{margin-left:-27.394667pt;}
._26_c00110{margin-left:-25.312000pt;}
._1d_c00110{margin-left:-20.669333pt;}
._e_c00110{margin-left:-18.824000pt;}
._21_c00110{margin-left:-15.976000pt;}
._23_c00110{margin-left:-14.944000pt;}
._24_c00110{margin-left:-13.602667pt;}
._12_c00110{margin-left:-12.544000pt;}
._11_c00110{margin-left:-11.248000pt;}
._22_c00110{margin-left:-10.314667pt;}
._d_c00110{margin-left:-8.568000pt;}
._c_c00110{margin-left:-7.328000pt;}
._10_c00110{margin-left:-6.360000pt;}
._a_c00110{margin-left:-5.360000pt;}
._4_c00110{margin-left:-3.608000pt;}
._7_c00110{margin-left:-2.376000pt;}
._6_c00110{margin-left:-1.408000pt;}
._5_c00110{width:1.144000pt;}
._3_c00110{width:2.112000pt;}
._2_c00110{width:3.080000pt;}
._b_c00110{width:4.064000pt;}
._1_c00110{width:5.016000pt;}
._0_c00110{width:6.688000pt;}
._13_c00110{width:7.760000pt;}
._14_c00110{width:9.424000pt;}
._15_c00110{width:10.368000pt;}
._17_c00110{width:11.760000pt;}
._f_c00110{width:12.922667pt;}
._18_c00110{width:14.184000pt;}
._20_c00110{width:15.266667pt;}
._1a_c00110{width:16.824000pt;}
._16_c00110{width:19.258667pt;}
._1e_c00110{width:23.776000pt;}
._9_c00110{width:29.656000pt;}
._1c_c00110{width:31.344000pt;}
._8_c00110{width:33.792000pt;}
._1b_c00110{width:110.336000pt;}
._1f_c00110{width:151.288000pt;}
._19_c00110{width:1144.272000pt;}
.fs3_c00110{font-size:19.200000pt;}
.fs2_c00110{font-size:24.000000pt;}
.fs9_c00110{font-size:42.666667pt;}
.fs7_c00110{font-size:57.600000pt;}
.fs5_c00110{font-size:58.666667pt;}
.fs4_c00110{font-size:64.000000pt;}
.fs1_c00110{font-size:72.000000pt;}
.fs6_c00110{font-size:77.333333pt;}
.fs0_c00110{font-size:88.000000pt;}
.fs8_c00110{font-size:90.666667pt;}
.y0_c00110{bottom:0.000000pt;}
.y25_c00110{bottom:2.760000pt;}
.y24_c00110{bottom:6.425219pt;}
.y23_c00110{bottom:86.680000pt;}
.y22_c00110{bottom:109.213333pt;}
.y21_c00110{bottom:131.080000pt;}
.y20_c00110{bottom:152.146667pt;}
.y1f_c00110{bottom:173.746667pt;}
.y1e_c00110{bottom:195.346667pt;}
.y1d_c00110{bottom:217.213333pt;}
.y1c_c00110{bottom:238.546667pt;}
.y1b_c00110{bottom:259.880000pt;}
.y1a_c00110{bottom:281.080000pt;}
.y19_c00110{bottom:302.146667pt;}
.y18_c00110{bottom:324.013333pt;}
.y17_c00110{bottom:344.813333pt;}
.y16_c00110{bottom:366.413333pt;}
.y15_c00110{bottom:390.013333pt;}
.y14_c00110{bottom:409.213333pt;}
.y13_c00110{bottom:430.280000pt;}
.y12_c00110{bottom:451.613333pt;}
.y11_c00110{bottom:473.480000pt;}
.y10_c00110{bottom:494.146667pt;}
.yf_c00110{bottom:515.746667pt;}
.ye_c00110{bottom:536.146667pt;}
.yd_c00110{bottom:557.480000pt;}
.yc_c00110{bottom:578.813333pt;}
.yb_c00110{bottom:600.280000pt;}
.ya_c00110{bottom:616.813333pt;}
.y9_c00110{bottom:642.680000pt;}
.y8_c00110{bottom:664.280000pt;}
.y7_c00110{bottom:685.613333pt;}
.y6_c00110{bottom:707.746667pt;}
.y5_c00110{bottom:728.680000pt;}
.y4_c00110{bottom:750.280000pt;}
.y3_c00110{bottom:772.813333pt;}
.y2_c00110{bottom:793.613333pt;}
.y1_c00110{bottom:824.680000pt;}
.h8_c00110{height:11.733399pt;}
.h9_c00110{height:38.937500pt;}
.h3_c00110{height:70.664062pt;}
.h5_c00110{height:74.906250pt;}
.h4_c00110{height:81.031250pt;}
.h6_c00110{height:81.045333pt;}
.h7_c00110{height:93.191046pt;}
.h2_c00110{height:102.996094pt;}
.h0_c00110{height:879.133333pt;}
.h1_c00110{height:879.333333pt;}
.w1_c00110{width:93.222667pt;}
.w0_c00110{width:597.333333pt;}
.x0_c00110{left:0.000000pt;}
.x3_c00110{left:42.533333pt;}
.x2_c00110{left:46.000000pt;}
.x4_c00110{left:47.600000pt;}
.x5_c00110{left:48.533333pt;}
.x6_c00110{left:49.466667pt;}
.x8_c00110{left:50.400000pt;}
.x9_c00110{left:51.333333pt;}
.xa_c00110{left:52.266667pt;}
.xb_c00110{left:53.200000pt;}
.xc_c00110{left:54.266667pt;}
.xd_c00110{left:55.200000pt;}
.xe_c00110{left:56.800000pt;}
.x7_c00110{left:72.000000pt;}
.x1_c00110{left:85.200000pt;}
.xf_c00110{left:255.834880pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1d1ef7f414826e8467f7e57d.woff2')format("woff");}.ff1_c00111{font-family:ff1_c00111;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00111;src:url('chunks/assets/font_2149eaa41869fdb000a3dd49.woff2')format("woff");}.ff2_c00111{font-family:ff2_c00111;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00111;src:url('chunks/assets/font_1fc64ee91b17938aec41615f.woff2')format("woff");}.ff3_c00111{font-family:ff3_c00111;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00111;src:url('chunks/assets/font_e43c274316136f5e0ff43b91.woff2')format("woff");}.ff4_c00111{font-family:ff4_c00111;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00111;src:url('chunks/assets/font_23912cdaca9f9c8b4926014d.woff2')format("woff");}.ff5_c00111{font-family:ff5_c00111;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00111;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c00111{font-family:ff6_c00111;line-height:1.219238;font-style: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;}
.ls1_c00111{letter-spacing:0.000000px;}
.ls0_c00111{letter-spacing:3.960000px;}
.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:-72.306000px;}
.ws1_c00111{word-spacing:-59.184000px;}
.ws2_c00111{word-spacing:-20.250000px;}
.ws3_c00111{word-spacing:0.000000px;}
._f_c00111{margin-left:-26.082000px;}
._2_c00111{margin-left:-24.276000px;}
._22_c00111{margin-left:-18.447000px;}
._1a_c00111{margin-left:-17.415000px;}
._e_c00111{margin-left:-13.209000px;}
._1f_c00111{margin-left:-11.907000px;}
._1_c00111{margin-left:-9.996000px;}
._11_c00111{margin-left:-8.829000px;}
._0_c00111{margin-left:-7.038000px;}
._10_c00111{margin-left:-5.931000px;}
._b_c00111{margin-left:-4.536000px;}
._17_c00111{margin-left:-3.474000px;}
._d_c00111{margin-left:-2.367000px;}
._15_c00111{margin-left:-1.242000px;}
._3_c00111{width:1.734000px;}
._8_c00111{width:3.162000px;}
._9_c00111{width:4.212000px;}
._a_c00111{width:5.475000px;}
._5_c00111{width:7.038000px;}
._c_c00111{width:8.082000px;}
._18_c00111{width:9.558000px;}
._4_c00111{width:10.608000px;}
._7_c00111{width:12.342000px;}
._6_c00111{width:13.770000px;}
._1c_c00111{width:16.200000px;}
._1d_c00111{width:25.707000px;}
._16_c00111{width:43.197000px;}
._21_c00111{width:66.159000px;}
._1e_c00111{width:108.054000px;}
._13_c00111{width:127.743000px;}
._20_c00111{width:153.819000px;}
._12_c00111{width:172.368000px;}
._19_c00111{width:223.902000px;}
._14_c00111{width:231.063000px;}
._1b_c00111{width:270.249000px;}
.fc2_c00111{color:transparent;}
.fc1_c00111{color:rgb(128,128,128);}
.fc0_c00111{color:rgb(0,0,0);}
.fs5_c00111{font-size:48.000000px;}
.fs4_c00111{font-size:72.000000px;}
.fs3_c00111{font-size:78.000000px;}
.fs2_c00111{font-size:81.000000px;}
.fs1_c00111{font-size:102.000000px;}
.fs0_c00111{font-size:120.000000px;}
.y0_c00111{bottom:0.000000px;}
.y26_c00111{bottom:3.105000px;}
.y25_c00111{bottom:7.228369px;}
.y24_c00111{bottom:73.470000px;}
.y23_c00111{bottom:96.420000px;}
.y22_c00111{bottom:121.170000px;}
.y21_c00111{bottom:145.770000px;}
.y20_c00111{bottom:170.370000px;}
.y1f_c00111{bottom:194.970000px;}
.y1e_c00111{bottom:219.420000px;}
.y1d_c00111{bottom:243.720000px;}
.y1c_c00111{bottom:268.320000px;}
.y1b_c00111{bottom:292.170000px;}
.y1a_c00111{bottom:317.520000px;}
.y19_c00111{bottom:342.120000px;}
.y18_c00111{bottom:366.570000px;}
.y17_c00111{bottom:392.520000px;}
.y16_c00111{bottom:414.720000px;}
.y15_c00111{bottom:438.720000px;}
.y14_c00111{bottom:462.720000px;}
.y13_c00111{bottom:487.020000px;}
.y12_c00111{bottom:510.870000px;}
.y11_c00111{bottom:534.870000px;}
.y10_c00111{bottom:558.870000px;}
.yf_c00111{bottom:583.170000px;}
.ye_c00111{bottom:607.170000px;}
.yd_c00111{bottom:631.020000px;}
.yc_c00111{bottom:655.020000px;}
.yb_c00111{bottom:679.320000px;}
.ya_c00111{bottom:703.020000px;}
.y9_c00111{bottom:727.920000px;}
.y8_c00111{bottom:751.320000px;}
.y7_c00111{bottom:775.170000px;}
.y6_c00111{bottom:798.870000px;}
.y5_c00111{bottom:822.420000px;}
.y4_c00111{bottom:847.020000px;}
.y3_c00111{bottom:871.470000px;}
.y2_c00111{bottom:895.770000px;}
.y1_c00111{bottom:930.120000px;}
.h5_c00111{height:13.200073px;}
.h6_c00111{height:43.804688px;}
.h2_c00111{height:79.497070px;}
.h4_c00111{height:84.269531px;}
.h3_c00111{height:98.756836px;}
.h1_c00111{height:120.937500px;}
.h0_c00111{height:989.250000px;}
.w2_c00111{width:104.875500px;}
.w1_c00111{width:663.000000px;}
.w0_c00111{width:663.150000px;}
.x0_c00111{left:0.000000px;}
.xc_c00111{left:30.150000px;}
.x6_c00111{left:32.850000px;}
.x5_c00111{left:34.800000px;}
.x4_c00111{left:36.450000px;}
.xb_c00111{left:45.300000px;}
.x8_c00111{left:59.850000px;}
.x13_c00111{left:115.050000px;}
.x12_c00111{left:116.850000px;}
.x11_c00111{left:117.900000px;}
.x10_c00111{left:120.900000px;}
.xf_c00111{left:122.550000px;}
.xd_c00111{left:124.950000px;}
.xa_c00111{left:128.250000px;}
.x7_c00111{left:130.650000px;}
.x9_c00111{left:131.700000px;}
.x3_c00111{left:134.100000px;}
.x2_c00111{left:136.350000px;}
.xe_c00111{left:147.450000px;}
.x1_c00111{left:225.150000px;}
.x15_c00111{left:283.389267px;}
.x14_c00111{left:581.250000px;}
@media print{
.v0_c00111{vertical-align:0.000000pt;}
.ls1_c00111{letter-spacing:0.000000pt;}
.ls0_c00111{letter-spacing:3.520000pt;}
.ws0_c00111{word-spacing:-64.272000pt;}
.ws1_c00111{word-spacing:-52.608000pt;}
.ws2_c00111{word-spacing:-18.000000pt;}
.ws3_c00111{word-spacing:0.000000pt;}
._f_c00111{margin-left:-23.184000pt;}
._2_c00111{margin-left:-21.578667pt;}
._22_c00111{margin-left:-16.397333pt;}
._1a_c00111{margin-left:-15.480000pt;}
._e_c00111{margin-left:-11.741333pt;}
._1f_c00111{margin-left:-10.584000pt;}
._1_c00111{margin-left:-8.885333pt;}
._11_c00111{margin-left:-7.848000pt;}
._0_c00111{margin-left:-6.256000pt;}
._10_c00111{margin-left:-5.272000pt;}
._b_c00111{margin-left:-4.032000pt;}
._17_c00111{margin-left:-3.088000pt;}
._d_c00111{margin-left:-2.104000pt;}
._15_c00111{margin-left:-1.104000pt;}
._3_c00111{width:1.541333pt;}
._8_c00111{width:2.810667pt;}
._9_c00111{width:3.744000pt;}
._a_c00111{width:4.866667pt;}
._5_c00111{width:6.256000pt;}
._c_c00111{width:7.184000pt;}
._18_c00111{width:8.496000pt;}
._4_c00111{width:9.429333pt;}
._7_c00111{width:10.970667pt;}
._6_c00111{width:12.240000pt;}
._1c_c00111{width:14.400000pt;}
._1d_c00111{width:22.850667pt;}
._16_c00111{width:38.397333pt;}
._21_c00111{width:58.808000pt;}
._1e_c00111{width:96.048000pt;}
._13_c00111{width:113.549333pt;}
._20_c00111{width:136.728000pt;}
._12_c00111{width:153.216000pt;}
._19_c00111{width:199.024000pt;}
._14_c00111{width:205.389333pt;}
._1b_c00111{width:240.221333pt;}
.fs5_c00111{font-size:42.666667pt;}
.fs4_c00111{font-size:64.000000pt;}
.fs3_c00111{font-size:69.333333pt;}
.fs2_c00111{font-size:72.000000pt;}
.fs1_c00111{font-size:90.666667pt;}
.fs0_c00111{font-size:106.666667pt;}
.y0_c00111{bottom:0.000000pt;}
.y26_c00111{bottom:2.760000pt;}
.y25_c00111{bottom:6.425217pt;}
.y24_c00111{bottom:65.306667pt;}
.y23_c00111{bottom:85.706667pt;}
.y22_c00111{bottom:107.706667pt;}
.y21_c00111{bottom:129.573333pt;}
.y20_c00111{bottom:151.440000pt;}
.y1f_c00111{bottom:173.306667pt;}
.y1e_c00111{bottom:195.040000pt;}
.y1d_c00111{bottom:216.640000pt;}
.y1c_c00111{bottom:238.506667pt;}
.y1b_c00111{bottom:259.706667pt;}
.y1a_c00111{bottom:282.240000pt;}
.y19_c00111{bottom:304.106667pt;}
.y18_c00111{bottom:325.840000pt;}
.y17_c00111{bottom:348.906667pt;}
.y16_c00111{bottom:368.640000pt;}
.y15_c00111{bottom:389.973333pt;}
.y14_c00111{bottom:411.306667pt;}
.y13_c00111{bottom:432.906667pt;}
.y12_c00111{bottom:454.106667pt;}
.y11_c00111{bottom:475.440000pt;}
.y10_c00111{bottom:496.773333pt;}
.yf_c00111{bottom:518.373333pt;}
.ye_c00111{bottom:539.706667pt;}
.yd_c00111{bottom:560.906667pt;}
.yc_c00111{bottom:582.240000pt;}
.yb_c00111{bottom:603.840000pt;}
.ya_c00111{bottom:624.906667pt;}
.y9_c00111{bottom:647.040000pt;}
.y8_c00111{bottom:667.840000pt;}
.y7_c00111{bottom:689.040000pt;}
.y6_c00111{bottom:710.106667pt;}
.y5_c00111{bottom:731.040000pt;}
.y4_c00111{bottom:752.906667pt;}
.y3_c00111{bottom:774.640000pt;}
.y2_c00111{bottom:796.240000pt;}
.y1_c00111{bottom:826.773333pt;}
.h5_c00111{height:11.733399pt;}
.h6_c00111{height:38.937500pt;}
.h2_c00111{height:70.664062pt;}
.h4_c00111{height:74.906250pt;}
.h3_c00111{height:87.783854pt;}
.h1_c00111{height:107.500000pt;}
.h0_c00111{height:879.333333pt;}
.w2_c00111{width:93.222667pt;}
.w1_c00111{width:589.333333pt;}
.w0_c00111{width:589.466667pt;}
.x0_c00111{left:0.000000pt;}
.xc_c00111{left:26.800000pt;}
.x6_c00111{left:29.200000pt;}
.x5_c00111{left:30.933333pt;}
.x4_c00111{left:32.400000pt;}
.xb_c00111{left:40.266667pt;}
.x8_c00111{left:53.200000pt;}
.x13_c00111{left:102.266667pt;}
.x12_c00111{left:103.866667pt;}
.x11_c00111{left:104.800000pt;}
.x10_c00111{left:107.466667pt;}
.xf_c00111{left:108.933333pt;}
.xd_c00111{left:111.066667pt;}
.xa_c00111{left:114.000000pt;}
.x7_c00111{left:116.133333pt;}
.x9_c00111{left:117.066667pt;}
.x3_c00111{left:119.200000pt;}
.x2_c00111{left:121.200000pt;}
.xe_c00111{left:131.066667pt;}
.x1_c00111{left:200.133333pt;}
.x15_c00111{left:251.901571pt;}
.x14_c00111{left:516.666667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_534cb25e90323c57c38f1512.woff2')format("woff");}.ff1_c00112{font-family:ff1_c00112;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00112;src:url('chunks/assets/font_f577d3c3cd39929adb52a5e1.woff2')format("woff");}.ff2_c00112{font-family:ff2_c00112;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00112;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff3_c00112{font-family:ff3_c00112;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00112;src:url('chunks/assets/font_b54b32feaa0d6e8e45c6bef2.woff2')format("woff");}.ff4_c00112{font-family:ff4_c00112;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00112;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c00112{font-family:ff5_c00112;line-height:1.219238;font-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_c00112{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,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;}
.ls2_c00112{letter-spacing:0.000000px;}
.ls0_c00112{letter-spacing:5.850000px;}
.ls3_c00112{letter-spacing:9.000000px;}
.ls1_c00112{letter-spacing:27.240000px;}
.sc__c00112{text-shadow:none;}
.sc0_c00112{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00112{-webkit-text-stroke:0px transparent;}
.sc0_c00112{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00112{word-spacing:-17.352000px;}
.ws1_c00112{word-spacing:0.000000px;}
._25_c00112{margin-left:-19.683000px;}
._22_c00112{margin-left:-18.261000px;}
._17_c00112{margin-left:-16.623000px;}
._7_c00112{margin-left:-13.959000px;}
._1d_c00112{margin-left:-12.312000px;}
._a_c00112{margin-left:-10.098000px;}
._8_c00112{margin-left:-8.118000px;}
._9_c00112{margin-left:-6.633000px;}
._4_c00112{margin-left:-5.247000px;}
._13_c00112{margin-left:-4.131000px;}
._6_c00112{margin-left:-2.673000px;}
._5_c00112{margin-left:-1.584000px;}
._0_c00112{width:1.584000px;}
._14_c00112{width:2.592000px;}
._f_c00112{width:3.798000px;}
._e_c00112{width:4.869000px;}
._1_c00112{width:6.039000px;}
._10_c00112{width:7.389000px;}
._d_c00112{width:8.748000px;}
._3_c00112{width:9.999000px;}
._2_c00112{width:11.682000px;}
._12_c00112{width:12.960000px;}
._19_c00112{width:15.012000px;}
._16_c00112{width:16.587000px;}
._23_c00112{width:17.703000px;}
._1a_c00112{width:19.140000px;}
._21_c00112{width:23.598000px;}
._c_c00112{width:27.720000px;}
._20_c00112{width:29.196000px;}
._15_c00112{width:31.662000px;}
._1b_c00112{width:32.859000px;}
._1f_c00112{width:36.747000px;}
._11_c00112{width:39.285000px;}
._1e_c00112{width:41.310000px;}
._b_c00112{width:50.688000px;}
._26_c00112{width:95.940000px;}
._18_c00112{width:137.940000px;}
._24_c00112{width:255.906000px;}
._29_c00112{width:301.320000px;}
._1c_c00112{width:422.157000px;}
._27_c00112{width:573.111000px;}
._28_c00112{width:599.652000px;}
.fc2_c00112{color:transparent;}
.fc1_c00112{color:rgb(128,128,128);}
.fc0_c00112{color:rgb(0,0,0);}
.fs5_c00112{font-size:48.000000px;}
.fs3_c00112{font-size:51.000000px;}
.fs2_c00112{font-size:72.000000px;}
.fs4_c00112{font-size:75.000000px;}
.fs1_c00112{font-size:81.000000px;}
.fs0_c00112{font-size:99.000000px;}
.y0_c00112{bottom:0.000000px;}
.y26_c00112{bottom:3.105000px;}
.y25_c00112{bottom:7.228371px;}
.y24_c00112{bottom:48.015000px;}
.y23_c00112{bottom:74.565000px;}
.y22_c00112{bottom:99.615000px;}
.y21_c00112{bottom:124.665000px;}
.y20_c00112{bottom:148.515000px;}
.y1f_c00112{bottom:173.865000px;}
.y1e_c00112{bottom:198.465000px;}
.y1d_c00112{bottom:223.065000px;}
.y1c_c00112{bottom:247.515000px;}
.y1b_c00112{bottom:272.115000px;}
.y1a_c00112{bottom:296.415000px;}
.y19_c00112{bottom:320.715000px;}
.y18_c00112{bottom:344.715000px;}
.y17_c00112{bottom:368.865000px;}
.y16_c00112{bottom:393.315000px;}
.y15_c00112{bottom:417.615000px;}
.y14_c00112{bottom:441.765000px;}
.y13_c00112{bottom:465.165000px;}
.y12_c00112{bottom:490.515000px;}
.y11_c00112{bottom:515.115000px;}
.y10_c00112{bottom:539.415000px;}
.yf_c00112{bottom:563.715000px;}
.ye_c00112{bottom:588.315000px;}
.yd_c00112{bottom:612.015000px;}
.yc_c00112{bottom:636.165000px;}
.yb_c00112{bottom:660.165000px;}
.ya_c00112{bottom:685.815000px;}
.y9_c00112{bottom:709.065000px;}
.y8_c00112{bottom:733.215000px;}
.y7_c00112{bottom:757.815000px;}
.y6_c00112{bottom:782.415000px;}
.y5_c00112{bottom:807.015000px;}
.y4_c00112{bottom:831.315000px;}
.y3_c00112{bottom:856.965000px;}
.y2_c00112{bottom:880.665000px;}
.y1_c00112{bottom:915.765000px;}
.h7_c00112{height:13.200074px;}
.h8_c00112{height:43.804688px;}
.h6_c00112{height:75.585938px;}
.h3_c00112{height:79.497070px;}
.h5_c00112{height:84.269531px;}
.h4_c00112{height:91.160156px;}
.h2_c00112{height:115.870605px;}
.h0_c00112{height:989.025000px;}
.h1_c00112{height:989.250000px;}
.w1_c00112{width:104.875500px;}
.w0_c00112{width:672.000000px;}
.x0_c00112{left:0.000000px;}
.x8_c00112{left:42.750000px;}
.x3_c00112{left:47.250000px;}
.x2_c00112{left:51.600000px;}
.x4_c00112{left:53.250000px;}
.x5_c00112{left:54.300000px;}
.x9_c00112{left:55.350000px;}
.xa_c00112{left:56.700000px;}
.xc_c00112{left:58.050000px;}
.xb_c00112{left:59.400000px;}
.x1_c00112{left:100.200000px;}
.x6_c00112{left:285.900000px;}
.xd_c00112{left:287.814240px;}
.x7_c00112{left:290.550000px;}
@media print{
.v0_c00112{vertical-align:0.000000pt;}
.ls2_c00112{letter-spacing:0.000000pt;}
.ls0_c00112{letter-spacing:5.200000pt;}
.ls3_c00112{letter-spacing:8.000000pt;}
.ls1_c00112{letter-spacing:24.213333pt;}
.ws0_c00112{word-spacing:-15.424000pt;}
.ws1_c00112{word-spacing:0.000000pt;}
._25_c00112{margin-left:-17.496000pt;}
._22_c00112{margin-left:-16.232000pt;}
._17_c00112{margin-left:-14.776000pt;}
._7_c00112{margin-left:-12.408000pt;}
._1d_c00112{margin-left:-10.944000pt;}
._a_c00112{margin-left:-8.976000pt;}
._8_c00112{margin-left:-7.216000pt;}
._9_c00112{margin-left:-5.896000pt;}
._4_c00112{margin-left:-4.664000pt;}
._13_c00112{margin-left:-3.672000pt;}
._6_c00112{margin-left:-2.376000pt;}
._5_c00112{margin-left:-1.408000pt;}
._0_c00112{width:1.408000pt;}
._14_c00112{width:2.304000pt;}
._f_c00112{width:3.376000pt;}
._e_c00112{width:4.328000pt;}
._1_c00112{width:5.368000pt;}
._10_c00112{width:6.568000pt;}
._d_c00112{width:7.776000pt;}
._3_c00112{width:8.888000pt;}
._2_c00112{width:10.384000pt;}
._12_c00112{width:11.520000pt;}
._19_c00112{width:13.344000pt;}
._16_c00112{width:14.744000pt;}
._23_c00112{width:15.736000pt;}
._1a_c00112{width:17.013333pt;}
._21_c00112{width:20.976000pt;}
._c_c00112{width:24.640000pt;}
._20_c00112{width:25.952000pt;}
._15_c00112{width:28.144000pt;}
._1b_c00112{width:29.208000pt;}
._1f_c00112{width:32.664000pt;}
._11_c00112{width:34.920000pt;}
._1e_c00112{width:36.720000pt;}
._b_c00112{width:45.056000pt;}
._26_c00112{width:85.280000pt;}
._18_c00112{width:122.613333pt;}
._24_c00112{width:227.472000pt;}
._29_c00112{width:267.840000pt;}
._1c_c00112{width:375.250667pt;}
._27_c00112{width:509.432000pt;}
._28_c00112{width:533.024000pt;}
.fs5_c00112{font-size:42.666667pt;}
.fs3_c00112{font-size:45.333333pt;}
.fs2_c00112{font-size:64.000000pt;}
.fs4_c00112{font-size:66.666667pt;}
.fs1_c00112{font-size:72.000000pt;}
.fs0_c00112{font-size:88.000000pt;}
.y0_c00112{bottom:0.000000pt;}
.y26_c00112{bottom:2.760000pt;}
.y25_c00112{bottom:6.425219pt;}
.y24_c00112{bottom:42.680000pt;}
.y23_c00112{bottom:66.280000pt;}
.y22_c00112{bottom:88.546667pt;}
.y21_c00112{bottom:110.813333pt;}
.y20_c00112{bottom:132.013333pt;}
.y1f_c00112{bottom:154.546667pt;}
.y1e_c00112{bottom:176.413333pt;}
.y1d_c00112{bottom:198.280000pt;}
.y1c_c00112{bottom:220.013333pt;}
.y1b_c00112{bottom:241.880000pt;}
.y1a_c00112{bottom:263.480000pt;}
.y19_c00112{bottom:285.080000pt;}
.y18_c00112{bottom:306.413333pt;}
.y17_c00112{bottom:327.880000pt;}
.y16_c00112{bottom:349.613333pt;}
.y15_c00112{bottom:371.213333pt;}
.y14_c00112{bottom:392.680000pt;}
.y13_c00112{bottom:413.480000pt;}
.y12_c00112{bottom:436.013333pt;}
.y11_c00112{bottom:457.880000pt;}
.y10_c00112{bottom:479.480000pt;}
.yf_c00112{bottom:501.080000pt;}
.ye_c00112{bottom:522.946667pt;}
.yd_c00112{bottom:544.013333pt;}
.yc_c00112{bottom:565.480000pt;}
.yb_c00112{bottom:586.813333pt;}
.ya_c00112{bottom:609.613333pt;}
.y9_c00112{bottom:630.280000pt;}
.y8_c00112{bottom:651.746667pt;}
.y7_c00112{bottom:673.613333pt;}
.y6_c00112{bottom:695.480000pt;}
.y5_c00112{bottom:717.346667pt;}
.y4_c00112{bottom:738.946667pt;}
.y3_c00112{bottom:761.746667pt;}
.y2_c00112{bottom:782.813333pt;}
.y1_c00112{bottom:814.013333pt;}
.h7_c00112{height:11.733399pt;}
.h8_c00112{height:38.937500pt;}
.h6_c00112{height:67.187500pt;}
.h3_c00112{height:70.664062pt;}
.h5_c00112{height:74.906250pt;}
.h4_c00112{height:81.031250pt;}
.h2_c00112{height:102.996094pt;}
.h0_c00112{height:879.133333pt;}
.h1_c00112{height:879.333333pt;}
.w1_c00112{width:93.222667pt;}
.w0_c00112{width:597.333333pt;}
.x0_c00112{left:0.000000pt;}
.x8_c00112{left:38.000000pt;}
.x3_c00112{left:42.000000pt;}
.x2_c00112{left:45.866667pt;}
.x4_c00112{left:47.333333pt;}
.x5_c00112{left:48.266667pt;}
.x9_c00112{left:49.200000pt;}
.xa_c00112{left:50.400000pt;}
.xc_c00112{left:51.600000pt;}
.xb_c00112{left:52.800000pt;}
.x1_c00112{left:89.066667pt;}
.x6_c00112{left:254.133333pt;}
.xd_c00112{left:255.834880pt;}
.x7_c00112{left:258.266667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_731be92a77831aabc1a52542.woff2')format("woff");}.ff1_c00113{font-family:ff1_c00113;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00113;src:url('chunks/assets/font_b8447d5fab8fb7367cf68438.woff2')format("woff");}.ff2_c00113{font-family:ff2_c00113;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00113;src:url('chunks/assets/font_b904d21ce60d60ae72fed6a2.woff2')format("woff");}.ff3_c00113{font-family:ff3_c00113;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00113;src:url('chunks/assets/font_d123d49851cebeb9e023650d.woff2')format("woff");}.ff4_c00113{font-family:ff4_c00113;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00113;src:url('chunks/assets/font_0d6777cd4a6d842c2e7518d2.woff2')format("woff");}.ff5_c00113{font-family:ff5_c00113;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00113;src:url('chunks/assets/font_26db34b4fbecc3d91c93e11b.woff2')format("woff");}.ff6_c00113{font-family:ff6_c00113;line-height:1.437000;font-style:normal;font-weight: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_c00113;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c00113{font-family:ff7_c00113;line-height:1.219238;font-style: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;}
.ls2_c00113{letter-spacing:0.000000px;}
.ls1_c00113{letter-spacing:14.700000px;}
.ls0_c00113{letter-spacing:224.388000px;}
.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;}
}
.ws1_c00113{word-spacing:-33.000000px;}
.ws2_c00113{word-spacing:-17.352000px;}
.ws3_c00113{word-spacing:0.000000px;}
.ws0_c00113{word-spacing:19.860000px;}
._2a_c00113{margin-left:-27.297000px;}
._24_c00113{margin-left:-25.515000px;}
._2c_c00113{margin-left:-22.845000px;}
._22_c00113{margin-left:-18.144000px;}
._2e_c00113{margin-left:-15.552000px;}
._1d_c00113{margin-left:-14.184000px;}
._21_c00113{margin-left:-13.146000px;}
._1f_c00113{margin-left:-10.800000px;}
._1e_c00113{margin-left:-9.156000px;}
._15_c00113{margin-left:-8.127000px;}
._4_c00113{margin-left:-6.732000px;}
._14_c00113{margin-left:-5.469000px;}
._b_c00113{margin-left:-4.437000px;}
._7_c00113{margin-left:-3.195000px;}
._3_c00113{margin-left:-2.079000px;}
._16_c00113{margin-left:-1.017000px;}
._1_c00113{width:1.683000px;}
._8_c00113{width:2.970000px;}
._5_c00113{width:4.356000px;}
._6_c00113{width:5.940000px;}
._c_c00113{width:7.020000px;}
._9_c00113{width:8.199000px;}
._a_c00113{width:9.450000px;}
._17_c00113{width:10.521000px;}
._2_c00113{width:11.583000px;}
._f_c00113{width:12.840000px;}
._13_c00113{width:14.805000px;}
._19_c00113{width:16.002000px;}
._e_c00113{width:17.052000px;}
._10_c00113{width:18.099000px;}
._11_c00113{width:19.152000px;}
._d_c00113{width:20.673000px;}
._12_c00113{width:22.059000px;}
._1b_c00113{width:24.234000px;}
._18_c00113{width:25.485000px;}
._23_c00113{width:26.811000px;}
._0_c00113{width:37.200000px;}
._27_c00113{width:39.303000px;}
._28_c00113{width:44.238000px;}
._1a_c00113{width:71.469000px;}
._2d_c00113{width:163.377000px;}
._26_c00113{width:166.614000px;}
._2b_c00113{width:196.668000px;}
._29_c00113{width:202.545000px;}
._20_c00113{width:206.574000px;}
._1c_c00113{width:223.332000px;}
._25_c00113{width:230.283000px;}
.fc2_c00113{color:transparent;}
.fc1_c00113{color:rgb(128,128,128);}
.fc0_c00113{color:rgb(0,0,0);}
.fs4_c00113{font-size:42.000000px;}
.fs9_c00113{font-size:48.000000px;}
.fs8_c00113{font-size:54.000000px;}
.fs0_c00113{font-size:60.000000px;}
.fs6_c00113{font-size:66.000000px;}
.fs5_c00113{font-size:72.000000px;}
.fs3_c00113{font-size:81.000000px;}
.fs7_c00113{font-size:87.000000px;}
.fs2_c00113{font-size:99.000000px;}
.fs1_c00113{font-size:132.000000px;}
.y0_c00113{bottom:0.000000px;}
.y25_c00113{bottom:3.105000px;}
.y24_c00113{bottom:7.228357px;}
.y23_c00113{bottom:84.780000px;}
.y22_c00113{bottom:96.930000px;}
.y21_c00113{bottom:121.830000px;}
.y20_c00113{bottom:145.830000px;}
.y1f_c00113{bottom:171.180000px;}
.y1e_c00113{bottom:195.480000px;}
.y1d_c00113{bottom:220.380000px;}
.y1c_c00113{bottom:244.680000px;}
.y1b_c00113{bottom:269.430000px;}
.y1a_c00113{bottom:294.330000px;}
.y19_c00113{bottom:318.930000px;}
.y18_c00113{bottom:342.930000px;}
.y17_c00113{bottom:367.980000px;}
.y16_c00113{bottom:392.130000px;}
.y15_c00113{bottom:417.180000px;}
.y14_c00113{bottom:441.180000px;}
.y13_c00113{bottom:466.080000px;}
.y12_c00113{bottom:490.080000px;}
.y11_c00113{bottom:514.080000px;}
.y10_c00113{bottom:537.330000px;}
.yf_c00113{bottom:563.280000px;}
.ye_c00113{bottom:611.880000px;}
.yd_c00113{bottom:636.630000px;}
.yc_c00113{bottom:662.130000px;}
.yb_c00113{bottom:685.530000px;}
.ya_c00113{bottom:710.430000px;}
.y9_c00113{bottom:734.730000px;}
.y8_c00113{bottom:759.030000px;}
.y7_c00113{bottom:783.780000px;}
.y6_c00113{bottom:808.380000px;}
.y5_c00113{bottom:832.680000px;}
.y4_c00113{bottom:856.980000px;}
.y3_c00113{bottom:881.580000px;}
.y2_c00113{bottom:905.880000px;}
.y1_c00113{bottom:941.280000px;}
.h6_c00113{height:13.200074px;}
.h7_c00113{height:43.804688px;}
.h2_c00113{height:79.497070px;}
.h5_c00113{height:84.269531px;}
.h3_c00113{height:91.160156px;}
.h4_c00113{height:91.176000px;}
.h1_c00113{height:167.126953px;}
.h0_c00113{height:995.250000px;}
.w2_c00113{width:104.875500px;}
.w0_c00113{width:667.425000px;}
.w1_c00113{width:667.500000px;}
.x0_c00113{left:0.000000px;}
.x7_c00113{left:32.400000px;}
.xc_c00113{left:35.400000px;}
.x6_c00113{left:36.750000px;}
.x5_c00113{left:37.800000px;}
.x9_c00113{left:55.350000px;}
.xd_c00113{left:120.150000px;}
.xa_c00113{left:128.250000px;}
.xb_c00113{left:129.300000px;}
.x8_c00113{left:130.950000px;}
.x1_c00113{left:133.200000px;}
.x3_c00113{left:135.000000px;}
.x2_c00113{left:136.950000px;}
.x4_c00113{left:165.300000px;}
.xe_c00113{left:285.526749px;}
@media print{
.v0_c00113{vertical-align:0.000000pt;}
.ls2_c00113{letter-spacing:0.000000pt;}
.ls1_c00113{letter-spacing:13.066667pt;}
.ls0_c00113{letter-spacing:199.456000pt;}
.ws1_c00113{word-spacing:-29.333333pt;}
.ws2_c00113{word-spacing:-15.424000pt;}
.ws3_c00113{word-spacing:0.000000pt;}
.ws0_c00113{word-spacing:17.653333pt;}
._2a_c00113{margin-left:-24.264000pt;}
._24_c00113{margin-left:-22.680000pt;}
._2c_c00113{margin-left:-20.306667pt;}
._22_c00113{margin-left:-16.128000pt;}
._2e_c00113{margin-left:-13.824000pt;}
._1d_c00113{margin-left:-12.608000pt;}
._21_c00113{margin-left:-11.685333pt;}
._1f_c00113{margin-left:-9.600000pt;}
._1e_c00113{margin-left:-8.138667pt;}
._15_c00113{margin-left:-7.224000pt;}
._4_c00113{margin-left:-5.984000pt;}
._14_c00113{margin-left:-4.861333pt;}
._b_c00113{margin-left:-3.944000pt;}
._7_c00113{margin-left:-2.840000pt;}
._3_c00113{margin-left:-1.848000pt;}
._16_c00113{margin-left:-0.904000pt;}
._1_c00113{width:1.496000pt;}
._8_c00113{width:2.640000pt;}
._5_c00113{width:3.872000pt;}
._6_c00113{width:5.280000pt;}
._c_c00113{width:6.240000pt;}
._9_c00113{width:7.288000pt;}
._a_c00113{width:8.400000pt;}
._17_c00113{width:9.352000pt;}
._2_c00113{width:10.296000pt;}
._f_c00113{width:11.413333pt;}
._13_c00113{width:13.160000pt;}
._19_c00113{width:14.224000pt;}
._e_c00113{width:15.157333pt;}
._10_c00113{width:16.088000pt;}
._11_c00113{width:17.024000pt;}
._d_c00113{width:18.376000pt;}
._12_c00113{width:19.608000pt;}
._1b_c00113{width:21.541333pt;}
._18_c00113{width:22.653333pt;}
._23_c00113{width:23.832000pt;}
._0_c00113{width:33.066667pt;}
._27_c00113{width:34.936000pt;}
._28_c00113{width:39.322667pt;}
._1a_c00113{width:63.528000pt;}
._2d_c00113{width:145.224000pt;}
._26_c00113{width:148.101333pt;}
._2b_c00113{width:174.816000pt;}
._29_c00113{width:180.040000pt;}
._20_c00113{width:183.621333pt;}
._1c_c00113{width:198.517333pt;}
._25_c00113{width:204.696000pt;}
.fs4_c00113{font-size:37.333333pt;}
.fs9_c00113{font-size:42.666667pt;}
.fs8_c00113{font-size:48.000000pt;}
.fs0_c00113{font-size:53.333333pt;}
.fs6_c00113{font-size:58.666667pt;}
.fs5_c00113{font-size:64.000000pt;}
.fs3_c00113{font-size:72.000000pt;}
.fs7_c00113{font-size:77.333333pt;}
.fs2_c00113{font-size:88.000000pt;}
.fs1_c00113{font-size:117.333333pt;}
.y0_c00113{bottom:0.000000pt;}
.y25_c00113{bottom:2.760000pt;}
.y24_c00113{bottom:6.425206pt;}
.y23_c00113{bottom:75.360000pt;}
.y22_c00113{bottom:86.160000pt;}
.y21_c00113{bottom:108.293333pt;}
.y20_c00113{bottom:129.626667pt;}
.y1f_c00113{bottom:152.160000pt;}
.y1e_c00113{bottom:173.760000pt;}
.y1d_c00113{bottom:195.893333pt;}
.y1c_c00113{bottom:217.493333pt;}
.y1b_c00113{bottom:239.493333pt;}
.y1a_c00113{bottom:261.626667pt;}
.y19_c00113{bottom:283.493333pt;}
.y18_c00113{bottom:304.826667pt;}
.y17_c00113{bottom:327.093333pt;}
.y16_c00113{bottom:348.560000pt;}
.y15_c00113{bottom:370.826667pt;}
.y14_c00113{bottom:392.160000pt;}
.y13_c00113{bottom:414.293333pt;}
.y12_c00113{bottom:435.626667pt;}
.y11_c00113{bottom:456.960000pt;}
.y10_c00113{bottom:477.626667pt;}
.yf_c00113{bottom:500.693333pt;}
.ye_c00113{bottom:543.893333pt;}
.yd_c00113{bottom:565.893333pt;}
.yc_c00113{bottom:588.560000pt;}
.yb_c00113{bottom:609.360000pt;}
.ya_c00113{bottom:631.493333pt;}
.y9_c00113{bottom:653.093333pt;}
.y8_c00113{bottom:674.693333pt;}
.y7_c00113{bottom:696.693333pt;}
.y6_c00113{bottom:718.560000pt;}
.y5_c00113{bottom:740.160000pt;}
.y4_c00113{bottom:761.760000pt;}
.y3_c00113{bottom:783.626667pt;}
.y2_c00113{bottom:805.226667pt;}
.y1_c00113{bottom:836.693333pt;}
.h6_c00113{height:11.733399pt;}
.h7_c00113{height:38.937500pt;}
.h2_c00113{height:70.664062pt;}
.h5_c00113{height:74.906250pt;}
.h3_c00113{height:81.031250pt;}
.h4_c00113{height:81.045333pt;}
.h1_c00113{height:148.557292pt;}
.h0_c00113{height:884.666667pt;}
.w2_c00113{width:93.222667pt;}
.w0_c00113{width:593.266667pt;}
.w1_c00113{width:593.333333pt;}
.x0_c00113{left:0.000000pt;}
.x7_c00113{left:28.800000pt;}
.xc_c00113{left:31.466667pt;}
.x6_c00113{left:32.666667pt;}
.x5_c00113{left:33.600000pt;}
.x9_c00113{left:49.200000pt;}
.xd_c00113{left:106.800000pt;}
.xa_c00113{left:114.000000pt;}
.xb_c00113{left:114.933333pt;}
.x8_c00113{left:116.400000pt;}
.x1_c00113{left:118.400000pt;}
.x3_c00113{left:120.000000pt;}
.x2_c00113{left:121.733333pt;}
.x4_c00113{left:146.933333pt;}
.xe_c00113{left:253.801554pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b6c5d73ee980aa919d1e3ba3.woff2')format("woff");}.ff1_c00114{font-family:ff1_c00114;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00114;src:url('chunks/assets/font_bbedba40248e1b233cfac0a2.woff2')format("woff");}.ff2_c00114{font-family:ff2_c00114;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00114;src:url('chunks/assets/font_45701859217acd4a7d2107fd.woff2')format("woff");}.ff3_c00114{font-family:ff3_c00114;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00114;src:url('chunks/assets/font_c6747d1e169620dc5b7f48e4.woff2')format("woff");}.ff4_c00114{font-family:ff4_c00114;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00114;src:url('chunks/assets/font_8153ba681cd0d4ca4ccf022f.woff2')format("woff");}.ff5_c00114{font-family:ff5_c00114;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00114;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff6_c00114{font-family:ff6_c00114;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00114;src:url('chunks/assets/font_73c386877635c2d0a4e7fa6c.woff2')format("woff");}.ff7_c00114{font-family:ff7_c00114;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00114;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff8_c00114{font-family:ff8_c00114;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00114{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00114{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00114{vertical-align:0.000000px;}
.v1_c00114{vertical-align:103.200000px;}
.ls6_c00114{letter-spacing:-6.000000px;}
.ls5_c00114{letter-spacing:0.000000px;}
.ls3_c00114{letter-spacing:2.211000px;}
.ls0_c00114{letter-spacing:4.710000px;}
.ls2_c00114{letter-spacing:14.400000px;}
.ls4_c00114{letter-spacing:30.282000px;}
.ls1_c00114{letter-spacing:312.600000px;}
.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;}
}
.ws1_c00114{word-spacing:-59.184000px;}
.ws0_c00114{word-spacing:-41.832000px;}
.ws3_c00114{word-spacing:-18.750000px;}
.ws4_c00114{word-spacing:-18.014400px;}
.ws2_c00114{word-spacing:-16.500000px;}
.ws5_c00114{word-spacing:0.000000px;}
._1f_c00114{margin-left:-26.820000px;}
._1c_c00114{margin-left:-17.217000px;}
._1d_c00114{margin-left:-13.980000px;}
._17_c00114{margin-left:-11.766000px;}
._13_c00114{margin-left:-9.072000px;}
._15_c00114{margin-left:-7.710000px;}
._14_c00114{margin-left:-5.670000px;}
._18_c00114{margin-left:-4.662000px;}
._10_c00114{margin-left:-3.546000px;}
._f_c00114{margin-left:-1.827000px;}
._a_c00114{width:1.620000px;}
._8_c00114{width:2.673000px;}
._9_c00114{width:4.536000px;}
._d_c00114{width:5.670000px;}
._12_c00114{width:6.759000px;}
._c_c00114{width:7.794000px;}
._2_c00114{width:9.000000px;}
._1a_c00114{width:10.017000px;}
._7_c00114{width:11.160000px;}
._b_c00114{width:12.231000px;}
._e_c00114{width:13.356000px;}
._6_c00114{width:14.544000px;}
._4_c00114{width:15.768000px;}
._11_c00114{width:17.217000px;}
._1_c00114{width:19.080000px;}
._3_c00114{width:21.744000px;}
._0_c00114{width:23.904000px;}
._5_c00114{width:25.128000px;}
._1e_c00114{width:29.970000px;}
._1b_c00114{width:31.614000px;}
._22_c00114{width:39.978000px;}
._20_c00114{width:86.880000px;}
._21_c00114{width:197.523000px;}
._16_c00114{width:320.769000px;}
._19_c00114{width:329.292000px;}
._23_c00114{width:349.578000px;}
.fc2_c00114{color:transparent;}
.fc1_c00114{color:rgb(128,128,128);}
.fc0_c00114{color:rgb(0,0,0);}
.fs7_c00114{font-size:48.000000px;}
.fs6_c00114{font-size:64.800000px;}
.fs5_c00114{font-size:66.000000px;}
.fs0_c00114{font-size:72.000000px;}
.fs3_c00114{font-size:75.000000px;}
.fs1_c00114{font-size:81.000000px;}
.fs4_c00114{font-size:96.000000px;}
.fs2_c00114{font-size:210.000000px;}
.y0_c00114{bottom:0.000000px;}
.y26_c00114{bottom:3.105000px;}
.y25_c00114{bottom:7.228371px;}
.y24_c00114{bottom:58.815000px;}
.y23_c00114{bottom:83.115000px;}
.y22_c00114{bottom:107.415000px;}
.y21_c00114{bottom:135.015000px;}
.y20_c00114{bottom:158.715000px;}
.y1f_c00114{bottom:184.665000px;}
.y1e_c00114{bottom:207.615000px;}
.y1d_c00114{bottom:234.015000px;}
.y1c_c00114{bottom:258.315000px;}
.y1b_c00114{bottom:282.465000px;}
.y1a_c00114{bottom:306.165000px;}
.y19_c00114{bottom:331.065000px;}
.y18_c00114{bottom:355.365000px;}
.y17_c00114{bottom:379.665000px;}
.y16_c00114{bottom:403.965000px;}
.y15_c00114{bottom:428.265000px;}
.y14_c00114{bottom:452.565000px;}
.y13_c00114{bottom:477.315000px;}
.y12_c00114{bottom:501.315000px;}
.y11_c00114{bottom:525.915000px;}
.y10_c00114{bottom:549.765000px;}
.yf_c00114{bottom:574.065000px;}
.ye_c00114{bottom:598.365000px;}
.yd_c00114{bottom:621.765000px;}
.yc_c00114{bottom:646.065000px;}
.yb_c00114{bottom:670.065000px;}
.y9_c00114{bottom:693.165000px;}
.ya_c00114{bottom:694.365000px;}
.y8_c00114{bottom:743.265000px;}
.y7_c00114{bottom:767.265000px;}
.y6_c00114{bottom:792.165000px;}
.y5_c00114{bottom:816.165000px;}
.y4_c00114{bottom:841.065000px;}
.y3_c00114{bottom:865.365000px;}
.y2_c00114{bottom:889.065000px;}
.y1_c00114{bottom:927.465000px;}
.h8_c00114{height:13.200074px;}
.h9_c00114{height:43.804688px;}
.h7_c00114{height:73.571777px;}
.h3_c00114{height:79.497070px;}
.h2_c00114{height:84.269531px;}
.h6_c00114{height:91.160156px;}
.h5_c00114{height:94.218750px;}
.h4_c00114{height:206.000977px;}
.h0_c00114{height:989.025000px;}
.h1_c00114{height:989.250000px;}
.w1_c00114{width:104.875500px;}
.w0_c00114{width:672.000000px;}
.x0_c00114{left:0.000000px;}
.x8_c00114{left:18.900000px;}
.x6_c00114{left:26.700000px;}
.xd_c00114{left:33.150000px;}
.xc_c00114{left:34.500000px;}
.xb_c00114{left:35.550000px;}
.x9_c00114{left:36.900000px;}
.x2_c00114{left:38.100000px;}
.x3_c00114{left:39.450000px;}
.x4_c00114{left:40.500000px;}
.x5_c00114{left:41.550000px;}
.x7_c00114{left:48.300000px;}
.xa_c00114{left:57.450000px;}
.x1_c00114{left:81.300000px;}
.xe_c00114{left:271.050000px;}
.xf_c00114{left:287.814240px;}
@media print{
.v0_c00114{vertical-align:0.000000pt;}
.v1_c00114{vertical-align:91.733333pt;}
.ls6_c00114{letter-spacing:-5.333333pt;}
.ls5_c00114{letter-spacing:0.000000pt;}
.ls3_c00114{letter-spacing:1.965333pt;}
.ls0_c00114{letter-spacing:4.186667pt;}
.ls2_c00114{letter-spacing:12.800000pt;}
.ls4_c00114{letter-spacing:26.917333pt;}
.ls1_c00114{letter-spacing:277.866667pt;}
.ws1_c00114{word-spacing:-52.608000pt;}
.ws0_c00114{word-spacing:-37.184000pt;}
.ws3_c00114{word-spacing:-16.666667pt;}
.ws4_c00114{word-spacing:-16.012800pt;}
.ws2_c00114{word-spacing:-14.666667pt;}
.ws5_c00114{word-spacing:0.000000pt;}
._1f_c00114{margin-left:-23.840000pt;}
._1c_c00114{margin-left:-15.304000pt;}
._1d_c00114{margin-left:-12.426667pt;}
._17_c00114{margin-left:-10.458667pt;}
._13_c00114{margin-left:-8.064000pt;}
._15_c00114{margin-left:-6.853333pt;}
._14_c00114{margin-left:-5.040000pt;}
._18_c00114{margin-left:-4.144000pt;}
._10_c00114{margin-left:-3.152000pt;}
._f_c00114{margin-left:-1.624000pt;}
._a_c00114{width:1.440000pt;}
._8_c00114{width:2.376000pt;}
._9_c00114{width:4.032000pt;}
._d_c00114{width:5.040000pt;}
._12_c00114{width:6.008000pt;}
._c_c00114{width:6.928000pt;}
._2_c00114{width:8.000000pt;}
._1a_c00114{width:8.904000pt;}
._7_c00114{width:9.920000pt;}
._b_c00114{width:10.872000pt;}
._e_c00114{width:11.872000pt;}
._6_c00114{width:12.928000pt;}
._4_c00114{width:14.016000pt;}
._11_c00114{width:15.304000pt;}
._1_c00114{width:16.960000pt;}
._3_c00114{width:19.328000pt;}
._0_c00114{width:21.248000pt;}
._5_c00114{width:22.336000pt;}
._1e_c00114{width:26.640000pt;}
._1b_c00114{width:28.101333pt;}
._22_c00114{width:35.536000pt;}
._20_c00114{width:77.226667pt;}
._21_c00114{width:175.576000pt;}
._16_c00114{width:285.128000pt;}
._19_c00114{width:292.704000pt;}
._23_c00114{width:310.736000pt;}
.fs7_c00114{font-size:42.666667pt;}
.fs6_c00114{font-size:57.600000pt;}
.fs5_c00114{font-size:58.666667pt;}
.fs0_c00114{font-size:64.000000pt;}
.fs3_c00114{font-size:66.666667pt;}
.fs1_c00114{font-size:72.000000pt;}
.fs4_c00114{font-size:85.333333pt;}
.fs2_c00114{font-size:186.666667pt;}
.y0_c00114{bottom:0.000000pt;}
.y26_c00114{bottom:2.760000pt;}
.y25_c00114{bottom:6.425219pt;}
.y24_c00114{bottom:52.280000pt;}
.y23_c00114{bottom:73.880000pt;}
.y22_c00114{bottom:95.480000pt;}
.y21_c00114{bottom:120.013333pt;}
.y20_c00114{bottom:141.080000pt;}
.y1f_c00114{bottom:164.146667pt;}
.y1e_c00114{bottom:184.546667pt;}
.y1d_c00114{bottom:208.013333pt;}
.y1c_c00114{bottom:229.613333pt;}
.y1b_c00114{bottom:251.080000pt;}
.y1a_c00114{bottom:272.146667pt;}
.y19_c00114{bottom:294.280000pt;}
.y18_c00114{bottom:315.880000pt;}
.y17_c00114{bottom:337.480000pt;}
.y16_c00114{bottom:359.080000pt;}
.y15_c00114{bottom:380.680000pt;}
.y14_c00114{bottom:402.280000pt;}
.y13_c00114{bottom:424.280000pt;}
.y12_c00114{bottom:445.613333pt;}
.y11_c00114{bottom:467.480000pt;}
.y10_c00114{bottom:488.680000pt;}
.yf_c00114{bottom:510.280000pt;}
.ye_c00114{bottom:531.880000pt;}
.yd_c00114{bottom:552.680000pt;}
.yc_c00114{bottom:574.280000pt;}
.yb_c00114{bottom:595.613333pt;}
.y9_c00114{bottom:616.146667pt;}
.ya_c00114{bottom:617.213333pt;}
.y8_c00114{bottom:660.680000pt;}
.y7_c00114{bottom:682.013333pt;}
.y6_c00114{bottom:704.146667pt;}
.y5_c00114{bottom:725.480000pt;}
.y4_c00114{bottom:747.613333pt;}
.y3_c00114{bottom:769.213333pt;}
.y2_c00114{bottom:790.280000pt;}
.y1_c00114{bottom:824.413333pt;}
.h8_c00114{height:11.733399pt;}
.h9_c00114{height:38.937500pt;}
.h7_c00114{height:65.397135pt;}
.h3_c00114{height:70.664062pt;}
.h2_c00114{height:74.906250pt;}
.h6_c00114{height:81.031250pt;}
.h5_c00114{height:83.750000pt;}
.h4_c00114{height:183.111979pt;}
.h0_c00114{height:879.133333pt;}
.h1_c00114{height:879.333333pt;}
.w1_c00114{width:93.222667pt;}
.w0_c00114{width:597.333333pt;}
.x0_c00114{left:0.000000pt;}
.x8_c00114{left:16.800000pt;}
.x6_c00114{left:23.733333pt;}
.xd_c00114{left:29.466667pt;}
.xc_c00114{left:30.666667pt;}
.xb_c00114{left:31.600000pt;}
.x9_c00114{left:32.800000pt;}
.x2_c00114{left:33.866667pt;}
.x3_c00114{left:35.066667pt;}
.x4_c00114{left:36.000000pt;}
.x5_c00114{left:36.933333pt;}
.x7_c00114{left:42.933333pt;}
.xa_c00114{left:51.066667pt;}
.x1_c00114{left:72.266667pt;}
.xe_c00114{left:240.933333pt;}
.xf_c00114{left:255.834880pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7d9aa552f29dc7191129bc9c.woff2')format("woff");}.ff1_c00115{font-family:ff1_c00115;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00115;src:url('chunks/assets/font_30aee563441331b610257706.woff2')format("woff");}.ff2_c00115{font-family:ff2_c00115;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00115;src:url('chunks/assets/font_029de84703cbfd40e7ea40a5.woff2')format("woff");}.ff3_c00115{font-family:ff3_c00115;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00115;src:url('chunks/assets/font_dcf2021391c9321167ccfbe5.woff2')format("woff");}.ff4_c00115{font-family:ff4_c00115;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00115;src:url('chunks/assets/font_1fc4daf11b18e45ec004354a.woff2')format("woff");}.ff5_c00115{font-family:ff5_c00115;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00115;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c00115{font-family:ff6_c00115;line-height:1.219238;font-style: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);}
.v0_c00115{vertical-align:0.000000px;}
.ls6_c00115{letter-spacing:-3.000000px;}
.ls5_c00115{letter-spacing:0.000000px;}
.ls3_c00115{letter-spacing:1.560000px;}
.ls2_c00115{letter-spacing:7.800000px;}
.ls7_c00115{letter-spacing:12.000000px;}
.ls1_c00115{letter-spacing:12.924000px;}
.ls4_c00115{letter-spacing:14.400000px;}
.ls0_c00115{letter-spacing:39.150000px;}
.sc__c00115{text-shadow:none;}
.sc0_c00115{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00115{-webkit-text-stroke:0px transparent;}
.sc0_c00115{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00115{word-spacing:-67.686000px;}
.ws3_c00115{word-spacing:-29.352000px;}
.ws0_c00115{word-spacing:-23.859000px;}
.ws1_c00115{word-spacing:-17.352000px;}
.ws4_c00115{word-spacing:0.000000px;}
._2a_c00115{margin-left:-26.406000px;}
._23_c00115{margin-left:-23.139000px;}
._1b_c00115{margin-left:-20.343000px;}
._15_c00115{margin-left:-18.156000px;}
._17_c00115{margin-left:-15.300000px;}
._12_c00115{margin-left:-10.335000px;}
._16_c00115{margin-left:-8.670000px;}
._13_c00115{margin-left:-7.323000px;}
._c_c00115{margin-left:-5.787000px;}
._9_c00115{margin-left:-3.906000px;}
._6_c00115{margin-left:-2.634000px;}
._7_c00115{margin-left:-1.068000px;}
._10_c00115{width:1.026000px;}
._b_c00115{width:2.091000px;}
._e_c00115{width:3.369000px;}
._a_c00115{width:4.443000px;}
._5_c00115{width:6.210000px;}
._4_c00115{width:7.632000px;}
._1f_c00115{width:8.691000px;}
._0_c00115{width:9.702000px;}
._d_c00115{width:11.715000px;}
._f_c00115{width:12.984000px;}
._1_c00115{width:14.949000px;}
._25_c00115{width:16.329000px;}
._21_c00115{width:18.033000px;}
._8_c00115{width:20.007000px;}
._11_c00115{width:21.435000px;}
._3_c00115{width:23.304000px;}
._28_c00115{width:28.473000px;}
._1a_c00115{width:38.553000px;}
._19_c00115{width:39.810000px;}
._14_c00115{width:44.973000px;}
._26_c00115{width:46.950000px;}
._20_c00115{width:61.704000px;}
._1e_c00115{width:75.381000px;}
._22_c00115{width:91.044000px;}
._2b_c00115{width:98.253000px;}
._2_c00115{width:101.697000px;}
._27_c00115{width:178.944000px;}
._1c_c00115{width:205.371000px;}
._18_c00115{width:227.100000px;}
._24_c00115{width:233.292000px;}
._1d_c00115{width:250.749000px;}
._29_c00115{width:678.480000px;}
.fc2_c00115{color:transparent;}
.fc1_c00115{color:rgb(128,128,128);}
.fc0_c00115{color:rgb(0,0,0);}
.fs7_c00115{font-size:48.000000px;}
.fs6_c00115{font-size:66.000000px;}
.fs2_c00115{font-size:72.000000px;}
.fs3_c00115{font-size:81.000000px;}
.fs5_c00115{font-size:87.000000px;}
.fs0_c00115{font-size:99.000000px;}
.fs4_c00115{font-size:102.000000px;}
.fs1_c00115{font-size:132.000000px;}
.y0_c00115{bottom:0.000000px;}
.y26_c00115{bottom:3.105000px;}
.y25_c00115{bottom:7.228369px;}
.y24_c00115{bottom:54.570000px;}
.y23_c00115{bottom:77.970000px;}
.y22_c00115{bottom:103.320000px;}
.y21_c00115{bottom:130.920000px;}
.y20_c00115{bottom:153.120000px;}
.y1f_c00115{bottom:178.770000px;}
.y1e_c00115{bottom:202.770000px;}
.y1d_c00115{bottom:227.070000px;}
.y1c_c00115{bottom:251.820000px;}
.y1b_c00115{bottom:276.720000px;}
.y1a_c00115{bottom:300.720000px;}
.y19_c00115{bottom:323.220000px;}
.y18_c00115{bottom:349.920000px;}
.y17_c00115{bottom:374.220000px;}
.y16_c00115{bottom:399.570000px;}
.y15_c00115{bottom:423.120000px;}
.y14_c00115{bottom:447.420000px;}
.y13_c00115{bottom:471.870000px;}
.y12_c00115{bottom:495.120000px;}
.y11_c00115{bottom:520.470000px;}
.y10_c00115{bottom:547.020000px;}
.yf_c00115{bottom:569.670000px;}
.ye_c00115{bottom:593.970000px;}
.yd_c00115{bottom:618.270000px;}
.yc_c00115{bottom:642.570000px;}
.yb_c00115{bottom:666.870000px;}
.ya_c00115{bottom:691.770000px;}
.y9_c00115{bottom:716.070000px;}
.y8_c00115{bottom:740.370000px;}
.y7_c00115{bottom:764.670000px;}
.y6_c00115{bottom:789.120000px;}
.y5_c00115{bottom:814.020000px;}
.y4_c00115{bottom:837.720000px;}
.y3_c00115{bottom:862.020000px;}
.y2_c00115{bottom:886.320000px;}
.y1_c00115{bottom:921.420000px;}
.h8_c00115{height:13.200073px;}
.h9_c00115{height:43.804688px;}
.h3_c00115{height:79.497070px;}
.h4_c00115{height:84.269531px;}
.h6_c00115{height:91.160156px;}
.h7_c00115{height:91.176000px;}
.h5_c00115{height:129.143555px;}
.h2_c00115{height:167.126953px;}
.h1_c00115{height:981.000000px;}
.h0_c00115{height:981.150000px;}
.w1_c00115{width:104.875500px;}
.w0_c00115{width:657.750000px;}
.x0_c00115{left:0.000000px;}
.x4_c00115{left:45.450000px;}
.x6_c00115{left:46.650000px;}
.x7_c00115{left:48.600000px;}
.x8_c00115{left:50.250000px;}
.xb_c00115{left:89.850000px;}
.xc_c00115{left:109.950000px;}
.x1_c00115{left:135.300000px;}
.x2_c00115{left:136.350000px;}
.x3_c00115{left:137.400000px;}
.x5_c00115{left:139.800000px;}
.x9_c00115{left:143.850000px;}
.xa_c00115{left:168.450000px;}
.xe_c00115{left:280.689240px;}
.xd_c00115{left:571.050000px;}
@media print{
.v0_c00115{vertical-align:0.000000pt;}
.ls6_c00115{letter-spacing:-2.666667pt;}
.ls5_c00115{letter-spacing:0.000000pt;}
.ls3_c00115{letter-spacing:1.386667pt;}
.ls2_c00115{letter-spacing:6.933333pt;}
.ls7_c00115{letter-spacing:10.666667pt;}
.ls1_c00115{letter-spacing:11.488000pt;}
.ls4_c00115{letter-spacing:12.800000pt;}
.ls0_c00115{letter-spacing:34.800000pt;}
.ws2_c00115{word-spacing:-60.165333pt;}
.ws3_c00115{word-spacing:-26.090667pt;}
.ws0_c00115{word-spacing:-21.208000pt;}
.ws1_c00115{word-spacing:-15.424000pt;}
.ws4_c00115{word-spacing:0.000000pt;}
._2a_c00115{margin-left:-23.472000pt;}
._23_c00115{margin-left:-20.568000pt;}
._1b_c00115{margin-left:-18.082667pt;}
._15_c00115{margin-left:-16.138667pt;}
._17_c00115{margin-left:-13.600000pt;}
._12_c00115{margin-left:-9.186667pt;}
._16_c00115{margin-left:-7.706667pt;}
._13_c00115{margin-left:-6.509333pt;}
._c_c00115{margin-left:-5.144000pt;}
._9_c00115{margin-left:-3.472000pt;}
._6_c00115{margin-left:-2.341333pt;}
._7_c00115{margin-left:-0.949333pt;}
._10_c00115{width:0.912000pt;}
._b_c00115{width:1.858667pt;}
._e_c00115{width:2.994667pt;}
._a_c00115{width:3.949333pt;}
._5_c00115{width:5.520000pt;}
._4_c00115{width:6.784000pt;}
._1f_c00115{width:7.725333pt;}
._0_c00115{width:8.624000pt;}
._d_c00115{width:10.413333pt;}
._f_c00115{width:11.541333pt;}
._1_c00115{width:13.288000pt;}
._25_c00115{width:14.514667pt;}
._21_c00115{width:16.029333pt;}
._8_c00115{width:17.784000pt;}
._11_c00115{width:19.053333pt;}
._3_c00115{width:20.714667pt;}
._28_c00115{width:25.309333pt;}
._1a_c00115{width:34.269333pt;}
._19_c00115{width:35.386667pt;}
._14_c00115{width:39.976000pt;}
._26_c00115{width:41.733333pt;}
._20_c00115{width:54.848000pt;}
._1e_c00115{width:67.005333pt;}
._22_c00115{width:80.928000pt;}
._2b_c00115{width:87.336000pt;}
._2_c00115{width:90.397333pt;}
._27_c00115{width:159.061333pt;}
._1c_c00115{width:182.552000pt;}
._18_c00115{width:201.866667pt;}
._24_c00115{width:207.370667pt;}
._1d_c00115{width:222.888000pt;}
._29_c00115{width:603.093333pt;}
.fs7_c00115{font-size:42.666667pt;}
.fs6_c00115{font-size:58.666667pt;}
.fs2_c00115{font-size:64.000000pt;}
.fs3_c00115{font-size:72.000000pt;}
.fs5_c00115{font-size:77.333333pt;}
.fs0_c00115{font-size:88.000000pt;}
.fs4_c00115{font-size:90.666667pt;}
.fs1_c00115{font-size:117.333333pt;}
.y0_c00115{bottom:0.000000pt;}
.y26_c00115{bottom:2.760000pt;}
.y25_c00115{bottom:6.425217pt;}
.y24_c00115{bottom:48.506667pt;}
.y23_c00115{bottom:69.306667pt;}
.y22_c00115{bottom:91.840000pt;}
.y21_c00115{bottom:116.373333pt;}
.y20_c00115{bottom:136.106667pt;}
.y1f_c00115{bottom:158.906667pt;}
.y1e_c00115{bottom:180.240000pt;}
.y1d_c00115{bottom:201.840000pt;}
.y1c_c00115{bottom:223.840000pt;}
.y1b_c00115{bottom:245.973333pt;}
.y1a_c00115{bottom:267.306667pt;}
.y19_c00115{bottom:287.306667pt;}
.y18_c00115{bottom:311.040000pt;}
.y17_c00115{bottom:332.640000pt;}
.y16_c00115{bottom:355.173333pt;}
.y15_c00115{bottom:376.106667pt;}
.y14_c00115{bottom:397.706667pt;}
.y13_c00115{bottom:419.440000pt;}
.y12_c00115{bottom:440.106667pt;}
.y11_c00115{bottom:462.640000pt;}
.y10_c00115{bottom:486.240000pt;}
.yf_c00115{bottom:506.373333pt;}
.ye_c00115{bottom:527.973333pt;}
.yd_c00115{bottom:549.573333pt;}
.yc_c00115{bottom:571.173333pt;}
.yb_c00115{bottom:592.773333pt;}
.ya_c00115{bottom:614.906667pt;}
.y9_c00115{bottom:636.506667pt;}
.y8_c00115{bottom:658.106667pt;}
.y7_c00115{bottom:679.706667pt;}
.y6_c00115{bottom:701.440000pt;}
.y5_c00115{bottom:723.573333pt;}
.y4_c00115{bottom:744.640000pt;}
.y3_c00115{bottom:766.240000pt;}
.y2_c00115{bottom:787.840000pt;}
.y1_c00115{bottom:819.040000pt;}
.h8_c00115{height:11.733399pt;}
.h9_c00115{height:38.937500pt;}
.h3_c00115{height:70.664062pt;}
.h4_c00115{height:74.906250pt;}
.h6_c00115{height:81.031250pt;}
.h7_c00115{height:81.045333pt;}
.h5_c00115{height:114.794271pt;}
.h2_c00115{height:148.557292pt;}
.h1_c00115{height:872.000000pt;}
.h0_c00115{height:872.133333pt;}
.w1_c00115{width:93.222667pt;}
.w0_c00115{width:584.666667pt;}
.x0_c00115{left:0.000000pt;}
.x4_c00115{left:40.400000pt;}
.x6_c00115{left:41.466667pt;}
.x7_c00115{left:43.200000pt;}
.x8_c00115{left:44.666667pt;}
.xb_c00115{left:79.866667pt;}
.xc_c00115{left:97.733333pt;}
.x1_c00115{left:120.266667pt;}
.x2_c00115{left:121.200000pt;}
.x3_c00115{left:122.133333pt;}
.x5_c00115{left:124.266667pt;}
.x9_c00115{left:127.866667pt;}
.xa_c00115{left:149.733333pt;}
.xe_c00115{left:249.501546pt;}
.xd_c00115{left:507.600000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a7db45e39c3dd567e34fb2c7.woff2')format("woff");}.ff1_c00116{font-family:ff1_c00116;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00116;src:url('chunks/assets/font_4e446f99a9547d7683e8b635.woff2')format("woff");}.ff2_c00116{font-family:ff2_c00116;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00116;src:url('chunks/assets/font_9a3369d7d4ad525592ea4c76.woff2')format("woff");}.ff3_c00116{font-family:ff3_c00116;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00116;src:url('chunks/assets/font_46f1b4dd6f92ca7d262ddb6d.woff2')format("woff");}.ff4_c00116{font-family:ff4_c00116;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00116;src:url('chunks/assets/font_49172a4e47f51d66125412b1.woff2')format("woff");}.ff5_c00116{font-family:ff5_c00116;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00116;src:url('chunks/assets/font_1fc4daf11b18e45ec004354a.woff2')format("woff");}.ff6_c00116{font-family:ff6_c00116;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00116;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c00116{font-family:ff7_c00116;line-height:1.219238;font-style: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;}
.ls4_c00116{letter-spacing:-3.000000px;}
.ls3_c00116{letter-spacing:0.000000px;}
.ls2_c00116{letter-spacing:0.900000px;}
.ls1_c00116{letter-spacing:1.500000px;}
.ls0_c00116{letter-spacing:23.100000px;}
.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;}
}
.ws2_c00116{word-spacing:-33.000000px;}
.ws3_c00116{word-spacing:-21.000000px;}
.ws0_c00116{word-spacing:-20.250000px;}
.ws1_c00116{word-spacing:-17.352000px;}
.ws4_c00116{word-spacing:0.000000px;}
._17_c00116{margin-left:-23.895000px;}
._15_c00116{margin-left:-20.034000px;}
._19_c00116{margin-left:-10.590000px;}
._11_c00116{margin-left:-8.586000px;}
._18_c00116{margin-left:-7.236000px;}
._10_c00116{margin-left:-5.928000px;}
._8_c00116{margin-left:-4.455000px;}
._a_c00116{margin-left:-3.438000px;}
._f_c00116{margin-left:-1.476000px;}
._6_c00116{width:1.800000px;}
._c_c00116{width:3.051000px;}
._b_c00116{width:4.212000px;}
._2_c00116{width:6.048000px;}
._d_c00116{width:7.218000px;}
._3_c00116{width:8.352000px;}
._5_c00116{width:10.080000px;}
._1_c00116{width:11.664000px;}
._0_c00116{width:13.464000px;}
._4_c00116{width:15.696000px;}
._e_c00116{width:18.117000px;}
._1b_c00116{width:26.973000px;}
._1a_c00116{width:32.157000px;}
._14_c00116{width:35.520000px;}
._9_c00116{width:60.750000px;}
._16_c00116{width:162.594000px;}
._12_c00116{width:184.653000px;}
._13_c00116{width:328.098000px;}
._1c_c00116{width:329.832000px;}
._7_c00116{width:398.517000px;}
.fc2_c00116{color:transparent;}
.fc1_c00116{color:rgb(128,128,128);}
.fc0_c00116{color:rgb(0,0,0);}
.fs7_c00116{font-size:48.000000px;}
.fs5_c00116{font-size:66.000000px;}
.fs4_c00116{font-size:69.000000px;}
.fs0_c00116{font-size:72.000000px;}
.fs3_c00116{font-size:78.000000px;}
.fs1_c00116{font-size:81.000000px;}
.fs6_c00116{font-size:84.000000px;}
.fs2_c00116{font-size:87.000000px;}
.y0_c00116{bottom:0.000000px;}
.y26_c00116{bottom:3.105000px;}
.y25_c00116{bottom:7.228371px;}
.y24_c00116{bottom:65.265000px;}
.y23_c00116{bottom:88.815000px;}
.y22_c00116{bottom:115.215000px;}
.y21_c00116{bottom:138.165000px;}
.y20_c00116{bottom:162.765000px;}
.y1f_c00116{bottom:186.765000px;}
.y1e_c00116{bottom:211.665000px;}
.y1d_c00116{bottom:236.715000px;}
.y1c_c00116{bottom:260.265000px;}
.y1b_c00116{bottom:283.815000px;}
.y1a_c00116{bottom:308.115000px;}
.y19_c00116{bottom:332.115000px;}
.y18_c00116{bottom:355.515000px;}
.y17_c00116{bottom:379.365000px;}
.y16_c00116{bottom:403.365000px;}
.y15_c00116{bottom:427.065000px;}
.y14_c00116{bottom:451.215000px;}
.y13_c00116{bottom:475.215000px;}
.y12_c00116{bottom:499.815000px;}
.y11_c00116{bottom:522.915000px;}
.y10_c00116{bottom:547.815000px;}
.yf_c00116{bottom:571.065000px;}
.ye_c00116{bottom:595.065000px;}
.yd_c00116{bottom:618.315000px;}
.yc_c00116{bottom:642.615000px;}
.yb_c00116{bottom:666.615000px;}
.ya_c00116{bottom:690.615000px;}
.y9_c00116{bottom:715.215000px;}
.y8_c00116{bottom:740.565000px;}
.y7_c00116{bottom:767.265000px;}
.y6_c00116{bottom:789.165000px;}
.y5_c00116{bottom:811.815000px;}
.y4_c00116{bottom:835.665000px;}
.y3_c00116{bottom:859.965000px;}
.y2_c00116{bottom:884.565000px;}
.y1_c00116{bottom:917.115000px;}
.h8_c00116{height:13.200074px;}
.h9_c00116{height:43.804688px;}
.h3_c00116{height:79.497070px;}
.h7_c00116{height:82.441406px;}
.h2_c00116{height:84.269531px;}
.h6_c00116{height:91.160156px;}
.h4_c00116{height:91.176000px;}
.h5_c00116{height:98.756836px;}
.h0_c00116{height:989.025000px;}
.h1_c00116{height:989.250000px;}
.w1_c00116{width:104.875500px;}
.w0_c00116{width:672.000000px;}
.x0_c00116{left:0.000000px;}
.x2_c00116{left:61.800000px;}
.x3_c00116{left:63.000000px;}
.x4_c00116{left:65.100000px;}
.x6_c00116{left:66.150000px;}
.x5_c00116{left:67.200000px;}
.x1_c00116{left:90.000000px;}
.x8_c00116{left:287.814240px;}
.x7_c00116{left:375.750000px;}
@media print{
.v0_c00116{vertical-align:0.000000pt;}
.ls4_c00116{letter-spacing:-2.666667pt;}
.ls3_c00116{letter-spacing:0.000000pt;}
.ls2_c00116{letter-spacing:0.800000pt;}
.ls1_c00116{letter-spacing:1.333333pt;}
.ls0_c00116{letter-spacing:20.533333pt;}
.ws2_c00116{word-spacing:-29.333333pt;}
.ws3_c00116{word-spacing:-18.666667pt;}
.ws0_c00116{word-spacing:-18.000000pt;}
.ws1_c00116{word-spacing:-15.424000pt;}
.ws4_c00116{word-spacing:0.000000pt;}
._17_c00116{margin-left:-21.240000pt;}
._15_c00116{margin-left:-17.808000pt;}
._19_c00116{margin-left:-9.413333pt;}
._11_c00116{margin-left:-7.632000pt;}
._18_c00116{margin-left:-6.432000pt;}
._10_c00116{margin-left:-5.269333pt;}
._8_c00116{margin-left:-3.960000pt;}
._a_c00116{margin-left:-3.056000pt;}
._f_c00116{margin-left:-1.312000pt;}
._6_c00116{width:1.600000pt;}
._c_c00116{width:2.712000pt;}
._b_c00116{width:3.744000pt;}
._2_c00116{width:5.376000pt;}
._d_c00116{width:6.416000pt;}
._3_c00116{width:7.424000pt;}
._5_c00116{width:8.960000pt;}
._1_c00116{width:10.368000pt;}
._0_c00116{width:11.968000pt;}
._4_c00116{width:13.952000pt;}
._e_c00116{width:16.104000pt;}
._1b_c00116{width:23.976000pt;}
._1a_c00116{width:28.584000pt;}
._14_c00116{width:31.573333pt;}
._9_c00116{width:54.000000pt;}
._16_c00116{width:144.528000pt;}
._12_c00116{width:164.136000pt;}
._13_c00116{width:291.642667pt;}
._1c_c00116{width:293.184000pt;}
._7_c00116{width:354.237333pt;}
.fs7_c00116{font-size:42.666667pt;}
.fs5_c00116{font-size:58.666667pt;}
.fs4_c00116{font-size:61.333333pt;}
.fs0_c00116{font-size:64.000000pt;}
.fs3_c00116{font-size:69.333333pt;}
.fs1_c00116{font-size:72.000000pt;}
.fs6_c00116{font-size:74.666667pt;}
.fs2_c00116{font-size:77.333333pt;}
.y0_c00116{bottom:0.000000pt;}
.y26_c00116{bottom:2.760000pt;}
.y25_c00116{bottom:6.425219pt;}
.y24_c00116{bottom:58.013333pt;}
.y23_c00116{bottom:78.946667pt;}
.y22_c00116{bottom:102.413333pt;}
.y21_c00116{bottom:122.813333pt;}
.y20_c00116{bottom:144.680000pt;}
.y1f_c00116{bottom:166.013333pt;}
.y1e_c00116{bottom:188.146667pt;}
.y1d_c00116{bottom:210.413333pt;}
.y1c_c00116{bottom:231.346667pt;}
.y1b_c00116{bottom:252.280000pt;}
.y1a_c00116{bottom:273.880000pt;}
.y19_c00116{bottom:295.213333pt;}
.y18_c00116{bottom:316.013333pt;}
.y17_c00116{bottom:337.213333pt;}
.y16_c00116{bottom:358.546667pt;}
.y15_c00116{bottom:379.613333pt;}
.y14_c00116{bottom:401.080000pt;}
.y13_c00116{bottom:422.413333pt;}
.y12_c00116{bottom:444.280000pt;}
.y11_c00116{bottom:464.813333pt;}
.y10_c00116{bottom:486.946667pt;}
.yf_c00116{bottom:507.613333pt;}
.ye_c00116{bottom:528.946667pt;}
.yd_c00116{bottom:549.613333pt;}
.yc_c00116{bottom:571.213333pt;}
.yb_c00116{bottom:592.546667pt;}
.ya_c00116{bottom:613.880000pt;}
.y9_c00116{bottom:635.746667pt;}
.y8_c00116{bottom:658.280000pt;}
.y7_c00116{bottom:682.013333pt;}
.y6_c00116{bottom:701.480000pt;}
.y5_c00116{bottom:721.613333pt;}
.y4_c00116{bottom:742.813333pt;}
.y3_c00116{bottom:764.413333pt;}
.y2_c00116{bottom:786.280000pt;}
.y1_c00116{bottom:815.213333pt;}
.h8_c00116{height:11.733399pt;}
.h9_c00116{height:38.937500pt;}
.h3_c00116{height:70.664062pt;}
.h7_c00116{height:73.281250pt;}
.h2_c00116{height:74.906250pt;}
.h6_c00116{height:81.031250pt;}
.h4_c00116{height:81.045333pt;}
.h5_c00116{height:87.783854pt;}
.h0_c00116{height:879.133333pt;}
.h1_c00116{height:879.333333pt;}
.w1_c00116{width:93.222667pt;}
.w0_c00116{width:597.333333pt;}
.x0_c00116{left:0.000000pt;}
.x2_c00116{left:54.933333pt;}
.x3_c00116{left:56.000000pt;}
.x4_c00116{left:57.866667pt;}
.x6_c00116{left:58.800000pt;}
.x5_c00116{left:59.733333pt;}
.x1_c00116{left:80.000000pt;}
.x8_c00116{left:255.834880pt;}
.x7_c00116{left:334.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_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_bc488e88915c0ff59c4e19be.woff2')format("woff");}.ff1_c00117{font-family:ff1_c00117;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00117;src:url('chunks/assets/font_c45fffd112def8928a5dedf9.woff2')format("woff");}.ff2_c00117{font-family:ff2_c00117;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00117;src:url('chunks/assets/font_93d799e9f46037ec4bd34120.woff2')format("woff");}.ff3_c00117{font-family:ff3_c00117;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00117;src:url('chunks/assets/font_e41ecc8928f230b1a361c02e.woff2')format("woff");}.ff4_c00117{font-family:ff4_c00117;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00117;src:url('chunks/assets/font_6f25092bdf5aaf5172ccea0b.woff2')format("woff");}.ff5_c00117{font-family:ff5_c00117;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00117;src:url('chunks/assets/font_8fe44b92c08aebfc7c1d4cda.woff2')format("woff");}.ff6_c00117{font-family:ff6_c00117;line-height:1.437000;font-style:normal;font-weight: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_c00117;src:url('chunks/assets/font_9711469b6bdb62ce876bb9ba.woff2')format("woff");}.ff7_c00117{font-family:ff7_c00117;line-height:1.437000;font-style:normal;font-weight: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_c00117;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff8_c00117{font-family:ff8_c00117;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00117{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00117{vertical-align:0.000000px;}
.v1_c00117{vertical-align:13.200000px;}
.ls5_c00117{letter-spacing:-6.000000px;}
.ls7_c00117{letter-spacing:-3.000000px;}
.ls6_c00117{letter-spacing:0.000000px;}
.ls4_c00117{letter-spacing:5.100000px;}
.ls8_c00117{letter-spacing:9.000000px;}
.ls0_c00117{letter-spacing:11.880000px;}
.ls2_c00117{letter-spacing:13.020000px;}
.ls1_c00117{letter-spacing:52.950000px;}
.ls3_c00117{letter-spacing:154.260000px;}
.sc__c00117{text-shadow:none;}
.sc0_c00117{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00117{-webkit-text-stroke:0px transparent;}
.sc0_c00117{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00117{word-spacing:-67.686000px;}
.ws0_c00117{word-spacing:-50.682000px;}
.ws2_c00117{word-spacing:-28.020000px;}
.ws3_c00117{word-spacing:-24.000000px;}
.ws1_c00117{word-spacing:-20.250000px;}
.ws5_c00117{word-spacing:0.000000px;}
._1d_c00117{margin-left:-19.455000px;}
._6_c00117{margin-left:-18.360000px;}
._22_c00117{margin-left:-14.769000px;}
._9_c00117{margin-left:-13.680000px;}
._24_c00117{margin-left:-12.567000px;}
._1a_c00117{margin-left:-10.881000px;}
._25_c00117{margin-left:-9.786000px;}
._20_c00117{margin-left:-8.358000px;}
._1f_c00117{margin-left:-7.344000px;}
._2_c00117{margin-left:-6.048000px;}
._16_c00117{margin-left:-4.101000px;}
._1c_c00117{margin-left:-2.874000px;}
._0_c00117{margin-left:-1.824000px;}
._17_c00117{width:1.332000px;}
._12_c00117{width:2.430000px;}
._15_c00117{width:4.212000px;}
._d_c00117{width:5.400000px;}
._13_c00117{width:6.993000px;}
._18_c00117{width:8.286000px;}
._11_c00117{width:9.492000px;}
._e_c00117{width:10.500000px;}
._3_c00117{width:12.000000px;}
._f_c00117{width:13.380000px;}
._1_c00117{width:15.072000px;}
._b_c00117{width:16.200000px;}
._7_c00117{width:17.460000px;}
._10_c00117{width:19.080000px;}
._a_c00117{width:20.100000px;}
._8_c00117{width:22.200000px;}
._19_c00117{width:24.324000px;}
._14_c00117{width:26.274000px;}
._c_c00117{width:27.720000px;}
._5_c00117{width:31.656000px;}
._1e_c00117{width:36.516000px;}
._21_c00117{width:114.990000px;}
._4_c00117{width:168.864000px;}
._23_c00117{width:260.055000px;}
._1b_c00117{width:271.269000px;}
.fc2_c00117{color:transparent;}
.fc1_c00117{color:rgb(128,128,128);}
.fc0_c00117{color:rgb(0,0,0);}
.fs5_c00117{font-size:48.000000px;}
.fs0_c00117{font-size:60.000000px;}
.fs3_c00117{font-size:69.000000px;}
.fs2_c00117{font-size:81.000000px;}
.fs4_c00117{font-size:87.000000px;}
.fs1_c00117{font-size:96.000000px;}
.y0_c00117{bottom:0.000000px;}
.y26_c00117{bottom:3.105000px;}
.y25_c00117{bottom:7.228357px;}
.y24_c00117{bottom:62.880000px;}
.y23_c00117{bottom:88.830000px;}
.y22_c00117{bottom:115.380000px;}
.y21_c00117{bottom:139.830000px;}
.y20_c00117{bottom:164.130000px;}
.y1f_c00117{bottom:188.430000px;}
.y1e_c00117{bottom:211.980000px;}
.y1d_c00117{bottom:237.030000px;}
.y1c_c00117{bottom:261.630000px;}
.y1b_c00117{bottom:286.230000px;}
.y1a_c00117{bottom:309.930000px;}
.y19_c00117{bottom:334.080000px;}
.y18_c00117{bottom:358.530000px;}
.y17_c00117{bottom:382.830000px;}
.y16_c00117{bottom:406.380000px;}
.y15_c00117{bottom:430.680000px;}
.y14_c00117{bottom:454.680000px;}
.y13_c00117{bottom:478.530000px;}
.y12_c00117{bottom:499.230000px;}
.y11_c00117{bottom:526.830000px;}
.y10_c00117{bottom:551.880000px;}
.yf_c00117{bottom:575.730000px;}
.ye_c00117{bottom:600.030000px;}
.yd_c00117{bottom:624.330000px;}
.yc_c00117{bottom:648.330000px;}
.yb_c00117{bottom:672.630000px;}
.ya_c00117{bottom:696.330000px;}
.y9_c00117{bottom:720.930000px;}
.y8_c00117{bottom:744.930000px;}
.y7_c00117{bottom:768.780000px;}
.y6_c00117{bottom:793.080000px;}
.y5_c00117{bottom:817.380000px;}
.y4_c00117{bottom:841.080000px;}
.y3_c00117{bottom:865.080000px;}
.y2_c00117{bottom:889.080000px;}
.y1_c00117{bottom:923.430000px;}
.h5_c00117{height:13.200074px;}
.h6_c00117{height:43.804688px;}
.h2_c00117{height:79.497070px;}
.h4_c00117{height:91.176000px;}
.h3_c00117{height:92.697070px;}
.h1_c00117{height:94.218750px;}
.h0_c00117{height:995.250000px;}
.w2_c00117{width:104.875500px;}
.w0_c00117{width:667.425000px;}
.w1_c00117{width:667.500000px;}
.x0_c00117{left:0.000000px;}
.x3_c00117{left:25.650000px;}
.x4_c00117{left:28.050000px;}
.x8_c00117{left:29.700000px;}
.x5_c00117{left:123.150000px;}
.x2_c00117{left:124.800000px;}
.x1_c00117{left:126.150000px;}
.x7_c00117{left:175.500000px;}
.x6_c00117{left:190.650000px;}
.xa_c00117{left:285.526749px;}
.x9_c00117{left:590.250000px;}
@media print{
.v0_c00117{vertical-align:0.000000pt;}
.v1_c00117{vertical-align:11.733333pt;}
.ls5_c00117{letter-spacing:-5.333333pt;}
.ls7_c00117{letter-spacing:-2.666667pt;}
.ls6_c00117{letter-spacing:0.000000pt;}
.ls4_c00117{letter-spacing:4.533333pt;}
.ls8_c00117{letter-spacing:8.000000pt;}
.ls0_c00117{letter-spacing:10.560000pt;}
.ls2_c00117{letter-spacing:11.573333pt;}
.ls1_c00117{letter-spacing:47.066667pt;}
.ls3_c00117{letter-spacing:137.120000pt;}
.ws4_c00117{word-spacing:-60.165333pt;}
.ws0_c00117{word-spacing:-45.050667pt;}
.ws2_c00117{word-spacing:-24.906667pt;}
.ws3_c00117{word-spacing:-21.333333pt;}
.ws1_c00117{word-spacing:-18.000000pt;}
.ws5_c00117{word-spacing:0.000000pt;}
._1d_c00117{margin-left:-17.293333pt;}
._6_c00117{margin-left:-16.320000pt;}
._22_c00117{margin-left:-13.128000pt;}
._9_c00117{margin-left:-12.160000pt;}
._24_c00117{margin-left:-11.170667pt;}
._1a_c00117{margin-left:-9.672000pt;}
._25_c00117{margin-left:-8.698667pt;}
._20_c00117{margin-left:-7.429333pt;}
._1f_c00117{margin-left:-6.528000pt;}
._2_c00117{margin-left:-5.376000pt;}
._16_c00117{margin-left:-3.645333pt;}
._1c_c00117{margin-left:-2.554667pt;}
._0_c00117{margin-left:-1.621333pt;}
._17_c00117{width:1.184000pt;}
._12_c00117{width:2.160000pt;}
._15_c00117{width:3.744000pt;}
._d_c00117{width:4.800000pt;}
._13_c00117{width:6.216000pt;}
._18_c00117{width:7.365333pt;}
._11_c00117{width:8.437333pt;}
._e_c00117{width:9.333333pt;}
._3_c00117{width:10.666667pt;}
._f_c00117{width:11.893333pt;}
._1_c00117{width:13.397333pt;}
._b_c00117{width:14.400000pt;}
._7_c00117{width:15.520000pt;}
._10_c00117{width:16.960000pt;}
._a_c00117{width:17.866667pt;}
._8_c00117{width:19.733333pt;}
._19_c00117{width:21.621333pt;}
._14_c00117{width:23.354667pt;}
._c_c00117{width:24.640000pt;}
._5_c00117{width:28.138667pt;}
._1e_c00117{width:32.458667pt;}
._21_c00117{width:102.213333pt;}
._4_c00117{width:150.101333pt;}
._23_c00117{width:231.160000pt;}
._1b_c00117{width:241.128000pt;}
.fs5_c00117{font-size:42.666667pt;}
.fs0_c00117{font-size:53.333333pt;}
.fs3_c00117{font-size:61.333333pt;}
.fs2_c00117{font-size:72.000000pt;}
.fs4_c00117{font-size:77.333333pt;}
.fs1_c00117{font-size:85.333333pt;}
.y0_c00117{bottom:0.000000pt;}
.y26_c00117{bottom:2.760000pt;}
.y25_c00117{bottom:6.425206pt;}
.y24_c00117{bottom:55.893333pt;}
.y23_c00117{bottom:78.960000pt;}
.y22_c00117{bottom:102.560000pt;}
.y21_c00117{bottom:124.293333pt;}
.y20_c00117{bottom:145.893333pt;}
.y1f_c00117{bottom:167.493333pt;}
.y1e_c00117{bottom:188.426667pt;}
.y1d_c00117{bottom:210.693333pt;}
.y1c_c00117{bottom:232.560000pt;}
.y1b_c00117{bottom:254.426667pt;}
.y1a_c00117{bottom:275.493333pt;}
.y19_c00117{bottom:296.960000pt;}
.y18_c00117{bottom:318.693333pt;}
.y17_c00117{bottom:340.293333pt;}
.y16_c00117{bottom:361.226667pt;}
.y15_c00117{bottom:382.826667pt;}
.y14_c00117{bottom:404.160000pt;}
.y13_c00117{bottom:425.360000pt;}
.y12_c00117{bottom:443.760000pt;}
.y11_c00117{bottom:468.293333pt;}
.y10_c00117{bottom:490.560000pt;}
.yf_c00117{bottom:511.760000pt;}
.ye_c00117{bottom:533.360000pt;}
.yd_c00117{bottom:554.960000pt;}
.yc_c00117{bottom:576.293333pt;}
.yb_c00117{bottom:597.893333pt;}
.ya_c00117{bottom:618.960000pt;}
.y9_c00117{bottom:640.826667pt;}
.y8_c00117{bottom:662.160000pt;}
.y7_c00117{bottom:683.360000pt;}
.y6_c00117{bottom:704.960000pt;}
.y5_c00117{bottom:726.560000pt;}
.y4_c00117{bottom:747.626667pt;}
.y3_c00117{bottom:768.960000pt;}
.y2_c00117{bottom:790.293333pt;}
.y1_c00117{bottom:820.826667pt;}
.h5_c00117{height:11.733399pt;}
.h6_c00117{height:38.937500pt;}
.h2_c00117{height:70.664062pt;}
.h4_c00117{height:81.045333pt;}
.h3_c00117{height:82.397396pt;}
.h1_c00117{height:83.750000pt;}
.h0_c00117{height:884.666667pt;}
.w2_c00117{width:93.222667pt;}
.w0_c00117{width:593.266667pt;}
.w1_c00117{width:593.333333pt;}
.x0_c00117{left:0.000000pt;}
.x3_c00117{left:22.800000pt;}
.x4_c00117{left:24.933333pt;}
.x8_c00117{left:26.400000pt;}
.x5_c00117{left:109.466667pt;}
.x2_c00117{left:110.933333pt;}
.x1_c00117{left:112.133333pt;}
.x7_c00117{left:156.000000pt;}
.x6_c00117{left:169.466667pt;}
.xa_c00117{left:253.801554pt;}
.x9_c00117{left:524.666667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_9624cb0b4254a9f528d9f9c9.woff2')format("woff");}.ff1_c00118{font-family:ff1_c00118;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00118;src:url('chunks/assets/font_cc8de71db34693287947a177.woff2')format("woff");}.ff2_c00118{font-family:ff2_c00118;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00118;src:url('chunks/assets/font_38ff610f4e88c37bdde3cf4f.woff2')format("woff");}.ff3_c00118{font-family:ff3_c00118;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00118;src:url('chunks/assets/font_52e2ce0b64a4fbb9c08a1689.woff2')format("woff");}.ff4_c00118{font-family:ff4_c00118;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00118;src:url('chunks/assets/font_f3fc1975af5de0eb2acf94cb.woff2')format("woff");}.ff5_c00118{font-family:ff5_c00118;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00118;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c00118{font-family:ff6_c00118;line-height:1.219238;font-style: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.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m1_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;}
.ls2_c00118{letter-spacing:0.000000px;}
.ls1_c00118{letter-spacing:5.880000px;}
.ls0_c00118{letter-spacing:37.380000px;}
.sc__c00118{text-shadow:none;}
.sc0_c00118{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00118{-webkit-text-stroke:0px transparent;}
.sc0_c00118{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00118{word-spacing:-67.686000px;}
.ws0_c00118{word-spacing:-25.305000px;}
.ws1_c00118{word-spacing:-17.352000px;}
.ws3_c00118{word-spacing:0.000000px;}
._13_c00118{margin-left:-22.155000px;}
._14_c00118{margin-left:-19.845000px;}
._0_c00118{margin-left:-17.172000px;}
._10_c00118{margin-left:-13.185000px;}
._7_c00118{margin-left:-11.235000px;}
._15_c00118{margin-left:-9.240000px;}
._4_c00118{margin-left:-7.980000px;}
._f_c00118{margin-left:-6.390000px;}
._5_c00118{margin-left:-5.250000px;}
._1_c00118{margin-left:-3.255000px;}
._18_c00118{margin-left:-2.181000px;}
._2_c00118{margin-left:-1.155000px;}
._e_c00118{width:1.959000px;}
._6_c00118{width:3.150000px;}
._a_c00118{width:5.103000px;}
._c_c00118{width:6.642000px;}
._d_c00118{width:8.100000px;}
._b_c00118{width:9.654000px;}
._3_c00118{width:11.655000px;}
._11_c00118{width:13.638000px;}
._16_c00118{width:15.201000px;}
._17_c00118{width:16.590000px;}
._1c_c00118{width:17.856000px;}
._12_c00118{width:21.969000px;}
._19_c00118{width:25.335000px;}
._9_c00118{width:33.264000px;}
._1d_c00118{width:35.124000px;}
._1b_c00118{width:50.688000px;}
._8_c00118{width:66.420000px;}
._1a_c00118{width:123.894000px;}
._1e_c00118{width:305.532000px;}
.fc2_c00118{color:transparent;}
.fc1_c00118{color:rgb(128,128,128);}
.fc0_c00118{color:rgb(0,0,0);}
.fs6_c00118{font-size:48.000000px;}
.fs2_c00118{font-size:60.000000px;}
.fs4_c00118{font-size:72.000000px;}
.fs3_c00118{font-size:81.000000px;}
.fs5_c00118{font-size:87.000000px;}
.fs1_c00118{font-size:105.000000px;}
.fs0_c00118{font-size:108.000000px;}
.y0_c00118{bottom:0.000000px;}
.y26_c00118{bottom:3.105000px;}
.y25_c00118{bottom:7.228355px;}
.y24_c00118{bottom:68.835000px;}
.y23_c00118{bottom:92.385000px;}
.y22_c00118{bottom:117.435000px;}
.y21_c00118{bottom:141.735000px;}
.y20_c00118{bottom:166.035000px;}
.y1f_c00118{bottom:190.335000px;}
.y1e_c00118{bottom:214.935000px;}
.y1d_c00118{bottom:239.235000px;}
.y1c_c00118{bottom:263.535000px;}
.y1b_c00118{bottom:287.235000px;}
.y1a_c00118{bottom:311.085000px;}
.y19_c00118{bottom:334.485000px;}
.y18_c00118{bottom:359.085000px;}
.y17_c00118{bottom:382.635000px;}
.y16_c00118{bottom:406.635000px;}
.y15_c00118{bottom:430.935000px;}
.y14_c00118{bottom:454.635000px;}
.y13_c00118{bottom:478.935000px;}
.y12_c00118{bottom:503.235000px;}
.y11_c00118{bottom:526.785000px;}
.y10_c00118{bottom:550.485000px;}
.yf_c00118{bottom:574.635000px;}
.ye_c00118{bottom:598.035000px;}
.yd_c00118{bottom:621.885000px;}
.yc_c00118{bottom:645.585000px;}
.yb_c00118{bottom:669.285000px;}
.ya_c00118{bottom:695.235000px;}
.y9_c00118{bottom:717.885000px;}
.y8_c00118{bottom:742.785000px;}
.y7_c00118{bottom:766.335000px;}
.y6_c00118{bottom:790.785000px;}
.y5_c00118{bottom:815.385000px;}
.y4_c00118{bottom:839.385000px;}
.y3_c00118{bottom:863.535000px;}
.y2_c00118{bottom:887.835000px;}
.y1_c00118{bottom:920.685000px;}
.h9_c00118{height:13.200074px;}
.ha_c00118{height:43.804688px;}
.h5_c00118{height:79.497070px;}
.h7_c00118{height:84.269531px;}
.h6_c00118{height:91.160156px;}
.h8_c00118{height:91.176000px;}
.h2_c00118{height:108.843750px;}
.h3_c00118{height:122.893066px;}
.h4_c00118{height:132.941895px;}
.h0_c00118{height:977.925000px;}
.h1_c00118{height:978.000000px;}
.w2_c00118{width:104.875500px;}
.w0_c00118{width:664.200000px;}
.w1_c00118{width:664.500000px;}
.x0_c00118{left:0.000000px;}
.x1_c00118{left:27.750000px;}
.xa_c00118{left:29.400000px;}
.x8_c00118{left:33.150000px;}
.xd_c00118{left:42.750000px;}
.xc_c00118{left:44.100000px;}
.xb_c00118{left:46.500000px;}
.x7_c00118{left:48.300000px;}
.x9_c00118{left:49.950000px;}
.x6_c00118{left:51.300000px;}
.x5_c00118{left:53.250000px;}
.x2_c00118{left:86.100000px;}
.xf_c00118{left:283.914230px;}
.xe_c00118{left:325.350000px;}
.x3_c00118{left:477.300000px;}
.x4_c00118{left:533.250000px;}
@media print{
.v0_c00118{vertical-align:0.000000pt;}
.ls2_c00118{letter-spacing:0.000000pt;}
.ls1_c00118{letter-spacing:5.226667pt;}
.ls0_c00118{letter-spacing:33.226667pt;}
.ws2_c00118{word-spacing:-60.165333pt;}
.ws0_c00118{word-spacing:-22.493333pt;}
.ws1_c00118{word-spacing:-15.424000pt;}
.ws3_c00118{word-spacing:0.000000pt;}
._13_c00118{margin-left:-19.693333pt;}
._14_c00118{margin-left:-17.640000pt;}
._0_c00118{margin-left:-15.264000pt;}
._10_c00118{margin-left:-11.720000pt;}
._7_c00118{margin-left:-9.986667pt;}
._15_c00118{margin-left:-8.213333pt;}
._4_c00118{margin-left:-7.093333pt;}
._f_c00118{margin-left:-5.680000pt;}
._5_c00118{margin-left:-4.666667pt;}
._1_c00118{margin-left:-2.893333pt;}
._18_c00118{margin-left:-1.938667pt;}
._2_c00118{margin-left:-1.026667pt;}
._e_c00118{width:1.741333pt;}
._6_c00118{width:2.800000pt;}
._a_c00118{width:4.536000pt;}
._c_c00118{width:5.904000pt;}
._d_c00118{width:7.200000pt;}
._b_c00118{width:8.581333pt;}
._3_c00118{width:10.360000pt;}
._11_c00118{width:12.122667pt;}
._16_c00118{width:13.512000pt;}
._17_c00118{width:14.746667pt;}
._1c_c00118{width:15.872000pt;}
._12_c00118{width:19.528000pt;}
._19_c00118{width:22.520000pt;}
._9_c00118{width:29.568000pt;}
._1d_c00118{width:31.221333pt;}
._1b_c00118{width:45.056000pt;}
._8_c00118{width:59.040000pt;}
._1a_c00118{width:110.128000pt;}
._1e_c00118{width:271.584000pt;}
.fs6_c00118{font-size:42.666667pt;}
.fs2_c00118{font-size:53.333333pt;}
.fs4_c00118{font-size:64.000000pt;}
.fs3_c00118{font-size:72.000000pt;}
.fs5_c00118{font-size:77.333333pt;}
.fs1_c00118{font-size:93.333333pt;}
.fs0_c00118{font-size:96.000000pt;}
.y0_c00118{bottom:0.000000pt;}
.y26_c00118{bottom:2.760000pt;}
.y25_c00118{bottom:6.425204pt;}
.y24_c00118{bottom:61.186667pt;}
.y23_c00118{bottom:82.120000pt;}
.y22_c00118{bottom:104.386667pt;}
.y21_c00118{bottom:125.986667pt;}
.y20_c00118{bottom:147.586667pt;}
.y1f_c00118{bottom:169.186667pt;}
.y1e_c00118{bottom:191.053333pt;}
.y1d_c00118{bottom:212.653333pt;}
.y1c_c00118{bottom:234.253333pt;}
.y1b_c00118{bottom:255.320000pt;}
.y1a_c00118{bottom:276.520000pt;}
.y19_c00118{bottom:297.320000pt;}
.y18_c00118{bottom:319.186667pt;}
.y17_c00118{bottom:340.120000pt;}
.y16_c00118{bottom:361.453333pt;}
.y15_c00118{bottom:383.053333pt;}
.y14_c00118{bottom:404.120000pt;}
.y13_c00118{bottom:425.720000pt;}
.y12_c00118{bottom:447.320000pt;}
.y11_c00118{bottom:468.253333pt;}
.y10_c00118{bottom:489.320000pt;}
.yf_c00118{bottom:510.786667pt;}
.ye_c00118{bottom:531.586667pt;}
.yd_c00118{bottom:552.786667pt;}
.yc_c00118{bottom:573.853333pt;}
.yb_c00118{bottom:594.920000pt;}
.ya_c00118{bottom:617.986667pt;}
.y9_c00118{bottom:638.120000pt;}
.y8_c00118{bottom:660.253333pt;}
.y7_c00118{bottom:681.186667pt;}
.y6_c00118{bottom:702.920000pt;}
.y5_c00118{bottom:724.786667pt;}
.y4_c00118{bottom:746.120000pt;}
.y3_c00118{bottom:767.586667pt;}
.y2_c00118{bottom:789.186667pt;}
.y1_c00118{bottom:818.386667pt;}
.h9_c00118{height:11.733399pt;}
.ha_c00118{height:38.937500pt;}
.h5_c00118{height:70.664062pt;}
.h7_c00118{height:74.906250pt;}
.h6_c00118{height:81.031250pt;}
.h8_c00118{height:81.045333pt;}
.h2_c00118{height:96.750000pt;}
.h3_c00118{height:109.238281pt;}
.h4_c00118{height:118.170573pt;}
.h0_c00118{height:869.266667pt;}
.h1_c00118{height:869.333333pt;}
.w2_c00118{width:93.222667pt;}
.w0_c00118{width:590.400000pt;}
.w1_c00118{width:590.666667pt;}
.x0_c00118{left:0.000000pt;}
.x1_c00118{left:24.666667pt;}
.xa_c00118{left:26.133333pt;}
.x8_c00118{left:29.466667pt;}
.xd_c00118{left:38.000000pt;}
.xc_c00118{left:39.200000pt;}
.xb_c00118{left:41.333333pt;}
.x7_c00118{left:42.933333pt;}
.x9_c00118{left:44.400000pt;}
.x6_c00118{left:45.600000pt;}
.x5_c00118{left:47.333333pt;}
.x2_c00118{left:76.533333pt;}
.xf_c00118{left:252.368205pt;}
.xe_c00118{left:289.200000pt;}
.x3_c00118{left:424.266667pt;}
.x4_c00118{left:474.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_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_5be461167bd2326af52c63c1.woff2')format("woff");}.ff1_c00119{font-family:ff1_c00119;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00119;src:url('chunks/assets/font_716fcf289a8e9bae9a17b015.woff2')format("woff");}.ff2_c00119{font-family:ff2_c00119;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00119;src:url('chunks/assets/font_0e39fd8faa244c9df41bfa26.woff2')format("woff");}.ff3_c00119{font-family:ff3_c00119;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00119;src:url('chunks/assets/font_39e11e856799e9c26a341396.woff2')format("woff");}.ff4_c00119{font-family:ff4_c00119;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00119;src:url('chunks/assets/font_4af0892c35372ba25e9a705c.woff2')format("woff");}.ff5_c00119{font-family:ff5_c00119;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00119;src:url('chunks/assets/font_1dfe758ea8aa207dd9a3b523.woff2')format("woff");}.ff6_c00119{font-family:ff6_c00119;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00119;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c00119{font-family:ff7_c00119;line-height:1.219238;font-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_c00119{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,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;}
.ls4_c00119{letter-spacing:-3.000000px;}
.ls3_c00119{letter-spacing:0.000000px;}
.ls1_c00119{letter-spacing:4.212000px;}
.ls2_c00119{letter-spacing:4.800000px;}
.ls0_c00119{letter-spacing:9.411000px;}
.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:-67.686000px;}
.ws3_c00119{word-spacing:-27.000000px;}
.ws1_c00119{word-spacing:-24.462000px;}
.ws2_c00119{word-spacing:-17.352000px;}
.ws4_c00119{word-spacing:0.000000px;}
._1d_c00119{margin-left:-31.656000px;}
._8_c00119{margin-left:-25.212000px;}
._13_c00119{margin-left:-21.870000px;}
._6_c00119{margin-left:-20.856000px;}
._2_c00119{margin-left:-12.069000px;}
._7_c00119{margin-left:-10.956000px;}
._0_c00119{margin-left:-9.315000px;}
._5_c00119{margin-left:-8.265000px;}
._19_c00119{margin-left:-7.146000px;}
._3_c00119{margin-left:-5.670000px;}
._1_c00119{margin-left:-4.617000px;}
._12_c00119{margin-left:-3.348000px;}
._10_c00119{margin-left:-2.079000px;}
._14_c00119{margin-left:-1.053000px;}
._4_c00119{width:1.134000px;}
._c_c00119{width:2.826000px;}
._f_c00119{width:4.824000px;}
._e_c00119{width:5.832000px;}
._11_c00119{width:7.452000px;}
._17_c00119{width:9.387000px;}
._15_c00119{width:10.440000px;}
._18_c00119{width:11.673000px;}
._1c_c00119{width:12.726000px;}
._d_c00119{width:13.995000px;}
._9_c00119{width:15.312000px;}
._1a_c00119{width:17.010000px;}
._b_c00119{width:18.756000px;}
._16_c00119{width:25.248000px;}
._a_c00119{width:91.005000px;}
._1b_c00119{width:251.799000px;}
.fc2_c00119{color:transparent;}
.fc1_c00119{color:rgb(128,128,128);}
.fc0_c00119{color:rgb(0,0,0);}
.fs8_c00119{font-size:48.000000px;}
.fs5_c00119{font-size:66.000000px;}
.fs6_c00119{font-size:72.000000px;}
.fs0_c00119{font-size:81.000000px;}
.fs3_c00119{font-size:84.000000px;}
.fs4_c00119{font-size:87.000000px;}
.fs2_c00119{font-size:99.000000px;}
.fs7_c00119{font-size:108.000000px;}
.fs1_c00119{font-size:132.000000px;}
.y0_c00119{bottom:0.000000px;}
.y26_c00119{bottom:3.105000px;}
.y25_c00119{bottom:7.228369px;}
.y24_c00119{bottom:88.770000px;}
.y23_c00119{bottom:113.970000px;}
.y22_c00119{bottom:138.420000px;}
.y21_c00119{bottom:163.020000px;}
.y20_c00119{bottom:187.320000px;}
.y1f_c00119{bottom:211.920000px;}
.y1e_c00119{bottom:236.820000px;}
.y1d_c00119{bottom:260.820000px;}
.y1c_c00119{bottom:285.570000px;}
.y1b_c00119{bottom:309.420000px;}
.y1a_c00119{bottom:334.470000px;}
.y19_c00119{bottom:358.470000px;}
.y18_c00119{bottom:382.770000px;}
.y17_c00119{bottom:407.070000px;}
.y16_c00119{bottom:430.920000px;}
.y15_c00119{bottom:454.920000px;}
.y14_c00119{bottom:478.920000px;}
.y13_c00119{bottom:502.770000px;}
.y12_c00119{bottom:527.220000px;}
.y11_c00119{bottom:551.520000px;}
.y10_c00119{bottom:575.670000px;}
.yf_c00119{bottom:599.670000px;}
.ye_c00119{bottom:623.970000px;}
.yd_c00119{bottom:648.270000px;}
.yc_c00119{bottom:672.570000px;}
.yb_c00119{bottom:696.570000px;}
.ya_c00119{bottom:720.870000px;}
.y9_c00119{bottom:745.470000px;}
.y1_c00119{bottom:747.120000px;}
.y8_c00119{bottom:769.470000px;}
.y7_c00119{bottom:794.070000px;}
.y6_c00119{bottom:818.070000px;}
.y5_c00119{bottom:842.370000px;}
.y4_c00119{bottom:865.920000px;}
.y3_c00119{bottom:890.220000px;}
.y2_c00119{bottom:923.370000px;}
.h7_c00119{height:13.200073px;}
.h8_c00119{height:43.804688px;}
.h1_c00119{height:79.497070px;}
.h3_c00119{height:82.441406px;}
.h5_c00119{height:91.160156px;}
.h4_c00119{height:91.176000px;}
.h6_c00119{height:108.843750px;}
.h2_c00119{height:167.126953px;}
.h0_c00119{height:989.250000px;}
.w2_c00119{width:104.875500px;}
.w1_c00119{width:663.000000px;}
.w0_c00119{width:663.150000px;}
.x0_c00119{left:0.000000px;}
.x5_c00119{left:32.400000px;}
.x1_c00119{left:33.450000px;}
.x2_c00119{left:119.100000px;}
.x6_c00119{left:122.850000px;}
.x3_c00119{left:124.800000px;}
.x4_c00119{left:126.600000px;}
.x7_c00119{left:127.950000px;}
.x8_c00119{left:130.200000px;}
.xa_c00119{left:131.250000px;}
.x9_c00119{left:155.550000px;}
.xe_c00119{left:283.389267px;}
.xc_c00119{left:461.700000px;}
.xd_c00119{left:486.300000px;}
.xb_c00119{left:602.700000px;}
@media print{
.v0_c00119{vertical-align:0.000000pt;}
.ls4_c00119{letter-spacing:-2.666667pt;}
.ls3_c00119{letter-spacing:0.000000pt;}
.ls1_c00119{letter-spacing:3.744000pt;}
.ls2_c00119{letter-spacing:4.266667pt;}
.ls0_c00119{letter-spacing:8.365333pt;}
.ws0_c00119{word-spacing:-60.165333pt;}
.ws3_c00119{word-spacing:-24.000000pt;}
.ws1_c00119{word-spacing:-21.744000pt;}
.ws2_c00119{word-spacing:-15.424000pt;}
.ws4_c00119{word-spacing:0.000000pt;}
._1d_c00119{margin-left:-28.138667pt;}
._8_c00119{margin-left:-22.410667pt;}
._13_c00119{margin-left:-19.440000pt;}
._6_c00119{margin-left:-18.538667pt;}
._2_c00119{margin-left:-10.728000pt;}
._7_c00119{margin-left:-9.738667pt;}
._0_c00119{margin-left:-8.280000pt;}
._5_c00119{margin-left:-7.346667pt;}
._19_c00119{margin-left:-6.352000pt;}
._3_c00119{margin-left:-5.040000pt;}
._1_c00119{margin-left:-4.104000pt;}
._12_c00119{margin-left:-2.976000pt;}
._10_c00119{margin-left:-1.848000pt;}
._14_c00119{margin-left:-0.936000pt;}
._4_c00119{width:1.008000pt;}
._c_c00119{width:2.512000pt;}
._f_c00119{width:4.288000pt;}
._e_c00119{width:5.184000pt;}
._11_c00119{width:6.624000pt;}
._17_c00119{width:8.344000pt;}
._15_c00119{width:9.280000pt;}
._18_c00119{width:10.376000pt;}
._1c_c00119{width:11.312000pt;}
._d_c00119{width:12.440000pt;}
._9_c00119{width:13.610667pt;}
._1a_c00119{width:15.120000pt;}
._b_c00119{width:16.672000pt;}
._16_c00119{width:22.442667pt;}
._a_c00119{width:80.893333pt;}
._1b_c00119{width:223.821333pt;}
.fs8_c00119{font-size:42.666667pt;}
.fs5_c00119{font-size:58.666667pt;}
.fs6_c00119{font-size:64.000000pt;}
.fs0_c00119{font-size:72.000000pt;}
.fs3_c00119{font-size:74.666667pt;}
.fs4_c00119{font-size:77.333333pt;}
.fs2_c00119{font-size:88.000000pt;}
.fs7_c00119{font-size:96.000000pt;}
.fs1_c00119{font-size:117.333333pt;}
.y0_c00119{bottom:0.000000pt;}
.y26_c00119{bottom:2.760000pt;}
.y25_c00119{bottom:6.425217pt;}
.y24_c00119{bottom:78.906667pt;}
.y23_c00119{bottom:101.306667pt;}
.y22_c00119{bottom:123.040000pt;}
.y21_c00119{bottom:144.906667pt;}
.y20_c00119{bottom:166.506667pt;}
.y1f_c00119{bottom:188.373333pt;}
.y1e_c00119{bottom:210.506667pt;}
.y1d_c00119{bottom:231.840000pt;}
.y1c_c00119{bottom:253.840000pt;}
.y1b_c00119{bottom:275.040000pt;}
.y1a_c00119{bottom:297.306667pt;}
.y19_c00119{bottom:318.640000pt;}
.y18_c00119{bottom:340.240000pt;}
.y17_c00119{bottom:361.840000pt;}
.y16_c00119{bottom:383.040000pt;}
.y15_c00119{bottom:404.373333pt;}
.y14_c00119{bottom:425.706667pt;}
.y13_c00119{bottom:446.906667pt;}
.y12_c00119{bottom:468.640000pt;}
.y11_c00119{bottom:490.240000pt;}
.y10_c00119{bottom:511.706667pt;}
.yf_c00119{bottom:533.040000pt;}
.ye_c00119{bottom:554.640000pt;}
.yd_c00119{bottom:576.240000pt;}
.yc_c00119{bottom:597.840000pt;}
.yb_c00119{bottom:619.173333pt;}
.ya_c00119{bottom:640.773333pt;}
.y9_c00119{bottom:662.640000pt;}
.y1_c00119{bottom:664.106667pt;}
.y8_c00119{bottom:683.973333pt;}
.y7_c00119{bottom:705.840000pt;}
.y6_c00119{bottom:727.173333pt;}
.y5_c00119{bottom:748.773333pt;}
.y4_c00119{bottom:769.706667pt;}
.y3_c00119{bottom:791.306667pt;}
.y2_c00119{bottom:820.773333pt;}
.h7_c00119{height:11.733399pt;}
.h8_c00119{height:38.937500pt;}
.h1_c00119{height:70.664062pt;}
.h3_c00119{height:73.281250pt;}
.h5_c00119{height:81.031250pt;}
.h4_c00119{height:81.045333pt;}
.h6_c00119{height:96.750000pt;}
.h2_c00119{height:148.557292pt;}
.h0_c00119{height:879.333333pt;}
.w2_c00119{width:93.222667pt;}
.w1_c00119{width:589.333333pt;}
.w0_c00119{width:589.466667pt;}
.x0_c00119{left:0.000000pt;}
.x5_c00119{left:28.800000pt;}
.x1_c00119{left:29.733333pt;}
.x2_c00119{left:105.866667pt;}
.x6_c00119{left:109.200000pt;}
.x3_c00119{left:110.933333pt;}
.x4_c00119{left:112.533333pt;}
.x7_c00119{left:113.733333pt;}
.x8_c00119{left:115.733333pt;}
.xa_c00119{left:116.666667pt;}
.x9_c00119{left:138.266667pt;}
.xe_c00119{left:251.901571pt;}
.xc_c00119{left:410.400000pt;}
.xd_c00119{left:432.266667pt;}
.xb_c00119{left:535.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_7a30152b1fb38f4deeae7fdf.woff2')format("woff");}.ff1_c00120{font-family:ff1_c00120;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00120;src:url('chunks/assets/font_d9aabb0889540316b1907a14.woff2')format("woff");}.ff2_c00120{font-family:ff2_c00120;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00120;src:url('chunks/assets/font_d03bc29a709b3a0484f773aa.woff2')format("woff");}.ff3_c00120{font-family:ff3_c00120;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00120;src:url('chunks/assets/font_6647dd50fa5059bca59eefa5.woff2')format("woff");}.ff4_c00120{font-family:ff4_c00120;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00120;src:url('chunks/assets/font_991c59f822b830a39dcc7cb9.woff2')format("woff");}.ff5_c00120{font-family:ff5_c00120;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00120;src:url('chunks/assets/font_7d61a8a8333c96e51d27f045.woff2')format("woff");}.ff6_c00120{font-family:ff6_c00120;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00120;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c00120{font-family:ff7_c00120;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00120{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00120{vertical-align:0.000000px;}
.ls0_c00120{letter-spacing:0.000000px;}
.ls1_c00120{letter-spacing:3.000000px;}
.sc__c00120{text-shadow:none;}
.sc0_c00120{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00120{-webkit-text-stroke:0px transparent;}
.sc0_c00120{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00120{word-spacing:-67.686000px;}
.ws0_c00120{word-spacing:-21.798000px;}
.ws2_c00120{word-spacing:0.000000px;}
._14_c00120{margin-left:-18.774000px;}
._13_c00120{margin-left:-17.748000px;}
._c_c00120{margin-left:-12.636000px;}
._1a_c00120{margin-left:-10.107000px;}
._f_c00120{margin-left:-8.100000px;}
._18_c00120{margin-left:-6.300000px;}
._10_c00120{margin-left:-5.265000px;}
._a_c00120{margin-left:-3.240000px;}
._b_c00120{margin-left:-1.944000px;}
._d_c00120{width:1.800000px;}
._e_c00120{width:3.690000px;}
._2_c00120{width:5.328000px;}
._4_c00120{width:6.336000px;}
._12_c00120{width:7.434000px;}
._3_c00120{width:8.856000px;}
._6_c00120{width:10.224000px;}
._1_c00120{width:11.592000px;}
._5_c00120{width:12.672000px;}
._0_c00120{width:14.616000px;}
._15_c00120{width:15.804000px;}
._17_c00120{width:17.100000px;}
._8_c00120{width:26.856000px;}
._19_c00120{width:34.335000px;}
._9_c00120{width:41.760000px;}
._1b_c00120{width:60.042000px;}
._7_c00120{width:73.008000px;}
._11_c00120{width:109.332000px;}
._16_c00120{width:143.766000px;}
.fc2_c00120{color:transparent;}
.fc1_c00120{color:rgb(128,128,128);}
.fc0_c00120{color:rgb(0,0,0);}
.fs6_c00120{font-size:48.000000px;}
.fs5_c00120{font-size:51.000000px;}
.fs0_c00120{font-size:72.000000px;}
.fs2_c00120{font-size:78.000000px;}
.fs1_c00120{font-size:81.000000px;}
.fs4_c00120{font-size:84.000000px;}
.fs3_c00120{font-size:87.000000px;}
.y0_c00120{bottom:0.000000px;}
.y23_c00120{bottom:3.105000px;}
.y22_c00120{bottom:7.228355px;}
.y21_c00120{bottom:54.585000px;}
.y20_c00120{bottom:82.335000px;}
.y1f_c00120{bottom:108.585000px;}
.y1e_c00120{bottom:132.885000px;}
.y1d_c00120{bottom:157.185000px;}
.y1c_c00120{bottom:181.785000px;}
.y1b_c00120{bottom:206.085000px;}
.y1a_c00120{bottom:257.835000px;}
.y19_c00120{bottom:286.185000px;}
.y18_c00120{bottom:314.835000px;}
.y17_c00120{bottom:342.885000px;}
.y16_c00120{bottom:399.585000px;}
.y15_c00120{bottom:422.835000px;}
.y14_c00120{bottom:447.735000px;}
.y13_c00120{bottom:471.735000px;}
.y12_c00120{bottom:495.735000px;}
.y11_c00120{bottom:519.735000px;}
.y10_c00120{bottom:543.735000px;}
.yf_c00120{bottom:567.885000px;}
.ye_c00120{bottom:591.585000px;}
.yd_c00120{bottom:615.285000px;}
.yc_c00120{bottom:639.135000px;}
.yb_c00120{bottom:664.785000px;}
.ya_c00120{bottom:687.135000px;}
.y9_c00120{bottom:711.735000px;}
.y8_c00120{bottom:736.335000px;}
.y7_c00120{bottom:761.385000px;}
.y6_c00120{bottom:786.285000px;}
.y5_c00120{bottom:811.635000px;}
.y4_c00120{bottom:835.185000px;}
.y3_c00120{bottom:859.485000px;}
.y2_c00120{bottom:883.785000px;}
.y1_c00120{bottom:920.235000px;}
.h8_c00120{height:13.200074px;}
.h9_c00120{height:43.804688px;}
.h4_c00120{height:79.497070px;}
.h7_c00120{height:82.400391px;}
.h6_c00120{height:82.441406px;}
.h2_c00120{height:84.269531px;}
.h5_c00120{height:91.176000px;}
.h3_c00120{height:98.756836px;}
.h0_c00120{height:972.525000px;}
.h1_c00120{height:972.750000px;}
.w2_c00120{width:104.875500px;}
.w0_c00120{width:660.450000px;}
.w1_c00120{width:660.750000px;}
.x0_c00120{left:0.000000px;}
.x3_c00120{left:24.300000px;}
.x2_c00120{left:51.300000px;}
.x4_c00120{left:52.950000px;}
.x5_c00120{left:55.650000px;}
.x6_c00120{left:57.000000px;}
.x7_c00120{left:58.350000px;}
.x8_c00120{left:59.400000px;}
.x9_c00120{left:60.450000px;}
.xa_c00120{left:62.850000px;}
.x1_c00120{left:86.100000px;}
.xb_c00120{left:92.700000px;}
.xc_c00120{left:152.250000px;}
.xe_c00120{left:198.450000px;}
.xf_c00120{left:199.800000px;}
.x10_c00120{left:201.450000px;}
.x11_c00120{left:202.500000px;}
.xd_c00120{left:247.650000px;}
.x13_c00120{left:282.039230px;}
.x12_c00120{left:413.700000px;}
@media print{
.v0_c00120{vertical-align:0.000000pt;}
.ls0_c00120{letter-spacing:0.000000pt;}
.ls1_c00120{letter-spacing:2.666667pt;}
.ws1_c00120{word-spacing:-60.165333pt;}
.ws0_c00120{word-spacing:-19.376000pt;}
.ws2_c00120{word-spacing:0.000000pt;}
._14_c00120{margin-left:-16.688000pt;}
._13_c00120{margin-left:-15.776000pt;}
._c_c00120{margin-left:-11.232000pt;}
._1a_c00120{margin-left:-8.984000pt;}
._f_c00120{margin-left:-7.200000pt;}
._18_c00120{margin-left:-5.600000pt;}
._10_c00120{margin-left:-4.680000pt;}
._a_c00120{margin-left:-2.880000pt;}
._b_c00120{margin-left:-1.728000pt;}
._d_c00120{width:1.600000pt;}
._e_c00120{width:3.280000pt;}
._2_c00120{width:4.736000pt;}
._4_c00120{width:5.632000pt;}
._12_c00120{width:6.608000pt;}
._3_c00120{width:7.872000pt;}
._6_c00120{width:9.088000pt;}
._1_c00120{width:10.304000pt;}
._5_c00120{width:11.264000pt;}
._0_c00120{width:12.992000pt;}
._15_c00120{width:14.048000pt;}
._17_c00120{width:15.200000pt;}
._8_c00120{width:23.872000pt;}
._19_c00120{width:30.520000pt;}
._9_c00120{width:37.120000pt;}
._1b_c00120{width:53.370667pt;}
._7_c00120{width:64.896000pt;}
._11_c00120{width:97.184000pt;}
._16_c00120{width:127.792000pt;}
.fs6_c00120{font-size:42.666667pt;}
.fs5_c00120{font-size:45.333333pt;}
.fs0_c00120{font-size:64.000000pt;}
.fs2_c00120{font-size:69.333333pt;}
.fs1_c00120{font-size:72.000000pt;}
.fs4_c00120{font-size:74.666667pt;}
.fs3_c00120{font-size:77.333333pt;}
.y0_c00120{bottom:0.000000pt;}
.y23_c00120{bottom:2.760000pt;}
.y22_c00120{bottom:6.425204pt;}
.y21_c00120{bottom:48.520000pt;}
.y20_c00120{bottom:73.186667pt;}
.y1f_c00120{bottom:96.520000pt;}
.y1e_c00120{bottom:118.120000pt;}
.y1d_c00120{bottom:139.720000pt;}
.y1c_c00120{bottom:161.586667pt;}
.y1b_c00120{bottom:183.186667pt;}
.y1a_c00120{bottom:229.186667pt;}
.y19_c00120{bottom:254.386667pt;}
.y18_c00120{bottom:279.853333pt;}
.y17_c00120{bottom:304.786667pt;}
.y16_c00120{bottom:355.186667pt;}
.y15_c00120{bottom:375.853333pt;}
.y14_c00120{bottom:397.986667pt;}
.y13_c00120{bottom:419.320000pt;}
.y12_c00120{bottom:440.653333pt;}
.y11_c00120{bottom:461.986667pt;}
.y10_c00120{bottom:483.320000pt;}
.yf_c00120{bottom:504.786667pt;}
.ye_c00120{bottom:525.853333pt;}
.yd_c00120{bottom:546.920000pt;}
.yc_c00120{bottom:568.120000pt;}
.yb_c00120{bottom:590.920000pt;}
.ya_c00120{bottom:610.786667pt;}
.y9_c00120{bottom:632.653333pt;}
.y8_c00120{bottom:654.520000pt;}
.y7_c00120{bottom:676.786667pt;}
.y6_c00120{bottom:698.920000pt;}
.y5_c00120{bottom:721.453333pt;}
.y4_c00120{bottom:742.386667pt;}
.y3_c00120{bottom:763.986667pt;}
.y2_c00120{bottom:785.586667pt;}
.y1_c00120{bottom:817.986667pt;}
.h8_c00120{height:11.733399pt;}
.h9_c00120{height:38.937500pt;}
.h4_c00120{height:70.664062pt;}
.h7_c00120{height:73.244792pt;}
.h6_c00120{height:73.281250pt;}
.h2_c00120{height:74.906250pt;}
.h5_c00120{height:81.045333pt;}
.h3_c00120{height:87.783854pt;}
.h0_c00120{height:864.466667pt;}
.h1_c00120{height:864.666667pt;}
.w2_c00120{width:93.222667pt;}
.w0_c00120{width:587.066667pt;}
.w1_c00120{width:587.333333pt;}
.x0_c00120{left:0.000000pt;}
.x3_c00120{left:21.600000pt;}
.x2_c00120{left:45.600000pt;}
.x4_c00120{left:47.066667pt;}
.x5_c00120{left:49.466667pt;}
.x6_c00120{left:50.666667pt;}
.x7_c00120{left:51.866667pt;}
.x8_c00120{left:52.800000pt;}
.x9_c00120{left:53.733333pt;}
.xa_c00120{left:55.866667pt;}
.x1_c00120{left:76.533333pt;}
.xb_c00120{left:82.400000pt;}
.xc_c00120{left:135.333333pt;}
.xe_c00120{left:176.400000pt;}
.xf_c00120{left:177.600000pt;}
.x10_c00120{left:179.066667pt;}
.x11_c00120{left:180.000000pt;}
.xd_c00120{left:220.133333pt;}
.x13_c00120{left:250.701538pt;}
.x12_c00120{left:367.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_7f03bcbf2b2baaa38ae4fec1.woff2')format("woff");}.ff1_c00121{font-family:ff1_c00121;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00121;src:url('chunks/assets/font_bdac6632a6017b9faf7f238e.woff2')format("woff");}.ff2_c00121{font-family:ff2_c00121;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00121;src:url('chunks/assets/font_67cc6a30c67151d0e48875cd.woff2')format("woff");}.ff3_c00121{font-family:ff3_c00121;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00121;src:url('chunks/assets/font_0db55c78f36f2bea303b7926.woff2')format("woff");}.ff4_c00121{font-family:ff4_c00121;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00121;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c00121{font-family:ff5_c00121;line-height:1.219238;font-style: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);}
.m1_c00121{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.v0_c00121{vertical-align:0.000000px;}
.ls2_c00121{letter-spacing:0.000000px;}
.ls1_c00121{letter-spacing:6.000000px;}
.ls0_c00121{letter-spacing:41.550000px;}
.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:-59.184000px;}
.ws1_c00121{word-spacing:-20.250000px;}
.ws2_c00121{word-spacing:0.000000px;}
._1d_c00121{margin-left:-32.724000px;}
._16_c00121{margin-left:-21.093000px;}
._1f_c00121{margin-left:-17.982000px;}
._b_c00121{margin-left:-14.094000px;}
._23_c00121{margin-left:-12.021000px;}
._15_c00121{margin-left:-10.710000px;}
._e_c00121{margin-left:-8.034000px;}
._9_c00121{margin-left:-6.138000px;}
._1_c00121{margin-left:-4.050000px;}
._f_c00121{margin-left:-2.286000px;}
._d_c00121{margin-left:-1.053000px;}
._5_c00121{width:1.020000px;}
._7_c00121{width:2.430000px;}
._8_c00121{width:4.212000px;}
._6_c00121{width:5.994000px;}
._c_c00121{width:6.999000px;}
._0_c00121{width:8.100000px;}
._4_c00121{width:10.020000px;}
._a_c00121{width:11.103000px;}
._14_c00121{width:12.711000px;}
._2_c00121{width:13.860000px;}
._3_c00121{width:16.200000px;}
._21_c00121{width:17.643000px;}
._11_c00121{width:20.928000px;}
._19_c00121{width:23.004000px;}
._1b_c00121{width:24.804000px;}
._18_c00121{width:27.024000px;}
._12_c00121{width:28.884000px;}
._13_c00121{width:32.043000px;}
._1a_c00121{width:41.688000px;}
._1c_c00121{width:48.357000px;}
._1e_c00121{width:49.896000px;}
._22_c00121{width:78.819000px;}
._24_c00121{width:81.921000px;}
._17_c00121{width:184.197000px;}
._20_c00121{width:221.859000px;}
._10_c00121{width:370.299000px;}
.fc2_c00121{color:transparent;}
.fc1_c00121{color:rgb(128,128,128);}
.fc0_c00121{color:rgb(0,0,0);}
.fs4_c00121{font-size:36.000000px;}
.fs6_c00121{font-size:48.000000px;}
.fs1_c00121{font-size:60.000000px;}
.fs5_c00121{font-size:63.000000px;}
.fs3_c00121{font-size:66.000000px;}
.fs2_c00121{font-size:72.000000px;}
.fs0_c00121{font-size:81.000000px;}
.y0_c00121{bottom:0.000000px;}
.y25_c00121{bottom:3.105000px;}
.y24_c00121{bottom:7.228357px;}
.y23_c00121{bottom:76.680000px;}
.y22_c00121{bottom:99.630000px;}
.y21_c00121{bottom:124.830000px;}
.y20_c00121{bottom:149.280000px;}
.y1f_c00121{bottom:174.180000px;}
.y1e_c00121{bottom:198.480000px;}
.y1d_c00121{bottom:222.480000px;}
.y1c_c00121{bottom:247.380000px;}
.y1b_c00121{bottom:271.080000px;}
.y1a_c00121{bottom:295.380000px;}
.y19_c00121{bottom:319.680000px;}
.y18_c00121{bottom:343.680000px;}
.y17_c00121{bottom:367.830000px;}
.y16_c00121{bottom:391.530000px;}
.y15_c00121{bottom:416.130000px;}
.y14_c00121{bottom:439.530000px;}
.y13_c00121{bottom:463.830000px;}
.y12_c00121{bottom:488.430000px;}
.y11_c00121{bottom:512.730000px;}
.y10_c00121{bottom:535.380000px;}
.yf_c00121{bottom:561.930000px;}
.ye_c00121{bottom:584.280000px;}
.yd_c00121{bottom:608.130000px;}
.yc_c00121{bottom:632.430000px;}
.yb_c00121{bottom:656.430000px;}
.ya_c00121{bottom:680.130000px;}
.y9_c00121{bottom:704.430000px;}
.y8_c00121{bottom:728.730000px;}
.y7_c00121{bottom:752.730000px;}
.y6_c00121{bottom:776.880000px;}
.y5_c00121{bottom:800.880000px;}
.y4_c00121{bottom:825.180000px;}
.y3_c00121{bottom:848.880000px;}
.y2_c00121{bottom:873.180000px;}
.y1_c00121{bottom:900.180000px;}
.h4_c00121{height:13.200074px;}
.h5_c00121{height:43.804688px;}
.h3_c00121{height:63.492188px;}
.h1_c00121{height:79.497070px;}
.h2_c00121{height:84.269531px;}
.h0_c00121{height:995.250000px;}
.w2_c00121{width:104.875500px;}
.w0_c00121{width:667.425000px;}
.w1_c00121{width:667.500000px;}
.x0_c00121{left:0.000000px;}
.x12_c00121{left:16.500000px;}
.xe_c00121{left:20.700000px;}
.x5_c00121{left:30.000000px;}
.x9_c00121{left:51.600000px;}
.x7_c00121{left:66.600000px;}
.x8_c00121{left:76.950000px;}
.x15_c00121{left:106.650000px;}
.x14_c00121{left:108.900000px;}
.x13_c00121{left:109.950000px;}
.x11_c00121{left:111.600000px;}
.x10_c00121{left:113.100000px;}
.xf_c00121{left:114.300000px;}
.xb_c00121{left:116.850000px;}
.xa_c00121{left:118.050000px;}
.x6_c00121{left:120.600000px;}
.x4_c00121{left:122.250000px;}
.x3_c00121{left:123.300000px;}
.x2_c00121{left:124.500000px;}
.x1_c00121{left:125.550000px;}
.x17_c00121{left:285.526749px;}
.xc_c00121{left:519.750000px;}
.xd_c00121{left:529.500000px;}
.x16_c00121{left:555.900000px;}
@media print{
.v0_c00121{vertical-align:0.000000pt;}
.ls2_c00121{letter-spacing:0.000000pt;}
.ls1_c00121{letter-spacing:5.333333pt;}
.ls0_c00121{letter-spacing:36.933333pt;}
.ws0_c00121{word-spacing:-52.608000pt;}
.ws1_c00121{word-spacing:-18.000000pt;}
.ws2_c00121{word-spacing:0.000000pt;}
._1d_c00121{margin-left:-29.088000pt;}
._16_c00121{margin-left:-18.749333pt;}
._1f_c00121{margin-left:-15.984000pt;}
._b_c00121{margin-left:-12.528000pt;}
._23_c00121{margin-left:-10.685333pt;}
._15_c00121{margin-left:-9.520000pt;}
._e_c00121{margin-left:-7.141333pt;}
._9_c00121{margin-left:-5.456000pt;}
._1_c00121{margin-left:-3.600000pt;}
._f_c00121{margin-left:-2.032000pt;}
._d_c00121{margin-left:-0.936000pt;}
._5_c00121{width:0.906667pt;}
._7_c00121{width:2.160000pt;}
._8_c00121{width:3.744000pt;}
._6_c00121{width:5.328000pt;}
._c_c00121{width:6.221333pt;}
._0_c00121{width:7.200000pt;}
._4_c00121{width:8.906667pt;}
._a_c00121{width:9.869333pt;}
._14_c00121{width:11.298667pt;}
._2_c00121{width:12.320000pt;}
._3_c00121{width:14.400000pt;}
._21_c00121{width:15.682667pt;}
._11_c00121{width:18.602667pt;}
._19_c00121{width:20.448000pt;}
._1b_c00121{width:22.048000pt;}
._18_c00121{width:24.021333pt;}
._12_c00121{width:25.674667pt;}
._13_c00121{width:28.482667pt;}
._1a_c00121{width:37.056000pt;}
._1c_c00121{width:42.984000pt;}
._1e_c00121{width:44.352000pt;}
._22_c00121{width:70.061333pt;}
._24_c00121{width:72.818667pt;}
._17_c00121{width:163.730667pt;}
._20_c00121{width:197.208000pt;}
._10_c00121{width:329.154667pt;}
.fs4_c00121{font-size:32.000000pt;}
.fs6_c00121{font-size:42.666667pt;}
.fs1_c00121{font-size:53.333333pt;}
.fs5_c00121{font-size:56.000000pt;}
.fs3_c00121{font-size:58.666667pt;}
.fs2_c00121{font-size:64.000000pt;}
.fs0_c00121{font-size:72.000000pt;}
.y0_c00121{bottom:0.000000pt;}
.y25_c00121{bottom:2.760000pt;}
.y24_c00121{bottom:6.425206pt;}
.y23_c00121{bottom:68.160000pt;}
.y22_c00121{bottom:88.560000pt;}
.y21_c00121{bottom:110.960000pt;}
.y20_c00121{bottom:132.693333pt;}
.y1f_c00121{bottom:154.826667pt;}
.y1e_c00121{bottom:176.426667pt;}
.y1d_c00121{bottom:197.760000pt;}
.y1c_c00121{bottom:219.893333pt;}
.y1b_c00121{bottom:240.960000pt;}
.y1a_c00121{bottom:262.560000pt;}
.y19_c00121{bottom:284.160000pt;}
.y18_c00121{bottom:305.493333pt;}
.y17_c00121{bottom:326.960000pt;}
.y16_c00121{bottom:348.026667pt;}
.y15_c00121{bottom:369.893333pt;}
.y14_c00121{bottom:390.693333pt;}
.y13_c00121{bottom:412.293333pt;}
.y12_c00121{bottom:434.160000pt;}
.y11_c00121{bottom:455.760000pt;}
.y10_c00121{bottom:475.893333pt;}
.yf_c00121{bottom:499.493333pt;}
.ye_c00121{bottom:519.360000pt;}
.yd_c00121{bottom:540.560000pt;}
.yc_c00121{bottom:562.160000pt;}
.yb_c00121{bottom:583.493333pt;}
.ya_c00121{bottom:604.560000pt;}
.y9_c00121{bottom:626.160000pt;}
.y8_c00121{bottom:647.760000pt;}
.y7_c00121{bottom:669.093333pt;}
.y6_c00121{bottom:690.560000pt;}
.y5_c00121{bottom:711.893333pt;}
.y4_c00121{bottom:733.493333pt;}
.y3_c00121{bottom:754.560000pt;}
.y2_c00121{bottom:776.160000pt;}
.y1_c00121{bottom:800.160000pt;}
.h4_c00121{height:11.733399pt;}
.h5_c00121{height:38.937500pt;}
.h3_c00121{height:56.437500pt;}
.h1_c00121{height:70.664062pt;}
.h2_c00121{height:74.906250pt;}
.h0_c00121{height:884.666667pt;}
.w2_c00121{width:93.222667pt;}
.w0_c00121{width:593.266667pt;}
.w1_c00121{width:593.333333pt;}
.x0_c00121{left:0.000000pt;}
.x12_c00121{left:14.666667pt;}
.xe_c00121{left:18.400000pt;}
.x5_c00121{left:26.666667pt;}
.x9_c00121{left:45.866667pt;}
.x7_c00121{left:59.200000pt;}
.x8_c00121{left:68.400000pt;}
.x15_c00121{left:94.800000pt;}
.x14_c00121{left:96.800000pt;}
.x13_c00121{left:97.733333pt;}
.x11_c00121{left:99.200000pt;}
.x10_c00121{left:100.533333pt;}
.xf_c00121{left:101.600000pt;}
.xb_c00121{left:103.866667pt;}
.xa_c00121{left:104.933333pt;}
.x6_c00121{left:107.200000pt;}
.x4_c00121{left:108.666667pt;}
.x3_c00121{left:109.600000pt;}
.x2_c00121{left:110.666667pt;}
.x1_c00121{left:111.600000pt;}
.x17_c00121{left:253.801554pt;}
.xc_c00121{left:462.000000pt;}
.xd_c00121{left:470.666667pt;}
.x16_c00121{left:494.133333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_eea57efa1c9dd9403bc38c49.woff2')format("woff");}.ff1_c00122{font-family:ff1_c00122;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00122;src:url('chunks/assets/font_8ab022787691707c614c6016.woff2')format("woff");}.ff2_c00122{font-family:ff2_c00122;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00122;src:url('chunks/assets/font_be21b04e6cd28ac7e9f0c4e2.woff2')format("woff");}.ff3_c00122{font-family:ff3_c00122;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00122;src:url('chunks/assets/font_2098c3848f1f7e257407ad25.woff2')format("woff");}.ff4_c00122{font-family:ff4_c00122;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00122;src:url('chunks/assets/font_3835f224ef76410aecc0c5d0.woff2')format("woff");}.ff5_c00122{font-family:ff5_c00122;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00122;src:url('chunks/assets/font_bf6a4763246dfa365953dc5d.woff2')format("woff");}.ff6_c00122{font-family:ff6_c00122;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00122;src:url('chunks/assets/font_67cc6a30c67151d0e48875cd.woff2')format("woff");}.ff7_c00122{font-family:ff7_c00122;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00122;src:url('chunks/assets/font_00e55181d739194f34aa6081.woff2')format("woff");}.ff8_c00122{font-family:ff8_c00122;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00122;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff9_c00122{font-family:ff9_c00122;line-height:1.219238;font-style: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;}
.v1_c00122{vertical-align:160.200000px;}
.ls3_c00122{letter-spacing:-6.000000px;}
.ls2_c00122{letter-spacing:0.000000px;}
.ls1_c00122{letter-spacing:3.000000px;}
.ls0_c00122{letter-spacing:6.000000px;}
.sc__c00122{text-shadow:none;}
.sc0_c00122{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00122{-webkit-text-stroke:0px transparent;}
.sc0_c00122{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00122{word-spacing:-72.750000px;}
.ws0_c00122{word-spacing:-67.686000px;}
.ws4_c00122{word-spacing:-23.250000px;}
.ws2_c00122{word-spacing:-20.250000px;}
.ws5_c00122{word-spacing:-18.000000px;}
.ws1_c00122{word-spacing:-17.352000px;}
.ws6_c00122{word-spacing:0.000000px;}
._8_c00122{margin-left:-16.422000px;}
._1b_c00122{margin-left:-15.363000px;}
._16_c00122{margin-left:-12.870000px;}
._9_c00122{margin-left:-11.118000px;}
._17_c00122{margin-left:-9.537000px;}
._11_c00122{margin-left:-8.349000px;}
._f_c00122{margin-left:-6.417000px;}
._6_c00122{margin-left:-5.304000px;}
._3_c00122{margin-left:-3.570000px;}
._7_c00122{margin-left:-1.938000px;}
._5_c00122{width:1.020000px;}
._4_c00122{width:2.142000px;}
._c_c00122{width:3.222000px;}
._b_c00122{width:4.878000px;}
._2_c00122{width:6.120000px;}
._d_c00122{width:7.893000px;}
._1_c00122{width:8.976000px;}
._14_c00122{width:10.212000px;}
._0_c00122{width:11.424000px;}
._12_c00122{width:12.882000px;}
._13_c00122{width:14.268000px;}
._15_c00122{width:16.119000px;}
._1c_c00122{width:20.244000px;}
._10_c00122{width:29.061000px;}
._e_c00122{width:33.171000px;}
._1a_c00122{width:37.170000px;}
._a_c00122{width:52.530000px;}
._19_c00122{width:337.356000px;}
._18_c00122{width:889.863000px;}
.fc2_c00122{color:transparent;}
.fc1_c00122{color:rgb(128,128,128);}
.fc0_c00122{color:rgb(0,0,0);}
.fs6_c00122{font-size:24.000000px;}
.fsc_c00122{font-size:48.000000px;}
.fs8_c00122{font-size:57.000000px;}
.fs5_c00122{font-size:66.000000px;}
.fs4_c00122{font-size:72.000000px;}
.fs7_c00122{font-size:78.000000px;}
.fs2_c00122{font-size:81.000000px;}
.fs3_c00122{font-size:87.000000px;}
.fsa_c00122{font-size:93.000000px;}
.fsb_c00122{font-size:96.000000px;}
.fs0_c00122{font-size:102.000000px;}
.fs1_c00122{font-size:120.000000px;}
.fs9_c00122{font-size:291.000000px;}
.y0_c00122{bottom:0.000000px;}
.y27_c00122{bottom:3.105000px;}
.y26_c00122{bottom:7.228355px;}
.y24_c00122{bottom:50.535000px;}
.y23_c00122{bottom:73.185000px;}
.y22_c00122{bottom:98.235000px;}
.y21_c00122{bottom:122.835000px;}
.y20_c00122{bottom:146.835000px;}
.y1f_c00122{bottom:171.135000px;}
.y1d_c00122{bottom:180.285000px;}
.y1e_c00122{bottom:196.035000px;}
.y1c_c00122{bottom:245.235000px;}
.y1b_c00122{bottom:268.185000px;}
.y1a_c00122{bottom:292.635000px;}
.y25_c00122{bottom:308.835000px;}
.y19_c00122{bottom:316.485000px;}
.y18_c00122{bottom:340.785000px;}
.y17_c00122{bottom:364.785000px;}
.y16_c00122{bottom:389.085000px;}
.y15_c00122{bottom:412.785000px;}
.y14_c00122{bottom:437.085000px;}
.y13_c00122{bottom:461.235000px;}
.y12_c00122{bottom:485.535000px;}
.y11_c00122{bottom:509.535000px;}
.y10_c00122{bottom:533.235000px;}
.yf_c00122{bottom:557.235000px;}
.ye_c00122{bottom:581.085000px;}
.yd_c00122{bottom:604.785000px;}
.yc_c00122{bottom:628.785000px;}
.yb_c00122{bottom:652.935000px;}
.ya_c00122{bottom:677.235000px;}
.y9_c00122{bottom:701.235000px;}
.y8_c00122{bottom:725.235000px;}
.y7_c00122{bottom:750.135000px;}
.y6_c00122{bottom:773.235000px;}
.y5_c00122{bottom:797.835000px;}
.y4_c00122{bottom:821.835000px;}
.y3_c00122{bottom:846.135000px;}
.y2_c00122{bottom:870.285000px;}
.y1_c00122{bottom:906.885000px;}
.hc_c00122{height:13.200074px;}
.hd_c00122{height:43.804688px;}
.h4_c00122{height:79.497070px;}
.h6_c00122{height:84.269531px;}
.h5_c00122{height:91.160156px;}
.h3_c00122{height:91.176000px;}
.ha_c00122{height:91.274414px;}
.hb_c00122{height:94.218750px;}
.h8_c00122{height:98.756836px;}
.h7_c00122{height:104.839927px;}
.h2_c00122{height:120.937500px;}
.h9_c00122{height:285.600586px;}
.h0_c00122{height:977.925000px;}
.h1_c00122{height:978.000000px;}
.w2_c00122{width:104.875500px;}
.w0_c00122{width:664.200000px;}
.w1_c00122{width:664.500000px;}
.x0_c00122{left:0.000000px;}
.x2_c00122{left:27.300000px;}
.x3_c00122{left:28.650000px;}
.x4_c00122{left:30.000000px;}
.x5_c00122{left:31.350000px;}
.x6_c00122{left:32.400000px;}
.x7_c00122{left:33.450000px;}
.x8_c00122{left:35.400000px;}
.x9_c00122{left:36.450000px;}
.xa_c00122{left:37.500000px;}
.xb_c00122{left:38.550000px;}
.xc_c00122{left:40.800000px;}
.xf_c00122{left:43.200000px;}
.x10_c00122{left:44.250000px;}
.x11_c00122{left:45.600000px;}
.x1_c00122{left:78.600000px;}
.xe_c00122{left:80.700000px;}
.xd_c00122{left:128.250000px;}
.x14_c00122{left:283.914230px;}
.x12_c00122{left:472.950000px;}
.x13_c00122{left:591.000000px;}
@media print{
.v0_c00122{vertical-align:0.000000pt;}
.v1_c00122{vertical-align:142.400000pt;}
.ls3_c00122{letter-spacing:-5.333333pt;}
.ls2_c00122{letter-spacing:0.000000pt;}
.ls1_c00122{letter-spacing:2.666667pt;}
.ls0_c00122{letter-spacing:5.333333pt;}
.ws3_c00122{word-spacing:-64.666667pt;}
.ws0_c00122{word-spacing:-60.165333pt;}
.ws4_c00122{word-spacing:-20.666667pt;}
.ws2_c00122{word-spacing:-18.000000pt;}
.ws5_c00122{word-spacing:-16.000000pt;}
.ws1_c00122{word-spacing:-15.424000pt;}
.ws6_c00122{word-spacing:0.000000pt;}
._8_c00122{margin-left:-14.597333pt;}
._1b_c00122{margin-left:-13.656000pt;}
._16_c00122{margin-left:-11.440000pt;}
._9_c00122{margin-left:-9.882667pt;}
._17_c00122{margin-left:-8.477333pt;}
._11_c00122{margin-left:-7.421333pt;}
._f_c00122{margin-left:-5.704000pt;}
._6_c00122{margin-left:-4.714667pt;}
._3_c00122{margin-left:-3.173333pt;}
._7_c00122{margin-left:-1.722667pt;}
._5_c00122{width:0.906667pt;}
._4_c00122{width:1.904000pt;}
._c_c00122{width:2.864000pt;}
._b_c00122{width:4.336000pt;}
._2_c00122{width:5.440000pt;}
._d_c00122{width:7.016000pt;}
._1_c00122{width:7.978667pt;}
._14_c00122{width:9.077333pt;}
._0_c00122{width:10.154667pt;}
._12_c00122{width:11.450667pt;}
._13_c00122{width:12.682667pt;}
._15_c00122{width:14.328000pt;}
._1c_c00122{width:17.994667pt;}
._10_c00122{width:25.832000pt;}
._e_c00122{width:29.485333pt;}
._1a_c00122{width:33.040000pt;}
._a_c00122{width:46.693333pt;}
._19_c00122{width:299.872000pt;}
._18_c00122{width:790.989333pt;}
.fs6_c00122{font-size:21.333333pt;}
.fsc_c00122{font-size:42.666667pt;}
.fs8_c00122{font-size:50.666667pt;}
.fs5_c00122{font-size:58.666667pt;}
.fs4_c00122{font-size:64.000000pt;}
.fs7_c00122{font-size:69.333333pt;}
.fs2_c00122{font-size:72.000000pt;}
.fs3_c00122{font-size:77.333333pt;}
.fsa_c00122{font-size:82.666667pt;}
.fsb_c00122{font-size:85.333333pt;}
.fs0_c00122{font-size:90.666667pt;}
.fs1_c00122{font-size:106.666667pt;}
.fs9_c00122{font-size:258.666667pt;}
.y0_c00122{bottom:0.000000pt;}
.y27_c00122{bottom:2.760000pt;}
.y26_c00122{bottom:6.425204pt;}
.y24_c00122{bottom:44.920000pt;}
.y23_c00122{bottom:65.053333pt;}
.y22_c00122{bottom:87.320000pt;}
.y21_c00122{bottom:109.186667pt;}
.y20_c00122{bottom:130.520000pt;}
.y1f_c00122{bottom:152.120000pt;}
.y1d_c00122{bottom:160.253333pt;}
.y1e_c00122{bottom:174.253333pt;}
.y1c_c00122{bottom:217.986667pt;}
.y1b_c00122{bottom:238.386667pt;}
.y1a_c00122{bottom:260.120000pt;}
.y25_c00122{bottom:274.520000pt;}
.y19_c00122{bottom:281.320000pt;}
.y18_c00122{bottom:302.920000pt;}
.y17_c00122{bottom:324.253333pt;}
.y16_c00122{bottom:345.853333pt;}
.y15_c00122{bottom:366.920000pt;}
.y14_c00122{bottom:388.520000pt;}
.y13_c00122{bottom:409.986667pt;}
.y12_c00122{bottom:431.586667pt;}
.y11_c00122{bottom:452.920000pt;}
.y10_c00122{bottom:473.986667pt;}
.yf_c00122{bottom:495.320000pt;}
.ye_c00122{bottom:516.520000pt;}
.yd_c00122{bottom:537.586667pt;}
.yc_c00122{bottom:558.920000pt;}
.yb_c00122{bottom:580.386667pt;}
.ya_c00122{bottom:601.986667pt;}
.y9_c00122{bottom:623.320000pt;}
.y8_c00122{bottom:644.653333pt;}
.y7_c00122{bottom:666.786667pt;}
.y6_c00122{bottom:687.320000pt;}
.y5_c00122{bottom:709.186667pt;}
.y4_c00122{bottom:730.520000pt;}
.y3_c00122{bottom:752.120000pt;}
.y2_c00122{bottom:773.586667pt;}
.y1_c00122{bottom:806.120000pt;}
.hc_c00122{height:11.733399pt;}
.hd_c00122{height:38.937500pt;}
.h4_c00122{height:70.664062pt;}
.h6_c00122{height:74.906250pt;}
.h5_c00122{height:81.031250pt;}
.h3_c00122{height:81.045333pt;}
.ha_c00122{height:81.132812pt;}
.hb_c00122{height:83.750000pt;}
.h8_c00122{height:87.783854pt;}
.h7_c00122{height:93.191046pt;}
.h2_c00122{height:107.500000pt;}
.h9_c00122{height:253.867188pt;}
.h0_c00122{height:869.266667pt;}
.h1_c00122{height:869.333333pt;}
.w2_c00122{width:93.222667pt;}
.w0_c00122{width:590.400000pt;}
.w1_c00122{width:590.666667pt;}
.x0_c00122{left:0.000000pt;}
.x2_c00122{left:24.266667pt;}
.x3_c00122{left:25.466667pt;}
.x4_c00122{left:26.666667pt;}
.x5_c00122{left:27.866667pt;}
.x6_c00122{left:28.800000pt;}
.x7_c00122{left:29.733333pt;}
.x8_c00122{left:31.466667pt;}
.x9_c00122{left:32.400000pt;}
.xa_c00122{left:33.333333pt;}
.xb_c00122{left:34.266667pt;}
.xc_c00122{left:36.266667pt;}
.xf_c00122{left:38.400000pt;}
.x10_c00122{left:39.333333pt;}
.x11_c00122{left:40.533333pt;}
.x1_c00122{left:69.866667pt;}
.xe_c00122{left:71.733333pt;}
.xd_c00122{left:114.000000pt;}
.x14_c00122{left:252.368205pt;}
.x12_c00122{left:420.400000pt;}
.x13_c00122{left:525.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_d4ab6d293c9c3e7c74db01e9.woff2')format("woff");}.ff1_c00123{font-family:ff1_c00123;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00123;src:url('chunks/assets/font_e18d9bb593d01c512fb66cc4.woff2')format("woff");}.ff2_c00123{font-family:ff2_c00123;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00123;src:url('chunks/assets/font_47462cd51ac57af05e607db1.woff2')format("woff");}.ff3_c00123{font-family:ff3_c00123;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00123;src:url('chunks/assets/font_4af0892c35372ba25e9a705c.woff2')format("woff");}.ff4_c00123{font-family:ff4_c00123;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00123;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c00123{font-family:ff5_c00123;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00123{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00123{vertical-align:0.000000px;}
.ls1_c00123{letter-spacing:0.000000px;}
.ls0_c00123{letter-spacing:34.248000px;}
.ls2_c00123{letter-spacing:39.000000px;}
.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;}
}
.ws3_c00123{word-spacing:-67.686000px;}
.ws0_c00123{word-spacing:-59.184000px;}
.ws4_c00123{word-spacing:-33.000000px;}
.ws5_c00123{word-spacing:-20.250000px;}
.ws2_c00123{word-spacing:-0.891000px;}
.ws6_c00123{word-spacing:0.000000px;}
.ws1_c00123{word-spacing:206.268000px;}
._18_c00123{margin-left:-39.609000px;}
._15_c00123{margin-left:-37.179000px;}
._16_c00123{margin-left:-33.291000px;}
._17_c00123{margin-left:-30.618000px;}
._21_c00123{margin-left:-26.079000px;}
._c_c00123{margin-left:-22.194000px;}
._26_c00123{margin-left:-17.334000px;}
._23_c00123{margin-left:-14.628000px;}
._2e_c00123{margin-left:-13.446000px;}
._1a_c00123{margin-left:-11.235000px;}
._29_c00123{margin-left:-10.206000px;}
._8_c00123{margin-left:-8.856000px;}
._e_c00123{margin-left:-7.614000px;}
._12_c00123{margin-left:-6.561000px;}
._a_c00123{margin-left:-5.265000px;}
._9_c00123{margin-left:-3.864000px;}
._f_c00123{margin-left:-2.835000px;}
._11_c00123{margin-left:-1.077000px;}
._10_c00123{width:1.134000px;}
._13_c00123{width:2.187000px;}
._0_c00123{width:3.321000px;}
._3_c00123{width:4.536000px;}
._4_c00123{width:5.994000px;}
._2_c00123{width:7.209000px;}
._7_c00123{width:8.424000px;}
._5_c00123{width:10.206000px;}
._6_c00123{width:11.826000px;}
._19_c00123{width:13.380000px;}
._1c_c00123{width:14.694000px;}
._20_c00123{width:15.942000px;}
._14_c00123{width:18.144000px;}
._1d_c00123{width:30.219000px;}
._2f_c00123{width:37.527000px;}
._1f_c00123{width:41.910000px;}
._27_c00123{width:96.471000px;}
._1b_c00123{width:119.799000px;}
._b_c00123{width:122.148000px;}
._2d_c00123{width:136.695000px;}
._22_c00123{width:151.308000px;}
._2a_c00123{width:182.007000px;}
._2c_c00123{width:215.652000px;}
._24_c00123{width:224.466000px;}
._d_c00123{width:260.577000px;}
._1e_c00123{width:273.321000px;}
._1_c00123{width:275.886000px;}
._2b_c00123{width:322.215000px;}
._28_c00123{width:563.922000px;}
._25_c00123{width:729.639000px;}
.fc2_c00123{color:transparent;}
.fc1_c00123{color:rgb(128,128,128);}
.fc0_c00123{color:rgb(0,0,0);}
.fs4_c00123{font-size:48.000000px;}
.fs3_c00123{font-size:66.000000px;}
.fs1_c00123{font-size:72.000000px;}
.fs0_c00123{font-size:81.000000px;}
.fs2_c00123{font-size:87.000000px;}
.y0_c00123{bottom:0.000000px;}
.y26_c00123{bottom:3.105000px;}
.y25_c00123{bottom:7.228357px;}
.y24_c00123{bottom:53.280000px;}
.y23_c00123{bottom:77.580000px;}
.y22_c00123{bottom:102.930000px;}
.y21_c00123{bottom:127.530000px;}
.y20_c00123{bottom:151.980000px;}
.y1f_c00123{bottom:176.280000px;}
.y1e_c00123{bottom:200.580000px;}
.y1d_c00123{bottom:225.480000px;}
.y1c_c00123{bottom:249.480000px;}
.y1b_c00123{bottom:273.780000px;}
.y1a_c00123{bottom:297.630000px;}
.y19_c00123{bottom:322.080000px;}
.y18_c00123{bottom:347.730000px;}
.y17_c00123{bottom:372.030000px;}
.y16_c00123{bottom:396.180000px;}
.y15_c00123{bottom:420.480000px;}
.y14_c00123{bottom:444.180000px;}
.y13_c00123{bottom:468.780000px;}
.y12_c00123{bottom:492.180000px;}
.y11_c00123{bottom:516.030000px;}
.y10_c00123{bottom:539.430000px;}
.yf_c00123{bottom:552.930000px;}
.ye_c00123{bottom:566.280000px;}
.yd_c00123{bottom:588.930000px;}
.yc_c00123{bottom:613.230000px;}
.yb_c00123{bottom:636.630000px;}
.ya_c00123{bottom:660.480000px;}
.y9_c00123{bottom:685.230000px;}
.y8_c00123{bottom:709.830000px;}
.y7_c00123{bottom:733.080000px;}
.y6_c00123{bottom:758.130000px;}
.y5_c00123{bottom:782.280000px;}
.y4_c00123{bottom:806.580000px;}
.y3_c00123{bottom:830.280000px;}
.y2_c00123{bottom:853.980000px;}
.y1_c00123{bottom:878.880000px;}
.h5_c00123{height:13.200074px;}
.h6_c00123{height:43.804688px;}
.h2_c00123{height:79.497070px;}
.h3_c00123{height:84.269531px;}
.h4_c00123{height:91.176000px;}
.h1_c00123{height:978.750000px;}
.h0_c00123{height:979.050000px;}
.w2_c00123{width:104.875500px;}
.w0_c00123{width:656.100000px;}
.w1_c00123{width:656.250000px;}
.x0_c00123{left:0.000000px;}
.x13_c00123{left:30.000000px;}
.x14_c00123{left:31.500000px;}
.x12_c00123{left:33.450000px;}
.xd_c00123{left:39.900000px;}
.xa_c00123{left:41.250000px;}
.x9_c00123{left:43.200000px;}
.x2_c00123{left:45.000000px;}
.x5_c00123{left:46.350000px;}
.xc_c00123{left:72.600000px;}
.xb_c00123{left:74.250000px;}
.x6_c00123{left:88.500000px;}
.x1_c00123{left:110.100000px;}
.x16_c00123{left:116.850000px;}
.x11_c00123{left:120.450000px;}
.x15_c00123{left:122.250000px;}
.x10_c00123{left:123.900000px;}
.xf_c00123{left:125.550000px;}
.xe_c00123{left:127.200000px;}
.x8_c00123{left:131.250000px;}
.x4_c00123{left:133.050000px;}
.x7_c00123{left:155.250000px;}
.x3_c00123{left:170.700000px;}
.x18_c00123{left:279.864258px;}
.x17_c00123{left:553.200000px;}
@media print{
.v0_c00123{vertical-align:0.000000pt;}
.ls1_c00123{letter-spacing:0.000000pt;}
.ls0_c00123{letter-spacing:30.442667pt;}
.ls2_c00123{letter-spacing:34.666667pt;}
.ws3_c00123{word-spacing:-60.165333pt;}
.ws0_c00123{word-spacing:-52.608000pt;}
.ws4_c00123{word-spacing:-29.333333pt;}
.ws5_c00123{word-spacing:-18.000000pt;}
.ws2_c00123{word-spacing:-0.792000pt;}
.ws6_c00123{word-spacing:0.000000pt;}
.ws1_c00123{word-spacing:183.349333pt;}
._18_c00123{margin-left:-35.208000pt;}
._15_c00123{margin-left:-33.048000pt;}
._16_c00123{margin-left:-29.592000pt;}
._17_c00123{margin-left:-27.216000pt;}
._21_c00123{margin-left:-23.181333pt;}
._c_c00123{margin-left:-19.728000pt;}
._26_c00123{margin-left:-15.408000pt;}
._23_c00123{margin-left:-13.002667pt;}
._2e_c00123{margin-left:-11.952000pt;}
._1a_c00123{margin-left:-9.986667pt;}
._29_c00123{margin-left:-9.072000pt;}
._8_c00123{margin-left:-7.872000pt;}
._e_c00123{margin-left:-6.768000pt;}
._12_c00123{margin-left:-5.832000pt;}
._a_c00123{margin-left:-4.680000pt;}
._9_c00123{margin-left:-3.434667pt;}
._f_c00123{margin-left:-2.520000pt;}
._11_c00123{margin-left:-0.957333pt;}
._10_c00123{width:1.008000pt;}
._13_c00123{width:1.944000pt;}
._0_c00123{width:2.952000pt;}
._3_c00123{width:4.032000pt;}
._4_c00123{width:5.328000pt;}
._2_c00123{width:6.408000pt;}
._7_c00123{width:7.488000pt;}
._5_c00123{width:9.072000pt;}
._6_c00123{width:10.512000pt;}
._19_c00123{width:11.893333pt;}
._1c_c00123{width:13.061333pt;}
._20_c00123{width:14.170667pt;}
._14_c00123{width:16.128000pt;}
._1d_c00123{width:26.861333pt;}
._2f_c00123{width:33.357333pt;}
._1f_c00123{width:37.253333pt;}
._27_c00123{width:85.752000pt;}
._1b_c00123{width:106.488000pt;}
._b_c00123{width:108.576000pt;}
._2d_c00123{width:121.506667pt;}
._22_c00123{width:134.496000pt;}
._2a_c00123{width:161.784000pt;}
._2c_c00123{width:191.690667pt;}
._24_c00123{width:199.525333pt;}
._d_c00123{width:231.624000pt;}
._1e_c00123{width:242.952000pt;}
._1_c00123{width:245.232000pt;}
._2b_c00123{width:286.413333pt;}
._28_c00123{width:501.264000pt;}
._25_c00123{width:648.568000pt;}
.fs4_c00123{font-size:42.666667pt;}
.fs3_c00123{font-size:58.666667pt;}
.fs1_c00123{font-size:64.000000pt;}
.fs0_c00123{font-size:72.000000pt;}
.fs2_c00123{font-size:77.333333pt;}
.y0_c00123{bottom:0.000000pt;}
.y26_c00123{bottom:2.760000pt;}
.y25_c00123{bottom:6.425206pt;}
.y24_c00123{bottom:47.360000pt;}
.y23_c00123{bottom:68.960000pt;}
.y22_c00123{bottom:91.493333pt;}
.y21_c00123{bottom:113.360000pt;}
.y20_c00123{bottom:135.093333pt;}
.y1f_c00123{bottom:156.693333pt;}
.y1e_c00123{bottom:178.293333pt;}
.y1d_c00123{bottom:200.426667pt;}
.y1c_c00123{bottom:221.760000pt;}
.y1b_c00123{bottom:243.360000pt;}
.y1a_c00123{bottom:264.560000pt;}
.y19_c00123{bottom:286.293333pt;}
.y18_c00123{bottom:309.093333pt;}
.y17_c00123{bottom:330.693333pt;}
.y16_c00123{bottom:352.160000pt;}
.y15_c00123{bottom:373.760000pt;}
.y14_c00123{bottom:394.826667pt;}
.y13_c00123{bottom:416.693333pt;}
.y12_c00123{bottom:437.493333pt;}
.y11_c00123{bottom:458.693333pt;}
.y10_c00123{bottom:479.493333pt;}
.yf_c00123{bottom:491.493333pt;}
.ye_c00123{bottom:503.360000pt;}
.yd_c00123{bottom:523.493333pt;}
.yc_c00123{bottom:545.093333pt;}
.yb_c00123{bottom:565.893333pt;}
.ya_c00123{bottom:587.093333pt;}
.y9_c00123{bottom:609.093333pt;}
.y8_c00123{bottom:630.960000pt;}
.y7_c00123{bottom:651.626667pt;}
.y6_c00123{bottom:673.893333pt;}
.y5_c00123{bottom:695.360000pt;}
.y4_c00123{bottom:716.960000pt;}
.y3_c00123{bottom:738.026667pt;}
.y2_c00123{bottom:759.093333pt;}
.y1_c00123{bottom:781.226667pt;}
.h5_c00123{height:11.733399pt;}
.h6_c00123{height:38.937500pt;}
.h2_c00123{height:70.664062pt;}
.h3_c00123{height:74.906250pt;}
.h4_c00123{height:81.045333pt;}
.h1_c00123{height:870.000000pt;}
.h0_c00123{height:870.266667pt;}
.w2_c00123{width:93.222667pt;}
.w0_c00123{width:583.200000pt;}
.w1_c00123{width:583.333333pt;}
.x0_c00123{left:0.000000pt;}
.x13_c00123{left:26.666667pt;}
.x14_c00123{left:28.000000pt;}
.x12_c00123{left:29.733333pt;}
.xd_c00123{left:35.466667pt;}
.xa_c00123{left:36.666667pt;}
.x9_c00123{left:38.400000pt;}
.x2_c00123{left:40.000000pt;}
.x5_c00123{left:41.200000pt;}
.xc_c00123{left:64.533333pt;}
.xb_c00123{left:66.000000pt;}
.x6_c00123{left:78.666667pt;}
.x1_c00123{left:97.866667pt;}
.x16_c00123{left:103.866667pt;}
.x11_c00123{left:107.066667pt;}
.x15_c00123{left:108.666667pt;}
.x10_c00123{left:110.133333pt;}
.xf_c00123{left:111.600000pt;}
.xe_c00123{left:113.066667pt;}
.x8_c00123{left:116.666667pt;}
.x4_c00123{left:118.266667pt;}
.x7_c00123{left:138.000000pt;}
.x3_c00123{left:151.733333pt;}
.x18_c00123{left:248.768229pt;}
.x17_c00123{left:491.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_117275f7c305a75ee9c67f53.woff2')format("woff");}.ff1_c00124{font-family:ff1_c00124;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00124;src:url('chunks/assets/font_cfc601692c12c00a59107d25.woff2')format("woff");}.ff2_c00124{font-family:ff2_c00124;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00124;src:url('chunks/assets/font_13d9398cb0291f6d455d0b15.woff2')format("woff");}.ff3_c00124{font-family:ff3_c00124;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00124;src:url('chunks/assets/font_08e09b72539d5cb2959aff97.woff2')format("woff");}.ff4_c00124{font-family:ff4_c00124;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00124;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff5_c00124{font-family:ff5_c00124;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00124;src:url('chunks/assets/font_737cd963966893e4294199e1.woff2')format("woff");}.ff6_c00124{font-family:ff6_c00124;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00124;src:url('chunks/assets/font_db6ecd3090e577c93cc3bc28.woff2')format("woff");}.ff7_c00124{font-family:ff7_c00124;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00124;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff8_c00124{font-family:ff8_c00124;line-height:1.219238;font-style: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;}
.ls1_c00124{letter-spacing:0.000000px;}
.ls0_c00124{letter-spacing:7.320000px;}
.ls2_c00124{letter-spacing:9.000000px;}
.sc__c00124{text-shadow:none;}
.sc0_c00124{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00124{-webkit-text-stroke:0px transparent;}
.sc0_c00124{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00124{word-spacing:-59.184000px;}
.ws1_c00124{word-spacing:-48.854400px;}
.ws3_c00124{word-spacing:-20.250000px;}
.ws2_c00124{word-spacing:-16.500000px;}
.ws4_c00124{word-spacing:0.000000px;}
._20_c00124{margin-left:-30.456000px;}
._15_c00124{margin-left:-22.143000px;}
._18_c00124{margin-left:-20.706000px;}
._17_c00124{margin-left:-19.577400px;}
._22_c00124{margin-left:-14.232000px;}
._19_c00124{margin-left:-12.327000px;}
._13_c00124{margin-left:-10.107000px;}
._f_c00124{margin-left:-7.887000px;}
._14_c00124{margin-left:-6.153000px;}
._6_c00124{margin-left:-5.145000px;}
._5_c00124{margin-left:-3.780000px;}
._b_c00124{margin-left:-2.619000px;}
._7_c00124{margin-left:-1.260000px;}
._9_c00124{width:1.470000px;}
._2_c00124{width:2.730000px;}
._3_c00124{width:3.885000px;}
._1_c00124{width:5.460000px;}
._0_c00124{width:6.720000px;}
._4_c00124{width:8.505000px;}
._10_c00124{width:9.891000px;}
._1a_c00124{width:10.992000px;}
._c_c00124{width:12.069000px;}
._8_c00124{width:13.860000px;}
._d_c00124{width:14.907000px;}
._e_c00124{width:16.404000px;}
._11_c00124{width:17.415000px;}
._1d_c00124{width:22.068000px;}
._16_c00124{width:25.614000px;}
._12_c00124{width:28.341000px;}
._21_c00124{width:63.990000px;}
._a_c00124{width:72.600000px;}
._24_c00124{width:85.356000px;}
._1b_c00124{width:106.713000px;}
._1c_c00124{width:109.941000px;}
._1e_c00124{width:113.571000px;}
._23_c00124{width:173.844000px;}
._1f_c00124{width:238.053000px;}
.fc2_c00124{color:transparent;}
.fc1_c00124{color:rgb(128,128,128);}
.fc0_c00124{color:rgb(0,0,0);}
.fs7_c00124{font-size:48.000000px;}
.fs4_c00124{font-size:55.200000px;}
.fs6_c00124{font-size:66.000000px;}
.fs3_c00124{font-size:72.000000px;}
.fs2_c00124{font-size:81.000000px;}
.fs5_c00124{font-size:87.000000px;}
.fs1_c00124{font-size:93.000000px;}
.fs0_c00124{font-size:105.000000px;}
.y0_c00124{bottom:0.000000px;}
.y25_c00124{bottom:3.105000px;}
.y24_c00124{bottom:7.228371px;}
.y23_c00124{bottom:82.815000px;}
.y22_c00124{bottom:108.765000px;}
.y21_c00124{bottom:133.965000px;}
.y20_c00124{bottom:158.265000px;}
.y1f_c00124{bottom:183.615000px;}
.y1e_c00124{bottom:208.215000px;}
.y1d_c00124{bottom:232.515000px;}
.y1c_c00124{bottom:257.565000px;}
.y1b_c00124{bottom:282.165000px;}
.y1a_c00124{bottom:306.465000px;}
.y19_c00124{bottom:331.065000px;}
.y18_c00124{bottom:355.815000px;}
.y17_c00124{bottom:378.765000px;}
.y16_c00124{bottom:404.115000px;}
.y15_c00124{bottom:427.665000px;}
.y14_c00124{bottom:452.565000px;}
.y13_c00124{bottom:475.665000px;}
.y12_c00124{bottom:500.865000px;}
.y11_c00124{bottom:525.165000px;}
.y10_c00124{bottom:548.565000px;}
.yf_c00124{bottom:573.765000px;}
.ye_c00124{bottom:598.365000px;}
.yd_c00124{bottom:622.065000px;}
.yc_c00124{bottom:646.365000px;}
.yb_c00124{bottom:670.665000px;}
.ya_c00124{bottom:695.715000px;}
.y9_c00124{bottom:719.565000px;}
.y8_c00124{bottom:743.865000px;}
.y7_c00124{bottom:767.865000px;}
.y6_c00124{bottom:792.765000px;}
.y5_c00124{bottom:817.065000px;}
.y4_c00124{bottom:842.415000px;}
.y3_c00124{bottom:865.665000px;}
.y2_c00124{bottom:889.965000px;}
.y1_c00124{bottom:923.865000px;}
.h7_c00124{height:13.200074px;}
.h8_c00124{height:43.804688px;}
.h3_c00124{height:79.497070px;}
.h6_c00124{height:84.269531px;}
.h4_c00124{height:91.160156px;}
.h2_c00124{height:103.000488px;}
.h5_c00124{height:110.151855px;}
.h0_c00124{height:989.025000px;}
.h1_c00124{height:989.250000px;}
.w1_c00124{width:104.875500px;}
.w0_c00124{width:672.000000px;}
.x0_c00124{left:0.000000px;}
.xf_c00124{left:48.600000px;}
.x1_c00124{left:53.250000px;}
.x2_c00124{left:54.450000px;}
.x3_c00124{left:56.100000px;}
.x4_c00124{left:57.150000px;}
.x5_c00124{left:62.400000px;}
.x6_c00124{left:63.900000px;}
.x7_c00124{left:65.100000px;}
.x9_c00124{left:66.150000px;}
.xa_c00124{left:67.950000px;}
.xb_c00124{left:69.150000px;}
.xc_c00124{left:70.500000px;}
.xe_c00124{left:71.550000px;}
.x10_c00124{left:72.600000px;}
.x11_c00124{left:73.650000px;}
.x12_c00124{left:75.600000px;}
.x8_c00124{left:90.900000px;}
.xd_c00124{left:93.600000px;}
.x13_c00124{left:287.814240px;}
@media print{
.v0_c00124{vertical-align:0.000000pt;}
.ls1_c00124{letter-spacing:0.000000pt;}
.ls0_c00124{letter-spacing:6.506667pt;}
.ls2_c00124{letter-spacing:8.000000pt;}
.ws0_c00124{word-spacing:-52.608000pt;}
.ws1_c00124{word-spacing:-43.426133pt;}
.ws3_c00124{word-spacing:-18.000000pt;}
.ws2_c00124{word-spacing:-14.666667pt;}
.ws4_c00124{word-spacing:0.000000pt;}
._20_c00124{margin-left:-27.072000pt;}
._15_c00124{margin-left:-19.682667pt;}
._18_c00124{margin-left:-18.405333pt;}
._17_c00124{margin-left:-17.402133pt;}
._22_c00124{margin-left:-12.650667pt;}
._19_c00124{margin-left:-10.957333pt;}
._13_c00124{margin-left:-8.984000pt;}
._f_c00124{margin-left:-7.010667pt;}
._14_c00124{margin-left:-5.469333pt;}
._6_c00124{margin-left:-4.573333pt;}
._5_c00124{margin-left:-3.360000pt;}
._b_c00124{margin-left:-2.328000pt;}
._7_c00124{margin-left:-1.120000pt;}
._9_c00124{width:1.306667pt;}
._2_c00124{width:2.426667pt;}
._3_c00124{width:3.453333pt;}
._1_c00124{width:4.853333pt;}
._0_c00124{width:5.973333pt;}
._4_c00124{width:7.560000pt;}
._10_c00124{width:8.792000pt;}
._1a_c00124{width:9.770667pt;}
._c_c00124{width:10.728000pt;}
._8_c00124{width:12.320000pt;}
._d_c00124{width:13.250667pt;}
._e_c00124{width:14.581333pt;}
._11_c00124{width:15.480000pt;}
._1d_c00124{width:19.616000pt;}
._16_c00124{width:22.768000pt;}
._12_c00124{width:25.192000pt;}
._21_c00124{width:56.880000pt;}
._a_c00124{width:64.533333pt;}
._24_c00124{width:75.872000pt;}
._1b_c00124{width:94.856000pt;}
._1c_c00124{width:97.725333pt;}
._1e_c00124{width:100.952000pt;}
._23_c00124{width:154.528000pt;}
._1f_c00124{width:211.602667pt;}
.fs7_c00124{font-size:42.666667pt;}
.fs4_c00124{font-size:49.066667pt;}
.fs6_c00124{font-size:58.666667pt;}
.fs3_c00124{font-size:64.000000pt;}
.fs2_c00124{font-size:72.000000pt;}
.fs5_c00124{font-size:77.333333pt;}
.fs1_c00124{font-size:82.666667pt;}
.fs0_c00124{font-size:93.333333pt;}
.y0_c00124{bottom:0.000000pt;}
.y25_c00124{bottom:2.760000pt;}
.y24_c00124{bottom:6.425219pt;}
.y23_c00124{bottom:73.613333pt;}
.y22_c00124{bottom:96.680000pt;}
.y21_c00124{bottom:119.080000pt;}
.y20_c00124{bottom:140.680000pt;}
.y1f_c00124{bottom:163.213333pt;}
.y1e_c00124{bottom:185.080000pt;}
.y1d_c00124{bottom:206.680000pt;}
.y1c_c00124{bottom:228.946667pt;}
.y1b_c00124{bottom:250.813333pt;}
.y1a_c00124{bottom:272.413333pt;}
.y19_c00124{bottom:294.280000pt;}
.y18_c00124{bottom:316.280000pt;}
.y17_c00124{bottom:336.680000pt;}
.y16_c00124{bottom:359.213333pt;}
.y15_c00124{bottom:380.146667pt;}
.y14_c00124{bottom:402.280000pt;}
.y13_c00124{bottom:422.813333pt;}
.y12_c00124{bottom:445.213333pt;}
.y11_c00124{bottom:466.813333pt;}
.y10_c00124{bottom:487.613333pt;}
.yf_c00124{bottom:510.013333pt;}
.ye_c00124{bottom:531.880000pt;}
.yd_c00124{bottom:552.946667pt;}
.yc_c00124{bottom:574.546667pt;}
.yb_c00124{bottom:596.146667pt;}
.ya_c00124{bottom:618.413333pt;}
.y9_c00124{bottom:639.613333pt;}
.y8_c00124{bottom:661.213333pt;}
.y7_c00124{bottom:682.546667pt;}
.y6_c00124{bottom:704.680000pt;}
.y5_c00124{bottom:726.280000pt;}
.y4_c00124{bottom:748.813333pt;}
.y3_c00124{bottom:769.480000pt;}
.y2_c00124{bottom:791.080000pt;}
.y1_c00124{bottom:821.213333pt;}
.h7_c00124{height:11.733399pt;}
.h8_c00124{height:38.937500pt;}
.h3_c00124{height:70.664062pt;}
.h6_c00124{height:74.906250pt;}
.h4_c00124{height:81.031250pt;}
.h2_c00124{height:91.555990pt;}
.h5_c00124{height:97.912760pt;}
.h0_c00124{height:879.133333pt;}
.h1_c00124{height:879.333333pt;}
.w1_c00124{width:93.222667pt;}
.w0_c00124{width:597.333333pt;}
.x0_c00124{left:0.000000pt;}
.xf_c00124{left:43.200000pt;}
.x1_c00124{left:47.333333pt;}
.x2_c00124{left:48.400000pt;}
.x3_c00124{left:49.866667pt;}
.x4_c00124{left:50.800000pt;}
.x5_c00124{left:55.466667pt;}
.x6_c00124{left:56.800000pt;}
.x7_c00124{left:57.866667pt;}
.x9_c00124{left:58.800000pt;}
.xa_c00124{left:60.400000pt;}
.xb_c00124{left:61.466667pt;}
.xc_c00124{left:62.666667pt;}
.xe_c00124{left:63.600000pt;}
.x10_c00124{left:64.533333pt;}
.x11_c00124{left:65.466667pt;}
.x12_c00124{left:67.200000pt;}
.x8_c00124{left:80.800000pt;}
.xd_c00124{left:83.200000pt;}
.x13_c00124{left:255.834880pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f3b8ae2d80ec62e821944b61.woff2')format("woff");}.ff1_c00125{font-family:ff1_c00125;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00125;src:url('chunks/assets/font_a48901366cf3e3582dfa9491.woff2')format("woff");}.ff2_c00125{font-family:ff2_c00125;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00125;src:url('chunks/assets/font_4180a9eca38eaba34b52dad3.woff2')format("woff");}.ff3_c00125{font-family:ff3_c00125;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00125;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff4_c00125{font-family:ff4_c00125;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00125;src:url('chunks/assets/font_d03debff91164fc24f946698.woff2')format("woff");}.ff5_c00125{font-family:ff5_c00125;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00125;src:url('chunks/assets/font_615dcefed21e1602fa9a84b3.woff2')format("woff");}.ff6_c00125{font-family:ff6_c00125;line-height:1.437000;font-style:normal;font-weight: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_c00125;src:url('chunks/assets/font_cc6bb269637143408b2d741e.woff2')format("woff");}.ff7_c00125{font-family:ff7_c00125;line-height:1.311035;font-style:normal;font-weight: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_c00125;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff8_c00125{font-family:ff8_c00125;line-height:1.219238;font-style: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;}
.v1_c00125{vertical-align:137.400000px;}
.ls4_c00125{letter-spacing:0.000000px;}
.ls1_c00125{letter-spacing:0.900000px;}
.ls2_c00125{letter-spacing:16.371000px;}
.ls0_c00125{letter-spacing:16.800000px;}
.ls3_c00125{letter-spacing:25.800000px;}
.sc__c00125{text-shadow:none;}
.sc0_c00125{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00125{-webkit-text-stroke:0px transparent;}
.sc0_c00125{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00125{word-spacing:-67.686000px;}
.ws1_c00125{word-spacing:-20.250000px;}
.ws3_c00125{word-spacing:-18.000000px;}
.ws0_c00125{word-spacing:-17.352000px;}
.ws4_c00125{word-spacing:0.000000px;}
._22_c00125{margin-left:-25.203000px;}
._13_c00125{margin-left:-23.760000px;}
._23_c00125{margin-left:-22.620000px;}
._e_c00125{margin-left:-15.552000px;}
._17_c00125{margin-left:-13.965000px;}
._d_c00125{margin-left:-12.840000px;}
._25_c00125{margin-left:-10.734000px;}
._15_c00125{margin-left:-9.369000px;}
._24_c00125{margin-left:-8.262000px;}
._16_c00125{margin-left:-7.059000px;}
._c_c00125{margin-left:-5.784000px;}
._7_c00125{margin-left:-4.680000px;}
._8_c00125{margin-left:-3.672000px;}
._6_c00125{margin-left:-2.376000px;}
._9_c00125{margin-left:-1.008000px;}
._2_c00125{width:1.620000px;}
._1_c00125{width:2.673000px;}
._11_c00125{width:3.726000px;}
._0_c00125{width:5.103000px;}
._4_c00125{width:6.642000px;}
._3_c00125{width:8.262000px;}
._12_c00125{width:9.963000px;}
._b_c00125{width:11.988000px;}
._a_c00125{width:13.044000px;}
._1b_c00125{width:14.199000px;}
._5_c00125{width:16.038000px;}
._20_c00125{width:17.193000px;}
._10_c00125{width:21.426000px;}
._1d_c00125{width:23.220000px;}
._21_c00125{width:25.560000px;}
._f_c00125{width:26.664000px;}
._1a_c00125{width:27.939000px;}
._19_c00125{width:31.200000px;}
._1c_c00125{width:34.506000px;}
._1e_c00125{width:35.625000px;}
._18_c00125{width:37.608000px;}
._1f_c00125{width:96.000000px;}
._14_c00125{width:184.923000px;}
.fc2_c00125{color:transparent;}
.fc1_c00125{color:rgb(128,128,128);}
.fc0_c00125{color:rgb(0,0,0);}
.fs6_c00125{font-size:48.000000px;}
.fs2_c00125{font-size:66.000000px;}
.fs1_c00125{font-size:72.000000px;}
.fs4_c00125{font-size:75.000000px;}
.fs0_c00125{font-size:81.000000px;}
.fs3_c00125{font-size:87.000000px;}
.fs5_c00125{font-size:261.000000px;}
.y0_c00125{bottom:0.000000px;}
.y24_c00125{bottom:3.105000px;}
.y23_c00125{bottom:7.228357px;}
.y22_c00125{bottom:64.230000px;}
.y21_c00125{bottom:87.780000px;}
.y20_c00125{bottom:112.830000px;}
.y1f_c00125{bottom:137.430000px;}
.y1e_c00125{bottom:162.630000px;}
.y1d_c00125{bottom:187.680000px;}
.y1c_c00125{bottom:211.680000px;}
.y1b_c00125{bottom:236.580000px;}
.y1a_c00125{bottom:261.930000px;}
.y19_c00125{bottom:285.930000px;}
.y18_c00125{bottom:310.530000px;}
.y17_c00125{bottom:334.530000px;}
.y16_c00125{bottom:359.880000px;}
.y15_c00125{bottom:384.030000px;}
.y14_c00125{bottom:407.730000px;}
.y13_c00125{bottom:432.030000px;}
.y12_c00125{bottom:456.930000px;}
.y11_c00125{bottom:480.930000px;}
.y10_c00125{bottom:505.230000px;}
.ye_c00125{bottom:519.480000px;}
.yf_c00125{bottom:529.530000px;}
.yd_c00125{bottom:578.580000px;}
.yc_c00125{bottom:625.830000px;}
.yb_c00125{bottom:651.330000px;}
.ya_c00125{bottom:675.780000px;}
.y9_c00125{bottom:700.080000px;}
.y8_c00125{bottom:724.380000px;}
.y7_c00125{bottom:748.530000px;}
.y6_c00125{bottom:773.280000px;}
.y5_c00125{bottom:797.280000px;}
.y4_c00125{bottom:821.580000px;}
.y3_c00125{bottom:845.430000px;}
.y2_c00125{bottom:870.030000px;}
.y1_c00125{bottom:894.030000px;}
.h7_c00125{height:13.200074px;}
.h8_c00125{height:43.804688px;}
.h5_c00125{height:73.571777px;}
.h4_c00125{height:79.497070px;}
.h1_c00125{height:84.269531px;}
.h2_c00125{height:91.160156px;}
.h3_c00125{height:91.176000px;}
.h6_c00125{height:256.157227px;}
.h0_c00125{height:995.250000px;}
.w2_c00125{width:104.875500px;}
.w0_c00125{width:667.425000px;}
.w1_c00125{width:667.500000px;}
.x0_c00125{left:0.000000px;}
.xf_c00125{left:16.650000px;}
.xb_c00125{left:21.900000px;}
.xa_c00125{left:24.000000px;}
.x2_c00125{left:25.950000px;}
.x3_c00125{left:43.650000px;}
.xe_c00125{left:108.000000px;}
.xd_c00125{left:109.350000px;}
.xc_c00125{left:111.150000px;}
.x7_c00125{left:112.350000px;}
.x6_c00125{left:113.850000px;}
.x5_c00125{left:115.200000px;}
.x4_c00125{left:117.450000px;}
.x1_c00125{left:119.850000px;}
.x9_c00125{left:177.900000px;}
.x8_c00125{left:198.750000px;}
.x11_c00125{left:285.526749px;}
.x10_c00125{left:544.500000px;}
@media print{
.v0_c00125{vertical-align:0.000000pt;}
.v1_c00125{vertical-align:122.133333pt;}
.ls4_c00125{letter-spacing:0.000000pt;}
.ls1_c00125{letter-spacing:0.800000pt;}
.ls2_c00125{letter-spacing:14.552000pt;}
.ls0_c00125{letter-spacing:14.933333pt;}
.ls3_c00125{letter-spacing:22.933333pt;}
.ws2_c00125{word-spacing:-60.165333pt;}
.ws1_c00125{word-spacing:-18.000000pt;}
.ws3_c00125{word-spacing:-16.000000pt;}
.ws0_c00125{word-spacing:-15.424000pt;}
.ws4_c00125{word-spacing:0.000000pt;}
._22_c00125{margin-left:-22.402667pt;}
._13_c00125{margin-left:-21.120000pt;}
._23_c00125{margin-left:-20.106667pt;}
._e_c00125{margin-left:-13.824000pt;}
._17_c00125{margin-left:-12.413333pt;}
._d_c00125{margin-left:-11.413333pt;}
._25_c00125{margin-left:-9.541333pt;}
._15_c00125{margin-left:-8.328000pt;}
._24_c00125{margin-left:-7.344000pt;}
._16_c00125{margin-left:-6.274667pt;}
._c_c00125{margin-left:-5.141333pt;}
._7_c00125{margin-left:-4.160000pt;}
._8_c00125{margin-left:-3.264000pt;}
._6_c00125{margin-left:-2.112000pt;}
._9_c00125{margin-left:-0.896000pt;}
._2_c00125{width:1.440000pt;}
._1_c00125{width:2.376000pt;}
._11_c00125{width:3.312000pt;}
._0_c00125{width:4.536000pt;}
._4_c00125{width:5.904000pt;}
._3_c00125{width:7.344000pt;}
._12_c00125{width:8.856000pt;}
._b_c00125{width:10.656000pt;}
._a_c00125{width:11.594667pt;}
._1b_c00125{width:12.621333pt;}
._5_c00125{width:14.256000pt;}
._20_c00125{width:15.282667pt;}
._10_c00125{width:19.045333pt;}
._1d_c00125{width:20.640000pt;}
._21_c00125{width:22.720000pt;}
._f_c00125{width:23.701333pt;}
._1a_c00125{width:24.834667pt;}
._19_c00125{width:27.733333pt;}
._1c_c00125{width:30.672000pt;}
._1e_c00125{width:31.666667pt;}
._18_c00125{width:33.429333pt;}
._1f_c00125{width:85.333333pt;}
._14_c00125{width:164.376000pt;}
.fs6_c00125{font-size:42.666667pt;}
.fs2_c00125{font-size:58.666667pt;}
.fs1_c00125{font-size:64.000000pt;}
.fs4_c00125{font-size:66.666667pt;}
.fs0_c00125{font-size:72.000000pt;}
.fs3_c00125{font-size:77.333333pt;}
.fs5_c00125{font-size:232.000000pt;}
.y0_c00125{bottom:0.000000pt;}
.y24_c00125{bottom:2.760000pt;}
.y23_c00125{bottom:6.425206pt;}
.y22_c00125{bottom:57.093333pt;}
.y21_c00125{bottom:78.026667pt;}
.y20_c00125{bottom:100.293333pt;}
.y1f_c00125{bottom:122.160000pt;}
.y1e_c00125{bottom:144.560000pt;}
.y1d_c00125{bottom:166.826667pt;}
.y1c_c00125{bottom:188.160000pt;}
.y1b_c00125{bottom:210.293333pt;}
.y1a_c00125{bottom:232.826667pt;}
.y19_c00125{bottom:254.160000pt;}
.y18_c00125{bottom:276.026667pt;}
.y17_c00125{bottom:297.360000pt;}
.y16_c00125{bottom:319.893333pt;}
.y15_c00125{bottom:341.360000pt;}
.y14_c00125{bottom:362.426667pt;}
.y13_c00125{bottom:384.026667pt;}
.y12_c00125{bottom:406.160000pt;}
.y11_c00125{bottom:427.493333pt;}
.y10_c00125{bottom:449.093333pt;}
.ye_c00125{bottom:461.760000pt;}
.yf_c00125{bottom:470.693333pt;}
.yd_c00125{bottom:514.293333pt;}
.yc_c00125{bottom:556.293333pt;}
.yb_c00125{bottom:578.960000pt;}
.ya_c00125{bottom:600.693333pt;}
.y9_c00125{bottom:622.293333pt;}
.y8_c00125{bottom:643.893333pt;}
.y7_c00125{bottom:665.360000pt;}
.y6_c00125{bottom:687.360000pt;}
.y5_c00125{bottom:708.693333pt;}
.y4_c00125{bottom:730.293333pt;}
.y3_c00125{bottom:751.493333pt;}
.y2_c00125{bottom:773.360000pt;}
.y1_c00125{bottom:794.693333pt;}
.h7_c00125{height:11.733399pt;}
.h8_c00125{height:38.937500pt;}
.h5_c00125{height:65.397135pt;}
.h4_c00125{height:70.664062pt;}
.h1_c00125{height:74.906250pt;}
.h2_c00125{height:81.031250pt;}
.h3_c00125{height:81.045333pt;}
.h6_c00125{height:227.695312pt;}
.h0_c00125{height:884.666667pt;}
.w2_c00125{width:93.222667pt;}
.w0_c00125{width:593.266667pt;}
.w1_c00125{width:593.333333pt;}
.x0_c00125{left:0.000000pt;}
.xf_c00125{left:14.800000pt;}
.xb_c00125{left:19.466667pt;}
.xa_c00125{left:21.333333pt;}
.x2_c00125{left:23.066667pt;}
.x3_c00125{left:38.800000pt;}
.xe_c00125{left:96.000000pt;}
.xd_c00125{left:97.200000pt;}
.xc_c00125{left:98.800000pt;}
.x7_c00125{left:99.866667pt;}
.x6_c00125{left:101.200000pt;}
.x5_c00125{left:102.400000pt;}
.x4_c00125{left:104.400000pt;}
.x1_c00125{left:106.533333pt;}
.x9_c00125{left:158.133333pt;}
.x8_c00125{left:176.666667pt;}
.x11_c00125{left:253.801554pt;}
.x10_c00125{left:484.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_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_7c268ab867086e0b9f794792.woff2')format("woff");}.ff1_c00126{font-family:ff1_c00126;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00126;src:url('chunks/assets/font_c77bf52c9561f580d100672e.woff2')format("woff");}.ff2_c00126{font-family:ff2_c00126;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00126;src:url('chunks/assets/font_e0d9a636f0935dcb4a967408.woff2')format("woff");}.ff3_c00126{font-family:ff3_c00126;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00126;src:url('chunks/assets/font_6b147f123afbbd4492782d28.woff2')format("woff");}.ff4_c00126{font-family:ff4_c00126;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00126;src:url('chunks/assets/font_7ca11a5fdb40602bb8f618ef.woff2')format("woff");}.ff5_c00126{font-family:ff5_c00126;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00126;src:url('chunks/assets/font_c3ec16623a8efb3c7843ac2b.woff2')format("woff");}.ff6_c00126{font-family:ff6_c00126;line-height:1.437000;font-style:normal;font-weight: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_c00126;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c00126{font-family:ff7_c00126;line-height:1.219238;font-style: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;}
.ls1_c00126{letter-spacing:0.000000px;}
.ls0_c00126{letter-spacing:1.500000px;}
.ls2_c00126{letter-spacing:12.000000px;}
.sc__c00126{text-shadow:none;}
.sc0_c00126{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00126{-webkit-text-stroke:0px transparent;}
.sc0_c00126{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00126{word-spacing:-20.250000px;}
.ws2_c00126{word-spacing:-19.065600px;}
.ws0_c00126{word-spacing:-18.798000px;}
.ws3_c00126{word-spacing:-17.352000px;}
.ws4_c00126{word-spacing:0.000000px;}
._1d_c00126{margin-left:-27.144000px;}
._1a_c00126{margin-left:-20.817000px;}
._13_c00126{margin-left:-19.710000px;}
._23_c00126{margin-left:-17.577000px;}
._6_c00126{margin-left:-15.312000px;}
._1e_c00126{margin-left:-14.001000px;}
._16_c00126{margin-left:-12.459000px;}
._1f_c00126{margin-left:-10.806000px;}
._17_c00126{margin-left:-9.714000px;}
._15_c00126{margin-left:-8.391000px;}
._14_c00126{margin-left:-6.897000px;}
._2_c00126{margin-left:-5.742000px;}
._3_c00126{margin-left:-4.356000px;}
._4_c00126{margin-left:-3.069000px;}
._1_c00126{margin-left:-1.683000px;}
._0_c00126{width:1.386000px;}
._7_c00126{width:3.018000px;}
._8_c00126{width:4.641000px;}
._9_c00126{width:6.021000px;}
._a_c00126{width:7.338000px;}
._b_c00126{width:8.748000px;}
._d_c00126{width:10.032000px;}
._18_c00126{width:11.052000px;}
._f_c00126{width:12.306000px;}
._c_c00126{width:13.752000px;}
._e_c00126{width:14.826000px;}
._11_c00126{width:16.926000px;}
._10_c00126{width:22.704000px;}
._1b_c00126{width:31.332000px;}
._19_c00126{width:33.747000px;}
._21_c00126{width:38.709000px;}
._5_c00126{width:60.399000px;}
._1c_c00126{width:157.251000px;}
._20_c00126{width:208.446000px;}
._12_c00126{width:235.722000px;}
._22_c00126{width:324.867000px;}
.fc2_c00126{color:transparent;}
.fc1_c00126{color:rgb(128,128,128);}
.fc0_c00126{color:rgb(0,0,0);}
.fs4_c00126{font-size:42.000000px;}
.fs9_c00126{font-size:48.000000px;}
.fs6_c00126{font-size:57.600000px;}
.fs7_c00126{font-size:66.000000px;}
.fs5_c00126{font-size:72.000000px;}
.fs3_c00126{font-size:78.000000px;}
.fs2_c00126{font-size:81.000000px;}
.fs8_c00126{font-size:87.000000px;}
.fs0_c00126{font-size:99.000000px;}
.fs1_c00126{font-size:132.000000px;}
.y0_c00126{bottom:0.000000px;}
.y26_c00126{bottom:3.105000px;}
.y25_c00126{bottom:7.228371px;}
.y24_c00126{bottom:64.515000px;}
.y23_c00126{bottom:86.115000px;}
.y22_c00126{bottom:110.415000px;}
.y21_c00126{bottom:135.015000px;}
.y20_c00126{bottom:159.315000px;}
.y1f_c00126{bottom:184.065000px;}
.y1e_c00126{bottom:208.665000px;}
.y1d_c00126{bottom:232.515000px;}
.y1c_c00126{bottom:257.265000px;}
.y1b_c00126{bottom:282.165000px;}
.y1a_c00126{bottom:305.865000px;}
.y19_c00126{bottom:329.865000px;}
.y18_c00126{bottom:354.015000px;}
.y17_c00126{bottom:379.365000px;}
.y16_c00126{bottom:402.615000px;}
.y15_c00126{bottom:427.365000px;}
.y14_c00126{bottom:451.215000px;}
.y13_c00126{bottom:475.965000px;}
.y12_c00126{bottom:500.565000px;}
.y11_c00126{bottom:524.265000px;}
.y10_c00126{bottom:548.115000px;}
.yf_c00126{bottom:572.715000px;}
.ye_c00126{bottom:598.815000px;}
.yd_c00126{bottom:621.015000px;}
.yc_c00126{bottom:645.765000px;}
.yb_c00126{bottom:669.015000px;}
.ya_c00126{bottom:693.315000px;}
.y9_c00126{bottom:718.215000px;}
.y8_c00126{bottom:743.565000px;}
.y7_c00126{bottom:766.515000px;}
.y6_c00126{bottom:790.815000px;}
.y5_c00126{bottom:814.515000px;}
.y4_c00126{bottom:838.665000px;}
.y3_c00126{bottom:862.965000px;}
.y2_c00126{bottom:886.965000px;}
.y1_c00126{bottom:921.465000px;}
.h8_c00126{height:13.200074px;}
.h9_c00126{height:43.804688px;}
.h3_c00126{height:79.497070px;}
.h5_c00126{height:84.269531px;}
.h6_c00126{height:91.160156px;}
.h7_c00126{height:91.176000px;}
.h4_c00126{height:98.756836px;}
.h2_c00126{height:167.126953px;}
.h0_c00126{height:989.025000px;}
.h1_c00126{height:989.250000px;}
.w1_c00126{width:104.875500px;}
.w0_c00126{width:672.000000px;}
.x0_c00126{left:0.000000px;}
.x2_c00126{left:41.250000px;}
.x3_c00126{left:42.450000px;}
.x4_c00126{left:43.800000px;}
.x5_c00126{left:44.850000px;}
.x7_c00126{left:45.900000px;}
.x8_c00126{left:46.950000px;}
.x9_c00126{left:48.000000px;}
.xb_c00126{left:49.350000px;}
.xc_c00126{left:51.000000px;}
.x6_c00126{left:72.000000px;}
.xa_c00126{left:97.200000px;}
.x1_c00126{left:105.000000px;}
.xe_c00126{left:287.814240px;}
.xd_c00126{left:455.250000px;}
@media print{
.v0_c00126{vertical-align:0.000000pt;}
.ls1_c00126{letter-spacing:0.000000pt;}
.ls0_c00126{letter-spacing:1.333333pt;}
.ls2_c00126{letter-spacing:10.666667pt;}
.ws1_c00126{word-spacing:-18.000000pt;}
.ws2_c00126{word-spacing:-16.947200pt;}
.ws0_c00126{word-spacing:-16.709333pt;}
.ws3_c00126{word-spacing:-15.424000pt;}
.ws4_c00126{word-spacing:0.000000pt;}
._1d_c00126{margin-left:-24.128000pt;}
._1a_c00126{margin-left:-18.504000pt;}
._13_c00126{margin-left:-17.520000pt;}
._23_c00126{margin-left:-15.624000pt;}
._6_c00126{margin-left:-13.610667pt;}
._1e_c00126{margin-left:-12.445333pt;}
._16_c00126{margin-left:-11.074667pt;}
._1f_c00126{margin-left:-9.605333pt;}
._17_c00126{margin-left:-8.634667pt;}
._15_c00126{margin-left:-7.458667pt;}
._14_c00126{margin-left:-6.130667pt;}
._2_c00126{margin-left:-5.104000pt;}
._3_c00126{margin-left:-3.872000pt;}
._4_c00126{margin-left:-2.728000pt;}
._1_c00126{margin-left:-1.496000pt;}
._0_c00126{width:1.232000pt;}
._7_c00126{width:2.682667pt;}
._8_c00126{width:4.125333pt;}
._9_c00126{width:5.352000pt;}
._a_c00126{width:6.522667pt;}
._b_c00126{width:7.776000pt;}
._d_c00126{width:8.917333pt;}
._18_c00126{width:9.824000pt;}
._f_c00126{width:10.938667pt;}
._c_c00126{width:12.224000pt;}
._e_c00126{width:13.178667pt;}
._11_c00126{width:15.045333pt;}
._10_c00126{width:20.181333pt;}
._1b_c00126{width:27.850667pt;}
._19_c00126{width:29.997333pt;}
._21_c00126{width:34.408000pt;}
._5_c00126{width:53.688000pt;}
._1c_c00126{width:139.778667pt;}
._20_c00126{width:185.285333pt;}
._12_c00126{width:209.530667pt;}
._22_c00126{width:288.770667pt;}
.fs4_c00126{font-size:37.333333pt;}
.fs9_c00126{font-size:42.666667pt;}
.fs6_c00126{font-size:51.200000pt;}
.fs7_c00126{font-size:58.666667pt;}
.fs5_c00126{font-size:64.000000pt;}
.fs3_c00126{font-size:69.333333pt;}
.fs2_c00126{font-size:72.000000pt;}
.fs8_c00126{font-size:77.333333pt;}
.fs0_c00126{font-size:88.000000pt;}
.fs1_c00126{font-size:117.333333pt;}
.y0_c00126{bottom:0.000000pt;}
.y26_c00126{bottom:2.760000pt;}
.y25_c00126{bottom:6.425219pt;}
.y24_c00126{bottom:57.346667pt;}
.y23_c00126{bottom:76.546667pt;}
.y22_c00126{bottom:98.146667pt;}
.y21_c00126{bottom:120.013333pt;}
.y20_c00126{bottom:141.613333pt;}
.y1f_c00126{bottom:163.613333pt;}
.y1e_c00126{bottom:185.480000pt;}
.y1d_c00126{bottom:206.680000pt;}
.y1c_c00126{bottom:228.680000pt;}
.y1b_c00126{bottom:250.813333pt;}
.y1a_c00126{bottom:271.880000pt;}
.y19_c00126{bottom:293.213333pt;}
.y18_c00126{bottom:314.680000pt;}
.y17_c00126{bottom:337.213333pt;}
.y16_c00126{bottom:357.880000pt;}
.y15_c00126{bottom:379.880000pt;}
.y14_c00126{bottom:401.080000pt;}
.y13_c00126{bottom:423.080000pt;}
.y12_c00126{bottom:444.946667pt;}
.y11_c00126{bottom:466.013333pt;}
.y10_c00126{bottom:487.213333pt;}
.yf_c00126{bottom:509.080000pt;}
.ye_c00126{bottom:532.280000pt;}
.yd_c00126{bottom:552.013333pt;}
.yc_c00126{bottom:574.013333pt;}
.yb_c00126{bottom:594.680000pt;}
.ya_c00126{bottom:616.280000pt;}
.y9_c00126{bottom:638.413333pt;}
.y8_c00126{bottom:660.946667pt;}
.y7_c00126{bottom:681.346667pt;}
.y6_c00126{bottom:702.946667pt;}
.y5_c00126{bottom:724.013333pt;}
.y4_c00126{bottom:745.480000pt;}
.y3_c00126{bottom:767.080000pt;}
.y2_c00126{bottom:788.413333pt;}
.y1_c00126{bottom:819.080000pt;}
.h8_c00126{height:11.733399pt;}
.h9_c00126{height:38.937500pt;}
.h3_c00126{height:70.664062pt;}
.h5_c00126{height:74.906250pt;}
.h6_c00126{height:81.031250pt;}
.h7_c00126{height:81.045333pt;}
.h4_c00126{height:87.783854pt;}
.h2_c00126{height:148.557292pt;}
.h0_c00126{height:879.133333pt;}
.h1_c00126{height:879.333333pt;}
.w1_c00126{width:93.222667pt;}
.w0_c00126{width:597.333333pt;}
.x0_c00126{left:0.000000pt;}
.x2_c00126{left:36.666667pt;}
.x3_c00126{left:37.733333pt;}
.x4_c00126{left:38.933333pt;}
.x5_c00126{left:39.866667pt;}
.x7_c00126{left:40.800000pt;}
.x8_c00126{left:41.733333pt;}
.x9_c00126{left:42.666667pt;}
.xb_c00126{left:43.866667pt;}
.xc_c00126{left:45.333333pt;}
.x6_c00126{left:64.000000pt;}
.xa_c00126{left:86.400000pt;}
.x1_c00126{left:93.333333pt;}
.xe_c00126{left:255.834880pt;}
.xd_c00126{left:404.666667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ae46a8475700217f0d9a512c.woff2')format("woff");}.ff1_c00127{font-family:ff1_c00127;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00127;src:url('chunks/assets/font_e0ed1ed6ef8cf6f758e32c25.woff2')format("woff");}.ff2_c00127{font-family:ff2_c00127;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00127;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff3_c00127{font-family:ff3_c00127;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00127;src:url('chunks/assets/font_bfa49f20b62bff8cdc257b67.woff2')format("woff");}.ff4_c00127{font-family:ff4_c00127;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00127;src:url('chunks/assets/font_8e4e098eb8dbaec5d2f83572.woff2')format("woff");}.ff5_c00127{font-family:ff5_c00127;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00127;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c00127{font-family:ff6_c00127;line-height:1.219238;font-style: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;}
.ls0_c00127{letter-spacing:0.000000px;}
.ls1_c00127{letter-spacing:3.000000px;}
.sc__c00127{text-shadow:none;}
.sc0_c00127{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00127{-webkit-text-stroke:0px transparent;}
.sc0_c00127{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00127{word-spacing:-24.000000px;}
.ws2_c00127{word-spacing:-20.250000px;}
.ws1_c00127{word-spacing:-18.750000px;}
.ws3_c00127{word-spacing:0.000000px;}
._23_c00127{margin-left:-31.590000px;}
._1c_c00127{margin-left:-25.116000px;}
._1e_c00127{margin-left:-23.874000px;}
._20_c00127{margin-left:-18.906000px;}
._1a_c00127{margin-left:-17.658000px;}
._27_c00127{margin-left:-15.471000px;}
._11_c00127{margin-left:-13.770000px;}
._19_c00127{margin-left:-12.462000px;}
._1b_c00127{margin-left:-10.950000px;}
._18_c00127{margin-left:-8.346000px;}
._f_c00127{margin-left:-7.155000px;}
._e_c00127{margin-left:-5.643000px;}
._4_c00127{margin-left:-4.455000px;}
._3_c00127{margin-left:-3.402000px;}
._a_c00127{margin-left:-2.376000px;}
._8_c00127{margin-left:-1.269000px;}
._0_c00127{width:1.458000px;}
._1_c00127{width:3.078000px;}
._2_c00127{width:4.131000px;}
._5_c00127{width:5.265000px;}
._6_c00127{width:6.885000px;}
._7_c00127{width:8.100000px;}
._16_c00127{width:9.126000px;}
._9_c00127{width:10.179000px;}
._10_c00127{width:12.177000px;}
._c_c00127{width:13.608000px;}
._22_c00127{width:14.838000px;}
._d_c00127{width:16.605000px;}
._17_c00127{width:18.027000px;}
._2a_c00127{width:19.170000px;}
._29_c00127{width:23.436000px;}
._b_c00127{width:25.218000px;}
._24_c00127{width:29.241000px;}
._15_c00127{width:47.142000px;}
._12_c00127{width:64.962000px;}
._28_c00127{width:85.617000px;}
._1d_c00127{width:124.062000px;}
._1f_c00127{width:179.250000px;}
._13_c00127{width:182.358000px;}
._14_c00127{width:201.852000px;}
._25_c00127{width:209.628000px;}
._26_c00127{width:243.027000px;}
._21_c00127{width:321.756000px;}
.fc2_c00127{color:transparent;}
.fc1_c00127{color:rgb(128,128,128);}
.fc0_c00127{color:rgb(0,0,0);}
.fs5_c00127{font-size:48.000000px;}
.fs2_c00127{font-size:66.000000px;}
.fs4_c00127{font-size:69.000000px;}
.fs3_c00127{font-size:75.000000px;}
.fs0_c00127{font-size:81.000000px;}
.fs1_c00127{font-size:84.000000px;}
.y0_c00127{bottom:0.000000px;}
.y25_c00127{bottom:3.105000px;}
.y24_c00127{bottom:7.228357px;}
.y23_c00127{bottom:71.580000px;}
.y22_c00127{bottom:95.580000px;}
.y21_c00127{bottom:121.230000px;}
.y20_c00127{bottom:146.130000px;}
.y1f_c00127{bottom:171.180000px;}
.y1e_c00127{bottom:196.080000px;}
.y1d_c00127{bottom:220.830000px;}
.y1c_c00127{bottom:245.130000px;}
.y1b_c00127{bottom:269.730000px;}
.y1a_c00127{bottom:294.630000px;}
.y19_c00127{bottom:318.630000px;}
.y18_c00127{bottom:343.530000px;}
.y17_c00127{bottom:367.980000px;}
.y16_c00127{bottom:392.580000px;}
.y15_c00127{bottom:416.880000px;}
.y14_c00127{bottom:441.480000px;}
.y13_c00127{bottom:465.480000px;}
.y12_c00127{bottom:490.380000px;}
.y11_c00127{bottom:514.380000px;}
.y10_c00127{bottom:538.680000px;}
.yf_c00127{bottom:562.980000px;}
.ye_c00127{bottom:587.580000px;}
.yd_c00127{bottom:612.330000px;}
.yc_c00127{bottom:635.880000px;}
.yb_c00127{bottom:660.180000px;}
.ya_c00127{bottom:684.480000px;}
.y9_c00127{bottom:709.380000px;}
.y8_c00127{bottom:732.330000px;}
.y7_c00127{bottom:757.680000px;}
.y6_c00127{bottom:782.280000px;}
.y5_c00127{bottom:806.580000px;}
.y4_c00127{bottom:830.880000px;}
.y3_c00127{bottom:855.180000px;}
.y2_c00127{bottom:879.480000px;}
.y1_c00127{bottom:903.780000px;}
.h5_c00127{height:13.200074px;}
.h6_c00127{height:43.804688px;}
.h4_c00127{height:77.247070px;}
.h1_c00127{height:79.497070px;}
.h2_c00127{height:82.441406px;}
.h3_c00127{height:83.563477px;}
.h0_c00127{height:995.250000px;}
.w2_c00127{width:104.875500px;}
.w0_c00127{width:667.425000px;}
.w1_c00127{width:667.500000px;}
.x0_c00127{left:0.000000px;}
.x4_c00127{left:44.250000px;}
.x9_c00127{left:45.600000px;}
.x5_c00127{left:82.650000px;}
.xc_c00127{left:128.850000px;}
.xb_c00127{left:129.900000px;}
.x6_c00127{left:131.550000px;}
.xa_c00127{left:132.600000px;}
.x8_c00127{left:133.950000px;}
.x2_c00127{left:135.000000px;}
.x3_c00127{left:136.350000px;}
.x1_c00127{left:138.300000px;}
.x7_c00127{left:159.300000px;}
.xd_c00127{left:168.300000px;}
.xf_c00127{left:285.526749px;}
.xe_c00127{left:577.500000px;}
@media print{
.v0_c00127{vertical-align:0.000000pt;}
.ls0_c00127{letter-spacing:0.000000pt;}
.ls1_c00127{letter-spacing:2.666667pt;}
.ws0_c00127{word-spacing:-21.333333pt;}
.ws2_c00127{word-spacing:-18.000000pt;}
.ws1_c00127{word-spacing:-16.666667pt;}
.ws3_c00127{word-spacing:0.000000pt;}
._23_c00127{margin-left:-28.080000pt;}
._1c_c00127{margin-left:-22.325333pt;}
._1e_c00127{margin-left:-21.221333pt;}
._20_c00127{margin-left:-16.805333pt;}
._1a_c00127{margin-left:-15.696000pt;}
._27_c00127{margin-left:-13.752000pt;}
._11_c00127{margin-left:-12.240000pt;}
._19_c00127{margin-left:-11.077333pt;}
._1b_c00127{margin-left:-9.733333pt;}
._18_c00127{margin-left:-7.418667pt;}
._f_c00127{margin-left:-6.360000pt;}
._e_c00127{margin-left:-5.016000pt;}
._4_c00127{margin-left:-3.960000pt;}
._3_c00127{margin-left:-3.024000pt;}
._a_c00127{margin-left:-2.112000pt;}
._8_c00127{margin-left:-1.128000pt;}
._0_c00127{width:1.296000pt;}
._1_c00127{width:2.736000pt;}
._2_c00127{width:3.672000pt;}
._5_c00127{width:4.680000pt;}
._6_c00127{width:6.120000pt;}
._7_c00127{width:7.200000pt;}
._16_c00127{width:8.112000pt;}
._9_c00127{width:9.048000pt;}
._10_c00127{width:10.824000pt;}
._c_c00127{width:12.096000pt;}
._22_c00127{width:13.189333pt;}
._d_c00127{width:14.760000pt;}
._17_c00127{width:16.024000pt;}
._2a_c00127{width:17.040000pt;}
._29_c00127{width:20.832000pt;}
._b_c00127{width:22.416000pt;}
._24_c00127{width:25.992000pt;}
._15_c00127{width:41.904000pt;}
._12_c00127{width:57.744000pt;}
._28_c00127{width:76.104000pt;}
._1d_c00127{width:110.277333pt;}
._1f_c00127{width:159.333333pt;}
._13_c00127{width:162.096000pt;}
._14_c00127{width:179.424000pt;}
._25_c00127{width:186.336000pt;}
._26_c00127{width:216.024000pt;}
._21_c00127{width:286.005333pt;}
.fs5_c00127{font-size:42.666667pt;}
.fs2_c00127{font-size:58.666667pt;}
.fs4_c00127{font-size:61.333333pt;}
.fs3_c00127{font-size:66.666667pt;}
.fs0_c00127{font-size:72.000000pt;}
.fs1_c00127{font-size:74.666667pt;}
.y0_c00127{bottom:0.000000pt;}
.y25_c00127{bottom:2.760000pt;}
.y24_c00127{bottom:6.425206pt;}
.y23_c00127{bottom:63.626667pt;}
.y22_c00127{bottom:84.960000pt;}
.y21_c00127{bottom:107.760000pt;}
.y20_c00127{bottom:129.893333pt;}
.y1f_c00127{bottom:152.160000pt;}
.y1e_c00127{bottom:174.293333pt;}
.y1d_c00127{bottom:196.293333pt;}
.y1c_c00127{bottom:217.893333pt;}
.y1b_c00127{bottom:239.760000pt;}
.y1a_c00127{bottom:261.893333pt;}
.y19_c00127{bottom:283.226667pt;}
.y18_c00127{bottom:305.360000pt;}
.y17_c00127{bottom:327.093333pt;}
.y16_c00127{bottom:348.960000pt;}
.y15_c00127{bottom:370.560000pt;}
.y14_c00127{bottom:392.426667pt;}
.y13_c00127{bottom:413.760000pt;}
.y12_c00127{bottom:435.893333pt;}
.y11_c00127{bottom:457.226667pt;}
.y10_c00127{bottom:478.826667pt;}
.yf_c00127{bottom:500.426667pt;}
.ye_c00127{bottom:522.293333pt;}
.yd_c00127{bottom:544.293333pt;}
.yc_c00127{bottom:565.226667pt;}
.yb_c00127{bottom:586.826667pt;}
.ya_c00127{bottom:608.426667pt;}
.y9_c00127{bottom:630.560000pt;}
.y8_c00127{bottom:650.960000pt;}
.y7_c00127{bottom:673.493333pt;}
.y6_c00127{bottom:695.360000pt;}
.y5_c00127{bottom:716.960000pt;}
.y4_c00127{bottom:738.560000pt;}
.y3_c00127{bottom:760.160000pt;}
.y2_c00127{bottom:781.760000pt;}
.y1_c00127{bottom:803.360000pt;}
.h5_c00127{height:11.733399pt;}
.h6_c00127{height:38.937500pt;}
.h4_c00127{height:68.664062pt;}
.h1_c00127{height:70.664062pt;}
.h2_c00127{height:73.281250pt;}
.h3_c00127{height:74.278646pt;}
.h0_c00127{height:884.666667pt;}
.w2_c00127{width:93.222667pt;}
.w0_c00127{width:593.266667pt;}
.w1_c00127{width:593.333333pt;}
.x0_c00127{left:0.000000pt;}
.x4_c00127{left:39.333333pt;}
.x9_c00127{left:40.533333pt;}
.x5_c00127{left:73.466667pt;}
.xc_c00127{left:114.533333pt;}
.xb_c00127{left:115.466667pt;}
.x6_c00127{left:116.933333pt;}
.xa_c00127{left:117.866667pt;}
.x8_c00127{left:119.066667pt;}
.x2_c00127{left:120.000000pt;}
.x3_c00127{left:121.200000pt;}
.x1_c00127{left:122.933333pt;}
.x7_c00127{left:141.600000pt;}
.xd_c00127{left:149.600000pt;}
.xf_c00127{left:253.801554pt;}
.xe_c00127{left:513.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_c7b775ea70152aa59694380e.woff2')format("woff");}.ff1_c00128{font-family:ff1_c00128;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00128;src:url('chunks/assets/font_69e0397cee99e89fed008299.woff2')format("woff");}.ff2_c00128{font-family:ff2_c00128;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00128;src:url('chunks/assets/font_05881577ec515bf14fc39e5d.woff2')format("woff");}.ff3_c00128{font-family:ff3_c00128;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00128;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff4_c00128{font-family:ff4_c00128;line-height:1.219238;font-style: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;}
.ls2_c00128{letter-spacing:0.000000px;}
.ls1_c00128{letter-spacing:7.080000px;}
.ls0_c00128{letter-spacing:24.720000px;}
.sc__c00128{text-shadow:none;}
.sc0_c00128{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00128{-webkit-text-stroke:0px transparent;}
.sc0_c00128{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00128{word-spacing:-67.686000px;}
.ws1_c00128{word-spacing:-17.352000px;}
.ws2_c00128{word-spacing:0.000000px;}
._f_c00128{margin-left:-29.079000px;}
._11_c00128{margin-left:-23.166000px;}
._1e_c00128{margin-left:-19.683000px;}
._e_c00128{margin-left:-14.256000px;}
._1c_c00128{margin-left:-11.259000px;}
._12_c00128{margin-left:-9.882000px;}
._14_c00128{margin-left:-7.452000px;}
._9_c00128{margin-left:-6.156000px;}
._2_c00128{margin-left:-4.293000px;}
._4_c00128{margin-left:-2.268000px;}
._8_c00128{margin-left:-1.134000px;}
._3_c00128{width:1.539000px;}
._0_c00128{width:2.997000px;}
._1_c00128{width:4.536000px;}
._5_c00128{width:5.670000px;}
._a_c00128{width:7.047000px;}
._7_c00128{width:8.100000px;}
._1b_c00128{width:9.156000px;}
._6_c00128{width:10.368000px;}
._b_c00128{width:11.502000px;}
._d_c00128{width:12.960000px;}
._10_c00128{width:14.904000px;}
._19_c00128{width:16.986000px;}
._15_c00128{width:18.387000px;}
._c_c00128{width:21.396000px;}
._21_c00128{width:37.227000px;}
._13_c00128{width:39.042000px;}
._16_c00128{width:85.836000px;}
._20_c00128{width:109.917000px;}
._1a_c00128{width:111.087000px;}
._1d_c00128{width:123.033000px;}
._1f_c00128{width:217.890000px;}
._18_c00128{width:278.688000px;}
._22_c00128{width:297.096000px;}
._17_c00128{width:465.021000px;}
.fc2_c00128{color:transparent;}
.fc1_c00128{color:rgb(128,128,128);}
.fc0_c00128{color:rgb(0,0,0);}
.fs4_c00128{font-size:48.000000px;}
.fs3_c00128{font-size:57.000000px;}
.fs2_c00128{font-size:72.000000px;}
.fs0_c00128{font-size:81.000000px;}
.fs1_c00128{font-size:87.000000px;}
.y0_c00128{bottom:0.000000px;}
.y25_c00128{bottom:3.105000px;}
.y24_c00128{bottom:7.228357px;}
.y23_c00128{bottom:34.080000px;}
.y22_c00128{bottom:60.480000px;}
.y21_c00128{bottom:85.380000px;}
.y20_c00128{bottom:110.130000px;}
.y1f_c00128{bottom:134.730000px;}
.y1e_c00128{bottom:159.930000px;}
.y1d_c00128{bottom:183.930000px;}
.y1c_c00128{bottom:208.530000px;}
.y1b_c00128{bottom:233.280000px;}
.y1a_c00128{bottom:257.580000px;}
.y19_c00128{bottom:282.180000px;}
.y18_c00128{bottom:306.480000px;}
.y17_c00128{bottom:330.180000px;}
.y16_c00128{bottom:354.480000px;}
.y15_c00128{bottom:379.080000px;}
.y14_c00128{bottom:403.380000px;}
.y13_c00128{bottom:428.280000px;}
.y12_c00128{bottom:451.530000px;}
.y11_c00128{bottom:476.280000px;}
.y10_c00128{bottom:501.180000px;}
.yf_c00128{bottom:525.780000px;}
.ye_c00128{bottom:550.080000px;}
.yd_c00128{bottom:574.080000px;}
.yc_c00128{bottom:598.680000px;}
.yb_c00128{bottom:622.380000px;}
.ya_c00128{bottom:646.080000px;}
.y9_c00128{bottom:670.680000px;}
.y8_c00128{bottom:695.280000px;}
.y7_c00128{bottom:721.230000px;}
.y6_c00128{bottom:744.180000px;}
.y5_c00128{bottom:768.930000px;}
.y4_c00128{bottom:793.230000px;}
.y3_c00128{bottom:817.830000px;}
.y2_c00128{bottom:843.180000px;}
.y1_c00128{bottom:867.780000px;}
.h6_c00128{height:13.200074px;}
.h7_c00128{height:43.804688px;}
.h5_c00128{height:66.713379px;}
.h2_c00128{height:79.497070px;}
.h4_c00128{height:84.269531px;}
.h3_c00128{height:91.176000px;}
.h0_c00128{height:962.850000px;}
.h1_c00128{height:963.000000px;}
.w2_c00128{width:104.875500px;}
.w0_c00128{width:653.925000px;}
.w1_c00128{width:654.000000px;}
.x0_c00128{left:0.000000px;}
.x3_c00128{left:54.900000px;}
.x2_c00128{left:55.950000px;}
.x4_c00128{left:57.000000px;}
.x6_c00128{left:58.050000px;}
.x1_c00128{left:66.150000px;}
.x5_c00128{left:82.350000px;}
.x8_c00128{left:278.776749px;}
.x7_c00128{left:379.650000px;}
@media print{
.v0_c00128{vertical-align:0.000000pt;}
.ls2_c00128{letter-spacing:0.000000pt;}
.ls1_c00128{letter-spacing:6.293333pt;}
.ls0_c00128{letter-spacing:21.973333pt;}
.ws0_c00128{word-spacing:-60.165333pt;}
.ws1_c00128{word-spacing:-15.424000pt;}
.ws2_c00128{word-spacing:0.000000pt;}
._f_c00128{margin-left:-25.848000pt;}
._11_c00128{margin-left:-20.592000pt;}
._1e_c00128{margin-left:-17.496000pt;}
._e_c00128{margin-left:-12.672000pt;}
._1c_c00128{margin-left:-10.008000pt;}
._12_c00128{margin-left:-8.784000pt;}
._14_c00128{margin-left:-6.624000pt;}
._9_c00128{margin-left:-5.472000pt;}
._2_c00128{margin-left:-3.816000pt;}
._4_c00128{margin-left:-2.016000pt;}
._8_c00128{margin-left:-1.008000pt;}
._3_c00128{width:1.368000pt;}
._0_c00128{width:2.664000pt;}
._1_c00128{width:4.032000pt;}
._5_c00128{width:5.040000pt;}
._a_c00128{width:6.264000pt;}
._7_c00128{width:7.200000pt;}
._1b_c00128{width:8.138667pt;}
._6_c00128{width:9.216000pt;}
._b_c00128{width:10.224000pt;}
._d_c00128{width:11.520000pt;}
._10_c00128{width:13.248000pt;}
._19_c00128{width:15.098667pt;}
._15_c00128{width:16.344000pt;}
._c_c00128{width:19.018667pt;}
._21_c00128{width:33.090667pt;}
._13_c00128{width:34.704000pt;}
._16_c00128{width:76.298667pt;}
._20_c00128{width:97.704000pt;}
._1a_c00128{width:98.744000pt;}
._1d_c00128{width:109.362667pt;}
._1f_c00128{width:193.680000pt;}
._18_c00128{width:247.722667pt;}
._22_c00128{width:264.085333pt;}
._17_c00128{width:413.352000pt;}
.fs4_c00128{font-size:42.666667pt;}
.fs3_c00128{font-size:50.666667pt;}
.fs2_c00128{font-size:64.000000pt;}
.fs0_c00128{font-size:72.000000pt;}
.fs1_c00128{font-size:77.333333pt;}
.y0_c00128{bottom:0.000000pt;}
.y25_c00128{bottom:2.760000pt;}
.y24_c00128{bottom:6.425206pt;}
.y23_c00128{bottom:30.293333pt;}
.y22_c00128{bottom:53.760000pt;}
.y21_c00128{bottom:75.893333pt;}
.y20_c00128{bottom:97.893333pt;}
.y1f_c00128{bottom:119.760000pt;}
.y1e_c00128{bottom:142.160000pt;}
.y1d_c00128{bottom:163.493333pt;}
.y1c_c00128{bottom:185.360000pt;}
.y1b_c00128{bottom:207.360000pt;}
.y1a_c00128{bottom:228.960000pt;}
.y19_c00128{bottom:250.826667pt;}
.y18_c00128{bottom:272.426667pt;}
.y17_c00128{bottom:293.493333pt;}
.y16_c00128{bottom:315.093333pt;}
.y15_c00128{bottom:336.960000pt;}
.y14_c00128{bottom:358.560000pt;}
.y13_c00128{bottom:380.693333pt;}
.y12_c00128{bottom:401.360000pt;}
.y11_c00128{bottom:423.360000pt;}
.y10_c00128{bottom:445.493333pt;}
.yf_c00128{bottom:467.360000pt;}
.ye_c00128{bottom:488.960000pt;}
.yd_c00128{bottom:510.293333pt;}
.yc_c00128{bottom:532.160000pt;}
.yb_c00128{bottom:553.226667pt;}
.ya_c00128{bottom:574.293333pt;}
.y9_c00128{bottom:596.160000pt;}
.y8_c00128{bottom:618.026667pt;}
.y7_c00128{bottom:641.093333pt;}
.y6_c00128{bottom:661.493333pt;}
.y5_c00128{bottom:683.493333pt;}
.y4_c00128{bottom:705.093333pt;}
.y3_c00128{bottom:726.960000pt;}
.y2_c00128{bottom:749.493333pt;}
.y1_c00128{bottom:771.360000pt;}
.h6_c00128{height:11.733399pt;}
.h7_c00128{height:38.937500pt;}
.h5_c00128{height:59.300781pt;}
.h2_c00128{height:70.664062pt;}
.h4_c00128{height:74.906250pt;}
.h3_c00128{height:81.045333pt;}
.h0_c00128{height:855.866667pt;}
.h1_c00128{height:856.000000pt;}
.w2_c00128{width:93.222667pt;}
.w0_c00128{width:581.266667pt;}
.w1_c00128{width:581.333333pt;}
.x0_c00128{left:0.000000pt;}
.x3_c00128{left:48.800000pt;}
.x2_c00128{left:49.733333pt;}
.x4_c00128{left:50.666667pt;}
.x6_c00128{left:51.600000pt;}
.x1_c00128{left:58.800000pt;}
.x5_c00128{left:73.200000pt;}
.x8_c00128{left:247.801554pt;}
.x7_c00128{left:337.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_397a50753015b01db5d703d8.woff2')format("woff");}.ff1_c00129{font-family:ff1_c00129;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00129;src:url('chunks/assets/font_2603991d84f7629d14802bb9.woff2')format("woff");}.ff2_c00129{font-family:ff2_c00129;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00129;src:url('chunks/assets/font_58b8f0d92828ce511ad453bb.woff2')format("woff");}.ff3_c00129{font-family:ff3_c00129;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00129;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff4_c00129{font-family:ff4_c00129;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00129;src:url('chunks/assets/font_67cc6a30c67151d0e48875cd.woff2')format("woff");}.ff5_c00129{font-family:ff5_c00129;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00129;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c00129{font-family:ff6_c00129;line-height:1.219238;font-style: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;}
.ls2_c00129{letter-spacing:0.000000px;}
.ls1_c00129{letter-spacing:7.200000px;}
.ls0_c00129{letter-spacing:8.016000px;}
.sc__c00129{text-shadow:none;}
.sc0_c00129{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00129{-webkit-text-stroke:0px transparent;}
.sc0_c00129{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00129{word-spacing:-17.352000px;}
.ws1_c00129{word-spacing:0.000000px;}
._18_c00129{margin-left:-18.063000px;}
._15_c00129{margin-left:-14.910000px;}
._11_c00129{margin-left:-13.491000px;}
._b_c00129{margin-left:-11.832000px;}
._8_c00129{margin-left:-9.972000px;}
._17_c00129{margin-left:-8.805000px;}
._c_c00129{margin-left:-7.761000px;}
._a_c00129{margin-left:-6.264000px;}
._e_c00129{margin-left:-4.800000px;}
._5_c00129{margin-left:-3.321000px;}
._3_c00129{margin-left:-1.863000px;}
._d_c00129{width:1.065000px;}
._0_c00129{width:2.106000px;}
._1_c00129{width:3.888000px;}
._7_c00129{width:5.103000px;}
._2_c00129{width:6.237000px;}
._9_c00129{width:7.617000px;}
._13_c00129{width:8.655000px;}
._4_c00129{width:10.125000px;}
._10_c00129{width:11.652000px;}
._19_c00129{width:12.687000px;}
._6_c00129{width:13.689000px;}
._14_c00129{width:15.777000px;}
._1c_c00129{width:17.109000px;}
._f_c00129{width:18.225000px;}
._12_c00129{width:23.340000px;}
._16_c00129{width:57.537000px;}
._1b_c00129{width:158.274000px;}
._1d_c00129{width:176.751000px;}
._1a_c00129{width:244.461000px;}
.fc2_c00129{color:transparent;}
.fc1_c00129{color:rgb(128,128,128);}
.fc0_c00129{color:rgb(0,0,0);}
.fs4_c00129{font-size:48.000000px;}
.fs3_c00129{font-size:66.000000px;}
.fs2_c00129{font-size:72.000000px;}
.fs0_c00129{font-size:81.000000px;}
.fs1_c00129{font-size:87.000000px;}
.y0_c00129{bottom:0.000000px;}
.y24_c00129{bottom:3.105000px;}
.y23_c00129{bottom:7.228369px;}
.y22_c00129{bottom:87.720000px;}
.y21_c00129{bottom:113.070000px;}
.y20_c00129{bottom:139.020000px;}
.y1f_c00129{bottom:162.720000px;}
.y1e_c00129{bottom:187.320000px;}
.y1d_c00129{bottom:213.570000px;}
.y1c_c00129{bottom:236.670000px;}
.y1b_c00129{bottom:261.270000px;}
.y1a_c00129{bottom:285.870000px;}
.y19_c00129{bottom:309.870000px;}
.y18_c00129{bottom:334.770000px;}
.y17_c00129{bottom:359.370000px;}
.y16_c00129{bottom:384.120000px;}
.y15_c00129{bottom:408.420000px;}
.y14_c00129{bottom:433.020000px;}
.y13_c00129{bottom:457.020000px;}
.y12_c00129{bottom:481.620000px;}
.y11_c00129{bottom:506.820000px;}
.y10_c00129{bottom:530.220000px;}
.yf_c00129{bottom:555.120000px;}
.ye_c00129{bottom:579.420000px;}
.yd_c00129{bottom:604.170000px;}
.yc_c00129{bottom:628.470000px;}
.yb_c00129{bottom:652.770000px;}
.ya_c00129{bottom:677.070000px;}
.y9_c00129{bottom:701.670000px;}
.y8_c00129{bottom:725.970000px;}
.y7_c00129{bottom:750.270000px;}
.y6_c00129{bottom:774.570000px;}
.y5_c00129{bottom:798.870000px;}
.y4_c00129{bottom:822.870000px;}
.y3_c00129{bottom:848.070000px;}
.y2_c00129{bottom:871.770000px;}
.y1_c00129{bottom:895.770000px;}
.h6_c00129{height:13.200073px;}
.h7_c00129{height:43.804688px;}
.h2_c00129{height:79.497070px;}
.h4_c00129{height:84.269531px;}
.h5_c00129{height:91.160156px;}
.h3_c00129{height:110.151855px;}
.h1_c00129{height:986.250000px;}
.h0_c00129{height:986.550000px;}
.w1_c00129{width:104.875500px;}
.w0_c00129{width:661.500000px;}
.x0_c00129{left:0.000000px;}
.x6_c00129{left:24.300000px;}
.x8_c00129{left:70.500000px;}
.x7_c00129{left:84.000000px;}
.x9_c00129{left:119.700000px;}
.x4_c00129{left:122.100000px;}
.x5_c00129{left:123.450000px;}
.x3_c00129{left:124.500000px;}
.x1_c00129{left:125.850000px;}
.x2_c00129{left:126.900000px;}
.xa_c00129{left:282.564240px;}
@media print{
.v0_c00129{vertical-align:0.000000pt;}
.ls2_c00129{letter-spacing:0.000000pt;}
.ls1_c00129{letter-spacing:6.400000pt;}
.ls0_c00129{letter-spacing:7.125333pt;}
.ws0_c00129{word-spacing:-15.424000pt;}
.ws1_c00129{word-spacing:0.000000pt;}
._18_c00129{margin-left:-16.056000pt;}
._15_c00129{margin-left:-13.253333pt;}
._11_c00129{margin-left:-11.992000pt;}
._b_c00129{margin-left:-10.517333pt;}
._8_c00129{margin-left:-8.864000pt;}
._17_c00129{margin-left:-7.826667pt;}
._c_c00129{margin-left:-6.898667pt;}
._a_c00129{margin-left:-5.568000pt;}
._e_c00129{margin-left:-4.266667pt;}
._5_c00129{margin-left:-2.952000pt;}
._3_c00129{margin-left:-1.656000pt;}
._d_c00129{width:0.946667pt;}
._0_c00129{width:1.872000pt;}
._1_c00129{width:3.456000pt;}
._7_c00129{width:4.536000pt;}
._2_c00129{width:5.544000pt;}
._9_c00129{width:6.770667pt;}
._13_c00129{width:7.693333pt;}
._4_c00129{width:9.000000pt;}
._10_c00129{width:10.357333pt;}
._19_c00129{width:11.277333pt;}
._6_c00129{width:12.168000pt;}
._14_c00129{width:14.024000pt;}
._1c_c00129{width:15.208000pt;}
._f_c00129{width:16.200000pt;}
._12_c00129{width:20.746667pt;}
._16_c00129{width:51.144000pt;}
._1b_c00129{width:140.688000pt;}
._1d_c00129{width:157.112000pt;}
._1a_c00129{width:217.298667pt;}
.fs4_c00129{font-size:42.666667pt;}
.fs3_c00129{font-size:58.666667pt;}
.fs2_c00129{font-size:64.000000pt;}
.fs0_c00129{font-size:72.000000pt;}
.fs1_c00129{font-size:77.333333pt;}
.y0_c00129{bottom:0.000000pt;}
.y24_c00129{bottom:2.760000pt;}
.y23_c00129{bottom:6.425217pt;}
.y22_c00129{bottom:77.973333pt;}
.y21_c00129{bottom:100.506667pt;}
.y20_c00129{bottom:123.573333pt;}
.y1f_c00129{bottom:144.640000pt;}
.y1e_c00129{bottom:166.506667pt;}
.y1d_c00129{bottom:189.840000pt;}
.y1c_c00129{bottom:210.373333pt;}
.y1b_c00129{bottom:232.240000pt;}
.y1a_c00129{bottom:254.106667pt;}
.y19_c00129{bottom:275.440000pt;}
.y18_c00129{bottom:297.573333pt;}
.y17_c00129{bottom:319.440000pt;}
.y16_c00129{bottom:341.440000pt;}
.y15_c00129{bottom:363.040000pt;}
.y14_c00129{bottom:384.906667pt;}
.y13_c00129{bottom:406.240000pt;}
.y12_c00129{bottom:428.106667pt;}
.y11_c00129{bottom:450.506667pt;}
.y10_c00129{bottom:471.306667pt;}
.yf_c00129{bottom:493.440000pt;}
.ye_c00129{bottom:515.040000pt;}
.yd_c00129{bottom:537.040000pt;}
.yc_c00129{bottom:558.640000pt;}
.yb_c00129{bottom:580.240000pt;}
.ya_c00129{bottom:601.840000pt;}
.y9_c00129{bottom:623.706667pt;}
.y8_c00129{bottom:645.306667pt;}
.y7_c00129{bottom:666.906667pt;}
.y6_c00129{bottom:688.506667pt;}
.y5_c00129{bottom:710.106667pt;}
.y4_c00129{bottom:731.440000pt;}
.y3_c00129{bottom:753.840000pt;}
.y2_c00129{bottom:774.906667pt;}
.y1_c00129{bottom:796.240000pt;}
.h6_c00129{height:11.733399pt;}
.h7_c00129{height:38.937500pt;}
.h2_c00129{height:70.664062pt;}
.h4_c00129{height:74.906250pt;}
.h5_c00129{height:81.031250pt;}
.h3_c00129{height:97.912760pt;}
.h1_c00129{height:876.666667pt;}
.h0_c00129{height:876.933333pt;}
.w1_c00129{width:93.222667pt;}
.w0_c00129{width:588.000000pt;}
.x0_c00129{left:0.000000pt;}
.x6_c00129{left:21.600000pt;}
.x8_c00129{left:62.666667pt;}
.x7_c00129{left:74.666667pt;}
.x9_c00129{left:106.400000pt;}
.x4_c00129{left:108.533333pt;}
.x5_c00129{left:109.733333pt;}
.x3_c00129{left:110.666667pt;}
.x1_c00129{left:111.866667pt;}
.x2_c00129{left:112.800000pt;}
.xa_c00129{left:251.168213pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b3b62dd4ecea0ad9aba56e99.woff2')format("woff");}.ff1_c00130{font-family:ff1_c00130;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00130;src:url('chunks/assets/font_30ea7a2d1a9f895bed6de9fa.woff2')format("woff");}.ff2_c00130{font-family:ff2_c00130;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00130;src:url('chunks/assets/font_5a0db054abee131a29a49056.woff2')format("woff");}.ff3_c00130{font-family:ff3_c00130;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00130;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff4_c00130{font-family:ff4_c00130;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00130;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c00130{font-family:ff5_c00130;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00130{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00130{vertical-align:0.000000px;}
.ls0_c00130{letter-spacing:0.000000px;}
.sc__c00130{text-shadow:none;}
.sc0_c00130{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00130{-webkit-text-stroke:0px transparent;}
.sc0_c00130{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00130{word-spacing:-20.250000px;}
.ws1_c00130{word-spacing:-1.500000px;}
.ws2_c00130{word-spacing:0.000000px;}
._17_c00130{margin-left:-19.296000px;}
._7_c00130{margin-left:-15.300000px;}
._1b_c00130{margin-left:-13.020000px;}
._4_c00130{margin-left:-11.016000px;}
._18_c00130{margin-left:-8.568000px;}
._e_c00130{margin-left:-7.224000px;}
._13_c00130{margin-left:-6.168000px;}
._14_c00130{margin-left:-5.085000px;}
._f_c00130{margin-left:-3.960000px;}
._6_c00130{margin-left:-2.448000px;}
._5_c00130{margin-left:-1.326000px;}
._9_c00130{width:1.020000px;}
._8_c00130{width:2.040000px;}
._3_c00130{width:3.366000px;}
._2_c00130{width:5.202000px;}
._1_c00130{width:6.324000px;}
._0_c00130{width:8.160000px;}
._d_c00130{width:9.651000px;}
._11_c00130{width:11.652000px;}
._12_c00130{width:12.735000px;}
._19_c00130{width:14.178000px;}
._10_c00130{width:15.522000px;}
._22_c00130{width:16.524000px;}
._b_c00130{width:18.156000px;}
._1f_c00130{width:19.599000px;}
._1e_c00130{width:20.874000px;}
._20_c00130{width:21.942000px;}
._1a_c00130{width:25.377000px;}
._1c_c00130{width:26.790000px;}
._16_c00130{width:28.875000px;}
._c_c00130{width:33.660000px;}
._15_c00130{width:36.714000px;}
._25_c00130{width:38.880000px;}
._a_c00130{width:47.022000px;}
._23_c00130{width:69.093000px;}
._24_c00130{width:120.399000px;}
._21_c00130{width:129.852000px;}
._1d_c00130{width:160.926000px;}
._26_c00130{width:406.761000px;}
.fc2_c00130{color:transparent;}
.fc1_c00130{color:rgb(128,128,128);}
.fc0_c00130{color:rgb(0,0,0);}
.fs4_c00130{font-size:48.000000px;}
.fs3_c00130{font-size:60.000000px;}
.fs2_c00130{font-size:72.000000px;}
.fs1_c00130{font-size:81.000000px;}
.fs0_c00130{font-size:102.000000px;}
.y0_c00130{bottom:0.000000px;}
.y25_c00130{bottom:3.105000px;}
.y24_c00130{bottom:7.228355px;}
.y23_c00130{bottom:71.535000px;}
.y22_c00130{bottom:95.385000px;}
.y21_c00130{bottom:119.835000px;}
.y20_c00130{bottom:145.485000px;}
.y1f_c00130{bottom:169.335000px;}
.y1e_c00130{bottom:193.935000px;}
.y1d_c00130{bottom:218.385000px;}
.y1c_c00130{bottom:245.385000px;}
.y1b_c00130{bottom:274.335000px;}
.y1a_c00130{bottom:314.085000px;}
.y19_c00130{bottom:337.485000px;}
.y18_c00130{bottom:361.785000px;}
.y17_c00130{bottom:385.785000px;}
.y16_c00130{bottom:410.085000px;}
.y15_c00130{bottom:434.385000px;}
.y14_c00130{bottom:458.685000px;}
.y13_c00130{bottom:482.985000px;}
.y12_c00130{bottom:507.135000px;}
.y11_c00130{bottom:531.135000px;}
.y10_c00130{bottom:555.735000px;}
.yf_c00130{bottom:579.735000px;}
.ye_c00130{bottom:603.435000px;}
.yd_c00130{bottom:627.285000px;}
.yc_c00130{bottom:651.585000px;}
.yb_c00130{bottom:675.885000px;}
.ya_c00130{bottom:700.635000px;}
.y9_c00130{bottom:724.635000px;}
.y8_c00130{bottom:749.835000px;}
.y7_c00130{bottom:772.785000px;}
.y6_c00130{bottom:797.835000px;}
.y5_c00130{bottom:823.035000px;}
.y4_c00130{bottom:847.335000px;}
.y3_c00130{bottom:871.635000px;}
.y2_c00130{bottom:896.085000px;}
.y1_c00130{bottom:930.435000px;}
.h6_c00130{height:13.200074px;}
.h7_c00130{height:43.804688px;}
.h5_c00130{height:58.857422px;}
.h4_c00130{height:79.497070px;}
.h3_c00130{height:91.160156px;}
.h2_c00130{height:100.057617px;}
.h0_c00130{height:977.925000px;}
.h1_c00130{height:978.000000px;}
.w2_c00130{width:104.875500px;}
.w0_c00130{width:664.200000px;}
.w1_c00130{width:664.500000px;}
.x0_c00130{left:0.000000px;}
.x6_c00130{left:45.300000px;}
.x5_c00130{left:46.350000px;}
.x2_c00130{left:48.000000px;}
.x3_c00130{left:49.500000px;}
.x4_c00130{left:73.800000px;}
.x1_c00130{left:87.750000px;}
.x7_c00130{left:136.350000px;}
.xa_c00130{left:141.450000px;}
.xb_c00130{left:172.350000px;}
.x8_c00130{left:174.750000px;}
.x9_c00130{left:175.800000px;}
.xd_c00130{left:283.914230px;}
.xc_c00130{left:339.900000px;}
@media print{
.v0_c00130{vertical-align:0.000000pt;}
.ls0_c00130{letter-spacing:0.000000pt;}
.ws0_c00130{word-spacing:-18.000000pt;}
.ws1_c00130{word-spacing:-1.333333pt;}
.ws2_c00130{word-spacing:0.000000pt;}
._17_c00130{margin-left:-17.152000pt;}
._7_c00130{margin-left:-13.600000pt;}
._1b_c00130{margin-left:-11.573333pt;}
._4_c00130{margin-left:-9.792000pt;}
._18_c00130{margin-left:-7.616000pt;}
._e_c00130{margin-left:-6.421333pt;}
._13_c00130{margin-left:-5.482667pt;}
._14_c00130{margin-left:-4.520000pt;}
._f_c00130{margin-left:-3.520000pt;}
._6_c00130{margin-left:-2.176000pt;}
._5_c00130{margin-left:-1.178667pt;}
._9_c00130{width:0.906667pt;}
._8_c00130{width:1.813333pt;}
._3_c00130{width:2.992000pt;}
._2_c00130{width:4.624000pt;}
._1_c00130{width:5.621333pt;}
._0_c00130{width:7.253333pt;}
._d_c00130{width:8.578667pt;}
._11_c00130{width:10.357333pt;}
._12_c00130{width:11.320000pt;}
._19_c00130{width:12.602667pt;}
._10_c00130{width:13.797333pt;}
._22_c00130{width:14.688000pt;}
._b_c00130{width:16.138667pt;}
._1f_c00130{width:17.421333pt;}
._1e_c00130{width:18.554667pt;}
._20_c00130{width:19.504000pt;}
._1a_c00130{width:22.557333pt;}
._1c_c00130{width:23.813333pt;}
._16_c00130{width:25.666667pt;}
._c_c00130{width:29.920000pt;}
._15_c00130{width:32.634667pt;}
._25_c00130{width:34.560000pt;}
._a_c00130{width:41.797333pt;}
._23_c00130{width:61.416000pt;}
._24_c00130{width:107.021333pt;}
._21_c00130{width:115.424000pt;}
._1d_c00130{width:143.045333pt;}
._26_c00130{width:361.565333pt;}
.fs4_c00130{font-size:42.666667pt;}
.fs3_c00130{font-size:53.333333pt;}
.fs2_c00130{font-size:64.000000pt;}
.fs1_c00130{font-size:72.000000pt;}
.fs0_c00130{font-size:90.666667pt;}
.y0_c00130{bottom:0.000000pt;}
.y25_c00130{bottom:2.760000pt;}
.y24_c00130{bottom:6.425204pt;}
.y23_c00130{bottom:63.586667pt;}
.y22_c00130{bottom:84.786667pt;}
.y21_c00130{bottom:106.520000pt;}
.y20_c00130{bottom:129.320000pt;}
.y1f_c00130{bottom:150.520000pt;}
.y1e_c00130{bottom:172.386667pt;}
.y1d_c00130{bottom:194.120000pt;}
.y1c_c00130{bottom:218.120000pt;}
.y1b_c00130{bottom:243.853333pt;}
.y1a_c00130{bottom:279.186667pt;}
.y19_c00130{bottom:299.986667pt;}
.y18_c00130{bottom:321.586667pt;}
.y17_c00130{bottom:342.920000pt;}
.y16_c00130{bottom:364.520000pt;}
.y15_c00130{bottom:386.120000pt;}
.y14_c00130{bottom:407.720000pt;}
.y13_c00130{bottom:429.320000pt;}
.y12_c00130{bottom:450.786667pt;}
.y11_c00130{bottom:472.120000pt;}
.y10_c00130{bottom:493.986667pt;}
.yf_c00130{bottom:515.320000pt;}
.ye_c00130{bottom:536.386667pt;}
.yd_c00130{bottom:557.586667pt;}
.yc_c00130{bottom:579.186667pt;}
.yb_c00130{bottom:600.786667pt;}
.ya_c00130{bottom:622.786667pt;}
.y9_c00130{bottom:644.120000pt;}
.y8_c00130{bottom:666.520000pt;}
.y7_c00130{bottom:686.920000pt;}
.y6_c00130{bottom:709.186667pt;}
.y5_c00130{bottom:731.586667pt;}
.y4_c00130{bottom:753.186667pt;}
.y3_c00130{bottom:774.786667pt;}
.y2_c00130{bottom:796.520000pt;}
.y1_c00130{bottom:827.053333pt;}
.h6_c00130{height:11.733399pt;}
.h7_c00130{height:38.937500pt;}
.h5_c00130{height:52.317708pt;}
.h4_c00130{height:70.664062pt;}
.h3_c00130{height:81.031250pt;}
.h2_c00130{height:88.940104pt;}
.h0_c00130{height:869.266667pt;}
.h1_c00130{height:869.333333pt;}
.w2_c00130{width:93.222667pt;}
.w0_c00130{width:590.400000pt;}
.w1_c00130{width:590.666667pt;}
.x0_c00130{left:0.000000pt;}
.x6_c00130{left:40.266667pt;}
.x5_c00130{left:41.200000pt;}
.x2_c00130{left:42.666667pt;}
.x3_c00130{left:44.000000pt;}
.x4_c00130{left:65.600000pt;}
.x1_c00130{left:78.000000pt;}
.x7_c00130{left:121.200000pt;}
.xa_c00130{left:125.733333pt;}
.xb_c00130{left:153.200000pt;}
.x8_c00130{left:155.333333pt;}
.x9_c00130{left:156.266667pt;}
.xd_c00130{left:252.368205pt;}
.xc_c00130{left:302.133333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_689e0360b67406c0fb990f6c.woff2')format("woff");}.ff1_c00131{font-family:ff1_c00131;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00131;src:url('chunks/assets/font_b74175d196331384ae87c48c.woff2')format("woff");}.ff2_c00131{font-family:ff2_c00131;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00131;src:url('chunks/assets/font_72943349acdaea8ff3f95088.woff2')format("woff");}.ff3_c00131{font-family:ff3_c00131;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00131;src:url('chunks/assets/font_5baf982301d36d44cddc712e.woff2')format("woff");}.ff4_c00131{font-family:ff4_c00131;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00131;src:url('chunks/assets/font_869aeb398ca653d3b72f9bcd.woff2')format("woff");}.ff5_c00131{font-family:ff5_c00131;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00131;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c00131{font-family:ff6_c00131;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00131{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00131{vertical-align:0.000000px;}
.ls3_c00131{letter-spacing:0.000000px;}
.ls2_c00131{letter-spacing:1.080000px;}
.ls1_c00131{letter-spacing:4.792800px;}
.ls0_c00131{letter-spacing:14.427000px;}
.sc__c00131{text-shadow:none;}
.sc0_c00131{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00131{-webkit-text-stroke:0px transparent;}
.sc0_c00131{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00131{word-spacing:-20.250000px;}
.ws0_c00131{word-spacing:-17.352000px;}
.ws2_c00131{word-spacing:0.000000px;}
._15_c00131{margin-left:-23.850000px;}
._4_c00131{margin-left:-17.052000px;}
._23_c00131{margin-left:-15.471000px;}
._0_c00131{margin-left:-14.355000px;}
._2_c00131{margin-left:-13.224000px;}
._1_c00131{margin-left:-9.918000px;}
._3_c00131{margin-left:-8.613000px;}
._19_c00131{margin-left:-6.711000px;}
._f_c00131{margin-left:-5.436000px;}
._e_c00131{margin-left:-3.699000px;}
._5_c00131{margin-left:-2.337000px;}
._10_c00131{margin-left:-1.068000px;}
._11_c00131{width:1.032000px;}
._9_c00131{width:2.106000px;}
._a_c00131{width:3.366000px;}
._8_c00131{width:4.374000px;}
._7_c00131{width:5.751000px;}
._29_c00131{width:6.774000px;}
._6_c00131{width:7.776000px;}
._b_c00131{width:8.856000px;}
._c_c00131{width:9.945000px;}
._d_c00131{width:11.514000px;}
._13_c00131{width:12.729000px;}
._16_c00131{width:14.256000px;}
._1c_c00131{width:15.309000px;}
._1a_c00131{width:17.367000px;}
._12_c00131{width:18.891000px;}
._14_c00131{width:22.899000px;}
._18_c00131{width:26.511000px;}
._28_c00131{width:34.122000px;}
._1b_c00131{width:36.165000px;}
._24_c00131{width:37.989000px;}
._27_c00131{width:42.972000px;}
._21_c00131{width:59.334000px;}
._22_c00131{width:71.784000px;}
._17_c00131{width:79.884000px;}
._1f_c00131{width:157.005000px;}
._25_c00131{width:170.217000px;}
._26_c00131{width:177.471000px;}
._1d_c00131{width:224.115000px;}
._20_c00131{width:275.643000px;}
._1e_c00131{width:868.872000px;}
.fc2_c00131{color:transparent;}
.fc1_c00131{color:rgb(128,128,128);}
.fc0_c00131{color:rgb(0,0,0);}
.fs6_c00131{font-size:48.000000px;}
.fs4_c00131{font-size:57.000000px;}
.fs5_c00131{font-size:64.800000px;}
.fs2_c00131{font-size:72.000000px;}
.fs3_c00131{font-size:78.000000px;}
.fs1_c00131{font-size:81.000000px;}
.fs0_c00131{font-size:87.000000px;}
.y0_c00131{bottom:0.000000px;}
.y26_c00131{bottom:3.105000px;}
.y25_c00131{bottom:7.228357px;}
.y24_c00131{bottom:78.630000px;}
.y23_c00131{bottom:103.680000px;}
.y22_c00131{bottom:129.480000px;}
.y21_c00131{bottom:154.230000px;}
.y20_c00131{bottom:178.980000px;}
.y1f_c00131{bottom:204.180000px;}
.y1e_c00131{bottom:228.180000px;}
.y1d_c00131{bottom:253.080000px;}
.y1c_c00131{bottom:277.830000px;}
.y1b_c00131{bottom:302.130000px;}
.y1a_c00131{bottom:326.430000px;}
.y19_c00131{bottom:351.030000px;}
.y18_c00131{bottom:362.430000px;}
.y17_c00131{bottom:378.030000px;}
.y16_c00131{bottom:399.630000px;}
.y15_c00131{bottom:424.530000px;}
.y14_c00131{bottom:448.230000px;}
.y13_c00131{bottom:472.530000px;}
.y12_c00131{bottom:496.530000px;}
.y11_c00131{bottom:520.080000px;}
.y10_c00131{bottom:544.080000px;}
.yf_c00131{bottom:568.680000px;}
.ye_c00131{bottom:593.430000px;}
.yd_c00131{bottom:616.980000px;}
.yc_c00131{bottom:641.580000px;}
.yb_c00131{bottom:665.580000px;}
.ya_c00131{bottom:689.880000px;}
.y9_c00131{bottom:713.580000px;}
.y8_c00131{bottom:738.180000px;}
.y7_c00131{bottom:762.180000px;}
.y6_c00131{bottom:786.480000px;}
.y5_c00131{bottom:811.080000px;}
.y4_c00131{bottom:835.080000px;}
.y3_c00131{bottom:859.230000px;}
.y2_c00131{bottom:882.930000px;}
.y1_c00131{bottom:907.230000px;}
.h5_c00131{height:13.200074px;}
.h6_c00131{height:43.804688px;}
.h2_c00131{height:79.497070px;}
.h3_c00131{height:84.269531px;}
.h4_c00131{height:98.756836px;}
.h1_c00131{height:110.151855px;}
.h0_c00131{height:995.250000px;}
.w2_c00131{width:104.875500px;}
.w0_c00131{width:667.425000px;}
.w1_c00131{width:667.500000px;}
.x0_c00131{left:0.000000px;}
.xd_c00131{left:57.150000px;}
.xe_c00131{left:81.300000px;}
.x7_c00131{left:113.100000px;}
.x1_c00131{left:136.650000px;}
.x2_c00131{left:137.700000px;}
.x3_c00131{left:139.050000px;}
.x4_c00131{left:140.400000px;}
.x5_c00131{left:141.450000px;}
.x6_c00131{left:142.800000px;}
.x8_c00131{left:144.450000px;}
.x9_c00131{left:145.800000px;}
.xf_c00131{left:149.100000px;}
.x10_c00131{left:150.150000px;}
.xc_c00131{left:176.400000px;}
.xb_c00131{left:192.750000px;}
.x13_c00131{left:285.526749px;}
.x11_c00131{left:302.100000px;}
.xa_c00131{left:307.500000px;}
.x12_c00131{left:567.300000px;}
@media print{
.v0_c00131{vertical-align:0.000000pt;}
.ls3_c00131{letter-spacing:0.000000pt;}
.ls2_c00131{letter-spacing:0.960000pt;}
.ls1_c00131{letter-spacing:4.260267pt;}
.ls0_c00131{letter-spacing:12.824000pt;}
.ws1_c00131{word-spacing:-18.000000pt;}
.ws0_c00131{word-spacing:-15.424000pt;}
.ws2_c00131{word-spacing:0.000000pt;}
._15_c00131{margin-left:-21.200000pt;}
._4_c00131{margin-left:-15.157333pt;}
._23_c00131{margin-left:-13.752000pt;}
._0_c00131{margin-left:-12.760000pt;}
._2_c00131{margin-left:-11.754667pt;}
._1_c00131{margin-left:-8.816000pt;}
._3_c00131{margin-left:-7.656000pt;}
._19_c00131{margin-left:-5.965333pt;}
._f_c00131{margin-left:-4.832000pt;}
._e_c00131{margin-left:-3.288000pt;}
._5_c00131{margin-left:-2.077333pt;}
._10_c00131{margin-left:-0.949333pt;}
._11_c00131{width:0.917333pt;}
._9_c00131{width:1.872000pt;}
._a_c00131{width:2.992000pt;}
._8_c00131{width:3.888000pt;}
._7_c00131{width:5.112000pt;}
._29_c00131{width:6.021333pt;}
._6_c00131{width:6.912000pt;}
._b_c00131{width:7.872000pt;}
._c_c00131{width:8.840000pt;}
._d_c00131{width:10.234667pt;}
._13_c00131{width:11.314667pt;}
._16_c00131{width:12.672000pt;}
._1c_c00131{width:13.608000pt;}
._1a_c00131{width:15.437333pt;}
._12_c00131{width:16.792000pt;}
._14_c00131{width:20.354667pt;}
._18_c00131{width:23.565333pt;}
._28_c00131{width:30.330667pt;}
._1b_c00131{width:32.146667pt;}
._24_c00131{width:33.768000pt;}
._27_c00131{width:38.197333pt;}
._21_c00131{width:52.741333pt;}
._22_c00131{width:63.808000pt;}
._17_c00131{width:71.008000pt;}
._1f_c00131{width:139.560000pt;}
._25_c00131{width:151.304000pt;}
._26_c00131{width:157.752000pt;}
._1d_c00131{width:199.213333pt;}
._20_c00131{width:245.016000pt;}
._1e_c00131{width:772.330667pt;}
.fs6_c00131{font-size:42.666667pt;}
.fs4_c00131{font-size:50.666667pt;}
.fs5_c00131{font-size:57.600000pt;}
.fs2_c00131{font-size:64.000000pt;}
.fs3_c00131{font-size:69.333333pt;}
.fs1_c00131{font-size:72.000000pt;}
.fs0_c00131{font-size:77.333333pt;}
.y0_c00131{bottom:0.000000pt;}
.y26_c00131{bottom:2.760000pt;}
.y25_c00131{bottom:6.425206pt;}
.y24_c00131{bottom:69.893333pt;}
.y23_c00131{bottom:92.160000pt;}
.y22_c00131{bottom:115.093333pt;}
.y21_c00131{bottom:137.093333pt;}
.y20_c00131{bottom:159.093333pt;}
.y1f_c00131{bottom:181.493333pt;}
.y1e_c00131{bottom:202.826667pt;}
.y1d_c00131{bottom:224.960000pt;}
.y1c_c00131{bottom:246.960000pt;}
.y1b_c00131{bottom:268.560000pt;}
.y1a_c00131{bottom:290.160000pt;}
.y19_c00131{bottom:312.026667pt;}
.y18_c00131{bottom:322.160000pt;}
.y17_c00131{bottom:336.026667pt;}
.y16_c00131{bottom:355.226667pt;}
.y15_c00131{bottom:377.360000pt;}
.y14_c00131{bottom:398.426667pt;}
.y13_c00131{bottom:420.026667pt;}
.y12_c00131{bottom:441.360000pt;}
.y11_c00131{bottom:462.293333pt;}
.y10_c00131{bottom:483.626667pt;}
.yf_c00131{bottom:505.493333pt;}
.ye_c00131{bottom:527.493333pt;}
.yd_c00131{bottom:548.426667pt;}
.yc_c00131{bottom:570.293333pt;}
.yb_c00131{bottom:591.626667pt;}
.ya_c00131{bottom:613.226667pt;}
.y9_c00131{bottom:634.293333pt;}
.y8_c00131{bottom:656.160000pt;}
.y7_c00131{bottom:677.493333pt;}
.y6_c00131{bottom:699.093333pt;}
.y5_c00131{bottom:720.960000pt;}
.y4_c00131{bottom:742.293333pt;}
.y3_c00131{bottom:763.760000pt;}
.y2_c00131{bottom:784.826667pt;}
.y1_c00131{bottom:806.426667pt;}
.h5_c00131{height:11.733399pt;}
.h6_c00131{height:38.937500pt;}
.h2_c00131{height:70.664062pt;}
.h3_c00131{height:74.906250pt;}
.h4_c00131{height:87.783854pt;}
.h1_c00131{height:97.912760pt;}
.h0_c00131{height:884.666667pt;}
.w2_c00131{width:93.222667pt;}
.w0_c00131{width:593.266667pt;}
.w1_c00131{width:593.333333pt;}
.x0_c00131{left:0.000000pt;}
.xd_c00131{left:50.800000pt;}
.xe_c00131{left:72.266667pt;}
.x7_c00131{left:100.533333pt;}
.x1_c00131{left:121.466667pt;}
.x2_c00131{left:122.400000pt;}
.x3_c00131{left:123.600000pt;}
.x4_c00131{left:124.800000pt;}
.x5_c00131{left:125.733333pt;}
.x6_c00131{left:126.933333pt;}
.x8_c00131{left:128.400000pt;}
.x9_c00131{left:129.600000pt;}
.xf_c00131{left:132.533333pt;}
.x10_c00131{left:133.466667pt;}
.xc_c00131{left:156.800000pt;}
.xb_c00131{left:171.333333pt;}
.x13_c00131{left:253.801554pt;}
.x11_c00131{left:268.533333pt;}
.xa_c00131{left:273.333333pt;}
.x12_c00131{left:504.266667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_56459568821f82240a2bf057.woff2')format("woff");}.ff1_c00132{font-family:ff1_c00132;line-height:1.437000;font-style:normal;font-weight:normal;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_6961b0ae896541d0bd68a35a.woff2')format("woff");}.ff2_c00132{font-family:ff2_c00132;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00132;src:url('chunks/assets/font_3179e193868afada3819a9f3.woff2')format("woff");}.ff3_c00132{font-family:ff3_c00132;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00132;src:url('chunks/assets/font_729833baedb48372bd1bb605.woff2')format("woff");}.ff4_c00132{font-family:ff4_c00132;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00132;src:url('chunks/assets/font_d0033153c463f8ee65fc14fa.woff2')format("woff");}.ff5_c00132{font-family:ff5_c00132;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00132;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff6_c00132{font-family:ff6_c00132;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00132;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c00132{font-family:ff7_c00132;line-height:1.219238;font-style: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;}
.ls1_c00132{letter-spacing:0.000000px;}
.ls2_c00132{letter-spacing:3.000000px;}
.ls3_c00132{letter-spacing:9.000000px;}
.ls4_c00132{letter-spacing:18.000000px;}
.ls0_c00132{letter-spacing:63.450000px;}
.sc__c00132{text-shadow:none;}
.sc0_c00132{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00132{-webkit-text-stroke:0px transparent;}
.sc0_c00132{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00132{word-spacing:-44.346000px;}
.ws1_c00132{word-spacing:-37.500000px;}
.ws2_c00132{word-spacing:-17.352000px;}
.ws3_c00132{word-spacing:0.000000px;}
._8_c00132{margin-left:-24.582000px;}
._16_c00132{margin-left:-17.334000px;}
._6_c00132{margin-left:-15.984000px;}
._1c_c00132{margin-left:-13.578000px;}
._3_c00132{margin-left:-12.558000px;}
._c_c00132{margin-left:-10.914000px;}
._a_c00132{margin-left:-9.180000px;}
._1b_c00132{margin-left:-7.899000px;}
._b_c00132{margin-left:-6.816000px;}
._18_c00132{margin-left:-5.742000px;}
._12_c00132{margin-left:-4.728000px;}
._d_c00132{margin-left:-3.672000px;}
._11_c00132{margin-left:-1.944000px;}
._5_c00132{width:1.260000px;}
._4_c00132{width:2.412000px;}
._2_c00132{width:3.534000px;}
._f_c00132{width:5.010000px;}
._1_c00132{width:6.099000px;}
._0_c00132{width:7.752000px;}
._14_c00132{width:9.147000px;}
._10_c00132{width:10.497000px;}
._e_c00132{width:11.826000px;}
._7_c00132{width:12.852000px;}
._13_c00132{width:13.965000px;}
._1a_c00132{width:14.982000px;}
._19_c00132{width:16.623000px;}
._9_c00132{width:17.952000px;}
._17_c00132{width:78.975000px;}
._1d_c00132{width:312.606000px;}
._15_c00132{width:317.301000px;}
._1e_c00132{width:344.586000px;}
.fc2_c00132{color:transparent;}
.fc1_c00132{color:rgb(128,128,128);}
.fc0_c00132{color:rgb(0,0,0);}
.fs2_c00132{font-size:27.000000px;}
.fs8_c00132{font-size:48.000000px;}
.fs0_c00132{font-size:57.000000px;}
.fs1_c00132{font-size:60.000000px;}
.fs7_c00132{font-size:72.000000px;}
.fs5_c00132{font-size:78.000000px;}
.fs6_c00132{font-size:81.000000px;}
.fs4_c00132{font-size:87.000000px;}
.fs3_c00132{font-size:102.000000px;}
.y0_c00132{bottom:0.000000px;}
.y28_c00132{bottom:3.105000px;}
.y27_c00132{bottom:7.228371px;}
.y26_c00132{bottom:66.915000px;}
.y25_c00132{bottom:91.515000px;}
.y24_c00132{bottom:116.415000px;}
.y23_c00132{bottom:139.365000px;}
.y22_c00132{bottom:165.015000px;}
.y21_c00132{bottom:189.465000px;}
.y20_c00132{bottom:213.315000px;}
.y1f_c00132{bottom:237.615000px;}
.y1e_c00132{bottom:261.315000px;}
.y1d_c00132{bottom:286.515000px;}
.y1c_c00132{bottom:310.215000px;}
.y1b_c00132{bottom:333.165000px;}
.y1a_c00132{bottom:357.765000px;}
.y19_c00132{bottom:382.065000px;}
.y18_c00132{bottom:406.065000px;}
.y17_c00132{bottom:430.365000px;}
.y16_c00132{bottom:453.615000px;}
.y15_c00132{bottom:478.365000px;}
.y14_c00132{bottom:502.515000px;}
.y13_c00132{bottom:526.515000px;}
.y12_c00132{bottom:551.265000px;}
.y11_c00132{bottom:574.515000px;}
.y2_c00132{bottom:586.665000px;}
.y10_c00132{bottom:598.065000px;}
.y1_c00132{bottom:607.515000px;}
.yf_c00132{bottom:621.465000px;}
.ye_c00132{bottom:645.765000px;}
.yd_c00132{bottom:669.315000px;}
.yc_c00132{bottom:693.315000px;}
.yb_c00132{bottom:717.615000px;}
.ya_c00132{bottom:741.615000px;}
.y9_c00132{bottom:765.915000px;}
.y8_c00132{bottom:789.465000px;}
.y7_c00132{bottom:813.765000px;}
.y6_c00132{bottom:837.765000px;}
.y5_c00132{bottom:861.765000px;}
.y4_c00132{bottom:886.065000px;}
.y3_c00132{bottom:920.415000px;}
.h8_c00132{height:13.200074px;}
.h3_c00132{height:27.210938px;}
.h9_c00132{height:43.804688px;}
.h2_c00132{height:59.736000px;}
.h5_c00132{height:79.497070px;}
.h6_c00132{height:84.269531px;}
.h7_c00132{height:91.160156px;}
.h4_c00132{height:100.057617px;}
.h0_c00132{height:989.025000px;}
.h1_c00132{height:989.250000px;}
.w1_c00132{width:104.875500px;}
.w0_c00132{width:672.000000px;}
.x0_c00132{left:0.000000px;}
.x9_c00132{left:54.000000px;}
.x7_c00132{left:55.800000px;}
.x6_c00132{left:57.150000px;}
.x5_c00132{left:58.350000px;}
.x4_c00132{left:59.700000px;}
.x8_c00132{left:61.050000px;}
.x3_c00132{left:92.700000px;}
.xb_c00132{left:287.814240px;}
.xa_c00132{left:396.000000px;}
.x2_c00132{left:557.850000px;}
.x1_c00132{left:559.200000px;}
@media print{
.v0_c00132{vertical-align:0.000000pt;}
.ls1_c00132{letter-spacing:0.000000pt;}
.ls2_c00132{letter-spacing:2.666667pt;}
.ls3_c00132{letter-spacing:8.000000pt;}
.ls4_c00132{letter-spacing:16.000000pt;}
.ls0_c00132{letter-spacing:56.400000pt;}
.ws0_c00132{word-spacing:-39.418667pt;}
.ws1_c00132{word-spacing:-33.333333pt;}
.ws2_c00132{word-spacing:-15.424000pt;}
.ws3_c00132{word-spacing:0.000000pt;}
._8_c00132{margin-left:-21.850667pt;}
._16_c00132{margin-left:-15.408000pt;}
._6_c00132{margin-left:-14.208000pt;}
._1c_c00132{margin-left:-12.069333pt;}
._3_c00132{margin-left:-11.162667pt;}
._c_c00132{margin-left:-9.701333pt;}
._a_c00132{margin-left:-8.160000pt;}
._1b_c00132{margin-left:-7.021333pt;}
._b_c00132{margin-left:-6.058667pt;}
._18_c00132{margin-left:-5.104000pt;}
._12_c00132{margin-left:-4.202667pt;}
._d_c00132{margin-left:-3.264000pt;}
._11_c00132{margin-left:-1.728000pt;}
._5_c00132{width:1.120000pt;}
._4_c00132{width:2.144000pt;}
._2_c00132{width:3.141333pt;}
._f_c00132{width:4.453333pt;}
._1_c00132{width:5.421333pt;}
._0_c00132{width:6.890667pt;}
._14_c00132{width:8.130667pt;}
._10_c00132{width:9.330667pt;}
._e_c00132{width:10.512000pt;}
._7_c00132{width:11.424000pt;}
._13_c00132{width:12.413333pt;}
._1a_c00132{width:13.317333pt;}
._19_c00132{width:14.776000pt;}
._9_c00132{width:15.957333pt;}
._17_c00132{width:70.200000pt;}
._1d_c00132{width:277.872000pt;}
._15_c00132{width:282.045333pt;}
._1e_c00132{width:306.298667pt;}
.fs2_c00132{font-size:24.000000pt;}
.fs8_c00132{font-size:42.666667pt;}
.fs0_c00132{font-size:50.666667pt;}
.fs1_c00132{font-size:53.333333pt;}
.fs7_c00132{font-size:64.000000pt;}
.fs5_c00132{font-size:69.333333pt;}
.fs6_c00132{font-size:72.000000pt;}
.fs4_c00132{font-size:77.333333pt;}
.fs3_c00132{font-size:90.666667pt;}
.y0_c00132{bottom:0.000000pt;}
.y28_c00132{bottom:2.760000pt;}
.y27_c00132{bottom:6.425219pt;}
.y26_c00132{bottom:59.480000pt;}
.y25_c00132{bottom:81.346667pt;}
.y24_c00132{bottom:103.480000pt;}
.y23_c00132{bottom:123.880000pt;}
.y22_c00132{bottom:146.680000pt;}
.y21_c00132{bottom:168.413333pt;}
.y20_c00132{bottom:189.613333pt;}
.y1f_c00132{bottom:211.213333pt;}
.y1e_c00132{bottom:232.280000pt;}
.y1d_c00132{bottom:254.680000pt;}
.y1c_c00132{bottom:275.746667pt;}
.y1b_c00132{bottom:296.146667pt;}
.y1a_c00132{bottom:318.013333pt;}
.y19_c00132{bottom:339.613333pt;}
.y18_c00132{bottom:360.946667pt;}
.y17_c00132{bottom:382.546667pt;}
.y16_c00132{bottom:403.213333pt;}
.y15_c00132{bottom:425.213333pt;}
.y14_c00132{bottom:446.680000pt;}
.y13_c00132{bottom:468.013333pt;}
.y12_c00132{bottom:490.013333pt;}
.y11_c00132{bottom:510.680000pt;}
.y2_c00132{bottom:521.480000pt;}
.y10_c00132{bottom:531.613333pt;}
.y1_c00132{bottom:540.013333pt;}
.yf_c00132{bottom:552.413333pt;}
.ye_c00132{bottom:574.013333pt;}
.yd_c00132{bottom:594.946667pt;}
.yc_c00132{bottom:616.280000pt;}
.yb_c00132{bottom:637.880000pt;}
.ya_c00132{bottom:659.213333pt;}
.y9_c00132{bottom:680.813333pt;}
.y8_c00132{bottom:701.746667pt;}
.y7_c00132{bottom:723.346667pt;}
.y6_c00132{bottom:744.680000pt;}
.y5_c00132{bottom:766.013333pt;}
.y4_c00132{bottom:787.613333pt;}
.y3_c00132{bottom:818.146667pt;}
.h8_c00132{height:11.733399pt;}
.h3_c00132{height:24.187500pt;}
.h9_c00132{height:38.937500pt;}
.h2_c00132{height:53.098667pt;}
.h5_c00132{height:70.664062pt;}
.h6_c00132{height:74.906250pt;}
.h7_c00132{height:81.031250pt;}
.h4_c00132{height:88.940104pt;}
.h0_c00132{height:879.133333pt;}
.h1_c00132{height:879.333333pt;}
.w1_c00132{width:93.222667pt;}
.w0_c00132{width:597.333333pt;}
.x0_c00132{left:0.000000pt;}
.x9_c00132{left:48.000000pt;}
.x7_c00132{left:49.600000pt;}
.x6_c00132{left:50.800000pt;}
.x5_c00132{left:51.866667pt;}
.x4_c00132{left:53.066667pt;}
.x8_c00132{left:54.266667pt;}
.x3_c00132{left:82.400000pt;}
.xb_c00132{left:255.834880pt;}
.xa_c00132{left:352.000000pt;}
.x2_c00132{left:495.866667pt;}
.x1_c00132{left:497.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e29a524a29be3fc61bb4304a.woff2')format("woff");}.ff1_c00133{font-family:ff1_c00133;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00133;src:url('chunks/assets/font_fc56b073da740d9057d286c7.woff2')format("woff");}.ff2_c00133{font-family:ff2_c00133;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00133;src:url('chunks/assets/font_a1ab13666e16bea93d9fa4fe.woff2')format("woff");}.ff3_c00133{font-family:ff3_c00133;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00133;src:url('chunks/assets/font_3fcbc99aada4ec6bf125d60c.woff2')format("woff");}.ff4_c00133{font-family:ff4_c00133;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00133;src:url('chunks/assets/font_7c72ce05b092a909d4eb03c8.woff2')format("woff");}.ff5_c00133{font-family:ff5_c00133;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00133;src:url('chunks/assets/font_46f5a62d4a9fde1fcb836718.woff2')format("woff");}.ff6_c00133{font-family:ff6_c00133;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00133;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c00133{font-family:ff7_c00133;line-height:1.219238;font-style: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;}
.ls1_c00133{letter-spacing:0.000000px;}
.ls0_c00133{letter-spacing:3.300000px;}
.ls2_c00133{letter-spacing:12.000000px;}
.sc__c00133{text-shadow:none;}
.sc0_c00133{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00133{-webkit-text-stroke:0px transparent;}
.sc0_c00133{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00133{word-spacing:-54.837000px;}
.ws0_c00133{word-spacing:-23.859000px;}
.ws1_c00133{word-spacing:-17.352000px;}
.ws3_c00133{word-spacing:0.000000px;}
._3_c00133{margin-left:-36.732000px;}
._6_c00133{margin-left:-20.328000px;}
._1f_c00133{margin-left:-18.090000px;}
._18_c00133{margin-left:-13.527000px;}
._1d_c00133{margin-left:-11.421000px;}
._20_c00133{margin-left:-9.396000px;}
._14_c00133{margin-left:-7.488000px;}
._9_c00133{margin-left:-5.643000px;}
._a_c00133{margin-left:-3.861000px;}
._4_c00133{margin-left:-2.772000px;}
._1_c00133{margin-left:-1.287000px;}
._16_c00133{width:1.416000px;}
._12_c00133{width:2.547000px;}
._b_c00133{width:3.663000px;}
._15_c00133{width:5.325000px;}
._10_c00133{width:6.417000px;}
._e_c00133{width:7.650000px;}
._13_c00133{width:8.676000px;}
._5_c00133{width:9.795000px;}
._f_c00133{width:11.466000px;}
._8_c00133{width:12.672000px;}
._7_c00133{width:13.722000px;}
._1c_c00133{width:15.135000px;}
._d_c00133{width:16.473000px;}
._11_c00133{width:18.747000px;}
._0_c00133{width:21.087000px;}
._17_c00133{width:24.198000px;}
._c_c00133{width:27.246000px;}
._19_c00133{width:35.982000px;}
._22_c00133{width:58.065000px;}
._2_c00133{width:72.060000px;}
._24_c00133{width:146.760000px;}
._1e_c00133{width:191.376000px;}
._1a_c00133{width:195.885000px;}
._25_c00133{width:211.695000px;}
._21_c00133{width:357.183000px;}
._1b_c00133{width:481.776000px;}
._23_c00133{width:495.732000px;}
.fc2_c00133{color:transparent;}
.fc1_c00133{color:rgb(128,128,128);}
.fc0_c00133{color:rgb(0,0,0);}
.fs7_c00133{font-size:48.000000px;}
.fs2_c00133{font-size:57.000000px;}
.fs4_c00133{font-size:72.000000px;}
.fs3_c00133{font-size:81.000000px;}
.fs5_c00133{font-size:87.000000px;}
.fs6_c00133{font-size:93.000000px;}
.fs0_c00133{font-size:99.000000px;}
.fs1_c00133{font-size:132.000000px;}
.y0_c00133{bottom:0.000000px;}
.y21_c00133{bottom:3.105000px;}
.y20_c00133{bottom:7.228357px;}
.y1f_c00133{bottom:69.630000px;}
.y1e_c00133{bottom:94.530000px;}
.y1d_c00133{bottom:118.230000px;}
.y1c_c00133{bottom:146.430000px;}
.y1b_c00133{bottom:169.080000px;}
.y1a_c00133{bottom:193.380000px;}
.y19_c00133{bottom:217.680000px;}
.y18_c00133{bottom:242.280000px;}
.y17_c00133{bottom:266.730000px;}
.y16_c00133{bottom:289.980000px;}
.y15_c00133{bottom:313.830000px;}
.y14_c00133{bottom:338.130000px;}
.y13_c00133{bottom:362.430000px;}
.y12_c00133{bottom:386.430000px;}
.y11_c00133{bottom:410.730000px;}
.y10_c00133{bottom:435.030000px;}
.yf_c00133{bottom:458.430000px;}
.ye_c00133{bottom:482.280000px;}
.yd_c00133{bottom:505.980000px;}
.yc_c00133{bottom:529.980000px;}
.yb_c00133{bottom:554.280000px;}
.ya_c00133{bottom:578.130000px;}
.y9_c00133{bottom:602.130000px;}
.y8_c00133{bottom:625.830000px;}
.y7_c00133{bottom:650.130000px;}
.y6_c00133{bottom:674.280000px;}
.y5_c00133{bottom:697.980000px;}
.y4_c00133{bottom:721.680000px;}
.y3_c00133{bottom:745.830000px;}
.y2_c00133{bottom:888.930000px;}
.y1_c00133{bottom:923.430000px;}
.ha_c00133{height:13.200074px;}
.hb_c00133{height:43.804688px;}
.h8_c00133{height:66.713379px;}
.h3_c00133{height:79.497070px;}
.h4_c00133{height:84.269531px;}
.h7_c00133{height:91.160156px;}
.h5_c00133{height:91.176000px;}
.h9_c00133{height:93.726562px;}
.h6_c00133{height:102.555176px;}
.h2_c00133{height:167.126953px;}
.h1_c00133{height:978.750000px;}
.h0_c00133{height:979.050000px;}
.w2_c00133{width:104.875500px;}
.w0_c00133{width:656.100000px;}
.w1_c00133{width:656.250000px;}
.x0_c00133{left:0.000000px;}
.xc_c00133{left:28.800000px;}
.x5_c00133{left:31.050000px;}
.x4_c00133{left:32.700000px;}
.x8_c00133{left:49.950000px;}
.x6_c00133{left:69.900000px;}
.xd_c00133{left:71.850000px;}
.xb_c00133{left:123.600000px;}
.x9_c00133{left:124.650000px;}
.x7_c00133{left:125.850000px;}
.x2_c00133{left:127.500000px;}
.x1_c00133{left:131.250000px;}
.xa_c00133{left:149.850000px;}
.x3_c00133{left:198.900000px;}
.xf_c00133{left:279.864258px;}
.xe_c00133{left:570.600000px;}
@media print{
.v0_c00133{vertical-align:0.000000pt;}
.ls1_c00133{letter-spacing:0.000000pt;}
.ls0_c00133{letter-spacing:2.933333pt;}
.ls2_c00133{letter-spacing:10.666667pt;}
.ws2_c00133{word-spacing:-48.744000pt;}
.ws0_c00133{word-spacing:-21.208000pt;}
.ws1_c00133{word-spacing:-15.424000pt;}
.ws3_c00133{word-spacing:0.000000pt;}
._3_c00133{margin-left:-32.650667pt;}
._6_c00133{margin-left:-18.069333pt;}
._1f_c00133{margin-left:-16.080000pt;}
._18_c00133{margin-left:-12.024000pt;}
._1d_c00133{margin-left:-10.152000pt;}
._20_c00133{margin-left:-8.352000pt;}
._14_c00133{margin-left:-6.656000pt;}
._9_c00133{margin-left:-5.016000pt;}
._a_c00133{margin-left:-3.432000pt;}
._4_c00133{margin-left:-2.464000pt;}
._1_c00133{margin-left:-1.144000pt;}
._16_c00133{width:1.258667pt;}
._12_c00133{width:2.264000pt;}
._b_c00133{width:3.256000pt;}
._15_c00133{width:4.733333pt;}
._10_c00133{width:5.704000pt;}
._e_c00133{width:6.800000pt;}
._13_c00133{width:7.712000pt;}
._5_c00133{width:8.706667pt;}
._f_c00133{width:10.192000pt;}
._8_c00133{width:11.264000pt;}
._7_c00133{width:12.197333pt;}
._1c_c00133{width:13.453333pt;}
._d_c00133{width:14.642667pt;}
._11_c00133{width:16.664000pt;}
._0_c00133{width:18.744000pt;}
._17_c00133{width:21.509333pt;}
._c_c00133{width:24.218667pt;}
._19_c00133{width:31.984000pt;}
._22_c00133{width:51.613333pt;}
._2_c00133{width:64.053333pt;}
._24_c00133{width:130.453333pt;}
._1e_c00133{width:170.112000pt;}
._1a_c00133{width:174.120000pt;}
._25_c00133{width:188.173333pt;}
._21_c00133{width:317.496000pt;}
._1b_c00133{width:428.245333pt;}
._23_c00133{width:440.650667pt;}
.fs7_c00133{font-size:42.666667pt;}
.fs2_c00133{font-size:50.666667pt;}
.fs4_c00133{font-size:64.000000pt;}
.fs3_c00133{font-size:72.000000pt;}
.fs5_c00133{font-size:77.333333pt;}
.fs6_c00133{font-size:82.666667pt;}
.fs0_c00133{font-size:88.000000pt;}
.fs1_c00133{font-size:117.333333pt;}
.y0_c00133{bottom:0.000000pt;}
.y21_c00133{bottom:2.760000pt;}
.y20_c00133{bottom:6.425206pt;}
.y1f_c00133{bottom:61.893333pt;}
.y1e_c00133{bottom:84.026667pt;}
.y1d_c00133{bottom:105.093333pt;}
.y1c_c00133{bottom:130.160000pt;}
.y1b_c00133{bottom:150.293333pt;}
.y1a_c00133{bottom:171.893333pt;}
.y19_c00133{bottom:193.493333pt;}
.y18_c00133{bottom:215.360000pt;}
.y17_c00133{bottom:237.093333pt;}
.y16_c00133{bottom:257.760000pt;}
.y15_c00133{bottom:278.960000pt;}
.y14_c00133{bottom:300.560000pt;}
.y13_c00133{bottom:322.160000pt;}
.y12_c00133{bottom:343.493333pt;}
.y11_c00133{bottom:365.093333pt;}
.y10_c00133{bottom:386.693333pt;}
.yf_c00133{bottom:407.493333pt;}
.ye_c00133{bottom:428.693333pt;}
.yd_c00133{bottom:449.760000pt;}
.yc_c00133{bottom:471.093333pt;}
.yb_c00133{bottom:492.693333pt;}
.ya_c00133{bottom:513.893333pt;}
.y9_c00133{bottom:535.226667pt;}
.y8_c00133{bottom:556.293333pt;}
.y7_c00133{bottom:577.893333pt;}
.y6_c00133{bottom:599.360000pt;}
.y5_c00133{bottom:620.426667pt;}
.y4_c00133{bottom:641.493333pt;}
.y3_c00133{bottom:662.960000pt;}
.y2_c00133{bottom:790.160000pt;}
.y1_c00133{bottom:820.826667pt;}
.ha_c00133{height:11.733399pt;}
.hb_c00133{height:38.937500pt;}
.h8_c00133{height:59.300781pt;}
.h3_c00133{height:70.664062pt;}
.h4_c00133{height:74.906250pt;}
.h7_c00133{height:81.031250pt;}
.h5_c00133{height:81.045333pt;}
.h9_c00133{height:83.312500pt;}
.h6_c00133{height:91.160156pt;}
.h2_c00133{height:148.557292pt;}
.h1_c00133{height:870.000000pt;}
.h0_c00133{height:870.266667pt;}
.w2_c00133{width:93.222667pt;}
.w0_c00133{width:583.200000pt;}
.w1_c00133{width:583.333333pt;}
.x0_c00133{left:0.000000pt;}
.xc_c00133{left:25.600000pt;}
.x5_c00133{left:27.600000pt;}
.x4_c00133{left:29.066667pt;}
.x8_c00133{left:44.400000pt;}
.x6_c00133{left:62.133333pt;}
.xd_c00133{left:63.866667pt;}
.xb_c00133{left:109.866667pt;}
.x9_c00133{left:110.800000pt;}
.x7_c00133{left:111.866667pt;}
.x2_c00133{left:113.333333pt;}
.x1_c00133{left:116.666667pt;}
.xa_c00133{left:133.200000pt;}
.x3_c00133{left:176.800000pt;}
.xf_c00133{left:248.768229pt;}
.xe_c00133{left:507.200000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_846e76137130dd2d334a2a19.woff2')format("woff");}.ff1_c00134{font-family:ff1_c00134;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00134;src:url('chunks/assets/font_554b43dac1b4103ecd893ad9.woff2')format("woff");}.ff2_c00134{font-family:ff2_c00134;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00134;src:url('chunks/assets/font_ca18033382ca8a40780885da.woff2')format("woff");}.ff3_c00134{font-family:ff3_c00134;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00134;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff4_c00134{font-family:ff4_c00134;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00134;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c00134{font-family:ff5_c00134;line-height:1.219238;font-style: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;}
.ls1_c00134{letter-spacing:0.000000px;}
.ls0_c00134{letter-spacing:3.000000px;}
.sc__c00134{text-shadow:none;}
.sc0_c00134{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00134{-webkit-text-stroke:0px transparent;}
.sc0_c00134{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00134{word-spacing:-59.184000px;}
.ws1_c00134{word-spacing:0.000000px;}
._9_c00134{margin-left:-21.012000px;}
._14_c00134{margin-left:-17.577000px;}
._6_c00134{margin-left:-12.342000px;}
._3_c00134{margin-left:-10.200000px;}
._7_c00134{margin-left:-8.058000px;}
._8_c00134{margin-left:-6.426000px;}
._0_c00134{margin-left:-4.386000px;}
._1_c00134{margin-left:-3.060000px;}
._2_c00134{margin-left:-1.428000px;}
._b_c00134{width:1.734000px;}
._f_c00134{width:2.814000px;}
._d_c00134{width:4.536000px;}
._c_c00134{width:6.318000px;}
._e_c00134{width:7.437000px;}
._5_c00134{width:8.466000px;}
._4_c00134{width:9.894000px;}
._13_c00134{width:11.238000px;}
._10_c00134{width:12.309000px;}
._12_c00134{width:14.421000px;}
._11_c00134{width:16.278000px;}
._18_c00134{width:18.174000px;}
._17_c00134{width:23.277000px;}
._19_c00134{width:30.777000px;}
._a_c00134{width:54.468000px;}
._1b_c00134{width:76.377000px;}
._15_c00134{width:133.326000px;}
._16_c00134{width:175.260000px;}
._1a_c00134{width:267.321000px;}
.fc2_c00134{color:transparent;}
.fc1_c00134{color:rgb(128,128,128);}
.fc0_c00134{color:rgb(0,0,0);}
.fs3_c00134{font-size:48.000000px;}
.fs2_c00134{font-size:72.000000px;}
.fs1_c00134{font-size:81.000000px;}
.fs0_c00134{font-size:102.000000px;}
.y0_c00134{bottom:0.000000px;}
.y26_c00134{bottom:3.105000px;}
.y25_c00134{bottom:7.228371px;}
.y24_c00134{bottom:81.465000px;}
.y23_c00134{bottom:105.615000px;}
.y22_c00134{bottom:130.665000px;}
.y21_c00134{bottom:155.265000px;}
.y20_c00134{bottom:180.015000px;}
.y1f_c00134{bottom:204.315000px;}
.y1e_c00134{bottom:228.615000px;}
.y1d_c00134{bottom:252.915000px;}
.y1c_c00134{bottom:277.215000px;}
.y1b_c00134{bottom:301.365000px;}
.y1a_c00134{bottom:325.065000px;}
.y19_c00134{bottom:348.315000px;}
.y18_c00134{bottom:372.615000px;}
.y17_c00134{bottom:396.615000px;}
.y16_c00134{bottom:420.765000px;}
.y15_c00134{bottom:444.465000px;}
.y14_c00134{bottom:468.165000px;}
.y13_c00134{bottom:492.465000px;}
.y12_c00134{bottom:516.465000px;}
.y11_c00134{bottom:540.465000px;}
.y10_c00134{bottom:564.315000px;}
.yf_c00134{bottom:586.965000px;}
.ye_c00134{bottom:612.015000px;}
.yd_c00134{bottom:636.165000px;}
.yc_c00134{bottom:660.915000px;}
.yb_c00134{bottom:683.565000px;}
.ya_c00134{bottom:709.065000px;}
.y9_c00134{bottom:732.015000px;}
.y8_c00134{bottom:756.015000px;}
.y7_c00134{bottom:780.615000px;}
.y6_c00134{bottom:806.265000px;}
.y5_c00134{bottom:828.315000px;}
.y4_c00134{bottom:852.915000px;}
.y3_c00134{bottom:876.615000px;}
.y2_c00134{bottom:900.915000px;}
.y1_c00134{bottom:934.515000px;}
.h6_c00134{height:13.200074px;}
.h7_c00134{height:43.804688px;}
.h4_c00134{height:79.497070px;}
.h3_c00134{height:84.269531px;}
.h5_c00134{height:91.160156px;}
.h2_c00134{height:100.057617px;}
.h1_c00134{height:984.750000px;}
.h0_c00134{height:984.975000px;}
.w2_c00134{width:104.875500px;}
.w1_c00134{width:669.000000px;}
.w0_c00134{width:669.075000px;}
.x0_c00134{left:0.000000px;}
.x4_c00134{left:21.600000px;}
.xd_c00134{left:26.550000px;}
.xc_c00134{left:27.900000px;}
.xb_c00134{left:28.950000px;}
.xa_c00134{left:31.350000px;}
.x9_c00134{left:32.700000px;}
.x8_c00134{left:33.750000px;}
.x7_c00134{left:36.000000px;}
.x6_c00134{left:37.350000px;}
.x5_c00134{left:38.850000px;}
.x2_c00134{left:40.950000px;}
.x3_c00134{left:42.150000px;}
.x1_c00134{left:82.350000px;}
.xf_c00134{left:286.351730px;}
.xe_c00134{left:343.500000px;}
@media print{
.v0_c00134{vertical-align:0.000000pt;}
.ls1_c00134{letter-spacing:0.000000pt;}
.ls0_c00134{letter-spacing:2.666667pt;}
.ws0_c00134{word-spacing:-52.608000pt;}
.ws1_c00134{word-spacing:0.000000pt;}
._9_c00134{margin-left:-18.677333pt;}
._14_c00134{margin-left:-15.624000pt;}
._6_c00134{margin-left:-10.970667pt;}
._3_c00134{margin-left:-9.066667pt;}
._7_c00134{margin-left:-7.162667pt;}
._8_c00134{margin-left:-5.712000pt;}
._0_c00134{margin-left:-3.898667pt;}
._1_c00134{margin-left:-2.720000pt;}
._2_c00134{margin-left:-1.269333pt;}
._b_c00134{width:1.541333pt;}
._f_c00134{width:2.501333pt;}
._d_c00134{width:4.032000pt;}
._c_c00134{width:5.616000pt;}
._e_c00134{width:6.610667pt;}
._5_c00134{width:7.525333pt;}
._4_c00134{width:8.794667pt;}
._13_c00134{width:9.989333pt;}
._10_c00134{width:10.941333pt;}
._12_c00134{width:12.818667pt;}
._11_c00134{width:14.469333pt;}
._18_c00134{width:16.154667pt;}
._17_c00134{width:20.690667pt;}
._19_c00134{width:27.357333pt;}
._a_c00134{width:48.416000pt;}
._1b_c00134{width:67.890667pt;}
._15_c00134{width:118.512000pt;}
._16_c00134{width:155.786667pt;}
._1a_c00134{width:237.618667pt;}
.fs3_c00134{font-size:42.666667pt;}
.fs2_c00134{font-size:64.000000pt;}
.fs1_c00134{font-size:72.000000pt;}
.fs0_c00134{font-size:90.666667pt;}
.y0_c00134{bottom:0.000000pt;}
.y26_c00134{bottom:2.760000pt;}
.y25_c00134{bottom:6.425219pt;}
.y24_c00134{bottom:72.413333pt;}
.y23_c00134{bottom:93.880000pt;}
.y22_c00134{bottom:116.146667pt;}
.y21_c00134{bottom:138.013333pt;}
.y20_c00134{bottom:160.013333pt;}
.y1f_c00134{bottom:181.613333pt;}
.y1e_c00134{bottom:203.213333pt;}
.y1d_c00134{bottom:224.813333pt;}
.y1c_c00134{bottom:246.413333pt;}
.y1b_c00134{bottom:267.880000pt;}
.y1a_c00134{bottom:288.946667pt;}
.y19_c00134{bottom:309.613333pt;}
.y18_c00134{bottom:331.213333pt;}
.y17_c00134{bottom:352.546667pt;}
.y16_c00134{bottom:374.013333pt;}
.y15_c00134{bottom:395.080000pt;}
.y14_c00134{bottom:416.146667pt;}
.y13_c00134{bottom:437.746667pt;}
.y12_c00134{bottom:459.080000pt;}
.y11_c00134{bottom:480.413333pt;}
.y10_c00134{bottom:501.613333pt;}
.yf_c00134{bottom:521.746667pt;}
.ye_c00134{bottom:544.013333pt;}
.yd_c00134{bottom:565.480000pt;}
.yc_c00134{bottom:587.480000pt;}
.yb_c00134{bottom:607.613333pt;}
.ya_c00134{bottom:630.280000pt;}
.y9_c00134{bottom:650.680000pt;}
.y8_c00134{bottom:672.013333pt;}
.y7_c00134{bottom:693.880000pt;}
.y6_c00134{bottom:716.680000pt;}
.y5_c00134{bottom:736.280000pt;}
.y4_c00134{bottom:758.146667pt;}
.y3_c00134{bottom:779.213333pt;}
.y2_c00134{bottom:800.813333pt;}
.y1_c00134{bottom:830.680000pt;}
.h6_c00134{height:11.733399pt;}
.h7_c00134{height:38.937500pt;}
.h4_c00134{height:70.664062pt;}
.h3_c00134{height:74.906250pt;}
.h5_c00134{height:81.031250pt;}
.h2_c00134{height:88.940104pt;}
.h1_c00134{height:875.333333pt;}
.h0_c00134{height:875.533333pt;}
.w2_c00134{width:93.222667pt;}
.w1_c00134{width:594.666667pt;}
.w0_c00134{width:594.733333pt;}
.x0_c00134{left:0.000000pt;}
.x4_c00134{left:19.200000pt;}
.xd_c00134{left:23.600000pt;}
.xc_c00134{left:24.800000pt;}
.xb_c00134{left:25.733333pt;}
.xa_c00134{left:27.866667pt;}
.x9_c00134{left:29.066667pt;}
.x8_c00134{left:30.000000pt;}
.x7_c00134{left:32.000000pt;}
.x6_c00134{left:33.200000pt;}
.x5_c00134{left:34.533333pt;}
.x2_c00134{left:36.400000pt;}
.x3_c00134{left:37.466667pt;}
.x1_c00134{left:73.200000pt;}
.xf_c00134{left:254.534871pt;}
.xe_c00134{left:305.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_c6d2eaa16ff74da52810173a.woff2')format("woff");}.ff1_c00135{font-family:ff1_c00135;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00135;src:url('chunks/assets/font_636d962d70271e68f83c4b81.woff2')format("woff");}.ff2_c00135{font-family:ff2_c00135;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00135;src:url('chunks/assets/font_82ff48edd7901005cecf9025.woff2')format("woff");}.ff3_c00135{font-family:ff3_c00135;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00135;src:url('chunks/assets/font_48c2c24e8225607b22f4d386.woff2')format("woff");}.ff4_c00135{font-family:ff4_c00135;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00135;src:url('chunks/assets/font_1fc4daf11b18e45ec004354a.woff2')format("woff");}.ff5_c00135{font-family:ff5_c00135;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00135;src:url('chunks/assets/font_8422a4659f3ae12cec5f5c5e.woff2')format("woff");}.ff6_c00135{font-family:ff6_c00135;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00135;src:url('chunks/assets/font_5b9df01c9ed456dce3d7d8ab.woff2')format("woff");}.ff7_c00135{font-family:ff7_c00135;line-height:1.437000;font-style:normal;font-weight: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_c00135;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff8_c00135{font-family:ff8_c00135;line-height:1.219238;font-style: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;}
.ls6_c00135{letter-spacing:0.000000px;}
.ls4_c00135{letter-spacing:0.720000px;}
.ls7_c00135{letter-spacing:3.000000px;}
.ls3_c00135{letter-spacing:3.600000px;}
.ls0_c00135{letter-spacing:7.680000px;}
.ls5_c00135{letter-spacing:11.904000px;}
.ls8_c00135{letter-spacing:15.000000px;}
.ls1_c00135{letter-spacing:30.600000px;}
.ls2_c00135{letter-spacing:31.350000px;}
.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;}
}
.ws5_c00135{word-spacing:-67.686000px;}
.ws1_c00135{word-spacing:-61.704000px;}
.ws2_c00135{word-spacing:-47.277000px;}
.ws3_c00135{word-spacing:-23.832000px;}
.ws4_c00135{word-spacing:-19.065600px;}
.ws0_c00135{word-spacing:-17.352000px;}
.ws6_c00135{word-spacing:0.000000px;}
._14_c00135{margin-left:-25.872000px;}
._30_c00135{margin-left:-23.895000px;}
._f_c00135{margin-left:-20.400000px;}
._19_c00135{margin-left:-16.161000px;}
._1f_c00135{margin-left:-14.367000px;}
._d_c00135{margin-left:-12.063000px;}
._16_c00135{margin-left:-10.380000px;}
._e_c00135{margin-left:-8.490000px;}
._11_c00135{margin-left:-7.002000px;}
._b_c00135{margin-left:-5.883000px;}
._5_c00135{margin-left:-4.698000px;}
._18_c00135{margin-left:-3.558000px;}
._a_c00135{margin-left:-2.538000px;}
._0_c00135{margin-left:-1.008000px;}
._1a_c00135{width:1.005000px;}
._6_c00135{width:2.025000px;}
._2_c00135{width:3.321000px;}
._3_c00135{width:5.103000px;}
._7_c00135{width:6.111000px;}
._8_c00135{width:7.740000px;}
._4_c00135{width:8.991000px;}
._1_c00135{width:10.935000px;}
._9_c00135{width:12.927000px;}
._2d_c00135{width:14.205000px;}
._2e_c00135{width:15.327000px;}
._27_c00135{width:16.350000px;}
._23_c00135{width:19.089000px;}
._1c_c00135{width:22.497000px;}
._17_c00135{width:28.812000px;}
._c_c00135{width:29.988000px;}
._1b_c00135{width:31.596000px;}
._12_c00135{width:32.880000px;}
._24_c00135{width:35.259000px;}
._1d_c00135{width:36.711000px;}
._2a_c00135{width:38.889000px;}
._29_c00135{width:40.026000px;}
._25_c00135{width:45.135000px;}
._2b_c00135{width:52.499400px;}
._15_c00135{width:67.872000px;}
._26_c00135{width:86.157000px;}
._1e_c00135{width:87.642000px;}
._28_c00135{width:163.956000px;}
._13_c00135{width:194.130000px;}
._2c_c00135{width:257.136000px;}
._21_c00135{width:308.889000px;}
._10_c00135{width:332.388000px;}
._22_c00135{width:434.922000px;}
._2f_c00135{width:499.539000px;}
._20_c00135{width:615.312000px;}
._31_c00135{width:676.350000px;}
.fc2_c00135{color:transparent;}
.fc1_c00135{color:rgb(128,128,128);}
.fc0_c00135{color:rgb(0,0,0);}
.fs7_c00135{font-size:48.000000px;}
.fs3_c00135{font-size:51.000000px;}
.fs5_c00135{font-size:57.600000px;}
.fs4_c00135{font-size:66.000000px;}
.fs0_c00135{font-size:72.000000px;}
.fs1_c00135{font-size:81.000000px;}
.fs2_c00135{font-size:84.000000px;}
.fs6_c00135{font-size:87.000000px;}
.y0_c00135{bottom:0.000000px;}
.y26_c00135{bottom:3.105000px;}
.y25_c00135{bottom:7.228357px;}
.y24_c00135{bottom:79.980000px;}
.y23_c00135{bottom:103.680000px;}
.y22_c00135{bottom:129.030000px;}
.y21_c00135{bottom:153.330000px;}
.y20_c00135{bottom:177.930000px;}
.y1f_c00135{bottom:202.530000px;}
.y1e_c00135{bottom:227.130000px;}
.y1d_c00135{bottom:251.730000px;}
.y1c_c00135{bottom:276.030000px;}
.y1b_c00135{bottom:300.330000px;}
.y1a_c00135{bottom:324.630000px;}
.y19_c00135{bottom:348.780000px;}
.y18_c00135{bottom:373.230000px;}
.y17_c00135{bottom:397.680000px;}
.y16_c00135{bottom:420.480000px;}
.y15_c00135{bottom:446.580000px;}
.y14_c00135{bottom:469.530000px;}
.y13_c00135{bottom:493.830000px;}
.y12_c00135{bottom:517.830000px;}
.y11_c00135{bottom:541.680000px;}
.y10_c00135{bottom:565.980000px;}
.yf_c00135{bottom:590.280000px;}
.ye_c00135{bottom:613.980000px;}
.yd_c00135{bottom:636.930000px;}
.yc_c00135{bottom:648.780000px;}
.yb_c00135{bottom:663.180000px;}
.ya_c00135{bottom:685.530000px;}
.y9_c00135{bottom:710.430000px;}
.y8_c00135{bottom:734.430000px;}
.y7_c00135{bottom:758.130000px;}
.y6_c00135{bottom:782.280000px;}
.y5_c00135{bottom:806.280000px;}
.y4_c00135{bottom:830.280000px;}
.y3_c00135{bottom:853.830000px;}
.y2_c00135{bottom:878.280000px;}
.y1_c00135{bottom:901.830000px;}
.h5_c00135{height:13.200074px;}
.h6_c00135{height:43.804688px;}
.h3_c00135{height:79.497070px;}
.h2_c00135{height:82.441406px;}
.h1_c00135{height:84.269531px;}
.h4_c00135{height:91.776000px;}
.h0_c00135{height:995.250000px;}
.w2_c00135{width:104.875500px;}
.w0_c00135{width:667.425000px;}
.w1_c00135{width:667.500000px;}
.x0_c00135{left:0.000000px;}
.x4_c00135{left:33.150000px;}
.xa_c00135{left:35.100000px;}
.x8_c00135{left:36.150000px;}
.xc_c00135{left:52.650000px;}
.x7_c00135{left:84.150000px;}
.x3_c00135{left:86.850000px;}
.x6_c00135{left:90.750000px;}
.x2_c00135{left:123.150000px;}
.x1_c00135{left:124.500000px;}
.x5_c00135{left:125.850000px;}
.x9_c00135{left:129.450000px;}
.xb_c00135{left:132.000000px;}
.xf_c00135{left:133.050000px;}
.xe_c00135{left:134.100000px;}
.x10_c00135{left:154.950000px;}
.xd_c00135{left:158.400000px;}
.x11_c00135{left:278.550000px;}
.x12_c00135{left:285.526749px;}
@media print{
.v0_c00135{vertical-align:0.000000pt;}
.ls6_c00135{letter-spacing:0.000000pt;}
.ls4_c00135{letter-spacing:0.640000pt;}
.ls7_c00135{letter-spacing:2.666667pt;}
.ls3_c00135{letter-spacing:3.200000pt;}
.ls0_c00135{letter-spacing:6.826667pt;}
.ls5_c00135{letter-spacing:10.581333pt;}
.ls8_c00135{letter-spacing:13.333333pt;}
.ls1_c00135{letter-spacing:27.200000pt;}
.ls2_c00135{letter-spacing:27.866667pt;}
.ws5_c00135{word-spacing:-60.165333pt;}
.ws1_c00135{word-spacing:-54.848000pt;}
.ws2_c00135{word-spacing:-42.024000pt;}
.ws3_c00135{word-spacing:-21.184000pt;}
.ws4_c00135{word-spacing:-16.947200pt;}
.ws0_c00135{word-spacing:-15.424000pt;}
.ws6_c00135{word-spacing:0.000000pt;}
._14_c00135{margin-left:-22.997333pt;}
._30_c00135{margin-left:-21.240000pt;}
._f_c00135{margin-left:-18.133333pt;}
._19_c00135{margin-left:-14.365333pt;}
._1f_c00135{margin-left:-12.770667pt;}
._d_c00135{margin-left:-10.722667pt;}
._16_c00135{margin-left:-9.226667pt;}
._e_c00135{margin-left:-7.546667pt;}
._11_c00135{margin-left:-6.224000pt;}
._b_c00135{margin-left:-5.229333pt;}
._5_c00135{margin-left:-4.176000pt;}
._18_c00135{margin-left:-3.162667pt;}
._a_c00135{margin-left:-2.256000pt;}
._0_c00135{margin-left:-0.896000pt;}
._1a_c00135{width:0.893333pt;}
._6_c00135{width:1.800000pt;}
._2_c00135{width:2.952000pt;}
._3_c00135{width:4.536000pt;}
._7_c00135{width:5.432000pt;}
._8_c00135{width:6.880000pt;}
._4_c00135{width:7.992000pt;}
._1_c00135{width:9.720000pt;}
._9_c00135{width:11.490667pt;}
._2d_c00135{width:12.626667pt;}
._2e_c00135{width:13.624000pt;}
._27_c00135{width:14.533333pt;}
._23_c00135{width:16.968000pt;}
._1c_c00135{width:19.997333pt;}
._17_c00135{width:25.610667pt;}
._c_c00135{width:26.656000pt;}
._1b_c00135{width:28.085333pt;}
._12_c00135{width:29.226667pt;}
._24_c00135{width:31.341333pt;}
._1d_c00135{width:32.632000pt;}
._2a_c00135{width:34.568000pt;}
._29_c00135{width:35.578667pt;}
._25_c00135{width:40.120000pt;}
._2b_c00135{width:46.666133pt;}
._15_c00135{width:60.330667pt;}
._26_c00135{width:76.584000pt;}
._1e_c00135{width:77.904000pt;}
._28_c00135{width:145.738667pt;}
._13_c00135{width:172.560000pt;}
._2c_c00135{width:228.565333pt;}
._21_c00135{width:274.568000pt;}
._10_c00135{width:295.456000pt;}
._22_c00135{width:386.597333pt;}
._2f_c00135{width:444.034667pt;}
._20_c00135{width:546.944000pt;}
._31_c00135{width:601.200000pt;}
.fs7_c00135{font-size:42.666667pt;}
.fs3_c00135{font-size:45.333333pt;}
.fs5_c00135{font-size:51.200000pt;}
.fs4_c00135{font-size:58.666667pt;}
.fs0_c00135{font-size:64.000000pt;}
.fs1_c00135{font-size:72.000000pt;}
.fs2_c00135{font-size:74.666667pt;}
.fs6_c00135{font-size:77.333333pt;}
.y0_c00135{bottom:0.000000pt;}
.y26_c00135{bottom:2.760000pt;}
.y25_c00135{bottom:6.425206pt;}
.y24_c00135{bottom:71.093333pt;}
.y23_c00135{bottom:92.160000pt;}
.y22_c00135{bottom:114.693333pt;}
.y21_c00135{bottom:136.293333pt;}
.y20_c00135{bottom:158.160000pt;}
.y1f_c00135{bottom:180.026667pt;}
.y1e_c00135{bottom:201.893333pt;}
.y1d_c00135{bottom:223.760000pt;}
.y1c_c00135{bottom:245.360000pt;}
.y1b_c00135{bottom:266.960000pt;}
.y1a_c00135{bottom:288.560000pt;}
.y19_c00135{bottom:310.026667pt;}
.y18_c00135{bottom:331.760000pt;}
.y17_c00135{bottom:353.493333pt;}
.y16_c00135{bottom:373.760000pt;}
.y15_c00135{bottom:396.960000pt;}
.y14_c00135{bottom:417.360000pt;}
.y13_c00135{bottom:438.960000pt;}
.y12_c00135{bottom:460.293333pt;}
.y11_c00135{bottom:481.493333pt;}
.y10_c00135{bottom:503.093333pt;}
.yf_c00135{bottom:524.693333pt;}
.ye_c00135{bottom:545.760000pt;}
.yd_c00135{bottom:566.160000pt;}
.yc_c00135{bottom:576.693333pt;}
.yb_c00135{bottom:589.493333pt;}
.ya_c00135{bottom:609.360000pt;}
.y9_c00135{bottom:631.493333pt;}
.y8_c00135{bottom:652.826667pt;}
.y7_c00135{bottom:673.893333pt;}
.y6_c00135{bottom:695.360000pt;}
.y5_c00135{bottom:716.693333pt;}
.y4_c00135{bottom:738.026667pt;}
.y3_c00135{bottom:758.960000pt;}
.y2_c00135{bottom:780.693333pt;}
.y1_c00135{bottom:801.626667pt;}
.h5_c00135{height:11.733399pt;}
.h6_c00135{height:38.937500pt;}
.h3_c00135{height:70.664062pt;}
.h2_c00135{height:73.281250pt;}
.h1_c00135{height:74.906250pt;}
.h4_c00135{height:81.578667pt;}
.h0_c00135{height:884.666667pt;}
.w2_c00135{width:93.222667pt;}
.w0_c00135{width:593.266667pt;}
.w1_c00135{width:593.333333pt;}
.x0_c00135{left:0.000000pt;}
.x4_c00135{left:29.466667pt;}
.xa_c00135{left:31.200000pt;}
.x8_c00135{left:32.133333pt;}
.xc_c00135{left:46.800000pt;}
.x7_c00135{left:74.800000pt;}
.x3_c00135{left:77.200000pt;}
.x6_c00135{left:80.666667pt;}
.x2_c00135{left:109.466667pt;}
.x1_c00135{left:110.666667pt;}
.x5_c00135{left:111.866667pt;}
.x9_c00135{left:115.066667pt;}
.xb_c00135{left:117.333333pt;}
.xf_c00135{left:118.266667pt;}
.xe_c00135{left:119.200000pt;}
.x10_c00135{left:137.733333pt;}
.xd_c00135{left:140.800000pt;}
.x11_c00135{left:247.600000pt;}
.x12_c00135{left:253.801554pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1ebbf96fa2bdc43674c20ded.woff2')format("woff");}.ff1_c00136{font-family:ff1_c00136;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00136;src:url('chunks/assets/font_5b95339b46539a4ccb68fdd3.woff2')format("woff");}.ff2_c00136{font-family:ff2_c00136;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00136;src:url('chunks/assets/font_96c305891c3c117020c97a35.woff2')format("woff");}.ff3_c00136{font-family:ff3_c00136;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00136;src:url('chunks/assets/font_fbe1b768e8487f84a48addf2.woff2')format("woff");}.ff4_c00136{font-family:ff4_c00136;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00136;src:url('chunks/assets/font_00afbe3dbeade1f3d9fd1489.woff2')format("woff");}.ff5_c00136{font-family:ff5_c00136;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00136;src:url('chunks/assets/font_2a2e1f27ae6f295a791e256a.woff2')format("woff");}.ff6_c00136{font-family:ff6_c00136;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00136;src:url('chunks/assets/font_4af0892c35372ba25e9a705c.woff2')format("woff");}.ff7_c00136{font-family:ff7_c00136;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00136;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff8_c00136{font-family:ff8_c00136;line-height:1.219238;font-style: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;}
.v1_c00136{vertical-align:147.000000px;}
.ls6_c00136{letter-spacing:-3.000000px;}
.ls5_c00136{letter-spacing:0.000000px;}
.ls1_c00136{letter-spacing:0.900000px;}
.ls2_c00136{letter-spacing:5.700000px;}
.ls4_c00136{letter-spacing:6.000000px;}
.ls0_c00136{letter-spacing:12.480000px;}
.ls3_c00136{letter-spacing:628.950000px;}
.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;}
}
.ws1_c00136{word-spacing:-76.896000px;}
.ws2_c00136{word-spacing:-31.500000px;}
.ws0_c00136{word-spacing:-17.352000px;}
.ws3_c00136{word-spacing:0.000000px;}
._23_c00136{margin-left:-43.152000px;}
._16_c00136{margin-left:-24.147000px;}
._17_c00136{margin-left:-22.500000px;}
._2a_c00136{margin-left:-18.984000px;}
._1d_c00136{margin-left:-17.982000px;}
._1f_c00136{margin-left:-15.633000px;}
._19_c00136{margin-left:-13.203000px;}
._22_c00136{margin-left:-11.430000px;}
._1a_c00136{margin-left:-9.693000px;}
._10_c00136{margin-left:-8.343000px;}
._a_c00136{margin-left:-6.669000px;}
._14_c00136{margin-left:-5.400000px;}
._d_c00136{margin-left:-4.158000px;}
._7_c00136{margin-left:-2.403000px;}
._0_c00136{margin-left:-1.188000px;}
._c_c00136{width:1.620000px;}
._5_c00136{width:2.673000px;}
._b_c00136{width:3.888000px;}
._4_c00136{width:5.103000px;}
._6_c00136{width:6.291000px;}
._9_c00136{width:7.452000px;}
._11_c00136{width:8.748000px;}
._12_c00136{width:9.828000px;}
._8_c00136{width:11.178000px;}
._1b_c00136{width:12.258000px;}
._2_c00136{width:14.454000px;}
._24_c00136{width:15.714000px;}
._3_c00136{width:19.107000px;}
._2c_c00136{width:20.520000px;}
._2b_c00136{width:25.836000px;}
._18_c00136{width:30.213000px;}
._15_c00136{width:31.524000px;}
._20_c00136{width:34.212000px;}
._21_c00136{width:36.903000px;}
._27_c00136{width:41.958000px;}
._13_c00136{width:45.513000px;}
._25_c00136{width:49.140000px;}
._1_c00136{width:61.875000px;}
._1e_c00136{width:86.832000px;}
._e_c00136{width:116.883000px;}
._28_c00136{width:160.692000px;}
._29_c00136{width:197.568000px;}
._26_c00136{width:204.957000px;}
._1c_c00136{width:221.103000px;}
._f_c00136{width:343.845000px;}
.fc2_c00136{color:transparent;}
.fc1_c00136{color:rgb(128,128,128);}
.fc0_c00136{color:rgb(0,0,0);}
.fsa_c00136{font-size:48.000000px;}
.fs9_c00136{font-size:54.000000px;}
.fs7_c00136{font-size:57.000000px;}
.fs4_c00136{font-size:60.000000px;}
.fs8_c00136{font-size:63.000000px;}
.fs2_c00136{font-size:72.000000px;}
.fs5_c00136{font-size:78.000000px;}
.fs1_c00136{font-size:81.000000px;}
.fs3_c00136{font-size:87.000000px;}
.fs0_c00136{font-size:99.000000px;}
.fs6_c00136{font-size:288.000000px;}
.y0_c00136{bottom:0.000000px;}
.y26_c00136{bottom:3.105000px;}
.y25_c00136{bottom:7.228355px;}
.y24_c00136{bottom:65.685000px;}
.y23_c00136{bottom:95.835000px;}
.y22_c00136{bottom:120.735000px;}
.y21_c00136{bottom:145.035000px;}
.y20_c00136{bottom:169.035000px;}
.y1f_c00136{bottom:194.985000px;}
.y1e_c00136{bottom:219.585000px;}
.y1d_c00136{bottom:244.035000px;}
.y1c_c00136{bottom:268.335000px;}
.y1a_c00136{bottom:278.385000px;}
.y1b_c00136{bottom:292.485000px;}
.y19_c00136{bottom:340.485000px;}
.y18_c00136{bottom:364.785000px;}
.y17_c00136{bottom:389.385000px;}
.y16_c00136{bottom:413.085000px;}
.y15_c00136{bottom:437.085000px;}
.y14_c00136{bottom:461.235000px;}
.y13_c00136{bottom:485.685000px;}
.y12_c00136{bottom:509.535000px;}
.y11_c00136{bottom:533.835000px;}
.y10_c00136{bottom:557.535000px;}
.yf_c00136{bottom:581.835000px;}
.ye_c00136{bottom:605.835000px;}
.yd_c00136{bottom:629.985000px;}
.yc_c00136{bottom:653.685000px;}
.yb_c00136{bottom:677.685000px;}
.ya_c00136{bottom:701.685000px;}
.y9_c00136{bottom:725.835000px;}
.y8_c00136{bottom:750.285000px;}
.y7_c00136{bottom:774.435000px;}
.y6_c00136{bottom:798.435000px;}
.y5_c00136{bottom:824.835000px;}
.y4_c00136{bottom:846.435000px;}
.y3_c00136{bottom:871.035000px;}
.y2_c00136{bottom:895.035000px;}
.y1_c00136{bottom:930.735000px;}
.ha_c00136{height:13.200074px;}
.hb_c00136{height:43.804688px;}
.h3_c00136{height:79.497070px;}
.h4_c00136{height:84.269531px;}
.h6_c00136{height:91.160156px;}
.h5_c00136{height:91.176000px;}
.h7_c00136{height:91.291992px;}
.h2_c00136{height:97.114746px;}
.h9_c00136{height:98.756836px;}
.h8_c00136{height:307.296000px;}
.h0_c00136{height:972.525000px;}
.h1_c00136{height:972.750000px;}
.w2_c00136{width:104.875500px;}
.w0_c00136{width:660.450000px;}
.w1_c00136{width:660.750000px;}
.x0_c00136{left:0.000000px;}
.x4_c00136{left:21.300000px;}
.x2_c00136{left:39.450000px;}
.x3_c00136{left:40.800000px;}
.x5_c00136{left:42.450000px;}
.x6_c00136{left:43.500000px;}
.x7_c00136{left:45.450000px;}
.x8_c00136{left:46.500000px;}
.x9_c00136{left:47.550000px;}
.xa_c00136{left:48.600000px;}
.xe_c00136{left:50.700000px;}
.xf_c00136{left:52.350000px;}
.xc_c00136{left:54.300000px;}
.x1_c00136{left:66.750000px;}
.xb_c00136{left:104.550000px;}
.xd_c00136{left:111.450000px;}
.x11_c00136{left:282.039230px;}
.x10_c00136{left:384.150000px;}
@media print{
.v0_c00136{vertical-align:0.000000pt;}
.v1_c00136{vertical-align:130.666667pt;}
.ls6_c00136{letter-spacing:-2.666667pt;}
.ls5_c00136{letter-spacing:0.000000pt;}
.ls1_c00136{letter-spacing:0.800000pt;}
.ls2_c00136{letter-spacing:5.066667pt;}
.ls4_c00136{letter-spacing:5.333333pt;}
.ls0_c00136{letter-spacing:11.093333pt;}
.ls3_c00136{letter-spacing:559.066667pt;}
.ws1_c00136{word-spacing:-68.352000pt;}
.ws2_c00136{word-spacing:-28.000000pt;}
.ws0_c00136{word-spacing:-15.424000pt;}
.ws3_c00136{word-spacing:0.000000pt;}
._23_c00136{margin-left:-38.357333pt;}
._16_c00136{margin-left:-21.464000pt;}
._17_c00136{margin-left:-20.000000pt;}
._2a_c00136{margin-left:-16.874667pt;}
._1d_c00136{margin-left:-15.984000pt;}
._1f_c00136{margin-left:-13.896000pt;}
._19_c00136{margin-left:-11.736000pt;}
._22_c00136{margin-left:-10.160000pt;}
._1a_c00136{margin-left:-8.616000pt;}
._10_c00136{margin-left:-7.416000pt;}
._a_c00136{margin-left:-5.928000pt;}
._14_c00136{margin-left:-4.800000pt;}
._d_c00136{margin-left:-3.696000pt;}
._7_c00136{margin-left:-2.136000pt;}
._0_c00136{margin-left:-1.056000pt;}
._c_c00136{width:1.440000pt;}
._5_c00136{width:2.376000pt;}
._b_c00136{width:3.456000pt;}
._4_c00136{width:4.536000pt;}
._6_c00136{width:5.592000pt;}
._9_c00136{width:6.624000pt;}
._11_c00136{width:7.776000pt;}
._12_c00136{width:8.736000pt;}
._8_c00136{width:9.936000pt;}
._1b_c00136{width:10.896000pt;}
._2_c00136{width:12.848000pt;}
._24_c00136{width:13.968000pt;}
._3_c00136{width:16.984000pt;}
._2c_c00136{width:18.240000pt;}
._2b_c00136{width:22.965333pt;}
._18_c00136{width:26.856000pt;}
._15_c00136{width:28.021333pt;}
._20_c00136{width:30.410667pt;}
._21_c00136{width:32.802667pt;}
._27_c00136{width:37.296000pt;}
._13_c00136{width:40.456000pt;}
._25_c00136{width:43.680000pt;}
._1_c00136{width:55.000000pt;}
._1e_c00136{width:77.184000pt;}
._e_c00136{width:103.896000pt;}
._28_c00136{width:142.837333pt;}
._29_c00136{width:175.616000pt;}
._26_c00136{width:182.184000pt;}
._1c_c00136{width:196.536000pt;}
._f_c00136{width:305.640000pt;}
.fsa_c00136{font-size:42.666667pt;}
.fs9_c00136{font-size:48.000000pt;}
.fs7_c00136{font-size:50.666667pt;}
.fs4_c00136{font-size:53.333333pt;}
.fs8_c00136{font-size:56.000000pt;}
.fs2_c00136{font-size:64.000000pt;}
.fs5_c00136{font-size:69.333333pt;}
.fs1_c00136{font-size:72.000000pt;}
.fs3_c00136{font-size:77.333333pt;}
.fs0_c00136{font-size:88.000000pt;}
.fs6_c00136{font-size:256.000000pt;}
.y0_c00136{bottom:0.000000pt;}
.y26_c00136{bottom:2.760000pt;}
.y25_c00136{bottom:6.425204pt;}
.y24_c00136{bottom:58.386667pt;}
.y23_c00136{bottom:85.186667pt;}
.y22_c00136{bottom:107.320000pt;}
.y21_c00136{bottom:128.920000pt;}
.y20_c00136{bottom:150.253333pt;}
.y1f_c00136{bottom:173.320000pt;}
.y1e_c00136{bottom:195.186667pt;}
.y1d_c00136{bottom:216.920000pt;}
.y1c_c00136{bottom:238.520000pt;}
.y1a_c00136{bottom:247.453333pt;}
.y1b_c00136{bottom:259.986667pt;}
.y19_c00136{bottom:302.653333pt;}
.y18_c00136{bottom:324.253333pt;}
.y17_c00136{bottom:346.120000pt;}
.y16_c00136{bottom:367.186667pt;}
.y15_c00136{bottom:388.520000pt;}
.y14_c00136{bottom:409.986667pt;}
.y13_c00136{bottom:431.720000pt;}
.y12_c00136{bottom:452.920000pt;}
.y11_c00136{bottom:474.520000pt;}
.y10_c00136{bottom:495.586667pt;}
.yf_c00136{bottom:517.186667pt;}
.ye_c00136{bottom:538.520000pt;}
.yd_c00136{bottom:559.986667pt;}
.yc_c00136{bottom:581.053333pt;}
.yb_c00136{bottom:602.386667pt;}
.ya_c00136{bottom:623.720000pt;}
.y9_c00136{bottom:645.186667pt;}
.y8_c00136{bottom:666.920000pt;}
.y7_c00136{bottom:688.386667pt;}
.y6_c00136{bottom:709.720000pt;}
.y5_c00136{bottom:733.186667pt;}
.y4_c00136{bottom:752.386667pt;}
.y3_c00136{bottom:774.253333pt;}
.y2_c00136{bottom:795.586667pt;}
.y1_c00136{bottom:827.320000pt;}
.ha_c00136{height:11.733399pt;}
.hb_c00136{height:38.937500pt;}
.h3_c00136{height:70.664062pt;}
.h4_c00136{height:74.906250pt;}
.h6_c00136{height:81.031250pt;}
.h5_c00136{height:81.045333pt;}
.h7_c00136{height:81.148438pt;}
.h2_c00136{height:86.324219pt;}
.h9_c00136{height:87.783854pt;}
.h8_c00136{height:273.152000pt;}
.h0_c00136{height:864.466667pt;}
.h1_c00136{height:864.666667pt;}
.w2_c00136{width:93.222667pt;}
.w0_c00136{width:587.066667pt;}
.w1_c00136{width:587.333333pt;}
.x0_c00136{left:0.000000pt;}
.x4_c00136{left:18.933333pt;}
.x2_c00136{left:35.066667pt;}
.x3_c00136{left:36.266667pt;}
.x5_c00136{left:37.733333pt;}
.x6_c00136{left:38.666667pt;}
.x7_c00136{left:40.400000pt;}
.x8_c00136{left:41.333333pt;}
.x9_c00136{left:42.266667pt;}
.xa_c00136{left:43.200000pt;}
.xe_c00136{left:45.066667pt;}
.xf_c00136{left:46.533333pt;}
.xc_c00136{left:48.266667pt;}
.x1_c00136{left:59.333333pt;}
.xb_c00136{left:92.933333pt;}
.xd_c00136{left:99.066667pt;}
.x11_c00136{left:250.701538pt;}
.x10_c00136{left:341.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_aecdb6ca19d226e413271b8f.woff2')format("woff");}.ff1_c00137{font-family:ff1_c00137;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00137;src:url('chunks/assets/font_7ac31f0e0fc7fb2d4869c232.woff2')format("woff");}.ff2_c00137{font-family:ff2_c00137;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00137;src:url('chunks/assets/font_b0a2174ce9036ab6574ff064.woff2')format("woff");}.ff3_c00137{font-family:ff3_c00137;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00137;src:url('chunks/assets/font_b82b26a98263c3db94529ecc.woff2')format("woff");}.ff4_c00137{font-family:ff4_c00137;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00137;src:url('chunks/assets/font_22a790bcfb031a05d71aaa7b.woff2')format("woff");}.ff5_c00137{font-family:ff5_c00137;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00137;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c00137{font-family:ff6_c00137;line-height:1.219238;font-style: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;}
.ls1_c00137{letter-spacing:0.000000px;}
.ls0_c00137{letter-spacing:14.100000px;}
.sc__c00137{text-shadow:none;}
.sc0_c00137{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00137{-webkit-text-stroke:0px transparent;}
.sc0_c00137{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00137{word-spacing:-37.500000px;}
.ws2_c00137{word-spacing:-20.250000px;}
.ws1_c00137{word-spacing:-17.352000px;}
.ws3_c00137{word-spacing:0.000000px;}
._16_c00137{margin-left:-23.085000px;}
._17_c00137{margin-left:-21.627000px;}
._13_c00137{margin-left:-15.750000px;}
._3_c00137{margin-left:-12.024000px;}
._1f_c00137{margin-left:-10.764000px;}
._e_c00137{margin-left:-8.865000px;}
._4_c00137{margin-left:-7.776000px;}
._2_c00137{margin-left:-6.552000px;}
._d_c00137{margin-left:-5.319000px;}
._0_c00137{margin-left:-4.176000px;}
._a_c00137{margin-left:-3.033000px;}
._1_c00137{margin-left:-1.800000px;}
._6_c00137{width:1.638000px;}
._5_c00137{width:3.195000px;}
._9_c00137{width:5.022000px;}
._b_c00137{width:6.525000px;}
._8_c00137{width:7.857000px;}
._c_c00137{width:9.828000px;}
._12_c00137{width:10.836000px;}
._7_c00137{width:12.141000px;}
._f_c00137{width:13.860000px;}
._1c_c00137{width:16.263000px;}
._10_c00137{width:18.324000px;}
._1a_c00137{width:20.952000px;}
._14_c00137{width:42.399000px;}
._11_c00137{width:44.217000px;}
._18_c00137{width:45.765000px;}
._19_c00137{width:47.034000px;}
._15_c00137{width:170.145000px;}
._1d_c00137{width:181.944000px;}
._1b_c00137{width:291.951000px;}
._1e_c00137{width:333.957000px;}
.fc2_c00137{color:transparent;}
.fc1_c00137{color:rgb(128,128,128);}
.fc0_c00137{color:rgb(0,0,0);}
.fs4_c00137{font-size:48.000000px;}
.fs0_c00137{font-size:72.000000px;}
.fs2_c00137{font-size:75.000000px;}
.fs1_c00137{font-size:81.000000px;}
.fs3_c00137{font-size:87.000000px;}
.y0_c00137{bottom:0.000000px;}
.y25_c00137{bottom:3.105000px;}
.y24_c00137{bottom:7.228357px;}
.y23_c00137{bottom:82.680000px;}
.y22_c00137{bottom:106.080000px;}
.y21_c00137{bottom:129.630000px;}
.y20_c00137{bottom:155.280000px;}
.y1f_c00137{bottom:180.180000px;}
.y1e_c00137{bottom:204.930000px;}
.y1d_c00137{bottom:229.530000px;}
.y1c_c00137{bottom:254.130000px;}
.y1b_c00137{bottom:278.430000px;}
.y1a_c00137{bottom:304.080000px;}
.y19_c00137{bottom:325.980000px;}
.y18_c00137{bottom:352.680000px;}
.y17_c00137{bottom:375.030000px;}
.y16_c00137{bottom:399.030000px;}
.y15_c00137{bottom:424.980000px;}
.y14_c00137{bottom:446.280000px;}
.y13_c00137{bottom:471.930000px;}
.y12_c00137{bottom:495.780000px;}
.y11_c00137{bottom:518.730000px;}
.y10_c00137{bottom:543.480000px;}
.yf_c00137{bottom:568.080000px;}
.ye_c00137{bottom:591.930000px;}
.yd_c00137{bottom:615.930000px;}
.yc_c00137{bottom:639.930000px;}
.yb_c00137{bottom:664.530000px;}
.ya_c00137{bottom:688.230000px;}
.y9_c00137{bottom:712.230000px;}
.y8_c00137{bottom:736.830000px;}
.y7_c00137{bottom:760.830000px;}
.y6_c00137{bottom:784.680000px;}
.y5_c00137{bottom:808.380000px;}
.y4_c00137{bottom:832.680000px;}
.y3_c00137{bottom:856.680000px;}
.y2_c00137{bottom:880.530000px;}
.y1_c00137{bottom:904.230000px;}
.h5_c00137{height:13.200074px;}
.h6_c00137{height:43.804688px;}
.h2_c00137{height:79.497070px;}
.h3_c00137{height:81.632812px;}
.h1_c00137{height:84.269531px;}
.h4_c00137{height:91.176000px;}
.h0_c00137{height:995.250000px;}
.w2_c00137{width:104.875500px;}
.w0_c00137{width:667.425000px;}
.w1_c00137{width:667.500000px;}
.x0_c00137{left:0.000000px;}
.xe_c00137{left:26.550000px;}
.xb_c00137{left:30.600000px;}
.x8_c00137{left:34.800000px;}
.xc_c00137{left:63.750000px;}
.x12_c00137{left:101.250000px;}
.x11_c00137{left:117.150000px;}
.x10_c00137{left:118.350000px;}
.xf_c00137{left:119.700000px;}
.x9_c00137{left:121.200000px;}
.xd_c00137{left:123.150000px;}
.xa_c00137{left:125.850000px;}
.x7_c00137{left:127.800000px;}
.x6_c00137{left:128.850000px;}
.x5_c00137{left:130.050000px;}
.x4_c00137{left:131.250000px;}
.x3_c00137{left:132.300000px;}
.x2_c00137{left:133.350000px;}
.x1_c00137{left:135.450000px;}
.x14_c00137{left:285.526749px;}
.x13_c00137{left:566.550000px;}
@media print{
.v0_c00137{vertical-align:0.000000pt;}
.ls1_c00137{letter-spacing:0.000000pt;}
.ls0_c00137{letter-spacing:12.533333pt;}
.ws0_c00137{word-spacing:-33.333333pt;}
.ws2_c00137{word-spacing:-18.000000pt;}
.ws1_c00137{word-spacing:-15.424000pt;}
.ws3_c00137{word-spacing:0.000000pt;}
._16_c00137{margin-left:-20.520000pt;}
._17_c00137{margin-left:-19.224000pt;}
._13_c00137{margin-left:-14.000000pt;}
._3_c00137{margin-left:-10.688000pt;}
._1f_c00137{margin-left:-9.568000pt;}
._e_c00137{margin-left:-7.880000pt;}
._4_c00137{margin-left:-6.912000pt;}
._2_c00137{margin-left:-5.824000pt;}
._d_c00137{margin-left:-4.728000pt;}
._0_c00137{margin-left:-3.712000pt;}
._a_c00137{margin-left:-2.696000pt;}
._1_c00137{margin-left:-1.600000pt;}
._6_c00137{width:1.456000pt;}
._5_c00137{width:2.840000pt;}
._9_c00137{width:4.464000pt;}
._b_c00137{width:5.800000pt;}
._8_c00137{width:6.984000pt;}
._c_c00137{width:8.736000pt;}
._12_c00137{width:9.632000pt;}
._7_c00137{width:10.792000pt;}
._f_c00137{width:12.320000pt;}
._1c_c00137{width:14.456000pt;}
._10_c00137{width:16.288000pt;}
._1a_c00137{width:18.624000pt;}
._14_c00137{width:37.688000pt;}
._11_c00137{width:39.304000pt;}
._18_c00137{width:40.680000pt;}
._19_c00137{width:41.808000pt;}
._15_c00137{width:151.240000pt;}
._1d_c00137{width:161.728000pt;}
._1b_c00137{width:259.512000pt;}
._1e_c00137{width:296.850667pt;}
.fs4_c00137{font-size:42.666667pt;}
.fs0_c00137{font-size:64.000000pt;}
.fs2_c00137{font-size:66.666667pt;}
.fs1_c00137{font-size:72.000000pt;}
.fs3_c00137{font-size:77.333333pt;}
.y0_c00137{bottom:0.000000pt;}
.y25_c00137{bottom:2.760000pt;}
.y24_c00137{bottom:6.425206pt;}
.y23_c00137{bottom:73.493333pt;}
.y22_c00137{bottom:94.293333pt;}
.y21_c00137{bottom:115.226667pt;}
.y20_c00137{bottom:138.026667pt;}
.y1f_c00137{bottom:160.160000pt;}
.y1e_c00137{bottom:182.160000pt;}
.y1d_c00137{bottom:204.026667pt;}
.y1c_c00137{bottom:225.893333pt;}
.y1b_c00137{bottom:247.493333pt;}
.y1a_c00137{bottom:270.293333pt;}
.y19_c00137{bottom:289.760000pt;}
.y18_c00137{bottom:313.493333pt;}
.y17_c00137{bottom:333.360000pt;}
.y16_c00137{bottom:354.693333pt;}
.y15_c00137{bottom:377.760000pt;}
.y14_c00137{bottom:396.693333pt;}
.y13_c00137{bottom:419.493333pt;}
.y12_c00137{bottom:440.693333pt;}
.y11_c00137{bottom:461.093333pt;}
.y10_c00137{bottom:483.093333pt;}
.yf_c00137{bottom:504.960000pt;}
.ye_c00137{bottom:526.160000pt;}
.yd_c00137{bottom:547.493333pt;}
.yc_c00137{bottom:568.826667pt;}
.yb_c00137{bottom:590.693333pt;}
.ya_c00137{bottom:611.760000pt;}
.y9_c00137{bottom:633.093333pt;}
.y8_c00137{bottom:654.960000pt;}
.y7_c00137{bottom:676.293333pt;}
.y6_c00137{bottom:697.493333pt;}
.y5_c00137{bottom:718.560000pt;}
.y4_c00137{bottom:740.160000pt;}
.y3_c00137{bottom:761.493333pt;}
.y2_c00137{bottom:782.693333pt;}
.y1_c00137{bottom:803.760000pt;}
.h5_c00137{height:11.733399pt;}
.h6_c00137{height:38.937500pt;}
.h2_c00137{height:70.664062pt;}
.h3_c00137{height:72.562500pt;}
.h1_c00137{height:74.906250pt;}
.h4_c00137{height:81.045333pt;}
.h0_c00137{height:884.666667pt;}
.w2_c00137{width:93.222667pt;}
.w0_c00137{width:593.266667pt;}
.w1_c00137{width:593.333333pt;}
.x0_c00137{left:0.000000pt;}
.xe_c00137{left:23.600000pt;}
.xb_c00137{left:27.200000pt;}
.x8_c00137{left:30.933333pt;}
.xc_c00137{left:56.666667pt;}
.x12_c00137{left:90.000000pt;}
.x11_c00137{left:104.133333pt;}
.x10_c00137{left:105.200000pt;}
.xf_c00137{left:106.400000pt;}
.x9_c00137{left:107.733333pt;}
.xd_c00137{left:109.466667pt;}
.xa_c00137{left:111.866667pt;}
.x7_c00137{left:113.600000pt;}
.x6_c00137{left:114.533333pt;}
.x5_c00137{left:115.600000pt;}
.x4_c00137{left:116.666667pt;}
.x3_c00137{left:117.600000pt;}
.x2_c00137{left:118.533333pt;}
.x1_c00137{left:120.400000pt;}
.x14_c00137{left:253.801554pt;}
.x13_c00137{left:503.600000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_73087423b4586f4d93cd390e.woff2')format("woff");}.ff1_c00138{font-family:ff1_c00138;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00138;src:url('chunks/assets/font_d5a46c1dead42e33e7ab7d59.woff2')format("woff");}.ff2_c00138{font-family:ff2_c00138;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00138;src:url('chunks/assets/font_364087099ea58ca1c172e71a.woff2')format("woff");}.ff3_c00138{font-family:ff3_c00138;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00138;src:url('chunks/assets/font_51cd809a2597f5d5cd45dd96.woff2')format("woff");}.ff4_c00138{font-family:ff4_c00138;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00138;src:url('chunks/assets/font_7108f7d99c905336fbbff0e0.woff2')format("woff");}.ff5_c00138{font-family:ff5_c00138;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00138;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c00138{font-family:ff6_c00138;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00138{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00138{vertical-align:0.000000px;}
.ls0_c00138{letter-spacing:0.000000px;}
.ls1_c00138{letter-spacing:18.000000px;}
.sc__c00138{text-shadow:none;}
.sc0_c00138{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00138{-webkit-text-stroke:0px transparent;}
.sc0_c00138{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00138{word-spacing:-74.640000px;}
.ws2_c00138{word-spacing:-20.250000px;}
.ws1_c00138{word-spacing:-17.352000px;}
.ws3_c00138{word-spacing:0.000000px;}
._24_c00138{margin-left:-38.895000px;}
._9_c00138{margin-left:-32.520000px;}
._1f_c00138{margin-left:-25.434000px;}
._26_c00138{margin-left:-20.283000px;}
._2_c00138{margin-left:-17.238000px;}
._6_c00138{margin-left:-13.770000px;}
._16_c00138{margin-left:-11.907000px;}
._19_c00138{margin-left:-9.486000px;}
._10_c00138{margin-left:-7.770000px;}
._b_c00138{margin-left:-6.387000px;}
._21_c00138{margin-left:-5.160000px;}
._e_c00138{margin-left:-4.074000px;}
._5_c00138{margin-left:-3.060000px;}
._a_c00138{margin-left:-1.200000px;}
._1_c00138{width:1.122000px;}
._0_c00138{width:2.448000px;}
._4_c00138{width:3.774000px;}
._3_c00138{width:5.100000px;}
._d_c00138{width:6.885000px;}
._c_c00138{width:8.166000px;}
._f_c00138{width:9.534000px;}
._15_c00138{width:10.773000px;}
._18_c00138{width:12.867000px;}
._12_c00138{width:14.505000px;}
._14_c00138{width:15.729000px;}
._13_c00138{width:17.205000px;}
._1b_c00138{width:18.777000px;}
._20_c00138{width:21.807000px;}
._27_c00138{width:24.966000px;}
._17_c00138{width:26.244000px;}
._1d_c00138{width:27.843000px;}
._23_c00138{width:29.769000px;}
._1e_c00138{width:31.515000px;}
._8_c00138{width:40.344000px;}
._22_c00138{width:109.131000px;}
._25_c00138{width:188.751000px;}
._7_c00138{width:207.162000px;}
._1c_c00138{width:250.743000px;}
._1a_c00138{width:308.610000px;}
._11_c00138{width:328.617000px;}
.fc2_c00138{color:transparent;}
.fc1_c00138{color:rgb(128,128,128);}
.fc0_c00138{color:rgb(0,0,0);}
.fs5_c00138{font-size:48.000000px;}
.fs4_c00138{font-size:72.000000px;}
.fs3_c00138{font-size:78.000000px;}
.fs2_c00138{font-size:81.000000px;}
.fs0_c00138{font-size:102.000000px;}
.fs1_c00138{font-size:120.000000px;}
.y0_c00138{bottom:0.000000px;}
.y26_c00138{bottom:3.105000px;}
.y25_c00138{bottom:7.228355px;}
.y24_c00138{bottom:72.135000px;}
.y23_c00138{bottom:95.085000px;}
.y22_c00138{bottom:119.685000px;}
.y21_c00138{bottom:143.685000px;}
.y20_c00138{bottom:167.985000px;}
.y1f_c00138{bottom:192.585000px;}
.y1e_c00138{bottom:217.035000px;}
.y1d_c00138{bottom:240.885000px;}
.y1c_c00138{bottom:265.485000px;}
.y1b_c00138{bottom:288.585000px;}
.y1a_c00138{bottom:312.435000px;}
.y19_c00138{bottom:337.035000px;}
.y18_c00138{bottom:360.435000px;}
.y17_c00138{bottom:384.435000px;}
.y16_c00138{bottom:408.735000px;}
.y15_c00138{bottom:432.885000px;}
.y14_c00138{bottom:456.885000px;}
.y13_c00138{bottom:480.885000px;}
.y12_c00138{bottom:505.185000px;}
.y11_c00138{bottom:528.885000px;}
.y10_c00138{bottom:553.485000px;}
.yf_c00138{bottom:577.335000px;}
.ye_c00138{bottom:601.335000px;}
.yd_c00138{bottom:625.035000px;}
.yc_c00138{bottom:648.585000px;}
.yb_c00138{bottom:673.185000px;}
.ya_c00138{bottom:696.885000px;}
.y9_c00138{bottom:721.185000px;}
.y8_c00138{bottom:745.185000px;}
.y7_c00138{bottom:769.485000px;}
.y6_c00138{bottom:793.485000px;}
.y5_c00138{bottom:817.635000px;}
.y4_c00138{bottom:841.335000px;}
.y3_c00138{bottom:865.035000px;}
.y2_c00138{bottom:889.635000px;}
.y1_c00138{bottom:922.935000px;}
.h7_c00138{height:13.200074px;}
.h8_c00138{height:43.804688px;}
.h3_c00138{height:79.497070px;}
.h5_c00138{height:84.269531px;}
.h6_c00138{height:91.160156px;}
.h4_c00138{height:98.756836px;}
.h2_c00138{height:140.449219px;}
.h0_c00138{height:977.925000px;}
.h1_c00138{height:978.000000px;}
.w2_c00138{width:104.875500px;}
.w0_c00138{width:664.200000px;}
.w1_c00138{width:664.500000px;}
.x0_c00138{left:0.000000px;}
.x5_c00138{left:23.700000px;}
.x4_c00138{left:25.650000px;}
.x7_c00138{left:37.500000px;}
.x2_c00138{left:38.550000px;}
.x6_c00138{left:42.150000px;}
.x3_c00138{left:65.100000px;}
.x1_c00138{left:133.200000px;}
.x9_c00138{left:283.914230px;}
.x8_c00138{left:464.100000px;}
@media print{
.v0_c00138{vertical-align:0.000000pt;}
.ls0_c00138{letter-spacing:0.000000pt;}
.ls1_c00138{letter-spacing:16.000000pt;}
.ws0_c00138{word-spacing:-66.346667pt;}
.ws2_c00138{word-spacing:-18.000000pt;}
.ws1_c00138{word-spacing:-15.424000pt;}
.ws3_c00138{word-spacing:0.000000pt;}
._24_c00138{margin-left:-34.573333pt;}
._9_c00138{margin-left:-28.906667pt;}
._1f_c00138{margin-left:-22.608000pt;}
._26_c00138{margin-left:-18.029333pt;}
._2_c00138{margin-left:-15.322667pt;}
._6_c00138{margin-left:-12.240000pt;}
._16_c00138{margin-left:-10.584000pt;}
._19_c00138{margin-left:-8.432000pt;}
._10_c00138{margin-left:-6.906667pt;}
._b_c00138{margin-left:-5.677333pt;}
._21_c00138{margin-left:-4.586667pt;}
._e_c00138{margin-left:-3.621333pt;}
._5_c00138{margin-left:-2.720000pt;}
._a_c00138{margin-left:-1.066667pt;}
._1_c00138{width:0.997333pt;}
._0_c00138{width:2.176000pt;}
._4_c00138{width:3.354667pt;}
._3_c00138{width:4.533333pt;}
._d_c00138{width:6.120000pt;}
._c_c00138{width:7.258667pt;}
._f_c00138{width:8.474667pt;}
._15_c00138{width:9.576000pt;}
._18_c00138{width:11.437333pt;}
._12_c00138{width:12.893333pt;}
._14_c00138{width:13.981333pt;}
._13_c00138{width:15.293333pt;}
._1b_c00138{width:16.690667pt;}
._20_c00138{width:19.384000pt;}
._27_c00138{width:22.192000pt;}
._17_c00138{width:23.328000pt;}
._1d_c00138{width:24.749333pt;}
._23_c00138{width:26.461333pt;}
._1e_c00138{width:28.013333pt;}
._8_c00138{width:35.861333pt;}
._22_c00138{width:97.005333pt;}
._25_c00138{width:167.778667pt;}
._7_c00138{width:184.144000pt;}
._1c_c00138{width:222.882667pt;}
._1a_c00138{width:274.320000pt;}
._11_c00138{width:292.104000pt;}
.fs5_c00138{font-size:42.666667pt;}
.fs4_c00138{font-size:64.000000pt;}
.fs3_c00138{font-size:69.333333pt;}
.fs2_c00138{font-size:72.000000pt;}
.fs0_c00138{font-size:90.666667pt;}
.fs1_c00138{font-size:106.666667pt;}
.y0_c00138{bottom:0.000000pt;}
.y26_c00138{bottom:2.760000pt;}
.y25_c00138{bottom:6.425204pt;}
.y24_c00138{bottom:64.120000pt;}
.y23_c00138{bottom:84.520000pt;}
.y22_c00138{bottom:106.386667pt;}
.y21_c00138{bottom:127.720000pt;}
.y20_c00138{bottom:149.320000pt;}
.y1f_c00138{bottom:171.186667pt;}
.y1e_c00138{bottom:192.920000pt;}
.y1d_c00138{bottom:214.120000pt;}
.y1c_c00138{bottom:235.986667pt;}
.y1b_c00138{bottom:256.520000pt;}
.y1a_c00138{bottom:277.720000pt;}
.y19_c00138{bottom:299.586667pt;}
.y18_c00138{bottom:320.386667pt;}
.y17_c00138{bottom:341.720000pt;}
.y16_c00138{bottom:363.320000pt;}
.y15_c00138{bottom:384.786667pt;}
.y14_c00138{bottom:406.120000pt;}
.y13_c00138{bottom:427.453333pt;}
.y12_c00138{bottom:449.053333pt;}
.y11_c00138{bottom:470.120000pt;}
.y10_c00138{bottom:491.986667pt;}
.yf_c00138{bottom:513.186667pt;}
.ye_c00138{bottom:534.520000pt;}
.yd_c00138{bottom:555.586667pt;}
.yc_c00138{bottom:576.520000pt;}
.yb_c00138{bottom:598.386667pt;}
.ya_c00138{bottom:619.453333pt;}
.y9_c00138{bottom:641.053333pt;}
.y8_c00138{bottom:662.386667pt;}
.y7_c00138{bottom:683.986667pt;}
.y6_c00138{bottom:705.320000pt;}
.y5_c00138{bottom:726.786667pt;}
.y4_c00138{bottom:747.853333pt;}
.y3_c00138{bottom:768.920000pt;}
.y2_c00138{bottom:790.786667pt;}
.y1_c00138{bottom:820.386667pt;}
.h7_c00138{height:11.733399pt;}
.h8_c00138{height:38.937500pt;}
.h3_c00138{height:70.664062pt;}
.h5_c00138{height:74.906250pt;}
.h6_c00138{height:81.031250pt;}
.h4_c00138{height:87.783854pt;}
.h2_c00138{height:124.843750pt;}
.h0_c00138{height:869.266667pt;}
.h1_c00138{height:869.333333pt;}
.w2_c00138{width:93.222667pt;}
.w0_c00138{width:590.400000pt;}
.w1_c00138{width:590.666667pt;}
.x0_c00138{left:0.000000pt;}
.x5_c00138{left:21.066667pt;}
.x4_c00138{left:22.800000pt;}
.x7_c00138{left:33.333333pt;}
.x2_c00138{left:34.266667pt;}
.x6_c00138{left:37.466667pt;}
.x3_c00138{left:57.866667pt;}
.x1_c00138{left:118.400000pt;}
.x9_c00138{left:252.368205pt;}
.x8_c00138{left:412.533333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_58058c941def2291a06bebea.woff2')format("woff");}.ff1_c00139{font-family:ff1_c00139;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00139;src:url('chunks/assets/font_eb810e385206ce3425567d9c.woff2')format("woff");}.ff2_c00139{font-family:ff2_c00139;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00139;src:url('chunks/assets/font_d4cabf33826617a5768e428c.woff2')format("woff");}.ff3_c00139{font-family:ff3_c00139;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00139;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff4_c00139{font-family:ff4_c00139;line-height:1.219238;font-style: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;}
.ls1_c00139{letter-spacing:0.000000px;}
.ls0_c00139{letter-spacing:11.448000px;}
.sc__c00139{text-shadow:none;}
.sc0_c00139{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00139{-webkit-text-stroke:0px transparent;}
.sc0_c00139{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00139{word-spacing:-59.184000px;}
.ws1_c00139{word-spacing:0.000000px;}
._15_c00139{margin-left:-41.022000px;}
._16_c00139{margin-left:-38.694000px;}
._22_c00139{margin-left:-30.618000px;}
._1f_c00139{margin-left:-20.088000px;}
._1d_c00139{margin-left:-17.739000px;}
._13_c00139{margin-left:-14.013000px;}
._14_c00139{margin-left:-11.097000px;}
._1e_c00139{margin-left:-9.396000px;}
._6_c00139{margin-left:-8.262000px;}
._d_c00139{margin-left:-6.399000px;}
._3_c00139{margin-left:-4.374000px;}
._a_c00139{margin-left:-2.916000px;}
._5_c00139{margin-left:-1.782000px;}
._4_c00139{width:1.134000px;}
._2_c00139{width:2.592000px;}
._1_c00139{width:4.212000px;}
._7_c00139{width:5.265000px;}
._0_c00139{width:6.561000px;}
._b_c00139{width:8.181000px;}
._9_c00139{width:9.315000px;}
._f_c00139{width:11.178000px;}
._c_c00139{width:12.231000px;}
._8_c00139{width:14.337000px;}
._10_c00139{width:15.552000px;}
._e_c00139{width:17.820000px;}
._1a_c00139{width:22.014000px;}
._11_c00139{width:28.512000px;}
._19_c00139{width:31.104000px;}
._12_c00139{width:35.397000px;}
._18_c00139{width:43.983000px;}
._20_c00139{width:164.106000px;}
._1b_c00139{width:185.328000px;}
._17_c00139{width:189.042000px;}
._21_c00139{width:208.170000px;}
._1c_c00139{width:426.465000px;}
._23_c00139{width:502.767000px;}
.fc2_c00139{color:transparent;}
.fc1_c00139{color:rgb(128,128,128);}
.fc0_c00139{color:rgb(0,0,0);}
.fs3_c00139{font-size:48.000000px;}
.fs1_c00139{font-size:72.000000px;}
.fs0_c00139{font-size:81.000000px;}
.fs2_c00139{font-size:102.000000px;}
.y0_c00139{bottom:0.000000px;}
.y25_c00139{bottom:3.105000px;}
.y24_c00139{bottom:7.228357px;}
.y23_c00139{bottom:64.080000px;}
.y22_c00139{bottom:87.480000px;}
.y21_c00139{bottom:113.130000px;}
.y20_c00139{bottom:137.430000px;}
.y1f_c00139{bottom:162.630000px;}
.y1e_c00139{bottom:187.080000px;}
.y1d_c00139{bottom:211.680000px;}
.y1c_c00139{bottom:236.280000px;}
.y1b_c00139{bottom:262.680000px;}
.y1a_c00139{bottom:284.880000px;}
.y19_c00139{bottom:308.580000px;}
.y18_c00139{bottom:333.780000px;}
.y17_c00139{bottom:357.480000px;}
.y16_c00139{bottom:382.380000px;}
.y15_c00139{bottom:406.980000px;}
.y14_c00139{bottom:430.680000px;}
.y13_c00139{bottom:454.680000px;}
.y12_c00139{bottom:478.680000px;}
.y11_c00139{bottom:502.830000px;}
.y10_c00139{bottom:525.780000px;}
.yf_c00139{bottom:550.830000px;}
.ye_c00139{bottom:575.130000px;}
.yd_c00139{bottom:599.130000px;}
.yc_c00139{bottom:622.980000px;}
.yb_c00139{bottom:647.280000px;}
.ya_c00139{bottom:671.280000px;}
.y9_c00139{bottom:695.280000px;}
.y8_c00139{bottom:719.280000px;}
.y7_c00139{bottom:743.880000px;}
.y6_c00139{bottom:767.430000px;}
.y5_c00139{bottom:791.430000px;}
.y4_c00139{bottom:816.030000px;}
.y3_c00139{bottom:839.430000px;}
.y2_c00139{bottom:863.430000px;}
.y1_c00139{bottom:887.580000px;}
.h4_c00139{height:13.200074px;}
.h5_c00139{height:43.804688px;}
.h1_c00139{height:79.497070px;}
.h2_c00139{height:84.269531px;}
.h3_c00139{height:104.839927px;}
.h0_c00139{height:995.250000px;}
.w2_c00139{width:104.875500px;}
.w0_c00139{width:667.425000px;}
.w1_c00139{width:667.500000px;}
.x0_c00139{left:0.000000px;}
.x8_c00139{left:50.700000px;}
.x4_c00139{left:92.550000px;}
.x6_c00139{left:96.600000px;}
.xb_c00139{left:136.650000px;}
.xa_c00139{left:138.150000px;}
.x9_c00139{left:140.100000px;}
.x3_c00139{left:141.750000px;}
.x2_c00139{left:143.550000px;}
.x1_c00139{left:145.800000px;}
.x5_c00139{left:168.300000px;}
.x7_c00139{left:225.450000px;}
.xc_c00139{left:251.550000px;}
.xd_c00139{left:285.526749px;}
@media print{
.v0_c00139{vertical-align:0.000000pt;}
.ls1_c00139{letter-spacing:0.000000pt;}
.ls0_c00139{letter-spacing:10.176000pt;}
.ws0_c00139{word-spacing:-52.608000pt;}
.ws1_c00139{word-spacing:0.000000pt;}
._15_c00139{margin-left:-36.464000pt;}
._16_c00139{margin-left:-34.394667pt;}
._22_c00139{margin-left:-27.216000pt;}
._1f_c00139{margin-left:-17.856000pt;}
._1d_c00139{margin-left:-15.768000pt;}
._13_c00139{margin-left:-12.456000pt;}
._14_c00139{margin-left:-9.864000pt;}
._1e_c00139{margin-left:-8.352000pt;}
._6_c00139{margin-left:-7.344000pt;}
._d_c00139{margin-left:-5.688000pt;}
._3_c00139{margin-left:-3.888000pt;}
._a_c00139{margin-left:-2.592000pt;}
._5_c00139{margin-left:-1.584000pt;}
._4_c00139{width:1.008000pt;}
._2_c00139{width:2.304000pt;}
._1_c00139{width:3.744000pt;}
._7_c00139{width:4.680000pt;}
._0_c00139{width:5.832000pt;}
._b_c00139{width:7.272000pt;}
._9_c00139{width:8.280000pt;}
._f_c00139{width:9.936000pt;}
._c_c00139{width:10.872000pt;}
._8_c00139{width:12.744000pt;}
._10_c00139{width:13.824000pt;}
._e_c00139{width:15.840000pt;}
._1a_c00139{width:19.568000pt;}
._11_c00139{width:25.344000pt;}
._19_c00139{width:27.648000pt;}
._12_c00139{width:31.464000pt;}
._18_c00139{width:39.096000pt;}
._20_c00139{width:145.872000pt;}
._1b_c00139{width:164.736000pt;}
._17_c00139{width:168.037333pt;}
._21_c00139{width:185.040000pt;}
._1c_c00139{width:379.080000pt;}
._23_c00139{width:446.904000pt;}
.fs3_c00139{font-size:42.666667pt;}
.fs1_c00139{font-size:64.000000pt;}
.fs0_c00139{font-size:72.000000pt;}
.fs2_c00139{font-size:90.666667pt;}
.y0_c00139{bottom:0.000000pt;}
.y25_c00139{bottom:2.760000pt;}
.y24_c00139{bottom:6.425206pt;}
.y23_c00139{bottom:56.960000pt;}
.y22_c00139{bottom:77.760000pt;}
.y21_c00139{bottom:100.560000pt;}
.y20_c00139{bottom:122.160000pt;}
.y1f_c00139{bottom:144.560000pt;}
.y1e_c00139{bottom:166.293333pt;}
.y1d_c00139{bottom:188.160000pt;}
.y1c_c00139{bottom:210.026667pt;}
.y1b_c00139{bottom:233.493333pt;}
.y1a_c00139{bottom:253.226667pt;}
.y19_c00139{bottom:274.293333pt;}
.y18_c00139{bottom:296.693333pt;}
.y17_c00139{bottom:317.760000pt;}
.y16_c00139{bottom:339.893333pt;}
.y15_c00139{bottom:361.760000pt;}
.y14_c00139{bottom:382.826667pt;}
.y13_c00139{bottom:404.160000pt;}
.y12_c00139{bottom:425.493333pt;}
.y11_c00139{bottom:446.960000pt;}
.y10_c00139{bottom:467.360000pt;}
.yf_c00139{bottom:489.626667pt;}
.ye_c00139{bottom:511.226667pt;}
.yd_c00139{bottom:532.560000pt;}
.yc_c00139{bottom:553.760000pt;}
.yb_c00139{bottom:575.360000pt;}
.ya_c00139{bottom:596.693333pt;}
.y9_c00139{bottom:618.026667pt;}
.y8_c00139{bottom:639.360000pt;}
.y7_c00139{bottom:661.226667pt;}
.y6_c00139{bottom:682.160000pt;}
.y5_c00139{bottom:703.493333pt;}
.y4_c00139{bottom:725.360000pt;}
.y3_c00139{bottom:746.160000pt;}
.y2_c00139{bottom:767.493333pt;}
.y1_c00139{bottom:788.960000pt;}
.h4_c00139{height:11.733399pt;}
.h5_c00139{height:38.937500pt;}
.h1_c00139{height:70.664062pt;}
.h2_c00139{height:74.906250pt;}
.h3_c00139{height:93.191046pt;}
.h0_c00139{height:884.666667pt;}
.w2_c00139{width:93.222667pt;}
.w0_c00139{width:593.266667pt;}
.w1_c00139{width:593.333333pt;}
.x0_c00139{left:0.000000pt;}
.x8_c00139{left:45.066667pt;}
.x4_c00139{left:82.266667pt;}
.x6_c00139{left:85.866667pt;}
.xb_c00139{left:121.466667pt;}
.xa_c00139{left:122.800000pt;}
.x9_c00139{left:124.533333pt;}
.x3_c00139{left:126.000000pt;}
.x2_c00139{left:127.600000pt;}
.x1_c00139{left:129.600000pt;}
.x5_c00139{left:149.600000pt;}
.x7_c00139{left:200.400000pt;}
.xc_c00139{left:223.600000pt;}
.xd_c00139{left:253.801554pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_206a758e488ef1c6e9de6a5d.woff2')format("woff");}.ff1_c00140{font-family:ff1_c00140;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00140;src:url('chunks/assets/font_f8a9ec5ff3b6a1f5d9d274e3.woff2')format("woff");}.ff2_c00140{font-family:ff2_c00140;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00140;src:url('chunks/assets/font_2e87823afcc290204e338f0b.woff2')format("woff");}.ff3_c00140{font-family:ff3_c00140;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00140;src:url('chunks/assets/font_0cddb45c18b04c2c6b3db1f1.woff2')format("woff");}.ff4_c00140{font-family:ff4_c00140;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00140;src:url('chunks/assets/font_1f8a850291fe89f9d2cb092f.woff2')format("woff");}.ff5_c00140{font-family:ff5_c00140;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00140;src:url('chunks/assets/font_b734be7aa1c62788462ccbf1.woff2')format("woff");}.ff6_c00140{font-family:ff6_c00140;line-height:1.437000;font-style:normal;font-weight: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_c00140;src:url('chunks/assets/font_fab43df117ae2aac77402d3a.woff2')format("woff");}.ff7_c00140{font-family:ff7_c00140;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00140;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff8_c00140{font-family:ff8_c00140;line-height:1.219238;font-style: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;}
.ls4_c00140{letter-spacing:-6.000000px;}
.ls0_c00140{letter-spacing:0.000000px;}
.ls2_c00140{letter-spacing:3.000000px;}
.ls3_c00140{letter-spacing:6.000000px;}
.ls1_c00140{letter-spacing:18.000000px;}
.sc__c00140{text-shadow:none;}
.sc0_c00140{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00140{-webkit-text-stroke:0px transparent;}
.sc0_c00140{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00140{word-spacing:-74.640000px;}
.ws2_c00140{word-spacing:-67.686000px;}
.ws3_c00140{word-spacing:-61.044000px;}
.ws5_c00140{word-spacing:-20.250000px;}
.ws4_c00140{word-spacing:-17.859000px;}
.ws1_c00140{word-spacing:-17.352000px;}
.ws6_c00140{word-spacing:0.000000px;}
._26_c00140{margin-left:-27.621000px;}
._4_c00140{margin-left:-21.114000px;}
._d_c00140{margin-left:-19.320000px;}
._20_c00140{margin-left:-17.208000px;}
._c_c00140{margin-left:-15.600000px;}
._22_c00140{margin-left:-14.049000px;}
._6_c00140{margin-left:-11.796000px;}
._1f_c00140{margin-left:-10.641000px;}
._0_c00140{margin-left:-9.588000px;}
._9_c00140{margin-left:-8.028000px;}
._a_c00140{margin-left:-6.120000px;}
._1_c00140{margin-left:-5.100000px;}
._16_c00140{margin-left:-3.183000px;}
._10_c00140{margin-left:-1.944000px;}
._11_c00140{width:1.620000px;}
._13_c00140{width:2.643000px;}
._3_c00140{width:3.672000px;}
._f_c00140{width:4.968000px;}
._2_c00140{width:6.018000px;}
._5_c00140{width:7.548000px;}
._15_c00140{width:9.552000px;}
._8_c00140{width:10.728000px;}
._12_c00140{width:12.282000px;}
._7_c00140{width:13.464000px;}
._e_c00140{width:14.604000px;}
._1b_c00140{width:15.765000px;}
._17_c00140{width:18.249000px;}
._14_c00140{width:23.358000px;}
._1d_c00140{width:28.434000px;}
._21_c00140{width:30.396000px;}
._1e_c00140{width:33.078000px;}
._18_c00140{width:37.983000px;}
._25_c00140{width:47.160000px;}
._24_c00140{width:50.370000px;}
._1a_c00140{width:76.692000px;}
._23_c00140{width:130.698000px;}
._b_c00140{width:191.100000px;}
._19_c00140{width:222.120000px;}
._1c_c00140{width:351.834000px;}
.fc2_c00140{color:transparent;}
.fc1_c00140{color:rgb(128,128,128);}
.fc0_c00140{color:rgb(0,0,0);}
.fs7_c00140{font-size:48.000000px;}
.fs1_c00140{font-size:72.000000px;}
.fs3_c00140{font-size:81.000000px;}
.fs4_c00140{font-size:84.000000px;}
.fs5_c00140{font-size:87.000000px;}
.fs6_c00140{font-size:99.000000px;}
.fs0_c00140{font-size:102.000000px;}
.fs2_c00140{font-size:120.000000px;}
.y0_c00140{bottom:0.000000px;}
.y26_c00140{bottom:3.105000px;}
.y25_c00140{bottom:7.228369px;}
.y24_c00140{bottom:63.420000px;}
.y23_c00140{bottom:88.470000px;}
.y22_c00140{bottom:113.970000px;}
.y21_c00140{bottom:139.020000px;}
.y20_c00140{bottom:162.720000px;}
.y1f_c00140{bottom:188.670000px;}
.y1e_c00140{bottom:212.970000px;}
.y1d_c00140{bottom:237.570000px;}
.y1c_c00140{bottom:262.470000px;}
.y1b_c00140{bottom:285.420000px;}
.y1a_c00140{bottom:311.070000px;}
.y19_c00140{bottom:334.170000px;}
.y18_c00140{bottom:359.670000px;}
.y17_c00140{bottom:383.670000px;}
.y16_c00140{bottom:407.670000px;}
.y15_c00140{bottom:432.720000px;}
.y14_c00140{bottom:457.020000px;}
.y13_c00140{bottom:481.320000px;}
.y12_c00140{bottom:506.520000px;}
.y11_c00140{bottom:530.820000px;}
.y10_c00140{bottom:554.820000px;}
.yf_c00140{bottom:579.120000px;}
.ye_c00140{bottom:604.170000px;}
.yd_c00140{bottom:627.420000px;}
.yc_c00140{bottom:652.020000px;}
.yb_c00140{bottom:676.620000px;}
.ya_c00140{bottom:700.320000px;}
.y9_c00140{bottom:724.920000px;}
.y8_c00140{bottom:749.820000px;}
.y7_c00140{bottom:774.570000px;}
.y6_c00140{bottom:799.170000px;}
.y5_c00140{bottom:824.520000px;}
.y4_c00140{bottom:847.770000px;}
.y3_c00140{bottom:871.470000px;}
.y2_c00140{bottom:896.070000px;}
.y1_c00140{bottom:932.070000px;}
.h9_c00140{height:13.200073px;}
.ha_c00140{height:43.804688px;}
.h4_c00140{height:79.497070px;}
.h6_c00140{height:82.441406px;}
.h3_c00140{height:84.269531px;}
.h5_c00140{height:91.160156px;}
.h7_c00140{height:91.176000px;}
.h8_c00140{height:125.345215px;}
.h2_c00140{height:140.449219px;}
.h0_c00140{height:970.350000px;}
.h1_c00140{height:970.500000px;}
.w2_c00140{width:104.875500px;}
.w1_c00140{width:659.250000px;}
.w0_c00140{width:659.325000px;}
.x0_c00140{left:0.000000px;}
.x2_c00140{left:25.050000px;}
.x3_c00140{left:36.750000px;}
.x4_c00140{left:37.800000px;}
.x5_c00140{left:39.600000px;}
.x6_c00140{left:41.850000px;}
.x7_c00140{left:43.200000px;}
.x8_c00140{left:44.850000px;}
.x9_c00140{left:45.900000px;}
.xa_c00140{left:48.900000px;}
.xb_c00140{left:49.950000px;}
.xc_c00140{left:51.300000px;}
.xd_c00140{left:52.350000px;}
.xe_c00140{left:53.700000px;}
.xf_c00140{left:54.750000px;}
.x1_c00140{left:191.100000px;}
.x11_c00140{left:281.476730px;}
.x10_c00140{left:480.000000px;}
@media print{
.v0_c00140{vertical-align:0.000000pt;}
.ls4_c00140{letter-spacing:-5.333333pt;}
.ls0_c00140{letter-spacing:0.000000pt;}
.ls2_c00140{letter-spacing:2.666667pt;}
.ls3_c00140{letter-spacing:5.333333pt;}
.ls1_c00140{letter-spacing:16.000000pt;}
.ws0_c00140{word-spacing:-66.346667pt;}
.ws2_c00140{word-spacing:-60.165333pt;}
.ws3_c00140{word-spacing:-54.261333pt;}
.ws5_c00140{word-spacing:-18.000000pt;}
.ws4_c00140{word-spacing:-15.874667pt;}
.ws1_c00140{word-spacing:-15.424000pt;}
.ws6_c00140{word-spacing:0.000000pt;}
._26_c00140{margin-left:-24.552000pt;}
._4_c00140{margin-left:-18.768000pt;}
._d_c00140{margin-left:-17.173333pt;}
._20_c00140{margin-left:-15.296000pt;}
._c_c00140{margin-left:-13.866667pt;}
._22_c00140{margin-left:-12.488000pt;}
._6_c00140{margin-left:-10.485333pt;}
._1f_c00140{margin-left:-9.458667pt;}
._0_c00140{margin-left:-8.522667pt;}
._9_c00140{margin-left:-7.136000pt;}
._a_c00140{margin-left:-5.440000pt;}
._1_c00140{margin-left:-4.533333pt;}
._16_c00140{margin-left:-2.829333pt;}
._10_c00140{margin-left:-1.728000pt;}
._11_c00140{width:1.440000pt;}
._13_c00140{width:2.349333pt;}
._3_c00140{width:3.264000pt;}
._f_c00140{width:4.416000pt;}
._2_c00140{width:5.349333pt;}
._5_c00140{width:6.709333pt;}
._15_c00140{width:8.490667pt;}
._8_c00140{width:9.536000pt;}
._12_c00140{width:10.917333pt;}
._7_c00140{width:11.968000pt;}
._e_c00140{width:12.981333pt;}
._1b_c00140{width:14.013333pt;}
._17_c00140{width:16.221333pt;}
._14_c00140{width:20.762667pt;}
._1d_c00140{width:25.274667pt;}
._21_c00140{width:27.018667pt;}
._1e_c00140{width:29.402667pt;}
._18_c00140{width:33.762667pt;}
._25_c00140{width:41.920000pt;}
._24_c00140{width:44.773333pt;}
._1a_c00140{width:68.170667pt;}
._23_c00140{width:116.176000pt;}
._b_c00140{width:169.866667pt;}
._19_c00140{width:197.440000pt;}
._1c_c00140{width:312.741333pt;}
.fs7_c00140{font-size:42.666667pt;}
.fs1_c00140{font-size:64.000000pt;}
.fs3_c00140{font-size:72.000000pt;}
.fs4_c00140{font-size:74.666667pt;}
.fs5_c00140{font-size:77.333333pt;}
.fs6_c00140{font-size:88.000000pt;}
.fs0_c00140{font-size:90.666667pt;}
.fs2_c00140{font-size:106.666667pt;}
.y0_c00140{bottom:0.000000pt;}
.y26_c00140{bottom:2.760000pt;}
.y25_c00140{bottom:6.425217pt;}
.y24_c00140{bottom:56.373333pt;}
.y23_c00140{bottom:78.640000pt;}
.y22_c00140{bottom:101.306667pt;}
.y21_c00140{bottom:123.573333pt;}
.y20_c00140{bottom:144.640000pt;}
.y1f_c00140{bottom:167.706667pt;}
.y1e_c00140{bottom:189.306667pt;}
.y1d_c00140{bottom:211.173333pt;}
.y1c_c00140{bottom:233.306667pt;}
.y1b_c00140{bottom:253.706667pt;}
.y1a_c00140{bottom:276.506667pt;}
.y19_c00140{bottom:297.040000pt;}
.y18_c00140{bottom:319.706667pt;}
.y17_c00140{bottom:341.040000pt;}
.y16_c00140{bottom:362.373333pt;}
.y15_c00140{bottom:384.640000pt;}
.y14_c00140{bottom:406.240000pt;}
.y13_c00140{bottom:427.840000pt;}
.y12_c00140{bottom:450.240000pt;}
.y11_c00140{bottom:471.840000pt;}
.y10_c00140{bottom:493.173333pt;}
.yf_c00140{bottom:514.773333pt;}
.ye_c00140{bottom:537.040000pt;}
.yd_c00140{bottom:557.706667pt;}
.yc_c00140{bottom:579.573333pt;}
.yb_c00140{bottom:601.440000pt;}
.ya_c00140{bottom:622.506667pt;}
.y9_c00140{bottom:644.373333pt;}
.y8_c00140{bottom:666.506667pt;}
.y7_c00140{bottom:688.506667pt;}
.y6_c00140{bottom:710.373333pt;}
.y5_c00140{bottom:732.906667pt;}
.y4_c00140{bottom:753.573333pt;}
.y3_c00140{bottom:774.640000pt;}
.y2_c00140{bottom:796.506667pt;}
.y1_c00140{bottom:828.506667pt;}
.h9_c00140{height:11.733399pt;}
.ha_c00140{height:38.937500pt;}
.h4_c00140{height:70.664062pt;}
.h6_c00140{height:73.281250pt;}
.h3_c00140{height:74.906250pt;}
.h5_c00140{height:81.031250pt;}
.h7_c00140{height:81.045333pt;}
.h8_c00140{height:111.417969pt;}
.h2_c00140{height:124.843750pt;}
.h0_c00140{height:862.533333pt;}
.h1_c00140{height:862.666667pt;}
.w2_c00140{width:93.222667pt;}
.w1_c00140{width:586.000000pt;}
.w0_c00140{width:586.066667pt;}
.x0_c00140{left:0.000000pt;}
.x2_c00140{left:22.266667pt;}
.x3_c00140{left:32.666667pt;}
.x4_c00140{left:33.600000pt;}
.x5_c00140{left:35.200000pt;}
.x6_c00140{left:37.200000pt;}
.x7_c00140{left:38.400000pt;}
.x8_c00140{left:39.866667pt;}
.x9_c00140{left:40.800000pt;}
.xa_c00140{left:43.466667pt;}
.xb_c00140{left:44.400000pt;}
.xc_c00140{left:45.600000pt;}
.xd_c00140{left:46.533333pt;}
.xe_c00140{left:47.733333pt;}
.xf_c00140{left:48.666667pt;}
.x1_c00140{left:169.866667pt;}
.x11_c00140{left:250.201538pt;}
.x10_c00140{left:426.666667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_9de738eb8d73c7e3d73e8c25.woff2')format("woff");}.ff1_c00141{font-family:ff1_c00141;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00141;src:url('chunks/assets/font_e2e58598b689f050da3e8951.woff2')format("woff");}.ff2_c00141{font-family:ff2_c00141;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00141;src:url('chunks/assets/font_c889af6d975adc1bdd1ccbcb.woff2')format("woff");}.ff3_c00141{font-family:ff3_c00141;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00141;src:url('chunks/assets/font_dc298f8d873cd9933e7c07d4.woff2')format("woff");}.ff4_c00141{font-family:ff4_c00141;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00141;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c00141{font-family:ff5_c00141;line-height:1.219238;font-style: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;}
.ls1_c00141{letter-spacing:-6.000000px;}
.ls0_c00141{letter-spacing:0.000000px;}
.sc__c00141{text-shadow:none;}
.sc0_c00141{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00141{-webkit-text-stroke:0px transparent;}
.sc0_c00141{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00141{word-spacing:-59.184000px;}
.ws1_c00141{word-spacing:-21.000000px;}
.ws2_c00141{word-spacing:0.000000px;}
._13_c00141{margin-left:-44.388000px;}
._1f_c00141{margin-left:-22.680000px;}
._16_c00141{margin-left:-15.798000px;}
._f_c00141{margin-left:-12.354000px;}
._e_c00141{margin-left:-10.440000px;}
._14_c00141{margin-left:-9.282000px;}
._12_c00141{margin-left:-8.100000px;}
._21_c00141{margin-left:-6.966000px;}
._18_c00141{margin-left:-5.577000px;}
._d_c00141{margin-left:-4.536000px;}
._c_c00141{margin-left:-3.402000px;}
._a_c00141{margin-left:-1.458000px;}
._1_c00141{width:1.377000px;}
._0_c00141{width:2.673000px;}
._4_c00141{width:4.536000px;}
._7_c00141{width:6.237000px;}
._b_c00141{width:7.290000px;}
._5_c00141{width:9.234000px;}
._19_c00141{width:10.287000px;}
._8_c00141{width:11.340000px;}
._3_c00141{width:12.879000px;}
._10_c00141{width:14.337000px;}
._2_c00141{width:15.795000px;}
._1a_c00141{width:16.848000px;}
._6_c00141{width:18.630000px;}
._1d_c00141{width:22.923000px;}
._11_c00141{width:32.076000px;}
._9_c00141{width:37.659000px;}
._1b_c00141{width:57.672000px;}
._17_c00141{width:60.729000px;}
._15_c00141{width:140.916000px;}
._20_c00141{width:172.194000px;}
._1c_c00141{width:294.861000px;}
._1e_c00141{width:344.250000px;}
.fc2_c00141{color:transparent;}
.fc1_c00141{color:rgb(128,128,128);}
.fc0_c00141{color:rgb(0,0,0);}
.fs6_c00141{font-size:48.000000px;}
.fs3_c00141{font-size:51.000000px;}
.fs1_c00141{font-size:72.000000px;}
.fs0_c00141{font-size:81.000000px;}
.fs4_c00141{font-size:84.000000px;}
.fs2_c00141{font-size:87.000000px;}
.fs5_c00141{font-size:96.000000px;}
.y0_c00141{bottom:0.000000px;}
.y22_c00141{bottom:3.105000px;}
.y21_c00141{bottom:7.228357px;}
.y20_c00141{bottom:69.930000px;}
.y1f_c00141{bottom:93.780000px;}
.y1e_c00141{bottom:119.130000px;}
.y1d_c00141{bottom:144.180000px;}
.y1c_c00141{bottom:169.380000px;}
.y1b_c00141{bottom:194.430000px;}
.y1a_c00141{bottom:218.430000px;}
.y19_c00141{bottom:244.980000px;}
.y18_c00141{bottom:269.280000px;}
.y17_c00141{bottom:293.280000px;}
.y16_c00141{bottom:317.880000px;}
.y15_c00141{bottom:344.580000px;}
.y14_c00141{bottom:366.930000px;}
.y13_c00141{bottom:391.230000px;}
.y12_c00141{bottom:416.130000px;}
.y11_c00141{bottom:439.830000px;}
.y10_c00141{bottom:465.480000px;}
.yf_c00141{bottom:489.030000px;}
.ye_c00141{bottom:513.630000px;}
.yd_c00141{bottom:537.330000px;}
.yc_c00141{bottom:562.230000px;}
.yb_c00141{bottom:613.980000px;}
.ya_c00141{bottom:643.230000px;}
.y9_c00141{bottom:672.330000px;}
.y8_c00141{bottom:701.430000px;}
.y7_c00141{bottom:757.080000px;}
.y6_c00141{bottom:782.280000px;}
.y5_c00141{bottom:805.680000px;}
.y4_c00141{bottom:830.580000px;}
.y3_c00141{bottom:854.580000px;}
.y2_c00141{bottom:879.930000px;}
.y1_c00141{bottom:902.430000px;}
.h7_c00141{height:13.200074px;}
.h8_c00141{height:43.804688px;}
.h1_c00141{height:79.497070px;}
.h4_c00141{height:82.400391px;}
.h5_c00141{height:82.441406px;}
.h2_c00141{height:84.269531px;}
.h6_c00141{height:94.218750px;}
.h3_c00141{height:110.151855px;}
.h0_c00141{height:995.250000px;}
.w2_c00141{width:104.875500px;}
.w0_c00141{width:667.425000px;}
.w1_c00141{width:667.500000px;}
.x0_c00141{left:0.000000px;}
.x14_c00141{left:36.150000px;}
.x13_c00141{left:37.350000px;}
.xf_c00141{left:39.450000px;}
.x2_c00141{left:49.500000px;}
.xe_c00141{left:107.550000px;}
.x10_c00141{left:122.850000px;}
.x6_c00141{left:126.900000px;}
.x12_c00141{left:128.250000px;}
.x11_c00141{left:129.300000px;}
.xc_c00141{left:132.000000px;}
.xd_c00141{left:133.200000px;}
.x5_c00141{left:138.750000px;}
.x4_c00141{left:139.950000px;}
.x3_c00141{left:142.050000px;}
.x1_c00141{left:143.400000px;}
.x7_c00141{left:182.550000px;}
.xb_c00141{left:252.150000px;}
.xa_c00141{left:253.350000px;}
.x8_c00141{left:258.900000px;}
.x16_c00141{left:285.526749px;}
.x9_c00141{left:334.800000px;}
.x15_c00141{left:564.600000px;}
@media print{
.v0_c00141{vertical-align:0.000000pt;}
.ls1_c00141{letter-spacing:-5.333333pt;}
.ls0_c00141{letter-spacing:0.000000pt;}
.ws0_c00141{word-spacing:-52.608000pt;}
.ws1_c00141{word-spacing:-18.666667pt;}
.ws2_c00141{word-spacing:0.000000pt;}
._13_c00141{margin-left:-39.456000pt;}
._1f_c00141{margin-left:-20.160000pt;}
._16_c00141{margin-left:-14.042667pt;}
._f_c00141{margin-left:-10.981333pt;}
._e_c00141{margin-left:-9.280000pt;}
._14_c00141{margin-left:-8.250667pt;}
._12_c00141{margin-left:-7.200000pt;}
._21_c00141{margin-left:-6.192000pt;}
._18_c00141{margin-left:-4.957333pt;}
._d_c00141{margin-left:-4.032000pt;}
._c_c00141{margin-left:-3.024000pt;}
._a_c00141{margin-left:-1.296000pt;}
._1_c00141{width:1.224000pt;}
._0_c00141{width:2.376000pt;}
._4_c00141{width:4.032000pt;}
._7_c00141{width:5.544000pt;}
._b_c00141{width:6.480000pt;}
._5_c00141{width:8.208000pt;}
._19_c00141{width:9.144000pt;}
._8_c00141{width:10.080000pt;}
._3_c00141{width:11.448000pt;}
._10_c00141{width:12.744000pt;}
._2_c00141{width:14.040000pt;}
._1a_c00141{width:14.976000pt;}
._6_c00141{width:16.560000pt;}
._1d_c00141{width:20.376000pt;}
._11_c00141{width:28.512000pt;}
._9_c00141{width:33.474667pt;}
._1b_c00141{width:51.264000pt;}
._17_c00141{width:53.981333pt;}
._15_c00141{width:125.258667pt;}
._20_c00141{width:153.061333pt;}
._1c_c00141{width:262.098667pt;}
._1e_c00141{width:306.000000pt;}
.fs6_c00141{font-size:42.666667pt;}
.fs3_c00141{font-size:45.333333pt;}
.fs1_c00141{font-size:64.000000pt;}
.fs0_c00141{font-size:72.000000pt;}
.fs4_c00141{font-size:74.666667pt;}
.fs2_c00141{font-size:77.333333pt;}
.fs5_c00141{font-size:85.333333pt;}
.y0_c00141{bottom:0.000000pt;}
.y22_c00141{bottom:2.760000pt;}
.y21_c00141{bottom:6.425206pt;}
.y20_c00141{bottom:62.160000pt;}
.y1f_c00141{bottom:83.360000pt;}
.y1e_c00141{bottom:105.893333pt;}
.y1d_c00141{bottom:128.160000pt;}
.y1c_c00141{bottom:150.560000pt;}
.y1b_c00141{bottom:172.826667pt;}
.y1a_c00141{bottom:194.160000pt;}
.y19_c00141{bottom:217.760000pt;}
.y18_c00141{bottom:239.360000pt;}
.y17_c00141{bottom:260.693333pt;}
.y16_c00141{bottom:282.560000pt;}
.y15_c00141{bottom:306.293333pt;}
.y14_c00141{bottom:326.160000pt;}
.y13_c00141{bottom:347.760000pt;}
.y12_c00141{bottom:369.893333pt;}
.y11_c00141{bottom:390.960000pt;}
.y10_c00141{bottom:413.760000pt;}
.yf_c00141{bottom:434.693333pt;}
.ye_c00141{bottom:456.560000pt;}
.yd_c00141{bottom:477.626667pt;}
.yc_c00141{bottom:499.760000pt;}
.yb_c00141{bottom:545.760000pt;}
.ya_c00141{bottom:571.760000pt;}
.y9_c00141{bottom:597.626667pt;}
.y8_c00141{bottom:623.493333pt;}
.y7_c00141{bottom:672.960000pt;}
.y6_c00141{bottom:695.360000pt;}
.y5_c00141{bottom:716.160000pt;}
.y4_c00141{bottom:738.293333pt;}
.y3_c00141{bottom:759.626667pt;}
.y2_c00141{bottom:782.160000pt;}
.y1_c00141{bottom:802.160000pt;}
.h7_c00141{height:11.733399pt;}
.h8_c00141{height:38.937500pt;}
.h1_c00141{height:70.664062pt;}
.h4_c00141{height:73.244792pt;}
.h5_c00141{height:73.281250pt;}
.h2_c00141{height:74.906250pt;}
.h6_c00141{height:83.750000pt;}
.h3_c00141{height:97.912760pt;}
.h0_c00141{height:884.666667pt;}
.w2_c00141{width:93.222667pt;}
.w0_c00141{width:593.266667pt;}
.w1_c00141{width:593.333333pt;}
.x0_c00141{left:0.000000pt;}
.x14_c00141{left:32.133333pt;}
.x13_c00141{left:33.200000pt;}
.xf_c00141{left:35.066667pt;}
.x2_c00141{left:44.000000pt;}
.xe_c00141{left:95.600000pt;}
.x10_c00141{left:109.200000pt;}
.x6_c00141{left:112.800000pt;}
.x12_c00141{left:114.000000pt;}
.x11_c00141{left:114.933333pt;}
.xc_c00141{left:117.333333pt;}
.xd_c00141{left:118.400000pt;}
.x5_c00141{left:123.333333pt;}
.x4_c00141{left:124.400000pt;}
.x3_c00141{left:126.266667pt;}
.x1_c00141{left:127.466667pt;}
.x7_c00141{left:162.266667pt;}
.xb_c00141{left:224.133333pt;}
.xa_c00141{left:225.200000pt;}
.x8_c00141{left:230.133333pt;}
.x16_c00141{left:253.801554pt;}
.x9_c00141{left:297.600000pt;}
.x15_c00141{left:501.866667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_0fe63926b5635ef733ec1ddf.woff2')format("woff");}.ff1_c00142{font-family:ff1_c00142;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00142;src:url('chunks/assets/font_fc14751c565343ede2ea20f0.woff2')format("woff");}.ff2_c00142{font-family:ff2_c00142;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00142;src:url('chunks/assets/font_ef5ab50a632473668214bd70.woff2')format("woff");}.ff3_c00142{font-family:ff3_c00142;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00142;src:url('chunks/assets/font_1aeaba985eb95423f8f04cde.woff2')format("woff");}.ff4_c00142{font-family:ff4_c00142;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00142;src:url('chunks/assets/font_b99e88485c2417c7d0eac8e2.woff2')format("woff");}.ff5_c00142{font-family:ff5_c00142;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00142;src:url('chunks/assets/font_69173366757ce1085bfa5bdb.woff2')format("woff");}.ff6_c00142{font-family:ff6_c00142;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00142;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c00142{font-family:ff7_c00142;line-height:1.219238;font-style: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;}
.v1_c00142{vertical-align:129.600000px;}
.ls5_c00142{letter-spacing:-12.000000px;}
.ls3_c00142{letter-spacing:0.000000px;}
.ls0_c00142{letter-spacing:0.900000px;}
.ls4_c00142{letter-spacing:12.000000px;}
.ls2_c00142{letter-spacing:34.704000px;}
.ls1_c00142{letter-spacing:74.361000px;}
.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:-67.686000px;}
.ws2_c00142{word-spacing:-20.250000px;}
.ws1_c00142{word-spacing:-17.352000px;}
.ws3_c00142{word-spacing:0.000000px;}
._27_c00142{margin-left:-32.805000px;}
._23_c00142{margin-left:-30.453000px;}
._2_c00142{margin-left:-29.007000px;}
._8_c00142{margin-left:-27.588000px;}
._15_c00142{margin-left:-23.085000px;}
._1b_c00142{margin-left:-18.963000px;}
._12_c00142{margin-left:-12.159000px;}
._16_c00142{margin-left:-9.792000px;}
._19_c00142{margin-left:-8.451000px;}
._7_c00142{margin-left:-7.260000px;}
._1d_c00142{margin-left:-5.796000px;}
._d_c00142{margin-left:-4.707000px;}
._5_c00142{margin-left:-3.564000px;}
._4_c00142{margin-left:-2.475000px;}
._0_c00142{margin-left:-1.188000px;}
._9_c00142{width:1.215000px;}
._b_c00142{width:2.583000px;}
._a_c00142{width:3.933000px;}
._1_c00142{width:5.247000px;}
._3_c00142{width:6.435000px;}
._e_c00142{width:7.947000px;}
._f_c00142{width:9.738000px;}
._11_c00142{width:11.250000px;}
._10_c00142{width:12.384000px;}
._17_c00142{width:14.112000px;}
._c_c00142{width:15.147000px;}
._18_c00142{width:16.155000px;}
._1a_c00142{width:17.649000px;}
._25_c00142{width:18.960000px;}
._21_c00142{width:22.194000px;}
._24_c00142{width:24.642000px;}
._1e_c00142{width:26.256000px;}
._26_c00142{width:29.214000px;}
._1c_c00142{width:34.851000px;}
._22_c00142{width:44.550000px;}
._13_c00142{width:46.629000px;}
._14_c00142{width:48.879000px;}
._6_c00142{width:59.073000px;}
._20_c00142{width:152.310000px;}
._1f_c00142{width:170.199000px;}
._28_c00142{width:524.394000px;}
.fc2_c00142{color:transparent;}
.fc1_c00142{color:rgb(128,128,128);}
.fc0_c00142{color:rgb(0,0,0);}
.fs8_c00142{font-size:48.000000px;}
.fs7_c00142{font-size:60.000000px;}
.fs5_c00142{font-size:72.000000px;}
.fs4_c00142{font-size:78.000000px;}
.fs2_c00142{font-size:81.000000px;}
.fs3_c00142{font-size:87.000000px;}
.fs0_c00142{font-size:99.000000px;}
.fs1_c00142{font-size:132.000000px;}
.fs6_c00142{font-size:243.000000px;}
.y0_c00142{bottom:0.000000px;}
.y25_c00142{bottom:3.105000px;}
.y24_c00142{bottom:7.228355px;}
.y23_c00142{bottom:59.385000px;}
.y22_c00142{bottom:83.235000px;}
.y21_c00142{bottom:107.235000px;}
.y20_c00142{bottom:131.835000px;}
.y1f_c00142{bottom:156.285000px;}
.y1e_c00142{bottom:180.885000px;}
.y1d_c00142{bottom:205.485000px;}
.y1c_c00142{bottom:230.085000px;}
.y1b_c00142{bottom:254.835000px;}
.y1a_c00142{bottom:279.435000px;}
.y19_c00142{bottom:303.435000px;}
.y18_c00142{bottom:327.585000px;}
.y17_c00142{bottom:351.885000px;}
.y16_c00142{bottom:376.335000px;}
.y15_c00142{bottom:400.185000px;}
.y14_c00142{bottom:424.485000px;}
.y13_c00142{bottom:448.785000px;}
.y11_c00142{bottom:465.735000px;}
.y12_c00142{bottom:473.535000px;}
.y10_c00142{bottom:521.985000px;}
.yf_c00142{bottom:568.935000px;}
.ye_c00142{bottom:594.285000px;}
.yd_c00142{bottom:618.885000px;}
.yc_c00142{bottom:643.185000px;}
.yb_c00142{bottom:666.885000px;}
.ya_c00142{bottom:690.885000px;}
.y9_c00142{bottom:715.785000px;}
.y8_c00142{bottom:741.735000px;}
.y7_c00142{bottom:764.685000px;}
.y6_c00142{bottom:789.285000px;}
.y5_c00142{bottom:811.935000px;}
.y4_c00142{bottom:838.035000px;}
.y3_c00142{bottom:862.635000px;}
.y2_c00142{bottom:887.235000px;}
.y1_c00142{bottom:919.935000px;}
.h8_c00142{height:13.200074px;}
.h9_c00142{height:43.804688px;}
.h3_c00142{height:79.497070px;}
.h7_c00142{height:84.269531px;}
.h4_c00142{height:91.176000px;}
.h5_c00142{height:98.756836px;}
.h2_c00142{height:167.126953px;}
.h6_c00142{height:259.281000px;}
.h0_c00142{height:972.525000px;}
.h1_c00142{height:972.750000px;}
.w2_c00142{width:104.875500px;}
.w0_c00142{width:660.450000px;}
.w1_c00142{width:660.750000px;}
.x0_c00142{left:0.000000px;}
.x2_c00142{left:30.600000px;}
.x3_c00142{left:31.650000px;}
.x5_c00142{left:32.700000px;}
.x6_c00142{left:34.050000px;}
.xa_c00142{left:35.100000px;}
.xb_c00142{left:36.450000px;}
.x8_c00142{left:38.100000px;}
.x1_c00142{left:43.500000px;}
.x4_c00142{left:57.300000px;}
.x9_c00142{left:79.350000px;}
.x7_c00142{left:138.750000px;}
.xd_c00142{left:282.039230px;}
.xc_c00142{left:318.150000px;}
@media print{
.v0_c00142{vertical-align:0.000000pt;}
.v1_c00142{vertical-align:115.200000pt;}
.ls5_c00142{letter-spacing:-10.666667pt;}
.ls3_c00142{letter-spacing:0.000000pt;}
.ls0_c00142{letter-spacing:0.800000pt;}
.ls4_c00142{letter-spacing:10.666667pt;}
.ls2_c00142{letter-spacing:30.848000pt;}
.ls1_c00142{letter-spacing:66.098667pt;}
.ws0_c00142{word-spacing:-60.165333pt;}
.ws2_c00142{word-spacing:-18.000000pt;}
.ws1_c00142{word-spacing:-15.424000pt;}
.ws3_c00142{word-spacing:0.000000pt;}
._27_c00142{margin-left:-29.160000pt;}
._23_c00142{margin-left:-27.069333pt;}
._2_c00142{margin-left:-25.784000pt;}
._8_c00142{margin-left:-24.522667pt;}
._15_c00142{margin-left:-20.520000pt;}
._1b_c00142{margin-left:-16.856000pt;}
._12_c00142{margin-left:-10.808000pt;}
._16_c00142{margin-left:-8.704000pt;}
._19_c00142{margin-left:-7.512000pt;}
._7_c00142{margin-left:-6.453333pt;}
._1d_c00142{margin-left:-5.152000pt;}
._d_c00142{margin-left:-4.184000pt;}
._5_c00142{margin-left:-3.168000pt;}
._4_c00142{margin-left:-2.200000pt;}
._0_c00142{margin-left:-1.056000pt;}
._9_c00142{width:1.080000pt;}
._b_c00142{width:2.296000pt;}
._a_c00142{width:3.496000pt;}
._1_c00142{width:4.664000pt;}
._3_c00142{width:5.720000pt;}
._e_c00142{width:7.064000pt;}
._f_c00142{width:8.656000pt;}
._11_c00142{width:10.000000pt;}
._10_c00142{width:11.008000pt;}
._17_c00142{width:12.544000pt;}
._c_c00142{width:13.464000pt;}
._18_c00142{width:14.360000pt;}
._1a_c00142{width:15.688000pt;}
._25_c00142{width:16.853333pt;}
._21_c00142{width:19.728000pt;}
._24_c00142{width:21.904000pt;}
._1e_c00142{width:23.338667pt;}
._26_c00142{width:25.968000pt;}
._1c_c00142{width:30.978667pt;}
._22_c00142{width:39.600000pt;}
._13_c00142{width:41.448000pt;}
._14_c00142{width:43.448000pt;}
._6_c00142{width:52.509333pt;}
._20_c00142{width:135.386667pt;}
._1f_c00142{width:151.288000pt;}
._28_c00142{width:466.128000pt;}
.fs8_c00142{font-size:42.666667pt;}
.fs7_c00142{font-size:53.333333pt;}
.fs5_c00142{font-size:64.000000pt;}
.fs4_c00142{font-size:69.333333pt;}
.fs2_c00142{font-size:72.000000pt;}
.fs3_c00142{font-size:77.333333pt;}
.fs0_c00142{font-size:88.000000pt;}
.fs1_c00142{font-size:117.333333pt;}
.fs6_c00142{font-size:216.000000pt;}
.y0_c00142{bottom:0.000000pt;}
.y25_c00142{bottom:2.760000pt;}
.y24_c00142{bottom:6.425204pt;}
.y23_c00142{bottom:52.786667pt;}
.y22_c00142{bottom:73.986667pt;}
.y21_c00142{bottom:95.320000pt;}
.y20_c00142{bottom:117.186667pt;}
.y1f_c00142{bottom:138.920000pt;}
.y1e_c00142{bottom:160.786667pt;}
.y1d_c00142{bottom:182.653333pt;}
.y1c_c00142{bottom:204.520000pt;}
.y1b_c00142{bottom:226.520000pt;}
.y1a_c00142{bottom:248.386667pt;}
.y19_c00142{bottom:269.720000pt;}
.y18_c00142{bottom:291.186667pt;}
.y17_c00142{bottom:312.786667pt;}
.y16_c00142{bottom:334.520000pt;}
.y15_c00142{bottom:355.720000pt;}
.y14_c00142{bottom:377.320000pt;}
.y13_c00142{bottom:398.920000pt;}
.y11_c00142{bottom:413.986667pt;}
.y12_c00142{bottom:420.920000pt;}
.y10_c00142{bottom:463.986667pt;}
.yf_c00142{bottom:505.720000pt;}
.ye_c00142{bottom:528.253333pt;}
.yd_c00142{bottom:550.120000pt;}
.yc_c00142{bottom:571.720000pt;}
.yb_c00142{bottom:592.786667pt;}
.ya_c00142{bottom:614.120000pt;}
.y9_c00142{bottom:636.253333pt;}
.y8_c00142{bottom:659.320000pt;}
.y7_c00142{bottom:679.720000pt;}
.y6_c00142{bottom:701.586667pt;}
.y5_c00142{bottom:721.720000pt;}
.y4_c00142{bottom:744.920000pt;}
.y3_c00142{bottom:766.786667pt;}
.y2_c00142{bottom:788.653333pt;}
.y1_c00142{bottom:817.720000pt;}
.h8_c00142{height:11.733399pt;}
.h9_c00142{height:38.937500pt;}
.h3_c00142{height:70.664062pt;}
.h7_c00142{height:74.906250pt;}
.h4_c00142{height:81.045333pt;}
.h5_c00142{height:87.783854pt;}
.h2_c00142{height:148.557292pt;}
.h6_c00142{height:230.472000pt;}
.h0_c00142{height:864.466667pt;}
.h1_c00142{height:864.666667pt;}
.w2_c00142{width:93.222667pt;}
.w0_c00142{width:587.066667pt;}
.w1_c00142{width:587.333333pt;}
.x0_c00142{left:0.000000pt;}
.x2_c00142{left:27.200000pt;}
.x3_c00142{left:28.133333pt;}
.x5_c00142{left:29.066667pt;}
.x6_c00142{left:30.266667pt;}
.xa_c00142{left:31.200000pt;}
.xb_c00142{left:32.400000pt;}
.x8_c00142{left:33.866667pt;}
.x1_c00142{left:38.666667pt;}
.x4_c00142{left:50.933333pt;}
.x9_c00142{left:70.533333pt;}
.x7_c00142{left:123.333333pt;}
.xd_c00142{left:250.701538pt;}
.xc_c00142{left:282.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_eae3e265068b1d2f6537a2e8.woff2')format("woff");}.ff1_c00143{font-family:ff1_c00143;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00143;src:url('chunks/assets/font_9816f718f19541a6b8d6cf96.woff2')format("woff");}.ff2_c00143{font-family:ff2_c00143;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00143;src:url('chunks/assets/font_8c737937ab7ef2c896700539.woff2')format("woff");}.ff3_c00143{font-family:ff3_c00143;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00143;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff4_c00143{font-family:ff4_c00143;line-height:1.219238;font-style: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;}
.ls1_c00143{letter-spacing:0.000000px;}
.ls0_c00143{letter-spacing:39.402000px;}
.sc__c00143{text-shadow:none;}
.sc0_c00143{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00143{-webkit-text-stroke:0px transparent;}
.sc0_c00143{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00143{word-spacing:-17.352000px;}
.ws1_c00143{word-spacing:-0.864000px;}
.ws2_c00143{word-spacing:0.000000px;}
._27_c00143{margin-left:-27.945000px;}
._1d_c00143{margin-left:-23.409000px;}
._b_c00143{margin-left:-21.060000px;}
._13_c00143{margin-left:-14.418000px;}
._d_c00143{margin-left:-12.636000px;}
._e_c00143{margin-left:-11.016000px;}
._15_c00143{margin-left:-9.639000px;}
._20_c00143{margin-left:-7.743000px;}
._a_c00143{margin-left:-6.723000px;}
._f_c00143{margin-left:-5.265000px;}
._7_c00143{margin-left:-3.240000px;}
._8_c00143{margin-left:-1.944000px;}
._5_c00143{width:1.053000px;}
._1_c00143{width:2.754000px;}
._4_c00143{width:3.888000px;}
._0_c00143{width:5.103000px;}
._c_c00143{width:6.237000px;}
._2_c00143{width:7.533000px;}
._9_c00143{width:8.586000px;}
._17_c00143{width:9.963000px;}
._3_c00143{width:11.259000px;}
._18_c00143{width:12.474000px;}
._6_c00143{width:13.608000px;}
._11_c00143{width:15.843000px;}
._1a_c00143{width:17.010000px;}
._22_c00143{width:19.164000px;}
._21_c00143{width:20.175000px;}
._28_c00143{width:21.708000px;}
._12_c00143{width:22.728000px;}
._1b_c00143{width:23.733000px;}
._19_c00143{width:25.029000px;}
._1c_c00143{width:26.487000px;}
._1f_c00143{width:32.724000px;}
._24_c00143{width:35.235000px;}
._14_c00143{width:41.958000px;}
._23_c00143{width:61.104000px;}
._1e_c00143{width:108.135000px;}
._16_c00143{width:182.817000px;}
._25_c00143{width:245.511000px;}
._10_c00143{width:339.696000px;}
._26_c00143{width:544.839000px;}
.fc2_c00143{color:transparent;}
.fc1_c00143{color:rgb(128,128,128);}
.fc0_c00143{color:rgb(0,0,0);}
.fs4_c00143{font-size:48.000000px;}
.fs2_c00143{font-size:57.000000px;}
.fs1_c00143{font-size:72.000000px;}
.fs3_c00143{font-size:78.000000px;}
.fs0_c00143{font-size:81.000000px;}
.y0_c00143{bottom:0.000000px;}
.y25_c00143{bottom:3.105000px;}
.y24_c00143{bottom:7.228357px;}
.y23_c00143{bottom:63.180000px;}
.y22_c00143{bottom:87.480000px;}
.y21_c00143{bottom:112.830000px;}
.y20_c00143{bottom:137.130000px;}
.y1f_c00143{bottom:161.730000px;}
.y1e_c00143{bottom:186.930000px;}
.y1d_c00143{bottom:212.580000px;}
.y1c_c00143{bottom:236.280000px;}
.y1b_c00143{bottom:260.880000px;}
.y1a_c00143{bottom:285.630000px;}
.y19_c00143{bottom:310.530000px;}
.y18_c00143{bottom:335.430000px;}
.y17_c00143{bottom:360.180000px;}
.y16_c00143{bottom:384.480000px;}
.y15_c00143{bottom:408.780000px;}
.y14_c00143{bottom:433.380000px;}
.y13_c00143{bottom:457.680000px;}
.y12_c00143{bottom:483.930000px;}
.y11_c00143{bottom:506.580000px;}
.y10_c00143{bottom:530.580000px;}
.yf_c00143{bottom:553.830000px;}
.ye_c00143{bottom:578.880000px;}
.yd_c00143{bottom:604.080000px;}
.yc_c00143{bottom:628.380000px;}
.yb_c00143{bottom:652.830000px;}
.ya_c00143{bottom:677.730000px;}
.y9_c00143{bottom:701.280000px;}
.y8_c00143{bottom:725.580000px;}
.y7_c00143{bottom:750.030000px;}
.y6_c00143{bottom:775.680000px;}
.y5_c00143{bottom:799.230000px;}
.y4_c00143{bottom:823.530000px;}
.y3_c00143{bottom:847.830000px;}
.y2_c00143{bottom:874.080000px;}
.y1_c00143{bottom:896.730000px;}
.h5_c00143{height:13.200074px;}
.h6_c00143{height:43.804688px;}
.h1_c00143{height:79.497070px;}
.h4_c00143{height:84.269531px;}
.h2_c00143{height:91.160156px;}
.h3_c00143{height:98.756836px;}
.h0_c00143{height:995.250000px;}
.w2_c00143{width:104.875500px;}
.w0_c00143{width:667.425000px;}
.w1_c00143{width:667.500000px;}
.x0_c00143{left:0.000000px;}
.xb_c00143{left:31.950000px;}
.x4_c00143{left:38.100000px;}
.xa_c00143{left:42.450000px;}
.x3_c00143{left:111.000000px;}
.xd_c00143{left:121.800000px;}
.xc_c00143{left:125.550000px;}
.x9_c00143{left:129.150000px;}
.x8_c00143{left:130.200000px;}
.x7_c00143{left:131.550000px;}
.x2_c00143{left:133.950000px;}
.x5_c00143{left:135.600000px;}
.x1_c00143{left:137.400000px;}
.x6_c00143{left:159.300000px;}
.xf_c00143{left:285.526749px;}
.xe_c00143{left:575.700000px;}
@media print{
.v0_c00143{vertical-align:0.000000pt;}
.ls1_c00143{letter-spacing:0.000000pt;}
.ls0_c00143{letter-spacing:35.024000pt;}
.ws0_c00143{word-spacing:-15.424000pt;}
.ws1_c00143{word-spacing:-0.768000pt;}
.ws2_c00143{word-spacing:0.000000pt;}
._27_c00143{margin-left:-24.840000pt;}
._1d_c00143{margin-left:-20.808000pt;}
._b_c00143{margin-left:-18.720000pt;}
._13_c00143{margin-left:-12.816000pt;}
._d_c00143{margin-left:-11.232000pt;}
._e_c00143{margin-left:-9.792000pt;}
._15_c00143{margin-left:-8.568000pt;}
._20_c00143{margin-left:-6.882667pt;}
._a_c00143{margin-left:-5.976000pt;}
._f_c00143{margin-left:-4.680000pt;}
._7_c00143{margin-left:-2.880000pt;}
._8_c00143{margin-left:-1.728000pt;}
._5_c00143{width:0.936000pt;}
._1_c00143{width:2.448000pt;}
._4_c00143{width:3.456000pt;}
._0_c00143{width:4.536000pt;}
._c_c00143{width:5.544000pt;}
._2_c00143{width:6.696000pt;}
._9_c00143{width:7.632000pt;}
._17_c00143{width:8.856000pt;}
._3_c00143{width:10.008000pt;}
._18_c00143{width:11.088000pt;}
._6_c00143{width:12.096000pt;}
._11_c00143{width:14.082667pt;}
._1a_c00143{width:15.120000pt;}
._22_c00143{width:17.034667pt;}
._21_c00143{width:17.933333pt;}
._28_c00143{width:19.296000pt;}
._12_c00143{width:20.202667pt;}
._1b_c00143{width:21.096000pt;}
._19_c00143{width:22.248000pt;}
._1c_c00143{width:23.544000pt;}
._1f_c00143{width:29.088000pt;}
._24_c00143{width:31.320000pt;}
._14_c00143{width:37.296000pt;}
._23_c00143{width:54.314667pt;}
._1e_c00143{width:96.120000pt;}
._16_c00143{width:162.504000pt;}
._25_c00143{width:218.232000pt;}
._10_c00143{width:301.952000pt;}
._26_c00143{width:484.301333pt;}
.fs4_c00143{font-size:42.666667pt;}
.fs2_c00143{font-size:50.666667pt;}
.fs1_c00143{font-size:64.000000pt;}
.fs3_c00143{font-size:69.333333pt;}
.fs0_c00143{font-size:72.000000pt;}
.y0_c00143{bottom:0.000000pt;}
.y25_c00143{bottom:2.760000pt;}
.y24_c00143{bottom:6.425206pt;}
.y23_c00143{bottom:56.160000pt;}
.y22_c00143{bottom:77.760000pt;}
.y21_c00143{bottom:100.293333pt;}
.y20_c00143{bottom:121.893333pt;}
.y1f_c00143{bottom:143.760000pt;}
.y1e_c00143{bottom:166.160000pt;}
.y1d_c00143{bottom:188.960000pt;}
.y1c_c00143{bottom:210.026667pt;}
.y1b_c00143{bottom:231.893333pt;}
.y1a_c00143{bottom:253.893333pt;}
.y19_c00143{bottom:276.026667pt;}
.y18_c00143{bottom:298.160000pt;}
.y17_c00143{bottom:320.160000pt;}
.y16_c00143{bottom:341.760000pt;}
.y15_c00143{bottom:363.360000pt;}
.y14_c00143{bottom:385.226667pt;}
.y13_c00143{bottom:406.826667pt;}
.y12_c00143{bottom:430.160000pt;}
.y11_c00143{bottom:450.293333pt;}
.y10_c00143{bottom:471.626667pt;}
.yf_c00143{bottom:492.293333pt;}
.ye_c00143{bottom:514.560000pt;}
.yd_c00143{bottom:536.960000pt;}
.yc_c00143{bottom:558.560000pt;}
.yb_c00143{bottom:580.293333pt;}
.ya_c00143{bottom:602.426667pt;}
.y9_c00143{bottom:623.360000pt;}
.y8_c00143{bottom:644.960000pt;}
.y7_c00143{bottom:666.693333pt;}
.y6_c00143{bottom:689.493333pt;}
.y5_c00143{bottom:710.426667pt;}
.y4_c00143{bottom:732.026667pt;}
.y3_c00143{bottom:753.626667pt;}
.y2_c00143{bottom:776.960000pt;}
.y1_c00143{bottom:797.093333pt;}
.h5_c00143{height:11.733399pt;}
.h6_c00143{height:38.937500pt;}
.h1_c00143{height:70.664062pt;}
.h4_c00143{height:74.906250pt;}
.h2_c00143{height:81.031250pt;}
.h3_c00143{height:87.783854pt;}
.h0_c00143{height:884.666667pt;}
.w2_c00143{width:93.222667pt;}
.w0_c00143{width:593.266667pt;}
.w1_c00143{width:593.333333pt;}
.x0_c00143{left:0.000000pt;}
.xb_c00143{left:28.400000pt;}
.x4_c00143{left:33.866667pt;}
.xa_c00143{left:37.733333pt;}
.x3_c00143{left:98.666667pt;}
.xd_c00143{left:108.266667pt;}
.xc_c00143{left:111.600000pt;}
.x9_c00143{left:114.800000pt;}
.x8_c00143{left:115.733333pt;}
.x7_c00143{left:116.933333pt;}
.x2_c00143{left:119.066667pt;}
.x5_c00143{left:120.533333pt;}
.x1_c00143{left:122.133333pt;}
.x6_c00143{left:141.600000pt;}
.xf_c00143{left:253.801554pt;}
.xe_c00143{left:511.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_8bbb61cbeb5938096a51e6af.woff2')format("woff");}.ff1_c00144{font-family:ff1_c00144;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00144;src:url('chunks/assets/font_9861b38520f78b8ab8d89590.woff2')format("woff");}.ff2_c00144{font-family:ff2_c00144;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00144;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff3_c00144{font-family:ff3_c00144;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00144;src:url('chunks/assets/font_4af0892c35372ba25e9a705c.woff2')format("woff");}.ff4_c00144{font-family:ff4_c00144;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00144;src:url('chunks/assets/font_bd8d40eb2328fba1196e36f1.woff2')format("woff");}.ff5_c00144{font-family:ff5_c00144;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00144;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c00144{font-family:ff6_c00144;line-height:1.219238;font-style: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;}
.ls0_c00144{letter-spacing:0.000000px;}
.sc__c00144{text-shadow:none;}
.sc0_c00144{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00144{-webkit-text-stroke:0px transparent;}
.sc0_c00144{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00144{word-spacing:-67.686000px;}
.ws1_c00144{word-spacing:-33.000000px;}
.ws2_c00144{word-spacing:-20.250000px;}
.ws0_c00144{word-spacing:-17.352000px;}
.ws4_c00144{word-spacing:0.000000px;}
._1d_c00144{margin-left:-19.197000px;}
._1b_c00144{margin-left:-16.728000px;}
._1c_c00144{margin-left:-13.413000px;}
._b_c00144{margin-left:-10.125000px;}
._19_c00144{margin-left:-8.667000px;}
._16_c00144{margin-left:-7.371000px;}
._1a_c00144{margin-left:-5.589000px;}
._0_c00144{margin-left:-4.455000px;}
._f_c00144{margin-left:-3.321000px;}
._1_c00144{margin-left:-2.106000px;}
._15_c00144{margin-left:-1.053000px;}
._14_c00144{width:1.053000px;}
._4_c00144{width:2.106000px;}
._2_c00144{width:3.564000px;}
._5_c00144{width:4.617000px;}
._3_c00144{width:5.670000px;}
._9_c00144{width:6.885000px;}
._7_c00144{width:8.262000px;}
._c_c00144{width:9.558000px;}
._6_c00144{width:10.611000px;}
._8_c00144{width:12.312000px;}
._11_c00144{width:13.365000px;}
._10_c00144{width:14.418000px;}
._d_c00144{width:15.876000px;}
._17_c00144{width:16.929000px;}
._e_c00144{width:18.387000px;}
._1e_c00144{width:21.546000px;}
._12_c00144{width:23.571000px;}
._18_c00144{width:25.353000px;}
._13_c00144{width:28.107000px;}
._20_c00144{width:30.132000px;}
._1f_c00144{width:122.958000px;}
._a_c00144{width:166.455000px;}
.fc2_c00144{color:transparent;}
.fc1_c00144{color:rgb(128,128,128);}
.fc0_c00144{color:rgb(0,0,0);}
.fs4_c00144{font-size:48.000000px;}
.fs2_c00144{font-size:66.000000px;}
.fs1_c00144{font-size:72.000000px;}
.fs0_c00144{font-size:81.000000px;}
.fs3_c00144{font-size:87.000000px;}
.y0_c00144{bottom:0.000000px;}
.y24_c00144{bottom:3.105000px;}
.y23_c00144{bottom:7.228369px;}
.y22_c00144{bottom:84.420000px;}
.y21_c00144{bottom:109.620000px;}
.y20_c00144{bottom:134.220000px;}
.y1f_c00144{bottom:158.220000px;}
.y1e_c00144{bottom:183.270000px;}
.y1d_c00144{bottom:206.820000px;}
.y1c_c00144{bottom:230.820000px;}
.y1b_c00144{bottom:254.820000px;}
.y1a_c00144{bottom:278.820000px;}
.y19_c00144{bottom:302.970000px;}
.y18_c00144{bottom:326.370000px;}
.y17_c00144{bottom:350.370000px;}
.y16_c00144{bottom:374.520000px;}
.y15_c00144{bottom:398.520000px;}
.y14_c00144{bottom:421.920000px;}
.y13_c00144{bottom:445.770000px;}
.y12_c00144{bottom:470.370000px;}
.y11_c00144{bottom:494.070000px;}
.y10_c00144{bottom:518.970000px;}
.yf_c00144{bottom:541.620000px;}
.ye_c00144{bottom:565.620000px;}
.yd_c00144{bottom:589.620000px;}
.yc_c00144{bottom:613.470000px;}
.yb_c00144{bottom:637.170000px;}
.ya_c00144{bottom:661.470000px;}
.y9_c00144{bottom:686.070000px;}
.y8_c00144{bottom:709.770000px;}
.y7_c00144{bottom:733.770000px;}
.y6_c00144{bottom:757.920000px;}
.y5_c00144{bottom:781.620000px;}
.y4_c00144{bottom:805.620000px;}
.y3_c00144{bottom:829.620000px;}
.y2_c00144{bottom:853.770000px;}
.y1_c00144{bottom:877.770000px;}
.h6_c00144{height:13.200073px;}
.h7_c00144{height:43.804688px;}
.h2_c00144{height:79.497070px;}
.h4_c00144{height:84.269531px;}
.h3_c00144{height:91.160156px;}
.h5_c00144{height:91.176000px;}
.h0_c00144{height:970.350000px;}
.h1_c00144{height:970.500000px;}
.w2_c00144{width:104.875500px;}
.w1_c00144{width:659.250000px;}
.w0_c00144{width:659.325000px;}
.x0_c00144{left:0.000000px;}
.x5_c00144{left:48.900000px;}
.x3_c00144{left:50.700000px;}
.x1_c00144{left:51.750000px;}
.x2_c00144{left:53.550000px;}
.x4_c00144{left:55.350000px;}
.x6_c00144{left:281.476730px;}
@media print{
.v0_c00144{vertical-align:0.000000pt;}
.ls0_c00144{letter-spacing:0.000000pt;}
.ws3_c00144{word-spacing:-60.165333pt;}
.ws1_c00144{word-spacing:-29.333333pt;}
.ws2_c00144{word-spacing:-18.000000pt;}
.ws0_c00144{word-spacing:-15.424000pt;}
.ws4_c00144{word-spacing:0.000000pt;}
._1d_c00144{margin-left:-17.064000pt;}
._1b_c00144{margin-left:-14.869333pt;}
._1c_c00144{margin-left:-11.922667pt;}
._b_c00144{margin-left:-9.000000pt;}
._19_c00144{margin-left:-7.704000pt;}
._16_c00144{margin-left:-6.552000pt;}
._1a_c00144{margin-left:-4.968000pt;}
._0_c00144{margin-left:-3.960000pt;}
._f_c00144{margin-left:-2.952000pt;}
._1_c00144{margin-left:-1.872000pt;}
._15_c00144{margin-left:-0.936000pt;}
._14_c00144{width:0.936000pt;}
._4_c00144{width:1.872000pt;}
._2_c00144{width:3.168000pt;}
._5_c00144{width:4.104000pt;}
._3_c00144{width:5.040000pt;}
._9_c00144{width:6.120000pt;}
._7_c00144{width:7.344000pt;}
._c_c00144{width:8.496000pt;}
._6_c00144{width:9.432000pt;}
._8_c00144{width:10.944000pt;}
._11_c00144{width:11.880000pt;}
._10_c00144{width:12.816000pt;}
._d_c00144{width:14.112000pt;}
._17_c00144{width:15.048000pt;}
._e_c00144{width:16.344000pt;}
._1e_c00144{width:19.152000pt;}
._12_c00144{width:20.952000pt;}
._18_c00144{width:22.536000pt;}
._13_c00144{width:24.984000pt;}
._20_c00144{width:26.784000pt;}
._1f_c00144{width:109.296000pt;}
._a_c00144{width:147.960000pt;}
.fs4_c00144{font-size:42.666667pt;}
.fs2_c00144{font-size:58.666667pt;}
.fs1_c00144{font-size:64.000000pt;}
.fs0_c00144{font-size:72.000000pt;}
.fs3_c00144{font-size:77.333333pt;}
.y0_c00144{bottom:0.000000pt;}
.y24_c00144{bottom:2.760000pt;}
.y23_c00144{bottom:6.425217pt;}
.y22_c00144{bottom:75.040000pt;}
.y21_c00144{bottom:97.440000pt;}
.y20_c00144{bottom:119.306667pt;}
.y1f_c00144{bottom:140.640000pt;}
.y1e_c00144{bottom:162.906667pt;}
.y1d_c00144{bottom:183.840000pt;}
.y1c_c00144{bottom:205.173333pt;}
.y1b_c00144{bottom:226.506667pt;}
.y1a_c00144{bottom:247.840000pt;}
.y19_c00144{bottom:269.306667pt;}
.y18_c00144{bottom:290.106667pt;}
.y17_c00144{bottom:311.440000pt;}
.y16_c00144{bottom:332.906667pt;}
.y15_c00144{bottom:354.240000pt;}
.y14_c00144{bottom:375.040000pt;}
.y13_c00144{bottom:396.240000pt;}
.y12_c00144{bottom:418.106667pt;}
.y11_c00144{bottom:439.173333pt;}
.y10_c00144{bottom:461.306667pt;}
.yf_c00144{bottom:481.440000pt;}
.ye_c00144{bottom:502.773333pt;}
.yd_c00144{bottom:524.106667pt;}
.yc_c00144{bottom:545.306667pt;}
.yb_c00144{bottom:566.373333pt;}
.ya_c00144{bottom:587.973333pt;}
.y9_c00144{bottom:609.840000pt;}
.y8_c00144{bottom:630.906667pt;}
.y7_c00144{bottom:652.240000pt;}
.y6_c00144{bottom:673.706667pt;}
.y5_c00144{bottom:694.773333pt;}
.y4_c00144{bottom:716.106667pt;}
.y3_c00144{bottom:737.440000pt;}
.y2_c00144{bottom:758.906667pt;}
.y1_c00144{bottom:780.240000pt;}
.h6_c00144{height:11.733399pt;}
.h7_c00144{height:38.937500pt;}
.h2_c00144{height:70.664062pt;}
.h4_c00144{height:74.906250pt;}
.h3_c00144{height:81.031250pt;}
.h5_c00144{height:81.045333pt;}
.h0_c00144{height:862.533333pt;}
.h1_c00144{height:862.666667pt;}
.w2_c00144{width:93.222667pt;}
.w1_c00144{width:586.000000pt;}
.w0_c00144{width:586.066667pt;}
.x0_c00144{left:0.000000pt;}
.x5_c00144{left:43.466667pt;}
.x3_c00144{left:45.066667pt;}
.x1_c00144{left:46.000000pt;}
.x2_c00144{left:47.600000pt;}
.x4_c00144{left:49.200000pt;}
.x6_c00144{left:250.201538pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f7f364648e0965ca7a3b2de1.woff2')format("woff");}.ff1_c00145{font-family:ff1_c00145;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00145;src:url('chunks/assets/font_ec88ef5332aa907c8c968ed5.woff2')format("woff");}.ff2_c00145{font-family:ff2_c00145;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00145;src:url('chunks/assets/font_609f720800b1233626c5a17f.woff2')format("woff");}.ff3_c00145{font-family:ff3_c00145;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00145;src:url('chunks/assets/font_46f5a62d4a9fde1fcb836718.woff2')format("woff");}.ff4_c00145{font-family:ff4_c00145;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00145;src:url('chunks/assets/font_e762e31737b0a74fe0365b97.woff2')format("woff");}.ff5_c00145{font-family:ff5_c00145;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00145;src:url('chunks/assets/font_419d9933496fe577c4538ba1.woff2')format("woff");}.ff6_c00145{font-family:ff6_c00145;line-height:1.311035;font-style:normal;font-weight: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_c00145;src:url('chunks/assets/font_6a1da8a8603344a4c4abfca7.woff2')format("woff");}.ff7_c00145{font-family:ff7_c00145;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00145;src:url('chunks/assets/font_d21416f6df3ff942b365564c.woff2')format("woff");}.ff8_c00145{font-family:ff8_c00145;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00145;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff9_c00145{font-family:ff9_c00145;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00145{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m1_c00145{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m0_c00145{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00145{vertical-align:-31.200000px;}
.v0_c00145{vertical-align:0.000000px;}
.ls3_c00145{letter-spacing:0.000000px;}
.ls1_c00145{letter-spacing:5.250000px;}
.ls2_c00145{letter-spacing:8.850000px;}
.ls0_c00145{letter-spacing:14.178000px;}
.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;}
}
.ws7_c00145{word-spacing:-60.048000px;}
.ws3_c00145{word-spacing:-23.832000px;}
.ws4_c00145{word-spacing:-19.065600px;}
.ws0_c00145{word-spacing:-17.352000px;}
.ws6_c00145{word-spacing:-12.750000px;}
.ws2_c00145{word-spacing:-10.416000px;}
.ws8_c00145{word-spacing:0.000000px;}
.ws1_c00145{word-spacing:9.129000px;}
.ws5_c00145{word-spacing:59.808000px;}
._2c_c00145{margin-left:-17.496000px;}
._17_c00145{margin-left:-14.517000px;}
._28_c00145{margin-left:-12.667200px;}
._12_c00145{margin-left:-10.530000px;}
._5_c00145{margin-left:-9.261000px;}
._0_c00145{margin-left:-7.920000px;}
._13_c00145{margin-left:-6.291000px;}
._18_c00145{margin-left:-5.265000px;}
._3_c00145{margin-left:-3.456000px;}
._2_c00145{margin-left:-2.088000px;}
._24_c00145{margin-left:-1.080000px;}
._1b_c00145{width:1.080000px;}
._1_c00145{width:2.160000px;}
._9_c00145{width:3.177000px;}
._6_c00145{width:4.455000px;}
._c_c00145{width:5.463000px;}
._8_c00145{width:6.813000px;}
._e_c00145{width:8.181000px;}
._d_c00145{width:9.801000px;}
._b_c00145{width:11.169000px;}
._f_c00145{width:12.690000px;}
._14_c00145{width:14.013000px;}
._10_c00145{width:15.075000px;}
._a_c00145{width:16.623000px;}
._1a_c00145{width:17.829000px;}
._23_c00145{width:19.062000px;}
._4_c00145{width:22.824000px;}
._21_c00145{width:24.705000px;}
._1c_c00145{width:26.352000px;}
._19_c00145{width:28.104000px;}
._22_c00145{width:29.556000px;}
._1d_c00145{width:31.635000px;}
._1f_c00145{width:33.642000px;}
._25_c00145{width:37.773000px;}
._16_c00145{width:38.871000px;}
._20_c00145{width:43.299000px;}
._2f_c00145{width:46.185000px;}
._2a_c00145{width:49.398000px;}
._2e_c00145{width:53.244000px;}
._7_c00145{width:60.750000px;}
._1e_c00145{width:70.191000px;}
._2b_c00145{width:72.222000px;}
._2d_c00145{width:95.886000px;}
._27_c00145{width:118.512000px;}
._30_c00145{width:205.500000px;}
._15_c00145{width:388.035000px;}
._26_c00145{width:398.331000px;}
._29_c00145{width:510.624000px;}
._11_c00145{width:1031.787000px;}
.fc2_c00145{color:transparent;}
.fc1_c00145{color:rgb(128,128,128);}
.fc0_c00145{color:rgb(0,0,0);}
.fs3_c00145{font-size:48.000000px;}
.fs2_c00145{font-size:51.000000px;}
.fs6_c00145{font-size:57.000000px;}
.fs7_c00145{font-size:57.600000px;}
.fs0_c00145{font-size:72.000000px;}
.fs8_c00145{font-size:75.000000px;}
.fs4_c00145{font-size:78.000000px;}
.fs1_c00145{font-size:81.000000px;}
.fs9_c00145{font-size:84.000000px;}
.fs5_c00145{font-size:108.000000px;}
.y0_c00145{bottom:0.000000px;}
.y25_c00145{bottom:3.105000px;}
.y24_c00145{bottom:7.228357px;}
.y23_c00145{bottom:66.180000px;}
.y22_c00145{bottom:91.830000px;}
.y21_c00145{bottom:115.830000px;}
.y20_c00145{bottom:139.680000px;}
.y1f_c00145{bottom:164.430000px;}
.y1e_c00145{bottom:196.830000px;}
.y1d_c00145{bottom:214.080000px;}
.y1c_c00145{bottom:238.230000px;}
.y1b_c00145{bottom:262.530000px;}
.y1a_c00145{bottom:285.630000px;}
.y19_c00145{bottom:309.480000px;}
.y18_c00145{bottom:335.430000px;}
.y17_c00145{bottom:359.430000px;}
.y16_c00145{bottom:383.730000px;}
.y15_c00145{bottom:407.730000px;}
.y14_c00145{bottom:431.880000px;}
.y13_c00145{bottom:455.580000px;}
.y12_c00145{bottom:479.280000px;}
.y11_c00145{bottom:503.280000px;}
.y10_c00145{bottom:526.830000px;}
.yf_c00145{bottom:550.530000px;}
.ye_c00145{bottom:574.830000px;}
.yd_c00145{bottom:598.680000px;}
.yc_c00145{bottom:622.380000px;}
.yb_c00145{bottom:645.930000px;}
.ya_c00145{bottom:669.930000px;}
.y9_c00145{bottom:694.230000px;}
.y8_c00145{bottom:717.930000px;}
.y7_c00145{bottom:741.930000px;}
.y6_c00145{bottom:765.780000px;}
.y5_c00145{bottom:788.130000px;}
.y4_c00145{bottom:811.680000px;}
.y3_c00145{bottom:833.730000px;}
.y2_c00145{bottom:860.730000px;}
.y1_c00145{bottom:884.880000px;}
.h8_c00145{height:13.200074px;}
.h9_c00145{height:43.804688px;}
.h6_c00145{height:50.053711px;}
.h7_c00145{height:75.585938px;}
.h3_c00145{height:79.497070px;}
.h2_c00145{height:84.269531px;}
.h4_c00145{height:98.756836px;}
.h5_c00145{height:108.843750px;}
.h1_c00145{height:978.750000px;}
.h0_c00145{height:979.050000px;}
.w2_c00145{width:104.875500px;}
.w0_c00145{width:656.100000px;}
.w1_c00145{width:656.250000px;}
.x0_c00145{left:0.000000px;}
.x1_c00145{left:21.300000px;}
.x3_c00145{left:22.500000px;}
.x4_c00145{left:23.550000px;}
.x12_c00145{left:25.650000px;}
.x11_c00145{left:27.000000px;}
.x5_c00145{left:28.050000px;}
.xf_c00145{left:41.100000px;}
.xe_c00145{left:50.250000px;}
.x14_c00145{left:55.350000px;}
.x15_c00145{left:66.150000px;}
.x13_c00145{left:85.050000px;}
.x9_c00145{left:88.650000px;}
.xa_c00145{left:102.150000px;}
.x7_c00145{left:119.850000px;}
.x6_c00145{left:121.050000px;}
.x8_c00145{left:122.400000px;}
.xb_c00145{left:124.500000px;}
.x10_c00145{left:126.450000px;}
.xc_c00145{left:152.550000px;}
.x2_c00145{left:160.350000px;}
.x17_c00145{left:279.864258px;}
.x16_c00145{left:573.300000px;}
.xd_c00145{left:595.350000px;}
@media print{
.v1_c00145{vertical-align:-27.733333pt;}
.v0_c00145{vertical-align:0.000000pt;}
.ls3_c00145{letter-spacing:0.000000pt;}
.ls1_c00145{letter-spacing:4.666667pt;}
.ls2_c00145{letter-spacing:7.866667pt;}
.ls0_c00145{letter-spacing:12.602667pt;}
.ws7_c00145{word-spacing:-53.376000pt;}
.ws3_c00145{word-spacing:-21.184000pt;}
.ws4_c00145{word-spacing:-16.947200pt;}
.ws0_c00145{word-spacing:-15.424000pt;}
.ws6_c00145{word-spacing:-11.333333pt;}
.ws2_c00145{word-spacing:-9.258667pt;}
.ws8_c00145{word-spacing:0.000000pt;}
.ws1_c00145{word-spacing:8.114667pt;}
.ws5_c00145{word-spacing:53.162667pt;}
._2c_c00145{margin-left:-15.552000pt;}
._17_c00145{margin-left:-12.904000pt;}
._28_c00145{margin-left:-11.259733pt;}
._12_c00145{margin-left:-9.360000pt;}
._5_c00145{margin-left:-8.232000pt;}
._0_c00145{margin-left:-7.040000pt;}
._13_c00145{margin-left:-5.592000pt;}
._18_c00145{margin-left:-4.680000pt;}
._3_c00145{margin-left:-3.072000pt;}
._2_c00145{margin-left:-1.856000pt;}
._24_c00145{margin-left:-0.960000pt;}
._1b_c00145{width:0.960000pt;}
._1_c00145{width:1.920000pt;}
._9_c00145{width:2.824000pt;}
._6_c00145{width:3.960000pt;}
._c_c00145{width:4.856000pt;}
._8_c00145{width:6.056000pt;}
._e_c00145{width:7.272000pt;}
._d_c00145{width:8.712000pt;}
._b_c00145{width:9.928000pt;}
._f_c00145{width:11.280000pt;}
._14_c00145{width:12.456000pt;}
._10_c00145{width:13.400000pt;}
._a_c00145{width:14.776000pt;}
._1a_c00145{width:15.848000pt;}
._23_c00145{width:16.944000pt;}
._4_c00145{width:20.288000pt;}
._21_c00145{width:21.960000pt;}
._1c_c00145{width:23.424000pt;}
._19_c00145{width:24.981333pt;}
._22_c00145{width:26.272000pt;}
._1d_c00145{width:28.120000pt;}
._1f_c00145{width:29.904000pt;}
._25_c00145{width:33.576000pt;}
._16_c00145{width:34.552000pt;}
._20_c00145{width:38.488000pt;}
._2f_c00145{width:41.053333pt;}
._2a_c00145{width:43.909333pt;}
._2e_c00145{width:47.328000pt;}
._7_c00145{width:54.000000pt;}
._1e_c00145{width:62.392000pt;}
._2b_c00145{width:64.197333pt;}
._2d_c00145{width:85.232000pt;}
._27_c00145{width:105.344000pt;}
._30_c00145{width:182.666667pt;}
._15_c00145{width:344.920000pt;}
._26_c00145{width:354.072000pt;}
._29_c00145{width:453.888000pt;}
._11_c00145{width:917.144000pt;}
.fs3_c00145{font-size:42.666667pt;}
.fs2_c00145{font-size:45.333333pt;}
.fs6_c00145{font-size:50.666667pt;}
.fs7_c00145{font-size:51.200000pt;}
.fs0_c00145{font-size:64.000000pt;}
.fs8_c00145{font-size:66.666667pt;}
.fs4_c00145{font-size:69.333333pt;}
.fs1_c00145{font-size:72.000000pt;}
.fs9_c00145{font-size:74.666667pt;}
.fs5_c00145{font-size:96.000000pt;}
.y0_c00145{bottom:0.000000pt;}
.y25_c00145{bottom:2.760000pt;}
.y24_c00145{bottom:6.425206pt;}
.y23_c00145{bottom:58.826667pt;}
.y22_c00145{bottom:81.626667pt;}
.y21_c00145{bottom:102.960000pt;}
.y20_c00145{bottom:124.160000pt;}
.y1f_c00145{bottom:146.160000pt;}
.y1e_c00145{bottom:174.960000pt;}
.y1d_c00145{bottom:190.293333pt;}
.y1c_c00145{bottom:211.760000pt;}
.y1b_c00145{bottom:233.360000pt;}
.y1a_c00145{bottom:253.893333pt;}
.y19_c00145{bottom:275.093333pt;}
.y18_c00145{bottom:298.160000pt;}
.y17_c00145{bottom:319.493333pt;}
.y16_c00145{bottom:341.093333pt;}
.y15_c00145{bottom:362.426667pt;}
.y14_c00145{bottom:383.893333pt;}
.y13_c00145{bottom:404.960000pt;}
.y12_c00145{bottom:426.026667pt;}
.y11_c00145{bottom:447.360000pt;}
.y10_c00145{bottom:468.293333pt;}
.yf_c00145{bottom:489.360000pt;}
.ye_c00145{bottom:510.960000pt;}
.yd_c00145{bottom:532.160000pt;}
.yc_c00145{bottom:553.226667pt;}
.yb_c00145{bottom:574.160000pt;}
.ya_c00145{bottom:595.493333pt;}
.y9_c00145{bottom:617.093333pt;}
.y8_c00145{bottom:638.160000pt;}
.y7_c00145{bottom:659.493333pt;}
.y6_c00145{bottom:680.693333pt;}
.y5_c00145{bottom:700.560000pt;}
.y4_c00145{bottom:721.493333pt;}
.y3_c00145{bottom:741.093333pt;}
.y2_c00145{bottom:765.093333pt;}
.y1_c00145{bottom:786.560000pt;}
.h8_c00145{height:11.733399pt;}
.h9_c00145{height:38.937500pt;}
.h6_c00145{height:44.492188pt;}
.h7_c00145{height:67.187500pt;}
.h3_c00145{height:70.664062pt;}
.h2_c00145{height:74.906250pt;}
.h4_c00145{height:87.783854pt;}
.h5_c00145{height:96.750000pt;}
.h1_c00145{height:870.000000pt;}
.h0_c00145{height:870.266667pt;}
.w2_c00145{width:93.222667pt;}
.w0_c00145{width:583.200000pt;}
.w1_c00145{width:583.333333pt;}
.x0_c00145{left:0.000000pt;}
.x1_c00145{left:18.933333pt;}
.x3_c00145{left:20.000000pt;}
.x4_c00145{left:20.933333pt;}
.x12_c00145{left:22.800000pt;}
.x11_c00145{left:24.000000pt;}
.x5_c00145{left:24.933333pt;}
.xf_c00145{left:36.533333pt;}
.xe_c00145{left:44.666667pt;}
.x14_c00145{left:49.200000pt;}
.x15_c00145{left:58.800000pt;}
.x13_c00145{left:75.600000pt;}
.x9_c00145{left:78.800000pt;}
.xa_c00145{left:90.800000pt;}
.x7_c00145{left:106.533333pt;}
.x6_c00145{left:107.600000pt;}
.x8_c00145{left:108.800000pt;}
.xb_c00145{left:110.666667pt;}
.x10_c00145{left:112.400000pt;}
.xc_c00145{left:135.600000pt;}
.x2_c00145{left:142.533333pt;}
.x17_c00145{left:248.768229pt;}
.x16_c00145{left:509.600000pt;}
.xd_c00145{left:529.200000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_6f5b4165d749f1d19032ab41.woff2')format("woff");}.ff1_c00146{font-family:ff1_c00146;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00146;src:url('chunks/assets/font_69dd216781fa6392b86de70e.woff2')format("woff");}.ff2_c00146{font-family:ff2_c00146;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00146;src:url('chunks/assets/font_adec2877f7876aaf9148cb7a.woff2')format("woff");}.ff3_c00146{font-family:ff3_c00146;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00146;src:url('chunks/assets/font_ed8593a482997949dba6460b.woff2')format("woff");}.ff4_c00146{font-family:ff4_c00146;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00146;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff5_c00146{font-family:ff5_c00146;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00146;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c00146{font-family:ff6_c00146;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00146{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m0_c00146{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00146{vertical-align:0.000000px;}
.ls2_c00146{letter-spacing:0.000000px;}
.ls0_c00146{letter-spacing:2.100000px;}
.ls1_c00146{letter-spacing:23.112000px;}
.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;}
}
.ws2_c00146{word-spacing:-43.362000px;}
.ws0_c00146{word-spacing:-17.352000px;}
.ws3_c00146{word-spacing:-14.460000px;}
.ws1_c00146{word-spacing:-0.936000px;}
.ws4_c00146{word-spacing:0.000000px;}
._2_c00146{margin-left:-17.115000px;}
._1e_c00146{margin-left:-13.338000px;}
._1b_c00146{margin-left:-12.117000px;}
._19_c00146{margin-left:-10.482000px;}
._1c_c00146{margin-left:-8.778000px;}
._3_c00146{margin-left:-7.560000px;}
._c_c00146{margin-left:-6.363000px;}
._5_c00146{margin-left:-4.620000px;}
._7_c00146{margin-left:-3.045000px;}
._6_c00146{margin-left:-1.365000px;}
._13_c00146{width:1.134000px;}
._e_c00146{width:2.673000px;}
._d_c00146{width:4.212000px;}
._10_c00146{width:5.403000px;}
._f_c00146{width:6.873000px;}
._4_c00146{width:8.295000px;}
._12_c00146{width:9.360000px;}
._11_c00146{width:11.007000px;}
._14_c00146{width:12.510000px;}
._b_c00146{width:13.527000px;}
._16_c00146{width:15.183000px;}
._21_c00146{width:16.329000px;}
._1_c00146{width:18.270000px;}
._0_c00146{width:19.530000px;}
._18_c00146{width:21.600000px;}
._a_c00146{width:22.890000px;}
._15_c00146{width:25.191000px;}
._17_c00146{width:26.562000px;}
._9_c00146{width:28.035000px;}
._1a_c00146{width:30.840000px;}
._20_c00146{width:32.262000px;}
._1d_c00146{width:35.526000px;}
._25_c00146{width:37.266000px;}
._23_c00146{width:42.228000px;}
._24_c00146{width:52.755000px;}
._22_c00146{width:139.968000px;}
._26_c00146{width:209.238000px;}
._1f_c00146{width:228.465000px;}
._8_c00146{width:251.700000px;}
.fc2_c00146{color:transparent;}
.fc1_c00146{color:rgb(128,128,128);}
.fc0_c00146{color:rgb(0,0,0);}
.fs8_c00146{font-size:48.000000px;}
.fs7_c00146{font-size:60.000000px;}
.fs4_c00146{font-size:66.000000px;}
.fs5_c00146{font-size:72.000000px;}
.fs2_c00146{font-size:81.000000px;}
.fs3_c00146{font-size:93.000000px;}
.fs0_c00146{font-size:105.000000px;}
.fs6_c00146{font-size:108.000000px;}
.fs1_c00146{font-size:117.000000px;}
.y0_c00146{bottom:0.000000px;}
.y26_c00146{bottom:3.105000px;}
.y25_c00146{bottom:7.228357px;}
.y24_c00146{bottom:76.680000px;}
.y23_c00146{bottom:97.980000px;}
.y22_c00146{bottom:122.880000px;}
.y21_c00146{bottom:147.180000px;}
.y20_c00146{bottom:170.880000px;}
.y1f_c00146{bottom:195.030000px;}
.y1e_c00146{bottom:218.730000px;}
.y1d_c00146{bottom:244.080000px;}
.y1c_c00146{bottom:267.930000px;}
.y1b_c00146{bottom:292.380000px;}
.y1a_c00146{bottom:315.330000px;}
.y19_c00146{bottom:339.630000px;}
.y18_c00146{bottom:363.180000px;}
.y17_c00146{bottom:387.780000px;}
.y16_c00146{bottom:411.780000px;}
.y15_c00146{bottom:435.780000px;}
.y14_c00146{bottom:457.980000px;}
.y13_c00146{bottom:482.280000px;}
.y12_c00146{bottom:505.980000px;}
.y11_c00146{bottom:529.980000px;}
.y10_c00146{bottom:553.830000px;}
.yf_c00146{bottom:577.530000px;}
.ye_c00146{bottom:602.130000px;}
.yd_c00146{bottom:625.830000px;}
.yc_c00146{bottom:649.980000px;}
.yb_c00146{bottom:672.630000px;}
.ya_c00146{bottom:696.330000px;}
.y9_c00146{bottom:720.630000px;}
.y8_c00146{bottom:745.980000px;}
.y7_c00146{bottom:768.480000px;}
.y6_c00146{bottom:792.480000px;}
.y5_c00146{bottom:816.480000px;}
.y4_c00146{bottom:840.480000px;}
.y3_c00146{bottom:865.080000px;}
.y2_c00146{bottom:888.330000px;}
.y1_c00146{bottom:922.830000px;}
.h7_c00146{height:13.200074px;}
.h8_c00146{height:43.804688px;}
.h6_c00146{height:70.224609px;}
.h2_c00146{height:79.497070px;}
.h4_c00146{height:91.160156px;}
.h3_c00146{height:93.726562px;}
.h5_c00146{height:108.843750px;}
.h1_c00146{height:122.893066px;}
.h0_c00146{height:968.250000px;}
.w1_c00146{width:104.875500px;}
.w0_c00146{width:657.750000px;}
.x0_c00146{left:0.000000px;}
.x8_c00146{left:59.850000px;}
.x7_c00146{left:61.200000px;}
.x6_c00146{left:62.400000px;}
.x3_c00146{left:63.900000px;}
.x5_c00146{left:65.100000px;}
.x4_c00146{left:66.150000px;}
.x2_c00146{left:67.200000px;}
.x9_c00146{left:90.450000px;}
.xc_c00146{left:125.550000px;}
.x1_c00146{left:132.000000px;}
.xd_c00146{left:268.650000px;}
.x11_c00146{left:280.689240px;}
.xe_c00146{left:347.400000px;}
.x10_c00146{left:413.550000px;}
.xf_c00146{left:422.250000px;}
.xa_c00146{left:526.950000px;}
.xb_c00146{left:572.700000px;}
@media print{
.v0_c00146{vertical-align:0.000000pt;}
.ls2_c00146{letter-spacing:0.000000pt;}
.ls0_c00146{letter-spacing:1.866667pt;}
.ls1_c00146{letter-spacing:20.544000pt;}
.ws2_c00146{word-spacing:-38.544000pt;}
.ws0_c00146{word-spacing:-15.424000pt;}
.ws3_c00146{word-spacing:-12.853333pt;}
.ws1_c00146{word-spacing:-0.832000pt;}
.ws4_c00146{word-spacing:0.000000pt;}
._2_c00146{margin-left:-15.213333pt;}
._1e_c00146{margin-left:-11.856000pt;}
._1b_c00146{margin-left:-10.770667pt;}
._19_c00146{margin-left:-9.317333pt;}
._1c_c00146{margin-left:-7.802667pt;}
._3_c00146{margin-left:-6.720000pt;}
._c_c00146{margin-left:-5.656000pt;}
._5_c00146{margin-left:-4.106667pt;}
._7_c00146{margin-left:-2.706667pt;}
._6_c00146{margin-left:-1.213333pt;}
._13_c00146{width:1.008000pt;}
._e_c00146{width:2.376000pt;}
._d_c00146{width:3.744000pt;}
._10_c00146{width:4.802667pt;}
._f_c00146{width:6.109333pt;}
._4_c00146{width:7.373333pt;}
._12_c00146{width:8.320000pt;}
._11_c00146{width:9.784000pt;}
._14_c00146{width:11.120000pt;}
._b_c00146{width:12.024000pt;}
._16_c00146{width:13.496000pt;}
._21_c00146{width:14.514667pt;}
._1_c00146{width:16.240000pt;}
._0_c00146{width:17.360000pt;}
._18_c00146{width:19.200000pt;}
._a_c00146{width:20.346667pt;}
._15_c00146{width:22.392000pt;}
._17_c00146{width:23.610667pt;}
._9_c00146{width:24.920000pt;}
._1a_c00146{width:27.413333pt;}
._20_c00146{width:28.677333pt;}
._1d_c00146{width:31.578667pt;}
._25_c00146{width:33.125333pt;}
._23_c00146{width:37.536000pt;}
._24_c00146{width:46.893333pt;}
._22_c00146{width:124.416000pt;}
._26_c00146{width:185.989333pt;}
._1f_c00146{width:203.080000pt;}
._8_c00146{width:223.733333pt;}
.fs8_c00146{font-size:42.666667pt;}
.fs7_c00146{font-size:53.333333pt;}
.fs4_c00146{font-size:58.666667pt;}
.fs5_c00146{font-size:64.000000pt;}
.fs2_c00146{font-size:72.000000pt;}
.fs3_c00146{font-size:82.666667pt;}
.fs0_c00146{font-size:93.333333pt;}
.fs6_c00146{font-size:96.000000pt;}
.fs1_c00146{font-size:104.000000pt;}
.y0_c00146{bottom:0.000000pt;}
.y26_c00146{bottom:2.760000pt;}
.y25_c00146{bottom:6.425206pt;}
.y24_c00146{bottom:68.160000pt;}
.y23_c00146{bottom:87.093333pt;}
.y22_c00146{bottom:109.226667pt;}
.y21_c00146{bottom:130.826667pt;}
.y20_c00146{bottom:151.893333pt;}
.y1f_c00146{bottom:173.360000pt;}
.y1e_c00146{bottom:194.426667pt;}
.y1d_c00146{bottom:216.960000pt;}
.y1c_c00146{bottom:238.160000pt;}
.y1b_c00146{bottom:259.893333pt;}
.y1a_c00146{bottom:280.293333pt;}
.y19_c00146{bottom:301.893333pt;}
.y18_c00146{bottom:322.826667pt;}
.y17_c00146{bottom:344.693333pt;}
.y16_c00146{bottom:366.026667pt;}
.y15_c00146{bottom:387.360000pt;}
.y14_c00146{bottom:407.093333pt;}
.y13_c00146{bottom:428.693333pt;}
.y12_c00146{bottom:449.760000pt;}
.y11_c00146{bottom:471.093333pt;}
.y10_c00146{bottom:492.293333pt;}
.yf_c00146{bottom:513.360000pt;}
.ye_c00146{bottom:535.226667pt;}
.yd_c00146{bottom:556.293333pt;}
.yc_c00146{bottom:577.760000pt;}
.yb_c00146{bottom:597.893333pt;}
.ya_c00146{bottom:618.960000pt;}
.y9_c00146{bottom:640.560000pt;}
.y8_c00146{bottom:663.093333pt;}
.y7_c00146{bottom:683.093333pt;}
.y6_c00146{bottom:704.426667pt;}
.y5_c00146{bottom:725.760000pt;}
.y4_c00146{bottom:747.093333pt;}
.y3_c00146{bottom:768.960000pt;}
.y2_c00146{bottom:789.626667pt;}
.y1_c00146{bottom:820.293333pt;}
.h7_c00146{height:11.733399pt;}
.h8_c00146{height:38.937500pt;}
.h6_c00146{height:62.421875pt;}
.h2_c00146{height:70.664062pt;}
.h4_c00146{height:81.031250pt;}
.h3_c00146{height:83.312500pt;}
.h5_c00146{height:96.750000pt;}
.h1_c00146{height:109.238281pt;}
.h0_c00146{height:860.666667pt;}
.w1_c00146{width:93.222667pt;}
.w0_c00146{width:584.666667pt;}
.x0_c00146{left:0.000000pt;}
.x8_c00146{left:53.200000pt;}
.x7_c00146{left:54.400000pt;}
.x6_c00146{left:55.466667pt;}
.x3_c00146{left:56.800000pt;}
.x5_c00146{left:57.866667pt;}
.x4_c00146{left:58.800000pt;}
.x2_c00146{left:59.733333pt;}
.x9_c00146{left:80.400000pt;}
.xc_c00146{left:111.600000pt;}
.x1_c00146{left:117.333333pt;}
.xd_c00146{left:238.800000pt;}
.x11_c00146{left:249.501546pt;}
.xe_c00146{left:308.800000pt;}
.x10_c00146{left:367.600000pt;}
.xf_c00146{left:375.333333pt;}
.xa_c00146{left:468.400000pt;}
.xb_c00146{left:509.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_2050926d4a41b948298fe0d1.woff2')format("woff");}.ff1_c00147{font-family:ff1_c00147;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00147;src:url('chunks/assets/font_9ffb3a28d4e94d7b9805fa03.woff2')format("woff");}.ff2_c00147{font-family:ff2_c00147;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00147;src:url('chunks/assets/font_440459a79318f0276cfe222a.woff2')format("woff");}.ff3_c00147{font-family:ff3_c00147;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00147;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff4_c00147{font-family:ff4_c00147;line-height:1.219238;font-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_c00147{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,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;}
.ls0_c00147{letter-spacing:0.000000px;}
.sc__c00147{text-shadow:none;}
.sc0_c00147{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00147{-webkit-text-stroke:0px transparent;}
.sc0_c00147{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00147{word-spacing:-27.000000px;}
.ws1_c00147{word-spacing:0.000000px;}
._f_c00147{margin-left:-16.362000px;}
._e_c00147{margin-left:-11.826000px;}
._1a_c00147{margin-left:-9.504000px;}
._13_c00147{margin-left:-7.128000px;}
._10_c00147{margin-left:-6.048000px;}
._17_c00147{margin-left:-4.374000px;}
._d_c00147{margin-left:-3.078000px;}
._6_c00147{margin-left:-1.782000px;}
._4_c00147{width:1.296000px;}
._0_c00147{width:2.997000px;}
._1_c00147{width:4.536000px;}
._7_c00147{width:6.318000px;}
._2_c00147{width:7.452000px;}
._b_c00147{width:9.477000px;}
._5_c00147{width:10.530000px;}
._8_c00147{width:12.150000px;}
._a_c00147{width:13.608000px;}
._9_c00147{width:15.066000px;}
._16_c00147{width:16.929000px;}
._11_c00147{width:18.468000px;}
._1c_c00147{width:21.465000px;}
._3_c00147{width:22.842000px;}
._c_c00147{width:24.786000px;}
._14_c00147{width:26.163000px;}
._12_c00147{width:27.783000px;}
._1b_c00147{width:29.241000px;}
._15_c00147{width:30.537000px;}
._18_c00147{width:31.995000px;}
._1d_c00147{width:33.372000px;}
._1f_c00147{width:165.255000px;}
._19_c00147{width:173.583000px;}
._1e_c00147{width:184.437000px;}
.fc2_c00147{color:transparent;}
.fc1_c00147{color:rgb(128,128,128);}
.fc0_c00147{color:rgb(0,0,0);}
.fs3_c00147{font-size:48.000000px;}
.fs2_c00147{font-size:72.000000px;}
.fs0_c00147{font-size:81.000000px;}
.fs1_c00147{font-size:108.000000px;}
.y0_c00147{bottom:0.000000px;}
.y23_c00147{bottom:3.105000px;}
.y22_c00147{bottom:7.228357px;}
.y21_c00147{bottom:130.980000px;}
.y20_c00147{bottom:156.330000px;}
.y1f_c00147{bottom:180.630000px;}
.y1e_c00147{bottom:205.230000px;}
.y1d_c00147{bottom:229.230000px;}
.y1c_c00147{bottom:253.530000px;}
.y1b_c00147{bottom:277.830000px;}
.y1a_c00147{bottom:302.130000px;}
.y19_c00147{bottom:325.980000px;}
.y18_c00147{bottom:350.280000px;}
.y17_c00147{bottom:374.730000px;}
.y16_c00147{bottom:398.580000px;}
.y15_c00147{bottom:422.880000px;}
.y14_c00147{bottom:447.180000px;}
.y13_c00147{bottom:471.030000px;}
.y12_c00147{bottom:494.880000px;}
.y11_c00147{bottom:518.730000px;}
.y10_c00147{bottom:542.130000px;}
.yf_c00147{bottom:565.980000px;}
.ye_c00147{bottom:590.280000px;}
.yd_c00147{bottom:613.980000px;}
.yc_c00147{bottom:637.980000px;}
.yb_c00147{bottom:661.830000px;}
.ya_c00147{bottom:685.830000px;}
.y9_c00147{bottom:710.130000px;}
.y8_c00147{bottom:733.830000px;}
.y7_c00147{bottom:758.130000px;}
.y6_c00147{bottom:781.980000px;}
.y5_c00147{bottom:805.980000px;}
.y4_c00147{bottom:829.530000px;}
.y3_c00147{bottom:853.230000px;}
.y2_c00147{bottom:877.230000px;}
.y1_c00147{bottom:901.230000px;}
.h4_c00147{height:13.200074px;}
.h5_c00147{height:43.804688px;}
.h1_c00147{height:79.497070px;}
.h3_c00147{height:84.269531px;}
.h2_c00147{height:108.843750px;}
.h0_c00147{height:995.250000px;}
.w2_c00147{width:104.875500px;}
.w0_c00147{width:667.425000px;}
.w1_c00147{width:667.500000px;}
.x0_c00147{left:0.000000px;}
.x15_c00147{left:46.950000px;}
.x1_c00147{left:124.500000px;}
.x3_c00147{left:125.850000px;}
.x6_c00147{left:126.900000px;}
.xf_c00147{left:127.950000px;}
.x10_c00147{left:129.000000px;}
.x11_c00147{left:130.050000px;}
.x12_c00147{left:131.400000px;}
.x13_c00147{left:133.050000px;}
.x16_c00147{left:135.450000px;}
.x17_c00147{left:136.650000px;}
.x18_c00147{left:137.700000px;}
.x14_c00147{left:161.400000px;}
.x7_c00147{left:180.450000px;}
.x8_c00147{left:197.100000px;}
.x19_c00147{left:285.526749px;}
.xb_c00147{left:351.450000px;}
.xc_c00147{left:369.000000px;}
.x4_c00147{left:415.350000px;}
.x5_c00147{left:433.350000px;}
.xd_c00147{left:465.450000px;}
.xe_c00147{left:479.250000px;}
.x9_c00147{left:483.300000px;}
.xa_c00147{left:500.850000px;}
.x2_c00147{left:552.900000px;}
@media print{
.v0_c00147{vertical-align:0.000000pt;}
.ls0_c00147{letter-spacing:0.000000pt;}
.ws0_c00147{word-spacing:-24.000000pt;}
.ws1_c00147{word-spacing:0.000000pt;}
._f_c00147{margin-left:-14.544000pt;}
._e_c00147{margin-left:-10.512000pt;}
._1a_c00147{margin-left:-8.448000pt;}
._13_c00147{margin-left:-6.336000pt;}
._10_c00147{margin-left:-5.376000pt;}
._17_c00147{margin-left:-3.888000pt;}
._d_c00147{margin-left:-2.736000pt;}
._6_c00147{margin-left:-1.584000pt;}
._4_c00147{width:1.152000pt;}
._0_c00147{width:2.664000pt;}
._1_c00147{width:4.032000pt;}
._7_c00147{width:5.616000pt;}
._2_c00147{width:6.624000pt;}
._b_c00147{width:8.424000pt;}
._5_c00147{width:9.360000pt;}
._8_c00147{width:10.800000pt;}
._a_c00147{width:12.096000pt;}
._9_c00147{width:13.392000pt;}
._16_c00147{width:15.048000pt;}
._11_c00147{width:16.416000pt;}
._1c_c00147{width:19.080000pt;}
._3_c00147{width:20.304000pt;}
._c_c00147{width:22.032000pt;}
._14_c00147{width:23.256000pt;}
._12_c00147{width:24.696000pt;}
._1b_c00147{width:25.992000pt;}
._15_c00147{width:27.144000pt;}
._18_c00147{width:28.440000pt;}
._1d_c00147{width:29.664000pt;}
._1f_c00147{width:146.893333pt;}
._19_c00147{width:154.296000pt;}
._1e_c00147{width:163.944000pt;}
.fs3_c00147{font-size:42.666667pt;}
.fs2_c00147{font-size:64.000000pt;}
.fs0_c00147{font-size:72.000000pt;}
.fs1_c00147{font-size:96.000000pt;}
.y0_c00147{bottom:0.000000pt;}
.y23_c00147{bottom:2.760000pt;}
.y22_c00147{bottom:6.425206pt;}
.y21_c00147{bottom:116.426667pt;}
.y20_c00147{bottom:138.960000pt;}
.y1f_c00147{bottom:160.560000pt;}
.y1e_c00147{bottom:182.426667pt;}
.y1d_c00147{bottom:203.760000pt;}
.y1c_c00147{bottom:225.360000pt;}
.y1b_c00147{bottom:246.960000pt;}
.y1a_c00147{bottom:268.560000pt;}
.y19_c00147{bottom:289.760000pt;}
.y18_c00147{bottom:311.360000pt;}
.y17_c00147{bottom:333.093333pt;}
.y16_c00147{bottom:354.293333pt;}
.y15_c00147{bottom:375.893333pt;}
.y14_c00147{bottom:397.493333pt;}
.y13_c00147{bottom:418.693333pt;}
.y12_c00147{bottom:439.893333pt;}
.y11_c00147{bottom:461.093333pt;}
.y10_c00147{bottom:481.893333pt;}
.yf_c00147{bottom:503.093333pt;}
.ye_c00147{bottom:524.693333pt;}
.yd_c00147{bottom:545.760000pt;}
.yc_c00147{bottom:567.093333pt;}
.yb_c00147{bottom:588.293333pt;}
.ya_c00147{bottom:609.626667pt;}
.y9_c00147{bottom:631.226667pt;}
.y8_c00147{bottom:652.293333pt;}
.y7_c00147{bottom:673.893333pt;}
.y6_c00147{bottom:695.093333pt;}
.y5_c00147{bottom:716.426667pt;}
.y4_c00147{bottom:737.360000pt;}
.y3_c00147{bottom:758.426667pt;}
.y2_c00147{bottom:779.760000pt;}
.y1_c00147{bottom:801.093333pt;}
.h4_c00147{height:11.733399pt;}
.h5_c00147{height:38.937500pt;}
.h1_c00147{height:70.664062pt;}
.h3_c00147{height:74.906250pt;}
.h2_c00147{height:96.750000pt;}
.h0_c00147{height:884.666667pt;}
.w2_c00147{width:93.222667pt;}
.w0_c00147{width:593.266667pt;}
.w1_c00147{width:593.333333pt;}
.x0_c00147{left:0.000000pt;}
.x15_c00147{left:41.733333pt;}
.x1_c00147{left:110.666667pt;}
.x3_c00147{left:111.866667pt;}
.x6_c00147{left:112.800000pt;}
.xf_c00147{left:113.733333pt;}
.x10_c00147{left:114.666667pt;}
.x11_c00147{left:115.600000pt;}
.x12_c00147{left:116.800000pt;}
.x13_c00147{left:118.266667pt;}
.x16_c00147{left:120.400000pt;}
.x17_c00147{left:121.466667pt;}
.x18_c00147{left:122.400000pt;}
.x14_c00147{left:143.466667pt;}
.x7_c00147{left:160.400000pt;}
.x8_c00147{left:175.200000pt;}
.x19_c00147{left:253.801554pt;}
.xb_c00147{left:312.400000pt;}
.xc_c00147{left:328.000000pt;}
.x4_c00147{left:369.200000pt;}
.x5_c00147{left:385.200000pt;}
.xd_c00147{left:413.733333pt;}
.xe_c00147{left:426.000000pt;}
.x9_c00147{left:429.600000pt;}
.xa_c00147{left:445.200000pt;}
.x2_c00147{left:491.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_3fc75b591561c89758a80daa.woff2')format("woff");}.ff1_c00148{font-family:ff1_c00148;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00148;src:url('chunks/assets/font_b700ecfe9c131b7e7175f745.woff2')format("woff");}.ff2_c00148{font-family:ff2_c00148;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00148;src:url('chunks/assets/font_f27508fbc07fa1d420c36d50.woff2')format("woff");}.ff3_c00148{font-family:ff3_c00148;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00148;src:url('chunks/assets/font_e3e60250ad8bd74712bed29e.woff2')format("woff");}.ff4_c00148{font-family:ff4_c00148;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00148;src:url('chunks/assets/font_92b7e1d0de50d5ee597dfbea.woff2')format("woff");}.ff5_c00148{font-family:ff5_c00148;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00148;src:url('chunks/assets/font_474511a17efdd7a717898863.woff2')format("woff");}.ff6_c00148{font-family:ff6_c00148;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00148;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c00148{font-family:ff7_c00148;line-height:1.219238;font-style: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;}
.v1_c00148{vertical-align:144.000000px;}
.ls4_c00148{letter-spacing:0.000000px;}
.ls1_c00148{letter-spacing:4.800000px;}
.ls3_c00148{letter-spacing:5.400000px;}
.ls6_c00148{letter-spacing:6.000000px;}
.ls5_c00148{letter-spacing:12.000000px;}
.ls2_c00148{letter-spacing:16.680000px;}
.ls0_c00148{letter-spacing:17.606400px;}
.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:-23.859000px;}
.ws2_c00148{word-spacing:-18.291000px;}
.ws3_c00148{word-spacing:0.000000px;}
.ws1_c00148{word-spacing:13.365000px;}
._c_c00148{margin-left:-36.336000px;}
._d_c00148{margin-left:-29.952000px;}
._6_c00148{margin-left:-23.856000px;}
._2_c00148{margin-left:-19.212000px;}
._15_c00148{margin-left:-17.577000px;}
._7_c00148{margin-left:-14.607000px;}
._14_c00148{margin-left:-12.450000px;}
._0_c00148{margin-left:-11.385000px;}
._17_c00148{margin-left:-9.558000px;}
._12_c00148{margin-left:-6.957000px;}
._1b_c00148{margin-left:-5.811000px;}
._1_c00148{margin-left:-4.215000px;}
._3_c00148{margin-left:-3.096000px;}
._5_c00148{margin-left:-1.161000px;}
._8_c00148{width:1.305000px;}
._4_c00148{width:2.688000px;}
._11_c00148{width:3.810000px;}
._b_c00148{width:4.869000px;}
._10_c00148{width:6.840000px;}
._a_c00148{width:8.019000px;}
._9_c00148{width:9.108000px;}
._13_c00148{width:11.199000px;}
._e_c00148{width:12.255000px;}
._1e_c00148{width:13.959000px;}
._1a_c00148{width:15.711000px;}
._1d_c00148{width:18.225000px;}
._19_c00148{width:28.353000px;}
._1c_c00148{width:30.732000px;}
._f_c00148{width:32.988000px;}
._20_c00148{width:40.464000px;}
._16_c00148{width:223.884000px;}
._21_c00148{width:284.367000px;}
._18_c00148{width:291.411000px;}
._1f_c00148{width:321.546000px;}
.fc2_c00148{color:transparent;}
.fc1_c00148{color:rgb(128,128,128);}
.fc0_c00148{color:rgb(0,0,0);}
.fs9_c00148{font-size:48.000000px;}
.fs8_c00148{font-size:51.000000px;}
.fs4_c00148{font-size:57.000000px;}
.fs3_c00148{font-size:57.600000px;}
.fs2_c00148{font-size:72.000000px;}
.fs7_c00148{font-size:75.000000px;}
.fs6_c00148{font-size:81.000000px;}
.fs0_c00148{font-size:99.000000px;}
.fs1_c00148{font-size:132.000000px;}
.fs5_c00148{font-size:270.000000px;}
.y0_c00148{bottom:0.000000px;}
.y25_c00148{bottom:3.105000px;}
.y24_c00148{bottom:7.228371px;}
.y23_c00148{bottom:80.715000px;}
.y22_c00148{bottom:104.265000px;}
.y21_c00148{bottom:129.015000px;}
.y20_c00148{bottom:152.865000px;}
.y1f_c00148{bottom:177.615000px;}
.y1e_c00148{bottom:201.615000px;}
.y1d_c00148{bottom:225.765000px;}
.y1c_c00148{bottom:250.215000px;}
.y1b_c00148{bottom:274.365000px;}
.y1a_c00148{bottom:298.665000px;}
.y19_c00148{bottom:322.665000px;}
.y18_c00148{bottom:346.365000px;}
.y17_c00148{bottom:370.365000px;}
.y16_c00148{bottom:394.515000px;}
.y15_c00148{bottom:418.215000px;}
.y14_c00148{bottom:442.215000px;}
.y13_c00148{bottom:466.215000px;}
.y12_c00148{bottom:490.365000px;}
.y11_c00148{bottom:514.665000px;}
.y10_c00148{bottom:538.965000px;}
.yf_c00148{bottom:562.665000px;}
.ye_c00148{bottom:586.365000px;}
.yd_c00148{bottom:610.515000px;}
.yc_c00148{bottom:633.915000px;}
.yb_c00148{bottom:658.215000px;}
.ya_c00148{bottom:681.765000px;}
.y9_c00148{bottom:706.065000px;}
.y8_c00148{bottom:729.465000px;}
.y7_c00148{bottom:753.615000px;}
.y6_c00148{bottom:778.065000px;}
.y5_c00148{bottom:802.365000px;}
.y3_c00148{bottom:814.965000px;}
.y4_c00148{bottom:827.265000px;}
.y2_c00148{bottom:875.265000px;}
.y1_c00148{bottom:933.915000px;}
.h7_c00148{height:13.200074px;}
.h8_c00148{height:43.804688px;}
.h3_c00148{height:66.713379px;}
.h6_c00148{height:73.608398px;}
.h5_c00148{height:79.497070px;}
.h2_c00148{height:167.126953px;}
.h4_c00148{height:264.990234px;}
.h0_c00148{height:989.025000px;}
.h1_c00148{height:989.250000px;}
.w1_c00148{width:104.875500px;}
.w0_c00148{width:672.000000px;}
.x0_c00148{left:0.000000px;}
.x9_c00148{left:34.200000px;}
.x8_c00148{left:36.150000px;}
.xa_c00148{left:48.000000px;}
.x7_c00148{left:51.600000px;}
.x6_c00148{left:52.650000px;}
.x1_c00148{left:53.700000px;}
.x5_c00148{left:54.900000px;}
.x3_c00148{left:57.150000px;}
.xb_c00148{left:79.050000px;}
.x4_c00148{left:98.850000px;}
.x2_c00148{left:192.150000px;}
.xd_c00148{left:287.814240px;}
.xc_c00148{left:382.050000px;}
@media print{
.v0_c00148{vertical-align:0.000000pt;}
.v1_c00148{vertical-align:128.000000pt;}
.ls4_c00148{letter-spacing:0.000000pt;}
.ls1_c00148{letter-spacing:4.266667pt;}
.ls3_c00148{letter-spacing:4.800000pt;}
.ls6_c00148{letter-spacing:5.333333pt;}
.ls5_c00148{letter-spacing:10.666667pt;}
.ls2_c00148{letter-spacing:14.826667pt;}
.ls0_c00148{letter-spacing:15.650133pt;}
.ws0_c00148{word-spacing:-21.208000pt;}
.ws2_c00148{word-spacing:-16.258667pt;}
.ws3_c00148{word-spacing:0.000000pt;}
.ws1_c00148{word-spacing:11.880000pt;}
._c_c00148{margin-left:-32.298667pt;}
._d_c00148{margin-left:-26.624000pt;}
._6_c00148{margin-left:-21.205333pt;}
._2_c00148{margin-left:-17.077333pt;}
._15_c00148{margin-left:-15.624000pt;}
._7_c00148{margin-left:-12.984000pt;}
._14_c00148{margin-left:-11.066667pt;}
._0_c00148{margin-left:-10.120000pt;}
._17_c00148{margin-left:-8.496000pt;}
._12_c00148{margin-left:-6.184000pt;}
._1b_c00148{margin-left:-5.165333pt;}
._1_c00148{margin-left:-3.746667pt;}
._3_c00148{margin-left:-2.752000pt;}
._5_c00148{margin-left:-1.032000pt;}
._8_c00148{width:1.160000pt;}
._4_c00148{width:2.389333pt;}
._11_c00148{width:3.386667pt;}
._b_c00148{width:4.328000pt;}
._10_c00148{width:6.080000pt;}
._a_c00148{width:7.128000pt;}
._9_c00148{width:8.096000pt;}
._13_c00148{width:9.954667pt;}
._e_c00148{width:10.893333pt;}
._1e_c00148{width:12.408000pt;}
._1a_c00148{width:13.965333pt;}
._1d_c00148{width:16.200000pt;}
._19_c00148{width:25.202667pt;}
._1c_c00148{width:27.317333pt;}
._f_c00148{width:29.322667pt;}
._20_c00148{width:35.968000pt;}
._16_c00148{width:199.008000pt;}
._21_c00148{width:252.770667pt;}
._18_c00148{width:259.032000pt;}
._1f_c00148{width:285.818667pt;}
.fs9_c00148{font-size:42.666667pt;}
.fs8_c00148{font-size:45.333333pt;}
.fs4_c00148{font-size:50.666667pt;}
.fs3_c00148{font-size:51.200000pt;}
.fs2_c00148{font-size:64.000000pt;}
.fs7_c00148{font-size:66.666667pt;}
.fs6_c00148{font-size:72.000000pt;}
.fs0_c00148{font-size:88.000000pt;}
.fs1_c00148{font-size:117.333333pt;}
.fs5_c00148{font-size:240.000000pt;}
.y0_c00148{bottom:0.000000pt;}
.y25_c00148{bottom:2.760000pt;}
.y24_c00148{bottom:6.425219pt;}
.y23_c00148{bottom:71.746667pt;}
.y22_c00148{bottom:92.680000pt;}
.y21_c00148{bottom:114.680000pt;}
.y20_c00148{bottom:135.880000pt;}
.y1f_c00148{bottom:157.880000pt;}
.y1e_c00148{bottom:179.213333pt;}
.y1d_c00148{bottom:200.680000pt;}
.y1c_c00148{bottom:222.413333pt;}
.y1b_c00148{bottom:243.880000pt;}
.y1a_c00148{bottom:265.480000pt;}
.y19_c00148{bottom:286.813333pt;}
.y18_c00148{bottom:307.880000pt;}
.y17_c00148{bottom:329.213333pt;}
.y16_c00148{bottom:350.680000pt;}
.y15_c00148{bottom:371.746667pt;}
.y14_c00148{bottom:393.080000pt;}
.y13_c00148{bottom:414.413333pt;}
.y12_c00148{bottom:435.880000pt;}
.y11_c00148{bottom:457.480000pt;}
.y10_c00148{bottom:479.080000pt;}
.yf_c00148{bottom:500.146667pt;}
.ye_c00148{bottom:521.213333pt;}
.yd_c00148{bottom:542.680000pt;}
.yc_c00148{bottom:563.480000pt;}
.yb_c00148{bottom:585.080000pt;}
.ya_c00148{bottom:606.013333pt;}
.y9_c00148{bottom:627.613333pt;}
.y8_c00148{bottom:648.413333pt;}
.y7_c00148{bottom:669.880000pt;}
.y6_c00148{bottom:691.613333pt;}
.y5_c00148{bottom:713.213333pt;}
.y3_c00148{bottom:724.413333pt;}
.y4_c00148{bottom:735.346667pt;}
.y2_c00148{bottom:778.013333pt;}
.y1_c00148{bottom:830.146667pt;}
.h7_c00148{height:11.733399pt;}
.h8_c00148{height:38.937500pt;}
.h3_c00148{height:59.300781pt;}
.h6_c00148{height:65.429688pt;}
.h5_c00148{height:70.664062pt;}
.h2_c00148{height:148.557292pt;}
.h4_c00148{height:235.546875pt;}
.h0_c00148{height:879.133333pt;}
.h1_c00148{height:879.333333pt;}
.w1_c00148{width:93.222667pt;}
.w0_c00148{width:597.333333pt;}
.x0_c00148{left:0.000000pt;}
.x9_c00148{left:30.400000pt;}
.x8_c00148{left:32.133333pt;}
.xa_c00148{left:42.666667pt;}
.x7_c00148{left:45.866667pt;}
.x6_c00148{left:46.800000pt;}
.x1_c00148{left:47.733333pt;}
.x5_c00148{left:48.800000pt;}
.x3_c00148{left:50.800000pt;}
.xb_c00148{left:70.266667pt;}
.x4_c00148{left:87.866667pt;}
.x2_c00148{left:170.800000pt;}
.xd_c00148{left:255.834880pt;}
.xc_c00148{left:339.600000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_71cccc57b8601ce425215643.woff2')format("woff");}.ff1_c00149{font-family:ff1_c00149;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00149;src:url('chunks/assets/font_d723cdceb6b2887402fbd97a.woff2')format("woff");}.ff2_c00149{font-family:ff2_c00149;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00149;src:url('chunks/assets/font_4af480ef01df49221027a7e9.woff2')format("woff");}.ff3_c00149{font-family:ff3_c00149;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00149;src:url('chunks/assets/font_2f3356416632ecf25158a48e.woff2')format("woff");}.ff4_c00149{font-family:ff4_c00149;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00149;src:url('chunks/assets/font_f43b7d04bc46d437b41890cb.woff2')format("woff");}.ff5_c00149{font-family:ff5_c00149;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00149;src:url('chunks/assets/font_d9ae4825e995279531eaddc9.woff2')format("woff");}.ff6_c00149{font-family:ff6_c00149;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00149;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff7_c00149{font-family:ff7_c00149;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00149;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff8_c00149{font-family:ff8_c00149;line-height:1.219238;font-style: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;}
.ls3_c00149{letter-spacing:-6.000000px;}
.ls1_c00149{letter-spacing:0.000000px;}
.ls2_c00149{letter-spacing:9.000000px;}
.ls0_c00149{letter-spacing:43.350000px;}
.sc__c00149{text-shadow:none;}
.sc0_c00149{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00149{-webkit-text-stroke:0px transparent;}
.sc0_c00149{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00149{word-spacing:-26.250000px;}
.ws1_c00149{word-spacing:-17.250000px;}
.ws2_c00149{word-spacing:0.000000px;}
._29_c00149{margin-left:-30.840000px;}
._11_c00149{margin-left:-25.839000px;}
._1c_c00149{margin-left:-23.562000px;}
._26_c00149{margin-left:-17.640000px;}
._1d_c00149{margin-left:-16.590000px;}
._16_c00149{margin-left:-15.294000px;}
._12_c00149{margin-left:-13.203000px;}
._1a_c00149{margin-left:-10.764000px;}
._19_c00149{margin-left:-9.696000px;}
._20_c00149{margin-left:-8.298000px;}
._1b_c00149{margin-left:-7.107000px;}
._f_c00149{margin-left:-5.427000px;}
._10_c00149{margin-left:-4.374000px;}
._8_c00149{margin-left:-2.835000px;}
._b_c00149{margin-left:-1.296000px;}
._6_c00149{width:1.215000px;}
._a_c00149{width:2.592000px;}
._1_c00149{width:3.726000px;}
._4_c00149{width:5.508000px;}
._0_c00149{width:6.642000px;}
._24_c00149{width:7.695000px;}
._3_c00149{width:8.748000px;}
._1f_c00149{width:9.801000px;}
._2_c00149{width:11.178000px;}
._e_c00149{width:12.717000px;}
._1e_c00149{width:14.175000px;}
._5_c00149{width:15.390000px;}
._d_c00149{width:17.334000px;}
._7_c00149{width:19.116000px;}
._14_c00149{width:21.774000px;}
._22_c00149{width:23.166000px;}
._c_c00149{width:24.867000px;}
._9_c00149{width:26.406000px;}
._21_c00149{width:27.840000px;}
._13_c00149{width:30.120000px;}
._17_c00149{width:31.632000px;}
._15_c00149{width:32.925000px;}
._18_c00149{width:34.977000px;}
._25_c00149{width:38.961000px;}
._23_c00149{width:41.229000px;}
._2a_c00149{width:45.600000px;}
._28_c00149{width:144.120000px;}
._27_c00149{width:153.600000px;}
._2b_c00149{width:499.527000px;}
._2c_c00149{width:1181.502000px;}
.fc2_c00149{color:transparent;}
.fc1_c00149{color:rgb(128,128,128);}
.fc0_c00149{color:rgb(0,0,0);}
.fs6_c00149{font-size:48.000000px;}
.fs5_c00149{font-size:60.000000px;}
.fs1_c00149{font-size:69.000000px;}
.fs3_c00149{font-size:72.000000px;}
.fs2_c00149{font-size:75.000000px;}
.fs0_c00149{font-size:81.000000px;}
.fs4_c00149{font-size:96.000000px;}
.y0_c00149{bottom:0.000000px;}
.y26_c00149{bottom:3.105000px;}
.y25_c00149{bottom:7.228357px;}
.y24_c00149{bottom:69.930000px;}
.y23_c00149{bottom:95.580000px;}
.y22_c00149{bottom:120.780000px;}
.y21_c00149{bottom:145.230000px;}
.y20_c00149{bottom:163.680000px;}
.y1f_c00149{bottom:169.530000px;}
.y1e_c00149{bottom:193.830000px;}
.y1d_c00149{bottom:218.430000px;}
.y1c_c00149{bottom:242.730000px;}
.y1b_c00149{bottom:267.030000px;}
.y1a_c00149{bottom:291.330000px;}
.y19_c00149{bottom:315.330000px;}
.y18_c00149{bottom:339.630000px;}
.y17_c00149{bottom:363.780000px;}
.y16_c00149{bottom:388.080000px;}
.y15_c00149{bottom:412.530000px;}
.y14_c00149{bottom:437.280000px;}
.y13_c00149{bottom:460.980000px;}
.y12_c00149{bottom:484.680000px;}
.y11_c00149{bottom:508.980000px;}
.y10_c00149{bottom:532.980000px;}
.yf_c00149{bottom:556.830000px;}
.ye_c00149{bottom:580.830000px;}
.yd_c00149{bottom:604.830000px;}
.yc_c00149{bottom:628.530000px;}
.yb_c00149{bottom:652.830000px;}
.ya_c00149{bottom:677.130000px;}
.y9_c00149{bottom:701.280000px;}
.y8_c00149{bottom:725.580000px;}
.y7_c00149{bottom:749.880000px;}
.y6_c00149{bottom:773.880000px;}
.y5_c00149{bottom:797.580000px;}
.y4_c00149{bottom:822.180000px;}
.y3_c00149{bottom:845.880000px;}
.y2_c00149{bottom:869.730000px;}
.y1_c00149{bottom:893.130000px;}
.h7_c00149{height:13.200074px;}
.h8_c00149{height:43.804688px;}
.h6_c00149{height:58.886719px;}
.h2_c00149{height:72.312000px;}
.h3_c00149{height:73.571777px;}
.h1_c00149{height:79.497070px;}
.h4_c00149{height:91.160156px;}
.h5_c00149{height:94.218750px;}
.h0_c00149{height:995.250000px;}
.w2_c00149{width:104.875500px;}
.w0_c00149{width:667.425000px;}
.w1_c00149{width:667.500000px;}
.x0_c00149{left:0.000000px;}
.x4_c00149{left:120.450000px;}
.x5_c00149{left:122.100000px;}
.x1_c00149{left:123.600000px;}
.x2_c00149{left:125.250000px;}
.x3_c00149{left:126.450000px;}
.x6_c00149{left:127.650000px;}
.x8_c00149{left:263.550000px;}
.x9_c00149{left:285.526749px;}
.x7_c00149{left:342.150000px;}
@media print{
.v0_c00149{vertical-align:0.000000pt;}
.ls3_c00149{letter-spacing:-5.333333pt;}
.ls1_c00149{letter-spacing:0.000000pt;}
.ls2_c00149{letter-spacing:8.000000pt;}
.ls0_c00149{letter-spacing:38.533333pt;}
.ws0_c00149{word-spacing:-23.333333pt;}
.ws1_c00149{word-spacing:-15.333333pt;}
.ws2_c00149{word-spacing:0.000000pt;}
._29_c00149{margin-left:-27.413333pt;}
._11_c00149{margin-left:-22.968000pt;}
._1c_c00149{margin-left:-20.944000pt;}
._26_c00149{margin-left:-15.680000pt;}
._1d_c00149{margin-left:-14.746667pt;}
._16_c00149{margin-left:-13.594667pt;}
._12_c00149{margin-left:-11.736000pt;}
._1a_c00149{margin-left:-9.568000pt;}
._19_c00149{margin-left:-8.618667pt;}
._20_c00149{margin-left:-7.376000pt;}
._1b_c00149{margin-left:-6.317333pt;}
._f_c00149{margin-left:-4.824000pt;}
._10_c00149{margin-left:-3.888000pt;}
._8_c00149{margin-left:-2.520000pt;}
._b_c00149{margin-left:-1.152000pt;}
._6_c00149{width:1.080000pt;}
._a_c00149{width:2.304000pt;}
._1_c00149{width:3.312000pt;}
._4_c00149{width:4.896000pt;}
._0_c00149{width:5.904000pt;}
._24_c00149{width:6.840000pt;}
._3_c00149{width:7.776000pt;}
._1f_c00149{width:8.712000pt;}
._2_c00149{width:9.936000pt;}
._e_c00149{width:11.304000pt;}
._1e_c00149{width:12.600000pt;}
._5_c00149{width:13.680000pt;}
._d_c00149{width:15.408000pt;}
._7_c00149{width:16.992000pt;}
._14_c00149{width:19.354667pt;}
._22_c00149{width:20.592000pt;}
._c_c00149{width:22.104000pt;}
._9_c00149{width:23.472000pt;}
._21_c00149{width:24.746667pt;}
._13_c00149{width:26.773333pt;}
._17_c00149{width:28.117333pt;}
._15_c00149{width:29.266667pt;}
._18_c00149{width:31.090667pt;}
._25_c00149{width:34.632000pt;}
._23_c00149{width:36.648000pt;}
._2a_c00149{width:40.533333pt;}
._28_c00149{width:128.106667pt;}
._27_c00149{width:136.533333pt;}
._2b_c00149{width:444.024000pt;}
._2c_c00149{width:1050.224000pt;}
.fs6_c00149{font-size:42.666667pt;}
.fs5_c00149{font-size:53.333333pt;}
.fs1_c00149{font-size:61.333333pt;}
.fs3_c00149{font-size:64.000000pt;}
.fs2_c00149{font-size:66.666667pt;}
.fs0_c00149{font-size:72.000000pt;}
.fs4_c00149{font-size:85.333333pt;}
.y0_c00149{bottom:0.000000pt;}
.y26_c00149{bottom:2.760000pt;}
.y25_c00149{bottom:6.425206pt;}
.y24_c00149{bottom:62.160000pt;}
.y23_c00149{bottom:84.960000pt;}
.y22_c00149{bottom:107.360000pt;}
.y21_c00149{bottom:129.093333pt;}
.y20_c00149{bottom:145.493333pt;}
.y1f_c00149{bottom:150.693333pt;}
.y1e_c00149{bottom:172.293333pt;}
.y1d_c00149{bottom:194.160000pt;}
.y1c_c00149{bottom:215.760000pt;}
.y1b_c00149{bottom:237.360000pt;}
.y1a_c00149{bottom:258.960000pt;}
.y19_c00149{bottom:280.293333pt;}
.y18_c00149{bottom:301.893333pt;}
.y17_c00149{bottom:323.360000pt;}
.y16_c00149{bottom:344.960000pt;}
.y15_c00149{bottom:366.693333pt;}
.y14_c00149{bottom:388.693333pt;}
.y13_c00149{bottom:409.760000pt;}
.y12_c00149{bottom:430.826667pt;}
.y11_c00149{bottom:452.426667pt;}
.y10_c00149{bottom:473.760000pt;}
.yf_c00149{bottom:494.960000pt;}
.ye_c00149{bottom:516.293333pt;}
.yd_c00149{bottom:537.626667pt;}
.yc_c00149{bottom:558.693333pt;}
.yb_c00149{bottom:580.293333pt;}
.ya_c00149{bottom:601.893333pt;}
.y9_c00149{bottom:623.360000pt;}
.y8_c00149{bottom:644.960000pt;}
.y7_c00149{bottom:666.560000pt;}
.y6_c00149{bottom:687.893333pt;}
.y5_c00149{bottom:708.960000pt;}
.y4_c00149{bottom:730.826667pt;}
.y3_c00149{bottom:751.893333pt;}
.y2_c00149{bottom:773.093333pt;}
.y1_c00149{bottom:793.893333pt;}
.h7_c00149{height:11.733399pt;}
.h8_c00149{height:38.937500pt;}
.h6_c00149{height:52.343750pt;}
.h2_c00149{height:64.277333pt;}
.h3_c00149{height:65.397135pt;}
.h1_c00149{height:70.664062pt;}
.h4_c00149{height:81.031250pt;}
.h5_c00149{height:83.750000pt;}
.h0_c00149{height:884.666667pt;}
.w2_c00149{width:93.222667pt;}
.w0_c00149{width:593.266667pt;}
.w1_c00149{width:593.333333pt;}
.x0_c00149{left:0.000000pt;}
.x4_c00149{left:107.066667pt;}
.x5_c00149{left:108.533333pt;}
.x1_c00149{left:109.866667pt;}
.x2_c00149{left:111.333333pt;}
.x3_c00149{left:112.400000pt;}
.x6_c00149{left:113.466667pt;}
.x8_c00149{left:234.266667pt;}
.x9_c00149{left:253.801554pt;}
.x7_c00149{left:304.133333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_c9d370036914b9a9f91d31d8.woff2')format("woff");}.ff1_c00150{font-family:ff1_c00150;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00150;src:url('chunks/assets/font_cfc601692c12c00a59107d25.woff2')format("woff");}.ff2_c00150{font-family:ff2_c00150;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00150;src:url('chunks/assets/font_7832745ff3b1808f5b47784c.woff2')format("woff");}.ff3_c00150{font-family:ff3_c00150;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00150;src:url('chunks/assets/font_823d319984ea57cbc4182bc5.woff2')format("woff");}.ff4_c00150{font-family:ff4_c00150;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00150;src:url('chunks/assets/font_8c4815ae5241d2dc46ccd662.woff2')format("woff");}.ff5_c00150{font-family:ff5_c00150;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00150;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c00150{font-family:ff6_c00150;line-height:1.219238;font-style: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;}
.ls1_c00150{letter-spacing:0.000000px;}
.ls2_c00150{letter-spacing:21.000000px;}
.ls0_c00150{letter-spacing:247.950000px;}
.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:-44.859000px;}
.ws1_c00150{word-spacing:-17.352000px;}
.ws3_c00150{word-spacing:0.000000px;}
.ws2_c00150{word-spacing:4.032000px;}
._1e_c00150{margin-left:-36.972000px;}
._3_c00150{margin-left:-16.485000px;}
._7_c00150{margin-left:-14.742000px;}
._6_c00150{margin-left:-12.456000px;}
._4_c00150{margin-left:-10.605000px;}
._b_c00150{margin-left:-9.141000px;}
._13_c00150{margin-left:-7.509000px;}
._d_c00150{margin-left:-6.354000px;}
._c_c00150{margin-left:-5.346000px;}
._a_c00150{margin-left:-4.176000px;}
._1c_c00150{margin-left:-3.087000px;}
._9_c00150{margin-left:-2.043000px;}
._12_c00150{margin-left:-1.002000px;}
._2_c00150{width:1.365000px;}
._1_c00150{width:2.520000px;}
._0_c00150{width:4.095000px;}
._8_c00150{width:5.670000px;}
._17_c00150{width:6.966000px;}
._11_c00150{width:8.100000px;}
._10_c00150{width:9.882000px;}
._15_c00150{width:11.586000px;}
._e_c00150{width:13.077000px;}
._16_c00150{width:14.286000px;}
._14_c00150{width:16.293000px;}
._f_c00150{width:18.084000px;}
._1a_c00150{width:28.932000px;}
._19_c00150{width:43.110000px;}
._1d_c00150{width:63.015000px;}
._5_c00150{width:88.515000px;}
._1f_c00150{width:185.250000px;}
._18_c00150{width:191.442000px;}
._21_c00150{width:270.882000px;}
._1b_c00150{width:274.107000px;}
._20_c00150{width:448.332000px;}
.fc2_c00150{color:transparent;}
.fc1_c00150{color:rgb(128,128,128);}
.fc0_c00150{color:rgb(0,0,0);}
.fs6_c00150{font-size:48.000000px;}
.fs4_c00150{font-size:72.000000px;}
.fs5_c00150{font-size:78.000000px;}
.fs3_c00150{font-size:81.000000px;}
.fs1_c00150{font-size:93.000000px;}
.fs2_c00150{font-size:99.000000px;}
.fs0_c00150{font-size:105.000000px;}
.y0_c00150{bottom:0.000000px;}
.y26_c00150{bottom:3.105000px;}
.y25_c00150{bottom:7.228371px;}
.y24_c00150{bottom:78.315000px;}
.y23_c00150{bottom:109.665000px;}
.y22_c00150{bottom:135.315000px;}
.y21_c00150{bottom:159.015000px;}
.y20_c00150{bottom:183.615000px;}
.y1f_c00150{bottom:207.915000px;}
.y1e_c00150{bottom:232.965000px;}
.y1d_c00150{bottom:256.815000px;}
.y1c_c00150{bottom:281.565000px;}
.y1b_c00150{bottom:304.515000px;}
.y1a_c00150{bottom:328.065000px;}
.y19_c00150{bottom:352.365000px;}
.y18_c00150{bottom:376.365000px;}
.y17_c00150{bottom:400.365000px;}
.y16_c00150{bottom:424.365000px;}
.y15_c00150{bottom:448.515000px;}
.y14_c00150{bottom:472.215000px;}
.y13_c00150{bottom:496.815000px;}
.y12_c00150{bottom:520.215000px;}
.y11_c00150{bottom:544.515000px;}
.y10_c00150{bottom:569.115000px;}
.yf_c00150{bottom:592.665000px;}
.ye_c00150{bottom:615.615000px;}
.yd_c00150{bottom:640.215000px;}
.yc_c00150{bottom:663.165000px;}
.yb_c00150{bottom:688.215000px;}
.ya_c00150{bottom:711.165000px;}
.y9_c00150{bottom:735.465000px;}
.y8_c00150{bottom:759.465000px;}
.y7_c00150{bottom:784.065000px;}
.y6_c00150{bottom:808.365000px;}
.y5_c00150{bottom:832.065000px;}
.y4_c00150{bottom:856.365000px;}
.y3_c00150{bottom:880.515000px;}
.y2_c00150{bottom:905.265000px;}
.y1_c00150{bottom:940.065000px;}
.h7_c00150{height:13.200074px;}
.h8_c00150{height:43.804688px;}
.h3_c00150{height:79.497070px;}
.h6_c00150{height:84.269531px;}
.h4_c00150{height:91.160156px;}
.h5_c00150{height:98.756836px;}
.h2_c00150{height:125.345215px;}
.h0_c00150{height:989.025000px;}
.h1_c00150{height:989.250000px;}
.w1_c00150{width:104.875500px;}
.w0_c00150{width:672.000000px;}
.x0_c00150{left:0.000000px;}
.x9_c00150{left:58.800000px;}
.x2_c00150{left:65.250000px;}
.x3_c00150{left:67.200000px;}
.x4_c00150{left:68.250000px;}
.x5_c00150{left:69.600000px;}
.x6_c00150{left:70.950000px;}
.x8_c00150{left:72.600000px;}
.x7_c00150{left:73.950000px;}
.xa_c00150{left:76.350000px;}
.xb_c00150{left:77.400000px;}
.xc_c00150{left:78.600000px;}
.x1_c00150{left:126.150000px;}
.xe_c00150{left:287.814240px;}
.xd_c00150{left:440.100000px;}
@media print{
.v0_c00150{vertical-align:0.000000pt;}
.ls1_c00150{letter-spacing:0.000000pt;}
.ls2_c00150{letter-spacing:18.666667pt;}
.ls0_c00150{letter-spacing:220.400000pt;}
.ws0_c00150{word-spacing:-39.874667pt;}
.ws1_c00150{word-spacing:-15.424000pt;}
.ws3_c00150{word-spacing:0.000000pt;}
.ws2_c00150{word-spacing:3.584000pt;}
._1e_c00150{margin-left:-32.864000pt;}
._3_c00150{margin-left:-14.653333pt;}
._7_c00150{margin-left:-13.104000pt;}
._6_c00150{margin-left:-11.072000pt;}
._4_c00150{margin-left:-9.426667pt;}
._b_c00150{margin-left:-8.125333pt;}
._13_c00150{margin-left:-6.674667pt;}
._d_c00150{margin-left:-5.648000pt;}
._c_c00150{margin-left:-4.752000pt;}
._a_c00150{margin-left:-3.712000pt;}
._1c_c00150{margin-left:-2.744000pt;}
._9_c00150{margin-left:-1.816000pt;}
._12_c00150{margin-left:-0.890667pt;}
._2_c00150{width:1.213333pt;}
._1_c00150{width:2.240000pt;}
._0_c00150{width:3.640000pt;}
._8_c00150{width:5.040000pt;}
._17_c00150{width:6.192000pt;}
._11_c00150{width:7.200000pt;}
._10_c00150{width:8.784000pt;}
._15_c00150{width:10.298667pt;}
._e_c00150{width:11.624000pt;}
._16_c00150{width:12.698667pt;}
._14_c00150{width:14.482667pt;}
._f_c00150{width:16.074667pt;}
._1a_c00150{width:25.717333pt;}
._19_c00150{width:38.320000pt;}
._1d_c00150{width:56.013333pt;}
._5_c00150{width:78.680000pt;}
._1f_c00150{width:164.666667pt;}
._18_c00150{width:170.170667pt;}
._21_c00150{width:240.784000pt;}
._1b_c00150{width:243.650667pt;}
._20_c00150{width:398.517333pt;}
.fs6_c00150{font-size:42.666667pt;}
.fs4_c00150{font-size:64.000000pt;}
.fs5_c00150{font-size:69.333333pt;}
.fs3_c00150{font-size:72.000000pt;}
.fs1_c00150{font-size:82.666667pt;}
.fs2_c00150{font-size:88.000000pt;}
.fs0_c00150{font-size:93.333333pt;}
.y0_c00150{bottom:0.000000pt;}
.y26_c00150{bottom:2.760000pt;}
.y25_c00150{bottom:6.425219pt;}
.y24_c00150{bottom:69.613333pt;}
.y23_c00150{bottom:97.480000pt;}
.y22_c00150{bottom:120.280000pt;}
.y21_c00150{bottom:141.346667pt;}
.y20_c00150{bottom:163.213333pt;}
.y1f_c00150{bottom:184.813333pt;}
.y1e_c00150{bottom:207.080000pt;}
.y1d_c00150{bottom:228.280000pt;}
.y1c_c00150{bottom:250.280000pt;}
.y1b_c00150{bottom:270.680000pt;}
.y1a_c00150{bottom:291.613333pt;}
.y19_c00150{bottom:313.213333pt;}
.y18_c00150{bottom:334.546667pt;}
.y17_c00150{bottom:355.880000pt;}
.y16_c00150{bottom:377.213333pt;}
.y15_c00150{bottom:398.680000pt;}
.y14_c00150{bottom:419.746667pt;}
.y13_c00150{bottom:441.613333pt;}
.y12_c00150{bottom:462.413333pt;}
.y11_c00150{bottom:484.013333pt;}
.y10_c00150{bottom:505.880000pt;}
.yf_c00150{bottom:526.813333pt;}
.ye_c00150{bottom:547.213333pt;}
.yd_c00150{bottom:569.080000pt;}
.yc_c00150{bottom:589.480000pt;}
.yb_c00150{bottom:611.746667pt;}
.ya_c00150{bottom:632.146667pt;}
.y9_c00150{bottom:653.746667pt;}
.y8_c00150{bottom:675.080000pt;}
.y7_c00150{bottom:696.946667pt;}
.y6_c00150{bottom:718.546667pt;}
.y5_c00150{bottom:739.613333pt;}
.y4_c00150{bottom:761.213333pt;}
.y3_c00150{bottom:782.680000pt;}
.y2_c00150{bottom:804.680000pt;}
.y1_c00150{bottom:835.613333pt;}
.h7_c00150{height:11.733399pt;}
.h8_c00150{height:38.937500pt;}
.h3_c00150{height:70.664062pt;}
.h6_c00150{height:74.906250pt;}
.h4_c00150{height:81.031250pt;}
.h5_c00150{height:87.783854pt;}
.h2_c00150{height:111.417969pt;}
.h0_c00150{height:879.133333pt;}
.h1_c00150{height:879.333333pt;}
.w1_c00150{width:93.222667pt;}
.w0_c00150{width:597.333333pt;}
.x0_c00150{left:0.000000pt;}
.x9_c00150{left:52.266667pt;}
.x2_c00150{left:58.000000pt;}
.x3_c00150{left:59.733333pt;}
.x4_c00150{left:60.666667pt;}
.x5_c00150{left:61.866667pt;}
.x6_c00150{left:63.066667pt;}
.x8_c00150{left:64.533333pt;}
.x7_c00150{left:65.733333pt;}
.xa_c00150{left:67.866667pt;}
.xb_c00150{left:68.800000pt;}
.xc_c00150{left:69.866667pt;}
.x1_c00150{left:112.133333pt;}
.xe_c00150{left:255.834880pt;}
.xd_c00150{left:391.200000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_be9a5c7107232b421d5b4e13.woff2')format("woff");}.ff1_c00151{font-family:ff1_c00151;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00151;src:url('chunks/assets/font_4dab07045b38b506663369da.woff2')format("woff");}.ff2_c00151{font-family:ff2_c00151;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00151;src:url('chunks/assets/font_46d669f0f2c1ef9e37225bad.woff2')format("woff");}.ff3_c00151{font-family:ff3_c00151;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00151;src:url('chunks/assets/font_6aeb856cfab2ee421df130bb.woff2')format("woff");}.ff4_c00151{font-family:ff4_c00151;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00151;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff5_c00151{font-family:ff5_c00151;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00151;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c00151{font-family:ff6_c00151;line-height:1.219238;font-style: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;}
.v1_c00151{vertical-align:167.400000px;}
.ls2_c00151{letter-spacing:0.000000px;}
.ls1_c00151{letter-spacing:0.900000px;}
.ls0_c00151{letter-spacing:24.348000px;}
.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:-65.100000px;}
.ws0_c00151{word-spacing:-17.352000px;}
.ws2_c00151{word-spacing:-13.200000px;}
.ws3_c00151{word-spacing:0.000000px;}
._1d_c00151{margin-left:-27.621000px;}
._22_c00151{margin-left:-18.600000px;}
._18_c00151{margin-left:-14.976000px;}
._1c_c00151{margin-left:-13.521000px;}
._1f_c00151{margin-left:-12.456000px;}
._1a_c00151{margin-left:-11.367000px;}
._0_c00151{margin-left:-10.008000px;}
._1_c00151{margin-left:-8.208000px;}
._12_c00151{margin-left:-7.182000px;}
._c_c00151{margin-left:-5.913000px;}
._14_c00151{margin-left:-4.689000px;}
._f_c00151{margin-left:-3.303000px;}
._2_c00151{margin-left:-2.268000px;}
._16_c00151{margin-left:-1.053000px;}
._8_c00151{width:1.053000px;}
._7_c00151{width:2.592000px;}
._e_c00151{width:3.627000px;}
._4_c00151{width:4.698000px;}
._3_c00151{width:5.751000px;}
._9_c00151{width:6.966000px;}
._6_c00151{width:8.748000px;}
._b_c00151{width:10.044000px;}
._a_c00151{width:11.340000px;}
._d_c00151{width:13.230000px;}
._1e_c00151{width:15.471000px;}
._10_c00151{width:16.551000px;}
._11_c00151{width:18.189000px;}
._5_c00151{width:22.032000px;}
._19_c00151{width:24.102000px;}
._13_c00151{width:36.648000px;}
._15_c00151{width:40.146000px;}
._17_c00151{width:42.087000px;}
._1b_c00151{width:44.424000px;}
._24_c00151{width:53.163000px;}
._21_c00151{width:89.844000px;}
._20_c00151{width:106.146000px;}
._23_c00151{width:272.178000px;}
.fc2_c00151{color:transparent;}
.fc1_c00151{color:rgb(128,128,128);}
.fc0_c00151{color:rgb(0,0,0);}
.fs7_c00151{font-size:48.000000px;}
.fs2_c00151{font-size:51.000000px;}
.fs6_c00151{font-size:52.800000px;}
.fs3_c00151{font-size:57.000000px;}
.fs5_c00151{font-size:66.000000px;}
.fs0_c00151{font-size:72.000000px;}
.fs1_c00151{font-size:81.000000px;}
.fs4_c00151{font-size:300.000000px;}
.y0_c00151{bottom:0.000000px;}
.y23_c00151{bottom:3.105000px;}
.y22_c00151{bottom:7.228357px;}
.y21_c00151{bottom:113.730000px;}
.y20_c00151{bottom:138.330000px;}
.y1f_c00151{bottom:163.080000px;}
.y1e_c00151{bottom:187.380000px;}
.y1d_c00151{bottom:211.680000px;}
.y1c_c00151{bottom:236.280000px;}
.y1b_c00151{bottom:260.280000px;}
.y1a_c00151{bottom:284.580000px;}
.y19_c00151{bottom:308.580000px;}
.y18_c00151{bottom:332.730000px;}
.y16_c00151{bottom:339.930000px;}
.y17_c00151{bottom:357.780000px;}
.y15_c00151{bottom:406.080000px;}
.y14_c00151{bottom:453.630000px;}
.y13_c00151{bottom:477.930000px;}
.y12_c00151{bottom:501.930000px;}
.y11_c00151{bottom:525.930000px;}
.y10_c00151{bottom:550.080000px;}
.yf_c00151{bottom:574.380000px;}
.ye_c00151{bottom:598.380000px;}
.yd_c00151{bottom:622.080000px;}
.yc_c00151{bottom:646.980000px;}
.yb_c00151{bottom:670.380000px;}
.ya_c00151{bottom:693.930000px;}
.y9_c00151{bottom:718.530000px;}
.y8_c00151{bottom:742.530000px;}
.y7_c00151{bottom:766.830000px;}
.y6_c00151{bottom:790.830000px;}
.y5_c00151{bottom:814.830000px;}
.y4_c00151{bottom:838.680000px;}
.y3_c00151{bottom:862.680000px;}
.y2_c00151{bottom:886.230000px;}
.y1_c00151{bottom:910.530000px;}
.h6_c00151{height:13.200074px;}
.h7_c00151{height:43.804688px;}
.h3_c00151{height:66.713379px;}
.h2_c00151{height:79.497070px;}
.h1_c00151{height:84.269531px;}
.h5_c00151{height:91.160156px;}
.h4_c00151{height:320.100000px;}
.h0_c00151{height:995.250000px;}
.w2_c00151{width:104.875500px;}
.w0_c00151{width:667.425000px;}
.w1_c00151{width:667.500000px;}
.x0_c00151{left:0.000000px;}
.xc_c00151{left:23.550000px;}
.x5_c00151{left:24.600000px;}
.x7_c00151{left:25.950000px;}
.x6_c00151{left:57.300000px;}
.xd_c00151{left:88.350000px;}
.x1_c00151{left:115.800000px;}
.x3_c00151{left:118.800000px;}
.x4_c00151{left:120.150000px;}
.x2_c00151{left:121.950000px;}
.x9_c00151{left:124.200000px;}
.xb_c00151{left:183.600000px;}
.xa_c00151{left:189.600000px;}
.x8_c00151{left:249.450000px;}
.xe_c00151{left:285.526749px;}
@media print{
.v0_c00151{vertical-align:0.000000pt;}
.v1_c00151{vertical-align:148.800000pt;}
.ls2_c00151{letter-spacing:0.000000pt;}
.ls1_c00151{letter-spacing:0.800000pt;}
.ls0_c00151{letter-spacing:21.642667pt;}
.ws1_c00151{word-spacing:-57.866667pt;}
.ws0_c00151{word-spacing:-15.424000pt;}
.ws2_c00151{word-spacing:-11.733333pt;}
.ws3_c00151{word-spacing:0.000000pt;}
._1d_c00151{margin-left:-24.552000pt;}
._22_c00151{margin-left:-16.533333pt;}
._18_c00151{margin-left:-13.312000pt;}
._1c_c00151{margin-left:-12.018667pt;}
._1f_c00151{margin-left:-11.072000pt;}
._1a_c00151{margin-left:-10.104000pt;}
._0_c00151{margin-left:-8.896000pt;}
._1_c00151{margin-left:-7.296000pt;}
._12_c00151{margin-left:-6.384000pt;}
._c_c00151{margin-left:-5.256000pt;}
._14_c00151{margin-left:-4.168000pt;}
._f_c00151{margin-left:-2.936000pt;}
._2_c00151{margin-left:-2.016000pt;}
._16_c00151{margin-left:-0.936000pt;}
._8_c00151{width:0.936000pt;}
._7_c00151{width:2.304000pt;}
._e_c00151{width:3.224000pt;}
._4_c00151{width:4.176000pt;}
._3_c00151{width:5.112000pt;}
._9_c00151{width:6.192000pt;}
._6_c00151{width:7.776000pt;}
._b_c00151{width:8.928000pt;}
._a_c00151{width:10.080000pt;}
._d_c00151{width:11.760000pt;}
._1e_c00151{width:13.752000pt;}
._10_c00151{width:14.712000pt;}
._11_c00151{width:16.168000pt;}
._5_c00151{width:19.584000pt;}
._19_c00151{width:21.424000pt;}
._13_c00151{width:32.576000pt;}
._15_c00151{width:35.685333pt;}
._17_c00151{width:37.410667pt;}
._1b_c00151{width:39.488000pt;}
._24_c00151{width:47.256000pt;}
._21_c00151{width:79.861333pt;}
._20_c00151{width:94.352000pt;}
._23_c00151{width:241.936000pt;}
.fs7_c00151{font-size:42.666667pt;}
.fs2_c00151{font-size:45.333333pt;}
.fs6_c00151{font-size:46.933333pt;}
.fs3_c00151{font-size:50.666667pt;}
.fs5_c00151{font-size:58.666667pt;}
.fs0_c00151{font-size:64.000000pt;}
.fs1_c00151{font-size:72.000000pt;}
.fs4_c00151{font-size:266.666667pt;}
.y0_c00151{bottom:0.000000pt;}
.y23_c00151{bottom:2.760000pt;}
.y22_c00151{bottom:6.425206pt;}
.y21_c00151{bottom:101.093333pt;}
.y20_c00151{bottom:122.960000pt;}
.y1f_c00151{bottom:144.960000pt;}
.y1e_c00151{bottom:166.560000pt;}
.y1d_c00151{bottom:188.160000pt;}
.y1c_c00151{bottom:210.026667pt;}
.y1b_c00151{bottom:231.360000pt;}
.y1a_c00151{bottom:252.960000pt;}
.y19_c00151{bottom:274.293333pt;}
.y18_c00151{bottom:295.760000pt;}
.y16_c00151{bottom:302.160000pt;}
.y17_c00151{bottom:318.026667pt;}
.y15_c00151{bottom:360.960000pt;}
.y14_c00151{bottom:403.226667pt;}
.y13_c00151{bottom:424.826667pt;}
.y12_c00151{bottom:446.160000pt;}
.y11_c00151{bottom:467.493333pt;}
.y10_c00151{bottom:488.960000pt;}
.yf_c00151{bottom:510.560000pt;}
.ye_c00151{bottom:531.893333pt;}
.yd_c00151{bottom:552.960000pt;}
.yc_c00151{bottom:575.093333pt;}
.yb_c00151{bottom:595.893333pt;}
.ya_c00151{bottom:616.826667pt;}
.y9_c00151{bottom:638.693333pt;}
.y8_c00151{bottom:660.026667pt;}
.y7_c00151{bottom:681.626667pt;}
.y6_c00151{bottom:702.960000pt;}
.y5_c00151{bottom:724.293333pt;}
.y4_c00151{bottom:745.493333pt;}
.y3_c00151{bottom:766.826667pt;}
.y2_c00151{bottom:787.760000pt;}
.y1_c00151{bottom:809.360000pt;}
.h6_c00151{height:11.733399pt;}
.h7_c00151{height:38.937500pt;}
.h3_c00151{height:59.300781pt;}
.h2_c00151{height:70.664062pt;}
.h1_c00151{height:74.906250pt;}
.h5_c00151{height:81.031250pt;}
.h4_c00151{height:284.533333pt;}
.h0_c00151{height:884.666667pt;}
.w2_c00151{width:93.222667pt;}
.w0_c00151{width:593.266667pt;}
.w1_c00151{width:593.333333pt;}
.x0_c00151{left:0.000000pt;}
.xc_c00151{left:20.933333pt;}
.x5_c00151{left:21.866667pt;}
.x7_c00151{left:23.066667pt;}
.x6_c00151{left:50.933333pt;}
.xd_c00151{left:78.533333pt;}
.x1_c00151{left:102.933333pt;}
.x3_c00151{left:105.600000pt;}
.x4_c00151{left:106.800000pt;}
.x2_c00151{left:108.400000pt;}
.x9_c00151{left:110.400000pt;}
.xb_c00151{left:163.200000pt;}
.xa_c00151{left:168.533333pt;}
.x8_c00151{left:221.733333pt;}
.xe_c00151{left:253.801554pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f071c9a60ba82995acd74358.woff2')format("woff");}.ff1_c00152{font-family:ff1_c00152;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00152;src:url('chunks/assets/font_2342826e863833bea828bbcc.woff2')format("woff");}.ff2_c00152{font-family:ff2_c00152;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00152;src:url('chunks/assets/font_bcd3fa1691ca931d2927bb2e.woff2')format("woff");}.ff3_c00152{font-family:ff3_c00152;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00152;src:url('chunks/assets/font_2ab3b0c80230e53f18b8948f.woff2')format("woff");}.ff4_c00152{font-family:ff4_c00152;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00152;src:url('chunks/assets/font_b71d00268163c5ac94c29ff4.woff2')format("woff");}.ff5_c00152{font-family:ff5_c00152;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00152;src:url('chunks/assets/font_e921041df11de149883f8fe4.woff2')format("woff");}.ff6_c00152{font-family:ff6_c00152;line-height:1.437000;font-style:normal;font-weight: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_c00152;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c00152{font-family:ff7_c00152;line-height:1.219238;font-style: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);}
.m1_c00152{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.v0_c00152{vertical-align:0.000000px;}
.ls0_c00152{letter-spacing:0.000000px;}
.ls1_c00152{letter-spacing:24.000000px;}
.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;}
}
.ws4_c00152{word-spacing:-67.686000px;}
.ws0_c00152{word-spacing:-50.250000px;}
.ws2_c00152{word-spacing:-20.250000px;}
.ws3_c00152{word-spacing:-17.352000px;}
.ws1_c00152{word-spacing:-2.622000px;}
.ws5_c00152{word-spacing:0.000000px;}
._24_c00152{margin-left:-25.515000px;}
._22_c00152{margin-left:-16.362000px;}
._2c_c00152{margin-left:-15.255000px;}
._29_c00152{margin-left:-13.494000px;}
._8_c00152{margin-left:-12.075000px;}
._c_c00152{margin-left:-9.885000px;}
._26_c00152{margin-left:-8.289000px;}
._1_c00152{margin-left:-6.780000px;}
._a_c00152{margin-left:-5.565000px;}
._4_c00152{margin-left:-4.200000px;}
._9_c00152{margin-left:-2.625000px;}
._b_c00152{margin-left:-1.050000px;}
._d_c00152{width:1.365000px;}
._2_c00152{width:2.835000px;}
._3_c00152{width:4.020000px;}
._0_c00152{width:5.115000px;}
._5_c00152{width:6.720000px;}
._e_c00152{width:8.037000px;}
._7_c00152{width:9.240000px;}
._f_c00152{width:10.659000px;}
._6_c00152{width:12.390000px;}
._27_c00152{width:14.448000px;}
._10_c00152{width:15.657000px;}
._12_c00152{width:16.677000px;}
._14_c00152{width:17.697000px;}
._11_c00152{width:19.023000px;}
._1a_c00152{width:20.082000px;}
._1c_c00152{width:21.084000px;}
._16_c00152{width:22.152000px;}
._19_c00152{width:23.403000px;}
._1d_c00152{width:24.567000px;}
._1f_c00152{width:27.246000px;}
._13_c00152{width:28.329000px;}
._18_c00152{width:30.153000px;}
._15_c00152{width:31.821000px;}
._17_c00152{width:32.871000px;}
._1b_c00152{width:36.048000px;}
._2a_c00152{width:37.353000px;}
._28_c00152{width:42.051000px;}
._1e_c00152{width:48.303000px;}
._2b_c00152{width:62.751000px;}
._23_c00152{width:145.071000px;}
._21_c00152{width:160.032000px;}
._25_c00152{width:170.829000px;}
._2d_c00152{width:242.028000px;}
._20_c00152{width:298.542000px;}
.fc2_c00152{color:transparent;}
.fc1_c00152{color:rgb(128,128,128);}
.fc0_c00152{color:rgb(0,0,0);}
.fs5_c00152{font-size:48.000000px;}
.fs2_c00152{font-size:57.000000px;}
.fs6_c00152{font-size:72.000000px;}
.fs3_c00152{font-size:78.000000px;}
.fs4_c00152{font-size:81.000000px;}
.fs7_c00152{font-size:87.000000px;}
.fs0_c00152{font-size:93.000000px;}
.fs1_c00152{font-size:105.000000px;}
.y0_c00152{bottom:0.000000px;}
.y27_c00152{bottom:3.105000px;}
.y26_c00152{bottom:7.228371px;}
.y25_c00152{bottom:84.465000px;}
.y24_c00152{bottom:108.315000px;}
.y23_c00152{bottom:132.765000px;}
.y22_c00152{bottom:157.365000px;}
.y21_c00152{bottom:181.365000px;}
.y20_c00152{bottom:205.665000px;}
.y1f_c00152{bottom:230.265000px;}
.y1e_c00152{bottom:254.115000px;}
.y1d_c00152{bottom:278.865000px;}
.y1c_c00152{bottom:302.715000px;}
.y1b_c00152{bottom:326.115000px;}
.y1a_c00152{bottom:350.115000px;}
.y19_c00152{bottom:374.265000px;}
.y18_c00152{bottom:398.265000px;}
.y17_c00152{bottom:422.265000px;}
.y16_c00152{bottom:446.265000px;}
.y15_c00152{bottom:471.465000px;}
.y14_c00152{bottom:494.565000px;}
.y13_c00152{bottom:519.165000px;}
.y12_c00152{bottom:542.715000px;}
.y11_c00152{bottom:567.315000px;}
.y10_c00152{bottom:590.415000px;}
.yf_c00152{bottom:614.565000px;}
.ye_c00152{bottom:638.265000px;}
.yd_c00152{bottom:661.965000px;}
.yc_c00152{bottom:686.115000px;}
.yb_c00152{bottom:710.415000px;}
.ya_c00152{bottom:720.015000px;}
.y9_c00152{bottom:735.765000px;}
.y8_c00152{bottom:760.065000px;}
.y7_c00152{bottom:783.315000px;}
.y6_c00152{bottom:807.315000px;}
.y5_c00152{bottom:832.665000px;}
.y4_c00152{bottom:855.615000px;}
.y3_c00152{bottom:880.665000px;}
.y2_c00152{bottom:904.215000px;}
.y1_c00152{bottom:937.365000px;}
.h8_c00152{height:13.200074px;}
.h9_c00152{height:43.804688px;}
.h3_c00152{height:57.445312px;}
.h5_c00152{height:79.497070px;}
.h6_c00152{height:91.160156px;}
.h7_c00152{height:91.176000px;}
.h4_c00152{height:98.756836px;}
.h2_c00152{height:103.000488px;}
.h0_c00152{height:989.025000px;}
.h1_c00152{height:989.250000px;}
.w1_c00152{width:104.875500px;}
.w0_c00152{width:672.000000px;}
.x0_c00152{left:0.000000px;}
.x7_c00152{left:31.950000px;}
.x1_c00152{left:47.250000px;}
.x2_c00152{left:49.050000px;}
.x3_c00152{left:50.700000px;}
.x4_c00152{left:52.050000px;}
.x8_c00152{left:53.766000px;}
.x9_c00152{left:54.978000px;}
.x5_c00152{left:117.450000px;}
.x6_c00152{left:274.350000px;}
.xb_c00152{left:287.814240px;}
.xa_c00152{left:395.247000px;}
@media print{
.v0_c00152{vertical-align:0.000000pt;}
.ls0_c00152{letter-spacing:0.000000pt;}
.ls1_c00152{letter-spacing:21.333333pt;}
.ws4_c00152{word-spacing:-60.165333pt;}
.ws0_c00152{word-spacing:-44.666667pt;}
.ws2_c00152{word-spacing:-18.000000pt;}
.ws3_c00152{word-spacing:-15.424000pt;}
.ws1_c00152{word-spacing:-2.330667pt;}
.ws5_c00152{word-spacing:0.000000pt;}
._24_c00152{margin-left:-22.680000pt;}
._22_c00152{margin-left:-14.544000pt;}
._2c_c00152{margin-left:-13.560000pt;}
._29_c00152{margin-left:-11.994667pt;}
._8_c00152{margin-left:-10.733333pt;}
._c_c00152{margin-left:-8.786667pt;}
._26_c00152{margin-left:-7.368000pt;}
._1_c00152{margin-left:-6.026667pt;}
._a_c00152{margin-left:-4.946667pt;}
._4_c00152{margin-left:-3.733333pt;}
._9_c00152{margin-left:-2.333333pt;}
._b_c00152{margin-left:-0.933333pt;}
._d_c00152{width:1.213333pt;}
._2_c00152{width:2.520000pt;}
._3_c00152{width:3.573333pt;}
._0_c00152{width:4.546667pt;}
._5_c00152{width:5.973333pt;}
._e_c00152{width:7.144000pt;}
._7_c00152{width:8.213333pt;}
._f_c00152{width:9.474667pt;}
._6_c00152{width:11.013333pt;}
._27_c00152{width:12.842667pt;}
._10_c00152{width:13.917333pt;}
._12_c00152{width:14.824000pt;}
._14_c00152{width:15.730667pt;}
._11_c00152{width:16.909333pt;}
._1a_c00152{width:17.850667pt;}
._1c_c00152{width:18.741333pt;}
._16_c00152{width:19.690667pt;}
._19_c00152{width:20.802667pt;}
._1d_c00152{width:21.837333pt;}
._1f_c00152{width:24.218667pt;}
._13_c00152{width:25.181333pt;}
._18_c00152{width:26.802667pt;}
._15_c00152{width:28.285333pt;}
._17_c00152{width:29.218667pt;}
._1b_c00152{width:32.042667pt;}
._2a_c00152{width:33.202667pt;}
._28_c00152{width:37.378667pt;}
._1e_c00152{width:42.936000pt;}
._2b_c00152{width:55.778667pt;}
._23_c00152{width:128.952000pt;}
._21_c00152{width:142.250667pt;}
._25_c00152{width:151.848000pt;}
._2d_c00152{width:215.136000pt;}
._20_c00152{width:265.370667pt;}
.fs5_c00152{font-size:42.666667pt;}
.fs2_c00152{font-size:50.666667pt;}
.fs6_c00152{font-size:64.000000pt;}
.fs3_c00152{font-size:69.333333pt;}
.fs4_c00152{font-size:72.000000pt;}
.fs7_c00152{font-size:77.333333pt;}
.fs0_c00152{font-size:82.666667pt;}
.fs1_c00152{font-size:93.333333pt;}
.y0_c00152{bottom:0.000000pt;}
.y27_c00152{bottom:2.760000pt;}
.y26_c00152{bottom:6.425219pt;}
.y25_c00152{bottom:75.080000pt;}
.y24_c00152{bottom:96.280000pt;}
.y23_c00152{bottom:118.013333pt;}
.y22_c00152{bottom:139.880000pt;}
.y21_c00152{bottom:161.213333pt;}
.y20_c00152{bottom:182.813333pt;}
.y1f_c00152{bottom:204.680000pt;}
.y1e_c00152{bottom:225.880000pt;}
.y1d_c00152{bottom:247.880000pt;}
.y1c_c00152{bottom:269.080000pt;}
.y1b_c00152{bottom:289.880000pt;}
.y1a_c00152{bottom:311.213333pt;}
.y19_c00152{bottom:332.680000pt;}
.y18_c00152{bottom:354.013333pt;}
.y17_c00152{bottom:375.346667pt;}
.y16_c00152{bottom:396.680000pt;}
.y15_c00152{bottom:419.080000pt;}
.y14_c00152{bottom:439.613333pt;}
.y13_c00152{bottom:461.480000pt;}
.y12_c00152{bottom:482.413333pt;}
.y11_c00152{bottom:504.280000pt;}
.y10_c00152{bottom:524.813333pt;}
.yf_c00152{bottom:546.280000pt;}
.ye_c00152{bottom:567.346667pt;}
.yd_c00152{bottom:588.413333pt;}
.yc_c00152{bottom:609.880000pt;}
.yb_c00152{bottom:631.480000pt;}
.ya_c00152{bottom:640.013333pt;}
.y9_c00152{bottom:654.013333pt;}
.y8_c00152{bottom:675.613333pt;}
.y7_c00152{bottom:696.280000pt;}
.y6_c00152{bottom:717.613333pt;}
.y5_c00152{bottom:740.146667pt;}
.y4_c00152{bottom:760.546667pt;}
.y3_c00152{bottom:782.813333pt;}
.y2_c00152{bottom:803.746667pt;}
.y1_c00152{bottom:833.213333pt;}
.h8_c00152{height:11.733399pt;}
.h9_c00152{height:38.937500pt;}
.h3_c00152{height:51.062500pt;}
.h5_c00152{height:70.664062pt;}
.h6_c00152{height:81.031250pt;}
.h7_c00152{height:81.045333pt;}
.h4_c00152{height:87.783854pt;}
.h2_c00152{height:91.555990pt;}
.h0_c00152{height:879.133333pt;}
.h1_c00152{height:879.333333pt;}
.w1_c00152{width:93.222667pt;}
.w0_c00152{width:597.333333pt;}
.x0_c00152{left:0.000000pt;}
.x7_c00152{left:28.400000pt;}
.x1_c00152{left:42.000000pt;}
.x2_c00152{left:43.600000pt;}
.x3_c00152{left:45.066667pt;}
.x4_c00152{left:46.266667pt;}
.x8_c00152{left:47.792000pt;}
.x9_c00152{left:48.869333pt;}
.x5_c00152{left:104.400000pt;}
.x6_c00152{left:243.866667pt;}
.xb_c00152{left:255.834880pt;}
.xa_c00152{left:351.330667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f4b5cbc6be8ec31eb4fbc6dd.woff2')format("woff");}.ff1_c00153{font-family:ff1_c00153;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00153;src:url('chunks/assets/font_f46dccaad0c594d1918d114f.woff2')format("woff");}.ff2_c00153{font-family:ff2_c00153;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00153;src:url('chunks/assets/font_419affce557492492a24dca3.woff2')format("woff");}.ff3_c00153{font-family:ff3_c00153;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00153;src:url('chunks/assets/font_c565e16f28bb9aa7d89dbc62.woff2')format("woff");}.ff4_c00153{font-family:ff4_c00153;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00153;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c00153{font-family:ff5_c00153;line-height:1.219238;font-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_c00153{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,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;}
.ls0_c00153{letter-spacing:0.000000px;}
.sc__c00153{text-shadow:none;}
.sc0_c00153{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00153{-webkit-text-stroke:0px transparent;}
.sc0_c00153{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00153{word-spacing:-67.686000px;}
.ws3_c00153{word-spacing:-27.000000px;}
.ws2_c00153{word-spacing:-20.250000px;}
.ws0_c00153{word-spacing:-17.352000px;}
.ws4_c00153{word-spacing:0.000000px;}
._1f_c00153{margin-left:-44.388000px;}
._14_c00153{margin-left:-35.154000px;}
._17_c00153{margin-left:-20.412000px;}
._1d_c00153{margin-left:-18.711000px;}
._27_c00153{margin-left:-10.584000px;}
._25_c00153{margin-left:-8.586000px;}
._22_c00153{margin-left:-7.533000px;}
._5_c00153{margin-left:-5.913000px;}
._1_c00153{margin-left:-4.293000px;}
._16_c00153{margin-left:-2.997000px;}
._6_c00153{margin-left:-1.944000px;}
._0_c00153{width:1.053000px;}
._3_c00153{width:2.187000px;}
._2_c00153{width:3.321000px;}
._8_c00153{width:5.022000px;}
._9_c00153{width:6.399000px;}
._7_c00153{width:7.614000px;}
._d_c00153{width:9.315000px;}
._c_c00153{width:10.530000px;}
._18_c00153{width:11.583000px;}
._a_c00153{width:12.636000px;}
._e_c00153{width:13.770000px;}
._4_c00153{width:15.957000px;}
._b_c00153{width:17.982000px;}
._12_c00153{width:21.870000px;}
._24_c00153{width:24.057000px;}
._19_c00153{width:26.568000px;}
._1b_c00153{width:28.512000px;}
._10_c00153{width:30.618000px;}
._1a_c00153{width:32.724000px;}
._1c_c00153{width:35.493000px;}
._f_c00153{width:37.422000px;}
._13_c00153{width:48.276000px;}
._21_c00153{width:50.463000px;}
._1e_c00153{width:71.523000px;}
._15_c00153{width:75.816000px;}
._11_c00153{width:203.877000px;}
._20_c00153{width:218.214000px;}
._23_c00153{width:249.804000px;}
._26_c00153{width:507.789000px;}
.fc2_c00153{color:transparent;}
.fc1_c00153{color:rgb(128,128,128);}
.fc0_c00153{color:rgb(0,0,0);}
.fs4_c00153{font-size:48.000000px;}
.fs1_c00153{font-size:72.000000px;}
.fs0_c00153{font-size:81.000000px;}
.fs2_c00153{font-size:87.000000px;}
.fs3_c00153{font-size:108.000000px;}
.y0_c00153{bottom:0.000000px;}
.y25_c00153{bottom:3.105000px;}
.y24_c00153{bottom:7.228357px;}
.y23_c00153{bottom:78.330000px;}
.y22_c00153{bottom:101.280000px;}
.y21_c00153{bottom:126.630000px;}
.y20_c00153{bottom:150.480000px;}
.y1f_c00153{bottom:175.230000px;}
.y1e_c00153{bottom:201.780000px;}
.y1d_c00153{bottom:225.780000px;}
.y1c_c00153{bottom:248.730000px;}
.y1b_c00153{bottom:272.730000px;}
.y1a_c00153{bottom:297.330000px;}
.y19_c00153{bottom:321.330000px;}
.y18_c00153{bottom:345.930000px;}
.y17_c00153{bottom:369.930000px;}
.y16_c00153{bottom:394.230000px;}
.y15_c00153{bottom:418.530000px;}
.y14_c00153{bottom:442.230000px;}
.y13_c00153{bottom:466.530000px;}
.y12_c00153{bottom:492.030000px;}
.y11_c00153{bottom:514.980000px;}
.y10_c00153{bottom:540.630000px;}
.yf_c00153{bottom:563.730000px;}
.ye_c00153{bottom:587.880000px;}
.yd_c00153{bottom:611.580000px;}
.yc_c00153{bottom:636.480000px;}
.yb_c00153{bottom:660.930000px;}
.ya_c00153{bottom:682.830000px;}
.y9_c00153{bottom:709.380000px;}
.y8_c00153{bottom:734.730000px;}
.y7_c00153{bottom:758.280000px;}
.y6_c00153{bottom:782.280000px;}
.y5_c00153{bottom:806.280000px;}
.y4_c00153{bottom:830.280000px;}
.y3_c00153{bottom:854.580000px;}
.y2_c00153{bottom:880.230000px;}
.y1_c00153{bottom:902.880000px;}
.h5_c00153{height:13.200074px;}
.h6_c00153{height:43.804688px;}
.h1_c00153{height:79.497070px;}
.h2_c00153{height:84.269531px;}
.h3_c00153{height:91.176000px;}
.h4_c00153{height:108.843750px;}
.h0_c00153{height:995.250000px;}
.w2_c00153{width:104.875500px;}
.w0_c00153{width:667.425000px;}
.w1_c00153{width:667.500000px;}
.x0_c00153{left:0.000000px;}
.x5_c00153{left:57.000000px;}
.x7_c00153{left:58.650000px;}
.x3_c00153{left:65.700000px;}
.x9_c00153{left:105.600000px;}
.x4_c00153{left:120.750000px;}
.x1_c00153{left:148.800000px;}
.x2_c00153{left:149.850000px;}
.x8_c00153{left:151.500000px;}
.x6_c00153{left:152.550000px;}
.xd_c00153{left:285.526749px;}
.xa_c00153{left:311.400000px;}
.xb_c00153{left:530.100000px;}
.xc_c00153{left:594.900000px;}
@media print{
.v0_c00153{vertical-align:0.000000pt;}
.ls0_c00153{letter-spacing:0.000000pt;}
.ws1_c00153{word-spacing:-60.165333pt;}
.ws3_c00153{word-spacing:-24.000000pt;}
.ws2_c00153{word-spacing:-18.000000pt;}
.ws0_c00153{word-spacing:-15.424000pt;}
.ws4_c00153{word-spacing:0.000000pt;}
._1f_c00153{margin-left:-39.456000pt;}
._14_c00153{margin-left:-31.248000pt;}
._17_c00153{margin-left:-18.144000pt;}
._1d_c00153{margin-left:-16.632000pt;}
._27_c00153{margin-left:-9.408000pt;}
._25_c00153{margin-left:-7.632000pt;}
._22_c00153{margin-left:-6.696000pt;}
._5_c00153{margin-left:-5.256000pt;}
._1_c00153{margin-left:-3.816000pt;}
._16_c00153{margin-left:-2.664000pt;}
._6_c00153{margin-left:-1.728000pt;}
._0_c00153{width:0.936000pt;}
._3_c00153{width:1.944000pt;}
._2_c00153{width:2.952000pt;}
._8_c00153{width:4.464000pt;}
._9_c00153{width:5.688000pt;}
._7_c00153{width:6.768000pt;}
._d_c00153{width:8.280000pt;}
._c_c00153{width:9.360000pt;}
._18_c00153{width:10.296000pt;}
._a_c00153{width:11.232000pt;}
._e_c00153{width:12.240000pt;}
._4_c00153{width:14.184000pt;}
._b_c00153{width:15.984000pt;}
._12_c00153{width:19.440000pt;}
._24_c00153{width:21.384000pt;}
._19_c00153{width:23.616000pt;}
._1b_c00153{width:25.344000pt;}
._10_c00153{width:27.216000pt;}
._1a_c00153{width:29.088000pt;}
._1c_c00153{width:31.549333pt;}
._f_c00153{width:33.264000pt;}
._13_c00153{width:42.912000pt;}
._21_c00153{width:44.856000pt;}
._1e_c00153{width:63.576000pt;}
._15_c00153{width:67.392000pt;}
._11_c00153{width:181.224000pt;}
._20_c00153{width:193.968000pt;}
._23_c00153{width:222.048000pt;}
._26_c00153{width:451.368000pt;}
.fs4_c00153{font-size:42.666667pt;}
.fs1_c00153{font-size:64.000000pt;}
.fs0_c00153{font-size:72.000000pt;}
.fs2_c00153{font-size:77.333333pt;}
.fs3_c00153{font-size:96.000000pt;}
.y0_c00153{bottom:0.000000pt;}
.y25_c00153{bottom:2.760000pt;}
.y24_c00153{bottom:6.425206pt;}
.y23_c00153{bottom:69.626667pt;}
.y22_c00153{bottom:90.026667pt;}
.y21_c00153{bottom:112.560000pt;}
.y20_c00153{bottom:133.760000pt;}
.y1f_c00153{bottom:155.760000pt;}
.y1e_c00153{bottom:179.360000pt;}
.y1d_c00153{bottom:200.693333pt;}
.y1c_c00153{bottom:221.093333pt;}
.y1b_c00153{bottom:242.426667pt;}
.y1a_c00153{bottom:264.293333pt;}
.y19_c00153{bottom:285.626667pt;}
.y18_c00153{bottom:307.493333pt;}
.y17_c00153{bottom:328.826667pt;}
.y16_c00153{bottom:350.426667pt;}
.y15_c00153{bottom:372.026667pt;}
.y14_c00153{bottom:393.093333pt;}
.y13_c00153{bottom:414.693333pt;}
.y12_c00153{bottom:437.360000pt;}
.y11_c00153{bottom:457.760000pt;}
.y10_c00153{bottom:480.560000pt;}
.yf_c00153{bottom:501.093333pt;}
.ye_c00153{bottom:522.560000pt;}
.yd_c00153{bottom:543.626667pt;}
.yc_c00153{bottom:565.760000pt;}
.yb_c00153{bottom:587.493333pt;}
.ya_c00153{bottom:606.960000pt;}
.y9_c00153{bottom:630.560000pt;}
.y8_c00153{bottom:653.093333pt;}
.y7_c00153{bottom:674.026667pt;}
.y6_c00153{bottom:695.360000pt;}
.y5_c00153{bottom:716.693333pt;}
.y4_c00153{bottom:738.026667pt;}
.y3_c00153{bottom:759.626667pt;}
.y2_c00153{bottom:782.426667pt;}
.y1_c00153{bottom:802.560000pt;}
.h5_c00153{height:11.733399pt;}
.h6_c00153{height:38.937500pt;}
.h1_c00153{height:70.664062pt;}
.h2_c00153{height:74.906250pt;}
.h3_c00153{height:81.045333pt;}
.h4_c00153{height:96.750000pt;}
.h0_c00153{height:884.666667pt;}
.w2_c00153{width:93.222667pt;}
.w0_c00153{width:593.266667pt;}
.w1_c00153{width:593.333333pt;}
.x0_c00153{left:0.000000pt;}
.x5_c00153{left:50.666667pt;}
.x7_c00153{left:52.133333pt;}
.x3_c00153{left:58.400000pt;}
.x9_c00153{left:93.866667pt;}
.x4_c00153{left:107.333333pt;}
.x1_c00153{left:132.266667pt;}
.x2_c00153{left:133.200000pt;}
.x8_c00153{left:134.666667pt;}
.x6_c00153{left:135.600000pt;}
.xd_c00153{left:253.801554pt;}
.xa_c00153{left:276.800000pt;}
.xb_c00153{left:471.200000pt;}
.xc_c00153{left:528.800000pt;}
}





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

.ir_c00154:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00154{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00154;src:url('chunks/assets/font_ca2bb7118dd0655b1bacadb0.woff2')format("woff");}.ff1_c00154{font-family:ff1_c00154;line-height:1.311035;font-style:normal;font-weight:normal;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_84c207d4c5f1bab47a3192c7.woff2')format("woff");}.ff2_c00154{font-family:ff2_c00154;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00154;src:url('chunks/assets/font_3d1448df80fba9385b10fd83.woff2')format("woff");}.ff3_c00154{font-family:ff3_c00154;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00154;src:url('chunks/assets/font_840d579d74a33b15420a01ce.woff2')format("woff");}.ff4_c00154{font-family:ff4_c00154;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00154;src:url('chunks/assets/font_37e0777f3d0301933d0ef914.woff2')format("woff");}.ff5_c00154{font-family:ff5_c00154;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00154;src:url('chunks/assets/font_8b2bb98cfc5f64cc714a0e42.woff2')format("woff");}.ff6_c00154{font-family:ff6_c00154;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00154;src:url('chunks/assets/font_5e2e86b0f0d0256e2d3418f5.woff2')format("woff");}.ff7_c00154{font-family:ff7_c00154;line-height:1.437000;font-style:normal;font-weight: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_c00154;src:url('chunks/assets/font_62bfddc43ea1e90d98379a95.woff2')format("woff");}.ff8_c00154{font-family:ff8_c00154;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00154;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff9_c00154{font-family:ff9_c00154;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00154{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00154{vertical-align:0.000000px;}
.ls2_c00154{letter-spacing:0.000000px;}
.ls0_c00154{letter-spacing:1.380000px;}
.ls3_c00154{letter-spacing:6.000000px;}
.ls1_c00154{letter-spacing:220.950000px;}
.sc__c00154{text-shadow:none;}
.sc0_c00154{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00154{-webkit-text-stroke:0px transparent;}
.sc0_c00154{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00154{word-spacing:-67.686000px;}
.ws0_c00154{word-spacing:-32.028000px;}
.ws3_c00154{word-spacing:-20.250000px;}
.ws1_c00154{word-spacing:-17.352000px;}
.ws4_c00154{word-spacing:0.000000px;}
._2c_c00154{margin-left:-23.940000px;}
._23_c00154{margin-left:-22.032000px;}
._2a_c00154{margin-left:-18.468000px;}
._2b_c00154{margin-left:-15.051000px;}
._1f_c00154{margin-left:-13.500000px;}
._21_c00154{margin-left:-11.862000px;}
._24_c00154{margin-left:-10.359000px;}
._7_c00154{margin-left:-9.306000px;}
._15_c00154{margin-left:-7.935000px;}
._10_c00154{margin-left:-6.786000px;}
._8_c00154{margin-left:-5.670000px;}
._3_c00154{margin-left:-4.599000px;}
._5_c00154{margin-left:-3.150000px;}
._4_c00154{margin-left:-1.386000px;}
._6_c00154{width:1.365000px;}
._2_c00154{width:2.418000px;}
._c_c00154{width:3.720000px;}
._1_c00154{width:4.743000px;}
._0_c00154{width:6.696000px;}
._a_c00154{width:7.980000px;}
._9_c00154{width:9.159000px;}
._14_c00154{width:10.686000px;}
._29_c00154{width:11.691000px;}
._13_c00154{width:12.729000px;}
._e_c00154{width:14.364000px;}
._11_c00154{width:15.525000px;}
._1c_c00154{width:18.033000px;}
._d_c00154{width:19.731000px;}
._16_c00154{width:20.937000px;}
._12_c00154{width:22.536000px;}
._1d_c00154{width:24.300000px;}
._19_c00154{width:26.076000px;}
._17_c00154{width:27.930000px;}
._20_c00154{width:29.994000px;}
._28_c00154{width:31.023000px;}
._18_c00154{width:32.442000px;}
._1a_c00154{width:34.275000px;}
._1e_c00154{width:36.681000px;}
._30_c00154{width:38.193000px;}
._25_c00154{width:42.807000px;}
._34_c00154{width:45.432000px;}
._2e_c00154{width:47.466000px;}
._2d_c00154{width:50.970000px;}
._32_c00154{width:52.077000px;}
._b_c00154{width:53.610000px;}
._27_c00154{width:55.374000px;}
._31_c00154{width:98.655000px;}
._1b_c00154{width:110.595000px;}
._33_c00154{width:225.195000px;}
._f_c00154{width:263.799000px;}
._22_c00154{width:277.845000px;}
._26_c00154{width:343.347000px;}
._2f_c00154{width:357.801000px;}
.fc2_c00154{color:transparent;}
.fc1_c00154{color:rgb(128,128,128);}
.fc0_c00154{color:rgb(0,0,0);}
.fsa_c00154{font-size:48.000000px;}
.fs5_c00154{font-size:57.000000px;}
.fs8_c00154{font-size:60.000000px;}
.fs9_c00154{font-size:66.000000px;}
.fs4_c00154{font-size:72.000000px;}
.fs3_c00154{font-size:78.000000px;}
.fs6_c00154{font-size:81.000000px;}
.fs7_c00154{font-size:87.000000px;}
.fs0_c00154{font-size:93.000000px;}
.fs1_c00154{font-size:105.000000px;}
.fs2_c00154{font-size:108.000000px;}
.y0_c00154{bottom:0.000000px;}
.y26_c00154{bottom:3.105000px;}
.y25_c00154{bottom:7.228371px;}
.y24_c00154{bottom:58.365000px;}
.y23_c00154{bottom:82.365000px;}
.y22_c00154{bottom:106.965000px;}
.y21_c00154{bottom:131.715000px;}
.y20_c00154{bottom:156.315000px;}
.y1f_c00154{bottom:180.315000px;}
.y1e_c00154{bottom:205.515000px;}
.y1d_c00154{bottom:229.815000px;}
.y1c_c00154{bottom:254.115000px;}
.y1b_c00154{bottom:278.865000px;}
.y1a_c00154{bottom:302.715000px;}
.y19_c00154{bottom:326.415000px;}
.y18_c00154{bottom:350.715000px;}
.y17_c00154{bottom:375.315000px;}
.y16_c00154{bottom:398.565000px;}
.y15_c00154{bottom:422.265000px;}
.y14_c00154{bottom:446.865000px;}
.y13_c00154{bottom:470.865000px;}
.y12_c00154{bottom:495.165000px;}
.y11_c00154{bottom:519.165000px;}
.y10_c00154{bottom:543.165000px;}
.yf_c00154{bottom:566.415000px;}
.ye_c00154{bottom:590.415000px;}
.yd_c00154{bottom:614.565000px;}
.yc_c00154{bottom:638.265000px;}
.yb_c00154{bottom:661.965000px;}
.ya_c00154{bottom:686.115000px;}
.y9_c00154{bottom:711.165000px;}
.y8_c00154{bottom:734.415000px;}
.y7_c00154{bottom:759.015000px;}
.y6_c00154{bottom:783.315000px;}
.y5_c00154{bottom:807.015000px;}
.y4_c00154{bottom:831.915000px;}
.y3_c00154{bottom:855.915000px;}
.y2_c00154{bottom:880.215000px;}
.y1_c00154{bottom:915.615000px;}
.h9_c00154{height:13.200074px;}
.ha_c00154{height:43.804688px;}
.h5_c00154{height:79.497070px;}
.h3_c00154{height:83.226000px;}
.h4_c00154{height:84.269531px;}
.h8_c00154{height:91.160156px;}
.h6_c00154{height:91.176000px;}
.h7_c00154{height:98.756836px;}
.h2_c00154{height:126.404297px;}
.h0_c00154{height:989.025000px;}
.h1_c00154{height:989.250000px;}
.w1_c00154{width:104.875500px;}
.w0_c00154{width:672.000000px;}
.x0_c00154{left:0.000000px;}
.x6_c00154{left:40.500000px;}
.x4_c00154{left:42.150000px;}
.x5_c00154{left:56.100000px;}
.x1_c00154{left:58.350000px;}
.x3_c00154{left:59.700000px;}
.x2_c00154{left:60.750000px;}
.x9_c00154{left:61.800000px;}
.x8_c00154{left:63.750000px;}
.x7_c00154{left:65.550000px;}
.xb_c00154{left:287.814240px;}
.xa_c00154{left:500.250000px;}
@media print{
.v0_c00154{vertical-align:0.000000pt;}
.ls2_c00154{letter-spacing:0.000000pt;}
.ls0_c00154{letter-spacing:1.226667pt;}
.ls3_c00154{letter-spacing:5.333333pt;}
.ls1_c00154{letter-spacing:196.400000pt;}
.ws2_c00154{word-spacing:-60.165333pt;}
.ws0_c00154{word-spacing:-28.469333pt;}
.ws3_c00154{word-spacing:-18.000000pt;}
.ws1_c00154{word-spacing:-15.424000pt;}
.ws4_c00154{word-spacing:0.000000pt;}
._2c_c00154{margin-left:-21.280000pt;}
._23_c00154{margin-left:-19.584000pt;}
._2a_c00154{margin-left:-16.416000pt;}
._2b_c00154{margin-left:-13.378667pt;}
._1f_c00154{margin-left:-12.000000pt;}
._21_c00154{margin-left:-10.544000pt;}
._24_c00154{margin-left:-9.208000pt;}
._7_c00154{margin-left:-8.272000pt;}
._15_c00154{margin-left:-7.053333pt;}
._10_c00154{margin-left:-6.032000pt;}
._8_c00154{margin-left:-5.040000pt;}
._3_c00154{margin-left:-4.088000pt;}
._5_c00154{margin-left:-2.800000pt;}
._4_c00154{margin-left:-1.232000pt;}
._6_c00154{width:1.213333pt;}
._2_c00154{width:2.149333pt;}
._c_c00154{width:3.306667pt;}
._1_c00154{width:4.216000pt;}
._0_c00154{width:5.952000pt;}
._a_c00154{width:7.093333pt;}
._9_c00154{width:8.141333pt;}
._14_c00154{width:9.498667pt;}
._29_c00154{width:10.392000pt;}
._13_c00154{width:11.314667pt;}
._e_c00154{width:12.768000pt;}
._11_c00154{width:13.800000pt;}
._1c_c00154{width:16.029333pt;}
._d_c00154{width:17.538667pt;}
._16_c00154{width:18.610667pt;}
._12_c00154{width:20.032000pt;}
._1d_c00154{width:21.600000pt;}
._19_c00154{width:23.178667pt;}
._17_c00154{width:24.826667pt;}
._20_c00154{width:26.661333pt;}
._28_c00154{width:27.576000pt;}
._18_c00154{width:28.837333pt;}
._1a_c00154{width:30.466667pt;}
._1e_c00154{width:32.605333pt;}
._30_c00154{width:33.949333pt;}
._25_c00154{width:38.050667pt;}
._34_c00154{width:40.384000pt;}
._2e_c00154{width:42.192000pt;}
._2d_c00154{width:45.306667pt;}
._32_c00154{width:46.290667pt;}
._b_c00154{width:47.653333pt;}
._27_c00154{width:49.221333pt;}
._31_c00154{width:87.693333pt;}
._1b_c00154{width:98.306667pt;}
._33_c00154{width:200.173333pt;}
._f_c00154{width:234.488000pt;}
._22_c00154{width:246.973333pt;}
._26_c00154{width:305.197333pt;}
._2f_c00154{width:318.045333pt;}
.fsa_c00154{font-size:42.666667pt;}
.fs5_c00154{font-size:50.666667pt;}
.fs8_c00154{font-size:53.333333pt;}
.fs9_c00154{font-size:58.666667pt;}
.fs4_c00154{font-size:64.000000pt;}
.fs3_c00154{font-size:69.333333pt;}
.fs6_c00154{font-size:72.000000pt;}
.fs7_c00154{font-size:77.333333pt;}
.fs0_c00154{font-size:82.666667pt;}
.fs1_c00154{font-size:93.333333pt;}
.fs2_c00154{font-size:96.000000pt;}
.y0_c00154{bottom:0.000000pt;}
.y26_c00154{bottom:2.760000pt;}
.y25_c00154{bottom:6.425219pt;}
.y24_c00154{bottom:51.880000pt;}
.y23_c00154{bottom:73.213333pt;}
.y22_c00154{bottom:95.080000pt;}
.y21_c00154{bottom:117.080000pt;}
.y20_c00154{bottom:138.946667pt;}
.y1f_c00154{bottom:160.280000pt;}
.y1e_c00154{bottom:182.680000pt;}
.y1d_c00154{bottom:204.280000pt;}
.y1c_c00154{bottom:225.880000pt;}
.y1b_c00154{bottom:247.880000pt;}
.y1a_c00154{bottom:269.080000pt;}
.y19_c00154{bottom:290.146667pt;}
.y18_c00154{bottom:311.746667pt;}
.y17_c00154{bottom:333.613333pt;}
.y16_c00154{bottom:354.280000pt;}
.y15_c00154{bottom:375.346667pt;}
.y14_c00154{bottom:397.213333pt;}
.y13_c00154{bottom:418.546667pt;}
.y12_c00154{bottom:440.146667pt;}
.y11_c00154{bottom:461.480000pt;}
.y10_c00154{bottom:482.813333pt;}
.yf_c00154{bottom:503.480000pt;}
.ye_c00154{bottom:524.813333pt;}
.yd_c00154{bottom:546.280000pt;}
.yc_c00154{bottom:567.346667pt;}
.yb_c00154{bottom:588.413333pt;}
.ya_c00154{bottom:609.880000pt;}
.y9_c00154{bottom:632.146667pt;}
.y8_c00154{bottom:652.813333pt;}
.y7_c00154{bottom:674.680000pt;}
.y6_c00154{bottom:696.280000pt;}
.y5_c00154{bottom:717.346667pt;}
.y4_c00154{bottom:739.480000pt;}
.y3_c00154{bottom:760.813333pt;}
.y2_c00154{bottom:782.413333pt;}
.y1_c00154{bottom:813.880000pt;}
.h9_c00154{height:11.733399pt;}
.ha_c00154{height:38.937500pt;}
.h5_c00154{height:70.664062pt;}
.h3_c00154{height:73.978667pt;}
.h4_c00154{height:74.906250pt;}
.h8_c00154{height:81.031250pt;}
.h6_c00154{height:81.045333pt;}
.h7_c00154{height:87.783854pt;}
.h2_c00154{height:112.359375pt;}
.h0_c00154{height:879.133333pt;}
.h1_c00154{height:879.333333pt;}
.w1_c00154{width:93.222667pt;}
.w0_c00154{width:597.333333pt;}
.x0_c00154{left:0.000000pt;}
.x6_c00154{left:36.000000pt;}
.x4_c00154{left:37.466667pt;}
.x5_c00154{left:49.866667pt;}
.x1_c00154{left:51.866667pt;}
.x3_c00154{left:53.066667pt;}
.x2_c00154{left:54.000000pt;}
.x9_c00154{left:54.933333pt;}
.x8_c00154{left:56.666667pt;}
.x7_c00154{left:58.266667pt;}
.xb_c00154{left:255.834880pt;}
.xa_c00154{left:444.666667pt;}
}





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

.ir_c00155:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00155{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00155;src:url('chunks/assets/font_f177c15e88d70e0397da9c5e.woff2')format("woff");}.ff1_c00155{font-family:ff1_c00155;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00155;src:url('chunks/assets/font_bc5867fd958c06ce5bd0b105.woff2')format("woff");}.ff2_c00155{font-family:ff2_c00155;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00155;src:url('chunks/assets/font_1be9ef4c94b37071a7cdffaf.woff2')format("woff");}.ff3_c00155{font-family:ff3_c00155;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00155;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff4_c00155{font-family:ff4_c00155;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00155;src:url('chunks/assets/font_e0d6741f33b83466b3a10240.woff2')format("woff");}.ff5_c00155{font-family:ff5_c00155;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00155;src:url('chunks/assets/font_e32fc9995e31f559ed22a91e.woff2')format("woff");}.ff6_c00155{font-family:ff6_c00155;line-height:1.437000;font-style:normal;font-weight: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_c00155;src:url('chunks/assets/font_7ee84739e6975f332e4ca889.woff2')format("woff");}.ff7_c00155{font-family:ff7_c00155;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00155;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff8_c00155{font-family:ff8_c00155;line-height:1.219238;font-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_c00155{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,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;}
.ls0_c00155{letter-spacing:0.000000px;}
.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:-67.686000px;}
.ws2_c00155{word-spacing:-60.048000px;}
.ws1_c00155{word-spacing:-17.352000px;}
.ws3_c00155{word-spacing:0.000000px;}
._f_c00155{margin-left:-48.540000px;}
._17_c00155{margin-left:-38.007000px;}
._18_c00155{margin-left:-25.074000px;}
._14_c00155{margin-left:-22.359000px;}
._1f_c00155{margin-left:-21.135000px;}
._d_c00155{margin-left:-19.662000px;}
._e_c00155{margin-left:-14.877000px;}
._c_c00155{margin-left:-11.049000px;}
._2_c00155{margin-left:-8.910000px;}
._19_c00155{margin-left:-7.500000px;}
._4_c00155{margin-left:-6.318000px;}
._3_c00155{margin-left:-4.455000px;}
._5_c00155{margin-left:-2.835000px;}
._1_c00155{margin-left:-1.134000px;}
._9_c00155{width:1.296000px;}
._0_c00155{width:2.430000px;}
._6_c00155{width:3.888000px;}
._10_c00155{width:4.908000px;}
._7_c00155{width:5.994000px;}
._b_c00155{width:7.938000px;}
._13_c00155{width:9.639000px;}
._8_c00155{width:10.773000px;}
._11_c00155{width:11.907000px;}
._a_c00155{width:14.013000px;}
._16_c00155{width:16.854000px;}
._15_c00155{width:18.555000px;}
._1c_c00155{width:23.328000px;}
._1b_c00155{width:26.487000px;}
._12_c00155{width:33.615000px;}
._1e_c00155{width:47.259000px;}
._1d_c00155{width:287.436000px;}
._1a_c00155{width:515.970000px;}
.fc2_c00155{color:transparent;}
.fc1_c00155{color:rgb(128,128,128);}
.fc0_c00155{color:rgb(0,0,0);}
.fs7_c00155{font-size:48.000000px;}
.fs4_c00155{font-size:60.000000px;}
.fs5_c00155{font-size:72.000000px;}
.fs2_c00155{font-size:78.000000px;}
.fs0_c00155{font-size:81.000000px;}
.fs1_c00155{font-size:87.000000px;}
.fs6_c00155{font-size:108.000000px;}
.fs3_c00155{font-size:177.000000px;}
.y0_c00155{bottom:0.000000px;}
.y22_c00155{bottom:3.105000px;}
.y21_c00155{bottom:7.228357px;}
.y20_c00155{bottom:60.180000px;}
.y1f_c00155{bottom:84.330000px;}
.y1e_c00155{bottom:109.380000px;}
.y1d_c00155{bottom:133.980000px;}
.y1c_c00155{bottom:158.730000px;}
.y1b_c00155{bottom:183.030000px;}
.y1a_c00155{bottom:207.330000px;}
.y19_c00155{bottom:231.930000px;}
.y18_c00155{bottom:256.530000px;}
.y17_c00155{bottom:280.830000px;}
.y16_c00155{bottom:306.180000px;}
.y15_c00155{bottom:329.730000px;}
.y14_c00155{bottom:354.030000px;}
.y13_c00155{bottom:378.630000px;}
.y12_c00155{bottom:402.930000px;}
.y11_c00155{bottom:427.230000px;}
.y10_c00155{bottom:451.980000px;}
.yf_c00155{bottom:476.580000px;}
.ye_c00155{bottom:500.130000px;}
.yd_c00155{bottom:524.130000px;}
.yc_c00155{bottom:574.080000px;}
.yb_c00155{bottom:603.180000px;}
.ya_c00155{bottom:632.430000px;}
.y9_c00155{bottom:661.530000px;}
.y8_c00155{bottom:715.530000px;}
.y7_c00155{bottom:740.580000px;}
.y6_c00155{bottom:765.180000px;}
.y5_c00155{bottom:789.180000px;}
.y4_c00155{bottom:813.030000px;}
.y3_c00155{bottom:837.330000px;}
.y2_c00155{bottom:861.030000px;}
.y1_c00155{bottom:885.030000px;}
.h9_c00155{height:13.200074px;}
.ha_c00155{height:43.804688px;}
.h1_c00155{height:79.497070px;}
.h7_c00155{height:84.269531px;}
.h6_c00155{height:91.176000px;}
.h5_c00155{height:91.291992px;}
.h4_c00155{height:98.756836px;}
.h8_c00155{height:108.843750px;}
.h2_c00155{height:110.151855px;}
.h3_c00155{height:224.102051px;}
.h0_c00155{height:995.250000px;}
.w2_c00155{width:104.875500px;}
.w0_c00155{width:667.425000px;}
.w1_c00155{width:667.500000px;}
.x0_c00155{left:0.000000px;}
.xe_c00155{left:43.200000px;}
.xd_c00155{left:45.600000px;}
.x12_c00155{left:131.400000px;}
.x13_c00155{left:133.350000px;}
.x11_c00155{left:135.300000px;}
.x10_c00155{left:137.400000px;}
.xf_c00155{left:138.750000px;}
.xc_c00155{left:140.100000px;}
.x6_c00155{left:141.300000px;}
.x5_c00155{left:142.800000px;}
.x4_c00155{left:144.450000px;}
.x3_c00155{left:146.100000px;}
.x2_c00155{left:147.150000px;}
.x1_c00155{left:148.950000px;}
.x7_c00155{left:156.300000px;}
.x8_c00155{left:184.650000px;}
.xa_c00155{left:266.850000px;}
.x9_c00155{left:271.050000px;}
.xb_c00155{left:272.700000px;}
.x15_c00155{left:285.526749px;}
.x14_c00155{left:588.600000px;}
@media print{
.v0_c00155{vertical-align:0.000000pt;}
.ls0_c00155{letter-spacing:0.000000pt;}
.ws0_c00155{word-spacing:-60.165333pt;}
.ws2_c00155{word-spacing:-53.376000pt;}
.ws1_c00155{word-spacing:-15.424000pt;}
.ws3_c00155{word-spacing:0.000000pt;}
._f_c00155{margin-left:-43.146667pt;}
._17_c00155{margin-left:-33.784000pt;}
._18_c00155{margin-left:-22.288000pt;}
._14_c00155{margin-left:-19.874667pt;}
._1f_c00155{margin-left:-18.786667pt;}
._d_c00155{margin-left:-17.477333pt;}
._e_c00155{margin-left:-13.224000pt;}
._c_c00155{margin-left:-9.821333pt;}
._2_c00155{margin-left:-7.920000pt;}
._19_c00155{margin-left:-6.666667pt;}
._4_c00155{margin-left:-5.616000pt;}
._3_c00155{margin-left:-3.960000pt;}
._5_c00155{margin-left:-2.520000pt;}
._1_c00155{margin-left:-1.008000pt;}
._9_c00155{width:1.152000pt;}
._0_c00155{width:2.160000pt;}
._6_c00155{width:3.456000pt;}
._10_c00155{width:4.362667pt;}
._7_c00155{width:5.328000pt;}
._b_c00155{width:7.056000pt;}
._13_c00155{width:8.568000pt;}
._8_c00155{width:9.576000pt;}
._11_c00155{width:10.584000pt;}
._a_c00155{width:12.456000pt;}
._16_c00155{width:14.981333pt;}
._15_c00155{width:16.493333pt;}
._1c_c00155{width:20.736000pt;}
._1b_c00155{width:23.544000pt;}
._12_c00155{width:29.880000pt;}
._1e_c00155{width:42.008000pt;}
._1d_c00155{width:255.498667pt;}
._1a_c00155{width:458.640000pt;}
.fs7_c00155{font-size:42.666667pt;}
.fs4_c00155{font-size:53.333333pt;}
.fs5_c00155{font-size:64.000000pt;}
.fs2_c00155{font-size:69.333333pt;}
.fs0_c00155{font-size:72.000000pt;}
.fs1_c00155{font-size:77.333333pt;}
.fs6_c00155{font-size:96.000000pt;}
.fs3_c00155{font-size:157.333333pt;}
.y0_c00155{bottom:0.000000pt;}
.y22_c00155{bottom:2.760000pt;}
.y21_c00155{bottom:6.425206pt;}
.y20_c00155{bottom:53.493333pt;}
.y1f_c00155{bottom:74.960000pt;}
.y1e_c00155{bottom:97.226667pt;}
.y1d_c00155{bottom:119.093333pt;}
.y1c_c00155{bottom:141.093333pt;}
.y1b_c00155{bottom:162.693333pt;}
.y1a_c00155{bottom:184.293333pt;}
.y19_c00155{bottom:206.160000pt;}
.y18_c00155{bottom:228.026667pt;}
.y17_c00155{bottom:249.626667pt;}
.y16_c00155{bottom:272.160000pt;}
.y15_c00155{bottom:293.093333pt;}
.y14_c00155{bottom:314.693333pt;}
.y13_c00155{bottom:336.560000pt;}
.y12_c00155{bottom:358.160000pt;}
.y11_c00155{bottom:379.760000pt;}
.y10_c00155{bottom:401.760000pt;}
.yf_c00155{bottom:423.626667pt;}
.ye_c00155{bottom:444.560000pt;}
.yd_c00155{bottom:465.893333pt;}
.yc_c00155{bottom:510.293333pt;}
.yb_c00155{bottom:536.160000pt;}
.ya_c00155{bottom:562.160000pt;}
.y9_c00155{bottom:588.026667pt;}
.y8_c00155{bottom:636.026667pt;}
.y7_c00155{bottom:658.293333pt;}
.y6_c00155{bottom:680.160000pt;}
.y5_c00155{bottom:701.493333pt;}
.y4_c00155{bottom:722.693333pt;}
.y3_c00155{bottom:744.293333pt;}
.y2_c00155{bottom:765.360000pt;}
.y1_c00155{bottom:786.693333pt;}
.h9_c00155{height:11.733399pt;}
.ha_c00155{height:38.937500pt;}
.h1_c00155{height:70.664062pt;}
.h7_c00155{height:74.906250pt;}
.h6_c00155{height:81.045333pt;}
.h5_c00155{height:81.148438pt;}
.h4_c00155{height:87.783854pt;}
.h8_c00155{height:96.750000pt;}
.h2_c00155{height:97.912760pt;}
.h3_c00155{height:199.201823pt;}
.h0_c00155{height:884.666667pt;}
.w2_c00155{width:93.222667pt;}
.w0_c00155{width:593.266667pt;}
.w1_c00155{width:593.333333pt;}
.x0_c00155{left:0.000000pt;}
.xe_c00155{left:38.400000pt;}
.xd_c00155{left:40.533333pt;}
.x12_c00155{left:116.800000pt;}
.x13_c00155{left:118.533333pt;}
.x11_c00155{left:120.266667pt;}
.x10_c00155{left:122.133333pt;}
.xf_c00155{left:123.333333pt;}
.xc_c00155{left:124.533333pt;}
.x6_c00155{left:125.600000pt;}
.x5_c00155{left:126.933333pt;}
.x4_c00155{left:128.400000pt;}
.x3_c00155{left:129.866667pt;}
.x2_c00155{left:130.800000pt;}
.x1_c00155{left:132.400000pt;}
.x7_c00155{left:138.933333pt;}
.x8_c00155{left:164.133333pt;}
.xa_c00155{left:237.200000pt;}
.x9_c00155{left:240.933333pt;}
.xb_c00155{left:242.400000pt;}
.x15_c00155{left:253.801554pt;}
.x14_c00155{left:523.200000pt;}
}





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

.ir_c00156:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00156{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00156;src:url('chunks/assets/font_f4ac4eaa8062977b1c73ff47.woff2')format("woff");}.ff1_c00156{font-family:ff1_c00156;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00156;src:url('chunks/assets/font_08053edf3720636145489b56.woff2')format("woff");}.ff2_c00156{font-family:ff2_c00156;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00156;src:url('chunks/assets/font_165c81f6d076470d9e572725.woff2')format("woff");}.ff3_c00156{font-family:ff3_c00156;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00156;src:url('chunks/assets/font_cbca40f71917fd91c6d68dc6.woff2')format("woff");}.ff4_c00156{font-family:ff4_c00156;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00156;src:url('chunks/assets/font_ef5595023578a47881b2cfa5.woff2')format("woff");}.ff5_c00156{font-family:ff5_c00156;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00156;src:url('chunks/assets/font_2e8bc1b6a7ca576e253575ec.woff2')format("woff");}.ff6_c00156{font-family:ff6_c00156;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00156;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c00156{font-family:ff7_c00156;line-height:1.219238;font-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_c00156{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,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;}
.ls2_c00156{letter-spacing:0.000000px;}
.ls0_c00156{letter-spacing:1.722000px;}
.ls3_c00156{letter-spacing:3.000000px;}
.ls4_c00156{letter-spacing:15.000000px;}
.ls1_c00156{letter-spacing:18.984000px;}
.sc__c00156{text-shadow:none;}
.sc0_c00156{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00156{-webkit-text-stroke:0px transparent;}
.sc0_c00156{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00156{word-spacing:-20.250000px;}
.ws0_c00156{word-spacing:-17.352000px;}
.ws2_c00156{word-spacing:0.000000px;}
._1f_c00156{margin-left:-30.900000px;}
._2b_c00156{margin-left:-26.082000px;}
._26_c00156{margin-left:-22.500000px;}
._1b_c00156{margin-left:-19.845000px;}
._25_c00156{margin-left:-18.300000px;}
._27_c00156{margin-left:-15.300000px;}
._1c_c00156{margin-left:-13.974000px;}
._2a_c00156{margin-left:-12.402000px;}
._2d_c00156{margin-left:-9.405000px;}
._2_c00156{margin-left:-8.400000px;}
._18_c00156{margin-left:-7.371000px;}
._0_c00156{margin-left:-6.360000px;}
._4_c00156{margin-left:-5.100000px;}
._7_c00156{margin-left:-3.882000px;}
._6_c00156{margin-left:-2.820000px;}
._14_c00156{margin-left:-1.548000px;}
._3_c00156{width:1.020000px;}
._8_c00156{width:2.118000px;}
._11_c00156{width:3.321000px;}
._5_c00156{width:4.386000px;}
._f_c00156{width:5.472000px;}
._1_c00156{width:6.600000px;}
._15_c00156{width:7.929000px;}
._16_c00156{width:8.937000px;}
._a_c00156{width:9.996000px;}
._e_c00156{width:12.045000px;}
._10_c00156{width:13.461000px;}
._c_c00156{width:15.000000px;}
._19_c00156{width:16.479000px;}
._13_c00156{width:18.306000px;}
._b_c00156{width:19.584000px;}
._12_c00156{width:22.419000px;}
._17_c00156{width:24.684000px;}
._1d_c00156{width:25.824000px;}
._1a_c00156{width:28.404000px;}
._d_c00156{width:29.988000px;}
._2c_c00156{width:31.308000px;}
._1e_c00156{width:33.663000px;}
._28_c00156{width:34.758000px;}
._29_c00156{width:42.351000px;}
._9_c00156{width:62.754000px;}
._2e_c00156{width:92.967000px;}
._23_c00156{width:171.636000px;}
._24_c00156{width:179.388000px;}
._22_c00156{width:240.252000px;}
._21_c00156{width:245.124000px;}
._20_c00156{width:812.400000px;}
.fc2_c00156{color:transparent;}
.fc1_c00156{color:rgb(128,128,128);}
.fc0_c00156{color:rgb(0,0,0);}
.fs8_c00156{font-size:48.000000px;}
.fs3_c00156{font-size:54.000000px;}
.fs5_c00156{font-size:57.000000px;}
.fs6_c00156{font-size:60.000000px;}
.fs4_c00156{font-size:72.000000px;}
.fs2_c00156{font-size:81.000000px;}
.fs0_c00156{font-size:102.000000px;}
.fs7_c00156{font-size:108.000000px;}
.fs1_c00156{font-size:120.000000px;}
.y0_c00156{bottom:0.000000px;}
.y27_c00156{bottom:3.105000px;}
.y26_c00156{bottom:7.228371px;}
.y25_c00156{bottom:69.165000px;}
.y24_c00156{bottom:95.265000px;}
.y23_c00156{bottom:120.465000px;}
.y22_c00156{bottom:145.215000px;}
.y21_c00156{bottom:169.215000px;}
.y20_c00156{bottom:193.515000px;}
.y1f_c00156{bottom:217.815000px;}
.y1e_c00156{bottom:242.115000px;}
.y1d_c00156{bottom:266.565000px;}
.y1c_c00156{bottom:290.565000px;}
.y1b_c00156{bottom:314.565000px;}
.y1a_c00156{bottom:338.715000px;}
.y19_c00156{bottom:362.565000px;}
.y18_c00156{bottom:386.415000px;}
.y17_c00156{bottom:410.415000px;}
.y16_c00156{bottom:434.415000px;}
.y15_c00156{bottom:458.115000px;}
.y14_c00156{bottom:483.015000px;}
.y13_c00156{bottom:494.415000px;}
.y12_c00156{bottom:507.315000px;}
.y11_c00156{bottom:532.365000px;}
.y10_c00156{bottom:555.165000px;}
.yf_c00156{bottom:579.165000px;}
.ye_c00156{bottom:603.465000px;}
.yd_c00156{bottom:626.715000px;}
.yc_c00156{bottom:651.165000px;}
.yb_c00156{bottom:675.015000px;}
.ya_c00156{bottom:700.065000px;}
.y9_c00156{bottom:724.065000px;}
.y8_c00156{bottom:748.665000px;}
.y7_c00156{bottom:772.965000px;}
.y6_c00156{bottom:796.965000px;}
.y5_c00156{bottom:821.265000px;}
.y4_c00156{bottom:846.765000px;}
.y3_c00156{bottom:870.765000px;}
.y2_c00156{bottom:894.465000px;}
.y1_c00156{bottom:928.515000px;}
.h8_c00156{height:13.200074px;}
.h9_c00156{height:43.804688px;}
.h6_c00156{height:68.370117px;}
.h3_c00156{height:79.497070px;}
.h5_c00156{height:84.269531px;}
.h4_c00156{height:91.160156px;}
.h7_c00156{height:108.843750px;}
.h2_c00156{height:120.937500px;}
.h0_c00156{height:989.025000px;}
.h1_c00156{height:989.250000px;}
.w1_c00156{width:104.875500px;}
.w0_c00156{width:672.000000px;}
.x0_c00156{left:0.000000px;}
.x8_c00156{left:40.500000px;}
.x2_c00156{left:52.650000px;}
.x3_c00156{left:54.300000px;}
.x4_c00156{left:56.400000px;}
.x6_c00156{left:58.800000px;}
.x5_c00156{left:60.150000px;}
.x7_c00156{left:62.100000px;}
.x9_c00156{left:63.150000px;}
.xb_c00156{left:64.500000px;}
.xc_c00156{left:66.900000px;}
.xd_c00156{left:68.550000px;}
.xe_c00156{left:70.200000px;}
.x10_c00156{left:71.550000px;}
.xf_c00156{left:72.600000px;}
.xa_c00156{left:90.750000px;}
.x11_c00156{left:127.950000px;}
.x1_c00156{left:135.450000px;}
.x12_c00156{left:171.750000px;}
.x14_c00156{left:287.814240px;}
.x13_c00156{left:522.450000px;}
@media print{
.v0_c00156{vertical-align:0.000000pt;}
.ls2_c00156{letter-spacing:0.000000pt;}
.ls0_c00156{letter-spacing:1.530667pt;}
.ls3_c00156{letter-spacing:2.666667pt;}
.ls4_c00156{letter-spacing:13.333333pt;}
.ls1_c00156{letter-spacing:16.874667pt;}
.ws1_c00156{word-spacing:-18.000000pt;}
.ws0_c00156{word-spacing:-15.424000pt;}
.ws2_c00156{word-spacing:0.000000pt;}
._1f_c00156{margin-left:-27.466667pt;}
._2b_c00156{margin-left:-23.184000pt;}
._26_c00156{margin-left:-20.000000pt;}
._1b_c00156{margin-left:-17.640000pt;}
._25_c00156{margin-left:-16.266667pt;}
._27_c00156{margin-left:-13.600000pt;}
._1c_c00156{margin-left:-12.421333pt;}
._2a_c00156{margin-left:-11.024000pt;}
._2d_c00156{margin-left:-8.360000pt;}
._2_c00156{margin-left:-7.466667pt;}
._18_c00156{margin-left:-6.552000pt;}
._0_c00156{margin-left:-5.653333pt;}
._4_c00156{margin-left:-4.533333pt;}
._7_c00156{margin-left:-3.450667pt;}
._6_c00156{margin-left:-2.506667pt;}
._14_c00156{margin-left:-1.376000pt;}
._3_c00156{width:0.906667pt;}
._8_c00156{width:1.882667pt;}
._11_c00156{width:2.952000pt;}
._5_c00156{width:3.898667pt;}
._f_c00156{width:4.864000pt;}
._1_c00156{width:5.866667pt;}
._15_c00156{width:7.048000pt;}
._16_c00156{width:7.944000pt;}
._a_c00156{width:8.885333pt;}
._e_c00156{width:10.706667pt;}
._10_c00156{width:11.965333pt;}
._c_c00156{width:13.333333pt;}
._19_c00156{width:14.648000pt;}
._13_c00156{width:16.272000pt;}
._b_c00156{width:17.408000pt;}
._12_c00156{width:19.928000pt;}
._17_c00156{width:21.941333pt;}
._1d_c00156{width:22.954667pt;}
._1a_c00156{width:25.248000pt;}
._d_c00156{width:26.656000pt;}
._2c_c00156{width:27.829333pt;}
._1e_c00156{width:29.922667pt;}
._28_c00156{width:30.896000pt;}
._29_c00156{width:37.645333pt;}
._9_c00156{width:55.781333pt;}
._2e_c00156{width:82.637333pt;}
._23_c00156{width:152.565333pt;}
._24_c00156{width:159.456000pt;}
._22_c00156{width:213.557333pt;}
._21_c00156{width:217.888000pt;}
._20_c00156{width:722.133333pt;}
.fs8_c00156{font-size:42.666667pt;}
.fs3_c00156{font-size:48.000000pt;}
.fs5_c00156{font-size:50.666667pt;}
.fs6_c00156{font-size:53.333333pt;}
.fs4_c00156{font-size:64.000000pt;}
.fs2_c00156{font-size:72.000000pt;}
.fs0_c00156{font-size:90.666667pt;}
.fs7_c00156{font-size:96.000000pt;}
.fs1_c00156{font-size:106.666667pt;}
.y0_c00156{bottom:0.000000pt;}
.y27_c00156{bottom:2.760000pt;}
.y26_c00156{bottom:6.425219pt;}
.y25_c00156{bottom:61.480000pt;}
.y24_c00156{bottom:84.680000pt;}
.y23_c00156{bottom:107.080000pt;}
.y22_c00156{bottom:129.080000pt;}
.y21_c00156{bottom:150.413333pt;}
.y20_c00156{bottom:172.013333pt;}
.y1f_c00156{bottom:193.613333pt;}
.y1e_c00156{bottom:215.213333pt;}
.y1d_c00156{bottom:236.946667pt;}
.y1c_c00156{bottom:258.280000pt;}
.y1b_c00156{bottom:279.613333pt;}
.y1a_c00156{bottom:301.080000pt;}
.y19_c00156{bottom:322.280000pt;}
.y18_c00156{bottom:343.480000pt;}
.y17_c00156{bottom:364.813333pt;}
.y16_c00156{bottom:386.146667pt;}
.y15_c00156{bottom:407.213333pt;}
.y14_c00156{bottom:429.346667pt;}
.y13_c00156{bottom:439.480000pt;}
.y12_c00156{bottom:450.946667pt;}
.y11_c00156{bottom:473.213333pt;}
.y10_c00156{bottom:493.480000pt;}
.yf_c00156{bottom:514.813333pt;}
.ye_c00156{bottom:536.413333pt;}
.yd_c00156{bottom:557.080000pt;}
.yc_c00156{bottom:578.813333pt;}
.yb_c00156{bottom:600.013333pt;}
.ya_c00156{bottom:622.280000pt;}
.y9_c00156{bottom:643.613333pt;}
.y8_c00156{bottom:665.480000pt;}
.y7_c00156{bottom:687.080000pt;}
.y6_c00156{bottom:708.413333pt;}
.y5_c00156{bottom:730.013333pt;}
.y4_c00156{bottom:752.680000pt;}
.y3_c00156{bottom:774.013333pt;}
.y2_c00156{bottom:795.080000pt;}
.y1_c00156{bottom:825.346667pt;}
.h8_c00156{height:11.733399pt;}
.h9_c00156{height:38.937500pt;}
.h6_c00156{height:60.773438pt;}
.h3_c00156{height:70.664062pt;}
.h5_c00156{height:74.906250pt;}
.h4_c00156{height:81.031250pt;}
.h7_c00156{height:96.750000pt;}
.h2_c00156{height:107.500000pt;}
.h0_c00156{height:879.133333pt;}
.h1_c00156{height:879.333333pt;}
.w1_c00156{width:93.222667pt;}
.w0_c00156{width:597.333333pt;}
.x0_c00156{left:0.000000pt;}
.x8_c00156{left:36.000000pt;}
.x2_c00156{left:46.800000pt;}
.x3_c00156{left:48.266667pt;}
.x4_c00156{left:50.133333pt;}
.x6_c00156{left:52.266667pt;}
.x5_c00156{left:53.466667pt;}
.x7_c00156{left:55.200000pt;}
.x9_c00156{left:56.133333pt;}
.xb_c00156{left:57.333333pt;}
.xc_c00156{left:59.466667pt;}
.xd_c00156{left:60.933333pt;}
.xe_c00156{left:62.400000pt;}
.x10_c00156{left:63.600000pt;}
.xf_c00156{left:64.533333pt;}
.xa_c00156{left:80.666667pt;}
.x11_c00156{left:113.733333pt;}
.x1_c00156{left:120.400000pt;}
.x12_c00156{left:152.666667pt;}
.x14_c00156{left:255.834880pt;}
.x13_c00156{left:464.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_21d46966d14612bcac2e7d04.woff2')format("woff");}.ff1_c00157{font-family:ff1_c00157;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00157;src:url('chunks/assets/font_435b930f698b65cb37eeee6a.woff2')format("woff");}.ff2_c00157{font-family:ff2_c00157;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00157;src:url('chunks/assets/font_3effb512aba3df2dda9d2840.woff2')format("woff");}.ff3_c00157{font-family:ff3_c00157;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00157;src:url('chunks/assets/font_829082c034fb2c108dc7b5da.woff2')format("woff");}.ff4_c00157{font-family:ff4_c00157;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00157;src:url('chunks/assets/font_64e84c0e52d23f5bc9a25dfb.woff2')format("woff");}.ff5_c00157{font-family:ff5_c00157;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00157;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c00157{font-family:ff6_c00157;line-height:1.219238;font-style: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;}
.ls3_c00157{letter-spacing:-3.000000px;}
.ls1_c00157{letter-spacing:0.000000px;}
.ls2_c00157{letter-spacing:3.000000px;}
.ls0_c00157{letter-spacing:3.210000px;}
.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;}
}
.ws2_c00157{word-spacing:-20.250000px;}
.ws0_c00157{word-spacing:-17.352000px;}
.ws1_c00157{word-spacing:-13.764000px;}
.ws3_c00157{word-spacing:0.000000px;}
._13_c00157{margin-left:-17.739000px;}
._21_c00157{margin-left:-14.418000px;}
._25_c00157{margin-left:-12.876000px;}
._c_c00157{margin-left:-11.658000px;}
._26_c00157{margin-left:-10.656000px;}
._17_c00157{margin-left:-8.415000px;}
._12_c00157{margin-left:-7.407000px;}
._11_c00157{margin-left:-6.246000px;}
._d_c00157{margin-left:-4.977000px;}
._e_c00157{margin-left:-3.402000px;}
._b_c00157{margin-left:-1.683000px;}
._8_c00157{width:1.584000px;}
._f_c00157{width:2.619000px;}
._9_c00157{width:3.735000px;}
._0_c00157{width:4.896000px;}
._3_c00157{width:6.552000px;}
._10_c00157{width:8.010000px;}
._2_c00157{width:9.720000px;}
._4_c00157{width:10.728000px;}
._15_c00157{width:11.730000px;}
._1_c00157{width:12.744000px;}
._a_c00157{width:13.842000px;}
._1e_c00157{width:14.868000px;}
._5_c00157{width:16.200000px;}
._16_c00157{width:17.667000px;}
._6_c00157{width:20.304000px;}
._7_c00157{width:21.312000px;}
._22_c00157{width:22.770000px;}
._19_c00157{width:24.903000px;}
._18_c00157{width:26.262000px;}
._1b_c00157{width:28.674000px;}
._24_c00157{width:30.537000px;}
._23_c00157{width:33.363000px;}
._1c_c00157{width:37.305000px;}
._27_c00157{width:53.430000px;}
._1a_c00157{width:171.486000px;}
._1d_c00157{width:174.993000px;}
._20_c00157{width:233.892000px;}
._14_c00157{width:339.189000px;}
._1f_c00157{width:837.045000px;}
.fc2_c00157{color:transparent;}
.fc1_c00157{color:rgb(128,128,128);}
.fc0_c00157{color:rgb(0,0,0);}
.fs9_c00157{font-size:48.000000px;}
.fs7_c00157{font-size:57.000000px;}
.fs4_c00157{font-size:60.000000px;}
.fs5_c00157{font-size:66.000000px;}
.fs3_c00157{font-size:69.000000px;}
.fs0_c00157{font-size:72.000000px;}
.fs8_c00157{font-size:78.000000px;}
.fs1_c00157{font-size:81.000000px;}
.fs2_c00157{font-size:87.000000px;}
.fs6_c00157{font-size:93.000000px;}
.y0_c00157{bottom:0.000000px;}
.y26_c00157{bottom:3.105000px;}
.y25_c00157{bottom:7.228369px;}
.y24_c00157{bottom:71.820000px;}
.y23_c00157{bottom:95.520000px;}
.y22_c00157{bottom:119.820000px;}
.y21_c00157{bottom:144.120000px;}
.y20_c00157{bottom:168.120000px;}
.y1f_c00157{bottom:192.720000px;}
.y1e_c00157{bottom:216.720000px;}
.y1d_c00157{bottom:241.320000px;}
.y1c_c00157{bottom:266.970000px;}
.y1b_c00157{bottom:290.520000px;}
.y1a_c00157{bottom:314.220000px;}
.y19_c00157{bottom:338.220000px;}
.y18_c00157{bottom:362.370000px;}
.y17_c00157{bottom:392.520000px;}
.y16_c00157{bottom:411.720000px;}
.y15_c00157{bottom:437.370000px;}
.y14_c00157{bottom:460.320000px;}
.y13_c00157{bottom:485.220000px;}
.y12_c00157{bottom:508.920000px;}
.y11_c00157{bottom:533.520000px;}
.y10_c00157{bottom:557.220000px;}
.yf_c00157{bottom:581.820000px;}
.ye_c00157{bottom:606.420000px;}
.yd_c00157{bottom:630.420000px;}
.yc_c00157{bottom:654.720000px;}
.yb_c00157{bottom:678.720000px;}
.ya_c00157{bottom:703.020000px;}
.y9_c00157{bottom:727.020000px;}
.y8_c00157{bottom:751.170000px;}
.y7_c00157{bottom:775.920000px;}
.y6_c00157{bottom:799.770000px;}
.y5_c00157{bottom:824.220000px;}
.y4_c00157{bottom:848.070000px;}
.y3_c00157{bottom:872.820000px;}
.y2_c00157{bottom:896.670000px;}
.y1_c00157{bottom:932.070000px;}
.h7_c00157{height:13.200073px;}
.h8_c00157{height:43.804688px;}
.h3_c00157{height:79.497070px;}
.h2_c00157{height:84.269531px;}
.h6_c00157{height:98.756836px;}
.h5_c00157{height:99.231000px;}
.h4_c00157{height:110.151855px;}
.h1_c00157{height:986.250000px;}
.h0_c00157{height:986.550000px;}
.w1_c00157{width:104.875500px;}
.w0_c00157{width:661.500000px;}
.x0_c00157{left:0.000000px;}
.xd_c00157{left:48.300000px;}
.xe_c00157{left:49.500000px;}
.x7_c00157{left:52.650000px;}
.x9_c00157{left:53.700000px;}
.x8_c00157{left:54.900000px;}
.xa_c00157{left:56.400000px;}
.xc_c00157{left:65.700000px;}
.x3_c00157{left:126.600000px;}
.xb_c00157{left:144.450000px;}
.x6_c00157{left:146.100000px;}
.x5_c00157{left:147.150000px;}
.x2_c00157{left:148.200000px;}
.x4_c00157{left:149.400000px;}
.x1_c00157{left:253.500000px;}
.x10_c00157{left:282.564240px;}
.xf_c00157{left:591.000000px;}
@media print{
.v0_c00157{vertical-align:0.000000pt;}
.ls3_c00157{letter-spacing:-2.666667pt;}
.ls1_c00157{letter-spacing:0.000000pt;}
.ls2_c00157{letter-spacing:2.666667pt;}
.ls0_c00157{letter-spacing:2.853333pt;}
.ws2_c00157{word-spacing:-18.000000pt;}
.ws0_c00157{word-spacing:-15.424000pt;}
.ws1_c00157{word-spacing:-12.234667pt;}
.ws3_c00157{word-spacing:0.000000pt;}
._13_c00157{margin-left:-15.768000pt;}
._21_c00157{margin-left:-12.816000pt;}
._25_c00157{margin-left:-11.445333pt;}
._c_c00157{margin-left:-10.362667pt;}
._26_c00157{margin-left:-9.472000pt;}
._17_c00157{margin-left:-7.480000pt;}
._12_c00157{margin-left:-6.584000pt;}
._11_c00157{margin-left:-5.552000pt;}
._d_c00157{margin-left:-4.424000pt;}
._e_c00157{margin-left:-3.024000pt;}
._b_c00157{margin-left:-1.496000pt;}
._8_c00157{width:1.408000pt;}
._f_c00157{width:2.328000pt;}
._9_c00157{width:3.320000pt;}
._0_c00157{width:4.352000pt;}
._3_c00157{width:5.824000pt;}
._10_c00157{width:7.120000pt;}
._2_c00157{width:8.640000pt;}
._4_c00157{width:9.536000pt;}
._15_c00157{width:10.426667pt;}
._1_c00157{width:11.328000pt;}
._a_c00157{width:12.304000pt;}
._1e_c00157{width:13.216000pt;}
._5_c00157{width:14.400000pt;}
._16_c00157{width:15.704000pt;}
._6_c00157{width:18.048000pt;}
._7_c00157{width:18.944000pt;}
._22_c00157{width:20.240000pt;}
._19_c00157{width:22.136000pt;}
._18_c00157{width:23.344000pt;}
._1b_c00157{width:25.488000pt;}
._24_c00157{width:27.144000pt;}
._23_c00157{width:29.656000pt;}
._1c_c00157{width:33.160000pt;}
._27_c00157{width:47.493333pt;}
._1a_c00157{width:152.432000pt;}
._1d_c00157{width:155.549333pt;}
._20_c00157{width:207.904000pt;}
._14_c00157{width:301.501333pt;}
._1f_c00157{width:744.040000pt;}
.fs9_c00157{font-size:42.666667pt;}
.fs7_c00157{font-size:50.666667pt;}
.fs4_c00157{font-size:53.333333pt;}
.fs5_c00157{font-size:58.666667pt;}
.fs3_c00157{font-size:61.333333pt;}
.fs0_c00157{font-size:64.000000pt;}
.fs8_c00157{font-size:69.333333pt;}
.fs1_c00157{font-size:72.000000pt;}
.fs2_c00157{font-size:77.333333pt;}
.fs6_c00157{font-size:82.666667pt;}
.y0_c00157{bottom:0.000000pt;}
.y26_c00157{bottom:2.760000pt;}
.y25_c00157{bottom:6.425217pt;}
.y24_c00157{bottom:63.840000pt;}
.y23_c00157{bottom:84.906667pt;}
.y22_c00157{bottom:106.506667pt;}
.y21_c00157{bottom:128.106667pt;}
.y20_c00157{bottom:149.440000pt;}
.y1f_c00157{bottom:171.306667pt;}
.y1e_c00157{bottom:192.640000pt;}
.y1d_c00157{bottom:214.506667pt;}
.y1c_c00157{bottom:237.306667pt;}
.y1b_c00157{bottom:258.240000pt;}
.y1a_c00157{bottom:279.306667pt;}
.y19_c00157{bottom:300.640000pt;}
.y18_c00157{bottom:322.106667pt;}
.y17_c00157{bottom:348.906667pt;}
.y16_c00157{bottom:365.973333pt;}
.y15_c00157{bottom:388.773333pt;}
.y14_c00157{bottom:409.173333pt;}
.y13_c00157{bottom:431.306667pt;}
.y12_c00157{bottom:452.373333pt;}
.y11_c00157{bottom:474.240000pt;}
.y10_c00157{bottom:495.306667pt;}
.yf_c00157{bottom:517.173333pt;}
.ye_c00157{bottom:539.040000pt;}
.yd_c00157{bottom:560.373333pt;}
.yc_c00157{bottom:581.973333pt;}
.yb_c00157{bottom:603.306667pt;}
.ya_c00157{bottom:624.906667pt;}
.y9_c00157{bottom:646.240000pt;}
.y8_c00157{bottom:667.706667pt;}
.y7_c00157{bottom:689.706667pt;}
.y6_c00157{bottom:710.906667pt;}
.y5_c00157{bottom:732.640000pt;}
.y4_c00157{bottom:753.840000pt;}
.y3_c00157{bottom:775.840000pt;}
.y2_c00157{bottom:797.040000pt;}
.y1_c00157{bottom:828.506667pt;}
.h7_c00157{height:11.733399pt;}
.h8_c00157{height:38.937500pt;}
.h3_c00157{height:70.664062pt;}
.h2_c00157{height:74.906250pt;}
.h6_c00157{height:87.783854pt;}
.h5_c00157{height:88.205333pt;}
.h4_c00157{height:97.912760pt;}
.h1_c00157{height:876.666667pt;}
.h0_c00157{height:876.933333pt;}
.w1_c00157{width:93.222667pt;}
.w0_c00157{width:588.000000pt;}
.x0_c00157{left:0.000000pt;}
.xd_c00157{left:42.933333pt;}
.xe_c00157{left:44.000000pt;}
.x7_c00157{left:46.800000pt;}
.x9_c00157{left:47.733333pt;}
.x8_c00157{left:48.800000pt;}
.xa_c00157{left:50.133333pt;}
.xc_c00157{left:58.400000pt;}
.x3_c00157{left:112.533333pt;}
.xb_c00157{left:128.400000pt;}
.x6_c00157{left:129.866667pt;}
.x5_c00157{left:130.800000pt;}
.x2_c00157{left:131.733333pt;}
.x4_c00157{left:132.800000pt;}
.x1_c00157{left:225.333333pt;}
.x10_c00157{left:251.168213pt;}
.xf_c00157{left:525.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_372c9c8529a26240256ba512.woff2')format("woff");}.ff1_c00158{font-family:ff1_c00158;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00158;src:url('chunks/assets/font_d9d812edfb9dbd5dbba924f7.woff2')format("woff");}.ff2_c00158{font-family:ff2_c00158;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00158;src:url('chunks/assets/font_2c3c8fca509e3a2bb1de2b24.woff2')format("woff");}.ff3_c00158{font-family:ff3_c00158;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00158;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff4_c00158{font-family:ff4_c00158;line-height:1.219238;font-style: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);}
.v1_c00158{vertical-align:-79.800000px;}
.v2_c00158{vertical-align:-15.000000px;}
.v0_c00158{vertical-align:0.000000px;}
.ls1_c00158{letter-spacing:0.000000px;}
.ls2_c00158{letter-spacing:12.000000px;}
.ls0_c00158{letter-spacing:202.560000px;}
.sc__c00158{text-shadow:none;}
.sc0_c00158{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00158{-webkit-text-stroke:0px transparent;}
.sc0_c00158{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00158{word-spacing:-23.859000px;}
.ws3_c00158{word-spacing:-20.250000px;}
.ws2_c00158{word-spacing:-17.352000px;}
.ws4_c00158{word-spacing:0.000000px;}
.ws1_c00158{word-spacing:21.780000px;}
._e_c00158{margin-left:-37.092000px;}
._5_c00158{margin-left:-31.944000px;}
._f_c00158{margin-left:-23.364000px;}
._4_c00158{margin-left:-21.648000px;}
._10_c00158{margin-left:-16.104000px;}
._1_c00158{margin-left:-13.860000px;}
._2_c00158{margin-left:-12.375000px;}
._6_c00158{margin-left:-10.512000px;}
._1c_c00158{margin-left:-9.387000px;}
._0_c00158{margin-left:-8.316000px;}
._18_c00158{margin-left:-6.615000px;}
._3_c00158{margin-left:-5.535000px;}
._9_c00158{margin-left:-4.167000px;}
._8_c00158{margin-left:-2.673000px;}
._7_c00158{margin-left:-1.386000px;}
._19_c00158{width:1.359000px;}
._12_c00158{width:2.430000px;}
._11_c00158{width:3.645000px;}
._a_c00158{width:5.274000px;}
._c_c00158{width:6.897000px;}
._b_c00158{width:8.298000px;}
._17_c00158{width:9.396000px;}
._15_c00158{width:11.097000px;}
._14_c00158{width:12.150000px;}
._1f_c00158{width:13.644000px;}
._13_c00158{width:14.715000px;}
._1a_c00158{width:15.861000px;}
._1e_c00158{width:17.214000px;}
._21_c00158{width:18.759000px;}
._1b_c00158{width:21.693000px;}
._1d_c00158{width:23.049000px;}
._22_c00158{width:24.519000px;}
._16_c00158{width:28.341000px;}
._23_c00158{width:30.186000px;}
._24_c00158{width:31.353000px;}
._20_c00158{width:36.138000px;}
._d_c00158{width:110.748000px;}
.fc2_c00158{color:transparent;}
.fc1_c00158{color:rgb(128,128,128);}
.fc0_c00158{color:rgb(0,0,0);}
.fs7_c00158{font-size:48.000000px;}
.fs4_c00158{font-size:57.000000px;}
.fs5_c00158{font-size:60.000000px;}
.fs6_c00158{font-size:72.000000px;}
.fs3_c00158{font-size:78.000000px;}
.fs2_c00158{font-size:81.000000px;}
.fs0_c00158{font-size:99.000000px;}
.fs1_c00158{font-size:132.000000px;}
.y0_c00158{bottom:0.000000px;}
.y25_c00158{bottom:3.105000px;}
.y24_c00158{bottom:7.228357px;}
.y23_c00158{bottom:61.080000px;}
.y22_c00158{bottom:85.380000px;}
.y21_c00158{bottom:110.130000px;}
.y20_c00158{bottom:133.380000px;}
.y1f_c00158{bottom:158.280000px;}
.y1e_c00158{bottom:182.880000px;}
.y1d_c00158{bottom:206.580000px;}
.y1c_c00158{bottom:231.180000px;}
.y1b_c00158{bottom:255.480000px;}
.y1a_c00158{bottom:279.480000px;}
.y19_c00158{bottom:303.180000px;}
.y18_c00158{bottom:327.780000px;}
.y17_c00158{bottom:351.780000px;}
.y16_c00158{bottom:375.930000px;}
.y15_c00158{bottom:399.930000px;}
.y14_c00158{bottom:423.630000px;}
.y13_c00158{bottom:447.630000px;}
.y12_c00158{bottom:471.780000px;}
.y11_c00158{bottom:496.230000px;}
.y10_c00158{bottom:520.080000px;}
.yf_c00158{bottom:543.330000px;}
.ye_c00158{bottom:567.780000px;}
.yd_c00158{bottom:591.630000px;}
.yc_c00158{bottom:615.630000px;}
.yb_c00158{bottom:638.880000px;}
.ya_c00158{bottom:663.480000px;}
.y9_c00158{bottom:686.580000px;}
.y8_c00158{bottom:711.180000px;}
.y7_c00158{bottom:735.030000px;}
.y6_c00158{bottom:759.030000px;}
.y5_c00158{bottom:783.780000px;}
.y4_c00158{bottom:811.380000px;}
.y3_c00158{bottom:851.580000px;}
.y2_c00158{bottom:878.880000px;}
.y1_c00158{bottom:913.980000px;}
.h6_c00158{height:13.200074px;}
.h7_c00158{height:43.804688px;}
.h3_c00158{height:75.966797px;}
.h2_c00158{height:79.497070px;}
.h5_c00158{height:84.269531px;}
.h4_c00158{height:91.160156px;}
.h1_c00158{height:167.126953px;}
.h0_c00158{height:968.250000px;}
.w1_c00158{width:104.875500px;}
.w0_c00158{width:657.750000px;}
.x0_c00158{left:0.000000px;}
.x2_c00158{left:36.450000px;}
.x6_c00158{left:38.100000px;}
.x7_c00158{left:39.600000px;}
.x3_c00158{left:40.800000px;}
.x4_c00158{left:42.900000px;}
.x8_c00158{left:44.250000px;}
.x9_c00158{left:45.600000px;}
.xa_c00158{left:46.650000px;}
.x1_c00158{left:60.300000px;}
.x5_c00158{left:104.250000px;}
.xc_c00158{left:280.689240px;}
.xb_c00158{left:489.750000px;}
@media print{
.v1_c00158{vertical-align:-70.933333pt;}
.v2_c00158{vertical-align:-13.333333pt;}
.v0_c00158{vertical-align:0.000000pt;}
.ls1_c00158{letter-spacing:0.000000pt;}
.ls2_c00158{letter-spacing:10.666667pt;}
.ls0_c00158{letter-spacing:180.053333pt;}
.ws0_c00158{word-spacing:-21.208000pt;}
.ws3_c00158{word-spacing:-18.000000pt;}
.ws2_c00158{word-spacing:-15.424000pt;}
.ws4_c00158{word-spacing:0.000000pt;}
.ws1_c00158{word-spacing:19.360000pt;}
._e_c00158{margin-left:-32.970667pt;}
._5_c00158{margin-left:-28.394667pt;}
._f_c00158{margin-left:-20.768000pt;}
._4_c00158{margin-left:-19.242667pt;}
._10_c00158{margin-left:-14.314667pt;}
._1_c00158{margin-left:-12.320000pt;}
._2_c00158{margin-left:-11.000000pt;}
._6_c00158{margin-left:-9.344000pt;}
._1c_c00158{margin-left:-8.344000pt;}
._0_c00158{margin-left:-7.392000pt;}
._18_c00158{margin-left:-5.880000pt;}
._3_c00158{margin-left:-4.920000pt;}
._9_c00158{margin-left:-3.704000pt;}
._8_c00158{margin-left:-2.376000pt;}
._7_c00158{margin-left:-1.232000pt;}
._19_c00158{width:1.208000pt;}
._12_c00158{width:2.160000pt;}
._11_c00158{width:3.240000pt;}
._a_c00158{width:4.688000pt;}
._c_c00158{width:6.130667pt;}
._b_c00158{width:7.376000pt;}
._17_c00158{width:8.352000pt;}
._15_c00158{width:9.864000pt;}
._14_c00158{width:10.800000pt;}
._1f_c00158{width:12.128000pt;}
._13_c00158{width:13.080000pt;}
._1a_c00158{width:14.098667pt;}
._1e_c00158{width:15.301333pt;}
._21_c00158{width:16.674667pt;}
._1b_c00158{width:19.282667pt;}
._1d_c00158{width:20.488000pt;}
._22_c00158{width:21.794667pt;}
._16_c00158{width:25.192000pt;}
._23_c00158{width:26.832000pt;}
._24_c00158{width:27.869333pt;}
._20_c00158{width:32.122667pt;}
._d_c00158{width:98.442667pt;}
.fs7_c00158{font-size:42.666667pt;}
.fs4_c00158{font-size:50.666667pt;}
.fs5_c00158{font-size:53.333333pt;}
.fs6_c00158{font-size:64.000000pt;}
.fs3_c00158{font-size:69.333333pt;}
.fs2_c00158{font-size:72.000000pt;}
.fs0_c00158{font-size:88.000000pt;}
.fs1_c00158{font-size:117.333333pt;}
.y0_c00158{bottom:0.000000pt;}
.y25_c00158{bottom:2.760000pt;}
.y24_c00158{bottom:6.425206pt;}
.y23_c00158{bottom:54.293333pt;}
.y22_c00158{bottom:75.893333pt;}
.y21_c00158{bottom:97.893333pt;}
.y20_c00158{bottom:118.560000pt;}
.y1f_c00158{bottom:140.693333pt;}
.y1e_c00158{bottom:162.560000pt;}
.y1d_c00158{bottom:183.626667pt;}
.y1c_c00158{bottom:205.493333pt;}
.y1b_c00158{bottom:227.093333pt;}
.y1a_c00158{bottom:248.426667pt;}
.y19_c00158{bottom:269.493333pt;}
.y18_c00158{bottom:291.360000pt;}
.y17_c00158{bottom:312.693333pt;}
.y16_c00158{bottom:334.160000pt;}
.y15_c00158{bottom:355.493333pt;}
.y14_c00158{bottom:376.560000pt;}
.y13_c00158{bottom:397.893333pt;}
.y12_c00158{bottom:419.360000pt;}
.y11_c00158{bottom:441.093333pt;}
.y10_c00158{bottom:462.293333pt;}
.yf_c00158{bottom:482.960000pt;}
.ye_c00158{bottom:504.693333pt;}
.yd_c00158{bottom:525.893333pt;}
.yc_c00158{bottom:547.226667pt;}
.yb_c00158{bottom:567.893333pt;}
.ya_c00158{bottom:589.760000pt;}
.y9_c00158{bottom:610.293333pt;}
.y8_c00158{bottom:632.160000pt;}
.y7_c00158{bottom:653.360000pt;}
.y6_c00158{bottom:674.693333pt;}
.y5_c00158{bottom:696.693333pt;}
.y4_c00158{bottom:721.226667pt;}
.y3_c00158{bottom:756.960000pt;}
.y2_c00158{bottom:781.226667pt;}
.y1_c00158{bottom:812.426667pt;}
.h6_c00158{height:11.733399pt;}
.h7_c00158{height:38.937500pt;}
.h3_c00158{height:67.526042pt;}
.h2_c00158{height:70.664062pt;}
.h5_c00158{height:74.906250pt;}
.h4_c00158{height:81.031250pt;}
.h1_c00158{height:148.557292pt;}
.h0_c00158{height:860.666667pt;}
.w1_c00158{width:93.222667pt;}
.w0_c00158{width:584.666667pt;}
.x0_c00158{left:0.000000pt;}
.x2_c00158{left:32.400000pt;}
.x6_c00158{left:33.866667pt;}
.x7_c00158{left:35.200000pt;}
.x3_c00158{left:36.266667pt;}
.x4_c00158{left:38.133333pt;}
.x8_c00158{left:39.333333pt;}
.x9_c00158{left:40.533333pt;}
.xa_c00158{left:41.466667pt;}
.x1_c00158{left:53.600000pt;}
.x5_c00158{left:92.666667pt;}
.xc_c00158{left:249.501546pt;}
.xb_c00158{left:435.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_1c7f87a462a136bd4b69787f.woff2')format("woff");}.ff1_c00159{font-family:ff1_c00159;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00159;src:url('chunks/assets/font_f95b623501544770d6602b15.woff2')format("woff");}.ff2_c00159{font-family:ff2_c00159;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00159;src:url('chunks/assets/font_f666d696f0e46c274477714f.woff2')format("woff");}.ff3_c00159{font-family:ff3_c00159;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00159;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff4_c00159{font-family:ff4_c00159;line-height:1.219238;font-style: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;}
.ls0_c00159{letter-spacing:0.000000px;}
.sc__c00159{text-shadow:none;}
.sc0_c00159{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00159{-webkit-text-stroke:0px transparent;}
.sc0_c00159{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00159{word-spacing:-20.250000px;}
.ws0_c00159{word-spacing:-17.352000px;}
.ws1_c00159{word-spacing:-0.504000px;}
.ws3_c00159{word-spacing:0.000000px;}
._1a_c00159{margin-left:-44.712000px;}
._1c_c00159{margin-left:-18.648000px;}
._1d_c00159{margin-left:-14.472000px;}
._1b_c00159{margin-left:-12.297000px;}
._19_c00159{margin-left:-9.153000px;}
._10_c00159{margin-left:-7.992000px;}
._15_c00159{margin-left:-6.237000px;}
._2_c00159{margin-left:-4.536000px;}
._6_c00159{margin-left:-2.592000px;}
._5_c00159{margin-left:-1.458000px;}
._9_c00159{width:1.458000px;}
._1_c00159{width:2.673000px;}
._d_c00159{width:3.726000px;}
._0_c00159{width:4.779000px;}
._b_c00159{width:5.832000px;}
._3_c00159{width:6.885000px;}
._4_c00159{width:8.100000px;}
._8_c00159{width:9.882000px;}
._f_c00159{width:11.259000px;}
._12_c00159{width:12.312000px;}
._c_c00159{width:13.608000px;}
._18_c00159{width:15.282000px;}
._e_c00159{width:16.443000px;}
._17_c00159{width:18.504000px;}
._13_c00159{width:21.303000px;}
._16_c00159{width:22.572000px;}
._14_c00159{width:24.624000px;}
._7_c00159{width:31.590000px;}
._11_c00159{width:34.344000px;}
._a_c00159{width:193.104000px;}
.fc2_c00159{color:transparent;}
.fc1_c00159{color:rgb(128,128,128);}
.fc0_c00159{color:rgb(0,0,0);}
.fs4_c00159{font-size:48.000000px;}
.fs3_c00159{font-size:57.000000px;}
.fs2_c00159{font-size:72.000000px;}
.fs1_c00159{font-size:78.000000px;}
.fs0_c00159{font-size:81.000000px;}
.y0_c00159{bottom:0.000000px;}
.y25_c00159{bottom:3.105000px;}
.y24_c00159{bottom:7.228357px;}
.y23_c00159{bottom:71.280000px;}
.y22_c00159{bottom:94.530000px;}
.y21_c00159{bottom:119.130000px;}
.y20_c00159{bottom:143.430000px;}
.y1f_c00159{bottom:167.430000px;}
.y1e_c00159{bottom:192.030000px;}
.y1d_c00159{bottom:216.330000px;}
.y1c_c00159{bottom:240.630000px;}
.y1b_c00159{bottom:264.930000px;}
.y1a_c00159{bottom:289.530000px;}
.y19_c00159{bottom:313.830000px;}
.y18_c00159{bottom:337.830000px;}
.y17_c00159{bottom:362.130000px;}
.y16_c00159{bottom:386.430000px;}
.y15_c00159{bottom:410.730000px;}
.y14_c00159{bottom:435.480000px;}
.y13_c00159{bottom:459.330000px;}
.y12_c00159{bottom:484.080000px;}
.y11_c00159{bottom:508.230000px;}
.y10_c00159{bottom:532.530000px;}
.yf_c00159{bottom:556.530000px;}
.ye_c00159{bottom:580.830000px;}
.yd_c00159{bottom:605.430000px;}
.yc_c00159{bottom:629.130000px;}
.yb_c00159{bottom:653.130000px;}
.ya_c00159{bottom:677.430000px;}
.y9_c00159{bottom:701.730000px;}
.y8_c00159{bottom:726.330000px;}
.y7_c00159{bottom:749.880000px;}
.y6_c00159{bottom:774.180000px;}
.y5_c00159{bottom:798.480000px;}
.y4_c00159{bottom:822.180000px;}
.y3_c00159{bottom:847.080000px;}
.y2_c00159{bottom:870.780000px;}
.y1_c00159{bottom:895.080000px;}
.h5_c00159{height:13.200074px;}
.h6_c00159{height:43.804688px;}
.h1_c00159{height:79.497070px;}
.h3_c00159{height:84.269531px;}
.h4_c00159{height:91.160156px;}
.h2_c00159{height:98.756836px;}
.h0_c00159{height:995.250000px;}
.w2_c00159{width:104.875500px;}
.w0_c00159{width:667.425000px;}
.w1_c00159{width:667.500000px;}
.x0_c00159{left:0.000000px;}
.x6_c00159{left:135.000000px;}
.x5_c00159{left:136.650000px;}
.x4_c00159{left:137.700000px;}
.x1_c00159{left:139.950000px;}
.x2_c00159{left:141.150000px;}
.x3_c00159{left:142.200000px;}
.x8_c00159{left:285.526749px;}
.x7_c00159{left:583.200000px;}
@media print{
.v0_c00159{vertical-align:0.000000pt;}
.ls0_c00159{letter-spacing:0.000000pt;}
.ws2_c00159{word-spacing:-18.000000pt;}
.ws0_c00159{word-spacing:-15.424000pt;}
.ws1_c00159{word-spacing:-0.448000pt;}
.ws3_c00159{word-spacing:0.000000pt;}
._1a_c00159{margin-left:-39.744000pt;}
._1c_c00159{margin-left:-16.576000pt;}
._1d_c00159{margin-left:-12.864000pt;}
._1b_c00159{margin-left:-10.930667pt;}
._19_c00159{margin-left:-8.136000pt;}
._10_c00159{margin-left:-7.104000pt;}
._15_c00159{margin-left:-5.544000pt;}
._2_c00159{margin-left:-4.032000pt;}
._6_c00159{margin-left:-2.304000pt;}
._5_c00159{margin-left:-1.296000pt;}
._9_c00159{width:1.296000pt;}
._1_c00159{width:2.376000pt;}
._d_c00159{width:3.312000pt;}
._0_c00159{width:4.248000pt;}
._b_c00159{width:5.184000pt;}
._3_c00159{width:6.120000pt;}
._4_c00159{width:7.200000pt;}
._8_c00159{width:8.784000pt;}
._f_c00159{width:10.008000pt;}
._12_c00159{width:10.944000pt;}
._c_c00159{width:12.096000pt;}
._18_c00159{width:13.584000pt;}
._e_c00159{width:14.616000pt;}
._17_c00159{width:16.448000pt;}
._13_c00159{width:18.936000pt;}
._16_c00159{width:20.064000pt;}
._14_c00159{width:21.888000pt;}
._7_c00159{width:28.080000pt;}
._11_c00159{width:30.528000pt;}
._a_c00159{width:171.648000pt;}
.fs4_c00159{font-size:42.666667pt;}
.fs3_c00159{font-size:50.666667pt;}
.fs2_c00159{font-size:64.000000pt;}
.fs1_c00159{font-size:69.333333pt;}
.fs0_c00159{font-size:72.000000pt;}
.y0_c00159{bottom:0.000000pt;}
.y25_c00159{bottom:2.760000pt;}
.y24_c00159{bottom:6.425206pt;}
.y23_c00159{bottom:63.360000pt;}
.y22_c00159{bottom:84.026667pt;}
.y21_c00159{bottom:105.893333pt;}
.y20_c00159{bottom:127.493333pt;}
.y1f_c00159{bottom:148.826667pt;}
.y1e_c00159{bottom:170.693333pt;}
.y1d_c00159{bottom:192.293333pt;}
.y1c_c00159{bottom:213.893333pt;}
.y1b_c00159{bottom:235.493333pt;}
.y1a_c00159{bottom:257.360000pt;}
.y19_c00159{bottom:278.960000pt;}
.y18_c00159{bottom:300.293333pt;}
.y17_c00159{bottom:321.893333pt;}
.y16_c00159{bottom:343.493333pt;}
.y15_c00159{bottom:365.093333pt;}
.y14_c00159{bottom:387.093333pt;}
.y13_c00159{bottom:408.293333pt;}
.y12_c00159{bottom:430.293333pt;}
.y11_c00159{bottom:451.760000pt;}
.y10_c00159{bottom:473.360000pt;}
.yf_c00159{bottom:494.693333pt;}
.ye_c00159{bottom:516.293333pt;}
.yd_c00159{bottom:538.160000pt;}
.yc_c00159{bottom:559.226667pt;}
.yb_c00159{bottom:580.560000pt;}
.ya_c00159{bottom:602.160000pt;}
.y9_c00159{bottom:623.760000pt;}
.y8_c00159{bottom:645.626667pt;}
.y7_c00159{bottom:666.560000pt;}
.y6_c00159{bottom:688.160000pt;}
.y5_c00159{bottom:709.760000pt;}
.y4_c00159{bottom:730.826667pt;}
.y3_c00159{bottom:752.960000pt;}
.y2_c00159{bottom:774.026667pt;}
.y1_c00159{bottom:795.626667pt;}
.h5_c00159{height:11.733399pt;}
.h6_c00159{height:38.937500pt;}
.h1_c00159{height:70.664062pt;}
.h3_c00159{height:74.906250pt;}
.h4_c00159{height:81.031250pt;}
.h2_c00159{height:87.783854pt;}
.h0_c00159{height:884.666667pt;}
.w2_c00159{width:93.222667pt;}
.w0_c00159{width:593.266667pt;}
.w1_c00159{width:593.333333pt;}
.x0_c00159{left:0.000000pt;}
.x6_c00159{left:120.000000pt;}
.x5_c00159{left:121.466667pt;}
.x4_c00159{left:122.400000pt;}
.x1_c00159{left:124.400000pt;}
.x2_c00159{left:125.466667pt;}
.x3_c00159{left:126.400000pt;}
.x8_c00159{left:253.801554pt;}
.x7_c00159{left:518.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_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_bd54e9d652f317cb50e8fdaa.woff2')format("woff");}.ff1_c00160{font-family:ff1_c00160;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00160;src:url('chunks/assets/font_3dbc1cdbcb11056ee2d29343.woff2')format("woff");}.ff2_c00160{font-family:ff2_c00160;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00160;src:url('chunks/assets/font_3393aaf103d8ebbb8163bd4d.woff2')format("woff");}.ff3_c00160{font-family:ff3_c00160;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00160;src:url('chunks/assets/font_fc8fd007d9d06882a15e777c.woff2')format("woff");}.ff4_c00160{font-family:ff4_c00160;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00160;src:url('chunks/assets/font_2965f429959ae085d17d1e08.woff2')format("woff");}.ff5_c00160{font-family:ff5_c00160;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00160;src:url('chunks/assets/font_1549b4bb43d72fef9ece6dc2.woff2')format("woff");}.ff6_c00160{font-family:ff6_c00160;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00160;src:url('chunks/assets/font_272e9d4d0d9884e400afc7e4.woff2')format("woff");}.ff7_c00160{font-family:ff7_c00160;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00160;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff8_c00160{font-family:ff8_c00160;line-height:1.219238;font-style: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;}
.ls4_c00160{letter-spacing:0.000000px;}
.ls2_c00160{letter-spacing:0.900000px;}
.ls3_c00160{letter-spacing:1.800000px;}
.ls6_c00160{letter-spacing:3.000000px;}
.ls1_c00160{letter-spacing:15.000000px;}
.ls5_c00160{letter-spacing:18.000000px;}
.ls0_c00160{letter-spacing:61.650000px;}
.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;}
}
.ws0_c00160{word-spacing:-74.640000px;}
.ws2_c00160{word-spacing:-67.686000px;}
.ws4_c00160{word-spacing:-59.184000px;}
.ws1_c00160{word-spacing:-25.500000px;}
.ws3_c00160{word-spacing:-23.250000px;}
.ws5_c00160{word-spacing:0.000000px;}
._7_c00160{margin-left:-57.102000px;}
._15_c00160{margin-left:-20.157000px;}
._17_c00160{margin-left:-10.530000px;}
._12_c00160{margin-left:-8.715000px;}
._4_c00160{margin-left:-6.732000px;}
._9_c00160{margin-left:-5.046000px;}
._e_c00160{margin-left:-3.789000px;}
._3_c00160{margin-left:-2.652000px;}
._6_c00160{margin-left:-1.020000px;}
._2_c00160{width:1.836000px;}
._1_c00160{width:3.264000px;}
._0_c00160{width:4.284000px;}
._c_c00160{width:5.355000px;}
._b_c00160{width:6.642000px;}
._f_c00160{width:8.109000px;}
._8_c00160{width:9.486000px;}
._10_c00160{width:10.650000px;}
._d_c00160{width:11.733000px;}
._16_c00160{width:12.873000px;}
._a_c00160{width:13.905000px;}
._5_c00160{width:15.606000px;}
._18_c00160{width:18.528000px;}
._13_c00160{width:23.790000px;}
._11_c00160{width:28.806000px;}
._14_c00160{width:33.177000px;}
._19_c00160{width:337.095000px;}
.fc2_c00160{color:transparent;}
.fc1_c00160{color:rgb(128,128,128);}
.fc0_c00160{color:rgb(0,0,0);}
.fs8_c00160{font-size:48.000000px;}
.fs7_c00160{font-size:66.000000px;}
.fs6_c00160{font-size:72.000000px;}
.fs2_c00160{font-size:78.000000px;}
.fs4_c00160{font-size:81.000000px;}
.fs1_c00160{font-size:87.000000px;}
.fs5_c00160{font-size:93.000000px;}
.fs0_c00160{font-size:102.000000px;}
.fs3_c00160{font-size:120.000000px;}
.y0_c00160{bottom:0.000000px;}
.y26_c00160{bottom:3.105000px;}
.y25_c00160{bottom:7.228363px;}
.y24_c00160{bottom:60.450000px;}
.y23_c00160{bottom:85.650000px;}
.y22_c00160{bottom:110.250000px;}
.y21_c00160{bottom:136.050000px;}
.y20_c00160{bottom:161.250000px;}
.y1f_c00160{bottom:186.000000px;}
.y1e_c00160{bottom:210.600000px;}
.y1d_c00160{bottom:235.500000px;}
.y1c_c00160{bottom:259.200000px;}
.y1b_c00160{bottom:284.100000px;}
.y1a_c00160{bottom:307.800000px;}
.y19_c00160{bottom:331.350000px;}
.y18_c00160{bottom:356.700000px;}
.y17_c00160{bottom:379.350000px;}
.y16_c00160{bottom:404.250000px;}
.y15_c00160{bottom:427.950000px;}
.y14_c00160{bottom:452.850000px;}
.y13_c00160{bottom:476.550000px;}
.y12_c00160{bottom:501.150000px;}
.y11_c00160{bottom:525.450000px;}
.y10_c00160{bottom:549.750000px;}
.yf_c00160{bottom:573.450000px;}
.ye_c00160{bottom:597.750000px;}
.yd_c00160{bottom:621.600000px;}
.yc_c00160{bottom:645.900000px;}
.yb_c00160{bottom:672.000000px;}
.ya_c00160{bottom:694.200000px;}
.y9_c00160{bottom:721.200000px;}
.y8_c00160{bottom:743.100000px;}
.y7_c00160{bottom:767.850000px;}
.y6_c00160{bottom:792.150000px;}
.y5_c00160{bottom:816.750000px;}
.y4_c00160{bottom:841.350000px;}
.y3_c00160{bottom:866.250000px;}
.y2_c00160{bottom:889.950000px;}
.y1_c00160{bottom:924.750000px;}
.h9_c00160{height:13.200074px;}
.ha_c00160{height:43.804688px;}
.h3_c00160{height:79.497070px;}
.h8_c00160{height:87.679688px;}
.h7_c00160{height:91.160156px;}
.h4_c00160{height:91.176000px;}
.h5_c00160{height:91.274414px;}
.h6_c00160{height:98.756836px;}
.h2_c00160{height:140.449219px;}
.h0_c00160{height:980.100000px;}
.h1_c00160{height:980.250000px;}
.w2_c00160{width:104.875500px;}
.w0_c00160{width:665.850000px;}
.w1_c00160{width:666.000000px;}
.x0_c00160{left:0.000000px;}
.x5_c00160{left:52.650000px;}
.x2_c00160{left:53.700000px;}
.x3_c00160{left:54.750000px;}
.x4_c00160{left:79.350000px;}
.x1_c00160{left:96.450000px;}
.x7_c00160{left:284.739258px;}
.x6_c00160{left:375.300000px;}
@media print{
.v0_c00160{vertical-align:0.000000pt;}
.ls4_c00160{letter-spacing:0.000000pt;}
.ls2_c00160{letter-spacing:0.800000pt;}
.ls3_c00160{letter-spacing:1.600000pt;}
.ls6_c00160{letter-spacing:2.666667pt;}
.ls1_c00160{letter-spacing:13.333333pt;}
.ls5_c00160{letter-spacing:16.000000pt;}
.ls0_c00160{letter-spacing:54.800000pt;}
.ws0_c00160{word-spacing:-66.346667pt;}
.ws2_c00160{word-spacing:-60.165333pt;}
.ws4_c00160{word-spacing:-52.608000pt;}
.ws1_c00160{word-spacing:-22.666667pt;}
.ws3_c00160{word-spacing:-20.666667pt;}
.ws5_c00160{word-spacing:0.000000pt;}
._7_c00160{margin-left:-50.757333pt;}
._15_c00160{margin-left:-17.917333pt;}
._17_c00160{margin-left:-9.360000pt;}
._12_c00160{margin-left:-7.746667pt;}
._4_c00160{margin-left:-5.984000pt;}
._9_c00160{margin-left:-4.485333pt;}
._e_c00160{margin-left:-3.368000pt;}
._3_c00160{margin-left:-2.357333pt;}
._6_c00160{margin-left:-0.906667pt;}
._2_c00160{width:1.632000pt;}
._1_c00160{width:2.901333pt;}
._0_c00160{width:3.808000pt;}
._c_c00160{width:4.760000pt;}
._b_c00160{width:5.904000pt;}
._f_c00160{width:7.208000pt;}
._8_c00160{width:8.432000pt;}
._10_c00160{width:9.466667pt;}
._d_c00160{width:10.429333pt;}
._16_c00160{width:11.442667pt;}
._a_c00160{width:12.360000pt;}
._5_c00160{width:13.872000pt;}
._18_c00160{width:16.469333pt;}
._13_c00160{width:21.146667pt;}
._11_c00160{width:25.605333pt;}
._14_c00160{width:29.490667pt;}
._19_c00160{width:299.640000pt;}
.fs8_c00160{font-size:42.666667pt;}
.fs7_c00160{font-size:58.666667pt;}
.fs6_c00160{font-size:64.000000pt;}
.fs2_c00160{font-size:69.333333pt;}
.fs4_c00160{font-size:72.000000pt;}
.fs1_c00160{font-size:77.333333pt;}
.fs5_c00160{font-size:82.666667pt;}
.fs0_c00160{font-size:90.666667pt;}
.fs3_c00160{font-size:106.666667pt;}
.y0_c00160{bottom:0.000000pt;}
.y26_c00160{bottom:2.760000pt;}
.y25_c00160{bottom:6.425212pt;}
.y24_c00160{bottom:53.733333pt;}
.y23_c00160{bottom:76.133333pt;}
.y22_c00160{bottom:98.000000pt;}
.y21_c00160{bottom:120.933333pt;}
.y20_c00160{bottom:143.333333pt;}
.y1f_c00160{bottom:165.333333pt;}
.y1e_c00160{bottom:187.200000pt;}
.y1d_c00160{bottom:209.333333pt;}
.y1c_c00160{bottom:230.400000pt;}
.y1b_c00160{bottom:252.533333pt;}
.y1a_c00160{bottom:273.600000pt;}
.y19_c00160{bottom:294.533333pt;}
.y18_c00160{bottom:317.066667pt;}
.y17_c00160{bottom:337.200000pt;}
.y16_c00160{bottom:359.333333pt;}
.y15_c00160{bottom:380.400000pt;}
.y14_c00160{bottom:402.533333pt;}
.y13_c00160{bottom:423.600000pt;}
.y12_c00160{bottom:445.466667pt;}
.y11_c00160{bottom:467.066667pt;}
.y10_c00160{bottom:488.666667pt;}
.yf_c00160{bottom:509.733333pt;}
.ye_c00160{bottom:531.333333pt;}
.yd_c00160{bottom:552.533333pt;}
.yc_c00160{bottom:574.133333pt;}
.yb_c00160{bottom:597.333333pt;}
.ya_c00160{bottom:617.066667pt;}
.y9_c00160{bottom:641.066667pt;}
.y8_c00160{bottom:660.533333pt;}
.y7_c00160{bottom:682.533333pt;}
.y6_c00160{bottom:704.133333pt;}
.y5_c00160{bottom:726.000000pt;}
.y4_c00160{bottom:747.866667pt;}
.y3_c00160{bottom:770.000000pt;}
.y2_c00160{bottom:791.066667pt;}
.y1_c00160{bottom:822.000000pt;}
.h9_c00160{height:11.733399pt;}
.ha_c00160{height:38.937500pt;}
.h3_c00160{height:70.664062pt;}
.h8_c00160{height:77.937500pt;}
.h7_c00160{height:81.031250pt;}
.h4_c00160{height:81.045333pt;}
.h5_c00160{height:81.132812pt;}
.h6_c00160{height:87.783854pt;}
.h2_c00160{height:124.843750pt;}
.h0_c00160{height:871.200000pt;}
.h1_c00160{height:871.333333pt;}
.w2_c00160{width:93.222667pt;}
.w0_c00160{width:591.866667pt;}
.w1_c00160{width:592.000000pt;}
.x0_c00160{left:0.000000pt;}
.x5_c00160{left:46.800000pt;}
.x2_c00160{left:47.733333pt;}
.x3_c00160{left:48.666667pt;}
.x4_c00160{left:70.533333pt;}
.x1_c00160{left:85.733333pt;}
.x7_c00160{left:253.101563pt;}
.x6_c00160{left:333.600000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_2e27d2181235f4651c0886e1.woff2')format("woff");}.ff1_c00161{font-family:ff1_c00161;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00161;src:url('chunks/assets/font_0f41ab6070c1afcf6bd36f2f.woff2')format("woff");}.ff2_c00161{font-family:ff2_c00161;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00161;src:url('chunks/assets/font_f24d5d1a56aaadfc864c3c02.woff2')format("woff");}.ff3_c00161{font-family:ff3_c00161;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00161;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff4_c00161{font-family:ff4_c00161;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00161{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00161{vertical-align:-103.200000px;}
.v0_c00161{vertical-align:0.000000px;}
.ls0_c00161{letter-spacing:0.000000px;}
.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:-59.184000px;}
.ws1_c00161{word-spacing:0.000000px;}
._16_c00161{margin-left:-11.496000px;}
._f_c00161{margin-left:-10.125000px;}
._13_c00161{margin-left:-8.910000px;}
._b_c00161{margin-left:-7.452000px;}
._9_c00161{margin-left:-5.589000px;}
._6_c00161{margin-left:-3.726000px;}
._7_c00161{margin-left:-2.673000px;}
._4_c00161{margin-left:-1.539000px;}
._5_c00161{width:1.053000px;}
._1_c00161{width:2.268000px;}
._0_c00161{width:3.969000px;}
._2_c00161{width:5.022000px;}
._3_c00161{width:6.156000px;}
._a_c00161{width:7.209000px;}
._8_c00161{width:8.910000px;}
._e_c00161{width:10.044000px;}
._10_c00161{width:11.184000px;}
._d_c00161{width:12.549000px;}
._c_c00161{width:14.985000px;}
._12_c00161{width:16.275000px;}
._11_c00161{width:18.381000px;}
._19_c00161{width:23.184000px;}
._17_c00161{width:31.590000px;}
._14_c00161{width:62.856000px;}
._18_c00161{width:85.941000px;}
._15_c00161{width:200.556000px;}
.fc2_c00161{color:transparent;}
.fc1_c00161{color:rgb(128,128,128);}
.fc0_c00161{color:rgb(0,0,0);}
.fs3_c00161{font-size:48.000000px;}
.fs2_c00161{font-size:72.000000px;}
.fs1_c00161{font-size:78.000000px;}
.fs0_c00161{font-size:81.000000px;}
.y0_c00161{bottom:0.000000px;}
.y24_c00161{bottom:3.105000px;}
.y23_c00161{bottom:7.228357px;}
.y22_c00161{bottom:93.930000px;}
.y21_c00161{bottom:119.880000px;}
.y20_c00161{bottom:145.080000px;}
.y1f_c00161{bottom:169.080000px;}
.y1e_c00161{bottom:193.680000px;}
.y1d_c00161{bottom:218.430000px;}
.y1c_c00161{bottom:242.730000px;}
.y1b_c00161{bottom:267.630000px;}
.y1a_c00161{bottom:292.230000px;}
.y19_c00161{bottom:316.230000px;}
.y18_c00161{bottom:340.530000px;}
.y17_c00161{bottom:365.280000px;}
.y16_c00161{bottom:389.580000px;}
.y15_c00161{bottom:413.880000px;}
.y14_c00161{bottom:438.180000px;}
.y13_c00161{bottom:462.780000px;}
.y12_c00161{bottom:487.680000px;}
.y11_c00161{bottom:511.680000px;}
.y10_c00161{bottom:535.980000px;}
.yf_c00161{bottom:560.280000px;}
.ye_c00161{bottom:584.580000px;}
.yd_c00161{bottom:609.330000px;}
.yc_c00161{bottom:633.780000px;}
.yb_c00161{bottom:658.230000px;}
.ya_c00161{bottom:682.530000px;}
.y9_c00161{bottom:706.830000px;}
.y8_c00161{bottom:731.430000px;}
.y7_c00161{bottom:755.430000px;}
.y6_c00161{bottom:779.730000px;}
.y5_c00161{bottom:804.330000px;}
.y4_c00161{bottom:828.630000px;}
.y3_c00161{bottom:852.630000px;}
.y2_c00161{bottom:876.780000px;}
.y1_c00161{bottom:900.780000px;}
.h4_c00161{height:13.200074px;}
.h5_c00161{height:43.804688px;}
.h1_c00161{height:79.497070px;}
.h3_c00161{height:91.160156px;}
.h2_c00161{height:98.756836px;}
.h0_c00161{height:995.250000px;}
.w2_c00161{width:104.875500px;}
.w0_c00161{width:667.425000px;}
.w1_c00161{width:667.500000px;}
.x0_c00161{left:0.000000px;}
.x8_c00161{left:29.250000px;}
.x7_c00161{left:119.700000px;}
.x6_c00161{left:121.050000px;}
.x5_c00161{left:122.850000px;}
.x4_c00161{left:124.500000px;}
.x3_c00161{left:125.850000px;}
.x2_c00161{left:127.200000px;}
.x1_c00161{left:128.700000px;}
.x9_c00161{left:285.526749px;}
@media print{
.v1_c00161{vertical-align:-91.733333pt;}
.v0_c00161{vertical-align:0.000000pt;}
.ls0_c00161{letter-spacing:0.000000pt;}
.ws0_c00161{word-spacing:-52.608000pt;}
.ws1_c00161{word-spacing:0.000000pt;}
._16_c00161{margin-left:-10.218667pt;}
._f_c00161{margin-left:-9.000000pt;}
._13_c00161{margin-left:-7.920000pt;}
._b_c00161{margin-left:-6.624000pt;}
._9_c00161{margin-left:-4.968000pt;}
._6_c00161{margin-left:-3.312000pt;}
._7_c00161{margin-left:-2.376000pt;}
._4_c00161{margin-left:-1.368000pt;}
._5_c00161{width:0.936000pt;}
._1_c00161{width:2.016000pt;}
._0_c00161{width:3.528000pt;}
._2_c00161{width:4.464000pt;}
._3_c00161{width:5.472000pt;}
._a_c00161{width:6.408000pt;}
._8_c00161{width:7.920000pt;}
._e_c00161{width:8.928000pt;}
._10_c00161{width:9.941333pt;}
._d_c00161{width:11.154667pt;}
._c_c00161{width:13.320000pt;}
._12_c00161{width:14.466667pt;}
._11_c00161{width:16.338667pt;}
._19_c00161{width:20.608000pt;}
._17_c00161{width:28.080000pt;}
._14_c00161{width:55.872000pt;}
._18_c00161{width:76.392000pt;}
._15_c00161{width:178.272000pt;}
.fs3_c00161{font-size:42.666667pt;}
.fs2_c00161{font-size:64.000000pt;}
.fs1_c00161{font-size:69.333333pt;}
.fs0_c00161{font-size:72.000000pt;}
.y0_c00161{bottom:0.000000pt;}
.y24_c00161{bottom:2.760000pt;}
.y23_c00161{bottom:6.425206pt;}
.y22_c00161{bottom:83.493333pt;}
.y21_c00161{bottom:106.560000pt;}
.y20_c00161{bottom:128.960000pt;}
.y1f_c00161{bottom:150.293333pt;}
.y1e_c00161{bottom:172.160000pt;}
.y1d_c00161{bottom:194.160000pt;}
.y1c_c00161{bottom:215.760000pt;}
.y1b_c00161{bottom:237.893333pt;}
.y1a_c00161{bottom:259.760000pt;}
.y19_c00161{bottom:281.093333pt;}
.y18_c00161{bottom:302.693333pt;}
.y17_c00161{bottom:324.693333pt;}
.y16_c00161{bottom:346.293333pt;}
.y15_c00161{bottom:367.893333pt;}
.y14_c00161{bottom:389.493333pt;}
.y13_c00161{bottom:411.360000pt;}
.y12_c00161{bottom:433.493333pt;}
.y11_c00161{bottom:454.826667pt;}
.y10_c00161{bottom:476.426667pt;}
.yf_c00161{bottom:498.026667pt;}
.ye_c00161{bottom:519.626667pt;}
.yd_c00161{bottom:541.626667pt;}
.yc_c00161{bottom:563.360000pt;}
.yb_c00161{bottom:585.093333pt;}
.ya_c00161{bottom:606.693333pt;}
.y9_c00161{bottom:628.293333pt;}
.y8_c00161{bottom:650.160000pt;}
.y7_c00161{bottom:671.493333pt;}
.y6_c00161{bottom:693.093333pt;}
.y5_c00161{bottom:714.960000pt;}
.y4_c00161{bottom:736.560000pt;}
.y3_c00161{bottom:757.893333pt;}
.y2_c00161{bottom:779.360000pt;}
.y1_c00161{bottom:800.693333pt;}
.h4_c00161{height:11.733399pt;}
.h5_c00161{height:38.937500pt;}
.h1_c00161{height:70.664062pt;}
.h3_c00161{height:81.031250pt;}
.h2_c00161{height:87.783854pt;}
.h0_c00161{height:884.666667pt;}
.w2_c00161{width:93.222667pt;}
.w0_c00161{width:593.266667pt;}
.w1_c00161{width:593.333333pt;}
.x0_c00161{left:0.000000pt;}
.x8_c00161{left:26.000000pt;}
.x7_c00161{left:106.400000pt;}
.x6_c00161{left:107.600000pt;}
.x5_c00161{left:109.200000pt;}
.x4_c00161{left:110.666667pt;}
.x3_c00161{left:111.866667pt;}
.x2_c00161{left:113.066667pt;}
.x1_c00161{left:114.400000pt;}
.x9_c00161{left:253.801554pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2b6a1049a739bf9108074478.woff2')format("woff");}.ff1_c00162{font-family:ff1_c00162;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00162;src:url('chunks/assets/font_a765e407541535f4f2c5963d.woff2')format("woff");}.ff2_c00162{font-family:ff2_c00162;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00162;src:url('chunks/assets/font_253cab6315914ab94da43db6.woff2')format("woff");}.ff3_c00162{font-family:ff3_c00162;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00162;src:url('chunks/assets/font_2cb3928cb93d05d4db3591f6.woff2')format("woff");}.ff4_c00162{font-family:ff4_c00162;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00162;src:url('chunks/assets/font_163afae5591024c183d72c9c.woff2')format("woff");}.ff5_c00162{font-family:ff5_c00162;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00162;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c00162{font-family:ff6_c00162;line-height:1.219238;font-style: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;}
.v1_c00162{vertical-align:146.400000px;}
.ls5_c00162{letter-spacing:0.000000px;}
.ls4_c00162{letter-spacing:1.500000px;}
.ls3_c00162{letter-spacing:1.536000px;}
.ls7_c00162{letter-spacing:3.000000px;}
.ls2_c00162{letter-spacing:9.168000px;}
.ls0_c00162{letter-spacing:9.720000px;}
.ls6_c00162{letter-spacing:12.000000px;}
.ls1_c00162{letter-spacing:16.257600px;}
.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:-68.250000px;}
.ws4_c00162{word-spacing:-67.686000px;}
.ws0_c00162{word-spacing:-23.859000px;}
.ws3_c00162{word-spacing:-17.352000px;}
.ws2_c00162{word-spacing:-13.881600px;}
.ws5_c00162{word-spacing:-13.737000px;}
.ws6_c00162{word-spacing:0.000000px;}
._20_c00162{margin-left:-19.080000px;}
._a_c00162{margin-left:-16.848000px;}
._1e_c00162{margin-left:-15.237000px;}
._8_c00162{margin-left:-12.573000px;}
._15_c00162{margin-left:-10.800000px;}
._10_c00162{margin-left:-8.988000px;}
._7_c00162{margin-left:-7.425000px;}
._e_c00162{margin-left:-5.841000px;}
._5_c00162{margin-left:-4.653000px;}
._6_c00162{margin-left:-3.267000px;}
._0_c00162{margin-left:-1.980000px;}
._b_c00162{width:1.584000px;}
._1_c00162{width:2.772000px;}
._11_c00162{width:4.077000px;}
._2_c00162{width:5.148000px;}
._14_c00162{width:6.174000px;}
._f_c00162{width:7.191000px;}
._4_c00162{width:8.910000px;}
._3_c00162{width:10.890000px;}
._1b_c00162{width:12.087000px;}
._c_c00162{width:13.416000px;}
._12_c00162{width:14.652000px;}
._13_c00162{width:15.993000px;}
._1c_c00162{width:19.299000px;}
._d_c00162{width:21.780000px;}
._1f_c00162{width:25.776000px;}
._18_c00162{width:27.621000px;}
._21_c00162{width:34.551000px;}
._16_c00162{width:37.458000px;}
._1d_c00162{width:61.737000px;}
._9_c00162{width:64.314000px;}
._17_c00162{width:85.902000px;}
._19_c00162{width:138.402000px;}
._1a_c00162{width:303.537000px;}
._22_c00162{width:346.356000px;}
.fc2_c00162{color:transparent;}
.fc1_c00162{color:rgb(128,128,128);}
.fc0_c00162{color:rgb(0,0,0);}
.fs9_c00162{font-size:48.000000px;}
.fs6_c00162{font-size:57.000000px;}
.fs7_c00162{font-size:57.600000px;}
.fs3_c00162{font-size:72.000000px;}
.fs5_c00162{font-size:78.000000px;}
.fs2_c00162{font-size:81.000000px;}
.fs8_c00162{font-size:87.000000px;}
.fs0_c00162{font-size:99.000000px;}
.fs1_c00162{font-size:132.000000px;}
.fs4_c00162{font-size:273.000000px;}
.y0_c00162{bottom:0.000000px;}
.y26_c00162{bottom:3.105000px;}
.y25_c00162{bottom:7.228371px;}
.y24_c00162{bottom:59.565000px;}
.y23_c00162{bottom:85.515000px;}
.y22_c00162{bottom:110.865000px;}
.y21_c00162{bottom:136.065000px;}
.y20_c00162{bottom:160.365000px;}
.y1f_c00162{bottom:185.115000px;}
.y1e_c00162{bottom:209.415000px;}
.y1d_c00162{bottom:234.315000px;}
.y1c_c00162{bottom:259.665000px;}
.y1b_c00162{bottom:283.515000px;}
.y1a_c00162{bottom:307.965000px;}
.y19_c00162{bottom:331.515000px;}
.y18_c00162{bottom:356.415000px;}
.y17_c00162{bottom:380.415000px;}
.y16_c00162{bottom:405.015000px;}
.y15_c00162{bottom:429.015000px;}
.y14_c00162{bottom:453.615000px;}
.y13_c00162{bottom:477.915000px;}
.y12_c00162{bottom:502.965000px;}
.y11_c00162{bottom:526.965000px;}
.y10_c00162{bottom:550.965000px;}
.yf_c00162{bottom:575.115000px;}
.ye_c00162{bottom:599.115000px;}
.yd_c00162{bottom:623.715000px;}
.yc_c00162{bottom:649.365000px;}
.yb_c00162{bottom:673.815000px;}
.ya_c00162{bottom:696.015000px;}
.y9_c00162{bottom:720.615000px;}
.y8_c00162{bottom:744.615000px;}
.y7_c00162{bottom:769.965000px;}
.y6_c00162{bottom:793.965000px;}
.y5_c00162{bottom:818.265000px;}
.y3_c00162{bottom:832.815000px;}
.y4_c00162{bottom:845.115000px;}
.y2_c00162{bottom:893.715000px;}
.y1_c00162{bottom:928.215000px;}
.hb_c00162{height:13.200074px;}
.hc_c00162{height:43.804688px;}
.ha_c00162{height:66.713379px;}
.h9_c00162{height:72.168457px;}
.h5_c00162{height:79.497070px;}
.h3_c00162{height:84.269531px;}
.h7_c00162{height:91.160156px;}
.h8_c00162{height:91.176000px;}
.h6_c00162{height:98.756836px;}
.h2_c00162{height:167.126953px;}
.h4_c00162{height:267.934570px;}
.h0_c00162{height:989.025000px;}
.h1_c00162{height:989.250000px;}
.w1_c00162{width:104.875500px;}
.w0_c00162{width:672.000000px;}
.x0_c00162{left:0.000000px;}
.x5_c00162{left:28.350000px;}
.xc_c00162{left:36.450000px;}
.xd_c00162{left:40.500000px;}
.xb_c00162{left:42.900000px;}
.x8_c00162{left:44.100000px;}
.x9_c00162{left:45.150000px;}
.x7_c00162{left:46.800000px;}
.x6_c00162{left:48.300000px;}
.x3_c00162{left:51.900000px;}
.xa_c00162{left:69.900000px;}
.x1_c00162{left:76.950000px;}
.x2_c00162{left:78.600000px;}
.x4_c00162{left:88.350000px;}
.xf_c00162{left:287.814240px;}
.xe_c00162{left:363.150000px;}
@media print{
.v0_c00162{vertical-align:0.000000pt;}
.v1_c00162{vertical-align:130.133333pt;}
.ls5_c00162{letter-spacing:0.000000pt;}
.ls4_c00162{letter-spacing:1.333333pt;}
.ls3_c00162{letter-spacing:1.365333pt;}
.ls7_c00162{letter-spacing:2.666667pt;}
.ls2_c00162{letter-spacing:8.149333pt;}
.ls0_c00162{letter-spacing:8.640000pt;}
.ls6_c00162{letter-spacing:10.666667pt;}
.ls1_c00162{letter-spacing:14.451200pt;}
.ws1_c00162{word-spacing:-60.666667pt;}
.ws4_c00162{word-spacing:-60.165333pt;}
.ws0_c00162{word-spacing:-21.208000pt;}
.ws3_c00162{word-spacing:-15.424000pt;}
.ws2_c00162{word-spacing:-12.339200pt;}
.ws5_c00162{word-spacing:-12.210667pt;}
.ws6_c00162{word-spacing:0.000000pt;}
._20_c00162{margin-left:-16.960000pt;}
._a_c00162{margin-left:-14.976000pt;}
._1e_c00162{margin-left:-13.544000pt;}
._8_c00162{margin-left:-11.176000pt;}
._15_c00162{margin-left:-9.600000pt;}
._10_c00162{margin-left:-7.989333pt;}
._7_c00162{margin-left:-6.600000pt;}
._e_c00162{margin-left:-5.192000pt;}
._5_c00162{margin-left:-4.136000pt;}
._6_c00162{margin-left:-2.904000pt;}
._0_c00162{margin-left:-1.760000pt;}
._b_c00162{width:1.408000pt;}
._1_c00162{width:2.464000pt;}
._11_c00162{width:3.624000pt;}
._2_c00162{width:4.576000pt;}
._14_c00162{width:5.488000pt;}
._f_c00162{width:6.392000pt;}
._4_c00162{width:7.920000pt;}
._3_c00162{width:9.680000pt;}
._1b_c00162{width:10.744000pt;}
._c_c00162{width:11.925333pt;}
._12_c00162{width:13.024000pt;}
._13_c00162{width:14.216000pt;}
._1c_c00162{width:17.154667pt;}
._d_c00162{width:19.360000pt;}
._1f_c00162{width:22.912000pt;}
._18_c00162{width:24.552000pt;}
._21_c00162{width:30.712000pt;}
._16_c00162{width:33.296000pt;}
._1d_c00162{width:54.877333pt;}
._9_c00162{width:57.168000pt;}
._17_c00162{width:76.357333pt;}
._19_c00162{width:123.024000pt;}
._1a_c00162{width:269.810667pt;}
._22_c00162{width:307.872000pt;}
.fs9_c00162{font-size:42.666667pt;}
.fs6_c00162{font-size:50.666667pt;}
.fs7_c00162{font-size:51.200000pt;}
.fs3_c00162{font-size:64.000000pt;}
.fs5_c00162{font-size:69.333333pt;}
.fs2_c00162{font-size:72.000000pt;}
.fs8_c00162{font-size:77.333333pt;}
.fs0_c00162{font-size:88.000000pt;}
.fs1_c00162{font-size:117.333333pt;}
.fs4_c00162{font-size:242.666667pt;}
.y0_c00162{bottom:0.000000pt;}
.y26_c00162{bottom:2.760000pt;}
.y25_c00162{bottom:6.425219pt;}
.y24_c00162{bottom:52.946667pt;}
.y23_c00162{bottom:76.013333pt;}
.y22_c00162{bottom:98.546667pt;}
.y21_c00162{bottom:120.946667pt;}
.y20_c00162{bottom:142.546667pt;}
.y1f_c00162{bottom:164.546667pt;}
.y1e_c00162{bottom:186.146667pt;}
.y1d_c00162{bottom:208.280000pt;}
.y1c_c00162{bottom:230.813333pt;}
.y1b_c00162{bottom:252.013333pt;}
.y1a_c00162{bottom:273.746667pt;}
.y19_c00162{bottom:294.680000pt;}
.y18_c00162{bottom:316.813333pt;}
.y17_c00162{bottom:338.146667pt;}
.y16_c00162{bottom:360.013333pt;}
.y15_c00162{bottom:381.346667pt;}
.y14_c00162{bottom:403.213333pt;}
.y13_c00162{bottom:424.813333pt;}
.y12_c00162{bottom:447.080000pt;}
.y11_c00162{bottom:468.413333pt;}
.y10_c00162{bottom:489.746667pt;}
.yf_c00162{bottom:511.213333pt;}
.ye_c00162{bottom:532.546667pt;}
.yd_c00162{bottom:554.413333pt;}
.yc_c00162{bottom:577.213333pt;}
.yb_c00162{bottom:598.946667pt;}
.ya_c00162{bottom:618.680000pt;}
.y9_c00162{bottom:640.546667pt;}
.y8_c00162{bottom:661.880000pt;}
.y7_c00162{bottom:684.413333pt;}
.y6_c00162{bottom:705.746667pt;}
.y5_c00162{bottom:727.346667pt;}
.y3_c00162{bottom:740.280000pt;}
.y4_c00162{bottom:751.213333pt;}
.y2_c00162{bottom:794.413333pt;}
.y1_c00162{bottom:825.080000pt;}
.hb_c00162{height:11.733399pt;}
.hc_c00162{height:38.937500pt;}
.ha_c00162{height:59.300781pt;}
.h9_c00162{height:64.149740pt;}
.h5_c00162{height:70.664062pt;}
.h3_c00162{height:74.906250pt;}
.h7_c00162{height:81.031250pt;}
.h8_c00162{height:81.045333pt;}
.h6_c00162{height:87.783854pt;}
.h2_c00162{height:148.557292pt;}
.h4_c00162{height:238.164062pt;}
.h0_c00162{height:879.133333pt;}
.h1_c00162{height:879.333333pt;}
.w1_c00162{width:93.222667pt;}
.w0_c00162{width:597.333333pt;}
.x0_c00162{left:0.000000pt;}
.x5_c00162{left:25.200000pt;}
.xc_c00162{left:32.400000pt;}
.xd_c00162{left:36.000000pt;}
.xb_c00162{left:38.133333pt;}
.x8_c00162{left:39.200000pt;}
.x9_c00162{left:40.133333pt;}
.x7_c00162{left:41.600000pt;}
.x6_c00162{left:42.933333pt;}
.x3_c00162{left:46.133333pt;}
.xa_c00162{left:62.133333pt;}
.x1_c00162{left:68.400000pt;}
.x2_c00162{left:69.866667pt;}
.x4_c00162{left:78.533333pt;}
.xf_c00162{left:255.834880pt;}
.xe_c00162{left:322.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_494389f19dda6771f28b0387.woff2')format("woff");}.ff1_c00163{font-family:ff1_c00163;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00163;src:url('chunks/assets/font_e1be220b6097fe7beb544f29.woff2')format("woff");}.ff2_c00163{font-family:ff2_c00163;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00163;src:url('chunks/assets/font_0c3c36db8cc2b816f2482686.woff2')format("woff");}.ff3_c00163{font-family:ff3_c00163;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00163;src:url('chunks/assets/font_e810ff01bee96507c037e27f.woff2')format("woff");}.ff4_c00163{font-family:ff4_c00163;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00163;src:url('chunks/assets/font_966a684305fd26635405a839.woff2')format("woff");}.ff5_c00163{font-family:ff5_c00163;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00163;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c00163{font-family:ff6_c00163;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00163{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00163{vertical-align:-2.400000px;}
.v0_c00163{vertical-align:0.000000px;}
.ls5_c00163{letter-spacing:0.000000px;}
.ls4_c00163{letter-spacing:4.002000px;}
.ls0_c00163{letter-spacing:14.700000px;}
.ls6_c00163{letter-spacing:15.000000px;}
.ls1_c00163{letter-spacing:26.118000px;}
.ls3_c00163{letter-spacing:27.000000px;}
.ls2_c00163{letter-spacing:40.350000px;}
.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;}
}
.ws1_c00163{word-spacing:-29.250000px;}
.ws2_c00163{word-spacing:-17.352000px;}
.ws0_c00163{word-spacing:-14.250000px;}
.ws3_c00163{word-spacing:0.000000px;}
._24_c00163{margin-left:-37.209000px;}
._29_c00163{margin-left:-20.895000px;}
._15_c00163{margin-left:-18.069000px;}
._25_c00163{margin-left:-15.519000px;}
._19_c00163{margin-left:-12.441000px;}
._f_c00163{margin-left:-10.659000px;}
._1c_c00163{margin-left:-8.493000px;}
._17_c00163{margin-left:-6.726000px;}
._1a_c00163{margin-left:-5.529000px;}
._11_c00163{margin-left:-3.690000px;}
._13_c00163{margin-left:-1.824000px;}
._16_c00163{width:1.323000px;}
._d_c00163{width:2.679000px;}
._0_c00163{width:3.990000px;}
._1_c00163{width:5.187000px;}
._3_c00163{width:6.384000px;}
._2_c00163{width:7.638000px;}
._b_c00163{width:8.721000px;}
._4_c00163{width:10.089000px;}
._a_c00163{width:11.514000px;}
._e_c00163{width:12.597000px;}
._20_c00163{width:13.962000px;}
._c_c00163{width:15.846000px;}
._5_c00163{width:16.986000px;}
._10_c00163{width:19.095000px;}
._1b_c00163{width:21.048000px;}
._7_c00163{width:22.230000px;}
._14_c00163{width:23.826000px;}
._1d_c00163{width:25.563000px;}
._12_c00163{width:26.889000px;}
._23_c00163{width:28.113000px;}
._9_c00163{width:30.636000px;}
._22_c00163{width:32.313000px;}
._8_c00163{width:39.615000px;}
._28_c00163{width:47.532000px;}
._21_c00163{width:54.579000px;}
._6_c00163{width:56.658000px;}
._27_c00163{width:114.723000px;}
._1e_c00163{width:177.783000px;}
._26_c00163{width:202.443000px;}
._18_c00163{width:299.559000px;}
._1f_c00163{width:335.472000px;}
._2a_c00163{width:1129.269000px;}
.fc2_c00163{color:transparent;}
.fc1_c00163{color:rgb(128,128,128);}
.fc0_c00163{color:rgb(0,0,0);}
.fs5_c00163{font-size:48.000000px;}
.fs0_c00163{font-size:57.000000px;}
.fs3_c00163{font-size:60.000000px;}
.fs4_c00163{font-size:72.000000px;}
.fs2_c00163{font-size:78.000000px;}
.fs1_c00163{font-size:81.000000px;}
.y0_c00163{bottom:0.000000px;}
.y25_c00163{bottom:3.105000px;}
.y24_c00163{bottom:7.228357px;}
.y23_c00163{bottom:71.280000px;}
.y22_c00163{bottom:97.530000px;}
.y21_c00163{bottom:122.580000px;}
.y20_c00163{bottom:146.880000px;}
.y1f_c00163{bottom:170.730000px;}
.y1e_c00163{bottom:195.480000px;}
.y1d_c00163{bottom:219.030000px;}
.y1c_c00163{bottom:244.980000px;}
.y1b_c00163{bottom:269.430000px;}
.y1a_c00163{bottom:294.630000px;}
.y19_c00163{bottom:318.330000px;}
.y18_c00163{bottom:342.630000px;}
.y17_c00163{bottom:367.980000px;}
.y16_c00163{bottom:392.280000px;}
.y15_c00163{bottom:416.580000px;}
.y14_c00163{bottom:441.180000px;}
.y13_c00163{bottom:466.380000px;}
.y12_c00163{bottom:490.680000px;}
.y11_c00163{bottom:514.980000px;}
.y10_c00163{bottom:539.280000px;}
.yf_c00163{bottom:563.730000px;}
.ye_c00163{bottom:587.880000px;}
.yd_c00163{bottom:612.180000px;}
.yc_c00163{bottom:636.480000px;}
.yb_c00163{bottom:661.230000px;}
.ya_c00163{bottom:685.530000px;}
.y9_c00163{bottom:709.830000px;}
.y8_c00163{bottom:734.730000px;}
.y7_c00163{bottom:758.430000px;}
.y6_c00163{bottom:782.730000px;}
.y5_c00163{bottom:807.030000px;}
.y4_c00163{bottom:831.930000px;}
.y3_c00163{bottom:856.230000px;}
.y2_c00163{bottom:879.930000px;}
.y1_c00163{bottom:903.930000px;}
.h6_c00163{height:13.200074px;}
.h7_c00163{height:43.804688px;}
.h1_c00163{height:57.445312px;}
.h4_c00163{height:77.097070px;}
.h2_c00163{height:79.497070px;}
.h5_c00163{height:84.269531px;}
.h3_c00163{height:98.756836px;}
.h0_c00163{height:995.250000px;}
.w2_c00163{width:104.875500px;}
.w0_c00163{width:667.425000px;}
.w1_c00163{width:667.500000px;}
.x0_c00163{left:0.000000px;}
.xa_c00163{left:43.950000px;}
.xc_c00163{left:46.650000px;}
.x5_c00163{left:50.400000px;}
.x1_c00163{left:126.900000px;}
.x2_c00163{left:131.250000px;}
.x3_c00163{left:132.750000px;}
.x4_c00163{left:134.100000px;}
.x6_c00163{left:137.700000px;}
.x8_c00163{left:139.050000px;}
.xb_c00163{left:141.150000px;}
.xd_c00163{left:142.200000px;}
.x7_c00163{left:143.550000px;}
.xe_c00163{left:144.900000px;}
.x10_c00163{left:147.150000px;}
.x11_c00163{left:149.400000px;}
.xf_c00163{left:158.400000px;}
.x9_c00163{left:169.800000px;}
.x13_c00163{left:285.526749px;}
.x12_c00163{left:309.450000px;}
@media print{
.v1_c00163{vertical-align:-2.133333pt;}
.v0_c00163{vertical-align:0.000000pt;}
.ls5_c00163{letter-spacing:0.000000pt;}
.ls4_c00163{letter-spacing:3.557333pt;}
.ls0_c00163{letter-spacing:13.066667pt;}
.ls6_c00163{letter-spacing:13.333333pt;}
.ls1_c00163{letter-spacing:23.216000pt;}
.ls3_c00163{letter-spacing:24.000000pt;}
.ls2_c00163{letter-spacing:35.866667pt;}
.ws1_c00163{word-spacing:-26.000000pt;}
.ws2_c00163{word-spacing:-15.424000pt;}
.ws0_c00163{word-spacing:-12.666667pt;}
.ws3_c00163{word-spacing:0.000000pt;}
._24_c00163{margin-left:-33.074667pt;}
._29_c00163{margin-left:-18.573333pt;}
._15_c00163{margin-left:-16.061333pt;}
._25_c00163{margin-left:-13.794667pt;}
._19_c00163{margin-left:-11.058667pt;}
._f_c00163{margin-left:-9.474667pt;}
._1c_c00163{margin-left:-7.549333pt;}
._17_c00163{margin-left:-5.978667pt;}
._1a_c00163{margin-left:-4.914667pt;}
._11_c00163{margin-left:-3.280000pt;}
._13_c00163{margin-left:-1.621333pt;}
._16_c00163{width:1.176000pt;}
._d_c00163{width:2.381333pt;}
._0_c00163{width:3.546667pt;}
._1_c00163{width:4.610667pt;}
._3_c00163{width:5.674667pt;}
._2_c00163{width:6.789333pt;}
._b_c00163{width:7.752000pt;}
._4_c00163{width:8.968000pt;}
._a_c00163{width:10.234667pt;}
._e_c00163{width:11.197333pt;}
._20_c00163{width:12.410667pt;}
._c_c00163{width:14.085333pt;}
._5_c00163{width:15.098667pt;}
._10_c00163{width:16.973333pt;}
._1b_c00163{width:18.709333pt;}
._7_c00163{width:19.760000pt;}
._14_c00163{width:21.178667pt;}
._1d_c00163{width:22.722667pt;}
._12_c00163{width:23.901333pt;}
._23_c00163{width:24.989333pt;}
._9_c00163{width:27.232000pt;}
._22_c00163{width:28.722667pt;}
._8_c00163{width:35.213333pt;}
._28_c00163{width:42.250667pt;}
._21_c00163{width:48.514667pt;}
._6_c00163{width:50.362667pt;}
._27_c00163{width:101.976000pt;}
._1e_c00163{width:158.029333pt;}
._26_c00163{width:179.949333pt;}
._18_c00163{width:266.274667pt;}
._1f_c00163{width:298.197333pt;}
._2a_c00163{width:1003.794667pt;}
.fs5_c00163{font-size:42.666667pt;}
.fs0_c00163{font-size:50.666667pt;}
.fs3_c00163{font-size:53.333333pt;}
.fs4_c00163{font-size:64.000000pt;}
.fs2_c00163{font-size:69.333333pt;}
.fs1_c00163{font-size:72.000000pt;}
.y0_c00163{bottom:0.000000pt;}
.y25_c00163{bottom:2.760000pt;}
.y24_c00163{bottom:6.425206pt;}
.y23_c00163{bottom:63.360000pt;}
.y22_c00163{bottom:86.693333pt;}
.y21_c00163{bottom:108.960000pt;}
.y20_c00163{bottom:130.560000pt;}
.y1f_c00163{bottom:151.760000pt;}
.y1e_c00163{bottom:173.760000pt;}
.y1d_c00163{bottom:194.693333pt;}
.y1c_c00163{bottom:217.760000pt;}
.y1b_c00163{bottom:239.493333pt;}
.y1a_c00163{bottom:261.893333pt;}
.y19_c00163{bottom:282.960000pt;}
.y18_c00163{bottom:304.560000pt;}
.y17_c00163{bottom:327.093333pt;}
.y16_c00163{bottom:348.693333pt;}
.y15_c00163{bottom:370.293333pt;}
.y14_c00163{bottom:392.160000pt;}
.y13_c00163{bottom:414.560000pt;}
.y12_c00163{bottom:436.160000pt;}
.y11_c00163{bottom:457.760000pt;}
.y10_c00163{bottom:479.360000pt;}
.yf_c00163{bottom:501.093333pt;}
.ye_c00163{bottom:522.560000pt;}
.yd_c00163{bottom:544.160000pt;}
.yc_c00163{bottom:565.760000pt;}
.yb_c00163{bottom:587.760000pt;}
.ya_c00163{bottom:609.360000pt;}
.y9_c00163{bottom:630.960000pt;}
.y8_c00163{bottom:653.093333pt;}
.y7_c00163{bottom:674.160000pt;}
.y6_c00163{bottom:695.760000pt;}
.y5_c00163{bottom:717.360000pt;}
.y4_c00163{bottom:739.493333pt;}
.y3_c00163{bottom:761.093333pt;}
.y2_c00163{bottom:782.160000pt;}
.y1_c00163{bottom:803.493333pt;}
.h6_c00163{height:11.733399pt;}
.h7_c00163{height:38.937500pt;}
.h1_c00163{height:51.062500pt;}
.h4_c00163{height:68.530729pt;}
.h2_c00163{height:70.664062pt;}
.h5_c00163{height:74.906250pt;}
.h3_c00163{height:87.783854pt;}
.h0_c00163{height:884.666667pt;}
.w2_c00163{width:93.222667pt;}
.w0_c00163{width:593.266667pt;}
.w1_c00163{width:593.333333pt;}
.x0_c00163{left:0.000000pt;}
.xa_c00163{left:39.066667pt;}
.xc_c00163{left:41.466667pt;}
.x5_c00163{left:44.800000pt;}
.x1_c00163{left:112.800000pt;}
.x2_c00163{left:116.666667pt;}
.x3_c00163{left:118.000000pt;}
.x4_c00163{left:119.200000pt;}
.x6_c00163{left:122.400000pt;}
.x8_c00163{left:123.600000pt;}
.xb_c00163{left:125.466667pt;}
.xd_c00163{left:126.400000pt;}
.x7_c00163{left:127.600000pt;}
.xe_c00163{left:128.800000pt;}
.x10_c00163{left:130.800000pt;}
.x11_c00163{left:132.800000pt;}
.xf_c00163{left:140.800000pt;}
.x9_c00163{left:150.933333pt;}
.x13_c00163{left:253.801554pt;}
.x12_c00163{left:275.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f188ec153e8702dff21f1a8b.woff2')format("woff");}.ff1_c00164{font-family:ff1_c00164;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00164;src:url('chunks/assets/font_f0e93f795a95443671025831.woff2')format("woff");}.ff2_c00164{font-family:ff2_c00164;line-height:1.437000;font-style:normal;font-weight:normal;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_0a3fc8fd2488125f77f81e7d.woff2')format("woff");}.ff3_c00164{font-family:ff3_c00164;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00164;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff4_c00164{font-family:ff4_c00164;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00164;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c00164{font-family:ff5_c00164;line-height:1.219238;font-style: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;}
.ls2_c00164{letter-spacing:0.000000px;}
.ls1_c00164{letter-spacing:22.002000px;}
.ls0_c00164{letter-spacing:29.304000px;}
.sc__c00164{text-shadow:none;}
.sc0_c00164{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00164{-webkit-text-stroke:0px transparent;}
.sc0_c00164{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00164{word-spacing:-79.356000px;}
.ws2_c00164{word-spacing:-13.737000px;}
.ws1_c00164{word-spacing:-0.285000px;}
.ws3_c00164{word-spacing:0.000000px;}
._14_c00164{margin-left:-23.802000px;}
._25_c00164{margin-left:-21.789000px;}
._20_c00164{margin-left:-19.764000px;}
._3_c00164{margin-left:-17.226000px;}
._7_c00164{margin-left:-12.276000px;}
._1e_c00164{margin-left:-11.187000px;}
._23_c00164{margin-left:-9.855000px;}
._18_c00164{margin-left:-7.560000px;}
._6_c00164{margin-left:-6.336000px;}
._13_c00164{margin-left:-5.283000px;}
._5_c00164{margin-left:-4.257000px;}
._4_c00164{margin-left:-3.168000px;}
._8_c00164{margin-left:-1.782000px;}
._10_c00164{width:1.059000px;}
._2_c00164{width:2.178000px;}
._1_c00164{width:3.564000px;}
._0_c00164{width:4.851000px;}
._e_c00164{width:6.369000px;}
._c_c00164{width:7.623000px;}
._f_c00164{width:8.856000px;}
._d_c00164{width:10.467000px;}
._b_c00164{width:11.730000px;}
._12_c00164{width:13.323000px;}
._11_c00164{width:14.673000px;}
._26_c00164{width:16.272000px;}
._16_c00164{width:17.394000px;}
._1a_c00164{width:20.406000px;}
._a_c00164{width:22.194000px;}
._19_c00164{width:23.775000px;}
._21_c00164{width:26.244000px;}
._29_c00164{width:36.018000px;}
._1c_c00164{width:42.300000px;}
._27_c00164{width:58.572000px;}
._9_c00164{width:60.489000px;}
._24_c00164{width:89.901000px;}
._1f_c00164{width:101.499000px;}
._1d_c00164{width:167.748000px;}
._1b_c00164{width:181.671000px;}
._22_c00164{width:219.180000px;}
._17_c00164{width:221.157000px;}
._15_c00164{width:317.301000px;}
._2a_c00164{width:360.438000px;}
._28_c00164{width:1043.613000px;}
.fc2_c00164{color:transparent;}
.fc1_c00164{color:rgb(128,128,128);}
.fc0_c00164{color:rgb(0,0,0);}
.fs6_c00164{font-size:48.000000px;}
.fs3_c00164{font-size:57.000000px;}
.fs5_c00164{font-size:72.000000px;}
.fs4_c00164{font-size:78.000000px;}
.fs2_c00164{font-size:81.000000px;}
.fs0_c00164{font-size:99.000000px;}
.fs1_c00164{font-size:102.000000px;}
.y0_c00164{bottom:0.000000px;}
.y26_c00164{bottom:3.105000px;}
.y25_c00164{bottom:7.228355px;}
.y24_c00164{bottom:62.385000px;}
.y23_c00164{bottom:88.785000px;}
.y22_c00164{bottom:114.285000px;}
.y21_c00164{bottom:139.035000px;}
.y20_c00164{bottom:163.035000px;}
.y1f_c00164{bottom:187.635000px;}
.y1e_c00164{bottom:212.535000px;}
.y1d_c00164{bottom:237.135000px;}
.y1c_c00164{bottom:261.435000px;}
.y1b_c00164{bottom:285.735000px;}
.y1a_c00164{bottom:309.735000px;}
.y19_c00164{bottom:333.435000px;}
.y18_c00164{bottom:357.435000px;}
.y17_c00164{bottom:381.735000px;}
.y16_c00164{bottom:406.035000px;}
.y15_c00164{bottom:430.335000px;}
.y14_c00164{bottom:455.835000px;}
.y13_c00164{bottom:478.935000px;}
.y12_c00164{bottom:504.585000px;}
.y11_c00164{bottom:527.835000px;}
.y10_c00164{bottom:553.185000px;}
.yf_c00164{bottom:576.735000px;}
.ye_c00164{bottom:600.435000px;}
.yd_c00164{bottom:624.585000px;}
.yc_c00164{bottom:648.585000px;}
.yb_c00164{bottom:671.985000px;}
.ya_c00164{bottom:698.985000px;}
.y9_c00164{bottom:720.135000px;}
.y8_c00164{bottom:744.735000px;}
.y7_c00164{bottom:768.735000px;}
.y6_c00164{bottom:793.485000px;}
.y5_c00164{bottom:817.785000px;}
.y4_c00164{bottom:841.335000px;}
.y3_c00164{bottom:866.235000px;}
.y2_c00164{bottom:890.235000px;}
.y1_c00164{bottom:928.335000px;}
.h7_c00164{height:13.200074px;}
.h8_c00164{height:43.804688px;}
.h3_c00164{height:79.497070px;}
.h6_c00164{height:84.269531px;}
.h5_c00164{height:91.160156px;}
.h4_c00164{height:98.756836px;}
.h2_c00164{height:115.870605px;}
.h0_c00164{height:977.925000px;}
.h1_c00164{height:978.000000px;}
.w2_c00164{width:104.875500px;}
.w0_c00164{width:664.200000px;}
.w1_c00164{width:664.500000px;}
.x0_c00164{left:0.000000px;}
.x2_c00164{left:56.250000px;}
.x3_c00164{left:57.750000px;}
.x4_c00164{left:59.700000px;}
.x5_c00164{left:62.550000px;}
.x6_c00164{left:63.900000px;}
.x1_c00164{left:97.500000px;}
.x7_c00164{left:283.914230px;}
@media print{
.v0_c00164{vertical-align:0.000000pt;}
.ls2_c00164{letter-spacing:0.000000pt;}
.ls1_c00164{letter-spacing:19.557333pt;}
.ls0_c00164{letter-spacing:26.048000pt;}
.ws0_c00164{word-spacing:-70.538667pt;}
.ws2_c00164{word-spacing:-12.210667pt;}
.ws1_c00164{word-spacing:-0.253333pt;}
.ws3_c00164{word-spacing:0.000000pt;}
._14_c00164{margin-left:-21.157333pt;}
._25_c00164{margin-left:-19.368000pt;}
._20_c00164{margin-left:-17.568000pt;}
._3_c00164{margin-left:-15.312000pt;}
._7_c00164{margin-left:-10.912000pt;}
._1e_c00164{margin-left:-9.944000pt;}
._23_c00164{margin-left:-8.760000pt;}
._18_c00164{margin-left:-6.720000pt;}
._6_c00164{margin-left:-5.632000pt;}
._13_c00164{margin-left:-4.696000pt;}
._5_c00164{margin-left:-3.784000pt;}
._4_c00164{margin-left:-2.816000pt;}
._8_c00164{margin-left:-1.584000pt;}
._10_c00164{width:0.941333pt;}
._2_c00164{width:1.936000pt;}
._1_c00164{width:3.168000pt;}
._0_c00164{width:4.312000pt;}
._e_c00164{width:5.661333pt;}
._c_c00164{width:6.776000pt;}
._f_c00164{width:7.872000pt;}
._d_c00164{width:9.304000pt;}
._b_c00164{width:10.426667pt;}
._12_c00164{width:11.842667pt;}
._11_c00164{width:13.042667pt;}
._26_c00164{width:14.464000pt;}
._16_c00164{width:15.461333pt;}
._1a_c00164{width:18.138667pt;}
._a_c00164{width:19.728000pt;}
._19_c00164{width:21.133333pt;}
._21_c00164{width:23.328000pt;}
._29_c00164{width:32.016000pt;}
._1c_c00164{width:37.600000pt;}
._27_c00164{width:52.064000pt;}
._9_c00164{width:53.768000pt;}
._24_c00164{width:79.912000pt;}
._1f_c00164{width:90.221333pt;}
._1d_c00164{width:149.109333pt;}
._1b_c00164{width:161.485333pt;}
._22_c00164{width:194.826667pt;}
._17_c00164{width:196.584000pt;}
._15_c00164{width:282.045333pt;}
._2a_c00164{width:320.389333pt;}
._28_c00164{width:927.656000pt;}
.fs6_c00164{font-size:42.666667pt;}
.fs3_c00164{font-size:50.666667pt;}
.fs5_c00164{font-size:64.000000pt;}
.fs4_c00164{font-size:69.333333pt;}
.fs2_c00164{font-size:72.000000pt;}
.fs0_c00164{font-size:88.000000pt;}
.fs1_c00164{font-size:90.666667pt;}
.y0_c00164{bottom:0.000000pt;}
.y26_c00164{bottom:2.760000pt;}
.y25_c00164{bottom:6.425204pt;}
.y24_c00164{bottom:55.453333pt;}
.y23_c00164{bottom:78.920000pt;}
.y22_c00164{bottom:101.586667pt;}
.y21_c00164{bottom:123.586667pt;}
.y20_c00164{bottom:144.920000pt;}
.y1f_c00164{bottom:166.786667pt;}
.y1e_c00164{bottom:188.920000pt;}
.y1d_c00164{bottom:210.786667pt;}
.y1c_c00164{bottom:232.386667pt;}
.y1b_c00164{bottom:253.986667pt;}
.y1a_c00164{bottom:275.320000pt;}
.y19_c00164{bottom:296.386667pt;}
.y18_c00164{bottom:317.720000pt;}
.y17_c00164{bottom:339.320000pt;}
.y16_c00164{bottom:360.920000pt;}
.y15_c00164{bottom:382.520000pt;}
.y14_c00164{bottom:405.186667pt;}
.y13_c00164{bottom:425.720000pt;}
.y12_c00164{bottom:448.520000pt;}
.y11_c00164{bottom:469.186667pt;}
.y10_c00164{bottom:491.720000pt;}
.yf_c00164{bottom:512.653333pt;}
.ye_c00164{bottom:533.720000pt;}
.yd_c00164{bottom:555.186667pt;}
.yc_c00164{bottom:576.520000pt;}
.yb_c00164{bottom:597.320000pt;}
.ya_c00164{bottom:621.320000pt;}
.y9_c00164{bottom:640.120000pt;}
.y8_c00164{bottom:661.986667pt;}
.y7_c00164{bottom:683.320000pt;}
.y6_c00164{bottom:705.320000pt;}
.y5_c00164{bottom:726.920000pt;}
.y4_c00164{bottom:747.853333pt;}
.y3_c00164{bottom:769.986667pt;}
.y2_c00164{bottom:791.320000pt;}
.y1_c00164{bottom:825.186667pt;}
.h7_c00164{height:11.733399pt;}
.h8_c00164{height:38.937500pt;}
.h3_c00164{height:70.664062pt;}
.h6_c00164{height:74.906250pt;}
.h5_c00164{height:81.031250pt;}
.h4_c00164{height:87.783854pt;}
.h2_c00164{height:102.996094pt;}
.h0_c00164{height:869.266667pt;}
.h1_c00164{height:869.333333pt;}
.w2_c00164{width:93.222667pt;}
.w0_c00164{width:590.400000pt;}
.w1_c00164{width:590.666667pt;}
.x0_c00164{left:0.000000pt;}
.x2_c00164{left:50.000000pt;}
.x3_c00164{left:51.333333pt;}
.x4_c00164{left:53.066667pt;}
.x5_c00164{left:55.600000pt;}
.x6_c00164{left:56.800000pt;}
.x1_c00164{left:86.666667pt;}
.x7_c00164{left:252.368205pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ca327972087d0bb97855aec2.woff2')format("woff");}.ff1_c00165{font-family:ff1_c00165;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00165;src:url('chunks/assets/font_61e8293b26cfe986c4bf27c9.woff2')format("woff");}.ff2_c00165{font-family:ff2_c00165;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00165;src:url('chunks/assets/font_6dd63eaaa15ab0295e7af172.woff2')format("woff");}.ff3_c00165{font-family:ff3_c00165;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00165;src:url('chunks/assets/font_6a1a0e19f45c615e4b0a46cd.woff2')format("woff");}.ff4_c00165{font-family:ff4_c00165;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00165;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff5_c00165{font-family:ff5_c00165;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00165;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c00165{font-family:ff6_c00165;line-height:1.219238;font-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_c00165{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m0_c00165{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00165{vertical-align:0.000000px;}
.ls2_c00165{letter-spacing:0.000000px;}
.ls0_c00165{letter-spacing:23.550000px;}
.ls1_c00165{letter-spacing:29.802000px;}
.sc__c00165{text-shadow:none;}
.sc0_c00165{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00165{-webkit-text-stroke:0px transparent;}
.sc0_c00165{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00165{word-spacing:-67.686000px;}
.ws0_c00165{word-spacing:-17.352000px;}
.ws2_c00165{word-spacing:0.000000px;}
._d_c00165{margin-left:-25.110000px;}
._1c_c00165{margin-left:-16.971000px;}
._29_c00165{margin-left:-15.336000px;}
._1d_c00165{margin-left:-13.989000px;}
._11_c00165{margin-left:-12.927000px;}
._13_c00165{margin-left:-11.502000px;}
._20_c00165{margin-left:-10.032000px;}
._8_c00165{margin-left:-8.667000px;}
._19_c00165{margin-left:-7.635000px;}
._b_c00165{margin-left:-6.561000px;}
._6_c00165{margin-left:-5.265000px;}
._c_c00165{margin-left:-4.212000px;}
._7_c00165{margin-left:-3.078000px;}
._a_c00165{margin-left:-1.296000px;}
._5_c00165{width:1.458000px;}
._2_c00165{width:3.402000px;}
._1_c00165{width:4.779000px;}
._0_c00165{width:6.642000px;}
._4_c00165{width:7.776000px;}
._3_c00165{width:9.558000px;}
._e_c00165{width:10.611000px;}
._10_c00165{width:12.252000px;}
._15_c00165{width:13.284000px;}
._f_c00165{width:15.480000px;}
._27_c00165{width:16.917000px;}
._14_c00165{width:23.508000px;}
._21_c00165{width:29.268000px;}
._24_c00165{width:34.416000px;}
._1b_c00165{width:36.405000px;}
._1f_c00165{width:38.730000px;}
._28_c00165{width:43.872000px;}
._26_c00165{width:45.927000px;}
._18_c00165{width:54.543000px;}
._25_c00165{width:91.449000px;}
._1e_c00165{width:101.853000px;}
._12_c00165{width:227.853000px;}
._22_c00165{width:257.496000px;}
._16_c00165{width:269.727000px;}
._17_c00165{width:282.852000px;}
._1a_c00165{width:292.401000px;}
._9_c00165{width:323.271000px;}
._23_c00165{width:629.082000px;}
._2a_c00165{width:1042.092000px;}
.fc2_c00165{color:transparent;}
.fc1_c00165{color:rgb(128,128,128);}
.fc0_c00165{color:rgb(0,0,0);}
.fs7_c00165{font-size:48.000000px;}
.fs4_c00165{font-size:57.000000px;}
.fs2_c00165{font-size:66.000000px;}
.fs1_c00165{font-size:72.000000px;}
.fs5_c00165{font-size:78.000000px;}
.fs0_c00165{font-size:81.000000px;}
.fs3_c00165{font-size:87.000000px;}
.fs6_c00165{font-size:108.000000px;}
.y0_c00165{bottom:0.000000px;}
.y25_c00165{bottom:3.105000px;}
.y24_c00165{bottom:7.228357px;}
.y23_c00165{bottom:87.780000px;}
.y22_c00165{bottom:109.980000px;}
.y21_c00165{bottom:136.080000px;}
.y20_c00165{bottom:159.930000px;}
.y1f_c00165{bottom:182.880000px;}
.y1e_c00165{bottom:211.380000px;}
.y1d_c00165{bottom:236.880000px;}
.y1c_c00165{bottom:258.180000px;}
.y1b_c00165{bottom:282.480000px;}
.y1a_c00165{bottom:305.880000px;}
.y19_c00165{bottom:329.430000px;}
.y18_c00165{bottom:354.780000px;}
.y17_c00165{bottom:379.380000px;}
.y16_c00165{bottom:403.980000px;}
.y15_c00165{bottom:427.980000px;}
.y14_c00165{bottom:452.880000px;}
.y13_c00165{bottom:474.630000px;}
.y12_c00165{bottom:500.280000px;}
.y11_c00165{bottom:524.130000px;}
.y10_c00165{bottom:550.830000px;}
.yf_c00165{bottom:572.430000px;}
.ye_c00165{bottom:598.830000px;}
.yd_c00165{bottom:620.730000px;}
.yc_c00165{bottom:644.730000px;}
.yb_c00165{bottom:671.580000px;}
.ya_c00165{bottom:693.330000px;}
.y9_c00165{bottom:717.930000px;}
.y8_c00165{bottom:741.780000px;}
.y7_c00165{bottom:766.080000px;}
.y6_c00165{bottom:789.480000px;}
.y5_c00165{bottom:814.080000px;}
.y4_c00165{bottom:838.080000px;}
.y3_c00165{bottom:862.080000px;}
.y2_c00165{bottom:885.930000px;}
.y1_c00165{bottom:911.580000px;}
.h7_c00165{height:13.200074px;}
.h8_c00165{height:43.804688px;}
.h1_c00165{height:79.497070px;}
.h2_c00165{height:84.269531px;}
.h4_c00165{height:91.160156px;}
.h3_c00165{height:91.176000px;}
.h5_c00165{height:98.756836px;}
.h6_c00165{height:108.843750px;}
.h0_c00165{height:995.250000px;}
.w2_c00165{width:104.875500px;}
.w0_c00165{width:667.425000px;}
.w1_c00165{width:667.500000px;}
.x0_c00165{left:0.000000px;}
.xa_c00165{left:24.000000px;}
.x9_c00165{left:25.050000px;}
.x8_c00165{left:26.100000px;}
.x2_c00165{left:27.300000px;}
.x4_c00165{left:28.800000px;}
.x7_c00165{left:35.400000px;}
.x3_c00165{left:94.200000px;}
.x6_c00165{left:115.800000px;}
.x5_c00165{left:116.850000px;}
.x1_c00165{left:118.050000px;}
.xb_c00165{left:120.150000px;}
.xd_c00165{left:285.526749px;}
.xc_c00165{left:362.250000px;}
@media print{
.v0_c00165{vertical-align:0.000000pt;}
.ls2_c00165{letter-spacing:0.000000pt;}
.ls0_c00165{letter-spacing:20.933333pt;}
.ls1_c00165{letter-spacing:26.490667pt;}
.ws1_c00165{word-spacing:-60.165333pt;}
.ws0_c00165{word-spacing:-15.424000pt;}
.ws2_c00165{word-spacing:0.000000pt;}
._d_c00165{margin-left:-22.320000pt;}
._1c_c00165{margin-left:-15.085333pt;}
._29_c00165{margin-left:-13.632000pt;}
._1d_c00165{margin-left:-12.434667pt;}
._11_c00165{margin-left:-11.490667pt;}
._13_c00165{margin-left:-10.224000pt;}
._20_c00165{margin-left:-8.917333pt;}
._8_c00165{margin-left:-7.704000pt;}
._19_c00165{margin-left:-6.786667pt;}
._b_c00165{margin-left:-5.832000pt;}
._6_c00165{margin-left:-4.680000pt;}
._c_c00165{margin-left:-3.744000pt;}
._7_c00165{margin-left:-2.736000pt;}
._a_c00165{margin-left:-1.152000pt;}
._5_c00165{width:1.296000pt;}
._2_c00165{width:3.024000pt;}
._1_c00165{width:4.248000pt;}
._0_c00165{width:5.904000pt;}
._4_c00165{width:6.912000pt;}
._3_c00165{width:8.496000pt;}
._e_c00165{width:9.432000pt;}
._10_c00165{width:10.890667pt;}
._15_c00165{width:11.808000pt;}
._f_c00165{width:13.760000pt;}
._27_c00165{width:15.037333pt;}
._14_c00165{width:20.896000pt;}
._21_c00165{width:26.016000pt;}
._24_c00165{width:30.592000pt;}
._1b_c00165{width:32.360000pt;}
._1f_c00165{width:34.426667pt;}
._28_c00165{width:38.997333pt;}
._26_c00165{width:40.824000pt;}
._18_c00165{width:48.482667pt;}
._25_c00165{width:81.288000pt;}
._1e_c00165{width:90.536000pt;}
._12_c00165{width:202.536000pt;}
._22_c00165{width:228.885333pt;}
._16_c00165{width:239.757333pt;}
._17_c00165{width:251.424000pt;}
._1a_c00165{width:259.912000pt;}
._9_c00165{width:287.352000pt;}
._23_c00165{width:559.184000pt;}
._2a_c00165{width:926.304000pt;}
.fs7_c00165{font-size:42.666667pt;}
.fs4_c00165{font-size:50.666667pt;}
.fs2_c00165{font-size:58.666667pt;}
.fs1_c00165{font-size:64.000000pt;}
.fs5_c00165{font-size:69.333333pt;}
.fs0_c00165{font-size:72.000000pt;}
.fs3_c00165{font-size:77.333333pt;}
.fs6_c00165{font-size:96.000000pt;}
.y0_c00165{bottom:0.000000pt;}
.y25_c00165{bottom:2.760000pt;}
.y24_c00165{bottom:6.425206pt;}
.y23_c00165{bottom:78.026667pt;}
.y22_c00165{bottom:97.760000pt;}
.y21_c00165{bottom:120.960000pt;}
.y20_c00165{bottom:142.160000pt;}
.y1f_c00165{bottom:162.560000pt;}
.y1e_c00165{bottom:187.893333pt;}
.y1d_c00165{bottom:210.560000pt;}
.y1c_c00165{bottom:229.493333pt;}
.y1b_c00165{bottom:251.093333pt;}
.y1a_c00165{bottom:271.893333pt;}
.y19_c00165{bottom:292.826667pt;}
.y18_c00165{bottom:315.360000pt;}
.y17_c00165{bottom:337.226667pt;}
.y16_c00165{bottom:359.093333pt;}
.y15_c00165{bottom:380.426667pt;}
.y14_c00165{bottom:402.560000pt;}
.y13_c00165{bottom:421.893333pt;}
.y12_c00165{bottom:444.693333pt;}
.y11_c00165{bottom:465.893333pt;}
.y10_c00165{bottom:489.626667pt;}
.yf_c00165{bottom:508.826667pt;}
.ye_c00165{bottom:532.293333pt;}
.yd_c00165{bottom:551.760000pt;}
.yc_c00165{bottom:573.093333pt;}
.yb_c00165{bottom:596.960000pt;}
.ya_c00165{bottom:616.293333pt;}
.y9_c00165{bottom:638.160000pt;}
.y8_c00165{bottom:659.360000pt;}
.y7_c00165{bottom:680.960000pt;}
.y6_c00165{bottom:701.760000pt;}
.y5_c00165{bottom:723.626667pt;}
.y4_c00165{bottom:744.960000pt;}
.y3_c00165{bottom:766.293333pt;}
.y2_c00165{bottom:787.493333pt;}
.y1_c00165{bottom:810.293333pt;}
.h7_c00165{height:11.733399pt;}
.h8_c00165{height:38.937500pt;}
.h1_c00165{height:70.664062pt;}
.h2_c00165{height:74.906250pt;}
.h4_c00165{height:81.031250pt;}
.h3_c00165{height:81.045333pt;}
.h5_c00165{height:87.783854pt;}
.h6_c00165{height:96.750000pt;}
.h0_c00165{height:884.666667pt;}
.w2_c00165{width:93.222667pt;}
.w0_c00165{width:593.266667pt;}
.w1_c00165{width:593.333333pt;}
.x0_c00165{left:0.000000pt;}
.xa_c00165{left:21.333333pt;}
.x9_c00165{left:22.266667pt;}
.x8_c00165{left:23.200000pt;}
.x2_c00165{left:24.266667pt;}
.x4_c00165{left:25.600000pt;}
.x7_c00165{left:31.466667pt;}
.x3_c00165{left:83.733333pt;}
.x6_c00165{left:102.933333pt;}
.x5_c00165{left:103.866667pt;}
.x1_c00165{left:104.933333pt;}
.xb_c00165{left:106.800000pt;}
.xd_c00165{left:253.801554pt;}
.xc_c00165{left:322.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_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_7a0b486c388d0684c8552827.woff2')format("woff");}.ff1_c00166{font-family:ff1_c00166;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00166;src:url('chunks/assets/font_05e357b83403b8e670c21bdf.woff2')format("woff");}.ff2_c00166{font-family:ff2_c00166;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00166;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff3_c00166{font-family:ff3_c00166;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00166;src:url('chunks/assets/font_31921a806d4e52bda7c46362.woff2')format("woff");}.ff4_c00166{font-family:ff4_c00166;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00166;src:url('chunks/assets/font_3cf794ff5cfb83ae85e34ab1.woff2')format("woff");}.ff5_c00166{font-family:ff5_c00166;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00166;src:url('chunks/assets/font_f646db880f41a1e8b6dcdcbe.woff2')format("woff");}.ff6_c00166{font-family:ff6_c00166;line-height:1.437000;font-style:normal;font-weight: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_c00166;src:url('chunks/assets/font_77bf394189ea3be36795dfa6.woff2')format("woff");}.ff7_c00166{font-family:ff7_c00166;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00166;src:url('chunks/assets/font_56f353c8d9a845b578cadc17.woff2')format("woff");}.ff8_c00166{font-family:ff8_c00166;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00166;src:url('chunks/assets/font_10cb4f5ef8e9fef9e50d9b88.woff2')format("woff");}.ff9_c00166{font-family:ff9_c00166;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00166;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ffa_c00166{font-family:ffa_c00166;line-height:1.219238;font-style: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);}
.v1_c00166{vertical-align:-10.200000px;}
.v0_c00166{vertical-align:0.000000px;}
.v2_c00166{vertical-align:165.000000px;}
.ls5_c00166{letter-spacing:-3.000000px;}
.ls3_c00166{letter-spacing:0.000000px;}
.ls4_c00166{letter-spacing:3.000000px;}
.ls0_c00166{letter-spacing:6.000000px;}
.ls2_c00166{letter-spacing:13.500000px;}
.ls1_c00166{letter-spacing:281.550000px;}
.sc__c00166{text-shadow:none;}
.sc0_c00166{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00166{-webkit-text-stroke:0px transparent;}
.sc0_c00166{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00166{word-spacing:-78.498000px;}
.ws4_c00166{word-spacing:-26.736000px;}
.ws0_c00166{word-spacing:-17.352000px;}
.ws1_c00166{word-spacing:-17.250000px;}
.ws3_c00166{word-spacing:-14.250000px;}
.ws5_c00166{word-spacing:0.000000px;}
._d_c00166{margin-left:-12.690000px;}
._1f_c00166{margin-left:-10.185000px;}
._17_c00166{margin-left:-8.370000px;}
._10_c00166{margin-left:-5.895000px;}
._16_c00166{margin-left:-4.608000px;}
._13_c00166{margin-left:-3.528000px;}
._1d_c00166{margin-left:-2.331000px;}
._12_c00166{margin-left:-1.098000px;}
._11_c00166{width:1.719000px;}
._f_c00166{width:2.727000px;}
._c_c00166{width:4.275000px;}
._8_c00166{width:5.616000px;}
._e_c00166{width:7.020000px;}
._2_c00166{width:8.136000px;}
._1_c00166{width:9.864000px;}
._6_c00166{width:11.736000px;}
._7_c00166{width:13.104000px;}
._3_c00166{width:14.904000px;}
._5_c00166{width:16.272000px;}
._18_c00166{width:17.478000px;}
._0_c00166{width:19.440000px;}
._1a_c00166{width:21.021000px;}
._4_c00166{width:22.896000px;}
._14_c00166{width:24.846000px;}
._19_c00166{width:27.363000px;}
._1b_c00166{width:28.386000px;}
._21_c00166{width:29.571000px;}
._a_c00166{width:32.040000px;}
._b_c00166{width:36.000000px;}
._23_c00166{width:39.120000px;}
._1c_c00166{width:40.449000px;}
._15_c00166{width:41.859000px;}
._22_c00166{width:51.747000px;}
._9_c00166{width:78.192000px;}
._1e_c00166{width:98.343000px;}
._20_c00166{width:172.176000px;}
._24_c00166{width:307.695000px;}
.fc2_c00166{color:transparent;}
.fc1_c00166{color:rgb(128,128,128);}
.fc0_c00166{color:rgb(0,0,0);}
.fs7_c00166{font-size:48.000000px;}
.fs2_c00166{font-size:57.000000px;}
.fs4_c00166{font-size:63.000000px;}
.fs5_c00166{font-size:66.000000px;}
.fs3_c00166{font-size:69.000000px;}
.fs0_c00166{font-size:72.000000px;}
.fs1_c00166{font-size:81.000000px;}
.fs6_c00166{font-size:294.000000px;}
.y0_c00166{bottom:0.000000px;}
.y25_c00166{bottom:3.105000px;}
.y24_c00166{bottom:7.228363px;}
.y23_c00166{bottom:58.650000px;}
.y22_c00166{bottom:82.350000px;}
.y21_c00166{bottom:107.250000px;}
.y20_c00166{bottom:133.200000px;}
.y1f_c00166{bottom:156.600000px;}
.y1e_c00166{bottom:181.500000px;}
.y1d_c00166{bottom:205.500000px;}
.y1c_c00166{bottom:230.400000px;}
.y1b_c00166{bottom:254.850000px;}
.y1a_c00166{bottom:279.150000px;}
.y19_c00166{bottom:303.300000px;}
.y18_c00166{bottom:326.700000px;}
.y17_c00166{bottom:351.000000px;}
.y16_c00166{bottom:374.850000px;}
.y15_c00166{bottom:399.150000px;}
.y14_c00166{bottom:422.850000px;}
.y13_c00166{bottom:446.550000px;}
.y11_c00166{bottom:454.800000px;}
.y12_c00166{bottom:471.150000px;}
.y10_c00166{bottom:519.450000px;}
.yf_c00166{bottom:566.700000px;}
.ye_c00166{bottom:591.300000px;}
.yd_c00166{bottom:614.850000px;}
.yc_c00166{bottom:638.850000px;}
.yb_c00166{bottom:662.400000px;}
.ya_c00166{bottom:686.400000px;}
.y9_c00166{bottom:710.700000px;}
.y8_c00166{bottom:734.700000px;}
.y7_c00166{bottom:758.700000px;}
.y6_c00166{bottom:783.750000px;}
.y5_c00166{bottom:807.750000px;}
.y4_c00166{bottom:833.550000px;}
.y3_c00166{bottom:856.500000px;}
.y2_c00166{bottom:882.450000px;}
.y1_c00166{bottom:916.650000px;}
.hb_c00166{height:13.200074px;}
.hc_c00166{height:43.804688px;}
.h6_c00166{height:57.445312px;}
.h7_c00166{height:61.831055px;}
.h8_c00166{height:66.515625px;}
.h5_c00166{height:72.312000px;}
.ha_c00166{height:73.735840px;}
.h3_c00166{height:79.497070px;}
.h2_c00166{height:84.269531px;}
.h4_c00166{height:91.160156px;}
.h9_c00166{height:313.698000px;}
.h1_c00166{height:982.500000px;}
.h0_c00166{height:982.800000px;}
.w2_c00166{width:104.875500px;}
.w0_c00166{width:667.425000px;}
.w1_c00166{width:667.500000px;}
.x0_c00166{left:0.000000px;}
.xb_c00166{left:43.200000px;}
.x9_c00166{left:44.250000px;}
.xa_c00166{left:45.450000px;}
.x8_c00166{left:47.250000px;}
.x7_c00166{left:48.900000px;}
.x4_c00166{left:50.400000px;}
.x3_c00166{left:51.600000px;}
.x2_c00166{left:52.650000px;}
.x1_c00166{left:103.950000px;}
.x6_c00166{left:113.700000px;}
.x5_c00166{left:170.550000px;}
.xd_c00166{left:285.526749px;}
.xc_c00166{left:357.300000px;}
@media print{
.v1_c00166{vertical-align:-9.066667pt;}
.v0_c00166{vertical-align:0.000000pt;}
.v2_c00166{vertical-align:146.666667pt;}
.ls5_c00166{letter-spacing:-2.666667pt;}
.ls3_c00166{letter-spacing:0.000000pt;}
.ls4_c00166{letter-spacing:2.666667pt;}
.ls0_c00166{letter-spacing:5.333333pt;}
.ls2_c00166{letter-spacing:12.000000pt;}
.ls1_c00166{letter-spacing:250.266667pt;}
.ws2_c00166{word-spacing:-69.776000pt;}
.ws4_c00166{word-spacing:-23.765333pt;}
.ws0_c00166{word-spacing:-15.424000pt;}
.ws1_c00166{word-spacing:-15.333333pt;}
.ws3_c00166{word-spacing:-12.666667pt;}
.ws5_c00166{word-spacing:0.000000pt;}
._d_c00166{margin-left:-11.280000pt;}
._1f_c00166{margin-left:-9.053333pt;}
._17_c00166{margin-left:-7.440000pt;}
._10_c00166{margin-left:-5.240000pt;}
._16_c00166{margin-left:-4.096000pt;}
._13_c00166{margin-left:-3.136000pt;}
._1d_c00166{margin-left:-2.072000pt;}
._12_c00166{margin-left:-0.976000pt;}
._11_c00166{width:1.528000pt;}
._f_c00166{width:2.424000pt;}
._c_c00166{width:3.800000pt;}
._8_c00166{width:4.992000pt;}
._e_c00166{width:6.240000pt;}
._2_c00166{width:7.232000pt;}
._1_c00166{width:8.768000pt;}
._6_c00166{width:10.432000pt;}
._7_c00166{width:11.648000pt;}
._3_c00166{width:13.248000pt;}
._5_c00166{width:14.464000pt;}
._18_c00166{width:15.536000pt;}
._0_c00166{width:17.280000pt;}
._1a_c00166{width:18.685333pt;}
._4_c00166{width:20.352000pt;}
._14_c00166{width:22.085333pt;}
._19_c00166{width:24.322667pt;}
._1b_c00166{width:25.232000pt;}
._21_c00166{width:26.285333pt;}
._a_c00166{width:28.480000pt;}
._b_c00166{width:32.000000pt;}
._23_c00166{width:34.773333pt;}
._1c_c00166{width:35.954667pt;}
._15_c00166{width:37.208000pt;}
._22_c00166{width:45.997333pt;}
._9_c00166{width:69.504000pt;}
._1e_c00166{width:87.416000pt;}
._20_c00166{width:153.045333pt;}
._24_c00166{width:273.506667pt;}
.fs7_c00166{font-size:42.666667pt;}
.fs2_c00166{font-size:50.666667pt;}
.fs4_c00166{font-size:56.000000pt;}
.fs5_c00166{font-size:58.666667pt;}
.fs3_c00166{font-size:61.333333pt;}
.fs0_c00166{font-size:64.000000pt;}
.fs1_c00166{font-size:72.000000pt;}
.fs6_c00166{font-size:261.333333pt;}
.y0_c00166{bottom:0.000000pt;}
.y25_c00166{bottom:2.760000pt;}
.y24_c00166{bottom:6.425212pt;}
.y23_c00166{bottom:52.133333pt;}
.y22_c00166{bottom:73.200000pt;}
.y21_c00166{bottom:95.333333pt;}
.y20_c00166{bottom:118.400000pt;}
.y1f_c00166{bottom:139.200000pt;}
.y1e_c00166{bottom:161.333333pt;}
.y1d_c00166{bottom:182.666667pt;}
.y1c_c00166{bottom:204.800000pt;}
.y1b_c00166{bottom:226.533333pt;}
.y1a_c00166{bottom:248.133333pt;}
.y19_c00166{bottom:269.600000pt;}
.y18_c00166{bottom:290.400000pt;}
.y17_c00166{bottom:312.000000pt;}
.y16_c00166{bottom:333.200000pt;}
.y15_c00166{bottom:354.800000pt;}
.y14_c00166{bottom:375.866667pt;}
.y13_c00166{bottom:396.933333pt;}
.y11_c00166{bottom:404.266667pt;}
.y12_c00166{bottom:418.800000pt;}
.y10_c00166{bottom:461.733333pt;}
.yf_c00166{bottom:503.733333pt;}
.ye_c00166{bottom:525.600000pt;}
.yd_c00166{bottom:546.533333pt;}
.yc_c00166{bottom:567.866667pt;}
.yb_c00166{bottom:588.800000pt;}
.ya_c00166{bottom:610.133333pt;}
.y9_c00166{bottom:631.733333pt;}
.y8_c00166{bottom:653.066667pt;}
.y7_c00166{bottom:674.400000pt;}
.y6_c00166{bottom:696.666667pt;}
.y5_c00166{bottom:718.000000pt;}
.y4_c00166{bottom:740.933333pt;}
.y3_c00166{bottom:761.333333pt;}
.y2_c00166{bottom:784.400000pt;}
.y1_c00166{bottom:814.800000pt;}
.hb_c00166{height:11.733399pt;}
.hc_c00166{height:38.937500pt;}
.h6_c00166{height:51.062500pt;}
.h7_c00166{height:54.960938pt;}
.h8_c00166{height:59.125000pt;}
.h5_c00166{height:64.277333pt;}
.ha_c00166{height:65.542969pt;}
.h3_c00166{height:70.664062pt;}
.h2_c00166{height:74.906250pt;}
.h4_c00166{height:81.031250pt;}
.h9_c00166{height:278.842667pt;}
.h1_c00166{height:873.333333pt;}
.h0_c00166{height:873.600000pt;}
.w2_c00166{width:93.222667pt;}
.w0_c00166{width:593.266667pt;}
.w1_c00166{width:593.333333pt;}
.x0_c00166{left:0.000000pt;}
.xb_c00166{left:38.400000pt;}
.x9_c00166{left:39.333333pt;}
.xa_c00166{left:40.400000pt;}
.x8_c00166{left:42.000000pt;}
.x7_c00166{left:43.466667pt;}
.x4_c00166{left:44.800000pt;}
.x3_c00166{left:45.866667pt;}
.x2_c00166{left:46.800000pt;}
.x1_c00166{left:92.400000pt;}
.x6_c00166{left:101.066667pt;}
.x5_c00166{left:151.600000pt;}
.xd_c00166{left:253.801554pt;}
.xc_c00166{left:317.600000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e841481582acad8c0cce5e80.woff2')format("woff");}.ff1_c00167{font-family:ff1_c00167;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00167;src:url('chunks/assets/font_f3de4d12368ecd7bbba00f16.woff2')format("woff");}.ff2_c00167{font-family:ff2_c00167;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00167;src:url('chunks/assets/font_c378c1c130fde798a13ec9e2.woff2')format("woff");}.ff3_c00167{font-family:ff3_c00167;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00167;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff4_c00167{font-family:ff4_c00167;line-height:1.219238;font-style: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;}
.ls0_c00167{letter-spacing:0.000000px;}
.sc__c00167{text-shadow:none;}
.sc0_c00167{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00167{-webkit-text-stroke:0px transparent;}
.sc0_c00167{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00167{word-spacing:-17.352000px;}
.ws1_c00167{word-spacing:0.000000px;}
._17_c00167{margin-left:-27.927000px;}
._20_c00167{margin-left:-22.230000px;}
._18_c00167{margin-left:-13.461000px;}
._b_c00167{margin-left:-9.315000px;}
._e_c00167{margin-left:-8.262000px;}
._5_c00167{margin-left:-7.128000px;}
._13_c00167{margin-left:-6.048000px;}
._15_c00167{margin-left:-4.815000px;}
._4_c00167{margin-left:-3.807000px;}
._16_c00167{margin-left:-2.790000px;}
._3_c00167{margin-left:-1.620000px;}
._a_c00167{width:1.215000px;}
._1_c00167{width:3.078000px;}
._22_c00167{width:4.086000px;}
._2_c00167{width:5.103000px;}
._0_c00167{width:6.318000px;}
._7_c00167{width:7.452000px;}
._6_c00167{width:9.396000px;}
._9_c00167{width:11.340000px;}
._8_c00167{width:13.041000px;}
._10_c00167{width:14.418000px;}
._1a_c00167{width:16.119000px;}
._1e_c00167{width:17.172000px;}
._11_c00167{width:18.549000px;}
._c_c00167{width:22.923000px;}
._1d_c00167{width:24.624000px;}
._1c_c00167{width:35.640000px;}
._19_c00167{width:37.827000px;}
._1f_c00167{width:39.285000px;}
._1b_c00167{width:41.103000px;}
._14_c00167{width:58.215000px;}
._12_c00167{width:121.428000px;}
._f_c00167{width:206.550000px;}
._d_c00167{width:264.627000px;}
._21_c00167{width:335.001000px;}
.fc2_c00167{color:transparent;}
.fc1_c00167{color:rgb(128,128,128);}
.fc0_c00167{color:rgb(0,0,0);}
.fs3_c00167{font-size:48.000000px;}
.fs1_c00167{font-size:72.000000px;}
.fs2_c00167{font-size:78.000000px;}
.fs0_c00167{font-size:81.000000px;}
.y0_c00167{bottom:0.000000px;}
.y22_c00167{bottom:3.105000px;}
.y21_c00167{bottom:7.228369px;}
.y20_c00167{bottom:143.670000px;}
.y1f_c00167{bottom:169.020000px;}
.y1e_c00167{bottom:193.320000px;}
.y1d_c00167{bottom:217.020000px;}
.y1c_c00167{bottom:241.920000px;}
.y1b_c00167{bottom:266.520000px;}
.y1a_c00167{bottom:290.520000px;}
.y19_c00167{bottom:315.120000px;}
.y18_c00167{bottom:339.120000px;}
.y17_c00167{bottom:363.420000px;}
.y16_c00167{bottom:388.020000px;}
.y15_c00167{bottom:412.020000px;}
.y14_c00167{bottom:436.320000px;}
.y13_c00167{bottom:460.620000px;}
.y12_c00167{bottom:484.620000px;}
.y11_c00167{bottom:508.920000px;}
.y10_c00167{bottom:532.920000px;}
.yf_c00167{bottom:556.920000px;}
.ye_c00167{bottom:581.220000px;}
.yd_c00167{bottom:605.820000px;}
.yc_c00167{bottom:629.670000px;}
.yb_c00167{bottom:654.120000px;}
.ya_c00167{bottom:678.270000px;}
.y9_c00167{bottom:702.720000px;}
.y8_c00167{bottom:727.320000px;}
.y7_c00167{bottom:749.970000px;}
.y6_c00167{bottom:774.270000px;}
.y5_c00167{bottom:799.170000px;}
.y4_c00167{bottom:822.420000px;}
.y3_c00167{bottom:846.420000px;}
.y2_c00167{bottom:870.120000px;}
.y1_c00167{bottom:893.970000px;}
.h6_c00167{height:13.200073px;}
.h7_c00167{height:43.804688px;}
.h2_c00167{height:79.497070px;}
.h3_c00167{height:84.269531px;}
.h4_c00167{height:91.160156px;}
.h5_c00167{height:98.756836px;}
.h1_c00167{height:986.250000px;}
.h0_c00167{height:986.550000px;}
.w1_c00167{width:104.875500px;}
.w0_c00167{width:661.500000px;}
.x0_c00167{left:0.000000px;}
.x6_c00167{left:30.600000px;}
.x3_c00167{left:37.500000px;}
.xe_c00167{left:38.850000px;}
.x4_c00167{left:67.500000px;}
.x1_c00167{left:121.800000px;}
.x2_c00167{left:124.500000px;}
.x7_c00167{left:127.500000px;}
.x8_c00167{left:129.300000px;}
.x9_c00167{left:130.650000px;}
.xa_c00167{left:131.850000px;}
.xb_c00167{left:132.900000px;}
.xc_c00167{left:133.950000px;}
.x5_c00167{left:151.200000px;}
.xd_c00167{left:157.950000px;}
.xf_c00167{left:261.150000px;}
.x11_c00167{left:282.564240px;}
.x10_c00167{left:330.750000px;}
@media print{
.v0_c00167{vertical-align:0.000000pt;}
.ls0_c00167{letter-spacing:0.000000pt;}
.ws0_c00167{word-spacing:-15.424000pt;}
.ws1_c00167{word-spacing:0.000000pt;}
._17_c00167{margin-left:-24.824000pt;}
._20_c00167{margin-left:-19.760000pt;}
._18_c00167{margin-left:-11.965333pt;}
._b_c00167{margin-left:-8.280000pt;}
._e_c00167{margin-left:-7.344000pt;}
._5_c00167{margin-left:-6.336000pt;}
._13_c00167{margin-left:-5.376000pt;}
._15_c00167{margin-left:-4.280000pt;}
._4_c00167{margin-left:-3.384000pt;}
._16_c00167{margin-left:-2.480000pt;}
._3_c00167{margin-left:-1.440000pt;}
._a_c00167{width:1.080000pt;}
._1_c00167{width:2.736000pt;}
._22_c00167{width:3.632000pt;}
._2_c00167{width:4.536000pt;}
._0_c00167{width:5.616000pt;}
._7_c00167{width:6.624000pt;}
._6_c00167{width:8.352000pt;}
._9_c00167{width:10.080000pt;}
._8_c00167{width:11.592000pt;}
._10_c00167{width:12.816000pt;}
._1a_c00167{width:14.328000pt;}
._1e_c00167{width:15.264000pt;}
._11_c00167{width:16.488000pt;}
._c_c00167{width:20.376000pt;}
._1d_c00167{width:21.888000pt;}
._1c_c00167{width:31.680000pt;}
._19_c00167{width:33.624000pt;}
._1f_c00167{width:34.920000pt;}
._1b_c00167{width:36.536000pt;}
._14_c00167{width:51.746667pt;}
._12_c00167{width:107.936000pt;}
._f_c00167{width:183.600000pt;}
._d_c00167{width:235.224000pt;}
._21_c00167{width:297.778667pt;}
.fs3_c00167{font-size:42.666667pt;}
.fs1_c00167{font-size:64.000000pt;}
.fs2_c00167{font-size:69.333333pt;}
.fs0_c00167{font-size:72.000000pt;}
.y0_c00167{bottom:0.000000pt;}
.y22_c00167{bottom:2.760000pt;}
.y21_c00167{bottom:6.425217pt;}
.y20_c00167{bottom:127.706667pt;}
.y1f_c00167{bottom:150.240000pt;}
.y1e_c00167{bottom:171.840000pt;}
.y1d_c00167{bottom:192.906667pt;}
.y1c_c00167{bottom:215.040000pt;}
.y1b_c00167{bottom:236.906667pt;}
.y1a_c00167{bottom:258.240000pt;}
.y19_c00167{bottom:280.106667pt;}
.y18_c00167{bottom:301.440000pt;}
.y17_c00167{bottom:323.040000pt;}
.y16_c00167{bottom:344.906667pt;}
.y15_c00167{bottom:366.240000pt;}
.y14_c00167{bottom:387.840000pt;}
.y13_c00167{bottom:409.440000pt;}
.y12_c00167{bottom:430.773333pt;}
.y11_c00167{bottom:452.373333pt;}
.y10_c00167{bottom:473.706667pt;}
.yf_c00167{bottom:495.040000pt;}
.ye_c00167{bottom:516.640000pt;}
.yd_c00167{bottom:538.506667pt;}
.yc_c00167{bottom:559.706667pt;}
.yb_c00167{bottom:581.440000pt;}
.ya_c00167{bottom:602.906667pt;}
.y9_c00167{bottom:624.640000pt;}
.y8_c00167{bottom:646.506667pt;}
.y7_c00167{bottom:666.640000pt;}
.y6_c00167{bottom:688.240000pt;}
.y5_c00167{bottom:710.373333pt;}
.y4_c00167{bottom:731.040000pt;}
.y3_c00167{bottom:752.373333pt;}
.y2_c00167{bottom:773.440000pt;}
.y1_c00167{bottom:794.640000pt;}
.h6_c00167{height:11.733399pt;}
.h7_c00167{height:38.937500pt;}
.h2_c00167{height:70.664062pt;}
.h3_c00167{height:74.906250pt;}
.h4_c00167{height:81.031250pt;}
.h5_c00167{height:87.783854pt;}
.h1_c00167{height:876.666667pt;}
.h0_c00167{height:876.933333pt;}
.w1_c00167{width:93.222667pt;}
.w0_c00167{width:588.000000pt;}
.x0_c00167{left:0.000000pt;}
.x6_c00167{left:27.200000pt;}
.x3_c00167{left:33.333333pt;}
.xe_c00167{left:34.533333pt;}
.x4_c00167{left:60.000000pt;}
.x1_c00167{left:108.266667pt;}
.x2_c00167{left:110.666667pt;}
.x7_c00167{left:113.333333pt;}
.x8_c00167{left:114.933333pt;}
.x9_c00167{left:116.133333pt;}
.xa_c00167{left:117.200000pt;}
.xb_c00167{left:118.133333pt;}
.xc_c00167{left:119.066667pt;}
.x5_c00167{left:134.400000pt;}
.xd_c00167{left:140.400000pt;}
.xf_c00167{left:232.133333pt;}
.x11_c00167{left:251.168213pt;}
.x10_c00167{left:294.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_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_67ea940484bb61a164a55fe1.woff2')format("woff");}.ff1_c00168{font-family:ff1_c00168;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00168;src:url('chunks/assets/font_7f80777bf2f0d09686c8cb09.woff2')format("woff");}.ff2_c00168{font-family:ff2_c00168;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00168;src:url('chunks/assets/font_86f6cb16eaa18a1fe3061463.woff2')format("woff");}.ff3_c00168{font-family:ff3_c00168;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00168;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff4_c00168{font-family:ff4_c00168;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00168{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00168{vertical-align:0.000000px;}
.ls1_c00168{letter-spacing:-12.000000px;}
.ls0_c00168{letter-spacing:0.000000px;}
.sc__c00168{text-shadow:none;}
.sc0_c00168{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00168{-webkit-text-stroke:0px transparent;}
.sc0_c00168{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00168{word-spacing:-21.000000px;}
.ws2_c00168{word-spacing:-17.352000px;}
.ws1_c00168{word-spacing:-9.000000px;}
.ws3_c00168{word-spacing:0.000000px;}
._24_c00168{margin-left:-23.496000px;}
._1b_c00168{margin-left:-22.437000px;}
._21_c00168{margin-left:-18.159000px;}
._1a_c00168{margin-left:-16.848000px;}
._12_c00168{margin-left:-14.910000px;}
._1c_c00168{margin-left:-12.507000px;}
._6_c00168{margin-left:-10.593000px;}
._5_c00168{margin-left:-8.712000px;}
._7_c00168{margin-left:-6.831000px;}
._4_c00168{margin-left:-5.544000px;}
._3_c00168{margin-left:-3.564000px;}
._8_c00168{margin-left:-2.475000px;}
._9_c00168{margin-left:-1.287000px;}
._11_c00168{width:1.365000px;}
._2_c00168{width:2.376000px;}
._1_c00168{width:3.861000px;}
._0_c00168{width:5.742000px;}
._10_c00168{width:6.981000px;}
._16_c00168{width:8.361000px;}
._18_c00168{width:9.435000px;}
._d_c00168{width:11.172000px;}
._15_c00168{width:13.203000px;}
._17_c00168{width:14.931000px;}
._c_c00168{width:16.929000px;}
._b_c00168{width:19.206000px;}
._f_c00168{width:23.613000px;}
._25_c00168{width:28.812000px;}
._e_c00168{width:33.303000px;}
._27_c00168{width:43.017000px;}
._26_c00168{width:52.755000px;}
._1f_c00168{width:61.101000px;}
._22_c00168{width:64.527000px;}
._a_c00168{width:96.030000px;}
._23_c00168{width:118.278000px;}
._1d_c00168{width:145.737000px;}
._1e_c00168{width:220.539000px;}
._20_c00168{width:235.602000px;}
._28_c00168{width:306.585000px;}
._13_c00168{width:347.436000px;}
._19_c00168{width:426.369000px;}
._14_c00168{width:650.280000px;}
.fc2_c00168{color:transparent;}
.fc1_c00168{color:rgb(128,128,128);}
.fc0_c00168{color:rgb(0,0,0);}
.fs5_c00168{font-size:48.000000px;}
.fs2_c00168{font-size:51.000000px;}
.fs4_c00168{font-size:72.000000px;}
.fs3_c00168{font-size:81.000000px;}
.fs1_c00168{font-size:84.000000px;}
.fs0_c00168{font-size:99.000000px;}
.y0_c00168{bottom:0.000000px;}
.y24_c00168{bottom:3.105000px;}
.y23_c00168{bottom:7.228355px;}
.y22_c00168{bottom:58.335000px;}
.y21_c00168{bottom:86.085000px;}
.y20_c00168{bottom:111.585000px;}
.y1f_c00168{bottom:135.885000px;}
.y1e_c00168{bottom:160.935000px;}
.y1d_c00168{bottom:185.535000px;}
.y1c_c00168{bottom:210.585000px;}
.y1b_c00168{bottom:235.185000px;}
.y1a_c00168{bottom:259.185000px;}
.y19_c00168{bottom:283.785000px;}
.y18_c00168{bottom:306.135000px;}
.y17_c00168{bottom:331.785000px;}
.y16_c00168{bottom:355.935000px;}
.y15_c00168{bottom:380.235000px;}
.y14_c00168{bottom:404.535000px;}
.y13_c00168{bottom:427.935000px;}
.y12_c00168{bottom:452.535000px;}
.y11_c00168{bottom:476.535000px;}
.y10_c00168{bottom:500.385000px;}
.yf_c00168{bottom:525.435000px;}
.ye_c00168{bottom:549.135000px;}
.yd_c00168{bottom:573.735000px;}
.yc_c00168{bottom:597.585000px;}
.yb_c00168{bottom:622.335000px;}
.ya_c00168{bottom:646.335000px;}
.y9_c00168{bottom:669.135000px;}
.y8_c00168{bottom:693.135000px;}
.y7_c00168{bottom:717.135000px;}
.y6_c00168{bottom:741.435000px;}
.y5_c00168{bottom:796.185000px;}
.y4_c00168{bottom:826.485000px;}
.y3_c00168{bottom:855.885000px;}
.y2_c00168{bottom:884.535000px;}
.y1_c00168{bottom:920.985000px;}
.h7_c00168{height:13.200074px;}
.h8_c00168{height:43.804688px;}
.h5_c00168{height:79.497070px;}
.h4_c00168{height:82.400391px;}
.h3_c00168{height:82.441406px;}
.h6_c00168{height:84.269531px;}
.h2_c00168{height:115.870605px;}
.h0_c00168{height:972.525000px;}
.h1_c00168{height:972.750000px;}
.w2_c00168{width:104.875500px;}
.w0_c00168{width:660.450000px;}
.w1_c00168{width:660.750000px;}
.x0_c00168{left:0.000000px;}
.x2_c00168{left:26.700000px;}
.xe_c00168{left:31.351500px;}
.xa_c00168{left:32.701500px;}
.xb_c00168{left:34.051500px;}
.xc_c00168{left:35.401500px;}
.xd_c00168{left:36.751500px;}
.xf_c00168{left:38.701500px;}
.x10_c00168{left:39.751500px;}
.x11_c00168{left:40.801500px;}
.x3_c00168{left:59.700000px;}
.x1_c00168{left:84.000000px;}
.x4_c00168{left:104.250000px;}
.x9_c00168{left:134.701500px;}
.x6_c00168{left:162.301500px;}
.x7_c00168{left:163.951500px;}
.x8_c00168{left:166.651500px;}
.x5_c00168{left:176.101500px;}
.x13_c00168{left:282.039230px;}
.x12_c00168{left:364.201500px;}
@media print{
.v0_c00168{vertical-align:0.000000pt;}
.ls1_c00168{letter-spacing:-10.666667pt;}
.ls0_c00168{letter-spacing:0.000000pt;}
.ws0_c00168{word-spacing:-18.666667pt;}
.ws2_c00168{word-spacing:-15.424000pt;}
.ws1_c00168{word-spacing:-8.000000pt;}
.ws3_c00168{word-spacing:0.000000pt;}
._24_c00168{margin-left:-20.885333pt;}
._1b_c00168{margin-left:-19.944000pt;}
._21_c00168{margin-left:-16.141333pt;}
._1a_c00168{margin-left:-14.976000pt;}
._12_c00168{margin-left:-13.253333pt;}
._1c_c00168{margin-left:-11.117333pt;}
._6_c00168{margin-left:-9.416000pt;}
._5_c00168{margin-left:-7.744000pt;}
._7_c00168{margin-left:-6.072000pt;}
._4_c00168{margin-left:-4.928000pt;}
._3_c00168{margin-left:-3.168000pt;}
._8_c00168{margin-left:-2.200000pt;}
._9_c00168{margin-left:-1.144000pt;}
._11_c00168{width:1.213333pt;}
._2_c00168{width:2.112000pt;}
._1_c00168{width:3.432000pt;}
._0_c00168{width:5.104000pt;}
._10_c00168{width:6.205333pt;}
._16_c00168{width:7.432000pt;}
._18_c00168{width:8.386667pt;}
._d_c00168{width:9.930667pt;}
._15_c00168{width:11.736000pt;}
._17_c00168{width:13.272000pt;}
._c_c00168{width:15.048000pt;}
._b_c00168{width:17.072000pt;}
._f_c00168{width:20.989333pt;}
._25_c00168{width:25.610667pt;}
._e_c00168{width:29.602667pt;}
._27_c00168{width:38.237333pt;}
._26_c00168{width:46.893333pt;}
._1f_c00168{width:54.312000pt;}
._22_c00168{width:57.357333pt;}
._a_c00168{width:85.360000pt;}
._23_c00168{width:105.136000pt;}
._1d_c00168{width:129.544000pt;}
._1e_c00168{width:196.034667pt;}
._20_c00168{width:209.424000pt;}
._28_c00168{width:272.520000pt;}
._13_c00168{width:308.832000pt;}
._19_c00168{width:378.994667pt;}
._14_c00168{width:578.026667pt;}
.fs5_c00168{font-size:42.666667pt;}
.fs2_c00168{font-size:45.333333pt;}
.fs4_c00168{font-size:64.000000pt;}
.fs3_c00168{font-size:72.000000pt;}
.fs1_c00168{font-size:74.666667pt;}
.fs0_c00168{font-size:88.000000pt;}
.y0_c00168{bottom:0.000000pt;}
.y24_c00168{bottom:2.760000pt;}
.y23_c00168{bottom:6.425204pt;}
.y22_c00168{bottom:51.853333pt;}
.y21_c00168{bottom:76.520000pt;}
.y20_c00168{bottom:99.186667pt;}
.y1f_c00168{bottom:120.786667pt;}
.y1e_c00168{bottom:143.053333pt;}
.y1d_c00168{bottom:164.920000pt;}
.y1c_c00168{bottom:187.186667pt;}
.y1b_c00168{bottom:209.053333pt;}
.y1a_c00168{bottom:230.386667pt;}
.y19_c00168{bottom:252.253333pt;}
.y18_c00168{bottom:272.120000pt;}
.y17_c00168{bottom:294.920000pt;}
.y16_c00168{bottom:316.386667pt;}
.y15_c00168{bottom:337.986667pt;}
.y14_c00168{bottom:359.586667pt;}
.y13_c00168{bottom:380.386667pt;}
.y12_c00168{bottom:402.253333pt;}
.y11_c00168{bottom:423.586667pt;}
.y10_c00168{bottom:444.786667pt;}
.yf_c00168{bottom:467.053333pt;}
.ye_c00168{bottom:488.120000pt;}
.yd_c00168{bottom:509.986667pt;}
.yc_c00168{bottom:531.186667pt;}
.yb_c00168{bottom:553.186667pt;}
.ya_c00168{bottom:574.520000pt;}
.y9_c00168{bottom:594.786667pt;}
.y8_c00168{bottom:616.120000pt;}
.y7_c00168{bottom:637.453333pt;}
.y6_c00168{bottom:659.053333pt;}
.y5_c00168{bottom:707.720000pt;}
.y4_c00168{bottom:734.653333pt;}
.y3_c00168{bottom:760.786667pt;}
.y2_c00168{bottom:786.253333pt;}
.y1_c00168{bottom:818.653333pt;}
.h7_c00168{height:11.733399pt;}
.h8_c00168{height:38.937500pt;}
.h5_c00168{height:70.664062pt;}
.h4_c00168{height:73.244792pt;}
.h3_c00168{height:73.281250pt;}
.h6_c00168{height:74.906250pt;}
.h2_c00168{height:102.996094pt;}
.h0_c00168{height:864.466667pt;}
.h1_c00168{height:864.666667pt;}
.w2_c00168{width:93.222667pt;}
.w0_c00168{width:587.066667pt;}
.w1_c00168{width:587.333333pt;}
.x0_c00168{left:0.000000pt;}
.x2_c00168{left:23.733333pt;}
.xe_c00168{left:27.868000pt;}
.xa_c00168{left:29.068000pt;}
.xb_c00168{left:30.268000pt;}
.xc_c00168{left:31.468000pt;}
.xd_c00168{left:32.668000pt;}
.xf_c00168{left:34.401333pt;}
.x10_c00168{left:35.334667pt;}
.x11_c00168{left:36.268000pt;}
.x3_c00168{left:53.066667pt;}
.x1_c00168{left:74.666667pt;}
.x4_c00168{left:92.666667pt;}
.x9_c00168{left:119.734667pt;}
.x6_c00168{left:144.268000pt;}
.x7_c00168{left:145.734667pt;}
.x8_c00168{left:148.134667pt;}
.x5_c00168{left:156.534667pt;}
.x13_c00168{left:250.701538pt;}
.x12_c00168{left:323.734667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4622b06c6c045bc664b4385d.woff2')format("woff");}.ff1_c00169{font-family:ff1_c00169;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00169;src:url('chunks/assets/font_73ccb545873a10b687a3debe.woff2')format("woff");}.ff2_c00169{font-family:ff2_c00169;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00169;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff3_c00169{font-family:ff3_c00169;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00169;src:url('chunks/assets/font_f4ca5e65796761d506409c22.woff2')format("woff");}.ff4_c00169{font-family:ff4_c00169;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00169;src:url('chunks/assets/font_0ac4d01ea135958c3df08acb.woff2')format("woff");}.ff5_c00169{font-family:ff5_c00169;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00169;src:url('chunks/assets/font_145c5b41adb6742c7b8a9e66.woff2')format("woff");}.ff6_c00169{font-family:ff6_c00169;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00169;src:url('chunks/assets/font_506690702bb3f6de0af8f6d4.woff2')format("woff");}.ff7_c00169{font-family:ff7_c00169;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00169;src:url('chunks/assets/font_a1c8cc3f9a3e03fd97784523.woff2')format("woff");}.ff8_c00169{font-family:ff8_c00169;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00169;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff9_c00169{font-family:ff9_c00169;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00169{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00169{vertical-align:0.000000px;}
.ls5_c00169{letter-spacing:0.000000px;}
.ls0_c00169{letter-spacing:0.300000px;}
.ls4_c00169{letter-spacing:0.480000px;}
.ls2_c00169{letter-spacing:6.000000px;}
.ls3_c00169{letter-spacing:9.300000px;}
.ls6_c00169{letter-spacing:18.000000px;}
.ls1_c00169{letter-spacing:19.200000px;}
.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:-67.686000px;}
.ws2_c00169{word-spacing:-28.200000px;}
.ws0_c00169{word-spacing:-17.352000px;}
.ws3_c00169{word-spacing:0.000000px;}
._29_c00169{margin-left:-33.660000px;}
._34_c00169{margin-left:-28.350000px;}
._18_c00169{margin-left:-25.515000px;}
._24_c00169{margin-left:-24.174000px;}
._1f_c00169{margin-left:-22.923000px;}
._1a_c00169{margin-left:-21.060000px;}
._2d_c00169{margin-left:-19.269000px;}
._21_c00169{margin-left:-17.544000px;}
._1d_c00169{margin-left:-14.328000px;}
._14_c00169{margin-left:-12.105000px;}
._20_c00169{margin-left:-11.074800px;}
._b_c00169{margin-left:-9.081000px;}
._9_c00169{margin-left:-6.840000px;}
._a_c00169{margin-left:-5.616000px;}
._11_c00169{margin-left:-4.176000px;}
._1_c00169{margin-left:-3.078000px;}
._5_c00169{margin-left:-1.377000px;}
._0_c00169{width:1.782000px;}
._8_c00169{width:2.835000px;}
._2_c00169{width:3.888000px;}
._4_c00169{width:5.103000px;}
._3_c00169{width:6.885000px;}
._33_c00169{width:7.893000px;}
._6_c00169{width:8.910000px;}
._7_c00169{width:9.963000px;}
._e_c00169{width:11.907000px;}
._15_c00169{width:13.482000px;}
._10_c00169{width:15.417000px;}
._1c_c00169{width:17.253000px;}
._28_c00169{width:18.423000px;}
._19_c00169{width:29.565000px;}
._25_c00169{width:35.241000px;}
._1b_c00169{width:37.989000px;}
._f_c00169{width:40.311000px;}
._32_c00169{width:44.424000px;}
._c_c00169{width:46.596000px;}
._26_c00169{width:56.001000px;}
._16_c00169{width:59.625000px;}
._22_c00169{width:72.651000px;}
._31_c00169{width:84.564000px;}
._23_c00169{width:97.662000px;}
._2a_c00169{width:147.036000px;}
._17_c00169{width:168.480000px;}
._2c_c00169{width:178.150800px;}
._12_c00169{width:215.550000px;}
._13_c00169{width:218.508000px;}
._2f_c00169{width:227.853000px;}
._2b_c00169{width:244.836000px;}
._2e_c00169{width:269.439000px;}
._d_c00169{width:289.818000px;}
._30_c00169{width:295.530000px;}
._1e_c00169{width:382.731000px;}
._27_c00169{width:521.274000px;}
.fc2_c00169{color:transparent;}
.fc1_c00169{color:rgb(128,128,128);}
.fc0_c00169{color:rgb(0,0,0);}
.fs5_c00169{font-size:40.800000px;}
.fs6_c00169{font-size:42.000000px;}
.fs7_c00169{font-size:48.000000px;}
.fs4_c00169{font-size:51.000000px;}
.fs3_c00169{font-size:66.000000px;}
.fs1_c00169{font-size:72.000000px;}
.fs0_c00169{font-size:81.000000px;}
.fs2_c00169{font-size:87.000000px;}
.y0_c00169{bottom:0.000000px;}
.y27_c00169{bottom:3.105000px;}
.y26_c00169{bottom:7.228357px;}
.y25_c00169{bottom:56.730000px;}
.y24_c00169{bottom:80.280000px;}
.y23_c00169{bottom:106.230000px;}
.y22_c00169{bottom:131.130000px;}
.y21_c00169{bottom:156.030000px;}
.y20_c00169{bottom:180.930000px;}
.y1f_c00169{bottom:205.980000px;}
.y1e_c00169{bottom:230.280000px;}
.y1d_c00169{bottom:254.580000px;}
.y1c_c00169{bottom:279.180000px;}
.y1b_c00169{bottom:303.780000px;}
.y1a_c00169{bottom:318.330000px;}
.y19_c00169{bottom:328.380000px;}
.y18_c00169{bottom:352.980000px;}
.y17_c00169{bottom:362.880000px;}
.y16_c00169{bottom:379.380000px;}
.y15_c00169{bottom:401.280000px;}
.y14_c00169{bottom:425.580000px;}
.y13_c00169{bottom:450.180000px;}
.y12_c00169{bottom:474.630000px;}
.y11_c00169{bottom:498.480000px;}
.y10_c00169{bottom:522.480000px;}
.yf_c00169{bottom:546.480000px;}
.ye_c00169{bottom:570.780000px;}
.yd_c00169{bottom:595.080000px;}
.yc_c00169{bottom:619.080000px;}
.yb_c00169{bottom:643.380000px;}
.ya_c00169{bottom:665.880000px;}
.y9_c00169{bottom:691.980000px;}
.y8_c00169{bottom:716.280000px;}
.y7_c00169{bottom:741.480000px;}
.y6_c00169{bottom:764.730000px;}
.y5_c00169{bottom:788.730000px;}
.y4_c00169{bottom:812.430000px;}
.y3_c00169{bottom:836.280000px;}
.y2_c00169{bottom:859.380000px;}
.y1_c00169{bottom:884.880000px;}
.h6_c00169{height:13.200074px;}
.h7_c00169{height:43.804688px;}
.h5_c00169{height:50.028809px;}
.h1_c00169{height:79.497070px;}
.h2_c00169{height:84.269531px;}
.h3_c00169{height:91.160156px;}
.h4_c00169{height:91.176000px;}
.h0_c00169{height:995.250000px;}
.w2_c00169{width:104.875500px;}
.w0_c00169{width:667.425000px;}
.w1_c00169{width:667.500000px;}
.x0_c00169{left:0.000000px;}
.xd_c00169{left:49.050000px;}
.xc_c00169{left:51.000000px;}
.xb_c00169{left:52.650000px;}
.xe_c00169{left:53.700000px;}
.x6_c00169{left:55.350000px;}
.x2_c00169{left:56.700000px;}
.x9_c00169{left:58.350000px;}
.x3_c00169{left:59.850000px;}
.x5_c00169{left:108.900000px;}
.x13_c00169{left:138.450000px;}
.xf_c00169{left:139.650000px;}
.x12_c00169{left:141.150000px;}
.x10_c00169{left:143.100000px;}
.xa_c00169{left:147.150000px;}
.x8_c00169{left:148.500000px;}
.x7_c00169{left:149.550000px;}
.x4_c00169{left:151.800000px;}
.x1_c00169{left:153.600000px;}
.x11_c00169{left:166.350000px;}
.x15_c00169{left:285.526749px;}
.x14_c00169{left:587.700000px;}
@media print{
.v0_c00169{vertical-align:0.000000pt;}
.ls5_c00169{letter-spacing:0.000000pt;}
.ls0_c00169{letter-spacing:0.266667pt;}
.ls4_c00169{letter-spacing:0.426667pt;}
.ls2_c00169{letter-spacing:5.333333pt;}
.ls3_c00169{letter-spacing:8.266667pt;}
.ls6_c00169{letter-spacing:16.000000pt;}
.ls1_c00169{letter-spacing:17.066667pt;}
.ws1_c00169{word-spacing:-60.165333pt;}
.ws2_c00169{word-spacing:-25.066667pt;}
.ws0_c00169{word-spacing:-15.424000pt;}
.ws3_c00169{word-spacing:0.000000pt;}
._29_c00169{margin-left:-29.920000pt;}
._34_c00169{margin-left:-25.200000pt;}
._18_c00169{margin-left:-22.680000pt;}
._24_c00169{margin-left:-21.488000pt;}
._1f_c00169{margin-left:-20.376000pt;}
._1a_c00169{margin-left:-18.720000pt;}
._2d_c00169{margin-left:-17.128000pt;}
._21_c00169{margin-left:-15.594667pt;}
._1d_c00169{margin-left:-12.736000pt;}
._14_c00169{margin-left:-10.760000pt;}
._20_c00169{margin-left:-9.844267pt;}
._b_c00169{margin-left:-8.072000pt;}
._9_c00169{margin-left:-6.080000pt;}
._a_c00169{margin-left:-4.992000pt;}
._11_c00169{margin-left:-3.712000pt;}
._1_c00169{margin-left:-2.736000pt;}
._5_c00169{margin-left:-1.224000pt;}
._0_c00169{width:1.584000pt;}
._8_c00169{width:2.520000pt;}
._2_c00169{width:3.456000pt;}
._4_c00169{width:4.536000pt;}
._3_c00169{width:6.120000pt;}
._33_c00169{width:7.016000pt;}
._6_c00169{width:7.920000pt;}
._7_c00169{width:8.856000pt;}
._e_c00169{width:10.584000pt;}
._15_c00169{width:11.984000pt;}
._10_c00169{width:13.704000pt;}
._1c_c00169{width:15.336000pt;}
._28_c00169{width:16.376000pt;}
._19_c00169{width:26.280000pt;}
._25_c00169{width:31.325333pt;}
._1b_c00169{width:33.768000pt;}
._f_c00169{width:35.832000pt;}
._32_c00169{width:39.488000pt;}
._c_c00169{width:41.418667pt;}
._26_c00169{width:49.778667pt;}
._16_c00169{width:53.000000pt;}
._22_c00169{width:64.578667pt;}
._31_c00169{width:75.168000pt;}
._23_c00169{width:86.810667pt;}
._2a_c00169{width:130.698667pt;}
._17_c00169{width:149.760000pt;}
._2c_c00169{width:158.356267pt;}
._12_c00169{width:191.600000pt;}
._13_c00169{width:194.229333pt;}
._2f_c00169{width:202.536000pt;}
._2b_c00169{width:217.632000pt;}
._2e_c00169{width:239.501333pt;}
._d_c00169{width:257.616000pt;}
._30_c00169{width:262.693333pt;}
._1e_c00169{width:340.205333pt;}
._27_c00169{width:463.354667pt;}
.fs5_c00169{font-size:36.266667pt;}
.fs6_c00169{font-size:37.333333pt;}
.fs7_c00169{font-size:42.666667pt;}
.fs4_c00169{font-size:45.333333pt;}
.fs3_c00169{font-size:58.666667pt;}
.fs1_c00169{font-size:64.000000pt;}
.fs0_c00169{font-size:72.000000pt;}
.fs2_c00169{font-size:77.333333pt;}
.y0_c00169{bottom:0.000000pt;}
.y27_c00169{bottom:2.760000pt;}
.y26_c00169{bottom:6.425206pt;}
.y25_c00169{bottom:50.426667pt;}
.y24_c00169{bottom:71.360000pt;}
.y23_c00169{bottom:94.426667pt;}
.y22_c00169{bottom:116.560000pt;}
.y21_c00169{bottom:138.693333pt;}
.y20_c00169{bottom:160.826667pt;}
.y1f_c00169{bottom:183.093333pt;}
.y1e_c00169{bottom:204.693333pt;}
.y1d_c00169{bottom:226.293333pt;}
.y1c_c00169{bottom:248.160000pt;}
.y1b_c00169{bottom:270.026667pt;}
.y1a_c00169{bottom:282.960000pt;}
.y19_c00169{bottom:291.893333pt;}
.y18_c00169{bottom:313.760000pt;}
.y17_c00169{bottom:322.560000pt;}
.y16_c00169{bottom:337.226667pt;}
.y15_c00169{bottom:356.693333pt;}
.y14_c00169{bottom:378.293333pt;}
.y13_c00169{bottom:400.160000pt;}
.y12_c00169{bottom:421.893333pt;}
.y11_c00169{bottom:443.093333pt;}
.y10_c00169{bottom:464.426667pt;}
.yf_c00169{bottom:485.760000pt;}
.ye_c00169{bottom:507.360000pt;}
.yd_c00169{bottom:528.960000pt;}
.yc_c00169{bottom:550.293333pt;}
.yb_c00169{bottom:571.893333pt;}
.ya_c00169{bottom:591.893333pt;}
.y9_c00169{bottom:615.093333pt;}
.y8_c00169{bottom:636.693333pt;}
.y7_c00169{bottom:659.093333pt;}
.y6_c00169{bottom:679.760000pt;}
.y5_c00169{bottom:701.093333pt;}
.y4_c00169{bottom:722.160000pt;}
.y3_c00169{bottom:743.360000pt;}
.y2_c00169{bottom:763.893333pt;}
.y1_c00169{bottom:786.560000pt;}
.h6_c00169{height:11.733399pt;}
.h7_c00169{height:38.937500pt;}
.h5_c00169{height:44.470052pt;}
.h1_c00169{height:70.664062pt;}
.h2_c00169{height:74.906250pt;}
.h3_c00169{height:81.031250pt;}
.h4_c00169{height:81.045333pt;}
.h0_c00169{height:884.666667pt;}
.w2_c00169{width:93.222667pt;}
.w0_c00169{width:593.266667pt;}
.w1_c00169{width:593.333333pt;}
.x0_c00169{left:0.000000pt;}
.xd_c00169{left:43.600000pt;}
.xc_c00169{left:45.333333pt;}
.xb_c00169{left:46.800000pt;}
.xe_c00169{left:47.733333pt;}
.x6_c00169{left:49.200000pt;}
.x2_c00169{left:50.400000pt;}
.x9_c00169{left:51.866667pt;}
.x3_c00169{left:53.200000pt;}
.x5_c00169{left:96.800000pt;}
.x13_c00169{left:123.066667pt;}
.xf_c00169{left:124.133333pt;}
.x12_c00169{left:125.466667pt;}
.x10_c00169{left:127.200000pt;}
.xa_c00169{left:130.800000pt;}
.x8_c00169{left:132.000000pt;}
.x7_c00169{left:132.933333pt;}
.x4_c00169{left:134.933333pt;}
.x1_c00169{left:136.533333pt;}
.x11_c00169{left:147.866667pt;}
.x15_c00169{left:253.801554pt;}
.x14_c00169{left:522.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_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_59886e1a66fa579780630ee1.woff2')format("woff");}.ff1_c00170{font-family:ff1_c00170;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00170;src:url('chunks/assets/font_d5a46c1dead42e33e7ab7d59.woff2')format("woff");}.ff2_c00170{font-family:ff2_c00170;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00170;src:url('chunks/assets/font_cdc99e3b8f6f9e12d569ea67.woff2')format("woff");}.ff3_c00170{font-family:ff3_c00170;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00170;src:url('chunks/assets/font_12c0238f993bef3788912da6.woff2')format("woff");}.ff4_c00170{font-family:ff4_c00170;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00170;src:url('chunks/assets/font_4bca48f8614136765965de1c.woff2')format("woff");}.ff5_c00170{font-family:ff5_c00170;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00170;src:url('chunks/assets/font_cf508f2553b23a0bac0a5a87.woff2')format("woff");}.ff6_c00170{font-family:ff6_c00170;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00170;src:url('chunks/assets/font_2ee9911a5c0b6d4571b1d8d9.woff2')format("woff");}.ff7_c00170{font-family:ff7_c00170;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00170;src:url('chunks/assets/font_4b64d5deae2527813860c81e.woff2')format("woff");}.ff8_c00170{font-family:ff8_c00170;line-height:1.437000;font-style:normal;font-weight: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_c00170;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff9_c00170{font-family:ff9_c00170;line-height:1.219238;font-style: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;}
.ls0_c00170{letter-spacing:0.000000px;}
.ls1_c00170{letter-spacing:18.000000px;}
.ls2_c00170{letter-spacing:21.000000px;}
.ls3_c00170{letter-spacing:39.000000px;}
.sc__c00170{text-shadow:none;}
.sc0_c00170{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00170{-webkit-text-stroke:0px transparent;}
.sc0_c00170{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00170{word-spacing:-74.640000px;}
.ws4_c00170{word-spacing:-67.686000px;}
.ws3_c00170{word-spacing:-23.832000px;}
.ws5_c00170{word-spacing:-20.250000px;}
.ws2_c00170{word-spacing:-19.065600px;}
.ws1_c00170{word-spacing:-17.352000px;}
.ws6_c00170{word-spacing:0.000000px;}
._3_c00170{margin-left:-35.532000px;}
._a_c00170{margin-left:-27.036000px;}
._b_c00170{margin-left:-24.072000px;}
._8_c00170{margin-left:-19.416000px;}
._c_c00170{margin-left:-18.360000px;}
._25_c00170{margin-left:-15.633000px;}
._1c_c00170{margin-left:-12.933600px;}
._9_c00170{margin-left:-9.414000px;}
._22_c00170{margin-left:-7.869000px;}
._6_c00170{margin-left:-6.414000px;}
._15_c00170{margin-left:-5.406000px;}
._4_c00170{margin-left:-4.350000px;}
._7_c00170{margin-left:-3.060000px;}
._0_c00170{margin-left:-1.428000px;}
._10_c00170{width:1.809000px;}
._5_c00170{width:2.850000px;}
._1_c00170{width:4.182000px;}
._e_c00170{width:5.994000px;}
._f_c00170{width:7.092000px;}
._2_c00170{width:8.568000px;}
._12_c00170{width:9.666000px;}
._13_c00170{width:11.397000px;}
._11_c00170{width:12.837000px;}
._14_c00170{width:13.875000px;}
._d_c00170{width:14.934000px;}
._19_c00170{width:16.074000px;}
._1d_c00170{width:17.076000px;}
._16_c00170{width:18.762000px;}
._24_c00170{width:22.419000px;}
._1e_c00170{width:25.908000px;}
._1f_c00170{width:33.480000px;}
._17_c00170{width:37.065000px;}
._18_c00170{width:40.899000px;}
._23_c00170{width:70.008000px;}
._1b_c00170{width:195.822000px;}
._21_c00170{width:263.130000px;}
._20_c00170{width:376.743000px;}
._1a_c00170{width:673.086000px;}
.fc2_c00170{color:transparent;}
.fc1_c00170{color:rgb(128,128,128);}
.fc0_c00170{color:rgb(0,0,0);}
.fs8_c00170{font-size:48.000000px;}
.fs6_c00170{font-size:57.000000px;}
.fs7_c00170{font-size:57.600000px;}
.fs5_c00170{font-size:72.000000px;}
.fs4_c00170{font-size:78.000000px;}
.fs3_c00170{font-size:81.000000px;}
.fs2_c00170{font-size:87.000000px;}
.fs0_c00170{font-size:102.000000px;}
.fs1_c00170{font-size:120.000000px;}
.y0_c00170{bottom:0.000000px;}
.y24_c00170{bottom:3.105000px;}
.y23_c00170{bottom:7.228371px;}
.y22_c00170{bottom:76.965000px;}
.y21_c00170{bottom:100.665000px;}
.y20_c00170{bottom:125.865000px;}
.y1f_c00170{bottom:150.165000px;}
.y1e_c00170{bottom:174.615000px;}
.y1d_c00170{bottom:198.765000px;}
.y1c_c00170{bottom:223.515000px;}
.y1b_c00170{bottom:247.815000px;}
.y1a_c00170{bottom:271.365000px;}
.y19_c00170{bottom:296.415000px;}
.y18_c00170{bottom:320.265000px;}
.y17_c00170{bottom:344.265000px;}
.y16_c00170{bottom:368.565000px;}
.y15_c00170{bottom:391.215000px;}
.y14_c00170{bottom:416.565000px;}
.y13_c00170{bottom:440.415000px;}
.y12_c00170{bottom:464.715000px;}
.y11_c00170{bottom:488.715000px;}
.y10_c00170{bottom:512.715000px;}
.yf_c00170{bottom:537.015000px;}
.ye_c00170{bottom:585.315000px;}
.yd_c00170{bottom:632.265000px;}
.yc_c00170{bottom:655.515000px;}
.yb_c00170{bottom:679.815000px;}
.ya_c00170{bottom:703.815000px;}
.y9_c00170{bottom:727.665000px;}
.y8_c00170{bottom:752.265000px;}
.y7_c00170{bottom:776.265000px;}
.y6_c00170{bottom:800.865000px;}
.y5_c00170{bottom:825.165000px;}
.y4_c00170{bottom:849.165000px;}
.y3_c00170{bottom:873.765000px;}
.y2_c00170{bottom:899.415000px;}
.y1_c00170{bottom:931.215000px;}
.h7_c00170{height:13.200074px;}
.h8_c00170{height:43.804688px;}
.h4_c00170{height:79.497070px;}
.h5_c00170{height:91.160156px;}
.h6_c00170{height:91.176000px;}
.h3_c00170{height:98.756836px;}
.h2_c00170{height:140.449219px;}
.h0_c00170{height:989.025000px;}
.h1_c00170{height:989.250000px;}
.w1_c00170{width:104.875500px;}
.w0_c00170{width:672.000000px;}
.x0_c00170{left:0.000000px;}
.x2_c00170{left:26.400000px;}
.x3_c00170{left:28.650000px;}
.x4_c00170{left:29.700000px;}
.x5_c00170{left:31.800000px;}
.x6_c00170{left:32.850000px;}
.xa_c00170{left:34.650000px;}
.xb_c00170{left:39.450000px;}
.x1_c00170{left:45.000000px;}
.x9_c00170{left:61.350000px;}
.x8_c00170{left:80.250000px;}
.x7_c00170{left:125.100000px;}
.xd_c00170{left:287.814240px;}
.xc_c00170{left:460.050000px;}
@media print{
.v0_c00170{vertical-align:0.000000pt;}
.ls0_c00170{letter-spacing:0.000000pt;}
.ls1_c00170{letter-spacing:16.000000pt;}
.ls2_c00170{letter-spacing:18.666667pt;}
.ls3_c00170{letter-spacing:34.666667pt;}
.ws0_c00170{word-spacing:-66.346667pt;}
.ws4_c00170{word-spacing:-60.165333pt;}
.ws3_c00170{word-spacing:-21.184000pt;}
.ws5_c00170{word-spacing:-18.000000pt;}
.ws2_c00170{word-spacing:-16.947200pt;}
.ws1_c00170{word-spacing:-15.424000pt;}
.ws6_c00170{word-spacing:0.000000pt;}
._3_c00170{margin-left:-31.584000pt;}
._a_c00170{margin-left:-24.032000pt;}
._b_c00170{margin-left:-21.397333pt;}
._8_c00170{margin-left:-17.258667pt;}
._c_c00170{margin-left:-16.320000pt;}
._25_c00170{margin-left:-13.896000pt;}
._1c_c00170{margin-left:-11.496533pt;}
._9_c00170{margin-left:-8.368000pt;}
._22_c00170{margin-left:-6.994667pt;}
._6_c00170{margin-left:-5.701333pt;}
._15_c00170{margin-left:-4.805333pt;}
._4_c00170{margin-left:-3.866667pt;}
._7_c00170{margin-left:-2.720000pt;}
._0_c00170{margin-left:-1.269333pt;}
._10_c00170{width:1.608000pt;}
._5_c00170{width:2.533333pt;}
._1_c00170{width:3.717333pt;}
._e_c00170{width:5.328000pt;}
._f_c00170{width:6.304000pt;}
._2_c00170{width:7.616000pt;}
._12_c00170{width:8.592000pt;}
._13_c00170{width:10.130667pt;}
._11_c00170{width:11.410667pt;}
._14_c00170{width:12.333333pt;}
._d_c00170{width:13.274667pt;}
._19_c00170{width:14.288000pt;}
._1d_c00170{width:15.178667pt;}
._16_c00170{width:16.677333pt;}
._24_c00170{width:19.928000pt;}
._1e_c00170{width:23.029333pt;}
._1f_c00170{width:29.760000pt;}
._17_c00170{width:32.946667pt;}
._18_c00170{width:36.354667pt;}
._23_c00170{width:62.229333pt;}
._1b_c00170{width:174.064000pt;}
._21_c00170{width:233.893333pt;}
._20_c00170{width:334.882667pt;}
._1a_c00170{width:598.298667pt;}
.fs8_c00170{font-size:42.666667pt;}
.fs6_c00170{font-size:50.666667pt;}
.fs7_c00170{font-size:51.200000pt;}
.fs5_c00170{font-size:64.000000pt;}
.fs4_c00170{font-size:69.333333pt;}
.fs3_c00170{font-size:72.000000pt;}
.fs2_c00170{font-size:77.333333pt;}
.fs0_c00170{font-size:90.666667pt;}
.fs1_c00170{font-size:106.666667pt;}
.y0_c00170{bottom:0.000000pt;}
.y24_c00170{bottom:2.760000pt;}
.y23_c00170{bottom:6.425219pt;}
.y22_c00170{bottom:68.413333pt;}
.y21_c00170{bottom:89.480000pt;}
.y20_c00170{bottom:111.880000pt;}
.y1f_c00170{bottom:133.480000pt;}
.y1e_c00170{bottom:155.213333pt;}
.y1d_c00170{bottom:176.680000pt;}
.y1c_c00170{bottom:198.680000pt;}
.y1b_c00170{bottom:220.280000pt;}
.y1a_c00170{bottom:241.213333pt;}
.y19_c00170{bottom:263.480000pt;}
.y18_c00170{bottom:284.680000pt;}
.y17_c00170{bottom:306.013333pt;}
.y16_c00170{bottom:327.613333pt;}
.y15_c00170{bottom:347.746667pt;}
.y14_c00170{bottom:370.280000pt;}
.y13_c00170{bottom:391.480000pt;}
.y12_c00170{bottom:413.080000pt;}
.y11_c00170{bottom:434.413333pt;}
.y10_c00170{bottom:455.746667pt;}
.yf_c00170{bottom:477.346667pt;}
.ye_c00170{bottom:520.280000pt;}
.yd_c00170{bottom:562.013333pt;}
.yc_c00170{bottom:582.680000pt;}
.yb_c00170{bottom:604.280000pt;}
.ya_c00170{bottom:625.613333pt;}
.y9_c00170{bottom:646.813333pt;}
.y8_c00170{bottom:668.680000pt;}
.y7_c00170{bottom:690.013333pt;}
.y6_c00170{bottom:711.880000pt;}
.y5_c00170{bottom:733.480000pt;}
.y4_c00170{bottom:754.813333pt;}
.y3_c00170{bottom:776.680000pt;}
.y2_c00170{bottom:799.480000pt;}
.y1_c00170{bottom:827.746667pt;}
.h7_c00170{height:11.733399pt;}
.h8_c00170{height:38.937500pt;}
.h4_c00170{height:70.664062pt;}
.h5_c00170{height:81.031250pt;}
.h6_c00170{height:81.045333pt;}
.h3_c00170{height:87.783854pt;}
.h2_c00170{height:124.843750pt;}
.h0_c00170{height:879.133333pt;}
.h1_c00170{height:879.333333pt;}
.w1_c00170{width:93.222667pt;}
.w0_c00170{width:597.333333pt;}
.x0_c00170{left:0.000000pt;}
.x2_c00170{left:23.466667pt;}
.x3_c00170{left:25.466667pt;}
.x4_c00170{left:26.400000pt;}
.x5_c00170{left:28.266667pt;}
.x6_c00170{left:29.200000pt;}
.xa_c00170{left:30.800000pt;}
.xb_c00170{left:35.066667pt;}
.x1_c00170{left:40.000000pt;}
.x9_c00170{left:54.533333pt;}
.x8_c00170{left:71.333333pt;}
.x7_c00170{left:111.200000pt;}
.xd_c00170{left:255.834880pt;}
.xc_c00170{left:408.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_960acddb895a78b7f53f6347.woff2')format("woff");}.ff1_c00171{font-family:ff1_c00171;line-height:1.311035;font-style:normal;font-weight:normal;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_7eb0764f924f28720ff3b060.woff2')format("woff");}.ff2_c00171{font-family:ff2_c00171;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00171;src:url('chunks/assets/font_e71306700ff7378a7cba7f00.woff2')format("woff");}.ff3_c00171{font-family:ff3_c00171;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00171;src:url('chunks/assets/font_28837a2f310e490d447202a6.woff2')format("woff");}.ff4_c00171{font-family:ff4_c00171;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00171;src:url('chunks/assets/font_f989ae31762df7a1e5246646.woff2')format("woff");}.ff5_c00171{font-family:ff5_c00171;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00171;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c00171{font-family:ff6_c00171;line-height:1.219238;font-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_c00171{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m0_c00171{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00171{vertical-align:-96.000000px;}
.v0_c00171{vertical-align:0.000000px;}
.ls0_c00171{letter-spacing:0.000000px;}
.ls1_c00171{letter-spacing:9.000000px;}
.sc__c00171{text-shadow:none;}
.sc0_c00171{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00171{-webkit-text-stroke:0px transparent;}
.sc0_c00171{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00171{word-spacing:-22.737000px;}
.ws3_c00171{word-spacing:-20.250000px;}
.ws0_c00171{word-spacing:-17.352000px;}
.ws1_c00171{word-spacing:-0.285000px;}
.ws4_c00171{word-spacing:0.000000px;}
._3_c00171{margin-left:-25.500000px;}
._1_c00171{margin-left:-18.153000px;}
._14_c00171{margin-left:-15.999000px;}
._2_c00171{margin-left:-13.770000px;}
._17_c00171{margin-left:-11.679000px;}
._1c_c00171{margin-left:-9.483000px;}
._12_c00171{margin-left:-7.506000px;}
._8_c00171{margin-left:-6.018000px;}
._f_c00171{margin-left:-4.290000px;}
._c_c00171{margin-left:-3.129000px;}
._e_c00171{margin-left:-1.872000px;}
._5_c00171{width:1.938000px;}
._4_c00171{width:3.264000px;}
._6_c00171{width:4.284000px;}
._b_c00171{width:5.406000px;}
._9_c00171{width:7.038000px;}
._a_c00171{width:8.670000px;}
._d_c00171{width:10.539000px;}
._7_c00171{width:12.240000px;}
._10_c00171{width:14.235000px;}
._11_c00171{width:16.110000px;}
._19_c00171{width:17.805000px;}
._1e_c00171{width:23.988000px;}
._0_c00171{width:34.974000px;}
._15_c00171{width:37.908000px;}
._1a_c00171{width:42.549000px;}
._1b_c00171{width:180.477000px;}
._13_c00171{width:220.296000px;}
._16_c00171{width:273.456000px;}
._1d_c00171{width:311.895000px;}
._18_c00171{width:521.313000px;}
._1f_c00171{width:1059.813000px;}
.fc2_c00171{color:transparent;}
.fc1_c00171{color:rgb(128,128,128);}
.fc0_c00171{color:rgb(0,0,0);}
.fs7_c00171{font-size:48.000000px;}
.fs4_c00171{font-size:57.000000px;}
.fs3_c00171{font-size:72.000000px;}
.fs5_c00171{font-size:78.000000px;}
.fs2_c00171{font-size:81.000000px;}
.fs0_c00171{font-size:87.000000px;}
.fs1_c00171{font-size:102.000000px;}
.fs6_c00171{font-size:108.000000px;}
.y0_c00171{bottom:0.000000px;}
.y25_c00171{bottom:3.105000px;}
.y24_c00171{bottom:7.228357px;}
.y23_c00171{bottom:87.480000px;}
.y22_c00171{bottom:114.030000px;}
.y21_c00171{bottom:138.480000px;}
.y20_c00171{bottom:163.080000px;}
.y1f_c00171{bottom:187.980000px;}
.y1e_c00171{bottom:213.330000px;}
.y1d_c00171{bottom:237.630000px;}
.y1c_c00171{bottom:261.930000px;}
.y1b_c00171{bottom:286.830000px;}
.y1a_c00171{bottom:310.830000px;}
.y19_c00171{bottom:335.430000px;}
.y18_c00171{bottom:359.730000px;}
.y17_c00171{bottom:384.180000px;}
.y16_c00171{bottom:409.080000px;}
.y15_c00171{bottom:433.680000px;}
.y14_c00171{bottom:457.680000px;}
.y13_c00171{bottom:483.330000px;}
.y12_c00171{bottom:506.580000px;}
.y11_c00171{bottom:530.880000px;}
.y10_c00171{bottom:555.180000px;}
.yf_c00171{bottom:581.130000px;}
.ye_c00171{bottom:605.880000px;}
.yd_c00171{bottom:628.830000px;}
.yc_c00171{bottom:654.180000px;}
.yb_c00171{bottom:677.730000px;}
.ya_c00171{bottom:702.030000px;}
.y9_c00171{bottom:726.030000px;}
.y8_c00171{bottom:750.330000px;}
.y7_c00171{bottom:774.330000px;}
.y6_c00171{bottom:798.630000px;}
.y5_c00171{bottom:822.780000px;}
.y4_c00171{bottom:846.780000px;}
.y3_c00171{bottom:871.380000px;}
.y2_c00171{bottom:894.780000px;}
.y1_c00171{bottom:929.580000px;}
.h7_c00171{height:13.200074px;}
.h8_c00171{height:43.804688px;}
.h6_c00171{height:57.445312px;}
.h2_c00171{height:79.497070px;}
.h3_c00171{height:84.269531px;}
.h4_c00171{height:98.756836px;}
.h1_c00171{height:100.057617px;}
.h5_c00171{height:108.843750px;}
.h0_c00171{height:995.250000px;}
.w2_c00171{width:104.875500px;}
.w0_c00171{width:667.425000px;}
.w1_c00171{width:667.500000px;}
.x0_c00171{left:0.000000px;}
.xb_c00171{left:49.650000px;}
.x8_c00171{left:60.750000px;}
.xa_c00171{left:68.550000px;}
.x9_c00171{left:126.900000px;}
.xf_c00171{left:149.250000px;}
.xd_c00171{left:151.500000px;}
.x7_c00171{left:153.150000px;}
.x6_c00171{left:154.350000px;}
.x5_c00171{left:155.550000px;}
.x3_c00171{left:156.900000px;}
.x2_c00171{left:158.250000px;}
.xe_c00171{left:168.150000px;}
.xc_c00171{left:177.300000px;}
.x4_c00171{left:181.650000px;}
.x1_c00171{left:257.550000px;}
.x10_c00171{left:285.526749px;}
@media print{
.v1_c00171{vertical-align:-85.333333pt;}
.v0_c00171{vertical-align:0.000000pt;}
.ls0_c00171{letter-spacing:0.000000pt;}
.ls1_c00171{letter-spacing:8.000000pt;}
.ws2_c00171{word-spacing:-20.210667pt;}
.ws3_c00171{word-spacing:-18.000000pt;}
.ws0_c00171{word-spacing:-15.424000pt;}
.ws1_c00171{word-spacing:-0.253333pt;}
.ws4_c00171{word-spacing:0.000000pt;}
._3_c00171{margin-left:-22.666667pt;}
._1_c00171{margin-left:-16.136000pt;}
._14_c00171{margin-left:-14.221333pt;}
._2_c00171{margin-left:-12.240000pt;}
._17_c00171{margin-left:-10.381333pt;}
._1c_c00171{margin-left:-8.429333pt;}
._12_c00171{margin-left:-6.672000pt;}
._8_c00171{margin-left:-5.349333pt;}
._f_c00171{margin-left:-3.813333pt;}
._c_c00171{margin-left:-2.781333pt;}
._e_c00171{margin-left:-1.664000pt;}
._5_c00171{width:1.722667pt;}
._4_c00171{width:2.901333pt;}
._6_c00171{width:3.808000pt;}
._b_c00171{width:4.805333pt;}
._9_c00171{width:6.256000pt;}
._a_c00171{width:7.706667pt;}
._d_c00171{width:9.368000pt;}
._7_c00171{width:10.880000pt;}
._10_c00171{width:12.653333pt;}
._11_c00171{width:14.320000pt;}
._19_c00171{width:15.826667pt;}
._1e_c00171{width:21.322667pt;}
._0_c00171{width:31.088000pt;}
._15_c00171{width:33.696000pt;}
._1a_c00171{width:37.821333pt;}
._1b_c00171{width:160.424000pt;}
._13_c00171{width:195.818667pt;}
._16_c00171{width:243.072000pt;}
._1d_c00171{width:277.240000pt;}
._18_c00171{width:463.389333pt;}
._1f_c00171{width:942.056000pt;}
.fs7_c00171{font-size:42.666667pt;}
.fs4_c00171{font-size:50.666667pt;}
.fs3_c00171{font-size:64.000000pt;}
.fs5_c00171{font-size:69.333333pt;}
.fs2_c00171{font-size:72.000000pt;}
.fs0_c00171{font-size:77.333333pt;}
.fs1_c00171{font-size:90.666667pt;}
.fs6_c00171{font-size:96.000000pt;}
.y0_c00171{bottom:0.000000pt;}
.y25_c00171{bottom:2.760000pt;}
.y24_c00171{bottom:6.425206pt;}
.y23_c00171{bottom:77.760000pt;}
.y22_c00171{bottom:101.360000pt;}
.y21_c00171{bottom:123.093333pt;}
.y20_c00171{bottom:144.960000pt;}
.y1f_c00171{bottom:167.093333pt;}
.y1e_c00171{bottom:189.626667pt;}
.y1d_c00171{bottom:211.226667pt;}
.y1c_c00171{bottom:232.826667pt;}
.y1b_c00171{bottom:254.960000pt;}
.y1a_c00171{bottom:276.293333pt;}
.y19_c00171{bottom:298.160000pt;}
.y18_c00171{bottom:319.760000pt;}
.y17_c00171{bottom:341.493333pt;}
.y16_c00171{bottom:363.626667pt;}
.y15_c00171{bottom:385.493333pt;}
.y14_c00171{bottom:406.826667pt;}
.y13_c00171{bottom:429.626667pt;}
.y12_c00171{bottom:450.293333pt;}
.y11_c00171{bottom:471.893333pt;}
.y10_c00171{bottom:493.493333pt;}
.yf_c00171{bottom:516.560000pt;}
.ye_c00171{bottom:538.560000pt;}
.yd_c00171{bottom:558.960000pt;}
.yc_c00171{bottom:581.493333pt;}
.yb_c00171{bottom:602.426667pt;}
.ya_c00171{bottom:624.026667pt;}
.y9_c00171{bottom:645.360000pt;}
.y8_c00171{bottom:666.960000pt;}
.y7_c00171{bottom:688.293333pt;}
.y6_c00171{bottom:709.893333pt;}
.y5_c00171{bottom:731.360000pt;}
.y4_c00171{bottom:752.693333pt;}
.y3_c00171{bottom:774.560000pt;}
.y2_c00171{bottom:795.360000pt;}
.y1_c00171{bottom:826.293333pt;}
.h7_c00171{height:11.733399pt;}
.h8_c00171{height:38.937500pt;}
.h6_c00171{height:51.062500pt;}
.h2_c00171{height:70.664062pt;}
.h3_c00171{height:74.906250pt;}
.h4_c00171{height:87.783854pt;}
.h1_c00171{height:88.940104pt;}
.h5_c00171{height:96.750000pt;}
.h0_c00171{height:884.666667pt;}
.w2_c00171{width:93.222667pt;}
.w0_c00171{width:593.266667pt;}
.w1_c00171{width:593.333333pt;}
.x0_c00171{left:0.000000pt;}
.xb_c00171{left:44.133333pt;}
.x8_c00171{left:54.000000pt;}
.xa_c00171{left:60.933333pt;}
.x9_c00171{left:112.800000pt;}
.xf_c00171{left:132.666667pt;}
.xd_c00171{left:134.666667pt;}
.x7_c00171{left:136.133333pt;}
.x6_c00171{left:137.200000pt;}
.x5_c00171{left:138.266667pt;}
.x3_c00171{left:139.466667pt;}
.x2_c00171{left:140.666667pt;}
.xe_c00171{left:149.466667pt;}
.xc_c00171{left:157.600000pt;}
.x4_c00171{left:161.466667pt;}
.x1_c00171{left:228.933333pt;}
.x10_c00171{left:253.801554pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c63dcf8e92430ea9789592af.woff2')format("woff");}.ff1_c00172{font-family:ff1_c00172;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00172;src:url('chunks/assets/font_215287b3e47ba0b1a6d167c1.woff2')format("woff");}.ff2_c00172{font-family:ff2_c00172;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00172;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff3_c00172{font-family:ff3_c00172;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00172;src:url('chunks/assets/font_cfbfa71fb9da42aa31af931f.woff2')format("woff");}.ff4_c00172{font-family:ff4_c00172;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00172;src:url('chunks/assets/font_237966c03355d3d4ffda877e.woff2')format("woff");}.ff5_c00172{font-family:ff5_c00172;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00172;src:url('chunks/assets/font_6cb4e7db72d3fff3506f27e5.woff2')format("woff");}.ff6_c00172{font-family:ff6_c00172;line-height:1.437000;font-style:normal;font-weight: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_c00172;src:url('chunks/assets/font_124a2e26e2fd8661a571e4f8.woff2')format("woff");}.ff7_c00172{font-family:ff7_c00172;line-height:1.437000;font-style:normal;font-weight: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_c00172;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff8_c00172{font-family:ff8_c00172;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00172{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00172{vertical-align:0.000000px;}
.ls3_c00172{letter-spacing:0.000000px;}
.ls0_c00172{letter-spacing:2.100000px;}
.ls1_c00172{letter-spacing:4.350000px;}
.ls2_c00172{letter-spacing:23.550000px;}
.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:-59.184000px;}
.ws2_c00172{word-spacing:0.000000px;}
.ws1_c00172{word-spacing:1.794000px;}
._25_c00172{margin-left:-28.674000px;}
._21_c00172{margin-left:-27.135000px;}
._11_c00172{margin-left:-24.300000px;}
._10_c00172{margin-left:-19.683000px;}
._29_c00172{margin-left:-16.929000px;}
._24_c00172{margin-left:-15.228000px;}
._e_c00172{margin-left:-13.365000px;}
._1a_c00172{margin-left:-11.967000px;}
._1b_c00172{margin-left:-10.653000px;}
._28_c00172{margin-left:-8.691000px;}
._12_c00172{margin-left:-7.371000px;}
._19_c00172{margin-left:-5.346000px;}
._4_c00172{margin-left:-4.050000px;}
._0_c00172{margin-left:-2.592000px;}
._d_c00172{margin-left:-1.053000px;}
._8_c00172{width:1.620000px;}
._5_c00172{width:2.754000px;}
._7_c00172{width:4.212000px;}
._6_c00172{width:5.508000px;}
._9_c00172{width:6.642000px;}
._a_c00172{width:8.019000px;}
._3_c00172{width:9.315000px;}
._13_c00172{width:10.854000px;}
._15_c00172{width:11.907000px;}
._18_c00172{width:13.041000px;}
._2_c00172{width:14.985000px;}
._c_c00172{width:17.172000px;}
._26_c00172{width:20.658000px;}
._1f_c00172{width:22.659000px;}
._27_c00172{width:24.219000px;}
._20_c00172{width:25.272000px;}
._1d_c00172{width:29.322000px;}
._2a_c00172{width:31.695000px;}
._f_c00172{width:33.453000px;}
._b_c00172{width:39.852000px;}
._2b_c00172{width:41.019000px;}
._1_c00172{width:49.977000px;}
._14_c00172{width:109.755000px;}
._16_c00172{width:168.342000px;}
._23_c00172{width:195.696000px;}
._17_c00172{width:221.373000px;}
._1c_c00172{width:306.330000px;}
._22_c00172{width:314.685000px;}
._1e_c00172{width:382.563000px;}
.fc2_c00172{color:transparent;}
.fc1_c00172{color:rgb(128,128,128);}
.fc0_c00172{color:rgb(0,0,0);}
.fs4_c00172{font-size:42.000000px;}
.fs5_c00172{font-size:48.000000px;}
.fs3_c00172{font-size:69.000000px;}
.fs1_c00172{font-size:72.000000px;}
.fs0_c00172{font-size:81.000000px;}
.fs2_c00172{font-size:87.000000px;}
.y0_c00172{bottom:0.000000px;}
.y25_c00172{bottom:3.105000px;}
.y24_c00172{bottom:7.228355px;}
.y23_c00172{bottom:54.885000px;}
.y22_c00172{bottom:81.585000px;}
.y21_c00172{bottom:107.235000px;}
.y20_c00172{bottom:131.985000px;}
.y1f_c00172{bottom:154.785000px;}
.y1e_c00172{bottom:178.485000px;}
.y1d_c00172{bottom:203.385000px;}
.y1c_c00172{bottom:231.135000px;}
.y1b_c00172{bottom:255.735000px;}
.y1a_c00172{bottom:278.685000px;}
.y19_c00172{bottom:303.435000px;}
.y18_c00172{bottom:327.735000px;}
.y17_c00172{bottom:352.935000px;}
.y16_c00172{bottom:375.885000px;}
.y15_c00172{bottom:401.835000px;}
.y14_c00172{bottom:426.285000px;}
.y13_c00172{bottom:450.135000px;}
.y12_c00172{bottom:475.185000px;}
.y11_c00172{bottom:499.485000px;}
.y10_c00172{bottom:524.385000px;}
.yf_c00172{bottom:548.685000px;}
.ye_c00172{bottom:572.985000px;}
.yd_c00172{bottom:597.585000px;}
.yc_c00172{bottom:621.585000px;}
.yb_c00172{bottom:644.985000px;}
.ya_c00172{bottom:669.135000px;}
.y9_c00172{bottom:693.585000px;}
.y8_c00172{bottom:718.185000px;}
.y7_c00172{bottom:742.185000px;}
.y6_c00172{bottom:767.085000px;}
.y5_c00172{bottom:793.335000px;}
.y4_c00172{bottom:816.285000px;}
.y3_c00172{bottom:840.735000px;}
.y2_c00172{bottom:865.035000px;}
.y1_c00172{bottom:890.235000px;}
.h6_c00172{height:13.200074px;}
.h5_c00172{height:42.328125px;}
.h7_c00172{height:43.804688px;}
.h2_c00172{height:79.497070px;}
.h3_c00172{height:91.160156px;}
.h4_c00172{height:91.176000px;}
.h0_c00172{height:977.925000px;}
.h1_c00172{height:978.000000px;}
.w2_c00172{width:104.875500px;}
.w0_c00172{width:664.200000px;}
.w1_c00172{width:664.500000px;}
.x0_c00172{left:0.000000px;}
.x2_c00172{left:46.950000px;}
.x3_c00172{left:48.600000px;}
.x1_c00172{left:49.650000px;}
.x4_c00172{left:53.550000px;}
.x5_c00172{left:55.050000px;}
.x6_c00172{left:56.100000px;}
.x7_c00172{left:57.150000px;}
.x8_c00172{left:58.500000px;}
.xa_c00172{left:283.914230px;}
.x9_c00172{left:521.400000px;}
@media print{
.v0_c00172{vertical-align:0.000000pt;}
.ls3_c00172{letter-spacing:0.000000pt;}
.ls0_c00172{letter-spacing:1.866667pt;}
.ls1_c00172{letter-spacing:3.866667pt;}
.ls2_c00172{letter-spacing:20.933333pt;}
.ws0_c00172{word-spacing:-52.608000pt;}
.ws2_c00172{word-spacing:0.000000pt;}
.ws1_c00172{word-spacing:1.594667pt;}
._25_c00172{margin-left:-25.488000pt;}
._21_c00172{margin-left:-24.120000pt;}
._11_c00172{margin-left:-21.600000pt;}
._10_c00172{margin-left:-17.496000pt;}
._29_c00172{margin-left:-15.048000pt;}
._24_c00172{margin-left:-13.536000pt;}
._e_c00172{margin-left:-11.880000pt;}
._1a_c00172{margin-left:-10.637333pt;}
._1b_c00172{margin-left:-9.469333pt;}
._28_c00172{margin-left:-7.725333pt;}
._12_c00172{margin-left:-6.552000pt;}
._19_c00172{margin-left:-4.752000pt;}
._4_c00172{margin-left:-3.600000pt;}
._0_c00172{margin-left:-2.304000pt;}
._d_c00172{margin-left:-0.936000pt;}
._8_c00172{width:1.440000pt;}
._5_c00172{width:2.448000pt;}
._7_c00172{width:3.744000pt;}
._6_c00172{width:4.896000pt;}
._9_c00172{width:5.904000pt;}
._a_c00172{width:7.128000pt;}
._3_c00172{width:8.280000pt;}
._13_c00172{width:9.648000pt;}
._15_c00172{width:10.584000pt;}
._18_c00172{width:11.592000pt;}
._2_c00172{width:13.320000pt;}
._c_c00172{width:15.264000pt;}
._26_c00172{width:18.362667pt;}
._1f_c00172{width:20.141333pt;}
._27_c00172{width:21.528000pt;}
._20_c00172{width:22.464000pt;}
._1d_c00172{width:26.064000pt;}
._2a_c00172{width:28.173333pt;}
._f_c00172{width:29.736000pt;}
._b_c00172{width:35.424000pt;}
._2b_c00172{width:36.461333pt;}
._1_c00172{width:44.424000pt;}
._14_c00172{width:97.560000pt;}
._16_c00172{width:149.637333pt;}
._23_c00172{width:173.952000pt;}
._17_c00172{width:196.776000pt;}
._1c_c00172{width:272.293333pt;}
._22_c00172{width:279.720000pt;}
._1e_c00172{width:340.056000pt;}
.fs4_c00172{font-size:37.333333pt;}
.fs5_c00172{font-size:42.666667pt;}
.fs3_c00172{font-size:61.333333pt;}
.fs1_c00172{font-size:64.000000pt;}
.fs0_c00172{font-size:72.000000pt;}
.fs2_c00172{font-size:77.333333pt;}
.y0_c00172{bottom:0.000000pt;}
.y25_c00172{bottom:2.760000pt;}
.y24_c00172{bottom:6.425204pt;}
.y23_c00172{bottom:48.786667pt;}
.y22_c00172{bottom:72.520000pt;}
.y21_c00172{bottom:95.320000pt;}
.y20_c00172{bottom:117.320000pt;}
.y1f_c00172{bottom:137.586667pt;}
.y1e_c00172{bottom:158.653333pt;}
.y1d_c00172{bottom:180.786667pt;}
.y1c_c00172{bottom:205.453333pt;}
.y1b_c00172{bottom:227.320000pt;}
.y1a_c00172{bottom:247.720000pt;}
.y19_c00172{bottom:269.720000pt;}
.y18_c00172{bottom:291.320000pt;}
.y17_c00172{bottom:313.720000pt;}
.y16_c00172{bottom:334.120000pt;}
.y15_c00172{bottom:357.186667pt;}
.y14_c00172{bottom:378.920000pt;}
.y13_c00172{bottom:400.120000pt;}
.y12_c00172{bottom:422.386667pt;}
.y11_c00172{bottom:443.986667pt;}
.y10_c00172{bottom:466.120000pt;}
.yf_c00172{bottom:487.720000pt;}
.ye_c00172{bottom:509.320000pt;}
.yd_c00172{bottom:531.186667pt;}
.yc_c00172{bottom:552.520000pt;}
.yb_c00172{bottom:573.320000pt;}
.ya_c00172{bottom:594.786667pt;}
.y9_c00172{bottom:616.520000pt;}
.y8_c00172{bottom:638.386667pt;}
.y7_c00172{bottom:659.720000pt;}
.y6_c00172{bottom:681.853333pt;}
.y5_c00172{bottom:705.186667pt;}
.y4_c00172{bottom:725.586667pt;}
.y3_c00172{bottom:747.320000pt;}
.y2_c00172{bottom:768.920000pt;}
.y1_c00172{bottom:791.320000pt;}
.h6_c00172{height:11.733399pt;}
.h5_c00172{height:37.625000pt;}
.h7_c00172{height:38.937500pt;}
.h2_c00172{height:70.664062pt;}
.h3_c00172{height:81.031250pt;}
.h4_c00172{height:81.045333pt;}
.h0_c00172{height:869.266667pt;}
.h1_c00172{height:869.333333pt;}
.w2_c00172{width:93.222667pt;}
.w0_c00172{width:590.400000pt;}
.w1_c00172{width:590.666667pt;}
.x0_c00172{left:0.000000pt;}
.x2_c00172{left:41.733333pt;}
.x3_c00172{left:43.200000pt;}
.x1_c00172{left:44.133333pt;}
.x4_c00172{left:47.600000pt;}
.x5_c00172{left:48.933333pt;}
.x6_c00172{left:49.866667pt;}
.x7_c00172{left:50.800000pt;}
.x8_c00172{left:52.000000pt;}
.xa_c00172{left:252.368205pt;}
.x9_c00172{left:463.466667pt;}
}





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

.ir_c00173:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00173{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00173;src:url('chunks/assets/font_737b5c1228786751b763be35.woff2')format("woff");}.ff1_c00173{font-family:ff1_c00173;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00173;src:url('chunks/assets/font_18e3f6c7d503b8edec2e9fdc.woff2')format("woff");}.ff2_c00173{font-family:ff2_c00173;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00173;src:url('chunks/assets/font_2080d0108a96da8dcf7c6d27.woff2')format("woff");}.ff3_c00173{font-family:ff3_c00173;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00173;src:url('chunks/assets/font_6aeb856cfab2ee421df130bb.woff2')format("woff");}.ff4_c00173{font-family:ff4_c00173;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00173;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c00173{font-family:ff5_c00173;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00173{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00173{vertical-align:-4.200000px;}
.v0_c00173{vertical-align:0.000000px;}
.ls3_c00173{letter-spacing:0.000000px;}
.ls0_c00173{letter-spacing:18.000000px;}
.ls2_c00173{letter-spacing:27.948000px;}
.ls1_c00173{letter-spacing:197.460000px;}
.sc__c00173{text-shadow:none;}
.sc0_c00173{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00173{-webkit-text-stroke:0px transparent;}
.sc0_c00173{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00173{word-spacing:-36.000000px;}
.ws4_c00173{word-spacing:-21.750000px;}
.ws2_c00173{word-spacing:-14.250000px;}
.ws1_c00173{word-spacing:-13.200000px;}
.ws3_c00173{word-spacing:-2.508000px;}
.ws5_c00173{word-spacing:0.000000px;}
._18_c00173{margin-left:-14.742000px;}
._e_c00173{margin-left:-8.349000px;}
._16_c00173{margin-left:-6.744000px;}
._19_c00173{margin-left:-5.580000px;}
._1a_c00173{margin-left:-4.086000px;}
._17_c00173{margin-left:-2.946000px;}
._d_c00173{margin-left:-1.710000px;}
._9_c00173{width:1.938000px;}
._7_c00173{width:4.047000px;}
._1b_c00173{width:5.130000px;}
._2_c00173{width:6.441000px;}
._b_c00173{width:7.581000px;}
._6_c00173{width:8.949000px;}
._a_c00173{width:10.146000px;}
._5_c00173{width:11.286000px;}
._3_c00173{width:12.597000px;}
._8_c00173{width:15.903000px;}
._0_c00173{width:17.157000px;}
._1_c00173{width:18.411000px;}
._11_c00173{width:19.665000px;}
._4_c00173{width:20.919000px;}
._12_c00173{width:21.921000px;}
._c_c00173{width:23.940000px;}
._13_c00173{width:24.966000px;}
._1e_c00173{width:26.049000px;}
._f_c00173{width:27.075000px;}
._10_c00173{width:28.614000px;}
._1c_c00173{width:29.754000px;}
._1f_c00173{width:31.290000px;}
._15_c00173{width:33.096000px;}
._14_c00173{width:36.081000px;}
._1d_c00173{width:49.419000px;}
.fc2_c00173{color:transparent;}
.fc1_c00173{color:rgb(128,128,128);}
.fc0_c00173{color:rgb(0,0,0);}
.fs6_c00173{font-size:48.000000px;}
.fs4_c00173{font-size:52.800000px;}
.fs0_c00173{font-size:57.000000px;}
.fs2_c00173{font-size:60.000000px;}
.fs3_c00173{font-size:66.000000px;}
.fs1_c00173{font-size:72.000000px;}
.fs5_c00173{font-size:87.000000px;}
.y0_c00173{bottom:0.000000px;}
.y23_c00173{bottom:3.105000px;}
.y22_c00173{bottom:7.228357px;}
.y21_c00173{bottom:66.480000px;}
.y20_c00173{bottom:88.830000px;}
.y1f_c00173{bottom:115.080000px;}
.y1e_c00173{bottom:139.080000px;}
.y1d_c00173{bottom:165.030000px;}
.y1c_c00173{bottom:188.730000px;}
.y1b_c00173{bottom:213.630000px;}
.y1a_c00173{bottom:238.230000px;}
.y19_c00173{bottom:262.680000px;}
.y18_c00173{bottom:287.580000px;}
.y17_c00173{bottom:311.880000px;}
.y16_c00173{bottom:336.480000px;}
.y15_c00173{bottom:361.530000px;}
.y14_c00173{bottom:386.130000px;}
.y13_c00173{bottom:410.730000px;}
.y12_c00173{bottom:434.730000px;}
.y11_c00173{bottom:459.030000px;}
.y10_c00173{bottom:484.080000px;}
.yf_c00173{bottom:508.230000px;}
.ye_c00173{bottom:534.030000px;}
.yd_c00173{bottom:556.530000px;}
.yc_c00173{bottom:581.280000px;}
.yb_c00173{bottom:606.480000px;}
.ya_c00173{bottom:654.480000px;}
.y9_c00173{bottom:700.980000px;}
.y8_c00173{bottom:727.080000px;}
.y7_c00173{bottom:751.380000px;}
.y6_c00173{bottom:775.980000px;}
.y5_c00173{bottom:800.580000px;}
.y4_c00173{bottom:824.880000px;}
.y3_c00173{bottom:848.880000px;}
.y2_c00173{bottom:873.180000px;}
.y1_c00173{bottom:897.480000px;}
.h6_c00173{height:13.200074px;}
.h7_c00173{height:43.804688px;}
.h1_c00173{height:57.445312px;}
.h4_c00173{height:62.315625px;}
.h3_c00173{height:70.628906px;}
.h2_c00173{height:72.562500px;}
.h5_c00173{height:87.679688px;}
.h0_c00173{height:995.250000px;}
.w2_c00173{width:104.875500px;}
.w0_c00173{width:667.425000px;}
.w1_c00173{width:667.500000px;}
.x0_c00173{left:0.000000px;}
.x8_c00173{left:30.000000px;}
.x7_c00173{left:31.050000px;}
.xb_c00173{left:120.150000px;}
.xa_c00173{left:121.200000px;}
.x9_c00173{left:122.400000px;}
.x6_c00173{left:123.900000px;}
.x3_c00173{left:126.000000px;}
.x2_c00173{left:127.200000px;}
.x1_c00173{left:128.700000px;}
.x4_c00173{left:187.650000px;}
.x5_c00173{left:190.350000px;}
.xd_c00173{left:285.526749px;}
.xc_c00173{left:589.500000px;}
@media print{
.v1_c00173{vertical-align:-3.733333pt;}
.v0_c00173{vertical-align:0.000000pt;}
.ls3_c00173{letter-spacing:0.000000pt;}
.ls0_c00173{letter-spacing:16.000000pt;}
.ls2_c00173{letter-spacing:24.842667pt;}
.ls1_c00173{letter-spacing:175.520000pt;}
.ws0_c00173{word-spacing:-32.000000pt;}
.ws4_c00173{word-spacing:-19.333333pt;}
.ws2_c00173{word-spacing:-12.666667pt;}
.ws1_c00173{word-spacing:-11.733333pt;}
.ws3_c00173{word-spacing:-2.229333pt;}
.ws5_c00173{word-spacing:0.000000pt;}
._18_c00173{margin-left:-13.104000pt;}
._e_c00173{margin-left:-7.421333pt;}
._16_c00173{margin-left:-5.994667pt;}
._19_c00173{margin-left:-4.960000pt;}
._1a_c00173{margin-left:-3.632000pt;}
._17_c00173{margin-left:-2.618667pt;}
._d_c00173{margin-left:-1.520000pt;}
._9_c00173{width:1.722667pt;}
._7_c00173{width:3.597333pt;}
._1b_c00173{width:4.560000pt;}
._2_c00173{width:5.725333pt;}
._b_c00173{width:6.738667pt;}
._6_c00173{width:7.954667pt;}
._a_c00173{width:9.018667pt;}
._5_c00173{width:10.032000pt;}
._3_c00173{width:11.197333pt;}
._8_c00173{width:14.136000pt;}
._0_c00173{width:15.250667pt;}
._1_c00173{width:16.365333pt;}
._11_c00173{width:17.480000pt;}
._4_c00173{width:18.594667pt;}
._12_c00173{width:19.485333pt;}
._c_c00173{width:21.280000pt;}
._13_c00173{width:22.192000pt;}
._1e_c00173{width:23.154667pt;}
._f_c00173{width:24.066667pt;}
._10_c00173{width:25.434667pt;}
._1c_c00173{width:26.448000pt;}
._1f_c00173{width:27.813333pt;}
._15_c00173{width:29.418667pt;}
._14_c00173{width:32.072000pt;}
._1d_c00173{width:43.928000pt;}
.fs6_c00173{font-size:42.666667pt;}
.fs4_c00173{font-size:46.933333pt;}
.fs0_c00173{font-size:50.666667pt;}
.fs2_c00173{font-size:53.333333pt;}
.fs3_c00173{font-size:58.666667pt;}
.fs1_c00173{font-size:64.000000pt;}
.fs5_c00173{font-size:77.333333pt;}
.y0_c00173{bottom:0.000000pt;}
.y23_c00173{bottom:2.760000pt;}
.y22_c00173{bottom:6.425206pt;}
.y21_c00173{bottom:59.093333pt;}
.y20_c00173{bottom:78.960000pt;}
.y1f_c00173{bottom:102.293333pt;}
.y1e_c00173{bottom:123.626667pt;}
.y1d_c00173{bottom:146.693333pt;}
.y1c_c00173{bottom:167.760000pt;}
.y1b_c00173{bottom:189.893333pt;}
.y1a_c00173{bottom:211.760000pt;}
.y19_c00173{bottom:233.493333pt;}
.y18_c00173{bottom:255.626667pt;}
.y17_c00173{bottom:277.226667pt;}
.y16_c00173{bottom:299.093333pt;}
.y15_c00173{bottom:321.360000pt;}
.y14_c00173{bottom:343.226667pt;}
.y13_c00173{bottom:365.093333pt;}
.y12_c00173{bottom:386.426667pt;}
.y11_c00173{bottom:408.026667pt;}
.y10_c00173{bottom:430.293333pt;}
.yf_c00173{bottom:451.760000pt;}
.ye_c00173{bottom:474.693333pt;}
.yd_c00173{bottom:494.693333pt;}
.yc_c00173{bottom:516.693333pt;}
.yb_c00173{bottom:539.093333pt;}
.ya_c00173{bottom:581.760000pt;}
.y9_c00173{bottom:623.093333pt;}
.y8_c00173{bottom:646.293333pt;}
.y7_c00173{bottom:667.893333pt;}
.y6_c00173{bottom:689.760000pt;}
.y5_c00173{bottom:711.626667pt;}
.y4_c00173{bottom:733.226667pt;}
.y3_c00173{bottom:754.560000pt;}
.y2_c00173{bottom:776.160000pt;}
.y1_c00173{bottom:797.760000pt;}
.h6_c00173{height:11.733399pt;}
.h7_c00173{height:38.937500pt;}
.h1_c00173{height:51.062500pt;}
.h4_c00173{height:55.391667pt;}
.h3_c00173{height:62.781250pt;}
.h2_c00173{height:64.500000pt;}
.h5_c00173{height:77.937500pt;}
.h0_c00173{height:884.666667pt;}
.w2_c00173{width:93.222667pt;}
.w0_c00173{width:593.266667pt;}
.w1_c00173{width:593.333333pt;}
.x0_c00173{left:0.000000pt;}
.x8_c00173{left:26.666667pt;}
.x7_c00173{left:27.600000pt;}
.xb_c00173{left:106.800000pt;}
.xa_c00173{left:107.733333pt;}
.x9_c00173{left:108.800000pt;}
.x6_c00173{left:110.133333pt;}
.x3_c00173{left:112.000000pt;}
.x2_c00173{left:113.066667pt;}
.x1_c00173{left:114.400000pt;}
.x4_c00173{left:166.800000pt;}
.x5_c00173{left:169.200000pt;}
.xd_c00173{left:253.801554pt;}
.xc_c00173{left:524.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_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_e8314a4a8ec8f20a97200928.woff2')format("woff");}.ff1_c00174{font-family:ff1_c00174;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00174;src:url('chunks/assets/font_8205eac58542759834024847.woff2')format("woff");}.ff2_c00174{font-family:ff2_c00174;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00174;src:url('chunks/assets/font_a308d9b46ce25c98598a3778.woff2')format("woff");}.ff3_c00174{font-family:ff3_c00174;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00174;src:url('chunks/assets/font_d55245ef4706544454365834.woff2')format("woff");}.ff4_c00174{font-family:ff4_c00174;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00174;src:url('chunks/assets/font_04c9ebc0ecbd36d18507b9dc.woff2')format("woff");}.ff5_c00174{font-family:ff5_c00174;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00174;src:url('chunks/assets/font_8f6e098f9f215c337c11d198.woff2')format("woff");}.ff6_c00174{font-family:ff6_c00174;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00174;src:url('chunks/assets/font_d09e5d6d67b77930114f5bff.woff2')format("woff");}.ff7_c00174{font-family:ff7_c00174;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00174;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff8_c00174{font-family:ff8_c00174;line-height:1.219238;font-style: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;}
.ls5_c00174{letter-spacing:-3.000000px;}
.ls4_c00174{letter-spacing:0.000000px;}
.ls2_c00174{letter-spacing:2.550000px;}
.ls0_c00174{letter-spacing:17.700000px;}
.ls3_c00174{letter-spacing:28.350000px;}
.ls1_c00174{letter-spacing:93.750000px;}
.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;}
}
.ws4_c00174{word-spacing:-35.028000px;}
.ws2_c00174{word-spacing:-20.250000px;}
.ws3_c00174{word-spacing:-17.250000px;}
.ws0_c00174{word-spacing:-2.565000px;}
.ws5_c00174{word-spacing:0.000000px;}
.ws1_c00174{word-spacing:4.368000px;}
._4_c00174{margin-left:-23.661000px;}
._1e_c00174{margin-left:-22.473000px;}
._1f_c00174{margin-left:-20.100000px;}
._6_c00174{margin-left:-9.504000px;}
._0_c00174{margin-left:-7.722000px;}
._1_c00174{margin-left:-6.039000px;}
._8_c00174{margin-left:-4.851000px;}
._2_c00174{margin-left:-2.970000px;}
._a_c00174{margin-left:-1.386000px;}
._3_c00174{width:1.980000px;}
._d_c00174{width:3.069000px;}
._12_c00174{width:4.806000px;}
._c_c00174{width:6.237000px;}
._9_c00174{width:7.326000px;}
._5_c00174{width:8.514000px;}
._11_c00174{width:9.723000px;}
._7_c00174{width:10.791000px;}
._10_c00174{width:12.111000px;}
._16_c00174{width:13.188000px;}
._b_c00174{width:14.751000px;}
._f_c00174{width:15.939000px;}
._14_c00174{width:17.745000px;}
._13_c00174{width:18.825000px;}
._15_c00174{width:20.223000px;}
._1b_c00174{width:21.546000px;}
._17_c00174{width:22.605000px;}
._1a_c00174{width:23.901000px;}
._18_c00174{width:26.334000px;}
._19_c00174{width:27.759000px;}
._20_c00174{width:33.912000px;}
._1d_c00174{width:35.310000px;}
._22_c00174{width:47.925000px;}
._e_c00174{width:69.300000px;}
._1c_c00174{width:73.194000px;}
._21_c00174{width:298.740000px;}
.fc2_c00174{color:transparent;}
.fc1_c00174{color:rgb(128,128,128);}
.fc0_c00174{color:rgb(0,0,0);}
.fs7_c00174{font-size:48.000000px;}
.fs1_c00174{font-size:57.000000px;}
.fs5_c00174{font-size:63.000000px;}
.fs2_c00174{font-size:69.000000px;}
.fs6_c00174{font-size:72.000000px;}
.fs3_c00174{font-size:81.000000px;}
.fs4_c00174{font-size:87.000000px;}
.fs0_c00174{font-size:99.000000px;}
.y0_c00174{bottom:0.000000px;}
.y28_c00174{bottom:3.105000px;}
.y27_c00174{bottom:7.228371px;}
.y24_c00174{bottom:64.215000px;}
.y23_c00174{bottom:89.565000px;}
.y22_c00174{bottom:114.165000px;}
.y21_c00174{bottom:137.415000px;}
.y20_c00174{bottom:163.365000px;}
.y1f_c00174{bottom:188.115000px;}
.y1e_c00174{bottom:212.415000px;}
.y1d_c00174{bottom:237.315000px;}
.y1c_c00174{bottom:261.915000px;}
.y1b_c00174{bottom:285.915000px;}
.y26_c00174{bottom:298.815000px;}
.y1a_c00174{bottom:309.915000px;}
.y25_c00174{bottom:323.415000px;}
.y19_c00174{bottom:333.765000px;}
.y18_c00174{bottom:358.215000px;}
.y17_c00174{bottom:382.365000px;}
.y16_c00174{bottom:406.815000px;}
.y15_c00174{bottom:430.665000px;}
.y14_c00174{bottom:455.265000px;}
.y13_c00174{bottom:479.265000px;}
.y12_c00174{bottom:503.565000px;}
.y11_c00174{bottom:527.865000px;}
.y10_c00174{bottom:552.165000px;}
.yf_c00174{bottom:576.165000px;}
.ye_c00174{bottom:600.765000px;}
.yd_c00174{bottom:624.015000px;}
.yc_c00174{bottom:648.015000px;}
.yb_c00174{bottom:672.615000px;}
.ya_c00174{bottom:696.915000px;}
.y9_c00174{bottom:720.315000px;}
.y8_c00174{bottom:745.515000px;}
.y7_c00174{bottom:769.965000px;}
.y6_c00174{bottom:794.565000px;}
.y5_c00174{bottom:818.865000px;}
.y4_c00174{bottom:844.215000px;}
.y3_c00174{bottom:868.065000px;}
.y2_c00174{bottom:892.665000px;}
.y1_c00174{bottom:926.865000px;}
.h9_c00174{height:13.200074px;}
.ha_c00174{height:43.804688px;}
.h3_c00174{height:57.445312px;}
.h7_c00174{height:61.800293px;}
.h4_c00174{height:72.312000px;}
.h5_c00174{height:79.497070px;}
.h8_c00174{height:84.269531px;}
.h6_c00174{height:87.679688px;}
.h2_c00174{height:115.870605px;}
.h0_c00174{height:989.025000px;}
.h1_c00174{height:989.250000px;}
.w1_c00174{width:104.875500px;}
.w0_c00174{width:672.000000px;}
.x0_c00174{left:0.000000px;}
.x5_c00174{left:39.750000px;}
.x6_c00174{left:41.550000px;}
.x7_c00174{left:42.900000px;}
.x1_c00174{left:45.600000px;}
.x4_c00174{left:46.800000px;}
.x2_c00174{left:47.850000px;}
.x3_c00174{left:49.500000px;}
.xb_c00174{left:287.814240px;}
.x8_c00174{left:458.700000px;}
.xa_c00174{left:575.100000px;}
.x9_c00174{left:588.900000px;}
@media print{
.v0_c00174{vertical-align:0.000000pt;}
.ls5_c00174{letter-spacing:-2.666667pt;}
.ls4_c00174{letter-spacing:0.000000pt;}
.ls2_c00174{letter-spacing:2.266667pt;}
.ls0_c00174{letter-spacing:15.733333pt;}
.ls3_c00174{letter-spacing:25.200000pt;}
.ls1_c00174{letter-spacing:83.333333pt;}
.ws4_c00174{word-spacing:-31.136000pt;}
.ws2_c00174{word-spacing:-18.000000pt;}
.ws3_c00174{word-spacing:-15.333333pt;}
.ws0_c00174{word-spacing:-2.280000pt;}
.ws5_c00174{word-spacing:0.000000pt;}
.ws1_c00174{word-spacing:3.882667pt;}
._4_c00174{margin-left:-21.032000pt;}
._1e_c00174{margin-left:-19.976000pt;}
._1f_c00174{margin-left:-17.866667pt;}
._6_c00174{margin-left:-8.448000pt;}
._0_c00174{margin-left:-6.864000pt;}
._1_c00174{margin-left:-5.368000pt;}
._8_c00174{margin-left:-4.312000pt;}
._2_c00174{margin-left:-2.640000pt;}
._a_c00174{margin-left:-1.232000pt;}
._3_c00174{width:1.760000pt;}
._d_c00174{width:2.728000pt;}
._12_c00174{width:4.272000pt;}
._c_c00174{width:5.544000pt;}
._9_c00174{width:6.512000pt;}
._5_c00174{width:7.568000pt;}
._11_c00174{width:8.642667pt;}
._7_c00174{width:9.592000pt;}
._10_c00174{width:10.765333pt;}
._16_c00174{width:11.722667pt;}
._b_c00174{width:13.112000pt;}
._f_c00174{width:14.168000pt;}
._14_c00174{width:15.773333pt;}
._13_c00174{width:16.733333pt;}
._15_c00174{width:17.976000pt;}
._1b_c00174{width:19.152000pt;}
._17_c00174{width:20.093333pt;}
._1a_c00174{width:21.245333pt;}
._18_c00174{width:23.408000pt;}
._19_c00174{width:24.674667pt;}
._20_c00174{width:30.144000pt;}
._1d_c00174{width:31.386667pt;}
._22_c00174{width:42.600000pt;}
._e_c00174{width:61.600000pt;}
._1c_c00174{width:65.061333pt;}
._21_c00174{width:265.546667pt;}
.fs7_c00174{font-size:42.666667pt;}
.fs1_c00174{font-size:50.666667pt;}
.fs5_c00174{font-size:56.000000pt;}
.fs2_c00174{font-size:61.333333pt;}
.fs6_c00174{font-size:64.000000pt;}
.fs3_c00174{font-size:72.000000pt;}
.fs4_c00174{font-size:77.333333pt;}
.fs0_c00174{font-size:88.000000pt;}
.y0_c00174{bottom:0.000000pt;}
.y28_c00174{bottom:2.760000pt;}
.y27_c00174{bottom:6.425219pt;}
.y24_c00174{bottom:57.080000pt;}
.y23_c00174{bottom:79.613333pt;}
.y22_c00174{bottom:101.480000pt;}
.y21_c00174{bottom:122.146667pt;}
.y20_c00174{bottom:145.213333pt;}
.y1f_c00174{bottom:167.213333pt;}
.y1e_c00174{bottom:188.813333pt;}
.y1d_c00174{bottom:210.946667pt;}
.y1c_c00174{bottom:232.813333pt;}
.y1b_c00174{bottom:254.146667pt;}
.y26_c00174{bottom:265.613333pt;}
.y1a_c00174{bottom:275.480000pt;}
.y25_c00174{bottom:287.480000pt;}
.y19_c00174{bottom:296.680000pt;}
.y18_c00174{bottom:318.413333pt;}
.y17_c00174{bottom:339.880000pt;}
.y16_c00174{bottom:361.613333pt;}
.y15_c00174{bottom:382.813333pt;}
.y14_c00174{bottom:404.680000pt;}
.y13_c00174{bottom:426.013333pt;}
.y12_c00174{bottom:447.613333pt;}
.y11_c00174{bottom:469.213333pt;}
.y10_c00174{bottom:490.813333pt;}
.yf_c00174{bottom:512.146667pt;}
.ye_c00174{bottom:534.013333pt;}
.yd_c00174{bottom:554.680000pt;}
.yc_c00174{bottom:576.013333pt;}
.yb_c00174{bottom:597.880000pt;}
.ya_c00174{bottom:619.480000pt;}
.y9_c00174{bottom:640.280000pt;}
.y8_c00174{bottom:662.680000pt;}
.y7_c00174{bottom:684.413333pt;}
.y6_c00174{bottom:706.280000pt;}
.y5_c00174{bottom:727.880000pt;}
.y4_c00174{bottom:750.413333pt;}
.y3_c00174{bottom:771.613333pt;}
.y2_c00174{bottom:793.480000pt;}
.y1_c00174{bottom:823.880000pt;}
.h9_c00174{height:11.733399pt;}
.ha_c00174{height:38.937500pt;}
.h3_c00174{height:51.062500pt;}
.h7_c00174{height:54.933594pt;}
.h4_c00174{height:64.277333pt;}
.h5_c00174{height:70.664062pt;}
.h8_c00174{height:74.906250pt;}
.h6_c00174{height:77.937500pt;}
.h2_c00174{height:102.996094pt;}
.h0_c00174{height:879.133333pt;}
.h1_c00174{height:879.333333pt;}
.w1_c00174{width:93.222667pt;}
.w0_c00174{width:597.333333pt;}
.x0_c00174{left:0.000000pt;}
.x5_c00174{left:35.333333pt;}
.x6_c00174{left:36.933333pt;}
.x7_c00174{left:38.133333pt;}
.x1_c00174{left:40.533333pt;}
.x4_c00174{left:41.600000pt;}
.x2_c00174{left:42.533333pt;}
.x3_c00174{left:44.000000pt;}
.xb_c00174{left:255.834880pt;}
.x8_c00174{left:407.733333pt;}
.xa_c00174{left:511.200000pt;}
.x9_c00174{left:523.466667pt;}
}





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

.ir_c00175:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00175{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00175;src:url('chunks/assets/font_f834eef93dfbc6cd2c36b487.woff2')format("woff");}.ff1_c00175{font-family:ff1_c00175;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00175;src:url('chunks/assets/font_f0b366586ed34d781e911ae3.woff2')format("woff");}.ff2_c00175{font-family:ff2_c00175;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00175;src:url('chunks/assets/font_30a1c506281c28332ed0f41c.woff2')format("woff");}.ff3_c00175{font-family:ff3_c00175;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00175;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff4_c00175{font-family:ff4_c00175;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00175;src:url('chunks/assets/font_954a206f2593eb3da77fca10.woff2')format("woff");}.ff5_c00175{font-family:ff5_c00175;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00175;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c00175{font-family:ff6_c00175;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00175{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00175{vertical-align:-15.000000px;}
.v0_c00175{vertical-align:0.000000px;}
.ls3_c00175{letter-spacing:-6.000000px;}
.ls2_c00175{letter-spacing:0.000000px;}
.ls0_c00175{letter-spacing:7.050000px;}
.ls4_c00175{letter-spacing:9.000000px;}
.ls1_c00175{letter-spacing:155.460000px;}
.sc__c00175{text-shadow:none;}
.sc0_c00175{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00175{-webkit-text-stroke:0px transparent;}
.sc0_c00175{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00175{word-spacing:-26.352000px;}
.ws3_c00175{word-spacing:-20.250000px;}
.ws0_c00175{word-spacing:-17.352000px;}
.ws4_c00175{word-spacing:0.000000px;}
.ws1_c00175{word-spacing:13.650000px;}
._4_c00175{margin-left:-25.191000px;}
._22_c00175{margin-left:-22.644000px;}
._1f_c00175{margin-left:-17.280000px;}
._1e_c00175{margin-left:-14.580000px;}
._20_c00175{margin-left:-13.122000px;}
._14_c00175{margin-left:-11.916000px;}
._11_c00175{margin-left:-9.882000px;}
._13_c00175{margin-left:-8.667000px;}
._e_c00175{margin-left:-7.038000px;}
._9_c00175{margin-left:-5.346000px;}
._3_c00175{margin-left:-3.483000px;}
._8_c00175{margin-left:-1.539000px;}
._7_c00175{width:1.215000px;}
._5_c00175{width:2.511000px;}
._1a_c00175{width:3.522000px;}
._6_c00175{width:4.536000px;}
._0_c00175{width:5.751000px;}
._a_c00175{width:6.885000px;}
._2_c00175{width:8.424000px;}
._1_c00175{width:9.558000px;}
._12_c00175{width:10.854000px;}
._d_c00175{width:12.312000px;}
._c_c00175{width:14.418000px;}
._15_c00175{width:16.362000px;}
._18_c00175{width:18.114000px;}
._17_c00175{width:19.155000px;}
._1c_c00175{width:22.533000px;}
._19_c00175{width:24.162000px;}
._10_c00175{width:32.079000px;}
._1b_c00175{width:37.773000px;}
._1d_c00175{width:43.059000px;}
._f_c00175{width:75.450000px;}
._25_c00175{width:83.979000px;}
._16_c00175{width:92.550000px;}
._24_c00175{width:121.521000px;}
._23_c00175{width:137.571000px;}
._21_c00175{width:171.153000px;}
._b_c00175{width:381.753000px;}
.fc2_c00175{color:transparent;}
.fc1_c00175{color:rgb(128,128,128);}
.fc0_c00175{color:rgb(0,0,0);}
.fs4_c00175{font-size:48.000000px;}
.fs2_c00175{font-size:51.000000px;}
.fs3_c00175{font-size:60.000000px;}
.fs1_c00175{font-size:72.000000px;}
.fs0_c00175{font-size:81.000000px;}
.y0_c00175{bottom:0.000000px;}
.y25_c00175{bottom:3.105000px;}
.y24_c00175{bottom:7.228371px;}
.y23_c00175{bottom:47.265000px;}
.y22_c00175{bottom:72.915000px;}
.y21_c00175{bottom:98.265000px;}
.y20_c00175{bottom:124.515000px;}
.y1f_c00175{bottom:149.265000px;}
.y1e_c00175{bottom:174.165000px;}
.y1d_c00175{bottom:198.915000px;}
.y1c_c00175{bottom:223.515000px;}
.y1b_c00175{bottom:248.715000px;}
.y1a_c00175{bottom:272.715000px;}
.y19_c00175{bottom:297.315000px;}
.y18_c00175{bottom:321.765000px;}
.y17_c00175{bottom:346.365000px;}
.y16_c00175{bottom:371.265000px;}
.y15_c00175{bottom:396.015000px;}
.y14_c00175{bottom:424.065000px;}
.y13_c00175{bottom:445.965000px;}
.y12_c00175{bottom:468.465000px;}
.y11_c00175{bottom:493.815000px;}
.y10_c00175{bottom:518.415000px;}
.yf_c00175{bottom:542.415000px;}
.ye_c00175{bottom:567.465000px;}
.yd_c00175{bottom:592.365000px;}
.yc_c00175{bottom:616.365000px;}
.yb_c00175{bottom:641.265000px;}
.ya_c00175{bottom:665.265000px;}
.y9_c00175{bottom:690.165000px;}
.y8_c00175{bottom:714.315000px;}
.y7_c00175{bottom:738.915000px;}
.y6_c00175{bottom:763.515000px;}
.y5_c00175{bottom:788.115000px;}
.y4_c00175{bottom:812.415000px;}
.y3_c00175{bottom:836.115000px;}
.y2_c00175{bottom:861.765000px;}
.y1_c00175{bottom:885.915000px;}
.h7_c00175{height:13.200074px;}
.h8_c00175{height:43.804688px;}
.h5_c00175{height:50.028809px;}
.h4_c00175{height:50.053711px;}
.h6_c00175{height:75.966797px;}
.h2_c00175{height:79.497070px;}
.h3_c00175{height:84.269531px;}
.h0_c00175{height:976.875000px;}
.h1_c00175{height:977.250000px;}
.w2_c00175{width:104.875500px;}
.w1_c00175{width:654.750000px;}
.w0_c00175{width:655.050000px;}
.x0_c00175{left:0.000000px;}
.xf_c00175{left:20.250000px;}
.xb_c00175{left:25.950000px;}
.x2_c00175{left:35.550000px;}
.xe_c00175{left:115.200000px;}
.xd_c00175{left:117.450000px;}
.xc_c00175{left:119.550000px;}
.xa_c00175{left:121.200000px;}
.x9_c00175{left:122.250000px;}
.x6_c00175{left:123.600000px;}
.x5_c00175{left:124.950000px;}
.x4_c00175{left:126.300000px;}
.x3_c00175{left:127.650000px;}
.x1_c00175{left:129.150000px;}
.x7_c00175{left:154.350000px;}
.x8_c00175{left:175.950000px;}
.x11_c00175{left:279.339249px;}
.x10_c00175{left:550.200000px;}
@media print{
.v1_c00175{vertical-align:-13.333333pt;}
.v0_c00175{vertical-align:0.000000pt;}
.ls3_c00175{letter-spacing:-5.333333pt;}
.ls2_c00175{letter-spacing:0.000000pt;}
.ls0_c00175{letter-spacing:6.266667pt;}
.ls4_c00175{letter-spacing:8.000000pt;}
.ls1_c00175{letter-spacing:138.186667pt;}
.ws2_c00175{word-spacing:-23.424000pt;}
.ws3_c00175{word-spacing:-18.000000pt;}
.ws0_c00175{word-spacing:-15.424000pt;}
.ws4_c00175{word-spacing:0.000000pt;}
.ws1_c00175{word-spacing:12.133333pt;}
._4_c00175{margin-left:-22.392000pt;}
._22_c00175{margin-left:-20.128000pt;}
._1f_c00175{margin-left:-15.360000pt;}
._1e_c00175{margin-left:-12.960000pt;}
._20_c00175{margin-left:-11.664000pt;}
._14_c00175{margin-left:-10.592000pt;}
._11_c00175{margin-left:-8.784000pt;}
._13_c00175{margin-left:-7.704000pt;}
._e_c00175{margin-left:-6.256000pt;}
._9_c00175{margin-left:-4.752000pt;}
._3_c00175{margin-left:-3.096000pt;}
._8_c00175{margin-left:-1.368000pt;}
._7_c00175{width:1.080000pt;}
._5_c00175{width:2.232000pt;}
._1a_c00175{width:3.130667pt;}
._6_c00175{width:4.032000pt;}
._0_c00175{width:5.112000pt;}
._a_c00175{width:6.120000pt;}
._2_c00175{width:7.488000pt;}
._1_c00175{width:8.496000pt;}
._12_c00175{width:9.648000pt;}
._d_c00175{width:10.944000pt;}
._c_c00175{width:12.816000pt;}
._15_c00175{width:14.544000pt;}
._18_c00175{width:16.101333pt;}
._17_c00175{width:17.026667pt;}
._1c_c00175{width:20.029333pt;}
._19_c00175{width:21.477333pt;}
._10_c00175{width:28.514667pt;}
._1b_c00175{width:33.576000pt;}
._1d_c00175{width:38.274667pt;}
._f_c00175{width:67.066667pt;}
._25_c00175{width:74.648000pt;}
._16_c00175{width:82.266667pt;}
._24_c00175{width:108.018667pt;}
._23_c00175{width:122.285333pt;}
._21_c00175{width:152.136000pt;}
._b_c00175{width:339.336000pt;}
.fs4_c00175{font-size:42.666667pt;}
.fs2_c00175{font-size:45.333333pt;}
.fs3_c00175{font-size:53.333333pt;}
.fs1_c00175{font-size:64.000000pt;}
.fs0_c00175{font-size:72.000000pt;}
.y0_c00175{bottom:0.000000pt;}
.y25_c00175{bottom:2.760000pt;}
.y24_c00175{bottom:6.425219pt;}
.y23_c00175{bottom:42.013333pt;}
.y22_c00175{bottom:64.813333pt;}
.y21_c00175{bottom:87.346667pt;}
.y20_c00175{bottom:110.680000pt;}
.y1f_c00175{bottom:132.680000pt;}
.y1e_c00175{bottom:154.813333pt;}
.y1d_c00175{bottom:176.813333pt;}
.y1c_c00175{bottom:198.680000pt;}
.y1b_c00175{bottom:221.080000pt;}
.y1a_c00175{bottom:242.413333pt;}
.y19_c00175{bottom:264.280000pt;}
.y18_c00175{bottom:286.013333pt;}
.y17_c00175{bottom:307.880000pt;}
.y16_c00175{bottom:330.013333pt;}
.y15_c00175{bottom:352.013333pt;}
.y14_c00175{bottom:376.946667pt;}
.y13_c00175{bottom:396.413333pt;}
.y12_c00175{bottom:416.413333pt;}
.y11_c00175{bottom:438.946667pt;}
.y10_c00175{bottom:460.813333pt;}
.yf_c00175{bottom:482.146667pt;}
.ye_c00175{bottom:504.413333pt;}
.yd_c00175{bottom:526.546667pt;}
.yc_c00175{bottom:547.880000pt;}
.yb_c00175{bottom:570.013333pt;}
.ya_c00175{bottom:591.346667pt;}
.y9_c00175{bottom:613.480000pt;}
.y8_c00175{bottom:634.946667pt;}
.y7_c00175{bottom:656.813333pt;}
.y6_c00175{bottom:678.680000pt;}
.y5_c00175{bottom:700.546667pt;}
.y4_c00175{bottom:722.146667pt;}
.y3_c00175{bottom:743.213333pt;}
.y2_c00175{bottom:766.013333pt;}
.y1_c00175{bottom:787.480000pt;}
.h7_c00175{height:11.733399pt;}
.h8_c00175{height:38.937500pt;}
.h5_c00175{height:44.470052pt;}
.h4_c00175{height:44.492188pt;}
.h6_c00175{height:67.526042pt;}
.h2_c00175{height:70.664062pt;}
.h3_c00175{height:74.906250pt;}
.h0_c00175{height:868.333333pt;}
.h1_c00175{height:868.666667pt;}
.w2_c00175{width:93.222667pt;}
.w1_c00175{width:582.000000pt;}
.w0_c00175{width:582.266667pt;}
.x0_c00175{left:0.000000pt;}
.xf_c00175{left:18.000000pt;}
.xb_c00175{left:23.066667pt;}
.x2_c00175{left:31.600000pt;}
.xe_c00175{left:102.400000pt;}
.xd_c00175{left:104.400000pt;}
.xc_c00175{left:106.266667pt;}
.xa_c00175{left:107.733333pt;}
.x9_c00175{left:108.666667pt;}
.x6_c00175{left:109.866667pt;}
.x5_c00175{left:111.066667pt;}
.x4_c00175{left:112.266667pt;}
.x3_c00175{left:113.466667pt;}
.x1_c00175{left:114.800000pt;}
.x7_c00175{left:137.200000pt;}
.x8_c00175{left:156.400000pt;}
.x11_c00175{left:248.301554pt;}
.x10_c00175{left:489.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_80376668ebfc9932c41f3ab0.woff2')format("woff");}.ff1_c00176{font-family:ff1_c00176;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00176;src:url('chunks/assets/font_95ee99102bcb731f2b878e21.woff2')format("woff");}.ff2_c00176{font-family:ff2_c00176;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00176;src:url('chunks/assets/font_ba881137258b661d7e541770.woff2')format("woff");}.ff3_c00176{font-family:ff3_c00176;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00176;src:url('chunks/assets/font_1d79c7e23179473edb879e21.woff2')format("woff");}.ff4_c00176{font-family:ff4_c00176;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00176;src:url('chunks/assets/font_c0b6e8f2ef10dae1ba41c06f.woff2')format("woff");}.ff5_c00176{font-family:ff5_c00176;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00176;src:url('chunks/assets/font_5f30743a4fe2d714e731f1da.woff2')format("woff");}.ff6_c00176{font-family:ff6_c00176;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00176;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c00176{font-family:ff7_c00176;line-height:1.219238;font-style: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;}
.ls2_c00176{letter-spacing:0.000000px;}
.ls1_c00176{letter-spacing:21.000000px;}
.ls0_c00176{letter-spacing:21.864000px;}
.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;}
}
.ws3_c00176{word-spacing:-59.184000px;}
.ws0_c00176{word-spacing:-46.500000px;}
.ws1_c00176{word-spacing:-22.518000px;}
.ws2_c00176{word-spacing:-18.014400px;}
.ws4_c00176{word-spacing:0.000000px;}
._21_c00176{margin-left:-38.175000px;}
._20_c00176{margin-left:-34.896000px;}
._11_c00176{margin-left:-28.413000px;}
._0_c00176{margin-left:-21.522000px;}
._1_c00176{margin-left:-17.136000px;}
._22_c00176{margin-left:-14.985000px;}
._13_c00176{margin-left:-13.478400px;}
._2_c00176{margin-left:-11.832000px;}
._6_c00176{margin-left:-10.107000px;}
._5_c00176{margin-left:-7.743000px;}
._12_c00176{margin-left:-6.285600px;}
._18_c00176{margin-left:-4.764000px;}
._4_c00176{margin-left:-3.480000px;}
._1c_c00176{margin-left:-2.456400px;}
._10_c00176{margin-left:-1.446000px;}
._7_c00176{width:1.632000px;}
._8_c00176{width:2.643000px;}
._e_c00176{width:3.828000px;}
._d_c00176{width:4.998000px;}
._a_c00176{width:6.120000px;}
._f_c00176{width:7.533000px;}
._1a_c00176{width:8.607000px;}
._b_c00176{width:9.792000px;}
._15_c00176{width:10.995000px;}
._9_c00176{width:12.054000px;}
._1d_c00176{width:13.972200px;}
._1f_c00176{width:15.012000px;}
._3_c00176{width:16.176000px;}
._23_c00176{width:17.253000px;}
._14_c00176{width:19.140600px;}
._25_c00176{width:21.303000px;}
._1b_c00176{width:23.577000px;}
._17_c00176{width:27.588000px;}
._19_c00176{width:34.695000px;}
._c_c00176{width:44.913000px;}
._26_c00176{width:47.871000px;}
._24_c00176{width:190.531800px;}
._27_c00176{width:250.782000px;}
._16_c00176{width:255.141000px;}
._1e_c00176{width:285.823800px;}
.fc2_c00176{color:transparent;}
.fc1_c00176{color:rgb(128,128,128);}
.fc0_c00176{color:rgb(0,0,0);}
.fs6_c00176{font-size:48.000000px;}
.fs3_c00176{font-size:64.800000px;}
.fs4_c00176{font-size:72.000000px;}
.fs5_c00176{font-size:78.000000px;}
.fs2_c00176{font-size:81.000000px;}
.fs1_c00176{font-size:87.000000px;}
.fs0_c00176{font-size:102.000000px;}
.y0_c00176{bottom:0.000000px;}
.y26_c00176{bottom:3.105000px;}
.y25_c00176{bottom:7.228363px;}
.y24_c00176{bottom:54.300000px;}
.y23_c00176{bottom:80.550000px;}
.y22_c00176{bottom:105.300000px;}
.y21_c00176{bottom:129.900000px;}
.y20_c00176{bottom:154.950000px;}
.y1f_c00176{bottom:179.550000px;}
.y1e_c00176{bottom:203.850000px;}
.y1d_c00176{bottom:229.050000px;}
.y1c_c00176{bottom:253.350000px;}
.y1b_c00176{bottom:278.100000px;}
.y1a_c00176{bottom:301.950000px;}
.y19_c00176{bottom:325.650000px;}
.y18_c00176{bottom:349.950000px;}
.y17_c00176{bottom:374.250000px;}
.y16_c00176{bottom:398.850000px;}
.y15_c00176{bottom:422.850000px;}
.y14_c00176{bottom:447.150000px;}
.y13_c00176{bottom:471.450000px;}
.y12_c00176{bottom:496.350000px;}
.y11_c00176{bottom:520.350000px;}
.y10_c00176{bottom:544.650000px;}
.yf_c00176{bottom:568.650000px;}
.ye_c00176{bottom:593.250000px;}
.yd_c00176{bottom:616.650000px;}
.yc_c00176{bottom:640.800000px;}
.yb_c00176{bottom:665.100000px;}
.ya_c00176{bottom:690.150000px;}
.y9_c00176{bottom:713.700000px;}
.y8_c00176{bottom:738.000000px;}
.y7_c00176{bottom:762.750000px;}
.y6_c00176{bottom:787.350000px;}
.y5_c00176{bottom:812.250000px;}
.y4_c00176{bottom:836.700000px;}
.y3_c00176{bottom:860.550000px;}
.y2_c00176{bottom:885.600000px;}
.y1_c00176{bottom:920.700000px;}
.h7_c00176{height:13.200074px;}
.h8_c00176{height:43.804688px;}
.h3_c00176{height:79.497070px;}
.h4_c00176{height:84.269531px;}
.h6_c00176{height:91.160156px;}
.h5_c00176{height:98.756836px;}
.h2_c00176{height:100.057617px;}
.h0_c00176{height:980.100000px;}
.h1_c00176{height:980.250000px;}
.w2_c00176{width:104.875500px;}
.w0_c00176{width:665.850000px;}
.w1_c00176{width:666.000000px;}
.x0_c00176{left:0.000000px;}
.xa_c00176{left:37.500000px;}
.x1_c00176{left:40.800000px;}
.x2_c00176{left:41.850000px;}
.x3_c00176{left:43.200000px;}
.x4_c00176{left:44.250000px;}
.x5_c00176{left:46.650000px;}
.x6_c00176{left:47.700000px;}
.x7_c00176{left:49.350000px;}
.x9_c00176{left:50.700000px;}
.x8_c00176{left:72.300000px;}
.xc_c00176{left:284.739258px;}
.xb_c00176{left:395.100000px;}
@media print{
.v0_c00176{vertical-align:0.000000pt;}
.ls2_c00176{letter-spacing:0.000000pt;}
.ls1_c00176{letter-spacing:18.666667pt;}
.ls0_c00176{letter-spacing:19.434667pt;}
.ws3_c00176{word-spacing:-52.608000pt;}
.ws0_c00176{word-spacing:-41.333333pt;}
.ws1_c00176{word-spacing:-20.016000pt;}
.ws2_c00176{word-spacing:-16.012800pt;}
.ws4_c00176{word-spacing:0.000000pt;}
._21_c00176{margin-left:-33.933333pt;}
._20_c00176{margin-left:-31.018667pt;}
._11_c00176{margin-left:-25.256000pt;}
._0_c00176{margin-left:-19.130667pt;}
._1_c00176{margin-left:-15.232000pt;}
._22_c00176{margin-left:-13.320000pt;}
._13_c00176{margin-left:-11.980800pt;}
._2_c00176{margin-left:-10.517333pt;}
._6_c00176{margin-left:-8.984000pt;}
._5_c00176{margin-left:-6.882667pt;}
._12_c00176{margin-left:-5.587200pt;}
._18_c00176{margin-left:-4.234667pt;}
._4_c00176{margin-left:-3.093333pt;}
._1c_c00176{margin-left:-2.183467pt;}
._10_c00176{margin-left:-1.285333pt;}
._7_c00176{width:1.450667pt;}
._8_c00176{width:2.349333pt;}
._e_c00176{width:3.402667pt;}
._d_c00176{width:4.442667pt;}
._a_c00176{width:5.440000pt;}
._f_c00176{width:6.696000pt;}
._1a_c00176{width:7.650667pt;}
._b_c00176{width:8.704000pt;}
._15_c00176{width:9.773333pt;}
._9_c00176{width:10.714667pt;}
._1d_c00176{width:12.419733pt;}
._1f_c00176{width:13.344000pt;}
._3_c00176{width:14.378667pt;}
._23_c00176{width:15.336000pt;}
._14_c00176{width:17.013867pt;}
._25_c00176{width:18.936000pt;}
._1b_c00176{width:20.957333pt;}
._17_c00176{width:24.522667pt;}
._19_c00176{width:30.840000pt;}
._c_c00176{width:39.922667pt;}
._26_c00176{width:42.552000pt;}
._24_c00176{width:169.361600pt;}
._27_c00176{width:222.917333pt;}
._16_c00176{width:226.792000pt;}
._1e_c00176{width:254.065600pt;}
.fs6_c00176{font-size:42.666667pt;}
.fs3_c00176{font-size:57.600000pt;}
.fs4_c00176{font-size:64.000000pt;}
.fs5_c00176{font-size:69.333333pt;}
.fs2_c00176{font-size:72.000000pt;}
.fs1_c00176{font-size:77.333333pt;}
.fs0_c00176{font-size:90.666667pt;}
.y0_c00176{bottom:0.000000pt;}
.y26_c00176{bottom:2.760000pt;}
.y25_c00176{bottom:6.425212pt;}
.y24_c00176{bottom:48.266667pt;}
.y23_c00176{bottom:71.600000pt;}
.y22_c00176{bottom:93.600000pt;}
.y21_c00176{bottom:115.466667pt;}
.y20_c00176{bottom:137.733333pt;}
.y1f_c00176{bottom:159.600000pt;}
.y1e_c00176{bottom:181.200000pt;}
.y1d_c00176{bottom:203.600000pt;}
.y1c_c00176{bottom:225.200000pt;}
.y1b_c00176{bottom:247.200000pt;}
.y1a_c00176{bottom:268.400000pt;}
.y19_c00176{bottom:289.466667pt;}
.y18_c00176{bottom:311.066667pt;}
.y17_c00176{bottom:332.666667pt;}
.y16_c00176{bottom:354.533333pt;}
.y15_c00176{bottom:375.866667pt;}
.y14_c00176{bottom:397.466667pt;}
.y13_c00176{bottom:419.066667pt;}
.y12_c00176{bottom:441.200000pt;}
.y11_c00176{bottom:462.533333pt;}
.y10_c00176{bottom:484.133333pt;}
.yf_c00176{bottom:505.466667pt;}
.ye_c00176{bottom:527.333333pt;}
.yd_c00176{bottom:548.133333pt;}
.yc_c00176{bottom:569.600000pt;}
.yb_c00176{bottom:591.200000pt;}
.ya_c00176{bottom:613.466667pt;}
.y9_c00176{bottom:634.400000pt;}
.y8_c00176{bottom:656.000000pt;}
.y7_c00176{bottom:678.000000pt;}
.y6_c00176{bottom:699.866667pt;}
.y5_c00176{bottom:722.000000pt;}
.y4_c00176{bottom:743.733333pt;}
.y3_c00176{bottom:764.933333pt;}
.y2_c00176{bottom:787.200000pt;}
.y1_c00176{bottom:818.400000pt;}
.h7_c00176{height:11.733399pt;}
.h8_c00176{height:38.937500pt;}
.h3_c00176{height:70.664062pt;}
.h4_c00176{height:74.906250pt;}
.h6_c00176{height:81.031250pt;}
.h5_c00176{height:87.783854pt;}
.h2_c00176{height:88.940104pt;}
.h0_c00176{height:871.200000pt;}
.h1_c00176{height:871.333333pt;}
.w2_c00176{width:93.222667pt;}
.w0_c00176{width:591.866667pt;}
.w1_c00176{width:592.000000pt;}
.x0_c00176{left:0.000000pt;}
.xa_c00176{left:33.333333pt;}
.x1_c00176{left:36.266667pt;}
.x2_c00176{left:37.200000pt;}
.x3_c00176{left:38.400000pt;}
.x4_c00176{left:39.333333pt;}
.x5_c00176{left:41.466667pt;}
.x6_c00176{left:42.400000pt;}
.x7_c00176{left:43.866667pt;}
.x9_c00176{left:45.066667pt;}
.x8_c00176{left:64.266667pt;}
.xc_c00176{left:253.101563pt;}
.xb_c00176{left:351.200000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_5972a883bbdfcdeb31068e54.woff2')format("woff");}.ff1_c00177{font-family:ff1_c00177;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00177;src:url('chunks/assets/font_a4e6fda23ab7fdc73870dc3a.woff2')format("woff");}.ff2_c00177{font-family:ff2_c00177;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00177;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff3_c00177{font-family:ff3_c00177;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00177;src:url('chunks/assets/font_7f01227985850612fad818db.woff2')format("woff");}.ff4_c00177{font-family:ff4_c00177;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00177;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c00177{font-family:ff5_c00177;line-height:1.219238;font-style: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;}
.ls1_c00177{letter-spacing:0.000000px;}
.ls2_c00177{letter-spacing:3.000000px;}
.ls0_c00177{letter-spacing:6.900000px;}
.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;}
}
.ws1_c00177{word-spacing:-36.696000px;}
.ws0_c00177{word-spacing:-17.352000px;}
.ws2_c00177{word-spacing:0.000000px;}
._17_c00177{margin-left:-27.768000px;}
._d_c00177{margin-left:-25.191000px;}
._12_c00177{margin-left:-20.817000px;}
._11_c00177{margin-left:-19.278000px;}
._1e_c00177{margin-left:-16.524000px;}
._19_c00177{margin-left:-14.985000px;}
._1f_c00177{margin-left:-13.203000px;}
._15_c00177{margin-left:-11.502000px;}
._21_c00177{margin-left:-9.855000px;}
._13_c00177{margin-left:-8.667000px;}
._14_c00177{margin-left:-6.804000px;}
._f_c00177{margin-left:-5.022000px;}
._3_c00177{margin-left:-3.726000px;}
._9_c00177{margin-left:-2.349000px;}
._2_c00177{margin-left:-1.053000px;}
._8_c00177{width:1.053000px;}
._0_c00177{width:2.430000px;}
._1_c00177{width:4.050000px;}
._5_c00177{width:5.184000px;}
._6_c00177{width:6.723000px;}
._4_c00177{width:7.938000px;}
._b_c00177{width:9.072000px;}
._7_c00177{width:10.449000px;}
._a_c00177{width:12.231000px;}
._16_c00177{width:15.147000px;}
._23_c00177{width:17.334000px;}
._10_c00177{width:18.468000px;}
._1b_c00177{width:30.480000px;}
._1d_c00177{width:35.190000px;}
._1c_c00177{width:37.989000px;}
._c_c00177{width:110.160000px;}
._e_c00177{width:117.693000px;}
._1a_c00177{width:140.535000px;}
._18_c00177{width:227.529000px;}
._20_c00177{width:587.817000px;}
._22_c00177{width:860.298000px;}
.fc2_c00177{color:transparent;}
.fc1_c00177{color:rgb(128,128,128);}
.fc0_c00177{color:rgb(0,0,0);}
.fs4_c00177{font-size:48.000000px;}
.fs3_c00177{font-size:66.000000px;}
.fs1_c00177{font-size:72.000000px;}
.fs0_c00177{font-size:81.000000px;}
.fs2_c00177{font-size:84.000000px;}
.y0_c00177{bottom:0.000000px;}
.y25_c00177{bottom:3.105000px;}
.y24_c00177{bottom:7.228357px;}
.y23_c00177{bottom:61.530000px;}
.y22_c00177{bottom:86.730000px;}
.y21_c00177{bottom:112.080000px;}
.y20_c00177{bottom:136.680000px;}
.y1f_c00177{bottom:160.980000px;}
.y1e_c00177{bottom:185.730000px;}
.y1d_c00177{bottom:210.330000px;}
.y1c_c00177{bottom:234.630000px;}
.y1b_c00177{bottom:262.980000px;}
.y1a_c00177{bottom:286.530000px;}
.y19_c00177{bottom:309.780000px;}
.y18_c00177{bottom:333.780000px;}
.y17_c00177{bottom:357.030000px;}
.y16_c00177{bottom:382.080000px;}
.y15_c00177{bottom:407.130000px;}
.y14_c00177{bottom:430.680000px;}
.y13_c00177{bottom:456.630000px;}
.y12_c00177{bottom:480.030000px;}
.y11_c00177{bottom:504.630000px;}
.y10_c00177{bottom:529.530000px;}
.yf_c00177{bottom:553.530000px;}
.ye_c00177{bottom:577.230000px;}
.yd_c00177{bottom:601.830000px;}
.yc_c00177{bottom:626.730000px;}
.yb_c00177{bottom:651.030000px;}
.ya_c00177{bottom:675.330000px;}
.y9_c00177{bottom:699.930000px;}
.y8_c00177{bottom:724.380000px;}
.y7_c00177{bottom:748.680000px;}
.y6_c00177{bottom:772.980000px;}
.y5_c00177{bottom:797.280000px;}
.y4_c00177{bottom:821.430000px;}
.y3_c00177{bottom:846.180000px;}
.y2_c00177{bottom:870.180000px;}
.y1_c00177{bottom:894.330000px;}
.h5_c00177{height:13.200074px;}
.h6_c00177{height:43.804688px;}
.h2_c00177{height:79.497070px;}
.h3_c00177{height:82.441406px;}
.h4_c00177{height:84.269531px;}
.h1_c00177{height:91.160156px;}
.h0_c00177{height:995.250000px;}
.w2_c00177{width:104.875500px;}
.w0_c00177{width:667.425000px;}
.w1_c00177{width:667.500000px;}
.x0_c00177{left:0.000000px;}
.xe_c00177{left:36.150000px;}
.x3_c00177{left:48.000000px;}
.xa_c00177{left:67.800000px;}
.xb_c00177{left:74.250000px;}
.x10_c00177{left:127.200000px;}
.xf_c00177{left:128.250000px;}
.xd_c00177{left:130.050000px;}
.xc_c00177{left:132.000000px;}
.x9_c00177{left:134.700000px;}
.x8_c00177{left:136.650000px;}
.x6_c00177{left:137.700000px;}
.x5_c00177{left:139.500000px;}
.x4_c00177{left:141.150000px;}
.x1_c00177{left:142.650000px;}
.x2_c00177{left:144.150000px;}
.x7_c00177{left:163.050000px;}
.x12_c00177{left:285.526749px;}
.x11_c00177{left:565.350000px;}
@media print{
.v0_c00177{vertical-align:0.000000pt;}
.ls1_c00177{letter-spacing:0.000000pt;}
.ls2_c00177{letter-spacing:2.666667pt;}
.ls0_c00177{letter-spacing:6.133333pt;}
.ws1_c00177{word-spacing:-32.618667pt;}
.ws0_c00177{word-spacing:-15.424000pt;}
.ws2_c00177{word-spacing:0.000000pt;}
._17_c00177{margin-left:-24.682667pt;}
._d_c00177{margin-left:-22.392000pt;}
._12_c00177{margin-left:-18.504000pt;}
._11_c00177{margin-left:-17.136000pt;}
._1e_c00177{margin-left:-14.688000pt;}
._19_c00177{margin-left:-13.320000pt;}
._1f_c00177{margin-left:-11.736000pt;}
._15_c00177{margin-left:-10.224000pt;}
._21_c00177{margin-left:-8.760000pt;}
._13_c00177{margin-left:-7.704000pt;}
._14_c00177{margin-left:-6.048000pt;}
._f_c00177{margin-left:-4.464000pt;}
._3_c00177{margin-left:-3.312000pt;}
._9_c00177{margin-left:-2.088000pt;}
._2_c00177{margin-left:-0.936000pt;}
._8_c00177{width:0.936000pt;}
._0_c00177{width:2.160000pt;}
._1_c00177{width:3.600000pt;}
._5_c00177{width:4.608000pt;}
._6_c00177{width:5.976000pt;}
._4_c00177{width:7.056000pt;}
._b_c00177{width:8.064000pt;}
._7_c00177{width:9.288000pt;}
._a_c00177{width:10.872000pt;}
._16_c00177{width:13.464000pt;}
._23_c00177{width:15.408000pt;}
._10_c00177{width:16.416000pt;}
._1b_c00177{width:27.093333pt;}
._1d_c00177{width:31.280000pt;}
._1c_c00177{width:33.768000pt;}
._c_c00177{width:97.920000pt;}
._e_c00177{width:104.616000pt;}
._1a_c00177{width:124.920000pt;}
._18_c00177{width:202.248000pt;}
._20_c00177{width:522.504000pt;}
._22_c00177{width:764.709333pt;}
.fs4_c00177{font-size:42.666667pt;}
.fs3_c00177{font-size:58.666667pt;}
.fs1_c00177{font-size:64.000000pt;}
.fs0_c00177{font-size:72.000000pt;}
.fs2_c00177{font-size:74.666667pt;}
.y0_c00177{bottom:0.000000pt;}
.y25_c00177{bottom:2.760000pt;}
.y24_c00177{bottom:6.425206pt;}
.y23_c00177{bottom:54.693333pt;}
.y22_c00177{bottom:77.093333pt;}
.y21_c00177{bottom:99.626667pt;}
.y20_c00177{bottom:121.493333pt;}
.y1f_c00177{bottom:143.093333pt;}
.y1e_c00177{bottom:165.093333pt;}
.y1d_c00177{bottom:186.960000pt;}
.y1c_c00177{bottom:208.560000pt;}
.y1b_c00177{bottom:233.760000pt;}
.y1a_c00177{bottom:254.693333pt;}
.y19_c00177{bottom:275.360000pt;}
.y18_c00177{bottom:296.693333pt;}
.y17_c00177{bottom:317.360000pt;}
.y16_c00177{bottom:339.626667pt;}
.y15_c00177{bottom:361.893333pt;}
.y14_c00177{bottom:382.826667pt;}
.y13_c00177{bottom:405.893333pt;}
.y12_c00177{bottom:426.693333pt;}
.y11_c00177{bottom:448.560000pt;}
.y10_c00177{bottom:470.693333pt;}
.yf_c00177{bottom:492.026667pt;}
.ye_c00177{bottom:513.093333pt;}
.yd_c00177{bottom:534.960000pt;}
.yc_c00177{bottom:557.093333pt;}
.yb_c00177{bottom:578.693333pt;}
.ya_c00177{bottom:600.293333pt;}
.y9_c00177{bottom:622.160000pt;}
.y8_c00177{bottom:643.893333pt;}
.y7_c00177{bottom:665.493333pt;}
.y6_c00177{bottom:687.093333pt;}
.y5_c00177{bottom:708.693333pt;}
.y4_c00177{bottom:730.160000pt;}
.y3_c00177{bottom:752.160000pt;}
.y2_c00177{bottom:773.493333pt;}
.y1_c00177{bottom:794.960000pt;}
.h5_c00177{height:11.733399pt;}
.h6_c00177{height:38.937500pt;}
.h2_c00177{height:70.664062pt;}
.h3_c00177{height:73.281250pt;}
.h4_c00177{height:74.906250pt;}
.h1_c00177{height:81.031250pt;}
.h0_c00177{height:884.666667pt;}
.w2_c00177{width:93.222667pt;}
.w0_c00177{width:593.266667pt;}
.w1_c00177{width:593.333333pt;}
.x0_c00177{left:0.000000pt;}
.xe_c00177{left:32.133333pt;}
.x3_c00177{left:42.666667pt;}
.xa_c00177{left:60.266667pt;}
.xb_c00177{left:66.000000pt;}
.x10_c00177{left:113.066667pt;}
.xf_c00177{left:114.000000pt;}
.xd_c00177{left:115.600000pt;}
.xc_c00177{left:117.333333pt;}
.x9_c00177{left:119.733333pt;}
.x8_c00177{left:121.466667pt;}
.x6_c00177{left:122.400000pt;}
.x5_c00177{left:124.000000pt;}
.x4_c00177{left:125.466667pt;}
.x1_c00177{left:126.800000pt;}
.x2_c00177{left:128.133333pt;}
.x7_c00177{left:144.933333pt;}
.x12_c00177{left:253.801554pt;}
.x11_c00177{left:502.533333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_90b1f3dce19cc03aca2de457.woff2')format("woff");}.ff1_c00178{font-family:ff1_c00178;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00178;src:url('chunks/assets/font_c09f208fa10dce22e19d11f1.woff2')format("woff");}.ff2_c00178{font-family:ff2_c00178;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00178;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff3_c00178{font-family:ff3_c00178;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00178;src:url('chunks/assets/font_474a57b9158c169b91f29ed1.woff2')format("woff");}.ff4_c00178{font-family:ff4_c00178;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00178;src:url('chunks/assets/font_552a485b3c0ea5a51ce3e764.woff2')format("woff");}.ff5_c00178{font-family:ff5_c00178;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00178;src:url('chunks/assets/font_b726759196b131239dc8ae2f.woff2')format("woff");}.ff6_c00178{font-family:ff6_c00178;line-height:1.437000;font-style:normal;font-weight: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_c00178;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c00178{font-family:ff7_c00178;line-height:1.219238;font-style: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;}
.ls1_c00178{letter-spacing:0.000000px;}
.ls2_c00178{letter-spacing:3.000000px;}
.ls0_c00178{letter-spacing:9.000000px;}
.sc__c00178{text-shadow:none;}
.sc0_c00178{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00178{-webkit-text-stroke:0px transparent;}
.sc0_c00178{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00178{word-spacing:-81.378000px;}
.ws1_c00178{word-spacing:-68.184000px;}
.ws3_c00178{word-spacing:-67.686000px;}
.ws2_c00178{word-spacing:-20.250000px;}
.ws4_c00178{word-spacing:0.000000px;}
._1c_c00178{margin-left:-20.775000px;}
._1a_c00178{margin-left:-11.880000px;}
._17_c00178{margin-left:-10.125000px;}
._9_c00178{margin-left:-9.072000px;}
._a_c00178{margin-left:-6.696000px;}
._b_c00178{margin-left:-5.400000px;}
._11_c00178{margin-left:-3.969000px;}
._18_c00178{margin-left:-2.853000px;}
._0_c00178{margin-left:-1.683000px;}
._1_c00178{width:1.782000px;}
._3_c00178{width:3.078000px;}
._4_c00178{width:4.131000px;}
._15_c00178{width:5.208000px;}
._2_c00178{width:6.237000px;}
._6_c00178{width:7.938000px;}
._f_c00178{width:8.991000px;}
._e_c00178{width:10.539000px;}
._5_c00178{width:11.727000px;}
._1d_c00178{width:12.864000px;}
._10_c00178{width:14.094000px;}
._d_c00178{width:16.128000px;}
._1b_c00178{width:17.211000px;}
._c_c00178{width:18.720000px;}
._8_c00178{width:22.365000px;}
._19_c00178{width:23.805000px;}
._7_c00178{width:27.621000px;}
._13_c00178{width:31.128000px;}
._12_c00178{width:37.803000px;}
._16_c00178{width:40.800000px;}
._14_c00178{width:136.200000px;}
._1e_c00178{width:414.951000px;}
.fc2_c00178{color:transparent;}
.fc1_c00178{color:rgb(128,128,128);}
.fc0_c00178{color:rgb(0,0,0);}
.fs3_c00178{font-size:24.000000px;}
.fs7_c00178{font-size:48.000000px;}
.fs5_c00178{font-size:51.000000px;}
.fs2_c00178{font-size:72.000000px;}
.fs1_c00178{font-size:81.000000px;}
.fs4_c00178{font-size:84.000000px;}
.fs6_c00178{font-size:87.000000px;}
.fs0_c00178{font-size:99.000000px;}
.y0_c00178{bottom:0.000000px;}
.y23_c00178{bottom:3.105000px;}
.y22_c00178{bottom:7.228371px;}
.y21_c00178{bottom:72.915000px;}
.y20_c00178{bottom:98.265000px;}
.y1f_c00178{bottom:123.615000px;}
.y1e_c00178{bottom:148.515000px;}
.y1d_c00178{bottom:172.815000px;}
.y1c_c00178{bottom:197.115000px;}
.y1b_c00178{bottom:221.415000px;}
.y1a_c00178{bottom:245.715000px;}
.y19_c00178{bottom:270.765000px;}
.y18_c00178{bottom:295.365000px;}
.y17_c00178{bottom:319.365000px;}
.y16_c00178{bottom:343.965000px;}
.y15_c00178{bottom:367.965000px;}
.y14_c00178{bottom:422.865000px;}
.y13_c00178{bottom:451.965000px;}
.y12_c00178{bottom:481.365000px;}
.y11_c00178{bottom:537.015000px;}
.y10_c00178{bottom:560.715000px;}
.yf_c00178{bottom:584.865000px;}
.ye_c00178{bottom:608.565000px;}
.yd_c00178{bottom:632.565000px;}
.yc_c00178{bottom:656.865000px;}
.yb_c00178{bottom:680.415000px;}
.ya_c00178{bottom:705.015000px;}
.y9_c00178{bottom:727.365000px;}
.y8_c00178{bottom:753.615000px;}
.y7_c00178{bottom:777.915000px;}
.y6_c00178{bottom:802.365000px;}
.y5_c00178{bottom:826.515000px;}
.y4_c00178{bottom:851.265000px;}
.y3_c00178{bottom:877.815000px;}
.y2_c00178{bottom:899.865000px;}
.y1_c00178{bottom:933.165000px;}
.h8_c00178{height:13.200074px;}
.h9_c00178{height:43.804688px;}
.h4_c00178{height:79.497070px;}
.h6_c00178{height:82.400391px;}
.h5_c00178{height:82.441406px;}
.h3_c00178{height:91.160156px;}
.h7_c00178{height:91.176000px;}
.h2_c00178{height:115.870605px;}
.h0_c00178{height:989.025000px;}
.h1_c00178{height:989.250000px;}
.w1_c00178{width:104.875500px;}
.w0_c00178{width:672.000000px;}
.x0_c00178{left:0.000000px;}
.x4_c00178{left:45.150000px;}
.xa_c00178{left:46.200000px;}
.x6_c00178{left:47.250000px;}
.x3_c00178{left:49.200000px;}
.x5_c00178{left:75.300000px;}
.x1_c00178{left:76.950000px;}
.x2_c00178{left:79.950000px;}
.x7_c00178{left:108.300000px;}
.x9_c00178{left:177.900000px;}
.x8_c00178{left:217.650000px;}
.xc_c00178{left:287.814240px;}
.xb_c00178{left:328.350000px;}
@media print{
.v0_c00178{vertical-align:0.000000pt;}
.ls1_c00178{letter-spacing:0.000000pt;}
.ls2_c00178{letter-spacing:2.666667pt;}
.ls0_c00178{letter-spacing:8.000000pt;}
.ws0_c00178{word-spacing:-72.336000pt;}
.ws1_c00178{word-spacing:-60.608000pt;}
.ws3_c00178{word-spacing:-60.165333pt;}
.ws2_c00178{word-spacing:-18.000000pt;}
.ws4_c00178{word-spacing:0.000000pt;}
._1c_c00178{margin-left:-18.466667pt;}
._1a_c00178{margin-left:-10.560000pt;}
._17_c00178{margin-left:-9.000000pt;}
._9_c00178{margin-left:-8.064000pt;}
._a_c00178{margin-left:-5.952000pt;}
._b_c00178{margin-left:-4.800000pt;}
._11_c00178{margin-left:-3.528000pt;}
._18_c00178{margin-left:-2.536000pt;}
._0_c00178{margin-left:-1.496000pt;}
._1_c00178{width:1.584000pt;}
._3_c00178{width:2.736000pt;}
._4_c00178{width:3.672000pt;}
._15_c00178{width:4.629333pt;}
._2_c00178{width:5.544000pt;}
._6_c00178{width:7.056000pt;}
._f_c00178{width:7.992000pt;}
._e_c00178{width:9.368000pt;}
._5_c00178{width:10.424000pt;}
._1d_c00178{width:11.434667pt;}
._10_c00178{width:12.528000pt;}
._d_c00178{width:14.336000pt;}
._1b_c00178{width:15.298667pt;}
._c_c00178{width:16.640000pt;}
._8_c00178{width:19.880000pt;}
._19_c00178{width:21.160000pt;}
._7_c00178{width:24.552000pt;}
._13_c00178{width:27.669333pt;}
._12_c00178{width:33.602667pt;}
._16_c00178{width:36.266667pt;}
._14_c00178{width:121.066667pt;}
._1e_c00178{width:368.845333pt;}
.fs3_c00178{font-size:21.333333pt;}
.fs7_c00178{font-size:42.666667pt;}
.fs5_c00178{font-size:45.333333pt;}
.fs2_c00178{font-size:64.000000pt;}
.fs1_c00178{font-size:72.000000pt;}
.fs4_c00178{font-size:74.666667pt;}
.fs6_c00178{font-size:77.333333pt;}
.fs0_c00178{font-size:88.000000pt;}
.y0_c00178{bottom:0.000000pt;}
.y23_c00178{bottom:2.760000pt;}
.y22_c00178{bottom:6.425219pt;}
.y21_c00178{bottom:64.813333pt;}
.y20_c00178{bottom:87.346667pt;}
.y1f_c00178{bottom:109.880000pt;}
.y1e_c00178{bottom:132.013333pt;}
.y1d_c00178{bottom:153.613333pt;}
.y1c_c00178{bottom:175.213333pt;}
.y1b_c00178{bottom:196.813333pt;}
.y1a_c00178{bottom:218.413333pt;}
.y19_c00178{bottom:240.680000pt;}
.y18_c00178{bottom:262.546667pt;}
.y17_c00178{bottom:283.880000pt;}
.y16_c00178{bottom:305.746667pt;}
.y15_c00178{bottom:327.080000pt;}
.y14_c00178{bottom:375.880000pt;}
.y13_c00178{bottom:401.746667pt;}
.y12_c00178{bottom:427.880000pt;}
.y11_c00178{bottom:477.346667pt;}
.y10_c00178{bottom:498.413333pt;}
.yf_c00178{bottom:519.880000pt;}
.ye_c00178{bottom:540.946667pt;}
.yd_c00178{bottom:562.280000pt;}
.yc_c00178{bottom:583.880000pt;}
.yb_c00178{bottom:604.813333pt;}
.ya_c00178{bottom:626.680000pt;}
.y9_c00178{bottom:646.546667pt;}
.y8_c00178{bottom:669.880000pt;}
.y7_c00178{bottom:691.480000pt;}
.y6_c00178{bottom:713.213333pt;}
.y5_c00178{bottom:734.680000pt;}
.y4_c00178{bottom:756.680000pt;}
.y3_c00178{bottom:780.280000pt;}
.y2_c00178{bottom:799.880000pt;}
.y1_c00178{bottom:829.480000pt;}
.h8_c00178{height:11.733399pt;}
.h9_c00178{height:38.937500pt;}
.h4_c00178{height:70.664062pt;}
.h6_c00178{height:73.244792pt;}
.h5_c00178{height:73.281250pt;}
.h3_c00178{height:81.031250pt;}
.h7_c00178{height:81.045333pt;}
.h2_c00178{height:102.996094pt;}
.h0_c00178{height:879.133333pt;}
.h1_c00178{height:879.333333pt;}
.w1_c00178{width:93.222667pt;}
.w0_c00178{width:597.333333pt;}
.x0_c00178{left:0.000000pt;}
.x4_c00178{left:40.133333pt;}
.xa_c00178{left:41.066667pt;}
.x6_c00178{left:42.000000pt;}
.x3_c00178{left:43.733333pt;}
.x5_c00178{left:66.933333pt;}
.x1_c00178{left:68.400000pt;}
.x2_c00178{left:71.066667pt;}
.x7_c00178{left:96.266667pt;}
.x9_c00178{left:158.133333pt;}
.x8_c00178{left:193.466667pt;}
.xc_c00178{left:255.834880pt;}
.xb_c00178{left:291.866667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_5f92692889c2e383c42427cc.woff2')format("woff");}.ff1_c00179{font-family:ff1_c00179;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00179;src:url('chunks/assets/font_5dded21d7f115662a5b75351.woff2')format("woff");}.ff2_c00179{font-family:ff2_c00179;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00179;src:url('chunks/assets/font_8116794a40a21db18ea4bf2e.woff2')format("woff");}.ff3_c00179{font-family:ff3_c00179;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00179;src:url('chunks/assets/font_8d0885e59a33af82aaedbee7.woff2')format("woff");}.ff4_c00179{font-family:ff4_c00179;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00179;src:url('chunks/assets/font_e4598eaa61aeafe8dd774b52.woff2')format("woff");}.ff5_c00179{font-family:ff5_c00179;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00179;src:url('chunks/assets/font_4472081c53303d8a55833ea6.woff2')format("woff");}.ff6_c00179{font-family:ff6_c00179;line-height:1.311035;font-style:normal;font-weight: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_c00179;src:url('chunks/assets/font_48c2c24e8225607b22f4d386.woff2')format("woff");}.ff7_c00179{font-family:ff7_c00179;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00179;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff8_c00179{font-family:ff8_c00179;line-height:1.219238;font-style: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;}
.v1_c00179{vertical-align:153.600000px;}
.ls8_c00179{letter-spacing:-3.000000px;}
.ls6_c00179{letter-spacing:0.000000px;}
.ls3_c00179{letter-spacing:0.408000px;}
.ls0_c00179{letter-spacing:1.350000px;}
.ls5_c00179{letter-spacing:4.020000px;}
.ls7_c00179{letter-spacing:9.000000px;}
.ls4_c00179{letter-spacing:33.750000px;}
.ls2_c00179{letter-spacing:37.863000px;}
.ls1_c00179{letter-spacing:41.463000px;}
.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:-26.736000px;}
.ws2_c00179{word-spacing:-22.737000px;}
.ws1_c00179{word-spacing:-17.250000px;}
.ws3_c00179{word-spacing:0.000000px;}
._12_c00179{margin-left:-24.102000px;}
._9_c00179{margin-left:-17.091000px;}
._10_c00179{margin-left:-13.635000px;}
._1e_c00179{margin-left:-11.571000px;}
._f_c00179{margin-left:-10.230000px;}
._20_c00179{margin-left:-9.021000px;}
._17_c00179{margin-left:-7.911000px;}
._e_c00179{margin-left:-5.994000px;}
._8_c00179{margin-left:-4.374000px;}
._a_c00179{margin-left:-2.916000px;}
._5_c00179{margin-left:-1.134000px;}
._4_c00179{width:1.863000px;}
._1f_c00179{width:2.874000px;}
._1_c00179{width:3.888000px;}
._3_c00179{width:5.103000px;}
._0_c00179{width:6.318000px;}
._2_c00179{width:7.857000px;}
._7_c00179{width:9.315000px;}
._1a_c00179{width:10.368000px;}
._15_c00179{width:11.394000px;}
._c_c00179{width:12.636000px;}
._18_c00179{width:14.094000px;}
._d_c00179{width:15.147000px;}
._6_c00179{width:16.524000px;}
._19_c00179{width:17.577000px;}
._1d_c00179{width:18.849000px;}
._14_c00179{width:20.871000px;}
._1b_c00179{width:26.013000px;}
._b_c00179{width:154.710000px;}
._13_c00179{width:204.423000px;}
._11_c00179{width:271.116000px;}
._1c_c00179{width:298.212000px;}
._16_c00179{width:306.747000px;}
.fc2_c00179{color:transparent;}
.fc1_c00179{color:rgb(128,128,128);}
.fc0_c00179{color:rgb(0,0,0);}
.fs7_c00179{font-size:48.000000px;}
.fs4_c00179{font-size:57.000000px;}
.fs3_c00179{font-size:63.000000px;}
.fs6_c00179{font-size:66.000000px;}
.fs2_c00179{font-size:69.000000px;}
.fs1_c00179{font-size:72.000000px;}
.fs0_c00179{font-size:81.000000px;}
.fs5_c00179{font-size:282.000000px;}
.y0_c00179{bottom:0.000000px;}
.y24_c00179{bottom:3.105000px;}
.y23_c00179{bottom:7.228357px;}
.y22_c00179{bottom:68.280000px;}
.y21_c00179{bottom:93.780000px;}
.y20_c00179{bottom:119.430000px;}
.y1f_c00179{bottom:143.430000px;}
.y1e_c00179{bottom:167.730000px;}
.y1d_c00179{bottom:192.030000px;}
.y1c_c00179{bottom:216.630000px;}
.y1b_c00179{bottom:240.930000px;}
.y1a_c00179{bottom:264.630000px;}
.y19_c00179{bottom:289.680000px;}
.y18_c00179{bottom:313.980000px;}
.y17_c00179{bottom:338.280000px;}
.y16_c00179{bottom:362.880000px;}
.y14_c00179{bottom:373.380000px;}
.y15_c00179{bottom:387.180000px;}
.y13_c00179{bottom:436.380000px;}
.y12_c00179{bottom:484.680000px;}
.y11_c00179{bottom:510.330000px;}
.y10_c00179{bottom:533.580000px;}
.yf_c00179{bottom:557.580000px;}
.ye_c00179{bottom:582.180000px;}
.yd_c00179{bottom:606.180000px;}
.yc_c00179{bottom:630.780000px;}
.yb_c00179{bottom:655.080000px;}
.ya_c00179{bottom:679.680000px;}
.y9_c00179{bottom:704.130000px;}
.y8_c00179{bottom:728.430000px;}
.y7_c00179{bottom:752.730000px;}
.y6_c00179{bottom:777.330000px;}
.y5_c00179{bottom:800.580000px;}
.y4_c00179{bottom:825.630000px;}
.y3_c00179{bottom:850.230000px;}
.y2_c00179{bottom:874.080000px;}
.y1_c00179{bottom:897.780000px;}
.h7_c00179{height:13.200074px;}
.h8_c00179{height:43.804688px;}
.h4_c00179{height:66.713379px;}
.h3_c00179{height:72.312000px;}
.h1_c00179{height:79.497070px;}
.h6_c00179{height:83.563477px;}
.h2_c00179{height:84.269531px;}
.h5_c00179{height:276.767578px;}
.h0_c00179{height:995.250000px;}
.w2_c00179{width:104.875500px;}
.w0_c00179{width:667.425000px;}
.w1_c00179{width:667.500000px;}
.x0_c00179{left:0.000000px;}
.x4_c00179{left:33.300000px;}
.x5_c00179{left:34.350000px;}
.x7_c00179{left:41.550000px;}
.xe_c00179{left:43.500000px;}
.xf_c00179{left:45.150000px;}
.x1_c00179{left:126.900000px;}
.x2_c00179{left:128.250000px;}
.x3_c00179{left:129.900000px;}
.x6_c00179{left:131.250000px;}
.x8_c00179{left:132.600000px;}
.x9_c00179{left:133.950000px;}
.xa_c00179{left:135.600000px;}
.xc_c00179{left:137.250000px;}
.x10_c00179{left:139.050000px;}
.xd_c00179{left:176.550000px;}
.xb_c00179{left:242.250000px;}
.x12_c00179{left:285.526749px;}
.x11_c00179{left:575.400000px;}
@media print{
.v0_c00179{vertical-align:0.000000pt;}
.v1_c00179{vertical-align:136.533333pt;}
.ls8_c00179{letter-spacing:-2.666667pt;}
.ls6_c00179{letter-spacing:0.000000pt;}
.ls3_c00179{letter-spacing:0.362667pt;}
.ls0_c00179{letter-spacing:1.200000pt;}
.ls5_c00179{letter-spacing:3.573333pt;}
.ls7_c00179{letter-spacing:8.000000pt;}
.ls4_c00179{letter-spacing:30.000000pt;}
.ls2_c00179{letter-spacing:33.656000pt;}
.ls1_c00179{letter-spacing:36.856000pt;}
.ws0_c00179{word-spacing:-23.765333pt;}
.ws2_c00179{word-spacing:-20.210667pt;}
.ws1_c00179{word-spacing:-15.333333pt;}
.ws3_c00179{word-spacing:0.000000pt;}
._12_c00179{margin-left:-21.424000pt;}
._9_c00179{margin-left:-15.192000pt;}
._10_c00179{margin-left:-12.120000pt;}
._1e_c00179{margin-left:-10.285333pt;}
._f_c00179{margin-left:-9.093333pt;}
._20_c00179{margin-left:-8.018667pt;}
._17_c00179{margin-left:-7.032000pt;}
._e_c00179{margin-left:-5.328000pt;}
._8_c00179{margin-left:-3.888000pt;}
._a_c00179{margin-left:-2.592000pt;}
._5_c00179{margin-left:-1.008000pt;}
._4_c00179{width:1.656000pt;}
._1f_c00179{width:2.554667pt;}
._1_c00179{width:3.456000pt;}
._3_c00179{width:4.536000pt;}
._0_c00179{width:5.616000pt;}
._2_c00179{width:6.984000pt;}
._7_c00179{width:8.280000pt;}
._1a_c00179{width:9.216000pt;}
._15_c00179{width:10.128000pt;}
._c_c00179{width:11.232000pt;}
._18_c00179{width:12.528000pt;}
._d_c00179{width:13.464000pt;}
._6_c00179{width:14.688000pt;}
._19_c00179{width:15.624000pt;}
._1d_c00179{width:16.754667pt;}
._14_c00179{width:18.552000pt;}
._1b_c00179{width:23.122667pt;}
._b_c00179{width:137.520000pt;}
._13_c00179{width:181.709333pt;}
._11_c00179{width:240.992000pt;}
._1c_c00179{width:265.077333pt;}
._16_c00179{width:272.664000pt;}
.fs7_c00179{font-size:42.666667pt;}
.fs4_c00179{font-size:50.666667pt;}
.fs3_c00179{font-size:56.000000pt;}
.fs6_c00179{font-size:58.666667pt;}
.fs2_c00179{font-size:61.333333pt;}
.fs1_c00179{font-size:64.000000pt;}
.fs0_c00179{font-size:72.000000pt;}
.fs5_c00179{font-size:250.666667pt;}
.y0_c00179{bottom:0.000000pt;}
.y24_c00179{bottom:2.760000pt;}
.y23_c00179{bottom:6.425206pt;}
.y22_c00179{bottom:60.693333pt;}
.y21_c00179{bottom:83.360000pt;}
.y20_c00179{bottom:106.160000pt;}
.y1f_c00179{bottom:127.493333pt;}
.y1e_c00179{bottom:149.093333pt;}
.y1d_c00179{bottom:170.693333pt;}
.y1c_c00179{bottom:192.560000pt;}
.y1b_c00179{bottom:214.160000pt;}
.y1a_c00179{bottom:235.226667pt;}
.y19_c00179{bottom:257.493333pt;}
.y18_c00179{bottom:279.093333pt;}
.y17_c00179{bottom:300.693333pt;}
.y16_c00179{bottom:322.560000pt;}
.y14_c00179{bottom:331.893333pt;}
.y15_c00179{bottom:344.160000pt;}
.y13_c00179{bottom:387.893333pt;}
.y12_c00179{bottom:430.826667pt;}
.y11_c00179{bottom:453.626667pt;}
.y10_c00179{bottom:474.293333pt;}
.yf_c00179{bottom:495.626667pt;}
.ye_c00179{bottom:517.493333pt;}
.yd_c00179{bottom:538.826667pt;}
.yc_c00179{bottom:560.693333pt;}
.yb_c00179{bottom:582.293333pt;}
.ya_c00179{bottom:604.160000pt;}
.y9_c00179{bottom:625.893333pt;}
.y8_c00179{bottom:647.493333pt;}
.y7_c00179{bottom:669.093333pt;}
.y6_c00179{bottom:690.960000pt;}
.y5_c00179{bottom:711.626667pt;}
.y4_c00179{bottom:733.893333pt;}
.y3_c00179{bottom:755.760000pt;}
.y2_c00179{bottom:776.960000pt;}
.y1_c00179{bottom:798.026667pt;}
.h7_c00179{height:11.733399pt;}
.h8_c00179{height:38.937500pt;}
.h4_c00179{height:59.300781pt;}
.h3_c00179{height:64.277333pt;}
.h1_c00179{height:70.664062pt;}
.h6_c00179{height:74.278646pt;}
.h2_c00179{height:74.906250pt;}
.h5_c00179{height:246.015625pt;}
.h0_c00179{height:884.666667pt;}
.w2_c00179{width:93.222667pt;}
.w0_c00179{width:593.266667pt;}
.w1_c00179{width:593.333333pt;}
.x0_c00179{left:0.000000pt;}
.x4_c00179{left:29.600000pt;}
.x5_c00179{left:30.533333pt;}
.x7_c00179{left:36.933333pt;}
.xe_c00179{left:38.666667pt;}
.xf_c00179{left:40.133333pt;}
.x1_c00179{left:112.800000pt;}
.x2_c00179{left:114.000000pt;}
.x3_c00179{left:115.466667pt;}
.x6_c00179{left:116.666667pt;}
.x8_c00179{left:117.866667pt;}
.x9_c00179{left:119.066667pt;}
.xa_c00179{left:120.533333pt;}
.xc_c00179{left:122.000000pt;}
.x10_c00179{left:123.600000pt;}
.xd_c00179{left:156.933333pt;}
.xb_c00179{left:215.333333pt;}
.x12_c00179{left:253.801554pt;}
.x11_c00179{left:511.466667pt;}
}





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

.ir_c00180:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00180{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00180;src:url('chunks/assets/font_c2375e525ecf4036895b305d.woff2')format("woff");}.ff1_c00180{font-family:ff1_c00180;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00180;src:url('chunks/assets/font_91e36df7a81d6f01731629b1.woff2')format("woff");}.ff2_c00180{font-family:ff2_c00180;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00180;src:url('chunks/assets/font_0de4b6929848a0508cb2a4ba.woff2')format("woff");}.ff3_c00180{font-family:ff3_c00180;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00180;src:url('chunks/assets/font_e001f9d62b5b8ed840a01a14.woff2')format("woff");}.ff4_c00180{font-family:ff4_c00180;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00180;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c00180{font-family:ff5_c00180;line-height:1.219238;font-style: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;}
.ls2_c00180{letter-spacing:-6.000000px;}
.ls1_c00180{letter-spacing:0.000000px;}
.ls0_c00180{letter-spacing:5.280000px;}
.sc__c00180{text-shadow:none;}
.sc0_c00180{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00180{-webkit-text-stroke:0px transparent;}
.sc0_c00180{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00180{word-spacing:-55.224000px;}
.ws0_c00180{word-spacing:-17.352000px;}
.ws2_c00180{word-spacing:0.000000px;}
._19_c00180{margin-left:-32.715000px;}
._14_c00180{margin-left:-26.526000px;}
._17_c00180{margin-left:-22.332000px;}
._15_c00180{margin-left:-17.175000px;}
._1a_c00180{margin-left:-15.222000px;}
._12_c00180{margin-left:-12.510000px;}
._1b_c00180{margin-left:-8.919000px;}
._18_c00180{margin-left:-7.677000px;}
._13_c00180{margin-left:-5.724000px;}
._b_c00180{margin-left:-4.410000px;}
._c_c00180{margin-left:-2.970000px;}
._3_c00180{margin-left:-1.347000px;}
._11_c00180{width:1.296000px;}
._f_c00180{width:3.240000px;}
._10_c00180{width:4.635000px;}
._e_c00180{width:5.688000px;}
._d_c00180{width:7.056000px;}
._a_c00180{width:8.136000px;}
._2_c00180{width:9.558000px;}
._9_c00180{width:10.854000px;}
._8_c00180{width:12.906000px;}
._5_c00180{width:14.472000px;}
._4_c00180{width:15.624000px;}
._1_c00180{width:17.577000px;}
._0_c00180{width:24.543000px;}
._7_c00180{width:30.609000px;}
._6_c00180{width:39.672000px;}
._16_c00180{width:173.466000px;}
._1c_c00180{width:385.257000px;}
.fc2_c00180{color:transparent;}
.fc1_c00180{color:rgb(128,128,128);}
.fc0_c00180{color:rgb(0,0,0);}
.fs4_c00180{font-size:48.000000px;}
.fs1_c00180{font-size:72.000000px;}
.fs0_c00180{font-size:81.000000px;}
.fs2_c00180{font-size:87.000000px;}
.fs3_c00180{font-size:117.000000px;}
.y0_c00180{bottom:0.000000px;}
.y26_c00180{bottom:3.105000px;}
.y25_c00180{bottom:7.228371px;}
.y24_c00180{bottom:66.615000px;}
.y23_c00180{bottom:91.215000px;}
.y22_c00180{bottom:117.165000px;}
.y21_c00180{bottom:142.065000px;}
.y20_c00180{bottom:165.165000px;}
.y1f_c00180{bottom:190.065000px;}
.y1e_c00180{bottom:214.065000px;}
.y1d_c00180{bottom:238.965000px;}
.y1c_c00180{bottom:262.965000px;}
.y1b_c00180{bottom:287.565000px;}
.y1a_c00180{bottom:311.565000px;}
.y19_c00180{bottom:335.565000px;}
.y18_c00180{bottom:359.565000px;}
.y17_c00180{bottom:383.415000px;}
.y16_c00180{bottom:407.415000px;}
.y15_c00180{bottom:431.115000px;}
.y14_c00180{bottom:455.415000px;}
.y13_c00180{bottom:479.265000px;}
.y12_c00180{bottom:503.565000px;}
.y11_c00180{bottom:526.965000px;}
.y10_c00180{bottom:551.115000px;}
.yf_c00180{bottom:574.815000px;}
.ye_c00180{bottom:598.365000px;}
.yd_c00180{bottom:622.665000px;}
.yc_c00180{bottom:645.315000px;}
.yb_c00180{bottom:669.615000px;}
.ya_c00180{bottom:693.315000px;}
.y9_c00180{bottom:717.315000px;}
.y8_c00180{bottom:741.465000px;}
.y7_c00180{bottom:765.915000px;}
.y6_c00180{bottom:790.065000px;}
.y5_c00180{bottom:813.165000px;}
.y4_c00180{bottom:837.465000px;}
.y3_c00180{bottom:861.765000px;}
.y2_c00180{bottom:885.615000px;}
.y1_c00180{bottom:920.415000px;}
.h5_c00180{height:13.200074px;}
.h6_c00180{height:43.804688px;}
.h3_c00180{height:79.497070px;}
.h2_c00180{height:84.269531px;}
.h4_c00180{height:136.937988px;}
.h0_c00180{height:989.025000px;}
.h1_c00180{height:989.250000px;}
.w1_c00180{width:104.875500px;}
.w0_c00180{width:672.000000px;}
.x0_c00180{left:0.000000px;}
.x2_c00180{left:39.450000px;}
.x3_c00180{left:40.500000px;}
.x4_c00180{left:42.150000px;}
.x1_c00180{left:61.050000px;}
.x6_c00180{left:287.814240px;}
.x5_c00180{left:361.500000px;}
@media print{
.v0_c00180{vertical-align:0.000000pt;}
.ls2_c00180{letter-spacing:-5.333333pt;}
.ls1_c00180{letter-spacing:0.000000pt;}
.ls0_c00180{letter-spacing:4.693333pt;}
.ws1_c00180{word-spacing:-49.088000pt;}
.ws0_c00180{word-spacing:-15.424000pt;}
.ws2_c00180{word-spacing:0.000000pt;}
._19_c00180{margin-left:-29.080000pt;}
._14_c00180{margin-left:-23.578667pt;}
._17_c00180{margin-left:-19.850667pt;}
._15_c00180{margin-left:-15.266667pt;}
._1a_c00180{margin-left:-13.530667pt;}
._12_c00180{margin-left:-11.120000pt;}
._1b_c00180{margin-left:-7.928000pt;}
._18_c00180{margin-left:-6.824000pt;}
._13_c00180{margin-left:-5.088000pt;}
._b_c00180{margin-left:-3.920000pt;}
._c_c00180{margin-left:-2.640000pt;}
._3_c00180{margin-left:-1.197333pt;}
._11_c00180{width:1.152000pt;}
._f_c00180{width:2.880000pt;}
._10_c00180{width:4.120000pt;}
._e_c00180{width:5.056000pt;}
._d_c00180{width:6.272000pt;}
._a_c00180{width:7.232000pt;}
._2_c00180{width:8.496000pt;}
._9_c00180{width:9.648000pt;}
._8_c00180{width:11.472000pt;}
._5_c00180{width:12.864000pt;}
._4_c00180{width:13.888000pt;}
._1_c00180{width:15.624000pt;}
._0_c00180{width:21.816000pt;}
._7_c00180{width:27.208000pt;}
._6_c00180{width:35.264000pt;}
._16_c00180{width:154.192000pt;}
._1c_c00180{width:342.450667pt;}
.fs4_c00180{font-size:42.666667pt;}
.fs1_c00180{font-size:64.000000pt;}
.fs0_c00180{font-size:72.000000pt;}
.fs2_c00180{font-size:77.333333pt;}
.fs3_c00180{font-size:104.000000pt;}
.y0_c00180{bottom:0.000000pt;}
.y26_c00180{bottom:2.760000pt;}
.y25_c00180{bottom:6.425219pt;}
.y24_c00180{bottom:59.213333pt;}
.y23_c00180{bottom:81.080000pt;}
.y22_c00180{bottom:104.146667pt;}
.y21_c00180{bottom:126.280000pt;}
.y20_c00180{bottom:146.813333pt;}
.y1f_c00180{bottom:168.946667pt;}
.y1e_c00180{bottom:190.280000pt;}
.y1d_c00180{bottom:212.413333pt;}
.y1c_c00180{bottom:233.746667pt;}
.y1b_c00180{bottom:255.613333pt;}
.y1a_c00180{bottom:276.946667pt;}
.y19_c00180{bottom:298.280000pt;}
.y18_c00180{bottom:319.613333pt;}
.y17_c00180{bottom:340.813333pt;}
.y16_c00180{bottom:362.146667pt;}
.y15_c00180{bottom:383.213333pt;}
.y14_c00180{bottom:404.813333pt;}
.y13_c00180{bottom:426.013333pt;}
.y12_c00180{bottom:447.613333pt;}
.y11_c00180{bottom:468.413333pt;}
.y10_c00180{bottom:489.880000pt;}
.yf_c00180{bottom:510.946667pt;}
.ye_c00180{bottom:531.880000pt;}
.yd_c00180{bottom:553.480000pt;}
.yc_c00180{bottom:573.613333pt;}
.yb_c00180{bottom:595.213333pt;}
.ya_c00180{bottom:616.280000pt;}
.y9_c00180{bottom:637.613333pt;}
.y8_c00180{bottom:659.080000pt;}
.y7_c00180{bottom:680.813333pt;}
.y6_c00180{bottom:702.280000pt;}
.y5_c00180{bottom:722.813333pt;}
.y4_c00180{bottom:744.413333pt;}
.y3_c00180{bottom:766.013333pt;}
.y2_c00180{bottom:787.213333pt;}
.y1_c00180{bottom:818.146667pt;}
.h5_c00180{height:11.733399pt;}
.h6_c00180{height:38.937500pt;}
.h3_c00180{height:70.664062pt;}
.h2_c00180{height:74.906250pt;}
.h4_c00180{height:121.722656pt;}
.h0_c00180{height:879.133333pt;}
.h1_c00180{height:879.333333pt;}
.w1_c00180{width:93.222667pt;}
.w0_c00180{width:597.333333pt;}
.x0_c00180{left:0.000000pt;}
.x2_c00180{left:35.066667pt;}
.x3_c00180{left:36.000000pt;}
.x4_c00180{left:37.466667pt;}
.x1_c00180{left:54.266667pt;}
.x6_c00180{left:255.834880pt;}
.x5_c00180{left:321.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_82f5082035b8c58c6c236315.woff2')format("woff");}.ff1_c00181{font-family:ff1_c00181;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00181;src:url('chunks/assets/font_091f5c4ee465fdf399daa309.woff2')format("woff");}.ff2_c00181{font-family:ff2_c00181;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00181;src:url('chunks/assets/font_b12a0655db7e8750d68925bc.woff2')format("woff");}.ff3_c00181{font-family:ff3_c00181;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00181;src:url('chunks/assets/font_57f2dfe84a7d6baf41f82ed6.woff2')format("woff");}.ff4_c00181{font-family:ff4_c00181;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00181;src:url('chunks/assets/font_253ae2bbd27818fecfefe9fb.woff2')format("woff");}.ff5_c00181{font-family:ff5_c00181;line-height:1.401855;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00181;src:url('chunks/assets/font_93b8017d05ecb2164de9cb11.woff2')format("woff");}.ff6_c00181{font-family:ff6_c00181;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00181;src:url('chunks/assets/font_ac41816b9cdc87cabdae75e1.woff2')format("woff");}.ff7_c00181{font-family:ff7_c00181;line-height:1.311035;font-style:normal;font-weight: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_c00181;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff8_c00181{font-family:ff8_c00181;line-height:1.219238;font-style: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;}
.ls5_c00181{letter-spacing:-3.000000px;}
.ls2_c00181{letter-spacing:0.000000px;}
.ls4_c00181{letter-spacing:3.000000px;}
.ls3_c00181{letter-spacing:6.000000px;}
.ls0_c00181{letter-spacing:8.586000px;}
.ls1_c00181{letter-spacing:156.750000px;}
.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;}
}
.ws1_c00181{word-spacing:-33.000000px;}
.ws0_c00181{word-spacing:-17.352000px;}
.ws2_c00181{word-spacing:0.000000px;}
._17_c00181{margin-left:-25.302000px;}
._21_c00181{margin-left:-21.096000px;}
._1e_c00181{margin-left:-18.258000px;}
._11_c00181{margin-left:-17.235000px;}
._1d_c00181{margin-left:-15.555000px;}
._1c_c00181{margin-left:-14.214000px;}
._14_c00181{margin-left:-11.349000px;}
._1a_c00181{margin-left:-9.735000px;}
._1b_c00181{margin-left:-8.508000px;}
._4_c00181{margin-left:-7.047000px;}
._e_c00181{margin-left:-5.022000px;}
._5_c00181{margin-left:-3.159000px;}
._7_c00181{margin-left:-1.296000px;}
._0_c00181{width:1.215000px;}
._1_c00181{width:2.997000px;}
._2_c00181{width:4.374000px;}
._6_c00181{width:5.508000px;}
._3_c00181{width:6.642000px;}
._8_c00181{width:7.695000px;}
._a_c00181{width:8.991000px;}
._10_c00181{width:10.134000px;}
._b_c00181{width:11.907000px;}
._c_c00181{width:13.347000px;}
._13_c00181{width:14.487000px;}
._f_c00181{width:16.614000px;}
._15_c00181{width:18.549000px;}
._22_c00181{width:20.118000px;}
._23_c00181{width:21.789000px;}
._18_c00181{width:25.839000px;}
._19_c00181{width:32.238000px;}
._9_c00181{width:42.723000px;}
._1f_c00181{width:102.258000px;}
._16_c00181{width:170.667000px;}
._20_c00181{width:243.288000px;}
._d_c00181{width:258.984000px;}
._12_c00181{width:439.899000px;}
._24_c00181{width:710.769000px;}
.fc2_c00181{color:transparent;}
.fc1_c00181{color:rgb(128,128,128);}
.fc0_c00181{color:rgb(0,0,0);}
.fs6_c00181{font-size:42.000000px;}
.fs7_c00181{font-size:48.000000px;}
.fs2_c00181{font-size:51.000000px;}
.fs3_c00181{font-size:54.000000px;}
.fs5_c00181{font-size:60.000000px;}
.fs1_c00181{font-size:72.000000px;}
.fs4_c00181{font-size:78.000000px;}
.fs0_c00181{font-size:81.000000px;}
.y0_c00181{bottom:0.000000px;}
.y25_c00181{bottom:3.105000px;}
.y24_c00181{bottom:7.228369px;}
.y23_c00181{bottom:64.470000px;}
.y22_c00181{bottom:88.020000px;}
.y21_c00181{bottom:113.370000px;}
.y20_c00181{bottom:137.370000px;}
.y1f_c00181{bottom:162.270000px;}
.y1e_c00181{bottom:186.570000px;}
.y1d_c00181{bottom:209.970000px;}
.y1c_c00181{bottom:234.270000px;}
.y1b_c00181{bottom:259.170000px;}
.y1a_c00181{bottom:283.470000px;}
.y19_c00181{bottom:307.020000px;}
.y18_c00181{bottom:330.720000px;}
.y17_c00181{bottom:355.620000px;}
.y16_c00181{bottom:380.370000px;}
.y15_c00181{bottom:404.220000px;}
.y14_c00181{bottom:427.620000px;}
.y13_c00181{bottom:451.620000px;}
.y12_c00181{bottom:475.920000px;}
.y11_c00181{bottom:499.770000px;}
.y10_c00181{bottom:524.070000px;}
.yf_c00181{bottom:550.470000px;}
.ye_c00181{bottom:572.070000px;}
.yd_c00181{bottom:596.370000px;}
.yc_c00181{bottom:620.670000px;}
.yb_c00181{bottom:644.970000px;}
.ya_c00181{bottom:668.970000px;}
.y9_c00181{bottom:692.820000px;}
.y8_c00181{bottom:716.820000px;}
.y7_c00181{bottom:740.820000px;}
.y6_c00181{bottom:765.120000px;}
.y5_c00181{bottom:789.720000px;}
.y4_c00181{bottom:812.970000px;}
.y3_c00181{bottom:836.970000px;}
.y2_c00181{bottom:859.920000px;}
.y1_c00181{bottom:885.270000px;}
.h6_c00181{height:13.200073px;}
.h7_c00181{height:43.804688px;}
.h2_c00181{height:79.497070px;}
.h3_c00181{height:84.269531px;}
.h4_c00181{height:91.160156px;}
.h5_c00181{height:98.756836px;}
.h1_c00181{height:981.000000px;}
.h0_c00181{height:981.150000px;}
.w1_c00181{width:104.875500px;}
.w0_c00181{width:657.750000px;}
.x0_c00181{left:0.000000px;}
.x5_c00181{left:31.800000px;}
.x2_c00181{left:34.200000px;}
.xe_c00181{left:48.300000px;}
.xf_c00181{left:66.600000px;}
.xb_c00181{left:82.050000px;}
.xd_c00181{left:116.850000px;}
.xc_c00181{left:118.500000px;}
.xa_c00181{left:119.850000px;}
.x9_c00181{left:120.900000px;}
.x8_c00181{left:122.250000px;}
.x7_c00181{left:123.900000px;}
.x6_c00181{left:125.250000px;}
.x4_c00181{left:126.900000px;}
.x3_c00181{left:127.950000px;}
.x1_c00181{left:129.150000px;}
.x11_c00181{left:280.689240px;}
.x10_c00181{left:349.800000px;}
@media print{
.v0_c00181{vertical-align:0.000000pt;}
.ls5_c00181{letter-spacing:-2.666667pt;}
.ls2_c00181{letter-spacing:0.000000pt;}
.ls4_c00181{letter-spacing:2.666667pt;}
.ls3_c00181{letter-spacing:5.333333pt;}
.ls0_c00181{letter-spacing:7.632000pt;}
.ls1_c00181{letter-spacing:139.333333pt;}
.ws1_c00181{word-spacing:-29.333333pt;}
.ws0_c00181{word-spacing:-15.424000pt;}
.ws2_c00181{word-spacing:0.000000pt;}
._17_c00181{margin-left:-22.490667pt;}
._21_c00181{margin-left:-18.752000pt;}
._1e_c00181{margin-left:-16.229333pt;}
._11_c00181{margin-left:-15.320000pt;}
._1d_c00181{margin-left:-13.826667pt;}
._1c_c00181{margin-left:-12.634667pt;}
._14_c00181{margin-left:-10.088000pt;}
._1a_c00181{margin-left:-8.653333pt;}
._1b_c00181{margin-left:-7.562667pt;}
._4_c00181{margin-left:-6.264000pt;}
._e_c00181{margin-left:-4.464000pt;}
._5_c00181{margin-left:-2.808000pt;}
._7_c00181{margin-left:-1.152000pt;}
._0_c00181{width:1.080000pt;}
._1_c00181{width:2.664000pt;}
._2_c00181{width:3.888000pt;}
._6_c00181{width:4.896000pt;}
._3_c00181{width:5.904000pt;}
._8_c00181{width:6.840000pt;}
._a_c00181{width:7.992000pt;}
._10_c00181{width:9.008000pt;}
._b_c00181{width:10.584000pt;}
._c_c00181{width:11.864000pt;}
._13_c00181{width:12.877333pt;}
._f_c00181{width:14.768000pt;}
._15_c00181{width:16.488000pt;}
._22_c00181{width:17.882667pt;}
._23_c00181{width:19.368000pt;}
._18_c00181{width:22.968000pt;}
._19_c00181{width:28.656000pt;}
._9_c00181{width:37.976000pt;}
._1f_c00181{width:90.896000pt;}
._16_c00181{width:151.704000pt;}
._20_c00181{width:216.256000pt;}
._d_c00181{width:230.208000pt;}
._12_c00181{width:391.021333pt;}
._24_c00181{width:631.794667pt;}
.fs6_c00181{font-size:37.333333pt;}
.fs7_c00181{font-size:42.666667pt;}
.fs2_c00181{font-size:45.333333pt;}
.fs3_c00181{font-size:48.000000pt;}
.fs5_c00181{font-size:53.333333pt;}
.fs1_c00181{font-size:64.000000pt;}
.fs4_c00181{font-size:69.333333pt;}
.fs0_c00181{font-size:72.000000pt;}
.y0_c00181{bottom:0.000000pt;}
.y25_c00181{bottom:2.760000pt;}
.y24_c00181{bottom:6.425217pt;}
.y23_c00181{bottom:57.306667pt;}
.y22_c00181{bottom:78.240000pt;}
.y21_c00181{bottom:100.773333pt;}
.y20_c00181{bottom:122.106667pt;}
.y1f_c00181{bottom:144.240000pt;}
.y1e_c00181{bottom:165.840000pt;}
.y1d_c00181{bottom:186.640000pt;}
.y1c_c00181{bottom:208.240000pt;}
.y1b_c00181{bottom:230.373333pt;}
.y1a_c00181{bottom:251.973333pt;}
.y19_c00181{bottom:272.906667pt;}
.y18_c00181{bottom:293.973333pt;}
.y17_c00181{bottom:316.106667pt;}
.y16_c00181{bottom:338.106667pt;}
.y15_c00181{bottom:359.306667pt;}
.y14_c00181{bottom:380.106667pt;}
.y13_c00181{bottom:401.440000pt;}
.y12_c00181{bottom:423.040000pt;}
.y11_c00181{bottom:444.240000pt;}
.y10_c00181{bottom:465.840000pt;}
.yf_c00181{bottom:489.306667pt;}
.ye_c00181{bottom:508.506667pt;}
.yd_c00181{bottom:530.106667pt;}
.yc_c00181{bottom:551.706667pt;}
.yb_c00181{bottom:573.306667pt;}
.ya_c00181{bottom:594.640000pt;}
.y9_c00181{bottom:615.840000pt;}
.y8_c00181{bottom:637.173333pt;}
.y7_c00181{bottom:658.506667pt;}
.y6_c00181{bottom:680.106667pt;}
.y5_c00181{bottom:701.973333pt;}
.y4_c00181{bottom:722.640000pt;}
.y3_c00181{bottom:743.973333pt;}
.y2_c00181{bottom:764.373333pt;}
.y1_c00181{bottom:786.906667pt;}
.h6_c00181{height:11.733399pt;}
.h7_c00181{height:38.937500pt;}
.h2_c00181{height:70.664062pt;}
.h3_c00181{height:74.906250pt;}
.h4_c00181{height:81.031250pt;}
.h5_c00181{height:87.783854pt;}
.h1_c00181{height:872.000000pt;}
.h0_c00181{height:872.133333pt;}
.w1_c00181{width:93.222667pt;}
.w0_c00181{width:584.666667pt;}
.x0_c00181{left:0.000000pt;}
.x5_c00181{left:28.266667pt;}
.x2_c00181{left:30.400000pt;}
.xe_c00181{left:42.933333pt;}
.xf_c00181{left:59.200000pt;}
.xb_c00181{left:72.933333pt;}
.xd_c00181{left:103.866667pt;}
.xc_c00181{left:105.333333pt;}
.xa_c00181{left:106.533333pt;}
.x9_c00181{left:107.466667pt;}
.x8_c00181{left:108.666667pt;}
.x7_c00181{left:110.133333pt;}
.x6_c00181{left:111.333333pt;}
.x4_c00181{left:112.800000pt;}
.x3_c00181{left:113.733333pt;}
.x1_c00181{left:114.800000pt;}
.x11_c00181{left:249.501546pt;}
.x10_c00181{left:310.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_9ccc2ce079e56d64798d2fd3.woff2')format("woff");}.ff1_c00182{font-family:ff1_c00182;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00182;src:url('chunks/assets/font_f862ac07bcdf36a03ff51be2.woff2')format("woff");}.ff2_c00182{font-family:ff2_c00182;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00182;src:url('chunks/assets/font_246012b71a1377ef751f4d33.woff2')format("woff");}.ff3_c00182{font-family:ff3_c00182;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00182;src:url('chunks/assets/font_99ea27bf5be66aa14cce6055.woff2')format("woff");}.ff4_c00182{font-family:ff4_c00182;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00182;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c00182{font-family:ff5_c00182;line-height:1.219238;font-style: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;}
.ls2_c00182{letter-spacing:0.000000px;}
.ls3_c00182{letter-spacing:3.000000px;}
.ls0_c00182{letter-spacing:4.602000px;}
.ls1_c00182{letter-spacing:54.402000px;}
.sc__c00182{text-shadow:none;}
.sc0_c00182{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00182{-webkit-text-stroke:0px transparent;}
.sc0_c00182{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00182{word-spacing:-31.812000px;}
.ws1_c00182{word-spacing:-23.859000px;}
.ws2_c00182{word-spacing:-17.352000px;}
.ws3_c00182{word-spacing:-13.737000px;}
.ws4_c00182{word-spacing:0.000000px;}
._1_c00182{margin-left:-21.780000px;}
._1d_c00182{margin-left:-18.918000px;}
._2_c00182{margin-left:-15.312000px;}
._11_c00182{margin-left:-13.518000px;}
._0_c00182{margin-left:-10.164000px;}
._f_c00182{margin-left:-8.148000px;}
._3_c00182{margin-left:-6.900000px;}
._12_c00182{margin-left:-5.577000px;}
._18_c00182{margin-left:-4.527000px;}
._10_c00182{margin-left:-3.498000px;}
._d_c00182{margin-left:-1.683000px;}
._13_c00182{width:1.518000px;}
._c_c00182{width:2.772000px;}
._b_c00182{width:4.356000px;}
._5_c00182{width:5.445000px;}
._15_c00182{width:6.792000px;}
._4_c00182{width:8.019000px;}
._8_c00182{width:9.108000px;}
._a_c00182{width:11.088000px;}
._9_c00182{width:12.474000px;}
._6_c00182{width:13.662000px;}
._7_c00182{width:15.246000px;}
._17_c00182{width:18.111000px;}
._19_c00182{width:19.665000px;}
._1b_c00182{width:22.158000px;}
._1f_c00182{width:24.351000px;}
._1e_c00182{width:30.129000px;}
._22_c00182{width:33.939000px;}
._21_c00182{width:41.391000px;}
._e_c00182{width:53.133000px;}
._1c_c00182{width:68.892000px;}
._14_c00182{width:100.179000px;}
._23_c00182{width:263.817000px;}
._16_c00182{width:308.247000px;}
._20_c00182{width:320.328000px;}
._1a_c00182{width:330.216000px;}
.fc2_c00182{color:transparent;}
.fc1_c00182{color:rgb(128,128,128);}
.fc0_c00182{color:rgb(0,0,0);}
.fs8_c00182{font-size:48.000000px;}
.fs6_c00182{font-size:57.000000px;}
.fs5_c00182{font-size:63.000000px;}
.fs4_c00182{font-size:69.000000px;}
.fs3_c00182{font-size:72.000000px;}
.fs7_c00182{font-size:78.000000px;}
.fs2_c00182{font-size:81.000000px;}
.fs1_c00182{font-size:99.000000px;}
.fs0_c00182{font-size:132.000000px;}
.y0_c00182{bottom:0.000000px;}
.y26_c00182{bottom:3.105000px;}
.y25_c00182{bottom:7.228371px;}
.y24_c00182{bottom:76.065000px;}
.y23_c00182{bottom:101.265000px;}
.y22_c00182{bottom:127.215000px;}
.y21_c00182{bottom:151.665000px;}
.y20_c00182{bottom:176.565000px;}
.y1f_c00182{bottom:200.115000px;}
.y1e_c00182{bottom:225.765000px;}
.y1d_c00182{bottom:250.215000px;}
.y1c_c00182{bottom:274.515000px;}
.y1b_c00182{bottom:298.815000px;}
.y1a_c00182{bottom:322.665000px;}
.y19_c00182{bottom:346.965000px;}
.y18_c00182{bottom:370.965000px;}
.y17_c00182{bottom:395.565000px;}
.y16_c00182{bottom:419.265000px;}
.y15_c00182{bottom:443.265000px;}
.y14_c00182{bottom:467.415000px;}
.y13_c00182{bottom:491.415000px;}
.y12_c00182{bottom:515.415000px;}
.y11_c00182{bottom:539.115000px;}
.y10_c00182{bottom:563.415000px;}
.yf_c00182{bottom:587.265000px;}
.ye_c00182{bottom:611.565000px;}
.yd_c00182{bottom:634.215000px;}
.yc_c00182{bottom:660.165000px;}
.yb_c00182{bottom:684.915000px;}
.ya_c00182{bottom:706.365000px;}
.y9_c00182{bottom:730.665000px;}
.y8_c00182{bottom:754.665000px;}
.y7_c00182{bottom:778.065000px;}
.y6_c00182{bottom:802.365000px;}
.y5_c00182{bottom:826.665000px;}
.y4_c00182{bottom:850.965000px;}
.y3_c00182{bottom:873.915000px;}
.y2_c00182{bottom:898.815000px;}
.y1_c00182{bottom:934.665000px;}
.h6_c00182{height:13.200074px;}
.h7_c00182{height:43.804688px;}
.h3_c00182{height:79.497070px;}
.h4_c00182{height:84.269531px;}
.h5_c00182{height:98.756836px;}
.h2_c00182{height:167.126953px;}
.h0_c00182{height:989.025000px;}
.h1_c00182{height:989.250000px;}
.w1_c00182{width:104.875500px;}
.w0_c00182{width:672.000000px;}
.x0_c00182{left:0.000000px;}
.x4_c00182{left:24.600000px;}
.x8_c00182{left:36.150000px;}
.x6_c00182{left:38.250000px;}
.x5_c00182{left:40.500000px;}
.x7_c00182{left:41.550000px;}
.x3_c00182{left:43.200000px;}
.x2_c00182{left:45.300000px;}
.x1_c00182{left:66.150000px;}
.xa_c00182{left:287.814240px;}
.x9_c00182{left:380.400000px;}
@media print{
.v0_c00182{vertical-align:0.000000pt;}
.ls2_c00182{letter-spacing:0.000000pt;}
.ls3_c00182{letter-spacing:2.666667pt;}
.ls0_c00182{letter-spacing:4.090667pt;}
.ls1_c00182{letter-spacing:48.357333pt;}
.ws0_c00182{word-spacing:-28.277333pt;}
.ws1_c00182{word-spacing:-21.208000pt;}
.ws2_c00182{word-spacing:-15.424000pt;}
.ws3_c00182{word-spacing:-12.210667pt;}
.ws4_c00182{word-spacing:0.000000pt;}
._1_c00182{margin-left:-19.360000pt;}
._1d_c00182{margin-left:-16.816000pt;}
._2_c00182{margin-left:-13.610667pt;}
._11_c00182{margin-left:-12.016000pt;}
._0_c00182{margin-left:-9.034667pt;}
._f_c00182{margin-left:-7.242667pt;}
._3_c00182{margin-left:-6.133333pt;}
._12_c00182{margin-left:-4.957333pt;}
._18_c00182{margin-left:-4.024000pt;}
._10_c00182{margin-left:-3.109333pt;}
._d_c00182{margin-left:-1.496000pt;}
._13_c00182{width:1.349333pt;}
._c_c00182{width:2.464000pt;}
._b_c00182{width:3.872000pt;}
._5_c00182{width:4.840000pt;}
._15_c00182{width:6.037333pt;}
._4_c00182{width:7.128000pt;}
._8_c00182{width:8.096000pt;}
._a_c00182{width:9.856000pt;}
._9_c00182{width:11.088000pt;}
._6_c00182{width:12.144000pt;}
._7_c00182{width:13.552000pt;}
._17_c00182{width:16.098667pt;}
._19_c00182{width:17.480000pt;}
._1b_c00182{width:19.696000pt;}
._1f_c00182{width:21.645333pt;}
._1e_c00182{width:26.781333pt;}
._22_c00182{width:30.168000pt;}
._21_c00182{width:36.792000pt;}
._e_c00182{width:47.229333pt;}
._1c_c00182{width:61.237333pt;}
._14_c00182{width:89.048000pt;}
._23_c00182{width:234.504000pt;}
._16_c00182{width:273.997333pt;}
._20_c00182{width:284.736000pt;}
._1a_c00182{width:293.525333pt;}
.fs8_c00182{font-size:42.666667pt;}
.fs6_c00182{font-size:50.666667pt;}
.fs5_c00182{font-size:56.000000pt;}
.fs4_c00182{font-size:61.333333pt;}
.fs3_c00182{font-size:64.000000pt;}
.fs7_c00182{font-size:69.333333pt;}
.fs2_c00182{font-size:72.000000pt;}
.fs1_c00182{font-size:88.000000pt;}
.fs0_c00182{font-size:117.333333pt;}
.y0_c00182{bottom:0.000000pt;}
.y26_c00182{bottom:2.760000pt;}
.y25_c00182{bottom:6.425219pt;}
.y24_c00182{bottom:67.613333pt;}
.y23_c00182{bottom:90.013333pt;}
.y22_c00182{bottom:113.080000pt;}
.y21_c00182{bottom:134.813333pt;}
.y20_c00182{bottom:156.946667pt;}
.y1f_c00182{bottom:177.880000pt;}
.y1e_c00182{bottom:200.680000pt;}
.y1d_c00182{bottom:222.413333pt;}
.y1c_c00182{bottom:244.013333pt;}
.y1b_c00182{bottom:265.613333pt;}
.y1a_c00182{bottom:286.813333pt;}
.y19_c00182{bottom:308.413333pt;}
.y18_c00182{bottom:329.746667pt;}
.y17_c00182{bottom:351.613333pt;}
.y16_c00182{bottom:372.680000pt;}
.y15_c00182{bottom:394.013333pt;}
.y14_c00182{bottom:415.480000pt;}
.y13_c00182{bottom:436.813333pt;}
.y12_c00182{bottom:458.146667pt;}
.y11_c00182{bottom:479.213333pt;}
.y10_c00182{bottom:500.813333pt;}
.yf_c00182{bottom:522.013333pt;}
.ye_c00182{bottom:543.613333pt;}
.yd_c00182{bottom:563.746667pt;}
.yc_c00182{bottom:586.813333pt;}
.yb_c00182{bottom:608.813333pt;}
.ya_c00182{bottom:627.880000pt;}
.y9_c00182{bottom:649.480000pt;}
.y8_c00182{bottom:670.813333pt;}
.y7_c00182{bottom:691.613333pt;}
.y6_c00182{bottom:713.213333pt;}
.y5_c00182{bottom:734.813333pt;}
.y4_c00182{bottom:756.413333pt;}
.y3_c00182{bottom:776.813333pt;}
.y2_c00182{bottom:798.946667pt;}
.y1_c00182{bottom:830.813333pt;}
.h6_c00182{height:11.733399pt;}
.h7_c00182{height:38.937500pt;}
.h3_c00182{height:70.664062pt;}
.h4_c00182{height:74.906250pt;}
.h5_c00182{height:87.783854pt;}
.h2_c00182{height:148.557292pt;}
.h0_c00182{height:879.133333pt;}
.h1_c00182{height:879.333333pt;}
.w1_c00182{width:93.222667pt;}
.w0_c00182{width:597.333333pt;}
.x0_c00182{left:0.000000pt;}
.x4_c00182{left:21.866667pt;}
.x8_c00182{left:32.133333pt;}
.x6_c00182{left:34.000000pt;}
.x5_c00182{left:36.000000pt;}
.x7_c00182{left:36.933333pt;}
.x3_c00182{left:38.400000pt;}
.x2_c00182{left:40.266667pt;}
.x1_c00182{left:58.800000pt;}
.xa_c00182{left:255.834880pt;}
.x9_c00182{left:338.133333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_27045ee7d032c3828273d89b.woff2')format("woff");}.ff1_c00183{font-family:ff1_c00183;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00183;src:url('chunks/assets/font_9a8984122ba984465d85f020.woff2')format("woff");}.ff2_c00183{font-family:ff2_c00183;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00183;src:url('chunks/assets/font_77653bc3ed02836291788aa9.woff2')format("woff");}.ff3_c00183{font-family:ff3_c00183;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00183;src:url('chunks/assets/font_e2ee6d00e58297131f7c41bf.woff2')format("woff");}.ff4_c00183{font-family:ff4_c00183;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00183;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c00183{font-family:ff5_c00183;line-height:1.219238;font-style: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;}
.ls2_c00183{letter-spacing:0.000000px;}
.ls3_c00183{letter-spacing:3.000000px;}
.ls1_c00183{letter-spacing:5.880000px;}
.ls0_c00183{letter-spacing:12.750000px;}
.sc__c00183{text-shadow:none;}
.sc0_c00183{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00183{-webkit-text-stroke:0px transparent;}
.sc0_c00183{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00183{word-spacing:-14.250000px;}
.ws1_c00183{word-spacing:-1.083000px;}
.ws2_c00183{word-spacing:0.000000px;}
._21_c00183{margin-left:-27.993000px;}
._f_c00183{margin-left:-25.191000px;}
._14_c00183{margin-left:-19.845000px;}
._15_c00183{margin-left:-12.978000px;}
._17_c00183{margin-left:-10.044000px;}
._1b_c00183{margin-left:-8.595000px;}
._13_c00183{margin-left:-7.188000px;}
._b_c00183{margin-left:-5.472000px;}
._1a_c00183{margin-left:-4.431000px;}
._8_c00183{margin-left:-3.192000px;}
._12_c00183{margin-left:-2.157000px;}
._a_c00183{margin-left:-1.140000px;}
._c_c00183{width:1.197000px;}
._1_c00183{width:2.793000px;}
._2_c00183{width:3.876000px;}
._0_c00183{width:5.073000px;}
._5_c00183{width:6.555000px;}
._9_c00183{width:7.695000px;}
._16_c00183{width:8.757000px;}
._6_c00183{width:9.861000px;}
._7_c00183{width:10.944000px;}
._18_c00183{width:12.075000px;}
._e_c00183{width:13.851000px;}
._d_c00183{width:15.036000px;}
._20_c00183{width:18.063000px;}
._19_c00183{width:19.215000px;}
._11_c00183{width:24.123000px;}
._1c_c00183{width:27.321000px;}
._10_c00183{width:37.665000px;}
._1e_c00183{width:42.177000px;}
._3_c00183{width:58.080000px;}
._1d_c00183{width:134.016000px;}
._4_c00183{width:209.076000px;}
._1f_c00183{width:583.821000px;}
.fc2_c00183{color:transparent;}
.fc1_c00183{color:rgb(128,128,128);}
.fc0_c00183{color:rgb(0,0,0);}
.fs3_c00183{font-size:48.000000px;}
.fs0_c00183{font-size:57.000000px;}
.fs2_c00183{font-size:72.000000px;}
.fs1_c00183{font-size:81.000000px;}
.y0_c00183{bottom:0.000000px;}
.y24_c00183{bottom:3.105000px;}
.y23_c00183{bottom:7.228357px;}
.y22_c00183{bottom:96.630000px;}
.y21_c00183{bottom:122.130000px;}
.y20_c00183{bottom:146.130000px;}
.y1f_c00183{bottom:170.430000px;}
.y1e_c00183{bottom:194.730000px;}
.y1d_c00183{bottom:219.330000px;}
.y1c_c00183{bottom:243.330000px;}
.y1b_c00183{bottom:267.330000px;}
.y1a_c00183{bottom:291.630000px;}
.y19_c00183{bottom:315.930000px;}
.y18_c00183{bottom:341.580000px;}
.y17_c00183{bottom:365.130000px;}
.y16_c00183{bottom:389.130000px;}
.y15_c00183{bottom:412.830000px;}
.y14_c00183{bottom:437.130000px;}
.y13_c00183{bottom:461.130000px;}
.y12_c00183{bottom:485.730000px;}
.y11_c00183{bottom:509.280000px;}
.y10_c00183{bottom:533.280000px;}
.yf_c00183{bottom:557.580000px;}
.ye_c00183{bottom:581.880000px;}
.yd_c00183{bottom:605.580000px;}
.yc_c00183{bottom:629.730000px;}
.yb_c00183{bottom:654.180000px;}
.ya_c00183{bottom:678.030000px;}
.y9_c00183{bottom:701.730000px;}
.y8_c00183{bottom:726.030000px;}
.y7_c00183{bottom:749.880000px;}
.y6_c00183{bottom:773.430000px;}
.y5_c00183{bottom:797.280000px;}
.y4_c00183{bottom:821.130000px;}
.y3_c00183{bottom:845.130000px;}
.y2_c00183{bottom:869.430000px;}
.y1_c00183{bottom:891.630000px;}
.h4_c00183{height:13.200074px;}
.h5_c00183{height:43.804688px;}
.h1_c00183{height:57.445312px;}
.h2_c00183{height:79.497070px;}
.h3_c00183{height:84.269531px;}
.h0_c00183{height:995.250000px;}
.w2_c00183{width:104.875500px;}
.w0_c00183{width:667.425000px;}
.w1_c00183{width:667.500000px;}
.x0_c00183{left:0.000000px;}
.x1_c00183{left:23.400000px;}
.xd_c00183{left:61.800000px;}
.xe_c00183{left:69.900000px;}
.x2_c00183{left:100.950000px;}
.x3_c00183{left:119.100000px;}
.x4_c00183{left:120.450000px;}
.x5_c00183{left:121.500000px;}
.x6_c00183{left:122.550000px;}
.x7_c00183{left:123.900000px;}
.x8_c00183{left:125.850000px;}
.x9_c00183{left:126.900000px;}
.xb_c00183{left:128.550000px;}
.xc_c00183{left:130.200000px;}
.xf_c00183{left:131.250000px;}
.xa_c00183{left:145.800000px;}
.x10_c00183{left:167.700000px;}
.x11_c00183{left:285.526749px;}
@media print{
.v0_c00183{vertical-align:0.000000pt;}
.ls2_c00183{letter-spacing:0.000000pt;}
.ls3_c00183{letter-spacing:2.666667pt;}
.ls1_c00183{letter-spacing:5.226667pt;}
.ls0_c00183{letter-spacing:11.333333pt;}
.ws0_c00183{word-spacing:-12.666667pt;}
.ws1_c00183{word-spacing:-0.962667pt;}
.ws2_c00183{word-spacing:0.000000pt;}
._21_c00183{margin-left:-24.882667pt;}
._f_c00183{margin-left:-22.392000pt;}
._14_c00183{margin-left:-17.640000pt;}
._15_c00183{margin-left:-11.536000pt;}
._17_c00183{margin-left:-8.928000pt;}
._1b_c00183{margin-left:-7.640000pt;}
._13_c00183{margin-left:-6.389333pt;}
._b_c00183{margin-left:-4.864000pt;}
._1a_c00183{margin-left:-3.938667pt;}
._8_c00183{margin-left:-2.837333pt;}
._12_c00183{margin-left:-1.917333pt;}
._a_c00183{margin-left:-1.013333pt;}
._c_c00183{width:1.064000pt;}
._1_c00183{width:2.482667pt;}
._2_c00183{width:3.445333pt;}
._0_c00183{width:4.509333pt;}
._5_c00183{width:5.826667pt;}
._9_c00183{width:6.840000pt;}
._16_c00183{width:7.784000pt;}
._6_c00183{width:8.765333pt;}
._7_c00183{width:9.728000pt;}
._18_c00183{width:10.733333pt;}
._e_c00183{width:12.312000pt;}
._d_c00183{width:13.365333pt;}
._20_c00183{width:16.056000pt;}
._19_c00183{width:17.080000pt;}
._11_c00183{width:21.442667pt;}
._1c_c00183{width:24.285333pt;}
._10_c00183{width:33.480000pt;}
._1e_c00183{width:37.490667pt;}
._3_c00183{width:51.626667pt;}
._1d_c00183{width:119.125333pt;}
._4_c00183{width:185.845333pt;}
._1f_c00183{width:518.952000pt;}
.fs3_c00183{font-size:42.666667pt;}
.fs0_c00183{font-size:50.666667pt;}
.fs2_c00183{font-size:64.000000pt;}
.fs1_c00183{font-size:72.000000pt;}
.y0_c00183{bottom:0.000000pt;}
.y24_c00183{bottom:2.760000pt;}
.y23_c00183{bottom:6.425206pt;}
.y22_c00183{bottom:85.893333pt;}
.y21_c00183{bottom:108.560000pt;}
.y20_c00183{bottom:129.893333pt;}
.y1f_c00183{bottom:151.493333pt;}
.y1e_c00183{bottom:173.093333pt;}
.y1d_c00183{bottom:194.960000pt;}
.y1c_c00183{bottom:216.293333pt;}
.y1b_c00183{bottom:237.626667pt;}
.y1a_c00183{bottom:259.226667pt;}
.y19_c00183{bottom:280.826667pt;}
.y18_c00183{bottom:303.626667pt;}
.y17_c00183{bottom:324.560000pt;}
.y16_c00183{bottom:345.893333pt;}
.y15_c00183{bottom:366.960000pt;}
.y14_c00183{bottom:388.560000pt;}
.y13_c00183{bottom:409.893333pt;}
.y12_c00183{bottom:431.760000pt;}
.y11_c00183{bottom:452.693333pt;}
.y10_c00183{bottom:474.026667pt;}
.yf_c00183{bottom:495.626667pt;}
.ye_c00183{bottom:517.226667pt;}
.yd_c00183{bottom:538.293333pt;}
.yc_c00183{bottom:559.760000pt;}
.yb_c00183{bottom:581.493333pt;}
.ya_c00183{bottom:602.693333pt;}
.y9_c00183{bottom:623.760000pt;}
.y8_c00183{bottom:645.360000pt;}
.y7_c00183{bottom:666.560000pt;}
.y6_c00183{bottom:687.493333pt;}
.y5_c00183{bottom:708.693333pt;}
.y4_c00183{bottom:729.893333pt;}
.y3_c00183{bottom:751.226667pt;}
.y2_c00183{bottom:772.826667pt;}
.y1_c00183{bottom:792.560000pt;}
.h4_c00183{height:11.733399pt;}
.h5_c00183{height:38.937500pt;}
.h1_c00183{height:51.062500pt;}
.h2_c00183{height:70.664062pt;}
.h3_c00183{height:74.906250pt;}
.h0_c00183{height:884.666667pt;}
.w2_c00183{width:93.222667pt;}
.w0_c00183{width:593.266667pt;}
.w1_c00183{width:593.333333pt;}
.x0_c00183{left:0.000000pt;}
.x1_c00183{left:20.800000pt;}
.xd_c00183{left:54.933333pt;}
.xe_c00183{left:62.133333pt;}
.x2_c00183{left:89.733333pt;}
.x3_c00183{left:105.866667pt;}
.x4_c00183{left:107.066667pt;}
.x5_c00183{left:108.000000pt;}
.x6_c00183{left:108.933333pt;}
.x7_c00183{left:110.133333pt;}
.x8_c00183{left:111.866667pt;}
.x9_c00183{left:112.800000pt;}
.xb_c00183{left:114.266667pt;}
.xc_c00183{left:115.733333pt;}
.xf_c00183{left:116.666667pt;}
.xa_c00183{left:129.600000pt;}
.x10_c00183{left:149.066667pt;}
.x11_c00183{left:253.801554pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0a5826c65b7c11947a845305.woff2')format("woff");}.ff1_c00184{font-family:ff1_c00184;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00184;src:url('chunks/assets/font_451291f211cedfbe2c8204a7.woff2')format("woff");}.ff2_c00184{font-family:ff2_c00184;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00184;src:url('chunks/assets/font_153b1792558223db2e1731b7.woff2')format("woff");}.ff3_c00184{font-family:ff3_c00184;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00184;src:url('chunks/assets/font_28b79f7053b59d7643a6232b.woff2')format("woff");}.ff4_c00184{font-family:ff4_c00184;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00184;src:url('chunks/assets/font_c7ee5eccaf7c914a634f65a1.woff2')format("woff");}.ff5_c00184{font-family:ff5_c00184;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00184;src:url('chunks/assets/font_ccc3fea116baf866aa36275a.woff2')format("woff");}.ff6_c00184{font-family:ff6_c00184;line-height:1.435059;font-style:normal;font-weight: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_c00184;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c00184{font-family:ff7_c00184;line-height:1.219238;font-style: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;}
.v1_c00184{vertical-align:162.600000px;}
.ls4_c00184{letter-spacing:0.000000px;}
.ls2_c00184{letter-spacing:2.280000px;}
.ls5_c00184{letter-spacing:3.000000px;}
.ls1_c00184{letter-spacing:4.800000px;}
.ls6_c00184{letter-spacing:12.000000px;}
.ls0_c00184{letter-spacing:41.400000px;}
.ls3_c00184{letter-spacing:54.300000px;}
.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:-122.364000px;}
.ws2_c00184{word-spacing:-70.401000px;}
.ws0_c00184{word-spacing:-23.859000px;}
.ws3_c00184{word-spacing:-17.352000px;}
.ws4_c00184{word-spacing:0.000000px;}
._1c_c00184{margin-left:-19.218000px;}
._1a_c00184{margin-left:-17.253000px;}
._17_c00184{margin-left:-14.136000px;}
._19_c00184{margin-left:-12.549000px;}
._18_c00184{margin-left:-10.965000px;}
._15_c00184{margin-left:-8.679000px;}
._13_c00184{margin-left:-6.717000px;}
._11_c00184{margin-left:-4.902000px;}
._2_c00184{margin-left:-3.708000px;}
._12_c00184{margin-left:-2.412000px;}
._6_c00184{margin-left:-1.134000px;}
._3_c00184{width:1.056000px;}
._d_c00184{width:2.229000px;}
._1_c00184{width:3.300000px;}
._4_c00184{width:4.719000px;}
._9_c00184{width:6.702000px;}
._0_c00184{width:7.821000px;}
._7_c00184{width:9.234000px;}
._b_c00184{width:11.115000px;}
._8_c00184{width:12.801000px;}
._14_c00184{width:13.956000px;}
._a_c00184{width:15.024000px;}
._c_c00184{width:16.200000px;}
._e_c00184{width:18.126000px;}
._f_c00184{width:19.488000px;}
._10_c00184{width:21.672000px;}
._1b_c00184{width:23.718000px;}
._1d_c00184{width:27.126000px;}
._1f_c00184{width:29.166000px;}
._16_c00184{width:33.093000px;}
._1e_c00184{width:38.895000px;}
._5_c00184{width:185.064000px;}
._20_c00184{width:302.616000px;}
.fc2_c00184{color:transparent;}
.fc1_c00184{color:rgb(128,128,128);}
.fc0_c00184{color:rgb(0,0,0);}
.fs3_c00184{font-size:42.000000px;}
.fsa_c00184{font-size:48.000000px;}
.fs9_c00184{font-size:60.000000px;}
.fs6_c00184{font-size:63.000000px;}
.fs7_c00184{font-size:72.000000px;}
.fs4_c00184{font-size:75.000000px;}
.fs2_c00184{font-size:81.000000px;}
.fs5_c00184{font-size:84.000000px;}
.fs0_c00184{font-size:99.000000px;}
.fs1_c00184{font-size:132.000000px;}
.fs8_c00184{font-size:261.000000px;}
.y0_c00184{bottom:0.000000px;}
.y25_c00184{bottom:3.105000px;}
.y24_c00184{bottom:7.228355px;}
.y23_c00184{bottom:67.035000px;}
.y22_c00184{bottom:91.335000px;}
.y21_c00184{bottom:116.685000px;}
.y20_c00184{bottom:141.285000px;}
.y1f_c00184{bottom:165.285000px;}
.y1e_c00184{bottom:190.035000px;}
.y1d_c00184{bottom:214.335000px;}
.y1c_c00184{bottom:238.485000px;}
.y1b_c00184{bottom:262.785000px;}
.y19_c00184{bottom:269.535000px;}
.y1a_c00184{bottom:286.485000px;}
.y18_c00184{bottom:334.335000px;}
.y17_c00184{bottom:357.435000px;}
.y16_c00184{bottom:405.285000px;}
.y15_c00184{bottom:429.585000px;}
.y14_c00184{bottom:453.285000px;}
.y13_c00184{bottom:477.885000px;}
.y12_c00184{bottom:501.885000px;}
.y11_c00184{bottom:526.035000px;}
.y10_c00184{bottom:549.435000px;}
.yf_c00184{bottom:573.285000px;}
.ye_c00184{bottom:597.285000px;}
.yd_c00184{bottom:620.685000px;}
.yc_c00184{bottom:644.985000px;}
.yb_c00184{bottom:668.235000px;}
.ya_c00184{bottom:692.835000px;}
.y9_c00184{bottom:716.535000px;}
.y8_c00184{bottom:740.685000px;}
.y7_c00184{bottom:764.385000px;}
.y6_c00184{bottom:789.435000px;}
.y5_c00184{bottom:812.685000px;}
.y4_c00184{bottom:836.685000px;}
.y3_c00184{bottom:860.835000px;}
.y2_c00184{bottom:884.835000px;}
.y1_c00184{bottom:918.885000px;}
.h8_c00184{height:13.200074px;}
.h9_c00184{height:43.804688px;}
.h6_c00184{height:73.571777px;}
.h3_c00184{height:79.497070px;}
.h4_c00184{height:82.441406px;}
.h5_c00184{height:84.269531px;}
.h2_c00184{height:167.126953px;}
.h7_c00184{height:271.705078px;}
.h0_c00184{height:977.925000px;}
.h1_c00184{height:978.000000px;}
.w2_c00184{width:104.875500px;}
.w0_c00184{width:664.200000px;}
.w1_c00184{width:664.500000px;}
.x0_c00184{left:0.000000px;}
.x2_c00184{left:39.450000px;}
.x3_c00184{left:41.100000px;}
.x4_c00184{left:43.200000px;}
.x5_c00184{left:45.150000px;}
.x6_c00184{left:46.200000px;}
.x7_c00184{left:48.000000px;}
.x1_c00184{left:52.200000px;}
.xc_c00184{left:53.250000px;}
.xb_c00184{left:54.600000px;}
.xa_c00184{left:98.100000px;}
.x8_c00184{left:111.450000px;}
.x9_c00184{left:218.400000px;}
.xe_c00184{left:283.914230px;}
.xd_c00184{left:397.200000px;}
@media print{
.v0_c00184{vertical-align:0.000000pt;}
.v1_c00184{vertical-align:144.533333pt;}
.ls4_c00184{letter-spacing:0.000000pt;}
.ls2_c00184{letter-spacing:2.026667pt;}
.ls5_c00184{letter-spacing:2.666667pt;}
.ls1_c00184{letter-spacing:4.266667pt;}
.ls6_c00184{letter-spacing:10.666667pt;}
.ls0_c00184{letter-spacing:36.800000pt;}
.ls3_c00184{letter-spacing:48.266667pt;}
.ws1_c00184{word-spacing:-108.768000pt;}
.ws2_c00184{word-spacing:-62.578667pt;}
.ws0_c00184{word-spacing:-21.208000pt;}
.ws3_c00184{word-spacing:-15.424000pt;}
.ws4_c00184{word-spacing:0.000000pt;}
._1c_c00184{margin-left:-17.082667pt;}
._1a_c00184{margin-left:-15.336000pt;}
._17_c00184{margin-left:-12.565333pt;}
._19_c00184{margin-left:-11.154667pt;}
._18_c00184{margin-left:-9.746667pt;}
._15_c00184{margin-left:-7.714667pt;}
._13_c00184{margin-left:-5.970667pt;}
._11_c00184{margin-left:-4.357333pt;}
._2_c00184{margin-left:-3.296000pt;}
._12_c00184{margin-left:-2.144000pt;}
._6_c00184{margin-left:-1.008000pt;}
._3_c00184{width:0.938667pt;}
._d_c00184{width:1.981333pt;}
._1_c00184{width:2.933333pt;}
._4_c00184{width:4.194667pt;}
._9_c00184{width:5.957333pt;}
._0_c00184{width:6.952000pt;}
._7_c00184{width:8.208000pt;}
._b_c00184{width:9.880000pt;}
._8_c00184{width:11.378667pt;}
._14_c00184{width:12.405333pt;}
._a_c00184{width:13.354667pt;}
._c_c00184{width:14.400000pt;}
._e_c00184{width:16.112000pt;}
._f_c00184{width:17.322667pt;}
._10_c00184{width:19.264000pt;}
._1b_c00184{width:21.082667pt;}
._1d_c00184{width:24.112000pt;}
._1f_c00184{width:25.925333pt;}
._16_c00184{width:29.416000pt;}
._1e_c00184{width:34.573333pt;}
._5_c00184{width:164.501333pt;}
._20_c00184{width:268.992000pt;}
.fs3_c00184{font-size:37.333333pt;}
.fsa_c00184{font-size:42.666667pt;}
.fs9_c00184{font-size:53.333333pt;}
.fs6_c00184{font-size:56.000000pt;}
.fs7_c00184{font-size:64.000000pt;}
.fs4_c00184{font-size:66.666667pt;}
.fs2_c00184{font-size:72.000000pt;}
.fs5_c00184{font-size:74.666667pt;}
.fs0_c00184{font-size:88.000000pt;}
.fs1_c00184{font-size:117.333333pt;}
.fs8_c00184{font-size:232.000000pt;}
.y0_c00184{bottom:0.000000pt;}
.y25_c00184{bottom:2.760000pt;}
.y24_c00184{bottom:6.425204pt;}
.y23_c00184{bottom:59.586667pt;}
.y22_c00184{bottom:81.186667pt;}
.y21_c00184{bottom:103.720000pt;}
.y20_c00184{bottom:125.586667pt;}
.y1f_c00184{bottom:146.920000pt;}
.y1e_c00184{bottom:168.920000pt;}
.y1d_c00184{bottom:190.520000pt;}
.y1c_c00184{bottom:211.986667pt;}
.y1b_c00184{bottom:233.586667pt;}
.y19_c00184{bottom:239.586667pt;}
.y1a_c00184{bottom:254.653333pt;}
.y18_c00184{bottom:297.186667pt;}
.y17_c00184{bottom:317.720000pt;}
.y16_c00184{bottom:360.253333pt;}
.y15_c00184{bottom:381.853333pt;}
.y14_c00184{bottom:402.920000pt;}
.y13_c00184{bottom:424.786667pt;}
.y12_c00184{bottom:446.120000pt;}
.y11_c00184{bottom:467.586667pt;}
.y10_c00184{bottom:488.386667pt;}
.yf_c00184{bottom:509.586667pt;}
.ye_c00184{bottom:530.920000pt;}
.yd_c00184{bottom:551.720000pt;}
.yc_c00184{bottom:573.320000pt;}
.yb_c00184{bottom:593.986667pt;}
.ya_c00184{bottom:615.853333pt;}
.y9_c00184{bottom:636.920000pt;}
.y8_c00184{bottom:658.386667pt;}
.y7_c00184{bottom:679.453333pt;}
.y6_c00184{bottom:701.720000pt;}
.y5_c00184{bottom:722.386667pt;}
.y4_c00184{bottom:743.720000pt;}
.y3_c00184{bottom:765.186667pt;}
.y2_c00184{bottom:786.520000pt;}
.y1_c00184{bottom:816.786667pt;}
.h8_c00184{height:11.733399pt;}
.h9_c00184{height:38.937500pt;}
.h6_c00184{height:65.397135pt;}
.h3_c00184{height:70.664062pt;}
.h4_c00184{height:73.281250pt;}
.h5_c00184{height:74.906250pt;}
.h2_c00184{height:148.557292pt;}
.h7_c00184{height:241.515625pt;}
.h0_c00184{height:869.266667pt;}
.h1_c00184{height:869.333333pt;}
.w2_c00184{width:93.222667pt;}
.w0_c00184{width:590.400000pt;}
.w1_c00184{width:590.666667pt;}
.x0_c00184{left:0.000000pt;}
.x2_c00184{left:35.066667pt;}
.x3_c00184{left:36.533333pt;}
.x4_c00184{left:38.400000pt;}
.x5_c00184{left:40.133333pt;}
.x6_c00184{left:41.066667pt;}
.x7_c00184{left:42.666667pt;}
.x1_c00184{left:46.400000pt;}
.xc_c00184{left:47.333333pt;}
.xb_c00184{left:48.533333pt;}
.xa_c00184{left:87.200000pt;}
.x8_c00184{left:99.066667pt;}
.x9_c00184{left:194.133333pt;}
.xe_c00184{left:252.368205pt;}
.xd_c00184{left:353.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_5f794813b4005147793a6e96.woff2')format("woff");}.ff1_c00185{font-family:ff1_c00185;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00185;src:url('chunks/assets/font_9b3bdc508d351f7429500932.woff2')format("woff");}.ff2_c00185{font-family:ff2_c00185;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00185;src:url('chunks/assets/font_ed692e50f617f99e17da86f4.woff2')format("woff");}.ff3_c00185{font-family:ff3_c00185;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00185;src:url('chunks/assets/font_b9bb82141802eb8503e237a3.woff2')format("woff");}.ff4_c00185{font-family:ff4_c00185;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00185;src:url('chunks/assets/font_b8ec1668e034465c231e469b.woff2')format("woff");}.ff5_c00185{font-family:ff5_c00185;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00185;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c00185{font-family:ff6_c00185;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00185{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m0_c00185{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00185{vertical-align:0.000000px;}
.ls2_c00185{letter-spacing:0.000000px;}
.ls3_c00185{letter-spacing:3.000000px;}
.ls0_c00185{letter-spacing:42.750000px;}
.ls1_c00185{letter-spacing:46.446000px;}
.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;}
}
.ws1_c00185{word-spacing:-67.686000px;}
.ws6_c00185{word-spacing:-27.000000px;}
.ws2_c00185{word-spacing:-21.750000px;}
.ws4_c00185{word-spacing:-20.250000px;}
.ws3_c00185{word-spacing:-17.385000px;}
.ws5_c00185{word-spacing:-17.352000px;}
.ws0_c00185{word-spacing:-4.374000px;}
.ws7_c00185{word-spacing:0.000000px;}
._16_c00185{margin-left:-14.823000px;}
._e_c00185{margin-left:-13.149000px;}
._17_c00185{margin-left:-8.667000px;}
._6_c00185{margin-left:-6.642000px;}
._3_c00185{margin-left:-5.022000px;}
._8_c00185{margin-left:-3.159000px;}
._1_c00185{margin-left:-1.863000px;}
._4_c00185{width:1.215000px;}
._0_c00185{width:2.673000px;}
._d_c00185{width:3.726000px;}
._2_c00185{width:4.860000px;}
._7_c00185{width:5.994000px;}
._5_c00185{width:7.695000px;}
._9_c00185{width:9.315000px;}
._a_c00185{width:10.692000px;}
._c_c00185{width:11.826000px;}
._14_c00185{width:13.341000px;}
._b_c00185{width:14.517000px;}
._10_c00185{width:16.686000px;}
._13_c00185{width:19.341000px;}
._f_c00185{width:20.349000px;}
._1a_c00185{width:24.594000px;}
._11_c00185{width:30.987000px;}
._15_c00185{width:34.641000px;}
._18_c00185{width:144.753000px;}
._12_c00185{width:234.009000px;}
._19_c00185{width:254.682000px;}
.fc2_c00185{color:transparent;}
.fc1_c00185{color:rgb(128,128,128);}
.fc0_c00185{color:rgb(0,0,0);}
.fs5_c00185{font-size:48.000000px;}
.fs2_c00185{font-size:57.000000px;}
.fs3_c00185{font-size:72.000000px;}
.fs0_c00185{font-size:81.000000px;}
.fs1_c00185{font-size:87.000000px;}
.fs4_c00185{font-size:108.000000px;}
.y0_c00185{bottom:0.000000px;}
.y25_c00185{bottom:3.105000px;}
.y24_c00185{bottom:7.228357px;}
.y23_c00185{bottom:75.630000px;}
.y22_c00185{bottom:100.230000px;}
.y21_c00185{bottom:125.580000px;}
.y20_c00185{bottom:150.480000px;}
.y1f_c00185{bottom:174.480000px;}
.y1e_c00185{bottom:199.080000px;}
.y1d_c00185{bottom:223.380000px;}
.y1c_c00185{bottom:247.680000px;}
.y1b_c00185{bottom:270.780000px;}
.y1a_c00185{bottom:296.430000px;}
.y19_c00185{bottom:320.580000px;}
.y18_c00185{bottom:344.580000px;}
.y17_c00185{bottom:368.880000px;}
.y16_c00185{bottom:391.830000px;}
.y15_c00185{bottom:416.580000px;}
.y14_c00185{bottom:441.180000px;}
.y13_c00185{bottom:465.180000px;}
.y12_c00185{bottom:489.330000px;}
.y11_c00185{bottom:513.330000px;}
.y10_c00185{bottom:537.330000px;}
.yf_c00185{bottom:561.030000px;}
.ye_c00185{bottom:585.630000px;}
.yd_c00185{bottom:609.180000px;}
.yc_c00185{bottom:633.780000px;}
.yb_c00185{bottom:657.180000px;}
.ya_c00185{bottom:681.180000px;}
.y9_c00185{bottom:705.480000px;}
.y8_c00185{bottom:729.330000px;}
.y7_c00185{bottom:754.080000px;}
.y6_c00185{bottom:777.480000px;}
.y5_c00185{bottom:801.330000px;}
.y4_c00185{bottom:825.180000px;}
.y3_c00185{bottom:849.780000px;}
.y2_c00185{bottom:873.480000px;}
.y1_c00185{bottom:897.480000px;}
.h6_c00185{height:13.200074px;}
.h7_c00185{height:43.804688px;}
.h1_c00185{height:79.497070px;}
.h4_c00185{height:84.269531px;}
.h3_c00185{height:87.679688px;}
.h2_c00185{height:91.176000px;}
.h5_c00185{height:108.843750px;}
.h0_c00185{height:995.250000px;}
.w2_c00185{width:104.875500px;}
.w0_c00185{width:667.425000px;}
.w1_c00185{width:667.500000px;}
.x0_c00185{left:0.000000px;}
.xb_c00185{left:32.700000px;}
.x6_c00185{left:35.550000px;}
.x5_c00185{left:37.800000px;}
.xe_c00185{left:119.850000px;}
.xd_c00185{left:121.800000px;}
.xc_c00185{left:122.850000px;}
.xa_c00185{left:125.250000px;}
.x8_c00185{left:126.900000px;}
.x7_c00185{left:127.950000px;}
.x4_c00185{left:129.150000px;}
.x3_c00185{left:130.500000px;}
.x2_c00185{left:131.700000px;}
.x1_c00185{left:132.900000px;}
.x9_c00185{left:151.200000px;}
.x10_c00185{left:285.526749px;}
.xf_c00185{left:579.150000px;}
@media print{
.v0_c00185{vertical-align:0.000000pt;}
.ls2_c00185{letter-spacing:0.000000pt;}
.ls3_c00185{letter-spacing:2.666667pt;}
.ls0_c00185{letter-spacing:38.000000pt;}
.ls1_c00185{letter-spacing:41.285333pt;}
.ws1_c00185{word-spacing:-60.165333pt;}
.ws6_c00185{word-spacing:-24.000000pt;}
.ws2_c00185{word-spacing:-19.333333pt;}
.ws4_c00185{word-spacing:-18.000000pt;}
.ws3_c00185{word-spacing:-15.453333pt;}
.ws5_c00185{word-spacing:-15.424000pt;}
.ws0_c00185{word-spacing:-3.888000pt;}
.ws7_c00185{word-spacing:0.000000pt;}
._16_c00185{margin-left:-13.176000pt;}
._e_c00185{margin-left:-11.688000pt;}
._17_c00185{margin-left:-7.704000pt;}
._6_c00185{margin-left:-5.904000pt;}
._3_c00185{margin-left:-4.464000pt;}
._8_c00185{margin-left:-2.808000pt;}
._1_c00185{margin-left:-1.656000pt;}
._4_c00185{width:1.080000pt;}
._0_c00185{width:2.376000pt;}
._d_c00185{width:3.312000pt;}
._2_c00185{width:4.320000pt;}
._7_c00185{width:5.328000pt;}
._5_c00185{width:6.840000pt;}
._9_c00185{width:8.280000pt;}
._a_c00185{width:9.504000pt;}
._c_c00185{width:10.512000pt;}
._14_c00185{width:11.858667pt;}
._b_c00185{width:12.904000pt;}
._10_c00185{width:14.832000pt;}
._13_c00185{width:17.192000pt;}
._f_c00185{width:18.088000pt;}
._1a_c00185{width:21.861333pt;}
._11_c00185{width:27.544000pt;}
._15_c00185{width:30.792000pt;}
._18_c00185{width:128.669333pt;}
._12_c00185{width:208.008000pt;}
._19_c00185{width:226.384000pt;}
.fs5_c00185{font-size:42.666667pt;}
.fs2_c00185{font-size:50.666667pt;}
.fs3_c00185{font-size:64.000000pt;}
.fs0_c00185{font-size:72.000000pt;}
.fs1_c00185{font-size:77.333333pt;}
.fs4_c00185{font-size:96.000000pt;}
.y0_c00185{bottom:0.000000pt;}
.y25_c00185{bottom:2.760000pt;}
.y24_c00185{bottom:6.425206pt;}
.y23_c00185{bottom:67.226667pt;}
.y22_c00185{bottom:89.093333pt;}
.y21_c00185{bottom:111.626667pt;}
.y20_c00185{bottom:133.760000pt;}
.y1f_c00185{bottom:155.093333pt;}
.y1e_c00185{bottom:176.960000pt;}
.y1d_c00185{bottom:198.560000pt;}
.y1c_c00185{bottom:220.160000pt;}
.y1b_c00185{bottom:240.693333pt;}
.y1a_c00185{bottom:263.493333pt;}
.y19_c00185{bottom:284.960000pt;}
.y18_c00185{bottom:306.293333pt;}
.y17_c00185{bottom:327.893333pt;}
.y16_c00185{bottom:348.293333pt;}
.y15_c00185{bottom:370.293333pt;}
.y14_c00185{bottom:392.160000pt;}
.y13_c00185{bottom:413.493333pt;}
.y12_c00185{bottom:434.960000pt;}
.y11_c00185{bottom:456.293333pt;}
.y10_c00185{bottom:477.626667pt;}
.yf_c00185{bottom:498.693333pt;}
.ye_c00185{bottom:520.560000pt;}
.yd_c00185{bottom:541.493333pt;}
.yc_c00185{bottom:563.360000pt;}
.yb_c00185{bottom:584.160000pt;}
.ya_c00185{bottom:605.493333pt;}
.y9_c00185{bottom:627.093333pt;}
.y8_c00185{bottom:648.293333pt;}
.y7_c00185{bottom:670.293333pt;}
.y6_c00185{bottom:691.093333pt;}
.y5_c00185{bottom:712.293333pt;}
.y4_c00185{bottom:733.493333pt;}
.y3_c00185{bottom:755.360000pt;}
.y2_c00185{bottom:776.426667pt;}
.y1_c00185{bottom:797.760000pt;}
.h6_c00185{height:11.733399pt;}
.h7_c00185{height:38.937500pt;}
.h1_c00185{height:70.664062pt;}
.h4_c00185{height:74.906250pt;}
.h3_c00185{height:77.937500pt;}
.h2_c00185{height:81.045333pt;}
.h5_c00185{height:96.750000pt;}
.h0_c00185{height:884.666667pt;}
.w2_c00185{width:93.222667pt;}
.w0_c00185{width:593.266667pt;}
.w1_c00185{width:593.333333pt;}
.x0_c00185{left:0.000000pt;}
.xb_c00185{left:29.066667pt;}
.x6_c00185{left:31.600000pt;}
.x5_c00185{left:33.600000pt;}
.xe_c00185{left:106.533333pt;}
.xd_c00185{left:108.266667pt;}
.xc_c00185{left:109.200000pt;}
.xa_c00185{left:111.333333pt;}
.x8_c00185{left:112.800000pt;}
.x7_c00185{left:113.733333pt;}
.x4_c00185{left:114.800000pt;}
.x3_c00185{left:116.000000pt;}
.x2_c00185{left:117.066667pt;}
.x1_c00185{left:118.133333pt;}
.x9_c00185{left:134.400000pt;}
.x10_c00185{left:253.801554pt;}
.xf_c00185{left:514.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_0b73665f5cb235a564d6386f.woff2')format("woff");}.ff1_c00186{font-family:ff1_c00186;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00186;src:url('chunks/assets/font_89d9732deca175a3d0438f4b.woff2')format("woff");}.ff2_c00186{font-family:ff2_c00186;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00186;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff3_c00186{font-family:ff3_c00186;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00186;src:url('chunks/assets/font_5c318d0e2db59d227e57427e.woff2')format("woff");}.ff4_c00186{font-family:ff4_c00186;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00186;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c00186{font-family:ff5_c00186;line-height:1.219238;font-style: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;}
.ls2_c00186{letter-spacing:0.000000px;}
.ls1_c00186{letter-spacing:18.300000px;}
.ls0_c00186{letter-spacing:24.816000px;}
.sc__c00186{text-shadow:none;}
.sc0_c00186{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00186{-webkit-text-stroke:0px transparent;}
.sc0_c00186{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00186{word-spacing:-17.352000px;}
.ws1_c00186{word-spacing:0.000000px;}
._1e_c00186{margin-left:-28.773000px;}
._21_c00186{margin-left:-27.702000px;}
._20_c00186{margin-left:-23.490000px;}
._1f_c00186{margin-left:-17.994000px;}
._24_c00186{margin-left:-15.876000px;}
._1b_c00186{margin-left:-14.517000px;}
._1d_c00186{margin-left:-12.228000px;}
._1c_c00186{margin-left:-10.872000px;}
._17_c00186{margin-left:-9.477000px;}
._1a_c00186{margin-left:-8.016000px;}
._c_c00186{margin-left:-6.930000px;}
._13_c00186{margin-left:-4.941000px;}
._10_c00186{margin-left:-3.528000px;}
._f_c00186{margin-left:-1.944000px;}
._11_c00186{width:1.296000px;}
._19_c00186{width:2.313000px;}
._a_c00186{width:3.321000px;}
._e_c00186{width:4.536000px;}
._b_c00186{width:5.832000px;}
._d_c00186{width:6.849000px;}
._12_c00186{width:8.325000px;}
._0_c00186{width:9.360000px;}
._5_c00186{width:10.656000px;}
._14_c00186{width:11.745000px;}
._7_c00186{width:13.896000px;}
._1_c00186{width:15.264000px;}
._3_c00186{width:16.272000px;}
._6_c00186{width:18.504000px;}
._23_c00186{width:22.290000px;}
._2_c00186{width:23.544000px;}
._9_c00186{width:25.992000px;}
._4_c00186{width:28.728000px;}
._18_c00186{width:32.139000px;}
._15_c00186{width:36.126000px;}
._8_c00186{width:71.424000px;}
._16_c00186{width:84.078000px;}
._22_c00186{width:149.529000px;}
.fc2_c00186{color:transparent;}
.fc1_c00186{color:rgb(128,128,128);}
.fc0_c00186{color:rgb(0,0,0);}
.fs3_c00186{font-size:48.000000px;}
.fs0_c00186{font-size:72.000000px;}
.fs1_c00186{font-size:81.000000px;}
.fs2_c00186{font-size:87.000000px;}
.y0_c00186{bottom:0.000000px;}
.y25_c00186{bottom:3.105000px;}
.y24_c00186{bottom:7.228371px;}
.y23_c00186{bottom:106.065000px;}
.y22_c00186{bottom:130.965000px;}
.y21_c00186{bottom:155.265000px;}
.y20_c00186{bottom:179.265000px;}
.y1f_c00186{bottom:202.815000px;}
.y1e_c00186{bottom:227.565000px;}
.y1d_c00186{bottom:251.865000px;}
.y1c_c00186{bottom:276.165000px;}
.y1b_c00186{bottom:300.165000px;}
.y1a_c00186{bottom:323.715000px;}
.y19_c00186{bottom:347.265000px;}
.y18_c00186{bottom:371.565000px;}
.y17_c00186{bottom:394.965000px;}
.y16_c00186{bottom:419.265000px;}
.y15_c00186{bottom:443.115000px;}
.y14_c00186{bottom:466.815000px;}
.y13_c00186{bottom:491.415000px;}
.y12_c00186{bottom:515.415000px;}
.y11_c00186{bottom:539.415000px;}
.y10_c00186{bottom:562.665000px;}
.yf_c00186{bottom:586.365000px;}
.ye_c00186{bottom:609.915000px;}
.yd_c00186{bottom:633.615000px;}
.yc_c00186{bottom:656.865000px;}
.yb_c00186{bottom:680.865000px;}
.ya_c00186{bottom:705.165000px;}
.y9_c00186{bottom:728.715000px;}
.y8_c00186{bottom:753.315000px;}
.y7_c00186{bottom:776.865000px;}
.y6_c00186{bottom:800.865000px;}
.y5_c00186{bottom:824.865000px;}
.y4_c00186{bottom:849.615000px;}
.y3_c00186{bottom:872.565000px;}
.y2_c00186{bottom:896.715000px;}
.y1_c00186{bottom:933.165000px;}
.h6_c00186{height:13.200074px;}
.h7_c00186{height:43.804688px;}
.h3_c00186{height:79.497070px;}
.h2_c00186{height:84.269531px;}
.h4_c00186{height:91.160156px;}
.h5_c00186{height:91.176000px;}
.h1_c00186{height:984.750000px;}
.h0_c00186{height:984.975000px;}
.w2_c00186{width:104.875500px;}
.w1_c00186{width:669.000000px;}
.w0_c00186{width:669.075000px;}
.x0_c00186{left:0.000000px;}
.x9_c00186{left:20.850000px;}
.x8_c00186{left:22.200000px;}
.x6_c00186{left:23.550000px;}
.x7_c00186{left:25.200000px;}
.x5_c00186{left:35.700000px;}
.x4_c00186{left:37.500000px;}
.x3_c00186{left:39.450000px;}
.x2_c00186{left:40.950000px;}
.x1_c00186{left:109.950000px;}
.xa_c00186{left:286.351730px;}
@media print{
.v0_c00186{vertical-align:0.000000pt;}
.ls2_c00186{letter-spacing:0.000000pt;}
.ls1_c00186{letter-spacing:16.266667pt;}
.ls0_c00186{letter-spacing:22.058667pt;}
.ws0_c00186{word-spacing:-15.424000pt;}
.ws1_c00186{word-spacing:0.000000pt;}
._1e_c00186{margin-left:-25.576000pt;}
._21_c00186{margin-left:-24.624000pt;}
._20_c00186{margin-left:-20.880000pt;}
._1f_c00186{margin-left:-15.994667pt;}
._24_c00186{margin-left:-14.112000pt;}
._1b_c00186{margin-left:-12.904000pt;}
._1d_c00186{margin-left:-10.869333pt;}
._1c_c00186{margin-left:-9.664000pt;}
._17_c00186{margin-left:-8.424000pt;}
._1a_c00186{margin-left:-7.125333pt;}
._c_c00186{margin-left:-6.160000pt;}
._13_c00186{margin-left:-4.392000pt;}
._10_c00186{margin-left:-3.136000pt;}
._f_c00186{margin-left:-1.728000pt;}
._11_c00186{width:1.152000pt;}
._19_c00186{width:2.056000pt;}
._a_c00186{width:2.952000pt;}
._e_c00186{width:4.032000pt;}
._b_c00186{width:5.184000pt;}
._d_c00186{width:6.088000pt;}
._12_c00186{width:7.400000pt;}
._0_c00186{width:8.320000pt;}
._5_c00186{width:9.472000pt;}
._14_c00186{width:10.440000pt;}
._7_c00186{width:12.352000pt;}
._1_c00186{width:13.568000pt;}
._3_c00186{width:14.464000pt;}
._6_c00186{width:16.448000pt;}
._23_c00186{width:19.813333pt;}
._2_c00186{width:20.928000pt;}
._9_c00186{width:23.104000pt;}
._4_c00186{width:25.536000pt;}
._18_c00186{width:28.568000pt;}
._15_c00186{width:32.112000pt;}
._8_c00186{width:63.488000pt;}
._16_c00186{width:74.736000pt;}
._22_c00186{width:132.914667pt;}
.fs3_c00186{font-size:42.666667pt;}
.fs0_c00186{font-size:64.000000pt;}
.fs1_c00186{font-size:72.000000pt;}
.fs2_c00186{font-size:77.333333pt;}
.y0_c00186{bottom:0.000000pt;}
.y25_c00186{bottom:2.760000pt;}
.y24_c00186{bottom:6.425219pt;}
.y23_c00186{bottom:94.280000pt;}
.y22_c00186{bottom:116.413333pt;}
.y21_c00186{bottom:138.013333pt;}
.y20_c00186{bottom:159.346667pt;}
.y1f_c00186{bottom:180.280000pt;}
.y1e_c00186{bottom:202.280000pt;}
.y1d_c00186{bottom:223.880000pt;}
.y1c_c00186{bottom:245.480000pt;}
.y1b_c00186{bottom:266.813333pt;}
.y1a_c00186{bottom:287.746667pt;}
.y19_c00186{bottom:308.680000pt;}
.y18_c00186{bottom:330.280000pt;}
.y17_c00186{bottom:351.080000pt;}
.y16_c00186{bottom:372.680000pt;}
.y15_c00186{bottom:393.880000pt;}
.y14_c00186{bottom:414.946667pt;}
.y13_c00186{bottom:436.813333pt;}
.y12_c00186{bottom:458.146667pt;}
.y11_c00186{bottom:479.480000pt;}
.y10_c00186{bottom:500.146667pt;}
.yf_c00186{bottom:521.213333pt;}
.ye_c00186{bottom:542.146667pt;}
.yd_c00186{bottom:563.213333pt;}
.yc_c00186{bottom:583.880000pt;}
.yb_c00186{bottom:605.213333pt;}
.ya_c00186{bottom:626.813333pt;}
.y9_c00186{bottom:647.746667pt;}
.y8_c00186{bottom:669.613333pt;}
.y7_c00186{bottom:690.546667pt;}
.y6_c00186{bottom:711.880000pt;}
.y5_c00186{bottom:733.213333pt;}
.y4_c00186{bottom:755.213333pt;}
.y3_c00186{bottom:775.613333pt;}
.y2_c00186{bottom:797.080000pt;}
.y1_c00186{bottom:829.480000pt;}
.h6_c00186{height:11.733399pt;}
.h7_c00186{height:38.937500pt;}
.h3_c00186{height:70.664062pt;}
.h2_c00186{height:74.906250pt;}
.h4_c00186{height:81.031250pt;}
.h5_c00186{height:81.045333pt;}
.h1_c00186{height:875.333333pt;}
.h0_c00186{height:875.533333pt;}
.w2_c00186{width:93.222667pt;}
.w1_c00186{width:594.666667pt;}
.w0_c00186{width:594.733333pt;}
.x0_c00186{left:0.000000pt;}
.x9_c00186{left:18.533333pt;}
.x8_c00186{left:19.733333pt;}
.x6_c00186{left:20.933333pt;}
.x7_c00186{left:22.400000pt;}
.x5_c00186{left:31.733333pt;}
.x4_c00186{left:33.333333pt;}
.x3_c00186{left:35.066667pt;}
.x2_c00186{left:36.400000pt;}
.x1_c00186{left:97.733333pt;}
.xa_c00186{left:254.534871pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_341f35ca26a2f8cc2445be86.woff2')format("woff");}.ff1_c00187{font-family:ff1_c00187;line-height:1.311035;font-style:normal;font-weight:normal;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_55273875911dc7a71034b7b0.woff2')format("woff");}.ff2_c00187{font-family:ff2_c00187;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00187;src:url('chunks/assets/font_6f6b880303ba152177939ec2.woff2')format("woff");}.ff3_c00187{font-family:ff3_c00187;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00187;src:url('chunks/assets/font_252b8f3cc69cc04e92fc5969.woff2')format("woff");}.ff4_c00187{font-family:ff4_c00187;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00187;src:url('chunks/assets/font_15ef6d137dbebb0d529227f8.woff2')format("woff");}.ff5_c00187{font-family:ff5_c00187;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00187;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff6_c00187{font-family:ff6_c00187;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00187;src:url('chunks/assets/font_beefbba09b92cc5a6e09d30c.woff2')format("woff");}.ff7_c00187{font-family:ff7_c00187;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00187;src:url('chunks/assets/font_e1b1e61bc1896013a191988f.woff2')format("woff");}.ff8_c00187{font-family:ff8_c00187;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00187;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff9_c00187{font-family:ff9_c00187;line-height:1.219238;font-style: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;}
.v1_c00187{vertical-align:162.600000px;}
.ls3_c00187{letter-spacing:-3.000000px;}
.ls2_c00187{letter-spacing:0.000000px;}
.ls1_c00187{letter-spacing:4.002000px;}
.ls0_c00187{letter-spacing:54.150000px;}
.sc__c00187{text-shadow:none;}
.sc0_c00187{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00187{-webkit-text-stroke:0px transparent;}
.sc0_c00187{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00187{word-spacing:-73.500000px;}
.ws1_c00187{word-spacing:-67.686000px;}
.ws3_c00187{word-spacing:-38.232000px;}
.ws4_c00187{word-spacing:-18.000000px;}
.ws0_c00187{word-spacing:-17.352000px;}
.ws5_c00187{word-spacing:0.000000px;}
._7_c00187{margin-left:-26.400000px;}
._a_c00187{margin-left:-24.510000px;}
._1_c00187{margin-left:-20.520000px;}
._3_c00187{margin-left:-18.000000px;}
._2b_c00187{margin-left:-16.374000px;}
._e_c00187{margin-left:-14.256000px;}
._10_c00187{margin-left:-13.185000px;}
._12_c00187{margin-left:-10.896000px;}
._24_c00187{margin-left:-9.669000px;}
._b_c00187{margin-left:-8.544000px;}
._4_c00187{margin-left:-7.200000px;}
._14_c00187{margin-left:-5.427000px;}
._1b_c00187{margin-left:-4.347000px;}
._19_c00187{margin-left:-3.261000px;}
._c_c00187{margin-left:-1.863000px;}
._2_c00187{width:1.560000px;}
._18_c00187{width:2.679000px;}
._8_c00187{width:3.774000px;}
._9_c00187{width:5.100000px;}
._17_c00187{width:6.471000px;}
._1a_c00187{width:7.857000px;}
._1f_c00187{width:9.519000px;}
._0_c00187{width:10.800000px;}
._21_c00187{width:12.453000px;}
._1d_c00187{width:13.560000px;}
._27_c00187{width:15.816000px;}
._6_c00187{width:18.120000px;}
._20_c00187{width:20.175000px;}
._25_c00187{width:25.008000px;}
._1c_c00187{width:26.625000px;}
._2a_c00187{width:30.720000px;}
._22_c00187{width:32.238000px;}
._29_c00187{width:33.384000px;}
._28_c00187{width:43.761000px;}
._23_c00187{width:61.101000px;}
._f_c00187{width:76.059000px;}
._1e_c00187{width:125.178000px;}
._5_c00187{width:131.040000px;}
._d_c00187{width:142.884000px;}
._26_c00187{width:159.336000px;}
._15_c00187{width:166.698000px;}
._16_c00187{width:304.722000px;}
._11_c00187{width:516.429000px;}
._2c_c00187{width:695.391000px;}
._13_c00187{width:849.123000px;}
.fc2_c00187{color:transparent;}
.fc1_c00187{color:rgb(128,128,128);}
.fc0_c00187{color:rgb(0,0,0);}
.fs7_c00187{font-size:48.000000px;}
.fs3_c00187{font-size:72.000000px;}
.fs6_c00187{font-size:78.000000px;}
.fs2_c00187{font-size:81.000000px;}
.fs4_c00187{font-size:87.000000px;}
.fs1_c00187{font-size:102.000000px;}
.fs0_c00187{font-size:120.000000px;}
.fs5_c00187{font-size:294.000000px;}
.y0_c00187{bottom:0.000000px;}
.y25_c00187{bottom:3.105000px;}
.y24_c00187{bottom:7.228357px;}
.y23_c00187{bottom:71.580000px;}
.y22_c00187{bottom:95.880000px;}
.y21_c00187{bottom:120.180000px;}
.y20_c00187{bottom:145.530000px;}
.y1f_c00187{bottom:170.130000px;}
.y1e_c00187{bottom:194.730000px;}
.y1c_c00187{bottom:202.680000px;}
.y1d_c00187{bottom:218.730000px;}
.y1b_c00187{bottom:291.630000px;}
.y1a_c00187{bottom:339.930000px;}
.y19_c00187{bottom:363.780000px;}
.y18_c00187{bottom:388.080000px;}
.y17_c00187{bottom:412.380000px;}
.y16_c00187{bottom:436.680000px;}
.y15_c00187{bottom:460.380000px;}
.y14_c00187{bottom:484.380000px;}
.y13_c00187{bottom:508.380000px;}
.y12_c00187{bottom:532.530000px;}
.y11_c00187{bottom:554.280000px;}
.y10_c00187{bottom:580.230000px;}
.yf_c00187{bottom:605.580000px;}
.ye_c00187{bottom:628.080000px;}
.yd_c00187{bottom:652.380000px;}
.yc_c00187{bottom:676.380000px;}
.yb_c00187{bottom:700.380000px;}
.ya_c00187{bottom:723.930000px;}
.y9_c00187{bottom:748.230000px;}
.y8_c00187{bottom:774.180000px;}
.y7_c00187{bottom:797.130000px;}
.y6_c00187{bottom:820.530000px;}
.y5_c00187{bottom:844.380000px;}
.y4_c00187{bottom:867.480000px;}
.y3_c00187{bottom:892.380000px;}
.y2_c00187{bottom:905.580000px;}
.y1_c00187{bottom:927.180000px;}
.ha_c00187{height:13.200074px;}
.hb_c00187{height:43.804688px;}
.h9_c00187{height:70.628906px;}
.h6_c00187{height:72.562500px;}
.h3_c00187{height:79.497070px;}
.h2_c00187{height:84.269531px;}
.h5_c00187{height:91.160156px;}
.h4_c00187{height:91.176000px;}
.h8_c00187{height:98.756836px;}
.h1_c00187{height:120.937500px;}
.h7_c00187{height:288.544922px;}
.h0_c00187{height:995.250000px;}
.w2_c00187{width:104.875500px;}
.w0_c00187{width:667.425000px;}
.w1_c00187{width:667.500000px;}
.x0_c00187{left:0.000000px;}
.xf_c00187{left:30.300000px;}
.x3_c00187{left:41.850000px;}
.x7_c00187{left:58.500000px;}
.x8_c00187{left:72.900000px;}
.x2_c00187{left:99.900000px;}
.x10_c00187{left:120.600000px;}
.xe_c00187{left:121.800000px;}
.xc_c00187{left:125.550000px;}
.xa_c00187{left:127.200000px;}
.x5_c00187{left:128.250000px;}
.x4_c00187{left:129.300000px;}
.x9_c00187{left:130.350000px;}
.x6_c00187{left:131.700000px;}
.x1_c00187{left:136.950000px;}
.xd_c00187{left:166.050000px;}
.xb_c00187{left:211.950000px;}
.x12_c00187{left:285.526749px;}
.x11_c00187{left:566.250000px;}
@media print{
.v0_c00187{vertical-align:0.000000pt;}
.v1_c00187{vertical-align:144.533333pt;}
.ls3_c00187{letter-spacing:-2.666667pt;}
.ls2_c00187{letter-spacing:0.000000pt;}
.ls1_c00187{letter-spacing:3.557333pt;}
.ls0_c00187{letter-spacing:48.133333pt;}
.ws2_c00187{word-spacing:-65.333333pt;}
.ws1_c00187{word-spacing:-60.165333pt;}
.ws3_c00187{word-spacing:-33.984000pt;}
.ws4_c00187{word-spacing:-16.000000pt;}
.ws0_c00187{word-spacing:-15.424000pt;}
.ws5_c00187{word-spacing:0.000000pt;}
._7_c00187{margin-left:-23.466667pt;}
._a_c00187{margin-left:-21.786667pt;}
._1_c00187{margin-left:-18.240000pt;}
._3_c00187{margin-left:-16.000000pt;}
._2b_c00187{margin-left:-14.554667pt;}
._e_c00187{margin-left:-12.672000pt;}
._10_c00187{margin-left:-11.720000pt;}
._12_c00187{margin-left:-9.685333pt;}
._24_c00187{margin-left:-8.594667pt;}
._b_c00187{margin-left:-7.594667pt;}
._4_c00187{margin-left:-6.400000pt;}
._14_c00187{margin-left:-4.824000pt;}
._1b_c00187{margin-left:-3.864000pt;}
._19_c00187{margin-left:-2.898667pt;}
._c_c00187{margin-left:-1.656000pt;}
._2_c00187{width:1.386667pt;}
._18_c00187{width:2.381333pt;}
._8_c00187{width:3.354667pt;}
._9_c00187{width:4.533333pt;}
._17_c00187{width:5.752000pt;}
._1a_c00187{width:6.984000pt;}
._1f_c00187{width:8.461333pt;}
._0_c00187{width:9.600000pt;}
._21_c00187{width:11.069333pt;}
._1d_c00187{width:12.053333pt;}
._27_c00187{width:14.058667pt;}
._6_c00187{width:16.106667pt;}
._20_c00187{width:17.933333pt;}
._25_c00187{width:22.229333pt;}
._1c_c00187{width:23.666667pt;}
._2a_c00187{width:27.306667pt;}
._22_c00187{width:28.656000pt;}
._29_c00187{width:29.674667pt;}
._28_c00187{width:38.898667pt;}
._23_c00187{width:54.312000pt;}
._f_c00187{width:67.608000pt;}
._1e_c00187{width:111.269333pt;}
._5_c00187{width:116.480000pt;}
._d_c00187{width:127.008000pt;}
._26_c00187{width:141.632000pt;}
._15_c00187{width:148.176000pt;}
._16_c00187{width:270.864000pt;}
._11_c00187{width:459.048000pt;}
._2c_c00187{width:618.125333pt;}
._13_c00187{width:754.776000pt;}
.fs7_c00187{font-size:42.666667pt;}
.fs3_c00187{font-size:64.000000pt;}
.fs6_c00187{font-size:69.333333pt;}
.fs2_c00187{font-size:72.000000pt;}
.fs4_c00187{font-size:77.333333pt;}
.fs1_c00187{font-size:90.666667pt;}
.fs0_c00187{font-size:106.666667pt;}
.fs5_c00187{font-size:261.333333pt;}
.y0_c00187{bottom:0.000000pt;}
.y25_c00187{bottom:2.760000pt;}
.y24_c00187{bottom:6.425206pt;}
.y23_c00187{bottom:63.626667pt;}
.y22_c00187{bottom:85.226667pt;}
.y21_c00187{bottom:106.826667pt;}
.y20_c00187{bottom:129.360000pt;}
.y1f_c00187{bottom:151.226667pt;}
.y1e_c00187{bottom:173.093333pt;}
.y1c_c00187{bottom:180.160000pt;}
.y1d_c00187{bottom:194.426667pt;}
.y1b_c00187{bottom:259.226667pt;}
.y1a_c00187{bottom:302.160000pt;}
.y19_c00187{bottom:323.360000pt;}
.y18_c00187{bottom:344.960000pt;}
.y17_c00187{bottom:366.560000pt;}
.y16_c00187{bottom:388.160000pt;}
.y15_c00187{bottom:409.226667pt;}
.y14_c00187{bottom:430.560000pt;}
.y13_c00187{bottom:451.893333pt;}
.y12_c00187{bottom:473.360000pt;}
.y11_c00187{bottom:492.693333pt;}
.y10_c00187{bottom:515.760000pt;}
.yf_c00187{bottom:538.293333pt;}
.ye_c00187{bottom:558.293333pt;}
.yd_c00187{bottom:579.893333pt;}
.yc_c00187{bottom:601.226667pt;}
.yb_c00187{bottom:622.560000pt;}
.ya_c00187{bottom:643.493333pt;}
.y9_c00187{bottom:665.093333pt;}
.y8_c00187{bottom:688.160000pt;}
.y7_c00187{bottom:708.560000pt;}
.y6_c00187{bottom:729.360000pt;}
.y5_c00187{bottom:750.560000pt;}
.y4_c00187{bottom:771.093333pt;}
.y3_c00187{bottom:793.226667pt;}
.y2_c00187{bottom:804.960000pt;}
.y1_c00187{bottom:824.160000pt;}
.ha_c00187{height:11.733399pt;}
.hb_c00187{height:38.937500pt;}
.h9_c00187{height:62.781250pt;}
.h6_c00187{height:64.500000pt;}
.h3_c00187{height:70.664062pt;}
.h2_c00187{height:74.906250pt;}
.h5_c00187{height:81.031250pt;}
.h4_c00187{height:81.045333pt;}
.h8_c00187{height:87.783854pt;}
.h1_c00187{height:107.500000pt;}
.h7_c00187{height:256.484375pt;}
.h0_c00187{height:884.666667pt;}
.w2_c00187{width:93.222667pt;}
.w0_c00187{width:593.266667pt;}
.w1_c00187{width:593.333333pt;}
.x0_c00187{left:0.000000pt;}
.xf_c00187{left:26.933333pt;}
.x3_c00187{left:37.200000pt;}
.x7_c00187{left:52.000000pt;}
.x8_c00187{left:64.800000pt;}
.x2_c00187{left:88.800000pt;}
.x10_c00187{left:107.200000pt;}
.xe_c00187{left:108.266667pt;}
.xc_c00187{left:111.600000pt;}
.xa_c00187{left:113.066667pt;}
.x5_c00187{left:114.000000pt;}
.x4_c00187{left:114.933333pt;}
.x9_c00187{left:115.866667pt;}
.x6_c00187{left:117.066667pt;}
.x1_c00187{left:121.733333pt;}
.xd_c00187{left:147.600000pt;}
.xb_c00187{left:188.400000pt;}
.x12_c00187{left:253.801554pt;}
.x11_c00187{left:503.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_7f1672e9f7b0378dc66a42f2.woff2')format("woff");}.ff1_c00188{font-family:ff1_c00188;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00188;src:url('chunks/assets/font_38ef8d93e3956987b8351c12.woff2')format("woff");}.ff2_c00188{font-family:ff2_c00188;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00188;src:url('chunks/assets/font_18071e9764a138de6df41061.woff2')format("woff");}.ff3_c00188{font-family:ff3_c00188;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00188;src:url('chunks/assets/font_8afe5f653af5e2dc99f692cd.woff2')format("woff");}.ff4_c00188{font-family:ff4_c00188;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00188;src:url('chunks/assets/font_a4258c659376a0c16edd2e22.woff2')format("woff");}.ff5_c00188{font-family:ff5_c00188;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00188;src:url('chunks/assets/font_36214bd613870a029c4174bc.woff2')format("woff");}.ff6_c00188{font-family:ff6_c00188;line-height:1.311035;font-style:normal;font-weight: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_c00188;src:url('chunks/assets/font_93198cfaa0576811d065aede.woff2')format("woff");}.ff7_c00188{font-family:ff7_c00188;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00188;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff8_c00188{font-family:ff8_c00188;line-height:1.219238;font-style: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;}
.ls5_c00188{letter-spacing:-3.000000px;}
.ls3_c00188{letter-spacing:0.000000px;}
.ls4_c00188{letter-spacing:3.000000px;}
.ls1_c00188{letter-spacing:10.080000px;}
.ls2_c00188{letter-spacing:10.164000px;}
.ls0_c00188{letter-spacing:96.150000px;}
.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;}
}
.ws1_c00188{word-spacing:-20.250000px;}
.ws0_c00188{word-spacing:-17.352000px;}
.ws2_c00188{word-spacing:0.000000px;}
._18_c00188{margin-left:-29.784000px;}
._1b_c00188{margin-left:-22.005000px;}
._21_c00188{margin-left:-20.175000px;}
._c_c00188{margin-left:-18.711000px;}
._a_c00188{margin-left:-16.500000px;}
._22_c00188{margin-left:-15.426000px;}
._10_c00188{margin-left:-13.896000px;}
._12_c00188{margin-left:-11.952000px;}
._f_c00188{margin-left:-10.584000px;}
._13_c00188{margin-left:-9.360000px;}
._19_c00188{margin-left:-8.337000px;}
._11_c00188{margin-left:-7.281000px;}
._7_c00188{margin-left:-5.544000px;}
._6_c00188{margin-left:-3.564000px;}
._b_c00188{margin-left:-2.397000px;}
._8_c00188{margin-left:-1.386000px;}
._0_c00188{width:1.386000px;}
._5_c00188{width:3.168000px;}
._1_c00188{width:4.752000px;}
._14_c00188{width:5.787000px;}
._3_c00188{width:6.930000px;}
._2_c00188{width:8.910000px;}
._1d_c00188{width:9.954000px;}
._4_c00188{width:10.989000px;}
._d_c00188{width:12.528000px;}
._1a_c00188{width:13.905000px;}
._15_c00188{width:15.555000px;}
._1e_c00188{width:16.944000px;}
._1f_c00188{width:18.177000px;}
._16_c00188{width:22.023000px;}
._e_c00188{width:25.323000px;}
._1c_c00188{width:32.103000px;}
._17_c00188{width:33.120000px;}
._20_c00188{width:35.610000px;}
._9_c00188{width:65.955000px;}
.fc2_c00188{color:transparent;}
.fc1_c00188{color:rgb(128,128,128);}
.fc0_c00188{color:rgb(0,0,0);}
.fs6_c00188{font-size:48.000000px;}
.fs2_c00188{font-size:60.000000px;}
.fs3_c00188{font-size:69.000000px;}
.fs5_c00188{font-size:72.000000px;}
.fs4_c00188{font-size:81.000000px;}
.fs0_c00188{font-size:99.000000px;}
.fs1_c00188{font-size:132.000000px;}
.y0_c00188{bottom:0.000000px;}
.y26_c00188{bottom:3.105000px;}
.y25_c00188{bottom:7.228371px;}
.y24_c00188{bottom:80.415000px;}
.y23_c00188{bottom:104.415000px;}
.y22_c00188{bottom:130.365000px;}
.y21_c00188{bottom:155.265000px;}
.y20_c00188{bottom:179.865000px;}
.y1f_c00188{bottom:204.165000px;}
.y1e_c00188{bottom:228.615000px;}
.y1d_c00188{bottom:253.515000px;}
.y1c_c00188{bottom:277.815000px;}
.y1b_c00188{bottom:302.415000px;}
.y1a_c00188{bottom:326.115000px;}
.y19_c00188{bottom:350.115000px;}
.y18_c00188{bottom:374.265000px;}
.y17_c00188{bottom:398.715000px;}
.y16_c00188{bottom:422.865000px;}
.y15_c00188{bottom:446.865000px;}
.y14_c00188{bottom:471.465000px;}
.y13_c00188{bottom:495.765000px;}
.y12_c00188{bottom:520.215000px;}
.y11_c00188{bottom:544.365000px;}
.y10_c00188{bottom:568.665000px;}
.yf_c00188{bottom:592.365000px;}
.ye_c00188{bottom:616.665000px;}
.yd_c00188{bottom:640.365000px;}
.yc_c00188{bottom:664.515000px;}
.yb_c00188{bottom:688.815000px;}
.ya_c00188{bottom:712.815000px;}
.y9_c00188{bottom:737.415000px;}
.y8_c00188{bottom:761.415000px;}
.y7_c00188{bottom:785.415000px;}
.y6_c00188{bottom:809.715000px;}
.y5_c00188{bottom:834.015000px;}
.y4_c00188{bottom:860.265000px;}
.y3_c00188{bottom:882.915000px;}
.y2_c00188{bottom:907.515000px;}
.y1_c00188{bottom:941.715000px;}
.h7_c00188{height:13.200074px;}
.h8_c00188{height:43.804688px;}
.h3_c00188{height:72.312000px;}
.h5_c00188{height:79.497070px;}
.h6_c00188{height:84.269531px;}
.h4_c00188{height:91.160156px;}
.h2_c00188{height:167.126953px;}
.h0_c00188{height:989.025000px;}
.h1_c00188{height:989.250000px;}
.w1_c00188{width:104.875500px;}
.w0_c00188{width:672.000000px;}
.x0_c00188{left:0.000000px;}
.x2_c00188{left:52.950000px;}
.x3_c00188{left:54.000000px;}
.x4_c00188{left:56.400000px;}
.x8_c00188{left:59.400000px;}
.x5_c00188{left:60.750000px;}
.x6_c00188{left:61.800000px;}
.x7_c00188{left:63.000000px;}
.x1_c00188{left:64.500000px;}
.xa_c00188{left:287.814240px;}
.x9_c00188{left:497.100000px;}
@media print{
.v0_c00188{vertical-align:0.000000pt;}
.ls5_c00188{letter-spacing:-2.666667pt;}
.ls3_c00188{letter-spacing:0.000000pt;}
.ls4_c00188{letter-spacing:2.666667pt;}
.ls1_c00188{letter-spacing:8.960000pt;}
.ls2_c00188{letter-spacing:9.034667pt;}
.ls0_c00188{letter-spacing:85.466667pt;}
.ws1_c00188{word-spacing:-18.000000pt;}
.ws0_c00188{word-spacing:-15.424000pt;}
.ws2_c00188{word-spacing:0.000000pt;}
._18_c00188{margin-left:-26.474667pt;}
._1b_c00188{margin-left:-19.560000pt;}
._21_c00188{margin-left:-17.933333pt;}
._c_c00188{margin-left:-16.632000pt;}
._a_c00188{margin-left:-14.666667pt;}
._22_c00188{margin-left:-13.712000pt;}
._10_c00188{margin-left:-12.352000pt;}
._12_c00188{margin-left:-10.624000pt;}
._f_c00188{margin-left:-9.408000pt;}
._13_c00188{margin-left:-8.320000pt;}
._19_c00188{margin-left:-7.410667pt;}
._11_c00188{margin-left:-6.472000pt;}
._7_c00188{margin-left:-4.928000pt;}
._6_c00188{margin-left:-3.168000pt;}
._b_c00188{margin-left:-2.130667pt;}
._8_c00188{margin-left:-1.232000pt;}
._0_c00188{width:1.232000pt;}
._5_c00188{width:2.816000pt;}
._1_c00188{width:4.224000pt;}
._14_c00188{width:5.144000pt;}
._3_c00188{width:6.160000pt;}
._2_c00188{width:7.920000pt;}
._1d_c00188{width:8.848000pt;}
._4_c00188{width:9.768000pt;}
._d_c00188{width:11.136000pt;}
._1a_c00188{width:12.360000pt;}
._15_c00188{width:13.826667pt;}
._1e_c00188{width:15.061333pt;}
._1f_c00188{width:16.157333pt;}
._16_c00188{width:19.576000pt;}
._e_c00188{width:22.509333pt;}
._1c_c00188{width:28.536000pt;}
._17_c00188{width:29.440000pt;}
._20_c00188{width:31.653333pt;}
._9_c00188{width:58.626667pt;}
.fs6_c00188{font-size:42.666667pt;}
.fs2_c00188{font-size:53.333333pt;}
.fs3_c00188{font-size:61.333333pt;}
.fs5_c00188{font-size:64.000000pt;}
.fs4_c00188{font-size:72.000000pt;}
.fs0_c00188{font-size:88.000000pt;}
.fs1_c00188{font-size:117.333333pt;}
.y0_c00188{bottom:0.000000pt;}
.y26_c00188{bottom:2.760000pt;}
.y25_c00188{bottom:6.425219pt;}
.y24_c00188{bottom:71.480000pt;}
.y23_c00188{bottom:92.813333pt;}
.y22_c00188{bottom:115.880000pt;}
.y21_c00188{bottom:138.013333pt;}
.y20_c00188{bottom:159.880000pt;}
.y1f_c00188{bottom:181.480000pt;}
.y1e_c00188{bottom:203.213333pt;}
.y1d_c00188{bottom:225.346667pt;}
.y1c_c00188{bottom:246.946667pt;}
.y1b_c00188{bottom:268.813333pt;}
.y1a_c00188{bottom:289.880000pt;}
.y19_c00188{bottom:311.213333pt;}
.y18_c00188{bottom:332.680000pt;}
.y17_c00188{bottom:354.413333pt;}
.y16_c00188{bottom:375.880000pt;}
.y15_c00188{bottom:397.213333pt;}
.y14_c00188{bottom:419.080000pt;}
.y13_c00188{bottom:440.680000pt;}
.y12_c00188{bottom:462.413333pt;}
.y11_c00188{bottom:483.880000pt;}
.y10_c00188{bottom:505.480000pt;}
.yf_c00188{bottom:526.546667pt;}
.ye_c00188{bottom:548.146667pt;}
.yd_c00188{bottom:569.213333pt;}
.yc_c00188{bottom:590.680000pt;}
.yb_c00188{bottom:612.280000pt;}
.ya_c00188{bottom:633.613333pt;}
.y9_c00188{bottom:655.480000pt;}
.y8_c00188{bottom:676.813333pt;}
.y7_c00188{bottom:698.146667pt;}
.y6_c00188{bottom:719.746667pt;}
.y5_c00188{bottom:741.346667pt;}
.y4_c00188{bottom:764.680000pt;}
.y3_c00188{bottom:784.813333pt;}
.y2_c00188{bottom:806.680000pt;}
.y1_c00188{bottom:837.080000pt;}
.h7_c00188{height:11.733399pt;}
.h8_c00188{height:38.937500pt;}
.h3_c00188{height:64.277333pt;}
.h5_c00188{height:70.664062pt;}
.h6_c00188{height:74.906250pt;}
.h4_c00188{height:81.031250pt;}
.h2_c00188{height:148.557292pt;}
.h0_c00188{height:879.133333pt;}
.h1_c00188{height:879.333333pt;}
.w1_c00188{width:93.222667pt;}
.w0_c00188{width:597.333333pt;}
.x0_c00188{left:0.000000pt;}
.x2_c00188{left:47.066667pt;}
.x3_c00188{left:48.000000pt;}
.x4_c00188{left:50.133333pt;}
.x8_c00188{left:52.800000pt;}
.x5_c00188{left:54.000000pt;}
.x6_c00188{left:54.933333pt;}
.x7_c00188{left:56.000000pt;}
.x1_c00188{left:57.333333pt;}
.xa_c00188{left:255.834880pt;}
.x9_c00188{left:441.866667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_fd5c4628bc262de2afaa0e17.woff2')format("woff");}.ff1_c00189{font-family:ff1_c00189;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00189;src:url('chunks/assets/font_7ad83570b574ca1852ea8691.woff2')format("woff");}.ff2_c00189{font-family:ff2_c00189;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00189;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff3_c00189{font-family:ff3_c00189;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00189;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff4_c00189{font-family:ff4_c00189;line-height:1.219238;font-style: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;}
.ls0_c00189{letter-spacing:0.000000px;}
.sc__c00189{text-shadow:none;}
.sc0_c00189{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00189{-webkit-text-stroke:0px transparent;}
.sc0_c00189{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00189{word-spacing:-20.250000px;}
.ws0_c00189{word-spacing:-17.352000px;}
.ws2_c00189{word-spacing:0.000000px;}
._f_c00189{margin-left:-17.577000px;}
._e_c00189{margin-left:-12.960000px;}
._13_c00189{margin-left:-11.664000px;}
._14_c00189{margin-left:-10.530000px;}
._11_c00189{margin-left:-9.396000px;}
._c_c00189{margin-left:-7.128000px;}
._15_c00189{margin-left:-5.994000px;}
._6_c00189{margin-left:-4.536000px;}
._4_c00189{margin-left:-2.754000px;}
._5_c00189{margin-left:-1.701000px;}
._3_c00189{width:1.863000px;}
._2_c00189{width:3.807000px;}
._0_c00189{width:5.103000px;}
._8_c00189{width:6.318000px;}
._b_c00189{width:7.371000px;}
._1_c00189{width:8.424000px;}
._9_c00189{width:10.044000px;}
._12_c00189{width:11.178000px;}
._a_c00189{width:12.312000px;}
._7_c00189{width:14.175000px;}
._17_c00189{width:15.477000px;}
._19_c00189{width:16.767000px;}
._16_c00189{width:17.982000px;}
._d_c00189{width:19.800000px;}
._10_c00189{width:31.428000px;}
._1a_c00189{width:35.397000px;}
._18_c00189{width:207.615000px;}
.fc2_c00189{color:transparent;}
.fc1_c00189{color:rgb(128,128,128);}
.fc0_c00189{color:rgb(0,0,0);}
.fs4_c00189{font-size:48.000000px;}
.fs3_c00189{font-size:57.000000px;}
.fs1_c00189{font-size:60.000000px;}
.fs2_c00189{font-size:72.000000px;}
.fs0_c00189{font-size:81.000000px;}
.y0_c00189{bottom:0.000000px;}
.y25_c00189{bottom:3.105000px;}
.y24_c00189{bottom:7.228357px;}
.y23_c00189{bottom:75.630000px;}
.y22_c00189{bottom:100.230000px;}
.y21_c00189{bottom:125.580000px;}
.y20_c00189{bottom:150.480000px;}
.y1f_c00189{bottom:175.530000px;}
.y1e_c00189{bottom:200.130000px;}
.y1d_c00189{bottom:224.730000px;}
.y1c_c00189{bottom:250.380000px;}
.y1b_c00189{bottom:273.480000px;}
.y1a_c00189{bottom:298.080000px;}
.y19_c00189{bottom:322.680000px;}
.y18_c00189{bottom:346.980000px;}
.y17_c00189{bottom:371.280000px;}
.y16_c00189{bottom:395.280000px;}
.y15_c00189{bottom:419.580000px;}
.y14_c00189{bottom:444.180000px;}
.y13_c00189{bottom:468.180000px;}
.y12_c00189{bottom:492.180000px;}
.y11_c00189{bottom:516.480000px;}
.y10_c00189{bottom:540.630000px;}
.yf_c00189{bottom:565.080000px;}
.ye_c00189{bottom:589.230000px;}
.yd_c00189{bottom:613.530000px;}
.yc_c00189{bottom:637.980000px;}
.yb_c00189{bottom:662.130000px;}
.ya_c00189{bottom:686.430000px;}
.y9_c00189{bottom:710.730000px;}
.y8_c00189{bottom:735.030000px;}
.y7_c00189{bottom:759.330000px;}
.y6_c00189{bottom:783.030000px;}
.y5_c00189{bottom:807.630000px;}
.y4_c00189{bottom:832.680000px;}
.y3_c00189{bottom:855.930000px;}
.y2_c00189{bottom:880.530000px;}
.y1_c00189{bottom:904.830000px;}
.h4_c00189{height:13.200074px;}
.h5_c00189{height:43.804688px;}
.h3_c00189{height:72.168457px;}
.h1_c00189{height:79.497070px;}
.h2_c00189{height:91.160156px;}
.h0_c00189{height:995.250000px;}
.w2_c00189{width:104.875500px;}
.w0_c00189{width:667.425000px;}
.w1_c00189{width:667.500000px;}
.x0_c00189{left:0.000000px;}
.xe_c00189{left:106.950000px;}
.xd_c00189{left:108.000000px;}
.xc_c00189{left:109.050000px;}
.xb_c00189{left:110.400000px;}
.xa_c00189{left:111.600000px;}
.x9_c00189{left:112.950000px;}
.x8_c00189{left:115.050000px;}
.x7_c00189{left:116.100000px;}
.x6_c00189{left:117.150000px;}
.x5_c00189{left:118.500000px;}
.x4_c00189{left:119.850000px;}
.x3_c00189{left:121.500000px;}
.x1_c00189{left:123.450000px;}
.x2_c00189{left:124.500000px;}
.x10_c00189{left:285.526749px;}
.xf_c00189{left:543.300000px;}
@media print{
.v0_c00189{vertical-align:0.000000pt;}
.ls0_c00189{letter-spacing:0.000000pt;}
.ws1_c00189{word-spacing:-18.000000pt;}
.ws0_c00189{word-spacing:-15.424000pt;}
.ws2_c00189{word-spacing:0.000000pt;}
._f_c00189{margin-left:-15.624000pt;}
._e_c00189{margin-left:-11.520000pt;}
._13_c00189{margin-left:-10.368000pt;}
._14_c00189{margin-left:-9.360000pt;}
._11_c00189{margin-left:-8.352000pt;}
._c_c00189{margin-left:-6.336000pt;}
._15_c00189{margin-left:-5.328000pt;}
._6_c00189{margin-left:-4.032000pt;}
._4_c00189{margin-left:-2.448000pt;}
._5_c00189{margin-left:-1.512000pt;}
._3_c00189{width:1.656000pt;}
._2_c00189{width:3.384000pt;}
._0_c00189{width:4.536000pt;}
._8_c00189{width:5.616000pt;}
._b_c00189{width:6.552000pt;}
._1_c00189{width:7.488000pt;}
._9_c00189{width:8.928000pt;}
._12_c00189{width:9.936000pt;}
._a_c00189{width:10.944000pt;}
._7_c00189{width:12.600000pt;}
._17_c00189{width:13.757333pt;}
._19_c00189{width:14.904000pt;}
._16_c00189{width:15.984000pt;}
._d_c00189{width:17.600000pt;}
._10_c00189{width:27.936000pt;}
._1a_c00189{width:31.464000pt;}
._18_c00189{width:184.546667pt;}
.fs4_c00189{font-size:42.666667pt;}
.fs3_c00189{font-size:50.666667pt;}
.fs1_c00189{font-size:53.333333pt;}
.fs2_c00189{font-size:64.000000pt;}
.fs0_c00189{font-size:72.000000pt;}
.y0_c00189{bottom:0.000000pt;}
.y25_c00189{bottom:2.760000pt;}
.y24_c00189{bottom:6.425206pt;}
.y23_c00189{bottom:67.226667pt;}
.y22_c00189{bottom:89.093333pt;}
.y21_c00189{bottom:111.626667pt;}
.y20_c00189{bottom:133.760000pt;}
.y1f_c00189{bottom:156.026667pt;}
.y1e_c00189{bottom:177.893333pt;}
.y1d_c00189{bottom:199.760000pt;}
.y1c_c00189{bottom:222.560000pt;}
.y1b_c00189{bottom:243.093333pt;}
.y1a_c00189{bottom:264.960000pt;}
.y19_c00189{bottom:286.826667pt;}
.y18_c00189{bottom:308.426667pt;}
.y17_c00189{bottom:330.026667pt;}
.y16_c00189{bottom:351.360000pt;}
.y15_c00189{bottom:372.960000pt;}
.y14_c00189{bottom:394.826667pt;}
.y13_c00189{bottom:416.160000pt;}
.y12_c00189{bottom:437.493333pt;}
.y11_c00189{bottom:459.093333pt;}
.y10_c00189{bottom:480.560000pt;}
.yf_c00189{bottom:502.293333pt;}
.ye_c00189{bottom:523.760000pt;}
.yd_c00189{bottom:545.360000pt;}
.yc_c00189{bottom:567.093333pt;}
.yb_c00189{bottom:588.560000pt;}
.ya_c00189{bottom:610.160000pt;}
.y9_c00189{bottom:631.760000pt;}
.y8_c00189{bottom:653.360000pt;}
.y7_c00189{bottom:674.960000pt;}
.y6_c00189{bottom:696.026667pt;}
.y5_c00189{bottom:717.893333pt;}
.y4_c00189{bottom:740.160000pt;}
.y3_c00189{bottom:760.826667pt;}
.y2_c00189{bottom:782.693333pt;}
.y1_c00189{bottom:804.293333pt;}
.h4_c00189{height:11.733399pt;}
.h5_c00189{height:38.937500pt;}
.h3_c00189{height:64.149740pt;}
.h1_c00189{height:70.664062pt;}
.h2_c00189{height:81.031250pt;}
.h0_c00189{height:884.666667pt;}
.w2_c00189{width:93.222667pt;}
.w0_c00189{width:593.266667pt;}
.w1_c00189{width:593.333333pt;}
.x0_c00189{left:0.000000pt;}
.xe_c00189{left:95.066667pt;}
.xd_c00189{left:96.000000pt;}
.xc_c00189{left:96.933333pt;}
.xb_c00189{left:98.133333pt;}
.xa_c00189{left:99.200000pt;}
.x9_c00189{left:100.400000pt;}
.x8_c00189{left:102.266667pt;}
.x7_c00189{left:103.200000pt;}
.x6_c00189{left:104.133333pt;}
.x5_c00189{left:105.333333pt;}
.x4_c00189{left:106.533333pt;}
.x3_c00189{left:108.000000pt;}
.x1_c00189{left:109.733333pt;}
.x2_c00189{left:110.666667pt;}
.x10_c00189{left:253.801554pt;}
.xf_c00189{left:482.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_cfc601692c12c00a59107d25.woff2')format("woff");}.ff1_c00190{font-family:ff1_c00190;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00190;src:url('chunks/assets/font_94528db87fe55f475d651241.woff2')format("woff");}.ff2_c00190{font-family:ff2_c00190;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00190;src:url('chunks/assets/font_407ad7639e9b0b3b5080768e.woff2')format("woff");}.ff3_c00190{font-family:ff3_c00190;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00190;src:url('chunks/assets/font_367f2d398bf40c9e5cce9c79.woff2')format("woff");}.ff4_c00190{font-family:ff4_c00190;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00190;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff5_c00190{font-family:ff5_c00190;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00190;src:url('chunks/assets/font_d978624501da7937b1b0f1b8.woff2')format("woff");}.ff6_c00190{font-family:ff6_c00190;line-height:1.437000;font-style:normal;font-weight: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_c00190;src:url('chunks/assets/font_b7ba0ba8bb7f1760f9d51a51.woff2')format("woff");}.ff7_c00190{font-family:ff7_c00190;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00190;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff8_c00190{font-family:ff8_c00190;line-height:1.219238;font-style: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;}
.ls2_c00190{letter-spacing:-9.000000px;}
.ls1_c00190{letter-spacing:0.000000px;}
.ls0_c00190{letter-spacing:6.000000px;}
.sc__c00190{text-shadow:none;}
.sc0_c00190{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00190{-webkit-text-stroke:0px transparent;}
.sc0_c00190{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00190{word-spacing:-67.686000px;}
.ws0_c00190{word-spacing:-59.184000px;}
.ws2_c00190{word-spacing:-47.100000px;}
.ws3_c00190{word-spacing:0.000000px;}
._22_c00190{margin-left:-28.590000px;}
._15_c00190{margin-left:-25.341000px;}
._1a_c00190{margin-left:-23.325000px;}
._1f_c00190{margin-left:-18.336000px;}
._21_c00190{margin-left:-16.647000px;}
._13_c00190{margin-left:-15.066000px;}
._1_c00190{margin-left:-13.941000px;}
._14_c00190{margin-left:-10.368000px;}
._2_c00190{margin-left:-6.945000px;}
._b_c00190{margin-left:-5.265000px;}
._1c_c00190{margin-left:-4.077000px;}
._3_c00190{margin-left:-2.856000px;}
._c_c00190{margin-left:-1.011000px;}
._4_c00190{width:1.836000px;}
._5_c00190{width:3.579000px;}
._9_c00190{width:5.103000px;}
._d_c00190{width:6.159000px;}
._a_c00190{width:8.100000px;}
._0_c00190{width:10.005000px;}
._e_c00190{width:11.211000px;}
._f_c00190{width:12.753000px;}
._8_c00190{width:14.094000px;}
._11_c00190{width:15.681000px;}
._10_c00190{width:18.261000px;}
._23_c00190{width:26.718000px;}
._1d_c00190{width:30.120000px;}
._1e_c00190{width:37.764000px;}
._7_c00190{width:39.678000px;}
._6_c00190{width:57.900000px;}
._1b_c00190{width:74.844000px;}
._16_c00190{width:132.192000px;}
._12_c00190{width:140.577000px;}
._19_c00190{width:219.753000px;}
._18_c00190{width:222.993000px;}
._24_c00190{width:239.487000px;}
._20_c00190{width:259.107000px;}
._17_c00190{width:538.548000px;}
.fc2_c00190{color:transparent;}
.fc1_c00190{color:rgb(128,128,128);}
.fc0_c00190{color:rgb(0,0,0);}
.fs4_c00190{font-size:48.000000px;}
.fs3_c00190{font-size:72.000000px;}
.fs2_c00190{font-size:81.000000px;}
.fs0_c00190{font-size:87.000000px;}
.fs1_c00190{font-size:102.000000px;}
.y0_c00190{bottom:0.000000px;}
.y26_c00190{bottom:3.105000px;}
.y25_c00190{bottom:7.228371px;}
.y24_c00190{bottom:55.815000px;}
.y23_c00190{bottom:80.715000px;}
.y22_c00190{bottom:105.615000px;}
.y21_c00190{bottom:130.365000px;}
.y20_c00190{bottom:154.665000px;}
.y1f_c00190{bottom:177.315000px;}
.y1e_c00190{bottom:203.565000px;}
.y1d_c00190{bottom:228.165000px;}
.y1c_c00190{bottom:252.465000px;}
.y1b_c00190{bottom:277.065000px;}
.y1a_c00190{bottom:301.065000px;}
.y19_c00190{bottom:324.465000px;}
.y18_c00190{bottom:348.615000px;}
.y17_c00190{bottom:372.915000px;}
.y16_c00190{bottom:396.915000px;}
.y15_c00190{bottom:421.215000px;}
.y14_c00190{bottom:445.515000px;}
.y13_c00190{bottom:469.215000px;}
.y12_c00190{bottom:494.115000px;}
.y11_c00190{bottom:518.115000px;}
.y10_c00190{bottom:542.115000px;}
.yf_c00190{bottom:566.115000px;}
.ye_c00190{bottom:590.265000px;}
.yd_c00190{bottom:614.265000px;}
.yc_c00190{bottom:638.265000px;}
.yb_c00190{bottom:661.815000px;}
.ya_c00190{bottom:685.815000px;}
.y9_c00190{bottom:708.165000px;}
.y8_c00190{bottom:734.415000px;}
.y7_c00190{bottom:758.715000px;}
.y6_c00190{bottom:783.315000px;}
.y5_c00190{bottom:807.765000px;}
.y4_c00190{bottom:831.915000px;}
.y3_c00190{bottom:856.215000px;}
.y2_c00190{bottom:880.665000px;}
.y1_c00190{bottom:916.665000px;}
.h8_c00190{height:13.200074px;}
.h9_c00190{height:43.804688px;}
.h3_c00190{height:79.497070px;}
.h6_c00190{height:84.269531px;}
.h4_c00190{height:91.160156px;}
.h5_c00190{height:91.176000px;}
.h2_c00190{height:100.057617px;}
.h7_c00190{height:104.839927px;}
.h0_c00190{height:989.025000px;}
.h1_c00190{height:989.250000px;}
.w1_c00190{width:104.875500px;}
.w0_c00190{width:672.000000px;}
.x0_c00190{left:0.000000px;}
.x6_c00190{left:60.750000px;}
.x5_c00190{left:62.100000px;}
.x2_c00190{left:63.150000px;}
.x3_c00190{left:64.500000px;}
.x4_c00190{left:89.400000px;}
.x1_c00190{left:116.850000px;}
.x8_c00190{left:287.814240px;}
.x7_c00190{left:512.700000px;}
@media print{
.v0_c00190{vertical-align:0.000000pt;}
.ls2_c00190{letter-spacing:-8.000000pt;}
.ls1_c00190{letter-spacing:0.000000pt;}
.ls0_c00190{letter-spacing:5.333333pt;}
.ws1_c00190{word-spacing:-60.165333pt;}
.ws0_c00190{word-spacing:-52.608000pt;}
.ws2_c00190{word-spacing:-41.866667pt;}
.ws3_c00190{word-spacing:0.000000pt;}
._22_c00190{margin-left:-25.413333pt;}
._15_c00190{margin-left:-22.525333pt;}
._1a_c00190{margin-left:-20.733333pt;}
._1f_c00190{margin-left:-16.298667pt;}
._21_c00190{margin-left:-14.797333pt;}
._13_c00190{margin-left:-13.392000pt;}
._1_c00190{margin-left:-12.392000pt;}
._14_c00190{margin-left:-9.216000pt;}
._2_c00190{margin-left:-6.173333pt;}
._b_c00190{margin-left:-4.680000pt;}
._1c_c00190{margin-left:-3.624000pt;}
._3_c00190{margin-left:-2.538667pt;}
._c_c00190{margin-left:-0.898667pt;}
._4_c00190{width:1.632000pt;}
._5_c00190{width:3.181333pt;}
._9_c00190{width:4.536000pt;}
._d_c00190{width:5.474667pt;}
._a_c00190{width:7.200000pt;}
._0_c00190{width:8.893333pt;}
._e_c00190{width:9.965333pt;}
._f_c00190{width:11.336000pt;}
._8_c00190{width:12.528000pt;}
._11_c00190{width:13.938667pt;}
._10_c00190{width:16.232000pt;}
._23_c00190{width:23.749333pt;}
._1d_c00190{width:26.773333pt;}
._1e_c00190{width:33.568000pt;}
._7_c00190{width:35.269333pt;}
._6_c00190{width:51.466667pt;}
._1b_c00190{width:66.528000pt;}
._16_c00190{width:117.504000pt;}
._12_c00190{width:124.957333pt;}
._19_c00190{width:195.336000pt;}
._18_c00190{width:198.216000pt;}
._24_c00190{width:212.877333pt;}
._20_c00190{width:230.317333pt;}
._17_c00190{width:478.709333pt;}
.fs4_c00190{font-size:42.666667pt;}
.fs3_c00190{font-size:64.000000pt;}
.fs2_c00190{font-size:72.000000pt;}
.fs0_c00190{font-size:77.333333pt;}
.fs1_c00190{font-size:90.666667pt;}
.y0_c00190{bottom:0.000000pt;}
.y26_c00190{bottom:2.760000pt;}
.y25_c00190{bottom:6.425219pt;}
.y24_c00190{bottom:49.613333pt;}
.y23_c00190{bottom:71.746667pt;}
.y22_c00190{bottom:93.880000pt;}
.y21_c00190{bottom:115.880000pt;}
.y20_c00190{bottom:137.480000pt;}
.y1f_c00190{bottom:157.613333pt;}
.y1e_c00190{bottom:180.946667pt;}
.y1d_c00190{bottom:202.813333pt;}
.y1c_c00190{bottom:224.413333pt;}
.y1b_c00190{bottom:246.280000pt;}
.y1a_c00190{bottom:267.613333pt;}
.y19_c00190{bottom:288.413333pt;}
.y18_c00190{bottom:309.880000pt;}
.y17_c00190{bottom:331.480000pt;}
.y16_c00190{bottom:352.813333pt;}
.y15_c00190{bottom:374.413333pt;}
.y14_c00190{bottom:396.013333pt;}
.y13_c00190{bottom:417.080000pt;}
.y12_c00190{bottom:439.213333pt;}
.y11_c00190{bottom:460.546667pt;}
.y10_c00190{bottom:481.880000pt;}
.yf_c00190{bottom:503.213333pt;}
.ye_c00190{bottom:524.680000pt;}
.yd_c00190{bottom:546.013333pt;}
.yc_c00190{bottom:567.346667pt;}
.yb_c00190{bottom:588.280000pt;}
.ya_c00190{bottom:609.613333pt;}
.y9_c00190{bottom:629.480000pt;}
.y8_c00190{bottom:652.813333pt;}
.y7_c00190{bottom:674.413333pt;}
.y6_c00190{bottom:696.280000pt;}
.y5_c00190{bottom:718.013333pt;}
.y4_c00190{bottom:739.480000pt;}
.y3_c00190{bottom:761.080000pt;}
.y2_c00190{bottom:782.813333pt;}
.y1_c00190{bottom:814.813333pt;}
.h8_c00190{height:11.733399pt;}
.h9_c00190{height:38.937500pt;}
.h3_c00190{height:70.664062pt;}
.h6_c00190{height:74.906250pt;}
.h4_c00190{height:81.031250pt;}
.h5_c00190{height:81.045333pt;}
.h2_c00190{height:88.940104pt;}
.h7_c00190{height:93.191046pt;}
.h0_c00190{height:879.133333pt;}
.h1_c00190{height:879.333333pt;}
.w1_c00190{width:93.222667pt;}
.w0_c00190{width:597.333333pt;}
.x0_c00190{left:0.000000pt;}
.x6_c00190{left:54.000000pt;}
.x5_c00190{left:55.200000pt;}
.x2_c00190{left:56.133333pt;}
.x3_c00190{left:57.333333pt;}
.x4_c00190{left:79.466667pt;}
.x1_c00190{left:103.866667pt;}
.x8_c00190{left:255.834880pt;}
.x7_c00190{left:455.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_6318d77de5f3f1a6ed974279.woff2')format("woff");}.ff1_c00191{font-family:ff1_c00191;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00191;src:url('chunks/assets/font_b5e383804d31cbf4ac146ffe.woff2')format("woff");}.ff2_c00191{font-family:ff2_c00191;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00191;src:url('chunks/assets/font_3f0b435192b187d5219a53dd.woff2')format("woff");}.ff3_c00191{font-family:ff3_c00191;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00191;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff4_c00191{font-family:ff4_c00191;line-height:1.219238;font-style: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;}
.v1_c00191{vertical-align:153.600000px;}
.ls1_c00191{letter-spacing:-9.000000px;}
.ls0_c00191{letter-spacing:0.000000px;}
.sc__c00191{text-shadow:none;}
.sc0_c00191{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00191{-webkit-text-stroke:0px transparent;}
.sc0_c00191{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00191{word-spacing:-70.500000px;}
.ws1_c00191{word-spacing:-20.250000px;}
.ws2_c00191{word-spacing:0.000000px;}
._19_c00191{margin-left:-31.542000px;}
._14_c00191{margin-left:-28.713000px;}
._15_c00191{margin-left:-15.030000px;}
._16_c00191{margin-left:-13.872000px;}
._18_c00191{margin-left:-12.495000px;}
._17_c00191{margin-left:-11.271000px;}
._6_c00191{margin-left:-8.100000px;}
._9_c00191{margin-left:-6.318000px;}
._7_c00191{margin-left:-5.022000px;}
._2_c00191{margin-left:-3.969000px;}
._a_c00191{margin-left:-2.916000px;}
._4_c00191{margin-left:-1.215000px;}
._b_c00191{width:1.377000px;}
._3_c00191{width:2.430000px;}
._1_c00191{width:3.726000px;}
._5_c00191{width:5.265000px;}
._0_c00191{width:6.561000px;}
._12_c00191{width:7.614000px;}
._8_c00191{width:8.748000px;}
._11_c00191{width:10.332000px;}
._f_c00191{width:11.778000px;}
._d_c00191{width:13.050000px;}
._c_c00191{width:14.250000px;}
._13_c00191{width:16.101000px;}
._e_c00191{width:23.550000px;}
._10_c00191{width:25.350000px;}
.fc2_c00191{color:transparent;}
.fc1_c00191{color:rgb(128,128,128);}
.fc0_c00191{color:rgb(0,0,0);}
.fs4_c00191{font-size:48.000000px;}
.fs1_c00191{font-size:75.000000px;}
.fs0_c00191{font-size:81.000000px;}
.fs3_c00191{font-size:102.000000px;}
.fs2_c00191{font-size:282.000000px;}
.y0_c00191{bottom:0.000000px;}
.y23_c00191{bottom:3.105000px;}
.y22_c00191{bottom:7.228357px;}
.y21_c00191{bottom:68.130000px;}
.y20_c00191{bottom:92.880000px;}
.y1f_c00191{bottom:118.530000px;}
.y1e_c00191{bottom:143.430000px;}
.y1d_c00191{bottom:168.180000px;}
.y1c_c00191{bottom:192.480000px;}
.y1b_c00191{bottom:216.780000px;}
.y1a_c00191{bottom:240.930000px;}
.y19_c00191{bottom:265.980000px;}
.y18_c00191{bottom:290.280000px;}
.y17_c00191{bottom:314.880000px;}
.y16_c00191{bottom:339.180000px;}
.y15_c00191{bottom:363.030000px;}
.y14_c00191{bottom:387.780000px;}
.y13_c00191{bottom:412.530000px;}
.y12_c00191{bottom:437.130000px;}
.y11_c00191{bottom:461.130000px;}
.y10_c00191{bottom:485.430000px;}
.yf_c00191{bottom:509.730000px;}
.ye_c00191{bottom:534.030000px;}
.yd_c00191{bottom:558.180000px;}
.yc_c00191{bottom:582.480000px;}
.yb_c00191{bottom:606.780000px;}
.ya_c00191{bottom:631.080000px;}
.y9_c00191{bottom:655.380000px;}
.y8_c00191{bottom:681.780000px;}
.y6_c00191{bottom:689.880000px;}
.y7_c00191{bottom:703.980000px;}
.y5_c00191{bottom:776.880000px;}
.y4_c00191{bottom:823.530000px;}
.y3_c00191{bottom:848.880000px;}
.y2_c00191{bottom:873.180000px;}
.y1_c00191{bottom:898.080000px;}
.h5_c00191{height:13.200074px;}
.h6_c00191{height:43.804688px;}
.h2_c00191{height:73.571777px;}
.h1_c00191{height:79.497070px;}
.h4_c00191{height:104.839927px;}
.h3_c00191{height:276.767578px;}
.h0_c00191{height:995.250000px;}
.w2_c00191{width:104.875500px;}
.w0_c00191{width:667.425000px;}
.w1_c00191{width:667.500000px;}
.x0_c00191{left:0.000000px;}
.x1_c00191{left:123.150000px;}
.x5_c00191{left:124.500000px;}
.x3_c00191{left:126.000000px;}
.x7_c00191{left:127.200000px;}
.x8_c00191{left:128.550000px;}
.x9_c00191{left:130.050000px;}
.xa_c00191{left:132.000000px;}
.x6_c00191{left:149.850000px;}
.x4_c00191{left:163.650000px;}
.x2_c00191{left:214.650000px;}
.xc_c00191{left:285.526749px;}
.xb_c00191{left:551.550000px;}
@media print{
.v0_c00191{vertical-align:0.000000pt;}
.v1_c00191{vertical-align:136.533333pt;}
.ls1_c00191{letter-spacing:-8.000000pt;}
.ls0_c00191{letter-spacing:0.000000pt;}
.ws0_c00191{word-spacing:-62.666667pt;}
.ws1_c00191{word-spacing:-18.000000pt;}
.ws2_c00191{word-spacing:0.000000pt;}
._19_c00191{margin-left:-28.037333pt;}
._14_c00191{margin-left:-25.522667pt;}
._15_c00191{margin-left:-13.360000pt;}
._16_c00191{margin-left:-12.330667pt;}
._18_c00191{margin-left:-11.106667pt;}
._17_c00191{margin-left:-10.018667pt;}
._6_c00191{margin-left:-7.200000pt;}
._9_c00191{margin-left:-5.616000pt;}
._7_c00191{margin-left:-4.464000pt;}
._2_c00191{margin-left:-3.528000pt;}
._a_c00191{margin-left:-2.592000pt;}
._4_c00191{margin-left:-1.080000pt;}
._b_c00191{width:1.224000pt;}
._3_c00191{width:2.160000pt;}
._1_c00191{width:3.312000pt;}
._5_c00191{width:4.680000pt;}
._0_c00191{width:5.832000pt;}
._12_c00191{width:6.768000pt;}
._8_c00191{width:7.776000pt;}
._11_c00191{width:9.184000pt;}
._f_c00191{width:10.469333pt;}
._d_c00191{width:11.600000pt;}
._c_c00191{width:12.666667pt;}
._13_c00191{width:14.312000pt;}
._e_c00191{width:20.933333pt;}
._10_c00191{width:22.533333pt;}
.fs4_c00191{font-size:42.666667pt;}
.fs1_c00191{font-size:66.666667pt;}
.fs0_c00191{font-size:72.000000pt;}
.fs3_c00191{font-size:90.666667pt;}
.fs2_c00191{font-size:250.666667pt;}
.y0_c00191{bottom:0.000000pt;}
.y23_c00191{bottom:2.760000pt;}
.y22_c00191{bottom:6.425206pt;}
.y21_c00191{bottom:60.560000pt;}
.y20_c00191{bottom:82.560000pt;}
.y1f_c00191{bottom:105.360000pt;}
.y1e_c00191{bottom:127.493333pt;}
.y1d_c00191{bottom:149.493333pt;}
.y1c_c00191{bottom:171.093333pt;}
.y1b_c00191{bottom:192.693333pt;}
.y1a_c00191{bottom:214.160000pt;}
.y19_c00191{bottom:236.426667pt;}
.y18_c00191{bottom:258.026667pt;}
.y17_c00191{bottom:279.893333pt;}
.y16_c00191{bottom:301.493333pt;}
.y15_c00191{bottom:322.693333pt;}
.y14_c00191{bottom:344.693333pt;}
.y13_c00191{bottom:366.693333pt;}
.y12_c00191{bottom:388.560000pt;}
.y11_c00191{bottom:409.893333pt;}
.y10_c00191{bottom:431.493333pt;}
.yf_c00191{bottom:453.093333pt;}
.ye_c00191{bottom:474.693333pt;}
.yd_c00191{bottom:496.160000pt;}
.yc_c00191{bottom:517.760000pt;}
.yb_c00191{bottom:539.360000pt;}
.ya_c00191{bottom:560.960000pt;}
.y9_c00191{bottom:582.560000pt;}
.y8_c00191{bottom:606.026667pt;}
.y6_c00191{bottom:613.226667pt;}
.y7_c00191{bottom:625.760000pt;}
.y5_c00191{bottom:690.560000pt;}
.y4_c00191{bottom:732.026667pt;}
.y3_c00191{bottom:754.560000pt;}
.y2_c00191{bottom:776.160000pt;}
.y1_c00191{bottom:798.293333pt;}
.h5_c00191{height:11.733399pt;}
.h6_c00191{height:38.937500pt;}
.h2_c00191{height:65.397135pt;}
.h1_c00191{height:70.664062pt;}
.h4_c00191{height:93.191046pt;}
.h3_c00191{height:246.015625pt;}
.h0_c00191{height:884.666667pt;}
.w2_c00191{width:93.222667pt;}
.w0_c00191{width:593.266667pt;}
.w1_c00191{width:593.333333pt;}
.x0_c00191{left:0.000000pt;}
.x1_c00191{left:109.466667pt;}
.x5_c00191{left:110.666667pt;}
.x3_c00191{left:112.000000pt;}
.x7_c00191{left:113.066667pt;}
.x8_c00191{left:114.266667pt;}
.x9_c00191{left:115.600000pt;}
.xa_c00191{left:117.333333pt;}
.x6_c00191{left:133.200000pt;}
.x4_c00191{left:145.466667pt;}
.x2_c00191{left:190.800000pt;}
.xc_c00191{left:253.801554pt;}
.xb_c00191{left:490.266667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e940d0afc871293fad7eefd6.woff2')format("woff");}.ff1_c00192{font-family:ff1_c00192;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00192;src:url('chunks/assets/font_aa882150229e156588ae6f69.woff2')format("woff");}.ff2_c00192{font-family:ff2_c00192;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00192;src:url('chunks/assets/font_bdd74cc8354f687691503399.woff2')format("woff");}.ff3_c00192{font-family:ff3_c00192;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00192;src:url('chunks/assets/font_c84cbed54f9f3e61acade506.woff2')format("woff");}.ff4_c00192{font-family:ff4_c00192;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00192;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c00192{font-family:ff5_c00192;line-height:1.219238;font-style: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;}
.ls0_c00192{letter-spacing:0.000000px;}
.ls1_c00192{letter-spacing:3.000000px;}
.sc__c00192{text-shadow:none;}
.sc0_c00192{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00192{-webkit-text-stroke:0px transparent;}
.sc0_c00192{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00192{word-spacing:-31.812000px;}
.ws1_c00192{word-spacing:-17.352000px;}
.ws2_c00192{word-spacing:0.000000px;}
._0_c00192{margin-left:-26.928000px;}
._8_c00192{margin-left:-12.870000px;}
._15_c00192{margin-left:-10.755000px;}
._16_c00192{margin-left:-7.488000px;}
._a_c00192{margin-left:-6.336000px;}
._d_c00192{margin-left:-4.761000px;}
._9_c00192{margin-left:-3.366000px;}
._7_c00192{margin-left:-1.386000px;}
._6_c00192{width:1.089000px;}
._c_c00192{width:2.952000px;}
._2_c00192{width:4.257000px;}
._1_c00192{width:5.388000px;}
._4_c00192{width:7.326000px;}
._5_c00192{width:9.108000px;}
._e_c00192{width:10.539000px;}
._3_c00192{width:11.583000px;}
._17_c00192{width:13.062000px;}
._13_c00192{width:14.133000px;}
._12_c00192{width:16.317000px;}
._f_c00192{width:17.622000px;}
._10_c00192{width:23.466000px;}
._11_c00192{width:25.875000px;}
._14_c00192{width:37.449000px;}
._b_c00192{width:67.221000px;}
._18_c00192{width:116.838000px;}
.fc2_c00192{color:transparent;}
.fc1_c00192{color:rgb(128,128,128);}
.fc0_c00192{color:rgb(0,0,0);}
.fs7_c00192{font-size:48.000000px;}
.fs6_c00192{font-size:51.000000px;}
.fs4_c00192{font-size:54.000000px;}
.fs3_c00192{font-size:57.000000px;}
.fs5_c00192{font-size:72.000000px;}
.fs2_c00192{font-size:81.000000px;}
.fs1_c00192{font-size:99.000000px;}
.fs0_c00192{font-size:132.000000px;}
.y0_c00192{bottom:0.000000px;}
.y26_c00192{bottom:3.105000px;}
.y25_c00192{bottom:7.228363px;}
.y24_c00192{bottom:65.100000px;}
.y23_c00192{bottom:89.850000px;}
.y22_c00192{bottom:116.100000px;}
.y21_c00192{bottom:140.400000px;}
.y20_c00192{bottom:165.000000px;}
.y1f_c00192{bottom:189.000000px;}
.y1e_c00192{bottom:213.300000px;}
.y1d_c00192{bottom:237.000000px;}
.y1c_c00192{bottom:261.600000px;}
.y1b_c00192{bottom:285.900000px;}
.y1a_c00192{bottom:309.600000px;}
.y19_c00192{bottom:333.750000px;}
.y18_c00192{bottom:357.150000px;}
.y17_c00192{bottom:381.150000px;}
.y16_c00192{bottom:405.300000px;}
.y15_c00192{bottom:429.000000px;}
.y14_c00192{bottom:453.000000px;}
.y13_c00192{bottom:477.300000px;}
.y12_c00192{bottom:501.300000px;}
.y11_c00192{bottom:525.900000px;}
.y10_c00192{bottom:548.550000px;}
.yf_c00192{bottom:572.700000px;}
.ye_c00192{bottom:595.650000px;}
.yd_c00192{bottom:619.050000px;}
.yc_c00192{bottom:642.900000px;}
.yb_c00192{bottom:666.300000px;}
.ya_c00192{bottom:690.300000px;}
.y9_c00192{bottom:714.150000px;}
.y8_c00192{bottom:738.750000px;}
.y7_c00192{bottom:762.150000px;}
.y6_c00192{bottom:786.300000px;}
.y5_c00192{bottom:810.000000px;}
.y4_c00192{bottom:834.300000px;}
.y3_c00192{bottom:858.300000px;}
.y2_c00192{bottom:882.600000px;}
.y1_c00192{bottom:917.250000px;}
.h6_c00192{height:13.200074px;}
.h7_c00192{height:43.804688px;}
.h5_c00192{height:51.398438px;}
.h3_c00192{height:79.497070px;}
.h4_c00192{height:84.269531px;}
.h2_c00192{height:167.126953px;}
.h0_c00192{height:980.100000px;}
.h1_c00192{height:980.250000px;}
.w2_c00192{width:104.875500px;}
.w0_c00192{width:665.850000px;}
.w1_c00192{width:666.000000px;}
.x0_c00192{left:0.000000px;}
.x3_c00192{left:62.100000px;}
.x2_c00192{left:63.450000px;}
.x4_c00192{left:64.800000px;}
.x6_c00192{left:66.150000px;}
.x5_c00192{left:90.750000px;}
.x1_c00192{left:116.400000px;}
.x8_c00192{left:284.739258px;}
.x7_c00192{left:416.700000px;}
@media print{
.v0_c00192{vertical-align:0.000000pt;}
.ls0_c00192{letter-spacing:0.000000pt;}
.ls1_c00192{letter-spacing:2.666667pt;}
.ws0_c00192{word-spacing:-28.277333pt;}
.ws1_c00192{word-spacing:-15.424000pt;}
.ws2_c00192{word-spacing:0.000000pt;}
._0_c00192{margin-left:-23.936000pt;}
._8_c00192{margin-left:-11.440000pt;}
._15_c00192{margin-left:-9.560000pt;}
._16_c00192{margin-left:-6.656000pt;}
._a_c00192{margin-left:-5.632000pt;}
._d_c00192{margin-left:-4.232000pt;}
._9_c00192{margin-left:-2.992000pt;}
._7_c00192{margin-left:-1.232000pt;}
._6_c00192{width:0.968000pt;}
._c_c00192{width:2.624000pt;}
._2_c00192{width:3.784000pt;}
._1_c00192{width:4.789333pt;}
._4_c00192{width:6.512000pt;}
._5_c00192{width:8.096000pt;}
._e_c00192{width:9.368000pt;}
._3_c00192{width:10.296000pt;}
._17_c00192{width:11.610667pt;}
._13_c00192{width:12.562667pt;}
._12_c00192{width:14.504000pt;}
._f_c00192{width:15.664000pt;}
._10_c00192{width:20.858667pt;}
._11_c00192{width:23.000000pt;}
._14_c00192{width:33.288000pt;}
._b_c00192{width:59.752000pt;}
._18_c00192{width:103.856000pt;}
.fs7_c00192{font-size:42.666667pt;}
.fs6_c00192{font-size:45.333333pt;}
.fs4_c00192{font-size:48.000000pt;}
.fs3_c00192{font-size:50.666667pt;}
.fs5_c00192{font-size:64.000000pt;}
.fs2_c00192{font-size:72.000000pt;}
.fs1_c00192{font-size:88.000000pt;}
.fs0_c00192{font-size:117.333333pt;}
.y0_c00192{bottom:0.000000pt;}
.y26_c00192{bottom:2.760000pt;}
.y25_c00192{bottom:6.425212pt;}
.y24_c00192{bottom:57.866667pt;}
.y23_c00192{bottom:79.866667pt;}
.y22_c00192{bottom:103.200000pt;}
.y21_c00192{bottom:124.800000pt;}
.y20_c00192{bottom:146.666667pt;}
.y1f_c00192{bottom:168.000000pt;}
.y1e_c00192{bottom:189.600000pt;}
.y1d_c00192{bottom:210.666667pt;}
.y1c_c00192{bottom:232.533333pt;}
.y1b_c00192{bottom:254.133333pt;}
.y1a_c00192{bottom:275.200000pt;}
.y19_c00192{bottom:296.666667pt;}
.y18_c00192{bottom:317.466667pt;}
.y17_c00192{bottom:338.800000pt;}
.y16_c00192{bottom:360.266667pt;}
.y15_c00192{bottom:381.333333pt;}
.y14_c00192{bottom:402.666667pt;}
.y13_c00192{bottom:424.266667pt;}
.y12_c00192{bottom:445.600000pt;}
.y11_c00192{bottom:467.466667pt;}
.y10_c00192{bottom:487.600000pt;}
.yf_c00192{bottom:509.066667pt;}
.ye_c00192{bottom:529.466667pt;}
.yd_c00192{bottom:550.266667pt;}
.yc_c00192{bottom:571.466667pt;}
.yb_c00192{bottom:592.266667pt;}
.ya_c00192{bottom:613.600000pt;}
.y9_c00192{bottom:634.800000pt;}
.y8_c00192{bottom:656.666667pt;}
.y7_c00192{bottom:677.466667pt;}
.y6_c00192{bottom:698.933333pt;}
.y5_c00192{bottom:720.000000pt;}
.y4_c00192{bottom:741.600000pt;}
.y3_c00192{bottom:762.933333pt;}
.y2_c00192{bottom:784.533333pt;}
.y1_c00192{bottom:815.333333pt;}
.h6_c00192{height:11.733399pt;}
.h7_c00192{height:38.937500pt;}
.h5_c00192{height:45.687500pt;}
.h3_c00192{height:70.664062pt;}
.h4_c00192{height:74.906250pt;}
.h2_c00192{height:148.557292pt;}
.h0_c00192{height:871.200000pt;}
.h1_c00192{height:871.333333pt;}
.w2_c00192{width:93.222667pt;}
.w0_c00192{width:591.866667pt;}
.w1_c00192{width:592.000000pt;}
.x0_c00192{left:0.000000pt;}
.x3_c00192{left:55.200000pt;}
.x2_c00192{left:56.400000pt;}
.x4_c00192{left:57.600000pt;}
.x6_c00192{left:58.800000pt;}
.x5_c00192{left:80.666667pt;}
.x1_c00192{left:103.466667pt;}
.x8_c00192{left:253.101563pt;}
.x7_c00192{left:370.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_fed54f6e0bddc77164fcbd39.woff2')format("woff");}.ff1_c00193{font-family:ff1_c00193;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00193;src:url('chunks/assets/font_69f23525e95cc2be9798c493.woff2')format("woff");}.ff2_c00193{font-family:ff2_c00193;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00193;src:url('chunks/assets/font_4ba5163c882f39e6182f81da.woff2')format("woff");}.ff3_c00193{font-family:ff3_c00193;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00193;src:url('chunks/assets/font_94c1a7ebb6b6ac8886d498f7.woff2')format("woff");}.ff4_c00193{font-family:ff4_c00193;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00193;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c00193{font-family:ff5_c00193;line-height:1.219238;font-style: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;}
.ls1_c00193{letter-spacing:-9.000000px;}
.ls0_c00193{letter-spacing:0.000000px;}
.ls2_c00193{letter-spacing:6.000000px;}
.sc__c00193{text-shadow:none;}
.sc0_c00193{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00193{-webkit-text-stroke:0px transparent;}
.sc0_c00193{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00193{word-spacing:-59.184000px;}
.ws3_c00193{word-spacing:-54.372000px;}
.ws2_c00193{word-spacing:-47.100000px;}
.ws1_c00193{word-spacing:-20.250000px;}
.ws4_c00193{word-spacing:0.000000px;}
._25_c00193{margin-left:-33.570000px;}
._24_c00193{margin-left:-30.906000px;}
._19_c00193{margin-left:-29.241000px;}
._21_c00193{margin-left:-27.324000px;}
._23_c00193{margin-left:-24.573000px;}
._22_c00193{margin-left:-20.046000px;}
._20_c00193{margin-left:-14.688000px;}
._26_c00193{margin-left:-13.158000px;}
._14_c00193{margin-left:-11.016000px;}
._11_c00193{margin-left:-9.774000px;}
._15_c00193{margin-left:-8.211000px;}
._f_c00193{margin-left:-6.768000px;}
._1d_c00193{margin-left:-5.742000px;}
._10_c00193{margin-left:-4.464000px;}
._1_c00193{margin-left:-3.321000px;}
._4_c00193{margin-left:-1.701000px;}
._8_c00193{width:1.215000px;}
._6_c00193{width:2.430000px;}
._0_c00193{width:3.564000px;}
._3_c00193{width:4.941000px;}
._2_c00193{width:5.994000px;}
._5_c00193{width:7.614000px;}
._13_c00193{width:8.829000px;}
._9_c00193{width:9.882000px;}
._7_c00193{width:11.097000px;}
._1b_c00193{width:12.150000px;}
._b_c00193{width:13.203000px;}
._1c_c00193{width:14.337000px;}
._a_c00193{width:15.714000px;}
._c_c00193{width:17.577000px;}
._d_c00193{width:18.954000px;}
._18_c00193{width:22.113000px;}
._1f_c00193{width:25.029000px;}
._1a_c00193{width:26.325000px;}
._17_c00193{width:28.998000px;}
._e_c00193{width:34.425000px;}
._12_c00193{width:56.637000px;}
._16_c00193{width:223.272000px;}
._1e_c00193{width:249.276000px;}
.fc2_c00193{color:transparent;}
.fc1_c00193{color:rgb(128,128,128);}
.fc0_c00193{color:rgb(0,0,0);}
.fs4_c00193{font-size:48.000000px;}
.fs1_c00193{font-size:72.000000px;}
.fs0_c00193{font-size:81.000000px;}
.fs3_c00193{font-size:87.000000px;}
.fs2_c00193{font-size:102.000000px;}
.y0_c00193{bottom:0.000000px;}
.y25_c00193{bottom:3.105000px;}
.y24_c00193{bottom:7.228357px;}
.y23_c00193{bottom:72.330000px;}
.y22_c00193{bottom:97.830000px;}
.y21_c00193{bottom:123.180000px;}
.y20_c00193{bottom:146.580000px;}
.y1f_c00193{bottom:170.880000px;}
.y1e_c00193{bottom:195.030000px;}
.y1d_c00193{bottom:219.480000px;}
.y1c_c00193{bottom:243.330000px;}
.y1b_c00193{bottom:267.330000px;}
.y1a_c00193{bottom:291.630000px;}
.y19_c00193{bottom:315.630000px;}
.y18_c00193{bottom:339.480000px;}
.y17_c00193{bottom:363.480000px;}
.y16_c00193{bottom:387.480000px;}
.y15_c00193{bottom:411.780000px;}
.y14_c00193{bottom:435.480000px;}
.y13_c00193{bottom:458.730000px;}
.y12_c00193{bottom:483.930000px;}
.y11_c00193{bottom:507.930000px;}
.y10_c00193{bottom:531.180000px;}
.yf_c00193{bottom:555.180000px;}
.ye_c00193{bottom:578.880000px;}
.yd_c00193{bottom:603.180000px;}
.yc_c00193{bottom:627.180000px;}
.yb_c00193{bottom:651.330000px;}
.ya_c00193{bottom:675.030000px;}
.y9_c00193{bottom:699.330000px;}
.y8_c00193{bottom:723.030000px;}
.y7_c00193{bottom:747.180000px;}
.y6_c00193{bottom:770.880000px;}
.y5_c00193{bottom:794.580000px;}
.y4_c00193{bottom:817.830000px;}
.y3_c00193{bottom:842.430000px;}
.y2_c00193{bottom:866.430000px;}
.y1_c00193{bottom:890.430000px;}
.h5_c00193{height:13.200074px;}
.h6_c00193{height:43.804688px;}
.h1_c00193{height:79.497070px;}
.h2_c00193{height:84.269531px;}
.h4_c00193{height:87.679688px;}
.h3_c00193{height:104.839927px;}
.h0_c00193{height:995.250000px;}
.w2_c00193{width:104.875500px;}
.w0_c00193{width:667.425000px;}
.w1_c00193{width:667.500000px;}
.x0_c00193{left:0.000000px;}
.xa_c00193{left:42.450000px;}
.x4_c00193{left:49.350000px;}
.x5_c00193{left:50.700000px;}
.x12_c00193{left:129.900000px;}
.x11_c00193{left:130.950000px;}
.x10_c00193{left:132.000000px;}
.xf_c00193{left:133.200000px;}
.xe_c00193{left:134.250000px;}
.xd_c00193{left:135.450000px;}
.xc_c00193{left:136.650000px;}
.xb_c00193{left:139.050000px;}
.x9_c00193{left:140.700000px;}
.x7_c00193{left:141.750000px;}
.x6_c00193{left:143.550000px;}
.x1_c00193{left:144.750000px;}
.x2_c00193{left:150.600000px;}
.x3_c00193{left:152.250000px;}
.x8_c00193{left:166.650000px;}
.x14_c00193{left:285.526749px;}
.x13_c00193{left:540.600000px;}
@media print{
.v0_c00193{vertical-align:0.000000pt;}
.ls1_c00193{letter-spacing:-8.000000pt;}
.ls0_c00193{letter-spacing:0.000000pt;}
.ls2_c00193{letter-spacing:5.333333pt;}
.ws0_c00193{word-spacing:-52.608000pt;}
.ws3_c00193{word-spacing:-48.330667pt;}
.ws2_c00193{word-spacing:-41.866667pt;}
.ws1_c00193{word-spacing:-18.000000pt;}
.ws4_c00193{word-spacing:0.000000pt;}
._25_c00193{margin-left:-29.840000pt;}
._24_c00193{margin-left:-27.472000pt;}
._19_c00193{margin-left:-25.992000pt;}
._21_c00193{margin-left:-24.288000pt;}
._23_c00193{margin-left:-21.842667pt;}
._22_c00193{margin-left:-17.818667pt;}
._20_c00193{margin-left:-13.056000pt;}
._26_c00193{margin-left:-11.696000pt;}
._14_c00193{margin-left:-9.792000pt;}
._11_c00193{margin-left:-8.688000pt;}
._15_c00193{margin-left:-7.298667pt;}
._f_c00193{margin-left:-6.016000pt;}
._1d_c00193{margin-left:-5.104000pt;}
._10_c00193{margin-left:-3.968000pt;}
._1_c00193{margin-left:-2.952000pt;}
._4_c00193{margin-left:-1.512000pt;}
._8_c00193{width:1.080000pt;}
._6_c00193{width:2.160000pt;}
._0_c00193{width:3.168000pt;}
._3_c00193{width:4.392000pt;}
._2_c00193{width:5.328000pt;}
._5_c00193{width:6.768000pt;}
._13_c00193{width:7.848000pt;}
._9_c00193{width:8.784000pt;}
._7_c00193{width:9.864000pt;}
._1b_c00193{width:10.800000pt;}
._b_c00193{width:11.736000pt;}
._1c_c00193{width:12.744000pt;}
._a_c00193{width:13.968000pt;}
._c_c00193{width:15.624000pt;}
._d_c00193{width:16.848000pt;}
._18_c00193{width:19.656000pt;}
._1f_c00193{width:22.248000pt;}
._1a_c00193{width:23.400000pt;}
._17_c00193{width:25.776000pt;}
._e_c00193{width:30.600000pt;}
._12_c00193{width:50.344000pt;}
._16_c00193{width:198.464000pt;}
._1e_c00193{width:221.578667pt;}
.fs4_c00193{font-size:42.666667pt;}
.fs1_c00193{font-size:64.000000pt;}
.fs0_c00193{font-size:72.000000pt;}
.fs3_c00193{font-size:77.333333pt;}
.fs2_c00193{font-size:90.666667pt;}
.y0_c00193{bottom:0.000000pt;}
.y25_c00193{bottom:2.760000pt;}
.y24_c00193{bottom:6.425206pt;}
.y23_c00193{bottom:64.293333pt;}
.y22_c00193{bottom:86.960000pt;}
.y21_c00193{bottom:109.493333pt;}
.y20_c00193{bottom:130.293333pt;}
.y1f_c00193{bottom:151.893333pt;}
.y1e_c00193{bottom:173.360000pt;}
.y1d_c00193{bottom:195.093333pt;}
.y1c_c00193{bottom:216.293333pt;}
.y1b_c00193{bottom:237.626667pt;}
.y1a_c00193{bottom:259.226667pt;}
.y19_c00193{bottom:280.560000pt;}
.y18_c00193{bottom:301.760000pt;}
.y17_c00193{bottom:323.093333pt;}
.y16_c00193{bottom:344.426667pt;}
.y15_c00193{bottom:366.026667pt;}
.y14_c00193{bottom:387.093333pt;}
.y13_c00193{bottom:407.760000pt;}
.y12_c00193{bottom:430.160000pt;}
.y11_c00193{bottom:451.493333pt;}
.y10_c00193{bottom:472.160000pt;}
.yf_c00193{bottom:493.493333pt;}
.ye_c00193{bottom:514.560000pt;}
.yd_c00193{bottom:536.160000pt;}
.yc_c00193{bottom:557.493333pt;}
.yb_c00193{bottom:578.960000pt;}
.ya_c00193{bottom:600.026667pt;}
.y9_c00193{bottom:621.626667pt;}
.y8_c00193{bottom:642.693333pt;}
.y7_c00193{bottom:664.160000pt;}
.y6_c00193{bottom:685.226667pt;}
.y5_c00193{bottom:706.293333pt;}
.y4_c00193{bottom:726.960000pt;}
.y3_c00193{bottom:748.826667pt;}
.y2_c00193{bottom:770.160000pt;}
.y1_c00193{bottom:791.493333pt;}
.h5_c00193{height:11.733399pt;}
.h6_c00193{height:38.937500pt;}
.h1_c00193{height:70.664062pt;}
.h2_c00193{height:74.906250pt;}
.h4_c00193{height:77.937500pt;}
.h3_c00193{height:93.191046pt;}
.h0_c00193{height:884.666667pt;}
.w2_c00193{width:93.222667pt;}
.w0_c00193{width:593.266667pt;}
.w1_c00193{width:593.333333pt;}
.x0_c00193{left:0.000000pt;}
.xa_c00193{left:37.733333pt;}
.x4_c00193{left:43.866667pt;}
.x5_c00193{left:45.066667pt;}
.x12_c00193{left:115.466667pt;}
.x11_c00193{left:116.400000pt;}
.x10_c00193{left:117.333333pt;}
.xf_c00193{left:118.400000pt;}
.xe_c00193{left:119.333333pt;}
.xd_c00193{left:120.400000pt;}
.xc_c00193{left:121.466667pt;}
.xb_c00193{left:123.600000pt;}
.x9_c00193{left:125.066667pt;}
.x7_c00193{left:126.000000pt;}
.x6_c00193{left:127.600000pt;}
.x1_c00193{left:128.666667pt;}
.x2_c00193{left:133.866667pt;}
.x3_c00193{left:135.333333pt;}
.x8_c00193{left:148.133333pt;}
.x14_c00193{left:253.801554pt;}
.x13_c00193{left:480.533333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_051b4a92d9b80c1472f63115.woff2')format("woff");}.ff1_c00194{font-family:ff1_c00194;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00194;src:url('chunks/assets/font_406fd4d579c39a67cd7ace3c.woff2')format("woff");}.ff2_c00194{font-family:ff2_c00194;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00194;src:url('chunks/assets/font_cd7b47386806e9e7c204a28f.woff2')format("woff");}.ff3_c00194{font-family:ff3_c00194;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00194;src:url('chunks/assets/font_a0386954152dc280ac1b16d8.woff2')format("woff");}.ff4_c00194{font-family:ff4_c00194;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00194;src:url('chunks/assets/font_612b570a1404e98601b5aeff.woff2')format("woff");}.ff5_c00194{font-family:ff5_c00194;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00194;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c00194{font-family:ff6_c00194;line-height:1.219238;font-style: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;}
.ls1_c00194{letter-spacing:0.000000px;}
.ls4_c00194{letter-spacing:3.000000px;}
.ls3_c00194{letter-spacing:6.000000px;}
.ls2_c00194{letter-spacing:15.000000px;}
.ls0_c00194{letter-spacing:16.440000px;}
.sc__c00194{text-shadow:none;}
.sc0_c00194{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00194{-webkit-text-stroke:0px transparent;}
.sc0_c00194{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00194{word-spacing:-40.500000px;}
.ws1_c00194{word-spacing:-17.352000px;}
.ws2_c00194{word-spacing:0.000000px;}
._6_c00194{margin-left:-15.912000px;}
._19_c00194{margin-left:-14.496000px;}
._9_c00194{margin-left:-13.050000px;}
._23_c00194{margin-left:-9.231000px;}
._5_c00194{margin-left:-7.710000px;}
._2_c00194{margin-left:-5.712000px;}
._1_c00194{margin-left:-4.590000px;}
._11_c00194{margin-left:-3.135000px;}
._0_c00194{margin-left:-1.434000px;}
._10_c00194{width:1.035000px;}
._4_c00194{width:2.274000px;}
._3_c00194{width:4.050000px;}
._b_c00194{width:5.346000px;}
._f_c00194{width:6.786000px;}
._13_c00194{width:7.833000px;}
._a_c00194{width:8.985000px;}
._14_c00194{width:10.329000px;}
._15_c00194{width:11.529000px;}
._12_c00194{width:12.567000px;}
._e_c00194{width:13.845000px;}
._1b_c00194{width:15.513000px;}
._c_c00194{width:16.686000px;}
._21_c00194{width:18.117000px;}
._1e_c00194{width:19.179000px;}
._1a_c00194{width:21.459000px;}
._1d_c00194{width:22.596000px;}
._24_c00194{width:23.883000px;}
._17_c00194{width:25.245000px;}
._1f_c00194{width:26.781000px;}
._16_c00194{width:28.347000px;}
._d_c00194{width:29.862000px;}
._8_c00194{width:37.323000px;}
._22_c00194{width:40.491000px;}
._25_c00194{width:43.035000px;}
._7_c00194{width:59.616000px;}
._18_c00194{width:220.107000px;}
._20_c00194{width:274.509000px;}
._26_c00194{width:281.121000px;}
._1c_c00194{width:306.300000px;}
.fc2_c00194{color:transparent;}
.fc1_c00194{color:rgb(128,128,128);}
.fc0_c00194{color:rgb(0,0,0);}
.fs9_c00194{font-size:48.000000px;}
.fs5_c00194{font-size:57.000000px;}
.fs4_c00194{font-size:60.000000px;}
.fs6_c00194{font-size:66.000000px;}
.fs3_c00194{font-size:72.000000px;}
.fs7_c00194{font-size:75.000000px;}
.fs8_c00194{font-size:78.000000px;}
.fs2_c00194{font-size:81.000000px;}
.fs1_c00194{font-size:87.000000px;}
.fs0_c00194{font-size:102.000000px;}
.y0_c00194{bottom:0.000000px;}
.y24_c00194{bottom:3.105000px;}
.y23_c00194{bottom:7.228371px;}
.y22_c00194{bottom:74.715000px;}
.y21_c00194{bottom:99.315000px;}
.y20_c00194{bottom:124.515000px;}
.y1f_c00194{bottom:149.265000px;}
.y1e_c00194{bottom:173.565000px;}
.y1d_c00194{bottom:197.865000px;}
.y1c_c00194{bottom:222.165000px;}
.y1b_c00194{bottom:246.015000px;}
.y1a_c00194{bottom:270.765000px;}
.y19_c00194{bottom:342.915000px;}
.y18_c00194{bottom:366.915000px;}
.y17_c00194{bottom:390.915000px;}
.y16_c00194{bottom:414.915000px;}
.y15_c00194{bottom:438.765000px;}
.y14_c00194{bottom:462.315000px;}
.y13_c00194{bottom:486.465000px;}
.y12_c00194{bottom:510.615000px;}
.y11_c00194{bottom:534.315000px;}
.y10_c00194{bottom:558.015000px;}
.yf_c00194{bottom:582.315000px;}
.ye_c00194{bottom:606.165000px;}
.yd_c00194{bottom:629.565000px;}
.yc_c00194{bottom:653.115000px;}
.yb_c00194{bottom:676.665000px;}
.ya_c00194{bottom:700.515000px;}
.y9_c00194{bottom:724.365000px;}
.y8_c00194{bottom:748.215000px;}
.y7_c00194{bottom:769.965000px;}
.y6_c00194{bottom:795.915000px;}
.y5_c00194{bottom:819.765000px;}
.y4_c00194{bottom:844.065000px;}
.y3_c00194{bottom:867.765000px;}
.y2_c00194{bottom:891.765000px;}
.y1_c00194{bottom:927.465000px;}
.ha_c00194{height:13.200074px;}
.hb_c00194{height:43.804688px;}
.h9_c00194{height:57.445312px;}
.h6_c00194{height:64.743164px;}
.h5_c00194{height:66.713379px;}
.h3_c00194{height:79.497070px;}
.h4_c00194{height:84.269531px;}
.h7_c00194{height:91.160156px;}
.h8_c00194{height:98.756836px;}
.h2_c00194{height:100.057617px;}
.h0_c00194{height:989.025000px;}
.h1_c00194{height:989.250000px;}
.w1_c00194{width:104.875500px;}
.w0_c00194{width:672.000000px;}
.x0_c00194{left:0.000000px;}
.x9_c00194{left:59.400000px;}
.x8_c00194{left:61.050000px;}
.x7_c00194{left:62.100000px;}
.x5_c00194{left:63.750000px;}
.x1_c00194{left:65.250000px;}
.x2_c00194{left:66.900000px;}
.x4_c00194{left:68.550000px;}
.x3_c00194{left:92.850000px;}
.x6_c00194{left:122.850000px;}
.xb_c00194{left:287.814240px;}
.xa_c00194{left:364.050000px;}
@media print{
.v0_c00194{vertical-align:0.000000pt;}
.ls1_c00194{letter-spacing:0.000000pt;}
.ls4_c00194{letter-spacing:2.666667pt;}
.ls3_c00194{letter-spacing:5.333333pt;}
.ls2_c00194{letter-spacing:13.333333pt;}
.ls0_c00194{letter-spacing:14.613333pt;}
.ws0_c00194{word-spacing:-36.000000pt;}
.ws1_c00194{word-spacing:-15.424000pt;}
.ws2_c00194{word-spacing:0.000000pt;}
._6_c00194{margin-left:-14.144000pt;}
._19_c00194{margin-left:-12.885333pt;}
._9_c00194{margin-left:-11.600000pt;}
._23_c00194{margin-left:-8.205333pt;}
._5_c00194{margin-left:-6.853333pt;}
._2_c00194{margin-left:-5.077333pt;}
._1_c00194{margin-left:-4.080000pt;}
._11_c00194{margin-left:-2.786667pt;}
._0_c00194{margin-left:-1.274667pt;}
._10_c00194{width:0.920000pt;}
._4_c00194{width:2.021333pt;}
._3_c00194{width:3.600000pt;}
._b_c00194{width:4.752000pt;}
._f_c00194{width:6.032000pt;}
._13_c00194{width:6.962667pt;}
._a_c00194{width:7.986667pt;}
._14_c00194{width:9.181333pt;}
._15_c00194{width:10.248000pt;}
._12_c00194{width:11.170667pt;}
._e_c00194{width:12.306667pt;}
._1b_c00194{width:13.789333pt;}
._c_c00194{width:14.832000pt;}
._21_c00194{width:16.104000pt;}
._1e_c00194{width:17.048000pt;}
._1a_c00194{width:19.074667pt;}
._1d_c00194{width:20.085333pt;}
._24_c00194{width:21.229333pt;}
._17_c00194{width:22.440000pt;}
._1f_c00194{width:23.805333pt;}
._16_c00194{width:25.197333pt;}
._d_c00194{width:26.544000pt;}
._8_c00194{width:33.176000pt;}
._22_c00194{width:35.992000pt;}
._25_c00194{width:38.253333pt;}
._7_c00194{width:52.992000pt;}
._18_c00194{width:195.650667pt;}
._20_c00194{width:244.008000pt;}
._26_c00194{width:249.885333pt;}
._1c_c00194{width:272.266667pt;}
.fs9_c00194{font-size:42.666667pt;}
.fs5_c00194{font-size:50.666667pt;}
.fs4_c00194{font-size:53.333333pt;}
.fs6_c00194{font-size:58.666667pt;}
.fs3_c00194{font-size:64.000000pt;}
.fs7_c00194{font-size:66.666667pt;}
.fs8_c00194{font-size:69.333333pt;}
.fs2_c00194{font-size:72.000000pt;}
.fs1_c00194{font-size:77.333333pt;}
.fs0_c00194{font-size:90.666667pt;}
.y0_c00194{bottom:0.000000pt;}
.y24_c00194{bottom:2.760000pt;}
.y23_c00194{bottom:6.425219pt;}
.y22_c00194{bottom:66.413333pt;}
.y21_c00194{bottom:88.280000pt;}
.y20_c00194{bottom:110.680000pt;}
.y1f_c00194{bottom:132.680000pt;}
.y1e_c00194{bottom:154.280000pt;}
.y1d_c00194{bottom:175.880000pt;}
.y1c_c00194{bottom:197.480000pt;}
.y1b_c00194{bottom:218.680000pt;}
.y1a_c00194{bottom:240.680000pt;}
.y19_c00194{bottom:304.813333pt;}
.y18_c00194{bottom:326.146667pt;}
.y17_c00194{bottom:347.480000pt;}
.y16_c00194{bottom:368.813333pt;}
.y15_c00194{bottom:390.013333pt;}
.y14_c00194{bottom:410.946667pt;}
.y13_c00194{bottom:432.413333pt;}
.y12_c00194{bottom:453.880000pt;}
.y11_c00194{bottom:474.946667pt;}
.y10_c00194{bottom:496.013333pt;}
.yf_c00194{bottom:517.613333pt;}
.ye_c00194{bottom:538.813333pt;}
.yd_c00194{bottom:559.613333pt;}
.yc_c00194{bottom:580.546667pt;}
.yb_c00194{bottom:601.480000pt;}
.ya_c00194{bottom:622.680000pt;}
.y9_c00194{bottom:643.880000pt;}
.y8_c00194{bottom:665.080000pt;}
.y7_c00194{bottom:684.413333pt;}
.y6_c00194{bottom:707.480000pt;}
.y5_c00194{bottom:728.680000pt;}
.y4_c00194{bottom:750.280000pt;}
.y3_c00194{bottom:771.346667pt;}
.y2_c00194{bottom:792.680000pt;}
.y1_c00194{bottom:824.413333pt;}
.ha_c00194{height:11.733399pt;}
.hb_c00194{height:38.937500pt;}
.h9_c00194{height:51.062500pt;}
.h6_c00194{height:57.549479pt;}
.h5_c00194{height:59.300781pt;}
.h3_c00194{height:70.664062pt;}
.h4_c00194{height:74.906250pt;}
.h7_c00194{height:81.031250pt;}
.h8_c00194{height:87.783854pt;}
.h2_c00194{height:88.940104pt;}
.h0_c00194{height:879.133333pt;}
.h1_c00194{height:879.333333pt;}
.w1_c00194{width:93.222667pt;}
.w0_c00194{width:597.333333pt;}
.x0_c00194{left:0.000000pt;}
.x9_c00194{left:52.800000pt;}
.x8_c00194{left:54.266667pt;}
.x7_c00194{left:55.200000pt;}
.x5_c00194{left:56.666667pt;}
.x1_c00194{left:58.000000pt;}
.x2_c00194{left:59.466667pt;}
.x4_c00194{left:60.933333pt;}
.x3_c00194{left:82.533333pt;}
.x6_c00194{left:109.200000pt;}
.xb_c00194{left:255.834880pt;}
.xa_c00194{left:323.600000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_55919b1e93806a9d365c3c7f.woff2')format("woff");}.ff1_c00195{font-family:ff1_c00195;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00195;src:url('chunks/assets/font_50236c5e5593091605fb6887.woff2')format("woff");}.ff2_c00195{font-family:ff2_c00195;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00195;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff3_c00195{font-family:ff3_c00195;line-height:1.219238;font-style: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;}
.ls0_c00195{letter-spacing:0.000000px;}
.sc__c00195{text-shadow:none;}
.sc0_c00195{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00195{-webkit-text-stroke:0px transparent;}
.sc0_c00195{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00195{word-spacing:-59.184000px;}
.ws1_c00195{word-spacing:0.000000px;}
._a_c00195{margin-left:-22.194000px;}
._16_c00195{margin-left:-20.412000px;}
._13_c00195{margin-left:-17.253000px;}
._12_c00195{margin-left:-13.122000px;}
._c_c00195{margin-left:-8.019000px;}
._9_c00195{margin-left:-6.156000px;}
._8_c00195{margin-left:-4.698000px;}
._3_c00195{margin-left:-2.835000px;}
._7_c00195{margin-left:-1.377000px;}
._1_c00195{width:1.863000px;}
._0_c00195{width:3.564000px;}
._2_c00195{width:4.617000px;}
._b_c00195{width:5.670000px;}
._4_c00195{width:6.804000px;}
._6_c00195{width:8.505000px;}
._11_c00195{width:9.720000px;}
._5_c00195{width:10.773000px;}
._e_c00195{width:11.826000px;}
._f_c00195{width:12.879000px;}
._15_c00195{width:14.904000px;}
._14_c00195{width:16.038000px;}
._10_c00195{width:17.658000px;}
._18_c00195{width:21.465000px;}
._19_c00195{width:33.372000px;}
._17_c00195{width:192.459000px;}
._d_c00195{width:350.568000px;}
.fc2_c00195{color:transparent;}
.fc1_c00195{color:rgb(128,128,128);}
.fc0_c00195{color:rgb(0,0,0);}
.fs2_c00195{font-size:48.000000px;}
.fs1_c00195{font-size:72.000000px;}
.fs0_c00195{font-size:81.000000px;}
.y0_c00195{bottom:0.000000px;}
.y23_c00195{bottom:3.105000px;}
.y22_c00195{bottom:7.228357px;}
.y21_c00195{bottom:132.630000px;}
.y20_c00195{bottom:156.030000px;}
.y1f_c00195{bottom:180.930000px;}
.y1e_c00195{bottom:204.930000px;}
.y1d_c00195{bottom:228.930000px;}
.y1c_c00195{bottom:253.830000px;}
.y1b_c00195{bottom:277.830000px;}
.y1a_c00195{bottom:300.330000px;}
.y19_c00195{bottom:326.130000px;}
.y18_c00195{bottom:350.280000px;}
.y17_c00195{bottom:373.230000px;}
.y16_c00195{bottom:398.880000px;}
.y15_c00195{bottom:423.180000px;}
.y14_c00195{bottom:447.480000px;}
.y13_c00195{bottom:471.180000px;}
.y12_c00195{bottom:495.780000px;}
.y11_c00195{bottom:519.480000px;}
.y10_c00195{bottom:543.480000px;}
.yf_c00195{bottom:567.030000px;}
.ye_c00195{bottom:591.030000px;}
.yd_c00195{bottom:615.330000px;}
.yc_c00195{bottom:638.280000px;}
.yb_c00195{bottom:663.480000px;}
.ya_c00195{bottom:687.480000px;}
.y9_c00195{bottom:710.430000px;}
.y8_c00195{bottom:735.180000px;}
.y7_c00195{bottom:759.330000px;}
.y6_c00195{bottom:783.030000px;}
.y5_c00195{bottom:806.730000px;}
.y4_c00195{bottom:830.580000px;}
.y3_c00195{bottom:854.580000px;}
.y2_c00195{bottom:878.580000px;}
.y1_c00195{bottom:902.430000px;}
.h3_c00195{height:13.200074px;}
.h4_c00195{height:43.804688px;}
.h1_c00195{height:79.497070px;}
.h2_c00195{height:84.269531px;}
.h0_c00195{height:995.250000px;}
.w2_c00195{width:104.875500px;}
.w0_c00195{width:667.425000px;}
.w1_c00195{width:667.500000px;}
.x0_c00195{left:0.000000px;}
.x9_c00195{left:37.500000px;}
.x1_c00195{left:119.850000px;}
.x2_c00195{left:121.050000px;}
.x3_c00195{left:123.150000px;}
.x4_c00195{left:124.800000px;}
.x5_c00195{left:125.850000px;}
.x6_c00195{left:126.900000px;}
.x7_c00195{left:128.250000px;}
.x8_c00195{left:129.600000px;}
.xa_c00195{left:131.250000px;}
.xb_c00195{left:132.300000px;}
.xc_c00195{left:285.526749px;}
@media print{
.v0_c00195{vertical-align:0.000000pt;}
.ls0_c00195{letter-spacing:0.000000pt;}
.ws0_c00195{word-spacing:-52.608000pt;}
.ws1_c00195{word-spacing:0.000000pt;}
._a_c00195{margin-left:-19.728000pt;}
._16_c00195{margin-left:-18.144000pt;}
._13_c00195{margin-left:-15.336000pt;}
._12_c00195{margin-left:-11.664000pt;}
._c_c00195{margin-left:-7.128000pt;}
._9_c00195{margin-left:-5.472000pt;}
._8_c00195{margin-left:-4.176000pt;}
._3_c00195{margin-left:-2.520000pt;}
._7_c00195{margin-left:-1.224000pt;}
._1_c00195{width:1.656000pt;}
._0_c00195{width:3.168000pt;}
._2_c00195{width:4.104000pt;}
._b_c00195{width:5.040000pt;}
._4_c00195{width:6.048000pt;}
._6_c00195{width:7.560000pt;}
._11_c00195{width:8.640000pt;}
._5_c00195{width:9.576000pt;}
._e_c00195{width:10.512000pt;}
._f_c00195{width:11.448000pt;}
._15_c00195{width:13.248000pt;}
._14_c00195{width:14.256000pt;}
._10_c00195{width:15.696000pt;}
._18_c00195{width:19.080000pt;}
._19_c00195{width:29.664000pt;}
._17_c00195{width:171.074667pt;}
._d_c00195{width:311.616000pt;}
.fs2_c00195{font-size:42.666667pt;}
.fs1_c00195{font-size:64.000000pt;}
.fs0_c00195{font-size:72.000000pt;}
.y0_c00195{bottom:0.000000pt;}
.y23_c00195{bottom:2.760000pt;}
.y22_c00195{bottom:6.425206pt;}
.y21_c00195{bottom:117.893333pt;}
.y20_c00195{bottom:138.693333pt;}
.y1f_c00195{bottom:160.826667pt;}
.y1e_c00195{bottom:182.160000pt;}
.y1d_c00195{bottom:203.493333pt;}
.y1c_c00195{bottom:225.626667pt;}
.y1b_c00195{bottom:246.960000pt;}
.y1a_c00195{bottom:266.960000pt;}
.y19_c00195{bottom:289.893333pt;}
.y18_c00195{bottom:311.360000pt;}
.y17_c00195{bottom:331.760000pt;}
.y16_c00195{bottom:354.560000pt;}
.y15_c00195{bottom:376.160000pt;}
.y14_c00195{bottom:397.760000pt;}
.y13_c00195{bottom:418.826667pt;}
.y12_c00195{bottom:440.693333pt;}
.y11_c00195{bottom:461.760000pt;}
.y10_c00195{bottom:483.093333pt;}
.yf_c00195{bottom:504.026667pt;}
.ye_c00195{bottom:525.360000pt;}
.yd_c00195{bottom:546.960000pt;}
.yc_c00195{bottom:567.360000pt;}
.yb_c00195{bottom:589.760000pt;}
.ya_c00195{bottom:611.093333pt;}
.y9_c00195{bottom:631.493333pt;}
.y8_c00195{bottom:653.493333pt;}
.y7_c00195{bottom:674.960000pt;}
.y6_c00195{bottom:696.026667pt;}
.y5_c00195{bottom:717.093333pt;}
.y4_c00195{bottom:738.293333pt;}
.y3_c00195{bottom:759.626667pt;}
.y2_c00195{bottom:780.960000pt;}
.y1_c00195{bottom:802.160000pt;}
.h3_c00195{height:11.733399pt;}
.h4_c00195{height:38.937500pt;}
.h1_c00195{height:70.664062pt;}
.h2_c00195{height:74.906250pt;}
.h0_c00195{height:884.666667pt;}
.w2_c00195{width:93.222667pt;}
.w0_c00195{width:593.266667pt;}
.w1_c00195{width:593.333333pt;}
.x0_c00195{left:0.000000pt;}
.x9_c00195{left:33.333333pt;}
.x1_c00195{left:106.533333pt;}
.x2_c00195{left:107.600000pt;}
.x3_c00195{left:109.466667pt;}
.x4_c00195{left:110.933333pt;}
.x5_c00195{left:111.866667pt;}
.x6_c00195{left:112.800000pt;}
.x7_c00195{left:114.000000pt;}
.x8_c00195{left:115.200000pt;}
.xa_c00195{left:116.666667pt;}
.xb_c00195{left:117.600000pt;}
.xc_c00195{left:253.801554pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_83b12e48c990dfaa461cbdda.woff2')format("woff");}.ff1_c00196{font-family:ff1_c00196;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00196;src:url('chunks/assets/font_ce0636f463eafece1743dc12.woff2')format("woff");}.ff2_c00196{font-family:ff2_c00196;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00196;src:url('chunks/assets/font_398d5dc19a54c534b227a7ef.woff2')format("woff");}.ff3_c00196{font-family:ff3_c00196;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00196;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff4_c00196{font-family:ff4_c00196;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00196;src:url('chunks/assets/font_49c7ffa989f0fb4245d51a3e.woff2')format("woff");}.ff5_c00196{font-family:ff5_c00196;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00196;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c00196{font-family:ff6_c00196;line-height:1.219238;font-style: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;}
.ls1_c00196{letter-spacing:-6.000000px;}
.ls0_c00196{letter-spacing:0.000000px;}
.sc__c00196{text-shadow:none;}
.sc0_c00196{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00196{-webkit-text-stroke:0px transparent;}
.sc0_c00196{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00196{word-spacing:-17.352000px;}
.ws2_c00196{word-spacing:-10.500000px;}
.ws3_c00196{word-spacing:0.000000px;}
.ws1_c00196{word-spacing:5.841000px;}
._1e_c00196{margin-left:-21.306000px;}
._1f_c00196{margin-left:-18.873000px;}
._1c_c00196{margin-left:-12.669000px;}
._21_c00196{margin-left:-11.544000px;}
._12_c00196{margin-left:-10.353000px;}
._20_c00196{margin-left:-9.330000px;}
._10_c00196{margin-left:-7.986000px;}
._13_c00196{margin-left:-6.804000px;}
._2_c00196{margin-left:-5.565000px;}
._18_c00196{margin-left:-4.422000px;}
._6_c00196{margin-left:-3.360000px;}
._7_c00196{margin-left:-2.310000px;}
._e_c00196{margin-left:-1.092000px;}
._3_c00196{width:1.155000px;}
._4_c00196{width:2.415000px;}
._5_c00196{width:3.465000px;}
._9_c00196{width:4.641000px;}
._17_c00196{width:5.712000px;}
._11_c00196{width:6.879000px;}
._d_c00196{width:7.992000px;}
._1_c00196{width:9.135000px;}
._b_c00196{width:10.656000px;}
._19_c00196{width:12.330000px;}
._16_c00196{width:13.722000px;}
._8_c00196{width:14.754000px;}
._0_c00196{width:16.065000px;}
._23_c00196{width:17.667000px;}
._1a_c00196{width:21.225000px;}
._c_c00196{width:22.902000px;}
._a_c00196{width:26.169000px;}
._24_c00196{width:33.561000px;}
._f_c00196{width:98.796000px;}
._22_c00196{width:111.639000px;}
._15_c00196{width:133.065000px;}
._1d_c00196{width:166.392000px;}
._14_c00196{width:174.432000px;}
._1b_c00196{width:218.781000px;}
._25_c00196{width:309.948000px;}
.fc2_c00196{color:transparent;}
.fc1_c00196{color:rgb(128,128,128);}
.fc0_c00196{color:rgb(0,0,0);}
.fs6_c00196{font-size:48.000000px;}
.fs4_c00196{font-size:51.000000px;}
.fs5_c00196{font-size:66.000000px;}
.fs2_c00196{font-size:72.000000px;}
.fs3_c00196{font-size:81.000000px;}
.fs1_c00196{font-size:93.000000px;}
.fs0_c00196{font-size:105.000000px;}
.y0_c00196{bottom:0.000000px;}
.y24_c00196{bottom:3.105000px;}
.y23_c00196{bottom:7.228355px;}
.y22_c00196{bottom:70.485000px;}
.y21_c00196{bottom:95.535000px;}
.y20_c00196{bottom:121.035000px;}
.y1f_c00196{bottom:145.035000px;}
.y1e_c00196{bottom:169.635000px;}
.y1d_c00196{bottom:193.935000px;}
.y1c_c00196{bottom:217.935000px;}
.y1b_c00196{bottom:242.235000px;}
.y1a_c00196{bottom:266.535000px;}
.y19_c00196{bottom:290.535000px;}
.y18_c00196{bottom:314.535000px;}
.y17_c00196{bottom:338.535000px;}
.y16_c00196{bottom:362.085000px;}
.y15_c00196{bottom:385.785000px;}
.y14_c00196{bottom:409.935000px;}
.y13_c00196{bottom:433.635000px;}
.y12_c00196{bottom:457.935000px;}
.y11_c00196{bottom:481.185000px;}
.y10_c00196{bottom:505.185000px;}
.yf_c00196{bottom:528.885000px;}
.ye_c00196{bottom:553.035000px;}
.yd_c00196{bottom:576.435000px;}
.yc_c00196{bottom:600.735000px;}
.yb_c00196{bottom:624.735000px;}
.ya_c00196{bottom:648.585000px;}
.y9_c00196{bottom:672.885000px;}
.y8_c00196{bottom:697.485000px;}
.y7_c00196{bottom:720.585000px;}
.y6_c00196{bottom:771.885000px;}
.y5_c00196{bottom:801.435000px;}
.y4_c00196{bottom:830.535000px;}
.y3_c00196{bottom:859.935000px;}
.y2_c00196{bottom:888.285000px;}
.y1_c00196{bottom:924.285000px;}
.h6_c00196{height:13.200074px;}
.h7_c00196{height:43.804688px;}
.h5_c00196{height:79.497070px;}
.h4_c00196{height:84.269531px;}
.h3_c00196{height:91.160156px;}
.h2_c00196{height:103.000488px;}
.h0_c00196{height:977.925000px;}
.h1_c00196{height:978.000000px;}
.w2_c00196{width:104.875500px;}
.w0_c00196{width:664.200000px;}
.w1_c00196{width:664.500000px;}
.x0_c00196{left:0.000000px;}
.x1_c00196{left:69.150000px;}
.x8_c00196{left:73.350000px;}
.x9_c00196{left:74.550000px;}
.xa_c00196{left:76.200000px;}
.xb_c00196{left:77.250000px;}
.x2_c00196{left:96.300000px;}
.x3_c00196{left:147.150000px;}
.x4_c00196{left:196.200000px;}
.x6_c00196{left:206.250000px;}
.x7_c00196{left:207.900000px;}
.x5_c00196{left:265.650000px;}
.xd_c00196{left:283.914230px;}
.xc_c00196{left:406.650000px;}
@media print{
.v0_c00196{vertical-align:0.000000pt;}
.ls1_c00196{letter-spacing:-5.333333pt;}
.ls0_c00196{letter-spacing:0.000000pt;}
.ws0_c00196{word-spacing:-15.424000pt;}
.ws2_c00196{word-spacing:-9.333333pt;}
.ws3_c00196{word-spacing:0.000000pt;}
.ws1_c00196{word-spacing:5.192000pt;}
._1e_c00196{margin-left:-18.938667pt;}
._1f_c00196{margin-left:-16.776000pt;}
._1c_c00196{margin-left:-11.261333pt;}
._21_c00196{margin-left:-10.261333pt;}
._12_c00196{margin-left:-9.202667pt;}
._20_c00196{margin-left:-8.293333pt;}
._10_c00196{margin-left:-7.098667pt;}
._13_c00196{margin-left:-6.048000pt;}
._2_c00196{margin-left:-4.946667pt;}
._18_c00196{margin-left:-3.930667pt;}
._6_c00196{margin-left:-2.986667pt;}
._7_c00196{margin-left:-2.053333pt;}
._e_c00196{margin-left:-0.970667pt;}
._3_c00196{width:1.026667pt;}
._4_c00196{width:2.146667pt;}
._5_c00196{width:3.080000pt;}
._9_c00196{width:4.125333pt;}
._17_c00196{width:5.077333pt;}
._11_c00196{width:6.114667pt;}
._d_c00196{width:7.104000pt;}
._1_c00196{width:8.120000pt;}
._b_c00196{width:9.472000pt;}
._19_c00196{width:10.960000pt;}
._16_c00196{width:12.197333pt;}
._8_c00196{width:13.114667pt;}
._0_c00196{width:14.280000pt;}
._23_c00196{width:15.704000pt;}
._1a_c00196{width:18.866667pt;}
._c_c00196{width:20.357333pt;}
._a_c00196{width:23.261333pt;}
._24_c00196{width:29.832000pt;}
._f_c00196{width:87.818667pt;}
._22_c00196{width:99.234667pt;}
._15_c00196{width:118.280000pt;}
._1d_c00196{width:147.904000pt;}
._14_c00196{width:155.050667pt;}
._1b_c00196{width:194.472000pt;}
._25_c00196{width:275.509333pt;}
.fs6_c00196{font-size:42.666667pt;}
.fs4_c00196{font-size:45.333333pt;}
.fs5_c00196{font-size:58.666667pt;}
.fs2_c00196{font-size:64.000000pt;}
.fs3_c00196{font-size:72.000000pt;}
.fs1_c00196{font-size:82.666667pt;}
.fs0_c00196{font-size:93.333333pt;}
.y0_c00196{bottom:0.000000pt;}
.y24_c00196{bottom:2.760000pt;}
.y23_c00196{bottom:6.425204pt;}
.y22_c00196{bottom:62.653333pt;}
.y21_c00196{bottom:84.920000pt;}
.y20_c00196{bottom:107.586667pt;}
.y1f_c00196{bottom:128.920000pt;}
.y1e_c00196{bottom:150.786667pt;}
.y1d_c00196{bottom:172.386667pt;}
.y1c_c00196{bottom:193.720000pt;}
.y1b_c00196{bottom:215.320000pt;}
.y1a_c00196{bottom:236.920000pt;}
.y19_c00196{bottom:258.253333pt;}
.y18_c00196{bottom:279.586667pt;}
.y17_c00196{bottom:300.920000pt;}
.y16_c00196{bottom:321.853333pt;}
.y15_c00196{bottom:342.920000pt;}
.y14_c00196{bottom:364.386667pt;}
.y13_c00196{bottom:385.453333pt;}
.y12_c00196{bottom:407.053333pt;}
.y11_c00196{bottom:427.720000pt;}
.y10_c00196{bottom:449.053333pt;}
.yf_c00196{bottom:470.120000pt;}
.ye_c00196{bottom:491.586667pt;}
.yd_c00196{bottom:512.386667pt;}
.yc_c00196{bottom:533.986667pt;}
.yb_c00196{bottom:555.320000pt;}
.ya_c00196{bottom:576.520000pt;}
.y9_c00196{bottom:598.120000pt;}
.y8_c00196{bottom:619.986667pt;}
.y7_c00196{bottom:640.520000pt;}
.y6_c00196{bottom:686.120000pt;}
.y5_c00196{bottom:712.386667pt;}
.y4_c00196{bottom:738.253333pt;}
.y3_c00196{bottom:764.386667pt;}
.y2_c00196{bottom:789.586667pt;}
.y1_c00196{bottom:821.586667pt;}
.h6_c00196{height:11.733399pt;}
.h7_c00196{height:38.937500pt;}
.h5_c00196{height:70.664062pt;}
.h4_c00196{height:74.906250pt;}
.h3_c00196{height:81.031250pt;}
.h2_c00196{height:91.555990pt;}
.h0_c00196{height:869.266667pt;}
.h1_c00196{height:869.333333pt;}
.w2_c00196{width:93.222667pt;}
.w0_c00196{width:590.400000pt;}
.w1_c00196{width:590.666667pt;}
.x0_c00196{left:0.000000pt;}
.x1_c00196{left:61.466667pt;}
.x8_c00196{left:65.200000pt;}
.x9_c00196{left:66.266667pt;}
.xa_c00196{left:67.733333pt;}
.xb_c00196{left:68.666667pt;}
.x2_c00196{left:85.600000pt;}
.x3_c00196{left:130.800000pt;}
.x4_c00196{left:174.400000pt;}
.x6_c00196{left:183.333333pt;}
.x7_c00196{left:184.800000pt;}
.x5_c00196{left:236.133333pt;}
.xd_c00196{left:252.368205pt;}
.xc_c00196{left:361.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_6c2dfe66be1f0e2eaa7c8d3e.woff2')format("woff");}.ff1_c00197{font-family:ff1_c00197;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00197;src:url('chunks/assets/font_2881d4c5da775838e45c9f0f.woff2')format("woff");}.ff2_c00197{font-family:ff2_c00197;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00197;src:url('chunks/assets/font_a110a730639ed77629c090cd.woff2')format("woff");}.ff3_c00197{font-family:ff3_c00197;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00197;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff4_c00197{font-family:ff4_c00197;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00197{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00197{vertical-align:0.000000px;}
.ls1_c00197{letter-spacing:0.000000px;}
.ls0_c00197{letter-spacing:97.500000px;}
.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;}
}
.ws2_c00197{word-spacing:-20.250000px;}
.ws1_c00197{word-spacing:-13.737000px;}
.ws3_c00197{word-spacing:0.000000px;}
.ws0_c00197{word-spacing:0.741000px;}
._11_c00197{margin-left:-12.756000px;}
._b_c00197{margin-left:-11.421000px;}
._10_c00197{margin-left:-10.155000px;}
._d_c00197{margin-left:-8.262000px;}
._c_c00197{margin-left:-6.237000px;}
._4_c00197{margin-left:-5.022000px;}
._1_c00197{margin-left:-3.159000px;}
._0_c00197{margin-left:-1.134000px;}
._5_c00197{width:1.539000px;}
._6_c00197{width:2.673000px;}
._9_c00197{width:3.969000px;}
._2_c00197{width:5.022000px;}
._3_c00197{width:6.966000px;}
._8_c00197{width:8.991000px;}
._7_c00197{width:10.530000px;}
._f_c00197{width:11.838000px;}
._a_c00197{width:13.527000px;}
._13_c00197{width:19.665000px;}
._e_c00197{width:21.870000px;}
._12_c00197{width:253.926000px;}
.fc2_c00197{color:transparent;}
.fc1_c00197{color:rgb(128,128,128);}
.fc0_c00197{color:rgb(0,0,0);}
.fs3_c00197{font-size:48.000000px;}
.fs1_c00197{font-size:57.000000px;}
.fs2_c00197{font-size:78.000000px;}
.fs0_c00197{font-size:81.000000px;}
.y0_c00197{bottom:0.000000px;}
.y25_c00197{bottom:3.105000px;}
.y24_c00197{bottom:7.228357px;}
.y23_c00197{bottom:87.180000px;}
.y22_c00197{bottom:109.980000px;}
.y21_c00197{bottom:135.030000px;}
.y20_c00197{bottom:159.030000px;}
.y1f_c00197{bottom:183.330000px;}
.y1e_c00197{bottom:207.630000px;}
.y1d_c00197{bottom:231.630000px;}
.y1c_c00197{bottom:256.230000px;}
.y1b_c00197{bottom:280.080000px;}
.y1a_c00197{bottom:304.080000px;}
.y19_c00197{bottom:327.480000px;}
.y18_c00197{bottom:351.330000px;}
.y17_c00197{bottom:376.080000px;}
.y16_c00197{bottom:399.930000px;}
.y15_c00197{bottom:423.630000px;}
.y14_c00197{bottom:447.630000px;}
.y13_c00197{bottom:471.780000px;}
.y12_c00197{bottom:495.780000px;}
.y11_c00197{bottom:519.480000px;}
.y10_c00197{bottom:543.480000px;}
.yf_c00197{bottom:567.780000px;}
.ye_c00197{bottom:591.630000px;}
.yd_c00197{bottom:615.630000px;}
.yc_c00197{bottom:639.630000px;}
.yb_c00197{bottom:663.930000px;}
.ya_c00197{bottom:687.780000px;}
.y9_c00197{bottom:711.480000px;}
.y8_c00197{bottom:735.780000px;}
.y7_c00197{bottom:759.330000px;}
.y6_c00197{bottom:783.330000px;}
.y5_c00197{bottom:807.030000px;}
.y4_c00197{bottom:831.930000px;}
.y3_c00197{bottom:855.330000px;}
.y2_c00197{bottom:878.580000px;}
.y1_c00197{bottom:902.130000px;}
.h4_c00197{height:13.200074px;}
.h5_c00197{height:43.804688px;}
.h3_c00197{height:72.168457px;}
.h1_c00197{height:79.497070px;}
.h2_c00197{height:98.756836px;}
.h0_c00197{height:995.250000px;}
.w2_c00197{width:104.875500px;}
.w0_c00197{width:667.425000px;}
.w1_c00197{width:667.500000px;}
.x0_c00197{left:0.000000px;}
.x7_c00197{left:35.100000px;}
.x9_c00197{left:118.500000px;}
.x8_c00197{left:119.700000px;}
.xa_c00197{left:121.050000px;}
.x6_c00197{left:122.850000px;}
.x5_c00197{left:123.900000px;}
.x4_c00197{left:125.250000px;}
.x3_c00197{left:126.450000px;}
.x2_c00197{left:128.250000px;}
.x1_c00197{left:129.300000px;}
.xc_c00197{left:285.526749px;}
.xb_c00197{left:557.550000px;}
@media print{
.v0_c00197{vertical-align:0.000000pt;}
.ls1_c00197{letter-spacing:0.000000pt;}
.ls0_c00197{letter-spacing:86.666667pt;}
.ws2_c00197{word-spacing:-18.000000pt;}
.ws1_c00197{word-spacing:-12.210667pt;}
.ws3_c00197{word-spacing:0.000000pt;}
.ws0_c00197{word-spacing:0.658667pt;}
._11_c00197{margin-left:-11.338667pt;}
._b_c00197{margin-left:-10.152000pt;}
._10_c00197{margin-left:-9.026667pt;}
._d_c00197{margin-left:-7.344000pt;}
._c_c00197{margin-left:-5.544000pt;}
._4_c00197{margin-left:-4.464000pt;}
._1_c00197{margin-left:-2.808000pt;}
._0_c00197{margin-left:-1.008000pt;}
._5_c00197{width:1.368000pt;}
._6_c00197{width:2.376000pt;}
._9_c00197{width:3.528000pt;}
._2_c00197{width:4.464000pt;}
._3_c00197{width:6.192000pt;}
._8_c00197{width:7.992000pt;}
._7_c00197{width:9.360000pt;}
._f_c00197{width:10.522667pt;}
._a_c00197{width:12.024000pt;}
._13_c00197{width:17.480000pt;}
._e_c00197{width:19.440000pt;}
._12_c00197{width:225.712000pt;}
.fs3_c00197{font-size:42.666667pt;}
.fs1_c00197{font-size:50.666667pt;}
.fs2_c00197{font-size:69.333333pt;}
.fs0_c00197{font-size:72.000000pt;}
.y0_c00197{bottom:0.000000pt;}
.y25_c00197{bottom:2.760000pt;}
.y24_c00197{bottom:6.425206pt;}
.y23_c00197{bottom:77.493333pt;}
.y22_c00197{bottom:97.760000pt;}
.y21_c00197{bottom:120.026667pt;}
.y20_c00197{bottom:141.360000pt;}
.y1f_c00197{bottom:162.960000pt;}
.y1e_c00197{bottom:184.560000pt;}
.y1d_c00197{bottom:205.893333pt;}
.y1c_c00197{bottom:227.760000pt;}
.y1b_c00197{bottom:248.960000pt;}
.y1a_c00197{bottom:270.293333pt;}
.y19_c00197{bottom:291.093333pt;}
.y18_c00197{bottom:312.293333pt;}
.y17_c00197{bottom:334.293333pt;}
.y16_c00197{bottom:355.493333pt;}
.y15_c00197{bottom:376.560000pt;}
.y14_c00197{bottom:397.893333pt;}
.y13_c00197{bottom:419.360000pt;}
.y12_c00197{bottom:440.693333pt;}
.y11_c00197{bottom:461.760000pt;}
.y10_c00197{bottom:483.093333pt;}
.yf_c00197{bottom:504.693333pt;}
.ye_c00197{bottom:525.893333pt;}
.yd_c00197{bottom:547.226667pt;}
.yc_c00197{bottom:568.560000pt;}
.yb_c00197{bottom:590.160000pt;}
.ya_c00197{bottom:611.360000pt;}
.y9_c00197{bottom:632.426667pt;}
.y8_c00197{bottom:654.026667pt;}
.y7_c00197{bottom:674.960000pt;}
.y6_c00197{bottom:696.293333pt;}
.y5_c00197{bottom:717.360000pt;}
.y4_c00197{bottom:739.493333pt;}
.y3_c00197{bottom:760.293333pt;}
.y2_c00197{bottom:780.960000pt;}
.y1_c00197{bottom:801.893333pt;}
.h4_c00197{height:11.733399pt;}
.h5_c00197{height:38.937500pt;}
.h3_c00197{height:64.149740pt;}
.h1_c00197{height:70.664062pt;}
.h2_c00197{height:87.783854pt;}
.h0_c00197{height:884.666667pt;}
.w2_c00197{width:93.222667pt;}
.w0_c00197{width:593.266667pt;}
.w1_c00197{width:593.333333pt;}
.x0_c00197{left:0.000000pt;}
.x7_c00197{left:31.200000pt;}
.x9_c00197{left:105.333333pt;}
.x8_c00197{left:106.400000pt;}
.xa_c00197{left:107.600000pt;}
.x6_c00197{left:109.200000pt;}
.x5_c00197{left:110.133333pt;}
.x4_c00197{left:111.333333pt;}
.x3_c00197{left:112.400000pt;}
.x2_c00197{left:114.000000pt;}
.x1_c00197{left:114.933333pt;}
.xc_c00197{left:253.801554pt;}
.xb_c00197{left:495.600000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_be1fdb92acb0bc813f609476.woff2')format("woff");}.ff1_c00198{font-family:ff1_c00198;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00198;src:url('chunks/assets/font_0602304360ffcd4ee22975bb.woff2')format("woff");}.ff2_c00198{font-family:ff2_c00198;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00198;src:url('chunks/assets/font_83ea9d0cadb79ba60d0072cd.woff2')format("woff");}.ff3_c00198{font-family:ff3_c00198;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00198;src:url('chunks/assets/font_8aad6478aabf933b33a31cb7.woff2')format("woff");}.ff4_c00198{font-family:ff4_c00198;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00198;src:url('chunks/assets/font_a407a8ce3260577fb76fde1f.woff2')format("woff");}.ff5_c00198{font-family:ff5_c00198;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00198;src:url('chunks/assets/font_3335f43cf5c0217bd3bb8db7.woff2')format("woff");}.ff6_c00198{font-family:ff6_c00198;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00198;src:url('chunks/assets/font_6a64d83512413ade907e6b89.woff2')format("woff");}.ff7_c00198{font-family:ff7_c00198;line-height:1.437000;font-style:normal;font-weight: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_c00198;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff8_c00198{font-family:ff8_c00198;line-height:1.219238;font-style: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;}
.v1_c00198{vertical-align:156.000000px;}
.ls0_c00198{letter-spacing:0.000000px;}
.sc__c00198{text-shadow:none;}
.sc0_c00198{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00198{-webkit-text-stroke:0px transparent;}
.sc0_c00198{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00198{word-spacing:-71.250000px;}
.ws3_c00198{word-spacing:-67.686000px;}
.ws0_c00198{word-spacing:-18.750000px;}
.ws2_c00198{word-spacing:-17.352000px;}
.ws4_c00198{word-spacing:0.000000px;}
._b_c00198{margin-left:-30.756000px;}
._21_c00198{margin-left:-19.899000px;}
._22_c00198{margin-left:-17.919000px;}
._23_c00198{margin-left:-16.713000px;}
._c_c00198{margin-left:-15.576000px;}
._1d_c00198{margin-left:-14.274000px;}
._9_c00198{margin-left:-13.266000px;}
._a_c00198{margin-left:-11.463000px;}
._1f_c00198{margin-left:-8.505000px;}
._7_c00198{margin-left:-7.425000px;}
._5_c00198{margin-left:-5.445000px;}
._4_c00198{margin-left:-3.861000px;}
._6_c00198{margin-left:-2.574000px;}
._8_c00198{margin-left:-1.089000px;}
._2_c00198{width:1.089000px;}
._18_c00198{width:2.727000px;}
._3_c00198{width:4.158000px;}
._15_c00198{width:5.727000px;}
._1c_c00198{width:7.224000px;}
._12_c00198{width:8.262000px;}
._17_c00198{width:9.546000px;}
._1_c00198{width:10.791000px;}
._20_c00198{width:11.958000px;}
._19_c00198{width:13.050000px;}
._d_c00198{width:14.061000px;}
._13_c00198{width:15.498000px;}
._e_c00198{width:16.731000px;}
._0_c00198{width:18.018000px;}
._10_c00198{width:19.635000px;}
._11_c00198{width:22.542000px;}
._f_c00198{width:24.990000px;}
._1a_c00198{width:26.676000px;}
._14_c00198{width:28.185000px;}
._16_c00198{width:29.229000px;}
._24_c00198{width:31.116000px;}
._1b_c00198{width:33.084000px;}
._1e_c00198{width:37.452000px;}
._25_c00198{width:298.983000px;}
.fc2_c00198{color:transparent;}
.fc1_c00198{color:rgb(128,128,128);}
.fc0_c00198{color:rgb(0,0,0);}
.fs9_c00198{font-size:48.000000px;}
.fs2_c00198{font-size:51.000000px;}
.fs6_c00198{font-size:69.000000px;}
.fs5_c00198{font-size:72.000000px;}
.fs4_c00198{font-size:75.000000px;}
.fs3_c00198{font-size:81.000000px;}
.fs8_c00198{font-size:87.000000px;}
.fs0_c00198{font-size:99.000000px;}
.fs1_c00198{font-size:132.000000px;}
.fs7_c00198{font-size:285.000000px;}
.y0_c00198{bottom:0.000000px;}
.y26_c00198{bottom:3.105000px;}
.y25_c00198{bottom:7.228371px;}
.y24_c00198{bottom:70.965000px;}
.y23_c00198{bottom:95.265000px;}
.y22_c00198{bottom:119.865000px;}
.y21_c00198{bottom:144.465000px;}
.y20_c00198{bottom:168.465000px;}
.y1f_c00198{bottom:193.065000px;}
.y1e_c00198{bottom:217.665000px;}
.y1d_c00198{bottom:241.065000px;}
.y1c_c00198{bottom:265.665000px;}
.y1b_c00198{bottom:289.965000px;}
.y1a_c00198{bottom:313.965000px;}
.y19_c00198{bottom:337.215000px;}
.y18_c00198{bottom:361.215000px;}
.y17_c00198{bottom:384.765000px;}
.y16_c00198{bottom:408.765000px;}
.y15_c00198{bottom:432.015000px;}
.y14_c00198{bottom:456.015000px;}
.y13_c00198{bottom:479.715000px;}
.y12_c00198{bottom:504.015000px;}
.y11_c00198{bottom:527.565000px;}
.y10_c00198{bottom:551.265000px;}
.yf_c00198{bottom:574.515000px;}
.ye_c00198{bottom:598.815000px;}
.yd_c00198{bottom:622.065000px;}
.yc_c00198{bottom:645.315000px;}
.yb_c00198{bottom:669.315000px;}
.ya_c00198{bottom:693.615000px;}
.y9_c00198{bottom:717.165000px;}
.y7_c00198{bottom:728.115000px;}
.y8_c00198{bottom:741.465000px;}
.y6_c00198{bottom:790.065000px;}
.y5_c00198{bottom:813.165000px;}
.y4_c00198{bottom:834.615000px;}
.y3_c00198{bottom:861.315000px;}
.y2_c00198{bottom:885.915000px;}
.y1_c00198{bottom:919.815000px;}
.hc_c00198{height:13.200074px;}
.hd_c00198{height:43.804688px;}
.h3_c00198{height:51.398438px;}
.h6_c00198{height:72.312000px;}
.h5_c00198{height:73.571777px;}
.h4_c00198{height:79.497070px;}
.ha_c00198{height:84.269531px;}
.hb_c00198{height:87.361816px;}
.h8_c00198{height:91.160156px;}
.h9_c00198{height:91.176000px;}
.h2_c00198{height:167.126953px;}
.h7_c00198{height:279.711914px;}
.h0_c00198{height:989.025000px;}
.h1_c00198{height:989.250000px;}
.w1_c00198{width:104.875500px;}
.w0_c00198{width:672.000000px;}
.x0_c00198{left:0.000000px;}
.x7_c00198{left:67.800000px;}
.x1_c00198{left:68.850000px;}
.x6_c00198{left:69.900000px;}
.x5_c00198{left:107.550000px;}
.x4_c00198{left:108.600000px;}
.x2_c00198{left:110.400000px;}
.x3_c00198{left:223.350000px;}
.x9_c00198{left:287.814240px;}
.x8_c00198{left:372.300000px;}
@media print{
.v0_c00198{vertical-align:0.000000pt;}
.v1_c00198{vertical-align:138.666667pt;}
.ls0_c00198{letter-spacing:0.000000pt;}
.ws1_c00198{word-spacing:-63.333333pt;}
.ws3_c00198{word-spacing:-60.165333pt;}
.ws0_c00198{word-spacing:-16.666667pt;}
.ws2_c00198{word-spacing:-15.424000pt;}
.ws4_c00198{word-spacing:0.000000pt;}
._b_c00198{margin-left:-27.338667pt;}
._21_c00198{margin-left:-17.688000pt;}
._22_c00198{margin-left:-15.928000pt;}
._23_c00198{margin-left:-14.856000pt;}
._c_c00198{margin-left:-13.845333pt;}
._1d_c00198{margin-left:-12.688000pt;}
._9_c00198{margin-left:-11.792000pt;}
._a_c00198{margin-left:-10.189333pt;}
._1f_c00198{margin-left:-7.560000pt;}
._7_c00198{margin-left:-6.600000pt;}
._5_c00198{margin-left:-4.840000pt;}
._4_c00198{margin-left:-3.432000pt;}
._6_c00198{margin-left:-2.288000pt;}
._8_c00198{margin-left:-0.968000pt;}
._2_c00198{width:0.968000pt;}
._18_c00198{width:2.424000pt;}
._3_c00198{width:3.696000pt;}
._15_c00198{width:5.090667pt;}
._1c_c00198{width:6.421333pt;}
._12_c00198{width:7.344000pt;}
._17_c00198{width:8.485333pt;}
._1_c00198{width:9.592000pt;}
._20_c00198{width:10.629333pt;}
._19_c00198{width:11.600000pt;}
._d_c00198{width:12.498667pt;}
._13_c00198{width:13.776000pt;}
._e_c00198{width:14.872000pt;}
._0_c00198{width:16.016000pt;}
._10_c00198{width:17.453333pt;}
._11_c00198{width:20.037333pt;}
._f_c00198{width:22.213333pt;}
._1a_c00198{width:23.712000pt;}
._14_c00198{width:25.053333pt;}
._16_c00198{width:25.981333pt;}
._24_c00198{width:27.658667pt;}
._1b_c00198{width:29.408000pt;}
._1e_c00198{width:33.290667pt;}
._25_c00198{width:265.762667pt;}
.fs9_c00198{font-size:42.666667pt;}
.fs2_c00198{font-size:45.333333pt;}
.fs6_c00198{font-size:61.333333pt;}
.fs5_c00198{font-size:64.000000pt;}
.fs4_c00198{font-size:66.666667pt;}
.fs3_c00198{font-size:72.000000pt;}
.fs8_c00198{font-size:77.333333pt;}
.fs0_c00198{font-size:88.000000pt;}
.fs1_c00198{font-size:117.333333pt;}
.fs7_c00198{font-size:253.333333pt;}
.y0_c00198{bottom:0.000000pt;}
.y26_c00198{bottom:2.760000pt;}
.y25_c00198{bottom:6.425219pt;}
.y24_c00198{bottom:63.080000pt;}
.y23_c00198{bottom:84.680000pt;}
.y22_c00198{bottom:106.546667pt;}
.y21_c00198{bottom:128.413333pt;}
.y20_c00198{bottom:149.746667pt;}
.y1f_c00198{bottom:171.613333pt;}
.y1e_c00198{bottom:193.480000pt;}
.y1d_c00198{bottom:214.280000pt;}
.y1c_c00198{bottom:236.146667pt;}
.y1b_c00198{bottom:257.746667pt;}
.y1a_c00198{bottom:279.080000pt;}
.y19_c00198{bottom:299.746667pt;}
.y18_c00198{bottom:321.080000pt;}
.y17_c00198{bottom:342.013333pt;}
.y16_c00198{bottom:363.346667pt;}
.y15_c00198{bottom:384.013333pt;}
.y14_c00198{bottom:405.346667pt;}
.y13_c00198{bottom:426.413333pt;}
.y12_c00198{bottom:448.013333pt;}
.y11_c00198{bottom:468.946667pt;}
.y10_c00198{bottom:490.013333pt;}
.yf_c00198{bottom:510.680000pt;}
.ye_c00198{bottom:532.280000pt;}
.yd_c00198{bottom:552.946667pt;}
.yc_c00198{bottom:573.613333pt;}
.yb_c00198{bottom:594.946667pt;}
.ya_c00198{bottom:616.546667pt;}
.y9_c00198{bottom:637.480000pt;}
.y7_c00198{bottom:647.213333pt;}
.y8_c00198{bottom:659.080000pt;}
.y6_c00198{bottom:702.280000pt;}
.y5_c00198{bottom:722.813333pt;}
.y4_c00198{bottom:741.880000pt;}
.y3_c00198{bottom:765.613333pt;}
.y2_c00198{bottom:787.480000pt;}
.y1_c00198{bottom:817.613333pt;}
.hc_c00198{height:11.733399pt;}
.hd_c00198{height:38.937500pt;}
.h3_c00198{height:45.687500pt;}
.h6_c00198{height:64.277333pt;}
.h5_c00198{height:65.397135pt;}
.h4_c00198{height:70.664062pt;}
.ha_c00198{height:74.906250pt;}
.hb_c00198{height:77.654948pt;}
.h8_c00198{height:81.031250pt;}
.h9_c00198{height:81.045333pt;}
.h2_c00198{height:148.557292pt;}
.h7_c00198{height:248.632812pt;}
.h0_c00198{height:879.133333pt;}
.h1_c00198{height:879.333333pt;}
.w1_c00198{width:93.222667pt;}
.w0_c00198{width:597.333333pt;}
.x0_c00198{left:0.000000pt;}
.x7_c00198{left:60.266667pt;}
.x1_c00198{left:61.200000pt;}
.x6_c00198{left:62.133333pt;}
.x5_c00198{left:95.600000pt;}
.x4_c00198{left:96.533333pt;}
.x2_c00198{left:98.133333pt;}
.x3_c00198{left:198.533333pt;}
.x9_c00198{left:255.834880pt;}
.x8_c00198{left:330.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e9ae19edea5b9c45b2bf5867.woff2')format("woff");}.ff1_c00199{font-family:ff1_c00199;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00199;src:url('chunks/assets/font_bbfbb18166450870b7a49955.woff2')format("woff");}.ff2_c00199{font-family:ff2_c00199;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00199;src:url('chunks/assets/font_687d533269e179fb8f3c3d32.woff2')format("woff");}.ff3_c00199{font-family:ff3_c00199;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00199;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff4_c00199{font-family:ff4_c00199;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00199;src:url('chunks/assets/font_922ebd18a34921dd518720d2.woff2')format("woff");}.ff5_c00199{font-family:ff5_c00199;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00199;src:url('chunks/assets/font_8edffc5083facb3a334231e1.woff2')format("woff");}.ff6_c00199{font-family:ff6_c00199;line-height:1.311035;font-style:normal;font-weight: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_c00199;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c00199{font-family:ff7_c00199;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00199{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00199{vertical-align:0.000000px;}
.ls2_c00199{letter-spacing:-6.000000px;}
.ls1_c00199{letter-spacing:0.000000px;}
.ls0_c00199{letter-spacing:2.700000px;}
.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;}
}
.ws1_c00199{word-spacing:-27.000000px;}
.ws0_c00199{word-spacing:-17.352000px;}
.ws2_c00199{word-spacing:-11.577000px;}
.ws3_c00199{word-spacing:0.000000px;}
._12_c00199{margin-left:-14.985000px;}
._2_c00199{margin-left:-12.069000px;}
._b_c00199{margin-left:-9.072000px;}
._10_c00199{margin-left:-7.719000px;}
._18_c00199{margin-left:-6.663000px;}
._e_c00199{margin-left:-5.646000px;}
._3_c00199{margin-left:-4.212000px;}
._8_c00199{margin-left:-3.078000px;}
._7_c00199{margin-left:-1.053000px;}
._1_c00199{width:1.539000px;}
._0_c00199{width:2.754000px;}
._5_c00199{width:4.455000px;}
._6_c00199{width:5.670000px;}
._a_c00199{width:6.723000px;}
._d_c00199{width:7.857000px;}
._9_c00199{width:8.991000px;}
._15_c00199{width:10.125000px;}
._f_c00199{width:11.178000px;}
._c_c00199{width:12.555000px;}
._16_c00199{width:14.013000px;}
._11_c00199{width:15.714000px;}
._14_c00199{width:17.067000px;}
._19_c00199{width:19.116000px;}
._17_c00199{width:44.736000px;}
._13_c00199{width:259.929000px;}
._4_c00199{width:673.110000px;}
.fc2_c00199{color:transparent;}
.fc1_c00199{color:rgb(128,128,128);}
.fc0_c00199{color:rgb(0,0,0);}
.fs5_c00199{font-size:48.000000px;}
.fs4_c00199{font-size:51.000000px;}
.fs3_c00199{font-size:66.000000px;}
.fs2_c00199{font-size:72.000000px;}
.fs0_c00199{font-size:81.000000px;}
.fs1_c00199{font-size:87.000000px;}
.y0_c00199{bottom:0.000000px;}
.y26_c00199{bottom:3.105000px;}
.y25_c00199{bottom:7.228369px;}
.y23_c00199{bottom:66.120000px;}
.y22_c00199{bottom:91.770000px;}
.y21_c00199{bottom:117.720000px;}
.y20_c00199{bottom:142.020000px;}
.y1f_c00199{bottom:166.020000px;}
.y1e_c00199{bottom:190.020000px;}
.y1d_c00199{bottom:214.320000px;}
.y1c_c00199{bottom:238.920000px;}
.y1b_c00199{bottom:262.620000px;}
.y1a_c00199{bottom:286.920000px;}
.y19_c00199{bottom:311.070000px;}
.y18_c00199{bottom:334.470000px;}
.y17_c00199{bottom:358.770000px;}
.y16_c00199{bottom:383.070000px;}
.y15_c00199{bottom:407.070000px;}
.y14_c00199{bottom:431.220000px;}
.y13_c00199{bottom:454.920000px;}
.y12_c00199{bottom:478.620000px;}
.y11_c00199{bottom:502.920000px;}
.y24_c00199{bottom:513.270000px;}
.y10_c00199{bottom:527.070000px;}
.yf_c00199{bottom:550.770000px;}
.ye_c00199{bottom:574.770000px;}
.yd_c00199{bottom:598.770000px;}
.yc_c00199{bottom:622.920000px;}
.yb_c00199{bottom:646.620000px;}
.ya_c00199{bottom:670.920000px;}
.y9_c00199{bottom:694.620000px;}
.y8_c00199{bottom:718.770000px;}
.y7_c00199{bottom:742.770000px;}
.y6_c00199{bottom:767.370000px;}
.y5_c00199{bottom:791.670000px;}
.y4_c00199{bottom:816.720000px;}
.y3_c00199{bottom:841.320000px;}
.y2_c00199{bottom:865.920000px;}
.y1_c00199{bottom:889.920000px;}
.h7_c00199{height:13.200073px;}
.h8_c00199{height:43.804688px;}
.h6_c00199{height:51.398438px;}
.h2_c00199{height:79.497070px;}
.h4_c00199{height:84.269531px;}
.h5_c00199{height:91.160156px;}
.h3_c00199{height:91.176000px;}
.h1_c00199{height:986.250000px;}
.h0_c00199{height:986.550000px;}
.w1_c00199{width:104.875500px;}
.w0_c00199{width:661.500000px;}
.x0_c00199{left:0.000000px;}
.x5_c00199{left:23.700000px;}
.xb_c00199{left:28.800000px;}
.x11_c00199{left:82.650000px;}
.x1_c00199{left:108.450000px;}
.x2_c00199{left:109.800000px;}
.x3_c00199{left:112.050000px;}
.x4_c00199{left:113.400000px;}
.x6_c00199{left:115.800000px;}
.x7_c00199{left:117.750000px;}
.x8_c00199{left:118.800000px;}
.x9_c00199{left:120.450000px;}
.xa_c00199{left:121.800000px;}
.xc_c00199{left:123.300000px;}
.xd_c00199{left:124.500000px;}
.xe_c00199{left:126.300000px;}
.xf_c00199{left:127.950000px;}
.x12_c00199{left:282.564240px;}
.x10_c00199{left:571.350000px;}
@media print{
.v0_c00199{vertical-align:0.000000pt;}
.ls2_c00199{letter-spacing:-5.333333pt;}
.ls1_c00199{letter-spacing:0.000000pt;}
.ls0_c00199{letter-spacing:2.400000pt;}
.ws1_c00199{word-spacing:-24.000000pt;}
.ws0_c00199{word-spacing:-15.424000pt;}
.ws2_c00199{word-spacing:-10.290667pt;}
.ws3_c00199{word-spacing:0.000000pt;}
._12_c00199{margin-left:-13.320000pt;}
._2_c00199{margin-left:-10.728000pt;}
._b_c00199{margin-left:-8.064000pt;}
._10_c00199{margin-left:-6.861333pt;}
._18_c00199{margin-left:-5.922667pt;}
._e_c00199{margin-left:-5.018667pt;}
._3_c00199{margin-left:-3.744000pt;}
._8_c00199{margin-left:-2.736000pt;}
._7_c00199{margin-left:-0.936000pt;}
._1_c00199{width:1.368000pt;}
._0_c00199{width:2.448000pt;}
._5_c00199{width:3.960000pt;}
._6_c00199{width:5.040000pt;}
._a_c00199{width:5.976000pt;}
._d_c00199{width:6.984000pt;}
._9_c00199{width:7.992000pt;}
._15_c00199{width:9.000000pt;}
._f_c00199{width:9.936000pt;}
._c_c00199{width:11.160000pt;}
._16_c00199{width:12.456000pt;}
._11_c00199{width:13.968000pt;}
._14_c00199{width:15.170667pt;}
._19_c00199{width:16.992000pt;}
._17_c00199{width:39.765333pt;}
._13_c00199{width:231.048000pt;}
._4_c00199{width:598.320000pt;}
.fs5_c00199{font-size:42.666667pt;}
.fs4_c00199{font-size:45.333333pt;}
.fs3_c00199{font-size:58.666667pt;}
.fs2_c00199{font-size:64.000000pt;}
.fs0_c00199{font-size:72.000000pt;}
.fs1_c00199{font-size:77.333333pt;}
.y0_c00199{bottom:0.000000pt;}
.y26_c00199{bottom:2.760000pt;}
.y25_c00199{bottom:6.425217pt;}
.y23_c00199{bottom:58.773333pt;}
.y22_c00199{bottom:81.573333pt;}
.y21_c00199{bottom:104.640000pt;}
.y20_c00199{bottom:126.240000pt;}
.y1f_c00199{bottom:147.573333pt;}
.y1e_c00199{bottom:168.906667pt;}
.y1d_c00199{bottom:190.506667pt;}
.y1c_c00199{bottom:212.373333pt;}
.y1b_c00199{bottom:233.440000pt;}
.y1a_c00199{bottom:255.040000pt;}
.y19_c00199{bottom:276.506667pt;}
.y18_c00199{bottom:297.306667pt;}
.y17_c00199{bottom:318.906667pt;}
.y16_c00199{bottom:340.506667pt;}
.y15_c00199{bottom:361.840000pt;}
.y14_c00199{bottom:383.306667pt;}
.y13_c00199{bottom:404.373333pt;}
.y12_c00199{bottom:425.440000pt;}
.y11_c00199{bottom:447.040000pt;}
.y24_c00199{bottom:456.240000pt;}
.y10_c00199{bottom:468.506667pt;}
.yf_c00199{bottom:489.573333pt;}
.ye_c00199{bottom:510.906667pt;}
.yd_c00199{bottom:532.240000pt;}
.yc_c00199{bottom:553.706667pt;}
.yb_c00199{bottom:574.773333pt;}
.ya_c00199{bottom:596.373333pt;}
.y9_c00199{bottom:617.440000pt;}
.y8_c00199{bottom:638.906667pt;}
.y7_c00199{bottom:660.240000pt;}
.y6_c00199{bottom:682.106667pt;}
.y5_c00199{bottom:703.706667pt;}
.y4_c00199{bottom:725.973333pt;}
.y3_c00199{bottom:747.840000pt;}
.y2_c00199{bottom:769.706667pt;}
.y1_c00199{bottom:791.040000pt;}
.h7_c00199{height:11.733399pt;}
.h8_c00199{height:38.937500pt;}
.h6_c00199{height:45.687500pt;}
.h2_c00199{height:70.664062pt;}
.h4_c00199{height:74.906250pt;}
.h5_c00199{height:81.031250pt;}
.h3_c00199{height:81.045333pt;}
.h1_c00199{height:876.666667pt;}
.h0_c00199{height:876.933333pt;}
.w1_c00199{width:93.222667pt;}
.w0_c00199{width:588.000000pt;}
.x0_c00199{left:0.000000pt;}
.x5_c00199{left:21.066667pt;}
.xb_c00199{left:25.600000pt;}
.x11_c00199{left:73.466667pt;}
.x1_c00199{left:96.400000pt;}
.x2_c00199{left:97.600000pt;}
.x3_c00199{left:99.600000pt;}
.x4_c00199{left:100.800000pt;}
.x6_c00199{left:102.933333pt;}
.x7_c00199{left:104.666667pt;}
.x8_c00199{left:105.600000pt;}
.x9_c00199{left:107.066667pt;}
.xa_c00199{left:108.266667pt;}
.xc_c00199{left:109.600000pt;}
.xd_c00199{left:110.666667pt;}
.xe_c00199{left:112.266667pt;}
.xf_c00199{left:113.733333pt;}
.x12_c00199{left:251.168213pt;}
.x10_c00199{left:507.866667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_342f9b9d283c1378f934a620.woff2')format("woff");}.ff1_c00200{font-family:ff1_c00200;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00200;src:url('chunks/assets/font_583bf17d667dfae2abddc17e.woff2')format("woff");}.ff2_c00200{font-family:ff2_c00200;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00200;src:url('chunks/assets/font_0070a4d766e30a7eb84ce304.woff2')format("woff");}.ff3_c00200{font-family:ff3_c00200;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00200;src:url('chunks/assets/font_f16dc6106747fddd8db6c714.woff2')format("woff");}.ff4_c00200{font-family:ff4_c00200;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00200;src:url('chunks/assets/font_29952b00a3a3113ffb1dd9d9.woff2')format("woff");}.ff5_c00200{font-family:ff5_c00200;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00200;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c00200{font-family:ff6_c00200;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00200{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00200{vertical-align:0.000000px;}
.ls0_c00200{letter-spacing:0.000000px;}
.ls1_c00200{letter-spacing:6.000000px;}
.sc__c00200{text-shadow:none;}
.sc0_c00200{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00200{-webkit-text-stroke:0px transparent;}
.sc0_c00200{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00200{word-spacing:-17.352000px;}
.ws1_c00200{word-spacing:-13.737000px;}
.ws2_c00200{word-spacing:0.000000px;}
._1b_c00200{margin-left:-23.409000px;}
._19_c00200{margin-left:-18.096000px;}
._1_c00200{margin-left:-13.872000px;}
._17_c00200{margin-left:-12.384000px;}
._1d_c00200{margin-left:-10.554000px;}
._12_c00200{margin-left:-8.991000px;}
._8_c00200{margin-left:-7.548000px;}
._7_c00200{margin-left:-6.426000px;}
._10_c00200{margin-left:-5.400000px;}
._a_c00200{margin-left:-4.284000px;}
._6_c00200{margin-left:-2.856000px;}
._0_c00200{margin-left:-1.836000px;}
._9_c00200{width:1.326000px;}
._5_c00200{width:2.346000px;}
._c_c00200{width:3.747000px;}
._4_c00200{width:4.794000px;}
._d_c00200{width:5.910000px;}
._11_c00200{width:7.347000px;}
._3_c00200{width:8.364000px;}
._21_c00200{width:9.405000px;}
._e_c00200{width:10.434000px;}
._f_c00200{width:12.336000px;}
._13_c00200{width:13.884000px;}
._14_c00200{width:15.081000px;}
._2_c00200{width:16.830000px;}
._20_c00200{width:18.876000px;}
._b_c00200{width:24.378000px;}
._15_c00200{width:27.009000px;}
._1e_c00200{width:30.384000px;}
._18_c00200{width:31.710000px;}
._23_c00200{width:43.311000px;}
._16_c00200{width:57.393000px;}
._1f_c00200{width:116.667000px;}
._1a_c00200{width:193.689000px;}
._1c_c00200{width:289.590000px;}
._22_c00200{width:440.046000px;}
.fc2_c00200{color:transparent;}
.fc1_c00200{color:rgb(128,128,128);}
.fc0_c00200{color:rgb(0,0,0);}
.fs5_c00200{font-size:48.000000px;}
.fs4_c00200{font-size:57.000000px;}
.fs2_c00200{font-size:72.000000px;}
.fs3_c00200{font-size:78.000000px;}
.fs1_c00200{font-size:81.000000px;}
.fs0_c00200{font-size:102.000000px;}
.y0_c00200{bottom:0.000000px;}
.y26_c00200{bottom:3.105000px;}
.y25_c00200{bottom:7.228363px;}
.y24_c00200{bottom:52.350000px;}
.y23_c00200{bottom:82.650000px;}
.y22_c00200{bottom:107.250000px;}
.y21_c00200{bottom:132.300000px;}
.y20_c00200{bottom:156.300000px;}
.y1f_c00200{bottom:181.500000px;}
.y1e_c00200{bottom:205.500000px;}
.y1d_c00200{bottom:229.800000px;}
.y1c_c00200{bottom:254.400000px;}
.y1b_c00200{bottom:278.400000px;}
.y1a_c00200{bottom:302.100000px;}
.y19_c00200{bottom:325.950000px;}
.y18_c00200{bottom:350.250000px;}
.y17_c00200{bottom:374.250000px;}
.y16_c00200{bottom:397.800000px;}
.y15_c00200{bottom:422.250000px;}
.y14_c00200{bottom:446.100000px;}
.y13_c00200{bottom:470.100000px;}
.y12_c00200{bottom:495.000000px;}
.y11_c00200{bottom:518.700000px;}
.y10_c00200{bottom:542.550000px;}
.yf_c00200{bottom:566.100000px;}
.ye_c00200{bottom:589.650000px;}
.yd_c00200{bottom:613.200000px;}
.yc_c00200{bottom:637.200000px;}
.yb_c00200{bottom:661.200000px;}
.ya_c00200{bottom:685.500000px;}
.y9_c00200{bottom:708.750000px;}
.y8_c00200{bottom:733.050000px;}
.y7_c00200{bottom:757.350000px;}
.y6_c00200{bottom:781.950000px;}
.y5_c00200{bottom:805.950000px;}
.y4_c00200{bottom:831.300000px;}
.y3_c00200{bottom:856.950000px;}
.y2_c00200{bottom:880.950000px;}
.y1_c00200{bottom:916.650000px;}
.h7_c00200{height:13.200074px;}
.h8_c00200{height:43.804688px;}
.h3_c00200{height:79.497070px;}
.h6_c00200{height:84.269531px;}
.h4_c00200{height:91.160156px;}
.h5_c00200{height:98.756836px;}
.h2_c00200{height:100.057617px;}
.h0_c00200{height:974.700000px;}
.h1_c00200{height:975.000000px;}
.w2_c00200{width:104.875500px;}
.w0_c00200{width:662.025000px;}
.w1_c00200{width:662.250000px;}
.x0_c00200{left:0.000000px;}
.xa_c00200{left:35.100000px;}
.x2_c00200{left:44.100000px;}
.x3_c00200{left:46.500000px;}
.x4_c00200{left:48.600000px;}
.x5_c00200{left:49.650000px;}
.x6_c00200{left:51.750000px;}
.x7_c00200{left:52.950000px;}
.x8_c00200{left:54.750000px;}
.x9_c00200{left:56.400000px;}
.xb_c00200{left:57.450000px;}
.xc_c00200{left:59.850000px;}
.xd_c00200{left:61.500000px;}
.xe_c00200{left:63.150000px;}
.x1_c00200{left:70.500000px;}
.x10_c00200{left:282.826767px;}
.xf_c00200{left:376.650000px;}
@media print{
.v0_c00200{vertical-align:0.000000pt;}
.ls0_c00200{letter-spacing:0.000000pt;}
.ls1_c00200{letter-spacing:5.333333pt;}
.ws0_c00200{word-spacing:-15.424000pt;}
.ws1_c00200{word-spacing:-12.210667pt;}
.ws2_c00200{word-spacing:0.000000pt;}
._1b_c00200{margin-left:-20.808000pt;}
._19_c00200{margin-left:-16.085333pt;}
._1_c00200{margin-left:-12.330667pt;}
._17_c00200{margin-left:-11.008000pt;}
._1d_c00200{margin-left:-9.381333pt;}
._12_c00200{margin-left:-7.992000pt;}
._8_c00200{margin-left:-6.709333pt;}
._7_c00200{margin-left:-5.712000pt;}
._10_c00200{margin-left:-4.800000pt;}
._a_c00200{margin-left:-3.808000pt;}
._6_c00200{margin-left:-2.538667pt;}
._0_c00200{margin-left:-1.632000pt;}
._9_c00200{width:1.178667pt;}
._5_c00200{width:2.085333pt;}
._c_c00200{width:3.330667pt;}
._4_c00200{width:4.261333pt;}
._d_c00200{width:5.253333pt;}
._11_c00200{width:6.530667pt;}
._3_c00200{width:7.434667pt;}
._21_c00200{width:8.360000pt;}
._e_c00200{width:9.274667pt;}
._f_c00200{width:10.965333pt;}
._13_c00200{width:12.341333pt;}
._14_c00200{width:13.405333pt;}
._2_c00200{width:14.960000pt;}
._20_c00200{width:16.778667pt;}
._b_c00200{width:21.669333pt;}
._15_c00200{width:24.008000pt;}
._1e_c00200{width:27.008000pt;}
._18_c00200{width:28.186667pt;}
._23_c00200{width:38.498667pt;}
._16_c00200{width:51.016000pt;}
._1f_c00200{width:103.704000pt;}
._1a_c00200{width:172.168000pt;}
._1c_c00200{width:257.413333pt;}
._22_c00200{width:391.152000pt;}
.fs5_c00200{font-size:42.666667pt;}
.fs4_c00200{font-size:50.666667pt;}
.fs2_c00200{font-size:64.000000pt;}
.fs3_c00200{font-size:69.333333pt;}
.fs1_c00200{font-size:72.000000pt;}
.fs0_c00200{font-size:90.666667pt;}
.y0_c00200{bottom:0.000000pt;}
.y26_c00200{bottom:2.760000pt;}
.y25_c00200{bottom:6.425212pt;}
.y24_c00200{bottom:46.533333pt;}
.y23_c00200{bottom:73.466667pt;}
.y22_c00200{bottom:95.333333pt;}
.y21_c00200{bottom:117.600000pt;}
.y20_c00200{bottom:138.933333pt;}
.y1f_c00200{bottom:161.333333pt;}
.y1e_c00200{bottom:182.666667pt;}
.y1d_c00200{bottom:204.266667pt;}
.y1c_c00200{bottom:226.133333pt;}
.y1b_c00200{bottom:247.466667pt;}
.y1a_c00200{bottom:268.533333pt;}
.y19_c00200{bottom:289.733333pt;}
.y18_c00200{bottom:311.333333pt;}
.y17_c00200{bottom:332.666667pt;}
.y16_c00200{bottom:353.600000pt;}
.y15_c00200{bottom:375.333333pt;}
.y14_c00200{bottom:396.533333pt;}
.y13_c00200{bottom:417.866667pt;}
.y12_c00200{bottom:440.000000pt;}
.y11_c00200{bottom:461.066667pt;}
.y10_c00200{bottom:482.266667pt;}
.yf_c00200{bottom:503.200000pt;}
.ye_c00200{bottom:524.133333pt;}
.yd_c00200{bottom:545.066667pt;}
.yc_c00200{bottom:566.400000pt;}
.yb_c00200{bottom:587.733333pt;}
.ya_c00200{bottom:609.333333pt;}
.y9_c00200{bottom:630.000000pt;}
.y8_c00200{bottom:651.600000pt;}
.y7_c00200{bottom:673.200000pt;}
.y6_c00200{bottom:695.066667pt;}
.y5_c00200{bottom:716.400000pt;}
.y4_c00200{bottom:738.933333pt;}
.y3_c00200{bottom:761.733333pt;}
.y2_c00200{bottom:783.066667pt;}
.y1_c00200{bottom:814.800000pt;}
.h7_c00200{height:11.733399pt;}
.h8_c00200{height:38.937500pt;}
.h3_c00200{height:70.664062pt;}
.h6_c00200{height:74.906250pt;}
.h4_c00200{height:81.031250pt;}
.h5_c00200{height:87.783854pt;}
.h2_c00200{height:88.940104pt;}
.h0_c00200{height:866.400000pt;}
.h1_c00200{height:866.666667pt;}
.w2_c00200{width:93.222667pt;}
.w0_c00200{width:588.466667pt;}
.w1_c00200{width:588.666667pt;}
.x0_c00200{left:0.000000pt;}
.xa_c00200{left:31.200000pt;}
.x2_c00200{left:39.200000pt;}
.x3_c00200{left:41.333333pt;}
.x4_c00200{left:43.200000pt;}
.x5_c00200{left:44.133333pt;}
.x6_c00200{left:46.000000pt;}
.x7_c00200{left:47.066667pt;}
.x8_c00200{left:48.666667pt;}
.x9_c00200{left:50.133333pt;}
.xb_c00200{left:51.066667pt;}
.xc_c00200{left:53.200000pt;}
.xd_c00200{left:54.666667pt;}
.xe_c00200{left:56.133333pt;}
.x1_c00200{left:62.666667pt;}
.x10_c00200{left:251.401571pt;}
.xf_c00200{left:334.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_d7df66446357e94058cfed20.woff2')format("woff");}.ff1_c00201{font-family:ff1_c00201;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00201;src:url('chunks/assets/font_3d708d88c71ad9b3dea6b40c.woff2')format("woff");}.ff2_c00201{font-family:ff2_c00201;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00201;src:url('chunks/assets/font_ea8cafa2fa589d6239ca1f2f.woff2')format("woff");}.ff3_c00201{font-family:ff3_c00201;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00201;src:url('chunks/assets/font_bddbcc84bae6fda42c29a159.woff2')format("woff");}.ff4_c00201{font-family:ff4_c00201;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00201;src:url('chunks/assets/font_fab328277dfe74a9d5e1767b.woff2')format("woff");}.ff5_c00201{font-family:ff5_c00201;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00201;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c00201{font-family:ff6_c00201;line-height:1.219238;font-style: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;}
.ls3_c00201{letter-spacing:0.000000px;}
.ls1_c00201{letter-spacing:0.900000px;}
.ls2_c00201{letter-spacing:4.758000px;}
.ls4_c00201{letter-spacing:6.000000px;}
.ls0_c00201{letter-spacing:19.200000px;}
.sc__c00201{text-shadow:none;}
.sc0_c00201{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00201{-webkit-text-stroke:0px transparent;}
.sc0_c00201{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00201{word-spacing:-59.184000px;}
.ws2_c00201{word-spacing:-24.180000px;}
.ws1_c00201{word-spacing:-20.250000px;}
.ws3_c00201{word-spacing:0.000000px;}
._18_c00201{margin-left:-24.138000px;}
._10_c00201{margin-left:-20.412000px;}
._1a_c00201{margin-left:-16.362000px;}
._f_c00201{margin-left:-14.124000px;}
._e_c00201{margin-left:-11.964000px;}
._1c_c00201{margin-left:-9.609000px;}
._12_c00201{margin-left:-8.343000px;}
._6_c00201{margin-left:-6.156000px;}
._1_c00201{margin-left:-4.131000px;}
._a_c00201{margin-left:-2.847000px;}
._3_c00201{margin-left:-1.620000px;}
._17_c00201{width:1.077000px;}
._0_c00201{width:2.106000px;}
._7_c00201{width:3.159000px;}
._2_c00201{width:4.293000px;}
._5_c00201{width:5.913000px;}
._9_c00201{width:6.966000px;}
._4_c00201{width:8.262000px;}
._b_c00201{width:9.324000px;}
._14_c00201{width:10.371000px;}
._d_c00201{width:11.412000px;}
._8_c00201{width:13.203000px;}
._13_c00201{width:14.661000px;}
._15_c00201{width:17.103000px;}
._1b_c00201{width:18.711000px;}
._19_c00201{width:25.839000px;}
._16_c00201{width:172.188000px;}
._11_c00201{width:250.938000px;}
._c_c00201{width:253.758000px;}
.fc2_c00201{color:transparent;}
.fc1_c00201{color:rgb(128,128,128);}
.fc0_c00201{color:rgb(0,0,0);}
.fs5_c00201{font-size:48.000000px;}
.fs2_c00201{font-size:72.000000px;}
.fs4_c00201{font-size:78.000000px;}
.fs0_c00201{font-size:81.000000px;}
.fs3_c00201{font-size:87.000000px;}
.fs1_c00201{font-size:93.000000px;}
.y0_c00201{bottom:0.000000px;}
.y25_c00201{bottom:3.105000px;}
.y24_c00201{bottom:7.228357px;}
.y23_c00201{bottom:72.930000px;}
.y22_c00201{bottom:97.530000px;}
.y21_c00201{bottom:122.580000px;}
.y20_c00201{bottom:147.480000px;}
.y1f_c00201{bottom:171.930000px;}
.y1e_c00201{bottom:196.380000px;}
.y1d_c00201{bottom:220.980000px;}
.y1c_c00201{bottom:244.980000px;}
.y1b_c00201{bottom:268.980000px;}
.y1a_c00201{bottom:293.580000px;}
.y19_c00201{bottom:317.280000px;}
.y18_c00201{bottom:341.280000px;}
.y17_c00201{bottom:365.580000px;}
.y16_c00201{bottom:389.880000px;}
.y15_c00201{bottom:413.880000px;}
.y14_c00201{bottom:438.780000px;}
.y13_c00201{bottom:462.030000px;}
.y12_c00201{bottom:485.280000px;}
.y11_c00201{bottom:508.980000px;}
.y10_c00201{bottom:532.980000px;}
.yf_c00201{bottom:556.980000px;}
.ye_c00201{bottom:581.580000px;}
.yd_c00201{bottom:605.430000px;}
.yc_c00201{bottom:629.880000px;}
.yb_c00201{bottom:652.830000px;}
.ya_c00201{bottom:676.680000px;}
.y9_c00201{bottom:701.280000px;}
.y8_c00201{bottom:725.280000px;}
.y7_c00201{bottom:748.980000px;}
.y6_c00201{bottom:772.530000px;}
.y5_c00201{bottom:797.280000px;}
.y4_c00201{bottom:821.130000px;}
.y3_c00201{bottom:845.130000px;}
.y2_c00201{bottom:869.730000px;}
.y1_c00201{bottom:893.430000px;}
.h9_c00201{height:13.200074px;}
.ha_c00201{height:43.804688px;}
.h2_c00201{height:79.497070px;}
.h7_c00201{height:80.097070px;}
.h8_c00201{height:83.226000px;}
.h6_c00201{height:83.669531px;}
.h4_c00201{height:84.269531px;}
.h5_c00201{height:91.176000px;}
.h3_c00201{height:91.274414px;}
.h0_c00201{height:984.450000px;}
.h1_c00201{height:984.750000px;}
.w2_c00201{width:104.875500px;}
.w0_c00201{width:659.850000px;}
.w1_c00201{width:660.000000px;}
.x0_c00201{left:0.000000px;}
.x9_c00201{left:17.100000px;}
.x6_c00201{left:21.600000px;}
.x4_c00201{left:22.950000px;}
.x10_c00201{left:100.500000px;}
.xf_c00201{left:102.150000px;}
.xe_c00201{left:104.550000px;}
.xd_c00201{left:106.350000px;}
.xc_c00201{left:107.550000px;}
.xb_c00201{left:108.900000px;}
.x8_c00201{left:110.400000px;}
.x7_c00201{left:111.750000px;}
.x5_c00201{left:114.000000px;}
.x3_c00201{left:115.650000px;}
.x2_c00201{left:116.850000px;}
.x1_c00201{left:118.200000px;}
.xa_c00201{left:135.600000px;}
.x12_c00201{left:281.739258px;}
.x11_c00201{left:535.650000px;}
@media print{
.v0_c00201{vertical-align:0.000000pt;}
.ls3_c00201{letter-spacing:0.000000pt;}
.ls1_c00201{letter-spacing:0.800000pt;}
.ls2_c00201{letter-spacing:4.229333pt;}
.ls4_c00201{letter-spacing:5.333333pt;}
.ls0_c00201{letter-spacing:17.066667pt;}
.ws0_c00201{word-spacing:-52.608000pt;}
.ws2_c00201{word-spacing:-21.493333pt;}
.ws1_c00201{word-spacing:-18.000000pt;}
.ws3_c00201{word-spacing:0.000000pt;}
._18_c00201{margin-left:-21.456000pt;}
._10_c00201{margin-left:-18.144000pt;}
._1a_c00201{margin-left:-14.544000pt;}
._f_c00201{margin-left:-12.554667pt;}
._e_c00201{margin-left:-10.634667pt;}
._1c_c00201{margin-left:-8.541333pt;}
._12_c00201{margin-left:-7.416000pt;}
._6_c00201{margin-left:-5.472000pt;}
._1_c00201{margin-left:-3.672000pt;}
._a_c00201{margin-left:-2.530667pt;}
._3_c00201{margin-left:-1.440000pt;}
._17_c00201{width:0.957333pt;}
._0_c00201{width:1.872000pt;}
._7_c00201{width:2.808000pt;}
._2_c00201{width:3.816000pt;}
._5_c00201{width:5.256000pt;}
._9_c00201{width:6.192000pt;}
._4_c00201{width:7.344000pt;}
._b_c00201{width:8.288000pt;}
._14_c00201{width:9.218667pt;}
._d_c00201{width:10.144000pt;}
._8_c00201{width:11.736000pt;}
._13_c00201{width:13.032000pt;}
._15_c00201{width:15.202667pt;}
._1b_c00201{width:16.632000pt;}
._19_c00201{width:22.968000pt;}
._16_c00201{width:153.056000pt;}
._11_c00201{width:223.056000pt;}
._c_c00201{width:225.562667pt;}
.fs5_c00201{font-size:42.666667pt;}
.fs2_c00201{font-size:64.000000pt;}
.fs4_c00201{font-size:69.333333pt;}
.fs0_c00201{font-size:72.000000pt;}
.fs3_c00201{font-size:77.333333pt;}
.fs1_c00201{font-size:82.666667pt;}
.y0_c00201{bottom:0.000000pt;}
.y25_c00201{bottom:2.760000pt;}
.y24_c00201{bottom:6.425206pt;}
.y23_c00201{bottom:64.826667pt;}
.y22_c00201{bottom:86.693333pt;}
.y21_c00201{bottom:108.960000pt;}
.y20_c00201{bottom:131.093333pt;}
.y1f_c00201{bottom:152.826667pt;}
.y1e_c00201{bottom:174.560000pt;}
.y1d_c00201{bottom:196.426667pt;}
.y1c_c00201{bottom:217.760000pt;}
.y1b_c00201{bottom:239.093333pt;}
.y1a_c00201{bottom:260.960000pt;}
.y19_c00201{bottom:282.026667pt;}
.y18_c00201{bottom:303.360000pt;}
.y17_c00201{bottom:324.960000pt;}
.y16_c00201{bottom:346.560000pt;}
.y15_c00201{bottom:367.893333pt;}
.y14_c00201{bottom:390.026667pt;}
.y13_c00201{bottom:410.693333pt;}
.y12_c00201{bottom:431.360000pt;}
.y11_c00201{bottom:452.426667pt;}
.y10_c00201{bottom:473.760000pt;}
.yf_c00201{bottom:495.093333pt;}
.ye_c00201{bottom:516.960000pt;}
.yd_c00201{bottom:538.160000pt;}
.yc_c00201{bottom:559.893333pt;}
.yb_c00201{bottom:580.293333pt;}
.ya_c00201{bottom:601.493333pt;}
.y9_c00201{bottom:623.360000pt;}
.y8_c00201{bottom:644.693333pt;}
.y7_c00201{bottom:665.760000pt;}
.y6_c00201{bottom:686.693333pt;}
.y5_c00201{bottom:708.693333pt;}
.y4_c00201{bottom:729.893333pt;}
.y3_c00201{bottom:751.226667pt;}
.y2_c00201{bottom:773.093333pt;}
.y1_c00201{bottom:794.160000pt;}
.h9_c00201{height:11.733399pt;}
.ha_c00201{height:38.937500pt;}
.h2_c00201{height:70.664062pt;}
.h7_c00201{height:71.197396pt;}
.h8_c00201{height:73.978667pt;}
.h6_c00201{height:74.372917pt;}
.h4_c00201{height:74.906250pt;}
.h5_c00201{height:81.045333pt;}
.h3_c00201{height:81.132812pt;}
.h0_c00201{height:875.066667pt;}
.h1_c00201{height:875.333333pt;}
.w2_c00201{width:93.222667pt;}
.w0_c00201{width:586.533333pt;}
.w1_c00201{width:586.666667pt;}
.x0_c00201{left:0.000000pt;}
.x9_c00201{left:15.200000pt;}
.x6_c00201{left:19.200000pt;}
.x4_c00201{left:20.400000pt;}
.x10_c00201{left:89.333333pt;}
.xf_c00201{left:90.800000pt;}
.xe_c00201{left:92.933333pt;}
.xd_c00201{left:94.533333pt;}
.xc_c00201{left:95.600000pt;}
.xb_c00201{left:96.800000pt;}
.x8_c00201{left:98.133333pt;}
.x7_c00201{left:99.333333pt;}
.x5_c00201{left:101.333333pt;}
.x3_c00201{left:102.800000pt;}
.x2_c00201{left:103.866667pt;}
.x1_c00201{left:105.066667pt;}
.xa_c00201{left:120.533333pt;}
.x12_c00201{left:250.434896pt;}
.x11_c00201{left:476.133333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_1756affb3b30546714595a71.woff2')format("woff");}.ff1_c00202{font-family:ff1_c00202;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00202;src:url('chunks/assets/font_58e3c6c3cbf118e797dce9a1.woff2')format("woff");}.ff2_c00202{font-family:ff2_c00202;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00202;src:url('chunks/assets/font_e520a7444fe0582842232b0f.woff2')format("woff");}.ff3_c00202{font-family:ff3_c00202;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00202;src:url('chunks/assets/font_2f70bb0dded1579124054e9e.woff2')format("woff");}.ff4_c00202{font-family:ff4_c00202;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00202;src:url('chunks/assets/font_2ead44d03b3e8b1e5eee18e7.woff2')format("woff");}.ff5_c00202{font-family:ff5_c00202;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00202;src:url('chunks/assets/font_ed685caf50c1cf32aca1f61c.woff2')format("woff");}.ff6_c00202{font-family:ff6_c00202;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00202;src:url('chunks/assets/font_e2ffb6c76d93f2cc2123c77d.woff2')format("woff");}.ff7_c00202{font-family:ff7_c00202;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00202;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff8_c00202{font-family:ff8_c00202;line-height:1.219238;font-style: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;}
.v1_c00202{vertical-align:12.600000px;}
.v2_c00202{vertical-align:83.400000px;}
.ls4_c00202{letter-spacing:0.000000px;}
.ls0_c00202{letter-spacing:0.900000px;}
.ls1_c00202{letter-spacing:3.000000px;}
.ls3_c00202{letter-spacing:6.000000px;}
.ls2_c00202{letter-spacing:132.780000px;}
.sc__c00202{text-shadow:none;}
.sc0_c00202{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00202{-webkit-text-stroke:0px transparent;}
.sc0_c00202{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00202{word-spacing:-59.184000px;}
.ws2_c00202{word-spacing:0.000000px;}
.ws1_c00202{word-spacing:360.249000px;}
._1d_c00202{margin-left:-29.646000px;}
._17_c00202{margin-left:-20.223000px;}
._20_c00202{margin-left:-15.309000px;}
._13_c00202{margin-left:-12.177000px;}
._3_c00202{margin-left:-10.026000px;}
._1b_c00202{margin-left:-8.424000px;}
._7_c00202{margin-left:-6.936000px;}
._11_c00202{margin-left:-5.244000px;}
._8_c00202{margin-left:-3.792000px;}
._b_c00202{margin-left:-2.223000px;}
._2_c00202{margin-left:-1.044000px;}
._1_c00202{width:1.305000px;}
._0_c00202{width:2.610000px;}
._9_c00202{width:3.735000px;}
._f_c00202{width:4.899000px;}
._a_c00202{width:5.994000px;}
._6_c00202{width:7.344000px;}
._10_c00202{width:8.346000px;}
._d_c00202{width:9.963000px;}
._4_c00202{width:11.526000px;}
._c_c00202{width:12.879000px;}
._14_c00202{width:13.965000px;}
._5_c00202{width:15.096000px;}
._15_c00202{width:16.578000px;}
._e_c00202{width:19.026000px;}
._1e_c00202{width:22.677000px;}
._16_c00202{width:30.213000px;}
._19_c00202{width:33.012000px;}
._12_c00202{width:34.413000px;}
._18_c00202{width:39.783000px;}
._1a_c00202{width:40.986000px;}
._1f_c00202{width:44.127000px;}
._1c_c00202{width:46.860000px;}
._21_c00202{width:49.866000px;}
.fc2_c00202{color:transparent;}
.fc1_c00202{color:rgb(128,128,128);}
.fc0_c00202{color:rgb(0,0,0);}
.fs6_c00202{font-size:24.000000px;}
.fs7_c00202{font-size:48.000000px;}
.fs5_c00202{font-size:60.000000px;}
.fs4_c00202{font-size:63.000000px;}
.fs3_c00202{font-size:72.000000px;}
.fs2_c00202{font-size:81.000000px;}
.fs0_c00202{font-size:87.000000px;}
.fs1_c00202{font-size:102.000000px;}
.y0_c00202{bottom:0.000000px;}
.y26_c00202{bottom:3.105000px;}
.y25_c00202{bottom:7.228371px;}
.y24_c00202{bottom:94.965000px;}
.y23_c00202{bottom:117.465000px;}
.y22_c00202{bottom:142.215000px;}
.y21_c00202{bottom:166.515000px;}
.y20_c00202{bottom:190.665000px;}
.y1f_c00202{bottom:214.965000px;}
.y1e_c00202{bottom:239.265000px;}
.y1d_c00202{bottom:263.265000px;}
.y1c_c00202{bottom:287.415000px;}
.y1b_c00202{bottom:310.965000px;}
.y1a_c00202{bottom:334.515000px;}
.y19_c00202{bottom:358.515000px;}
.y18_c00202{bottom:379.365000px;}
.y17_c00202{bottom:406.665000px;}
.y16_c00202{bottom:430.665000px;}
.y15_c00202{bottom:453.615000px;}
.y14_c00202{bottom:477.915000px;}
.y13_c00202{bottom:501.615000px;}
.y12_c00202{bottom:525.615000px;}
.y11_c00202{bottom:549.765000px;}
.y10_c00202{bottom:573.465000px;}
.yf_c00202{bottom:597.165000px;}
.ye_c00202{bottom:622.365000px;}
.yd_c00202{bottom:644.715000px;}
.yc_c00202{bottom:668.265000px;}
.yb_c00202{bottom:691.665000px;}
.ya_c00202{bottom:715.965000px;}
.y9_c00202{bottom:739.815000px;}
.y8_c00202{bottom:764.115000px;}
.y7_c00202{bottom:788.115000px;}
.y6_c00202{bottom:812.115000px;}
.y5_c00202{bottom:836.415000px;}
.y4_c00202{bottom:860.265000px;}
.y3_c00202{bottom:884.265000px;}
.y2_c00202{bottom:908.865000px;}
.y1_c00202{bottom:942.615000px;}
.hb_c00202{height:13.200074px;}
.hc_c00202{height:43.804688px;}
.h7_c00202{height:61.800293px;}
.h6_c00202{height:61.831055px;}
.h9_c00202{height:78.897070px;}
.h3_c00202{height:79.497070px;}
.h5_c00202{height:91.160156px;}
.h4_c00202{height:91.176000px;}
.h8_c00202{height:92.097070px;}
.h2_c00202{height:100.057617px;}
.ha_c00202{height:167.669531px;}
.h0_c00202{height:989.025000px;}
.h1_c00202{height:989.250000px;}
.w1_c00202{width:104.875500px;}
.w0_c00202{width:672.000000px;}
.x0_c00202{left:0.000000px;}
.x1_c00202{left:39.150000px;}
.x2_c00202{left:40.200000px;}
.x3_c00202{left:41.250000px;}
.x4_c00202{left:42.900000px;}
.x9_c00202{left:43.950000px;}
.xa_c00202{left:45.000000px;}
.x7_c00202{left:46.200000px;}
.x5_c00202{left:84.300000px;}
.x8_c00202{left:98.550000px;}
.x6_c00202{left:175.500000px;}
.xc_c00202{left:287.814240px;}
.xb_c00202{left:468.000000px;}
@media print{
.v0_c00202{vertical-align:0.000000pt;}
.v1_c00202{vertical-align:11.200000pt;}
.v2_c00202{vertical-align:74.133333pt;}
.ls4_c00202{letter-spacing:0.000000pt;}
.ls0_c00202{letter-spacing:0.800000pt;}
.ls1_c00202{letter-spacing:2.666667pt;}
.ls3_c00202{letter-spacing:5.333333pt;}
.ls2_c00202{letter-spacing:118.026667pt;}
.ws0_c00202{word-spacing:-52.608000pt;}
.ws2_c00202{word-spacing:0.000000pt;}
.ws1_c00202{word-spacing:320.221333pt;}
._1d_c00202{margin-left:-26.352000pt;}
._17_c00202{margin-left:-17.976000pt;}
._20_c00202{margin-left:-13.608000pt;}
._13_c00202{margin-left:-10.824000pt;}
._3_c00202{margin-left:-8.912000pt;}
._1b_c00202{margin-left:-7.488000pt;}
._7_c00202{margin-left:-6.165333pt;}
._11_c00202{margin-left:-4.661333pt;}
._8_c00202{margin-left:-3.370667pt;}
._b_c00202{margin-left:-1.976000pt;}
._2_c00202{margin-left:-0.928000pt;}
._1_c00202{width:1.160000pt;}
._0_c00202{width:2.320000pt;}
._9_c00202{width:3.320000pt;}
._f_c00202{width:4.354667pt;}
._a_c00202{width:5.328000pt;}
._6_c00202{width:6.528000pt;}
._10_c00202{width:7.418667pt;}
._d_c00202{width:8.856000pt;}
._4_c00202{width:10.245333pt;}
._c_c00202{width:11.448000pt;}
._14_c00202{width:12.413333pt;}
._5_c00202{width:13.418667pt;}
._15_c00202{width:14.736000pt;}
._e_c00202{width:16.912000pt;}
._1e_c00202{width:20.157333pt;}
._16_c00202{width:26.856000pt;}
._19_c00202{width:29.344000pt;}
._12_c00202{width:30.589333pt;}
._18_c00202{width:35.362667pt;}
._1a_c00202{width:36.432000pt;}
._1f_c00202{width:39.224000pt;}
._1c_c00202{width:41.653333pt;}
._21_c00202{width:44.325333pt;}
.fs6_c00202{font-size:21.333333pt;}
.fs7_c00202{font-size:42.666667pt;}
.fs5_c00202{font-size:53.333333pt;}
.fs4_c00202{font-size:56.000000pt;}
.fs3_c00202{font-size:64.000000pt;}
.fs2_c00202{font-size:72.000000pt;}
.fs0_c00202{font-size:77.333333pt;}
.fs1_c00202{font-size:90.666667pt;}
.y0_c00202{bottom:0.000000pt;}
.y26_c00202{bottom:2.760000pt;}
.y25_c00202{bottom:6.425219pt;}
.y24_c00202{bottom:84.413333pt;}
.y23_c00202{bottom:104.413333pt;}
.y22_c00202{bottom:126.413333pt;}
.y21_c00202{bottom:148.013333pt;}
.y20_c00202{bottom:169.480000pt;}
.y1f_c00202{bottom:191.080000pt;}
.y1e_c00202{bottom:212.680000pt;}
.y1d_c00202{bottom:234.013333pt;}
.y1c_c00202{bottom:255.480000pt;}
.y1b_c00202{bottom:276.413333pt;}
.y1a_c00202{bottom:297.346667pt;}
.y19_c00202{bottom:318.680000pt;}
.y18_c00202{bottom:337.213333pt;}
.y17_c00202{bottom:361.480000pt;}
.y16_c00202{bottom:382.813333pt;}
.y15_c00202{bottom:403.213333pt;}
.y14_c00202{bottom:424.813333pt;}
.y13_c00202{bottom:445.880000pt;}
.y12_c00202{bottom:467.213333pt;}
.y11_c00202{bottom:488.680000pt;}
.y10_c00202{bottom:509.746667pt;}
.yf_c00202{bottom:530.813333pt;}
.ye_c00202{bottom:553.213333pt;}
.yd_c00202{bottom:573.080000pt;}
.yc_c00202{bottom:594.013333pt;}
.yb_c00202{bottom:614.813333pt;}
.ya_c00202{bottom:636.413333pt;}
.y9_c00202{bottom:657.613333pt;}
.y8_c00202{bottom:679.213333pt;}
.y7_c00202{bottom:700.546667pt;}
.y6_c00202{bottom:721.880000pt;}
.y5_c00202{bottom:743.480000pt;}
.y4_c00202{bottom:764.680000pt;}
.y3_c00202{bottom:786.013333pt;}
.y2_c00202{bottom:807.880000pt;}
.y1_c00202{bottom:837.880000pt;}
.hb_c00202{height:11.733399pt;}
.hc_c00202{height:38.937500pt;}
.h7_c00202{height:54.933594pt;}
.h6_c00202{height:54.960938pt;}
.h9_c00202{height:70.130729pt;}
.h3_c00202{height:70.664062pt;}
.h5_c00202{height:81.031250pt;}
.h4_c00202{height:81.045333pt;}
.h8_c00202{height:81.864062pt;}
.h2_c00202{height:88.940104pt;}
.ha_c00202{height:149.039583pt;}
.h0_c00202{height:879.133333pt;}
.h1_c00202{height:879.333333pt;}
.w1_c00202{width:93.222667pt;}
.w0_c00202{width:597.333333pt;}
.x0_c00202{left:0.000000pt;}
.x1_c00202{left:34.800000pt;}
.x2_c00202{left:35.733333pt;}
.x3_c00202{left:36.666667pt;}
.x4_c00202{left:38.133333pt;}
.x9_c00202{left:39.066667pt;}
.xa_c00202{left:40.000000pt;}
.x7_c00202{left:41.066667pt;}
.x5_c00202{left:74.933333pt;}
.x8_c00202{left:87.600000pt;}
.x6_c00202{left:156.000000pt;}
.xc_c00202{left:255.834880pt;}
.xb_c00202{left:416.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_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_2573e4a36f2202e0f694a75a.woff2')format("woff");}.ff1_c00203{font-family:ff1_c00203;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00203;src:url('chunks/assets/font_45f1fa6728d7ee98d5a4d95a.woff2')format("woff");}.ff2_c00203{font-family:ff2_c00203;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00203;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff3_c00203{font-family:ff3_c00203;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00203;src:url('chunks/assets/font_6a3866ffa4baa6aa5cfe9ea9.woff2')format("woff");}.ff4_c00203{font-family:ff4_c00203;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00203;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c00203{font-family:ff5_c00203;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00203{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00203{vertical-align:0.000000px;}
.ls1_c00203{letter-spacing:0.000000px;}
.ls0_c00203{letter-spacing:1.611000px;}
.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;}
}
.ws2_c00203{word-spacing:-67.686000px;}
.ws1_c00203{word-spacing:-20.250000px;}
.ws0_c00203{word-spacing:-17.352000px;}
.ws3_c00203{word-spacing:0.000000px;}
._17_c00203{margin-left:-23.976000px;}
._13_c00203{margin-left:-20.979000px;}
._15_c00203{margin-left:-19.359000px;}
._10_c00203{margin-left:-17.136000px;}
._1f_c00203{margin-left:-15.750000px;}
._d_c00203{margin-left:-13.608000px;}
._1a_c00203{margin-left:-12.312000px;}
._0_c00203{margin-left:-10.854000px;}
._11_c00203{margin-left:-9.096000px;}
._20_c00203{margin-left:-7.794000px;}
._12_c00203{margin-left:-6.642000px;}
._4_c00203{margin-left:-5.022000px;}
._8_c00203{margin-left:-3.726000px;}
._7_c00203{margin-left:-1.944000px;}
._5_c00203{width:1.782000px;}
._2_c00203{width:3.321000px;}
._3_c00203{width:5.184000px;}
._6_c00203{width:7.128000px;}
._14_c00203{width:8.724000px;}
._e_c00203{width:10.044000px;}
._9_c00203{width:11.097000px;}
._c_c00203{width:12.393000px;}
._a_c00203{width:13.446000px;}
._1b_c00203{width:15.066000px;}
._22_c00203{width:17.577000px;}
._1c_c00203{width:21.627000px;}
._b_c00203{width:46.008000px;}
._1d_c00203{width:55.134000px;}
._26_c00203{width:60.558000px;}
._18_c00203{width:74.844000px;}
._21_c00203{width:152.331000px;}
._1_c00203{width:161.271000px;}
._25_c00203{width:178.545000px;}
._16_c00203{width:199.017000px;}
._23_c00203{width:213.762000px;}
._19_c00203{width:221.049000px;}
._1e_c00203{width:268.455000px;}
._f_c00203{width:282.876000px;}
._24_c00203{width:495.984000px;}
.fc2_c00203{color:transparent;}
.fc1_c00203{color:rgb(128,128,128);}
.fc0_c00203{color:rgb(0,0,0);}
.fs3_c00203{font-size:48.000000px;}
.fs1_c00203{font-size:72.000000px;}
.fs0_c00203{font-size:81.000000px;}
.fs2_c00203{font-size:87.000000px;}
.y0_c00203{bottom:0.000000px;}
.y25_c00203{bottom:3.105000px;}
.y24_c00203{bottom:7.228357px;}
.y23_c00203{bottom:76.380000px;}
.y22_c00203{bottom:102.930000px;}
.y21_c00203{bottom:128.280000px;}
.y20_c00203{bottom:155.580000px;}
.y1f_c00203{bottom:176.880000px;}
.y1e_c00203{bottom:202.230000px;}
.y1d_c00203{bottom:226.830000px;}
.y1c_c00203{bottom:250.830000px;}
.y1b_c00203{bottom:275.730000px;}
.y1a_c00203{bottom:299.430000px;}
.y19_c00203{bottom:321.930000px;}
.y18_c00203{bottom:346.980000px;}
.y17_c00203{bottom:371.880000px;}
.y16_c00203{bottom:395.580000px;}
.y15_c00203{bottom:420.330000px;}
.y14_c00203{bottom:443.880000px;}
.y13_c00203{bottom:467.430000px;}
.y12_c00203{bottom:491.430000px;}
.y11_c00203{bottom:515.430000px;}
.y10_c00203{bottom:539.430000px;}
.yf_c00203{bottom:563.580000px;}
.ye_c00203{bottom:587.280000px;}
.yd_c00203{bottom:611.580000px;}
.yc_c00203{bottom:635.880000px;}
.yb_c00203{bottom:659.730000px;}
.ya_c00203{bottom:683.730000px;}
.y9_c00203{bottom:707.730000px;}
.y8_c00203{bottom:732.030000px;}
.y7_c00203{bottom:757.380000px;}
.y6_c00203{bottom:779.730000px;}
.y5_c00203{bottom:805.980000px;}
.y4_c00203{bottom:827.880000px;}
.y3_c00203{bottom:851.880000px;}
.y2_c00203{bottom:876.780000px;}
.y1_c00203{bottom:899.730000px;}
.h5_c00203{height:13.200074px;}
.h6_c00203{height:43.804688px;}
.h1_c00203{height:79.497070px;}
.h2_c00203{height:84.269531px;}
.h3_c00203{height:91.160156px;}
.h4_c00203{height:91.176000px;}
.h0_c00203{height:995.250000px;}
.w2_c00203{width:104.875500px;}
.w0_c00203{width:667.425000px;}
.w1_c00203{width:667.500000px;}
.x0_c00203{left:0.000000px;}
.xb_c00203{left:24.600000px;}
.x8_c00203{left:26.400000px;}
.x2_c00203{left:31.050000px;}
.x5_c00203{left:34.500000px;}
.x4_c00203{left:66.900000px;}
.x1_c00203{left:77.550000px;}
.x9_c00203{left:123.900000px;}
.x6_c00203{left:125.550000px;}
.x3_c00203{left:126.600000px;}
.x7_c00203{left:127.650000px;}
.xa_c00203{left:148.800000px;}
.xc_c00203{left:252.450000px;}
.xe_c00203{left:285.526749px;}
.xd_c00203{left:577.350000px;}
@media print{
.v0_c00203{vertical-align:0.000000pt;}
.ls1_c00203{letter-spacing:0.000000pt;}
.ls0_c00203{letter-spacing:1.432000pt;}
.ws2_c00203{word-spacing:-60.165333pt;}
.ws1_c00203{word-spacing:-18.000000pt;}
.ws0_c00203{word-spacing:-15.424000pt;}
.ws3_c00203{word-spacing:0.000000pt;}
._17_c00203{margin-left:-21.312000pt;}
._13_c00203{margin-left:-18.648000pt;}
._15_c00203{margin-left:-17.208000pt;}
._10_c00203{margin-left:-15.232000pt;}
._1f_c00203{margin-left:-14.000000pt;}
._d_c00203{margin-left:-12.096000pt;}
._1a_c00203{margin-left:-10.944000pt;}
._0_c00203{margin-left:-9.648000pt;}
._11_c00203{margin-left:-8.085333pt;}
._20_c00203{margin-left:-6.928000pt;}
._12_c00203{margin-left:-5.904000pt;}
._4_c00203{margin-left:-4.464000pt;}
._8_c00203{margin-left:-3.312000pt;}
._7_c00203{margin-left:-1.728000pt;}
._5_c00203{width:1.584000pt;}
._2_c00203{width:2.952000pt;}
._3_c00203{width:4.608000pt;}
._6_c00203{width:6.336000pt;}
._14_c00203{width:7.754667pt;}
._e_c00203{width:8.928000pt;}
._9_c00203{width:9.864000pt;}
._c_c00203{width:11.016000pt;}
._a_c00203{width:11.952000pt;}
._1b_c00203{width:13.392000pt;}
._22_c00203{width:15.624000pt;}
._1c_c00203{width:19.224000pt;}
._b_c00203{width:40.896000pt;}
._1d_c00203{width:49.008000pt;}
._26_c00203{width:53.829333pt;}
._18_c00203{width:66.528000pt;}
._21_c00203{width:135.405333pt;}
._1_c00203{width:143.352000pt;}
._25_c00203{width:158.706667pt;}
._16_c00203{width:176.904000pt;}
._23_c00203{width:190.010667pt;}
._19_c00203{width:196.488000pt;}
._1e_c00203{width:238.626667pt;}
._f_c00203{width:251.445333pt;}
._24_c00203{width:440.874667pt;}
.fs3_c00203{font-size:42.666667pt;}
.fs1_c00203{font-size:64.000000pt;}
.fs0_c00203{font-size:72.000000pt;}
.fs2_c00203{font-size:77.333333pt;}
.y0_c00203{bottom:0.000000pt;}
.y25_c00203{bottom:2.760000pt;}
.y24_c00203{bottom:6.425206pt;}
.y23_c00203{bottom:67.893333pt;}
.y22_c00203{bottom:91.493333pt;}
.y21_c00203{bottom:114.026667pt;}
.y20_c00203{bottom:138.293333pt;}
.y1f_c00203{bottom:157.226667pt;}
.y1e_c00203{bottom:179.760000pt;}
.y1d_c00203{bottom:201.626667pt;}
.y1c_c00203{bottom:222.960000pt;}
.y1b_c00203{bottom:245.093333pt;}
.y1a_c00203{bottom:266.160000pt;}
.y19_c00203{bottom:286.160000pt;}
.y18_c00203{bottom:308.426667pt;}
.y17_c00203{bottom:330.560000pt;}
.y16_c00203{bottom:351.626667pt;}
.y15_c00203{bottom:373.626667pt;}
.y14_c00203{bottom:394.560000pt;}
.y13_c00203{bottom:415.493333pt;}
.y12_c00203{bottom:436.826667pt;}
.y11_c00203{bottom:458.160000pt;}
.y10_c00203{bottom:479.493333pt;}
.yf_c00203{bottom:500.960000pt;}
.ye_c00203{bottom:522.026667pt;}
.yd_c00203{bottom:543.626667pt;}
.yc_c00203{bottom:565.226667pt;}
.yb_c00203{bottom:586.426667pt;}
.ya_c00203{bottom:607.760000pt;}
.y9_c00203{bottom:629.093333pt;}
.y8_c00203{bottom:650.693333pt;}
.y7_c00203{bottom:673.226667pt;}
.y6_c00203{bottom:693.093333pt;}
.y5_c00203{bottom:716.426667pt;}
.y4_c00203{bottom:735.893333pt;}
.y3_c00203{bottom:757.226667pt;}
.y2_c00203{bottom:779.360000pt;}
.y1_c00203{bottom:799.760000pt;}
.h5_c00203{height:11.733399pt;}
.h6_c00203{height:38.937500pt;}
.h1_c00203{height:70.664062pt;}
.h2_c00203{height:74.906250pt;}
.h3_c00203{height:81.031250pt;}
.h4_c00203{height:81.045333pt;}
.h0_c00203{height:884.666667pt;}
.w2_c00203{width:93.222667pt;}
.w0_c00203{width:593.266667pt;}
.w1_c00203{width:593.333333pt;}
.x0_c00203{left:0.000000pt;}
.xb_c00203{left:21.866667pt;}
.x8_c00203{left:23.466667pt;}
.x2_c00203{left:27.600000pt;}
.x5_c00203{left:30.666667pt;}
.x4_c00203{left:59.466667pt;}
.x1_c00203{left:68.933333pt;}
.x9_c00203{left:110.133333pt;}
.x6_c00203{left:111.600000pt;}
.x3_c00203{left:112.533333pt;}
.x7_c00203{left:113.466667pt;}
.xa_c00203{left:132.266667pt;}
.xc_c00203{left:224.400000pt;}
.xe_c00203{left:253.801554pt;}
.xd_c00203{left:513.200000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_2e0a095ded38356539ca0b30.woff2')format("woff");}.ff1_c00204{font-family:ff1_c00204;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00204;src:url('chunks/assets/font_a2e64d5bedeb8b9768c425ec.woff2')format("woff");}.ff2_c00204{font-family:ff2_c00204;line-height:1.311035;font-style:normal;font-weight:normal;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_e8649eb0a18f2d8147c94228.woff2')format("woff");}.ff3_c00204{font-family:ff3_c00204;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00204;src:url('chunks/assets/font_f45159a8a7ddcfea3e29a340.woff2')format("woff");}.ff4_c00204{font-family:ff4_c00204;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00204;src:url('chunks/assets/font_77b3e003b1e057b395352e5d.woff2')format("woff");}.ff5_c00204{font-family:ff5_c00204;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00204;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff6_c00204{font-family:ff6_c00204;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00204;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c00204{font-family:ff7_c00204;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00204{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00204{vertical-align:0.000000px;}
.ls4_c00204{letter-spacing:0.000000px;}
.ls2_c00204{letter-spacing:1.080000px;}
.ls1_c00204{letter-spacing:3.000000px;}
.ls3_c00204{letter-spacing:5.808000px;}
.ls0_c00204{letter-spacing:7.500000px;}
.sc__c00204{text-shadow:none;}
.sc0_c00204{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00204{-webkit-text-stroke:0px transparent;}
.sc0_c00204{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00204{word-spacing:-17.352000px;}
.ws1_c00204{word-spacing:-17.250000px;}
.ws3_c00204{word-spacing:-5.337000px;}
.ws2_c00204{word-spacing:-4.053000px;}
.ws5_c00204{word-spacing:0.000000px;}
.ws4_c00204{word-spacing:0.969000px;}
._14_c00204{margin-left:-22.932000px;}
._b_c00204{margin-left:-20.706000px;}
._7_c00204{margin-left:-16.626000px;}
._12_c00204{margin-left:-14.520000px;}
._11_c00204{margin-left:-13.326000px;}
._1e_c00204{margin-left:-12.150000px;}
._1b_c00204{margin-left:-10.782000px;}
._d_c00204{margin-left:-9.384000px;}
._8_c00204{margin-left:-8.262000px;}
._9_c00204{margin-left:-6.630000px;}
._a_c00204{margin-left:-5.304000px;}
._1c_c00204{margin-left:-4.185000px;}
._2_c00204{margin-left:-3.060000px;}
._13_c00204{margin-left:-1.449000px;}
._16_c00204{width:1.407000px;}
._1_c00204{width:2.448000px;}
._c_c00204{width:3.468000px;}
._f_c00204{width:4.488000px;}
._e_c00204{width:5.508000px;}
._0_c00204{width:6.630000px;}
._10_c00204{width:7.722000px;}
._6_c00204{width:8.772000px;}
._15_c00204{width:10.326000px;}
._3_c00204{width:11.628000px;}
._4_c00204{width:13.056000px;}
._5_c00204{width:14.994000px;}
._27_c00204{width:16.110000px;}
._29_c00204{width:17.151000px;}
._18_c00204{width:18.873000px;}
._2a_c00204{width:22.902000px;}
._2f_c00204{width:33.576000px;}
._1f_c00204{width:39.915000px;}
._19_c00204{width:46.656000px;}
._2d_c00204{width:52.002000px;}
._1a_c00204{width:53.865000px;}
._25_c00204{width:63.924000px;}
._2c_c00204{width:65.325000px;}
._22_c00204{width:73.260000px;}
._2b_c00204{width:75.720000px;}
._1d_c00204{width:80.820000px;}
._24_c00204{width:88.878000px;}
._26_c00204{width:102.345000px;}
._28_c00204{width:165.546000px;}
._17_c00204{width:174.243000px;}
._2e_c00204{width:215.358000px;}
._20_c00204{width:265.953000px;}
._21_c00204{width:547.164000px;}
._23_c00204{width:805.842000px;}
.fc2_c00204{color:transparent;}
.fc1_c00204{color:rgb(128,128,128);}
.fc0_c00204{color:rgb(0,0,0);}
.fs6_c00204{font-size:48.000000px;}
.fs5_c00204{font-size:57.000000px;}
.fs1_c00204{font-size:66.000000px;}
.fs4_c00204{font-size:72.000000px;}
.fs2_c00204{font-size:81.000000px;}
.fs3_c00204{font-size:87.000000px;}
.fs0_c00204{font-size:102.000000px;}
.y0_c00204{bottom:0.000000px;}
.y27_c00204{bottom:3.105000px;}
.y26_c00204{bottom:7.228371px;}
.y25_c00204{bottom:65.865000px;}
.y24_c00204{bottom:92.565000px;}
.y23_c00204{bottom:117.765000px;}
.y22_c00204{bottom:142.515000px;}
.y21_c00204{bottom:166.365000px;}
.y20_c00204{bottom:191.115000px;}
.y1f_c00204{bottom:215.115000px;}
.y1e_c00204{bottom:238.365000px;}
.y1d_c00204{bottom:261.615000px;}
.y1c_c00204{bottom:288.015000px;}
.y1b_c00204{bottom:312.165000px;}
.y1a_c00204{bottom:335.865000px;}
.y19_c00204{bottom:360.165000px;}
.y18_c00204{bottom:383.715000px;}
.y17_c00204{bottom:408.465000px;}
.y16_c00204{bottom:432.015000px;}
.y15_c00204{bottom:456.315000px;}
.y14_c00204{bottom:481.065000px;}
.y13_c00204{bottom:504.315000px;}
.y12_c00204{bottom:529.515000px;}
.y11_c00204{bottom:553.215000px;}
.y10_c00204{bottom:576.915000px;}
.yf_c00204{bottom:600.765000px;}
.ye_c00204{bottom:624.015000px;}
.yd_c00204{bottom:648.315000px;}
.yc_c00204{bottom:661.815000px;}
.yb_c00204{bottom:673.665000px;}
.ya_c00204{bottom:696.915000px;}
.y9_c00204{bottom:720.615000px;}
.y8_c00204{bottom:744.615000px;}
.y7_c00204{bottom:768.465000px;}
.y6_c00204{bottom:792.765000px;}
.y5_c00204{bottom:817.515000px;}
.y4_c00204{bottom:841.515000px;}
.y3_c00204{bottom:865.665000px;}
.y2_c00204{bottom:890.115000px;}
.y1_c00204{bottom:924.765000px;}
.h7_c00204{height:13.200074px;}
.h8_c00204{height:43.804688px;}
.h3_c00204{height:79.497070px;}
.h5_c00204{height:84.269531px;}
.h6_c00204{height:91.160156px;}
.h4_c00204{height:91.176000px;}
.h2_c00204{height:100.057617px;}
.h0_c00204{height:989.025000px;}
.h1_c00204{height:989.250000px;}
.w1_c00204{width:104.875500px;}
.w0_c00204{width:672.000000px;}
.x0_c00204{left:0.000000px;}
.x1_c00204{left:48.900000px;}
.x2_c00204{left:49.950000px;}
.x3_c00204{left:51.000000px;}
.x4_c00204{left:52.050000px;}
.x5_c00204{left:55.050000px;}
.x6_c00204{left:56.700000px;}
.x8_c00204{left:57.750000px;}
.x9_c00204{left:59.850000px;}
.xa_c00204{left:61.800000px;}
.x7_c00204{left:63.000000px;}
.xb_c00204{left:64.800000px;}
.xc_c00204{left:65.850000px;}
.xd_c00204{left:67.800000px;}
.xe_c00204{left:69.150000px;}
.xf_c00204{left:70.650000px;}
.x11_c00204{left:287.814240px;}
.x10_c00204{left:523.500000px;}
@media print{
.v0_c00204{vertical-align:0.000000pt;}
.ls4_c00204{letter-spacing:0.000000pt;}
.ls2_c00204{letter-spacing:0.960000pt;}
.ls1_c00204{letter-spacing:2.666667pt;}
.ls3_c00204{letter-spacing:5.162667pt;}
.ls0_c00204{letter-spacing:6.666667pt;}
.ws0_c00204{word-spacing:-15.424000pt;}
.ws1_c00204{word-spacing:-15.333333pt;}
.ws3_c00204{word-spacing:-4.744000pt;}
.ws2_c00204{word-spacing:-3.602667pt;}
.ws5_c00204{word-spacing:0.000000pt;}
.ws4_c00204{word-spacing:0.861333pt;}
._14_c00204{margin-left:-20.384000pt;}
._b_c00204{margin-left:-18.405333pt;}
._7_c00204{margin-left:-14.778667pt;}
._12_c00204{margin-left:-12.906667pt;}
._11_c00204{margin-left:-11.845333pt;}
._1e_c00204{margin-left:-10.800000pt;}
._1b_c00204{margin-left:-9.584000pt;}
._d_c00204{margin-left:-8.341333pt;}
._8_c00204{margin-left:-7.344000pt;}
._9_c00204{margin-left:-5.893333pt;}
._a_c00204{margin-left:-4.714667pt;}
._1c_c00204{margin-left:-3.720000pt;}
._2_c00204{margin-left:-2.720000pt;}
._13_c00204{margin-left:-1.288000pt;}
._16_c00204{width:1.250667pt;}
._1_c00204{width:2.176000pt;}
._c_c00204{width:3.082667pt;}
._f_c00204{width:3.989333pt;}
._e_c00204{width:4.896000pt;}
._0_c00204{width:5.893333pt;}
._10_c00204{width:6.864000pt;}
._6_c00204{width:7.797333pt;}
._15_c00204{width:9.178667pt;}
._3_c00204{width:10.336000pt;}
._4_c00204{width:11.605333pt;}
._5_c00204{width:13.328000pt;}
._27_c00204{width:14.320000pt;}
._29_c00204{width:15.245333pt;}
._18_c00204{width:16.776000pt;}
._2a_c00204{width:20.357333pt;}
._2f_c00204{width:29.845333pt;}
._1f_c00204{width:35.480000pt;}
._19_c00204{width:41.472000pt;}
._2d_c00204{width:46.224000pt;}
._1a_c00204{width:47.880000pt;}
._25_c00204{width:56.821333pt;}
._2c_c00204{width:58.066667pt;}
._22_c00204{width:65.120000pt;}
._2b_c00204{width:67.306667pt;}
._1d_c00204{width:71.840000pt;}
._24_c00204{width:79.002667pt;}
._26_c00204{width:90.973333pt;}
._28_c00204{width:147.152000pt;}
._17_c00204{width:154.882667pt;}
._2e_c00204{width:191.429333pt;}
._20_c00204{width:236.402667pt;}
._21_c00204{width:486.368000pt;}
._23_c00204{width:716.304000pt;}
.fs6_c00204{font-size:42.666667pt;}
.fs5_c00204{font-size:50.666667pt;}
.fs1_c00204{font-size:58.666667pt;}
.fs4_c00204{font-size:64.000000pt;}
.fs2_c00204{font-size:72.000000pt;}
.fs3_c00204{font-size:77.333333pt;}
.fs0_c00204{font-size:90.666667pt;}
.y0_c00204{bottom:0.000000pt;}
.y27_c00204{bottom:2.760000pt;}
.y26_c00204{bottom:6.425219pt;}
.y25_c00204{bottom:58.546667pt;}
.y24_c00204{bottom:82.280000pt;}
.y23_c00204{bottom:104.680000pt;}
.y22_c00204{bottom:126.680000pt;}
.y21_c00204{bottom:147.880000pt;}
.y20_c00204{bottom:169.880000pt;}
.y1f_c00204{bottom:191.213333pt;}
.y1e_c00204{bottom:211.880000pt;}
.y1d_c00204{bottom:232.546667pt;}
.y1c_c00204{bottom:256.013333pt;}
.y1b_c00204{bottom:277.480000pt;}
.y1a_c00204{bottom:298.546667pt;}
.y19_c00204{bottom:320.146667pt;}
.y18_c00204{bottom:341.080000pt;}
.y17_c00204{bottom:363.080000pt;}
.y16_c00204{bottom:384.013333pt;}
.y15_c00204{bottom:405.613333pt;}
.y14_c00204{bottom:427.613333pt;}
.y13_c00204{bottom:448.280000pt;}
.y12_c00204{bottom:470.680000pt;}
.y11_c00204{bottom:491.746667pt;}
.y10_c00204{bottom:512.813333pt;}
.yf_c00204{bottom:534.013333pt;}
.ye_c00204{bottom:554.680000pt;}
.yd_c00204{bottom:576.280000pt;}
.yc_c00204{bottom:588.280000pt;}
.yb_c00204{bottom:598.813333pt;}
.ya_c00204{bottom:619.480000pt;}
.y9_c00204{bottom:640.546667pt;}
.y8_c00204{bottom:661.880000pt;}
.y7_c00204{bottom:683.080000pt;}
.y6_c00204{bottom:704.680000pt;}
.y5_c00204{bottom:726.680000pt;}
.y4_c00204{bottom:748.013333pt;}
.y3_c00204{bottom:769.480000pt;}
.y2_c00204{bottom:791.213333pt;}
.y1_c00204{bottom:822.013333pt;}
.h7_c00204{height:11.733399pt;}
.h8_c00204{height:38.937500pt;}
.h3_c00204{height:70.664062pt;}
.h5_c00204{height:74.906250pt;}
.h6_c00204{height:81.031250pt;}
.h4_c00204{height:81.045333pt;}
.h2_c00204{height:88.940104pt;}
.h0_c00204{height:879.133333pt;}
.h1_c00204{height:879.333333pt;}
.w1_c00204{width:93.222667pt;}
.w0_c00204{width:597.333333pt;}
.x0_c00204{left:0.000000pt;}
.x1_c00204{left:43.466667pt;}
.x2_c00204{left:44.400000pt;}
.x3_c00204{left:45.333333pt;}
.x4_c00204{left:46.266667pt;}
.x5_c00204{left:48.933333pt;}
.x6_c00204{left:50.400000pt;}
.x8_c00204{left:51.333333pt;}
.x9_c00204{left:53.200000pt;}
.xa_c00204{left:54.933333pt;}
.x7_c00204{left:56.000000pt;}
.xb_c00204{left:57.600000pt;}
.xc_c00204{left:58.533333pt;}
.xd_c00204{left:60.266667pt;}
.xe_c00204{left:61.466667pt;}
.xf_c00204{left:62.800000pt;}
.x11_c00204{left:255.834880pt;}
.x10_c00204{left:465.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ea6e99cf47e33a0a0e94ef89.woff2')format("woff");}.ff1_c00205{font-family:ff1_c00205;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00205;src:url('chunks/assets/font_496f4d7e7147118c3b5db5ca.woff2')format("woff");}.ff2_c00205{font-family:ff2_c00205;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00205;src:url('chunks/assets/font_dd4686100070efe6507f7ddf.woff2')format("woff");}.ff3_c00205{font-family:ff3_c00205;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00205;src:url('chunks/assets/font_7accf623fb094a63973308e0.woff2')format("woff");}.ff4_c00205{font-family:ff4_c00205;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00205;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c00205{font-family:ff5_c00205;line-height:1.219238;font-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_c00205{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,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;}
.ls0_c00205{letter-spacing:0.000000px;}
.sc__c00205{text-shadow:none;}
.sc0_c00205{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00205{-webkit-text-stroke:0px transparent;}
.sc0_c00205{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00205{word-spacing:-27.000000px;}
.ws2_c00205{word-spacing:-20.250000px;}
.ws1_c00205{word-spacing:-18.798000px;}
.ws0_c00205{word-spacing:-17.352000px;}
.ws4_c00205{word-spacing:0.000000px;}
._b_c00205{margin-left:-22.617000px;}
._1a_c00205{margin-left:-18.306000px;}
._d_c00205{margin-left:-14.238000px;}
._f_c00205{margin-left:-12.483000px;}
._1d_c00205{margin-left:-10.758000px;}
._16_c00205{margin-left:-8.667000px;}
._11_c00205{margin-left:-7.290000px;}
._1_c00205{margin-left:-5.616000px;}
._19_c00205{margin-left:-4.473000px;}
._0_c00205{margin-left:-3.240000px;}
._4_c00205{margin-left:-2.088000px;}
._a_c00205{margin-left:-1.053000px;}
._5_c00205{width:1.251000px;}
._6_c00205{width:2.439000px;}
._2_c00205{width:3.456000px;}
._c_c00205{width:4.689000px;}
._8_c00205{width:5.859000px;}
._9_c00205{width:7.776000px;}
._10_c00205{width:9.693000px;}
._14_c00205{width:11.421000px;}
._13_c00205{width:12.465000px;}
._15_c00205{width:13.851000px;}
._7_c00205{width:15.147000px;}
._1e_c00205{width:17.091000px;}
._1f_c00205{width:20.133000px;}
._18_c00205{width:21.630000px;}
._12_c00205{width:28.458000px;}
._3_c00205{width:37.584000px;}
._1c_c00205{width:121.893000px;}
._1b_c00205{width:142.722000px;}
._20_c00205{width:153.012000px;}
._21_c00205{width:163.755000px;}
._e_c00205{width:237.735000px;}
._17_c00205{width:251.910000px;}
.fc2_c00205{color:transparent;}
.fc1_c00205{color:rgb(128,128,128);}
.fc0_c00205{color:rgb(0,0,0);}
.fs5_c00205{font-size:48.000000px;}
.fs3_c00205{font-size:57.000000px;}
.fs0_c00205{font-size:72.000000px;}
.fs2_c00205{font-size:78.000000px;}
.fs1_c00205{font-size:81.000000px;}
.fs4_c00205{font-size:108.000000px;}
.y0_c00205{bottom:0.000000px;}
.y25_c00205{bottom:3.105000px;}
.y24_c00205{bottom:7.228357px;}
.y23_c00205{bottom:76.230000px;}
.y22_c00205{bottom:98.280000px;}
.y21_c00205{bottom:123.930000px;}
.y20_c00205{bottom:148.830000px;}
.y1f_c00205{bottom:173.130000px;}
.y1e_c00205{bottom:197.730000px;}
.y1d_c00205{bottom:222.180000px;}
.y1c_c00205{bottom:246.330000px;}
.y1b_c00205{bottom:270.780000px;}
.y1a_c00205{bottom:298.080000px;}
.y19_c00205{bottom:318.930000px;}
.y18_c00205{bottom:344.280000px;}
.y17_c00205{bottom:367.530000px;}
.y16_c00205{bottom:393.930000px;}
.y15_c00205{bottom:416.430000px;}
.y14_c00205{bottom:439.830000px;}
.y13_c00205{bottom:463.080000px;}
.y12_c00205{bottom:487.080000px;}
.y11_c00205{bottom:511.980000px;}
.y10_c00205{bottom:535.980000px;}
.yf_c00205{bottom:559.680000px;}
.ye_c00205{bottom:583.980000px;}
.yd_c00205{bottom:607.530000px;}
.yc_c00205{bottom:632.130000px;}
.yb_c00205{bottom:656.880000px;}
.ya_c00205{bottom:682.380000px;}
.y9_c00205{bottom:704.130000px;}
.y8_c00205{bottom:727.980000px;}
.y7_c00205{bottom:754.380000px;}
.y6_c00205{bottom:775.680000px;}
.y5_c00205{bottom:799.830000px;}
.y4_c00205{bottom:824.130000px;}
.y3_c00205{bottom:848.580000px;}
.y2_c00205{bottom:872.430000px;}
.y1_c00205{bottom:896.130000px;}
.h6_c00205{height:13.200074px;}
.h7_c00205{height:43.804688px;}
.h2_c00205{height:79.497070px;}
.h1_c00205{height:84.269531px;}
.h4_c00205{height:91.160156px;}
.h3_c00205{height:98.756836px;}
.h5_c00205{height:108.843750px;}
.h0_c00205{height:995.250000px;}
.w2_c00205{width:104.875500px;}
.w0_c00205{width:667.425000px;}
.w1_c00205{width:667.500000px;}
.x0_c00205{left:0.000000px;}
.x6_c00205{left:24.900000px;}
.xb_c00205{left:26.700000px;}
.x4_c00205{left:28.050000px;}
.x2_c00205{left:30.750000px;}
.x1_c00205{left:31.950000px;}
.x7_c00205{left:71.550000px;}
.xd_c00205{left:112.050000px;}
.xc_c00205{left:113.100000px;}
.x8_c00205{left:114.300000px;}
.x5_c00205{left:115.800000px;}
.xa_c00205{left:117.150000px;}
.x3_c00205{left:119.400000px;}
.x9_c00205{left:120.450000px;}
.xe_c00205{left:154.200000px;}
.xf_c00205{left:283.500000px;}
.x14_c00205{left:285.526749px;}
.x10_c00205{left:390.150000px;}
.x11_c00205{left:474.750000px;}
.x12_c00205{left:503.850000px;}
.x13_c00205{left:535.950000px;}
@media print{
.v0_c00205{vertical-align:0.000000pt;}
.ls0_c00205{letter-spacing:0.000000pt;}
.ws3_c00205{word-spacing:-24.000000pt;}
.ws2_c00205{word-spacing:-18.000000pt;}
.ws1_c00205{word-spacing:-16.709333pt;}
.ws0_c00205{word-spacing:-15.424000pt;}
.ws4_c00205{word-spacing:0.000000pt;}
._b_c00205{margin-left:-20.104000pt;}
._1a_c00205{margin-left:-16.272000pt;}
._d_c00205{margin-left:-12.656000pt;}
._f_c00205{margin-left:-11.096000pt;}
._1d_c00205{margin-left:-9.562667pt;}
._16_c00205{margin-left:-7.704000pt;}
._11_c00205{margin-left:-6.480000pt;}
._1_c00205{margin-left:-4.992000pt;}
._19_c00205{margin-left:-3.976000pt;}
._0_c00205{margin-left:-2.880000pt;}
._4_c00205{margin-left:-1.856000pt;}
._a_c00205{margin-left:-0.936000pt;}
._5_c00205{width:1.112000pt;}
._6_c00205{width:2.168000pt;}
._2_c00205{width:3.072000pt;}
._c_c00205{width:4.168000pt;}
._8_c00205{width:5.208000pt;}
._9_c00205{width:6.912000pt;}
._10_c00205{width:8.616000pt;}
._14_c00205{width:10.152000pt;}
._13_c00205{width:11.080000pt;}
._15_c00205{width:12.312000pt;}
._7_c00205{width:13.464000pt;}
._1e_c00205{width:15.192000pt;}
._1f_c00205{width:17.896000pt;}
._18_c00205{width:19.226667pt;}
._12_c00205{width:25.296000pt;}
._3_c00205{width:33.408000pt;}
._1c_c00205{width:108.349333pt;}
._1b_c00205{width:126.864000pt;}
._20_c00205{width:136.010667pt;}
._21_c00205{width:145.560000pt;}
._e_c00205{width:211.320000pt;}
._17_c00205{width:223.920000pt;}
.fs5_c00205{font-size:42.666667pt;}
.fs3_c00205{font-size:50.666667pt;}
.fs0_c00205{font-size:64.000000pt;}
.fs2_c00205{font-size:69.333333pt;}
.fs1_c00205{font-size:72.000000pt;}
.fs4_c00205{font-size:96.000000pt;}
.y0_c00205{bottom:0.000000pt;}
.y25_c00205{bottom:2.760000pt;}
.y24_c00205{bottom:6.425206pt;}
.y23_c00205{bottom:67.760000pt;}
.y22_c00205{bottom:87.360000pt;}
.y21_c00205{bottom:110.160000pt;}
.y20_c00205{bottom:132.293333pt;}
.y1f_c00205{bottom:153.893333pt;}
.y1e_c00205{bottom:175.760000pt;}
.y1d_c00205{bottom:197.493333pt;}
.y1c_c00205{bottom:218.960000pt;}
.y1b_c00205{bottom:240.693333pt;}
.y1a_c00205{bottom:264.960000pt;}
.y19_c00205{bottom:283.493333pt;}
.y18_c00205{bottom:306.026667pt;}
.y17_c00205{bottom:326.693333pt;}
.y16_c00205{bottom:350.160000pt;}
.y15_c00205{bottom:370.160000pt;}
.y14_c00205{bottom:390.960000pt;}
.y13_c00205{bottom:411.626667pt;}
.y12_c00205{bottom:432.960000pt;}
.y11_c00205{bottom:455.093333pt;}
.y10_c00205{bottom:476.426667pt;}
.yf_c00205{bottom:497.493333pt;}
.ye_c00205{bottom:519.093333pt;}
.yd_c00205{bottom:540.026667pt;}
.yc_c00205{bottom:561.893333pt;}
.yb_c00205{bottom:583.893333pt;}
.ya_c00205{bottom:606.560000pt;}
.y9_c00205{bottom:625.893333pt;}
.y8_c00205{bottom:647.093333pt;}
.y7_c00205{bottom:670.560000pt;}
.y6_c00205{bottom:689.493333pt;}
.y5_c00205{bottom:710.960000pt;}
.y4_c00205{bottom:732.560000pt;}
.y3_c00205{bottom:754.293333pt;}
.y2_c00205{bottom:775.493333pt;}
.y1_c00205{bottom:796.560000pt;}
.h6_c00205{height:11.733399pt;}
.h7_c00205{height:38.937500pt;}
.h2_c00205{height:70.664062pt;}
.h1_c00205{height:74.906250pt;}
.h4_c00205{height:81.031250pt;}
.h3_c00205{height:87.783854pt;}
.h5_c00205{height:96.750000pt;}
.h0_c00205{height:884.666667pt;}
.w2_c00205{width:93.222667pt;}
.w0_c00205{width:593.266667pt;}
.w1_c00205{width:593.333333pt;}
.x0_c00205{left:0.000000pt;}
.x6_c00205{left:22.133333pt;}
.xb_c00205{left:23.733333pt;}
.x4_c00205{left:24.933333pt;}
.x2_c00205{left:27.333333pt;}
.x1_c00205{left:28.400000pt;}
.x7_c00205{left:63.600000pt;}
.xd_c00205{left:99.600000pt;}
.xc_c00205{left:100.533333pt;}
.x8_c00205{left:101.600000pt;}
.x5_c00205{left:102.933333pt;}
.xa_c00205{left:104.133333pt;}
.x3_c00205{left:106.133333pt;}
.x9_c00205{left:107.066667pt;}
.xe_c00205{left:137.066667pt;}
.xf_c00205{left:252.000000pt;}
.x14_c00205{left:253.801554pt;}
.x10_c00205{left:346.800000pt;}
.x11_c00205{left:422.000000pt;}
.x12_c00205{left:447.866667pt;}
.x13_c00205{left:476.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_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_b4679ca06679b4820d4ec83a.woff2')format("woff");}.ff1_c00206{font-family:ff1_c00206;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00206;src:url('chunks/assets/font_a6417d88842e9886ade98e9c.woff2')format("woff");}.ff2_c00206{font-family:ff2_c00206;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00206;src:url('chunks/assets/font_8b0bdc079c9cadd73ac75ea6.woff2')format("woff");}.ff3_c00206{font-family:ff3_c00206;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00206;src:url('chunks/assets/font_c9f6a5dd32f6d1f9ee53334c.woff2')format("woff");}.ff4_c00206{font-family:ff4_c00206;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00206;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff5_c00206{font-family:ff5_c00206;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00206;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c00206{font-family:ff6_c00206;line-height:1.219238;font-style: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);}
.v1_c00206{vertical-align:-99.600000px;}
.v0_c00206{vertical-align:0.000000px;}
.ls1_c00206{letter-spacing:0.000000px;}
.ls0_c00206{letter-spacing:0.600000px;}
.ls2_c00206{letter-spacing:6.000000px;}
.sc__c00206{text-shadow:none;}
.sc0_c00206{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00206{-webkit-text-stroke:0px transparent;}
.sc0_c00206{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00206{word-spacing:-25.500000px;}
.ws1_c00206{word-spacing:-17.352000px;}
.ws3_c00206{word-spacing:0.000000px;}
.ws2_c00206{word-spacing:11.592000px;}
._e_c00206{margin-left:-23.895000px;}
._19_c00206{margin-left:-20.244000px;}
._12_c00206{margin-left:-18.306000px;}
._13_c00206{margin-left:-10.611000px;}
._4_c00206{margin-left:-8.259000px;}
._9_c00206{margin-left:-7.242000px;}
._b_c00206{margin-left:-5.712000px;}
._3_c00206{margin-left:-4.350000px;}
._10_c00206{margin-left:-3.141000px;}
._a_c00206{margin-left:-1.860000px;}
._1_c00206{width:1.194000px;}
._2_c00206{width:2.523000px;}
._0_c00206{width:3.672000px;}
._c_c00206{width:5.103000px;}
._d_c00206{width:6.549000px;}
._1a_c00206{width:7.557000px;}
._7_c00206{width:8.568000px;}
._17_c00206{width:9.837000px;}
._16_c00206{width:11.487000px;}
._5_c00206{width:12.750000px;}
._6_c00206{width:14.280000px;}
._8_c00206{width:15.300000px;}
._1b_c00206{width:17.424000px;}
._15_c00206{width:21.312000px;}
._f_c00206{width:24.438000px;}
._18_c00206{width:26.244000px;}
._14_c00206{width:33.678000px;}
._1c_c00206{width:35.676000px;}
._11_c00206{width:38.097000px;}
._1d_c00206{width:910.722000px;}
.fc2_c00206{color:transparent;}
.fc1_c00206{color:rgb(128,128,128);}
.fc0_c00206{color:rgb(0,0,0);}
.fs4_c00206{font-size:27.000000px;}
.fs6_c00206{font-size:48.000000px;}
.fs5_c00206{font-size:66.000000px;}
.fs3_c00206{font-size:72.000000px;}
.fs2_c00206{font-size:81.000000px;}
.fs1_c00206{font-size:87.000000px;}
.fs0_c00206{font-size:102.000000px;}
.y0_c00206{bottom:0.000000px;}
.y25_c00206{bottom:3.105000px;}
.y24_c00206{bottom:7.228363px;}
.y23_c00206{bottom:80.700000px;}
.y22_c00206{bottom:105.300000px;}
.y21_c00206{bottom:129.300000px;}
.y20_c00206{bottom:154.200000px;}
.y1f_c00206{bottom:177.600000px;}
.y1e_c00206{bottom:201.900000px;}
.y1d_c00206{bottom:225.900000px;}
.y1c_c00206{bottom:250.200000px;}
.y1b_c00206{bottom:274.350000px;}
.y1a_c00206{bottom:298.350000px;}
.y19_c00206{bottom:322.050000px;}
.y18_c00206{bottom:345.900000px;}
.y17_c00206{bottom:369.600000px;}
.y16_c00206{bottom:393.900000px;}
.y15_c00206{bottom:417.600000px;}
.y14_c00206{bottom:441.450000px;}
.y13_c00206{bottom:465.450000px;}
.y12_c00206{bottom:489.450000px;}
.y11_c00206{bottom:513.900000px;}
.y10_c00206{bottom:537.900000px;}
.yf_c00206{bottom:560.850000px;}
.ye_c00206{bottom:584.850000px;}
.yd_c00206{bottom:608.100000px;}
.yc_c00206{bottom:631.800000px;}
.yb_c00206{bottom:656.100000px;}
.ya_c00206{bottom:679.650000px;}
.y9_c00206{bottom:703.350000px;}
.y8_c00206{bottom:727.950000px;}
.y7_c00206{bottom:751.950000px;}
.y6_c00206{bottom:775.950000px;}
.y5_c00206{bottom:799.950000px;}
.y4_c00206{bottom:823.950000px;}
.y3_c00206{bottom:847.800000px;}
.y2_c00206{bottom:872.100000px;}
.y1_c00206{bottom:905.850000px;}
.h6_c00206{height:13.200074px;}
.h7_c00206{height:43.804688px;}
.h3_c00206{height:79.497070px;}
.h4_c00206{height:84.269531px;}
.h5_c00206{height:91.160156px;}
.h2_c00206{height:100.057617px;}
.h1_c00206{height:969.000000px;}
.h0_c00206{height:969.300000px;}
.w2_c00206{width:104.875500px;}
.w0_c00206{width:658.275000px;}
.w1_c00206{width:658.500000px;}
.x0_c00206{left:0.000000px;}
.x2_c00206{left:41.400000px;}
.x1_c00206{left:44.250000px;}
.x3_c00206{left:45.450000px;}
.x4_c00206{left:46.500000px;}
.x5_c00206{left:47.550000px;}
.x6_c00206{left:52.350000px;}
.x7_c00206{left:280.951767px;}
@media print{
.v1_c00206{vertical-align:-88.533333pt;}
.v0_c00206{vertical-align:0.000000pt;}
.ls1_c00206{letter-spacing:0.000000pt;}
.ls0_c00206{letter-spacing:0.533333pt;}
.ls2_c00206{letter-spacing:5.333333pt;}
.ws0_c00206{word-spacing:-22.666667pt;}
.ws1_c00206{word-spacing:-15.424000pt;}
.ws3_c00206{word-spacing:0.000000pt;}
.ws2_c00206{word-spacing:10.304000pt;}
._e_c00206{margin-left:-21.240000pt;}
._19_c00206{margin-left:-17.994667pt;}
._12_c00206{margin-left:-16.272000pt;}
._13_c00206{margin-left:-9.432000pt;}
._4_c00206{margin-left:-7.341333pt;}
._9_c00206{margin-left:-6.437333pt;}
._b_c00206{margin-left:-5.077333pt;}
._3_c00206{margin-left:-3.866667pt;}
._10_c00206{margin-left:-2.792000pt;}
._a_c00206{margin-left:-1.653333pt;}
._1_c00206{width:1.061333pt;}
._2_c00206{width:2.242667pt;}
._0_c00206{width:3.264000pt;}
._c_c00206{width:4.536000pt;}
._d_c00206{width:5.821333pt;}
._1a_c00206{width:6.717333pt;}
._7_c00206{width:7.616000pt;}
._17_c00206{width:8.744000pt;}
._16_c00206{width:10.210667pt;}
._5_c00206{width:11.333333pt;}
._6_c00206{width:12.693333pt;}
._8_c00206{width:13.600000pt;}
._1b_c00206{width:15.488000pt;}
._15_c00206{width:18.944000pt;}
._f_c00206{width:21.722667pt;}
._18_c00206{width:23.328000pt;}
._14_c00206{width:29.936000pt;}
._1c_c00206{width:31.712000pt;}
._11_c00206{width:33.864000pt;}
._1d_c00206{width:809.530667pt;}
.fs4_c00206{font-size:24.000000pt;}
.fs6_c00206{font-size:42.666667pt;}
.fs5_c00206{font-size:58.666667pt;}
.fs3_c00206{font-size:64.000000pt;}
.fs2_c00206{font-size:72.000000pt;}
.fs1_c00206{font-size:77.333333pt;}
.fs0_c00206{font-size:90.666667pt;}
.y0_c00206{bottom:0.000000pt;}
.y25_c00206{bottom:2.760000pt;}
.y24_c00206{bottom:6.425212pt;}
.y23_c00206{bottom:71.733333pt;}
.y22_c00206{bottom:93.600000pt;}
.y21_c00206{bottom:114.933333pt;}
.y20_c00206{bottom:137.066667pt;}
.y1f_c00206{bottom:157.866667pt;}
.y1e_c00206{bottom:179.466667pt;}
.y1d_c00206{bottom:200.800000pt;}
.y1c_c00206{bottom:222.400000pt;}
.y1b_c00206{bottom:243.866667pt;}
.y1a_c00206{bottom:265.200000pt;}
.y19_c00206{bottom:286.266667pt;}
.y18_c00206{bottom:307.466667pt;}
.y17_c00206{bottom:328.533333pt;}
.y16_c00206{bottom:350.133333pt;}
.y15_c00206{bottom:371.200000pt;}
.y14_c00206{bottom:392.400000pt;}
.y13_c00206{bottom:413.733333pt;}
.y12_c00206{bottom:435.066667pt;}
.y11_c00206{bottom:456.800000pt;}
.y10_c00206{bottom:478.133333pt;}
.yf_c00206{bottom:498.533333pt;}
.ye_c00206{bottom:519.866667pt;}
.yd_c00206{bottom:540.533333pt;}
.yc_c00206{bottom:561.600000pt;}
.yb_c00206{bottom:583.200000pt;}
.ya_c00206{bottom:604.133333pt;}
.y9_c00206{bottom:625.200000pt;}
.y8_c00206{bottom:647.066667pt;}
.y7_c00206{bottom:668.400000pt;}
.y6_c00206{bottom:689.733333pt;}
.y5_c00206{bottom:711.066667pt;}
.y4_c00206{bottom:732.400000pt;}
.y3_c00206{bottom:753.600000pt;}
.y2_c00206{bottom:775.200000pt;}
.y1_c00206{bottom:805.200000pt;}
.h6_c00206{height:11.733399pt;}
.h7_c00206{height:38.937500pt;}
.h3_c00206{height:70.664062pt;}
.h4_c00206{height:74.906250pt;}
.h5_c00206{height:81.031250pt;}
.h2_c00206{height:88.940104pt;}
.h1_c00206{height:861.333333pt;}
.h0_c00206{height:861.600000pt;}
.w2_c00206{width:93.222667pt;}
.w0_c00206{width:585.133333pt;}
.w1_c00206{width:585.333333pt;}
.x0_c00206{left:0.000000pt;}
.x2_c00206{left:36.800000pt;}
.x1_c00206{left:39.333333pt;}
.x3_c00206{left:40.400000pt;}
.x4_c00206{left:41.333333pt;}
.x5_c00206{left:42.266667pt;}
.x6_c00206{left:46.533333pt;}
.x7_c00206{left:249.734904pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5c3b56cc34f49959b2fac070.woff2')format("woff");}.ff1_c00207{font-family:ff1_c00207;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00207;src:url('chunks/assets/font_0114874d9d097f0975c901c1.woff2')format("woff");}.ff2_c00207{font-family:ff2_c00207;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00207;src:url('chunks/assets/font_41b9d9b124cf5703102c8218.woff2')format("woff");}.ff3_c00207{font-family:ff3_c00207;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00207;src:url('chunks/assets/font_980a6933439f5e7fe11248d5.woff2')format("woff");}.ff4_c00207{font-family:ff4_c00207;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00207;src:url('chunks/assets/font_14f814f858e8028f01ac8ba7.woff2')format("woff");}.ff5_c00207{font-family:ff5_c00207;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00207;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c00207{font-family:ff6_c00207;line-height:1.219238;font-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_c00207{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,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;}
.v1_c00207{vertical-align:159.000000px;}
.ls1_c00207{letter-spacing:0.000000px;}
.ls0_c00207{letter-spacing:9.450000px;}
.sc__c00207{text-shadow:none;}
.sc0_c00207{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00207{-webkit-text-stroke:0px transparent;}
.sc0_c00207{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00207{word-spacing:-27.000000px;}
.ws0_c00207{word-spacing:-17.352000px;}
.ws2_c00207{word-spacing:0.000000px;}
._1a_c00207{margin-left:-21.282000px;}
._2_c00207{margin-left:-13.572000px;}
._12_c00207{margin-left:-11.898000px;}
._1b_c00207{margin-left:-10.158000px;}
._16_c00207{margin-left:-8.913000px;}
._0_c00207{margin-left:-6.864000px;}
._d_c00207{margin-left:-5.517000px;}
._13_c00207{margin-left:-4.425000px;}
._f_c00207{margin-left:-3.192000px;}
._3_c00207{margin-left:-1.638000px;}
._5_c00207{width:1.038000px;}
._6_c00207{width:2.268000px;}
._7_c00207{width:3.750000px;}
._8_c00207{width:5.643000px;}
._9_c00207{width:7.194000px;}
._a_c00207{width:8.346000px;}
._e_c00207{width:9.588000px;}
._b_c00207{width:10.923000px;}
._10_c00207{width:12.603000px;}
._11_c00207{width:14.970000px;}
._c_c00207{width:16.176000px;}
._14_c00207{width:17.181000px;}
._4_c00207{width:31.686000px;}
._1_c00207{width:38.532000px;}
._15_c00207{width:167.766000px;}
._19_c00207{width:287.286000px;}
._18_c00207{width:331.836000px;}
._17_c00207{width:469.797000px;}
.fc2_c00207{color:transparent;}
.fc1_c00207{color:rgb(128,128,128);}
.fc0_c00207{color:rgb(0,0,0);}
.fs6_c00207{font-size:48.000000px;}
.fs1_c00207{font-size:57.000000px;}
.fs4_c00207{font-size:72.000000px;}
.fs0_c00207{font-size:78.000000px;}
.fs3_c00207{font-size:81.000000px;}
.fs5_c00207{font-size:108.000000px;}
.fs2_c00207{font-size:297.000000px;}
.y0_c00207{bottom:0.000000px;}
.y25_c00207{bottom:3.105000px;}
.y24_c00207{bottom:7.228357px;}
.y23_c00207{bottom:72.330000px;}
.y22_c00207{bottom:97.530000px;}
.y21_c00207{bottom:123.930000px;}
.y20_c00207{bottom:147.930000px;}
.y1f_c00207{bottom:172.230000px;}
.y1e_c00207{bottom:196.830000px;}
.y1d_c00207{bottom:220.830000px;}
.y1c_c00207{bottom:245.430000px;}
.y1b_c00207{bottom:270.030000px;}
.y1a_c00207{bottom:294.030000px;}
.y19_c00207{bottom:318.030000px;}
.y18_c00207{bottom:342.330000px;}
.y17_c00207{bottom:366.630000px;}
.y16_c00207{bottom:390.930000px;}
.y15_c00207{bottom:415.080000px;}
.y14_c00207{bottom:439.080000px;}
.y13_c00207{bottom:462.780000px;}
.y12_c00207{bottom:486.780000px;}
.y11_c00207{bottom:511.380000px;}
.y10_c00207{bottom:534.930000px;}
.yf_c00207{bottom:558.930000px;}
.ye_c00207{bottom:582.930000px;}
.yd_c00207{bottom:607.230000px;}
.yc_c00207{bottom:634.830000px;}
.yb_c00207{bottom:656.730000px;}
.ya_c00207{bottom:679.830000px;}
.y9_c00207{bottom:703.380000px;}
.y8_c00207{bottom:727.380000px;}
.y7_c00207{bottom:751.380000px;}
.y6_c00207{bottom:775.530000px;}
.y5_c00207{bottom:799.830000px;}
.y3_c00207{bottom:808.080000px;}
.y4_c00207{bottom:824.130000px;}
.y2_c00207{bottom:871.530000px;}
.y1_c00207{bottom:894.780000px;}
.h7_c00207{height:13.200074px;}
.h8_c00207{height:43.804688px;}
.h2_c00207{height:66.713379px;}
.h4_c00207{height:79.497070px;}
.h5_c00207{height:84.269531px;}
.h1_c00207{height:98.756836px;}
.h6_c00207{height:108.843750px;}
.h3_c00207{height:305.269199px;}
.h0_c00207{height:995.250000px;}
.w2_c00207{width:104.875500px;}
.w0_c00207{width:667.425000px;}
.w1_c00207{width:667.500000px;}
.x0_c00207{left:0.000000px;}
.xf_c00207{left:42.600000px;}
.xb_c00207{left:46.200000px;}
.x9_c00207{left:47.700000px;}
.xa_c00207{left:67.950000px;}
.x8_c00207{left:72.000000px;}
.x10_c00207{left:132.000000px;}
.xe_c00207{left:134.100000px;}
.xd_c00207{left:135.300000px;}
.xc_c00207{left:136.650000px;}
.x6_c00207{left:138.000000px;}
.x7_c00207{left:139.050000px;}
.x5_c00207{left:140.100000px;}
.x3_c00207{left:141.450000px;}
.x1_c00207{left:142.800000px;}
.x11_c00207{left:153.600000px;}
.x4_c00207{left:184.650000px;}
.x12_c00207{left:198.450000px;}
.x2_c00207{left:249.450000px;}
.x16_c00207{left:285.526749px;}
.x13_c00207{left:450.300000px;}
.x14_c00207{left:528.300000px;}
.x15_c00207{left:588.300000px;}
@media print{
.v0_c00207{vertical-align:0.000000pt;}
.v1_c00207{vertical-align:141.333333pt;}
.ls1_c00207{letter-spacing:0.000000pt;}
.ls0_c00207{letter-spacing:8.400000pt;}
.ws1_c00207{word-spacing:-24.000000pt;}
.ws0_c00207{word-spacing:-15.424000pt;}
.ws2_c00207{word-spacing:0.000000pt;}
._1a_c00207{margin-left:-18.917333pt;}
._2_c00207{margin-left:-12.064000pt;}
._12_c00207{margin-left:-10.576000pt;}
._1b_c00207{margin-left:-9.029333pt;}
._16_c00207{margin-left:-7.922667pt;}
._0_c00207{margin-left:-6.101333pt;}
._d_c00207{margin-left:-4.904000pt;}
._13_c00207{margin-left:-3.933333pt;}
._f_c00207{margin-left:-2.837333pt;}
._3_c00207{margin-left:-1.456000pt;}
._5_c00207{width:0.922667pt;}
._6_c00207{width:2.016000pt;}
._7_c00207{width:3.333333pt;}
._8_c00207{width:5.016000pt;}
._9_c00207{width:6.394667pt;}
._a_c00207{width:7.418667pt;}
._e_c00207{width:8.522667pt;}
._b_c00207{width:9.709333pt;}
._10_c00207{width:11.202667pt;}
._11_c00207{width:13.306667pt;}
._c_c00207{width:14.378667pt;}
._14_c00207{width:15.272000pt;}
._4_c00207{width:28.165333pt;}
._1_c00207{width:34.250667pt;}
._15_c00207{width:149.125333pt;}
._19_c00207{width:255.365333pt;}
._18_c00207{width:294.965333pt;}
._17_c00207{width:417.597333pt;}
.fs6_c00207{font-size:42.666667pt;}
.fs1_c00207{font-size:50.666667pt;}
.fs4_c00207{font-size:64.000000pt;}
.fs0_c00207{font-size:69.333333pt;}
.fs3_c00207{font-size:72.000000pt;}
.fs5_c00207{font-size:96.000000pt;}
.fs2_c00207{font-size:264.000000pt;}
.y0_c00207{bottom:0.000000pt;}
.y25_c00207{bottom:2.760000pt;}
.y24_c00207{bottom:6.425206pt;}
.y23_c00207{bottom:64.293333pt;}
.y22_c00207{bottom:86.693333pt;}
.y21_c00207{bottom:110.160000pt;}
.y20_c00207{bottom:131.493333pt;}
.y1f_c00207{bottom:153.093333pt;}
.y1e_c00207{bottom:174.960000pt;}
.y1d_c00207{bottom:196.293333pt;}
.y1c_c00207{bottom:218.160000pt;}
.y1b_c00207{bottom:240.026667pt;}
.y1a_c00207{bottom:261.360000pt;}
.y19_c00207{bottom:282.693333pt;}
.y18_c00207{bottom:304.293333pt;}
.y17_c00207{bottom:325.893333pt;}
.y16_c00207{bottom:347.493333pt;}
.y15_c00207{bottom:368.960000pt;}
.y14_c00207{bottom:390.293333pt;}
.y13_c00207{bottom:411.360000pt;}
.y12_c00207{bottom:432.693333pt;}
.y11_c00207{bottom:454.560000pt;}
.y10_c00207{bottom:475.493333pt;}
.yf_c00207{bottom:496.826667pt;}
.ye_c00207{bottom:518.160000pt;}
.yd_c00207{bottom:539.760000pt;}
.yc_c00207{bottom:564.293333pt;}
.yb_c00207{bottom:583.760000pt;}
.ya_c00207{bottom:604.293333pt;}
.y9_c00207{bottom:625.226667pt;}
.y8_c00207{bottom:646.560000pt;}
.y7_c00207{bottom:667.893333pt;}
.y6_c00207{bottom:689.360000pt;}
.y5_c00207{bottom:710.960000pt;}
.y3_c00207{bottom:718.293333pt;}
.y4_c00207{bottom:732.560000pt;}
.y2_c00207{bottom:774.693333pt;}
.y1_c00207{bottom:795.360000pt;}
.h7_c00207{height:11.733399pt;}
.h8_c00207{height:38.937500pt;}
.h2_c00207{height:59.300781pt;}
.h4_c00207{height:70.664062pt;}
.h5_c00207{height:74.906250pt;}
.h1_c00207{height:87.783854pt;}
.h6_c00207{height:96.750000pt;}
.h3_c00207{height:271.350399pt;}
.h0_c00207{height:884.666667pt;}
.w2_c00207{width:93.222667pt;}
.w0_c00207{width:593.266667pt;}
.w1_c00207{width:593.333333pt;}
.x0_c00207{left:0.000000pt;}
.xf_c00207{left:37.866667pt;}
.xb_c00207{left:41.066667pt;}
.x9_c00207{left:42.400000pt;}
.xa_c00207{left:60.400000pt;}
.x8_c00207{left:64.000000pt;}
.x10_c00207{left:117.333333pt;}
.xe_c00207{left:119.200000pt;}
.xd_c00207{left:120.266667pt;}
.xc_c00207{left:121.466667pt;}
.x6_c00207{left:122.666667pt;}
.x7_c00207{left:123.600000pt;}
.x5_c00207{left:124.533333pt;}
.x3_c00207{left:125.733333pt;}
.x1_c00207{left:126.933333pt;}
.x11_c00207{left:136.533333pt;}
.x4_c00207{left:164.133333pt;}
.x12_c00207{left:176.400000pt;}
.x2_c00207{left:221.733333pt;}
.x16_c00207{left:253.801554pt;}
.x13_c00207{left:400.266667pt;}
.x14_c00207{left:469.600000pt;}
.x15_c00207{left:522.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_21657f046c2d4681344516b8.woff2')format("woff");}.ff1_c00208{font-family:ff1_c00208;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00208;src:url('chunks/assets/font_b20a3c0aa89928d9c27d44e6.woff2')format("woff");}.ff2_c00208{font-family:ff2_c00208;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00208;src:url('chunks/assets/font_be18f1f457e2423a4c4bdbd1.woff2')format("woff");}.ff3_c00208{font-family:ff3_c00208;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00208;src:url('chunks/assets/font_5e975b552b14ae9d7d4d2df2.woff2')format("woff");}.ff4_c00208{font-family:ff4_c00208;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00208;src:url('chunks/assets/font_85798a52b7165ce1aebee056.woff2')format("woff");}.ff5_c00208{font-family:ff5_c00208;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00208;src:url('chunks/assets/font_e17a6a7a0ddd34a21fdf0c9d.woff2')format("woff");}.ff6_c00208{font-family:ff6_c00208;line-height:1.437000;font-style:normal;font-weight: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_c00208;src:url('chunks/assets/font_a3f1eb29c5613e0223abb479.woff2')format("woff");}.ff7_c00208{font-family:ff7_c00208;line-height:1.437000;font-style:normal;font-weight: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_c00208;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff8_c00208{font-family:ff8_c00208;line-height:1.219238;font-style: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;}
.ls2_c00208{letter-spacing:0.000000px;}
.ls1_c00208{letter-spacing:2.700000px;}
.ls0_c00208{letter-spacing:17.100000px;}
.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:-67.686000px;}
.ws0_c00208{word-spacing:-17.352000px;}
.ws2_c00208{word-spacing:0.000000px;}
._f_c00208{margin-left:-27.309000px;}
._21_c00208{margin-left:-19.641000px;}
._1a_c00208{margin-left:-18.414000px;}
._7_c00208{margin-left:-14.280000px;}
._1f_c00208{margin-left:-12.408000px;}
._11_c00208{margin-left:-10.899000px;}
._4_c00208{margin-left:-9.384000px;}
._15_c00208{margin-left:-7.362000px;}
._3_c00208{margin-left:-6.324000px;}
._9_c00208{margin-left:-5.202000px;}
._17_c00208{margin-left:-4.194000px;}
._e_c00208{margin-left:-3.117000px;}
._d_c00208{margin-left:-1.260000px;}
._2_c00208{width:1.530000px;}
._5_c00208{width:3.468000px;}
._6_c00208{width:4.998000px;}
._c_c00208{width:6.462000px;}
._8_c00208{width:8.058000px;}
._13_c00208{width:9.558000px;}
._1_c00208{width:10.812000px;}
._12_c00208{width:11.862000px;}
._1b_c00208{width:13.206000px;}
._10_c00208{width:14.301000px;}
._a_c00208{width:15.504000px;}
._27_c00208{width:17.034000px;}
._0_c00208{width:18.564000px;}
._19_c00208{width:20.508000px;}
._b_c00208{width:27.846000px;}
._20_c00208{width:33.501000px;}
._1c_c00208{width:36.660000px;}
._14_c00208{width:37.725000px;}
._18_c00208{width:40.815000px;}
._25_c00208{width:42.075000px;}
._1d_c00208{width:45.000000px;}
._23_c00208{width:51.459000px;}
._1e_c00208{width:132.696000px;}
._16_c00208{width:166.602000px;}
._24_c00208{width:239.751000px;}
._26_c00208{width:384.438000px;}
._22_c00208{width:1037.799000px;}
.fc2_c00208{color:transparent;}
.fc1_c00208{color:rgb(128,128,128);}
.fc0_c00208{color:rgb(0,0,0);}
.fs8_c00208{font-size:48.000000px;}
.fs1_c00208{font-size:51.000000px;}
.fs4_c00208{font-size:57.000000px;}
.fs5_c00208{font-size:60.000000px;}
.fs3_c00208{font-size:72.000000px;}
.fs6_c00208{font-size:78.000000px;}
.fs2_c00208{font-size:81.000000px;}
.fs7_c00208{font-size:87.000000px;}
.fs0_c00208{font-size:102.000000px;}
.y0_c00208{bottom:0.000000px;}
.y26_c00208{bottom:3.105000px;}
.y25_c00208{bottom:7.228355px;}
.y24_c00208{bottom:59.985000px;}
.y23_c00208{bottom:85.335000px;}
.y22_c00208{bottom:110.385000px;}
.y21_c00208{bottom:134.685000px;}
.y20_c00208{bottom:159.285000px;}
.y1f_c00208{bottom:183.585000px;}
.y1e_c00208{bottom:207.885000px;}
.y1d_c00208{bottom:231.885000px;}
.y1c_c00208{bottom:257.085000px;}
.y1b_c00208{bottom:280.785000px;}
.y1a_c00208{bottom:304.785000px;}
.y19_c00208{bottom:329.085000px;}
.y18_c00208{bottom:352.935000px;}
.y17_c00208{bottom:376.635000px;}
.y16_c00208{bottom:400.635000px;}
.y15_c00208{bottom:424.935000px;}
.y14_c00208{bottom:448.785000px;}
.y13_c00208{bottom:472.785000px;}
.y12_c00208{bottom:497.085000px;}
.y11_c00208{bottom:521.385000px;}
.y10_c00208{bottom:545.385000px;}
.yf_c00208{bottom:569.985000px;}
.ye_c00208{bottom:594.885000px;}
.yd_c00208{bottom:617.985000px;}
.yc_c00208{bottom:642.135000px;}
.yb_c00208{bottom:665.085000px;}
.ya_c00208{bottom:689.385000px;}
.y9_c00208{bottom:713.085000px;}
.y8_c00208{bottom:737.385000px;}
.y7_c00208{bottom:762.285000px;}
.y6_c00208{bottom:785.235000px;}
.y5_c00208{bottom:810.285000px;}
.y4_c00208{bottom:834.285000px;}
.y3_c00208{bottom:858.135000px;}
.y2_c00208{bottom:882.435000px;}
.y1_c00208{bottom:915.885000px;}
.h8_c00208{height:13.200074px;}
.h9_c00208{height:43.804688px;}
.h7_c00208{height:51.398438px;}
.h3_c00208{height:79.497070px;}
.h4_c00208{height:91.160156px;}
.h6_c00208{height:91.176000px;}
.h5_c00208{height:98.756836px;}
.h2_c00208{height:100.057617px;}
.h0_c00208{height:977.925000px;}
.h1_c00208{height:978.000000px;}
.w2_c00208{width:104.875500px;}
.w0_c00208{width:664.200000px;}
.w1_c00208{width:664.500000px;}
.x0_c00208{left:0.000000px;}
.xf_c00208{left:30.000000px;}
.x7_c00208{left:33.450000px;}
.x1_c00208{left:44.100000px;}
.x2_c00208{left:45.450000px;}
.x3_c00208{left:46.950000px;}
.x4_c00208{left:48.000000px;}
.x5_c00208{left:49.500000px;}
.x6_c00208{left:50.550000px;}
.x8_c00208{left:52.650000px;}
.x9_c00208{left:53.700000px;}
.xa_c00208{left:54.900000px;}
.xb_c00208{left:56.250000px;}
.xc_c00208{left:57.600000px;}
.xd_c00208{left:59.100000px;}
.xe_c00208{left:60.750000px;}
.x10_c00208{left:283.914230px;}
@media print{
.v0_c00208{vertical-align:0.000000pt;}
.ls2_c00208{letter-spacing:0.000000pt;}
.ls1_c00208{letter-spacing:2.400000pt;}
.ls0_c00208{letter-spacing:15.200000pt;}
.ws1_c00208{word-spacing:-60.165333pt;}
.ws0_c00208{word-spacing:-15.424000pt;}
.ws2_c00208{word-spacing:0.000000pt;}
._f_c00208{margin-left:-24.274667pt;}
._21_c00208{margin-left:-17.458667pt;}
._1a_c00208{margin-left:-16.368000pt;}
._7_c00208{margin-left:-12.693333pt;}
._1f_c00208{margin-left:-11.029333pt;}
._11_c00208{margin-left:-9.688000pt;}
._4_c00208{margin-left:-8.341333pt;}
._15_c00208{margin-left:-6.544000pt;}
._3_c00208{margin-left:-5.621333pt;}
._9_c00208{margin-left:-4.624000pt;}
._17_c00208{margin-left:-3.728000pt;}
._e_c00208{margin-left:-2.770667pt;}
._d_c00208{margin-left:-1.120000pt;}
._2_c00208{width:1.360000pt;}
._5_c00208{width:3.082667pt;}
._6_c00208{width:4.442667pt;}
._c_c00208{width:5.744000pt;}
._8_c00208{width:7.162667pt;}
._13_c00208{width:8.496000pt;}
._1_c00208{width:9.610667pt;}
._12_c00208{width:10.544000pt;}
._1b_c00208{width:11.738667pt;}
._10_c00208{width:12.712000pt;}
._a_c00208{width:13.781333pt;}
._27_c00208{width:15.141333pt;}
._0_c00208{width:16.501333pt;}
._19_c00208{width:18.229333pt;}
._b_c00208{width:24.752000pt;}
._20_c00208{width:29.778667pt;}
._1c_c00208{width:32.586667pt;}
._14_c00208{width:33.533333pt;}
._18_c00208{width:36.280000pt;}
._25_c00208{width:37.400000pt;}
._1d_c00208{width:40.000000pt;}
._23_c00208{width:45.741333pt;}
._1e_c00208{width:117.952000pt;}
._16_c00208{width:148.090667pt;}
._24_c00208{width:213.112000pt;}
._26_c00208{width:341.722667pt;}
._22_c00208{width:922.488000pt;}
.fs8_c00208{font-size:42.666667pt;}
.fs1_c00208{font-size:45.333333pt;}
.fs4_c00208{font-size:50.666667pt;}
.fs5_c00208{font-size:53.333333pt;}
.fs3_c00208{font-size:64.000000pt;}
.fs6_c00208{font-size:69.333333pt;}
.fs2_c00208{font-size:72.000000pt;}
.fs7_c00208{font-size:77.333333pt;}
.fs0_c00208{font-size:90.666667pt;}
.y0_c00208{bottom:0.000000pt;}
.y26_c00208{bottom:2.760000pt;}
.y25_c00208{bottom:6.425204pt;}
.y24_c00208{bottom:53.320000pt;}
.y23_c00208{bottom:75.853333pt;}
.y22_c00208{bottom:98.120000pt;}
.y21_c00208{bottom:119.720000pt;}
.y20_c00208{bottom:141.586667pt;}
.y1f_c00208{bottom:163.186667pt;}
.y1e_c00208{bottom:184.786667pt;}
.y1d_c00208{bottom:206.120000pt;}
.y1c_c00208{bottom:228.520000pt;}
.y1b_c00208{bottom:249.586667pt;}
.y1a_c00208{bottom:270.920000pt;}
.y19_c00208{bottom:292.520000pt;}
.y18_c00208{bottom:313.720000pt;}
.y17_c00208{bottom:334.786667pt;}
.y16_c00208{bottom:356.120000pt;}
.y15_c00208{bottom:377.720000pt;}
.y14_c00208{bottom:398.920000pt;}
.y13_c00208{bottom:420.253333pt;}
.y12_c00208{bottom:441.853333pt;}
.y11_c00208{bottom:463.453333pt;}
.y10_c00208{bottom:484.786667pt;}
.yf_c00208{bottom:506.653333pt;}
.ye_c00208{bottom:528.786667pt;}
.yd_c00208{bottom:549.320000pt;}
.yc_c00208{bottom:570.786667pt;}
.yb_c00208{bottom:591.186667pt;}
.ya_c00208{bottom:612.786667pt;}
.y9_c00208{bottom:633.853333pt;}
.y8_c00208{bottom:655.453333pt;}
.y7_c00208{bottom:677.586667pt;}
.y6_c00208{bottom:697.986667pt;}
.y5_c00208{bottom:720.253333pt;}
.y4_c00208{bottom:741.586667pt;}
.y3_c00208{bottom:762.786667pt;}
.y2_c00208{bottom:784.386667pt;}
.y1_c00208{bottom:814.120000pt;}
.h8_c00208{height:11.733399pt;}
.h9_c00208{height:38.937500pt;}
.h7_c00208{height:45.687500pt;}
.h3_c00208{height:70.664062pt;}
.h4_c00208{height:81.031250pt;}
.h6_c00208{height:81.045333pt;}
.h5_c00208{height:87.783854pt;}
.h2_c00208{height:88.940104pt;}
.h0_c00208{height:869.266667pt;}
.h1_c00208{height:869.333333pt;}
.w2_c00208{width:93.222667pt;}
.w0_c00208{width:590.400000pt;}
.w1_c00208{width:590.666667pt;}
.x0_c00208{left:0.000000pt;}
.xf_c00208{left:26.666667pt;}
.x7_c00208{left:29.733333pt;}
.x1_c00208{left:39.200000pt;}
.x2_c00208{left:40.400000pt;}
.x3_c00208{left:41.733333pt;}
.x4_c00208{left:42.666667pt;}
.x5_c00208{left:44.000000pt;}
.x6_c00208{left:44.933333pt;}
.x8_c00208{left:46.800000pt;}
.x9_c00208{left:47.733333pt;}
.xa_c00208{left:48.800000pt;}
.xb_c00208{left:50.000000pt;}
.xc_c00208{left:51.200000pt;}
.xd_c00208{left:52.533333pt;}
.xe_c00208{left:54.000000pt;}
.x10_c00208{left:252.368205pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e1ccae43035340a6f3d01a47.woff2')format("woff");}.ff1_c00209{font-family:ff1_c00209;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00209;src:url('chunks/assets/font_d795fc79d37fbe7307645682.woff2')format("woff");}.ff2_c00209{font-family:ff2_c00209;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00209;src:url('chunks/assets/font_4f9435c1bd7f710fa4ca79c1.woff2')format("woff");}.ff3_c00209{font-family:ff3_c00209;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00209;src:url('chunks/assets/font_a325c18f160a67e9052daa18.woff2')format("woff");}.ff4_c00209{font-family:ff4_c00209;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00209;src:url('chunks/assets/font_2a0673957f56657eb9d8aea1.woff2')format("woff");}.ff5_c00209{font-family:ff5_c00209;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00209;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c00209{font-family:ff6_c00209;line-height:1.219238;font-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_c00209{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m0_c00209{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00209{vertical-align:0.000000px;}
.ls1_c00209{letter-spacing:0.000000px;}
.ls0_c00209{letter-spacing:3.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;}
}
.ws1_c00209{word-spacing:-67.686000px;}
.ws2_c00209{word-spacing:-20.250000px;}
.ws0_c00209{word-spacing:-17.352000px;}
.ws3_c00209{word-spacing:0.000000px;}
._11_c00209{margin-left:-22.740000px;}
._10_c00209{margin-left:-16.389000px;}
._13_c00209{margin-left:-14.544000px;}
._1a_c00209{margin-left:-12.144000px;}
._19_c00209{margin-left:-11.013000px;}
._14_c00209{margin-left:-9.432000px;}
._b_c00209{margin-left:-7.920000px;}
._d_c00209{margin-left:-6.426000px;}
._1b_c00209{margin-left:-5.211000px;}
._6_c00209{margin-left:-4.023000px;}
._7_c00209{margin-left:-2.841000px;}
._2_c00209{margin-left:-1.299000px;}
._0_c00209{width:1.014000px;}
._1_c00209{width:2.646000px;}
._5_c00209{width:3.861000px;}
._4_c00209{width:5.103000px;}
._8_c00209{width:6.624000px;}
._f_c00209{width:7.626000px;}
._3_c00209{width:9.192000px;}
._9_c00209{width:10.881000px;}
._1c_c00209{width:12.549000px;}
._1d_c00209{width:13.974000px;}
._a_c00209{width:15.000000px;}
._c_c00209{width:17.145000px;}
._17_c00209{width:26.769000px;}
._1f_c00209{width:28.110000px;}
._e_c00209{width:29.814000px;}
._1e_c00209{width:36.294000px;}
._15_c00209{width:73.518000px;}
._16_c00209{width:117.291000px;}
._18_c00209{width:137.322000px;}
._12_c00209{width:196.992000px;}
.fc2_c00209{color:transparent;}
.fc1_c00209{color:rgb(128,128,128);}
.fc0_c00209{color:rgb(0,0,0);}
.fs5_c00209{font-size:48.000000px;}
.fs2_c00209{font-size:72.000000px;}
.fs0_c00209{font-size:78.000000px;}
.fs1_c00209{font-size:81.000000px;}
.fs3_c00209{font-size:87.000000px;}
.fs4_c00209{font-size:108.000000px;}
.y0_c00209{bottom:0.000000px;}
.y26_c00209{bottom:3.105000px;}
.y25_c00209{bottom:7.228371px;}
.y23_c00209{bottom:59.715000px;}
.y22_c00209{bottom:83.115000px;}
.y21_c00209{bottom:108.765000px;}
.y24_c00209{bottom:114.465000px;}
.y20_c00209{bottom:133.365000px;}
.y1f_c00209{bottom:157.365000px;}
.y1e_c00209{bottom:181.665000px;}
.y1d_c00209{bottom:206.265000px;}
.y1c_c00209{bottom:231.165000px;}
.y1b_c00209{bottom:255.165000px;}
.y1a_c00209{bottom:279.465000px;}
.y19_c00209{bottom:303.465000px;}
.y18_c00209{bottom:328.065000px;}
.y17_c00209{bottom:352.365000px;}
.y16_c00209{bottom:376.365000px;}
.y15_c00209{bottom:400.965000px;}
.y14_c00209{bottom:424.665000px;}
.y13_c00209{bottom:448.515000px;}
.y12_c00209{bottom:472.515000px;}
.y11_c00209{bottom:496.815000px;}
.y10_c00209{bottom:521.115000px;}
.yf_c00209{bottom:544.815000px;}
.ye_c00209{bottom:569.715000px;}
.yd_c00209{bottom:593.415000px;}
.yc_c00209{bottom:617.415000px;}
.yb_c00209{bottom:641.715000px;}
.ya_c00209{bottom:665.865000px;}
.y9_c00209{bottom:689.865000px;}
.y8_c00209{bottom:713.115000px;}
.y7_c00209{bottom:737.865000px;}
.y6_c00209{bottom:763.065000px;}
.y5_c00209{bottom:786.015000px;}
.y4_c00209{bottom:809.715000px;}
.y3_c00209{bottom:834.015000px;}
.y2_c00209{bottom:857.265000px;}
.y1_c00209{bottom:881.265000px;}
.h8_c00209{height:13.200074px;}
.h9_c00209{height:43.804688px;}
.h3_c00209{height:79.497070px;}
.h5_c00209{height:84.269531px;}
.h4_c00209{height:91.160156px;}
.h6_c00209{height:91.176000px;}
.h2_c00209{height:98.756836px;}
.h7_c00209{height:108.843750px;}
.h1_c00209{height:971.250000px;}
.h0_c00209{height:971.475000px;}
.w2_c00209{width:104.875500px;}
.w1_c00209{width:651.000000px;}
.w0_c00209{width:651.225000px;}
.x0_c00209{left:0.000000px;}
.xe_c00209{left:16.500000px;}
.x12_c00209{left:18.600000px;}
.x5_c00209{left:30.000000px;}
.x3_c00209{left:31.650000px;}
.xd_c00209{left:110.400000px;}
.xc_c00209{left:112.050000px;}
.xb_c00209{left:113.100000px;}
.xa_c00209{left:114.750000px;}
.x9_c00209{left:116.400000px;}
.x8_c00209{left:117.750000px;}
.x7_c00209{left:119.100000px;}
.x6_c00209{left:120.150000px;}
.x4_c00209{left:122.100000px;}
.x1_c00209{left:125.550000px;}
.x2_c00209{left:149.100000px;}
.x13_c00209{left:277.426758px;}
.xf_c00209{left:399.900000px;}
.x10_c00209{left:428.250000px;}
.x11_c00209{left:556.800000px;}
@media print{
.v0_c00209{vertical-align:0.000000pt;}
.ls1_c00209{letter-spacing:0.000000pt;}
.ls0_c00209{letter-spacing:3.413333pt;}
.ws1_c00209{word-spacing:-60.165333pt;}
.ws2_c00209{word-spacing:-18.000000pt;}
.ws0_c00209{word-spacing:-15.424000pt;}
.ws3_c00209{word-spacing:0.000000pt;}
._11_c00209{margin-left:-20.213333pt;}
._10_c00209{margin-left:-14.568000pt;}
._13_c00209{margin-left:-12.928000pt;}
._1a_c00209{margin-left:-10.794667pt;}
._19_c00209{margin-left:-9.789333pt;}
._14_c00209{margin-left:-8.384000pt;}
._b_c00209{margin-left:-7.040000pt;}
._d_c00209{margin-left:-5.712000pt;}
._1b_c00209{margin-left:-4.632000pt;}
._6_c00209{margin-left:-3.576000pt;}
._7_c00209{margin-left:-2.525333pt;}
._2_c00209{margin-left:-1.154667pt;}
._0_c00209{width:0.901333pt;}
._1_c00209{width:2.352000pt;}
._5_c00209{width:3.432000pt;}
._4_c00209{width:4.536000pt;}
._8_c00209{width:5.888000pt;}
._f_c00209{width:6.778667pt;}
._3_c00209{width:8.170667pt;}
._9_c00209{width:9.672000pt;}
._1c_c00209{width:11.154667pt;}
._1d_c00209{width:12.421333pt;}
._a_c00209{width:13.333333pt;}
._c_c00209{width:15.240000pt;}
._17_c00209{width:23.794667pt;}
._1f_c00209{width:24.986667pt;}
._e_c00209{width:26.501333pt;}
._1e_c00209{width:32.261333pt;}
._15_c00209{width:65.349333pt;}
._16_c00209{width:104.258667pt;}
._18_c00209{width:122.064000pt;}
._12_c00209{width:175.104000pt;}
.fs5_c00209{font-size:42.666667pt;}
.fs2_c00209{font-size:64.000000pt;}
.fs0_c00209{font-size:69.333333pt;}
.fs1_c00209{font-size:72.000000pt;}
.fs3_c00209{font-size:77.333333pt;}
.fs4_c00209{font-size:96.000000pt;}
.y0_c00209{bottom:0.000000pt;}
.y26_c00209{bottom:2.760000pt;}
.y25_c00209{bottom:6.425219pt;}
.y23_c00209{bottom:53.080000pt;}
.y22_c00209{bottom:73.880000pt;}
.y21_c00209{bottom:96.680000pt;}
.y24_c00209{bottom:101.746667pt;}
.y20_c00209{bottom:118.546667pt;}
.y1f_c00209{bottom:139.880000pt;}
.y1e_c00209{bottom:161.480000pt;}
.y1d_c00209{bottom:183.346667pt;}
.y1c_c00209{bottom:205.480000pt;}
.y1b_c00209{bottom:226.813333pt;}
.y1a_c00209{bottom:248.413333pt;}
.y19_c00209{bottom:269.746667pt;}
.y18_c00209{bottom:291.613333pt;}
.y17_c00209{bottom:313.213333pt;}
.y16_c00209{bottom:334.546667pt;}
.y15_c00209{bottom:356.413333pt;}
.y14_c00209{bottom:377.480000pt;}
.y13_c00209{bottom:398.680000pt;}
.y12_c00209{bottom:420.013333pt;}
.y11_c00209{bottom:441.613333pt;}
.y10_c00209{bottom:463.213333pt;}
.yf_c00209{bottom:484.280000pt;}
.ye_c00209{bottom:506.413333pt;}
.yd_c00209{bottom:527.480000pt;}
.yc_c00209{bottom:548.813333pt;}
.yb_c00209{bottom:570.413333pt;}
.ya_c00209{bottom:591.880000pt;}
.y9_c00209{bottom:613.213333pt;}
.y8_c00209{bottom:633.880000pt;}
.y7_c00209{bottom:655.880000pt;}
.y6_c00209{bottom:678.280000pt;}
.y5_c00209{bottom:698.680000pt;}
.y4_c00209{bottom:719.746667pt;}
.y3_c00209{bottom:741.346667pt;}
.y2_c00209{bottom:762.013333pt;}
.y1_c00209{bottom:783.346667pt;}
.h8_c00209{height:11.733399pt;}
.h9_c00209{height:38.937500pt;}
.h3_c00209{height:70.664062pt;}
.h5_c00209{height:74.906250pt;}
.h4_c00209{height:81.031250pt;}
.h6_c00209{height:81.045333pt;}
.h2_c00209{height:87.783854pt;}
.h7_c00209{height:96.750000pt;}
.h1_c00209{height:863.333333pt;}
.h0_c00209{height:863.533333pt;}
.w2_c00209{width:93.222667pt;}
.w1_c00209{width:578.666667pt;}
.w0_c00209{width:578.866667pt;}
.x0_c00209{left:0.000000pt;}
.xe_c00209{left:14.666667pt;}
.x12_c00209{left:16.533333pt;}
.x5_c00209{left:26.666667pt;}
.x3_c00209{left:28.133333pt;}
.xd_c00209{left:98.133333pt;}
.xc_c00209{left:99.600000pt;}
.xb_c00209{left:100.533333pt;}
.xa_c00209{left:102.000000pt;}
.x9_c00209{left:103.466667pt;}
.x8_c00209{left:104.666667pt;}
.x7_c00209{left:105.866667pt;}
.x6_c00209{left:106.800000pt;}
.x4_c00209{left:108.533333pt;}
.x1_c00209{left:111.600000pt;}
.x2_c00209{left:132.533333pt;}
.x13_c00209{left:246.601563pt;}
.xf_c00209{left:355.466667pt;}
.x10_c00209{left:380.666667pt;}
.x11_c00209{left:494.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_9651a1011695b21b5a2c106c.woff2')format("woff");}.ff1_c00210{font-family:ff1_c00210;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00210;src:url('chunks/assets/font_900825a7ff5fc7065c37843f.woff2')format("woff");}.ff2_c00210{font-family:ff2_c00210;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00210;src:url('chunks/assets/font_9230ac2dbb0fa97e028961f5.woff2')format("woff");}.ff3_c00210{font-family:ff3_c00210;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00210;src:url('chunks/assets/font_9026f59a5d35cee301f73f9e.woff2')format("woff");}.ff4_c00210{font-family:ff4_c00210;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00210;src:url('chunks/assets/font_8b995eb0707dba4d14498f5d.woff2')format("woff");}.ff5_c00210{font-family:ff5_c00210;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00210;src:url('chunks/assets/font_6048e2b1c30abaf545835438.woff2')format("woff");}.ff6_c00210{font-family:ff6_c00210;line-height:1.437000;font-style:normal;font-weight: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_c00210;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c00210{font-family:ff7_c00210;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00210{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00210{vertical-align:0.000000px;}
.ls1_c00210{letter-spacing:0.000000px;}
.ls0_c00210{letter-spacing:2.700000px;}
.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:-23.859000px;}
.ws1_c00210{word-spacing:-0.396000px;}
.ws2_c00210{word-spacing:0.000000px;}
._1_c00210{margin-left:-20.988000px;}
._10_c00210{margin-left:-16.389000px;}
._2_c00210{margin-left:-13.200000px;}
._12_c00210{margin-left:-10.980000px;}
._0_c00210{margin-left:-9.684000px;}
._11_c00210{margin-left:-8.538000px;}
._c_c00210{margin-left:-7.101000px;}
._3_c00210{margin-left:-6.039000px;}
._e_c00210{margin-left:-4.626000px;}
._5_c00210{margin-left:-3.564000px;}
._4_c00210{margin-left:-2.475000px;}
._7_c00210{margin-left:-1.164000px;}
._6_c00210{width:1.980000px;}
._b_c00210{width:3.123000px;}
._a_c00210{width:4.230000px;}
._15_c00210{width:5.490000px;}
._d_c00210{width:6.498000px;}
._14_c00210{width:8.100000px;}
._16_c00210{width:9.126000px;}
._1c_c00210{width:10.482000px;}
._13_c00210{width:11.493000px;}
._8_c00210{width:13.056000px;}
._1a_c00210{width:14.322000px;}
._17_c00210{width:15.708000px;}
._19_c00210{width:17.634000px;}
._9_c00210{width:18.909000px;}
._1b_c00210{width:22.185000px;}
._f_c00210{width:28.530000px;}
._18_c00210{width:30.600000px;}
._1d_c00210{width:36.546000px;}
._1e_c00210{width:342.387000px;}
.fc2_c00210{color:transparent;}
.fc1_c00210{color:rgb(128,128,128);}
.fc0_c00210{color:rgb(0,0,0);}
.fs6_c00210{font-size:48.000000px;}
.fs4_c00210{font-size:72.000000px;}
.fs3_c00210{font-size:81.000000px;}
.fs5_c00210{font-size:87.000000px;}
.fs0_c00210{font-size:99.000000px;}
.fs2_c00210{font-size:102.000000px;}
.fs1_c00210{font-size:132.000000px;}
.y0_c00210{bottom:0.000000px;}
.y26_c00210{bottom:3.105000px;}
.y25_c00210{bottom:7.228371px;}
.y24_c00210{bottom:69.915000px;}
.y23_c00210{bottom:94.965000px;}
.y22_c00210{bottom:120.465000px;}
.y21_c00210{bottom:144.915000px;}
.y20_c00210{bottom:169.515000px;}
.y1f_c00210{bottom:193.815000px;}
.y1e_c00210{bottom:218.115000px;}
.y1d_c00210{bottom:242.115000px;}
.y1c_c00210{bottom:267.015000px;}
.y1b_c00210{bottom:290.715000px;}
.y1a_c00210{bottom:315.015000px;}
.y19_c00210{bottom:338.865000px;}
.y18_c00210{bottom:363.165000px;}
.y17_c00210{bottom:387.165000px;}
.y16_c00210{bottom:410.715000px;}
.y15_c00210{bottom:434.715000px;}
.y14_c00210{bottom:458.115000px;}
.y13_c00210{bottom:482.415000px;}
.y12_c00210{bottom:506.265000px;}
.y11_c00210{bottom:530.265000px;}
.y10_c00210{bottom:554.265000px;}
.yf_c00210{bottom:578.115000px;}
.ye_c00210{bottom:601.515000px;}
.yd_c00210{bottom:625.365000px;}
.yc_c00210{bottom:648.765000px;}
.yb_c00210{bottom:673.065000px;}
.ya_c00210{bottom:697.065000px;}
.y9_c00210{bottom:721.665000px;}
.y8_c00210{bottom:745.215000px;}
.y7_c00210{bottom:769.215000px;}
.y6_c00210{bottom:793.515000px;}
.y5_c00210{bottom:817.815000px;}
.y4_c00210{bottom:841.515000px;}
.y3_c00210{bottom:865.665000px;}
.y2_c00210{bottom:889.665000px;}
.y1_c00210{bottom:923.865000px;}
.h8_c00210{height:13.200074px;}
.h9_c00210{height:43.804688px;}
.h5_c00210{height:79.497070px;}
.h4_c00210{height:84.269531px;}
.h3_c00210{height:91.160156px;}
.h7_c00210{height:91.176000px;}
.h6_c00210{height:110.151855px;}
.h2_c00210{height:167.126953px;}
.h0_c00210{height:989.025000px;}
.h1_c00210{height:989.250000px;}
.w1_c00210{width:104.875500px;}
.w0_c00210{width:672.000000px;}
.x0_c00210{left:0.000000px;}
.x7_c00210{left:53.100000px;}
.x6_c00210{left:55.350000px;}
.x2_c00210{left:57.000000px;}
.x5_c00210{left:58.050000px;}
.x4_c00210{left:59.100000px;}
.x3_c00210{left:60.750000px;}
.x1_c00210{left:61.800000px;}
.x9_c00210{left:287.814240px;}
.x8_c00210{left:361.800000px;}
@media print{
.v0_c00210{vertical-align:0.000000pt;}
.ls1_c00210{letter-spacing:0.000000pt;}
.ls0_c00210{letter-spacing:2.400000pt;}
.ws0_c00210{word-spacing:-21.208000pt;}
.ws1_c00210{word-spacing:-0.352000pt;}
.ws2_c00210{word-spacing:0.000000pt;}
._1_c00210{margin-left:-18.656000pt;}
._10_c00210{margin-left:-14.568000pt;}
._2_c00210{margin-left:-11.733333pt;}
._12_c00210{margin-left:-9.760000pt;}
._0_c00210{margin-left:-8.608000pt;}
._11_c00210{margin-left:-7.589333pt;}
._c_c00210{margin-left:-6.312000pt;}
._3_c00210{margin-left:-5.368000pt;}
._e_c00210{margin-left:-4.112000pt;}
._5_c00210{margin-left:-3.168000pt;}
._4_c00210{margin-left:-2.200000pt;}
._7_c00210{margin-left:-1.034667pt;}
._6_c00210{width:1.760000pt;}
._b_c00210{width:2.776000pt;}
._a_c00210{width:3.760000pt;}
._15_c00210{width:4.880000pt;}
._d_c00210{width:5.776000pt;}
._14_c00210{width:7.200000pt;}
._16_c00210{width:8.112000pt;}
._1c_c00210{width:9.317333pt;}
._13_c00210{width:10.216000pt;}
._8_c00210{width:11.605333pt;}
._1a_c00210{width:12.730667pt;}
._17_c00210{width:13.962667pt;}
._19_c00210{width:15.674667pt;}
._9_c00210{width:16.808000pt;}
._1b_c00210{width:19.720000pt;}
._f_c00210{width:25.360000pt;}
._18_c00210{width:27.200000pt;}
._1d_c00210{width:32.485333pt;}
._1e_c00210{width:304.344000pt;}
.fs6_c00210{font-size:42.666667pt;}
.fs4_c00210{font-size:64.000000pt;}
.fs3_c00210{font-size:72.000000pt;}
.fs5_c00210{font-size:77.333333pt;}
.fs0_c00210{font-size:88.000000pt;}
.fs2_c00210{font-size:90.666667pt;}
.fs1_c00210{font-size:117.333333pt;}
.y0_c00210{bottom:0.000000pt;}
.y26_c00210{bottom:2.760000pt;}
.y25_c00210{bottom:6.425219pt;}
.y24_c00210{bottom:62.146667pt;}
.y23_c00210{bottom:84.413333pt;}
.y22_c00210{bottom:107.080000pt;}
.y21_c00210{bottom:128.813333pt;}
.y20_c00210{bottom:150.680000pt;}
.y1f_c00210{bottom:172.280000pt;}
.y1e_c00210{bottom:193.880000pt;}
.y1d_c00210{bottom:215.213333pt;}
.y1c_c00210{bottom:237.346667pt;}
.y1b_c00210{bottom:258.413333pt;}
.y1a_c00210{bottom:280.013333pt;}
.y19_c00210{bottom:301.213333pt;}
.y18_c00210{bottom:322.813333pt;}
.y17_c00210{bottom:344.146667pt;}
.y16_c00210{bottom:365.080000pt;}
.y15_c00210{bottom:386.413333pt;}
.y14_c00210{bottom:407.213333pt;}
.y13_c00210{bottom:428.813333pt;}
.y12_c00210{bottom:450.013333pt;}
.y11_c00210{bottom:471.346667pt;}
.y10_c00210{bottom:492.680000pt;}
.yf_c00210{bottom:513.880000pt;}
.ye_c00210{bottom:534.680000pt;}
.yd_c00210{bottom:555.880000pt;}
.yc_c00210{bottom:576.680000pt;}
.yb_c00210{bottom:598.280000pt;}
.ya_c00210{bottom:619.613333pt;}
.y9_c00210{bottom:641.480000pt;}
.y8_c00210{bottom:662.413333pt;}
.y7_c00210{bottom:683.746667pt;}
.y6_c00210{bottom:705.346667pt;}
.y5_c00210{bottom:726.946667pt;}
.y4_c00210{bottom:748.013333pt;}
.y3_c00210{bottom:769.480000pt;}
.y2_c00210{bottom:790.813333pt;}
.y1_c00210{bottom:821.213333pt;}
.h8_c00210{height:11.733399pt;}
.h9_c00210{height:38.937500pt;}
.h5_c00210{height:70.664062pt;}
.h4_c00210{height:74.906250pt;}
.h3_c00210{height:81.031250pt;}
.h7_c00210{height:81.045333pt;}
.h6_c00210{height:97.912760pt;}
.h2_c00210{height:148.557292pt;}
.h0_c00210{height:879.133333pt;}
.h1_c00210{height:879.333333pt;}
.w1_c00210{width:93.222667pt;}
.w0_c00210{width:597.333333pt;}
.x0_c00210{left:0.000000pt;}
.x7_c00210{left:47.200000pt;}
.x6_c00210{left:49.200000pt;}
.x2_c00210{left:50.666667pt;}
.x5_c00210{left:51.600000pt;}
.x4_c00210{left:52.533333pt;}
.x3_c00210{left:54.000000pt;}
.x1_c00210{left:54.933333pt;}
.x9_c00210{left:255.834880pt;}
.x8_c00210{left:321.600000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_d510068ae1ab0696954ed45d.woff2')format("woff");}.ff1_c00211{font-family:ff1_c00211;line-height:1.311035;font-style:normal;font-weight:normal;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_411244263745227f80a99849.woff2')format("woff");}.ff2_c00211{font-family:ff2_c00211;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00211;src:url('chunks/assets/font_db92391cd8fa07a1ad82cefa.woff2')format("woff");}.ff3_c00211{font-family:ff3_c00211;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00211;src:url('chunks/assets/font_0dcd7fc52be99bb372447532.woff2')format("woff");}.ff4_c00211{font-family:ff4_c00211;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00211;src:url('chunks/assets/font_f59478b8243e1267485478c8.woff2')format("woff");}.ff5_c00211{font-family:ff5_c00211;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00211;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff6_c00211{font-family:ff6_c00211;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00211;src:url('chunks/assets/font_1fc06fb1ddc1f3831e561209.woff2')format("woff");}.ff7_c00211{font-family:ff7_c00211;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00211;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff8_c00211{font-family:ff8_c00211;line-height:1.219238;font-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_c00211{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m2_c00211{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,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;}
.ls0_c00211{letter-spacing:0.000000px;}
.ls1_c00211{letter-spacing:9.000000px;}
.sc__c00211{text-shadow:none;}
.sc0_c00211{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00211{-webkit-text-stroke:0px transparent;}
.sc0_c00211{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00211{word-spacing:-60.048000px;}
.ws0_c00211{word-spacing:-31.692000px;}
.ws1_c00211{word-spacing:-17.352000px;}
.ws2_c00211{word-spacing:-11.430000px;}
.ws4_c00211{word-spacing:0.000000px;}
._10_c00211{margin-left:-42.282000px;}
._3_c00211{margin-left:-22.761000px;}
._1_c00211{margin-left:-13.968000px;}
._8_c00211{margin-left:-9.396000px;}
._d_c00211{margin-left:-7.857000px;}
._2_c00211{margin-left:-6.723000px;}
._e_c00211{margin-left:-5.589000px;}
._0_c00211{margin-left:-4.500000px;}
._c_c00211{margin-left:-2.673000px;}
._5_c00211{margin-left:-1.296000px;}
._4_c00211{width:1.863000px;}
._7_c00211{width:3.645000px;}
._6_c00211{width:4.698000px;}
._9_c00211{width:6.156000px;}
._a_c00211{width:7.416000px;}
._13_c00211{width:8.469000px;}
._12_c00211{width:9.711000px;}
._b_c00211{width:11.502000px;}
._15_c00211{width:12.726000px;}
._11_c00211{width:13.851000px;}
._14_c00211{width:14.883000px;}
._17_c00211{width:16.080000px;}
._16_c00211{width:17.526000px;}
._1c_c00211{width:18.585000px;}
._1b_c00211{width:19.758000px;}
._18_c00211{width:20.784000px;}
._f_c00211{width:24.624000px;}
._1d_c00211{width:26.244000px;}
._1a_c00211{width:29.574000px;}
._1f_c00211{width:38.580000px;}
._19_c00211{width:41.976000px;}
._1e_c00211{width:194.742000px;}
.fc2_c00211{color:transparent;}
.fc1_c00211{color:rgb(128,128,128);}
.fc0_c00211{color:rgb(0,0,0);}
.fs6_c00211{font-size:48.000000px;}
.fs0_c00211{font-size:57.000000px;}
.fs4_c00211{font-size:60.000000px;}
.fs3_c00211{font-size:72.000000px;}
.fs1_c00211{font-size:81.000000px;}
.fs2_c00211{font-size:90.000000px;}
.fs5_c00211{font-size:108.000000px;}
.y0_c00211{bottom:0.000000px;}
.y24_c00211{bottom:3.105000px;}
.y23_c00211{bottom:7.228357px;}
.y22_c00211{bottom:75.330000px;}
.y21_c00211{bottom:102.030000px;}
.y2_c00211{bottom:107.280000px;}
.y20_c00211{bottom:126.180000px;}
.y1_c00211{bottom:129.030000px;}
.y1f_c00211{bottom:150.930000px;}
.y1e_c00211{bottom:174.930000px;}
.y1d_c00211{bottom:199.830000px;}
.y1c_c00211{bottom:223.830000px;}
.y1b_c00211{bottom:280.830000px;}
.y1a_c00211{bottom:310.530000px;}
.y19_c00211{bottom:337.530000px;}
.y18_c00211{bottom:393.930000px;}
.y17_c00211{bottom:418.830000px;}
.y16_c00211{bottom:442.830000px;}
.y15_c00211{bottom:466.530000px;}
.y14_c00211{bottom:490.380000px;}
.y13_c00211{bottom:514.080000px;}
.y12_c00211{bottom:537.930000px;}
.y11_c00211{bottom:561.630000px;}
.y10_c00211{bottom:585.630000px;}
.yf_c00211{bottom:609.630000px;}
.ye_c00211{bottom:633.780000px;}
.yd_c00211{bottom:657.780000px;}
.yc_c00211{bottom:681.780000px;}
.yb_c00211{bottom:705.780000px;}
.ya_c00211{bottom:730.080000px;}
.y9_c00211{bottom:754.380000px;}
.y8_c00211{bottom:778.680000px;}
.y7_c00211{bottom:802.230000px;}
.y6_c00211{bottom:825.930000px;}
.y5_c00211{bottom:849.780000px;}
.y4_c00211{bottom:873.480000px;}
.y3_c00211{bottom:897.180000px;}
.h8_c00211{height:13.200074px;}
.h9_c00211{height:43.804688px;}
.h6_c00211{height:58.886719px;}
.h1_c00211{height:79.497070px;}
.h5_c00211{height:84.269531px;}
.h4_c00211{height:91.160156px;}
.h2_c00211{height:93.691406px;}
.h3_c00211{height:96.030000px;}
.h7_c00211{height:108.843750px;}
.h0_c00211{height:995.250000px;}
.w2_c00211{width:104.875500px;}
.w0_c00211{width:667.425000px;}
.w1_c00211{width:667.500000px;}
.x0_c00211{left:0.000000px;}
.x2_c00211{left:96.600000px;}
.x1_c00211{left:100.350000px;}
.x3_c00211{left:106.050000px;}
.x5_c00211{left:129.900000px;}
.x4_c00211{left:130.950000px;}
.x6_c00211{left:132.000000px;}
.x7_c00211{left:133.650000px;}
.x8_c00211{left:135.000000px;}
.x9_c00211{left:182.550000px;}
.xc_c00211{left:270.900000px;}
.xb_c00211{left:273.000000px;}
.xa_c00211{left:282.150000px;}
.xe_c00211{left:285.526749px;}
.xd_c00211{left:577.500000px;}
@media print{
.v0_c00211{vertical-align:0.000000pt;}
.ls0_c00211{letter-spacing:0.000000pt;}
.ls1_c00211{letter-spacing:8.000000pt;}
.ws3_c00211{word-spacing:-53.376000pt;}
.ws0_c00211{word-spacing:-28.170667pt;}
.ws1_c00211{word-spacing:-15.424000pt;}
.ws2_c00211{word-spacing:-10.160000pt;}
.ws4_c00211{word-spacing:0.000000pt;}
._10_c00211{margin-left:-37.584000pt;}
._3_c00211{margin-left:-20.232000pt;}
._1_c00211{margin-left:-12.416000pt;}
._8_c00211{margin-left:-8.352000pt;}
._d_c00211{margin-left:-6.984000pt;}
._2_c00211{margin-left:-5.976000pt;}
._e_c00211{margin-left:-4.968000pt;}
._0_c00211{margin-left:-4.000000pt;}
._c_c00211{margin-left:-2.376000pt;}
._5_c00211{margin-left:-1.152000pt;}
._4_c00211{width:1.656000pt;}
._7_c00211{width:3.240000pt;}
._6_c00211{width:4.176000pt;}
._9_c00211{width:5.472000pt;}
._a_c00211{width:6.592000pt;}
._13_c00211{width:7.528000pt;}
._12_c00211{width:8.632000pt;}
._b_c00211{width:10.224000pt;}
._15_c00211{width:11.312000pt;}
._11_c00211{width:12.312000pt;}
._14_c00211{width:13.229333pt;}
._17_c00211{width:14.293333pt;}
._16_c00211{width:15.578667pt;}
._1c_c00211{width:16.520000pt;}
._1b_c00211{width:17.562667pt;}
._18_c00211{width:18.474667pt;}
._f_c00211{width:21.888000pt;}
._1d_c00211{width:23.328000pt;}
._1a_c00211{width:26.288000pt;}
._1f_c00211{width:34.293333pt;}
._19_c00211{width:37.312000pt;}
._1e_c00211{width:173.104000pt;}
.fs6_c00211{font-size:42.666667pt;}
.fs0_c00211{font-size:50.666667pt;}
.fs4_c00211{font-size:53.333333pt;}
.fs3_c00211{font-size:64.000000pt;}
.fs1_c00211{font-size:72.000000pt;}
.fs2_c00211{font-size:80.000000pt;}
.fs5_c00211{font-size:96.000000pt;}
.y0_c00211{bottom:0.000000pt;}
.y24_c00211{bottom:2.760000pt;}
.y23_c00211{bottom:6.425206pt;}
.y22_c00211{bottom:66.960000pt;}
.y21_c00211{bottom:90.693333pt;}
.y2_c00211{bottom:95.360000pt;}
.y20_c00211{bottom:112.160000pt;}
.y1_c00211{bottom:114.693333pt;}
.y1f_c00211{bottom:134.160000pt;}
.y1e_c00211{bottom:155.493333pt;}
.y1d_c00211{bottom:177.626667pt;}
.y1c_c00211{bottom:198.960000pt;}
.y1b_c00211{bottom:249.626667pt;}
.y1a_c00211{bottom:276.026667pt;}
.y19_c00211{bottom:300.026667pt;}
.y18_c00211{bottom:350.160000pt;}
.y17_c00211{bottom:372.293333pt;}
.y16_c00211{bottom:393.626667pt;}
.y15_c00211{bottom:414.693333pt;}
.y14_c00211{bottom:435.893333pt;}
.y13_c00211{bottom:456.960000pt;}
.y12_c00211{bottom:478.160000pt;}
.y11_c00211{bottom:499.226667pt;}
.y10_c00211{bottom:520.560000pt;}
.yf_c00211{bottom:541.893333pt;}
.ye_c00211{bottom:563.360000pt;}
.yd_c00211{bottom:584.693333pt;}
.yc_c00211{bottom:606.026667pt;}
.yb_c00211{bottom:627.360000pt;}
.ya_c00211{bottom:648.960000pt;}
.y9_c00211{bottom:670.560000pt;}
.y8_c00211{bottom:692.160000pt;}
.y7_c00211{bottom:713.093333pt;}
.y6_c00211{bottom:734.160000pt;}
.y5_c00211{bottom:755.360000pt;}
.y4_c00211{bottom:776.426667pt;}
.y3_c00211{bottom:797.493333pt;}
.h8_c00211{height:11.733399pt;}
.h9_c00211{height:38.937500pt;}
.h6_c00211{height:52.343750pt;}
.h1_c00211{height:70.664062pt;}
.h5_c00211{height:74.906250pt;}
.h4_c00211{height:81.031250pt;}
.h2_c00211{height:83.281250pt;}
.h3_c00211{height:85.360000pt;}
.h7_c00211{height:96.750000pt;}
.h0_c00211{height:884.666667pt;}
.w2_c00211{width:93.222667pt;}
.w0_c00211{width:593.266667pt;}
.w1_c00211{width:593.333333pt;}
.x0_c00211{left:0.000000pt;}
.x2_c00211{left:85.866667pt;}
.x1_c00211{left:89.200000pt;}
.x3_c00211{left:94.266667pt;}
.x5_c00211{left:115.466667pt;}
.x4_c00211{left:116.400000pt;}
.x6_c00211{left:117.333333pt;}
.x7_c00211{left:118.800000pt;}
.x8_c00211{left:120.000000pt;}
.x9_c00211{left:162.266667pt;}
.xc_c00211{left:240.800000pt;}
.xb_c00211{left:242.666667pt;}
.xa_c00211{left:250.800000pt;}
.xe_c00211{left:253.801554pt;}
.xd_c00211{left:513.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_18dde11d16b710b539b1d4b4.woff2')format("woff");}.ff1_c00212{font-family:ff1_c00212;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00212;src:url('chunks/assets/font_fe5e7de8104858b3ad968348.woff2')format("woff");}.ff2_c00212{font-family:ff2_c00212;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00212;src:url('chunks/assets/font_1522a5178eb2c8254047a5ae.woff2')format("woff");}.ff3_c00212{font-family:ff3_c00212;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00212;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff4_c00212{font-family:ff4_c00212;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00212;src:url('chunks/assets/font_e0bdccce2cb96d65bdadc044.woff2')format("woff");}.ff5_c00212{font-family:ff5_c00212;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00212;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c00212{font-family:ff6_c00212;line-height:1.219238;font-style: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);}
.m1_c00212{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00212{vertical-align:0.000000px;}
.ls1_c00212{letter-spacing:-9.000000px;}
.ls0_c00212{letter-spacing:0.000000px;}
.sc__c00212{text-shadow:none;}
.sc0_c00212{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00212{-webkit-text-stroke:0px transparent;}
.sc0_c00212{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00212{word-spacing:-67.686000px;}
.ws0_c00212{word-spacing:-17.352000px;}
.ws2_c00212{word-spacing:0.000000px;}
._1e_c00212{margin-left:-37.470000px;}
._1d_c00212{margin-left:-35.088000px;}
._21_c00212{margin-left:-24.210000px;}
._1_c00212{margin-left:-13.860000px;}
._2_c00212{margin-left:-12.375000px;}
._16_c00212{margin-left:-9.639000px;}
._0_c00212{margin-left:-8.316000px;}
._3_c00212{margin-left:-5.841000px;}
._a_c00212{margin-left:-3.861000px;}
._d_c00212{margin-left:-2.610000px;}
._e_c00212{margin-left:-1.593000px;}
._4_c00212{width:1.089000px;}
._f_c00212{width:2.331000px;}
._c_c00212{width:3.465000px;}
._6_c00212{width:4.752000px;}
._b_c00212{width:5.940000px;}
._5_c00212{width:7.425000px;}
._7_c00212{width:8.811000px;}
._18_c00212{width:9.972000px;}
._10_c00212{width:11.088000px;}
._8_c00212{width:12.276000px;}
._9_c00212{width:14.454000px;}
._14_c00212{width:15.939000px;}
._1b_c00212{width:17.586000px;}
._11_c00212{width:19.104000px;}
._20_c00212{width:27.234000px;}
._12_c00212{width:28.731000px;}
._22_c00212{width:257.280000px;}
._19_c00212{width:273.357000px;}
._15_c00212{width:294.570000px;}
._1c_c00212{width:312.849000px;}
._17_c00212{width:339.372000px;}
._13_c00212{width:343.980000px;}
._1a_c00212{width:345.204000px;}
._1f_c00212{width:1209.924000px;}
.fc2_c00212{color:transparent;}
.fc1_c00212{color:rgb(128,128,128);}
.fc0_c00212{color:rgb(0,0,0);}
.fs5_c00212{font-size:48.000000px;}
.fs2_c00212{font-size:72.000000px;}
.fs1_c00212{font-size:81.000000px;}
.fs3_c00212{font-size:87.000000px;}
.fs0_c00212{font-size:99.000000px;}
.fs4_c00212{font-size:102.000000px;}
.y0_c00212{bottom:0.000000px;}
.y23_c00212{bottom:3.105000px;}
.y22_c00212{bottom:7.228363px;}
.y21_c00212{bottom:51.600000px;}
.y20_c00212{bottom:79.350000px;}
.y1f_c00212{bottom:104.850000px;}
.y1e_c00212{bottom:127.500000px;}
.y1d_c00212{bottom:153.150000px;}
.y1c_c00212{bottom:175.200000px;}
.y1b_c00212{bottom:201.450000px;}
.y1a_c00212{bottom:225.450000px;}
.y19_c00212{bottom:250.050000px;}
.y18_c00212{bottom:274.350000px;}
.y17_c00212{bottom:298.350000px;}
.y16_c00212{bottom:322.650000px;}
.y15_c00212{bottom:346.650000px;}
.y14_c00212{bottom:370.500000px;}
.y13_c00212{bottom:394.800000px;}
.y12_c00212{bottom:418.800000px;}
.y11_c00212{bottom:442.800000px;}
.y10_c00212{bottom:466.650000px;}
.yf_c00212{bottom:491.100000px;}
.ye_c00212{bottom:586.500000px;}
.yd_c00212{bottom:610.200000px;}
.yc_c00212{bottom:634.200000px;}
.yb_c00212{bottom:657.750000px;}
.ya_c00212{bottom:682.050000px;}
.y9_c00212{bottom:706.050000px;}
.y8_c00212{bottom:730.650000px;}
.y7_c00212{bottom:754.650000px;}
.y6_c00212{bottom:778.950000px;}
.y5_c00212{bottom:803.550000px;}
.y4_c00212{bottom:827.850000px;}
.y3_c00212{bottom:851.850000px;}
.y2_c00212{bottom:876.150000px;}
.y1_c00212{bottom:912.000000px;}
.h8_c00212{height:13.200074px;}
.h9_c00212{height:43.804688px;}
.h3_c00212{height:79.497070px;}
.h4_c00212{height:84.269531px;}
.h6_c00212{height:91.160156px;}
.h5_c00212{height:91.176000px;}
.h7_c00212{height:104.839927px;}
.h2_c00212{height:115.870605px;}
.h0_c00212{height:974.700000px;}
.h1_c00212{height:975.000000px;}
.w2_c00212{width:104.875500px;}
.w0_c00212{width:662.025000px;}
.w1_c00212{width:662.250000px;}
.x0_c00212{left:0.000000px;}
.x3_c00212{left:32.700000px;}
.x2_c00212{left:33.750000px;}
.x4_c00212{left:34.800000px;}
.x5_c00212{left:36.750000px;}
.x7_c00212{left:38.100000px;}
.x8_c00212{left:39.450000px;}
.x9_c00212{left:41.550000px;}
.xa_c00212{left:42.900000px;}
.xb_c00212{left:44.550000px;}
.xc_c00212{left:46.200000px;}
.xd_c00212{left:47.550000px;}
.xe_c00212{left:48.600000px;}
.x1_c00212{left:50.550000px;}
.xf_c00212{left:51.600000px;}
.x10_c00212{left:52.950000px;}
.x11_c00212{left:54.900000px;}
.x6_c00212{left:63.000000px;}
.x12_c00212{left:282.826767px;}
@media print{
.v0_c00212{vertical-align:0.000000pt;}
.ls1_c00212{letter-spacing:-8.000000pt;}
.ls0_c00212{letter-spacing:0.000000pt;}
.ws1_c00212{word-spacing:-60.165333pt;}
.ws0_c00212{word-spacing:-15.424000pt;}
.ws2_c00212{word-spacing:0.000000pt;}
._1e_c00212{margin-left:-33.306667pt;}
._1d_c00212{margin-left:-31.189333pt;}
._21_c00212{margin-left:-21.520000pt;}
._1_c00212{margin-left:-12.320000pt;}
._2_c00212{margin-left:-11.000000pt;}
._16_c00212{margin-left:-8.568000pt;}
._0_c00212{margin-left:-7.392000pt;}
._3_c00212{margin-left:-5.192000pt;}
._a_c00212{margin-left:-3.432000pt;}
._d_c00212{margin-left:-2.320000pt;}
._e_c00212{margin-left:-1.416000pt;}
._4_c00212{width:0.968000pt;}
._f_c00212{width:2.072000pt;}
._c_c00212{width:3.080000pt;}
._6_c00212{width:4.224000pt;}
._b_c00212{width:5.280000pt;}
._5_c00212{width:6.600000pt;}
._7_c00212{width:7.832000pt;}
._18_c00212{width:8.864000pt;}
._10_c00212{width:9.856000pt;}
._8_c00212{width:10.912000pt;}
._9_c00212{width:12.848000pt;}
._14_c00212{width:14.168000pt;}
._1b_c00212{width:15.632000pt;}
._11_c00212{width:16.981333pt;}
._20_c00212{width:24.208000pt;}
._12_c00212{width:25.538667pt;}
._22_c00212{width:228.693333pt;}
._19_c00212{width:242.984000pt;}
._15_c00212{width:261.840000pt;}
._1c_c00212{width:278.088000pt;}
._17_c00212{width:301.664000pt;}
._13_c00212{width:305.760000pt;}
._1a_c00212{width:306.848000pt;}
._1f_c00212{width:1075.488000pt;}
.fs5_c00212{font-size:42.666667pt;}
.fs2_c00212{font-size:64.000000pt;}
.fs1_c00212{font-size:72.000000pt;}
.fs3_c00212{font-size:77.333333pt;}
.fs0_c00212{font-size:88.000000pt;}
.fs4_c00212{font-size:90.666667pt;}
.y0_c00212{bottom:0.000000pt;}
.y23_c00212{bottom:2.760000pt;}
.y22_c00212{bottom:6.425212pt;}
.y21_c00212{bottom:45.866667pt;}
.y20_c00212{bottom:70.533333pt;}
.y1f_c00212{bottom:93.200000pt;}
.y1e_c00212{bottom:113.333333pt;}
.y1d_c00212{bottom:136.133333pt;}
.y1c_c00212{bottom:155.733333pt;}
.y1b_c00212{bottom:179.066667pt;}
.y1a_c00212{bottom:200.400000pt;}
.y19_c00212{bottom:222.266667pt;}
.y18_c00212{bottom:243.866667pt;}
.y17_c00212{bottom:265.200000pt;}
.y16_c00212{bottom:286.800000pt;}
.y15_c00212{bottom:308.133333pt;}
.y14_c00212{bottom:329.333333pt;}
.y13_c00212{bottom:350.933333pt;}
.y12_c00212{bottom:372.266667pt;}
.y11_c00212{bottom:393.600000pt;}
.y10_c00212{bottom:414.800000pt;}
.yf_c00212{bottom:436.533333pt;}
.ye_c00212{bottom:521.333333pt;}
.yd_c00212{bottom:542.400000pt;}
.yc_c00212{bottom:563.733333pt;}
.yb_c00212{bottom:584.666667pt;}
.ya_c00212{bottom:606.266667pt;}
.y9_c00212{bottom:627.600000pt;}
.y8_c00212{bottom:649.466667pt;}
.y7_c00212{bottom:670.800000pt;}
.y6_c00212{bottom:692.400000pt;}
.y5_c00212{bottom:714.266667pt;}
.y4_c00212{bottom:735.866667pt;}
.y3_c00212{bottom:757.200000pt;}
.y2_c00212{bottom:778.800000pt;}
.y1_c00212{bottom:810.666667pt;}
.h8_c00212{height:11.733399pt;}
.h9_c00212{height:38.937500pt;}
.h3_c00212{height:70.664062pt;}
.h4_c00212{height:74.906250pt;}
.h6_c00212{height:81.031250pt;}
.h5_c00212{height:81.045333pt;}
.h7_c00212{height:93.191046pt;}
.h2_c00212{height:102.996094pt;}
.h0_c00212{height:866.400000pt;}
.h1_c00212{height:866.666667pt;}
.w2_c00212{width:93.222667pt;}
.w0_c00212{width:588.466667pt;}
.w1_c00212{width:588.666667pt;}
.x0_c00212{left:0.000000pt;}
.x3_c00212{left:29.066667pt;}
.x2_c00212{left:30.000000pt;}
.x4_c00212{left:30.933333pt;}
.x5_c00212{left:32.666667pt;}
.x7_c00212{left:33.866667pt;}
.x8_c00212{left:35.066667pt;}
.x9_c00212{left:36.933333pt;}
.xa_c00212{left:38.133333pt;}
.xb_c00212{left:39.600000pt;}
.xc_c00212{left:41.066667pt;}
.xd_c00212{left:42.266667pt;}
.xe_c00212{left:43.200000pt;}
.x1_c00212{left:44.933333pt;}
.xf_c00212{left:45.866667pt;}
.x10_c00212{left:47.066667pt;}
.x11_c00212{left:48.800000pt;}
.x6_c00212{left:56.000000pt;}
.x12_c00212{left:251.401571pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e26d6de5f6afa2c67469ba98.woff2')format("woff");}.ff1_c00213{font-family:ff1_c00213;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00213;src:url('chunks/assets/font_6675de8a3973afbb36e11881.woff2')format("woff");}.ff2_c00213{font-family:ff2_c00213;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00213;src:url('chunks/assets/font_f65c2952c3b76ce902fca689.woff2')format("woff");}.ff3_c00213{font-family:ff3_c00213;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00213;src:url('chunks/assets/font_a5eadb3351d47f131799b756.woff2')format("woff");}.ff4_c00213{font-family:ff4_c00213;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00213;src:url('chunks/assets/font_53568dbd93a2a073e320af55.woff2')format("woff");}.ff5_c00213{font-family:ff5_c00213;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00213;src:url('chunks/assets/font_aded62007661b2ee040e6093.woff2')format("woff");}.ff6_c00213{font-family:ff6_c00213;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00213;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c00213{font-family:ff7_c00213;line-height:1.219238;font-style: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;}
.ls3_c00213{letter-spacing:-3.000000px;}
.ls2_c00213{letter-spacing:0.000000px;}
.ls0_c00213{letter-spacing:5.880000px;}
.ls1_c00213{letter-spacing:11.400000px;}
.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;}
}
.ws2_c00213{word-spacing:-20.250000px;}
.ws0_c00213{word-spacing:-18.798000px;}
.ws1_c00213{word-spacing:-17.352000px;}
.ws3_c00213{word-spacing:-15.798000px;}
.ws5_c00213{word-spacing:0.000000px;}
.ws4_c00213{word-spacing:3.927000px;}
._1d_c00213{margin-left:-15.129000px;}
._1f_c00213{margin-left:-10.284000px;}
._e_c00213{margin-left:-8.943000px;}
._16_c00213{margin-left:-6.624000px;}
._a_c00213{margin-left:-5.469000px;}
._6_c00213{margin-left:-3.612000px;}
._f_c00213{margin-left:-2.439000px;}
._2_c00213{margin-left:-1.296000px;}
._1c_c00213{width:1.014000px;}
._1_c00213{width:2.025000px;}
._0_c00213{width:3.321000px;}
._3_c00213{width:4.536000px;}
._4_c00213{width:5.670000px;}
._5_c00213{width:6.723000px;}
._10_c00213{width:8.052000px;}
._b_c00213{width:9.081000px;}
._c_c00213{width:10.143000px;}
._1a_c00213{width:11.262000px;}
._9_c00213{width:12.312000px;}
._7_c00213{width:13.365000px;}
._8_c00213{width:15.309000px;}
._17_c00213{width:16.845000px;}
._d_c00213{width:18.018000px;}
._23_c00213{width:19.620000px;}
._24_c00213{width:20.859000px;}
._25_c00213{width:22.695000px;}
._22_c00213{width:26.790000px;}
._15_c00213{width:31.509000px;}
._13_c00213{width:33.372000px;}
._14_c00213{width:35.478000px;}
._18_c00213{width:45.483000px;}
._21_c00213{width:48.399000px;}
._12_c00213{width:63.261000px;}
._11_c00213{width:68.274000px;}
._19_c00213{width:185.988000px;}
._1e_c00213{width:191.703000px;}
._1b_c00213{width:289.428000px;}
._20_c00213{width:510.471000px;}
.fc2_c00213{color:transparent;}
.fc1_c00213{color:rgb(128,128,128);}
.fc0_c00213{color:rgb(0,0,0);}
.fs6_c00213{font-size:48.000000px;}
.fs5_c00213{font-size:51.000000px;}
.fs3_c00213{font-size:60.000000px;}
.fs2_c00213{font-size:66.000000px;}
.fs4_c00213{font-size:72.000000px;}
.fs1_c00213{font-size:78.000000px;}
.fs0_c00213{font-size:81.000000px;}
.y0_c00213{bottom:0.000000px;}
.y23_c00213{bottom:3.105000px;}
.y22_c00213{bottom:7.228355px;}
.y21_c00213{bottom:56.235000px;}
.y20_c00213{bottom:78.885000px;}
.y1f_c00213{bottom:103.935000px;}
.y1e_c00213{bottom:128.535000px;}
.y1d_c00213{bottom:153.435000px;}
.y1c_c00213{bottom:177.435000px;}
.y1b_c00213{bottom:202.485000px;}
.y1a_c00213{bottom:226.485000px;}
.y19_c00213{bottom:251.085000px;}
.y18_c00213{bottom:275.985000px;}
.y17_c00213{bottom:299.685000px;}
.y16_c00213{bottom:323.985000px;}
.y15_c00213{bottom:348.285000px;}
.y14_c00213{bottom:372.885000px;}
.y13_c00213{bottom:395.235000px;}
.y12_c00213{bottom:421.485000px;}
.y11_c00213{bottom:445.335000px;}
.y10_c00213{bottom:469.485000px;}
.yf_c00213{bottom:493.635000px;}
.ye_c00213{bottom:518.085000px;}
.yd_c00213{bottom:541.935000px;}
.yc_c00213{bottom:568.335000px;}
.yb_c00213{bottom:590.985000px;}
.ya_c00213{bottom:615.135000px;}
.y9_c00213{bottom:639.135000px;}
.y8_c00213{bottom:662.085000px;}
.y7_c00213{bottom:712.035000px;}
.y6_c00213{bottom:759.585000px;}
.y5_c00213{bottom:783.585000px;}
.y4_c00213{bottom:807.585000px;}
.y3_c00213{bottom:831.885000px;}
.y2_c00213{bottom:855.885000px;}
.y1_c00213{bottom:879.435000px;}
.h8_c00213{height:13.200074px;}
.h9_c00213{height:43.804688px;}
.h5_c00213{height:64.743164px;}
.h3_c00213{height:79.497070px;}
.h7_c00213{height:83.226000px;}
.h6_c00213{height:84.269531px;}
.h4_c00213{height:91.160156px;}
.h2_c00213{height:98.756836px;}
.h0_c00213{height:964.425000px;}
.h1_c00213{height:964.500000px;}
.w2_c00213{width:104.875500px;}
.w0_c00213{width:646.950000px;}
.w1_c00213{width:647.250000px;}
.x0_c00213{left:0.000000px;}
.x10_c00213{left:24.600000px;}
.xd_c00213{left:28.650000px;}
.xc_c00213{left:30.300000px;}
.x9_c00213{left:32.100000px;}
.xa_c00213{left:33.750000px;}
.x6_c00213{left:39.450000px;}
.x11_c00213{left:120.150000px;}
.xf_c00213{left:121.200000px;}
.xe_c00213{left:122.400000px;}
.xb_c00213{left:124.500000px;}
.x8_c00213{left:125.850000px;}
.x7_c00213{left:127.500000px;}
.x2_c00213{left:131.250000px;}
.x4_c00213{left:132.750000px;}
.x3_c00213{left:134.100000px;}
.x1_c00213{left:135.900000px;}
.x5_c00213{left:231.600000px;}
.x13_c00213{left:275.289230px;}
.x12_c00213{left:534.900000px;}
@media print{
.v0_c00213{vertical-align:0.000000pt;}
.ls3_c00213{letter-spacing:-2.666667pt;}
.ls2_c00213{letter-spacing:0.000000pt;}
.ls0_c00213{letter-spacing:5.226667pt;}
.ls1_c00213{letter-spacing:10.133333pt;}
.ws2_c00213{word-spacing:-18.000000pt;}
.ws0_c00213{word-spacing:-16.709333pt;}
.ws1_c00213{word-spacing:-15.424000pt;}
.ws3_c00213{word-spacing:-14.042667pt;}
.ws5_c00213{word-spacing:0.000000pt;}
.ws4_c00213{word-spacing:3.490667pt;}
._1d_c00213{margin-left:-13.448000pt;}
._1f_c00213{margin-left:-9.141333pt;}
._e_c00213{margin-left:-7.949333pt;}
._16_c00213{margin-left:-5.888000pt;}
._a_c00213{margin-left:-4.861333pt;}
._6_c00213{margin-left:-3.210667pt;}
._f_c00213{margin-left:-2.168000pt;}
._2_c00213{margin-left:-1.152000pt;}
._1c_c00213{width:0.901333pt;}
._1_c00213{width:1.800000pt;}
._0_c00213{width:2.952000pt;}
._3_c00213{width:4.032000pt;}
._4_c00213{width:5.040000pt;}
._5_c00213{width:5.976000pt;}
._10_c00213{width:7.157333pt;}
._b_c00213{width:8.072000pt;}
._c_c00213{width:9.016000pt;}
._1a_c00213{width:10.010667pt;}
._9_c00213{width:10.944000pt;}
._7_c00213{width:11.880000pt;}
._8_c00213{width:13.608000pt;}
._17_c00213{width:14.973333pt;}
._d_c00213{width:16.016000pt;}
._23_c00213{width:17.440000pt;}
._24_c00213{width:18.541333pt;}
._25_c00213{width:20.173333pt;}
._22_c00213{width:23.813333pt;}
._15_c00213{width:28.008000pt;}
._13_c00213{width:29.664000pt;}
._14_c00213{width:31.536000pt;}
._18_c00213{width:40.429333pt;}
._21_c00213{width:43.021333pt;}
._12_c00213{width:56.232000pt;}
._11_c00213{width:60.688000pt;}
._19_c00213{width:165.322667pt;}
._1e_c00213{width:170.402667pt;}
._1b_c00213{width:257.269333pt;}
._20_c00213{width:453.752000pt;}
.fs6_c00213{font-size:42.666667pt;}
.fs5_c00213{font-size:45.333333pt;}
.fs3_c00213{font-size:53.333333pt;}
.fs2_c00213{font-size:58.666667pt;}
.fs4_c00213{font-size:64.000000pt;}
.fs1_c00213{font-size:69.333333pt;}
.fs0_c00213{font-size:72.000000pt;}
.y0_c00213{bottom:0.000000pt;}
.y23_c00213{bottom:2.760000pt;}
.y22_c00213{bottom:6.425204pt;}
.y21_c00213{bottom:49.986667pt;}
.y20_c00213{bottom:70.120000pt;}
.y1f_c00213{bottom:92.386667pt;}
.y1e_c00213{bottom:114.253333pt;}
.y1d_c00213{bottom:136.386667pt;}
.y1c_c00213{bottom:157.720000pt;}
.y1b_c00213{bottom:179.986667pt;}
.y1a_c00213{bottom:201.320000pt;}
.y19_c00213{bottom:223.186667pt;}
.y18_c00213{bottom:245.320000pt;}
.y17_c00213{bottom:266.386667pt;}
.y16_c00213{bottom:287.986667pt;}
.y15_c00213{bottom:309.586667pt;}
.y14_c00213{bottom:331.453333pt;}
.y13_c00213{bottom:351.320000pt;}
.y12_c00213{bottom:374.653333pt;}
.y11_c00213{bottom:395.853333pt;}
.y10_c00213{bottom:417.320000pt;}
.yf_c00213{bottom:438.786667pt;}
.ye_c00213{bottom:460.520000pt;}
.yd_c00213{bottom:481.720000pt;}
.yc_c00213{bottom:505.186667pt;}
.yb_c00213{bottom:525.320000pt;}
.ya_c00213{bottom:546.786667pt;}
.y9_c00213{bottom:568.120000pt;}
.y8_c00213{bottom:588.520000pt;}
.y7_c00213{bottom:632.920000pt;}
.y6_c00213{bottom:675.186667pt;}
.y5_c00213{bottom:696.520000pt;}
.y4_c00213{bottom:717.853333pt;}
.y3_c00213{bottom:739.453333pt;}
.y2_c00213{bottom:760.786667pt;}
.y1_c00213{bottom:781.720000pt;}
.h8_c00213{height:11.733399pt;}
.h9_c00213{height:38.937500pt;}
.h5_c00213{height:57.549479pt;}
.h3_c00213{height:70.664062pt;}
.h7_c00213{height:73.978667pt;}
.h6_c00213{height:74.906250pt;}
.h4_c00213{height:81.031250pt;}
.h2_c00213{height:87.783854pt;}
.h0_c00213{height:857.266667pt;}
.h1_c00213{height:857.333333pt;}
.w2_c00213{width:93.222667pt;}
.w0_c00213{width:575.066667pt;}
.w1_c00213{width:575.333333pt;}
.x0_c00213{left:0.000000pt;}
.x10_c00213{left:21.866667pt;}
.xd_c00213{left:25.466667pt;}
.xc_c00213{left:26.933333pt;}
.x9_c00213{left:28.533333pt;}
.xa_c00213{left:30.000000pt;}
.x6_c00213{left:35.066667pt;}
.x11_c00213{left:106.800000pt;}
.xf_c00213{left:107.733333pt;}
.xe_c00213{left:108.800000pt;}
.xb_c00213{left:110.666667pt;}
.x8_c00213{left:111.866667pt;}
.x7_c00213{left:113.333333pt;}
.x2_c00213{left:116.666667pt;}
.x4_c00213{left:118.000000pt;}
.x3_c00213{left:119.200000pt;}
.x1_c00213{left:120.800000pt;}
.x5_c00213{left:205.866667pt;}
.x13_c00213{left:244.701538pt;}
.x12_c00213{left:475.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_5cda7af918666104a980be9f.woff2')format("woff");}.ff1_c00214{font-family:ff1_c00214;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00214;src:url('chunks/assets/font_552ef2b4b14006b3ce12c565.woff2')format("woff");}.ff2_c00214{font-family:ff2_c00214;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00214;src:url('chunks/assets/font_613d225e443df20e2e32f4d5.woff2')format("woff");}.ff3_c00214{font-family:ff3_c00214;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00214;src:url('chunks/assets/font_0b1a5fbfabe90f267c6ca3b9.woff2')format("woff");}.ff4_c00214{font-family:ff4_c00214;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00214;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c00214{font-family:ff5_c00214;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00214{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00214{vertical-align:-15.000000px;}
.v0_c00214{vertical-align:0.000000px;}
.ls2_c00214{letter-spacing:0.000000px;}
.ls0_c00214{letter-spacing:7.416000px;}
.ls1_c00214{letter-spacing:139.800000px;}
.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;}
}
.ws1_c00214{word-spacing:-22.098000px;}
.ws0_c00214{word-spacing:-18.798000px;}
.ws2_c00214{word-spacing:-17.352000px;}
.ws3_c00214{word-spacing:0.000000px;}
._16_c00214{margin-left:-29.997000px;}
._13_c00214{margin-left:-27.072000px;}
._14_c00214{margin-left:-15.660000px;}
._15_c00214{margin-left:-12.180000px;}
._17_c00214{margin-left:-8.715000px;}
._11_c00214{margin-left:-7.281000px;}
._10_c00214{margin-left:-5.436000px;}
._12_c00214{margin-left:-4.143000px;}
._c_c00214{margin-left:-2.691000px;}
._b_c00214{margin-left:-1.116000px;}
._1_c00214{width:1.386000px;}
._d_c00214{width:2.754000px;}
._7_c00214{width:3.762000px;}
._0_c00214{width:4.851000px;}
._8_c00214{width:6.039000px;}
._2_c00214{width:7.227000px;}
._e_c00214{width:8.883000px;}
._3_c00214{width:10.395000px;}
._5_c00214{width:11.781000px;}
._4_c00214{width:13.563000px;}
._1c_c00214{width:15.147000px;}
._f_c00214{width:16.245000px;}
._19_c00214{width:18.378000px;}
._1b_c00214{width:22.443000px;}
._a_c00214{width:30.393000px;}
._6_c00214{width:33.759000px;}
._1d_c00214{width:35.046000px;}
._9_c00214{width:45.837000px;}
._18_c00214{width:54.624000px;}
._1a_c00214{width:266.817000px;}
._1e_c00214{width:368.982000px;}
.fc2_c00214{color:transparent;}
.fc1_c00214{color:rgb(128,128,128);}
.fc0_c00214{color:rgb(0,0,0);}
.fs6_c00214{font-size:48.000000px;}
.fs5_c00214{font-size:60.000000px;}
.fs2_c00214{font-size:72.000000px;}
.fs3_c00214{font-size:78.000000px;}
.fs1_c00214{font-size:81.000000px;}
.fs4_c00214{font-size:87.000000px;}
.fs0_c00214{font-size:99.000000px;}
.y0_c00214{bottom:0.000000px;}
.y26_c00214{bottom:3.105000px;}
.y25_c00214{bottom:7.228371px;}
.y24_c00214{bottom:68.265000px;}
.y23_c00214{bottom:92.865000px;}
.y22_c00214{bottom:117.765000px;}
.y21_c00214{bottom:142.215000px;}
.y20_c00214{bottom:166.815000px;}
.y1f_c00214{bottom:191.115000px;}
.y1e_c00214{bottom:215.715000px;}
.y1d_c00214{bottom:241.065000px;}
.y1c_c00214{bottom:264.915000px;}
.y1b_c00214{bottom:288.915000px;}
.y1a_c00214{bottom:313.515000px;}
.y19_c00214{bottom:337.815000px;}
.y18_c00214{bottom:361.515000px;}
.y17_c00214{bottom:385.815000px;}
.y16_c00214{bottom:410.115000px;}
.y15_c00214{bottom:434.115000px;}
.y14_c00214{bottom:458.115000px;}
.y13_c00214{bottom:482.715000px;}
.y12_c00214{bottom:508.365000px;}
.y11_c00214{bottom:530.865000px;}
.y10_c00214{bottom:555.165000px;}
.yf_c00214{bottom:579.615000px;}
.ye_c00214{bottom:602.565000px;}
.yd_c00214{bottom:630.615000px;}
.yc_c00214{bottom:650.715000px;}
.yb_c00214{bottom:675.015000px;}
.ya_c00214{bottom:698.415000px;}
.y9_c00214{bottom:723.015000px;}
.y8_c00214{bottom:746.565000px;}
.y7_c00214{bottom:770.865000px;}
.y6_c00214{bottom:794.865000px;}
.y5_c00214{bottom:819.165000px;}
.y4_c00214{bottom:842.865000px;}
.y3_c00214{bottom:867.015000px;}
.y2_c00214{bottom:891.315000px;}
.y1_c00214{bottom:924.465000px;}
.h9_c00214{height:13.200074px;}
.ha_c00214{height:43.804688px;}
.h8_c00214{height:75.966797px;}
.h3_c00214{height:79.497070px;}
.h4_c00214{height:84.269531px;}
.h7_c00214{height:91.160156px;}
.h5_c00214{height:98.756836px;}
.h6_c00214{height:110.151855px;}
.h2_c00214{height:115.870605px;}
.h0_c00214{height:989.025000px;}
.h1_c00214{height:989.250000px;}
.w1_c00214{width:104.875500px;}
.w0_c00214{width:672.000000px;}
.x0_c00214{left:0.000000px;}
.x6_c00214{left:61.800000px;}
.x4_c00214{left:63.150000px;}
.x3_c00214{left:64.500000px;}
.x2_c00214{left:65.850000px;}
.x1_c00214{left:78.600000px;}
.x5_c00214{left:83.400000px;}
.x8_c00214{left:287.814240px;}
.x7_c00214{left:368.250000px;}
@media print{
.v1_c00214{vertical-align:-13.333333pt;}
.v0_c00214{vertical-align:0.000000pt;}
.ls2_c00214{letter-spacing:0.000000pt;}
.ls0_c00214{letter-spacing:6.592000pt;}
.ls1_c00214{letter-spacing:124.266667pt;}
.ws1_c00214{word-spacing:-19.642667pt;}
.ws0_c00214{word-spacing:-16.709333pt;}
.ws2_c00214{word-spacing:-15.424000pt;}
.ws3_c00214{word-spacing:0.000000pt;}
._16_c00214{margin-left:-26.664000pt;}
._13_c00214{margin-left:-24.064000pt;}
._14_c00214{margin-left:-13.920000pt;}
._15_c00214{margin-left:-10.826667pt;}
._17_c00214{margin-left:-7.746667pt;}
._11_c00214{margin-left:-6.472000pt;}
._10_c00214{margin-left:-4.832000pt;}
._12_c00214{margin-left:-3.682667pt;}
._c_c00214{margin-left:-2.392000pt;}
._b_c00214{margin-left:-0.992000pt;}
._1_c00214{width:1.232000pt;}
._d_c00214{width:2.448000pt;}
._7_c00214{width:3.344000pt;}
._0_c00214{width:4.312000pt;}
._8_c00214{width:5.368000pt;}
._2_c00214{width:6.424000pt;}
._e_c00214{width:7.896000pt;}
._3_c00214{width:9.240000pt;}
._5_c00214{width:10.472000pt;}
._4_c00214{width:12.056000pt;}
._1c_c00214{width:13.464000pt;}
._f_c00214{width:14.440000pt;}
._19_c00214{width:16.336000pt;}
._1b_c00214{width:19.949333pt;}
._a_c00214{width:27.016000pt;}
._6_c00214{width:30.008000pt;}
._1d_c00214{width:31.152000pt;}
._9_c00214{width:40.744000pt;}
._18_c00214{width:48.554667pt;}
._1a_c00214{width:237.170667pt;}
._1e_c00214{width:327.984000pt;}
.fs6_c00214{font-size:42.666667pt;}
.fs5_c00214{font-size:53.333333pt;}
.fs2_c00214{font-size:64.000000pt;}
.fs3_c00214{font-size:69.333333pt;}
.fs1_c00214{font-size:72.000000pt;}
.fs4_c00214{font-size:77.333333pt;}
.fs0_c00214{font-size:88.000000pt;}
.y0_c00214{bottom:0.000000pt;}
.y26_c00214{bottom:2.760000pt;}
.y25_c00214{bottom:6.425219pt;}
.y24_c00214{bottom:60.680000pt;}
.y23_c00214{bottom:82.546667pt;}
.y22_c00214{bottom:104.680000pt;}
.y21_c00214{bottom:126.413333pt;}
.y20_c00214{bottom:148.280000pt;}
.y1f_c00214{bottom:169.880000pt;}
.y1e_c00214{bottom:191.746667pt;}
.y1d_c00214{bottom:214.280000pt;}
.y1c_c00214{bottom:235.480000pt;}
.y1b_c00214{bottom:256.813333pt;}
.y1a_c00214{bottom:278.680000pt;}
.y19_c00214{bottom:300.280000pt;}
.y18_c00214{bottom:321.346667pt;}
.y17_c00214{bottom:342.946667pt;}
.y16_c00214{bottom:364.546667pt;}
.y15_c00214{bottom:385.880000pt;}
.y14_c00214{bottom:407.213333pt;}
.y13_c00214{bottom:429.080000pt;}
.y12_c00214{bottom:451.880000pt;}
.y11_c00214{bottom:471.880000pt;}
.y10_c00214{bottom:493.480000pt;}
.yf_c00214{bottom:515.213333pt;}
.ye_c00214{bottom:535.613333pt;}
.yd_c00214{bottom:560.546667pt;}
.yc_c00214{bottom:578.413333pt;}
.yb_c00214{bottom:600.013333pt;}
.ya_c00214{bottom:620.813333pt;}
.y9_c00214{bottom:642.680000pt;}
.y8_c00214{bottom:663.613333pt;}
.y7_c00214{bottom:685.213333pt;}
.y6_c00214{bottom:706.546667pt;}
.y5_c00214{bottom:728.146667pt;}
.y4_c00214{bottom:749.213333pt;}
.y3_c00214{bottom:770.680000pt;}
.y2_c00214{bottom:792.280000pt;}
.y1_c00214{bottom:821.746667pt;}
.h9_c00214{height:11.733399pt;}
.ha_c00214{height:38.937500pt;}
.h8_c00214{height:67.526042pt;}
.h3_c00214{height:70.664062pt;}
.h4_c00214{height:74.906250pt;}
.h7_c00214{height:81.031250pt;}
.h5_c00214{height:87.783854pt;}
.h6_c00214{height:97.912760pt;}
.h2_c00214{height:102.996094pt;}
.h0_c00214{height:879.133333pt;}
.h1_c00214{height:879.333333pt;}
.w1_c00214{width:93.222667pt;}
.w0_c00214{width:597.333333pt;}
.x0_c00214{left:0.000000pt;}
.x6_c00214{left:54.933333pt;}
.x4_c00214{left:56.133333pt;}
.x3_c00214{left:57.333333pt;}
.x2_c00214{left:58.533333pt;}
.x1_c00214{left:69.866667pt;}
.x5_c00214{left:74.133333pt;}
.x8_c00214{left:255.834880pt;}
.x7_c00214{left:327.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_d10eba926d003a219807c935.woff2')format("woff");}.ff1_c00215{font-family:ff1_c00215;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00215;src:url('chunks/assets/font_aa3ee51ce9ec1ab4f8cb537a.woff2')format("woff");}.ff2_c00215{font-family:ff2_c00215;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00215;src:url('chunks/assets/font_7f71397beb68ba0715bc1056.woff2')format("woff");}.ff3_c00215{font-family:ff3_c00215;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00215;src:url('chunks/assets/font_e70a2bd99b05761b1301dee4.woff2')format("woff");}.ff4_c00215{font-family:ff4_c00215;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00215;src:url('chunks/assets/font_13e546466da39c0f7098cba1.woff2')format("woff");}.ff5_c00215{font-family:ff5_c00215;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00215;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c00215{font-family:ff6_c00215;line-height:1.219238;font-style: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;}
.ls3_c00215{letter-spacing:0.000000px;}
.ls1_c00215{letter-spacing:1.350000px;}
.ls4_c00215{letter-spacing:3.000000px;}
.ls0_c00215{letter-spacing:3.048000px;}
.ls5_c00215{letter-spacing:6.000000px;}
.ls2_c00215{letter-spacing:21.750000px;}
.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:-17.352000px;}
.ws0_c00215{word-spacing:-17.250000px;}
.ws2_c00215{word-spacing:0.000000px;}
._25_c00215{margin-left:-37.032000px;}
._17_c00215{margin-left:-24.300000px;}
._1c_c00215{margin-left:-22.923000px;}
._1d_c00215{margin-left:-21.747000px;}
._1a_c00215{margin-left:-20.088000px;}
._26_c00215{margin-left:-17.901000px;}
._13_c00215{margin-left:-16.767000px;}
._24_c00215{margin-left:-15.210000px;}
._6_c00215{margin-left:-10.692000px;}
._14_c00215{margin-left:-9.153000px;}
._c_c00215{margin-left:-8.100000px;}
._12_c00215{margin-left:-6.804000px;}
._4_c00215{margin-left:-5.670000px;}
._b_c00215{margin-left:-3.888000px;}
._0_c00215{margin-left:-2.430000px;}
._a_c00215{margin-left:-1.134000px;}
._d_c00215{width:1.134000px;}
._3_c00215{width:2.268000px;}
._1_c00215{width:3.645000px;}
._5_c00215{width:5.346000px;}
._2_c00215{width:6.885000px;}
._8_c00215{width:8.100000px;}
._e_c00215{width:9.639000px;}
._7_c00215{width:10.773000px;}
._9_c00215{width:12.555000px;}
._10_c00215{width:14.742000px;}
._f_c00215{width:16.443000px;}
._1e_c00215{width:17.739000px;}
._1f_c00215{width:25.272000px;}
._23_c00215{width:26.625000px;}
._22_c00215{width:27.945000px;}
._21_c00215{width:30.861000px;}
._19_c00215{width:53.298000px;}
._18_c00215{width:162.162000px;}
._20_c00215{width:171.753000px;}
._15_c00215{width:180.897000px;}
._11_c00215{width:228.987000px;}
._16_c00215{width:495.720000px;}
._27_c00215{width:526.824000px;}
._1b_c00215{width:530.688000px;}
._28_c00215{width:1070.658000px;}
.fc2_c00215{color:transparent;}
.fc1_c00215{color:rgb(128,128,128);}
.fc0_c00215{color:rgb(0,0,0);}
.fs4_c00215{font-size:48.000000px;}
.fs3_c00215{font-size:51.000000px;}
.fs1_c00215{font-size:69.000000px;}
.fs2_c00215{font-size:72.000000px;}
.fs0_c00215{font-size:81.000000px;}
.y0_c00215{bottom:0.000000px;}
.y26_c00215{bottom:3.105000px;}
.y25_c00215{bottom:7.228357px;}
.y24_c00215{bottom:76.680000px;}
.y23_c00215{bottom:103.680000px;}
.y22_c00215{bottom:127.980000px;}
.y21_c00215{bottom:151.980000px;}
.y20_c00215{bottom:176.580000px;}
.y1f_c00215{bottom:201.480000px;}
.y1e_c00215{bottom:225.780000px;}
.y1d_c00215{bottom:250.380000px;}
.y1c_c00215{bottom:274.680000px;}
.y1b_c00215{bottom:298.680000px;}
.y1a_c00215{bottom:322.380000px;}
.y19_c00215{bottom:347.280000px;}
.y18_c00215{bottom:371.580000px;}
.y17_c00215{bottom:395.580000px;}
.y16_c00215{bottom:419.880000px;}
.y15_c00215{bottom:444.180000px;}
.y14_c00215{bottom:468.480000px;}
.y13_c00215{bottom:492.030000px;}
.y12_c00215{bottom:502.530000px;}
.y11_c00215{bottom:516.330000px;}
.y10_c00215{bottom:539.730000px;}
.yf_c00215{bottom:564.030000px;}
.ye_c00215{bottom:588.030000px;}
.yd_c00215{bottom:612.180000px;}
.yc_c00215{bottom:636.480000px;}
.yb_c00215{bottom:660.480000px;}
.ya_c00215{bottom:684.780000px;}
.y9_c00215{bottom:708.480000px;}
.y8_c00215{bottom:732.780000px;}
.y7_c00215{bottom:756.780000px;}
.y6_c00215{bottom:780.930000px;}
.y5_c00215{bottom:804.630000px;}
.y4_c00215{bottom:828.630000px;}
.y3_c00215{bottom:852.180000px;}
.y2_c00215{bottom:876.180000px;}
.y1_c00215{bottom:899.880000px;}
.h3_c00215{height:13.200074px;}
.h4_c00215{height:43.804688px;}
.h1_c00215{height:79.497070px;}
.h2_c00215{height:84.269531px;}
.h0_c00215{height:995.250000px;}
.w2_c00215{width:104.875500px;}
.w0_c00215{width:667.425000px;}
.w1_c00215{width:667.500000px;}
.x0_c00215{left:0.000000px;}
.x10_c00215{left:34.050000px;}
.x5_c00215{left:35.550000px;}
.x1_c00215{left:112.350000px;}
.x2_c00215{left:116.400000px;}
.x3_c00215{left:118.050000px;}
.x4_c00215{left:119.100000px;}
.x6_c00215{left:121.500000px;}
.x7_c00215{left:123.600000px;}
.x8_c00215{left:125.250000px;}
.x9_c00215{left:126.300000px;}
.xb_c00215{left:127.350000px;}
.xc_c00215{left:128.550000px;}
.xd_c00215{left:129.600000px;}
.xe_c00215{left:130.650000px;}
.xf_c00215{left:131.700000px;}
.xa_c00215{left:163.350000px;}
.x11_c00215{left:285.526749px;}
@media print{
.v0_c00215{vertical-align:0.000000pt;}
.ls3_c00215{letter-spacing:0.000000pt;}
.ls1_c00215{letter-spacing:1.200000pt;}
.ls4_c00215{letter-spacing:2.666667pt;}
.ls0_c00215{letter-spacing:2.709333pt;}
.ls5_c00215{letter-spacing:5.333333pt;}
.ls2_c00215{letter-spacing:19.333333pt;}
.ws1_c00215{word-spacing:-15.424000pt;}
.ws0_c00215{word-spacing:-15.333333pt;}
.ws2_c00215{word-spacing:0.000000pt;}
._25_c00215{margin-left:-32.917333pt;}
._17_c00215{margin-left:-21.600000pt;}
._1c_c00215{margin-left:-20.376000pt;}
._1d_c00215{margin-left:-19.330667pt;}
._1a_c00215{margin-left:-17.856000pt;}
._26_c00215{margin-left:-15.912000pt;}
._13_c00215{margin-left:-14.904000pt;}
._24_c00215{margin-left:-13.520000pt;}
._6_c00215{margin-left:-9.504000pt;}
._14_c00215{margin-left:-8.136000pt;}
._c_c00215{margin-left:-7.200000pt;}
._12_c00215{margin-left:-6.048000pt;}
._4_c00215{margin-left:-5.040000pt;}
._b_c00215{margin-left:-3.456000pt;}
._0_c00215{margin-left:-2.160000pt;}
._a_c00215{margin-left:-1.008000pt;}
._d_c00215{width:1.008000pt;}
._3_c00215{width:2.016000pt;}
._1_c00215{width:3.240000pt;}
._5_c00215{width:4.752000pt;}
._2_c00215{width:6.120000pt;}
._8_c00215{width:7.200000pt;}
._e_c00215{width:8.568000pt;}
._7_c00215{width:9.576000pt;}
._9_c00215{width:11.160000pt;}
._10_c00215{width:13.104000pt;}
._f_c00215{width:14.616000pt;}
._1e_c00215{width:15.768000pt;}
._1f_c00215{width:22.464000pt;}
._23_c00215{width:23.666667pt;}
._22_c00215{width:24.840000pt;}
._21_c00215{width:27.432000pt;}
._19_c00215{width:47.376000pt;}
._18_c00215{width:144.144000pt;}
._20_c00215{width:152.669333pt;}
._15_c00215{width:160.797333pt;}
._11_c00215{width:203.544000pt;}
._16_c00215{width:440.640000pt;}
._27_c00215{width:468.288000pt;}
._1b_c00215{width:471.722667pt;}
._28_c00215{width:951.696000pt;}
.fs4_c00215{font-size:42.666667pt;}
.fs3_c00215{font-size:45.333333pt;}
.fs1_c00215{font-size:61.333333pt;}
.fs2_c00215{font-size:64.000000pt;}
.fs0_c00215{font-size:72.000000pt;}
.y0_c00215{bottom:0.000000pt;}
.y26_c00215{bottom:2.760000pt;}
.y25_c00215{bottom:6.425206pt;}
.y24_c00215{bottom:68.160000pt;}
.y23_c00215{bottom:92.160000pt;}
.y22_c00215{bottom:113.760000pt;}
.y21_c00215{bottom:135.093333pt;}
.y20_c00215{bottom:156.960000pt;}
.y1f_c00215{bottom:179.093333pt;}
.y1e_c00215{bottom:200.693333pt;}
.y1d_c00215{bottom:222.560000pt;}
.y1c_c00215{bottom:244.160000pt;}
.y1b_c00215{bottom:265.493333pt;}
.y1a_c00215{bottom:286.560000pt;}
.y19_c00215{bottom:308.693333pt;}
.y18_c00215{bottom:330.293333pt;}
.y17_c00215{bottom:351.626667pt;}
.y16_c00215{bottom:373.226667pt;}
.y15_c00215{bottom:394.826667pt;}
.y14_c00215{bottom:416.426667pt;}
.y13_c00215{bottom:437.360000pt;}
.y12_c00215{bottom:446.693333pt;}
.y11_c00215{bottom:458.960000pt;}
.y10_c00215{bottom:479.760000pt;}
.yf_c00215{bottom:501.360000pt;}
.ye_c00215{bottom:522.693333pt;}
.yd_c00215{bottom:544.160000pt;}
.yc_c00215{bottom:565.760000pt;}
.yb_c00215{bottom:587.093333pt;}
.ya_c00215{bottom:608.693333pt;}
.y9_c00215{bottom:629.760000pt;}
.y8_c00215{bottom:651.360000pt;}
.y7_c00215{bottom:672.693333pt;}
.y6_c00215{bottom:694.160000pt;}
.y5_c00215{bottom:715.226667pt;}
.y4_c00215{bottom:736.560000pt;}
.y3_c00215{bottom:757.493333pt;}
.y2_c00215{bottom:778.826667pt;}
.y1_c00215{bottom:799.893333pt;}
.h3_c00215{height:11.733399pt;}
.h4_c00215{height:38.937500pt;}
.h1_c00215{height:70.664062pt;}
.h2_c00215{height:74.906250pt;}
.h0_c00215{height:884.666667pt;}
.w2_c00215{width:93.222667pt;}
.w0_c00215{width:593.266667pt;}
.w1_c00215{width:593.333333pt;}
.x0_c00215{left:0.000000pt;}
.x10_c00215{left:30.266667pt;}
.x5_c00215{left:31.600000pt;}
.x1_c00215{left:99.866667pt;}
.x2_c00215{left:103.466667pt;}
.x3_c00215{left:104.933333pt;}
.x4_c00215{left:105.866667pt;}
.x6_c00215{left:108.000000pt;}
.x7_c00215{left:109.866667pt;}
.x8_c00215{left:111.333333pt;}
.x9_c00215{left:112.266667pt;}
.xb_c00215{left:113.200000pt;}
.xc_c00215{left:114.266667pt;}
.xd_c00215{left:115.200000pt;}
.xe_c00215{left:116.133333pt;}
.xf_c00215{left:117.066667pt;}
.xa_c00215{left:145.200000pt;}
.x11_c00215{left:253.801554pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_32723dc7978f0a49a52ace46.woff2')format("woff");}.ff1_c00216{font-family:ff1_c00216;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00216;src:url('chunks/assets/font_c5c3b02cfbbbe76b4c2cee7f.woff2')format("woff");}.ff2_c00216{font-family:ff2_c00216;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00216;src:url('chunks/assets/font_d74712940943f2354ac1746b.woff2')format("woff");}.ff3_c00216{font-family:ff3_c00216;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00216;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff4_c00216{font-family:ff4_c00216;line-height:1.219238;font-style: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;}
.v1_c00216{vertical-align:22.800000px;}
.ls3_c00216{letter-spacing:0.000000px;}
.ls2_c00216{letter-spacing:5.202000px;}
.ls1_c00216{letter-spacing:42.504000px;}
.ls0_c00216{letter-spacing:49.200000px;}
.sc__c00216{text-shadow:none;}
.sc0_c00216{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00216{-webkit-text-stroke:0px transparent;}
.sc0_c00216{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00216{word-spacing:-17.352000px;}
.ws1_c00216{word-spacing:0.000000px;}
._15_c00216{margin-left:-35.397000px;}
._1f_c00216{margin-left:-19.683000px;}
._1b_c00216{margin-left:-16.146000px;}
._25_c00216{margin-left:-14.184000px;}
._19_c00216{margin-left:-13.038000px;}
._2_c00216{margin-left:-11.979000px;}
._1c_c00216{margin-left:-10.368000px;}
._20_c00216{margin-left:-8.262000px;}
._14_c00216{margin-left:-6.912000px;}
._0_c00216{margin-left:-5.742000px;}
._1_c00216{margin-left:-4.257000px;}
._f_c00216{margin-left:-2.646000px;}
._7_c00216{margin-left:-1.485000px;}
._6_c00216{width:1.485000px;}
._5_c00216{width:3.069000px;}
._3_c00216{width:4.455000px;}
._b_c00216{width:5.787000px;}
._4_c00216{width:7.227000px;}
._d_c00216{width:8.433000px;}
._10_c00216{width:9.684000px;}
._c_c00216{width:10.899000px;}
._9_c00216{width:12.267000px;}
._12_c00216{width:14.103000px;}
._a_c00216{width:15.156000px;}
._18_c00216{width:16.524000px;}
._17_c00216{width:17.667000px;}
._13_c00216{width:25.803000px;}
._11_c00216{width:27.603000px;}
._22_c00216{width:30.123000px;}
._16_c00216{width:31.671000px;}
._1e_c00216{width:37.386000px;}
._23_c00216{width:38.871000px;}
._1a_c00216{width:56.994000px;}
._e_c00216{width:108.135000px;}
._1d_c00216{width:123.444000px;}
._21_c00216{width:145.899000px;}
._8_c00216{width:184.635000px;}
._24_c00216{width:311.283000px;}
.fc2_c00216{color:transparent;}
.fc1_c00216{color:rgb(128,128,128);}
.fc0_c00216{color:rgb(0,0,0);}
.fs6_c00216{font-size:48.000000px;}
.fs4_c00216{font-size:57.000000px;}
.fs2_c00216{font-size:60.000000px;}
.fs3_c00216{font-size:72.000000px;}
.fs5_c00216{font-size:78.000000px;}
.fs1_c00216{font-size:81.000000px;}
.fs0_c00216{font-size:99.000000px;}
.y0_c00216{bottom:0.000000px;}
.y27_c00216{bottom:3.105000px;}
.y26_c00216{bottom:7.228363px;}
.y24_c00216{bottom:57.000000px;}
.y23_c00216{bottom:83.400000px;}
.y22_c00216{bottom:109.050000px;}
.y21_c00216{bottom:133.650000px;}
.y20_c00216{bottom:157.650000px;}
.y25_c00216{bottom:161.700000px;}
.y1f_c00216{bottom:182.250000px;}
.y1e_c00216{bottom:207.600000px;}
.y1d_c00216{bottom:230.850000px;}
.y1c_c00216{bottom:255.150000px;}
.y1b_c00216{bottom:279.750000px;}
.y1a_c00216{bottom:303.750000px;}
.y19_c00216{bottom:328.050000px;}
.y18_c00216{bottom:352.050000px;}
.y17_c00216{bottom:376.350000px;}
.y16_c00216{bottom:400.200000px;}
.y15_c00216{bottom:424.200000px;}
.y14_c00216{bottom:448.200000px;}
.y13_c00216{bottom:472.500000px;}
.y12_c00216{bottom:496.800000px;}
.y11_c00216{bottom:521.100000px;}
.y10_c00216{bottom:544.950000px;}
.yf_c00216{bottom:568.950000px;}
.ye_c00216{bottom:592.950000px;}
.yd_c00216{bottom:616.950000px;}
.yc_c00216{bottom:640.800000px;}
.yb_c00216{bottom:664.800000px;}
.ya_c00216{bottom:689.100000px;}
.y9_c00216{bottom:713.100000px;}
.y8_c00216{bottom:737.400000px;}
.y7_c00216{bottom:761.400000px;}
.y6_c00216{bottom:785.700000px;}
.y5_c00216{bottom:810.600000px;}
.y4_c00216{bottom:834.000000px;}
.y3_c00216{bottom:852.150000px;}
.y2_c00216{bottom:882.000000px;}
.y1_c00216{bottom:916.350000px;}
.h7_c00216{height:13.200074px;}
.h8_c00216{height:43.804688px;}
.h3_c00216{height:79.497070px;}
.h5_c00216{height:84.269531px;}
.h6_c00216{height:98.756836px;}
.h4_c00216{height:102.297070px;}
.h2_c00216{height:115.870605px;}
.h0_c00216{height:974.700000px;}
.h1_c00216{height:975.000000px;}
.w2_c00216{width:104.875500px;}
.w0_c00216{width:662.025000px;}
.w1_c00216{width:662.250000px;}
.x0_c00216{left:0.000000px;}
.x5_c00216{left:11.850000px;}
.xa_c00216{left:15.900000px;}
.x2_c00216{left:22.650000px;}
.x3_c00216{left:25.650000px;}
.x6_c00216{left:27.600000px;}
.x7_c00216{left:29.250000px;}
.x8_c00216{left:30.600000px;}
.x9_c00216{left:32.400000px;}
.xc_c00216{left:34.350000px;}
.xd_c00216{left:36.150000px;}
.xe_c00216{left:37.350000px;}
.xf_c00216{left:38.700000px;}
.xb_c00216{left:41.100000px;}
.x10_c00216{left:42.450000px;}
.x11_c00216{left:43.800000px;}
.x4_c00216{left:51.300000px;}
.x1_c00216{left:93.750000px;}
.x14_c00216{left:282.826767px;}
.x12_c00216{left:354.000000px;}
.x13_c00216{left:591.600000px;}
@media print{
.v0_c00216{vertical-align:0.000000pt;}
.v1_c00216{vertical-align:20.266667pt;}
.ls3_c00216{letter-spacing:0.000000pt;}
.ls2_c00216{letter-spacing:4.624000pt;}
.ls1_c00216{letter-spacing:37.781333pt;}
.ls0_c00216{letter-spacing:43.733333pt;}
.ws0_c00216{word-spacing:-15.424000pt;}
.ws1_c00216{word-spacing:0.000000pt;}
._15_c00216{margin-left:-31.464000pt;}
._1f_c00216{margin-left:-17.496000pt;}
._1b_c00216{margin-left:-14.352000pt;}
._25_c00216{margin-left:-12.608000pt;}
._19_c00216{margin-left:-11.589333pt;}
._2_c00216{margin-left:-10.648000pt;}
._1c_c00216{margin-left:-9.216000pt;}
._20_c00216{margin-left:-7.344000pt;}
._14_c00216{margin-left:-6.144000pt;}
._0_c00216{margin-left:-5.104000pt;}
._1_c00216{margin-left:-3.784000pt;}
._f_c00216{margin-left:-2.352000pt;}
._7_c00216{margin-left:-1.320000pt;}
._6_c00216{width:1.320000pt;}
._5_c00216{width:2.728000pt;}
._3_c00216{width:3.960000pt;}
._b_c00216{width:5.144000pt;}
._4_c00216{width:6.424000pt;}
._d_c00216{width:7.496000pt;}
._10_c00216{width:8.608000pt;}
._c_c00216{width:9.688000pt;}
._9_c00216{width:10.904000pt;}
._12_c00216{width:12.536000pt;}
._a_c00216{width:13.472000pt;}
._18_c00216{width:14.688000pt;}
._17_c00216{width:15.704000pt;}
._13_c00216{width:22.936000pt;}
._11_c00216{width:24.536000pt;}
._22_c00216{width:26.776000pt;}
._16_c00216{width:28.152000pt;}
._1e_c00216{width:33.232000pt;}
._23_c00216{width:34.552000pt;}
._1a_c00216{width:50.661333pt;}
._e_c00216{width:96.120000pt;}
._1d_c00216{width:109.728000pt;}
._21_c00216{width:129.688000pt;}
._8_c00216{width:164.120000pt;}
._24_c00216{width:276.696000pt;}
.fs6_c00216{font-size:42.666667pt;}
.fs4_c00216{font-size:50.666667pt;}
.fs2_c00216{font-size:53.333333pt;}
.fs3_c00216{font-size:64.000000pt;}
.fs5_c00216{font-size:69.333333pt;}
.fs1_c00216{font-size:72.000000pt;}
.fs0_c00216{font-size:88.000000pt;}
.y0_c00216{bottom:0.000000pt;}
.y27_c00216{bottom:2.760000pt;}
.y26_c00216{bottom:6.425212pt;}
.y24_c00216{bottom:50.666667pt;}
.y23_c00216{bottom:74.133333pt;}
.y22_c00216{bottom:96.933333pt;}
.y21_c00216{bottom:118.800000pt;}
.y20_c00216{bottom:140.133333pt;}
.y25_c00216{bottom:143.733333pt;}
.y1f_c00216{bottom:162.000000pt;}
.y1e_c00216{bottom:184.533333pt;}
.y1d_c00216{bottom:205.200000pt;}
.y1c_c00216{bottom:226.800000pt;}
.y1b_c00216{bottom:248.666667pt;}
.y1a_c00216{bottom:270.000000pt;}
.y19_c00216{bottom:291.600000pt;}
.y18_c00216{bottom:312.933333pt;}
.y17_c00216{bottom:334.533333pt;}
.y16_c00216{bottom:355.733333pt;}
.y15_c00216{bottom:377.066667pt;}
.y14_c00216{bottom:398.400000pt;}
.y13_c00216{bottom:420.000000pt;}
.y12_c00216{bottom:441.600000pt;}
.y11_c00216{bottom:463.200000pt;}
.y10_c00216{bottom:484.400000pt;}
.yf_c00216{bottom:505.733333pt;}
.ye_c00216{bottom:527.066667pt;}
.yd_c00216{bottom:548.400000pt;}
.yc_c00216{bottom:569.600000pt;}
.yb_c00216{bottom:590.933333pt;}
.ya_c00216{bottom:612.533333pt;}
.y9_c00216{bottom:633.866667pt;}
.y8_c00216{bottom:655.466667pt;}
.y7_c00216{bottom:676.800000pt;}
.y6_c00216{bottom:698.400000pt;}
.y5_c00216{bottom:720.533333pt;}
.y4_c00216{bottom:741.333333pt;}
.y3_c00216{bottom:757.466667pt;}
.y2_c00216{bottom:784.000000pt;}
.y1_c00216{bottom:814.533333pt;}
.h7_c00216{height:11.733399pt;}
.h8_c00216{height:38.937500pt;}
.h3_c00216{height:70.664062pt;}
.h5_c00216{height:74.906250pt;}
.h6_c00216{height:87.783854pt;}
.h4_c00216{height:90.930729pt;}
.h2_c00216{height:102.996094pt;}
.h0_c00216{height:866.400000pt;}
.h1_c00216{height:866.666667pt;}
.w2_c00216{width:93.222667pt;}
.w0_c00216{width:588.466667pt;}
.w1_c00216{width:588.666667pt;}
.x0_c00216{left:0.000000pt;}
.x5_c00216{left:10.533333pt;}
.xa_c00216{left:14.133333pt;}
.x2_c00216{left:20.133333pt;}
.x3_c00216{left:22.800000pt;}
.x6_c00216{left:24.533333pt;}
.x7_c00216{left:26.000000pt;}
.x8_c00216{left:27.200000pt;}
.x9_c00216{left:28.800000pt;}
.xc_c00216{left:30.533333pt;}
.xd_c00216{left:32.133333pt;}
.xe_c00216{left:33.200000pt;}
.xf_c00216{left:34.400000pt;}
.xb_c00216{left:36.533333pt;}
.x10_c00216{left:37.733333pt;}
.x11_c00216{left:38.933333pt;}
.x4_c00216{left:45.600000pt;}
.x1_c00216{left:83.333333pt;}
.x14_c00216{left:251.401571pt;}
.x12_c00216{left:314.666667pt;}
.x13_c00216{left:525.866667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a86a445f66c4cb34036c196b.woff2')format("woff");}.ff1_c00217{font-family:ff1_c00217;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00217;src:url('chunks/assets/font_cf838c356c9a3c2890368851.woff2')format("woff");}.ff2_c00217{font-family:ff2_c00217;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00217;src:url('chunks/assets/font_5d212c696a6eed7cea388eed.woff2')format("woff");}.ff3_c00217{font-family:ff3_c00217;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00217;src:url('chunks/assets/font_117e08bddb8349859038ea7a.woff2')format("woff");}.ff4_c00217{font-family:ff4_c00217;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00217;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c00217{font-family:ff5_c00217;line-height:1.219238;font-style: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;}
.ls0_c00217{letter-spacing:0.000000px;}
.sc__c00217{text-shadow:none;}
.sc0_c00217{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00217{-webkit-text-stroke:0px transparent;}
.sc0_c00217{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00217{word-spacing:-59.184000px;}
.ws0_c00217{word-spacing:-22.518000px;}
.ws3_c00217{word-spacing:-20.250000px;}
.ws1_c00217{word-spacing:-18.014400px;}
.ws4_c00217{word-spacing:0.000000px;}
._10_c00217{margin-left:-23.571000px;}
._19_c00217{margin-left:-21.168000px;}
._b_c00217{margin-left:-15.957000px;}
._18_c00217{margin-left:-11.691000px;}
._13_c00217{margin-left:-9.639000px;}
._11_c00217{margin-left:-7.764000px;}
._d_c00217{margin-left:-5.751000px;}
._7_c00217{margin-left:-4.536000px;}
._3_c00217{margin-left:-2.754000px;}
._5_c00217{margin-left:-1.053000px;}
._2_c00217{width:1.863000px;}
._4_c00217{width:3.807000px;}
._0_c00217{width:5.103000px;}
._1_c00217{width:6.966000px;}
._6_c00217{width:8.505000px;}
._c_c00217{width:9.639000px;}
._9_c00217{width:10.692000px;}
._8_c00217{width:12.636000px;}
._a_c00217{width:14.094000px;}
._f_c00217{width:15.309000px;}
._15_c00217{width:17.658000px;}
._e_c00217{width:29.727000px;}
._16_c00217{width:32.967000px;}
._14_c00217{width:35.547000px;}
._1a_c00217{width:38.889000px;}
._17_c00217{width:43.476000px;}
._1b_c00217{width:247.374000px;}
._12_c00217{width:275.260800px;}
.fc2_c00217{color:transparent;}
.fc1_c00217{color:rgb(128,128,128);}
.fc0_c00217{color:rgb(0,0,0);}
.fs4_c00217{font-size:48.000000px;}
.fs2_c00217{font-size:64.800000px;}
.fs3_c00217{font-size:72.000000px;}
.fs1_c00217{font-size:78.000000px;}
.fs0_c00217{font-size:81.000000px;}
.y0_c00217{bottom:0.000000px;}
.y25_c00217{bottom:3.105000px;}
.y24_c00217{bottom:7.228357px;}
.y23_c00217{bottom:73.980000px;}
.y22_c00217{bottom:97.530000px;}
.y21_c00217{bottom:122.580000px;}
.y20_c00217{bottom:147.780000px;}
.y1f_c00217{bottom:172.530000px;}
.y1e_c00217{bottom:196.830000px;}
.y1d_c00217{bottom:221.430000px;}
.y1c_c00217{bottom:246.330000px;}
.y1b_c00217{bottom:270.630000px;}
.y1a_c00217{bottom:294.930000px;}
.y19_c00217{bottom:319.680000px;}
.y18_c00217{bottom:345.030000px;}
.y17_c00217{bottom:368.280000px;}
.y16_c00217{bottom:392.280000px;}
.y15_c00217{bottom:417.780000px;}
.y14_c00217{bottom:440.730000px;}
.y13_c00217{bottom:463.080000px;}
.y12_c00217{bottom:489.030000px;}
.y11_c00217{bottom:513.030000px;}
.y10_c00217{bottom:537.030000px;}
.yf_c00217{bottom:561.030000px;}
.ye_c00217{bottom:585.180000px;}
.yd_c00217{bottom:609.930000px;}
.yc_c00217{bottom:633.780000px;}
.yb_c00217{bottom:657.780000px;}
.ya_c00217{bottom:682.080000px;}
.y9_c00217{bottom:706.080000px;}
.y8_c00217{bottom:730.380000px;}
.y7_c00217{bottom:754.380000px;}
.y6_c00217{bottom:778.380000px;}
.y5_c00217{bottom:802.530000px;}
.y4_c00217{bottom:826.530000px;}
.y3_c00217{bottom:850.830000px;}
.y2_c00217{bottom:874.530000px;}
.y1_c00217{bottom:898.380000px;}
.h5_c00217{height:13.200074px;}
.h6_c00217{height:43.804688px;}
.h1_c00217{height:79.497070px;}
.h4_c00217{height:84.269531px;}
.h3_c00217{height:91.160156px;}
.h2_c00217{height:98.756836px;}
.h0_c00217{height:995.250000px;}
.w2_c00217{width:104.875500px;}
.w0_c00217{width:667.425000px;}
.w1_c00217{width:667.500000px;}
.x0_c00217{left:0.000000px;}
.x10_c00217{left:6.450000px;}
.x8_c00217{left:13.200000px;}
.xf_c00217{left:64.500000px;}
.xe_c00217{left:101.250000px;}
.xc_c00217{left:102.300000px;}
.xb_c00217{left:104.400000px;}
.xa_c00217{left:106.050000px;}
.x9_c00217{left:108.000000px;}
.x7_c00217{left:109.950000px;}
.x5_c00217{left:111.750000px;}
.x6_c00217{left:113.100000px;}
.x4_c00217{left:114.300000px;}
.x3_c00217{left:115.350000px;}
.x2_c00217{left:116.400000px;}
.x1_c00217{left:117.750000px;}
.xd_c00217{left:172.500000px;}
.x12_c00217{left:285.526749px;}
.x11_c00217{left:529.950000px;}
@media print{
.v0_c00217{vertical-align:0.000000pt;}
.ls0_c00217{letter-spacing:0.000000pt;}
.ws2_c00217{word-spacing:-52.608000pt;}
.ws0_c00217{word-spacing:-20.016000pt;}
.ws3_c00217{word-spacing:-18.000000pt;}
.ws1_c00217{word-spacing:-16.012800pt;}
.ws4_c00217{word-spacing:0.000000pt;}
._10_c00217{margin-left:-20.952000pt;}
._19_c00217{margin-left:-18.816000pt;}
._b_c00217{margin-left:-14.184000pt;}
._18_c00217{margin-left:-10.392000pt;}
._13_c00217{margin-left:-8.568000pt;}
._11_c00217{margin-left:-6.901333pt;}
._d_c00217{margin-left:-5.112000pt;}
._7_c00217{margin-left:-4.032000pt;}
._3_c00217{margin-left:-2.448000pt;}
._5_c00217{margin-left:-0.936000pt;}
._2_c00217{width:1.656000pt;}
._4_c00217{width:3.384000pt;}
._0_c00217{width:4.536000pt;}
._1_c00217{width:6.192000pt;}
._6_c00217{width:7.560000pt;}
._c_c00217{width:8.568000pt;}
._9_c00217{width:9.504000pt;}
._8_c00217{width:11.232000pt;}
._a_c00217{width:12.528000pt;}
._f_c00217{width:13.608000pt;}
._15_c00217{width:15.696000pt;}
._e_c00217{width:26.424000pt;}
._16_c00217{width:29.304000pt;}
._14_c00217{width:31.597333pt;}
._1a_c00217{width:34.568000pt;}
._17_c00217{width:38.645333pt;}
._1b_c00217{width:219.888000pt;}
._12_c00217{width:244.676267pt;}
.fs4_c00217{font-size:42.666667pt;}
.fs2_c00217{font-size:57.600000pt;}
.fs3_c00217{font-size:64.000000pt;}
.fs1_c00217{font-size:69.333333pt;}
.fs0_c00217{font-size:72.000000pt;}
.y0_c00217{bottom:0.000000pt;}
.y25_c00217{bottom:2.760000pt;}
.y24_c00217{bottom:6.425206pt;}
.y23_c00217{bottom:65.760000pt;}
.y22_c00217{bottom:86.693333pt;}
.y21_c00217{bottom:108.960000pt;}
.y20_c00217{bottom:131.360000pt;}
.y1f_c00217{bottom:153.360000pt;}
.y1e_c00217{bottom:174.960000pt;}
.y1d_c00217{bottom:196.826667pt;}
.y1c_c00217{bottom:218.960000pt;}
.y1b_c00217{bottom:240.560000pt;}
.y1a_c00217{bottom:262.160000pt;}
.y19_c00217{bottom:284.160000pt;}
.y18_c00217{bottom:306.693333pt;}
.y17_c00217{bottom:327.360000pt;}
.y16_c00217{bottom:348.693333pt;}
.y15_c00217{bottom:371.360000pt;}
.y14_c00217{bottom:391.760000pt;}
.y13_c00217{bottom:411.626667pt;}
.y12_c00217{bottom:434.693333pt;}
.y11_c00217{bottom:456.026667pt;}
.y10_c00217{bottom:477.360000pt;}
.yf_c00217{bottom:498.693333pt;}
.ye_c00217{bottom:520.160000pt;}
.yd_c00217{bottom:542.160000pt;}
.yc_c00217{bottom:563.360000pt;}
.yb_c00217{bottom:584.693333pt;}
.ya_c00217{bottom:606.293333pt;}
.y9_c00217{bottom:627.626667pt;}
.y8_c00217{bottom:649.226667pt;}
.y7_c00217{bottom:670.560000pt;}
.y6_c00217{bottom:691.893333pt;}
.y5_c00217{bottom:713.360000pt;}
.y4_c00217{bottom:734.693333pt;}
.y3_c00217{bottom:756.293333pt;}
.y2_c00217{bottom:777.360000pt;}
.y1_c00217{bottom:798.560000pt;}
.h5_c00217{height:11.733399pt;}
.h6_c00217{height:38.937500pt;}
.h1_c00217{height:70.664062pt;}
.h4_c00217{height:74.906250pt;}
.h3_c00217{height:81.031250pt;}
.h2_c00217{height:87.783854pt;}
.h0_c00217{height:884.666667pt;}
.w2_c00217{width:93.222667pt;}
.w0_c00217{width:593.266667pt;}
.w1_c00217{width:593.333333pt;}
.x0_c00217{left:0.000000pt;}
.x10_c00217{left:5.733333pt;}
.x8_c00217{left:11.733333pt;}
.xf_c00217{left:57.333333pt;}
.xe_c00217{left:90.000000pt;}
.xc_c00217{left:90.933333pt;}
.xb_c00217{left:92.800000pt;}
.xa_c00217{left:94.266667pt;}
.x9_c00217{left:96.000000pt;}
.x7_c00217{left:97.733333pt;}
.x5_c00217{left:99.333333pt;}
.x6_c00217{left:100.533333pt;}
.x4_c00217{left:101.600000pt;}
.x3_c00217{left:102.533333pt;}
.x2_c00217{left:103.466667pt;}
.x1_c00217{left:104.666667pt;}
.xd_c00217{left:153.333333pt;}
.x12_c00217{left:253.801554pt;}
.x11_c00217{left:471.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_647d8e7b08f4cf82d52724df.woff2')format("woff");}.ff1_c00218{font-family:ff1_c00218;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00218;src:url('chunks/assets/font_2e4b3321721a624fc3aba831.woff2')format("woff");}.ff2_c00218{font-family:ff2_c00218;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00218;src:url('chunks/assets/font_523bc46f72c33e8846afd319.woff2')format("woff");}.ff3_c00218{font-family:ff3_c00218;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00218;src:url('chunks/assets/font_3d891907f87d5851e73dd78a.woff2')format("woff");}.ff4_c00218{font-family:ff4_c00218;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00218;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c00218{font-family:ff5_c00218;line-height:1.219238;font-style: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;}
.ls0_c00218{letter-spacing:0.000000px;}
.ls1_c00218{letter-spacing:15.000000px;}
.sc__c00218{text-shadow:none;}
.sc0_c00218{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00218{-webkit-text-stroke:0px transparent;}
.sc0_c00218{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00218{word-spacing:-17.352000px;}
.ws2_c00218{word-spacing:-11.883000px;}
.ws3_c00218{word-spacing:0.000000px;}
.ws0_c00218{word-spacing:0.288000px;}
._1a_c00218{margin-left:-38.997000px;}
._2_c00218{margin-left:-29.952000px;}
._b_c00218{margin-left:-21.912000px;}
._4_c00218{margin-left:-20.640000px;}
._a_c00218{margin-left:-18.876000px;}
._20_c00218{margin-left:-12.438000px;}
._7_c00218{margin-left:-10.089000px;}
._3_c00218{margin-left:-8.541000px;}
._5_c00218{margin-left:-7.497000px;}
._1_c00218{margin-left:-6.120000px;}
._1b_c00218{margin-left:-5.085000px;}
._6_c00218{margin-left:-3.960000px;}
._0_c00218{margin-left:-2.376000px;}
._8_c00218{margin-left:-1.134000px;}
._11_c00218{width:1.134000px;}
._d_c00218{width:2.430000px;}
._12_c00218{width:3.645000px;}
._13_c00218{width:4.932000px;}
._c_c00218{width:5.994000px;}
._f_c00218{width:7.146000px;}
._10_c00218{width:9.099000px;}
._14_c00218{width:10.584000px;}
._15_c00218{width:11.763000px;}
._17_c00218{width:13.110000px;}
._e_c00218{width:14.256000px;}
._1c_c00218{width:15.348000px;}
._18_c00218{width:17.679000px;}
._19_c00218{width:22.752000px;}
._21_c00218{width:31.059000px;}
._1e_c00218{width:35.925000px;}
._1f_c00218{width:37.854000px;}
._1d_c00218{width:91.269000px;}
._9_c00218{width:132.396000px;}
._16_c00218{width:190.962000px;}
.fc2_c00218{color:transparent;}
.fc1_c00218{color:rgb(128,128,128);}
.fc0_c00218{color:rgb(0,0,0);}
.fs7_c00218{font-size:48.000000px;}
.fs6_c00218{font-size:51.000000px;}
.fs4_c00218{font-size:72.000000px;}
.fs5_c00218{font-size:78.000000px;}
.fs3_c00218{font-size:81.000000px;}
.fs0_c00218{font-size:99.000000px;}
.fs1_c00218{font-size:117.000000px;}
.fs2_c00218{font-size:132.000000px;}
.y0_c00218{bottom:0.000000px;}
.y26_c00218{bottom:3.105000px;}
.y25_c00218{bottom:7.228355px;}
.y24_c00218{bottom:76.935000px;}
.y23_c00218{bottom:99.585000px;}
.y22_c00218{bottom:124.785000px;}
.y21_c00218{bottom:149.085000px;}
.y20_c00218{bottom:173.085000px;}
.y1f_c00218{bottom:197.685000px;}
.y1e_c00218{bottom:221.985000px;}
.y1d_c00218{bottom:246.735000px;}
.y1c_c00218{bottom:270.585000px;}
.y1b_c00218{bottom:294.585000px;}
.y1a_c00218{bottom:318.585000px;}
.y19_c00218{bottom:342.585000px;}
.y18_c00218{bottom:366.735000px;}
.y17_c00218{bottom:391.035000px;}
.y16_c00218{bottom:414.735000px;}
.y15_c00218{bottom:439.035000px;}
.y14_c00218{bottom:463.335000px;}
.y13_c00218{bottom:487.335000px;}
.y12_c00218{bottom:511.635000px;}
.y11_c00218{bottom:535.635000px;}
.y10_c00218{bottom:559.485000px;}
.yf_c00218{bottom:583.185000px;}
.ye_c00218{bottom:607.035000px;}
.yd_c00218{bottom:631.335000px;}
.yc_c00218{bottom:654.735000px;}
.yb_c00218{bottom:678.735000px;}
.ya_c00218{bottom:703.035000px;}
.y9_c00218{bottom:727.185000px;}
.y8_c00218{bottom:751.185000px;}
.y7_c00218{bottom:775.785000px;}
.y6_c00218{bottom:799.785000px;}
.y5_c00218{bottom:824.085000px;}
.y4_c00218{bottom:848.085000px;}
.y3_c00218{bottom:872.085000px;}
.y2_c00218{bottom:896.085000px;}
.y1_c00218{bottom:931.035000px;}
.h7_c00218{height:13.200074px;}
.h8_c00218{height:43.804688px;}
.h6_c00218{height:51.398438px;}
.h3_c00218{height:79.497070px;}
.h4_c00218{height:84.269531px;}
.h5_c00218{height:98.756836px;}
.h2_c00218{height:167.126953px;}
.h0_c00218{height:977.925000px;}
.h1_c00218{height:978.000000px;}
.w2_c00218{width:104.875500px;}
.w0_c00218{width:664.200000px;}
.w1_c00218{width:664.500000px;}
.x0_c00218{left:0.000000px;}
.x2_c00218{left:42.600000px;}
.x3_c00218{left:43.650000px;}
.x5_c00218{left:44.850000px;}
.x4_c00218{left:45.900000px;}
.x1_c00218{left:121.200000px;}
.x7_c00218{left:283.914230px;}
.x6_c00218{left:495.900000px;}
@media print{
.v0_c00218{vertical-align:0.000000pt;}
.ls0_c00218{letter-spacing:0.000000pt;}
.ls1_c00218{letter-spacing:13.333333pt;}
.ws1_c00218{word-spacing:-15.424000pt;}
.ws2_c00218{word-spacing:-10.562667pt;}
.ws3_c00218{word-spacing:0.000000pt;}
.ws0_c00218{word-spacing:0.256000pt;}
._1a_c00218{margin-left:-34.664000pt;}
._2_c00218{margin-left:-26.624000pt;}
._b_c00218{margin-left:-19.477333pt;}
._4_c00218{margin-left:-18.346667pt;}
._a_c00218{margin-left:-16.778667pt;}
._20_c00218{margin-left:-11.056000pt;}
._7_c00218{margin-left:-8.968000pt;}
._3_c00218{margin-left:-7.592000pt;}
._5_c00218{margin-left:-6.664000pt;}
._1_c00218{margin-left:-5.440000pt;}
._1b_c00218{margin-left:-4.520000pt;}
._6_c00218{margin-left:-3.520000pt;}
._0_c00218{margin-left:-2.112000pt;}
._8_c00218{margin-left:-1.008000pt;}
._11_c00218{width:1.008000pt;}
._d_c00218{width:2.160000pt;}
._12_c00218{width:3.240000pt;}
._13_c00218{width:4.384000pt;}
._c_c00218{width:5.328000pt;}
._f_c00218{width:6.352000pt;}
._10_c00218{width:8.088000pt;}
._14_c00218{width:9.408000pt;}
._15_c00218{width:10.456000pt;}
._17_c00218{width:11.653333pt;}
._e_c00218{width:12.672000pt;}
._1c_c00218{width:13.642667pt;}
._18_c00218{width:15.714667pt;}
._19_c00218{width:20.224000pt;}
._21_c00218{width:27.608000pt;}
._1e_c00218{width:31.933333pt;}
._1f_c00218{width:33.648000pt;}
._1d_c00218{width:81.128000pt;}
._9_c00218{width:117.685333pt;}
._16_c00218{width:169.744000pt;}
.fs7_c00218{font-size:42.666667pt;}
.fs6_c00218{font-size:45.333333pt;}
.fs4_c00218{font-size:64.000000pt;}
.fs5_c00218{font-size:69.333333pt;}
.fs3_c00218{font-size:72.000000pt;}
.fs0_c00218{font-size:88.000000pt;}
.fs1_c00218{font-size:104.000000pt;}
.fs2_c00218{font-size:117.333333pt;}
.y0_c00218{bottom:0.000000pt;}
.y26_c00218{bottom:2.760000pt;}
.y25_c00218{bottom:6.425204pt;}
.y24_c00218{bottom:68.386667pt;}
.y23_c00218{bottom:88.520000pt;}
.y22_c00218{bottom:110.920000pt;}
.y21_c00218{bottom:132.520000pt;}
.y20_c00218{bottom:153.853333pt;}
.y1f_c00218{bottom:175.720000pt;}
.y1e_c00218{bottom:197.320000pt;}
.y1d_c00218{bottom:219.320000pt;}
.y1c_c00218{bottom:240.520000pt;}
.y1b_c00218{bottom:261.853333pt;}
.y1a_c00218{bottom:283.186667pt;}
.y19_c00218{bottom:304.520000pt;}
.y18_c00218{bottom:325.986667pt;}
.y17_c00218{bottom:347.586667pt;}
.y16_c00218{bottom:368.653333pt;}
.y15_c00218{bottom:390.253333pt;}
.y14_c00218{bottom:411.853333pt;}
.y13_c00218{bottom:433.186667pt;}
.y12_c00218{bottom:454.786667pt;}
.y11_c00218{bottom:476.120000pt;}
.y10_c00218{bottom:497.320000pt;}
.yf_c00218{bottom:518.386667pt;}
.ye_c00218{bottom:539.586667pt;}
.yd_c00218{bottom:561.186667pt;}
.yc_c00218{bottom:581.986667pt;}
.yb_c00218{bottom:603.320000pt;}
.ya_c00218{bottom:624.920000pt;}
.y9_c00218{bottom:646.386667pt;}
.y8_c00218{bottom:667.720000pt;}
.y7_c00218{bottom:689.586667pt;}
.y6_c00218{bottom:710.920000pt;}
.y5_c00218{bottom:732.520000pt;}
.y4_c00218{bottom:753.853333pt;}
.y3_c00218{bottom:775.186667pt;}
.y2_c00218{bottom:796.520000pt;}
.y1_c00218{bottom:827.586667pt;}
.h7_c00218{height:11.733399pt;}
.h8_c00218{height:38.937500pt;}
.h6_c00218{height:45.687500pt;}
.h3_c00218{height:70.664062pt;}
.h4_c00218{height:74.906250pt;}
.h5_c00218{height:87.783854pt;}
.h2_c00218{height:148.557292pt;}
.h0_c00218{height:869.266667pt;}
.h1_c00218{height:869.333333pt;}
.w2_c00218{width:93.222667pt;}
.w0_c00218{width:590.400000pt;}
.w1_c00218{width:590.666667pt;}
.x0_c00218{left:0.000000pt;}
.x2_c00218{left:37.866667pt;}
.x3_c00218{left:38.800000pt;}
.x5_c00218{left:39.866667pt;}
.x4_c00218{left:40.800000pt;}
.x1_c00218{left:107.733333pt;}
.x7_c00218{left:252.368205pt;}
.x6_c00218{left:440.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_4a9f7ed98c0dc5b52583a1ae.woff2')format("woff");}.ff1_c00219{font-family:ff1_c00219;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00219;src:url('chunks/assets/font_dd47bd61f344e84af7a61c29.woff2')format("woff");}.ff2_c00219{font-family:ff2_c00219;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00219;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff3_c00219{font-family:ff3_c00219;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00219;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff4_c00219{font-family:ff4_c00219;line-height:1.219238;font-style: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);}
.v1_c00219{vertical-align:-103.800000px;}
.v0_c00219{vertical-align:0.000000px;}
.ls0_c00219{letter-spacing:0.000000px;}
.sc__c00219{text-shadow:none;}
.sc0_c00219{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00219{-webkit-text-stroke:0px transparent;}
.sc0_c00219{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00219{word-spacing:-20.250000px;}
.ws0_c00219{word-spacing:-17.352000px;}
.ws2_c00219{word-spacing:0.000000px;}
._1b_c00219{margin-left:-29.763000px;}
._2_c00219{margin-left:-24.300000px;}
._f_c00219{margin-left:-14.256000px;}
._0_c00219{margin-left:-11.097000px;}
._16_c00219{margin-left:-9.999000px;}
._9_c00219{margin-left:-8.748000px;}
._15_c00219{margin-left:-7.569000px;}
._12_c00219{margin-left:-5.265000px;}
._3_c00219{margin-left:-4.050000px;}
._8_c00219{margin-left:-2.268000px;}
._14_c00219{margin-left:-1.260000px;}
._1_c00219{width:1.377000px;}
._6_c00219{width:2.916000px;}
._d_c00219{width:4.455000px;}
._5_c00219{width:5.589000px;}
._1a_c00219{width:6.642000px;}
._4_c00219{width:7.695000px;}
._e_c00219{width:9.072000px;}
._1d_c00219{width:10.122000px;}
._b_c00219{width:11.178000px;}
._17_c00219{width:13.206000px;}
._18_c00219{width:14.985000px;}
._19_c00219{width:16.281000px;}
._a_c00219{width:18.468000px;}
._1c_c00219{width:21.906000px;}
._13_c00219{width:34.074000px;}
._7_c00219{width:52.083000px;}
._1e_c00219{width:55.359000px;}
._11_c00219{width:61.965000px;}
._10_c00219{width:78.408000px;}
._c_c00219{width:513.216000px;}
.fc2_c00219{color:transparent;}
.fc1_c00219{color:rgb(128,128,128);}
.fc0_c00219{color:rgb(0,0,0);}
.fs2_c00219{font-size:48.000000px;}
.fs1_c00219{font-size:72.000000px;}
.fs0_c00219{font-size:81.000000px;}
.y0_c00219{bottom:0.000000px;}
.y24_c00219{bottom:3.105000px;}
.y23_c00219{bottom:7.228357px;}
.y22_c00219{bottom:83.130000px;}
.y21_c00219{bottom:128.880000px;}
.y20_c00219{bottom:153.930000px;}
.y1f_c00219{bottom:178.530000px;}
.y1e_c00219{bottom:202.830000px;}
.y1d_c00219{bottom:227.880000px;}
.y1c_c00219{bottom:252.180000px;}
.y1b_c00219{bottom:276.480000px;}
.y1a_c00219{bottom:300.780000px;}
.y19_c00219{bottom:325.380000px;}
.y18_c00219{bottom:349.680000px;}
.y17_c00219{bottom:373.680000px;}
.y16_c00219{bottom:397.680000px;}
.y15_c00219{bottom:422.280000px;}
.y14_c00219{bottom:446.580000px;}
.y13_c00219{bottom:470.430000px;}
.y12_c00219{bottom:494.430000px;}
.y11_c00219{bottom:518.730000px;}
.y10_c00219{bottom:542.130000px;}
.yf_c00219{bottom:566.430000px;}
.ye_c00219{bottom:590.280000px;}
.yd_c00219{bottom:614.280000px;}
.yc_c00219{bottom:638.580000px;}
.yb_c00219{bottom:662.580000px;}
.ya_c00219{bottom:686.880000px;}
.y9_c00219{bottom:710.880000px;}
.y8_c00219{bottom:735.030000px;}
.y7_c00219{bottom:759.030000px;}
.y6_c00219{bottom:783.330000px;}
.y5_c00219{bottom:807.330000px;}
.y4_c00219{bottom:831.930000px;}
.y3_c00219{bottom:854.580000px;}
.y2_c00219{bottom:879.180000px;}
.y1_c00219{bottom:901.230000px;}
.h4_c00219{height:13.200074px;}
.h5_c00219{height:43.804688px;}
.h1_c00219{height:79.497070px;}
.h2_c00219{height:84.269531px;}
.h3_c00219{height:91.160156px;}
.h0_c00219{height:995.250000px;}
.w2_c00219{width:104.875500px;}
.w0_c00219{width:667.425000px;}
.w1_c00219{width:667.500000px;}
.x0_c00219{left:0.000000px;}
.x3_c00219{left:18.600000px;}
.x1_c00219{left:19.650000px;}
.x4_c00219{left:109.350000px;}
.x2_c00219{left:111.000000px;}
.x5_c00219{left:112.050000px;}
.x6_c00219{left:115.500000px;}
.x7_c00219{left:118.200000px;}
.x8_c00219{left:119.400000px;}
.x9_c00219{left:120.900000px;}
.xa_c00219{left:122.550000px;}
.xb_c00219{left:124.500000px;}
.xc_c00219{left:126.150000px;}
.xd_c00219{left:127.800000px;}
.xe_c00219{left:129.150000px;}
.xf_c00219{left:285.526749px;}
@media print{
.v1_c00219{vertical-align:-92.266667pt;}
.v0_c00219{vertical-align:0.000000pt;}
.ls0_c00219{letter-spacing:0.000000pt;}
.ws1_c00219{word-spacing:-18.000000pt;}
.ws0_c00219{word-spacing:-15.424000pt;}
.ws2_c00219{word-spacing:0.000000pt;}
._1b_c00219{margin-left:-26.456000pt;}
._2_c00219{margin-left:-21.600000pt;}
._f_c00219{margin-left:-12.672000pt;}
._0_c00219{margin-left:-9.864000pt;}
._16_c00219{margin-left:-8.888000pt;}
._9_c00219{margin-left:-7.776000pt;}
._15_c00219{margin-left:-6.728000pt;}
._12_c00219{margin-left:-4.680000pt;}
._3_c00219{margin-left:-3.600000pt;}
._8_c00219{margin-left:-2.016000pt;}
._14_c00219{margin-left:-1.120000pt;}
._1_c00219{width:1.224000pt;}
._6_c00219{width:2.592000pt;}
._d_c00219{width:3.960000pt;}
._5_c00219{width:4.968000pt;}
._1a_c00219{width:5.904000pt;}
._4_c00219{width:6.840000pt;}
._e_c00219{width:8.064000pt;}
._1d_c00219{width:8.997333pt;}
._b_c00219{width:9.936000pt;}
._17_c00219{width:11.738667pt;}
._18_c00219{width:13.320000pt;}
._19_c00219{width:14.472000pt;}
._a_c00219{width:16.416000pt;}
._1c_c00219{width:19.472000pt;}
._13_c00219{width:30.288000pt;}
._7_c00219{width:46.296000pt;}
._1e_c00219{width:49.208000pt;}
._11_c00219{width:55.080000pt;}
._10_c00219{width:69.696000pt;}
._c_c00219{width:456.192000pt;}
.fs2_c00219{font-size:42.666667pt;}
.fs1_c00219{font-size:64.000000pt;}
.fs0_c00219{font-size:72.000000pt;}
.y0_c00219{bottom:0.000000pt;}
.y24_c00219{bottom:2.760000pt;}
.y23_c00219{bottom:6.425206pt;}
.y22_c00219{bottom:73.893333pt;}
.y21_c00219{bottom:114.560000pt;}
.y20_c00219{bottom:136.826667pt;}
.y1f_c00219{bottom:158.693333pt;}
.y1e_c00219{bottom:180.293333pt;}
.y1d_c00219{bottom:202.560000pt;}
.y1c_c00219{bottom:224.160000pt;}
.y1b_c00219{bottom:245.760000pt;}
.y1a_c00219{bottom:267.360000pt;}
.y19_c00219{bottom:289.226667pt;}
.y18_c00219{bottom:310.826667pt;}
.y17_c00219{bottom:332.160000pt;}
.y16_c00219{bottom:353.493333pt;}
.y15_c00219{bottom:375.360000pt;}
.y14_c00219{bottom:396.960000pt;}
.y13_c00219{bottom:418.160000pt;}
.y12_c00219{bottom:439.493333pt;}
.y11_c00219{bottom:461.093333pt;}
.y10_c00219{bottom:481.893333pt;}
.yf_c00219{bottom:503.493333pt;}
.ye_c00219{bottom:524.693333pt;}
.yd_c00219{bottom:546.026667pt;}
.yc_c00219{bottom:567.626667pt;}
.yb_c00219{bottom:588.960000pt;}
.ya_c00219{bottom:610.560000pt;}
.y9_c00219{bottom:631.893333pt;}
.y8_c00219{bottom:653.360000pt;}
.y7_c00219{bottom:674.693333pt;}
.y6_c00219{bottom:696.293333pt;}
.y5_c00219{bottom:717.626667pt;}
.y4_c00219{bottom:739.493333pt;}
.y3_c00219{bottom:759.626667pt;}
.y2_c00219{bottom:781.493333pt;}
.y1_c00219{bottom:801.093333pt;}
.h4_c00219{height:11.733399pt;}
.h5_c00219{height:38.937500pt;}
.h1_c00219{height:70.664062pt;}
.h2_c00219{height:74.906250pt;}
.h3_c00219{height:81.031250pt;}
.h0_c00219{height:884.666667pt;}
.w2_c00219{width:93.222667pt;}
.w0_c00219{width:593.266667pt;}
.w1_c00219{width:593.333333pt;}
.x0_c00219{left:0.000000pt;}
.x3_c00219{left:16.533333pt;}
.x1_c00219{left:17.466667pt;}
.x4_c00219{left:97.200000pt;}
.x2_c00219{left:98.666667pt;}
.x5_c00219{left:99.600000pt;}
.x6_c00219{left:102.666667pt;}
.x7_c00219{left:105.066667pt;}
.x8_c00219{left:106.133333pt;}
.x9_c00219{left:107.466667pt;}
.xa_c00219{left:108.933333pt;}
.xb_c00219{left:110.666667pt;}
.xc_c00219{left:112.133333pt;}
.xd_c00219{left:113.600000pt;}
.xe_c00219{left:114.800000pt;}
.xf_c00219{left:253.801554pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4054daea4008ae97352835e3.woff2')format("woff");}.ff1_c00220{font-family:ff1_c00220;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00220;src:url('chunks/assets/font_dd8b297e77a41eb43990d384.woff2')format("woff");}.ff2_c00220{font-family:ff2_c00220;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00220;src:url('chunks/assets/font_570f7c5d96b76288a5de0549.woff2')format("woff");}.ff3_c00220{font-family:ff3_c00220;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00220;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff4_c00220{font-family:ff4_c00220;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00220;src:url('chunks/assets/font_71208020e7143e07f2000694.woff2')format("woff");}.ff5_c00220{font-family:ff5_c00220;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00220;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c00220{font-family:ff6_c00220;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00220{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00220{vertical-align:0.000000px;}
.ls4_c00220{letter-spacing:-12.000000px;}
.ls2_c00220{letter-spacing:-9.000000px;}
.ls1_c00220{letter-spacing:0.000000px;}
.ls3_c00220{letter-spacing:9.000000px;}
.ls0_c00220{letter-spacing:15.000000px;}
.sc__c00220{text-shadow:none;}
.sc0_c00220{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00220{-webkit-text-stroke:0px transparent;}
.sc0_c00220{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00220{word-spacing:-40.500000px;}
.ws2_c00220{word-spacing:-17.352000px;}
.ws4_c00220{word-spacing:-12.495000px;}
.ws3_c00220{word-spacing:-5.352000px;}
.ws5_c00220{word-spacing:0.000000px;}
.ws1_c00220{word-spacing:7.620000px;}
._20_c00220{margin-left:-38.718000px;}
._1e_c00220{margin-left:-34.506000px;}
._25_c00220{margin-left:-28.218000px;}
._2a_c00220{margin-left:-21.114000px;}
._1c_c00220{margin-left:-17.415000px;}
._27_c00220{margin-left:-13.851000px;}
._29_c00220{margin-left:-12.747000px;}
._14_c00220{margin-left:-11.622000px;}
._15_c00220{margin-left:-10.596000px;}
._22_c00220{margin-left:-8.802000px;}
._2_c00220{margin-left:-7.548000px;}
._24_c00220{margin-left:-6.432000px;}
._16_c00220{margin-left:-5.316000px;}
._8_c00220{margin-left:-3.876000px;}
._3_c00220{margin-left:-2.244000px;}
._21_c00220{margin-left:-1.146000px;}
._0_c00220{width:1.632000px;}
._1_c00220{width:2.688000px;}
._9_c00220{width:4.146000px;}
._5_c00220{width:5.508000px;}
._f_c00220{width:7.164000px;}
._4_c00220{width:8.976000px;}
._6_c00220{width:10.200000px;}
._11_c00220{width:12.120000px;}
._e_c00220{width:13.500000px;}
._7_c00220{width:14.892000px;}
._17_c00220{width:16.500000px;}
._d_c00220{width:17.880000px;}
._18_c00220{width:19.200000px;}
._10_c00220{width:23.040000px;}
._b_c00220{width:24.174000px;}
._13_c00220{width:26.100000px;}
._19_c00220{width:28.284000px;}
._c_c00220{width:30.906000px;}
._12_c00220{width:42.516000px;}
._1d_c00220{width:51.759000px;}
._26_c00220{width:102.801000px;}
._23_c00220{width:105.318000px;}
._a_c00220{width:106.788000px;}
._1b_c00220{width:143.031000px;}
._28_c00220{width:177.471000px;}
._2b_c00220{width:284.814000px;}
._1a_c00220{width:352.350000px;}
._1f_c00220{width:962.136000px;}
.fc2_c00220{color:transparent;}
.fc1_c00220{color:rgb(128,128,128);}
.fc0_c00220{color:rgb(0,0,0);}
.fs5_c00220{font-size:48.000000px;}
.fs4_c00220{font-size:51.000000px;}
.fs1_c00220{font-size:60.000000px;}
.fs3_c00220{font-size:72.000000px;}
.fs2_c00220{font-size:81.000000px;}
.fs0_c00220{font-size:102.000000px;}
.y0_c00220{bottom:0.000000px;}
.y24_c00220{bottom:3.105000px;}
.y23_c00220{bottom:7.228371px;}
.y22_c00220{bottom:69.165000px;}
.y21_c00220{bottom:93.915000px;}
.y20_c00220{bottom:119.265000px;}
.y1f_c00220{bottom:144.165000px;}
.y1e_c00220{bottom:168.765000px;}
.y1d_c00220{bottom:193.365000px;}
.y1c_c00220{bottom:217.815000px;}
.y1b_c00220{bottom:241.665000px;}
.y1a_c00220{bottom:266.265000px;}
.y19_c00220{bottom:290.715000px;}
.y18_c00220{bottom:314.865000px;}
.y17_c00220{bottom:338.865000px;}
.y16_c00220{bottom:362.865000px;}
.y15_c00220{bottom:386.865000px;}
.y14_c00220{bottom:410.715000px;}
.y13_c00220{bottom:435.015000px;}
.y12_c00220{bottom:459.015000px;}
.y11_c00220{bottom:482.715000px;}
.y10_c00220{bottom:507.615000px;}
.yf_c00220{bottom:531.915000px;}
.ye_c00220{bottom:555.315000px;}
.yd_c00220{bottom:578.865000px;}
.yc_c00220{bottom:602.565000px;}
.yb_c00220{bottom:627.465000px;}
.ya_c00220{bottom:650.715000px;}
.y9_c00220{bottom:674.115000px;}
.y8_c00220{bottom:698.715000px;}
.y7_c00220{bottom:724.065000px;}
.y6_c00220{bottom:746.865000px;}
.y5_c00220{bottom:802.665000px;}
.y4_c00220{bottom:832.365000px;}
.y3_c00220{bottom:861.015000px;}
.y2_c00220{bottom:890.115000px;}
.y1_c00220{bottom:926.415000px;}
.h9_c00220{height:13.200074px;}
.ha_c00220{height:43.804688px;}
.h8_c00220{height:51.398438px;}
.h4_c00220{height:58.857422px;}
.h3_c00220{height:58.886719px;}
.h5_c00220{height:79.497070px;}
.h6_c00220{height:84.269531px;}
.h7_c00220{height:91.160156px;}
.h2_c00220{height:100.057617px;}
.h0_c00220{height:989.025000px;}
.h1_c00220{height:989.250000px;}
.w1_c00220{width:104.875500px;}
.w0_c00220{width:672.000000px;}
.x0_c00220{left:0.000000px;}
.x2_c00220{left:41.850000px;}
.xe_c00220{left:47.250000px;}
.xa_c00220{left:51.750000px;}
.xb_c00220{left:52.950000px;}
.xc_c00220{left:54.300000px;}
.xd_c00220{left:55.800000px;}
.xf_c00220{left:57.000000px;}
.x10_c00220{left:58.500000px;}
.x3_c00220{left:74.550000px;}
.x1_c00220{left:97.950000px;}
.x4_c00220{left:127.500000px;}
.x6_c00220{left:185.400000px;}
.x7_c00220{left:186.750000px;}
.x8_c00220{left:188.100000px;}
.x9_c00220{left:189.450000px;}
.x5_c00220{left:220.800000px;}
.x12_c00220{left:287.814240px;}
.x11_c00220{left:494.400000px;}
@media print{
.v0_c00220{vertical-align:0.000000pt;}
.ls4_c00220{letter-spacing:-10.666667pt;}
.ls2_c00220{letter-spacing:-8.000000pt;}
.ls1_c00220{letter-spacing:0.000000pt;}
.ls3_c00220{letter-spacing:8.000000pt;}
.ls0_c00220{letter-spacing:13.333333pt;}
.ws0_c00220{word-spacing:-36.000000pt;}
.ws2_c00220{word-spacing:-15.424000pt;}
.ws4_c00220{word-spacing:-11.106667pt;}
.ws3_c00220{word-spacing:-4.757333pt;}
.ws5_c00220{word-spacing:0.000000pt;}
.ws1_c00220{word-spacing:6.773333pt;}
._20_c00220{margin-left:-34.416000pt;}
._1e_c00220{margin-left:-30.672000pt;}
._25_c00220{margin-left:-25.082667pt;}
._2a_c00220{margin-left:-18.768000pt;}
._1c_c00220{margin-left:-15.480000pt;}
._27_c00220{margin-left:-12.312000pt;}
._29_c00220{margin-left:-11.330667pt;}
._14_c00220{margin-left:-10.330667pt;}
._15_c00220{margin-left:-9.418667pt;}
._22_c00220{margin-left:-7.824000pt;}
._2_c00220{margin-left:-6.709333pt;}
._24_c00220{margin-left:-5.717333pt;}
._16_c00220{margin-left:-4.725333pt;}
._8_c00220{margin-left:-3.445333pt;}
._3_c00220{margin-left:-1.994667pt;}
._21_c00220{margin-left:-1.018667pt;}
._0_c00220{width:1.450667pt;}
._1_c00220{width:2.389333pt;}
._9_c00220{width:3.685333pt;}
._5_c00220{width:4.896000pt;}
._f_c00220{width:6.368000pt;}
._4_c00220{width:7.978667pt;}
._6_c00220{width:9.066667pt;}
._11_c00220{width:10.773333pt;}
._e_c00220{width:12.000000pt;}
._7_c00220{width:13.237333pt;}
._17_c00220{width:14.666667pt;}
._d_c00220{width:15.893333pt;}
._18_c00220{width:17.066667pt;}
._10_c00220{width:20.480000pt;}
._b_c00220{width:21.488000pt;}
._13_c00220{width:23.200000pt;}
._19_c00220{width:25.141333pt;}
._c_c00220{width:27.472000pt;}
._12_c00220{width:37.792000pt;}
._1d_c00220{width:46.008000pt;}
._26_c00220{width:91.378667pt;}
._23_c00220{width:93.616000pt;}
._a_c00220{width:94.922667pt;}
._1b_c00220{width:127.138667pt;}
._28_c00220{width:157.752000pt;}
._2b_c00220{width:253.168000pt;}
._1a_c00220{width:313.200000pt;}
._1f_c00220{width:855.232000pt;}
.fs5_c00220{font-size:42.666667pt;}
.fs4_c00220{font-size:45.333333pt;}
.fs1_c00220{font-size:53.333333pt;}
.fs3_c00220{font-size:64.000000pt;}
.fs2_c00220{font-size:72.000000pt;}
.fs0_c00220{font-size:90.666667pt;}
.y0_c00220{bottom:0.000000pt;}
.y24_c00220{bottom:2.760000pt;}
.y23_c00220{bottom:6.425219pt;}
.y22_c00220{bottom:61.480000pt;}
.y21_c00220{bottom:83.480000pt;}
.y20_c00220{bottom:106.013333pt;}
.y1f_c00220{bottom:128.146667pt;}
.y1e_c00220{bottom:150.013333pt;}
.y1d_c00220{bottom:171.880000pt;}
.y1c_c00220{bottom:193.613333pt;}
.y1b_c00220{bottom:214.813333pt;}
.y1a_c00220{bottom:236.680000pt;}
.y19_c00220{bottom:258.413333pt;}
.y18_c00220{bottom:279.880000pt;}
.y17_c00220{bottom:301.213333pt;}
.y16_c00220{bottom:322.546667pt;}
.y15_c00220{bottom:343.880000pt;}
.y14_c00220{bottom:365.080000pt;}
.y13_c00220{bottom:386.680000pt;}
.y12_c00220{bottom:408.013333pt;}
.y11_c00220{bottom:429.080000pt;}
.y10_c00220{bottom:451.213333pt;}
.yf_c00220{bottom:472.813333pt;}
.ye_c00220{bottom:493.613333pt;}
.yd_c00220{bottom:514.546667pt;}
.yc_c00220{bottom:535.613333pt;}
.yb_c00220{bottom:557.746667pt;}
.ya_c00220{bottom:578.413333pt;}
.y9_c00220{bottom:599.213333pt;}
.y8_c00220{bottom:621.080000pt;}
.y7_c00220{bottom:643.613333pt;}
.y6_c00220{bottom:663.880000pt;}
.y5_c00220{bottom:713.480000pt;}
.y4_c00220{bottom:739.880000pt;}
.y3_c00220{bottom:765.346667pt;}
.y2_c00220{bottom:791.213333pt;}
.y1_c00220{bottom:823.480000pt;}
.h9_c00220{height:11.733399pt;}
.ha_c00220{height:38.937500pt;}
.h8_c00220{height:45.687500pt;}
.h4_c00220{height:52.317708pt;}
.h3_c00220{height:52.343750pt;}
.h5_c00220{height:70.664062pt;}
.h6_c00220{height:74.906250pt;}
.h7_c00220{height:81.031250pt;}
.h2_c00220{height:88.940104pt;}
.h0_c00220{height:879.133333pt;}
.h1_c00220{height:879.333333pt;}
.w1_c00220{width:93.222667pt;}
.w0_c00220{width:597.333333pt;}
.x0_c00220{left:0.000000pt;}
.x2_c00220{left:37.200000pt;}
.xe_c00220{left:42.000000pt;}
.xa_c00220{left:46.000000pt;}
.xb_c00220{left:47.066667pt;}
.xc_c00220{left:48.266667pt;}
.xd_c00220{left:49.600000pt;}
.xf_c00220{left:50.666667pt;}
.x10_c00220{left:52.000000pt;}
.x3_c00220{left:66.266667pt;}
.x1_c00220{left:87.066667pt;}
.x4_c00220{left:113.333333pt;}
.x6_c00220{left:164.800000pt;}
.x7_c00220{left:166.000000pt;}
.x8_c00220{left:167.200000pt;}
.x9_c00220{left:168.400000pt;}
.x5_c00220{left:196.266667pt;}
.x12_c00220{left:255.834880pt;}
.x11_c00220{left:439.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_df7e87f607b709538e0f1de4.woff2')format("woff");}.ff1_c00221{font-family:ff1_c00221;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00221;src:url('chunks/assets/font_db9db13a22d41fe960342a2d.woff2')format("woff");}.ff2_c00221{font-family:ff2_c00221;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00221;src:url('chunks/assets/font_cdf28f6c1f652c00f0a8cd80.woff2')format("woff");}.ff3_c00221{font-family:ff3_c00221;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00221;src:url('chunks/assets/font_0cc1800b1527de6ce248b894.woff2')format("woff");}.ff4_c00221{font-family:ff4_c00221;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00221;src:url('chunks/assets/font_0d6777cd4a6d842c2e7518d2.woff2')format("woff");}.ff5_c00221{font-family:ff5_c00221;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00221;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c00221{font-family:ff6_c00221;line-height:1.219238;font-style: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);}
.m1_c00221{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.v0_c00221{vertical-align:0.000000px;}
.ls3_c00221{letter-spacing:0.000000px;}
.ls1_c00221{letter-spacing:7.800000px;}
.ls2_c00221{letter-spacing:27.000000px;}
.ls0_c00221{letter-spacing:41.802000px;}
.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;}
}
.ws2_c00221{word-spacing:-20.250000px;}
.ws1_c00221{word-spacing:-17.352000px;}
.ws0_c00221{word-spacing:-13.737000px;}
.ws3_c00221{word-spacing:0.000000px;}
._15_c00221{margin-left:-17.622000px;}
._22_c00221{margin-left:-13.440000px;}
._f_c00221{margin-left:-12.399000px;}
._14_c00221{margin-left:-10.692000px;}
._1d_c00221{margin-left:-9.159000px;}
._13_c00221{margin-left:-7.938000px;}
._10_c00221{margin-left:-6.561000px;}
._e_c00221{margin-left:-5.427000px;}
._8_c00221{margin-left:-3.807000px;}
._9_c00221{margin-left:-2.511000px;}
._2_c00221{margin-left:-1.296000px;}
._7_c00221{width:1.377000px;}
._3_c00221{width:2.592000px;}
._0_c00221{width:3.969000px;}
._1_c00221{width:5.589000px;}
._4_c00221{width:6.642000px;}
._5_c00221{width:8.100000px;}
._c_c00221{width:9.726000px;}
._6_c00221{width:11.016000px;}
._12_c00221{width:12.387000px;}
._d_c00221{width:13.764000px;}
._11_c00221{width:15.309000px;}
._a_c00221{width:17.172000px;}
._b_c00221{width:19.005000px;}
._18_c00221{width:20.925000px;}
._16_c00221{width:31.662000px;}
._17_c00221{width:38.769000px;}
._24_c00221{width:49.035000px;}
._25_c00221{width:50.358000px;}
._21_c00221{width:51.405000px;}
._1f_c00221{width:58.365000px;}
._1c_c00221{width:129.195000px;}
._20_c00221{width:190.500000px;}
._23_c00221{width:231.417000px;}
._1a_c00221{width:244.377000px;}
._1e_c00221{width:269.244000px;}
._19_c00221{width:329.544000px;}
._1b_c00221{width:471.978000px;}
.fc2_c00221{color:transparent;}
.fc1_c00221{color:rgb(128,128,128);}
.fc0_c00221{color:rgb(0,0,0);}
.fs7_c00221{font-size:48.000000px;}
.fs1_c00221{font-size:57.000000px;}
.fs3_c00221{font-size:60.000000px;}
.fs6_c00221{font-size:66.000000px;}
.fs4_c00221{font-size:72.000000px;}
.fs2_c00221{font-size:78.000000px;}
.fs0_c00221{font-size:81.000000px;}
.fs5_c00221{font-size:87.000000px;}
.y0_c00221{bottom:0.000000px;}
.y23_c00221{bottom:3.105000px;}
.y22_c00221{bottom:7.228369px;}
.y21_c00221{bottom:66.720000px;}
.y20_c00221{bottom:88.770000px;}
.y1f_c00221{bottom:113.370000px;}
.y1e_c00221{bottom:139.020000px;}
.y1d_c00221{bottom:163.620000px;}
.y1c_c00221{bottom:190.020000px;}
.y1b_c00221{bottom:212.220000px;}
.y1a_c00221{bottom:236.970000px;}
.y19_c00221{bottom:260.520000px;}
.y18_c00221{bottom:285.420000px;}
.y17_c00221{bottom:311.520000px;}
.y16_c00221{bottom:333.720000px;}
.y15_c00221{bottom:358.770000px;}
.y14_c00221{bottom:382.020000px;}
.y13_c00221{bottom:406.020000px;}
.y12_c00221{bottom:429.270000px;}
.y11_c00221{bottom:453.270000px;}
.y10_c00221{bottom:502.920000px;}
.yf_c00221{bottom:549.720000px;}
.ye_c00221{bottom:573.720000px;}
.yd_c00221{bottom:598.320000px;}
.yc_c00221{bottom:622.320000px;}
.yb_c00221{bottom:646.020000px;}
.ya_c00221{bottom:669.570000px;}
.y9_c00221{bottom:693.570000px;}
.y8_c00221{bottom:718.170000px;}
.y7_c00221{bottom:741.870000px;}
.y6_c00221{bottom:765.720000px;}
.y5_c00221{bottom:789.420000px;}
.y4_c00221{bottom:814.620000px;}
.y3_c00221{bottom:837.270000px;}
.y2_c00221{bottom:860.970000px;}
.y1_c00221{bottom:884.820000px;}
.h6_c00221{height:13.200073px;}
.h7_c00221{height:43.804688px;}
.h2_c00221{height:79.497070px;}
.h4_c00221{height:84.269531px;}
.h3_c00221{height:98.756836px;}
.h5_c00221{height:110.151855px;}
.h1_c00221{height:986.250000px;}
.h0_c00221{height:986.550000px;}
.w1_c00221{width:104.875500px;}
.w0_c00221{width:661.500000px;}
.x0_c00221{left:0.000000px;}
.x19_c00221{left:8.100000px;}
.x18_c00221{left:9.150000px;}
.x13_c00221{left:11.250000px;}
.x15_c00221{left:13.500000px;}
.x11_c00221{left:16.500000px;}
.x10_c00221{left:17.850000px;}
.xf_c00221{left:20.250000px;}
.x4_c00221{left:26.700000px;}
.xc_c00221{left:30.600000px;}
.xd_c00221{left:46.200000px;}
.x14_c00221{left:72.600000px;}
.x17_c00221{left:107.400000px;}
.x16_c00221{left:109.050000px;}
.x12_c00221{left:112.800000px;}
.x9_c00221{left:116.400000px;}
.x8_c00221{left:117.750000px;}
.x7_c00221{left:119.100000px;}
.x6_c00221{left:120.150000px;}
.x5_c00221{left:121.200000px;}
.x3_c00221{left:122.850000px;}
.x2_c00221{left:124.650000px;}
.x1_c00221{left:126.600000px;}
.xa_c00221{left:139.800000px;}
.xe_c00221{left:154.800000px;}
.xb_c00221{left:227.850000px;}
.x1b_c00221{left:282.564240px;}
.x1a_c00221{left:541.650000px;}
@media print{
.v0_c00221{vertical-align:0.000000pt;}
.ls3_c00221{letter-spacing:0.000000pt;}
.ls1_c00221{letter-spacing:6.933333pt;}
.ls2_c00221{letter-spacing:24.000000pt;}
.ls0_c00221{letter-spacing:37.157333pt;}
.ws2_c00221{word-spacing:-18.000000pt;}
.ws1_c00221{word-spacing:-15.424000pt;}
.ws0_c00221{word-spacing:-12.210667pt;}
.ws3_c00221{word-spacing:0.000000pt;}
._15_c00221{margin-left:-15.664000pt;}
._22_c00221{margin-left:-11.946667pt;}
._f_c00221{margin-left:-11.021333pt;}
._14_c00221{margin-left:-9.504000pt;}
._1d_c00221{margin-left:-8.141333pt;}
._13_c00221{margin-left:-7.056000pt;}
._10_c00221{margin-left:-5.832000pt;}
._e_c00221{margin-left:-4.824000pt;}
._8_c00221{margin-left:-3.384000pt;}
._9_c00221{margin-left:-2.232000pt;}
._2_c00221{margin-left:-1.152000pt;}
._7_c00221{width:1.224000pt;}
._3_c00221{width:2.304000pt;}
._0_c00221{width:3.528000pt;}
._1_c00221{width:4.968000pt;}
._4_c00221{width:5.904000pt;}
._5_c00221{width:7.200000pt;}
._c_c00221{width:8.645333pt;}
._6_c00221{width:9.792000pt;}
._12_c00221{width:11.010667pt;}
._d_c00221{width:12.234667pt;}
._11_c00221{width:13.608000pt;}
._a_c00221{width:15.264000pt;}
._b_c00221{width:16.893333pt;}
._18_c00221{width:18.600000pt;}
._16_c00221{width:28.144000pt;}
._17_c00221{width:34.461333pt;}
._24_c00221{width:43.586667pt;}
._25_c00221{width:44.762667pt;}
._21_c00221{width:45.693333pt;}
._1f_c00221{width:51.880000pt;}
._1c_c00221{width:114.840000pt;}
._20_c00221{width:169.333333pt;}
._23_c00221{width:205.704000pt;}
._1a_c00221{width:217.224000pt;}
._1e_c00221{width:239.328000pt;}
._19_c00221{width:292.928000pt;}
._1b_c00221{width:419.536000pt;}
.fs7_c00221{font-size:42.666667pt;}
.fs1_c00221{font-size:50.666667pt;}
.fs3_c00221{font-size:53.333333pt;}
.fs6_c00221{font-size:58.666667pt;}
.fs4_c00221{font-size:64.000000pt;}
.fs2_c00221{font-size:69.333333pt;}
.fs0_c00221{font-size:72.000000pt;}
.fs5_c00221{font-size:77.333333pt;}
.y0_c00221{bottom:0.000000pt;}
.y23_c00221{bottom:2.760000pt;}
.y22_c00221{bottom:6.425217pt;}
.y21_c00221{bottom:59.306667pt;}
.y20_c00221{bottom:78.906667pt;}
.y1f_c00221{bottom:100.773333pt;}
.y1e_c00221{bottom:123.573333pt;}
.y1d_c00221{bottom:145.440000pt;}
.y1c_c00221{bottom:168.906667pt;}
.y1b_c00221{bottom:188.640000pt;}
.y1a_c00221{bottom:210.640000pt;}
.y19_c00221{bottom:231.573333pt;}
.y18_c00221{bottom:253.706667pt;}
.y17_c00221{bottom:276.906667pt;}
.y16_c00221{bottom:296.640000pt;}
.y15_c00221{bottom:318.906667pt;}
.y14_c00221{bottom:339.573333pt;}
.y13_c00221{bottom:360.906667pt;}
.y12_c00221{bottom:381.573333pt;}
.y11_c00221{bottom:402.906667pt;}
.y10_c00221{bottom:447.040000pt;}
.yf_c00221{bottom:488.640000pt;}
.ye_c00221{bottom:509.973333pt;}
.yd_c00221{bottom:531.840000pt;}
.yc_c00221{bottom:553.173333pt;}
.yb_c00221{bottom:574.240000pt;}
.ya_c00221{bottom:595.173333pt;}
.y9_c00221{bottom:616.506667pt;}
.y8_c00221{bottom:638.373333pt;}
.y7_c00221{bottom:659.440000pt;}
.y6_c00221{bottom:680.640000pt;}
.y5_c00221{bottom:701.706667pt;}
.y4_c00221{bottom:724.106667pt;}
.y3_c00221{bottom:744.240000pt;}
.y2_c00221{bottom:765.306667pt;}
.y1_c00221{bottom:786.506667pt;}
.h6_c00221{height:11.733399pt;}
.h7_c00221{height:38.937500pt;}
.h2_c00221{height:70.664062pt;}
.h4_c00221{height:74.906250pt;}
.h3_c00221{height:87.783854pt;}
.h5_c00221{height:97.912760pt;}
.h1_c00221{height:876.666667pt;}
.h0_c00221{height:876.933333pt;}
.w1_c00221{width:93.222667pt;}
.w0_c00221{width:588.000000pt;}
.x0_c00221{left:0.000000pt;}
.x19_c00221{left:7.200000pt;}
.x18_c00221{left:8.133333pt;}
.x13_c00221{left:10.000000pt;}
.x15_c00221{left:12.000000pt;}
.x11_c00221{left:14.666667pt;}
.x10_c00221{left:15.866667pt;}
.xf_c00221{left:18.000000pt;}
.x4_c00221{left:23.733333pt;}
.xc_c00221{left:27.200000pt;}
.xd_c00221{left:41.066667pt;}
.x14_c00221{left:64.533333pt;}
.x17_c00221{left:95.466667pt;}
.x16_c00221{left:96.933333pt;}
.x12_c00221{left:100.266667pt;}
.x9_c00221{left:103.466667pt;}
.x8_c00221{left:104.666667pt;}
.x7_c00221{left:105.866667pt;}
.x6_c00221{left:106.800000pt;}
.x5_c00221{left:107.733333pt;}
.x3_c00221{left:109.200000pt;}
.x2_c00221{left:110.800000pt;}
.x1_c00221{left:112.533333pt;}
.xa_c00221{left:124.266667pt;}
.xe_c00221{left:137.600000pt;}
.xb_c00221{left:202.533333pt;}
.x1b_c00221{left:251.168213pt;}
.x1a_c00221{left:481.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_5f4653037dc443e550c7e60d.woff2')format("woff");}.ff1_c00222{font-family:ff1_c00222;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00222;src:url('chunks/assets/font_6d1924bceb5e1c80385a2a3f.woff2')format("woff");}.ff2_c00222{font-family:ff2_c00222;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00222;src:url('chunks/assets/font_26955556604fbb8c4136bfdc.woff2')format("woff");}.ff3_c00222{font-family:ff3_c00222;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00222;src:url('chunks/assets/font_af0ef584b70b0fc441f04f2a.woff2')format("woff");}.ff4_c00222{font-family:ff4_c00222;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00222;src:url('chunks/assets/font_59e819cd094c465226efffc8.woff2')format("woff");}.ff5_c00222{font-family:ff5_c00222;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00222;src:url('chunks/assets/font_592163e62c6457123680ad5d.woff2')format("woff");}.ff6_c00222{font-family:ff6_c00222;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00222;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c00222{font-family:ff7_c00222;line-height:1.219238;font-style: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;}
.ls2_c00222{letter-spacing:0.000000px;}
.ls0_c00222{letter-spacing:4.800000px;}
.ls1_c00222{letter-spacing:19.200000px;}
.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;}
}
.ws3_c00222{word-spacing:-47.652000px;}
.ws2_c00222{word-spacing:-38.121600px;}
.ws0_c00222{word-spacing:-23.859000px;}
.ws5_c00222{word-spacing:-20.250000px;}
.ws1_c00222{word-spacing:-17.352000px;}
.ws4_c00222{word-spacing:-16.500000px;}
.ws6_c00222{word-spacing:0.000000px;}
._2_c00222{margin-left:-29.832000px;}
._1a_c00222{margin-left:-21.213000px;}
._1c_c00222{margin-left:-16.848000px;}
._1e_c00222{margin-left:-14.586000px;}
._19_c00222{margin-left:-13.455000px;}
._10_c00222{margin-left:-11.919000px;}
._11_c00222{margin-left:-9.918000px;}
._1_c00222{margin-left:-8.034000px;}
._1f_c00222{margin-left:-6.831000px;}
._12_c00222{margin-left:-5.532000px;}
._d_c00222{margin-left:-3.375000px;}
._0_c00222{margin-left:-1.485000px;}
._6_c00222{width:1.005000px;}
._4_c00222{width:2.376000px;}
._7_c00222{width:3.435000px;}
._3_c00222{width:4.737000px;}
._5_c00222{width:5.772000px;}
._b_c00222{width:6.885000px;}
._c_c00222{width:8.046000px;}
._e_c00222{width:9.339000px;}
._a_c00222{width:10.593000px;}
._15_c00222{width:12.552000px;}
._13_c00222{width:13.971000px;}
._f_c00222{width:15.654000px;}
._18_c00222{width:17.079000px;}
._9_c00222{width:19.206000px;}
._16_c00222{width:26.040000px;}
._20_c00222{width:35.745000px;}
._1b_c00222{width:46.203000px;}
._8_c00222{width:50.178000px;}
._14_c00222{width:52.011000px;}
._1d_c00222{width:67.791000px;}
._17_c00222{width:338.919000px;}
.fc2_c00222{color:transparent;}
.fc1_c00222{color:rgb(128,128,128);}
.fc0_c00222{color:rgb(0,0,0);}
.fs8_c00222{font-size:48.000000px;}
.fs6_c00222{font-size:52.800000px;}
.fs7_c00222{font-size:60.000000px;}
.fs5_c00222{font-size:66.000000px;}
.fs4_c00222{font-size:72.000000px;}
.fs2_c00222{font-size:81.000000px;}
.fs3_c00222{font-size:87.000000px;}
.fs0_c00222{font-size:99.000000px;}
.fs1_c00222{font-size:132.000000px;}
.y0_c00222{bottom:0.000000px;}
.y26_c00222{bottom:3.105000px;}
.y25_c00222{bottom:7.228371px;}
.y24_c00222{bottom:73.665000px;}
.y23_c00222{bottom:98.265000px;}
.y22_c00222{bottom:122.865000px;}
.y21_c00222{bottom:147.615000px;}
.y20_c00222{bottom:171.765000px;}
.y1f_c00222{bottom:196.215000px;}
.y1e_c00222{bottom:220.515000px;}
.y1d_c00222{bottom:244.665000px;}
.y1c_c00222{bottom:268.665000px;}
.y1b_c00222{bottom:292.665000px;}
.y1a_c00222{bottom:316.665000px;}
.y19_c00222{bottom:340.665000px;}
.y18_c00222{bottom:364.815000px;}
.y17_c00222{bottom:388.515000px;}
.y16_c00222{bottom:412.815000px;}
.y15_c00222{bottom:436.815000px;}
.y14_c00222{bottom:460.665000px;}
.y13_c00222{bottom:484.965000px;}
.y12_c00222{bottom:509.265000px;}
.y11_c00222{bottom:532.665000px;}
.y10_c00222{bottom:556.965000px;}
.yf_c00222{bottom:580.815000px;}
.ye_c00222{bottom:604.515000px;}
.yd_c00222{bottom:628.515000px;}
.yc_c00222{bottom:652.515000px;}
.yb_c00222{bottom:676.365000px;}
.ya_c00222{bottom:700.365000px;}
.y9_c00222{bottom:724.065000px;}
.y8_c00222{bottom:748.365000px;}
.y7_c00222{bottom:772.515000px;}
.y6_c00222{bottom:797.865000px;}
.y5_c00222{bottom:820.515000px;}
.y4_c00222{bottom:844.515000px;}
.y3_c00222{bottom:869.865000px;}
.y2_c00222{bottom:892.815000px;}
.y1_c00222{bottom:926.415000px;}
.h7_c00222{height:13.200074px;}
.h8_c00222{height:43.804688px;}
.h6_c00222{height:64.775391px;}
.h3_c00222{height:79.497070px;}
.h5_c00222{height:84.269531px;}
.h4_c00222{height:110.151855px;}
.h2_c00222{height:167.126953px;}
.h0_c00222{height:989.025000px;}
.h1_c00222{height:989.250000px;}
.w1_c00222{width:104.875500px;}
.w0_c00222{width:672.000000px;}
.x0_c00222{left:0.000000px;}
.x2_c00222{left:36.750000px;}
.x3_c00222{left:37.800000px;}
.x4_c00222{left:39.150000px;}
.x6_c00222{left:40.200000px;}
.x5_c00222{left:64.500000px;}
.x1_c00222{left:109.650000px;}
.x8_c00222{left:287.814240px;}
.x7_c00222{left:472.800000px;}
@media print{
.v0_c00222{vertical-align:0.000000pt;}
.ls2_c00222{letter-spacing:0.000000pt;}
.ls0_c00222{letter-spacing:4.266667pt;}
.ls1_c00222{letter-spacing:17.066667pt;}
.ws3_c00222{word-spacing:-42.357333pt;}
.ws2_c00222{word-spacing:-33.885867pt;}
.ws0_c00222{word-spacing:-21.208000pt;}
.ws5_c00222{word-spacing:-18.000000pt;}
.ws1_c00222{word-spacing:-15.424000pt;}
.ws4_c00222{word-spacing:-14.666667pt;}
.ws6_c00222{word-spacing:0.000000pt;}
._2_c00222{margin-left:-26.517333pt;}
._1a_c00222{margin-left:-18.856000pt;}
._1c_c00222{margin-left:-14.976000pt;}
._1e_c00222{margin-left:-12.965333pt;}
._19_c00222{margin-left:-11.960000pt;}
._10_c00222{margin-left:-10.594667pt;}
._11_c00222{margin-left:-8.816000pt;}
._1_c00222{margin-left:-7.141333pt;}
._1f_c00222{margin-left:-6.072000pt;}
._12_c00222{margin-left:-4.917333pt;}
._d_c00222{margin-left:-3.000000pt;}
._0_c00222{margin-left:-1.320000pt;}
._6_c00222{width:0.893333pt;}
._4_c00222{width:2.112000pt;}
._7_c00222{width:3.053333pt;}
._3_c00222{width:4.210667pt;}
._5_c00222{width:5.130667pt;}
._b_c00222{width:6.120000pt;}
._c_c00222{width:7.152000pt;}
._e_c00222{width:8.301333pt;}
._a_c00222{width:9.416000pt;}
._15_c00222{width:11.157333pt;}
._13_c00222{width:12.418667pt;}
._f_c00222{width:13.914667pt;}
._18_c00222{width:15.181333pt;}
._9_c00222{width:17.072000pt;}
._16_c00222{width:23.146667pt;}
._20_c00222{width:31.773333pt;}
._1b_c00222{width:41.069333pt;}
._8_c00222{width:44.602667pt;}
._14_c00222{width:46.232000pt;}
._1d_c00222{width:60.258667pt;}
._17_c00222{width:301.261333pt;}
.fs8_c00222{font-size:42.666667pt;}
.fs6_c00222{font-size:46.933333pt;}
.fs7_c00222{font-size:53.333333pt;}
.fs5_c00222{font-size:58.666667pt;}
.fs4_c00222{font-size:64.000000pt;}
.fs2_c00222{font-size:72.000000pt;}
.fs3_c00222{font-size:77.333333pt;}
.fs0_c00222{font-size:88.000000pt;}
.fs1_c00222{font-size:117.333333pt;}
.y0_c00222{bottom:0.000000pt;}
.y26_c00222{bottom:2.760000pt;}
.y25_c00222{bottom:6.425219pt;}
.y24_c00222{bottom:65.480000pt;}
.y23_c00222{bottom:87.346667pt;}
.y22_c00222{bottom:109.213333pt;}
.y21_c00222{bottom:131.213333pt;}
.y20_c00222{bottom:152.680000pt;}
.y1f_c00222{bottom:174.413333pt;}
.y1e_c00222{bottom:196.013333pt;}
.y1d_c00222{bottom:217.480000pt;}
.y1c_c00222{bottom:238.813333pt;}
.y1b_c00222{bottom:260.146667pt;}
.y1a_c00222{bottom:281.480000pt;}
.y19_c00222{bottom:302.813333pt;}
.y18_c00222{bottom:324.280000pt;}
.y17_c00222{bottom:345.346667pt;}
.y16_c00222{bottom:366.946667pt;}
.y15_c00222{bottom:388.280000pt;}
.y14_c00222{bottom:409.480000pt;}
.y13_c00222{bottom:431.080000pt;}
.y12_c00222{bottom:452.680000pt;}
.y11_c00222{bottom:473.480000pt;}
.y10_c00222{bottom:495.080000pt;}
.yf_c00222{bottom:516.280000pt;}
.ye_c00222{bottom:537.346667pt;}
.yd_c00222{bottom:558.680000pt;}
.yc_c00222{bottom:580.013333pt;}
.yb_c00222{bottom:601.213333pt;}
.ya_c00222{bottom:622.546667pt;}
.y9_c00222{bottom:643.613333pt;}
.y8_c00222{bottom:665.213333pt;}
.y7_c00222{bottom:686.680000pt;}
.y6_c00222{bottom:709.213333pt;}
.y5_c00222{bottom:729.346667pt;}
.y4_c00222{bottom:750.680000pt;}
.y3_c00222{bottom:773.213333pt;}
.y2_c00222{bottom:793.613333pt;}
.y1_c00222{bottom:823.480000pt;}
.h7_c00222{height:11.733399pt;}
.h8_c00222{height:38.937500pt;}
.h6_c00222{height:57.578125pt;}
.h3_c00222{height:70.664062pt;}
.h5_c00222{height:74.906250pt;}
.h4_c00222{height:97.912760pt;}
.h2_c00222{height:148.557292pt;}
.h0_c00222{height:879.133333pt;}
.h1_c00222{height:879.333333pt;}
.w1_c00222{width:93.222667pt;}
.w0_c00222{width:597.333333pt;}
.x0_c00222{left:0.000000pt;}
.x2_c00222{left:32.666667pt;}
.x3_c00222{left:33.600000pt;}
.x4_c00222{left:34.800000pt;}
.x6_c00222{left:35.733333pt;}
.x5_c00222{left:57.333333pt;}
.x1_c00222{left:97.466667pt;}
.x8_c00222{left:255.834880pt;}
.x7_c00222{left:420.266667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_9841556beb57d663877b9944.woff2')format("woff");}.ff1_c00223{font-family:ff1_c00223;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00223;src:url('chunks/assets/font_de8c48f32e58812e892a46a9.woff2')format("woff");}.ff2_c00223{font-family:ff2_c00223;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00223;src:url('chunks/assets/font_bbdf9177e87b3bba5d514f58.woff2')format("woff");}.ff3_c00223{font-family:ff3_c00223;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00223;src:url('chunks/assets/font_bba694ac5c8c82fef4a96ed6.woff2')format("woff");}.ff4_c00223{font-family:ff4_c00223;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00223;src:url('chunks/assets/font_97f5329bb7751665ba39afee.woff2')format("woff");}.ff5_c00223{font-family:ff5_c00223;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00223;src:url('chunks/assets/font_fa9b8e17f4228cd4e984f805.woff2')format("woff");}.ff6_c00223{font-family:ff6_c00223;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00223;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c00223{font-family:ff7_c00223;line-height:1.219238;font-style: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;}
.v1_c00223{vertical-align:7.800000px;}
.v2_c00223{vertical-align:127.800000px;}
.ls4_c00223{letter-spacing:-6.000000px;}
.ls3_c00223{letter-spacing:0.000000px;}
.ls0_c00223{letter-spacing:26.400000px;}
.ls1_c00223{letter-spacing:28.995000px;}
.ls2_c00223{letter-spacing:31.344000px;}
.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;}
}
.ws3_c00223{word-spacing:-27.000000px;}
.ws0_c00223{word-spacing:-23.832000px;}
.ws1_c00223{word-spacing:-19.065600px;}
.ws2_c00223{word-spacing:-17.352000px;}
.ws4_c00223{word-spacing:0.000000px;}
._10_c00223{margin-left:-36.126000px;}
._1f_c00223{margin-left:-26.301000px;}
._1e_c00223{margin-left:-22.676400px;}
._21_c00223{margin-left:-18.630000px;}
._16_c00223{margin-left:-16.848000px;}
._25_c00223{margin-left:-15.228000px;}
._13_c00223{margin-left:-13.932000px;}
._23_c00223{margin-left:-11.826000px;}
._b_c00223{margin-left:-10.773000px;}
._1c_c00223{margin-left:-9.292200px;}
._15_c00223{margin-left:-7.779600px;}
._8_c00223{margin-left:-5.670000px;}
._3_c00223{margin-left:-4.212000px;}
._4_c00223{margin-left:-2.187000px;}
._a_c00223{margin-left:-1.134000px;}
._d_c00223{width:1.013400px;}
._5_c00223{width:2.025000px;}
._0_c00223{width:3.564000px;}
._2_c00223{width:5.508000px;}
._1_c00223{width:6.642000px;}
._7_c00223{width:8.100000px;}
._e_c00223{width:9.418800px;}
._6_c00223{width:10.935000px;}
._c_c00223{width:12.069000px;}
._f_c00223{width:13.199400px;}
._18_c00223{width:15.147000px;}
._17_c00223{width:16.443000px;}
._9_c00223{width:17.982000px;}
._1a_c00223{width:20.079000px;}
._14_c00223{width:22.770600px;}
._20_c00223{width:28.366800px;}
._11_c00223{width:32.562000px;}
._1b_c00223{width:36.936000px;}
._19_c00223{width:49.833000px;}
._1d_c00223{width:103.099800px;}
._26_c00223{width:106.029000px;}
._24_c00223{width:118.098000px;}
._12_c00223{width:170.667000px;}
._22_c00223{width:415.044000px;}
._27_c00223{width:798.903000px;}
.fc2_c00223{color:transparent;}
.fc1_c00223{color:rgb(128,128,128);}
.fc0_c00223{color:rgb(0,0,0);}
.fs8_c00223{font-size:48.000000px;}
.fs4_c00223{font-size:57.000000px;}
.fs3_c00223{font-size:57.600000px;}
.fs1_c00223{font-size:60.000000px;}
.fs7_c00223{font-size:66.000000px;}
.fs2_c00223{font-size:72.000000px;}
.fs6_c00223{font-size:78.000000px;}
.fs0_c00223{font-size:81.000000px;}
.fs5_c00223{font-size:255.000000px;}
.y0_c00223{bottom:0.000000px;}
.y24_c00223{bottom:3.105000px;}
.y23_c00223{bottom:7.228357px;}
.y22_c00223{bottom:77.580000px;}
.y21_c00223{bottom:92.130000px;}
.y20_c00223{bottom:117.480000px;}
.y1f_c00223{bottom:142.080000px;}
.y1e_c00223{bottom:166.680000px;}
.y1d_c00223{bottom:191.730000px;}
.y1c_c00223{bottom:215.430000px;}
.y1a_c00223{bottom:232.680000px;}
.y1b_c00223{bottom:240.030000px;}
.y19_c00223{bottom:287.280000px;}
.y18_c00223{bottom:312.480000px;}
.y17_c00223{bottom:359.880000px;}
.y16_c00223{bottom:384.480000px;}
.y15_c00223{bottom:408.780000px;}
.y14_c00223{bottom:433.380000px;}
.y13_c00223{bottom:456.930000px;}
.y12_c00223{bottom:480.930000px;}
.y11_c00223{bottom:504.930000px;}
.y10_c00223{bottom:528.780000px;}
.yf_c00223{bottom:552.780000px;}
.ye_c00223{bottom:576.780000px;}
.yd_c00223{bottom:601.080000px;}
.yc_c00223{bottom:624.780000px;}
.yb_c00223{bottom:649.080000px;}
.ya_c00223{bottom:673.380000px;}
.y9_c00223{bottom:697.380000px;}
.y8_c00223{bottom:721.530000px;}
.y7_c00223{bottom:745.530000px;}
.y6_c00223{bottom:769.230000px;}
.y5_c00223{bottom:793.530000px;}
.y4_c00223{bottom:817.380000px;}
.y3_c00223{bottom:839.430000px;}
.y2_c00223{bottom:865.680000px;}
.y1_c00223{bottom:889.680000px;}
.h8_c00223{height:13.200074px;}
.h9_c00223{height:43.804688px;}
.h5_c00223{height:66.713379px;}
.h1_c00223{height:79.497070px;}
.h4_c00223{height:84.269531px;}
.h2_c00223{height:87.297070px;}
.h3_c00223{height:91.160156px;}
.h7_c00223{height:98.756836px;}
.h6_c00223{height:267.240000px;}
.h0_c00223{height:995.250000px;}
.w2_c00223{width:104.875500px;}
.w0_c00223{width:667.425000px;}
.w1_c00223{width:667.500000px;}
.x0_c00223{left:0.000000px;}
.x4_c00223{left:44.250000px;}
.x1_c00223{left:128.550000px;}
.x3_c00223{left:131.700000px;}
.x5_c00223{left:133.650000px;}
.x6_c00223{left:135.300000px;}
.x9_c00223{left:136.350000px;}
.x2_c00223{left:140.100000px;}
.x8_c00223{left:174.900000px;}
.x7_c00223{left:216.450000px;}
.xa_c00223{left:285.526749px;}
@media print{
.v0_c00223{vertical-align:0.000000pt;}
.v1_c00223{vertical-align:6.933333pt;}
.v2_c00223{vertical-align:113.600000pt;}
.ls4_c00223{letter-spacing:-5.333333pt;}
.ls3_c00223{letter-spacing:0.000000pt;}
.ls0_c00223{letter-spacing:23.466667pt;}
.ls1_c00223{letter-spacing:25.773333pt;}
.ls2_c00223{letter-spacing:27.861333pt;}
.ws3_c00223{word-spacing:-24.000000pt;}
.ws0_c00223{word-spacing:-21.184000pt;}
.ws1_c00223{word-spacing:-16.947200pt;}
.ws2_c00223{word-spacing:-15.424000pt;}
.ws4_c00223{word-spacing:0.000000pt;}
._10_c00223{margin-left:-32.112000pt;}
._1f_c00223{margin-left:-23.378667pt;}
._1e_c00223{margin-left:-20.156800pt;}
._21_c00223{margin-left:-16.560000pt;}
._16_c00223{margin-left:-14.976000pt;}
._25_c00223{margin-left:-13.536000pt;}
._13_c00223{margin-left:-12.384000pt;}
._23_c00223{margin-left:-10.512000pt;}
._b_c00223{margin-left:-9.576000pt;}
._1c_c00223{margin-left:-8.259733pt;}
._15_c00223{margin-left:-6.915200pt;}
._8_c00223{margin-left:-5.040000pt;}
._3_c00223{margin-left:-3.744000pt;}
._4_c00223{margin-left:-1.944000pt;}
._a_c00223{margin-left:-1.008000pt;}
._d_c00223{width:0.900800pt;}
._5_c00223{width:1.800000pt;}
._0_c00223{width:3.168000pt;}
._2_c00223{width:4.896000pt;}
._1_c00223{width:5.904000pt;}
._7_c00223{width:7.200000pt;}
._e_c00223{width:8.372267pt;}
._6_c00223{width:9.720000pt;}
._c_c00223{width:10.728000pt;}
._f_c00223{width:11.732800pt;}
._18_c00223{width:13.464000pt;}
._17_c00223{width:14.616000pt;}
._9_c00223{width:15.984000pt;}
._1a_c00223{width:17.848000pt;}
._14_c00223{width:20.240533pt;}
._20_c00223{width:25.214933pt;}
._11_c00223{width:28.944000pt;}
._1b_c00223{width:32.832000pt;}
._19_c00223{width:44.296000pt;}
._1d_c00223{width:91.644267pt;}
._26_c00223{width:94.248000pt;}
._24_c00223{width:104.976000pt;}
._12_c00223{width:151.704000pt;}
._22_c00223{width:368.928000pt;}
._27_c00223{width:710.136000pt;}
.fs8_c00223{font-size:42.666667pt;}
.fs4_c00223{font-size:50.666667pt;}
.fs3_c00223{font-size:51.200000pt;}
.fs1_c00223{font-size:53.333333pt;}
.fs7_c00223{font-size:58.666667pt;}
.fs2_c00223{font-size:64.000000pt;}
.fs6_c00223{font-size:69.333333pt;}
.fs0_c00223{font-size:72.000000pt;}
.fs5_c00223{font-size:226.666667pt;}
.y0_c00223{bottom:0.000000pt;}
.y24_c00223{bottom:2.760000pt;}
.y23_c00223{bottom:6.425206pt;}
.y22_c00223{bottom:68.960000pt;}
.y21_c00223{bottom:81.893333pt;}
.y20_c00223{bottom:104.426667pt;}
.y1f_c00223{bottom:126.293333pt;}
.y1e_c00223{bottom:148.160000pt;}
.y1d_c00223{bottom:170.426667pt;}
.y1c_c00223{bottom:191.493333pt;}
.y1a_c00223{bottom:206.826667pt;}
.y1b_c00223{bottom:213.360000pt;}
.y19_c00223{bottom:255.360000pt;}
.y18_c00223{bottom:277.760000pt;}
.y17_c00223{bottom:319.893333pt;}
.y16_c00223{bottom:341.760000pt;}
.y15_c00223{bottom:363.360000pt;}
.y14_c00223{bottom:385.226667pt;}
.y13_c00223{bottom:406.160000pt;}
.y12_c00223{bottom:427.493333pt;}
.y11_c00223{bottom:448.826667pt;}
.y10_c00223{bottom:470.026667pt;}
.yf_c00223{bottom:491.360000pt;}
.ye_c00223{bottom:512.693333pt;}
.yd_c00223{bottom:534.293333pt;}
.yc_c00223{bottom:555.360000pt;}
.yb_c00223{bottom:576.960000pt;}
.ya_c00223{bottom:598.560000pt;}
.y9_c00223{bottom:619.893333pt;}
.y8_c00223{bottom:641.360000pt;}
.y7_c00223{bottom:662.693333pt;}
.y6_c00223{bottom:683.760000pt;}
.y5_c00223{bottom:705.360000pt;}
.y4_c00223{bottom:726.560000pt;}
.y3_c00223{bottom:746.160000pt;}
.y2_c00223{bottom:769.493333pt;}
.y1_c00223{bottom:790.826667pt;}
.h8_c00223{height:11.733399pt;}
.h9_c00223{height:38.937500pt;}
.h5_c00223{height:59.300781pt;}
.h1_c00223{height:70.664062pt;}
.h4_c00223{height:74.906250pt;}
.h2_c00223{height:77.597396pt;}
.h3_c00223{height:81.031250pt;}
.h7_c00223{height:87.783854pt;}
.h6_c00223{height:237.546667pt;}
.h0_c00223{height:884.666667pt;}
.w2_c00223{width:93.222667pt;}
.w0_c00223{width:593.266667pt;}
.w1_c00223{width:593.333333pt;}
.x0_c00223{left:0.000000pt;}
.x4_c00223{left:39.333333pt;}
.x1_c00223{left:114.266667pt;}
.x3_c00223{left:117.066667pt;}
.x5_c00223{left:118.800000pt;}
.x6_c00223{left:120.266667pt;}
.x9_c00223{left:121.200000pt;}
.x2_c00223{left:124.533333pt;}
.x8_c00223{left:155.466667pt;}
.x7_c00223{left:192.400000pt;}
.xa_c00223{left:253.801554pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_bcafef867a44aed2d3239b42.woff2')format("woff");}.ff1_c00224{font-family:ff1_c00224;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00224;src:url('chunks/assets/font_b015ae52a518341814c15f03.woff2')format("woff");}.ff2_c00224{font-family:ff2_c00224;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00224;src:url('chunks/assets/font_0615006d60ffbafa2c13bc44.woff2')format("woff");}.ff3_c00224{font-family:ff3_c00224;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00224;src:url('chunks/assets/font_89fa38ee77c88363ef6a1b78.woff2')format("woff");}.ff4_c00224{font-family:ff4_c00224;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00224;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c00224{font-family:ff5_c00224;line-height:1.219238;font-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_c00224{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,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;}
.ls2_c00224{letter-spacing:0.000000px;}
.ls1_c00224{letter-spacing:0.150000px;}
.ls0_c00224{letter-spacing:113.520000px;}
.sc__c00224{text-shadow:none;}
.sc0_c00224{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00224{-webkit-text-stroke:0px transparent;}
.sc0_c00224{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00224{word-spacing:-23.859000px;}
.ws1_c00224{word-spacing:-17.352000px;}
.ws2_c00224{word-spacing:0.000000px;}
._22_c00224{margin-left:-22.605000px;}
._1d_c00224{margin-left:-18.468000px;}
._11_c00224{margin-left:-15.309000px;}
._18_c00224{margin-left:-13.263000px;}
._f_c00224{margin-left:-10.098000px;}
._e_c00224{margin-left:-8.940000px;}
._10_c00224{margin-left:-7.242000px;}
._16_c00224{margin-left:-5.940000px;}
._12_c00224{margin-left:-4.833000px;}
._d_c00224{margin-left:-3.186000px;}
._7_c00224{margin-left:-2.133000px;}
._b_c00224{margin-left:-1.026000px;}
._1_c00224{width:1.542000px;}
._0_c00224{width:3.267000px;}
._5_c00224{width:4.509000px;}
._3_c00224{width:5.643000px;}
._6_c00224{width:6.858000px;}
._13_c00224{width:7.935000px;}
._4_c00224{width:8.991000px;}
._a_c00224{width:10.233000px;}
._17_c00224{width:11.421000px;}
._9_c00224{width:12.471000px;}
._8_c00224{width:14.445000px;}
._c_c00224{width:16.110000px;}
._15_c00224{width:19.113000px;}
._1e_c00224{width:32.214000px;}
._19_c00224{width:35.292000px;}
._1f_c00224{width:37.536000px;}
._2_c00224{width:45.438000px;}
._1b_c00224{width:95.040000px;}
._1a_c00224{width:122.706000px;}
._1c_c00224{width:206.838000px;}
._21_c00224{width:215.445000px;}
._20_c00224{width:273.009000px;}
._14_c00224{width:381.213000px;}
._23_c00224{width:468.693000px;}
.fc2_c00224{color:transparent;}
.fc1_c00224{color:rgb(128,128,128);}
.fc0_c00224{color:rgb(0,0,0);}
.fs5_c00224{font-size:48.000000px;}
.fs3_c00224{font-size:72.000000px;}
.fs2_c00224{font-size:81.000000px;}
.fs0_c00224{font-size:99.000000px;}
.fs4_c00224{font-size:108.000000px;}
.fs1_c00224{font-size:132.000000px;}
.y0_c00224{bottom:0.000000px;}
.y26_c00224{bottom:3.105000px;}
.y25_c00224{bottom:7.228371px;}
.y24_c00224{bottom:58.515000px;}
.y23_c00224{bottom:83.715000px;}
.y22_c00224{bottom:108.465000px;}
.y21_c00224{bottom:133.665000px;}
.y20_c00224{bottom:157.965000px;}
.y1f_c00224{bottom:182.565000px;}
.y1e_c00224{bottom:207.015000px;}
.y1d_c00224{bottom:231.165000px;}
.y1c_c00224{bottom:255.615000px;}
.y1b_c00224{bottom:280.515000px;}
.y1a_c00224{bottom:304.815000px;}
.y19_c00224{bottom:328.815000px;}
.y18_c00224{bottom:352.665000px;}
.y17_c00224{bottom:377.115000px;}
.y16_c00224{bottom:401.415000px;}
.y15_c00224{bottom:425.565000px;}
.y14_c00224{bottom:450.315000px;}
.y13_c00224{bottom:474.615000px;}
.y12_c00224{bottom:498.165000px;}
.y11_c00224{bottom:522.465000px;}
.y10_c00224{bottom:547.215000px;}
.yf_c00224{bottom:570.765000px;}
.ye_c00224{bottom:594.765000px;}
.yd_c00224{bottom:618.615000px;}
.yc_c00224{bottom:642.315000px;}
.yb_c00224{bottom:666.315000px;}
.ya_c00224{bottom:690.615000px;}
.y9_c00224{bottom:714.915000px;}
.y8_c00224{bottom:738.915000px;}
.y7_c00224{bottom:763.215000px;}
.y6_c00224{bottom:787.815000px;}
.y5_c00224{bottom:812.415000px;}
.y4_c00224{bottom:836.715000px;}
.y3_c00224{bottom:861.015000px;}
.y2_c00224{bottom:885.015000px;}
.y1_c00224{bottom:919.365000px;}
.h7_c00224{height:13.200074px;}
.h8_c00224{height:43.804688px;}
.h3_c00224{height:79.497070px;}
.h4_c00224{height:84.269531px;}
.h5_c00224{height:91.160156px;}
.h6_c00224{height:108.843750px;}
.h2_c00224{height:167.126953px;}
.h0_c00224{height:989.025000px;}
.h1_c00224{height:989.250000px;}
.w1_c00224{width:104.875500px;}
.w0_c00224{width:672.000000px;}
.x0_c00224{left:0.000000px;}
.x3_c00224{left:43.950000px;}
.x2_c00224{left:45.000000px;}
.x4_c00224{left:46.200000px;}
.x5_c00224{left:47.250000px;}
.x6_c00224{left:48.300000px;}
.x8_c00224{left:49.650000px;}
.x9_c00224{left:50.850000px;}
.x7_c00224{left:73.200000px;}
.x1_c00224{left:117.750000px;}
.xb_c00224{left:287.814240px;}
.xa_c00224{left:362.700000px;}
@media print{
.v0_c00224{vertical-align:0.000000pt;}
.ls2_c00224{letter-spacing:0.000000pt;}
.ls1_c00224{letter-spacing:0.133333pt;}
.ls0_c00224{letter-spacing:100.906667pt;}
.ws0_c00224{word-spacing:-21.208000pt;}
.ws1_c00224{word-spacing:-15.424000pt;}
.ws2_c00224{word-spacing:0.000000pt;}
._22_c00224{margin-left:-20.093333pt;}
._1d_c00224{margin-left:-16.416000pt;}
._11_c00224{margin-left:-13.608000pt;}
._18_c00224{margin-left:-11.789333pt;}
._f_c00224{margin-left:-8.976000pt;}
._e_c00224{margin-left:-7.946667pt;}
._10_c00224{margin-left:-6.437333pt;}
._16_c00224{margin-left:-5.280000pt;}
._12_c00224{margin-left:-4.296000pt;}
._d_c00224{margin-left:-2.832000pt;}
._7_c00224{margin-left:-1.896000pt;}
._b_c00224{margin-left:-0.912000pt;}
._1_c00224{width:1.370667pt;}
._0_c00224{width:2.904000pt;}
._5_c00224{width:4.008000pt;}
._3_c00224{width:5.016000pt;}
._6_c00224{width:6.096000pt;}
._13_c00224{width:7.053333pt;}
._4_c00224{width:7.992000pt;}
._a_c00224{width:9.096000pt;}
._17_c00224{width:10.152000pt;}
._9_c00224{width:11.085333pt;}
._8_c00224{width:12.840000pt;}
._c_c00224{width:14.320000pt;}
._15_c00224{width:16.989333pt;}
._1e_c00224{width:28.634667pt;}
._19_c00224{width:31.370667pt;}
._1f_c00224{width:33.365333pt;}
._2_c00224{width:40.389333pt;}
._1b_c00224{width:84.480000pt;}
._1a_c00224{width:109.072000pt;}
._1c_c00224{width:183.856000pt;}
._21_c00224{width:191.506667pt;}
._20_c00224{width:242.674667pt;}
._14_c00224{width:338.856000pt;}
._23_c00224{width:416.616000pt;}
.fs5_c00224{font-size:42.666667pt;}
.fs3_c00224{font-size:64.000000pt;}
.fs2_c00224{font-size:72.000000pt;}
.fs0_c00224{font-size:88.000000pt;}
.fs4_c00224{font-size:96.000000pt;}
.fs1_c00224{font-size:117.333333pt;}
.y0_c00224{bottom:0.000000pt;}
.y26_c00224{bottom:2.760000pt;}
.y25_c00224{bottom:6.425219pt;}
.y24_c00224{bottom:52.013333pt;}
.y23_c00224{bottom:74.413333pt;}
.y22_c00224{bottom:96.413333pt;}
.y21_c00224{bottom:118.813333pt;}
.y20_c00224{bottom:140.413333pt;}
.y1f_c00224{bottom:162.280000pt;}
.y1e_c00224{bottom:184.013333pt;}
.y1d_c00224{bottom:205.480000pt;}
.y1c_c00224{bottom:227.213333pt;}
.y1b_c00224{bottom:249.346667pt;}
.y1a_c00224{bottom:270.946667pt;}
.y19_c00224{bottom:292.280000pt;}
.y18_c00224{bottom:313.480000pt;}
.y17_c00224{bottom:335.213333pt;}
.y16_c00224{bottom:356.813333pt;}
.y15_c00224{bottom:378.280000pt;}
.y14_c00224{bottom:400.280000pt;}
.y13_c00224{bottom:421.880000pt;}
.y12_c00224{bottom:442.813333pt;}
.y11_c00224{bottom:464.413333pt;}
.y10_c00224{bottom:486.413333pt;}
.yf_c00224{bottom:507.346667pt;}
.ye_c00224{bottom:528.680000pt;}
.yd_c00224{bottom:549.880000pt;}
.yc_c00224{bottom:570.946667pt;}
.yb_c00224{bottom:592.280000pt;}
.ya_c00224{bottom:613.880000pt;}
.y9_c00224{bottom:635.480000pt;}
.y8_c00224{bottom:656.813333pt;}
.y7_c00224{bottom:678.413333pt;}
.y6_c00224{bottom:700.280000pt;}
.y5_c00224{bottom:722.146667pt;}
.y4_c00224{bottom:743.746667pt;}
.y3_c00224{bottom:765.346667pt;}
.y2_c00224{bottom:786.680000pt;}
.y1_c00224{bottom:817.213333pt;}
.h7_c00224{height:11.733399pt;}
.h8_c00224{height:38.937500pt;}
.h3_c00224{height:70.664062pt;}
.h4_c00224{height:74.906250pt;}
.h5_c00224{height:81.031250pt;}
.h6_c00224{height:96.750000pt;}
.h2_c00224{height:148.557292pt;}
.h0_c00224{height:879.133333pt;}
.h1_c00224{height:879.333333pt;}
.w1_c00224{width:93.222667pt;}
.w0_c00224{width:597.333333pt;}
.x0_c00224{left:0.000000pt;}
.x3_c00224{left:39.066667pt;}
.x2_c00224{left:40.000000pt;}
.x4_c00224{left:41.066667pt;}
.x5_c00224{left:42.000000pt;}
.x6_c00224{left:42.933333pt;}
.x8_c00224{left:44.133333pt;}
.x9_c00224{left:45.200000pt;}
.x7_c00224{left:65.066667pt;}
.x1_c00224{left:104.666667pt;}
.xb_c00224{left:255.834880pt;}
.xa_c00224{left:322.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_cce39109c5f980c6c925c736.woff2')format("woff");}.ff1_c00225{font-family:ff1_c00225;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00225;src:url('chunks/assets/font_859989d39ef5a12607cfaff1.woff2')format("woff");}.ff2_c00225{font-family:ff2_c00225;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00225;src:url('chunks/assets/font_bb4e5b0360bb46cb1911692d.woff2')format("woff");}.ff3_c00225{font-family:ff3_c00225;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00225;src:url('chunks/assets/font_55a19b63fdc763d4a48543e0.woff2')format("woff");}.ff4_c00225{font-family:ff4_c00225;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00225;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c00225{font-family:ff5_c00225;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00225{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00225{vertical-align:0.000000px;}
.v1_c00225{vertical-align:10.800000px;}
.ls1_c00225{letter-spacing:0.000000px;}
.ls0_c00225{letter-spacing:31.500000px;}
.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:-67.686000px;}
.ws0_c00225{word-spacing:-17.352000px;}
.ws2_c00225{word-spacing:0.000000px;}
._18_c00225{margin-left:-31.302000px;}
._c_c00225{margin-left:-24.300000px;}
._1e_c00225{margin-left:-20.979000px;}
._17_c00225{margin-left:-15.984000px;}
._1c_c00225{margin-left:-13.140000px;}
._16_c00225{margin-left:-12.096000px;}
._19_c00225{margin-left:-10.929000px;}
._1b_c00225{margin-left:-9.360000px;}
._14_c00225{margin-left:-7.659000px;}
._9_c00225{margin-left:-6.111000px;}
._8_c00225{margin-left:-5.049000px;}
._f_c00225{margin-left:-3.609000px;}
._4_c00225{margin-left:-2.511000px;}
._5_c00225{margin-left:-1.458000px;}
._3_c00225{width:1.944000px;}
._6_c00225{width:3.078000px;}
._0_c00225{width:4.212000px;}
._2_c00225{width:5.994000px;}
._1_c00225{width:7.776000px;}
._7_c00225{width:8.991000px;}
._12_c00225{width:10.044000px;}
._e_c00225{width:11.097000px;}
._11_c00225{width:13.041000px;}
._10_c00225{width:14.742000px;}
._15_c00225{width:15.939000px;}
._22_c00225{width:17.370000px;}
._1d_c00225{width:18.423000px;}
._b_c00225{width:31.347000px;}
._1a_c00225{width:56.538000px;}
._1f_c00225{width:60.651000px;}
._a_c00225{width:110.778000px;}
._21_c00225{width:139.251000px;}
._d_c00225{width:166.698000px;}
._23_c00225{width:202.023000px;}
._20_c00225{width:239.613000px;}
._13_c00225{width:400.707000px;}
.fc2_c00225{color:transparent;}
.fc1_c00225{color:rgb(128,128,128);}
.fc0_c00225{color:rgb(0,0,0);}
.fs4_c00225{font-size:48.000000px;}
.fs2_c00225{font-size:60.000000px;}
.fs1_c00225{font-size:72.000000px;}
.fs0_c00225{font-size:81.000000px;}
.fs3_c00225{font-size:87.000000px;}
.y0_c00225{bottom:0.000000px;}
.y25_c00225{bottom:3.105000px;}
.y24_c00225{bottom:7.228369px;}
.y23_c00225{bottom:50.220000px;}
.y22_c00225{bottom:75.270000px;}
.y21_c00225{bottom:100.470000px;}
.y20_c00225{bottom:125.220000px;}
.y1f_c00225{bottom:151.470000px;}
.y1e_c00225{bottom:174.870000px;}
.y1d_c00225{bottom:199.020000px;}
.y1c_c00225{bottom:224.370000px;}
.y1b_c00225{bottom:248.370000px;}
.y1a_c00225{bottom:273.270000px;}
.y19_c00225{bottom:298.320000px;}
.y18_c00225{bottom:319.170000px;}
.y17_c00225{bottom:346.320000px;}
.y16_c00225{bottom:371.970000px;}
.y15_c00225{bottom:394.920000px;}
.y14_c00225{bottom:419.520000px;}
.y13_c00225{bottom:443.520000px;}
.y12_c00225{bottom:467.820000px;}
.y11_c00225{bottom:492.120000px;}
.y10_c00225{bottom:515.970000px;}
.yf_c00225{bottom:539.970000px;}
.ye_c00225{bottom:563.670000px;}
.yd_c00225{bottom:587.520000px;}
.yc_c00225{bottom:613.920000px;}
.yb_c00225{bottom:638.220000px;}
.ya_c00225{bottom:662.820000px;}
.y9_c00225{bottom:687.120000px;}
.y8_c00225{bottom:711.120000px;}
.y7_c00225{bottom:735.120000px;}
.y6_c00225{bottom:759.420000px;}
.y5_c00225{bottom:783.720000px;}
.y4_c00225{bottom:808.320000px;}
.y3_c00225{bottom:832.920000px;}
.y2_c00225{bottom:856.170000px;}
.y1_c00225{bottom:880.470000px;}
.h6_c00225{height:13.200073px;}
.h7_c00225{height:43.804688px;}
.h2_c00225{height:79.497070px;}
.h3_c00225{height:84.269531px;}
.h4_c00225{height:90.297070px;}
.h5_c00225{height:91.176000px;}
.h1_c00225{height:981.000000px;}
.h0_c00225{height:981.150000px;}
.w1_c00225{width:104.875500px;}
.w0_c00225{width:657.750000px;}
.x0_c00225{left:0.000000px;}
.x7_c00225{left:23.700000px;}
.x5_c00225{left:25.050000px;}
.x2_c00225{left:27.300000px;}
.x6_c00225{left:40.500000px;}
.xb_c00225{left:119.250000px;}
.x9_c00225{left:120.600000px;}
.x8_c00225{left:121.800000px;}
.x4_c00225{left:122.850000px;}
.x1_c00225{left:123.900000px;}
.x3_c00225{left:124.950000px;}
.xa_c00225{left:131.400000px;}
.xc_c00225{left:280.689240px;}
@media print{
.v0_c00225{vertical-align:0.000000pt;}
.v1_c00225{vertical-align:9.600000pt;}
.ls1_c00225{letter-spacing:0.000000pt;}
.ls0_c00225{letter-spacing:28.000000pt;}
.ws1_c00225{word-spacing:-60.165333pt;}
.ws0_c00225{word-spacing:-15.424000pt;}
.ws2_c00225{word-spacing:0.000000pt;}
._18_c00225{margin-left:-27.824000pt;}
._c_c00225{margin-left:-21.600000pt;}
._1e_c00225{margin-left:-18.648000pt;}
._17_c00225{margin-left:-14.208000pt;}
._1c_c00225{margin-left:-11.680000pt;}
._16_c00225{margin-left:-10.752000pt;}
._19_c00225{margin-left:-9.714667pt;}
._1b_c00225{margin-left:-8.320000pt;}
._14_c00225{margin-left:-6.808000pt;}
._9_c00225{margin-left:-5.432000pt;}
._8_c00225{margin-left:-4.488000pt;}
._f_c00225{margin-left:-3.208000pt;}
._4_c00225{margin-left:-2.232000pt;}
._5_c00225{margin-left:-1.296000pt;}
._3_c00225{width:1.728000pt;}
._6_c00225{width:2.736000pt;}
._0_c00225{width:3.744000pt;}
._2_c00225{width:5.328000pt;}
._1_c00225{width:6.912000pt;}
._7_c00225{width:7.992000pt;}
._12_c00225{width:8.928000pt;}
._e_c00225{width:9.864000pt;}
._11_c00225{width:11.592000pt;}
._10_c00225{width:13.104000pt;}
._15_c00225{width:14.168000pt;}
._22_c00225{width:15.440000pt;}
._1d_c00225{width:16.376000pt;}
._b_c00225{width:27.864000pt;}
._1a_c00225{width:50.256000pt;}
._1f_c00225{width:53.912000pt;}
._a_c00225{width:98.469333pt;}
._21_c00225{width:123.778667pt;}
._d_c00225{width:148.176000pt;}
._23_c00225{width:179.576000pt;}
._20_c00225{width:212.989333pt;}
._13_c00225{width:356.184000pt;}
.fs4_c00225{font-size:42.666667pt;}
.fs2_c00225{font-size:53.333333pt;}
.fs1_c00225{font-size:64.000000pt;}
.fs0_c00225{font-size:72.000000pt;}
.fs3_c00225{font-size:77.333333pt;}
.y0_c00225{bottom:0.000000pt;}
.y25_c00225{bottom:2.760000pt;}
.y24_c00225{bottom:6.425217pt;}
.y23_c00225{bottom:44.640000pt;}
.y22_c00225{bottom:66.906667pt;}
.y21_c00225{bottom:89.306667pt;}
.y20_c00225{bottom:111.306667pt;}
.y1f_c00225{bottom:134.640000pt;}
.y1e_c00225{bottom:155.440000pt;}
.y1d_c00225{bottom:176.906667pt;}
.y1c_c00225{bottom:199.440000pt;}
.y1b_c00225{bottom:220.773333pt;}
.y1a_c00225{bottom:242.906667pt;}
.y19_c00225{bottom:265.173333pt;}
.y18_c00225{bottom:283.706667pt;}
.y17_c00225{bottom:307.840000pt;}
.y16_c00225{bottom:330.640000pt;}
.y15_c00225{bottom:351.040000pt;}
.y14_c00225{bottom:372.906667pt;}
.y13_c00225{bottom:394.240000pt;}
.y12_c00225{bottom:415.840000pt;}
.y11_c00225{bottom:437.440000pt;}
.y10_c00225{bottom:458.640000pt;}
.yf_c00225{bottom:479.973333pt;}
.ye_c00225{bottom:501.040000pt;}
.yd_c00225{bottom:522.240000pt;}
.yc_c00225{bottom:545.706667pt;}
.yb_c00225{bottom:567.306667pt;}
.ya_c00225{bottom:589.173333pt;}
.y9_c00225{bottom:610.773333pt;}
.y8_c00225{bottom:632.106667pt;}
.y7_c00225{bottom:653.440000pt;}
.y6_c00225{bottom:675.040000pt;}
.y5_c00225{bottom:696.640000pt;}
.y4_c00225{bottom:718.506667pt;}
.y3_c00225{bottom:740.373333pt;}
.y2_c00225{bottom:761.040000pt;}
.y1_c00225{bottom:782.640000pt;}
.h6_c00225{height:11.733399pt;}
.h7_c00225{height:38.937500pt;}
.h2_c00225{height:70.664062pt;}
.h3_c00225{height:74.906250pt;}
.h4_c00225{height:80.264063pt;}
.h5_c00225{height:81.045333pt;}
.h1_c00225{height:872.000000pt;}
.h0_c00225{height:872.133333pt;}
.w1_c00225{width:93.222667pt;}
.w0_c00225{width:584.666667pt;}
.x0_c00225{left:0.000000pt;}
.x7_c00225{left:21.066667pt;}
.x5_c00225{left:22.266667pt;}
.x2_c00225{left:24.266667pt;}
.x6_c00225{left:36.000000pt;}
.xb_c00225{left:106.000000pt;}
.x9_c00225{left:107.200000pt;}
.x8_c00225{left:108.266667pt;}
.x4_c00225{left:109.200000pt;}
.x1_c00225{left:110.133333pt;}
.x3_c00225{left:111.066667pt;}
.xa_c00225{left:116.800000pt;}
.xc_c00225{left:249.501546pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8d1549bdd8ec06569d431bce.woff2')format("woff");}.ff1_c00226{font-family:ff1_c00226;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00226;src:url('chunks/assets/font_8cb5bca5eb5cd918af41dbc4.woff2')format("woff");}.ff2_c00226{font-family:ff2_c00226;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00226;src:url('chunks/assets/font_514cfce3c9036ad961fc15a3.woff2')format("woff");}.ff3_c00226{font-family:ff3_c00226;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00226;src:url('chunks/assets/font_626c12bd2190e2785f76d6f3.woff2')format("woff");}.ff4_c00226{font-family:ff4_c00226;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00226;src:url('chunks/assets/font_008435e1d552cc9e6405c0c7.woff2')format("woff");}.ff5_c00226{font-family:ff5_c00226;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00226;src:url('chunks/assets/font_026d49ee7f35feb8cf04254e.woff2')format("woff");}.ff6_c00226{font-family:ff6_c00226;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00226;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c00226{font-family:ff7_c00226;line-height:1.219238;font-style: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;}
.v1_c00226{vertical-align:128.400000px;}
.ls4_c00226{letter-spacing:-6.000000px;}
.ls2_c00226{letter-spacing:0.000000px;}
.ls3_c00226{letter-spacing:3.000000px;}
.ls1_c00226{letter-spacing:24.288000px;}
.ls0_c00226{letter-spacing:88.605000px;}
.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:-20.250000px;}
.ws0_c00226{word-spacing:-1.026000px;}
.ws2_c00226{word-spacing:0.000000px;}
._14_c00226{margin-left:-28.512000px;}
._1e_c00226{margin-left:-25.467000px;}
._4_c00226{margin-left:-16.275000px;}
._1b_c00226{margin-left:-14.028000px;}
._1c_c00226{margin-left:-12.603000px;}
._1a_c00226{margin-left:-11.421000px;}
._15_c00226{margin-left:-8.262000px;}
._12_c00226{margin-left:-6.624000px;}
._9_c00226{margin-left:-5.565000px;}
._11_c00226{margin-left:-4.050000px;}
._13_c00226{margin-left:-2.073000px;}
._18_c00226{margin-left:-1.038000px;}
._10_c00226{width:1.500000px;}
._5_c00226{width:2.835000px;}
._7_c00226{width:4.095000px;}
._2_c00226{width:5.565000px;}
._8_c00226{width:6.720000px;}
._6_c00226{width:7.770000px;}
._3_c00226{width:9.660000px;}
._1_c00226{width:10.815000px;}
._16_c00226{width:12.270000px;}
._0_c00226{width:13.965000px;}
._f_c00226{width:15.462000px;}
._1d_c00226{width:16.971000px;}
._e_c00226{width:18.069000px;}
._c_c00226{width:22.572000px;}
._19_c00226{width:26.304000px;}
._b_c00226{width:32.907000px;}
._1f_c00226{width:34.830000px;}
._d_c00226{width:37.404000px;}
._a_c00226{width:100.590000px;}
._17_c00226{width:240.450000px;}
._20_c00226{width:331.581000px;}
.fc2_c00226{color:transparent;}
.fc1_c00226{color:rgb(128,128,128);}
.fc0_c00226{color:rgb(0,0,0);}
.fs7_c00226{font-size:48.000000px;}
.fs2_c00226{font-size:57.000000px;}
.fs4_c00226{font-size:72.000000px;}
.fs1_c00226{font-size:78.000000px;}
.fs5_c00226{font-size:81.000000px;}
.fs6_c00226{font-size:87.000000px;}
.fs0_c00226{font-size:105.000000px;}
.fs3_c00226{font-size:255.000000px;}
.y0_c00226{bottom:0.000000px;}
.y26_c00226{bottom:3.105000px;}
.y25_c00226{bottom:7.228363px;}
.y24_c00226{bottom:60.300000px;}
.y23_c00226{bottom:84.300000px;}
.y22_c00226{bottom:109.950000px;}
.y21_c00226{bottom:135.000000px;}
.y20_c00226{bottom:159.300000px;}
.y1f_c00226{bottom:184.500000px;}
.y1e_c00226{bottom:208.800000px;}
.y1d_c00226{bottom:233.550000px;}
.y1c_c00226{bottom:258.150000px;}
.y1b_c00226{bottom:282.750000px;}
.y1a_c00226{bottom:306.450000px;}
.y19_c00226{bottom:331.050000px;}
.y18_c00226{bottom:354.750000px;}
.y17_c00226{bottom:379.350000px;}
.y16_c00226{bottom:403.200000px;}
.y15_c00226{bottom:427.200000px;}
.y14_c00226{bottom:451.200000px;}
.y13_c00226{bottom:475.500000px;}
.y12_c00226{bottom:499.500000px;}
.y11_c00226{bottom:523.800000px;}
.y10_c00226{bottom:547.800000px;}
.yf_c00226{bottom:571.950000px;}
.ye_c00226{bottom:596.700000px;}
.yd_c00226{bottom:619.650000px;}
.yc_c00226{bottom:643.950000px;}
.yb_c00226{bottom:668.250000px;}
.ya_c00226{bottom:692.250000px;}
.y9_c00226{bottom:716.850000px;}
.y8_c00226{bottom:740.850000px;}
.y7_c00226{bottom:765.450000px;}
.y6_c00226{bottom:790.350000px;}
.y5_c00226{bottom:814.050000px;}
.y3_c00226{bottom:831.150000px;}
.y4_c00226{bottom:838.650000px;}
.y2_c00226{bottom:887.700000px;}
.y1_c00226{bottom:924.000000px;}
.h7_c00226{height:13.200074px;}
.h8_c00226{height:43.804688px;}
.h5_c00226{height:79.497070px;}
.h3_c00226{height:98.756836px;}
.h2_c00226{height:103.000488px;}
.h6_c00226{height:110.151855px;}
.h4_c00226{height:267.240000px;}
.h0_c00226{height:974.700000px;}
.h1_c00226{height:975.000000px;}
.w2_c00226{width:104.875500px;}
.w0_c00226{width:662.025000px;}
.w1_c00226{width:662.250000px;}
.x0_c00226{left:0.000000px;}
.x3_c00226{left:48.000000px;}
.x8_c00226{left:54.300000px;}
.x5_c00226{left:55.350000px;}
.x6_c00226{left:57.000000px;}
.x7_c00226{left:58.500000px;}
.x4_c00226{left:94.950000px;}
.x1_c00226{left:123.450000px;}
.x2_c00226{left:160.050000px;}
.xa_c00226{left:282.826767px;}
.x9_c00226{left:358.350000px;}
@media print{
.v0_c00226{vertical-align:0.000000pt;}
.v1_c00226{vertical-align:114.133333pt;}
.ls4_c00226{letter-spacing:-5.333333pt;}
.ls2_c00226{letter-spacing:0.000000pt;}
.ls3_c00226{letter-spacing:2.666667pt;}
.ls1_c00226{letter-spacing:21.589333pt;}
.ls0_c00226{letter-spacing:78.760000pt;}
.ws1_c00226{word-spacing:-18.000000pt;}
.ws0_c00226{word-spacing:-0.912000pt;}
.ws2_c00226{word-spacing:0.000000pt;}
._14_c00226{margin-left:-25.344000pt;}
._1e_c00226{margin-left:-22.637333pt;}
._4_c00226{margin-left:-14.466667pt;}
._1b_c00226{margin-left:-12.469333pt;}
._1c_c00226{margin-left:-11.202667pt;}
._1a_c00226{margin-left:-10.152000pt;}
._15_c00226{margin-left:-7.344000pt;}
._12_c00226{margin-left:-5.888000pt;}
._9_c00226{margin-left:-4.946667pt;}
._11_c00226{margin-left:-3.600000pt;}
._13_c00226{margin-left:-1.842667pt;}
._18_c00226{margin-left:-0.922667pt;}
._10_c00226{width:1.333333pt;}
._5_c00226{width:2.520000pt;}
._7_c00226{width:3.640000pt;}
._2_c00226{width:4.946667pt;}
._8_c00226{width:5.973333pt;}
._6_c00226{width:6.906667pt;}
._3_c00226{width:8.586667pt;}
._1_c00226{width:9.613333pt;}
._16_c00226{width:10.906667pt;}
._0_c00226{width:12.413333pt;}
._f_c00226{width:13.744000pt;}
._1d_c00226{width:15.085333pt;}
._e_c00226{width:16.061333pt;}
._c_c00226{width:20.064000pt;}
._19_c00226{width:23.381333pt;}
._b_c00226{width:29.250667pt;}
._1f_c00226{width:30.960000pt;}
._d_c00226{width:33.248000pt;}
._a_c00226{width:89.413333pt;}
._17_c00226{width:213.733333pt;}
._20_c00226{width:294.738667pt;}
.fs7_c00226{font-size:42.666667pt;}
.fs2_c00226{font-size:50.666667pt;}
.fs4_c00226{font-size:64.000000pt;}
.fs1_c00226{font-size:69.333333pt;}
.fs5_c00226{font-size:72.000000pt;}
.fs6_c00226{font-size:77.333333pt;}
.fs0_c00226{font-size:93.333333pt;}
.fs3_c00226{font-size:226.666667pt;}
.y0_c00226{bottom:0.000000pt;}
.y26_c00226{bottom:2.760000pt;}
.y25_c00226{bottom:6.425212pt;}
.y24_c00226{bottom:53.600000pt;}
.y23_c00226{bottom:74.933333pt;}
.y22_c00226{bottom:97.733333pt;}
.y21_c00226{bottom:120.000000pt;}
.y20_c00226{bottom:141.600000pt;}
.y1f_c00226{bottom:164.000000pt;}
.y1e_c00226{bottom:185.600000pt;}
.y1d_c00226{bottom:207.600000pt;}
.y1c_c00226{bottom:229.466667pt;}
.y1b_c00226{bottom:251.333333pt;}
.y1a_c00226{bottom:272.400000pt;}
.y19_c00226{bottom:294.266667pt;}
.y18_c00226{bottom:315.333333pt;}
.y17_c00226{bottom:337.200000pt;}
.y16_c00226{bottom:358.400000pt;}
.y15_c00226{bottom:379.733333pt;}
.y14_c00226{bottom:401.066667pt;}
.y13_c00226{bottom:422.666667pt;}
.y12_c00226{bottom:444.000000pt;}
.y11_c00226{bottom:465.600000pt;}
.y10_c00226{bottom:486.933333pt;}
.yf_c00226{bottom:508.400000pt;}
.ye_c00226{bottom:530.400000pt;}
.yd_c00226{bottom:550.800000pt;}
.yc_c00226{bottom:572.400000pt;}
.yb_c00226{bottom:594.000000pt;}
.ya_c00226{bottom:615.333333pt;}
.y9_c00226{bottom:637.200000pt;}
.y8_c00226{bottom:658.533333pt;}
.y7_c00226{bottom:680.400000pt;}
.y6_c00226{bottom:702.533333pt;}
.y5_c00226{bottom:723.600000pt;}
.y3_c00226{bottom:738.800000pt;}
.y4_c00226{bottom:745.466667pt;}
.y2_c00226{bottom:789.066667pt;}
.y1_c00226{bottom:821.333333pt;}
.h7_c00226{height:11.733399pt;}
.h8_c00226{height:38.937500pt;}
.h5_c00226{height:70.664062pt;}
.h3_c00226{height:87.783854pt;}
.h2_c00226{height:91.555990pt;}
.h6_c00226{height:97.912760pt;}
.h4_c00226{height:237.546667pt;}
.h0_c00226{height:866.400000pt;}
.h1_c00226{height:866.666667pt;}
.w2_c00226{width:93.222667pt;}
.w0_c00226{width:588.466667pt;}
.w1_c00226{width:588.666667pt;}
.x0_c00226{left:0.000000pt;}
.x3_c00226{left:42.666667pt;}
.x8_c00226{left:48.266667pt;}
.x5_c00226{left:49.200000pt;}
.x6_c00226{left:50.666667pt;}
.x7_c00226{left:52.000000pt;}
.x4_c00226{left:84.400000pt;}
.x1_c00226{left:109.733333pt;}
.x2_c00226{left:142.266667pt;}
.xa_c00226{left:251.401571pt;}
.x9_c00226{left:318.533333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e00a62f752ebda067b579a06.woff2')format("woff");}.ff1_c00227{font-family:ff1_c00227;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00227;src:url('chunks/assets/font_752ee07373581b3bc06cf494.woff2')format("woff");}.ff2_c00227{font-family:ff2_c00227;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00227;src:url('chunks/assets/font_4a9cd8f6f4b598b83b7dc54f.woff2')format("woff");}.ff3_c00227{font-family:ff3_c00227;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00227;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff4_c00227{font-family:ff4_c00227;line-height:1.219238;font-style: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;}
.ls1_c00227{letter-spacing:0.000000px;}
.ls0_c00227{letter-spacing:4.416000px;}
.sc__c00227{text-shadow:none;}
.sc0_c00227{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00227{-webkit-text-stroke:0px transparent;}
.sc0_c00227{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00227{word-spacing:-67.686000px;}
.ws2_c00227{word-spacing:-20.250000px;}
.ws0_c00227{word-spacing:-17.352000px;}
.ws3_c00227{word-spacing:0.000000px;}
._4_c00227{margin-left:-26.100000px;}
._16_c00227{margin-left:-22.716000px;}
._19_c00227{margin-left:-17.658000px;}
._2_c00227{margin-left:-11.097000px;}
._5_c00227{margin-left:-8.715000px;}
._14_c00227{margin-left:-6.966000px;}
._3_c00227{margin-left:-5.832000px;}
._17_c00227{margin-left:-4.770000px;}
._11_c00227{margin-left:-3.663000px;}
._0_c00227{margin-left:-2.520000px;}
._9_c00227{margin-left:-1.116000px;}
._c_c00227{width:1.602000px;}
._8_c00227{width:2.754000px;}
._7_c00227{width:4.293000px;}
._a_c00227{width:5.544000px;}
._6_c00227{width:6.561000px;}
._12_c00227{width:7.563000px;}
._f_c00227{width:9.000000px;}
._15_c00227{width:10.182000px;}
._b_c00227{width:11.400000px;}
._18_c00227{width:13.194000px;}
._d_c00227{width:14.196000px;}
._1a_c00227{width:15.234000px;}
._10_c00227{width:16.461000px;}
._1b_c00227{width:17.607000px;}
._13_c00227{width:27.918000px;}
._e_c00227{width:35.982000px;}
._1_c00227{width:43.950000px;}
.fc2_c00227{color:transparent;}
.fc1_c00227{color:rgb(128,128,128);}
.fc0_c00227{color:rgb(0,0,0);}
.fs3_c00227{font-size:48.000000px;}
.fs0_c00227{font-size:72.000000px;}
.fs1_c00227{font-size:81.000000px;}
.fs2_c00227{font-size:87.000000px;}
.y0_c00227{bottom:0.000000px;}
.y27_c00227{bottom:3.105000px;}
.y26_c00227{bottom:7.228369px;}
.y25_c00227{bottom:69.570000px;}
.y24_c00227{bottom:93.870000px;}
.y23_c00227{bottom:119.520000px;}
.y22_c00227{bottom:143.820000px;}
.y21_c00227{bottom:168.420000px;}
.y20_c00227{bottom:193.320000px;}
.y1f_c00227{bottom:217.770000px;}
.y1e_c00227{bottom:242.370000px;}
.y1d_c00227{bottom:266.970000px;}
.y1c_c00227{bottom:291.570000px;}
.y1b_c00227{bottom:315.870000px;}
.y1a_c00227{bottom:340.170000px;}
.y19_c00227{bottom:365.070000px;}
.y18_c00227{bottom:389.370000px;}
.y17_c00227{bottom:413.370000px;}
.y16_c00227{bottom:437.970000px;}
.y15_c00227{bottom:461.970000px;}
.y14_c00227{bottom:486.270000px;}
.y13_c00227{bottom:510.570000px;}
.y12_c00227{bottom:534.270000px;}
.y11_c00227{bottom:558.870000px;}
.y10_c00227{bottom:582.870000px;}
.yf_c00227{bottom:607.170000px;}
.ye_c00227{bottom:631.770000px;}
.yd_c00227{bottom:655.770000px;}
.yc_c00227{bottom:680.070000px;}
.yb_c00227{bottom:704.970000px;}
.ya_c00227{bottom:728.670000px;}
.y2_c00227{bottom:736.470000px;}
.y9_c00227{bottom:753.270000px;}
.y1_c00227{bottom:758.970000px;}
.y8_c00227{bottom:776.970000px;}
.y7_c00227{bottom:801.270000px;}
.y6_c00227{bottom:825.870000px;}
.y5_c00227{bottom:849.720000px;}
.y4_c00227{bottom:873.420000px;}
.y3_c00227{bottom:898.020000px;}
.h6_c00227{height:13.200073px;}
.h7_c00227{height:43.804688px;}
.h4_c00227{height:79.497070px;}
.h2_c00227{height:84.269531px;}
.h3_c00227{height:91.176000px;}
.h5_c00227{height:91.776000px;}
.h1_c00227{height:986.250000px;}
.h0_c00227{height:986.550000px;}
.w1_c00227{width:104.875500px;}
.w0_c00227{width:661.500000px;}
.x0_c00227{left:0.000000px;}
.x1_c00227{left:21.600000px;}
.x2_c00227{left:116.100000px;}
.x3_c00227{left:118.050000px;}
.x4_c00227{left:119.400000px;}
.x5_c00227{left:122.400000px;}
.x6_c00227{left:124.200000px;}
.x8_c00227{left:126.450000px;}
.x7_c00227{left:127.800000px;}
.x9_c00227{left:129.150000px;}
.xa_c00227{left:130.500000px;}
.xc_c00227{left:282.564240px;}
.xb_c00227{left:568.050000px;}
@media print{
.v0_c00227{vertical-align:0.000000pt;}
.ls1_c00227{letter-spacing:0.000000pt;}
.ls0_c00227{letter-spacing:3.925333pt;}
.ws1_c00227{word-spacing:-60.165333pt;}
.ws2_c00227{word-spacing:-18.000000pt;}
.ws0_c00227{word-spacing:-15.424000pt;}
.ws3_c00227{word-spacing:0.000000pt;}
._4_c00227{margin-left:-23.200000pt;}
._16_c00227{margin-left:-20.192000pt;}
._19_c00227{margin-left:-15.696000pt;}
._2_c00227{margin-left:-9.864000pt;}
._5_c00227{margin-left:-7.746667pt;}
._14_c00227{margin-left:-6.192000pt;}
._3_c00227{margin-left:-5.184000pt;}
._17_c00227{margin-left:-4.240000pt;}
._11_c00227{margin-left:-3.256000pt;}
._0_c00227{margin-left:-2.240000pt;}
._9_c00227{margin-left:-0.992000pt;}
._c_c00227{width:1.424000pt;}
._8_c00227{width:2.448000pt;}
._7_c00227{width:3.816000pt;}
._a_c00227{width:4.928000pt;}
._6_c00227{width:5.832000pt;}
._12_c00227{width:6.722667pt;}
._f_c00227{width:8.000000pt;}
._15_c00227{width:9.050667pt;}
._b_c00227{width:10.133333pt;}
._18_c00227{width:11.728000pt;}
._d_c00227{width:12.618667pt;}
._1a_c00227{width:13.541333pt;}
._10_c00227{width:14.632000pt;}
._1b_c00227{width:15.650667pt;}
._13_c00227{width:24.816000pt;}
._e_c00227{width:31.984000pt;}
._1_c00227{width:39.066667pt;}
.fs3_c00227{font-size:42.666667pt;}
.fs0_c00227{font-size:64.000000pt;}
.fs1_c00227{font-size:72.000000pt;}
.fs2_c00227{font-size:77.333333pt;}
.y0_c00227{bottom:0.000000pt;}
.y27_c00227{bottom:2.760000pt;}
.y26_c00227{bottom:6.425217pt;}
.y25_c00227{bottom:61.840000pt;}
.y24_c00227{bottom:83.440000pt;}
.y23_c00227{bottom:106.240000pt;}
.y22_c00227{bottom:127.840000pt;}
.y21_c00227{bottom:149.706667pt;}
.y20_c00227{bottom:171.840000pt;}
.y1f_c00227{bottom:193.573333pt;}
.y1e_c00227{bottom:215.440000pt;}
.y1d_c00227{bottom:237.306667pt;}
.y1c_c00227{bottom:259.173333pt;}
.y1b_c00227{bottom:280.773333pt;}
.y1a_c00227{bottom:302.373333pt;}
.y19_c00227{bottom:324.506667pt;}
.y18_c00227{bottom:346.106667pt;}
.y17_c00227{bottom:367.440000pt;}
.y16_c00227{bottom:389.306667pt;}
.y15_c00227{bottom:410.640000pt;}
.y14_c00227{bottom:432.240000pt;}
.y13_c00227{bottom:453.840000pt;}
.y12_c00227{bottom:474.906667pt;}
.y11_c00227{bottom:496.773333pt;}
.y10_c00227{bottom:518.106667pt;}
.yf_c00227{bottom:539.706667pt;}
.ye_c00227{bottom:561.573333pt;}
.yd_c00227{bottom:582.906667pt;}
.yc_c00227{bottom:604.506667pt;}
.yb_c00227{bottom:626.640000pt;}
.ya_c00227{bottom:647.706667pt;}
.y2_c00227{bottom:654.640000pt;}
.y9_c00227{bottom:669.573333pt;}
.y1_c00227{bottom:674.640000pt;}
.y8_c00227{bottom:690.640000pt;}
.y7_c00227{bottom:712.240000pt;}
.y6_c00227{bottom:734.106667pt;}
.y5_c00227{bottom:755.306667pt;}
.y4_c00227{bottom:776.373333pt;}
.y3_c00227{bottom:798.240000pt;}
.h6_c00227{height:11.733399pt;}
.h7_c00227{height:38.937500pt;}
.h4_c00227{height:70.664062pt;}
.h2_c00227{height:74.906250pt;}
.h3_c00227{height:81.045333pt;}
.h5_c00227{height:81.578667pt;}
.h1_c00227{height:876.666667pt;}
.h0_c00227{height:876.933333pt;}
.w1_c00227{width:93.222667pt;}
.w0_c00227{width:588.000000pt;}
.x0_c00227{left:0.000000pt;}
.x1_c00227{left:19.200000pt;}
.x2_c00227{left:103.200000pt;}
.x3_c00227{left:104.933333pt;}
.x4_c00227{left:106.133333pt;}
.x5_c00227{left:108.800000pt;}
.x6_c00227{left:110.400000pt;}
.x8_c00227{left:112.400000pt;}
.x7_c00227{left:113.600000pt;}
.x9_c00227{left:114.800000pt;}
.xa_c00227{left:116.000000pt;}
.xc_c00227{left:251.168213pt;}
.xb_c00227{left:504.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_fc2f57b5e65d1b567822725f.woff2')format("woff");}.ff1_c00228{font-family:ff1_c00228;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00228;src:url('chunks/assets/font_03b83cf50afe447d7a73b33c.woff2')format("woff");}.ff2_c00228{font-family:ff2_c00228;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00228;src:url('chunks/assets/font_b7a9e61134358f5ed639de1c.woff2')format("woff");}.ff3_c00228{font-family:ff3_c00228;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00228;src:url('chunks/assets/font_90369dcc70b17237a382e823.woff2')format("woff");}.ff4_c00228{font-family:ff4_c00228;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00228;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c00228{font-family:ff5_c00228;line-height:1.219238;font-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_c00228{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,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;}
.ls1_c00228{letter-spacing:0.000000px;}
.ls0_c00228{letter-spacing:233.802000px;}
.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:-31.812000px;}
.ws3_c00228{word-spacing:-27.000000px;}
.ws2_c00228{word-spacing:-20.250000px;}
.ws1_c00228{word-spacing:-17.352000px;}
.ws4_c00228{word-spacing:0.000000px;}
._18_c00228{margin-left:-24.288000px;}
._13_c00228{margin-left:-21.789000px;}
._17_c00228{margin-left:-20.724000px;}
._14_c00228{margin-left:-12.285000px;}
._3_c00228{margin-left:-10.197000px;}
._15_c00228{margin-left:-8.424000px;}
._10_c00228{margin-left:-7.401000px;}
._0_c00228{margin-left:-5.544000px;}
._e_c00228{margin-left:-4.518000px;}
._2_c00228{margin-left:-3.168000px;}
._5_c00228{margin-left:-1.188000px;}
._4_c00228{width:1.584000px;}
._1_c00228{width:3.465000px;}
._7_c00228{width:4.959000px;}
._9_c00228{width:6.174000px;}
._8_c00228{width:7.308000px;}
._c_c00228{width:8.928000px;}
._b_c00228{width:10.881000px;}
._a_c00228{width:12.042000px;}
._12_c00228{width:14.307000px;}
._11_c00228{width:15.810000px;}
._f_c00228{width:16.950000px;}
._d_c00228{width:18.948000px;}
._6_c00228{width:97.812000px;}
._16_c00228{width:287.124000px;}
.fc2_c00228{color:transparent;}
.fc1_c00228{color:rgb(128,128,128);}
.fc0_c00228{color:rgb(0,0,0);}
.fs7_c00228{font-size:48.000000px;}
.fs4_c00228{font-size:57.000000px;}
.fs3_c00228{font-size:72.000000px;}
.fs5_c00228{font-size:78.000000px;}
.fs2_c00228{font-size:81.000000px;}
.fs0_c00228{font-size:99.000000px;}
.fs6_c00228{font-size:108.000000px;}
.fs1_c00228{font-size:132.000000px;}
.y0_c00228{bottom:0.000000px;}
.y26_c00228{bottom:3.105000px;}
.y25_c00228{bottom:7.228355px;}
.y24_c00228{bottom:65.085000px;}
.y23_c00228{bottom:90.735000px;}
.y22_c00228{bottom:115.635000px;}
.y21_c00228{bottom:140.385000px;}
.y20_c00228{bottom:164.385000px;}
.y1f_c00228{bottom:189.285000px;}
.y1e_c00228{bottom:213.585000px;}
.y1d_c00228{bottom:237.585000px;}
.y1c_c00228{bottom:262.185000px;}
.y1b_c00228{bottom:286.185000px;}
.y1a_c00228{bottom:309.735000px;}
.y19_c00228{bottom:333.735000px;}
.y18_c00228{bottom:358.035000px;}
.y17_c00228{bottom:381.735000px;}
.y16_c00228{bottom:405.885000px;}
.y15_c00228{bottom:429.885000px;}
.y14_c00228{bottom:453.585000px;}
.y13_c00228{bottom:477.585000px;}
.y12_c00228{bottom:502.185000px;}
.y11_c00228{bottom:526.035000px;}
.y10_c00228{bottom:549.735000px;}
.yf_c00228{bottom:573.735000px;}
.ye_c00228{bottom:597.285000px;}
.yd_c00228{bottom:621.285000px;}
.yc_c00228{bottom:645.285000px;}
.yb_c00228{bottom:668.835000px;}
.ya_c00228{bottom:692.235000px;}
.y9_c00228{bottom:717.135000px;}
.y8_c00228{bottom:741.435000px;}
.y7_c00228{bottom:766.035000px;}
.y6_c00228{bottom:790.335000px;}
.y5_c00228{bottom:814.035000px;}
.y4_c00228{bottom:838.035000px;}
.y3_c00228{bottom:862.335000px;}
.y2_c00228{bottom:886.485000px;}
.y1_c00228{bottom:920.985000px;}
.h8_c00228{height:13.200074px;}
.h9_c00228{height:43.804688px;}
.h6_c00228{height:72.168457px;}
.h3_c00228{height:79.497070px;}
.h4_c00228{height:84.269531px;}
.h5_c00228{height:98.756836px;}
.h7_c00228{height:108.843750px;}
.h2_c00228{height:167.126953px;}
.h0_c00228{height:977.925000px;}
.h1_c00228{height:978.000000px;}
.w2_c00228{width:104.875500px;}
.w0_c00228{width:664.200000px;}
.w1_c00228{width:664.500000px;}
.x0_c00228{left:0.000000px;}
.x2_c00228{left:44.850000px;}
.x3_c00228{left:45.900000px;}
.x4_c00228{left:47.550000px;}
.xa_c00228{left:48.600000px;}
.xb_c00228{left:70.500000px;}
.x5_c00228{left:72.450000px;}
.xc_c00228{left:73.500000px;}
.x1_c00228{left:102.300000px;}
.x8_c00228{left:168.300000px;}
.x9_c00228{left:187.650000px;}
.xd_c00228{left:204.900000px;}
.x13_c00228{left:283.914230px;}
.x6_c00228{left:308.700000px;}
.x7_c00228{left:323.550000px;}
.xe_c00228{left:327.600000px;}
.xf_c00228{left:363.150000px;}
.x12_c00228{left:384.750000px;}
.x10_c00228{left:401.550000px;}
.x11_c00228{left:426.300000px;}
@media print{
.v0_c00228{vertical-align:0.000000pt;}
.ls1_c00228{letter-spacing:0.000000pt;}
.ls0_c00228{letter-spacing:207.824000pt;}
.ws0_c00228{word-spacing:-28.277333pt;}
.ws3_c00228{word-spacing:-24.000000pt;}
.ws2_c00228{word-spacing:-18.000000pt;}
.ws1_c00228{word-spacing:-15.424000pt;}
.ws4_c00228{word-spacing:0.000000pt;}
._18_c00228{margin-left:-21.589333pt;}
._13_c00228{margin-left:-19.368000pt;}
._17_c00228{margin-left:-18.421333pt;}
._14_c00228{margin-left:-10.920000pt;}
._3_c00228{margin-left:-9.064000pt;}
._15_c00228{margin-left:-7.488000pt;}
._10_c00228{margin-left:-6.578667pt;}
._0_c00228{margin-left:-4.928000pt;}
._e_c00228{margin-left:-4.016000pt;}
._2_c00228{margin-left:-2.816000pt;}
._5_c00228{margin-left:-1.056000pt;}
._4_c00228{width:1.408000pt;}
._1_c00228{width:3.080000pt;}
._7_c00228{width:4.408000pt;}
._9_c00228{width:5.488000pt;}
._8_c00228{width:6.496000pt;}
._c_c00228{width:7.936000pt;}
._b_c00228{width:9.672000pt;}
._a_c00228{width:10.704000pt;}
._12_c00228{width:12.717333pt;}
._11_c00228{width:14.053333pt;}
._f_c00228{width:15.066667pt;}
._d_c00228{width:16.842667pt;}
._6_c00228{width:86.944000pt;}
._16_c00228{width:255.221333pt;}
.fs7_c00228{font-size:42.666667pt;}
.fs4_c00228{font-size:50.666667pt;}
.fs3_c00228{font-size:64.000000pt;}
.fs5_c00228{font-size:69.333333pt;}
.fs2_c00228{font-size:72.000000pt;}
.fs0_c00228{font-size:88.000000pt;}
.fs6_c00228{font-size:96.000000pt;}
.fs1_c00228{font-size:117.333333pt;}
.y0_c00228{bottom:0.000000pt;}
.y26_c00228{bottom:2.760000pt;}
.y25_c00228{bottom:6.425204pt;}
.y24_c00228{bottom:57.853333pt;}
.y23_c00228{bottom:80.653333pt;}
.y22_c00228{bottom:102.786667pt;}
.y21_c00228{bottom:124.786667pt;}
.y20_c00228{bottom:146.120000pt;}
.y1f_c00228{bottom:168.253333pt;}
.y1e_c00228{bottom:189.853333pt;}
.y1d_c00228{bottom:211.186667pt;}
.y1c_c00228{bottom:233.053333pt;}
.y1b_c00228{bottom:254.386667pt;}
.y1a_c00228{bottom:275.320000pt;}
.y19_c00228{bottom:296.653333pt;}
.y18_c00228{bottom:318.253333pt;}
.y17_c00228{bottom:339.320000pt;}
.y16_c00228{bottom:360.786667pt;}
.y15_c00228{bottom:382.120000pt;}
.y14_c00228{bottom:403.186667pt;}
.y13_c00228{bottom:424.520000pt;}
.y12_c00228{bottom:446.386667pt;}
.y11_c00228{bottom:467.586667pt;}
.y10_c00228{bottom:488.653333pt;}
.yf_c00228{bottom:509.986667pt;}
.ye_c00228{bottom:530.920000pt;}
.yd_c00228{bottom:552.253333pt;}
.yc_c00228{bottom:573.586667pt;}
.yb_c00228{bottom:594.520000pt;}
.ya_c00228{bottom:615.320000pt;}
.y9_c00228{bottom:637.453333pt;}
.y8_c00228{bottom:659.053333pt;}
.y7_c00228{bottom:680.920000pt;}
.y6_c00228{bottom:702.520000pt;}
.y5_c00228{bottom:723.586667pt;}
.y4_c00228{bottom:744.920000pt;}
.y3_c00228{bottom:766.520000pt;}
.y2_c00228{bottom:787.986667pt;}
.y1_c00228{bottom:818.653333pt;}
.h8_c00228{height:11.733399pt;}
.h9_c00228{height:38.937500pt;}
.h6_c00228{height:64.149740pt;}
.h3_c00228{height:70.664062pt;}
.h4_c00228{height:74.906250pt;}
.h5_c00228{height:87.783854pt;}
.h7_c00228{height:96.750000pt;}
.h2_c00228{height:148.557292pt;}
.h0_c00228{height:869.266667pt;}
.h1_c00228{height:869.333333pt;}
.w2_c00228{width:93.222667pt;}
.w0_c00228{width:590.400000pt;}
.w1_c00228{width:590.666667pt;}
.x0_c00228{left:0.000000pt;}
.x2_c00228{left:39.866667pt;}
.x3_c00228{left:40.800000pt;}
.x4_c00228{left:42.266667pt;}
.xa_c00228{left:43.200000pt;}
.xb_c00228{left:62.666667pt;}
.x5_c00228{left:64.400000pt;}
.xc_c00228{left:65.333333pt;}
.x1_c00228{left:90.933333pt;}
.x8_c00228{left:149.600000pt;}
.x9_c00228{left:166.800000pt;}
.xd_c00228{left:182.133333pt;}
.x13_c00228{left:252.368205pt;}
.x6_c00228{left:274.400000pt;}
.x7_c00228{left:287.600000pt;}
.xe_c00228{left:291.200000pt;}
.xf_c00228{left:322.800000pt;}
.x12_c00228{left:342.000000pt;}
.x10_c00228{left:356.933333pt;}
.x11_c00228{left:378.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_652da694cd76eb2a036253f1.woff2')format("woff");}.ff1_c00229{font-family:ff1_c00229;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00229;src:url('chunks/assets/font_09f84514fb6cec8fb87ff9b4.woff2')format("woff");}.ff2_c00229{font-family:ff2_c00229;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00229;src:url('chunks/assets/font_e406fe2d23c7e688db21e897.woff2')format("woff");}.ff3_c00229{font-family:ff3_c00229;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00229;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff4_c00229{font-family:ff4_c00229;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00229{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00229{vertical-align:0.000000px;}
.ls0_c00229{letter-spacing:0.000000px;}
.sc__c00229{text-shadow:none;}
.sc0_c00229{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00229{-webkit-text-stroke:0px transparent;}
.sc0_c00229{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00229{word-spacing:-20.250000px;}
.ws1_c00229{word-spacing:0.000000px;}
._f_c00229{margin-left:-26.640000px;}
._15_c00229{margin-left:-18.711000px;}
._18_c00229{margin-left:-14.418000px;}
._14_c00229{margin-left:-12.798000px;}
._13_c00229{margin-left:-10.368000px;}
._8_c00229{margin-left:-8.586000px;}
._19_c00229{margin-left:-7.470000px;}
._2_c00229{margin-left:-6.156000px;}
._4_c00229{margin-left:-5.022000px;}
._5_c00229{margin-left:-3.807000px;}
._b_c00229{margin-left:-2.106000px;}
._9_c00229{margin-left:-1.053000px;}
._6_c00229{width:1.620000px;}
._3_c00229{width:2.673000px;}
._7_c00229{width:3.726000px;}
._0_c00229{width:4.860000px;}
._1_c00229{width:5.913000px;}
._a_c00229{width:7.776000px;}
._c_c00229{width:8.910000px;}
._e_c00229{width:10.368000px;}
._12_c00229{width:11.907000px;}
._d_c00229{width:13.041000px;}
._11_c00229{width:15.960000px;}
._10_c00229{width:18.159000px;}
._16_c00229{width:25.920000px;}
._17_c00229{width:27.216000px;}
.fc2_c00229{color:transparent;}
.fc1_c00229{color:rgb(128,128,128);}
.fc0_c00229{color:rgb(0,0,0);}
.fs4_c00229{font-size:48.000000px;}
.fs1_c00229{font-size:60.000000px;}
.fs2_c00229{font-size:78.000000px;}
.fs0_c00229{font-size:81.000000px;}
.fs3_c00229{font-size:84.000000px;}
.y0_c00229{bottom:0.000000px;}
.y22_c00229{bottom:3.105000px;}
.y21_c00229{bottom:7.228357px;}
.y20_c00229{bottom:77.730000px;}
.y1f_c00229{bottom:98.580000px;}
.y1e_c00229{bottom:123.930000px;}
.y1d_c00229{bottom:149.130000px;}
.y1c_c00229{bottom:172.830000px;}
.y1b_c00229{bottom:198.780000px;}
.y1a_c00229{bottom:223.830000px;}
.y19_c00229{bottom:248.430000px;}
.y18_c00229{bottom:271.980000px;}
.y17_c00229{bottom:296.730000px;}
.y16_c00229{bottom:321.930000px;}
.y15_c00229{bottom:376.380000px;}
.y14_c00229{bottom:405.630000px;}
.y13_c00229{bottom:436.680000px;}
.y12_c00229{bottom:489.330000px;}
.y11_c00229{bottom:513.630000px;}
.y10_c00229{bottom:537.630000px;}
.yf_c00229{bottom:562.680000px;}
.ye_c00229{bottom:585.930000px;}
.yd_c00229{bottom:610.830000px;}
.yc_c00229{bottom:634.530000px;}
.yb_c00229{bottom:658.530000px;}
.ya_c00229{bottom:682.830000px;}
.y9_c00229{bottom:706.830000px;}
.y8_c00229{bottom:731.430000px;}
.y7_c00229{bottom:755.430000px;}
.y6_c00229{bottom:779.580000px;}
.y5_c00229{bottom:804.030000px;}
.y4_c00229{bottom:827.880000px;}
.y3_c00229{bottom:852.480000px;}
.y2_c00229{bottom:876.480000px;}
.y1_c00229{bottom:899.880000px;}
.h5_c00229{height:13.200074px;}
.h6_c00229{height:43.804688px;}
.h1_c00229{height:79.497070px;}
.h4_c00229{height:82.400391px;}
.h3_c00229{height:82.441406px;}
.h2_c00229{height:98.756836px;}
.h0_c00229{height:995.250000px;}
.w2_c00229{width:104.875500px;}
.w0_c00229{width:667.425000px;}
.w1_c00229{width:667.500000px;}
.x0_c00229{left:0.000000px;}
.x7_c00229{left:120.750000px;}
.x6_c00229{left:123.450000px;}
.x8_c00229{left:125.550000px;}
.xf_c00229{left:126.600000px;}
.x4_c00229{left:128.250000px;}
.xe_c00229{left:129.900000px;}
.x9_c00229{left:132.600000px;}
.x5_c00229{left:134.250000px;}
.x3_c00229{left:135.750000px;}
.x1_c00229{left:136.950000px;}
.x2_c00229{left:161.700000px;}
.xa_c00229{left:194.100000px;}
.xc_c00229{left:260.550000px;}
.xd_c00229{left:261.600000px;}
.x11_c00229{left:285.526749px;}
.xb_c00229{left:304.350000px;}
.x10_c00229{left:560.850000px;}
@media print{
.v0_c00229{vertical-align:0.000000pt;}
.ls0_c00229{letter-spacing:0.000000pt;}
.ws0_c00229{word-spacing:-18.000000pt;}
.ws1_c00229{word-spacing:0.000000pt;}
._f_c00229{margin-left:-23.680000pt;}
._15_c00229{margin-left:-16.632000pt;}
._18_c00229{margin-left:-12.816000pt;}
._14_c00229{margin-left:-11.376000pt;}
._13_c00229{margin-left:-9.216000pt;}
._8_c00229{margin-left:-7.632000pt;}
._19_c00229{margin-left:-6.640000pt;}
._2_c00229{margin-left:-5.472000pt;}
._4_c00229{margin-left:-4.464000pt;}
._5_c00229{margin-left:-3.384000pt;}
._b_c00229{margin-left:-1.872000pt;}
._9_c00229{margin-left:-0.936000pt;}
._6_c00229{width:1.440000pt;}
._3_c00229{width:2.376000pt;}
._7_c00229{width:3.312000pt;}
._0_c00229{width:4.320000pt;}
._1_c00229{width:5.256000pt;}
._a_c00229{width:6.912000pt;}
._c_c00229{width:7.920000pt;}
._e_c00229{width:9.216000pt;}
._12_c00229{width:10.584000pt;}
._d_c00229{width:11.592000pt;}
._11_c00229{width:14.186667pt;}
._10_c00229{width:16.141333pt;}
._16_c00229{width:23.040000pt;}
._17_c00229{width:24.192000pt;}
.fs4_c00229{font-size:42.666667pt;}
.fs1_c00229{font-size:53.333333pt;}
.fs2_c00229{font-size:69.333333pt;}
.fs0_c00229{font-size:72.000000pt;}
.fs3_c00229{font-size:74.666667pt;}
.y0_c00229{bottom:0.000000pt;}
.y22_c00229{bottom:2.760000pt;}
.y21_c00229{bottom:6.425206pt;}
.y20_c00229{bottom:69.093333pt;}
.y1f_c00229{bottom:87.626667pt;}
.y1e_c00229{bottom:110.160000pt;}
.y1d_c00229{bottom:132.560000pt;}
.y1c_c00229{bottom:153.626667pt;}
.y1b_c00229{bottom:176.693333pt;}
.y1a_c00229{bottom:198.960000pt;}
.y19_c00229{bottom:220.826667pt;}
.y18_c00229{bottom:241.760000pt;}
.y17_c00229{bottom:263.760000pt;}
.y16_c00229{bottom:286.160000pt;}
.y15_c00229{bottom:334.560000pt;}
.y14_c00229{bottom:360.560000pt;}
.y13_c00229{bottom:388.160000pt;}
.y12_c00229{bottom:434.960000pt;}
.y11_c00229{bottom:456.560000pt;}
.y10_c00229{bottom:477.893333pt;}
.yf_c00229{bottom:500.160000pt;}
.ye_c00229{bottom:520.826667pt;}
.yd_c00229{bottom:542.960000pt;}
.yc_c00229{bottom:564.026667pt;}
.yb_c00229{bottom:585.360000pt;}
.ya_c00229{bottom:606.960000pt;}
.y9_c00229{bottom:628.293333pt;}
.y8_c00229{bottom:650.160000pt;}
.y7_c00229{bottom:671.493333pt;}
.y6_c00229{bottom:692.960000pt;}
.y5_c00229{bottom:714.693333pt;}
.y4_c00229{bottom:735.893333pt;}
.y3_c00229{bottom:757.760000pt;}
.y2_c00229{bottom:779.093333pt;}
.y1_c00229{bottom:799.893333pt;}
.h5_c00229{height:11.733399pt;}
.h6_c00229{height:38.937500pt;}
.h1_c00229{height:70.664062pt;}
.h4_c00229{height:73.244792pt;}
.h3_c00229{height:73.281250pt;}
.h2_c00229{height:87.783854pt;}
.h0_c00229{height:884.666667pt;}
.w2_c00229{width:93.222667pt;}
.w0_c00229{width:593.266667pt;}
.w1_c00229{width:593.333333pt;}
.x0_c00229{left:0.000000pt;}
.x7_c00229{left:107.333333pt;}
.x6_c00229{left:109.733333pt;}
.x8_c00229{left:111.600000pt;}
.xf_c00229{left:112.533333pt;}
.x4_c00229{left:114.000000pt;}
.xe_c00229{left:115.466667pt;}
.x9_c00229{left:117.866667pt;}
.x5_c00229{left:119.333333pt;}
.x3_c00229{left:120.666667pt;}
.x1_c00229{left:121.733333pt;}
.x2_c00229{left:143.733333pt;}
.xa_c00229{left:172.533333pt;}
.xc_c00229{left:231.600000pt;}
.xd_c00229{left:232.533333pt;}
.x11_c00229{left:253.801554pt;}
.xb_c00229{left:270.533333pt;}
.x10_c00229{left:498.533333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ce4b786c7591dc9d7ceeb096.woff2')format("woff");}.ff1_c00230{font-family:ff1_c00230;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00230;src:url('chunks/assets/font_2547d4dd7dd6703c9222a09b.woff2')format("woff");}.ff2_c00230{font-family:ff2_c00230;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00230;src:url('chunks/assets/font_50c8450848d9180adbdad8a2.woff2')format("woff");}.ff3_c00230{font-family:ff3_c00230;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00230;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff4_c00230{font-family:ff4_c00230;line-height:1.219238;font-style: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;}
.ls0_c00230{letter-spacing:0.000000px;}
.sc__c00230{text-shadow:none;}
.sc0_c00230{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00230{-webkit-text-stroke:0px transparent;}
.sc0_c00230{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00230{word-spacing:-59.184000px;}
.ws1_c00230{word-spacing:0.000000px;}
._19_c00230{margin-left:-38.070000px;}
._1d_c00230{margin-left:-29.079000px;}
._13_c00230{margin-left:-13.851000px;}
._11_c00230{margin-left:-11.178000px;}
._7_c00230{margin-left:-9.477000px;}
._17_c00230{margin-left:-8.100000px;}
._e_c00230{margin-left:-6.723000px;}
._5_c00230{margin-left:-5.346000px;}
._4_c00230{margin-left:-4.050000px;}
._1_c00230{margin-left:-2.511000px;}
._8_c00230{margin-left:-1.296000px;}
._6_c00230{width:1.053000px;}
._2_c00230{width:2.349000px;}
._0_c00230{width:4.212000px;}
._9_c00230{width:5.346000px;}
._3_c00230{width:6.480000px;}
._a_c00230{width:7.776000px;}
._d_c00230{width:9.153000px;}
._b_c00230{width:10.449000px;}
._10_c00230{width:11.583000px;}
._f_c00230{width:13.203000px;}
._c_c00230{width:14.256000px;}
._18_c00230{width:15.309000px;}
._1b_c00230{width:17.820000px;}
._12_c00230{width:22.761000px;}
._15_c00230{width:25.539000px;}
._16_c00230{width:29.703000px;}
._14_c00230{width:32.967000px;}
._1e_c00230{width:35.583000px;}
._1a_c00230{width:64.071000px;}
._1c_c00230{width:109.269000px;}
._1f_c00230{width:376.698000px;}
.fc2_c00230{color:transparent;}
.fc1_c00230{color:rgb(128,128,128);}
.fc0_c00230{color:rgb(0,0,0);}
.fs3_c00230{font-size:48.000000px;}
.fs1_c00230{font-size:72.000000px;}
.fs2_c00230{font-size:78.000000px;}
.fs0_c00230{font-size:81.000000px;}
.y0_c00230{bottom:0.000000px;}
.y25_c00230{bottom:3.105000px;}
.y24_c00230{bottom:7.228371px;}
.y23_c00230{bottom:73.665000px;}
.y22_c00230{bottom:98.265000px;}
.y21_c00230{bottom:123.315000px;}
.y20_c00230{bottom:148.815000px;}
.y1f_c00230{bottom:173.265000px;}
.y1e_c00230{bottom:197.565000px;}
.y1d_c00230{bottom:222.165000px;}
.y1c_c00230{bottom:246.465000px;}
.y1b_c00230{bottom:271.065000px;}
.y1a_c00230{bottom:295.365000px;}
.y19_c00230{bottom:319.365000px;}
.y18_c00230{bottom:342.915000px;}
.y17_c00230{bottom:366.915000px;}
.y16_c00230{bottom:390.915000px;}
.y15_c00230{bottom:415.815000px;}
.y14_c00230{bottom:440.115000px;}
.y13_c00230{bottom:463.515000px;}
.y12_c00230{bottom:487.665000px;}
.y11_c00230{bottom:512.115000px;}
.y10_c00230{bottom:536.265000px;}
.yf_c00230{bottom:559.965000px;}
.ye_c00230{bottom:585.015000px;}
.yd_c00230{bottom:608.565000px;}
.yc_c00230{bottom:633.465000px;}
.yb_c00230{bottom:655.815000px;}
.ya_c00230{bottom:679.515000px;}
.y9_c00230{bottom:704.115000px;}
.y8_c00230{bottom:727.965000px;}
.y7_c00230{bottom:753.015000px;}
.y6_c00230{bottom:776.715000px;}
.y5_c00230{bottom:800.865000px;}
.y4_c00230{bottom:825.315000px;}
.y3_c00230{bottom:849.615000px;}
.y2_c00230{bottom:873.765000px;}
.y1_c00230{bottom:898.215000px;}
.h6_c00230{height:13.200074px;}
.h7_c00230{height:43.804688px;}
.h2_c00230{height:79.497070px;}
.h3_c00230{height:84.269531px;}
.h4_c00230{height:91.160156px;}
.h5_c00230{height:98.756836px;}
.h0_c00230{height:989.025000px;}
.h1_c00230{height:989.250000px;}
.w1_c00230{width:104.875500px;}
.w0_c00230{width:672.000000px;}
.x0_c00230{left:0.000000px;}
.xb_c00230{left:48.600000px;}
.xa_c00230{left:50.250000px;}
.x9_c00230{left:51.600000px;}
.x8_c00230{left:52.650000px;}
.x7_c00230{left:53.700000px;}
.x6_c00230{left:54.900000px;}
.x5_c00230{left:56.700000px;}
.x4_c00230{left:58.050000px;}
.x3_c00230{left:59.100000px;}
.x2_c00230{left:60.300000px;}
.x1_c00230{left:61.800000px;}
.xd_c00230{left:287.814240px;}
.xc_c00230{left:351.000000px;}
@media print{
.v0_c00230{vertical-align:0.000000pt;}
.ls0_c00230{letter-spacing:0.000000pt;}
.ws0_c00230{word-spacing:-52.608000pt;}
.ws1_c00230{word-spacing:0.000000pt;}
._19_c00230{margin-left:-33.840000pt;}
._1d_c00230{margin-left:-25.848000pt;}
._13_c00230{margin-left:-12.312000pt;}
._11_c00230{margin-left:-9.936000pt;}
._7_c00230{margin-left:-8.424000pt;}
._17_c00230{margin-left:-7.200000pt;}
._e_c00230{margin-left:-5.976000pt;}
._5_c00230{margin-left:-4.752000pt;}
._4_c00230{margin-left:-3.600000pt;}
._1_c00230{margin-left:-2.232000pt;}
._8_c00230{margin-left:-1.152000pt;}
._6_c00230{width:0.936000pt;}
._2_c00230{width:2.088000pt;}
._0_c00230{width:3.744000pt;}
._9_c00230{width:4.752000pt;}
._3_c00230{width:5.760000pt;}
._a_c00230{width:6.912000pt;}
._d_c00230{width:8.136000pt;}
._b_c00230{width:9.288000pt;}
._10_c00230{width:10.296000pt;}
._f_c00230{width:11.736000pt;}
._c_c00230{width:12.672000pt;}
._18_c00230{width:13.608000pt;}
._1b_c00230{width:15.840000pt;}
._12_c00230{width:20.232000pt;}
._15_c00230{width:22.701333pt;}
._16_c00230{width:26.402667pt;}
._14_c00230{width:29.304000pt;}
._1e_c00230{width:31.629333pt;}
._1a_c00230{width:56.952000pt;}
._1c_c00230{width:97.128000pt;}
._1f_c00230{width:334.842667pt;}
.fs3_c00230{font-size:42.666667pt;}
.fs1_c00230{font-size:64.000000pt;}
.fs2_c00230{font-size:69.333333pt;}
.fs0_c00230{font-size:72.000000pt;}
.y0_c00230{bottom:0.000000pt;}
.y25_c00230{bottom:2.760000pt;}
.y24_c00230{bottom:6.425219pt;}
.y23_c00230{bottom:65.480000pt;}
.y22_c00230{bottom:87.346667pt;}
.y21_c00230{bottom:109.613333pt;}
.y20_c00230{bottom:132.280000pt;}
.y1f_c00230{bottom:154.013333pt;}
.y1e_c00230{bottom:175.613333pt;}
.y1d_c00230{bottom:197.480000pt;}
.y1c_c00230{bottom:219.080000pt;}
.y1b_c00230{bottom:240.946667pt;}
.y1a_c00230{bottom:262.546667pt;}
.y19_c00230{bottom:283.880000pt;}
.y18_c00230{bottom:304.813333pt;}
.y17_c00230{bottom:326.146667pt;}
.y16_c00230{bottom:347.480000pt;}
.y15_c00230{bottom:369.613333pt;}
.y14_c00230{bottom:391.213333pt;}
.y13_c00230{bottom:412.013333pt;}
.y12_c00230{bottom:433.480000pt;}
.y11_c00230{bottom:455.213333pt;}
.y10_c00230{bottom:476.680000pt;}
.yf_c00230{bottom:497.746667pt;}
.ye_c00230{bottom:520.013333pt;}
.yd_c00230{bottom:540.946667pt;}
.yc_c00230{bottom:563.080000pt;}
.yb_c00230{bottom:582.946667pt;}
.ya_c00230{bottom:604.013333pt;}
.y9_c00230{bottom:625.880000pt;}
.y8_c00230{bottom:647.080000pt;}
.y7_c00230{bottom:669.346667pt;}
.y6_c00230{bottom:690.413333pt;}
.y5_c00230{bottom:711.880000pt;}
.y4_c00230{bottom:733.613333pt;}
.y3_c00230{bottom:755.213333pt;}
.y2_c00230{bottom:776.680000pt;}
.y1_c00230{bottom:798.413333pt;}
.h6_c00230{height:11.733399pt;}
.h7_c00230{height:38.937500pt;}
.h2_c00230{height:70.664062pt;}
.h3_c00230{height:74.906250pt;}
.h4_c00230{height:81.031250pt;}
.h5_c00230{height:87.783854pt;}
.h0_c00230{height:879.133333pt;}
.h1_c00230{height:879.333333pt;}
.w1_c00230{width:93.222667pt;}
.w0_c00230{width:597.333333pt;}
.x0_c00230{left:0.000000pt;}
.xb_c00230{left:43.200000pt;}
.xa_c00230{left:44.666667pt;}
.x9_c00230{left:45.866667pt;}
.x8_c00230{left:46.800000pt;}
.x7_c00230{left:47.733333pt;}
.x6_c00230{left:48.800000pt;}
.x5_c00230{left:50.400000pt;}
.x4_c00230{left:51.600000pt;}
.x3_c00230{left:52.533333pt;}
.x2_c00230{left:53.600000pt;}
.x1_c00230{left:54.933333pt;}
.xd_c00230{left:255.834880pt;}
.xc_c00230{left:312.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_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_f3ae7cc07b0183b8c847ab5d.woff2')format("woff");}.ff1_c00231{font-family:ff1_c00231;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00231;src:url('chunks/assets/font_81a70aeb9d65231e0041da14.woff2')format("woff");}.ff2_c00231{font-family:ff2_c00231;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00231;src:url('chunks/assets/font_b3b5b9b3b3e3f6025986695f.woff2')format("woff");}.ff3_c00231{font-family:ff3_c00231;line-height:1.437000;font-style:normal;font-weight:normal;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_4319c50dc5112db401cd570d.woff2')format("woff");}.ff4_c00231{font-family:ff4_c00231;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00231;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff5_c00231{font-family:ff5_c00231;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00231;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c00231{font-family:ff6_c00231;line-height:1.219238;font-style: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;}
.v1_c00231{vertical-align:153.600000px;}
.ls0_c00231{letter-spacing:0.000000px;}
.ls1_c00231{letter-spacing:6.000000px;}
.sc__c00231{text-shadow:none;}
.sc0_c00231{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00231{-webkit-text-stroke:0px transparent;}
.sc0_c00231{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00231{word-spacing:-70.500000px;}
.ws2_c00231{word-spacing:-20.250000px;}
.ws1_c00231{word-spacing:-17.352000px;}
.ws3_c00231{word-spacing:0.000000px;}
._15_c00231{margin-left:-23.229000px;}
._19_c00231{margin-left:-19.413000px;}
._21_c00231{margin-left:-18.372000px;}
._25_c00231{margin-left:-17.214000px;}
._1a_c00231{margin-left:-13.776000px;}
._18_c00231{margin-left:-11.844000px;}
._22_c00231{margin-left:-10.632000px;}
._14_c00231{margin-left:-9.483000px;}
._23_c00231{margin-left:-7.569000px;}
._1f_c00231{margin-left:-6.288000px;}
._10_c00231{margin-left:-4.683000px;}
._13_c00231{margin-left:-3.537000px;}
._17_c00231{margin-left:-2.487000px;}
._12_c00231{margin-left:-1.377000px;}
._11_c00231{width:1.215000px;}
._9_c00231{width:2.277000px;}
._c_c00231{width:3.468000px;}
._3_c00231{width:5.100000px;}
._1b_c00231{width:6.207000px;}
._8_c00231{width:7.275000px;}
._2_c00231{width:8.892000px;}
._6_c00231{width:10.437000px;}
._1_c00231{width:11.868000px;}
._a_c00231{width:14.058000px;}
._7_c00231{width:15.708000px;}
._f_c00231{width:16.938000px;}
._5_c00231{width:18.105000px;}
._b_c00231{width:19.329000px;}
._e_c00231{width:20.400000px;}
._0_c00231{width:21.624000px;}
._16_c00231{width:26.883000px;}
._4_c00231{width:27.999000px;}
._d_c00231{width:31.620000px;}
._1c_c00231{width:71.235000px;}
._24_c00231{width:98.127000px;}
._26_c00231{width:103.533000px;}
._20_c00231{width:303.852000px;}
._1d_c00231{width:325.707000px;}
._1e_c00231{width:379.095000px;}
.fc2_c00231{color:transparent;}
.fc1_c00231{color:rgb(128,128,128);}
.fc0_c00231{color:rgb(0,0,0);}
.fs1_c00231{font-size:36.000000px;}
.fs7_c00231{font-size:48.000000px;}
.fs0_c00231{font-size:51.000000px;}
.fs6_c00231{font-size:72.000000px;}
.fs2_c00231{font-size:81.000000px;}
.fs4_c00231{font-size:84.000000px;}
.fs3_c00231{font-size:87.000000px;}
.fs5_c00231{font-size:282.000000px;}
.y0_c00231{bottom:0.000000px;}
.y25_c00231{bottom:3.105000px;}
.y24_c00231{bottom:7.228357px;}
.y23_c00231{bottom:73.530000px;}
.y22_c00231{bottom:98.880000px;}
.y21_c00231{bottom:123.630000px;}
.y20_c00231{bottom:148.230000px;}
.y1f_c00231{bottom:172.530000px;}
.y1e_c00231{bottom:197.130000px;}
.y1d_c00231{bottom:221.730000px;}
.y1c_c00231{bottom:246.330000px;}
.y1b_c00231{bottom:270.630000px;}
.y1a_c00231{bottom:294.930000px;}
.y19_c00231{bottom:319.380000px;}
.y18_c00231{bottom:343.680000px;}
.y17_c00231{bottom:367.980000px;}
.y16_c00231{bottom:392.280000px;}
.y15_c00231{bottom:416.880000px;}
.y14_c00231{bottom:440.730000px;}
.y13_c00231{bottom:464.730000px;}
.y12_c00231{bottom:488.730000px;}
.y11_c00231{bottom:512.730000px;}
.y10_c00231{bottom:536.730000px;}
.yf_c00231{bottom:560.880000px;}
.ye_c00231{bottom:584.880000px;}
.yd_c00231{bottom:609.930000px;}
.yc_c00231{bottom:636.180000px;}
.yb_c00231{bottom:658.080000px;}
.ya_c00231{bottom:682.830000px;}
.y9_c00231{bottom:706.680000px;}
.y8_c00231{bottom:730.980000px;}
.y7_c00231{bottom:755.730000px;}
.y6_c00231{bottom:779.580000px;}
.y4_c00231{bottom:789.180000px;}
.y5_c00231{bottom:803.580000px;}
.y3_c00231{bottom:851.280000px;}
.y2_c00231{bottom:873.480000px;}
.y1_c00231{bottom:901.530000px;}
.h7_c00231{height:13.200074px;}
.h8_c00231{height:43.804688px;}
.h1_c00231{height:51.398438px;}
.h2_c00231{height:79.497070px;}
.h5_c00231{height:84.269531px;}
.h3_c00231{height:88.032000px;}
.h6_c00231{height:91.160156px;}
.h4_c00231{height:276.767578px;}
.h0_c00231{height:995.250000px;}
.w2_c00231{width:104.875500px;}
.w0_c00231{width:667.425000px;}
.w1_c00231{width:667.500000px;}
.x0_c00231{left:0.000000px;}
.x9_c00231{left:28.650000px;}
.xb_c00231{left:29.700000px;}
.x8_c00231{left:66.150000px;}
.x7_c00231{left:81.300000px;}
.x1_c00231{left:111.450000px;}
.x2_c00231{left:112.500000px;}
.x4_c00231{left:116.400000px;}
.x6_c00231{left:117.750000px;}
.xc_c00231{left:122.850000px;}
.xd_c00231{left:124.500000px;}
.x10_c00231{left:128.250000px;}
.x11_c00231{left:129.300000px;}
.xe_c00231{left:130.650000px;}
.xf_c00231{left:131.700000px;}
.x5_c00231{left:155.550000px;}
.xa_c00231{left:185.400000px;}
.x3_c00231{left:271.050000px;}
.x13_c00231{left:285.526749px;}
.x12_c00231{left:562.950000px;}
@media print{
.v0_c00231{vertical-align:0.000000pt;}
.v1_c00231{vertical-align:136.533333pt;}
.ls0_c00231{letter-spacing:0.000000pt;}
.ls1_c00231{letter-spacing:5.333333pt;}
.ws0_c00231{word-spacing:-62.666667pt;}
.ws2_c00231{word-spacing:-18.000000pt;}
.ws1_c00231{word-spacing:-15.424000pt;}
.ws3_c00231{word-spacing:0.000000pt;}
._15_c00231{margin-left:-20.648000pt;}
._19_c00231{margin-left:-17.256000pt;}
._21_c00231{margin-left:-16.330667pt;}
._25_c00231{margin-left:-15.301333pt;}
._1a_c00231{margin-left:-12.245333pt;}
._18_c00231{margin-left:-10.528000pt;}
._22_c00231{margin-left:-9.450667pt;}
._14_c00231{margin-left:-8.429333pt;}
._23_c00231{margin-left:-6.728000pt;}
._1f_c00231{margin-left:-5.589333pt;}
._10_c00231{margin-left:-4.162667pt;}
._13_c00231{margin-left:-3.144000pt;}
._17_c00231{margin-left:-2.210667pt;}
._12_c00231{margin-left:-1.224000pt;}
._11_c00231{width:1.080000pt;}
._9_c00231{width:2.024000pt;}
._c_c00231{width:3.082667pt;}
._3_c00231{width:4.533333pt;}
._1b_c00231{width:5.517333pt;}
._8_c00231{width:6.466667pt;}
._2_c00231{width:7.904000pt;}
._6_c00231{width:9.277333pt;}
._1_c00231{width:10.549333pt;}
._a_c00231{width:12.496000pt;}
._7_c00231{width:13.962667pt;}
._f_c00231{width:15.056000pt;}
._5_c00231{width:16.093333pt;}
._b_c00231{width:17.181333pt;}
._e_c00231{width:18.133333pt;}
._0_c00231{width:19.221333pt;}
._16_c00231{width:23.896000pt;}
._4_c00231{width:24.888000pt;}
._d_c00231{width:28.106667pt;}
._1c_c00231{width:63.320000pt;}
._24_c00231{width:87.224000pt;}
._26_c00231{width:92.029333pt;}
._20_c00231{width:270.090667pt;}
._1d_c00231{width:289.517333pt;}
._1e_c00231{width:336.973333pt;}
.fs1_c00231{font-size:32.000000pt;}
.fs7_c00231{font-size:42.666667pt;}
.fs0_c00231{font-size:45.333333pt;}
.fs6_c00231{font-size:64.000000pt;}
.fs2_c00231{font-size:72.000000pt;}
.fs4_c00231{font-size:74.666667pt;}
.fs3_c00231{font-size:77.333333pt;}
.fs5_c00231{font-size:250.666667pt;}
.y0_c00231{bottom:0.000000pt;}
.y25_c00231{bottom:2.760000pt;}
.y24_c00231{bottom:6.425206pt;}
.y23_c00231{bottom:65.360000pt;}
.y22_c00231{bottom:87.893333pt;}
.y21_c00231{bottom:109.893333pt;}
.y20_c00231{bottom:131.760000pt;}
.y1f_c00231{bottom:153.360000pt;}
.y1e_c00231{bottom:175.226667pt;}
.y1d_c00231{bottom:197.093333pt;}
.y1c_c00231{bottom:218.960000pt;}
.y1b_c00231{bottom:240.560000pt;}
.y1a_c00231{bottom:262.160000pt;}
.y19_c00231{bottom:283.893333pt;}
.y18_c00231{bottom:305.493333pt;}
.y17_c00231{bottom:327.093333pt;}
.y16_c00231{bottom:348.693333pt;}
.y15_c00231{bottom:370.560000pt;}
.y14_c00231{bottom:391.760000pt;}
.y13_c00231{bottom:413.093333pt;}
.y12_c00231{bottom:434.426667pt;}
.y11_c00231{bottom:455.760000pt;}
.y10_c00231{bottom:477.093333pt;}
.yf_c00231{bottom:498.560000pt;}
.ye_c00231{bottom:519.893333pt;}
.yd_c00231{bottom:542.160000pt;}
.yc_c00231{bottom:565.493333pt;}
.yb_c00231{bottom:584.960000pt;}
.ya_c00231{bottom:606.960000pt;}
.y9_c00231{bottom:628.160000pt;}
.y8_c00231{bottom:649.760000pt;}
.y7_c00231{bottom:671.760000pt;}
.y6_c00231{bottom:692.960000pt;}
.y4_c00231{bottom:701.493333pt;}
.y5_c00231{bottom:714.293333pt;}
.y3_c00231{bottom:756.693333pt;}
.y2_c00231{bottom:776.426667pt;}
.y1_c00231{bottom:801.360000pt;}
.h7_c00231{height:11.733399pt;}
.h8_c00231{height:38.937500pt;}
.h1_c00231{height:45.687500pt;}
.h2_c00231{height:70.664062pt;}
.h5_c00231{height:74.906250pt;}
.h3_c00231{height:78.250667pt;}
.h6_c00231{height:81.031250pt;}
.h4_c00231{height:246.015625pt;}
.h0_c00231{height:884.666667pt;}
.w2_c00231{width:93.222667pt;}
.w0_c00231{width:593.266667pt;}
.w1_c00231{width:593.333333pt;}
.x0_c00231{left:0.000000pt;}
.x9_c00231{left:25.466667pt;}
.xb_c00231{left:26.400000pt;}
.x8_c00231{left:58.800000pt;}
.x7_c00231{left:72.266667pt;}
.x1_c00231{left:99.066667pt;}
.x2_c00231{left:100.000000pt;}
.x4_c00231{left:103.466667pt;}
.x6_c00231{left:104.666667pt;}
.xc_c00231{left:109.200000pt;}
.xd_c00231{left:110.666667pt;}
.x10_c00231{left:114.000000pt;}
.x11_c00231{left:114.933333pt;}
.xe_c00231{left:116.133333pt;}
.xf_c00231{left:117.066667pt;}
.x5_c00231{left:138.266667pt;}
.xa_c00231{left:164.800000pt;}
.x3_c00231{left:240.933333pt;}
.x13_c00231{left:253.801554pt;}
.x12_c00231{left:500.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_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_08dde2cddac1176fefafa325.woff2')format("woff");}.ff1_c00232{font-family:ff1_c00232;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00232;src:url('chunks/assets/font_2e0d69aef7ef9cf6b3c44be9.woff2')format("woff");}.ff2_c00232{font-family:ff2_c00232;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00232;src:url('chunks/assets/font_929cd131f50cac66e114e7a9.woff2')format("woff");}.ff3_c00232{font-family:ff3_c00232;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00232;src:url('chunks/assets/font_266e8579b4135cede0b85ed3.woff2')format("woff");}.ff4_c00232{font-family:ff4_c00232;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00232;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c00232{font-family:ff5_c00232;line-height:1.219238;font-style: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;}
.ls1_c00232{letter-spacing:0.000000px;}
.ls0_c00232{letter-spacing:5.700000px;}
.sc__c00232{text-shadow:none;}
.sc0_c00232{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00232{-webkit-text-stroke:0px transparent;}
.sc0_c00232{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00232{word-spacing:-18.750000px;}
.ws3_c00232{word-spacing:-17.352000px;}
.ws1_c00232{word-spacing:-13.737000px;}
.ws4_c00232{word-spacing:0.000000px;}
.ws2_c00232{word-spacing:4.275000px;}
._1d_c00232{margin-left:-32.697000px;}
._23_c00232{margin-left:-30.024000px;}
._15_c00232{margin-left:-25.008000px;}
._18_c00232{margin-left:-21.825000px;}
._14_c00232{margin-left:-20.712000px;}
._21_c00232{margin-left:-17.883000px;}
._10_c00232{margin-left:-13.389000px;}
._f_c00232{margin-left:-11.601000px;}
._d_c00232{margin-left:-10.377000px;}
._12_c00232{margin-left:-9.306000px;}
._8_c00232{margin-left:-8.004000px;}
._7_c00232{margin-left:-6.399000px;}
._3_c00232{margin-left:-4.536000px;}
._a_c00232{margin-left:-2.838000px;}
._5_c00232{margin-left:-1.539000px;}
._1_c00232{width:1.701000px;}
._0_c00232{width:2.997000px;}
._4_c00232{width:4.698000px;}
._6_c00232{width:6.399000px;}
._b_c00232{width:7.530000px;}
._9_c00232{width:9.186000px;}
._e_c00232{width:11.043000px;}
._2_c00232{width:12.231000px;}
._19_c00232{width:13.527000px;}
._11_c00232{width:14.883000px;}
._22_c00232{width:15.939000px;}
._13_c00232{width:17.661000px;}
._16_c00232{width:20.559000px;}
._17_c00232{width:22.455000px;}
._24_c00232{width:25.110000px;}
._1e_c00232{width:31.887000px;}
._25_c00232{width:33.147000px;}
._1c_c00232{width:34.467000px;}
._27_c00232{width:36.288000px;}
._1f_c00232{width:52.104000px;}
._1b_c00232{width:91.776000px;}
._1a_c00232{width:132.486000px;}
._20_c00232{width:201.234000px;}
._26_c00232{width:300.942000px;}
._c_c00232{width:309.891000px;}
.fc2_c00232{color:transparent;}
.fc1_c00232{color:rgb(128,128,128);}
.fc0_c00232{color:rgb(0,0,0);}
.fs6_c00232{font-size:48.000000px;}
.fs1_c00232{font-size:57.000000px;}
.fs5_c00232{font-size:63.000000px;}
.fs3_c00232{font-size:72.000000px;}
.fs4_c00232{font-size:75.000000px;}
.fs2_c00232{font-size:78.000000px;}
.fs0_c00232{font-size:81.000000px;}
.y0_c00232{bottom:0.000000px;}
.y25_c00232{bottom:3.105000px;}
.y24_c00232{bottom:7.228371px;}
.y23_c00232{bottom:72.915000px;}
.y22_c00232{bottom:101.265000px;}
.y21_c00232{bottom:126.015000px;}
.y20_c00232{bottom:150.615000px;}
.y1f_c00232{bottom:175.515000px;}
.y1e_c00232{bottom:199.515000px;}
.y1d_c00232{bottom:224.415000px;}
.y1c_c00232{bottom:248.865000px;}
.y1b_c00232{bottom:273.165000px;}
.y1a_c00232{bottom:297.315000px;}
.y19_c00232{bottom:321.615000px;}
.y18_c00232{bottom:345.615000px;}
.y17_c00232{bottom:369.615000px;}
.y16_c00232{bottom:393.615000px;}
.y15_c00232{bottom:418.515000px;}
.y14_c00232{bottom:442.215000px;}
.y13_c00232{bottom:466.065000px;}
.y12_c00232{bottom:489.165000px;}
.y11_c00232{bottom:514.815000px;}
.y10_c00232{bottom:539.415000px;}
.yf_c00232{bottom:563.265000px;}
.ye_c00232{bottom:587.265000px;}
.yd_c00232{bottom:610.665000px;}
.yc_c00232{bottom:634.965000px;}
.yb_c00232{bottom:659.565000px;}
.ya_c00232{bottom:683.115000px;}
.y9_c00232{bottom:707.415000px;}
.y8_c00232{bottom:731.715000px;}
.y7_c00232{bottom:755.715000px;}
.y6_c00232{bottom:780.765000px;}
.y5_c00232{bottom:804.315000px;}
.y4_c00232{bottom:828.315000px;}
.y3_c00232{bottom:852.615000px;}
.y2_c00232{bottom:876.915000px;}
.y1_c00232{bottom:900.765000px;}
.h8_c00232{height:13.200074px;}
.h9_c00232{height:43.804688px;}
.h4_c00232{height:72.168457px;}
.h5_c00232{height:73.608398px;}
.h2_c00232{height:79.497070px;}
.h6_c00232{height:84.269531px;}
.h7_c00232{height:91.160156px;}
.h3_c00232{height:98.756836px;}
.h0_c00232{height:989.025000px;}
.h1_c00232{height:989.250000px;}
.w1_c00232{width:104.875500px;}
.w0_c00232{width:672.000000px;}
.x0_c00232{left:0.000000px;}
.x1_c00232{left:50.700000px;}
.x2_c00232{left:54.000000px;}
.x3_c00232{left:55.650000px;}
.x4_c00232{left:56.700000px;}
.x5_c00232{left:58.800000px;}
.x6_c00232{left:59.850000px;}
.x7_c00232{left:61.500000px;}
.x8_c00232{left:62.850000px;}
.x9_c00232{left:64.200000px;}
.xa_c00232{left:65.250000px;}
.xb_c00232{left:66.450000px;}
.xd_c00232{left:287.814240px;}
.xc_c00232{left:400.350000px;}
@media print{
.v0_c00232{vertical-align:0.000000pt;}
.ls1_c00232{letter-spacing:0.000000pt;}
.ls0_c00232{letter-spacing:5.066667pt;}
.ws0_c00232{word-spacing:-16.666667pt;}
.ws3_c00232{word-spacing:-15.424000pt;}
.ws1_c00232{word-spacing:-12.210667pt;}
.ws4_c00232{word-spacing:0.000000pt;}
.ws2_c00232{word-spacing:3.800000pt;}
._1d_c00232{margin-left:-29.064000pt;}
._23_c00232{margin-left:-26.688000pt;}
._15_c00232{margin-left:-22.229333pt;}
._18_c00232{margin-left:-19.400000pt;}
._14_c00232{margin-left:-18.410667pt;}
._21_c00232{margin-left:-15.896000pt;}
._10_c00232{margin-left:-11.901333pt;}
._f_c00232{margin-left:-10.312000pt;}
._d_c00232{margin-left:-9.224000pt;}
._12_c00232{margin-left:-8.272000pt;}
._8_c00232{margin-left:-7.114667pt;}
._7_c00232{margin-left:-5.688000pt;}
._3_c00232{margin-left:-4.032000pt;}
._a_c00232{margin-left:-2.522667pt;}
._5_c00232{margin-left:-1.368000pt;}
._1_c00232{width:1.512000pt;}
._0_c00232{width:2.664000pt;}
._4_c00232{width:4.176000pt;}
._6_c00232{width:5.688000pt;}
._b_c00232{width:6.693333pt;}
._9_c00232{width:8.165333pt;}
._e_c00232{width:9.816000pt;}
._2_c00232{width:10.872000pt;}
._19_c00232{width:12.024000pt;}
._11_c00232{width:13.229333pt;}
._22_c00232{width:14.168000pt;}
._13_c00232{width:15.698667pt;}
._16_c00232{width:18.274667pt;}
._17_c00232{width:19.960000pt;}
._24_c00232{width:22.320000pt;}
._1e_c00232{width:28.344000pt;}
._25_c00232{width:29.464000pt;}
._1c_c00232{width:30.637333pt;}
._27_c00232{width:32.256000pt;}
._1f_c00232{width:46.314667pt;}
._1b_c00232{width:81.578667pt;}
._1a_c00232{width:117.765333pt;}
._20_c00232{width:178.874667pt;}
._26_c00232{width:267.504000pt;}
._c_c00232{width:275.458667pt;}
.fs6_c00232{font-size:42.666667pt;}
.fs1_c00232{font-size:50.666667pt;}
.fs5_c00232{font-size:56.000000pt;}
.fs3_c00232{font-size:64.000000pt;}
.fs4_c00232{font-size:66.666667pt;}
.fs2_c00232{font-size:69.333333pt;}
.fs0_c00232{font-size:72.000000pt;}
.y0_c00232{bottom:0.000000pt;}
.y25_c00232{bottom:2.760000pt;}
.y24_c00232{bottom:6.425219pt;}
.y23_c00232{bottom:64.813333pt;}
.y22_c00232{bottom:90.013333pt;}
.y21_c00232{bottom:112.013333pt;}
.y20_c00232{bottom:133.880000pt;}
.y1f_c00232{bottom:156.013333pt;}
.y1e_c00232{bottom:177.346667pt;}
.y1d_c00232{bottom:199.480000pt;}
.y1c_c00232{bottom:221.213333pt;}
.y1b_c00232{bottom:242.813333pt;}
.y1a_c00232{bottom:264.280000pt;}
.y19_c00232{bottom:285.880000pt;}
.y18_c00232{bottom:307.213333pt;}
.y17_c00232{bottom:328.546667pt;}
.y16_c00232{bottom:349.880000pt;}
.y15_c00232{bottom:372.013333pt;}
.y14_c00232{bottom:393.080000pt;}
.y13_c00232{bottom:414.280000pt;}
.y12_c00232{bottom:434.813333pt;}
.y11_c00232{bottom:457.613333pt;}
.y10_c00232{bottom:479.480000pt;}
.yf_c00232{bottom:500.680000pt;}
.ye_c00232{bottom:522.013333pt;}
.yd_c00232{bottom:542.813333pt;}
.yc_c00232{bottom:564.413333pt;}
.yb_c00232{bottom:586.280000pt;}
.ya_c00232{bottom:607.213333pt;}
.y9_c00232{bottom:628.813333pt;}
.y8_c00232{bottom:650.413333pt;}
.y7_c00232{bottom:671.746667pt;}
.y6_c00232{bottom:694.013333pt;}
.y5_c00232{bottom:714.946667pt;}
.y4_c00232{bottom:736.280000pt;}
.y3_c00232{bottom:757.880000pt;}
.y2_c00232{bottom:779.480000pt;}
.y1_c00232{bottom:800.680000pt;}
.h8_c00232{height:11.733399pt;}
.h9_c00232{height:38.937500pt;}
.h4_c00232{height:64.149740pt;}
.h5_c00232{height:65.429688pt;}
.h2_c00232{height:70.664062pt;}
.h6_c00232{height:74.906250pt;}
.h7_c00232{height:81.031250pt;}
.h3_c00232{height:87.783854pt;}
.h0_c00232{height:879.133333pt;}
.h1_c00232{height:879.333333pt;}
.w1_c00232{width:93.222667pt;}
.w0_c00232{width:597.333333pt;}
.x0_c00232{left:0.000000pt;}
.x1_c00232{left:45.066667pt;}
.x2_c00232{left:48.000000pt;}
.x3_c00232{left:49.466667pt;}
.x4_c00232{left:50.400000pt;}
.x5_c00232{left:52.266667pt;}
.x6_c00232{left:53.200000pt;}
.x7_c00232{left:54.666667pt;}
.x8_c00232{left:55.866667pt;}
.x9_c00232{left:57.066667pt;}
.xa_c00232{left:58.000000pt;}
.xb_c00232{left:59.066667pt;}
.xd_c00232{left:255.834880pt;}
.xc_c00232{left:355.866667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_5941b07bd3377e7e673b6dfa.woff2')format("woff");}.ff1_c00233{font-family:ff1_c00233;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00233;src:url('chunks/assets/font_bf02008ca353aab66fcc33bc.woff2')format("woff");}.ff2_c00233{font-family:ff2_c00233;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00233;src:url('chunks/assets/font_67ab08decedf4e0e731c3351.woff2')format("woff");}.ff3_c00233{font-family:ff3_c00233;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00233;src:url('chunks/assets/font_ff23c63c75cd41ed48f5d655.woff2')format("woff");}.ff4_c00233{font-family:ff4_c00233;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00233;src:url('chunks/assets/font_66245af732f54fc2c4e35047.woff2')format("woff");}.ff5_c00233{font-family:ff5_c00233;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00233;src:url('chunks/assets/font_c31f3f46bfa31df5f6736ea6.woff2')format("woff");}.ff6_c00233{font-family:ff6_c00233;line-height:1.437000;font-style:normal;font-weight: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_c00233;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c00233{font-family:ff7_c00233;line-height:1.219238;font-style: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;}
.ls4_c00233{letter-spacing:0.000000px;}
.ls1_c00233{letter-spacing:1.500000px;}
.ls3_c00233{letter-spacing:2.100000px;}
.ls0_c00233{letter-spacing:36.300000px;}
.ls2_c00233{letter-spacing:118.602000px;}
.sc__c00233{text-shadow:none;}
.sc0_c00233{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00233{-webkit-text-stroke:0px transparent;}
.sc0_c00233{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00233{word-spacing:-36.696000px;}
.ws2_c00233{word-spacing:-17.352000px;}
.ws0_c00233{word-spacing:-13.737000px;}
.ws3_c00233{word-spacing:0.000000px;}
._1e_c00233{margin-left:-24.300000px;}
._c_c00233{margin-left:-8.586000px;}
._f_c00233{margin-left:-7.371000px;}
._7_c00233{margin-left:-5.751000px;}
._a_c00233{margin-left:-4.536000px;}
._4_c00233{margin-left:-2.754000px;}
._2_c00233{margin-left:-1.458000px;}
._3_c00233{width:1.944000px;}
._6_c00233{width:3.159000px;}
._5_c00233{width:4.698000px;}
._8_c00233{width:6.399000px;}
._0_c00233{width:7.533000px;}
._9_c00233{width:9.072000px;}
._e_c00233{width:11.178000px;}
._10_c00233{width:12.717000px;}
._11_c00233{width:14.094000px;}
._13_c00233{width:15.219000px;}
._14_c00233{width:16.605000px;}
._15_c00233{width:18.852000px;}
._1b_c00233{width:20.409000px;}
._16_c00233{width:21.648000px;}
._17_c00233{width:23.442000px;}
._1c_c00233{width:24.672000px;}
._1a_c00233{width:27.468000px;}
._18_c00233{width:28.728000px;}
._19_c00233{width:31.110000px;}
._12_c00233{width:33.132000px;}
._b_c00233{width:48.114000px;}
._1_c00233{width:168.399000px;}
._d_c00233{width:207.276000px;}
._1f_c00233{width:275.886000px;}
._1d_c00233{width:303.912000px;}
._20_c00233{width:852.783000px;}
.fc2_c00233{color:transparent;}
.fc1_c00233{color:rgb(128,128,128);}
.fc0_c00233{color:rgb(0,0,0);}
.fs6_c00233{font-size:48.000000px;}
.fs3_c00233{font-size:57.000000px;}
.fs4_c00233{font-size:66.000000px;}
.fs1_c00233{font-size:72.000000px;}
.fs2_c00233{font-size:78.000000px;}
.fs0_c00233{font-size:81.000000px;}
.fs5_c00233{font-size:87.000000px;}
.y0_c00233{bottom:0.000000px;}
.y25_c00233{bottom:3.105000px;}
.y24_c00233{bottom:7.228357px;}
.y23_c00233{bottom:66.480000px;}
.y22_c00233{bottom:92.130000px;}
.y21_c00233{bottom:117.180000px;}
.y20_c00233{bottom:142.080000px;}
.y1f_c00233{bottom:166.830000px;}
.y1e_c00233{bottom:192.030000px;}
.y1d_c00233{bottom:216.030000px;}
.y1c_c00233{bottom:240.630000px;}
.y1b_c00233{bottom:264.630000px;}
.y1a_c00233{bottom:288.630000px;}
.y19_c00233{bottom:314.280000px;}
.y18_c00233{bottom:340.530000px;}
.y17_c00233{bottom:363.480000px;}
.y16_c00233{bottom:386.880000px;}
.y15_c00233{bottom:411.180000px;}
.y14_c00233{bottom:435.480000px;}
.y13_c00233{bottom:459.630000px;}
.y12_c00233{bottom:483.330000px;}
.y11_c00233{bottom:507.930000px;}
.y10_c00233{bottom:533.280000px;}
.yf_c00233{bottom:556.230000px;}
.ye_c00233{bottom:580.230000px;}
.yd_c00233{bottom:604.530000px;}
.yc_c00233{bottom:629.130000px;}
.yb_c00233{bottom:653.430000px;}
.ya_c00233{bottom:677.430000px;}
.y9_c00233{bottom:701.730000px;}
.y8_c00233{bottom:727.080000px;}
.y7_c00233{bottom:750.030000px;}
.y6_c00233{bottom:774.330000px;}
.y5_c00233{bottom:798.480000px;}
.y4_c00233{bottom:823.230000px;}
.y3_c00233{bottom:848.130000px;}
.y2_c00233{bottom:870.780000px;}
.y1_c00233{bottom:895.080000px;}
.h5_c00233{height:13.200074px;}
.h6_c00233{height:43.804688px;}
.h1_c00233{height:79.497070px;}
.h2_c00233{height:84.269531px;}
.h4_c00233{height:91.176000px;}
.h3_c00233{height:98.756836px;}
.h0_c00233{height:995.250000px;}
.w2_c00233{width:104.875500px;}
.w0_c00233{width:667.425000px;}
.w1_c00233{width:667.500000px;}
.x0_c00233{left:0.000000px;}
.xf_c00233{left:15.300000px;}
.x11_c00233{left:16.650000px;}
.xe_c00233{left:18.450000px;}
.xd_c00233{left:19.950000px;}
.x9_c00233{left:24.000000px;}
.x4_c00233{left:28.350000px;}
.x3_c00233{left:86.850000px;}
.x13_c00233{left:103.650000px;}
.x12_c00233{left:105.300000px;}
.x10_c00233{left:109.650000px;}
.xb_c00233{left:111.450000px;}
.xc_c00233{left:113.700000px;}
.xa_c00233{left:115.800000px;}
.x7_c00233{left:117.900000px;}
.x8_c00233{left:119.100000px;}
.x6_c00233{left:121.200000px;}
.x5_c00233{left:122.850000px;}
.x2_c00233{left:126.600000px;}
.x1_c00233{left:127.950000px;}
.x14_c00233{left:285.526749px;}
@media print{
.v0_c00233{vertical-align:0.000000pt;}
.ls4_c00233{letter-spacing:0.000000pt;}
.ls1_c00233{letter-spacing:1.333333pt;}
.ls3_c00233{letter-spacing:1.866667pt;}
.ls0_c00233{letter-spacing:32.266667pt;}
.ls2_c00233{letter-spacing:105.424000pt;}
.ws1_c00233{word-spacing:-32.618667pt;}
.ws2_c00233{word-spacing:-15.424000pt;}
.ws0_c00233{word-spacing:-12.210667pt;}
.ws3_c00233{word-spacing:0.000000pt;}
._1e_c00233{margin-left:-21.600000pt;}
._c_c00233{margin-left:-7.632000pt;}
._f_c00233{margin-left:-6.552000pt;}
._7_c00233{margin-left:-5.112000pt;}
._a_c00233{margin-left:-4.032000pt;}
._4_c00233{margin-left:-2.448000pt;}
._2_c00233{margin-left:-1.296000pt;}
._3_c00233{width:1.728000pt;}
._6_c00233{width:2.808000pt;}
._5_c00233{width:4.176000pt;}
._8_c00233{width:5.688000pt;}
._0_c00233{width:6.696000pt;}
._9_c00233{width:8.064000pt;}
._e_c00233{width:9.936000pt;}
._10_c00233{width:11.304000pt;}
._11_c00233{width:12.528000pt;}
._13_c00233{width:13.528000pt;}
._14_c00233{width:14.760000pt;}
._15_c00233{width:16.757333pt;}
._1b_c00233{width:18.141333pt;}
._16_c00233{width:19.242667pt;}
._17_c00233{width:20.837333pt;}
._1c_c00233{width:21.930667pt;}
._1a_c00233{width:24.416000pt;}
._18_c00233{width:25.536000pt;}
._19_c00233{width:27.653333pt;}
._12_c00233{width:29.450667pt;}
._b_c00233{width:42.768000pt;}
._1_c00233{width:149.688000pt;}
._d_c00233{width:184.245333pt;}
._1f_c00233{width:245.232000pt;}
._1d_c00233{width:270.144000pt;}
._20_c00233{width:758.029333pt;}
.fs6_c00233{font-size:42.666667pt;}
.fs3_c00233{font-size:50.666667pt;}
.fs4_c00233{font-size:58.666667pt;}
.fs1_c00233{font-size:64.000000pt;}
.fs2_c00233{font-size:69.333333pt;}
.fs0_c00233{font-size:72.000000pt;}
.fs5_c00233{font-size:77.333333pt;}
.y0_c00233{bottom:0.000000pt;}
.y25_c00233{bottom:2.760000pt;}
.y24_c00233{bottom:6.425206pt;}
.y23_c00233{bottom:59.093333pt;}
.y22_c00233{bottom:81.893333pt;}
.y21_c00233{bottom:104.160000pt;}
.y20_c00233{bottom:126.293333pt;}
.y1f_c00233{bottom:148.293333pt;}
.y1e_c00233{bottom:170.693333pt;}
.y1d_c00233{bottom:192.026667pt;}
.y1c_c00233{bottom:213.893333pt;}
.y1b_c00233{bottom:235.226667pt;}
.y1a_c00233{bottom:256.560000pt;}
.y19_c00233{bottom:279.360000pt;}
.y18_c00233{bottom:302.693333pt;}
.y17_c00233{bottom:323.093333pt;}
.y16_c00233{bottom:343.893333pt;}
.y15_c00233{bottom:365.493333pt;}
.y14_c00233{bottom:387.093333pt;}
.y13_c00233{bottom:408.560000pt;}
.y12_c00233{bottom:429.626667pt;}
.y11_c00233{bottom:451.493333pt;}
.y10_c00233{bottom:474.026667pt;}
.yf_c00233{bottom:494.426667pt;}
.ye_c00233{bottom:515.760000pt;}
.yd_c00233{bottom:537.360000pt;}
.yc_c00233{bottom:559.226667pt;}
.yb_c00233{bottom:580.826667pt;}
.ya_c00233{bottom:602.160000pt;}
.y9_c00233{bottom:623.760000pt;}
.y8_c00233{bottom:646.293333pt;}
.y7_c00233{bottom:666.693333pt;}
.y6_c00233{bottom:688.293333pt;}
.y5_c00233{bottom:709.760000pt;}
.y4_c00233{bottom:731.760000pt;}
.y3_c00233{bottom:753.893333pt;}
.y2_c00233{bottom:774.026667pt;}
.y1_c00233{bottom:795.626667pt;}
.h5_c00233{height:11.733399pt;}
.h6_c00233{height:38.937500pt;}
.h1_c00233{height:70.664062pt;}
.h2_c00233{height:74.906250pt;}
.h4_c00233{height:81.045333pt;}
.h3_c00233{height:87.783854pt;}
.h0_c00233{height:884.666667pt;}
.w2_c00233{width:93.222667pt;}
.w0_c00233{width:593.266667pt;}
.w1_c00233{width:593.333333pt;}
.x0_c00233{left:0.000000pt;}
.xf_c00233{left:13.600000pt;}
.x11_c00233{left:14.800000pt;}
.xe_c00233{left:16.400000pt;}
.xd_c00233{left:17.733333pt;}
.x9_c00233{left:21.333333pt;}
.x4_c00233{left:25.200000pt;}
.x3_c00233{left:77.200000pt;}
.x13_c00233{left:92.133333pt;}
.x12_c00233{left:93.600000pt;}
.x10_c00233{left:97.466667pt;}
.xb_c00233{left:99.066667pt;}
.xc_c00233{left:101.066667pt;}
.xa_c00233{left:102.933333pt;}
.x7_c00233{left:104.800000pt;}
.x8_c00233{left:105.866667pt;}
.x6_c00233{left:107.733333pt;}
.x5_c00233{left:109.200000pt;}
.x2_c00233{left:112.533333pt;}
.x1_c00233{left:113.733333pt;}
.x14_c00233{left:253.801554pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ee2b42455182bde88eb6d86b.woff2')format("woff");}.ff1_c00234{font-family:ff1_c00234;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00234;src:url('chunks/assets/font_c8a78bd5db3582f7ba7299b2.woff2')format("woff");}.ff2_c00234{font-family:ff2_c00234;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00234;src:url('chunks/assets/font_2214a39e958f6dc2bb0df925.woff2')format("woff");}.ff3_c00234{font-family:ff3_c00234;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00234;src:url('chunks/assets/font_aea84ac3ea4548e88e5396de.woff2')format("woff");}.ff4_c00234{font-family:ff4_c00234;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00234;src:url('chunks/assets/font_c0c2081af5fd8ce508710847.woff2')format("woff");}.ff5_c00234{font-family:ff5_c00234;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00234;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c00234{font-family:ff6_c00234;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00234{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00234{vertical-align:0.000000px;}
.v1_c00234{vertical-align:151.200000px;}
.ls3_c00234{letter-spacing:0.000000px;}
.ls0_c00234{letter-spacing:7.200000px;}
.ls2_c00234{letter-spacing:10.317000px;}
.ls1_c00234{letter-spacing:13.602000px;}
.sc__c00234{text-shadow:none;}
.sc0_c00234{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00234{-webkit-text-stroke:0px transparent;}
.sc0_c00234{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00234{word-spacing:-69.750000px;}
.ws0_c00234{word-spacing:-23.859000px;}
.ws2_c00234{word-spacing:-17.352000px;}
.ws4_c00234{word-spacing:0.000000px;}
.ws3_c00234{word-spacing:11.271000px;}
._8_c00234{margin-left:-20.211000px;}
._11_c00234{margin-left:-13.524000px;}
._2_c00234{margin-left:-10.665000px;}
._14_c00234{margin-left:-8.154000px;}
._4_c00234{margin-left:-7.128000px;}
._3_c00234{margin-left:-6.072000px;}
._5_c00234{margin-left:-4.737000px;}
._0_c00234{margin-left:-3.663000px;}
._1_c00234{margin-left:-2.277000px;}
._9_c00234{margin-left:-1.089000px;}
._7_c00234{width:1.485000px;}
._10_c00234{width:2.835000px;}
._6_c00234{width:4.128000px;}
._c_c00234{width:5.742000px;}
._f_c00234{width:7.506000px;}
._b_c00234{width:9.405000px;}
._16_c00234{width:11.016000px;}
._12_c00234{width:12.150000px;}
._18_c00234{width:13.476000px;}
._d_c00234{width:14.814000px;}
._1d_c00234{width:15.927000px;}
._1c_c00234{width:17.037000px;}
._1b_c00234{width:19.239000px;}
._26_c00234{width:20.874000px;}
._23_c00234{width:22.071000px;}
._24_c00234{width:24.363000px;}
._25_c00234{width:25.404000px;}
._19_c00234{width:26.844000px;}
._1a_c00234{width:28.215000px;}
._e_c00234{width:29.814000px;}
._15_c00234{width:34.857000px;}
._1e_c00234{width:36.081000px;}
._20_c00234{width:37.533000px;}
._13_c00234{width:38.745000px;}
._a_c00234{width:44.253000px;}
._22_c00234{width:115.668000px;}
._21_c00234{width:130.062000px;}
._17_c00234{width:230.727000px;}
._1f_c00234{width:307.827000px;}
.fc2_c00234{color:transparent;}
.fc1_c00234{color:rgb(128,128,128);}
.fc0_c00234{color:rgb(0,0,0);}
.fs9_c00234{font-size:48.000000px;}
.fs8_c00234{font-size:51.000000px;}
.fs4_c00234{font-size:57.000000px;}
.fs3_c00234{font-size:60.000000px;}
.fs7_c00234{font-size:72.000000px;}
.fs2_c00234{font-size:78.000000px;}
.fs6_c00234{font-size:81.000000px;}
.fs0_c00234{font-size:99.000000px;}
.fs1_c00234{font-size:132.000000px;}
.fs5_c00234{font-size:279.000000px;}
.y0_c00234{bottom:0.000000px;}
.y26_c00234{bottom:3.105000px;}
.y25_c00234{bottom:7.228371px;}
.y24_c00234{bottom:78.015000px;}
.y23_c00234{bottom:102.915000px;}
.y22_c00234{bottom:127.215000px;}
.y21_c00234{bottom:151.665000px;}
.y20_c00234{bottom:176.565000px;}
.y1f_c00234{bottom:200.865000px;}
.y1e_c00234{bottom:225.465000px;}
.y1d_c00234{bottom:249.165000px;}
.y1c_c00234{bottom:273.015000px;}
.y1b_c00234{bottom:298.815000px;}
.y1a_c00234{bottom:322.665000px;}
.y19_c00234{bottom:346.965000px;}
.y18_c00234{bottom:371.265000px;}
.y17_c00234{bottom:395.565000px;}
.y16_c00234{bottom:419.865000px;}
.y15_c00234{bottom:443.565000px;}
.y14_c00234{bottom:467.565000px;}
.y13_c00234{bottom:492.165000px;}
.y12_c00234{bottom:516.465000px;}
.y11_c00234{bottom:540.765000px;}
.y10_c00234{bottom:564.615000px;}
.yf_c00234{bottom:588.315000px;}
.ye_c00234{bottom:611.865000px;}
.yd_c00234{bottom:635.865000px;}
.yc_c00234{bottom:659.865000px;}
.yb_c00234{bottom:683.865000px;}
.ya_c00234{bottom:707.865000px;}
.y9_c00234{bottom:732.765000px;}
.y8_c00234{bottom:756.465000px;}
.y7_c00234{bottom:780.615000px;}
.y6_c00234{bottom:805.665000px;}
.y5_c00234{bottom:829.665000px;}
.y3_c00234{bottom:840.465000px;}
.y4_c00234{bottom:854.265000px;}
.y2_c00234{bottom:903.915000px;}
.y1_c00234{bottom:936.315000px;}
.h8_c00234{height:13.200074px;}
.h9_c00234{height:43.804688px;}
.h7_c00234{height:51.398438px;}
.h5_c00234{height:79.497070px;}
.h6_c00234{height:91.160156px;}
.h3_c00234{height:98.756836px;}
.h2_c00234{height:167.126953px;}
.h4_c00234{height:273.823242px;}
.h0_c00234{height:989.025000px;}
.h1_c00234{height:989.250000px;}
.w1_c00234{width:104.875500px;}
.w0_c00234{width:672.000000px;}
.x0_c00234{left:0.000000px;}
.xc_c00234{left:34.050000px;}
.x8_c00234{left:41.250000px;}
.x7_c00234{left:51.900000px;}
.xb_c00234{left:54.600000px;}
.xa_c00234{left:55.950000px;}
.x9_c00234{left:57.600000px;}
.x6_c00234{left:59.700000px;}
.x5_c00234{left:60.750000px;}
.x3_c00234{left:61.800000px;}
.x1_c00234{left:89.400000px;}
.x4_c00234{left:97.200000px;}
.x2_c00234{left:135.900000px;}
.xe_c00234{left:287.814240px;}
.xd_c00234{left:478.950000px;}
@media print{
.v0_c00234{vertical-align:0.000000pt;}
.v1_c00234{vertical-align:134.400000pt;}
.ls3_c00234{letter-spacing:0.000000pt;}
.ls0_c00234{letter-spacing:6.400000pt;}
.ls2_c00234{letter-spacing:9.170667pt;}
.ls1_c00234{letter-spacing:12.090667pt;}
.ws1_c00234{word-spacing:-62.000000pt;}
.ws0_c00234{word-spacing:-21.208000pt;}
.ws2_c00234{word-spacing:-15.424000pt;}
.ws4_c00234{word-spacing:0.000000pt;}
.ws3_c00234{word-spacing:10.018667pt;}
._8_c00234{margin-left:-17.965333pt;}
._11_c00234{margin-left:-12.021333pt;}
._2_c00234{margin-left:-9.480000pt;}
._14_c00234{margin-left:-7.248000pt;}
._4_c00234{margin-left:-6.336000pt;}
._3_c00234{margin-left:-5.397333pt;}
._5_c00234{margin-left:-4.210667pt;}
._0_c00234{margin-left:-3.256000pt;}
._1_c00234{margin-left:-2.024000pt;}
._9_c00234{margin-left:-0.968000pt;}
._7_c00234{width:1.320000pt;}
._10_c00234{width:2.520000pt;}
._6_c00234{width:3.669333pt;}
._c_c00234{width:5.104000pt;}
._f_c00234{width:6.672000pt;}
._b_c00234{width:8.360000pt;}
._16_c00234{width:9.792000pt;}
._12_c00234{width:10.800000pt;}
._18_c00234{width:11.978667pt;}
._d_c00234{width:13.168000pt;}
._1d_c00234{width:14.157333pt;}
._1c_c00234{width:15.144000pt;}
._1b_c00234{width:17.101333pt;}
._26_c00234{width:18.554667pt;}
._23_c00234{width:19.618667pt;}
._24_c00234{width:21.656000pt;}
._25_c00234{width:22.581333pt;}
._19_c00234{width:23.861333pt;}
._1a_c00234{width:25.080000pt;}
._e_c00234{width:26.501333pt;}
._15_c00234{width:30.984000pt;}
._1e_c00234{width:32.072000pt;}
._20_c00234{width:33.362667pt;}
._13_c00234{width:34.440000pt;}
._a_c00234{width:39.336000pt;}
._22_c00234{width:102.816000pt;}
._21_c00234{width:115.610667pt;}
._17_c00234{width:205.090667pt;}
._1f_c00234{width:273.624000pt;}
.fs9_c00234{font-size:42.666667pt;}
.fs8_c00234{font-size:45.333333pt;}
.fs4_c00234{font-size:50.666667pt;}
.fs3_c00234{font-size:53.333333pt;}
.fs7_c00234{font-size:64.000000pt;}
.fs2_c00234{font-size:69.333333pt;}
.fs6_c00234{font-size:72.000000pt;}
.fs0_c00234{font-size:88.000000pt;}
.fs1_c00234{font-size:117.333333pt;}
.fs5_c00234{font-size:248.000000pt;}
.y0_c00234{bottom:0.000000pt;}
.y26_c00234{bottom:2.760000pt;}
.y25_c00234{bottom:6.425219pt;}
.y24_c00234{bottom:69.346667pt;}
.y23_c00234{bottom:91.480000pt;}
.y22_c00234{bottom:113.080000pt;}
.y21_c00234{bottom:134.813333pt;}
.y20_c00234{bottom:156.946667pt;}
.y1f_c00234{bottom:178.546667pt;}
.y1e_c00234{bottom:200.413333pt;}
.y1d_c00234{bottom:221.480000pt;}
.y1c_c00234{bottom:242.680000pt;}
.y1b_c00234{bottom:265.613333pt;}
.y1a_c00234{bottom:286.813333pt;}
.y19_c00234{bottom:308.413333pt;}
.y18_c00234{bottom:330.013333pt;}
.y17_c00234{bottom:351.613333pt;}
.y16_c00234{bottom:373.213333pt;}
.y15_c00234{bottom:394.280000pt;}
.y14_c00234{bottom:415.613333pt;}
.y13_c00234{bottom:437.480000pt;}
.y12_c00234{bottom:459.080000pt;}
.y11_c00234{bottom:480.680000pt;}
.y10_c00234{bottom:501.880000pt;}
.yf_c00234{bottom:522.946667pt;}
.ye_c00234{bottom:543.880000pt;}
.yd_c00234{bottom:565.213333pt;}
.yc_c00234{bottom:586.546667pt;}
.yb_c00234{bottom:607.880000pt;}
.ya_c00234{bottom:629.213333pt;}
.y9_c00234{bottom:651.346667pt;}
.y8_c00234{bottom:672.413333pt;}
.y7_c00234{bottom:693.880000pt;}
.y6_c00234{bottom:716.146667pt;}
.y5_c00234{bottom:737.480000pt;}
.y3_c00234{bottom:747.080000pt;}
.y4_c00234{bottom:759.346667pt;}
.y2_c00234{bottom:803.480000pt;}
.y1_c00234{bottom:832.280000pt;}
.h8_c00234{height:11.733399pt;}
.h9_c00234{height:38.937500pt;}
.h7_c00234{height:45.687500pt;}
.h5_c00234{height:70.664062pt;}
.h6_c00234{height:81.031250pt;}
.h3_c00234{height:87.783854pt;}
.h2_c00234{height:148.557292pt;}
.h4_c00234{height:243.398438pt;}
.h0_c00234{height:879.133333pt;}
.h1_c00234{height:879.333333pt;}
.w1_c00234{width:93.222667pt;}
.w0_c00234{width:597.333333pt;}
.x0_c00234{left:0.000000pt;}
.xc_c00234{left:30.266667pt;}
.x8_c00234{left:36.666667pt;}
.x7_c00234{left:46.133333pt;}
.xb_c00234{left:48.533333pt;}
.xa_c00234{left:49.733333pt;}
.x9_c00234{left:51.200000pt;}
.x6_c00234{left:53.066667pt;}
.x5_c00234{left:54.000000pt;}
.x3_c00234{left:54.933333pt;}
.x1_c00234{left:79.466667pt;}
.x4_c00234{left:86.400000pt;}
.x2_c00234{left:120.800000pt;}
.xe_c00234{left:255.834880pt;}
.xd_c00234{left:425.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_d51c58f18e74ed59cbcc0cb7.woff2')format("woff");}.ff1_c00235{font-family:ff1_c00235;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00235;src:url('chunks/assets/font_9e7c40fe980b7799c0f56dc0.woff2')format("woff");}.ff2_c00235{font-family:ff2_c00235;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00235;src:url('chunks/assets/font_eb8806ec4445bb39adba9102.woff2')format("woff");}.ff3_c00235{font-family:ff3_c00235;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00235;src:url('chunks/assets/font_f704fae7388b5fdfe03f8762.woff2')format("woff");}.ff4_c00235{font-family:ff4_c00235;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00235;src:url('chunks/assets/font_cae3f74b3b7579921a5397b8.woff2')format("woff");}.ff5_c00235{font-family:ff5_c00235;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00235;src:url('chunks/assets/font_e053dfeee860dcdd1049b6bc.woff2')format("woff");}.ff6_c00235{font-family:ff6_c00235;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00235;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c00235{font-family:ff7_c00235;line-height:1.219238;font-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_c00235{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,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;}
.ls2_c00235{letter-spacing:0.000000px;}
.ls3_c00235{letter-spacing:3.000000px;}
.ls4_c00235{letter-spacing:6.000000px;}
.ls1_c00235{letter-spacing:20.400000px;}
.ls0_c00235{letter-spacing:21.000000px;}
.sc__c00235{text-shadow:none;}
.sc0_c00235{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00235{-webkit-text-stroke:0px transparent;}
.sc0_c00235{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00235{word-spacing:-67.686000px;}
.ws3_c00235{word-spacing:-34.500000px;}
.ws5_c00235{word-spacing:-27.000000px;}
.ws2_c00235{word-spacing:-20.250000px;}
.ws4_c00235{word-spacing:-17.352000px;}
.ws0_c00235{word-spacing:-0.936000px;}
.ws6_c00235{word-spacing:0.000000px;}
._16_c00235{margin-left:-19.374000px;}
._c_c00235{margin-left:-17.334000px;}
._1f_c00235{margin-left:-14.985000px;}
._17_c00235{margin-left:-13.851000px;}
._18_c00235{margin-left:-12.312000px;}
._10_c00235{margin-left:-11.178000px;}
._12_c00235{margin-left:-9.234000px;}
._f_c00235{margin-left:-7.452000px;}
._e_c00235{margin-left:-5.670000px;}
._8_c00235{margin-left:-3.888000px;}
._d_c00235{margin-left:-2.106000px;}
._6_c00235{margin-left:-1.053000px;}
._9_c00235{width:1.620000px;}
._2_c00235{width:2.997000px;}
._1_c00235{width:4.536000px;}
._7_c00235{width:5.751000px;}
._0_c00235{width:7.209000px;}
._5_c00235{width:8.991000px;}
._11_c00235{width:10.449000px;}
._4_c00235{width:11.664000px;}
._a_c00235{width:13.341000px;}
._14_c00235{width:14.499000px;}
._15_c00235{width:15.657000px;}
._20_c00235{width:17.739000px;}
._1a_c00235{width:24.606000px;}
._13_c00235{width:26.268000px;}
._1d_c00235{width:30.045000px;}
._3_c00235{width:31.995000px;}
._21_c00235{width:34.830000px;}
._1c_c00235{width:42.279000px;}
._b_c00235{width:130.647000px;}
._19_c00235{width:156.897000px;}
._1b_c00235{width:756.498000px;}
._1e_c00235{width:1056.573000px;}
.fc2_c00235{color:transparent;}
.fc1_c00235{color:rgb(128,128,128);}
.fc0_c00235{color:rgb(0,0,0);}
.fs7_c00235{font-size:48.000000px;}
.fs4_c00235{font-size:60.000000px;}
.fs3_c00235{font-size:63.000000px;}
.fs1_c00235{font-size:69.000000px;}
.fs2_c00235{font-size:72.000000px;}
.fs0_c00235{font-size:81.000000px;}
.fs5_c00235{font-size:87.000000px;}
.fs6_c00235{font-size:108.000000px;}
.y0_c00235{bottom:0.000000px;}
.y26_c00235{bottom:3.105000px;}
.y25_c00235{bottom:7.228357px;}
.y23_c00235{bottom:70.830000px;}
.y22_c00235{bottom:94.830000px;}
.y21_c00235{bottom:120.480000px;}
.y20_c00235{bottom:144.780000px;}
.y1f_c00235{bottom:169.830000px;}
.y1e_c00235{bottom:194.130000px;}
.y1d_c00235{bottom:218.730000px;}
.y24_c00235{bottom:223.380000px;}
.y1c_c00235{bottom:243.330000px;}
.y1b_c00235{bottom:267.630000px;}
.y1a_c00235{bottom:292.230000px;}
.y19_c00235{bottom:316.530000px;}
.y18_c00235{bottom:340.680000px;}
.y17_c00235{bottom:365.130000px;}
.y16_c00235{bottom:389.580000px;}
.y15_c00235{bottom:415.080000px;}
.y14_c00235{bottom:438.180000px;}
.y13_c00235{bottom:462.030000px;}
.y12_c00235{bottom:489.330000px;}
.y11_c00235{bottom:509.580000px;}
.y10_c00235{bottom:533.880000px;}
.yf_c00235{bottom:558.630000px;}
.ye_c00235{bottom:582.180000px;}
.yd_c00235{bottom:606.180000px;}
.yc_c00235{bottom:630.480000px;}
.yb_c00235{bottom:654.480000px;}
.ya_c00235{bottom:678.480000px;}
.y9_c00235{bottom:702.630000px;}
.y8_c00235{bottom:726.930000px;}
.y7_c00235{bottom:750.930000px;}
.y6_c00235{bottom:774.930000px;}
.y5_c00235{bottom:799.230000px;}
.y4_c00235{bottom:822.930000px;}
.y3_c00235{bottom:847.230000px;}
.y2_c00235{bottom:872.130000px;}
.y1_c00235{bottom:896.730000px;}
.h6_c00235{height:13.200074px;}
.h7_c00235{height:43.804688px;}
.h4_c00235{height:61.831055px;}
.h1_c00235{height:79.497070px;}
.h2_c00235{height:84.269531px;}
.h3_c00235{height:91.176000px;}
.h5_c00235{height:108.843750px;}
.h0_c00235{height:995.250000px;}
.w2_c00235{width:104.875500px;}
.w0_c00235{width:667.425000px;}
.w1_c00235{width:667.500000px;}
.x0_c00235{left:0.000000px;}
.x1_c00235{left:38.850000px;}
.x6_c00235{left:41.100000px;}
.x5_c00235{left:42.150000px;}
.x7_c00235{left:61.800000px;}
.x8_c00235{left:88.050000px;}
.x9_c00235{left:96.900000px;}
.x4_c00235{left:129.150000px;}
.x3_c00235{left:130.500000px;}
.x2_c00235{left:132.600000px;}
.xc_c00235{left:133.650000px;}
.xa_c00235{left:135.300000px;}
.xb_c00235{left:145.500000px;}
.xd_c00235{left:263.850000px;}
.x10_c00235{left:285.526749px;}
.xe_c00235{left:558.900000px;}
.xf_c00235{left:565.350000px;}
@media print{
.v0_c00235{vertical-align:0.000000pt;}
.ls2_c00235{letter-spacing:0.000000pt;}
.ls3_c00235{letter-spacing:2.666667pt;}
.ls4_c00235{letter-spacing:5.333333pt;}
.ls1_c00235{letter-spacing:18.133333pt;}
.ls0_c00235{letter-spacing:18.666667pt;}
.ws1_c00235{word-spacing:-60.165333pt;}
.ws3_c00235{word-spacing:-30.666667pt;}
.ws5_c00235{word-spacing:-24.000000pt;}
.ws2_c00235{word-spacing:-18.000000pt;}
.ws4_c00235{word-spacing:-15.424000pt;}
.ws0_c00235{word-spacing:-0.832000pt;}
.ws6_c00235{word-spacing:0.000000pt;}
._16_c00235{margin-left:-17.221333pt;}
._c_c00235{margin-left:-15.408000pt;}
._1f_c00235{margin-left:-13.320000pt;}
._17_c00235{margin-left:-12.312000pt;}
._18_c00235{margin-left:-10.944000pt;}
._10_c00235{margin-left:-9.936000pt;}
._12_c00235{margin-left:-8.208000pt;}
._f_c00235{margin-left:-6.624000pt;}
._e_c00235{margin-left:-5.040000pt;}
._8_c00235{margin-left:-3.456000pt;}
._d_c00235{margin-left:-1.872000pt;}
._6_c00235{margin-left:-0.936000pt;}
._9_c00235{width:1.440000pt;}
._2_c00235{width:2.664000pt;}
._1_c00235{width:4.032000pt;}
._7_c00235{width:5.112000pt;}
._0_c00235{width:6.408000pt;}
._5_c00235{width:7.992000pt;}
._11_c00235{width:9.288000pt;}
._4_c00235{width:10.368000pt;}
._a_c00235{width:11.858667pt;}
._14_c00235{width:12.888000pt;}
._15_c00235{width:13.917333pt;}
._20_c00235{width:15.768000pt;}
._1a_c00235{width:21.872000pt;}
._13_c00235{width:23.349333pt;}
._1d_c00235{width:26.706667pt;}
._3_c00235{width:28.440000pt;}
._21_c00235{width:30.960000pt;}
._1c_c00235{width:37.581333pt;}
._b_c00235{width:116.130667pt;}
._19_c00235{width:139.464000pt;}
._1b_c00235{width:672.442667pt;}
._1e_c00235{width:939.176000pt;}
.fs7_c00235{font-size:42.666667pt;}
.fs4_c00235{font-size:53.333333pt;}
.fs3_c00235{font-size:56.000000pt;}
.fs1_c00235{font-size:61.333333pt;}
.fs2_c00235{font-size:64.000000pt;}
.fs0_c00235{font-size:72.000000pt;}
.fs5_c00235{font-size:77.333333pt;}
.fs6_c00235{font-size:96.000000pt;}
.y0_c00235{bottom:0.000000pt;}
.y26_c00235{bottom:2.760000pt;}
.y25_c00235{bottom:6.425206pt;}
.y23_c00235{bottom:62.960000pt;}
.y22_c00235{bottom:84.293333pt;}
.y21_c00235{bottom:107.093333pt;}
.y20_c00235{bottom:128.693333pt;}
.y1f_c00235{bottom:150.960000pt;}
.y1e_c00235{bottom:172.560000pt;}
.y1d_c00235{bottom:194.426667pt;}
.y24_c00235{bottom:198.560000pt;}
.y1c_c00235{bottom:216.293333pt;}
.y1b_c00235{bottom:237.893333pt;}
.y1a_c00235{bottom:259.760000pt;}
.y19_c00235{bottom:281.360000pt;}
.y18_c00235{bottom:302.826667pt;}
.y17_c00235{bottom:324.560000pt;}
.y16_c00235{bottom:346.293333pt;}
.y15_c00235{bottom:368.960000pt;}
.y14_c00235{bottom:389.493333pt;}
.y13_c00235{bottom:410.693333pt;}
.y12_c00235{bottom:434.960000pt;}
.y11_c00235{bottom:452.960000pt;}
.y10_c00235{bottom:474.560000pt;}
.yf_c00235{bottom:496.560000pt;}
.ye_c00235{bottom:517.493333pt;}
.yd_c00235{bottom:538.826667pt;}
.yc_c00235{bottom:560.426667pt;}
.yb_c00235{bottom:581.760000pt;}
.ya_c00235{bottom:603.093333pt;}
.y9_c00235{bottom:624.560000pt;}
.y8_c00235{bottom:646.160000pt;}
.y7_c00235{bottom:667.493333pt;}
.y6_c00235{bottom:688.826667pt;}
.y5_c00235{bottom:710.426667pt;}
.y4_c00235{bottom:731.493333pt;}
.y3_c00235{bottom:753.093333pt;}
.y2_c00235{bottom:775.226667pt;}
.y1_c00235{bottom:797.093333pt;}
.h6_c00235{height:11.733399pt;}
.h7_c00235{height:38.937500pt;}
.h4_c00235{height:54.960938pt;}
.h1_c00235{height:70.664062pt;}
.h2_c00235{height:74.906250pt;}
.h3_c00235{height:81.045333pt;}
.h5_c00235{height:96.750000pt;}
.h0_c00235{height:884.666667pt;}
.w2_c00235{width:93.222667pt;}
.w0_c00235{width:593.266667pt;}
.w1_c00235{width:593.333333pt;}
.x0_c00235{left:0.000000pt;}
.x1_c00235{left:34.533333pt;}
.x6_c00235{left:36.533333pt;}
.x5_c00235{left:37.466667pt;}
.x7_c00235{left:54.933333pt;}
.x8_c00235{left:78.266667pt;}
.x9_c00235{left:86.133333pt;}
.x4_c00235{left:114.800000pt;}
.x3_c00235{left:116.000000pt;}
.x2_c00235{left:117.866667pt;}
.xc_c00235{left:118.800000pt;}
.xa_c00235{left:120.266667pt;}
.xb_c00235{left:129.333333pt;}
.xd_c00235{left:234.533333pt;}
.x10_c00235{left:253.801554pt;}
.xe_c00235{left:496.800000pt;}
.xf_c00235{left:502.533333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a81f158a0b5e9dfd1cae97e8.woff2')format("woff");}.ff1_c00236{font-family:ff1_c00236;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00236;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff2_c00236{font-family:ff2_c00236;line-height:1.219238;font-style: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;}
.ls0_c00236{letter-spacing:0.000000px;}
.sc__c00236{text-shadow:none;}
.sc0_c00236{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00236{-webkit-text-stroke:0px transparent;}
.sc0_c00236{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00236{word-spacing:-20.250000px;}
.ws1_c00236{word-spacing:0.000000px;}
._14_c00236{margin-left:-23.733000px;}
._12_c00236{margin-left:-17.415000px;}
._11_c00236{margin-left:-13.446000px;}
._9_c00236{margin-left:-7.695000px;}
._13_c00236{margin-left:-6.642000px;}
._8_c00236{margin-left:-5.265000px;}
._6_c00236{margin-left:-3.888000px;}
._2_c00236{margin-left:-1.944000px;}
._7_c00236{width:1.215000px;}
._4_c00236{width:2.511000px;}
._5_c00236{width:3.564000px;}
._0_c00236{width:4.779000px;}
._3_c00236{width:6.318000px;}
._a_c00236{width:7.371000px;}
._1_c00236{width:8.991000px;}
._d_c00236{width:10.044000px;}
._c_c00236{width:11.259000px;}
._f_c00236{width:13.122000px;}
._b_c00236{width:14.823000px;}
._e_c00236{width:16.281000px;}
._10_c00236{width:17.577000px;}
._16_c00236{width:31.995000px;}
._15_c00236{width:312.903000px;}
.fc2_c00236{color:transparent;}
.fc1_c00236{color:rgb(128,128,128);}
.fc0_c00236{color:rgb(0,0,0);}
.fs1_c00236{font-size:48.000000px;}
.fs0_c00236{font-size:81.000000px;}
.y0_c00236{bottom:0.000000px;}
.y25_c00236{bottom:3.105000px;}
.y24_c00236{bottom:7.228363px;}
.y23_c00236{bottom:74.250000px;}
.y22_c00236{bottom:100.200000px;}
.y21_c00236{bottom:124.650000px;}
.y20_c00236{bottom:150.150000px;}
.y1f_c00236{bottom:174.600000px;}
.y1e_c00236{bottom:198.750000px;}
.y1d_c00236{bottom:223.800000px;}
.y1c_c00236{bottom:248.100000px;}
.y1b_c00236{bottom:272.700000px;}
.y1a_c00236{bottom:297.300000px;}
.y19_c00236{bottom:321.300000px;}
.y18_c00236{bottom:345.300000px;}
.y17_c00236{bottom:369.900000px;}
.y16_c00236{bottom:393.900000px;}
.y15_c00236{bottom:418.500000px;}
.y14_c00236{bottom:442.500000px;}
.y13_c00236{bottom:466.800000px;}
.y12_c00236{bottom:491.100000px;}
.y11_c00236{bottom:515.700000px;}
.y10_c00236{bottom:539.700000px;}
.yf_c00236{bottom:563.700000px;}
.ye_c00236{bottom:587.700000px;}
.yd_c00236{bottom:611.850000px;}
.yc_c00236{bottom:635.250000px;}
.yb_c00236{bottom:659.550000px;}
.ya_c00236{bottom:684.150000px;}
.y9_c00236{bottom:708.450000px;}
.y8_c00236{bottom:733.050000px;}
.y7_c00236{bottom:757.050000px;}
.y6_c00236{bottom:781.650000px;}
.y5_c00236{bottom:806.550000px;}
.y4_c00236{bottom:830.550000px;}
.y3_c00236{bottom:855.000000px;}
.y2_c00236{bottom:879.300000px;}
.y1_c00236{bottom:903.750000px;}
.h3_c00236{height:13.200074px;}
.h4_c00236{height:43.804688px;}
.h2_c00236{height:79.497070px;}
.h1_c00236{height:982.500000px;}
.h0_c00236{height:982.800000px;}
.w2_c00236{width:104.875500px;}
.w0_c00236{width:667.425000px;}
.w1_c00236{width:667.500000px;}
.x0_c00236{left:0.000000px;}
.x1_c00236{left:40.500000px;}
.x2_c00236{left:41.550000px;}
.x3_c00236{left:43.950000px;}
.x4_c00236{left:46.950000px;}
.x5_c00236{left:48.600000px;}
.x6_c00236{left:49.950000px;}
.x7_c00236{left:51.000000px;}
.x8_c00236{left:52.950000px;}
.x9_c00236{left:54.000000px;}
.xa_c00236{left:55.050000px;}
.xc_c00236{left:56.250000px;}
.xb_c00236{left:79.650000px;}
.xe_c00236{left:285.526749px;}
.xd_c00236{left:516.000000px;}
@media print{
.v0_c00236{vertical-align:0.000000pt;}
.ls0_c00236{letter-spacing:0.000000pt;}
.ws0_c00236{word-spacing:-18.000000pt;}
.ws1_c00236{word-spacing:0.000000pt;}
._14_c00236{margin-left:-21.096000pt;}
._12_c00236{margin-left:-15.480000pt;}
._11_c00236{margin-left:-11.952000pt;}
._9_c00236{margin-left:-6.840000pt;}
._13_c00236{margin-left:-5.904000pt;}
._8_c00236{margin-left:-4.680000pt;}
._6_c00236{margin-left:-3.456000pt;}
._2_c00236{margin-left:-1.728000pt;}
._7_c00236{width:1.080000pt;}
._4_c00236{width:2.232000pt;}
._5_c00236{width:3.168000pt;}
._0_c00236{width:4.248000pt;}
._3_c00236{width:5.616000pt;}
._a_c00236{width:6.552000pt;}
._1_c00236{width:7.992000pt;}
._d_c00236{width:8.928000pt;}
._c_c00236{width:10.008000pt;}
._f_c00236{width:11.664000pt;}
._b_c00236{width:13.176000pt;}
._e_c00236{width:14.472000pt;}
._10_c00236{width:15.624000pt;}
._16_c00236{width:28.440000pt;}
._15_c00236{width:278.136000pt;}
.fs1_c00236{font-size:42.666667pt;}
.fs0_c00236{font-size:72.000000pt;}
.y0_c00236{bottom:0.000000pt;}
.y25_c00236{bottom:2.760000pt;}
.y24_c00236{bottom:6.425212pt;}
.y23_c00236{bottom:66.000000pt;}
.y22_c00236{bottom:89.066667pt;}
.y21_c00236{bottom:110.800000pt;}
.y20_c00236{bottom:133.466667pt;}
.y1f_c00236{bottom:155.200000pt;}
.y1e_c00236{bottom:176.666667pt;}
.y1d_c00236{bottom:198.933333pt;}
.y1c_c00236{bottom:220.533333pt;}
.y1b_c00236{bottom:242.400000pt;}
.y1a_c00236{bottom:264.266667pt;}
.y19_c00236{bottom:285.600000pt;}
.y18_c00236{bottom:306.933333pt;}
.y17_c00236{bottom:328.800000pt;}
.y16_c00236{bottom:350.133333pt;}
.y15_c00236{bottom:372.000000pt;}
.y14_c00236{bottom:393.333333pt;}
.y13_c00236{bottom:414.933333pt;}
.y12_c00236{bottom:436.533333pt;}
.y11_c00236{bottom:458.400000pt;}
.y10_c00236{bottom:479.733333pt;}
.yf_c00236{bottom:501.066667pt;}
.ye_c00236{bottom:522.400000pt;}
.yd_c00236{bottom:543.866667pt;}
.yc_c00236{bottom:564.666667pt;}
.yb_c00236{bottom:586.266667pt;}
.ya_c00236{bottom:608.133333pt;}
.y9_c00236{bottom:629.733333pt;}
.y8_c00236{bottom:651.600000pt;}
.y7_c00236{bottom:672.933333pt;}
.y6_c00236{bottom:694.800000pt;}
.y5_c00236{bottom:716.933333pt;}
.y4_c00236{bottom:738.266667pt;}
.y3_c00236{bottom:760.000000pt;}
.y2_c00236{bottom:781.600000pt;}
.y1_c00236{bottom:803.333333pt;}
.h3_c00236{height:11.733399pt;}
.h4_c00236{height:38.937500pt;}
.h2_c00236{height:70.664062pt;}
.h1_c00236{height:873.333333pt;}
.h0_c00236{height:873.600000pt;}
.w2_c00236{width:93.222667pt;}
.w0_c00236{width:593.266667pt;}
.w1_c00236{width:593.333333pt;}
.x0_c00236{left:0.000000pt;}
.x1_c00236{left:36.000000pt;}
.x2_c00236{left:36.933333pt;}
.x3_c00236{left:39.066667pt;}
.x4_c00236{left:41.733333pt;}
.x5_c00236{left:43.200000pt;}
.x6_c00236{left:44.400000pt;}
.x7_c00236{left:45.333333pt;}
.x8_c00236{left:47.066667pt;}
.x9_c00236{left:48.000000pt;}
.xa_c00236{left:48.933333pt;}
.xc_c00236{left:50.000000pt;}
.xb_c00236{left:70.800000pt;}
.xe_c00236{left:253.801554pt;}
.xd_c00236{left:458.666667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_019688bc54adf9af6dccab68.woff2')format("woff");}.ff1_c00237{font-family:ff1_c00237;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00237;src:url('chunks/assets/font_919c542b0ebb931ea20ef7b5.woff2')format("woff");}.ff2_c00237{font-family:ff2_c00237;line-height:1.311035;font-style:normal;font-weight:normal;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_b0ec94058d63113fc0d53df3.woff2')format("woff");}.ff3_c00237{font-family:ff3_c00237;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00237;src:url('chunks/assets/font_5591054854fa16155ce7d3da.woff2')format("woff");}.ff4_c00237{font-family:ff4_c00237;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00237;src:url('chunks/assets/font_c107bfc1cd2028d817d6d22d.woff2')format("woff");}.ff5_c00237{font-family:ff5_c00237;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00237;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c00237{font-family:ff6_c00237;line-height:1.219238;font-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_c00237{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,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;}
.ls3_c00237{letter-spacing:0.000000px;}
.ls1_c00237{letter-spacing:4.350000px;}
.ls4_c00237{letter-spacing:9.000000px;}
.ls2_c00237{letter-spacing:14.802000px;}
.ls0_c00237{letter-spacing:23.448000px;}
.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;}
}
.ws3_c00237{word-spacing:-28.500000px;}
.ws0_c00237{word-spacing:-27.000000px;}
.ws2_c00237{word-spacing:-22.737000px;}
.ws1_c00237{word-spacing:-17.352000px;}
.ws6_c00237{word-spacing:-4.374000px;}
.ws7_c00237{word-spacing:0.000000px;}
.ws5_c00237{word-spacing:1.674000px;}
.ws4_c00237{word-spacing:3.648000px;}
._1a_c00237{margin-left:-11.421000px;}
._21_c00237{margin-left:-9.558000px;}
._e_c00237{margin-left:-8.100000px;}
._6_c00237{margin-left:-6.723000px;}
._1_c00237{margin-left:-4.536000px;}
._8_c00237{margin-left:-3.024000px;}
._4_c00237{margin-left:-1.944000px;}
._7_c00237{width:1.215000px;}
._2_c00237{width:3.159000px;}
._0_c00237{width:4.779000px;}
._3_c00237{width:6.075000px;}
._10_c00237{width:7.128000px;}
._5_c00237{width:9.072000px;}
._d_c00237{width:10.125000px;}
._c_c00237{width:11.340000px;}
._18_c00237{width:12.672000px;}
._11_c00237{width:13.716000px;}
._b_c00237{width:15.147000px;}
._15_c00237{width:17.820000px;}
._17_c00237{width:19.410000px;}
._a_c00237{width:22.680000px;}
._19_c00237{width:25.992000px;}
._13_c00237{width:29.241000px;}
._16_c00237{width:31.368000px;}
._12_c00237{width:33.471000px;}
._9_c00237{width:36.882000px;}
._1b_c00237{width:39.627000px;}
._22_c00237{width:95.364000px;}
._14_c00237{width:129.681000px;}
._1f_c00237{width:136.440000px;}
._1d_c00237{width:146.937000px;}
._1c_c00237{width:186.384000px;}
._20_c00237{width:242.013000px;}
._f_c00237{width:298.080000px;}
._1e_c00237{width:471.558000px;}
.fc2_c00237{color:transparent;}
.fc1_c00237{color:rgb(128,128,128);}
.fc0_c00237{color:rgb(0,0,0);}
.fs5_c00237{font-size:48.000000px;}
.fs4_c00237{font-size:57.000000px;}
.fs2_c00237{font-size:72.000000px;}
.fs3_c00237{font-size:78.000000px;}
.fs0_c00237{font-size:81.000000px;}
.fs1_c00237{font-size:108.000000px;}
.y0_c00237{bottom:0.000000px;}
.y23_c00237{bottom:3.105000px;}
.y22_c00237{bottom:7.228357px;}
.y21_c00237{bottom:73.530000px;}
.y20_c00237{bottom:98.880000px;}
.y1f_c00237{bottom:124.980000px;}
.y1e_c00237{bottom:149.280000px;}
.y1d_c00237{bottom:174.180000px;}
.y1c_c00237{bottom:199.080000px;}
.y1b_c00237{bottom:223.380000px;}
.y1a_c00237{bottom:248.430000px;}
.y19_c00237{bottom:273.780000px;}
.y18_c00237{bottom:295.980000px;}
.y17_c00237{bottom:321.930000px;}
.y16_c00237{bottom:346.380000px;}
.y15_c00237{bottom:373.230000px;}
.y14_c00237{bottom:396.930000px;}
.y13_c00237{bottom:420.480000px;}
.y12_c00237{bottom:444.480000px;}
.y11_c00237{bottom:469.230000px;}
.y10_c00237{bottom:493.380000px;}
.yf_c00237{bottom:517.830000px;}
.ye_c00237{bottom:541.980000px;}
.yd_c00237{bottom:590.280000px;}
.yc_c00237{bottom:636.180000px;}
.yb_c00237{bottom:662.130000px;}
.ya_c00237{bottom:687.180000px;}
.y9_c00237{bottom:711.780000px;}
.y8_c00237{bottom:735.180000px;}
.y7_c00237{bottom:762.030000px;}
.y6_c00237{bottom:783.630000px;}
.y5_c00237{bottom:809.730000px;}
.y4_c00237{bottom:832.680000px;}
.y3_c00237{bottom:856.980000px;}
.y2_c00237{bottom:879.930000px;}
.y1_c00237{bottom:905.880000px;}
.h6_c00237{height:13.200074px;}
.h7_c00237{height:43.804688px;}
.h5_c00237{height:72.168457px;}
.h1_c00237{height:79.497070px;}
.h3_c00237{height:84.269531px;}
.h4_c00237{height:98.756836px;}
.h2_c00237{height:108.843750px;}
.h0_c00237{height:995.250000px;}
.w2_c00237{width:104.875500px;}
.w0_c00237{width:667.425000px;}
.w1_c00237{width:667.500000px;}
.x0_c00237{left:0.000000px;}
.x16_c00237{left:29.400000px;}
.x13_c00237{left:31.500000px;}
.xd_c00237{left:36.000000px;}
.xe_c00237{left:37.500000px;}
.xf_c00237{left:38.700000px;}
.x5_c00237{left:41.850000px;}
.x3_c00237{left:45.000000px;}
.x11_c00237{left:86.100000px;}
.x17_c00237{left:123.450000px;}
.x15_c00237{left:125.100000px;}
.x14_c00237{left:126.150000px;}
.x12_c00237{left:127.650000px;}
.x10_c00237{left:131.550000px;}
.x8_c00237{left:134.100000px;}
.x7_c00237{left:135.900000px;}
.x6_c00237{left:137.400000px;}
.x4_c00237{left:139.050000px;}
.x1_c00237{left:143.850000px;}
.xc_c00237{left:167.700000px;}
.xb_c00237{left:183.300000px;}
.xa_c00237{left:199.050000px;}
.x19_c00237{left:285.526749px;}
.x18_c00237{left:562.500000px;}
.x9_c00237{left:595.350000px;}
.x2_c00237{left:600.750000px;}
@media print{
.v0_c00237{vertical-align:0.000000pt;}
.ls3_c00237{letter-spacing:0.000000pt;}
.ls1_c00237{letter-spacing:3.866667pt;}
.ls4_c00237{letter-spacing:8.000000pt;}
.ls2_c00237{letter-spacing:13.157333pt;}
.ls0_c00237{letter-spacing:20.842667pt;}
.ws3_c00237{word-spacing:-25.333333pt;}
.ws0_c00237{word-spacing:-24.000000pt;}
.ws2_c00237{word-spacing:-20.210667pt;}
.ws1_c00237{word-spacing:-15.424000pt;}
.ws6_c00237{word-spacing:-3.888000pt;}
.ws7_c00237{word-spacing:0.000000pt;}
.ws5_c00237{word-spacing:1.488000pt;}
.ws4_c00237{word-spacing:3.242667pt;}
._1a_c00237{margin-left:-10.152000pt;}
._21_c00237{margin-left:-8.496000pt;}
._e_c00237{margin-left:-7.200000pt;}
._6_c00237{margin-left:-5.976000pt;}
._1_c00237{margin-left:-4.032000pt;}
._8_c00237{margin-left:-2.688000pt;}
._4_c00237{margin-left:-1.728000pt;}
._7_c00237{width:1.080000pt;}
._2_c00237{width:2.808000pt;}
._0_c00237{width:4.248000pt;}
._3_c00237{width:5.400000pt;}
._10_c00237{width:6.336000pt;}
._5_c00237{width:8.064000pt;}
._d_c00237{width:9.000000pt;}
._c_c00237{width:10.080000pt;}
._18_c00237{width:11.264000pt;}
._11_c00237{width:12.192000pt;}
._b_c00237{width:13.464000pt;}
._15_c00237{width:15.840000pt;}
._17_c00237{width:17.253333pt;}
._a_c00237{width:20.160000pt;}
._19_c00237{width:23.104000pt;}
._13_c00237{width:25.992000pt;}
._16_c00237{width:27.882667pt;}
._12_c00237{width:29.752000pt;}
._9_c00237{width:32.784000pt;}
._1b_c00237{width:35.224000pt;}
._22_c00237{width:84.768000pt;}
._14_c00237{width:115.272000pt;}
._1f_c00237{width:121.280000pt;}
._1d_c00237{width:130.610667pt;}
._1c_c00237{width:165.674667pt;}
._20_c00237{width:215.122667pt;}
._f_c00237{width:264.960000pt;}
._1e_c00237{width:419.162667pt;}
.fs5_c00237{font-size:42.666667pt;}
.fs4_c00237{font-size:50.666667pt;}
.fs2_c00237{font-size:64.000000pt;}
.fs3_c00237{font-size:69.333333pt;}
.fs0_c00237{font-size:72.000000pt;}
.fs1_c00237{font-size:96.000000pt;}
.y0_c00237{bottom:0.000000pt;}
.y23_c00237{bottom:2.760000pt;}
.y22_c00237{bottom:6.425206pt;}
.y21_c00237{bottom:65.360000pt;}
.y20_c00237{bottom:87.893333pt;}
.y1f_c00237{bottom:111.093333pt;}
.y1e_c00237{bottom:132.693333pt;}
.y1d_c00237{bottom:154.826667pt;}
.y1c_c00237{bottom:176.960000pt;}
.y1b_c00237{bottom:198.560000pt;}
.y1a_c00237{bottom:220.826667pt;}
.y19_c00237{bottom:243.360000pt;}
.y18_c00237{bottom:263.093333pt;}
.y17_c00237{bottom:286.160000pt;}
.y16_c00237{bottom:307.893333pt;}
.y15_c00237{bottom:331.760000pt;}
.y14_c00237{bottom:352.826667pt;}
.y13_c00237{bottom:373.760000pt;}
.y12_c00237{bottom:395.093333pt;}
.y11_c00237{bottom:417.093333pt;}
.y10_c00237{bottom:438.560000pt;}
.yf_c00237{bottom:460.293333pt;}
.ye_c00237{bottom:481.760000pt;}
.yd_c00237{bottom:524.693333pt;}
.yc_c00237{bottom:565.493333pt;}
.yb_c00237{bottom:588.560000pt;}
.ya_c00237{bottom:610.826667pt;}
.y9_c00237{bottom:632.693333pt;}
.y8_c00237{bottom:653.493333pt;}
.y7_c00237{bottom:677.360000pt;}
.y6_c00237{bottom:696.560000pt;}
.y5_c00237{bottom:719.760000pt;}
.y4_c00237{bottom:740.160000pt;}
.y3_c00237{bottom:761.760000pt;}
.y2_c00237{bottom:782.160000pt;}
.y1_c00237{bottom:805.226667pt;}
.h6_c00237{height:11.733399pt;}
.h7_c00237{height:38.937500pt;}
.h5_c00237{height:64.149740pt;}
.h1_c00237{height:70.664062pt;}
.h3_c00237{height:74.906250pt;}
.h4_c00237{height:87.783854pt;}
.h2_c00237{height:96.750000pt;}
.h0_c00237{height:884.666667pt;}
.w2_c00237{width:93.222667pt;}
.w0_c00237{width:593.266667pt;}
.w1_c00237{width:593.333333pt;}
.x0_c00237{left:0.000000pt;}
.x16_c00237{left:26.133333pt;}
.x13_c00237{left:28.000000pt;}
.xd_c00237{left:32.000000pt;}
.xe_c00237{left:33.333333pt;}
.xf_c00237{left:34.400000pt;}
.x5_c00237{left:37.200000pt;}
.x3_c00237{left:40.000000pt;}
.x11_c00237{left:76.533333pt;}
.x17_c00237{left:109.733333pt;}
.x15_c00237{left:111.200000pt;}
.x14_c00237{left:112.133333pt;}
.x12_c00237{left:113.466667pt;}
.x10_c00237{left:116.933333pt;}
.x8_c00237{left:119.200000pt;}
.x7_c00237{left:120.800000pt;}
.x6_c00237{left:122.133333pt;}
.x4_c00237{left:123.600000pt;}
.x1_c00237{left:127.866667pt;}
.xc_c00237{left:149.066667pt;}
.xb_c00237{left:162.933333pt;}
.xa_c00237{left:176.933333pt;}
.x19_c00237{left:253.801554pt;}
.x18_c00237{left:500.000000pt;}
.x9_c00237{left:529.200000pt;}
.x2_c00237{left:534.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_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_6ca4a787ca5cabaae40961ad.woff2')format("woff");}.ff1_c00238{font-family:ff1_c00238;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00238;src:url('chunks/assets/font_8b212ff34eccbc5279e2b79c.woff2')format("woff");}.ff2_c00238{font-family:ff2_c00238;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00238;src:url('chunks/assets/font_30f19d7c356c0afe17da291c.woff2')format("woff");}.ff3_c00238{font-family:ff3_c00238;line-height:1.311035;font-style:normal;font-weight:normal;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_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff4_c00238{font-family:ff4_c00238;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00238;src:url('chunks/assets/font_b9f6390e08d6e0b437bc2cb1.woff2')format("woff");}.ff5_c00238{font-family:ff5_c00238;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00238;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c00238{font-family:ff6_c00238;line-height:1.219238;font-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_c00238{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,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;}
.ls1_c00238{letter-spacing:0.000000px;}
.ls0_c00238{letter-spacing:10.800000px;}
.sc__c00238{text-shadow:none;}
.sc0_c00238{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00238{-webkit-text-stroke:0px transparent;}
.sc0_c00238{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00238{word-spacing:-27.000000px;}
.ws1_c00238{word-spacing:-17.352000px;}
.ws2_c00238{word-spacing:0.000000px;}
._1d_c00238{margin-left:-24.120000px;}
._12_c00238{margin-left:-22.194000px;}
._1b_c00238{margin-left:-19.728000px;}
._5_c00238{margin-left:-15.741000px;}
._2_c00238{margin-left:-12.078000px;}
._21_c00238{margin-left:-9.963000px;}
._16_c00238{margin-left:-8.937000px;}
._15_c00238{margin-left:-7.794000px;}
._3_c00238{margin-left:-6.732000px;}
._7_c00238{margin-left:-5.049000px;}
._8_c00238{margin-left:-3.564000px;}
._6_c00238{margin-left:-1.584000px;}
._0_c00238{width:1.287000px;}
._4_c00238{width:3.267000px;}
._1_c00238{width:4.851000px;}
._10_c00238{width:5.922000px;}
._b_c00238{width:7.317000px;}
._c_c00238{width:8.352000px;}
._a_c00238{width:9.801000px;}
._14_c00238{width:11.376000px;}
._13_c00238{width:12.474000px;}
._19_c00238{width:13.734000px;}
._f_c00238{width:14.742000px;}
._d_c00238{width:16.344000px;}
._e_c00238{width:17.982000px;}
._17_c00238{width:22.338000px;}
._1f_c00238{width:26.514000px;}
._1e_c00238{width:31.077000px;}
._11_c00238{width:33.753000px;}
._1a_c00238{width:36.207000px;}
._22_c00238{width:46.503000px;}
._9_c00238{width:47.520000px;}
._18_c00238{width:225.675000px;}
._1c_c00238{width:237.366000px;}
._20_c00238{width:264.138000px;}
.fc2_c00238{color:transparent;}
.fc1_c00238{color:rgb(128,128,128);}
.fc0_c00238{color:rgb(0,0,0);}
.fs5_c00238{font-size:48.000000px;}
.fs4_c00238{font-size:66.000000px;}
.fs2_c00238{font-size:72.000000px;}
.fs1_c00238{font-size:81.000000px;}
.fs0_c00238{font-size:99.000000px;}
.fs3_c00238{font-size:108.000000px;}
.y0_c00238{bottom:0.000000px;}
.y26_c00238{bottom:3.105000px;}
.y25_c00238{bottom:7.228371px;}
.y24_c00238{bottom:65.565000px;}
.y23_c00238{bottom:90.765000px;}
.y22_c00238{bottom:116.565000px;}
.y21_c00238{bottom:141.465000px;}
.y20_c00238{bottom:166.065000px;}
.y1f_c00238{bottom:190.365000px;}
.y1e_c00238{bottom:215.115000px;}
.y1d_c00238{bottom:239.715000px;}
.y1c_c00238{bottom:264.315000px;}
.y1b_c00238{bottom:288.615000px;}
.y1a_c00238{bottom:312.915000px;}
.y19_c00238{bottom:336.915000px;}
.y18_c00238{bottom:361.215000px;}
.y17_c00238{bottom:385.215000px;}
.y16_c00238{bottom:409.815000px;}
.y15_c00238{bottom:433.815000px;}
.y14_c00238{bottom:458.415000px;}
.y13_c00238{bottom:482.415000px;}
.y12_c00238{bottom:506.715000px;}
.y11_c00238{bottom:530.865000px;}
.y10_c00238{bottom:555.165000px;}
.yf_c00238{bottom:579.165000px;}
.ye_c00238{bottom:603.165000px;}
.yd_c00238{bottom:629.115000px;}
.yc_c00238{bottom:651.465000px;}
.yb_c00238{bottom:675.465000px;}
.ya_c00238{bottom:700.365000px;}
.y9_c00238{bottom:724.365000px;}
.y8_c00238{bottom:748.665000px;}
.y7_c00238{bottom:772.965000px;}
.y6_c00238{bottom:798.315000px;}
.y5_c00238{bottom:822.915000px;}
.y4_c00238{bottom:846.915000px;}
.y3_c00238{bottom:870.465000px;}
.y2_c00238{bottom:895.815000px;}
.y1_c00238{bottom:929.565000px;}
.h7_c00238{height:13.200074px;}
.h8_c00238{height:43.804688px;}
.h3_c00238{height:79.497070px;}
.h4_c00238{height:84.269531px;}
.h6_c00238{height:91.160156px;}
.h5_c00238{height:108.843750px;}
.h2_c00238{height:115.870605px;}
.h0_c00238{height:989.025000px;}
.h1_c00238{height:989.250000px;}
.w1_c00238{width:104.875500px;}
.w0_c00238{width:672.000000px;}
.x0_c00238{left:0.000000px;}
.x2_c00238{left:42.750000px;}
.x4_c00238{left:79.650000px;}
.x1_c00238{left:91.500000px;}
.x5_c00238{left:100.800000px;}
.x7_c00238{left:287.814240px;}
.x6_c00238{left:492.750000px;}
.x3_c00238{left:516.150000px;}
@media print{
.v0_c00238{vertical-align:0.000000pt;}
.ls1_c00238{letter-spacing:0.000000pt;}
.ls0_c00238{letter-spacing:9.600000pt;}
.ws0_c00238{word-spacing:-24.000000pt;}
.ws1_c00238{word-spacing:-15.424000pt;}
.ws2_c00238{word-spacing:0.000000pt;}
._1d_c00238{margin-left:-21.440000pt;}
._12_c00238{margin-left:-19.728000pt;}
._1b_c00238{margin-left:-17.536000pt;}
._5_c00238{margin-left:-13.992000pt;}
._2_c00238{margin-left:-10.736000pt;}
._21_c00238{margin-left:-8.856000pt;}
._16_c00238{margin-left:-7.944000pt;}
._15_c00238{margin-left:-6.928000pt;}
._3_c00238{margin-left:-5.984000pt;}
._7_c00238{margin-left:-4.488000pt;}
._8_c00238{margin-left:-3.168000pt;}
._6_c00238{margin-left:-1.408000pt;}
._0_c00238{width:1.144000pt;}
._4_c00238{width:2.904000pt;}
._1_c00238{width:4.312000pt;}
._10_c00238{width:5.264000pt;}
._b_c00238{width:6.504000pt;}
._c_c00238{width:7.424000pt;}
._a_c00238{width:8.712000pt;}
._14_c00238{width:10.112000pt;}
._13_c00238{width:11.088000pt;}
._19_c00238{width:12.208000pt;}
._f_c00238{width:13.104000pt;}
._d_c00238{width:14.528000pt;}
._e_c00238{width:15.984000pt;}
._17_c00238{width:19.856000pt;}
._1f_c00238{width:23.568000pt;}
._1e_c00238{width:27.624000pt;}
._11_c00238{width:30.002667pt;}
._1a_c00238{width:32.184000pt;}
._22_c00238{width:41.336000pt;}
._9_c00238{width:42.240000pt;}
._18_c00238{width:200.600000pt;}
._1c_c00238{width:210.992000pt;}
._20_c00238{width:234.789333pt;}
.fs5_c00238{font-size:42.666667pt;}
.fs4_c00238{font-size:58.666667pt;}
.fs2_c00238{font-size:64.000000pt;}
.fs1_c00238{font-size:72.000000pt;}
.fs0_c00238{font-size:88.000000pt;}
.fs3_c00238{font-size:96.000000pt;}
.y0_c00238{bottom:0.000000pt;}
.y26_c00238{bottom:2.760000pt;}
.y25_c00238{bottom:6.425219pt;}
.y24_c00238{bottom:58.280000pt;}
.y23_c00238{bottom:80.680000pt;}
.y22_c00238{bottom:103.613333pt;}
.y21_c00238{bottom:125.746667pt;}
.y20_c00238{bottom:147.613333pt;}
.y1f_c00238{bottom:169.213333pt;}
.y1e_c00238{bottom:191.213333pt;}
.y1d_c00238{bottom:213.080000pt;}
.y1c_c00238{bottom:234.946667pt;}
.y1b_c00238{bottom:256.546667pt;}
.y1a_c00238{bottom:278.146667pt;}
.y19_c00238{bottom:299.480000pt;}
.y18_c00238{bottom:321.080000pt;}
.y17_c00238{bottom:342.413333pt;}
.y16_c00238{bottom:364.280000pt;}
.y15_c00238{bottom:385.613333pt;}
.y14_c00238{bottom:407.480000pt;}
.y13_c00238{bottom:428.813333pt;}
.y12_c00238{bottom:450.413333pt;}
.y11_c00238{bottom:471.880000pt;}
.y10_c00238{bottom:493.480000pt;}
.yf_c00238{bottom:514.813333pt;}
.ye_c00238{bottom:536.146667pt;}
.yd_c00238{bottom:559.213333pt;}
.yc_c00238{bottom:579.080000pt;}
.yb_c00238{bottom:600.413333pt;}
.ya_c00238{bottom:622.546667pt;}
.y9_c00238{bottom:643.880000pt;}
.y8_c00238{bottom:665.480000pt;}
.y7_c00238{bottom:687.080000pt;}
.y6_c00238{bottom:709.613333pt;}
.y5_c00238{bottom:731.480000pt;}
.y4_c00238{bottom:752.813333pt;}
.y3_c00238{bottom:773.746667pt;}
.y2_c00238{bottom:796.280000pt;}
.y1_c00238{bottom:826.280000pt;}
.h7_c00238{height:11.733399pt;}
.h8_c00238{height:38.937500pt;}
.h3_c00238{height:70.664062pt;}
.h4_c00238{height:74.906250pt;}
.h6_c00238{height:81.031250pt;}
.h5_c00238{height:96.750000pt;}
.h2_c00238{height:102.996094pt;}
.h0_c00238{height:879.133333pt;}
.h1_c00238{height:879.333333pt;}
.w1_c00238{width:93.222667pt;}
.w0_c00238{width:597.333333pt;}
.x0_c00238{left:0.000000pt;}
.x2_c00238{left:38.000000pt;}
.x4_c00238{left:70.800000pt;}
.x1_c00238{left:81.333333pt;}
.x5_c00238{left:89.600000pt;}
.x7_c00238{left:255.834880pt;}
.x6_c00238{left:438.000000pt;}
.x3_c00238{left:458.800000pt;}
}





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

.ir_c00239:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00239{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00239;src:url('chunks/assets/font_ed5a3053ca3dd2e5d15bce53.woff2')format("woff");}.ff1_c00239{font-family:ff1_c00239;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00239;src:url('chunks/assets/font_b06dba0c6b997613bcd24e48.woff2')format("woff");}.ff2_c00239{font-family:ff2_c00239;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00239;src:url('chunks/assets/font_495a6e0d6091862943277ff5.woff2')format("woff");}.ff3_c00239{font-family:ff3_c00239;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00239;src:url('chunks/assets/font_d3bd4220eca3bd25c85b8a7a.woff2')format("woff");}.ff4_c00239{font-family:ff4_c00239;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00239;src:url('chunks/assets/font_adcaeb927acb90e014ab5f2f.woff2')format("woff");}.ff5_c00239{font-family:ff5_c00239;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00239;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c00239{font-family:ff6_c00239;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00239{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00239{vertical-align:0.000000px;}
.ls3_c00239{letter-spacing:0.000000px;}
.ls0_c00239{letter-spacing:2.700000px;}
.ls2_c00239{letter-spacing:5.994000px;}
.ls1_c00239{letter-spacing:7.680000px;}
.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:-17.352000px;}
.ws1_c00239{word-spacing:0.000000px;}
._15_c00239{margin-left:-47.652000px;}
._24_c00239{margin-left:-22.599000px;}
._28_c00239{margin-left:-21.528000px;}
._2a_c00239{margin-left:-20.424000px;}
._14_c00239{margin-left:-16.281000px;}
._1b_c00239{margin-left:-13.122000px;}
._13_c00239{margin-left:-11.745000px;}
._b_c00239{margin-left:-9.963000px;}
._17_c00239{margin-left:-8.523000px;}
._18_c00239{margin-left:-7.311000px;}
._e_c00239{margin-left:-6.075000px;}
._2_c00239{margin-left:-4.374000px;}
._4_c00239{margin-left:-2.916000px;}
._3_c00239{margin-left:-1.134000px;}
._5_c00239{width:1.215000px;}
._a_c00239{width:2.268000px;}
._1_c00239{width:3.321000px;}
._6_c00239{width:4.374000px;}
._0_c00239{width:5.427000px;}
._7_c00239{width:6.885000px;}
._d_c00239{width:8.019000px;}
._8_c00239{width:9.720000px;}
._f_c00239{width:11.097000px;}
._c_c00239{width:12.231000px;}
._1a_c00239{width:13.446000px;}
._12_c00239{width:14.580000px;}
._20_c00239{width:15.633000px;}
._21_c00239{width:17.478000px;}
._25_c00239{width:18.882000px;}
._31_c00239{width:20.325000px;}
._2f_c00239{width:21.888000px;}
._22_c00239{width:22.944000px;}
._1e_c00239{width:24.300000px;}
._1f_c00239{width:26.001000px;}
._32_c00239{width:29.733000px;}
._11_c00239{width:32.460000px;}
._9_c00239{width:36.450000px;}
._2c_c00239{width:41.118000px;}
._27_c00239{width:59.796000px;}
._1d_c00239{width:95.952000px;}
._2d_c00239{width:107.115000px;}
._19_c00239{width:126.300000px;}
._10_c00239{width:161.727000px;}
._26_c00239{width:219.201000px;}
._16_c00239{width:240.852000px;}
._1c_c00239{width:276.696000px;}
._29_c00239{width:309.948000px;}
._30_c00239{width:319.719000px;}
._23_c00239{width:323.172000px;}
._2e_c00239{width:348.720000px;}
._2b_c00239{width:531.273000px;}
.fc2_c00239{color:transparent;}
.fc1_c00239{color:rgb(128,128,128);}
.fc0_c00239{color:rgb(0,0,0);}
.fs6_c00239{font-size:48.000000px;}
.fs5_c00239{font-size:51.000000px;}
.fs3_c00239{font-size:66.000000px;}
.fs1_c00239{font-size:72.000000px;}
.fs0_c00239{font-size:81.000000px;}
.fs2_c00239{font-size:132.000000px;}
.fs4_c00239{font-size:138.000000px;}
.y0_c00239{bottom:0.000000px;}
.y26_c00239{bottom:3.105000px;}
.y25_c00239{bottom:7.228357px;}
.y24_c00239{bottom:66.480000px;}
.y23_c00239{bottom:91.230000px;}
.y22_c00239{bottom:116.730000px;}
.y21_c00239{bottom:141.030000px;}
.y20_c00239{bottom:165.480000px;}
.y1f_c00239{bottom:180.330000px;}
.y1e_c00239{bottom:193.680000px;}
.y1d_c00239{bottom:217.680000px;}
.y1c_c00239{bottom:241.380000px;}
.y1b_c00239{bottom:265.230000px;}
.y1a_c00239{bottom:289.680000px;}
.y19_c00239{bottom:313.980000px;}
.y18_c00239{bottom:338.280000px;}
.y17_c00239{bottom:363.180000px;}
.y16_c00239{bottom:387.480000px;}
.y15_c00239{bottom:411.780000px;}
.y14_c00239{bottom:436.080000px;}
.y13_c00239{bottom:460.380000px;}
.y12_c00239{bottom:484.080000px;}
.y11_c00239{bottom:508.230000px;}
.y10_c00239{bottom:532.530000px;}
.yf_c00239{bottom:556.530000px;}
.ye_c00239{bottom:580.830000px;}
.yd_c00239{bottom:605.430000px;}
.yc_c00239{bottom:629.730000px;}
.yb_c00239{bottom:654.780000px;}
.ya_c00239{bottom:679.680000px;}
.y9_c00239{bottom:702.780000px;}
.y8_c00239{bottom:727.080000px;}
.y7_c00239{bottom:751.230000px;}
.y6_c00239{bottom:775.530000px;}
.y5_c00239{bottom:799.830000px;}
.y4_c00239{bottom:824.280000px;}
.y3_c00239{bottom:848.580000px;}
.y2_c00239{bottom:872.730000px;}
.y1_c00239{bottom:896.730000px;}
.h6_c00239{height:13.200074px;}
.h7_c00239{height:43.804688px;}
.h5_c00239{height:51.398438px;}
.h1_c00239{height:79.497070px;}
.h2_c00239{height:84.269531px;}
.h3_c00239{height:135.675199px;}
.h4_c00239{height:139.078125px;}
.h0_c00239{height:995.250000px;}
.w2_c00239{width:104.875500px;}
.w0_c00239{width:667.425000px;}
.w1_c00239{width:667.500000px;}
.x0_c00239{left:0.000000px;}
.xb_c00239{left:47.550000px;}
.xa_c00239{left:50.550000px;}
.x5_c00239{left:51.600000px;}
.x8_c00239{left:53.700000px;}
.x4_c00239{left:91.800000px;}
.xc_c00239{left:126.600000px;}
.x9_c00239{left:141.750000px;}
.x6_c00239{left:142.800000px;}
.x3_c00239{left:144.000000px;}
.x2_c00239{left:145.500000px;}
.x1_c00239{left:147.150000px;}
.x7_c00239{left:170.850000px;}
.xe_c00239{left:285.526749px;}
.xd_c00239{left:583.500000px;}
@media print{
.v0_c00239{vertical-align:0.000000pt;}
.ls3_c00239{letter-spacing:0.000000pt;}
.ls0_c00239{letter-spacing:2.400000pt;}
.ls2_c00239{letter-spacing:5.328000pt;}
.ls1_c00239{letter-spacing:6.826667pt;}
.ws0_c00239{word-spacing:-15.424000pt;}
.ws1_c00239{word-spacing:0.000000pt;}
._15_c00239{margin-left:-42.357333pt;}
._24_c00239{margin-left:-20.088000pt;}
._28_c00239{margin-left:-19.136000pt;}
._2a_c00239{margin-left:-18.154667pt;}
._14_c00239{margin-left:-14.472000pt;}
._1b_c00239{margin-left:-11.664000pt;}
._13_c00239{margin-left:-10.440000pt;}
._b_c00239{margin-left:-8.856000pt;}
._17_c00239{margin-left:-7.576000pt;}
._18_c00239{margin-left:-6.498667pt;}
._e_c00239{margin-left:-5.400000pt;}
._2_c00239{margin-left:-3.888000pt;}
._4_c00239{margin-left:-2.592000pt;}
._3_c00239{margin-left:-1.008000pt;}
._5_c00239{width:1.080000pt;}
._a_c00239{width:2.016000pt;}
._1_c00239{width:2.952000pt;}
._6_c00239{width:3.888000pt;}
._0_c00239{width:4.824000pt;}
._7_c00239{width:6.120000pt;}
._d_c00239{width:7.128000pt;}
._8_c00239{width:8.640000pt;}
._f_c00239{width:9.864000pt;}
._c_c00239{width:10.872000pt;}
._1a_c00239{width:11.952000pt;}
._12_c00239{width:12.960000pt;}
._20_c00239{width:13.896000pt;}
._21_c00239{width:15.536000pt;}
._25_c00239{width:16.784000pt;}
._31_c00239{width:18.066667pt;}
._2f_c00239{width:19.456000pt;}
._22_c00239{width:20.394667pt;}
._1e_c00239{width:21.600000pt;}
._1f_c00239{width:23.112000pt;}
._32_c00239{width:26.429333pt;}
._11_c00239{width:28.853333pt;}
._9_c00239{width:32.400000pt;}
._2c_c00239{width:36.549333pt;}
._27_c00239{width:53.152000pt;}
._1d_c00239{width:85.290667pt;}
._2d_c00239{width:95.213333pt;}
._19_c00239{width:112.266667pt;}
._10_c00239{width:143.757333pt;}
._26_c00239{width:194.845333pt;}
._16_c00239{width:214.090667pt;}
._1c_c00239{width:245.952000pt;}
._29_c00239{width:275.509333pt;}
._30_c00239{width:284.194667pt;}
._23_c00239{width:287.264000pt;}
._2e_c00239{width:309.973333pt;}
._2b_c00239{width:472.242667pt;}
.fs6_c00239{font-size:42.666667pt;}
.fs5_c00239{font-size:45.333333pt;}
.fs3_c00239{font-size:58.666667pt;}
.fs1_c00239{font-size:64.000000pt;}
.fs0_c00239{font-size:72.000000pt;}
.fs2_c00239{font-size:117.333333pt;}
.fs4_c00239{font-size:122.666667pt;}
.y0_c00239{bottom:0.000000pt;}
.y26_c00239{bottom:2.760000pt;}
.y25_c00239{bottom:6.425206pt;}
.y24_c00239{bottom:59.093333pt;}
.y23_c00239{bottom:81.093333pt;}
.y22_c00239{bottom:103.760000pt;}
.y21_c00239{bottom:125.360000pt;}
.y20_c00239{bottom:147.093333pt;}
.y1f_c00239{bottom:160.293333pt;}
.y1e_c00239{bottom:172.160000pt;}
.y1d_c00239{bottom:193.493333pt;}
.y1c_c00239{bottom:214.560000pt;}
.y1b_c00239{bottom:235.760000pt;}
.y1a_c00239{bottom:257.493333pt;}
.y19_c00239{bottom:279.093333pt;}
.y18_c00239{bottom:300.693333pt;}
.y17_c00239{bottom:322.826667pt;}
.y16_c00239{bottom:344.426667pt;}
.y15_c00239{bottom:366.026667pt;}
.y14_c00239{bottom:387.626667pt;}
.y13_c00239{bottom:409.226667pt;}
.y12_c00239{bottom:430.293333pt;}
.y11_c00239{bottom:451.760000pt;}
.y10_c00239{bottom:473.360000pt;}
.yf_c00239{bottom:494.693333pt;}
.ye_c00239{bottom:516.293333pt;}
.yd_c00239{bottom:538.160000pt;}
.yc_c00239{bottom:559.760000pt;}
.yb_c00239{bottom:582.026667pt;}
.ya_c00239{bottom:604.160000pt;}
.y9_c00239{bottom:624.693333pt;}
.y8_c00239{bottom:646.293333pt;}
.y7_c00239{bottom:667.760000pt;}
.y6_c00239{bottom:689.360000pt;}
.y5_c00239{bottom:710.960000pt;}
.y4_c00239{bottom:732.693333pt;}
.y3_c00239{bottom:754.293333pt;}
.y2_c00239{bottom:775.760000pt;}
.y1_c00239{bottom:797.093333pt;}
.h6_c00239{height:11.733399pt;}
.h7_c00239{height:38.937500pt;}
.h5_c00239{height:45.687500pt;}
.h1_c00239{height:70.664062pt;}
.h2_c00239{height:74.906250pt;}
.h3_c00239{height:120.600177pt;}
.h4_c00239{height:123.625000pt;}
.h0_c00239{height:884.666667pt;}
.w2_c00239{width:93.222667pt;}
.w0_c00239{width:593.266667pt;}
.w1_c00239{width:593.333333pt;}
.x0_c00239{left:0.000000pt;}
.xb_c00239{left:42.266667pt;}
.xa_c00239{left:44.933333pt;}
.x5_c00239{left:45.866667pt;}
.x8_c00239{left:47.733333pt;}
.x4_c00239{left:81.600000pt;}
.xc_c00239{left:112.533333pt;}
.x9_c00239{left:126.000000pt;}
.x6_c00239{left:126.933333pt;}
.x3_c00239{left:128.000000pt;}
.x2_c00239{left:129.333333pt;}
.x1_c00239{left:130.800000pt;}
.x7_c00239{left:151.866667pt;}
.xe_c00239{left:253.801554pt;}
.xd_c00239{left:518.666667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_d0ec50f25d5154ea82daa380.woff2')format("woff");}.ff1_c00240{font-family:ff1_c00240;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00240;src:url('chunks/assets/font_414dc5f0a37b1bb18b7c124d.woff2')format("woff");}.ff2_c00240{font-family:ff2_c00240;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00240;src:url('chunks/assets/font_2b20c793c7b42b9849f332ad.woff2')format("woff");}.ff3_c00240{font-family:ff3_c00240;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00240;src:url('chunks/assets/font_d095920749097e5e8745cc27.woff2')format("woff");}.ff4_c00240{font-family:ff4_c00240;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00240;src:url('chunks/assets/font_bb6edb80059532926df6ab1d.woff2')format("woff");}.ff5_c00240{font-family:ff5_c00240;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00240;src:url('chunks/assets/font_bda1a631e01b8da932a2756e.woff2')format("woff");}.ff6_c00240{font-family:ff6_c00240;line-height:1.437000;font-style:normal;font-weight: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_c00240;src:url('chunks/assets/font_9eb3a9b11a0ed38b3e29aa64.woff2')format("woff");}.ff7_c00240{font-family:ff7_c00240;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00240;src:url('chunks/assets/font_de46d80bf5caf2aec1c1e6e9.woff2')format("woff");}.ff8_c00240{font-family:ff8_c00240;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00240;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff9_c00240{font-family:ff9_c00240;line-height:1.219238;font-style: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;}
.v1_c00240{vertical-align:148.800000px;}
.ls3_c00240{letter-spacing:-12.000000px;}
.ls2_c00240{letter-spacing:0.000000px;}
.ls0_c00240{letter-spacing:5.100000px;}
.ls1_c00240{letter-spacing:20.550000px;}
.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;}
}
.ws2_c00240{word-spacing:-77.697000px;}
.ws0_c00240{word-spacing:-67.686000px;}
.ws1_c00240{word-spacing:-17.352000px;}
.ws3_c00240{word-spacing:0.000000px;}
._23_c00240{margin-left:-36.714000px;}
._1b_c00240{margin-left:-23.208000px;}
._1e_c00240{margin-left:-19.440000px;}
._19_c00240{margin-left:-12.543000px;}
._14_c00240{margin-left:-10.656000px;}
._12_c00240{margin-left:-8.577000px;}
._18_c00240{margin-left:-7.545000px;}
._16_c00240{margin-left:-5.874000px;}
._13_c00240{margin-left:-4.455000px;}
._c_c00240{margin-left:-3.240000px;}
._17_c00240{margin-left:-2.187000px;}
._10_c00240{margin-left:-1.170000px;}
._f_c00240{width:1.737000px;}
._11_c00240{width:2.745000px;}
._a_c00240{width:3.816000px;}
._2_c00240{width:5.760000px;}
._9_c00240{width:7.560000px;}
._15_c00240{width:8.640000px;}
._3_c00240{width:9.648000px;}
._1f_c00240{width:10.728000px;}
._b_c00240{width:12.024000px;}
._1_c00240{width:13.032000px;}
._0_c00240{width:14.976000px;}
._6_c00240{width:16.056000px;}
._20_c00240{width:17.226000px;}
._1a_c00240{width:18.546000px;}
._d_c00240{width:22.248000px;}
._8_c00240{width:24.408000px;}
._25_c00240{width:25.857000px;}
._5_c00240{width:27.504000px;}
._4_c00240{width:30.528000px;}
._7_c00240{width:33.192000px;}
._21_c00240{width:36.600000px;}
._1d_c00240{width:51.021000px;}
._e_c00240{width:55.854000px;}
._22_c00240{width:188.637000px;}
._1c_c00240{width:234.660000px;}
._24_c00240{width:307.548000px;}
._26_c00240{width:344.811000px;}
.fc2_c00240{color:transparent;}
.fc1_c00240{color:rgb(128,128,128);}
.fc0_c00240{color:rgb(0,0,0);}
.fs9_c00240{font-size:48.000000px;}
.fs8_c00240{font-size:51.000000px;}
.fs5_c00240{font-size:57.000000px;}
.fs4_c00240{font-size:60.000000px;}
.fs6_c00240{font-size:69.000000px;}
.fs0_c00240{font-size:72.000000px;}
.fs3_c00240{font-size:78.000000px;}
.fs1_c00240{font-size:81.000000px;}
.fs2_c00240{font-size:87.000000px;}
.fs7_c00240{font-size:291.000000px;}
.y0_c00240{bottom:0.000000px;}
.y26_c00240{bottom:3.105000px;}
.y25_c00240{bottom:7.228363px;}
.y24_c00240{bottom:58.050000px;}
.y23_c00240{bottom:84.150000px;}
.y22_c00240{bottom:109.200000px;}
.y21_c00240{bottom:134.250000px;}
.y20_c00240{bottom:159.300000px;}
.y1f_c00240{bottom:183.300000px;}
.y1e_c00240{bottom:207.300000px;}
.y1c_c00240{bottom:218.700000px;}
.y1d_c00240{bottom:232.950000px;}
.y1b_c00240{bottom:282.600000px;}
.y1a_c00240{bottom:305.850000px;}
.y19_c00240{bottom:331.200000px;}
.y18_c00240{bottom:353.700000px;}
.y17_c00240{bottom:377.700000px;}
.y16_c00240{bottom:402.600000px;}
.y15_c00240{bottom:426.900000px;}
.y14_c00240{bottom:450.000000px;}
.y13_c00240{bottom:474.900000px;}
.y12_c00240{bottom:499.200000px;}
.y11_c00240{bottom:523.500000px;}
.y10_c00240{bottom:547.200000px;}
.yf_c00240{bottom:572.400000px;}
.ye_c00240{bottom:595.350000px;}
.yd_c00240{bottom:619.050000px;}
.yc_c00240{bottom:643.050000px;}
.yb_c00240{bottom:667.350000px;}
.ya_c00240{bottom:691.500000px;}
.y9_c00240{bottom:715.200000px;}
.y8_c00240{bottom:739.500000px;}
.y7_c00240{bottom:763.500000px;}
.y6_c00240{bottom:788.100000px;}
.y5_c00240{bottom:812.100000px;}
.y4_c00240{bottom:836.550000px;}
.y3_c00240{bottom:860.700000px;}
.y2_c00240{bottom:884.700000px;}
.y1_c00240{bottom:918.750000px;}
.h9_c00240{height:13.200074px;}
.ha_c00240{height:43.804688px;}
.h8_c00240{height:51.398438px;}
.h3_c00240{height:79.497070px;}
.h2_c00240{height:84.269531px;}
.h5_c00240{height:91.160156px;}
.h4_c00240{height:91.176000px;}
.h6_c00240{height:98.756836px;}
.h7_c00240{height:310.497000px;}
.h0_c00240{height:974.700000px;}
.h1_c00240{height:975.000000px;}
.w2_c00240{width:104.875500px;}
.w0_c00240{width:662.025000px;}
.w1_c00240{width:662.250000px;}
.x0_c00240{left:0.000000px;}
.x7_c00240{left:49.650000px;}
.xd_c00240{left:54.000000px;}
.xc_c00240{left:55.350000px;}
.x5_c00240{left:57.150000px;}
.x2_c00240{left:58.350000px;}
.x6_c00240{left:60.000000px;}
.x3_c00240{left:61.050000px;}
.x4_c00240{left:62.100000px;}
.x8_c00240{left:83.400000px;}
.x1_c00240{left:97.500000px;}
.xb_c00240{left:111.000000px;}
.xa_c00240{left:117.900000px;}
.x9_c00240{left:205.950000px;}
.xf_c00240{left:282.826767px;}
.xe_c00240{left:383.700000px;}
@media print{
.v0_c00240{vertical-align:0.000000pt;}
.v1_c00240{vertical-align:132.266667pt;}
.ls3_c00240{letter-spacing:-10.666667pt;}
.ls2_c00240{letter-spacing:0.000000pt;}
.ls0_c00240{letter-spacing:4.533333pt;}
.ls1_c00240{letter-spacing:18.266667pt;}
.ws2_c00240{word-spacing:-69.064000pt;}
.ws0_c00240{word-spacing:-60.165333pt;}
.ws1_c00240{word-spacing:-15.424000pt;}
.ws3_c00240{word-spacing:0.000000pt;}
._23_c00240{margin-left:-32.634667pt;}
._1b_c00240{margin-left:-20.629333pt;}
._1e_c00240{margin-left:-17.280000pt;}
._19_c00240{margin-left:-11.149333pt;}
._14_c00240{margin-left:-9.472000pt;}
._12_c00240{margin-left:-7.624000pt;}
._18_c00240{margin-left:-6.706667pt;}
._16_c00240{margin-left:-5.221333pt;}
._13_c00240{margin-left:-3.960000pt;}
._c_c00240{margin-left:-2.880000pt;}
._17_c00240{margin-left:-1.944000pt;}
._10_c00240{margin-left:-1.040000pt;}
._f_c00240{width:1.544000pt;}
._11_c00240{width:2.440000pt;}
._a_c00240{width:3.392000pt;}
._2_c00240{width:5.120000pt;}
._9_c00240{width:6.720000pt;}
._15_c00240{width:7.680000pt;}
._3_c00240{width:8.576000pt;}
._1f_c00240{width:9.536000pt;}
._b_c00240{width:10.688000pt;}
._1_c00240{width:11.584000pt;}
._0_c00240{width:13.312000pt;}
._6_c00240{width:14.272000pt;}
._20_c00240{width:15.312000pt;}
._1a_c00240{width:16.485333pt;}
._d_c00240{width:19.776000pt;}
._8_c00240{width:21.696000pt;}
._25_c00240{width:22.984000pt;}
._5_c00240{width:24.448000pt;}
._4_c00240{width:27.136000pt;}
._7_c00240{width:29.504000pt;}
._21_c00240{width:32.533333pt;}
._1d_c00240{width:45.352000pt;}
._e_c00240{width:49.648000pt;}
._22_c00240{width:167.677333pt;}
._1c_c00240{width:208.586667pt;}
._24_c00240{width:273.376000pt;}
._26_c00240{width:306.498667pt;}
.fs9_c00240{font-size:42.666667pt;}
.fs8_c00240{font-size:45.333333pt;}
.fs5_c00240{font-size:50.666667pt;}
.fs4_c00240{font-size:53.333333pt;}
.fs6_c00240{font-size:61.333333pt;}
.fs0_c00240{font-size:64.000000pt;}
.fs3_c00240{font-size:69.333333pt;}
.fs1_c00240{font-size:72.000000pt;}
.fs2_c00240{font-size:77.333333pt;}
.fs7_c00240{font-size:258.666667pt;}
.y0_c00240{bottom:0.000000pt;}
.y26_c00240{bottom:2.760000pt;}
.y25_c00240{bottom:6.425212pt;}
.y24_c00240{bottom:51.600000pt;}
.y23_c00240{bottom:74.800000pt;}
.y22_c00240{bottom:97.066667pt;}
.y21_c00240{bottom:119.333333pt;}
.y20_c00240{bottom:141.600000pt;}
.y1f_c00240{bottom:162.933333pt;}
.y1e_c00240{bottom:184.266667pt;}
.y1c_c00240{bottom:194.400000pt;}
.y1d_c00240{bottom:207.066667pt;}
.y1b_c00240{bottom:251.200000pt;}
.y1a_c00240{bottom:271.866667pt;}
.y19_c00240{bottom:294.400000pt;}
.y18_c00240{bottom:314.400000pt;}
.y17_c00240{bottom:335.733333pt;}
.y16_c00240{bottom:357.866667pt;}
.y15_c00240{bottom:379.466667pt;}
.y14_c00240{bottom:400.000000pt;}
.y13_c00240{bottom:422.133333pt;}
.y12_c00240{bottom:443.733333pt;}
.y11_c00240{bottom:465.333333pt;}
.y10_c00240{bottom:486.400000pt;}
.yf_c00240{bottom:508.800000pt;}
.ye_c00240{bottom:529.200000pt;}
.yd_c00240{bottom:550.266667pt;}
.yc_c00240{bottom:571.600000pt;}
.yb_c00240{bottom:593.200000pt;}
.ya_c00240{bottom:614.666667pt;}
.y9_c00240{bottom:635.733333pt;}
.y8_c00240{bottom:657.333333pt;}
.y7_c00240{bottom:678.666667pt;}
.y6_c00240{bottom:700.533333pt;}
.y5_c00240{bottom:721.866667pt;}
.y4_c00240{bottom:743.600000pt;}
.y3_c00240{bottom:765.066667pt;}
.y2_c00240{bottom:786.400000pt;}
.y1_c00240{bottom:816.666667pt;}
.h9_c00240{height:11.733399pt;}
.ha_c00240{height:38.937500pt;}
.h8_c00240{height:45.687500pt;}
.h3_c00240{height:70.664062pt;}
.h2_c00240{height:74.906250pt;}
.h5_c00240{height:81.031250pt;}
.h4_c00240{height:81.045333pt;}
.h6_c00240{height:87.783854pt;}
.h7_c00240{height:275.997333pt;}
.h0_c00240{height:866.400000pt;}
.h1_c00240{height:866.666667pt;}
.w2_c00240{width:93.222667pt;}
.w0_c00240{width:588.466667pt;}
.w1_c00240{width:588.666667pt;}
.x0_c00240{left:0.000000pt;}
.x7_c00240{left:44.133333pt;}
.xd_c00240{left:48.000000pt;}
.xc_c00240{left:49.200000pt;}
.x5_c00240{left:50.800000pt;}
.x2_c00240{left:51.866667pt;}
.x6_c00240{left:53.333333pt;}
.x3_c00240{left:54.266667pt;}
.x4_c00240{left:55.200000pt;}
.x8_c00240{left:74.133333pt;}
.x1_c00240{left:86.666667pt;}
.xb_c00240{left:98.666667pt;}
.xa_c00240{left:104.800000pt;}
.x9_c00240{left:183.066667pt;}
.xf_c00240{left:251.401571pt;}
.xe_c00240{left:341.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_984fbfbd7966ef4976433687.woff2')format("woff");}.ff1_c00241{font-family:ff1_c00241;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00241;src:url('chunks/assets/font_77425968ea5ad3b4647a9d2e.woff2')format("woff");}.ff2_c00241{font-family:ff2_c00241;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00241;src:url('chunks/assets/font_54e44b39ae8a22bcde1694e5.woff2')format("woff");}.ff3_c00241{font-family:ff3_c00241;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00241;src:url('chunks/assets/font_3d8db0eb56c0dfc9fe570c6a.woff2')format("woff");}.ff4_c00241{font-family:ff4_c00241;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00241;src:url('chunks/assets/font_a0feae0b938fa715096a9139.woff2')format("woff");}.ff5_c00241{font-family:ff5_c00241;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00241;src:url('chunks/assets/font_74dde5f377c85798fcdb3bbe.woff2')format("woff");}.ff6_c00241{font-family:ff6_c00241;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00241;src:url('chunks/assets/font_d8c9499b52d59bdf893bbff2.woff2')format("woff");}.ff7_c00241{font-family:ff7_c00241;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00241;src:url('chunks/assets/font_e8866a4f1612742865b7f42c.woff2')format("woff");}.ff8_c00241{font-family:ff8_c00241;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00241;src:url('chunks/assets/font_10f46d1d11d9c69acce7c682.woff2')format("woff");}.ff9_c00241{font-family:ff9_c00241;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00241;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ffa_c00241{font-family:ffa_c00241;line-height:1.219238;font-style: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;}
.ls4_c00241{letter-spacing:-6.000000px;}
.ls2_c00241{letter-spacing:0.000000px;}
.ls0_c00241{letter-spacing:1.350000px;}
.ls3_c00241{letter-spacing:3.000000px;}
.ls1_c00241{letter-spacing:16.011000px;}
.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;}
}
.ws2_c00241{word-spacing:-20.250000px;}
.ws0_c00241{word-spacing:-17.352000px;}
.ws1_c00241{word-spacing:-0.576000px;}
.ws3_c00241{word-spacing:0.000000px;}
._2b_c00241{margin-left:-50.082000px;}
._2a_c00241{margin-left:-42.513000px;}
._26_c00241{margin-left:-40.698000px;}
._29_c00241{margin-left:-33.762000px;}
._11_c00241{margin-left:-28.932000px;}
._31_c00241{margin-left:-27.135000px;}
._25_c00241{margin-left:-25.500000px;}
._27_c00241{margin-left:-22.602000px;}
._1d_c00241{margin-left:-21.060000px;}
._34_c00241{margin-left:-19.482000px;}
._21_c00241{margin-left:-18.156000px;}
._14_c00241{margin-left:-15.342000px;}
._35_c00241{margin-left:-14.040000px;}
._13_c00241{margin-left:-12.243000px;}
._16_c00241{margin-left:-10.626000px;}
._6_c00241{margin-left:-8.736000px;}
._d_c00241{margin-left:-7.332000px;}
._5_c00241{margin-left:-6.006000px;}
._b_c00241{margin-left:-4.134000px;}
._4_c00241{margin-left:-3.120000px;}
._3_c00241{margin-left:-1.560000px;}
._8_c00241{width:1.794000px;}
._9_c00241{width:2.808000px;}
._1_c00241{width:4.446000px;}
._0_c00241{width:5.772000px;}
._a_c00241{width:7.254000px;}
._f_c00241{width:8.970000px;}
._10_c00241{width:10.218000px;}
._39_c00241{width:11.241000px;}
._2_c00241{width:12.246000px;}
._2e_c00241{width:13.671000px;}
._18_c00241{width:14.769000px;}
._33_c00241{width:16.317000px;}
._38_c00241{width:17.841000px;}
._c_c00241{width:18.876000px;}
._1a_c00241{width:20.580000px;}
._2f_c00241{width:27.480000px;}
._28_c00241{width:29.172000px;}
._24_c00241{width:30.486000px;}
._17_c00241{width:33.444000px;}
._2c_c00241{width:34.689000px;}
._15_c00241{width:36.702000px;}
._e_c00241{width:38.376000px;}
._19_c00241{width:45.687000px;}
._36_c00241{width:49.797000px;}
._32_c00241{width:54.108000px;}
._7_c00241{width:70.356000px;}
._1f_c00241{width:80.433000px;}
._22_c00241{width:113.898000px;}
._30_c00241{width:119.394000px;}
._1c_c00241{width:135.018000px;}
._1b_c00241{width:141.609000px;}
._37_c00241{width:153.963000px;}
._2d_c00241{width:174.969000px;}
._1e_c00241{width:211.098000px;}
._12_c00241{width:229.425000px;}
._20_c00241{width:288.270000px;}
._23_c00241{width:555.816000px;}
._3a_c00241{width:747.402000px;}
.fc2_c00241{color:transparent;}
.fc1_c00241{color:rgb(128,128,128);}
.fc0_c00241{color:rgb(0,0,0);}
.fs8_c00241{font-size:48.000000px;}
.fs6_c00241{font-size:60.000000px;}
.fs3_c00241{font-size:69.000000px;}
.fs1_c00241{font-size:72.000000px;}
.fs4_c00241{font-size:75.000000px;}
.fs0_c00241{font-size:78.000000px;}
.fs2_c00241{font-size:81.000000px;}
.fs7_c00241{font-size:84.000000px;}
.fs5_c00241{font-size:102.000000px;}
.y0_c00241{bottom:0.000000px;}
.y27_c00241{bottom:3.105000px;}
.y26_c00241{bottom:7.228357px;}
.y25_c00241{bottom:55.380000px;}
.y24_c00241{bottom:81.330000px;}
.y23_c00241{bottom:106.680000px;}
.y21_c00241{bottom:128.580000px;}
.y22_c00241{bottom:145.830000px;}
.y20_c00241{bottom:155.580000px;}
.y1f_c00241{bottom:181.230000px;}
.y1e_c00241{bottom:204.930000px;}
.y1d_c00241{bottom:229.230000px;}
.y1c_c00241{bottom:253.530000px;}
.y1b_c00241{bottom:278.130000px;}
.y1a_c00241{bottom:302.730000px;}
.y19_c00241{bottom:326.730000px;}
.y18_c00241{bottom:351.330000px;}
.y17_c00241{bottom:376.080000px;}
.y16_c00241{bottom:400.380000px;}
.y15_c00241{bottom:424.530000px;}
.y14_c00241{bottom:448.230000px;}
.y13_c00241{bottom:472.830000px;}
.y12_c00241{bottom:496.530000px;}
.y11_c00241{bottom:520.530000px;}
.y10_c00241{bottom:544.830000px;}
.yf_c00241{bottom:568.680000px;}
.ye_c00241{bottom:592.980000px;}
.yd_c00241{bottom:617.280000px;}
.yc_c00241{bottom:641.880000px;}
.yb_c00241{bottom:665.880000px;}
.ya_c00241{bottom:689.580000px;}
.y9_c00241{bottom:713.130000px;}
.y8_c00241{bottom:727.980000px;}
.y7_c00241{bottom:738.480000px;}
.y6_c00241{bottom:763.830000px;}
.y5_c00241{bottom:787.380000px;}
.y4_c00241{bottom:810.780000px;}
.y3_c00241{bottom:834.630000px;}
.y2_c00241{bottom:857.880000px;}
.y1_c00241{bottom:880.980000px;}
.h8_c00241{height:13.200074px;}
.h9_c00241{height:43.804688px;}
.h3_c00241{height:72.312000px;}
.h5_c00241{height:79.497070px;}
.h1_c00241{height:83.226000px;}
.h2_c00241{height:84.269531px;}
.h7_c00241{height:84.656250px;}
.h6_c00241{height:91.160156px;}
.h4_c00241{height:129.143555px;}
.h0_c00241{height:995.250000px;}
.w2_c00241{width:104.875500px;}
.w0_c00241{width:667.425000px;}
.w1_c00241{width:667.500000px;}
.x0_c00241{left:0.000000px;}
.x1_c00241{left:42.900000px;}
.x2_c00241{left:44.100000px;}
.x3_c00241{left:45.150000px;}
.x5_c00241{left:46.800000px;}
.xa_c00241{left:53.550000px;}
.x12_c00241{left:57.000000px;}
.x4_c00241{left:80.250000px;}
.x13_c00241{left:134.700000px;}
.x6_c00241{left:142.650000px;}
.x7_c00241{left:144.150000px;}
.x8_c00241{left:146.100000px;}
.x9_c00241{left:148.050000px;}
.xb_c00241{left:149.550000px;}
.xc_c00241{left:150.750000px;}
.xd_c00241{left:152.250000px;}
.xe_c00241{left:154.500000px;}
.x10_c00241{left:155.850000px;}
.x11_c00241{left:156.900000px;}
.xf_c00241{left:187.650000px;}
.x15_c00241{left:285.526749px;}
.x14_c00241{left:401.250000px;}
@media print{
.v0_c00241{vertical-align:0.000000pt;}
.ls4_c00241{letter-spacing:-5.333333pt;}
.ls2_c00241{letter-spacing:0.000000pt;}
.ls0_c00241{letter-spacing:1.200000pt;}
.ls3_c00241{letter-spacing:2.666667pt;}
.ls1_c00241{letter-spacing:14.232000pt;}
.ws2_c00241{word-spacing:-18.000000pt;}
.ws0_c00241{word-spacing:-15.424000pt;}
.ws1_c00241{word-spacing:-0.512000pt;}
.ws3_c00241{word-spacing:0.000000pt;}
._2b_c00241{margin-left:-44.517333pt;}
._2a_c00241{margin-left:-37.789333pt;}
._26_c00241{margin-left:-36.176000pt;}
._29_c00241{margin-left:-30.010667pt;}
._11_c00241{margin-left:-25.717333pt;}
._31_c00241{margin-left:-24.120000pt;}
._25_c00241{margin-left:-22.666667pt;}
._27_c00241{margin-left:-20.090667pt;}
._1d_c00241{margin-left:-18.720000pt;}
._34_c00241{margin-left:-17.317333pt;}
._21_c00241{margin-left:-16.138667pt;}
._14_c00241{margin-left:-13.637333pt;}
._35_c00241{margin-left:-12.480000pt;}
._13_c00241{margin-left:-10.882667pt;}
._16_c00241{margin-left:-9.445333pt;}
._6_c00241{margin-left:-7.765333pt;}
._d_c00241{margin-left:-6.517333pt;}
._5_c00241{margin-left:-5.338667pt;}
._b_c00241{margin-left:-3.674667pt;}
._4_c00241{margin-left:-2.773333pt;}
._3_c00241{margin-left:-1.386667pt;}
._8_c00241{width:1.594667pt;}
._9_c00241{width:2.496000pt;}
._1_c00241{width:3.952000pt;}
._0_c00241{width:5.130667pt;}
._a_c00241{width:6.448000pt;}
._f_c00241{width:7.973333pt;}
._10_c00241{width:9.082667pt;}
._39_c00241{width:9.992000pt;}
._2_c00241{width:10.885333pt;}
._2e_c00241{width:12.152000pt;}
._18_c00241{width:13.128000pt;}
._33_c00241{width:14.504000pt;}
._38_c00241{width:15.858667pt;}
._c_c00241{width:16.778667pt;}
._1a_c00241{width:18.293333pt;}
._2f_c00241{width:24.426667pt;}
._28_c00241{width:25.930667pt;}
._24_c00241{width:27.098667pt;}
._17_c00241{width:29.728000pt;}
._2c_c00241{width:30.834667pt;}
._15_c00241{width:32.624000pt;}
._e_c00241{width:34.112000pt;}
._19_c00241{width:40.610667pt;}
._36_c00241{width:44.264000pt;}
._32_c00241{width:48.096000pt;}
._7_c00241{width:62.538667pt;}
._1f_c00241{width:71.496000pt;}
._22_c00241{width:101.242667pt;}
._30_c00241{width:106.128000pt;}
._1c_c00241{width:120.016000pt;}
._1b_c00241{width:125.874667pt;}
._37_c00241{width:136.856000pt;}
._2d_c00241{width:155.528000pt;}
._1e_c00241{width:187.642667pt;}
._12_c00241{width:203.933333pt;}
._20_c00241{width:256.240000pt;}
._23_c00241{width:494.058667pt;}
._3a_c00241{width:664.357333pt;}
.fs8_c00241{font-size:42.666667pt;}
.fs6_c00241{font-size:53.333333pt;}
.fs3_c00241{font-size:61.333333pt;}
.fs1_c00241{font-size:64.000000pt;}
.fs4_c00241{font-size:66.666667pt;}
.fs0_c00241{font-size:69.333333pt;}
.fs2_c00241{font-size:72.000000pt;}
.fs7_c00241{font-size:74.666667pt;}
.fs5_c00241{font-size:90.666667pt;}
.y0_c00241{bottom:0.000000pt;}
.y27_c00241{bottom:2.760000pt;}
.y26_c00241{bottom:6.425206pt;}
.y25_c00241{bottom:49.226667pt;}
.y24_c00241{bottom:72.293333pt;}
.y23_c00241{bottom:94.826667pt;}
.y21_c00241{bottom:114.293333pt;}
.y22_c00241{bottom:129.626667pt;}
.y20_c00241{bottom:138.293333pt;}
.y1f_c00241{bottom:161.093333pt;}
.y1e_c00241{bottom:182.160000pt;}
.y1d_c00241{bottom:203.760000pt;}
.y1c_c00241{bottom:225.360000pt;}
.y1b_c00241{bottom:247.226667pt;}
.y1a_c00241{bottom:269.093333pt;}
.y19_c00241{bottom:290.426667pt;}
.y18_c00241{bottom:312.293333pt;}
.y17_c00241{bottom:334.293333pt;}
.y16_c00241{bottom:355.893333pt;}
.y15_c00241{bottom:377.360000pt;}
.y14_c00241{bottom:398.426667pt;}
.y13_c00241{bottom:420.293333pt;}
.y12_c00241{bottom:441.360000pt;}
.y11_c00241{bottom:462.693333pt;}
.y10_c00241{bottom:484.293333pt;}
.yf_c00241{bottom:505.493333pt;}
.ye_c00241{bottom:527.093333pt;}
.yd_c00241{bottom:548.693333pt;}
.yc_c00241{bottom:570.560000pt;}
.yb_c00241{bottom:591.893333pt;}
.ya_c00241{bottom:612.960000pt;}
.y9_c00241{bottom:633.893333pt;}
.y8_c00241{bottom:647.093333pt;}
.y7_c00241{bottom:656.426667pt;}
.y6_c00241{bottom:678.960000pt;}
.y5_c00241{bottom:699.893333pt;}
.y4_c00241{bottom:720.693333pt;}
.y3_c00241{bottom:741.893333pt;}
.y2_c00241{bottom:762.560000pt;}
.y1_c00241{bottom:783.093333pt;}
.h8_c00241{height:11.733399pt;}
.h9_c00241{height:38.937500pt;}
.h3_c00241{height:64.277333pt;}
.h5_c00241{height:70.664062pt;}
.h1_c00241{height:73.978667pt;}
.h2_c00241{height:74.906250pt;}
.h7_c00241{height:75.250000pt;}
.h6_c00241{height:81.031250pt;}
.h4_c00241{height:114.794271pt;}
.h0_c00241{height:884.666667pt;}
.w2_c00241{width:93.222667pt;}
.w0_c00241{width:593.266667pt;}
.w1_c00241{width:593.333333pt;}
.x0_c00241{left:0.000000pt;}
.x1_c00241{left:38.133333pt;}
.x2_c00241{left:39.200000pt;}
.x3_c00241{left:40.133333pt;}
.x5_c00241{left:41.600000pt;}
.xa_c00241{left:47.600000pt;}
.x12_c00241{left:50.666667pt;}
.x4_c00241{left:71.333333pt;}
.x13_c00241{left:119.733333pt;}
.x6_c00241{left:126.800000pt;}
.x7_c00241{left:128.133333pt;}
.x8_c00241{left:129.866667pt;}
.x9_c00241{left:131.600000pt;}
.xb_c00241{left:132.933333pt;}
.xc_c00241{left:134.000000pt;}
.xd_c00241{left:135.333333pt;}
.xe_c00241{left:137.333333pt;}
.x10_c00241{left:138.533333pt;}
.x11_c00241{left:139.466667pt;}
.xf_c00241{left:166.800000pt;}
.x15_c00241{left:253.801554pt;}
.x14_c00241{left:356.666667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_3be30d012f11d222a6868d66.woff2')format("woff");}.ff1_c00242{font-family:ff1_c00242;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00242;src:url('chunks/assets/font_7b3e7c758afed05973b93a0a.woff2')format("woff");}.ff2_c00242{font-family:ff2_c00242;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00242;src:url('chunks/assets/font_c1c0ca8ceea80e5b740d47b6.woff2')format("woff");}.ff3_c00242{font-family:ff3_c00242;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00242;src:url('chunks/assets/font_a97a925ad85699c87208368d.woff2')format("woff");}.ff4_c00242{font-family:ff4_c00242;line-height:1.437000;font-style:normal;font-weight:normal;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_e57b9baffffcd796725f8334.woff2')format("woff");}.ff5_c00242{font-family:ff5_c00242;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00242;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff6_c00242{font-family:ff6_c00242;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00242;src:url('chunks/assets/font_beb8cb1bd215b6b28b9bd99c.woff2')format("woff");}.ff7_c00242{font-family:ff7_c00242;line-height:1.437000;font-style:normal;font-weight: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_c00242;src:url('chunks/assets/font_5ae447f93ed98c7234afb873.woff2')format("woff");}.ff8_c00242{font-family:ff8_c00242;line-height:1.437000;font-style:normal;font-weight: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_c00242;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff9_c00242{font-family:ff9_c00242;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00242{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00242{vertical-align:0.000000px;}
.ls1_c00242{letter-spacing:0.000000px;}
.ls0_c00242{letter-spacing:0.300000px;}
.sc__c00242{text-shadow:none;}
.sc0_c00242{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00242{-webkit-text-stroke:0px transparent;}
.sc0_c00242{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00242{word-spacing:-67.686000px;}
.ws2_c00242{word-spacing:-59.184000px;}
.ws0_c00242{word-spacing:-20.250000px;}
.ws3_c00242{word-spacing:-17.250000px;}
.ws4_c00242{word-spacing:0.000000px;}
._16_c00242{margin-left:-22.308000px;}
._1b_c00242{margin-left:-16.443000px;}
._18_c00242{margin-left:-15.234000px;}
._b_c00242{margin-left:-13.128000px;}
._19_c00242{margin-left:-11.319000px;}
._5_c00242{margin-left:-10.095000px;}
._13_c00242{margin-left:-8.385000px;}
._1a_c00242{margin-left:-7.314000px;}
._0_c00242{margin-left:-5.670000px;}
._1_c00242{margin-left:-3.885000px;}
._3_c00242{margin-left:-2.625000px;}
._a_c00242{margin-left:-1.185000px;}
._c_c00242{width:1.077000px;}
._2_c00242{width:2.100000px;}
._9_c00242{width:3.426000px;}
._8_c00242{width:4.779000px;}
._7_c00242{width:6.642000px;}
._10_c00242{width:7.677000px;}
._14_c00242{width:8.688000px;}
._6_c00242{width:9.882000px;}
._e_c00242{width:10.968000px;}
._15_c00242{width:12.786000px;}
._d_c00242{width:14.043000px;}
._11_c00242{width:15.138000px;}
._f_c00242{width:16.425000px;}
._12_c00242{width:29.841000px;}
._1d_c00242{width:38.973000px;}
._4_c00242{width:42.315000px;}
._1c_c00242{width:46.203000px;}
._17_c00242{width:245.001000px;}
._1e_c00242{width:294.954000px;}
.fc2_c00242{color:transparent;}
.fc1_c00242{color:rgb(128,128,128);}
.fc0_c00242{color:rgb(0,0,0);}
.fs6_c00242{font-size:48.000000px;}
.fs5_c00242{font-size:69.000000px;}
.fs4_c00242{font-size:72.000000px;}
.fs0_c00242{font-size:81.000000px;}
.fs3_c00242{font-size:87.000000px;}
.fs2_c00242{font-size:93.000000px;}
.fs1_c00242{font-size:105.000000px;}
.y0_c00242{bottom:0.000000px;}
.y25_c00242{bottom:3.105000px;}
.y24_c00242{bottom:7.228363px;}
.y23_c00242{bottom:73.800000px;}
.y22_c00242{bottom:98.550000px;}
.y21_c00242{bottom:123.300000px;}
.y20_c00242{bottom:148.200000px;}
.y1f_c00242{bottom:172.050000px;}
.y1e_c00242{bottom:196.350000px;}
.y1d_c00242{bottom:220.950000px;}
.y1c_c00242{bottom:245.400000px;}
.y1b_c00242{bottom:270.000000px;}
.y1a_c00242{bottom:293.550000px;}
.y19_c00242{bottom:317.850000px;}
.y18_c00242{bottom:342.000000px;}
.y17_c00242{bottom:389.700000px;}
.y16_c00242{bottom:437.700000px;}
.y1_c00242{bottom:438.450000px;}
.y15_c00242{bottom:462.000000px;}
.y14_c00242{bottom:485.700000px;}
.y13_c00242{bottom:510.600000px;}
.y12_c00242{bottom:534.300000px;}
.y11_c00242{bottom:558.000000px;}
.y10_c00242{bottom:581.850000px;}
.yf_c00242{bottom:605.700000px;}
.ye_c00242{bottom:629.400000px;}
.yd_c00242{bottom:653.400000px;}
.yc_c00242{bottom:678.750000px;}
.yb_c00242{bottom:702.000000px;}
.ya_c00242{bottom:725.850000px;}
.y9_c00242{bottom:749.850000px;}
.y8_c00242{bottom:774.450000px;}
.y7_c00242{bottom:798.750000px;}
.y6_c00242{bottom:822.750000px;}
.y5_c00242{bottom:847.350000px;}
.y4_c00242{bottom:872.100000px;}
.y3_c00242{bottom:896.100000px;}
.y2_c00242{bottom:931.800000px;}
.h9_c00242{height:13.200074px;}
.ha_c00242{height:43.804688px;}
.h8_c00242{height:72.312000px;}
.h2_c00242{height:79.497070px;}
.h5_c00242{height:84.269531px;}
.h6_c00242{height:91.160156px;}
.h4_c00242{height:91.176000px;}
.h7_c00242{height:91.776000px;}
.h3_c00242{height:103.000488px;}
.h0_c00242{height:980.100000px;}
.h1_c00242{height:980.250000px;}
.w2_c00242{width:104.875500px;}
.w0_c00242{width:665.850000px;}
.w1_c00242{width:666.000000px;}
.x0_c00242{left:0.000000px;}
.x1_c00242{left:26.400000px;}
.x3_c00242{left:59.700000px;}
.x7_c00242{left:61.050000px;}
.x4_c00242{left:62.100000px;}
.x5_c00242{left:63.150000px;}
.x2_c00242{left:192.000000px;}
.x9_c00242{left:284.739258px;}
.x8_c00242{left:361.200000px;}
.x6_c00242{left:445.950000px;}
@media print{
.v0_c00242{vertical-align:0.000000pt;}
.ls1_c00242{letter-spacing:0.000000pt;}
.ls0_c00242{letter-spacing:0.266667pt;}
.ws1_c00242{word-spacing:-60.165333pt;}
.ws2_c00242{word-spacing:-52.608000pt;}
.ws0_c00242{word-spacing:-18.000000pt;}
.ws3_c00242{word-spacing:-15.333333pt;}
.ws4_c00242{word-spacing:0.000000pt;}
._16_c00242{margin-left:-19.829333pt;}
._1b_c00242{margin-left:-14.616000pt;}
._18_c00242{margin-left:-13.541333pt;}
._b_c00242{margin-left:-11.669333pt;}
._19_c00242{margin-left:-10.061333pt;}
._5_c00242{margin-left:-8.973333pt;}
._13_c00242{margin-left:-7.453333pt;}
._1a_c00242{margin-left:-6.501333pt;}
._0_c00242{margin-left:-5.040000pt;}
._1_c00242{margin-left:-3.453333pt;}
._3_c00242{margin-left:-2.333333pt;}
._a_c00242{margin-left:-1.053333pt;}
._c_c00242{width:0.957333pt;}
._2_c00242{width:1.866667pt;}
._9_c00242{width:3.045333pt;}
._8_c00242{width:4.248000pt;}
._7_c00242{width:5.904000pt;}
._10_c00242{width:6.824000pt;}
._14_c00242{width:7.722667pt;}
._6_c00242{width:8.784000pt;}
._e_c00242{width:9.749333pt;}
._15_c00242{width:11.365333pt;}
._d_c00242{width:12.482667pt;}
._11_c00242{width:13.456000pt;}
._f_c00242{width:14.600000pt;}
._12_c00242{width:26.525333pt;}
._1d_c00242{width:34.642667pt;}
._4_c00242{width:37.613333pt;}
._1c_c00242{width:41.069333pt;}
._17_c00242{width:217.778667pt;}
._1e_c00242{width:262.181333pt;}
.fs6_c00242{font-size:42.666667pt;}
.fs5_c00242{font-size:61.333333pt;}
.fs4_c00242{font-size:64.000000pt;}
.fs0_c00242{font-size:72.000000pt;}
.fs3_c00242{font-size:77.333333pt;}
.fs2_c00242{font-size:82.666667pt;}
.fs1_c00242{font-size:93.333333pt;}
.y0_c00242{bottom:0.000000pt;}
.y25_c00242{bottom:2.760000pt;}
.y24_c00242{bottom:6.425212pt;}
.y23_c00242{bottom:65.600000pt;}
.y22_c00242{bottom:87.600000pt;}
.y21_c00242{bottom:109.600000pt;}
.y20_c00242{bottom:131.733333pt;}
.y1f_c00242{bottom:152.933333pt;}
.y1e_c00242{bottom:174.533333pt;}
.y1d_c00242{bottom:196.400000pt;}
.y1c_c00242{bottom:218.133333pt;}
.y1b_c00242{bottom:240.000000pt;}
.y1a_c00242{bottom:260.933333pt;}
.y19_c00242{bottom:282.533333pt;}
.y18_c00242{bottom:304.000000pt;}
.y17_c00242{bottom:346.400000pt;}
.y16_c00242{bottom:389.066667pt;}
.y1_c00242{bottom:389.733333pt;}
.y15_c00242{bottom:410.666667pt;}
.y14_c00242{bottom:431.733333pt;}
.y13_c00242{bottom:453.866667pt;}
.y12_c00242{bottom:474.933333pt;}
.y11_c00242{bottom:496.000000pt;}
.y10_c00242{bottom:517.200000pt;}
.yf_c00242{bottom:538.400000pt;}
.ye_c00242{bottom:559.466667pt;}
.yd_c00242{bottom:580.800000pt;}
.yc_c00242{bottom:603.333333pt;}
.yb_c00242{bottom:624.000000pt;}
.ya_c00242{bottom:645.200000pt;}
.y9_c00242{bottom:666.533333pt;}
.y8_c00242{bottom:688.400000pt;}
.y7_c00242{bottom:710.000000pt;}
.y6_c00242{bottom:731.333333pt;}
.y5_c00242{bottom:753.200000pt;}
.y4_c00242{bottom:775.200000pt;}
.y3_c00242{bottom:796.533333pt;}
.y2_c00242{bottom:828.266667pt;}
.h9_c00242{height:11.733399pt;}
.ha_c00242{height:38.937500pt;}
.h8_c00242{height:64.277333pt;}
.h2_c00242{height:70.664062pt;}
.h5_c00242{height:74.906250pt;}
.h6_c00242{height:81.031250pt;}
.h4_c00242{height:81.045333pt;}
.h7_c00242{height:81.578667pt;}
.h3_c00242{height:91.555990pt;}
.h0_c00242{height:871.200000pt;}
.h1_c00242{height:871.333333pt;}
.w2_c00242{width:93.222667pt;}
.w0_c00242{width:591.866667pt;}
.w1_c00242{width:592.000000pt;}
.x0_c00242{left:0.000000pt;}
.x1_c00242{left:23.466667pt;}
.x3_c00242{left:53.066667pt;}
.x7_c00242{left:54.266667pt;}
.x4_c00242{left:55.200000pt;}
.x5_c00242{left:56.133333pt;}
.x2_c00242{left:170.666667pt;}
.x9_c00242{left:253.101563pt;}
.x8_c00242{left:321.066667pt;}
.x6_c00242{left:396.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_fd4cefa93e1324793caef594.woff2')format("woff");}.ff1_c00243{font-family:ff1_c00243;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00243;src:url('chunks/assets/font_d68db1b732538016da68c231.woff2')format("woff");}.ff2_c00243{font-family:ff2_c00243;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00243;src:url('chunks/assets/font_2acea062c2764942830e9492.woff2')format("woff");}.ff3_c00243{font-family:ff3_c00243;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00243;src:url('chunks/assets/font_2b3147890e01444c92b24611.woff2')format("woff");}.ff4_c00243{font-family:ff4_c00243;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00243;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff5_c00243{font-family:ff5_c00243;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00243;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c00243{font-family:ff6_c00243;line-height:1.219238;font-style: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;}
.ls1_c00243{letter-spacing:0.000000px;}
.ls0_c00243{letter-spacing:3.300000px;}
.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:-67.686000px;}
.ws0_c00243{word-spacing:-17.352000px;}
.ws2_c00243{word-spacing:0.000000px;}
._1d_c00243{margin-left:-43.821000px;}
._1a_c00243{margin-left:-25.839000px;}
._16_c00243{margin-left:-15.486000px;}
._13_c00243{margin-left:-13.758000px;}
._14_c00243{margin-left:-12.615000px;}
._d_c00243{margin-left:-10.611000px;}
._15_c00243{margin-left:-9.456000px;}
._a_c00243{margin-left:-8.454000px;}
._7_c00243{margin-left:-6.966000px;}
._0_c00243{margin-left:-5.280000px;}
._b_c00243{margin-left:-3.336000px;}
._5_c00243{margin-left:-2.268000px;}
._12_c00243{margin-left:-1.230000px;}
._4_c00243{width:1.539000px;}
._9_c00243{width:2.769000px;}
._6_c00243{width:3.888000px;}
._8_c00243{width:5.670000px;}
._2_c00243{width:7.533000px;}
._f_c00243{width:9.423000px;}
._c_c00243{width:10.653000px;}
._3_c00243{width:11.745000px;}
._11_c00243{width:13.782000px;}
._10_c00243{width:15.486000px;}
._1c_c00243{width:17.655000px;}
._1_c00243{width:39.123000px;}
._e_c00243{width:44.550000px;}
._18_c00243{width:65.322000px;}
._1b_c00243{width:68.283000px;}
._1f_c00243{width:84.903000px;}
._19_c00243{width:89.277000px;}
._1e_c00243{width:175.833000px;}
._17_c00243{width:254.988000px;}
._20_c00243{width:1041.846000px;}
.fc2_c00243{color:transparent;}
.fc1_c00243{color:rgb(128,128,128);}
.fc0_c00243{color:rgb(0,0,0);}
.fs3_c00243{font-size:48.000000px;}
.fs0_c00243{font-size:72.000000px;}
.fs1_c00243{font-size:81.000000px;}
.fs2_c00243{font-size:87.000000px;}
.y0_c00243{bottom:0.000000px;}
.y25_c00243{bottom:3.105000px;}
.y24_c00243{bottom:7.228357px;}
.y23_c00243{bottom:72.630000px;}
.y22_c00243{bottom:95.280000px;}
.y21_c00243{bottom:119.580000px;}
.y20_c00243{bottom:145.080000px;}
.y1f_c00243{bottom:168.780000px;}
.y1e_c00243{bottom:192.030000px;}
.y1d_c00243{bottom:216.780000px;}
.y1c_c00243{bottom:241.680000px;}
.y1b_c00243{bottom:265.680000px;}
.y1a_c00243{bottom:289.980000px;}
.y19_c00243{bottom:314.880000px;}
.y18_c00243{bottom:338.580000px;}
.y17_c00243{bottom:362.580000px;}
.y16_c00243{bottom:387.480000px;}
.y15_c00243{bottom:411.780000px;}
.y14_c00243{bottom:437.430000px;}
.y13_c00243{bottom:460.980000px;}
.y12_c00243{bottom:484.680000px;}
.y11_c00243{bottom:508.980000px;}
.y10_c00243{bottom:534.330000px;}
.yf_c00243{bottom:557.580000px;}
.ye_c00243{bottom:582.180000px;}
.yd_c00243{bottom:608.280000px;}
.yc_c00243{bottom:630.180000px;}
.yb_c00243{bottom:655.380000px;}
.ya_c00243{bottom:678.780000px;}
.y9_c00243{bottom:703.080000px;}
.y8_c00243{bottom:729.330000px;}
.y7_c00243{bottom:751.380000px;}
.y6_c00243{bottom:775.680000px;}
.y5_c00243{bottom:799.830000px;}
.y4_c00243{bottom:824.130000px;}
.y3_c00243{bottom:848.580000px;}
.y2_c00243{bottom:872.130000px;}
.y1_c00243{bottom:896.430000px;}
.h6_c00243{height:13.200074px;}
.h7_c00243{height:43.804688px;}
.h3_c00243{height:79.497070px;}
.h1_c00243{height:84.269531px;}
.h5_c00243{height:91.160156px;}
.h2_c00243{height:91.176000px;}
.h4_c00243{height:110.151855px;}
.h0_c00243{height:995.250000px;}
.w2_c00243{width:104.875500px;}
.w0_c00243{width:667.425000px;}
.w1_c00243{width:667.500000px;}
.x0_c00243{left:0.000000px;}
.x7_c00243{left:30.750000px;}
.x9_c00243{left:92.700000px;}
.xa_c00243{left:95.100000px;}
.x3_c00243{left:105.600000px;}
.x1_c00243{left:107.100000px;}
.xb_c00243{left:118.350000px;}
.x8_c00243{left:119.850000px;}
.x6_c00243{left:121.200000px;}
.x5_c00243{left:122.400000px;}
.x2_c00243{left:123.900000px;}
.xd_c00243{left:126.150000px;}
.xc_c00243{left:132.900000px;}
.x4_c00243{left:148.050000px;}
.xe_c00243{left:285.526749px;}
@media print{
.v0_c00243{vertical-align:0.000000pt;}
.ls1_c00243{letter-spacing:0.000000pt;}
.ls0_c00243{letter-spacing:2.933333pt;}
.ws1_c00243{word-spacing:-60.165333pt;}
.ws0_c00243{word-spacing:-15.424000pt;}
.ws2_c00243{word-spacing:0.000000pt;}
._1d_c00243{margin-left:-38.952000pt;}
._1a_c00243{margin-left:-22.968000pt;}
._16_c00243{margin-left:-13.765333pt;}
._13_c00243{margin-left:-12.229333pt;}
._14_c00243{margin-left:-11.213333pt;}
._d_c00243{margin-left:-9.432000pt;}
._15_c00243{margin-left:-8.405333pt;}
._a_c00243{margin-left:-7.514667pt;}
._7_c00243{margin-left:-6.192000pt;}
._0_c00243{margin-left:-4.693333pt;}
._b_c00243{margin-left:-2.965333pt;}
._5_c00243{margin-left:-2.016000pt;}
._12_c00243{margin-left:-1.093333pt;}
._4_c00243{width:1.368000pt;}
._9_c00243{width:2.461333pt;}
._6_c00243{width:3.456000pt;}
._8_c00243{width:5.040000pt;}
._2_c00243{width:6.696000pt;}
._f_c00243{width:8.376000pt;}
._c_c00243{width:9.469333pt;}
._3_c00243{width:10.440000pt;}
._11_c00243{width:12.250667pt;}
._10_c00243{width:13.765333pt;}
._1c_c00243{width:15.693333pt;}
._1_c00243{width:34.776000pt;}
._e_c00243{width:39.600000pt;}
._18_c00243{width:58.064000pt;}
._1b_c00243{width:60.696000pt;}
._1f_c00243{width:75.469333pt;}
._19_c00243{width:79.357333pt;}
._1e_c00243{width:156.296000pt;}
._17_c00243{width:226.656000pt;}
._20_c00243{width:926.085333pt;}
.fs3_c00243{font-size:42.666667pt;}
.fs0_c00243{font-size:64.000000pt;}
.fs1_c00243{font-size:72.000000pt;}
.fs2_c00243{font-size:77.333333pt;}
.y0_c00243{bottom:0.000000pt;}
.y25_c00243{bottom:2.760000pt;}
.y24_c00243{bottom:6.425206pt;}
.y23_c00243{bottom:64.560000pt;}
.y22_c00243{bottom:84.693333pt;}
.y21_c00243{bottom:106.293333pt;}
.y20_c00243{bottom:128.960000pt;}
.y1f_c00243{bottom:150.026667pt;}
.y1e_c00243{bottom:170.693333pt;}
.y1d_c00243{bottom:192.693333pt;}
.y1c_c00243{bottom:214.826667pt;}
.y1b_c00243{bottom:236.160000pt;}
.y1a_c00243{bottom:257.760000pt;}
.y19_c00243{bottom:279.893333pt;}
.y18_c00243{bottom:300.960000pt;}
.y17_c00243{bottom:322.293333pt;}
.y16_c00243{bottom:344.426667pt;}
.y15_c00243{bottom:366.026667pt;}
.y14_c00243{bottom:388.826667pt;}
.y13_c00243{bottom:409.760000pt;}
.y12_c00243{bottom:430.826667pt;}
.y11_c00243{bottom:452.426667pt;}
.y10_c00243{bottom:474.960000pt;}
.yf_c00243{bottom:495.626667pt;}
.ye_c00243{bottom:517.493333pt;}
.yd_c00243{bottom:540.693333pt;}
.yc_c00243{bottom:560.160000pt;}
.yb_c00243{bottom:582.560000pt;}
.ya_c00243{bottom:603.360000pt;}
.y9_c00243{bottom:624.960000pt;}
.y8_c00243{bottom:648.293333pt;}
.y7_c00243{bottom:667.893333pt;}
.y6_c00243{bottom:689.493333pt;}
.y5_c00243{bottom:710.960000pt;}
.y4_c00243{bottom:732.560000pt;}
.y3_c00243{bottom:754.293333pt;}
.y2_c00243{bottom:775.226667pt;}
.y1_c00243{bottom:796.826667pt;}
.h6_c00243{height:11.733399pt;}
.h7_c00243{height:38.937500pt;}
.h3_c00243{height:70.664062pt;}
.h1_c00243{height:74.906250pt;}
.h5_c00243{height:81.031250pt;}
.h2_c00243{height:81.045333pt;}
.h4_c00243{height:97.912760pt;}
.h0_c00243{height:884.666667pt;}
.w2_c00243{width:93.222667pt;}
.w0_c00243{width:593.266667pt;}
.w1_c00243{width:593.333333pt;}
.x0_c00243{left:0.000000pt;}
.x7_c00243{left:27.333333pt;}
.x9_c00243{left:82.400000pt;}
.xa_c00243{left:84.533333pt;}
.x3_c00243{left:93.866667pt;}
.x1_c00243{left:95.200000pt;}
.xb_c00243{left:105.200000pt;}
.x8_c00243{left:106.533333pt;}
.x6_c00243{left:107.733333pt;}
.x5_c00243{left:108.800000pt;}
.x2_c00243{left:110.133333pt;}
.xd_c00243{left:112.133333pt;}
.xc_c00243{left:118.133333pt;}
.x4_c00243{left:131.600000pt;}
.xe_c00243{left:253.801554pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b6c00496a434da2e36123616.woff2')format("woff");}.ff1_c00244{font-family:ff1_c00244;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00244;src:url('chunks/assets/font_fb1a71e253d201915aefc747.woff2')format("woff");}.ff2_c00244{font-family:ff2_c00244;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00244;src:url('chunks/assets/font_f3ccaa6c6b47577d6afd8838.woff2')format("woff");}.ff3_c00244{font-family:ff3_c00244;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00244;src:url('chunks/assets/font_bec59f5588eee3492ef46aa5.woff2')format("woff");}.ff4_c00244{font-family:ff4_c00244;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00244;src:url('chunks/assets/font_58e5755d4ccb8d6fec83cd94.woff2')format("woff");}.ff5_c00244{font-family:ff5_c00244;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00244;src:url('chunks/assets/font_3ed2d9dcf3c186874db75859.woff2')format("woff");}.ff6_c00244{font-family:ff6_c00244;line-height:1.437000;font-style:normal;font-weight: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_c00244;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c00244{font-family:ff7_c00244;line-height:1.219238;font-style: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;}
.ls3_c00244{letter-spacing:-15.000000px;}
.ls2_c00244{letter-spacing:0.000000px;}
.ls0_c00244{letter-spacing:1.602000px;}
.ls1_c00244{letter-spacing:3.000000px;}
.sc__c00244{text-shadow:none;}
.sc0_c00244{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00244{-webkit-text-stroke:0px transparent;}
.sc0_c00244{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00244{word-spacing:-67.686000px;}
.ws0_c00244{word-spacing:-17.352000px;}
.ws2_c00244{word-spacing:0.000000px;}
._14_c00244{margin-left:-25.413000px;}
._24_c00244{margin-left:-23.724000px;}
._19_c00244{margin-left:-17.076000px;}
._1c_c00244{margin-left:-15.243000px;}
._1f_c00244{margin-left:-13.608000px;}
._e_c00244{margin-left:-12.534000px;}
._12_c00244{margin-left:-10.845000px;}
._1b_c00244{margin-left:-9.747000px;}
._11_c00244{margin-left:-8.310000px;}
._c_c00244{margin-left:-7.047000px;}
._f_c00244{margin-left:-5.961000px;}
._a_c00244{margin-left:-4.698000px;}
._5_c00244{margin-left:-2.754000px;}
._6_c00244{margin-left:-1.734000px;}
._9_c00244{width:1.377000px;}
._8_c00244{width:2.673000px;}
._2_c00244{width:4.284000px;}
._b_c00244{width:5.607000px;}
._3_c00244{width:6.732000px;}
._1_c00244{width:7.752000px;}
._4_c00244{width:8.772000px;}
._d_c00244{width:9.804000px;}
._0_c00244{width:10.914000px;}
._16_c00244{width:12.399000px;}
._1d_c00244{width:13.653000px;}
._10_c00244{width:15.273000px;}
._20_c00244{width:16.281000px;}
._17_c00244{width:17.925000px;}
._18_c00244{width:34.476000px;}
._1a_c00244{width:36.372000px;}
._26_c00244{width:39.564000px;}
._13_c00244{width:41.916000px;}
._7_c00244{width:43.350000px;}
._23_c00244{width:48.840000px;}
._22_c00244{width:55.596000px;}
._1e_c00244{width:66.855000px;}
._15_c00244{width:175.239000px;}
._21_c00244{width:200.160000px;}
._25_c00244{width:236.766000px;}
._27_c00244{width:390.792000px;}
.fc2_c00244{color:transparent;}
.fc1_c00244{color:rgb(128,128,128);}
.fc0_c00244{color:rgb(0,0,0);}
.fs6_c00244{font-size:48.000000px;}
.fs4_c00244{font-size:57.000000px;}
.fs2_c00244{font-size:72.000000px;}
.fs3_c00244{font-size:78.000000px;}
.fs1_c00244{font-size:81.000000px;}
.fs5_c00244{font-size:87.000000px;}
.fs0_c00244{font-size:102.000000px;}
.y0_c00244{bottom:0.000000px;}
.y26_c00244{bottom:3.105000px;}
.y25_c00244{bottom:7.228371px;}
.y24_c00244{bottom:77.415000px;}
.y23_c00244{bottom:100.365000px;}
.y22_c00244{bottom:125.865000px;}
.y21_c00244{bottom:149.565000px;}
.y20_c00244{bottom:174.465000px;}
.y1f_c00244{bottom:198.915000px;}
.y1e_c00244{bottom:223.065000px;}
.y1d_c00244{bottom:246.765000px;}
.y1c_c00244{bottom:271.365000px;}
.y1b_c00244{bottom:295.665000px;}
.y1a_c00244{bottom:320.265000px;}
.y19_c00244{bottom:343.665000px;}
.y18_c00244{bottom:367.665000px;}
.y17_c00244{bottom:391.215000px;}
.y16_c00244{bottom:415.665000px;}
.y15_c00244{bottom:439.515000px;}
.y14_c00244{bottom:463.365000px;}
.y13_c00244{bottom:487.365000px;}
.y12_c00244{bottom:511.365000px;}
.y11_c00244{bottom:535.365000px;}
.y10_c00244{bottom:559.215000px;}
.yf_c00244{bottom:582.915000px;}
.ye_c00244{bottom:606.165000px;}
.yd_c00244{bottom:629.865000px;}
.yc_c00244{bottom:653.715000px;}
.yb_c00244{bottom:678.465000px;}
.ya_c00244{bottom:702.465000px;}
.y9_c00244{bottom:726.315000px;}
.y8_c00244{bottom:750.315000px;}
.y7_c00244{bottom:774.315000px;}
.y6_c00244{bottom:798.315000px;}
.y5_c00244{bottom:822.465000px;}
.y4_c00244{bottom:846.915000px;}
.y3_c00244{bottom:870.765000px;}
.y2_c00244{bottom:895.515000px;}
.y1_c00244{bottom:928.815000px;}
.h9_c00244{height:13.200074px;}
.ha_c00244{height:43.804688px;}
.h5_c00244{height:79.497070px;}
.h4_c00244{height:84.269531px;}
.h3_c00244{height:91.160156px;}
.h8_c00244{height:91.176000px;}
.h6_c00244{height:98.756836px;}
.h2_c00244{height:100.057617px;}
.h7_c00244{height:104.839927px;}
.h0_c00244{height:989.025000px;}
.h1_c00244{height:989.250000px;}
.w1_c00244{width:104.875500px;}
.w0_c00244{width:672.000000px;}
.x0_c00244{left:0.000000px;}
.x2_c00244{left:35.700000px;}
.x3_c00244{left:39.450000px;}
.x4_c00244{left:40.500000px;}
.x5_c00244{left:42.450000px;}
.x6_c00244{left:44.550000px;}
.x7_c00244{left:46.500000px;}
.x9_c00244{left:47.550000px;}
.xa_c00244{left:48.900000px;}
.xb_c00244{left:49.950000px;}
.x8_c00244{left:51.900000px;}
.x1_c00244{left:70.950000px;}
.xd_c00244{left:287.814240px;}
.xc_c00244{left:358.650000px;}
@media print{
.v0_c00244{vertical-align:0.000000pt;}
.ls3_c00244{letter-spacing:-13.333333pt;}
.ls2_c00244{letter-spacing:0.000000pt;}
.ls0_c00244{letter-spacing:1.424000pt;}
.ls1_c00244{letter-spacing:2.666667pt;}
.ws1_c00244{word-spacing:-60.165333pt;}
.ws0_c00244{word-spacing:-15.424000pt;}
.ws2_c00244{word-spacing:0.000000pt;}
._14_c00244{margin-left:-22.589333pt;}
._24_c00244{margin-left:-21.088000pt;}
._19_c00244{margin-left:-15.178667pt;}
._1c_c00244{margin-left:-13.549333pt;}
._1f_c00244{margin-left:-12.096000pt;}
._e_c00244{margin-left:-11.141333pt;}
._12_c00244{margin-left:-9.640000pt;}
._1b_c00244{margin-left:-8.664000pt;}
._11_c00244{margin-left:-7.386667pt;}
._c_c00244{margin-left:-6.264000pt;}
._f_c00244{margin-left:-5.298667pt;}
._a_c00244{margin-left:-4.176000pt;}
._5_c00244{margin-left:-2.448000pt;}
._6_c00244{margin-left:-1.541333pt;}
._9_c00244{width:1.224000pt;}
._8_c00244{width:2.376000pt;}
._2_c00244{width:3.808000pt;}
._b_c00244{width:4.984000pt;}
._3_c00244{width:5.984000pt;}
._1_c00244{width:6.890667pt;}
._4_c00244{width:7.797333pt;}
._d_c00244{width:8.714667pt;}
._0_c00244{width:9.701333pt;}
._16_c00244{width:11.021333pt;}
._1d_c00244{width:12.136000pt;}
._10_c00244{width:13.576000pt;}
._20_c00244{width:14.472000pt;}
._17_c00244{width:15.933333pt;}
._18_c00244{width:30.645333pt;}
._1a_c00244{width:32.330667pt;}
._26_c00244{width:35.168000pt;}
._13_c00244{width:37.258667pt;}
._7_c00244{width:38.533333pt;}
._23_c00244{width:43.413333pt;}
._22_c00244{width:49.418667pt;}
._1e_c00244{width:59.426667pt;}
._15_c00244{width:155.768000pt;}
._21_c00244{width:177.920000pt;}
._25_c00244{width:210.458667pt;}
._27_c00244{width:347.370667pt;}
.fs6_c00244{font-size:42.666667pt;}
.fs4_c00244{font-size:50.666667pt;}
.fs2_c00244{font-size:64.000000pt;}
.fs3_c00244{font-size:69.333333pt;}
.fs1_c00244{font-size:72.000000pt;}
.fs5_c00244{font-size:77.333333pt;}
.fs0_c00244{font-size:90.666667pt;}
.y0_c00244{bottom:0.000000pt;}
.y26_c00244{bottom:2.760000pt;}
.y25_c00244{bottom:6.425219pt;}
.y24_c00244{bottom:68.813333pt;}
.y23_c00244{bottom:89.213333pt;}
.y22_c00244{bottom:111.880000pt;}
.y21_c00244{bottom:132.946667pt;}
.y20_c00244{bottom:155.080000pt;}
.y1f_c00244{bottom:176.813333pt;}
.y1e_c00244{bottom:198.280000pt;}
.y1d_c00244{bottom:219.346667pt;}
.y1c_c00244{bottom:241.213333pt;}
.y1b_c00244{bottom:262.813333pt;}
.y1a_c00244{bottom:284.680000pt;}
.y19_c00244{bottom:305.480000pt;}
.y18_c00244{bottom:326.813333pt;}
.y17_c00244{bottom:347.746667pt;}
.y16_c00244{bottom:369.480000pt;}
.y15_c00244{bottom:390.680000pt;}
.y14_c00244{bottom:411.880000pt;}
.y13_c00244{bottom:433.213333pt;}
.y12_c00244{bottom:454.546667pt;}
.y11_c00244{bottom:475.880000pt;}
.y10_c00244{bottom:497.080000pt;}
.yf_c00244{bottom:518.146667pt;}
.ye_c00244{bottom:538.813333pt;}
.yd_c00244{bottom:559.880000pt;}
.yc_c00244{bottom:581.080000pt;}
.yb_c00244{bottom:603.080000pt;}
.ya_c00244{bottom:624.413333pt;}
.y9_c00244{bottom:645.613333pt;}
.y8_c00244{bottom:666.946667pt;}
.y7_c00244{bottom:688.280000pt;}
.y6_c00244{bottom:709.613333pt;}
.y5_c00244{bottom:731.080000pt;}
.y4_c00244{bottom:752.813333pt;}
.y3_c00244{bottom:774.013333pt;}
.y2_c00244{bottom:796.013333pt;}
.y1_c00244{bottom:825.613333pt;}
.h9_c00244{height:11.733399pt;}
.ha_c00244{height:38.937500pt;}
.h5_c00244{height:70.664062pt;}
.h4_c00244{height:74.906250pt;}
.h3_c00244{height:81.031250pt;}
.h8_c00244{height:81.045333pt;}
.h6_c00244{height:87.783854pt;}
.h2_c00244{height:88.940104pt;}
.h7_c00244{height:93.191046pt;}
.h0_c00244{height:879.133333pt;}
.h1_c00244{height:879.333333pt;}
.w1_c00244{width:93.222667pt;}
.w0_c00244{width:597.333333pt;}
.x0_c00244{left:0.000000pt;}
.x2_c00244{left:31.733333pt;}
.x3_c00244{left:35.066667pt;}
.x4_c00244{left:36.000000pt;}
.x5_c00244{left:37.733333pt;}
.x6_c00244{left:39.600000pt;}
.x7_c00244{left:41.333333pt;}
.x9_c00244{left:42.266667pt;}
.xa_c00244{left:43.466667pt;}
.xb_c00244{left:44.400000pt;}
.x8_c00244{left:46.133333pt;}
.x1_c00244{left:63.066667pt;}
.xd_c00244{left:255.834880pt;}
.xc_c00244{left:318.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_13ffcc08c20d9ab92dce88df.woff2')format("woff");}.ff1_c00245{font-family:ff1_c00245;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00245;src:url('chunks/assets/font_f3ab6e4f9639c9a3efe47f6b.woff2')format("woff");}.ff2_c00245{font-family:ff2_c00245;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00245;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff3_c00245{font-family:ff3_c00245;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00245;src:url('chunks/assets/font_bbe0187d3152d985e79b5f6b.woff2')format("woff");}.ff4_c00245{font-family:ff4_c00245;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00245;src:url('chunks/assets/font_792966fac024ad60bcc13e25.woff2')format("woff");}.ff5_c00245{font-family:ff5_c00245;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00245;src:url('chunks/assets/font_a9205f96c25c5f295a22e39e.woff2')format("woff");}.ff6_c00245{font-family:ff6_c00245;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00245;src:url('chunks/assets/font_4bf60a0cbfb5a83795fea341.woff2')format("woff");}.ff7_c00245{font-family:ff7_c00245;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00245;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff8_c00245{font-family:ff8_c00245;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00245{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00245{vertical-align:0.000000px;}
.ls1_c00245{letter-spacing:-3.000000px;}
.ls2_c00245{letter-spacing:0.000000px;}
.ls0_c00245{letter-spacing:6.000000px;}
.sc__c00245{text-shadow:none;}
.sc0_c00245{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00245{-webkit-text-stroke:0px transparent;}
.sc0_c00245{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00245{word-spacing:-93.174000px;}
.ws1_c00245{word-spacing:-59.184000px;}
.ws3_c00245{word-spacing:-43.368000px;}
.ws2_c00245{word-spacing:-20.250000px;}
.ws4_c00245{word-spacing:0.000000px;}
._0_c00245{margin-left:-32.994000px;}
._21_c00245{margin-left:-28.512000px;}
._18_c00245{margin-left:-21.183000px;}
._17_c00245{margin-left:-19.890000px;}
._2_c00245{margin-left:-17.901000px;}
._1c_c00245{margin-left:-15.246000px;}
._1_c00245{margin-left:-13.572000px;}
._3_c00245{margin-left:-11.349000px;}
._4_c00245{margin-left:-10.041000px;}
._15_c00245{margin-left:-8.373000px;}
._16_c00245{margin-left:-7.020000px;}
._d_c00245{margin-left:-5.589000px;}
._7_c00245{margin-left:-3.900000px;}
._6_c00245{margin-left:-2.850000px;}
._11_c00245{margin-left:-1.326000px;}
._f_c00245{width:1.227000px;}
._e_c00245{width:2.427000px;}
._b_c00245{width:3.690000px;}
._c_c00245{width:5.670000px;}
._a_c00245{width:6.840000px;}
._13_c00245{width:8.208000px;}
._8_c00245{width:9.216000px;}
._5_c00245{width:10.350000px;}
._10_c00245{width:11.406000px;}
._12_c00245{width:13.752000px;}
._9_c00245{width:15.552000px;}
._19_c00245{width:17.370000px;}
._1a_c00245{width:18.696000px;}
._1d_c00245{width:24.459000px;}
._1f_c00245{width:29.133000px;}
._23_c00245{width:57.591000px;}
._20_c00245{width:77.760000px;}
._1b_c00245{width:151.683000px;}
._14_c00245{width:165.243000px;}
._1e_c00245{width:208.551000px;}
._22_c00245{width:860.301000px;}
.fc2_c00245{color:transparent;}
.fc1_c00245{color:rgb(128,128,128);}
.fc0_c00245{color:rgb(0,0,0);}
.fs7_c00245{font-size:48.000000px;}
.fs4_c00245{font-size:54.000000px;}
.fs2_c00245{font-size:72.000000px;}
.fs1_c00245{font-size:75.000000px;}
.fs6_c00245{font-size:78.000000px;}
.fs3_c00245{font-size:81.000000px;}
.fs5_c00245{font-size:90.000000px;}
.fs0_c00245{font-size:117.000000px;}
.y0_c00245{bottom:0.000000px;}
.y24_c00245{bottom:3.105000px;}
.y23_c00245{bottom:7.228369px;}
.y22_c00245{bottom:69.120000px;}
.y21_c00245{bottom:93.720000px;}
.y20_c00245{bottom:118.770000px;}
.y1f_c00245{bottom:143.370000px;}
.y1e_c00245{bottom:167.670000px;}
.y1d_c00245{bottom:192.720000px;}
.y1c_c00245{bottom:217.320000px;}
.y1b_c00245{bottom:242.670000px;}
.y1a_c00245{bottom:266.520000px;}
.y2_c00245{bottom:286.170000px;}
.y19_c00245{bottom:290.820000px;}
.y1_c00245{bottom:308.820000px;}
.y18_c00245{bottom:315.120000px;}
.y17_c00245{bottom:339.420000px;}
.y16_c00245{bottom:363.420000px;}
.y15_c00245{bottom:387.420000px;}
.y14_c00245{bottom:412.020000px;}
.y13_c00245{bottom:436.620000px;}
.y12_c00245{bottom:460.320000px;}
.y11_c00245{bottom:484.020000px;}
.y10_c00245{bottom:508.620000px;}
.yf_c00245{bottom:532.470000px;}
.ye_c00245{bottom:556.770000px;}
.yd_c00245{bottom:610.920000px;}
.yc_c00245{bottom:640.470000px;}
.yb_c00245{bottom:669.270000px;}
.ya_c00245{bottom:698.520000px;}
.y9_c00245{bottom:745.920000px;}
.y8_c00245{bottom:772.470000px;}
.y7_c00245{bottom:797.070000px;}
.y6_c00245{bottom:820.170000px;}
.y5_c00245{bottom:844.770000px;}
.y4_c00245{bottom:869.370000px;}
.y3_c00245{bottom:891.720000px;}
.h7_c00245{height:13.200073px;}
.h8_c00245{height:43.804688px;}
.h4_c00245{height:79.497070px;}
.h3_c00245{height:84.269531px;}
.h6_c00245{height:88.286133px;}
.h5_c00245{height:88.330078px;}
.h2_c00245{height:136.937988px;}
.h1_c00245{height:986.250000px;}
.h0_c00245{height:986.550000px;}
.w1_c00245{width:104.875500px;}
.w0_c00245{width:661.500000px;}
.x0_c00245{left:0.000000px;}
.x1_c00245{left:55.950000px;}
.xb_c00245{left:132.600000px;}
.xc_c00245{left:144.900000px;}
.xa_c00245{left:147.450000px;}
.x3_c00245{left:148.500000px;}
.x2_c00245{left:149.550000px;}
.x4_c00245{left:180.900000px;}
.x5_c00245{left:239.400000px;}
.xd_c00245{left:272.100000px;}
.xe_c00245{left:282.564240px;}
.x9_c00245{left:283.800000px;}
.x7_c00245{left:285.900000px;}
.x8_c00245{left:287.250000px;}
.x6_c00245{left:326.400000px;}
@media print{
.v0_c00245{vertical-align:0.000000pt;}
.ls1_c00245{letter-spacing:-2.666667pt;}
.ls2_c00245{letter-spacing:0.000000pt;}
.ls0_c00245{letter-spacing:5.333333pt;}
.ws0_c00245{word-spacing:-82.821333pt;}
.ws1_c00245{word-spacing:-52.608000pt;}
.ws3_c00245{word-spacing:-38.549333pt;}
.ws2_c00245{word-spacing:-18.000000pt;}
.ws4_c00245{word-spacing:0.000000pt;}
._0_c00245{margin-left:-29.328000pt;}
._21_c00245{margin-left:-25.344000pt;}
._18_c00245{margin-left:-18.829333pt;}
._17_c00245{margin-left:-17.680000pt;}
._2_c00245{margin-left:-15.912000pt;}
._1c_c00245{margin-left:-13.552000pt;}
._1_c00245{margin-left:-12.064000pt;}
._3_c00245{margin-left:-10.088000pt;}
._4_c00245{margin-left:-8.925333pt;}
._15_c00245{margin-left:-7.442667pt;}
._16_c00245{margin-left:-6.240000pt;}
._d_c00245{margin-left:-4.968000pt;}
._7_c00245{margin-left:-3.466667pt;}
._6_c00245{margin-left:-2.533333pt;}
._11_c00245{margin-left:-1.178667pt;}
._f_c00245{width:1.090667pt;}
._e_c00245{width:2.157333pt;}
._b_c00245{width:3.280000pt;}
._c_c00245{width:5.040000pt;}
._a_c00245{width:6.080000pt;}
._13_c00245{width:7.296000pt;}
._8_c00245{width:8.192000pt;}
._5_c00245{width:9.200000pt;}
._10_c00245{width:10.138667pt;}
._12_c00245{width:12.224000pt;}
._9_c00245{width:13.824000pt;}
._19_c00245{width:15.440000pt;}
._1a_c00245{width:16.618667pt;}
._1d_c00245{width:21.741333pt;}
._1f_c00245{width:25.896000pt;}
._23_c00245{width:51.192000pt;}
._20_c00245{width:69.120000pt;}
._1b_c00245{width:134.829333pt;}
._14_c00245{width:146.882667pt;}
._1e_c00245{width:185.378667pt;}
._22_c00245{width:764.712000pt;}
.fs7_c00245{font-size:42.666667pt;}
.fs4_c00245{font-size:48.000000pt;}
.fs2_c00245{font-size:64.000000pt;}
.fs1_c00245{font-size:66.666667pt;}
.fs6_c00245{font-size:69.333333pt;}
.fs3_c00245{font-size:72.000000pt;}
.fs5_c00245{font-size:80.000000pt;}
.fs0_c00245{font-size:104.000000pt;}
.y0_c00245{bottom:0.000000pt;}
.y24_c00245{bottom:2.760000pt;}
.y23_c00245{bottom:6.425217pt;}
.y22_c00245{bottom:61.440000pt;}
.y21_c00245{bottom:83.306667pt;}
.y20_c00245{bottom:105.573333pt;}
.y1f_c00245{bottom:127.440000pt;}
.y1e_c00245{bottom:149.040000pt;}
.y1d_c00245{bottom:171.306667pt;}
.y1c_c00245{bottom:193.173333pt;}
.y1b_c00245{bottom:215.706667pt;}
.y1a_c00245{bottom:236.906667pt;}
.y2_c00245{bottom:254.373333pt;}
.y19_c00245{bottom:258.506667pt;}
.y1_c00245{bottom:274.506667pt;}
.y18_c00245{bottom:280.106667pt;}
.y17_c00245{bottom:301.706667pt;}
.y16_c00245{bottom:323.040000pt;}
.y15_c00245{bottom:344.373333pt;}
.y14_c00245{bottom:366.240000pt;}
.y13_c00245{bottom:388.106667pt;}
.y12_c00245{bottom:409.173333pt;}
.y11_c00245{bottom:430.240000pt;}
.y10_c00245{bottom:452.106667pt;}
.yf_c00245{bottom:473.306667pt;}
.ye_c00245{bottom:494.906667pt;}
.yd_c00245{bottom:543.040000pt;}
.yc_c00245{bottom:569.306667pt;}
.yb_c00245{bottom:594.906667pt;}
.ya_c00245{bottom:620.906667pt;}
.y9_c00245{bottom:663.040000pt;}
.y8_c00245{bottom:686.640000pt;}
.y7_c00245{bottom:708.506667pt;}
.y6_c00245{bottom:729.040000pt;}
.y5_c00245{bottom:750.906667pt;}
.y4_c00245{bottom:772.773333pt;}
.y3_c00245{bottom:792.640000pt;}
.h7_c00245{height:11.733399pt;}
.h8_c00245{height:38.937500pt;}
.h4_c00245{height:70.664062pt;}
.h3_c00245{height:74.906250pt;}
.h6_c00245{height:78.476562pt;}
.h5_c00245{height:78.515625pt;}
.h2_c00245{height:121.722656pt;}
.h1_c00245{height:876.666667pt;}
.h0_c00245{height:876.933333pt;}
.w1_c00245{width:93.222667pt;}
.w0_c00245{width:588.000000pt;}
.x0_c00245{left:0.000000pt;}
.x1_c00245{left:49.733333pt;}
.xb_c00245{left:117.866667pt;}
.xc_c00245{left:128.800000pt;}
.xa_c00245{left:131.066667pt;}
.x3_c00245{left:132.000000pt;}
.x2_c00245{left:132.933333pt;}
.x4_c00245{left:160.800000pt;}
.x5_c00245{left:212.800000pt;}
.xd_c00245{left:241.866667pt;}
.xe_c00245{left:251.168213pt;}
.x9_c00245{left:252.266667pt;}
.x7_c00245{left:254.133333pt;}
.x8_c00245{left:255.333333pt;}
.x6_c00245{left:290.133333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_87260b709c83dee344d9268e.woff2')format("woff");}.ff1_c00246{font-family:ff1_c00246;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00246;src:url('chunks/assets/font_340ae5c544dc431d2e71663d.woff2')format("woff");}.ff2_c00246{font-family:ff2_c00246;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00246;src:url('chunks/assets/font_c2d6737736760ba1c57fd7ef.woff2')format("woff");}.ff3_c00246{font-family:ff3_c00246;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00246;src:url('chunks/assets/font_406e955d6ed66269647b7cbf.woff2')format("woff");}.ff4_c00246{font-family:ff4_c00246;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00246;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c00246{font-family:ff5_c00246;line-height:1.219238;font-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_c00246{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,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;}
.ls1_c00246{letter-spacing:0.000000px;}
.ls0_c00246{letter-spacing:1.080000px;}
.ls2_c00246{letter-spacing:15.000000px;}
.sc__c00246{text-shadow:none;}
.sc0_c00246{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00246{-webkit-text-stroke:0px transparent;}
.sc0_c00246{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00246{word-spacing:-23.859000px;}
.ws1_c00246{word-spacing:0.000000px;}
._1_c00246{margin-left:-45.408000px;}
._1f_c00246{margin-left:-36.936000px;}
._8_c00246{margin-left:-28.143000px;}
._0_c00246{margin-left:-24.261000px;}
._1b_c00246{margin-left:-13.662000px;}
._1c_c00246{margin-left:-11.988000px;}
._16_c00246{margin-left:-9.864000px;}
._b_c00246{margin-left:-6.822000px;}
._5_c00246{margin-left:-5.049000px;}
._4_c00246{margin-left:-3.069000px;}
._3_c00246{margin-left:-1.881000px;}
._6_c00246{width:1.386000px;}
._10_c00246{width:2.403000px;}
._a_c00246{width:3.411000px;}
._9_c00246{width:4.932000px;}
._c_c00246{width:6.192000px;}
._d_c00246{width:7.209000px;}
._e_c00246{width:8.577000px;}
._14_c00246{width:9.738000px;}
._13_c00246{width:11.343000px;}
._17_c00246{width:12.534000px;}
._f_c00246{width:13.878000px;}
._18_c00246{width:15.228000px;}
._19_c00246{width:17.730000px;}
._1a_c00246{width:22.998000px;}
._12_c00246{width:30.504000px;}
._1d_c00246{width:34.326000px;}
._11_c00246{width:36.348000px;}
._15_c00246{width:38.091000px;}
._7_c00246{width:97.137000px;}
._20_c00246{width:113.562000px;}
._2_c00246{width:172.500000px;}
._1e_c00246{width:196.245000px;}
.fc2_c00246{color:transparent;}
.fc1_c00246{color:rgb(128,128,128);}
.fc0_c00246{color:rgb(0,0,0);}
.fs7_c00246{font-size:24.000000px;}
.fs9_c00246{font-size:48.000000px;}
.fs4_c00246{font-size:57.000000px;}
.fs5_c00246{font-size:60.000000px;}
.fs8_c00246{font-size:72.000000px;}
.fs3_c00246{font-size:78.000000px;}
.fs2_c00246{font-size:81.000000px;}
.fs0_c00246{font-size:99.000000px;}
.fs6_c00246{font-size:108.000000px;}
.fs1_c00246{font-size:132.000000px;}
.y0_c00246{bottom:0.000000px;}
.y25_c00246{bottom:3.105000px;}
.y24_c00246{bottom:7.228357px;}
.y23_c00246{bottom:62.430000px;}
.y22_c00246{bottom:86.130000px;}
.y21_c00246{bottom:111.780000px;}
.y20_c00246{bottom:136.380000px;}
.y1f_c00246{bottom:160.680000px;}
.y1e_c00246{bottom:185.580000px;}
.y1d_c00246{bottom:209.880000px;}
.y1c_c00246{bottom:234.330000px;}
.y1b_c00246{bottom:258.630000px;}
.y1a_c00246{bottom:283.230000px;}
.y19_c00246{bottom:307.530000px;}
.y18_c00246{bottom:331.530000px;}
.y17_c00246{bottom:355.380000px;}
.y16_c00246{bottom:379.380000px;}
.y15_c00246{bottom:403.680000px;}
.y14_c00246{bottom:427.380000px;}
.y13_c00246{bottom:451.230000px;}
.y12_c00246{bottom:475.530000px;}
.y11_c00246{bottom:500.130000px;}
.y10_c00246{bottom:523.530000px;}
.yf_c00246{bottom:548.730000px;}
.ye_c00246{bottom:573.780000px;}
.yd_c00246{bottom:594.030000px;}
.yc_c00246{bottom:617.730000px;}
.yb_c00246{bottom:642.330000px;}
.ya_c00246{bottom:667.230000px;}
.y9_c00246{bottom:690.480000px;}
.y8_c00246{bottom:699.480000px;}
.y7_c00246{bottom:737.730000px;}
.y6_c00246{bottom:783.330000px;}
.y5_c00246{bottom:808.380000px;}
.y4_c00246{bottom:833.280000px;}
.y3_c00246{bottom:857.280000px;}
.y2_c00246{bottom:880.980000px;}
.y1_c00246{bottom:914.280000px;}
.h7_c00246{height:13.200074px;}
.h8_c00246{height:43.804688px;}
.h4_c00246{height:58.886719px;}
.h2_c00246{height:79.497070px;}
.h6_c00246{height:84.269531px;}
.h3_c00246{height:98.756836px;}
.h5_c00246{height:108.843750px;}
.h1_c00246{height:167.126953px;}
.h0_c00246{height:968.250000px;}
.w1_c00246{width:104.875500px;}
.w0_c00246{width:657.750000px;}
.x0_c00246{left:0.000000px;}
.x8_c00246{left:45.600000px;}
.x7_c00246{left:47.250000px;}
.x1_c00246{left:48.300000px;}
.x2_c00246{left:49.500000px;}
.x3_c00246{left:91.050000px;}
.x6_c00246{left:94.500000px;}
.x4_c00246{left:95.850000px;}
.x5_c00246{left:181.800000px;}
.xa_c00246{left:280.689240px;}
.x9_c00246{left:346.650000px;}
@media print{
.v0_c00246{vertical-align:0.000000pt;}
.ls1_c00246{letter-spacing:0.000000pt;}
.ls0_c00246{letter-spacing:0.960000pt;}
.ls2_c00246{letter-spacing:13.333333pt;}
.ws0_c00246{word-spacing:-21.208000pt;}
.ws1_c00246{word-spacing:0.000000pt;}
._1_c00246{margin-left:-40.362667pt;}
._1f_c00246{margin-left:-32.832000pt;}
._8_c00246{margin-left:-25.016000pt;}
._0_c00246{margin-left:-21.565333pt;}
._1b_c00246{margin-left:-12.144000pt;}
._1c_c00246{margin-left:-10.656000pt;}
._16_c00246{margin-left:-8.768000pt;}
._b_c00246{margin-left:-6.064000pt;}
._5_c00246{margin-left:-4.488000pt;}
._4_c00246{margin-left:-2.728000pt;}
._3_c00246{margin-left:-1.672000pt;}
._6_c00246{width:1.232000pt;}
._10_c00246{width:2.136000pt;}
._a_c00246{width:3.032000pt;}
._9_c00246{width:4.384000pt;}
._c_c00246{width:5.504000pt;}
._d_c00246{width:6.408000pt;}
._e_c00246{width:7.624000pt;}
._14_c00246{width:8.656000pt;}
._13_c00246{width:10.082667pt;}
._17_c00246{width:11.141333pt;}
._f_c00246{width:12.336000pt;}
._18_c00246{width:13.536000pt;}
._19_c00246{width:15.760000pt;}
._1a_c00246{width:20.442667pt;}
._12_c00246{width:27.114667pt;}
._1d_c00246{width:30.512000pt;}
._11_c00246{width:32.309333pt;}
._15_c00246{width:33.858667pt;}
._7_c00246{width:86.344000pt;}
._20_c00246{width:100.944000pt;}
._2_c00246{width:153.333333pt;}
._1e_c00246{width:174.440000pt;}
.fs7_c00246{font-size:21.333333pt;}
.fs9_c00246{font-size:42.666667pt;}
.fs4_c00246{font-size:50.666667pt;}
.fs5_c00246{font-size:53.333333pt;}
.fs8_c00246{font-size:64.000000pt;}
.fs3_c00246{font-size:69.333333pt;}
.fs2_c00246{font-size:72.000000pt;}
.fs0_c00246{font-size:88.000000pt;}
.fs6_c00246{font-size:96.000000pt;}
.fs1_c00246{font-size:117.333333pt;}
.y0_c00246{bottom:0.000000pt;}
.y25_c00246{bottom:2.760000pt;}
.y24_c00246{bottom:6.425206pt;}
.y23_c00246{bottom:55.493333pt;}
.y22_c00246{bottom:76.560000pt;}
.y21_c00246{bottom:99.360000pt;}
.y20_c00246{bottom:121.226667pt;}
.y1f_c00246{bottom:142.826667pt;}
.y1e_c00246{bottom:164.960000pt;}
.y1d_c00246{bottom:186.560000pt;}
.y1c_c00246{bottom:208.293333pt;}
.y1b_c00246{bottom:229.893333pt;}
.y1a_c00246{bottom:251.760000pt;}
.y19_c00246{bottom:273.360000pt;}
.y18_c00246{bottom:294.693333pt;}
.y17_c00246{bottom:315.893333pt;}
.y16_c00246{bottom:337.226667pt;}
.y15_c00246{bottom:358.826667pt;}
.y14_c00246{bottom:379.893333pt;}
.y13_c00246{bottom:401.093333pt;}
.y12_c00246{bottom:422.693333pt;}
.y11_c00246{bottom:444.560000pt;}
.y10_c00246{bottom:465.360000pt;}
.yf_c00246{bottom:487.760000pt;}
.ye_c00246{bottom:510.026667pt;}
.yd_c00246{bottom:528.026667pt;}
.yc_c00246{bottom:549.093333pt;}
.yb_c00246{bottom:570.960000pt;}
.ya_c00246{bottom:593.093333pt;}
.y9_c00246{bottom:613.760000pt;}
.y8_c00246{bottom:621.760000pt;}
.y7_c00246{bottom:655.760000pt;}
.y6_c00246{bottom:696.293333pt;}
.y5_c00246{bottom:718.560000pt;}
.y4_c00246{bottom:740.693333pt;}
.y3_c00246{bottom:762.026667pt;}
.y2_c00246{bottom:783.093333pt;}
.y1_c00246{bottom:812.693333pt;}
.h7_c00246{height:11.733399pt;}
.h8_c00246{height:38.937500pt;}
.h4_c00246{height:52.343750pt;}
.h2_c00246{height:70.664062pt;}
.h6_c00246{height:74.906250pt;}
.h3_c00246{height:87.783854pt;}
.h5_c00246{height:96.750000pt;}
.h1_c00246{height:148.557292pt;}
.h0_c00246{height:860.666667pt;}
.w1_c00246{width:93.222667pt;}
.w0_c00246{width:584.666667pt;}
.x0_c00246{left:0.000000pt;}
.x8_c00246{left:40.533333pt;}
.x7_c00246{left:42.000000pt;}
.x1_c00246{left:42.933333pt;}
.x2_c00246{left:44.000000pt;}
.x3_c00246{left:80.933333pt;}
.x6_c00246{left:84.000000pt;}
.x4_c00246{left:85.200000pt;}
.x5_c00246{left:161.600000pt;}
.xa_c00246{left:249.501546pt;}
.x9_c00246{left:308.133333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ef6dfec9f75d09b66a01c450.woff2')format("woff");}.ff1_c00247{font-family:ff1_c00247;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00247;src:url('chunks/assets/font_71dd8a85f29a7aa0ffc19f8b.woff2')format("woff");}.ff2_c00247{font-family:ff2_c00247;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00247;src:url('chunks/assets/font_d44b73cf3a5ca1a6406433d8.woff2')format("woff");}.ff3_c00247{font-family:ff3_c00247;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00247;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff4_c00247{font-family:ff4_c00247;line-height:1.219238;font-style: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;}
.ls1_c00247{letter-spacing:-15.000000px;}
.ls0_c00247{letter-spacing:0.000000px;}
.sc__c00247{text-shadow:none;}
.sc0_c00247{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00247{-webkit-text-stroke:0px transparent;}
.sc0_c00247{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00247{word-spacing:-59.184000px;}
.ws1_c00247{word-spacing:-20.250000px;}
.ws2_c00247{word-spacing:0.000000px;}
._17_c00247{margin-left:-22.194000px;}
._19_c00247{margin-left:-13.284000px;}
._15_c00247{margin-left:-12.150000px;}
._8_c00247{margin-left:-11.097000px;}
._1e_c00247{margin-left:-9.558000px;}
._e_c00247{margin-left:-7.911000px;}
._1c_c00247{margin-left:-6.156000px;}
._a_c00247{margin-left:-5.049000px;}
._d_c00247{margin-left:-3.114000px;}
._6_c00247{margin-left:-1.935000px;}
._f_c00247{width:1.026000px;}
._3_c00247{width:2.088000px;}
._1_c00247{width:3.816000px;}
._c_c00247{width:5.454000px;}
._0_c00247{width:6.480000px;}
._14_c00247{width:7.509000px;}
._4_c00247{width:8.568000px;}
._2_c00247{width:10.512000px;}
._b_c00247{width:12.204000px;}
._7_c00247{width:13.311000px;}
._11_c00247{width:15.231000px;}
._21_c00247{width:17.271000px;}
._1a_c00247{width:18.711000px;}
._1b_c00247{width:24.201000px;}
._5_c00247{width:25.440000px;}
._13_c00247{width:32.100000px;}
._20_c00247{width:33.276000px;}
._18_c00247{width:41.229000px;}
._1f_c00247{width:80.271000px;}
._10_c00247{width:141.273000px;}
._1d_c00247{width:164.991000px;}
._12_c00247{width:181.221000px;}
._16_c00247{width:189.135000px;}
._9_c00247{width:253.368000px;}
.fc2_c00247{color:transparent;}
.fc1_c00247{color:rgb(128,128,128);}
.fc0_c00247{color:rgb(0,0,0);}
.fs3_c00247{font-size:48.000000px;}
.fs0_c00247{font-size:72.000000px;}
.fs1_c00247{font-size:81.000000px;}
.fs2_c00247{font-size:102.000000px;}
.y0_c00247{bottom:0.000000px;}
.y25_c00247{bottom:3.105000px;}
.y24_c00247{bottom:7.228357px;}
.y23_c00247{bottom:62.130000px;}
.y22_c00247{bottom:86.130000px;}
.y21_c00247{bottom:110.130000px;}
.y20_c00247{bottom:135.330000px;}
.y1f_c00247{bottom:159.930000px;}
.y1e_c00247{bottom:184.380000px;}
.y1d_c00247{bottom:208.530000px;}
.y1c_c00247{bottom:232.830000px;}
.y1b_c00247{bottom:257.280000px;}
.y1a_c00247{bottom:281.580000px;}
.y19_c00247{bottom:305.880000px;}
.y18_c00247{bottom:330.480000px;}
.y17_c00247{bottom:354.330000px;}
.y16_c00247{bottom:378.630000px;}
.y15_c00247{bottom:403.080000px;}
.y14_c00247{bottom:426.930000px;}
.y13_c00247{bottom:451.230000px;}
.y12_c00247{bottom:476.580000px;}
.y11_c00247{bottom:498.780000px;}
.y10_c00247{bottom:523.230000px;}
.yf_c00247{bottom:546.780000px;}
.ye_c00247{bottom:572.430000px;}
.yd_c00247{bottom:594.030000px;}
.yc_c00247{bottom:618.930000px;}
.yb_c00247{bottom:643.230000px;}
.ya_c00247{bottom:668.280000px;}
.y9_c00247{bottom:691.980000px;}
.y8_c00247{bottom:715.230000px;}
.y7_c00247{bottom:739.680000px;}
.y6_c00247{bottom:763.380000px;}
.y5_c00247{bottom:787.080000px;}
.y4_c00247{bottom:811.530000px;}
.y3_c00247{bottom:834.930000px;}
.y2_c00247{bottom:858.330000px;}
.y1_c00247{bottom:882.630000px;}
.h5_c00247{height:13.200074px;}
.h6_c00247{height:43.804688px;}
.h3_c00247{height:79.497070px;}
.h2_c00247{height:84.269531px;}
.h4_c00247{height:104.839927px;}
.h1_c00247{height:978.750000px;}
.h0_c00247{height:979.050000px;}
.w2_c00247{width:104.875500px;}
.w0_c00247{width:656.100000px;}
.w1_c00247{width:656.250000px;}
.x0_c00247{left:0.000000px;}
.x1_c00247{left:42.450000px;}
.x2_c00247{left:44.250000px;}
.xd_c00247{left:54.450000px;}
.x5_c00247{left:69.600000px;}
.x9_c00247{left:71.250000px;}
.xc_c00247{left:100.200000px;}
.xa_c00247{left:108.750000px;}
.x7_c00247{left:132.300000px;}
.x3_c00247{left:135.450000px;}
.x4_c00247{left:137.100000px;}
.x6_c00247{left:138.450000px;}
.x8_c00247{left:140.850000px;}
.xb_c00247{left:143.550000px;}
.xe_c00247{left:146.850000px;}
.xf_c00247{left:148.200000px;}
.x10_c00247{left:149.250000px;}
.x12_c00247{left:279.864258px;}
.x11_c00247{left:584.850000px;}
@media print{
.v0_c00247{vertical-align:0.000000pt;}
.ls1_c00247{letter-spacing:-13.333333pt;}
.ls0_c00247{letter-spacing:0.000000pt;}
.ws0_c00247{word-spacing:-52.608000pt;}
.ws1_c00247{word-spacing:-18.000000pt;}
.ws2_c00247{word-spacing:0.000000pt;}
._17_c00247{margin-left:-19.728000pt;}
._19_c00247{margin-left:-11.808000pt;}
._15_c00247{margin-left:-10.800000pt;}
._8_c00247{margin-left:-9.864000pt;}
._1e_c00247{margin-left:-8.496000pt;}
._e_c00247{margin-left:-7.032000pt;}
._1c_c00247{margin-left:-5.472000pt;}
._a_c00247{margin-left:-4.488000pt;}
._d_c00247{margin-left:-2.768000pt;}
._6_c00247{margin-left:-1.720000pt;}
._f_c00247{width:0.912000pt;}
._3_c00247{width:1.856000pt;}
._1_c00247{width:3.392000pt;}
._c_c00247{width:4.848000pt;}
._0_c00247{width:5.760000pt;}
._14_c00247{width:6.674667pt;}
._4_c00247{width:7.616000pt;}
._2_c00247{width:9.344000pt;}
._b_c00247{width:10.848000pt;}
._7_c00247{width:11.832000pt;}
._11_c00247{width:13.538667pt;}
._21_c00247{width:15.352000pt;}
._1a_c00247{width:16.632000pt;}
._1b_c00247{width:21.512000pt;}
._5_c00247{width:22.613333pt;}
._13_c00247{width:28.533333pt;}
._20_c00247{width:29.578667pt;}
._18_c00247{width:36.648000pt;}
._1f_c00247{width:71.352000pt;}
._10_c00247{width:125.576000pt;}
._1d_c00247{width:146.658667pt;}
._12_c00247{width:161.085333pt;}
._16_c00247{width:168.120000pt;}
._9_c00247{width:225.216000pt;}
.fs3_c00247{font-size:42.666667pt;}
.fs0_c00247{font-size:64.000000pt;}
.fs1_c00247{font-size:72.000000pt;}
.fs2_c00247{font-size:90.666667pt;}
.y0_c00247{bottom:0.000000pt;}
.y25_c00247{bottom:2.760000pt;}
.y24_c00247{bottom:6.425206pt;}
.y23_c00247{bottom:55.226667pt;}
.y22_c00247{bottom:76.560000pt;}
.y21_c00247{bottom:97.893333pt;}
.y20_c00247{bottom:120.293333pt;}
.y1f_c00247{bottom:142.160000pt;}
.y1e_c00247{bottom:163.893333pt;}
.y1d_c00247{bottom:185.360000pt;}
.y1c_c00247{bottom:206.960000pt;}
.y1b_c00247{bottom:228.693333pt;}
.y1a_c00247{bottom:250.293333pt;}
.y19_c00247{bottom:271.893333pt;}
.y18_c00247{bottom:293.760000pt;}
.y17_c00247{bottom:314.960000pt;}
.y16_c00247{bottom:336.560000pt;}
.y15_c00247{bottom:358.293333pt;}
.y14_c00247{bottom:379.493333pt;}
.y13_c00247{bottom:401.093333pt;}
.y12_c00247{bottom:423.626667pt;}
.y11_c00247{bottom:443.360000pt;}
.y10_c00247{bottom:465.093333pt;}
.yf_c00247{bottom:486.026667pt;}
.ye_c00247{bottom:508.826667pt;}
.yd_c00247{bottom:528.026667pt;}
.yc_c00247{bottom:550.160000pt;}
.yb_c00247{bottom:571.760000pt;}
.ya_c00247{bottom:594.026667pt;}
.y9_c00247{bottom:615.093333pt;}
.y8_c00247{bottom:635.760000pt;}
.y7_c00247{bottom:657.493333pt;}
.y6_c00247{bottom:678.560000pt;}
.y5_c00247{bottom:699.626667pt;}
.y4_c00247{bottom:721.360000pt;}
.y3_c00247{bottom:742.160000pt;}
.y2_c00247{bottom:762.960000pt;}
.y1_c00247{bottom:784.560000pt;}
.h5_c00247{height:11.733399pt;}
.h6_c00247{height:38.937500pt;}
.h3_c00247{height:70.664062pt;}
.h2_c00247{height:74.906250pt;}
.h4_c00247{height:93.191046pt;}
.h1_c00247{height:870.000000pt;}
.h0_c00247{height:870.266667pt;}
.w2_c00247{width:93.222667pt;}
.w0_c00247{width:583.200000pt;}
.w1_c00247{width:583.333333pt;}
.x0_c00247{left:0.000000pt;}
.x1_c00247{left:37.733333pt;}
.x2_c00247{left:39.333333pt;}
.xd_c00247{left:48.400000pt;}
.x5_c00247{left:61.866667pt;}
.x9_c00247{left:63.333333pt;}
.xc_c00247{left:89.066667pt;}
.xa_c00247{left:96.666667pt;}
.x7_c00247{left:117.600000pt;}
.x3_c00247{left:120.400000pt;}
.x4_c00247{left:121.866667pt;}
.x6_c00247{left:123.066667pt;}
.x8_c00247{left:125.200000pt;}
.xb_c00247{left:127.600000pt;}
.xe_c00247{left:130.533333pt;}
.xf_c00247{left:131.733333pt;}
.x10_c00247{left:132.666667pt;}
.x12_c00247{left:248.768229pt;}
.x11_c00247{left:519.866667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_537be966d334461929d0a449.woff2')format("woff");}.ff1_c00248{font-family:ff1_c00248;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00248;src:url('chunks/assets/font_f0f88e40352d6931551c20a7.woff2')format("woff");}.ff2_c00248{font-family:ff2_c00248;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00248;src:url('chunks/assets/font_8261c79feb224ab0fbf2c9f0.woff2')format("woff");}.ff3_c00248{font-family:ff3_c00248;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00248;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff4_c00248{font-family:ff4_c00248;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00248{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00248{vertical-align:-15.000000px;}
.v0_c00248{vertical-align:0.000000px;}
.ls2_c00248{letter-spacing:0.000000px;}
.ls1_c00248{letter-spacing:3.000000px;}
.ls0_c00248{letter-spacing:131.100000px;}
.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:-20.250000px;}
.ws1_c00248{word-spacing:0.000000px;}
._20_c00248{margin-left:-35.802000px;}
._1e_c00248{margin-left:-26.976000px;}
._25_c00248{margin-left:-23.658000px;}
._a_c00248{margin-left:-18.972000px;}
._1d_c00248{margin-left:-13.851000px;}
._15_c00248{margin-left:-12.567000px;}
._6_c00248{margin-left:-11.322000px;}
._5_c00248{margin-left:-10.200000px;}
._7_c00248{margin-left:-8.160000px;}
._1_c00248{margin-left:-6.936000px;}
._14_c00248{margin-left:-5.475000px;}
._3_c00248{margin-left:-4.284000px;}
._2_c00248{margin-left:-2.856000px;}
._4_c00248{margin-left:-1.326000px;}
._d_c00248{width:1.620000px;}
._e_c00248{width:2.673000px;}
._c_c00248{width:3.726000px;}
._11_c00248{width:4.779000px;}
._10_c00248{width:6.642000px;}
._17_c00248{width:7.686000px;}
._f_c00248{width:8.991000px;}
._1a_c00248{width:10.770000px;}
._16_c00248{width:11.991000px;}
._12_c00248{width:13.398000px;}
._28_c00248{width:14.904000px;}
._0_c00248{width:16.524000px;}
._19_c00248{width:18.861000px;}
._9_c00248{width:21.522000px;}
._24_c00248{width:24.264000px;}
._b_c00248{width:26.826000px;}
._22_c00248{width:31.914000px;}
._27_c00248{width:32.985000px;}
._13_c00248{width:34.587000px;}
._26_c00248{width:40.761000px;}
._18_c00248{width:42.726000px;}
._23_c00248{width:45.537000px;}
._8_c00248{width:48.450000px;}
._1c_c00248{width:65.055000px;}
._1f_c00248{width:85.374000px;}
._1b_c00248{width:146.046000px;}
._21_c00248{width:273.456000px;}
._29_c00248{width:281.892000px;}
.fc2_c00248{color:transparent;}
.fc1_c00248{color:rgb(128,128,128);}
.fc0_c00248{color:rgb(0,0,0);}
.fs3_c00248{font-size:48.000000px;}
.fs2_c00248{font-size:60.000000px;}
.fs1_c00248{font-size:81.000000px;}
.fs0_c00248{font-size:102.000000px;}
.y0_c00248{bottom:0.000000px;}
.y26_c00248{bottom:3.105000px;}
.y25_c00248{bottom:7.228371px;}
.y24_c00248{bottom:60.765000px;}
.y23_c00248{bottom:86.865000px;}
.y22_c00248{bottom:112.065000px;}
.y21_c00248{bottom:134.715000px;}
.y20_c00248{bottom:165.165000px;}
.y1f_c00248{bottom:185.715000px;}
.y1e_c00248{bottom:210.015000px;}
.y1d_c00248{bottom:235.215000px;}
.y1c_c00248{bottom:259.665000px;}
.y1b_c00248{bottom:283.815000px;}
.y1a_c00248{bottom:308.115000px;}
.y19_c00248{bottom:332.115000px;}
.y18_c00248{bottom:355.815000px;}
.y17_c00248{bottom:380.415000px;}
.y16_c00248{bottom:403.965000px;}
.y15_c00248{bottom:428.415000px;}
.y14_c00248{bottom:452.265000px;}
.y13_c00248{bottom:476.565000px;}
.y12_c00248{bottom:501.165000px;}
.y11_c00248{bottom:524.865000px;}
.y10_c00248{bottom:548.865000px;}
.yf_c00248{bottom:572.715000px;}
.ye_c00248{bottom:596.715000px;}
.yd_c00248{bottom:620.715000px;}
.yc_c00248{bottom:643.965000px;}
.yb_c00248{bottom:667.965000px;}
.ya_c00248{bottom:696.765000px;}
.y9_c00248{bottom:715.215000px;}
.y8_c00248{bottom:740.565000px;}
.y7_c00248{bottom:764.865000px;}
.y6_c00248{bottom:789.615000px;}
.y5_c00248{bottom:813.015000px;}
.y4_c00248{bottom:836.415000px;}
.y3_c00248{bottom:861.315000px;}
.y2_c00248{bottom:885.015000px;}
.y1_c00248{bottom:919.665000px;}
.h5_c00248{height:13.200074px;}
.h6_c00248{height:43.804688px;}
.h4_c00248{height:75.966797px;}
.h3_c00248{height:79.497070px;}
.h2_c00248{height:100.057617px;}
.h0_c00248{height:989.025000px;}
.h1_c00248{height:989.250000px;}
.w1_c00248{width:104.875500px;}
.w0_c00248{width:672.000000px;}
.x0_c00248{left:0.000000px;}
.x1_c00248{left:55.350000px;}
.x2_c00248{left:57.300000px;}
.x3_c00248{left:59.700000px;}
.x4_c00248{left:61.050000px;}
.x5_c00248{left:62.100000px;}
.xb_c00248{left:63.750000px;}
.x6_c00248{left:65.100000px;}
.x8_c00248{left:66.150000px;}
.x9_c00248{left:67.950000px;}
.xa_c00248{left:69.150000px;}
.xc_c00248{left:70.800000px;}
.xd_c00248{left:72.450000px;}
.xe_c00248{left:73.500000px;}
.x10_c00248{left:92.100000px;}
.x7_c00248{left:109.650000px;}
.xf_c00248{left:128.850000px;}
.x12_c00248{left:287.814240px;}
.x11_c00248{left:401.550000px;}
@media print{
.v1_c00248{vertical-align:-13.333333pt;}
.v0_c00248{vertical-align:0.000000pt;}
.ls2_c00248{letter-spacing:0.000000pt;}
.ls1_c00248{letter-spacing:2.666667pt;}
.ls0_c00248{letter-spacing:116.533333pt;}
.ws0_c00248{word-spacing:-18.000000pt;}
.ws1_c00248{word-spacing:0.000000pt;}
._20_c00248{margin-left:-31.824000pt;}
._1e_c00248{margin-left:-23.978667pt;}
._25_c00248{margin-left:-21.029333pt;}
._a_c00248{margin-left:-16.864000pt;}
._1d_c00248{margin-left:-12.312000pt;}
._15_c00248{margin-left:-11.170667pt;}
._6_c00248{margin-left:-10.064000pt;}
._5_c00248{margin-left:-9.066667pt;}
._7_c00248{margin-left:-7.253333pt;}
._1_c00248{margin-left:-6.165333pt;}
._14_c00248{margin-left:-4.866667pt;}
._3_c00248{margin-left:-3.808000pt;}
._2_c00248{margin-left:-2.538667pt;}
._4_c00248{margin-left:-1.178667pt;}
._d_c00248{width:1.440000pt;}
._e_c00248{width:2.376000pt;}
._c_c00248{width:3.312000pt;}
._11_c00248{width:4.248000pt;}
._10_c00248{width:5.904000pt;}
._17_c00248{width:6.832000pt;}
._f_c00248{width:7.992000pt;}
._1a_c00248{width:9.573333pt;}
._16_c00248{width:10.658667pt;}
._12_c00248{width:11.909333pt;}
._28_c00248{width:13.248000pt;}
._0_c00248{width:14.688000pt;}
._19_c00248{width:16.765333pt;}
._9_c00248{width:19.130667pt;}
._24_c00248{width:21.568000pt;}
._b_c00248{width:23.845333pt;}
._22_c00248{width:28.368000pt;}
._27_c00248{width:29.320000pt;}
._13_c00248{width:30.744000pt;}
._26_c00248{width:36.232000pt;}
._18_c00248{width:37.978667pt;}
._23_c00248{width:40.477333pt;}
._8_c00248{width:43.066667pt;}
._1c_c00248{width:57.826667pt;}
._1f_c00248{width:75.888000pt;}
._1b_c00248{width:129.818667pt;}
._21_c00248{width:243.072000pt;}
._29_c00248{width:250.570667pt;}
.fs3_c00248{font-size:42.666667pt;}
.fs2_c00248{font-size:53.333333pt;}
.fs1_c00248{font-size:72.000000pt;}
.fs0_c00248{font-size:90.666667pt;}
.y0_c00248{bottom:0.000000pt;}
.y26_c00248{bottom:2.760000pt;}
.y25_c00248{bottom:6.425219pt;}
.y24_c00248{bottom:54.013333pt;}
.y23_c00248{bottom:77.213333pt;}
.y22_c00248{bottom:99.613333pt;}
.y21_c00248{bottom:119.746667pt;}
.y20_c00248{bottom:146.813333pt;}
.y1f_c00248{bottom:165.080000pt;}
.y1e_c00248{bottom:186.680000pt;}
.y1d_c00248{bottom:209.080000pt;}
.y1c_c00248{bottom:230.813333pt;}
.y1b_c00248{bottom:252.280000pt;}
.y1a_c00248{bottom:273.880000pt;}
.y19_c00248{bottom:295.213333pt;}
.y18_c00248{bottom:316.280000pt;}
.y17_c00248{bottom:338.146667pt;}
.y16_c00248{bottom:359.080000pt;}
.y15_c00248{bottom:380.813333pt;}
.y14_c00248{bottom:402.013333pt;}
.y13_c00248{bottom:423.613333pt;}
.y12_c00248{bottom:445.480000pt;}
.y11_c00248{bottom:466.546667pt;}
.y10_c00248{bottom:487.880000pt;}
.yf_c00248{bottom:509.080000pt;}
.ye_c00248{bottom:530.413333pt;}
.yd_c00248{bottom:551.746667pt;}
.yc_c00248{bottom:572.413333pt;}
.yb_c00248{bottom:593.746667pt;}
.ya_c00248{bottom:619.346667pt;}
.y9_c00248{bottom:635.746667pt;}
.y8_c00248{bottom:658.280000pt;}
.y7_c00248{bottom:679.880000pt;}
.y6_c00248{bottom:701.880000pt;}
.y5_c00248{bottom:722.680000pt;}
.y4_c00248{bottom:743.480000pt;}
.y3_c00248{bottom:765.613333pt;}
.y2_c00248{bottom:786.680000pt;}
.y1_c00248{bottom:817.480000pt;}
.h5_c00248{height:11.733399pt;}
.h6_c00248{height:38.937500pt;}
.h4_c00248{height:67.526042pt;}
.h3_c00248{height:70.664062pt;}
.h2_c00248{height:88.940104pt;}
.h0_c00248{height:879.133333pt;}
.h1_c00248{height:879.333333pt;}
.w1_c00248{width:93.222667pt;}
.w0_c00248{width:597.333333pt;}
.x0_c00248{left:0.000000pt;}
.x1_c00248{left:49.200000pt;}
.x2_c00248{left:50.933333pt;}
.x3_c00248{left:53.066667pt;}
.x4_c00248{left:54.266667pt;}
.x5_c00248{left:55.200000pt;}
.xb_c00248{left:56.666667pt;}
.x6_c00248{left:57.866667pt;}
.x8_c00248{left:58.800000pt;}
.x9_c00248{left:60.400000pt;}
.xa_c00248{left:61.466667pt;}
.xc_c00248{left:62.933333pt;}
.xd_c00248{left:64.400000pt;}
.xe_c00248{left:65.333333pt;}
.x10_c00248{left:81.866667pt;}
.x7_c00248{left:97.466667pt;}
.xf_c00248{left:114.533333pt;}
.x12_c00248{left:255.834880pt;}
.x11_c00248{left:356.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_39ac2aacc75dd3a85c5dae93.woff2')format("woff");}.ff1_c00249{font-family:ff1_c00249;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00249;src:url('chunks/assets/font_f58ff636beec27c55e903157.woff2')format("woff");}.ff2_c00249{font-family:ff2_c00249;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00249;src:url('chunks/assets/font_e314bb38614e89f7b2d9cb13.woff2')format("woff");}.ff3_c00249{font-family:ff3_c00249;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00249;src:url('chunks/assets/font_1a8576251f5f4fff72603b66.woff2')format("woff");}.ff4_c00249{font-family:ff4_c00249;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00249;src:url('chunks/assets/font_fc0f92bf0f146db1ee7062c8.woff2')format("woff");}.ff5_c00249{font-family:ff5_c00249;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00249;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c00249{font-family:ff6_c00249;line-height:1.219238;font-style: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;}
.v1_c00249{vertical-align:158.400000px;}
.ls2_c00249{letter-spacing:0.000000px;}
.ls1_c00249{letter-spacing:2.100000px;}
.ls3_c00249{letter-spacing:6.000000px;}
.ls0_c00249{letter-spacing:7.416000px;}
.sc__c00249{text-shadow:none;}
.sc0_c00249{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00249{-webkit-text-stroke:0px transparent;}
.sc0_c00249{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00249{word-spacing:-72.000000px;}
.ws0_c00249{word-spacing:-59.184000px;}
.ws4_c00249{word-spacing:-20.250000px;}
.ws1_c00249{word-spacing:-15.000000px;}
.ws2_c00249{word-spacing:-12.750000px;}
.ws5_c00249{word-spacing:0.000000px;}
._16_c00249{margin-left:-36.045000px;}
._14_c00249{margin-left:-27.540000px;}
._13_c00249{margin-left:-13.770000px;}
._2_c00249{margin-left:-12.717000px;}
._9_c00249{margin-left:-10.611000px;}
._17_c00249{margin-left:-9.234000px;}
._12_c00249{margin-left:-7.776000px;}
._a_c00249{margin-left:-6.642000px;}
._15_c00249{margin-left:-5.589000px;}
._7_c00249{margin-left:-4.050000px;}
._5_c00249{margin-left:-2.349000px;}
._b_c00249{margin-left:-1.053000px;}
._1_c00249{width:1.134000px;}
._0_c00249{width:2.430000px;}
._6_c00249{width:3.888000px;}
._3_c00249{width:5.103000px;}
._4_c00249{width:6.156000px;}
._8_c00249{width:7.533000px;}
._11_c00249{width:8.667000px;}
._f_c00249{width:9.720000px;}
._c_c00249{width:10.935000px;}
._10_c00249{width:11.988000px;}
._18_c00249{width:14.094000px;}
._e_c00249{width:15.228000px;}
._d_c00249{width:18.387000px;}
._1a_c00249{width:42.516000px;}
._19_c00249{width:45.948000px;}
.fc2_c00249{color:transparent;}
.fc1_c00249{color:rgb(128,128,128);}
.fc0_c00249{color:rgb(0,0,0);}
.fs4_c00249{font-size:42.000000px;}
.fs7_c00249{font-size:48.000000px;}
.fs5_c00249{font-size:51.000000px;}
.fs3_c00249{font-size:60.000000px;}
.fs1_c00249{font-size:72.000000px;}
.fs0_c00249{font-size:81.000000px;}
.fs2_c00249{font-size:87.000000px;}
.fs6_c00249{font-size:288.000000px;}
.y0_c00249{bottom:0.000000px;}
.y25_c00249{bottom:3.105000px;}
.y24_c00249{bottom:7.228357px;}
.y23_c00249{bottom:63.780000px;}
.y21_c00249{bottom:74.130000px;}
.y22_c00249{bottom:88.080000px;}
.y20_c00249{bottom:139.080000px;}
.y1f_c00249{bottom:161.430000px;}
.y1e_c00249{bottom:186.930000px;}
.y1d_c00249{bottom:211.980000px;}
.y1c_c00249{bottom:236.280000px;}
.y1b_c00249{bottom:260.580000px;}
.y1a_c00249{bottom:285.480000px;}
.y19_c00249{bottom:309.780000px;}
.y18_c00249{bottom:334.080000px;}
.y17_c00249{bottom:358.530000px;}
.y16_c00249{bottom:382.680000px;}
.y15_c00249{bottom:406.980000px;}
.y14_c00249{bottom:431.280000px;}
.y13_c00249{bottom:455.280000px;}
.y12_c00249{bottom:479.280000px;}
.y11_c00249{bottom:503.580000px;}
.y10_c00249{bottom:527.580000px;}
.yf_c00249{bottom:551.580000px;}
.ye_c00249{bottom:575.730000px;}
.yd_c00249{bottom:599.730000px;}
.yc_c00249{bottom:624.030000px;}
.yb_c00249{bottom:648.030000px;}
.ya_c00249{bottom:672.330000px;}
.y9_c00249{bottom:696.630000px;}
.y8_c00249{bottom:720.630000px;}
.y7_c00249{bottom:744.630000px;}
.y6_c00249{bottom:768.930000px;}
.y5_c00249{bottom:792.780000px;}
.y4_c00249{bottom:817.080000px;}
.y3_c00249{bottom:841.380000px;}
.y2_c00249{bottom:865.380000px;}
.y1_c00249{bottom:889.680000px;}
.h6_c00249{height:13.200074px;}
.h7_c00249{height:43.804688px;}
.h4_c00249{height:50.028809px;}
.h1_c00249{height:79.497070px;}
.h2_c00249{height:84.269531px;}
.h3_c00249{height:91.176000px;}
.h5_c00249{height:282.656250px;}
.h0_c00249{height:995.250000px;}
.w2_c00249{width:104.875500px;}
.w0_c00249{width:667.425000px;}
.w1_c00249{width:667.500000px;}
.x0_c00249{left:0.000000px;}
.x8_c00249{left:116.400000px;}
.x7_c00249{left:117.750000px;}
.xb_c00249{left:119.100000px;}
.xa_c00249{left:120.750000px;}
.x9_c00249{left:122.100000px;}
.x6_c00249{left:123.450000px;}
.x4_c00249{left:127.200000px;}
.x5_c00249{left:128.250000px;}
.x3_c00249{left:129.300000px;}
.x2_c00249{left:130.350000px;}
.x1_c00249{left:133.350000px;}
.xd_c00249{left:154.950000px;}
.xc_c00249{left:202.050000px;}
.xf_c00249{left:285.526749px;}
.xe_c00249{left:578.100000px;}
@media print{
.v0_c00249{vertical-align:0.000000pt;}
.v1_c00249{vertical-align:140.800000pt;}
.ls2_c00249{letter-spacing:0.000000pt;}
.ls1_c00249{letter-spacing:1.866667pt;}
.ls3_c00249{letter-spacing:5.333333pt;}
.ls0_c00249{letter-spacing:6.592000pt;}
.ws3_c00249{word-spacing:-64.000000pt;}
.ws0_c00249{word-spacing:-52.608000pt;}
.ws4_c00249{word-spacing:-18.000000pt;}
.ws1_c00249{word-spacing:-13.333333pt;}
.ws2_c00249{word-spacing:-11.333333pt;}
.ws5_c00249{word-spacing:0.000000pt;}
._16_c00249{margin-left:-32.040000pt;}
._14_c00249{margin-left:-24.480000pt;}
._13_c00249{margin-left:-12.240000pt;}
._2_c00249{margin-left:-11.304000pt;}
._9_c00249{margin-left:-9.432000pt;}
._17_c00249{margin-left:-8.208000pt;}
._12_c00249{margin-left:-6.912000pt;}
._a_c00249{margin-left:-5.904000pt;}
._15_c00249{margin-left:-4.968000pt;}
._7_c00249{margin-left:-3.600000pt;}
._5_c00249{margin-left:-2.088000pt;}
._b_c00249{margin-left:-0.936000pt;}
._1_c00249{width:1.008000pt;}
._0_c00249{width:2.160000pt;}
._6_c00249{width:3.456000pt;}
._3_c00249{width:4.536000pt;}
._4_c00249{width:5.472000pt;}
._8_c00249{width:6.696000pt;}
._11_c00249{width:7.704000pt;}
._f_c00249{width:8.640000pt;}
._c_c00249{width:9.720000pt;}
._10_c00249{width:10.656000pt;}
._18_c00249{width:12.528000pt;}
._e_c00249{width:13.536000pt;}
._d_c00249{width:16.344000pt;}
._1a_c00249{width:37.792000pt;}
._19_c00249{width:40.842667pt;}
.fs4_c00249{font-size:37.333333pt;}
.fs7_c00249{font-size:42.666667pt;}
.fs5_c00249{font-size:45.333333pt;}
.fs3_c00249{font-size:53.333333pt;}
.fs1_c00249{font-size:64.000000pt;}
.fs0_c00249{font-size:72.000000pt;}
.fs2_c00249{font-size:77.333333pt;}
.fs6_c00249{font-size:256.000000pt;}
.y0_c00249{bottom:0.000000pt;}
.y25_c00249{bottom:2.760000pt;}
.y24_c00249{bottom:6.425206pt;}
.y23_c00249{bottom:56.693333pt;}
.y21_c00249{bottom:65.893333pt;}
.y22_c00249{bottom:78.293333pt;}
.y20_c00249{bottom:123.626667pt;}
.y1f_c00249{bottom:143.493333pt;}
.y1e_c00249{bottom:166.160000pt;}
.y1d_c00249{bottom:188.426667pt;}
.y1c_c00249{bottom:210.026667pt;}
.y1b_c00249{bottom:231.626667pt;}
.y1a_c00249{bottom:253.760000pt;}
.y19_c00249{bottom:275.360000pt;}
.y18_c00249{bottom:296.960000pt;}
.y17_c00249{bottom:318.693333pt;}
.y16_c00249{bottom:340.160000pt;}
.y15_c00249{bottom:361.760000pt;}
.y14_c00249{bottom:383.360000pt;}
.y13_c00249{bottom:404.693333pt;}
.y12_c00249{bottom:426.026667pt;}
.y11_c00249{bottom:447.626667pt;}
.y10_c00249{bottom:468.960000pt;}
.yf_c00249{bottom:490.293333pt;}
.ye_c00249{bottom:511.760000pt;}
.yd_c00249{bottom:533.093333pt;}
.yc_c00249{bottom:554.693333pt;}
.yb_c00249{bottom:576.026667pt;}
.ya_c00249{bottom:597.626667pt;}
.y9_c00249{bottom:619.226667pt;}
.y8_c00249{bottom:640.560000pt;}
.y7_c00249{bottom:661.893333pt;}
.y6_c00249{bottom:683.493333pt;}
.y5_c00249{bottom:704.693333pt;}
.y4_c00249{bottom:726.293333pt;}
.y3_c00249{bottom:747.893333pt;}
.y2_c00249{bottom:769.226667pt;}
.y1_c00249{bottom:790.826667pt;}
.h6_c00249{height:11.733399pt;}
.h7_c00249{height:38.937500pt;}
.h4_c00249{height:44.470052pt;}
.h1_c00249{height:70.664062pt;}
.h2_c00249{height:74.906250pt;}
.h3_c00249{height:81.045333pt;}
.h5_c00249{height:251.250000pt;}
.h0_c00249{height:884.666667pt;}
.w2_c00249{width:93.222667pt;}
.w0_c00249{width:593.266667pt;}
.w1_c00249{width:593.333333pt;}
.x0_c00249{left:0.000000pt;}
.x8_c00249{left:103.466667pt;}
.x7_c00249{left:104.666667pt;}
.xb_c00249{left:105.866667pt;}
.xa_c00249{left:107.333333pt;}
.x9_c00249{left:108.533333pt;}
.x6_c00249{left:109.733333pt;}
.x4_c00249{left:113.066667pt;}
.x5_c00249{left:114.000000pt;}
.x3_c00249{left:114.933333pt;}
.x2_c00249{left:115.866667pt;}
.x1_c00249{left:118.533333pt;}
.xd_c00249{left:137.733333pt;}
.xc_c00249{left:179.600000pt;}
.xf_c00249{left:253.801554pt;}
.xe_c00249{left:513.866667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_84bf73aaa9d7f5eecd168eae.woff2')format("woff");}.ff1_c00250{font-family:ff1_c00250;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00250;src:url('chunks/assets/font_969da8af160726cbf7b6ba3b.woff2')format("woff");}.ff2_c00250{font-family:ff2_c00250;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00250;src:url('chunks/assets/font_c9b07308962d0ee9ce1a3711.woff2')format("woff");}.ff3_c00250{font-family:ff3_c00250;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00250;src:url('chunks/assets/font_85574581f69e0a0dd3805835.woff2')format("woff");}.ff4_c00250{font-family:ff4_c00250;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00250;src:url('chunks/assets/font_836f8c69367cfefe73e07333.woff2')format("woff");}.ff5_c00250{font-family:ff5_c00250;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00250;src:url('chunks/assets/font_03ae24cc736fc416b041f2f7.woff2')format("woff");}.ff6_c00250{font-family:ff6_c00250;line-height:1.311035;font-style:normal;font-weight: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_c00250;src:url('chunks/assets/font_0eed37eb1c56e7c29bd4b675.woff2')format("woff");}.ff7_c00250{font-family:ff7_c00250;line-height:1.437000;font-style:normal;font-weight: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_c00250;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff8_c00250{font-family:ff8_c00250;line-height:1.219238;font-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_c00250{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,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;}
.ls5_c00250{letter-spacing:-6.000000px;}
.ls4_c00250{letter-spacing:0.000000px;}
.ls3_c00250{letter-spacing:3.000000px;}
.ls2_c00250{letter-spacing:8.400000px;}
.ls0_c00250{letter-spacing:11.661600px;}
.ls1_c00250{letter-spacing:86.400000px;}
.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;}
}
.ws6_c00250{word-spacing:-27.000000px;}
.ws0_c00250{word-spacing:-17.352000px;}
.ws4_c00250{word-spacing:-14.250000px;}
.ws1_c00250{word-spacing:-0.057000px;}
.ws2_c00250{word-spacing:-0.045600px;}
.ws8_c00250{word-spacing:0.000000px;}
.ws7_c00250{word-spacing:3.726000px;}
.ws5_c00250{word-spacing:5.031000px;}
.ws3_c00250{word-spacing:13.695000px;}
._f_c00250{margin-left:-24.954000px;}
._1a_c00250{margin-left:-16.773000px;}
._14_c00250{margin-left:-12.573000px;}
._18_c00250{margin-left:-11.259000px;}
._e_c00250{margin-left:-9.975600px;}
._12_c00250{margin-left:-8.256000px;}
._1c_c00250{margin-left:-7.239000px;}
._10_c00250{margin-left:-5.805000px;}
._d_c00250{margin-left:-4.398000px;}
._2_c00250{margin-left:-2.730000px;}
._7_c00250{margin-left:-1.233000px;}
._11_c00250{width:1.062000px;}
._0_c00250{width:2.106000px;}
._1_c00250{width:3.276000px;}
._3_c00250{width:4.758000px;}
._a_c00250{width:5.790000px;}
._5_c00250{width:6.885000px;}
._b_c00250{width:8.019000px;}
._4_c00250{width:9.639000px;}
._6_c00250{width:10.713000px;}
._9_c00250{width:11.907000px;}
._19_c00250{width:12.912000px;}
._c_c00250{width:15.186000px;}
._17_c00250{width:16.425000px;}
._15_c00250{width:18.723000px;}
._8_c00250{width:22.968000px;}
._13_c00250{width:24.918000px;}
._16_c00250{width:36.858000px;}
._1e_c00250{width:54.993000px;}
._1d_c00250{width:75.438000px;}
._1b_c00250{width:123.495000px;}
._1f_c00250{width:790.338000px;}
.fc2_c00250{color:transparent;}
.fc1_c00250{color:rgb(128,128,128);}
.fc0_c00250{color:rgb(0,0,0);}
.fs4_c00250{font-size:45.600000px;}
.fsa_c00250{font-size:48.000000px;}
.fs3_c00250{font-size:57.000000px;}
.fs5_c00250{font-size:60.000000px;}
.fs9_c00250{font-size:63.000000px;}
.fs6_c00250{font-size:66.000000px;}
.fs2_c00250{font-size:72.000000px;}
.fs0_c00250{font-size:78.000000px;}
.fs1_c00250{font-size:81.000000px;}
.fs7_c00250{font-size:84.000000px;}
.fs8_c00250{font-size:108.000000px;}
.y0_c00250{bottom:0.000000px;}
.y25_c00250{bottom:3.105000px;}
.y24_c00250{bottom:7.228371px;}
.y23_c00250{bottom:69.315000px;}
.y22_c00250{bottom:96.915000px;}
.y21_c00250{bottom:121.965000px;}
.y20_c00250{bottom:146.865000px;}
.y1f_c00250{bottom:170.565000px;}
.y1e_c00250{bottom:194.115000px;}
.y1d_c00250{bottom:220.065000px;}
.y1c_c00250{bottom:244.665000px;}
.y1b_c00250{bottom:269.115000px;}
.y1a_c00250{bottom:293.265000px;}
.y19_c00250{bottom:317.265000px;}
.y18_c00250{bottom:340.965000px;}
.y17_c00250{bottom:365.565000px;}
.y16_c00250{bottom:389.115000px;}
.y15_c00250{bottom:413.415000px;}
.y14_c00250{bottom:437.415000px;}
.y13_c00250{bottom:461.715000px;}
.y12_c00250{bottom:486.015000px;}
.y11_c00250{bottom:510.015000px;}
.y10_c00250{bottom:534.315000px;}
.yf_c00250{bottom:558.615000px;}
.ye_c00250{bottom:583.215000px;}
.yd_c00250{bottom:606.615000px;}
.yc_c00250{bottom:630.765000px;}
.yb_c00250{bottom:654.465000px;}
.ya_c00250{bottom:678.765000px;}
.y9_c00250{bottom:703.065000px;}
.y8_c00250{bottom:727.365000px;}
.y7_c00250{bottom:751.065000px;}
.y6_c00250{bottom:775.665000px;}
.y5_c00250{bottom:799.665000px;}
.y4_c00250{bottom:823.815000px;}
.y3_c00250{bottom:848.265000px;}
.y2_c00250{bottom:873.465000px;}
.y1_c00250{bottom:898.065000px;}
.ha_c00250{height:13.200074px;}
.hb_c00250{height:43.804688px;}
.h5_c00250{height:59.736000px;}
.h6_c00250{height:66.713379px;}
.h4_c00250{height:79.497070px;}
.h7_c00250{height:82.441406px;}
.h9_c00250{height:84.269531px;}
.h3_c00250{height:91.160156px;}
.h2_c00250{height:98.756836px;}
.h8_c00250{height:108.843750px;}
.h0_c00250{height:989.025000px;}
.h1_c00250{height:989.250000px;}
.w1_c00250{width:104.875500px;}
.w0_c00250{width:672.000000px;}
.x0_c00250{left:0.000000px;}
.x3_c00250{left:56.100000px;}
.x1_c00250{left:57.750000px;}
.x2_c00250{left:59.100000px;}
.x5_c00250{left:60.150000px;}
.x7_c00250{left:61.500000px;}
.x8_c00250{left:62.550000px;}
.xa_c00250{left:287.814240px;}
.x9_c00250{left:511.950000px;}
.x4_c00250{left:531.600000px;}
.x6_c00250{left:540.450000px;}
@media print{
.v0_c00250{vertical-align:0.000000pt;}
.ls5_c00250{letter-spacing:-5.333333pt;}
.ls4_c00250{letter-spacing:0.000000pt;}
.ls3_c00250{letter-spacing:2.666667pt;}
.ls2_c00250{letter-spacing:7.466667pt;}
.ls0_c00250{letter-spacing:10.365867pt;}
.ls1_c00250{letter-spacing:76.800000pt;}
.ws6_c00250{word-spacing:-24.000000pt;}
.ws0_c00250{word-spacing:-15.424000pt;}
.ws4_c00250{word-spacing:-12.666667pt;}
.ws1_c00250{word-spacing:-0.050667pt;}
.ws2_c00250{word-spacing:-0.040533pt;}
.ws8_c00250{word-spacing:0.000000pt;}
.ws7_c00250{word-spacing:3.312000pt;}
.ws5_c00250{word-spacing:4.472000pt;}
.ws3_c00250{word-spacing:12.173333pt;}
._f_c00250{margin-left:-22.181333pt;}
._1a_c00250{margin-left:-14.909333pt;}
._14_c00250{margin-left:-11.176000pt;}
._18_c00250{margin-left:-10.008000pt;}
._e_c00250{margin-left:-8.867200pt;}
._12_c00250{margin-left:-7.338667pt;}
._1c_c00250{margin-left:-6.434667pt;}
._10_c00250{margin-left:-5.160000pt;}
._d_c00250{margin-left:-3.909333pt;}
._2_c00250{margin-left:-2.426667pt;}
._7_c00250{margin-left:-1.096000pt;}
._11_c00250{width:0.944000pt;}
._0_c00250{width:1.872000pt;}
._1_c00250{width:2.912000pt;}
._3_c00250{width:4.229333pt;}
._a_c00250{width:5.146667pt;}
._5_c00250{width:6.120000pt;}
._b_c00250{width:7.128000pt;}
._4_c00250{width:8.568000pt;}
._6_c00250{width:9.522667pt;}
._9_c00250{width:10.584000pt;}
._19_c00250{width:11.477333pt;}
._c_c00250{width:13.498667pt;}
._17_c00250{width:14.600000pt;}
._15_c00250{width:16.642667pt;}
._8_c00250{width:20.416000pt;}
._13_c00250{width:22.149333pt;}
._16_c00250{width:32.762667pt;}
._1e_c00250{width:48.882667pt;}
._1d_c00250{width:67.056000pt;}
._1b_c00250{width:109.773333pt;}
._1f_c00250{width:702.522667pt;}
.fs4_c00250{font-size:40.533333pt;}
.fsa_c00250{font-size:42.666667pt;}
.fs3_c00250{font-size:50.666667pt;}
.fs5_c00250{font-size:53.333333pt;}
.fs9_c00250{font-size:56.000000pt;}
.fs6_c00250{font-size:58.666667pt;}
.fs2_c00250{font-size:64.000000pt;}
.fs0_c00250{font-size:69.333333pt;}
.fs1_c00250{font-size:72.000000pt;}
.fs7_c00250{font-size:74.666667pt;}
.fs8_c00250{font-size:96.000000pt;}
.y0_c00250{bottom:0.000000pt;}
.y25_c00250{bottom:2.760000pt;}
.y24_c00250{bottom:6.425219pt;}
.y23_c00250{bottom:61.613333pt;}
.y22_c00250{bottom:86.146667pt;}
.y21_c00250{bottom:108.413333pt;}
.y20_c00250{bottom:130.546667pt;}
.y1f_c00250{bottom:151.613333pt;}
.y1e_c00250{bottom:172.546667pt;}
.y1d_c00250{bottom:195.613333pt;}
.y1c_c00250{bottom:217.480000pt;}
.y1b_c00250{bottom:239.213333pt;}
.y1a_c00250{bottom:260.680000pt;}
.y19_c00250{bottom:282.013333pt;}
.y18_c00250{bottom:303.080000pt;}
.y17_c00250{bottom:324.946667pt;}
.y16_c00250{bottom:345.880000pt;}
.y15_c00250{bottom:367.480000pt;}
.y14_c00250{bottom:388.813333pt;}
.y13_c00250{bottom:410.413333pt;}
.y12_c00250{bottom:432.013333pt;}
.y11_c00250{bottom:453.346667pt;}
.y10_c00250{bottom:474.946667pt;}
.yf_c00250{bottom:496.546667pt;}
.ye_c00250{bottom:518.413333pt;}
.yd_c00250{bottom:539.213333pt;}
.yc_c00250{bottom:560.680000pt;}
.yb_c00250{bottom:581.746667pt;}
.ya_c00250{bottom:603.346667pt;}
.y9_c00250{bottom:624.946667pt;}
.y8_c00250{bottom:646.546667pt;}
.y7_c00250{bottom:667.613333pt;}
.y6_c00250{bottom:689.480000pt;}
.y5_c00250{bottom:710.813333pt;}
.y4_c00250{bottom:732.280000pt;}
.y3_c00250{bottom:754.013333pt;}
.y2_c00250{bottom:776.413333pt;}
.y1_c00250{bottom:798.280000pt;}
.ha_c00250{height:11.733399pt;}
.hb_c00250{height:38.937500pt;}
.h5_c00250{height:53.098667pt;}
.h6_c00250{height:59.300781pt;}
.h4_c00250{height:70.664062pt;}
.h7_c00250{height:73.281250pt;}
.h9_c00250{height:74.906250pt;}
.h3_c00250{height:81.031250pt;}
.h2_c00250{height:87.783854pt;}
.h8_c00250{height:96.750000pt;}
.h0_c00250{height:879.133333pt;}
.h1_c00250{height:879.333333pt;}
.w1_c00250{width:93.222667pt;}
.w0_c00250{width:597.333333pt;}
.x0_c00250{left:0.000000pt;}
.x3_c00250{left:49.866667pt;}
.x1_c00250{left:51.333333pt;}
.x2_c00250{left:52.533333pt;}
.x5_c00250{left:53.466667pt;}
.x7_c00250{left:54.666667pt;}
.x8_c00250{left:55.600000pt;}
.xa_c00250{left:255.834880pt;}
.x9_c00250{left:455.066667pt;}
.x4_c00250{left:472.533333pt;}
.x6_c00250{left:480.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_2731d075c59d81ec400d0c6e.woff2')format("woff");}.ff1_c00251{font-family:ff1_c00251;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00251;src:url('chunks/assets/font_08c30b76fc5963481b15e9e4.woff2')format("woff");}.ff2_c00251{font-family:ff2_c00251;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00251;src:url('chunks/assets/font_f5ea5510eed4201345cb215a.woff2')format("woff");}.ff3_c00251{font-family:ff3_c00251;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00251;src:url('chunks/assets/font_d425281d62d3e87fe61a910b.woff2')format("woff");}.ff4_c00251{font-family:ff4_c00251;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00251;src:url('chunks/assets/font_74d5204281c2db48b7089933.woff2')format("woff");}.ff5_c00251{font-family:ff5_c00251;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00251;src:url('chunks/assets/font_01b703968bbd6ace0d8ff6f8.woff2')format("woff");}.ff6_c00251{font-family:ff6_c00251;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00251;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c00251{font-family:ff7_c00251;line-height:1.219238;font-style: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;}
.ls6_c00251{letter-spacing:-15.000000px;}
.ls5_c00251{letter-spacing:0.000000px;}
.ls2_c00251{letter-spacing:0.912000px;}
.ls4_c00251{letter-spacing:14.700000px;}
.ls0_c00251{letter-spacing:17.100000px;}
.ls1_c00251{letter-spacing:21.300000px;}
.ls3_c00251{letter-spacing:23.700000px;}
.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:-67.686000px;}
.ws1_c00251{word-spacing:-20.250000px;}
.ws4_c00251{word-spacing:-17.352000px;}
.ws3_c00251{word-spacing:-13.737000px;}
.ws2_c00251{word-spacing:-1.200000px;}
.ws5_c00251{word-spacing:0.000000px;}
._d_c00251{margin-left:-38.388000px;}
._1d_c00251{margin-left:-23.472000px;}
._1c_c00251{margin-left:-20.169000px;}
._1b_c00251{margin-left:-16.605000px;}
._14_c00251{margin-left:-13.392000px;}
._17_c00251{margin-left:-11.529000px;}
._11_c00251{margin-left:-10.125000px;}
._10_c00251{margin-left:-7.938000px;}
._8_c00251{margin-left:-6.318000px;}
._2_c00251{margin-left:-4.779000px;}
._0_c00251{margin-left:-2.997000px;}
._7_c00251{margin-left:-1.053000px;}
._1_c00251{width:1.701000px;}
._3_c00251{width:2.997000px;}
._4_c00251{width:4.698000px;}
._a_c00251{width:5.913000px;}
._5_c00251{width:7.128000px;}
._6_c00251{width:8.181000px;}
._16_c00251{width:9.396000px;}
._f_c00251{width:10.476000px;}
._12_c00251{width:11.745000px;}
._22_c00251{width:12.798000px;}
._13_c00251{width:14.337000px;}
._b_c00251{width:15.519000px;}
._c_c00251{width:16.818000px;}
._18_c00251{width:18.516000px;}
._19_c00251{width:22.572000px;}
._23_c00251{width:29.067000px;}
._1a_c00251{width:32.562000px;}
._1e_c00251{width:38.958000px;}
._15_c00251{width:108.864000px;}
._20_c00251{width:136.725000px;}
._1f_c00251{width:159.498000px;}
._e_c00251{width:165.972000px;}
._9_c00251{width:304.965000px;}
._21_c00251{width:346.587000px;}
.fc2_c00251{color:transparent;}
.fc1_c00251{color:rgb(128,128,128);}
.fc0_c00251{color:rgb(0,0,0);}
.fs7_c00251{font-size:48.000000px;}
.fs3_c00251{font-size:57.000000px;}
.fs5_c00251{font-size:63.000000px;}
.fs4_c00251{font-size:72.000000px;}
.fs2_c00251{font-size:78.000000px;}
.fs0_c00251{font-size:81.000000px;}
.fs1_c00251{font-size:87.000000px;}
.fs6_c00251{font-size:102.000000px;}
.y0_c00251{bottom:0.000000px;}
.y24_c00251{bottom:3.105000px;}
.y23_c00251{bottom:7.228357px;}
.y22_c00251{bottom:101.580000px;}
.y21_c00251{bottom:127.680000px;}
.y20_c00251{bottom:151.980000px;}
.y1f_c00251{bottom:176.880000px;}
.y1e_c00251{bottom:201.180000px;}
.y1d_c00251{bottom:226.530000px;}
.y1c_c00251{bottom:251.430000px;}
.y1b_c00251{bottom:274.830000px;}
.y1a_c00251{bottom:299.130000px;}
.y19_c00251{bottom:323.430000px;}
.y18_c00251{bottom:347.580000px;}
.y17_c00251{bottom:372.330000px;}
.y16_c00251{bottom:396.330000px;}
.y15_c00251{bottom:420.630000px;}
.y14_c00251{bottom:444.480000px;}
.y13_c00251{bottom:469.080000px;}
.y12_c00251{bottom:492.780000px;}
.y11_c00251{bottom:516.780000px;}
.y10_c00251{bottom:540.780000px;}
.yf_c00251{bottom:564.330000px;}
.ye_c00251{bottom:589.680000px;}
.yd_c00251{bottom:613.680000px;}
.yc_c00251{bottom:638.280000px;}
.yb_c00251{bottom:662.130000px;}
.ya_c00251{bottom:686.130000px;}
.y9_c00251{bottom:710.730000px;}
.y8_c00251{bottom:735.030000px;}
.y7_c00251{bottom:759.030000px;}
.y6_c00251{bottom:783.030000px;}
.y5_c00251{bottom:807.030000px;}
.y4_c00251{bottom:831.030000px;}
.y3_c00251{bottom:855.330000px;}
.y2_c00251{bottom:879.480000px;}
.y1_c00251{bottom:903.180000px;}
.h8_c00251{height:13.200074px;}
.h9_c00251{height:43.804688px;}
.h5_c00251{height:72.168457px;}
.h1_c00251{height:79.497070px;}
.h4_c00251{height:84.269531px;}
.h6_c00251{height:91.160156px;}
.h2_c00251{height:91.176000px;}
.h3_c00251{height:98.756836px;}
.h7_c00251{height:104.839927px;}
.h0_c00251{height:995.250000px;}
.w2_c00251{width:104.875500px;}
.w0_c00251{width:667.425000px;}
.w1_c00251{width:667.500000px;}
.x0_c00251{left:0.000000px;}
.x10_c00251{left:22.500000px;}
.xc_c00251{left:33.750000px;}
.xb_c00251{left:39.900000px;}
.x2_c00251{left:44.550000px;}
.xd_c00251{left:69.750000px;}
.x3_c00251{left:73.650000px;}
.x5_c00251{left:92.250000px;}
.xf_c00251{left:119.850000px;}
.xe_c00251{left:121.050000px;}
.x4_c00251{left:123.300000px;}
.x8_c00251{left:124.650000px;}
.xa_c00251{left:126.900000px;}
.x6_c00251{left:128.250000px;}
.x7_c00251{left:129.600000px;}
.x1_c00251{left:133.350000px;}
.x9_c00251{left:150.300000px;}
.x11_c00251{left:285.526749px;}
@media print{
.v0_c00251{vertical-align:0.000000pt;}
.ls6_c00251{letter-spacing:-13.333333pt;}
.ls5_c00251{letter-spacing:0.000000pt;}
.ls2_c00251{letter-spacing:0.810667pt;}
.ls4_c00251{letter-spacing:13.066667pt;}
.ls0_c00251{letter-spacing:15.200000pt;}
.ls1_c00251{letter-spacing:18.933333pt;}
.ls3_c00251{letter-spacing:21.066667pt;}
.ws0_c00251{word-spacing:-60.165333pt;}
.ws1_c00251{word-spacing:-18.000000pt;}
.ws4_c00251{word-spacing:-15.424000pt;}
.ws3_c00251{word-spacing:-12.210667pt;}
.ws2_c00251{word-spacing:-1.066667pt;}
.ws5_c00251{word-spacing:0.000000pt;}
._d_c00251{margin-left:-34.122667pt;}
._1d_c00251{margin-left:-20.864000pt;}
._1c_c00251{margin-left:-17.928000pt;}
._1b_c00251{margin-left:-14.760000pt;}
._14_c00251{margin-left:-11.904000pt;}
._17_c00251{margin-left:-10.248000pt;}
._11_c00251{margin-left:-9.000000pt;}
._10_c00251{margin-left:-7.056000pt;}
._8_c00251{margin-left:-5.616000pt;}
._2_c00251{margin-left:-4.248000pt;}
._0_c00251{margin-left:-2.664000pt;}
._7_c00251{margin-left:-0.936000pt;}
._1_c00251{width:1.512000pt;}
._3_c00251{width:2.664000pt;}
._4_c00251{width:4.176000pt;}
._a_c00251{width:5.256000pt;}
._5_c00251{width:6.336000pt;}
._6_c00251{width:7.272000pt;}
._16_c00251{width:8.352000pt;}
._f_c00251{width:9.312000pt;}
._12_c00251{width:10.440000pt;}
._22_c00251{width:11.376000pt;}
._13_c00251{width:12.744000pt;}
._b_c00251{width:13.794667pt;}
._c_c00251{width:14.949333pt;}
._18_c00251{width:16.458667pt;}
._19_c00251{width:20.064000pt;}
._23_c00251{width:25.837333pt;}
._1a_c00251{width:28.944000pt;}
._1e_c00251{width:34.629333pt;}
._15_c00251{width:96.768000pt;}
._20_c00251{width:121.533333pt;}
._1f_c00251{width:141.776000pt;}
._e_c00251{width:147.530667pt;}
._9_c00251{width:271.080000pt;}
._21_c00251{width:308.077333pt;}
.fs7_c00251{font-size:42.666667pt;}
.fs3_c00251{font-size:50.666667pt;}
.fs5_c00251{font-size:56.000000pt;}
.fs4_c00251{font-size:64.000000pt;}
.fs2_c00251{font-size:69.333333pt;}
.fs0_c00251{font-size:72.000000pt;}
.fs1_c00251{font-size:77.333333pt;}
.fs6_c00251{font-size:90.666667pt;}
.y0_c00251{bottom:0.000000pt;}
.y24_c00251{bottom:2.760000pt;}
.y23_c00251{bottom:6.425206pt;}
.y22_c00251{bottom:90.293333pt;}
.y21_c00251{bottom:113.493333pt;}
.y20_c00251{bottom:135.093333pt;}
.y1f_c00251{bottom:157.226667pt;}
.y1e_c00251{bottom:178.826667pt;}
.y1d_c00251{bottom:201.360000pt;}
.y1c_c00251{bottom:223.493333pt;}
.y1b_c00251{bottom:244.293333pt;}
.y1a_c00251{bottom:265.893333pt;}
.y19_c00251{bottom:287.493333pt;}
.y18_c00251{bottom:308.960000pt;}
.y17_c00251{bottom:330.960000pt;}
.y16_c00251{bottom:352.293333pt;}
.y15_c00251{bottom:373.893333pt;}
.y14_c00251{bottom:395.093333pt;}
.y13_c00251{bottom:416.960000pt;}
.y12_c00251{bottom:438.026667pt;}
.y11_c00251{bottom:459.360000pt;}
.y10_c00251{bottom:480.693333pt;}
.yf_c00251{bottom:501.626667pt;}
.ye_c00251{bottom:524.160000pt;}
.yd_c00251{bottom:545.493333pt;}
.yc_c00251{bottom:567.360000pt;}
.yb_c00251{bottom:588.560000pt;}
.ya_c00251{bottom:609.893333pt;}
.y9_c00251{bottom:631.760000pt;}
.y8_c00251{bottom:653.360000pt;}
.y7_c00251{bottom:674.693333pt;}
.y6_c00251{bottom:696.026667pt;}
.y5_c00251{bottom:717.360000pt;}
.y4_c00251{bottom:738.693333pt;}
.y3_c00251{bottom:760.293333pt;}
.y2_c00251{bottom:781.760000pt;}
.y1_c00251{bottom:802.826667pt;}
.h8_c00251{height:11.733399pt;}
.h9_c00251{height:38.937500pt;}
.h5_c00251{height:64.149740pt;}
.h1_c00251{height:70.664062pt;}
.h4_c00251{height:74.906250pt;}
.h6_c00251{height:81.031250pt;}
.h2_c00251{height:81.045333pt;}
.h3_c00251{height:87.783854pt;}
.h7_c00251{height:93.191046pt;}
.h0_c00251{height:884.666667pt;}
.w2_c00251{width:93.222667pt;}
.w0_c00251{width:593.266667pt;}
.w1_c00251{width:593.333333pt;}
.x0_c00251{left:0.000000pt;}
.x10_c00251{left:20.000000pt;}
.xc_c00251{left:30.000000pt;}
.xb_c00251{left:35.466667pt;}
.x2_c00251{left:39.600000pt;}
.xd_c00251{left:62.000000pt;}
.x3_c00251{left:65.466667pt;}
.x5_c00251{left:82.000000pt;}
.xf_c00251{left:106.533333pt;}
.xe_c00251{left:107.600000pt;}
.x4_c00251{left:109.600000pt;}
.x8_c00251{left:110.800000pt;}
.xa_c00251{left:112.800000pt;}
.x6_c00251{left:114.000000pt;}
.x7_c00251{left:115.200000pt;}
.x1_c00251{left:118.533333pt;}
.x9_c00251{left:133.600000pt;}
.x11_c00251{left:253.801554pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e80dc204ac8828c15a73ee02.woff2')format("woff");}.ff1_c00252{font-family:ff1_c00252;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00252;src:url('chunks/assets/font_270587a89a8a7dfe4e6fb798.woff2')format("woff");}.ff2_c00252{font-family:ff2_c00252;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00252;src:url('chunks/assets/font_7666137c16a6393eb9e53606.woff2')format("woff");}.ff3_c00252{font-family:ff3_c00252;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00252;src:url('chunks/assets/font_e5916bad520e97e1456d5c74.woff2')format("woff");}.ff4_c00252{font-family:ff4_c00252;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00252;src:url('chunks/assets/font_b4a9f680b7b4062e8853a963.woff2')format("woff");}.ff5_c00252{font-family:ff5_c00252;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00252;src:url('chunks/assets/font_859f5ef2bc10e11a7ca98e2a.woff2')format("woff");}.ff6_c00252{font-family:ff6_c00252;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00252;src:url('chunks/assets/font_2e176da712d402d5bd1edc59.woff2')format("woff");}.ff7_c00252{font-family:ff7_c00252;line-height:1.437000;font-style:normal;font-weight: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_c00252;src:url('chunks/assets/font_68980461366c43093473ea2f.woff2')format("woff");}.ff8_c00252{font-family:ff8_c00252;line-height:1.311035;font-style:normal;font-weight: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_c00252;src:url('chunks/assets/font_c5697538f08f5135926abc83.woff2')format("woff");}.ff9_c00252{font-family:ff9_c00252;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00252;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ffa_c00252{font-family:ffa_c00252;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00252{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00252{vertical-align:0.000000px;}
.v1_c00252{vertical-align:157.800000px;}
.ls2_c00252{letter-spacing:-3.000000px;}
.ls1_c00252{letter-spacing:0.000000px;}
.ls0_c00252{letter-spacing:7.350000px;}
.sc__c00252{text-shadow:none;}
.sc0_c00252{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00252{-webkit-text-stroke:0px transparent;}
.sc0_c00252{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00252{word-spacing:-80.901000px;}
.ws0_c00252{word-spacing:-67.686000px;}
.ws2_c00252{word-spacing:-18.000000px;}
.ws3_c00252{word-spacing:0.000000px;}
._1d_c00252{margin-left:-26.325000px;}
._d_c00252{margin-left:-24.639000px;}
._13_c00252{margin-left:-23.115000px;}
._19_c00252{margin-left:-21.951000px;}
._18_c00252{margin-left:-16.929000px;}
._1b_c00252{margin-left:-15.690000px;}
._24_c00252{margin-left:-14.472000px;}
._1f_c00252{margin-left:-13.452000px;}
._26_c00252{margin-left:-11.097000px;}
._21_c00252{margin-left:-9.462000px;}
._17_c00252{margin-left:-8.424000px;}
._15_c00252{margin-left:-6.624000px;}
._25_c00252{margin-left:-5.508000px;}
._9_c00252{margin-left:-4.392000px;}
._a_c00252{margin-left:-3.240000px;}
._5_c00252{margin-left:-1.458000px;}
._1a_c00252{width:1.053000px;}
._6_c00252{width:2.106000px;}
._2_c00252{width:3.321000px;}
._1_c00252{width:4.779000px;}
._0_c00252{width:6.318000px;}
._4_c00252{width:7.533000px;}
._e_c00252{width:9.108000px;}
._3_c00252{width:10.206000px;}
._10_c00252{width:11.664000px;}
._f_c00252{width:12.816000px;}
._b_c00252{width:13.896000px;}
._16_c00252{width:15.357000px;}
._14_c00252{width:17.253000px;}
._7_c00252{width:18.387000px;}
._22_c00252{width:19.779000px;}
._c_c00252{width:24.822000px;}
._11_c00252{width:26.730000px;}
._8_c00252{width:30.084000px;}
._1c_c00252{width:32.364000px;}
._20_c00252{width:34.614000px;}
._23_c00252{width:35.973000px;}
._1e_c00252{width:98.577000px;}
._27_c00252{width:119.151000px;}
._28_c00252{width:126.360000px;}
._12_c00252{width:1131.264000px;}
._29_c00252{width:1469.259000px;}
.fc2_c00252{color:transparent;}
.fc1_c00252{color:rgb(128,128,128);}
.fc0_c00252{color:rgb(0,0,0);}
.fs7_c00252{font-size:48.000000px;}
.fs3_c00252{font-size:69.000000px;}
.fs1_c00252{font-size:72.000000px;}
.fs5_c00252{font-size:78.000000px;}
.fs0_c00252{font-size:81.000000px;}
.fs6_c00252{font-size:84.000000px;}
.fs2_c00252{font-size:87.000000px;}
.fs4_c00252{font-size:303.000000px;}
.y0_c00252{bottom:0.000000px;}
.y25_c00252{bottom:3.105000px;}
.y24_c00252{bottom:7.228371px;}
.y23_c00252{bottom:74.265000px;}
.y22_c00252{bottom:97.515000px;}
.y21_c00252{bottom:123.915000px;}
.y20_c00252{bottom:148.215000px;}
.y1f_c00252{bottom:172.515000px;}
.y1e_c00252{bottom:196.515000px;}
.y1d_c00252{bottom:221.715000px;}
.y1c_c00252{bottom:246.165000px;}
.y1b_c00252{bottom:270.315000px;}
.y1a_c00252{bottom:294.765000px;}
.y19_c00252{bottom:318.315000px;}
.y18_c00252{bottom:342.615000px;}
.y17_c00252{bottom:366.315000px;}
.y16_c00252{bottom:390.465000px;}
.y15_c00252{bottom:414.465000px;}
.y14_c00252{bottom:439.065000px;}
.y13_c00252{bottom:462.165000px;}
.y12_c00252{bottom:486.765000px;}
.y11_c00252{bottom:510.765000px;}
.y10_c00252{bottom:535.665000px;}
.yf_c00252{bottom:558.915000px;}
.ye_c00252{bottom:584.265000px;}
.yd_c00252{bottom:606.615000px;}
.yc_c00252{bottom:631.215000px;}
.yb_c00252{bottom:654.465000px;}
.ya_c00252{bottom:678.465000px;}
.y8_c00252{bottom:688.215000px;}
.y9_c00252{bottom:703.065000px;}
.y7_c00252{bottom:751.965000px;}
.y6_c00252{bottom:774.015000px;}
.y5_c00252{bottom:802.215000px;}
.y4_c00252{bottom:823.215000px;}
.y3_c00252{bottom:848.265000px;}
.y2_c00252{bottom:872.115000px;}
.y1_c00252{bottom:898.515000px;}
.h9_c00252{height:13.200074px;}
.ha_c00252{height:43.804688px;}
.h5_c00252{height:72.312000px;}
.h4_c00252{height:79.497070px;}
.h8_c00252{height:82.441406px;}
.h2_c00252{height:84.269531px;}
.h3_c00252{height:91.176000px;}
.h7_c00252{height:98.756836px;}
.h6_c00252{height:323.301000px;}
.h0_c00252{height:989.025000px;}
.h1_c00252{height:989.250000px;}
.w1_c00252{width:104.875500px;}
.w0_c00252{width:672.000000px;}
.x0_c00252{left:0.000000px;}
.x7_c00252{left:25.650000px;}
.x1_c00252{left:27.600000px;}
.x6_c00252{left:29.250000px;}
.x3_c00252{left:31.050000px;}
.x8_c00252{left:34.050000px;}
.x2_c00252{left:58.050000px;}
.x5_c00252{left:71.100000px;}
.x4_c00252{left:80.550000px;}
.x9_c00252{left:287.814240px;}
@media print{
.v0_c00252{vertical-align:0.000000pt;}
.v1_c00252{vertical-align:140.266667pt;}
.ls2_c00252{letter-spacing:-2.666667pt;}
.ls1_c00252{letter-spacing:0.000000pt;}
.ls0_c00252{letter-spacing:6.533333pt;}
.ws1_c00252{word-spacing:-71.912000pt;}
.ws0_c00252{word-spacing:-60.165333pt;}
.ws2_c00252{word-spacing:-16.000000pt;}
.ws3_c00252{word-spacing:0.000000pt;}
._1d_c00252{margin-left:-23.400000pt;}
._d_c00252{margin-left:-21.901333pt;}
._13_c00252{margin-left:-20.546667pt;}
._19_c00252{margin-left:-19.512000pt;}
._18_c00252{margin-left:-15.048000pt;}
._1b_c00252{margin-left:-13.946667pt;}
._24_c00252{margin-left:-12.864000pt;}
._1f_c00252{margin-left:-11.957333pt;}
._26_c00252{margin-left:-9.864000pt;}
._21_c00252{margin-left:-8.410667pt;}
._17_c00252{margin-left:-7.488000pt;}
._15_c00252{margin-left:-5.888000pt;}
._25_c00252{margin-left:-4.896000pt;}
._9_c00252{margin-left:-3.904000pt;}
._a_c00252{margin-left:-2.880000pt;}
._5_c00252{margin-left:-1.296000pt;}
._1a_c00252{width:0.936000pt;}
._6_c00252{width:1.872000pt;}
._2_c00252{width:2.952000pt;}
._1_c00252{width:4.248000pt;}
._0_c00252{width:5.616000pt;}
._4_c00252{width:6.696000pt;}
._e_c00252{width:8.096000pt;}
._3_c00252{width:9.072000pt;}
._10_c00252{width:10.368000pt;}
._f_c00252{width:11.392000pt;}
._b_c00252{width:12.352000pt;}
._16_c00252{width:13.650667pt;}
._14_c00252{width:15.336000pt;}
._7_c00252{width:16.344000pt;}
._22_c00252{width:17.581333pt;}
._c_c00252{width:22.064000pt;}
._11_c00252{width:23.760000pt;}
._8_c00252{width:26.741333pt;}
._1c_c00252{width:28.768000pt;}
._20_c00252{width:30.768000pt;}
._23_c00252{width:31.976000pt;}
._1e_c00252{width:87.624000pt;}
._27_c00252{width:105.912000pt;}
._28_c00252{width:112.320000pt;}
._12_c00252{width:1005.568000pt;}
._29_c00252{width:1306.008000pt;}
.fs7_c00252{font-size:42.666667pt;}
.fs3_c00252{font-size:61.333333pt;}
.fs1_c00252{font-size:64.000000pt;}
.fs5_c00252{font-size:69.333333pt;}
.fs0_c00252{font-size:72.000000pt;}
.fs6_c00252{font-size:74.666667pt;}
.fs2_c00252{font-size:77.333333pt;}
.fs4_c00252{font-size:269.333333pt;}
.y0_c00252{bottom:0.000000pt;}
.y25_c00252{bottom:2.760000pt;}
.y24_c00252{bottom:6.425219pt;}
.y23_c00252{bottom:66.013333pt;}
.y22_c00252{bottom:86.680000pt;}
.y21_c00252{bottom:110.146667pt;}
.y20_c00252{bottom:131.746667pt;}
.y1f_c00252{bottom:153.346667pt;}
.y1e_c00252{bottom:174.680000pt;}
.y1d_c00252{bottom:197.080000pt;}
.y1c_c00252{bottom:218.813333pt;}
.y1b_c00252{bottom:240.280000pt;}
.y1a_c00252{bottom:262.013333pt;}
.y19_c00252{bottom:282.946667pt;}
.y18_c00252{bottom:304.546667pt;}
.y17_c00252{bottom:325.613333pt;}
.y16_c00252{bottom:347.080000pt;}
.y15_c00252{bottom:368.413333pt;}
.y14_c00252{bottom:390.280000pt;}
.y13_c00252{bottom:410.813333pt;}
.y12_c00252{bottom:432.680000pt;}
.y11_c00252{bottom:454.013333pt;}
.y10_c00252{bottom:476.146667pt;}
.yf_c00252{bottom:496.813333pt;}
.ye_c00252{bottom:519.346667pt;}
.yd_c00252{bottom:539.213333pt;}
.yc_c00252{bottom:561.080000pt;}
.yb_c00252{bottom:581.746667pt;}
.ya_c00252{bottom:603.080000pt;}
.y8_c00252{bottom:611.746667pt;}
.y9_c00252{bottom:624.946667pt;}
.y7_c00252{bottom:668.413333pt;}
.y6_c00252{bottom:688.013333pt;}
.y5_c00252{bottom:713.080000pt;}
.y4_c00252{bottom:731.746667pt;}
.y3_c00252{bottom:754.013333pt;}
.y2_c00252{bottom:775.213333pt;}
.y1_c00252{bottom:798.680000pt;}
.h9_c00252{height:11.733399pt;}
.ha_c00252{height:38.937500pt;}
.h5_c00252{height:64.277333pt;}
.h4_c00252{height:70.664062pt;}
.h8_c00252{height:73.281250pt;}
.h2_c00252{height:74.906250pt;}
.h3_c00252{height:81.045333pt;}
.h7_c00252{height:87.783854pt;}
.h6_c00252{height:287.378667pt;}
.h0_c00252{height:879.133333pt;}
.h1_c00252{height:879.333333pt;}
.w1_c00252{width:93.222667pt;}
.w0_c00252{width:597.333333pt;}
.x0_c00252{left:0.000000pt;}
.x7_c00252{left:22.800000pt;}
.x1_c00252{left:24.533333pt;}
.x6_c00252{left:26.000000pt;}
.x3_c00252{left:27.600000pt;}
.x8_c00252{left:30.266667pt;}
.x2_c00252{left:51.600000pt;}
.x5_c00252{left:63.200000pt;}
.x4_c00252{left:71.600000pt;}
.x9_c00252{left:255.834880pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b45b59566276216e3aeee757.woff2')format("woff");}.ff1_c00253{font-family:ff1_c00253;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00253;src:url('chunks/assets/font_c0eabc25011bdebbebbefbe3.woff2')format("woff");}.ff2_c00253{font-family:ff2_c00253;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00253;src:url('chunks/assets/font_dfc943ad0f77167c639209e8.woff2')format("woff");}.ff3_c00253{font-family:ff3_c00253;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00253;src:url('chunks/assets/font_dcc62d21527d73df524ed8b5.woff2')format("woff");}.ff4_c00253{font-family:ff4_c00253;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00253;src:url('chunks/assets/font_706bb5f6eeed704d2052de58.woff2')format("woff");}.ff5_c00253{font-family:ff5_c00253;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00253;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c00253{font-family:ff6_c00253;line-height:1.219238;font-style: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;}
.ls2_c00253{letter-spacing:0.000000px;}
.ls1_c00253{letter-spacing:3.480000px;}
.ls0_c00253{letter-spacing:5.100000px;}
.sc__c00253{text-shadow:none;}
.sc0_c00253{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00253{-webkit-text-stroke:0px transparent;}
.sc0_c00253{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00253{word-spacing:-59.184000px;}
.ws1_c00253{word-spacing:-20.250000px;}
.ws2_c00253{word-spacing:-18.798000px;}
.ws3_c00253{word-spacing:0.000000px;}
._17_c00253{margin-left:-21.099000px;}
._10_c00253{margin-left:-14.601000px;}
._12_c00253{margin-left:-12.636000px;}
._13_c00253{margin-left:-10.449000px;}
._14_c00253{margin-left:-9.315000px;}
._b_c00253{margin-left:-7.047000px;}
._a_c00253{margin-left:-5.751000px;}
._11_c00253{margin-left:-4.617000px;}
._2_c00253{margin-left:-3.402000px;}
._9_c00253{margin-left:-1.620000px;}
._1_c00253{width:1.134000px;}
._0_c00253{width:2.997000px;}
._3_c00253{width:4.536000px;}
._5_c00253{width:5.913000px;}
._7_c00253{width:7.209000px;}
._4_c00253{width:8.910000px;}
._f_c00253{width:10.488000px;}
._15_c00253{width:11.826000px;}
._6_c00253{width:13.527000px;}
._8_c00253{width:15.390000px;}
._18_c00253{width:16.929000px;}
._1a_c00253{width:18.954000px;}
._c_c00253{width:23.535000px;}
._d_c00253{width:25.812000px;}
._16_c00253{width:34.749000px;}
._e_c00253{width:43.200000px;}
._19_c00253{width:130.653000px;}
.fc2_c00253{color:transparent;}
.fc1_c00253{color:rgb(128,128,128);}
.fc0_c00253{color:rgb(0,0,0);}
.fs1_c00253{font-size:36.000000px;}
.fs5_c00253{font-size:48.000000px;}
.fs3_c00253{font-size:72.000000px;}
.fs2_c00253{font-size:78.000000px;}
.fs0_c00253{font-size:81.000000px;}
.fs4_c00253{font-size:87.000000px;}
.y0_c00253{bottom:0.000000px;}
.y25_c00253{bottom:3.105000px;}
.y24_c00253{bottom:7.228357px;}
.y23_c00253{bottom:74.580000px;}
.y22_c00253{bottom:99.180000px;}
.y21_c00253{bottom:124.230000px;}
.y20_c00253{bottom:147.930000px;}
.y1f_c00253{bottom:173.580000px;}
.y1e_c00253{bottom:198.480000px;}
.y1d_c00253{bottom:222.780000px;}
.y1c_c00253{bottom:247.380000px;}
.y1b_c00253{bottom:271.680000px;}
.y1a_c00253{bottom:295.980000px;}
.y19_c00253{bottom:320.580000px;}
.y18_c00253{bottom:345.330000px;}
.y17_c00253{bottom:369.330000px;}
.y16_c00253{bottom:394.980000px;}
.y15_c00253{bottom:418.230000px;}
.y14_c00253{bottom:441.780000px;}
.y13_c00253{bottom:466.380000px;}
.y12_c00253{bottom:490.080000px;}
.y11_c00253{bottom:514.980000px;}
.y10_c00253{bottom:538.080000px;}
.yf_c00253{bottom:562.380000px;}
.ye_c00253{bottom:586.980000px;}
.yd_c00253{bottom:610.830000px;}
.yc_c00253{bottom:635.580000px;}
.yb_c00253{bottom:659.130000px;}
.ya_c00253{bottom:683.430000px;}
.y9_c00253{bottom:707.430000px;}
.y8_c00253{bottom:731.430000px;}
.y7_c00253{bottom:755.730000px;}
.y6_c00253{bottom:780.330000px;}
.y5_c00253{bottom:805.680000px;}
.y4_c00253{bottom:828.630000px;}
.y3_c00253{bottom:854.580000px;}
.y2_c00253{bottom:876.780000px;}
.y1_c00253{bottom:902.580000px;}
.h5_c00253{height:13.200074px;}
.h6_c00253{height:43.804688px;}
.h1_c00253{height:79.497070px;}
.h3_c00253{height:84.269531px;}
.h4_c00253{height:91.176000px;}
.h2_c00253{height:98.756836px;}
.h0_c00253{height:995.250000px;}
.w2_c00253{width:104.875500px;}
.w0_c00253{width:667.425000px;}
.w1_c00253{width:667.500000px;}
.x0_c00253{left:0.000000px;}
.x3_c00253{left:145.500000px;}
.x6_c00253{left:146.550000px;}
.x1_c00253{left:147.600000px;}
.x2_c00253{left:149.550000px;}
.x4_c00253{left:151.500000px;}
.x5_c00253{left:178.200000px;}
.x8_c00253{left:285.526749px;}
.x7_c00253{left:608.850000px;}
@media print{
.v0_c00253{vertical-align:0.000000pt;}
.ls2_c00253{letter-spacing:0.000000pt;}
.ls1_c00253{letter-spacing:3.093333pt;}
.ls0_c00253{letter-spacing:4.533333pt;}
.ws0_c00253{word-spacing:-52.608000pt;}
.ws1_c00253{word-spacing:-18.000000pt;}
.ws2_c00253{word-spacing:-16.709333pt;}
.ws3_c00253{word-spacing:0.000000pt;}
._17_c00253{margin-left:-18.754667pt;}
._10_c00253{margin-left:-12.978667pt;}
._12_c00253{margin-left:-11.232000pt;}
._13_c00253{margin-left:-9.288000pt;}
._14_c00253{margin-left:-8.280000pt;}
._b_c00253{margin-left:-6.264000pt;}
._a_c00253{margin-left:-5.112000pt;}
._11_c00253{margin-left:-4.104000pt;}
._2_c00253{margin-left:-3.024000pt;}
._9_c00253{margin-left:-1.440000pt;}
._1_c00253{width:1.008000pt;}
._0_c00253{width:2.664000pt;}
._3_c00253{width:4.032000pt;}
._5_c00253{width:5.256000pt;}
._7_c00253{width:6.408000pt;}
._4_c00253{width:7.920000pt;}
._f_c00253{width:9.322667pt;}
._15_c00253{width:10.512000pt;}
._6_c00253{width:12.024000pt;}
._8_c00253{width:13.680000pt;}
._18_c00253{width:15.048000pt;}
._1a_c00253{width:16.848000pt;}
._c_c00253{width:20.920000pt;}
._d_c00253{width:22.944000pt;}
._16_c00253{width:30.888000pt;}
._e_c00253{width:38.400000pt;}
._19_c00253{width:116.136000pt;}
.fs1_c00253{font-size:32.000000pt;}
.fs5_c00253{font-size:42.666667pt;}
.fs3_c00253{font-size:64.000000pt;}
.fs2_c00253{font-size:69.333333pt;}
.fs0_c00253{font-size:72.000000pt;}
.fs4_c00253{font-size:77.333333pt;}
.y0_c00253{bottom:0.000000pt;}
.y25_c00253{bottom:2.760000pt;}
.y24_c00253{bottom:6.425206pt;}
.y23_c00253{bottom:66.293333pt;}
.y22_c00253{bottom:88.160000pt;}
.y21_c00253{bottom:110.426667pt;}
.y20_c00253{bottom:131.493333pt;}
.y1f_c00253{bottom:154.293333pt;}
.y1e_c00253{bottom:176.426667pt;}
.y1d_c00253{bottom:198.026667pt;}
.y1c_c00253{bottom:219.893333pt;}
.y1b_c00253{bottom:241.493333pt;}
.y1a_c00253{bottom:263.093333pt;}
.y19_c00253{bottom:284.960000pt;}
.y18_c00253{bottom:306.960000pt;}
.y17_c00253{bottom:328.293333pt;}
.y16_c00253{bottom:351.093333pt;}
.y15_c00253{bottom:371.760000pt;}
.y14_c00253{bottom:392.693333pt;}
.y13_c00253{bottom:414.560000pt;}
.y12_c00253{bottom:435.626667pt;}
.y11_c00253{bottom:457.760000pt;}
.y10_c00253{bottom:478.293333pt;}
.yf_c00253{bottom:499.893333pt;}
.ye_c00253{bottom:521.760000pt;}
.yd_c00253{bottom:542.960000pt;}
.yc_c00253{bottom:564.960000pt;}
.yb_c00253{bottom:585.893333pt;}
.ya_c00253{bottom:607.493333pt;}
.y9_c00253{bottom:628.826667pt;}
.y8_c00253{bottom:650.160000pt;}
.y7_c00253{bottom:671.760000pt;}
.y6_c00253{bottom:693.626667pt;}
.y5_c00253{bottom:716.160000pt;}
.y4_c00253{bottom:736.560000pt;}
.y3_c00253{bottom:759.626667pt;}
.y2_c00253{bottom:779.360000pt;}
.y1_c00253{bottom:802.293333pt;}
.h5_c00253{height:11.733399pt;}
.h6_c00253{height:38.937500pt;}
.h1_c00253{height:70.664062pt;}
.h3_c00253{height:74.906250pt;}
.h4_c00253{height:81.045333pt;}
.h2_c00253{height:87.783854pt;}
.h0_c00253{height:884.666667pt;}
.w2_c00253{width:93.222667pt;}
.w0_c00253{width:593.266667pt;}
.w1_c00253{width:593.333333pt;}
.x0_c00253{left:0.000000pt;}
.x3_c00253{left:129.333333pt;}
.x6_c00253{left:130.266667pt;}
.x1_c00253{left:131.200000pt;}
.x2_c00253{left:132.933333pt;}
.x4_c00253{left:134.666667pt;}
.x5_c00253{left:158.400000pt;}
.x8_c00253{left:253.801554pt;}
.x7_c00253{left:541.200000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_bc7fb5bbd0c00c353bbfea9a.woff2')format("woff");}.ff1_c00254{font-family:ff1_c00254;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00254;src:url('chunks/assets/font_74c9c55d3e4956636d4daad8.woff2')format("woff");}.ff2_c00254{font-family:ff2_c00254;line-height:1.437000;font-style:normal;font-weight:normal;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_b1c31d4f7e06cbbb60860d19.woff2')format("woff");}.ff3_c00254{font-family:ff3_c00254;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00254;src:url('chunks/assets/font_02d037ff7c95edcf307ad56c.woff2')format("woff");}.ff4_c00254{font-family:ff4_c00254;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00254;src:url('chunks/assets/font_cdb34479c99ee58bb960c682.woff2')format("woff");}.ff5_c00254{font-family:ff5_c00254;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00254;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c00254{font-family:ff6_c00254;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00254{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00254{vertical-align:0.000000px;}
.ls1_c00254{letter-spacing:0.000000px;}
.ls0_c00254{letter-spacing:1.080000px;}
.ls2_c00254{letter-spacing:6.000000px;}
.sc__c00254{text-shadow:none;}
.sc0_c00254{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00254{-webkit-text-stroke:0px transparent;}
.sc0_c00254{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00254{word-spacing:-67.686000px;}
.ws1_c00254{word-spacing:-59.184000px;}
.ws2_c00254{word-spacing:-13.905000px;}
.ws3_c00254{word-spacing:0.000000px;}
._a_c00254{margin-left:-25.887000px;}
._19_c00254{margin-left:-18.978000px;}
._1a_c00254{margin-left:-14.094000px;}
._1b_c00254{margin-left:-11.421000px;}
._15_c00254{margin-left:-8.181000px;}
._10_c00254{margin-left:-6.885000px;}
._7_c00254{margin-left:-5.184000px;}
._11_c00254{margin-left:-4.131000px;}
._4_c00254{margin-left:-2.511000px;}
._b_c00254{margin-left:-1.134000px;}
._8_c00254{width:1.539000px;}
._3_c00254{width:2.673000px;}
._0_c00254{width:4.455000px;}
._6_c00254{width:5.508000px;}
._2_c00254{width:6.561000px;}
._5_c00254{width:7.857000px;}
._1_c00254{width:9.072000px;}
._d_c00254{width:10.530000px;}
._13_c00254{width:11.826000px;}
._e_c00254{width:13.203000px;}
._f_c00254{width:14.742000px;}
._12_c00254{width:16.119000px;}
._14_c00254{width:17.739000px;}
._16_c00254{width:19.197000px;}
._1d_c00254{width:20.913000px;}
._c_c00254{width:23.019000px;}
._9_c00254{width:25.029000px;}
._17_c00254{width:37.503000px;}
._1c_c00254{width:44.781000px;}
._18_c00254{width:326.187000px;}
._1e_c00254{width:1526.226000px;}
.fc2_c00254{color:transparent;}
.fc1_c00254{color:rgb(128,128,128);}
.fc0_c00254{color:rgb(0,0,0);}
.fs4_c00254{font-size:48.000000px;}
.fs3_c00254{font-size:51.000000px;}
.fs2_c00254{font-size:72.000000px;}
.fs0_c00254{font-size:81.000000px;}
.fs1_c00254{font-size:87.000000px;}
.y0_c00254{bottom:0.000000px;}
.y25_c00254{bottom:3.105000px;}
.y24_c00254{bottom:7.228371px;}
.y23_c00254{bottom:59.715000px;}
.y22_c00254{bottom:85.515000px;}
.y21_c00254{bottom:111.015000px;}
.y20_c00254{bottom:136.065000px;}
.y1f_c00254{bottom:160.365000px;}
.y1e_c00254{bottom:183.915000px;}
.y1d_c00254{bottom:209.265000px;}
.y1c_c00254{bottom:234.015000px;}
.y1b_c00254{bottom:258.615000px;}
.y1a_c00254{bottom:282.915000px;}
.y19_c00254{bottom:306.915000px;}
.y18_c00254{bottom:331.515000px;}
.y17_c00254{bottom:355.065000px;}
.y16_c00254{bottom:379.365000px;}
.y15_c00254{bottom:403.665000px;}
.y14_c00254{bottom:427.665000px;}
.y13_c00254{bottom:451.365000px;}
.y12_c00254{bottom:475.965000px;}
.y11_c00254{bottom:500.265000px;}
.y10_c00254{bottom:524.565000px;}
.yf_c00254{bottom:548.415000px;}
.ye_c00254{bottom:572.415000px;}
.yd_c00254{bottom:595.815000px;}
.yc_c00254{bottom:619.965000px;}
.yb_c00254{bottom:644.265000px;}
.ya_c00254{bottom:667.965000px;}
.y9_c00254{bottom:691.965000px;}
.y8_c00254{bottom:715.965000px;}
.y7_c00254{bottom:740.565000px;}
.y6_c00254{bottom:764.415000px;}
.y5_c00254{bottom:788.415000px;}
.y4_c00254{bottom:812.715000px;}
.y3_c00254{bottom:836.715000px;}
.y2_c00254{bottom:860.715000px;}
.y1_c00254{bottom:884.715000px;}
.h6_c00254{height:13.200074px;}
.h7_c00254{height:43.804688px;}
.h5_c00254{height:51.398438px;}
.h2_c00254{height:79.497070px;}
.h4_c00254{height:84.269531px;}
.h3_c00254{height:91.176000px;}
.h0_c00254{height:989.025000px;}
.h1_c00254{height:989.250000px;}
.w1_c00254{width:104.875500px;}
.w0_c00254{width:672.000000px;}
.x0_c00254{left:0.000000px;}
.xa_c00254{left:19.350000px;}
.x1_c00254{left:25.650000px;}
.x2_c00254{left:27.000000px;}
.x3_c00254{left:28.350000px;}
.x4_c00254{left:29.700000px;}
.x5_c00254{left:30.750000px;}
.x6_c00254{left:31.800000px;}
.x7_c00254{left:33.150000px;}
.x9_c00254{left:34.200000px;}
.x8_c00254{left:36.150000px;}
.xb_c00254{left:37.200000px;}
.xc_c00254{left:39.150000px;}
.xd_c00254{left:40.200000px;}
.xe_c00254{left:41.550000px;}
.xf_c00254{left:50.700000px;}
.x10_c00254{left:287.814240px;}
@media print{
.v0_c00254{vertical-align:0.000000pt;}
.ls1_c00254{letter-spacing:0.000000pt;}
.ls0_c00254{letter-spacing:0.960000pt;}
.ls2_c00254{letter-spacing:5.333333pt;}
.ws0_c00254{word-spacing:-60.165333pt;}
.ws1_c00254{word-spacing:-52.608000pt;}
.ws2_c00254{word-spacing:-12.360000pt;}
.ws3_c00254{word-spacing:0.000000pt;}
._a_c00254{margin-left:-23.010667pt;}
._19_c00254{margin-left:-16.869333pt;}
._1a_c00254{margin-left:-12.528000pt;}
._1b_c00254{margin-left:-10.152000pt;}
._15_c00254{margin-left:-7.272000pt;}
._10_c00254{margin-left:-6.120000pt;}
._7_c00254{margin-left:-4.608000pt;}
._11_c00254{margin-left:-3.672000pt;}
._4_c00254{margin-left:-2.232000pt;}
._b_c00254{margin-left:-1.008000pt;}
._8_c00254{width:1.368000pt;}
._3_c00254{width:2.376000pt;}
._0_c00254{width:3.960000pt;}
._6_c00254{width:4.896000pt;}
._2_c00254{width:5.832000pt;}
._5_c00254{width:6.984000pt;}
._1_c00254{width:8.064000pt;}
._d_c00254{width:9.360000pt;}
._13_c00254{width:10.512000pt;}
._e_c00254{width:11.736000pt;}
._f_c00254{width:13.104000pt;}
._12_c00254{width:14.328000pt;}
._14_c00254{width:15.768000pt;}
._16_c00254{width:17.064000pt;}
._1d_c00254{width:18.589333pt;}
._c_c00254{width:20.461333pt;}
._9_c00254{width:22.248000pt;}
._17_c00254{width:33.336000pt;}
._1c_c00254{width:39.805333pt;}
._18_c00254{width:289.944000pt;}
._1e_c00254{width:1356.645333pt;}
.fs4_c00254{font-size:42.666667pt;}
.fs3_c00254{font-size:45.333333pt;}
.fs2_c00254{font-size:64.000000pt;}
.fs0_c00254{font-size:72.000000pt;}
.fs1_c00254{font-size:77.333333pt;}
.y0_c00254{bottom:0.000000pt;}
.y25_c00254{bottom:2.760000pt;}
.y24_c00254{bottom:6.425219pt;}
.y23_c00254{bottom:53.080000pt;}
.y22_c00254{bottom:76.013333pt;}
.y21_c00254{bottom:98.680000pt;}
.y20_c00254{bottom:120.946667pt;}
.y1f_c00254{bottom:142.546667pt;}
.y1e_c00254{bottom:163.480000pt;}
.y1d_c00254{bottom:186.013333pt;}
.y1c_c00254{bottom:208.013333pt;}
.y1b_c00254{bottom:229.880000pt;}
.y1a_c00254{bottom:251.480000pt;}
.y19_c00254{bottom:272.813333pt;}
.y18_c00254{bottom:294.680000pt;}
.y17_c00254{bottom:315.613333pt;}
.y16_c00254{bottom:337.213333pt;}
.y15_c00254{bottom:358.813333pt;}
.y14_c00254{bottom:380.146667pt;}
.y13_c00254{bottom:401.213333pt;}
.y12_c00254{bottom:423.080000pt;}
.y11_c00254{bottom:444.680000pt;}
.y10_c00254{bottom:466.280000pt;}
.yf_c00254{bottom:487.480000pt;}
.ye_c00254{bottom:508.813333pt;}
.yd_c00254{bottom:529.613333pt;}
.yc_c00254{bottom:551.080000pt;}
.yb_c00254{bottom:572.680000pt;}
.ya_c00254{bottom:593.746667pt;}
.y9_c00254{bottom:615.080000pt;}
.y8_c00254{bottom:636.413333pt;}
.y7_c00254{bottom:658.280000pt;}
.y6_c00254{bottom:679.480000pt;}
.y5_c00254{bottom:700.813333pt;}
.y4_c00254{bottom:722.413333pt;}
.y3_c00254{bottom:743.746667pt;}
.y2_c00254{bottom:765.080000pt;}
.y1_c00254{bottom:786.413333pt;}
.h6_c00254{height:11.733399pt;}
.h7_c00254{height:38.937500pt;}
.h5_c00254{height:45.687500pt;}
.h2_c00254{height:70.664062pt;}
.h4_c00254{height:74.906250pt;}
.h3_c00254{height:81.045333pt;}
.h0_c00254{height:879.133333pt;}
.h1_c00254{height:879.333333pt;}
.w1_c00254{width:93.222667pt;}
.w0_c00254{width:597.333333pt;}
.x0_c00254{left:0.000000pt;}
.xa_c00254{left:17.200000pt;}
.x1_c00254{left:22.800000pt;}
.x2_c00254{left:24.000000pt;}
.x3_c00254{left:25.200000pt;}
.x4_c00254{left:26.400000pt;}
.x5_c00254{left:27.333333pt;}
.x6_c00254{left:28.266667pt;}
.x7_c00254{left:29.466667pt;}
.x9_c00254{left:30.400000pt;}
.x8_c00254{left:32.133333pt;}
.xb_c00254{left:33.066667pt;}
.xc_c00254{left:34.800000pt;}
.xd_c00254{left:35.733333pt;}
.xe_c00254{left:36.933333pt;}
.xf_c00254{left:45.066667pt;}
.x10_c00254{left:255.834880pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f089bfea47206e2554995fc6.woff2')format("woff");}.ff1_c00255{font-family:ff1_c00255;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00255;src:url('chunks/assets/font_6e73d5e38e1ba0c71eea765b.woff2')format("woff");}.ff2_c00255{font-family:ff2_c00255;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00255;src:url('chunks/assets/font_6b23c5e6e6c8466fd6c3db91.woff2')format("woff");}.ff3_c00255{font-family:ff3_c00255;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00255;src:url('chunks/assets/font_da2f32ec61a02aee66b86eeb.woff2')format("woff");}.ff4_c00255{font-family:ff4_c00255;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00255;src:url('chunks/assets/font_f09c4c30effe54910627323e.woff2')format("woff");}.ff5_c00255{font-family:ff5_c00255;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00255;src:url('chunks/assets/font_261a51a95918d5945f193607.woff2')format("woff");}.ff6_c00255{font-family:ff6_c00255;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00255;src:url('chunks/assets/font_116e4b611a5ed6f66332acc1.woff2')format("woff");}.ff7_c00255{font-family:ff7_c00255;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00255;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff8_c00255{font-family:ff8_c00255;line-height:1.219238;font-style: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;}
.ls0_c00255{letter-spacing:0.000000px;}
.sc__c00255{text-shadow:none;}
.sc0_c00255{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00255{-webkit-text-stroke:0px transparent;}
.sc0_c00255{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00255{word-spacing:-67.686000px;}
.ws1_c00255{word-spacing:-61.182000px;}
.ws0_c00255{word-spacing:-59.184000px;}
.ws3_c00255{word-spacing:0.000000px;}
._16_c00255{margin-left:-15.501000px;}
._14_c00255{margin-left:-13.386000px;}
._b_c00255{margin-left:-11.259000px;}
._13_c00255{margin-left:-9.435000px;}
._d_c00255{margin-left:-6.723000px;}
._8_c00255{margin-left:-4.860000px;}
._7_c00255{margin-left:-3.402000px;}
._e_c00255{margin-left:-2.268000px;}
._3_c00255{margin-left:-1.134000px;}
._5_c00255{width:1.863000px;}
._4_c00255{width:3.321000px;}
._6_c00255{width:4.536000px;}
._2_c00255{width:5.751000px;}
._10_c00255{width:6.804000px;}
._1_c00255{width:7.857000px;}
._0_c00255{width:9.234000px;}
._a_c00255{width:10.875000px;}
._9_c00255{width:12.552000px;}
._15_c00255{width:14.421000px;}
._f_c00255{width:16.281000px;}
._1a_c00255{width:17.340000px;}
._12_c00255{width:19.146000px;}
._1d_c00255{width:23.160000px;}
._1c_c00255{width:25.677000px;}
._1b_c00255{width:28.836000px;}
._18_c00255{width:33.453000px;}
._c_c00255{width:45.441000px;}
._17_c00255{width:73.083000px;}
._19_c00255{width:99.711000px;}
._11_c00255{width:101.235000px;}
._1e_c00255{width:1701.669000px;}
.fc2_c00255{color:transparent;}
.fc1_c00255{color:rgb(128,128,128);}
.fc0_c00255{color:rgb(0,0,0);}
.fs5_c00255{font-size:48.000000px;}
.fs2_c00255{font-size:66.000000px;}
.fs3_c00255{font-size:69.000000px;}
.fs1_c00255{font-size:72.000000px;}
.fs0_c00255{font-size:81.000000px;}
.fs4_c00255{font-size:87.000000px;}
.y0_c00255{bottom:0.000000px;}
.y25_c00255{bottom:3.105000px;}
.y24_c00255{bottom:7.228357px;}
.y23_c00255{bottom:64.830000px;}
.y22_c00255{bottom:89.880000px;}
.y21_c00255{bottom:114.030000px;}
.y20_c00255{bottom:138.780000px;}
.y1f_c00255{bottom:163.680000px;}
.y1e_c00255{bottom:187.980000px;}
.y1d_c00255{bottom:212.730000px;}
.y1c_c00255{bottom:237.330000px;}
.y1b_c00255{bottom:261.630000px;}
.y1a_c00255{bottom:285.930000px;}
.y19_c00255{bottom:310.230000px;}
.y18_c00255{bottom:335.880000px;}
.y17_c00255{bottom:359.430000px;}
.y16_c00255{bottom:383.730000px;}
.y15_c00255{bottom:408.030000px;}
.y14_c00255{bottom:431.730000px;}
.y13_c00255{bottom:456.330000px;}
.y12_c00255{bottom:480.630000px;}
.y11_c00255{bottom:504.630000px;}
.y10_c00255{bottom:528.630000px;}
.yf_c00255{bottom:552.780000px;}
.ye_c00255{bottom:576.780000px;}
.yd_c00255{bottom:601.080000px;}
.yc_c00255{bottom:625.080000px;}
.yb_c00255{bottom:649.380000px;}
.ya_c00255{bottom:673.680000px;}
.y9_c00255{bottom:698.580000px;}
.y8_c00255{bottom:721.980000px;}
.y7_c00255{bottom:746.580000px;}
.y6_c00255{bottom:770.880000px;}
.y5_c00255{bottom:795.180000px;}
.y4_c00255{bottom:818.130000px;}
.y3_c00255{bottom:842.130000px;}
.y2_c00255{bottom:866.130000px;}
.y1_c00255{bottom:890.280000px;}
.h6_c00255{height:13.200074px;}
.h7_c00255{height:43.804688px;}
.h4_c00255{height:72.312000px;}
.h1_c00255{height:79.497070px;}
.h3_c00255{height:83.563477px;}
.h2_c00255{height:84.269531px;}
.h5_c00255{height:91.176000px;}
.h0_c00255{height:995.250000px;}
.w2_c00255{width:104.875500px;}
.w0_c00255{width:667.425000px;}
.w1_c00255{width:667.500000px;}
.x0_c00255{left:0.000000px;}
.xc_c00255{left:62.400000px;}
.x6_c00255{left:104.550000px;}
.x7_c00255{left:107.550000px;}
.x3_c00255{left:121.050000px;}
.x12_c00255{left:126.450000px;}
.x11_c00255{left:129.150000px;}
.x10_c00255{left:130.200000px;}
.xf_c00255{left:131.550000px;}
.xe_c00255{left:132.600000px;}
.xd_c00255{left:133.650000px;}
.xb_c00255{left:134.700000px;}
.xa_c00255{left:136.350000px;}
.x8_c00255{left:137.700000px;}
.x9_c00255{left:139.350000px;}
.x5_c00255{left:141.300000px;}
.x4_c00255{left:142.650000px;}
.x2_c00255{left:145.500000px;}
.x1_c00255{left:173.700000px;}
.x13_c00255{left:285.526749px;}
@media print{
.v0_c00255{vertical-align:0.000000pt;}
.ls0_c00255{letter-spacing:0.000000pt;}
.ws2_c00255{word-spacing:-60.165333pt;}
.ws1_c00255{word-spacing:-54.384000pt;}
.ws0_c00255{word-spacing:-52.608000pt;}
.ws3_c00255{word-spacing:0.000000pt;}
._16_c00255{margin-left:-13.778667pt;}
._14_c00255{margin-left:-11.898667pt;}
._b_c00255{margin-left:-10.008000pt;}
._13_c00255{margin-left:-8.386667pt;}
._d_c00255{margin-left:-5.976000pt;}
._8_c00255{margin-left:-4.320000pt;}
._7_c00255{margin-left:-3.024000pt;}
._e_c00255{margin-left:-2.016000pt;}
._3_c00255{margin-left:-1.008000pt;}
._5_c00255{width:1.656000pt;}
._4_c00255{width:2.952000pt;}
._6_c00255{width:4.032000pt;}
._2_c00255{width:5.112000pt;}
._10_c00255{width:6.048000pt;}
._1_c00255{width:6.984000pt;}
._0_c00255{width:8.208000pt;}
._a_c00255{width:9.666667pt;}
._9_c00255{width:11.157333pt;}
._15_c00255{width:12.818667pt;}
._f_c00255{width:14.472000pt;}
._1a_c00255{width:15.413333pt;}
._12_c00255{width:17.018667pt;}
._1d_c00255{width:20.586667pt;}
._1c_c00255{width:22.824000pt;}
._1b_c00255{width:25.632000pt;}
._18_c00255{width:29.736000pt;}
._c_c00255{width:40.392000pt;}
._17_c00255{width:64.962667pt;}
._19_c00255{width:88.632000pt;}
._11_c00255{width:89.986667pt;}
._1e_c00255{width:1512.594667pt;}
.fs5_c00255{font-size:42.666667pt;}
.fs2_c00255{font-size:58.666667pt;}
.fs3_c00255{font-size:61.333333pt;}
.fs1_c00255{font-size:64.000000pt;}
.fs0_c00255{font-size:72.000000pt;}
.fs4_c00255{font-size:77.333333pt;}
.y0_c00255{bottom:0.000000pt;}
.y25_c00255{bottom:2.760000pt;}
.y24_c00255{bottom:6.425206pt;}
.y23_c00255{bottom:57.626667pt;}
.y22_c00255{bottom:79.893333pt;}
.y21_c00255{bottom:101.360000pt;}
.y20_c00255{bottom:123.360000pt;}
.y1f_c00255{bottom:145.493333pt;}
.y1e_c00255{bottom:167.093333pt;}
.y1d_c00255{bottom:189.093333pt;}
.y1c_c00255{bottom:210.960000pt;}
.y1b_c00255{bottom:232.560000pt;}
.y1a_c00255{bottom:254.160000pt;}
.y19_c00255{bottom:275.760000pt;}
.y18_c00255{bottom:298.560000pt;}
.y17_c00255{bottom:319.493333pt;}
.y16_c00255{bottom:341.093333pt;}
.y15_c00255{bottom:362.693333pt;}
.y14_c00255{bottom:383.760000pt;}
.y13_c00255{bottom:405.626667pt;}
.y12_c00255{bottom:427.226667pt;}
.y11_c00255{bottom:448.560000pt;}
.y10_c00255{bottom:469.893333pt;}
.yf_c00255{bottom:491.360000pt;}
.ye_c00255{bottom:512.693333pt;}
.yd_c00255{bottom:534.293333pt;}
.yc_c00255{bottom:555.626667pt;}
.yb_c00255{bottom:577.226667pt;}
.ya_c00255{bottom:598.826667pt;}
.y9_c00255{bottom:620.960000pt;}
.y8_c00255{bottom:641.760000pt;}
.y7_c00255{bottom:663.626667pt;}
.y6_c00255{bottom:685.226667pt;}
.y5_c00255{bottom:706.826667pt;}
.y4_c00255{bottom:727.226667pt;}
.y3_c00255{bottom:748.560000pt;}
.y2_c00255{bottom:769.893333pt;}
.y1_c00255{bottom:791.360000pt;}
.h6_c00255{height:11.733399pt;}
.h7_c00255{height:38.937500pt;}
.h4_c00255{height:64.277333pt;}
.h1_c00255{height:70.664062pt;}
.h3_c00255{height:74.278646pt;}
.h2_c00255{height:74.906250pt;}
.h5_c00255{height:81.045333pt;}
.h0_c00255{height:884.666667pt;}
.w2_c00255{width:93.222667pt;}
.w0_c00255{width:593.266667pt;}
.w1_c00255{width:593.333333pt;}
.x0_c00255{left:0.000000pt;}
.xc_c00255{left:55.466667pt;}
.x6_c00255{left:92.933333pt;}
.x7_c00255{left:95.600000pt;}
.x3_c00255{left:107.600000pt;}
.x12_c00255{left:112.400000pt;}
.x11_c00255{left:114.800000pt;}
.x10_c00255{left:115.733333pt;}
.xf_c00255{left:116.933333pt;}
.xe_c00255{left:117.866667pt;}
.xd_c00255{left:118.800000pt;}
.xb_c00255{left:119.733333pt;}
.xa_c00255{left:121.200000pt;}
.x8_c00255{left:122.400000pt;}
.x9_c00255{left:123.866667pt;}
.x5_c00255{left:125.600000pt;}
.x4_c00255{left:126.800000pt;}
.x2_c00255{left:129.333333pt;}
.x1_c00255{left:154.400000pt;}
.x13_c00255{left:253.801554pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8d0d7c4624986136df0fe857.woff2')format("woff");}.ff1_c00256{font-family:ff1_c00256;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00256;src:url('chunks/assets/font_1267ca861d6901c0a5bf2815.woff2')format("woff");}.ff2_c00256{font-family:ff2_c00256;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00256;src:url('chunks/assets/font_c93fc8f9b810202963d69cc2.woff2')format("woff");}.ff3_c00256{font-family:ff3_c00256;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00256;src:url('chunks/assets/font_22bccd457abc4563ac5b2c5e.woff2')format("woff");}.ff4_c00256{font-family:ff4_c00256;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00256;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff5_c00256{font-family:ff5_c00256;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00256;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c00256{font-family:ff6_c00256;line-height:1.219238;font-style: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;}
.ls0_c00256{letter-spacing:0.000000px;}
.sc__c00256{text-shadow:none;}
.sc0_c00256{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00256{-webkit-text-stroke:0px transparent;}
.sc0_c00256{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00256{word-spacing:-59.184000px;}
.ws1_c00256{word-spacing:0.000000px;}
._1e_c00256{margin-left:-20.412000px;}
._15_c00256{margin-left:-16.767000px;}
._17_c00256{margin-left:-15.633000px;}
._1c_c00256{margin-left:-13.326000px;}
._2_c00256{margin-left:-10.482000px;}
._6_c00256{margin-left:-9.000000px;}
._4_c00256{margin-left:-7.584000px;}
._18_c00256{margin-left:-6.048000px;}
._3_c00256{margin-left:-5.040000px;}
._b_c00256{margin-left:-3.078000px;}
._1_c00256{margin-left:-1.530000px;}
._d_c00256{width:1.413000px;}
._0_c00256{width:2.448000px;}
._8_c00256{width:3.645000px;}
._7_c00256{width:5.103000px;}
._9_c00256{width:6.318000px;}
._10_c00256{width:7.368000px;}
._a_c00256{width:8.469000px;}
._c_c00256{width:10.035000px;}
._11_c00256{width:11.373000px;}
._13_c00256{width:12.417000px;}
._f_c00256{width:14.094000px;}
._19_c00256{width:15.534000px;}
._e_c00256{width:27.342000px;}
._1f_c00256{width:33.777000px;}
._14_c00256{width:41.661000px;}
._1d_c00256{width:55.890000px;}
._5_c00256{width:102.000000px;}
._1a_c00256{width:122.229000px;}
._1b_c00256{width:157.311000px;}
._16_c00256{width:231.417000px;}
._12_c00256{width:299.592000px;}
._21_c00256{width:310.734000px;}
._20_c00256{width:1158.351000px;}
.fc2_c00256{color:transparent;}
.fc1_c00256{color:rgb(128,128,128);}
.fc0_c00256{color:rgb(0,0,0);}
.fs4_c00256{font-size:48.000000px;}
.fs3_c00256{font-size:72.000000px;}
.fs2_c00256{font-size:81.000000px;}
.fs0_c00256{font-size:102.000000px;}
.fs1_c00256{font-size:120.000000px;}
.y0_c00256{bottom:0.000000px;}
.y25_c00256{bottom:3.105000px;}
.y24_c00256{bottom:7.228371px;}
.y23_c00256{bottom:65.115000px;}
.y22_c00256{bottom:88.815000px;}
.y21_c00256{bottom:113.415000px;}
.y20_c00256{bottom:139.815000px;}
.y1f_c00256{bottom:164.115000px;}
.y1e_c00256{bottom:214.365000px;}
.y1d_c00256{bottom:238.965000px;}
.y1c_c00256{bottom:262.665000px;}
.y1b_c00256{bottom:287.865000px;}
.y1a_c00256{bottom:311.865000px;}
.y19_c00256{bottom:337.515000px;}
.y18_c00256{bottom:360.765000px;}
.y17_c00256{bottom:386.115000px;}
.y16_c00256{bottom:410.715000px;}
.y15_c00256{bottom:435.015000px;}
.y14_c00256{bottom:459.765000px;}
.y13_c00256{bottom:484.065000px;}
.y12_c00256{bottom:508.665000px;}
.y11_c00256{bottom:533.565000px;}
.y10_c00256{bottom:557.565000px;}
.yf_c00256{bottom:581.565000px;}
.ye_c00256{bottom:606.465000px;}
.yd_c00256{bottom:630.915000px;}
.yc_c00256{bottom:654.765000px;}
.yb_c00256{bottom:679.065000px;}
.ya_c00256{bottom:703.665000px;}
.y9_c00256{bottom:727.365000px;}
.y8_c00256{bottom:753.015000px;}
.y7_c00256{bottom:777.015000px;}
.y6_c00256{bottom:801.615000px;}
.y5_c00256{bottom:825.315000px;}
.y4_c00256{bottom:850.815000px;}
.y3_c00256{bottom:875.115000px;}
.y2_c00256{bottom:899.115000px;}
.y1_c00256{bottom:934.215000px;}
.h6_c00256{height:13.200074px;}
.h7_c00256{height:43.804688px;}
.h3_c00256{height:79.497070px;}
.h5_c00256{height:84.269531px;}
.h4_c00256{height:91.160156px;}
.h2_c00256{height:120.937500px;}
.h0_c00256{height:989.025000px;}
.h1_c00256{height:989.250000px;}
.w1_c00256{width:104.875500px;}
.w0_c00256{width:672.000000px;}
.x0_c00256{left:0.000000px;}
.x2_c00256{left:46.800000px;}
.x3_c00256{left:47.850000px;}
.x4_c00256{left:48.900000px;}
.x5_c00256{left:50.550000px;}
.x6_c00256{left:51.600000px;}
.x8_c00256{left:53.250000px;}
.x1_c00256{left:118.800000px;}
.x9_c00256{left:287.814240px;}
.x7_c00256{left:482.550000px;}
@media print{
.v0_c00256{vertical-align:0.000000pt;}
.ls0_c00256{letter-spacing:0.000000pt;}
.ws0_c00256{word-spacing:-52.608000pt;}
.ws1_c00256{word-spacing:0.000000pt;}
._1e_c00256{margin-left:-18.144000pt;}
._15_c00256{margin-left:-14.904000pt;}
._17_c00256{margin-left:-13.896000pt;}
._1c_c00256{margin-left:-11.845333pt;}
._2_c00256{margin-left:-9.317333pt;}
._6_c00256{margin-left:-8.000000pt;}
._4_c00256{margin-left:-6.741333pt;}
._18_c00256{margin-left:-5.376000pt;}
._3_c00256{margin-left:-4.480000pt;}
._b_c00256{margin-left:-2.736000pt;}
._1_c00256{margin-left:-1.360000pt;}
._d_c00256{width:1.256000pt;}
._0_c00256{width:2.176000pt;}
._8_c00256{width:3.240000pt;}
._7_c00256{width:4.536000pt;}
._9_c00256{width:5.616000pt;}
._10_c00256{width:6.549333pt;}
._a_c00256{width:7.528000pt;}
._c_c00256{width:8.920000pt;}
._11_c00256{width:10.109333pt;}
._13_c00256{width:11.037333pt;}
._f_c00256{width:12.528000pt;}
._19_c00256{width:13.808000pt;}
._e_c00256{width:24.304000pt;}
._1f_c00256{width:30.024000pt;}
._14_c00256{width:37.032000pt;}
._1d_c00256{width:49.680000pt;}
._5_c00256{width:90.666667pt;}
._1a_c00256{width:108.648000pt;}
._1b_c00256{width:139.832000pt;}
._16_c00256{width:205.704000pt;}
._12_c00256{width:266.304000pt;}
._21_c00256{width:276.208000pt;}
._20_c00256{width:1029.645333pt;}
.fs4_c00256{font-size:42.666667pt;}
.fs3_c00256{font-size:64.000000pt;}
.fs2_c00256{font-size:72.000000pt;}
.fs0_c00256{font-size:90.666667pt;}
.fs1_c00256{font-size:106.666667pt;}
.y0_c00256{bottom:0.000000pt;}
.y25_c00256{bottom:2.760000pt;}
.y24_c00256{bottom:6.425219pt;}
.y23_c00256{bottom:57.880000pt;}
.y22_c00256{bottom:78.946667pt;}
.y21_c00256{bottom:100.813333pt;}
.y20_c00256{bottom:124.280000pt;}
.y1f_c00256{bottom:145.880000pt;}
.y1e_c00256{bottom:190.546667pt;}
.y1d_c00256{bottom:212.413333pt;}
.y1c_c00256{bottom:233.480000pt;}
.y1b_c00256{bottom:255.880000pt;}
.y1a_c00256{bottom:277.213333pt;}
.y19_c00256{bottom:300.013333pt;}
.y18_c00256{bottom:320.680000pt;}
.y17_c00256{bottom:343.213333pt;}
.y16_c00256{bottom:365.080000pt;}
.y15_c00256{bottom:386.680000pt;}
.y14_c00256{bottom:408.680000pt;}
.y13_c00256{bottom:430.280000pt;}
.y12_c00256{bottom:452.146667pt;}
.y11_c00256{bottom:474.280000pt;}
.y10_c00256{bottom:495.613333pt;}
.yf_c00256{bottom:516.946667pt;}
.ye_c00256{bottom:539.080000pt;}
.yd_c00256{bottom:560.813333pt;}
.yc_c00256{bottom:582.013333pt;}
.yb_c00256{bottom:603.613333pt;}
.ya_c00256{bottom:625.480000pt;}
.y9_c00256{bottom:646.546667pt;}
.y8_c00256{bottom:669.346667pt;}
.y7_c00256{bottom:690.680000pt;}
.y6_c00256{bottom:712.546667pt;}
.y5_c00256{bottom:733.613333pt;}
.y4_c00256{bottom:756.280000pt;}
.y3_c00256{bottom:777.880000pt;}
.y2_c00256{bottom:799.213333pt;}
.y1_c00256{bottom:830.413333pt;}
.h6_c00256{height:11.733399pt;}
.h7_c00256{height:38.937500pt;}
.h3_c00256{height:70.664062pt;}
.h5_c00256{height:74.906250pt;}
.h4_c00256{height:81.031250pt;}
.h2_c00256{height:107.500000pt;}
.h0_c00256{height:879.133333pt;}
.h1_c00256{height:879.333333pt;}
.w1_c00256{width:93.222667pt;}
.w0_c00256{width:597.333333pt;}
.x0_c00256{left:0.000000pt;}
.x2_c00256{left:41.600000pt;}
.x3_c00256{left:42.533333pt;}
.x4_c00256{left:43.466667pt;}
.x5_c00256{left:44.933333pt;}
.x6_c00256{left:45.866667pt;}
.x8_c00256{left:47.333333pt;}
.x1_c00256{left:105.600000pt;}
.x9_c00256{left:255.834880pt;}
.x7_c00256{left:428.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_b70f98bdbc27b680864b4772.woff2')format("woff");}.ff1_c00257{font-family:ff1_c00257;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00257;src:url('chunks/assets/font_7734944e237d9e34224699d5.woff2')format("woff");}.ff2_c00257{font-family:ff2_c00257;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00257;src:url('chunks/assets/font_7e009be8f0aa95b606410e15.woff2')format("woff");}.ff3_c00257{font-family:ff3_c00257;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00257;src:url('chunks/assets/font_3a945faf466683a49925f673.woff2')format("woff");}.ff4_c00257{font-family:ff4_c00257;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00257;src:url('chunks/assets/font_7c0bc8e7457b11156cdc6cf8.woff2')format("woff");}.ff5_c00257{font-family:ff5_c00257;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00257;src:url('chunks/assets/font_8e2adbf2fccf35a78be7c7e1.woff2')format("woff");}.ff6_c00257{font-family:ff6_c00257;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00257;src:url('chunks/assets/font_d468a298ee0a0b7838761c38.woff2')format("woff");}.ff7_c00257{font-family:ff7_c00257;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00257;src:url('chunks/assets/font_bbbcf3bd2212d5c394814d81.woff2')format("woff");}.ff8_c00257{font-family:ff8_c00257;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00257;src:url('chunks/assets/font_cc84db601a2e3e95359b606a.woff2')format("woff");}.ff9_c00257{font-family:ff9_c00257;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00257;src:url('chunks/assets/font_974ab91e9923d58a218cf193.woff2')format("woff");}.ffa_c00257{font-family:ffa_c00257;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c00257;src:url('chunks/assets/font_26f202e846461d45f3a7dfd1.woff2')format("woff");}.ffb_c00257{font-family:ffb_c00257;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc_c00257;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ffc_c00257{font-family:ffc_c00257;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00257{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m0_c00257{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2_c00257{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00257{vertical-align:0.000000px;}
.ls9_c00257{letter-spacing:-15.000000px;}
.ls5_c00257{letter-spacing:-3.000000px;}
.ls4_c00257{letter-spacing:0.000000px;}
.ls0_c00257{letter-spacing:0.960000px;}
.ls3_c00257{letter-spacing:2.016000px;}
.ls7_c00257{letter-spacing:3.000000px;}
.ls8_c00257{letter-spacing:6.000000px;}
.ls6_c00257{letter-spacing:9.000000px;}
.ls2_c00257{letter-spacing:17.100000px;}
.ls1_c00257{letter-spacing:40.725000px;}
.lsa_c00257{letter-spacing:111.000000px;}
.sc__c00257{text-shadow:none;}
.sc0_c00257{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00257{-webkit-text-stroke:0px transparent;}
.sc0_c00257{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00257{word-spacing:-62.868000px;}
.ws2_c00257{word-spacing:-39.696000px;}
.ws1_c00257{word-spacing:-25.698000px;}
.ws5_c00257{word-spacing:-18.000000px;}
.ws0_c00257{word-spacing:-17.352000px;}
.ws4_c00257{word-spacing:-16.500000px;}
.ws6_c00257{word-spacing:-0.084000px;}
.ws7_c00257{word-spacing:0.000000px;}
._38_c00257{margin-left:-140.697000px;}
._3a_c00257{margin-left:-128.061000px;}
._37_c00257{margin-left:-121.500000px;}
._3d_c00257{margin-left:-116.640000px;}
._2c_c00257{margin-left:-108.702000px;}
._3f_c00257{margin-left:-107.082000px;}
._40_c00257{margin-left:-101.412000px;}
._3b_c00257{margin-left:-97.929000px;}
._3c_c00257{margin-left:-96.552000px;}
._39_c00257{margin-left:-71.847000px;}
._26_c00257{margin-left:-30.591000px;}
._25_c00257{margin-left:-29.376000px;}
._1d_c00257{margin-left:-23.895000px;}
._10_c00257{margin-left:-22.761000px;}
._34_c00257{margin-left:-19.275000px;}
._1a_c00257{margin-left:-16.002000px;}
._5_c00257{margin-left:-14.742000px;}
._20_c00257{margin-left:-12.879000px;}
._1_c00257{margin-left:-10.728000px;}
._2f_c00257{margin-left:-9.498000px;}
._0_c00257{margin-left:-8.208000px;}
._2_c00257{margin-left:-6.624000px;}
._16_c00257{margin-left:-5.490000px;}
._13_c00257{margin-left:-4.473000px;}
._3_c00257{margin-left:-3.384000px;}
._c_c00257{margin-left:-1.782000px;}
._f_c00257{width:1.116000px;}
._a_c00257{width:2.187000px;}
._d_c00257{width:3.807000px;}
._6_c00257{width:5.346000px;}
._9_c00257{width:6.561000px;}
._8_c00257{width:7.857000px;}
._7_c00257{width:9.639000px;}
._b_c00257{width:11.259000px;}
._e_c00257{width:13.041000px;}
._11_c00257{width:14.418000px;}
._12_c00257{width:15.597000px;}
._4_c00257{width:17.085000px;}
._1b_c00257{width:18.492000px;}
._2d_c00257{width:22.008000px;}
._15_c00257{width:24.699000px;}
._18_c00257{width:26.127000px;}
._17_c00257{width:27.837000px;}
._14_c00257{width:29.889000px;}
._19_c00257{width:35.664000px;}
._28_c00257{width:37.161000px;}
._2b_c00257{width:39.285000px;}
._2a_c00257{width:40.833000px;}
._29_c00257{width:50.625000px;}
._31_c00257{width:59.832000px;}
._30_c00257{width:67.449000px;}
._2e_c00257{width:76.794000px;}
._32_c00257{width:135.129000px;}
._1f_c00257{width:228.168000px;}
._24_c00257{width:250.062000px;}
._35_c00257{width:251.631000px;}
._1e_c00257{width:274.617000px;}
._21_c00257{width:331.938000px;}
._33_c00257{width:345.684000px;}
._1c_c00257{width:660.879000px;}
._27_c00257{width:663.918000px;}
._22_c00257{width:712.746000px;}
._36_c00257{width:957.618000px;}
._23_c00257{width:975.726000px;}
._3e_c00257{width:1512.108000px;}
.fc2_c00257{color:transparent;}
.fc1_c00257{color:rgb(128,128,128);}
.fc0_c00257{color:rgb(0,0,0);}
.fs7_c00257{font-size:48.000000px;}
.fs4_c00257{font-size:66.000000px;}
.fs0_c00257{font-size:72.000000px;}
.fs3_c00257{font-size:75.000000px;}
.fs1_c00257{font-size:81.000000px;}
.fs5_c00257{font-size:84.000000px;}
.fs6_c00257{font-size:102.000000px;}
.fs2_c00257{font-size:108.000000px;}
.y0_c00257{bottom:0.000000px;}
.y25_c00257{bottom:3.105000px;}
.y24_c00257{bottom:7.228357px;}
.y23_c00257{bottom:63.480000px;}
.y22_c00257{bottom:89.430000px;}
.y21_c00257{bottom:117.180000px;}
.y20_c00257{bottom:147.930000px;}
.y1f_c00257{bottom:177.630000px;}
.y1e_c00257{bottom:215.430000px;}
.y1d_c00257{bottom:230.280000px;}
.y1c_c00257{bottom:259.230000px;}
.y1b_c00257{bottom:284.280000px;}
.y1a_c00257{bottom:305.130000px;}
.y19_c00257{bottom:331.830000px;}
.y18_c00257{bottom:360.180000px;}
.y17_c00257{bottom:382.080000px;}
.y16_c00257{bottom:407.430000px;}
.y15_c00257{bottom:426.030000px;}
.y12_c00257{bottom:505.680000px;}
.y11_c00257{bottom:529.830000px;}
.y10_c00257{bottom:556.230000px;}
.yf_c00257{bottom:578.580000px;}
.ye_c00257{bottom:602.730000px;}
.y14_c00257{bottom:621.630000px;}
.yd_c00257{bottom:627.480000px;}
.y13_c00257{bottom:643.980000px;}
.yc_c00257{bottom:654.480000px;}
.yb_c00257{bottom:676.380000px;}
.ya_c00257{bottom:701.430000px;}
.y9_c00257{bottom:727.080000px;}
.y1_c00257{bottom:751.230000px;}
.y8_c00257{bottom:751.680000px;}
.y7_c00257{bottom:774.630000px;}
.y6_c00257{bottom:798.930000px;}
.y5_c00257{bottom:823.530000px;}
.y4_c00257{bottom:848.430000px;}
.y3_c00257{bottom:872.430000px;}
.y2_c00257{bottom:897.480000px;}
.ha_c00257{height:13.200074px;}
.hb_c00257{height:43.804688px;}
.h5_c00257{height:72.562500px;}
.h2_c00257{height:79.497070px;}
.h1_c00257{height:84.269531px;}
.h8_c00257{height:88.032000px;}
.h9_c00257{height:91.056000px;}
.h4_c00257{height:94.958496px;}
.h7_c00257{height:104.839927px;}
.h6_c00257{height:106.353516px;}
.h3_c00257{height:108.843750px;}
.h0_c00257{height:995.250000px;}
.w2_c00257{width:104.875500px;}
.w0_c00257{width:667.425000px;}
.w1_c00257{width:667.500000px;}
.x0_c00257{left:0.000000px;}
.x1_c00257{left:17.250000px;}
.x8_c00257{left:19.800000px;}
.xd_c00257{left:110.400000px;}
.xb_c00257{left:114.300000px;}
.x7_c00257{left:115.350000px;}
.x6_c00257{left:116.400000px;}
.x5_c00257{left:117.450000px;}
.x2_c00257{left:118.500000px;}
.x9_c00257{left:141.000000px;}
.xa_c00257{left:228.750000px;}
.xc_c00257{left:251.400000px;}
.xe_c00257{left:285.526749px;}
.x3_c00257{left:362.100000px;}
.x4_c00257{left:382.050000px;}
@media print{
.v0_c00257{vertical-align:0.000000pt;}
.ls9_c00257{letter-spacing:-13.333333pt;}
.ls5_c00257{letter-spacing:-2.666667pt;}
.ls4_c00257{letter-spacing:0.000000pt;}
.ls0_c00257{letter-spacing:0.853333pt;}
.ls3_c00257{letter-spacing:1.792000pt;}
.ls7_c00257{letter-spacing:2.666667pt;}
.ls8_c00257{letter-spacing:5.333333pt;}
.ls6_c00257{letter-spacing:8.000000pt;}
.ls2_c00257{letter-spacing:15.200000pt;}
.ls1_c00257{letter-spacing:36.200000pt;}
.lsa_c00257{letter-spacing:98.666667pt;}
.ws3_c00257{word-spacing:-55.882667pt;}
.ws2_c00257{word-spacing:-35.285333pt;}
.ws1_c00257{word-spacing:-22.842667pt;}
.ws5_c00257{word-spacing:-16.000000pt;}
.ws0_c00257{word-spacing:-15.424000pt;}
.ws4_c00257{word-spacing:-14.666667pt;}
.ws6_c00257{word-spacing:-0.074667pt;}
.ws7_c00257{word-spacing:0.000000pt;}
._38_c00257{margin-left:-125.064000pt;}
._3a_c00257{margin-left:-113.832000pt;}
._37_c00257{margin-left:-108.000000pt;}
._3d_c00257{margin-left:-103.680000pt;}
._2c_c00257{margin-left:-96.624000pt;}
._3f_c00257{margin-left:-95.184000pt;}
._40_c00257{margin-left:-90.144000pt;}
._3b_c00257{margin-left:-87.048000pt;}
._3c_c00257{margin-left:-85.824000pt;}
._39_c00257{margin-left:-63.864000pt;}
._26_c00257{margin-left:-27.192000pt;}
._25_c00257{margin-left:-26.112000pt;}
._1d_c00257{margin-left:-21.240000pt;}
._10_c00257{margin-left:-20.232000pt;}
._34_c00257{margin-left:-17.133333pt;}
._1a_c00257{margin-left:-14.224000pt;}
._5_c00257{margin-left:-13.104000pt;}
._20_c00257{margin-left:-11.448000pt;}
._1_c00257{margin-left:-9.536000pt;}
._2f_c00257{margin-left:-8.442667pt;}
._0_c00257{margin-left:-7.296000pt;}
._2_c00257{margin-left:-5.888000pt;}
._16_c00257{margin-left:-4.880000pt;}
._13_c00257{margin-left:-3.976000pt;}
._3_c00257{margin-left:-3.008000pt;}
._c_c00257{margin-left:-1.584000pt;}
._f_c00257{width:0.992000pt;}
._a_c00257{width:1.944000pt;}
._d_c00257{width:3.384000pt;}
._6_c00257{width:4.752000pt;}
._9_c00257{width:5.832000pt;}
._8_c00257{width:6.984000pt;}
._7_c00257{width:8.568000pt;}
._b_c00257{width:10.008000pt;}
._e_c00257{width:11.592000pt;}
._11_c00257{width:12.816000pt;}
._12_c00257{width:13.864000pt;}
._4_c00257{width:15.186667pt;}
._1b_c00257{width:16.437333pt;}
._2d_c00257{width:19.562667pt;}
._15_c00257{width:21.954667pt;}
._18_c00257{width:23.224000pt;}
._17_c00257{width:24.744000pt;}
._14_c00257{width:26.568000pt;}
._19_c00257{width:31.701333pt;}
._28_c00257{width:33.032000pt;}
._2b_c00257{width:34.920000pt;}
._2a_c00257{width:36.296000pt;}
._29_c00257{width:45.000000pt;}
._31_c00257{width:53.184000pt;}
._30_c00257{width:59.954667pt;}
._2e_c00257{width:68.261333pt;}
._32_c00257{width:120.114667pt;}
._1f_c00257{width:202.816000pt;}
._24_c00257{width:222.277333pt;}
._35_c00257{width:223.672000pt;}
._1e_c00257{width:244.104000pt;}
._21_c00257{width:295.056000pt;}
._33_c00257{width:307.274667pt;}
._1c_c00257{width:587.448000pt;}
._27_c00257{width:590.149333pt;}
._22_c00257{width:633.552000pt;}
._36_c00257{width:851.216000pt;}
._23_c00257{width:867.312000pt;}
._3e_c00257{width:1344.096000pt;}
.fs7_c00257{font-size:42.666667pt;}
.fs4_c00257{font-size:58.666667pt;}
.fs0_c00257{font-size:64.000000pt;}
.fs3_c00257{font-size:66.666667pt;}
.fs1_c00257{font-size:72.000000pt;}
.fs5_c00257{font-size:74.666667pt;}
.fs6_c00257{font-size:90.666667pt;}
.fs2_c00257{font-size:96.000000pt;}
.y0_c00257{bottom:0.000000pt;}
.y25_c00257{bottom:2.760000pt;}
.y24_c00257{bottom:6.425206pt;}
.y23_c00257{bottom:56.426667pt;}
.y22_c00257{bottom:79.493333pt;}
.y21_c00257{bottom:104.160000pt;}
.y20_c00257{bottom:131.493333pt;}
.y1f_c00257{bottom:157.893333pt;}
.y1e_c00257{bottom:191.493333pt;}
.y1d_c00257{bottom:204.693333pt;}
.y1c_c00257{bottom:230.426667pt;}
.y1b_c00257{bottom:252.693333pt;}
.y1a_c00257{bottom:271.226667pt;}
.y19_c00257{bottom:294.960000pt;}
.y18_c00257{bottom:320.160000pt;}
.y17_c00257{bottom:339.626667pt;}
.y16_c00257{bottom:362.160000pt;}
.y15_c00257{bottom:378.693333pt;}
.y12_c00257{bottom:449.493333pt;}
.y11_c00257{bottom:470.960000pt;}
.y10_c00257{bottom:494.426667pt;}
.yf_c00257{bottom:514.293333pt;}
.ye_c00257{bottom:535.760000pt;}
.y14_c00257{bottom:552.560000pt;}
.yd_c00257{bottom:557.760000pt;}
.y13_c00257{bottom:572.426667pt;}
.yc_c00257{bottom:581.760000pt;}
.yb_c00257{bottom:601.226667pt;}
.ya_c00257{bottom:623.493333pt;}
.y9_c00257{bottom:646.293333pt;}
.y1_c00257{bottom:667.760000pt;}
.y8_c00257{bottom:668.160000pt;}
.y7_c00257{bottom:688.560000pt;}
.y6_c00257{bottom:710.160000pt;}
.y5_c00257{bottom:732.026667pt;}
.y4_c00257{bottom:754.160000pt;}
.y3_c00257{bottom:775.493333pt;}
.y2_c00257{bottom:797.760000pt;}
.ha_c00257{height:11.733399pt;}
.hb_c00257{height:38.937500pt;}
.h5_c00257{height:64.500000pt;}
.h2_c00257{height:70.664062pt;}
.h1_c00257{height:74.906250pt;}
.h8_c00257{height:78.250667pt;}
.h9_c00257{height:80.938667pt;}
.h4_c00257{height:84.407552pt;}
.h7_c00257{height:93.191046pt;}
.h6_c00257{height:94.536458pt;}
.h3_c00257{height:96.750000pt;}
.h0_c00257{height:884.666667pt;}
.w2_c00257{width:93.222667pt;}
.w0_c00257{width:593.266667pt;}
.w1_c00257{width:593.333333pt;}
.x0_c00257{left:0.000000pt;}
.x1_c00257{left:15.333333pt;}
.x8_c00257{left:17.600000pt;}
.xd_c00257{left:98.133333pt;}
.xb_c00257{left:101.600000pt;}
.x7_c00257{left:102.533333pt;}
.x6_c00257{left:103.466667pt;}
.x5_c00257{left:104.400000pt;}
.x2_c00257{left:105.333333pt;}
.x9_c00257{left:125.333333pt;}
.xa_c00257{left:203.333333pt;}
.xc_c00257{left:223.466667pt;}
.xe_c00257{left:253.801554pt;}
.x3_c00257{left:321.866667pt;}
.x4_c00257{left:339.600000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_3e43ec7a6448493c81fe8840.woff2')format("woff");}.ff1_c00258{font-family:ff1_c00258;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00258;src:url('chunks/assets/font_d062b5081347deddf9d8f933.woff2')format("woff");}.ff2_c00258{font-family:ff2_c00258;line-height:1.311035;font-style:normal;font-weight:normal;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_446e43855aa80f5bfec90809.woff2')format("woff");}.ff3_c00258{font-family:ff3_c00258;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00258;src:url('chunks/assets/font_cf9aaa62ced4476ac699a199.woff2')format("woff");}.ff4_c00258{font-family:ff4_c00258;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00258;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff5_c00258{font-family:ff5_c00258;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00258;src:url('chunks/assets/font_7e2560964a1196a7e8f3fc59.woff2')format("woff");}.ff6_c00258{font-family:ff6_c00258;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00258;src:url('chunks/assets/font_6ac865c468119a12a24aef53.woff2')format("woff");}.ff7_c00258{font-family:ff7_c00258;line-height:1.437000;font-style:normal;font-weight: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_c00258;src:url('chunks/assets/font_d556b47efa0dfda0f1f1eaf8.woff2')format("woff");}.ff8_c00258{font-family:ff8_c00258;line-height:1.437000;font-style:normal;font-weight: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_c00258;src:url('chunks/assets/font_87bc45147595e3752c5b8f73.woff2')format("woff");}.ff9_c00258{font-family:ff9_c00258;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00258;src:url('chunks/assets/font_9cfea1455e5cde6ea5dd9c2c.woff2')format("woff");}.ffa_c00258{font-family:ffa_c00258;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c00258;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ffb_c00258{font-family:ffb_c00258;line-height:1.219238;font-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_c00258{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,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;}
.ls6_c00258{letter-spacing:-18.000000px;}
.ls4_c00258{letter-spacing:0.000000px;}
.ls2_c00258{letter-spacing:3.150000px;}
.ls0_c00258{letter-spacing:4.398000px;}
.ls1_c00258{letter-spacing:4.998000px;}
.ls5_c00258{letter-spacing:9.000000px;}
.ls3_c00258{letter-spacing:15.000000px;}
.sc__c00258{text-shadow:none;}
.sc0_c00258{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00258{-webkit-text-stroke:0px transparent;}
.sc0_c00258{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00258{word-spacing:-40.500000px;}
.ws2_c00258{word-spacing:-20.250000px;}
.ws1_c00258{word-spacing:-17.352000px;}
.ws3_c00258{word-spacing:-15.183000px;}
.ws6_c00258{word-spacing:0.000000px;}
.ws4_c00258{word-spacing:2.571000px;}
.ws5_c00258{word-spacing:21.324000px;}
._18_c00258{margin-left:-35.496000px;}
._22_c00258{margin-left:-24.696000px;}
._2a_c00258{margin-left:-23.085000px;}
._1d_c00258{margin-left:-19.008000px;}
._1c_c00258{margin-left:-15.891000px;}
._4_c00258{margin-left:-13.092000px;}
._0_c00258{margin-left:-11.628000px;}
._1_c00258{margin-left:-9.588000px;}
._1a_c00258{margin-left:-8.439000px;}
._2_c00258{margin-left:-7.242000px;}
._3_c00258{margin-left:-6.042000px;}
._e_c00258{margin-left:-4.587000px;}
._b_c00258{margin-left:-3.372000px;}
._a_c00258{margin-left:-2.229000px;}
._15_c00258{margin-left:-1.215000px;}
._12_c00258{width:1.137000px;}
._5_c00258{width:2.184000px;}
._6_c00258{width:3.486000px;}
._7_c00258{width:5.388000px;}
._d_c00258{width:6.570000px;}
._c_c00258{width:7.953000px;}
._f_c00258{width:9.900000px;}
._9_c00258{width:11.097000px;}
._11_c00258{width:12.636000px;}
._13_c00258{width:13.794000px;}
._10_c00258{width:14.901000px;}
._24_c00258{width:18.552000px;}
._1e_c00258{width:19.845000px;}
._29_c00258{width:28.080000px;}
._2d_c00258{width:31.536000px;}
._17_c00258{width:35.256000px;}
._1b_c00258{width:36.906000px;}
._20_c00258{width:39.663000px;}
._16_c00258{width:41.940000px;}
._21_c00258{width:44.949000px;}
._28_c00258{width:52.617000px;}
._26_c00258{width:56.295000px;}
._19_c00258{width:59.859000px;}
._27_c00258{width:75.558000px;}
._8_c00258{width:111.876000px;}
._1f_c00258{width:117.732000px;}
._23_c00258{width:195.438000px;}
._25_c00258{width:198.498000px;}
._14_c00258{width:250.758000px;}
._2b_c00258{width:355.104000px;}
._2e_c00258{width:410.265000px;}
._2c_c00258{width:1115.010000px;}
.fc2_c00258{color:transparent;}
.fc1_c00258{color:rgb(128,128,128);}
.fc0_c00258{color:rgb(0,0,0);}
.fs8_c00258{font-size:48.000000px;}
.fs4_c00258{font-size:63.000000px;}
.fs5_c00258{font-size:69.000000px;}
.fs3_c00258{font-size:72.000000px;}
.fs6_c00258{font-size:78.000000px;}
.fs2_c00258{font-size:81.000000px;}
.fs0_c00258{font-size:102.000000px;}
.fs7_c00258{font-size:108.000000px;}
.fs1_c00258{font-size:120.000000px;}
.y0_c00258{bottom:0.000000px;}
.y26_c00258{bottom:3.105000px;}
.y25_c00258{bottom:7.228371px;}
.y24_c00258{bottom:54.315000px;}
.y23_c00258{bottom:82.815000px;}
.y22_c00258{bottom:108.315000px;}
.y21_c00258{bottom:133.065000px;}
.y20_c00258{bottom:159.015000px;}
.y1f_c00258{bottom:182.265000px;}
.y1e_c00258{bottom:207.615000px;}
.y1d_c00258{bottom:232.515000px;}
.y1c_c00258{bottom:256.965000px;}
.y1b_c00258{bottom:281.565000px;}
.y1a_c00258{bottom:305.865000px;}
.y19_c00258{bottom:329.865000px;}
.y18_c00258{bottom:354.465000px;}
.y17_c00258{bottom:379.065000px;}
.y16_c00258{bottom:403.665000px;}
.y15_c00258{bottom:427.665000px;}
.y14_c00258{bottom:451.965000px;}
.y13_c00258{bottom:475.965000px;}
.y12_c00258{bottom:500.865000px;}
.y11_c00258{bottom:525.165000px;}
.y10_c00258{bottom:549.465000px;}
.yf_c00258{bottom:573.765000px;}
.ye_c00258{bottom:597.765000px;}
.yd_c00258{bottom:622.365000px;}
.yc_c00258{bottom:646.065000px;}
.yb_c00258{bottom:671.415000px;}
.ya_c00258{bottom:695.565000px;}
.y9_c00258{bottom:719.265000px;}
.y8_c00258{bottom:744.165000px;}
.y7_c00258{bottom:769.815000px;}
.y6_c00258{bottom:792.915000px;}
.y5_c00258{bottom:818.415000px;}
.y4_c00258{bottom:843.165000px;}
.y3_c00258{bottom:867.465000px;}
.y2_c00258{bottom:891.765000px;}
.y1_c00258{bottom:924.765000px;}
.ha_c00258{height:13.200074px;}
.hb_c00258{height:43.804688px;}
.h7_c00258{height:72.312000px;}
.h3_c00258{height:79.497070px;}
.h5_c00258{height:79.765137px;}
.h8_c00258{height:83.226000px;}
.h4_c00258{height:84.269531px;}
.h6_c00258{height:91.160156px;}
.h9_c00258{height:108.843750px;}
.h2_c00258{height:120.937500px;}
.h0_c00258{height:989.025000px;}
.h1_c00258{height:989.250000px;}
.w1_c00258{width:104.875500px;}
.w0_c00258{width:672.000000px;}
.x0_c00258{left:0.000000px;}
.x6_c00258{left:42.600000px;}
.xc_c00258{left:43.950000px;}
.xa_c00258{left:46.350000px;}
.xf_c00258{left:52.650000px;}
.xe_c00258{left:55.800000px;}
.x9_c00258{left:57.150000px;}
.x7_c00258{left:58.800000px;}
.x8_c00258{left:60.450000px;}
.x5_c00258{left:61.500000px;}
.xd_c00258{left:63.150000px;}
.x4_c00258{left:64.500000px;}
.xb_c00258{left:93.600000px;}
.x1_c00258{left:124.500000px;}
.x3_c00258{left:200.100000px;}
.x2_c00258{left:201.900000px;}
.x10_c00258{left:287.814240px;}
@media print{
.v0_c00258{vertical-align:0.000000pt;}
.ls6_c00258{letter-spacing:-16.000000pt;}
.ls4_c00258{letter-spacing:0.000000pt;}
.ls2_c00258{letter-spacing:2.800000pt;}
.ls0_c00258{letter-spacing:3.909333pt;}
.ls1_c00258{letter-spacing:4.442667pt;}
.ls5_c00258{letter-spacing:8.000000pt;}
.ls3_c00258{letter-spacing:13.333333pt;}
.ws0_c00258{word-spacing:-36.000000pt;}
.ws2_c00258{word-spacing:-18.000000pt;}
.ws1_c00258{word-spacing:-15.424000pt;}
.ws3_c00258{word-spacing:-13.496000pt;}
.ws6_c00258{word-spacing:0.000000pt;}
.ws4_c00258{word-spacing:2.285333pt;}
.ws5_c00258{word-spacing:18.954667pt;}
._18_c00258{margin-left:-31.552000pt;}
._22_c00258{margin-left:-21.952000pt;}
._2a_c00258{margin-left:-20.520000pt;}
._1d_c00258{margin-left:-16.896000pt;}
._1c_c00258{margin-left:-14.125333pt;}
._4_c00258{margin-left:-11.637333pt;}
._0_c00258{margin-left:-10.336000pt;}
._1_c00258{margin-left:-8.522667pt;}
._1a_c00258{margin-left:-7.501333pt;}
._2_c00258{margin-left:-6.437333pt;}
._3_c00258{margin-left:-5.370667pt;}
._e_c00258{margin-left:-4.077333pt;}
._b_c00258{margin-left:-2.997333pt;}
._a_c00258{margin-left:-1.981333pt;}
._15_c00258{margin-left:-1.080000pt;}
._12_c00258{width:1.010667pt;}
._5_c00258{width:1.941333pt;}
._6_c00258{width:3.098667pt;}
._7_c00258{width:4.789333pt;}
._d_c00258{width:5.840000pt;}
._c_c00258{width:7.069333pt;}
._f_c00258{width:8.800000pt;}
._9_c00258{width:9.864000pt;}
._11_c00258{width:11.232000pt;}
._13_c00258{width:12.261333pt;}
._10_c00258{width:13.245333pt;}
._24_c00258{width:16.490667pt;}
._1e_c00258{width:17.640000pt;}
._29_c00258{width:24.960000pt;}
._2d_c00258{width:28.032000pt;}
._17_c00258{width:31.338667pt;}
._1b_c00258{width:32.805333pt;}
._20_c00258{width:35.256000pt;}
._16_c00258{width:37.280000pt;}
._21_c00258{width:39.954667pt;}
._28_c00258{width:46.770667pt;}
._26_c00258{width:50.040000pt;}
._19_c00258{width:53.208000pt;}
._27_c00258{width:67.162667pt;}
._8_c00258{width:99.445333pt;}
._1f_c00258{width:104.650667pt;}
._23_c00258{width:173.722667pt;}
._25_c00258{width:176.442667pt;}
._14_c00258{width:222.896000pt;}
._2b_c00258{width:315.648000pt;}
._2e_c00258{width:364.680000pt;}
._2c_c00258{width:991.120000pt;}
.fs8_c00258{font-size:42.666667pt;}
.fs4_c00258{font-size:56.000000pt;}
.fs5_c00258{font-size:61.333333pt;}
.fs3_c00258{font-size:64.000000pt;}
.fs6_c00258{font-size:69.333333pt;}
.fs2_c00258{font-size:72.000000pt;}
.fs0_c00258{font-size:90.666667pt;}
.fs7_c00258{font-size:96.000000pt;}
.fs1_c00258{font-size:106.666667pt;}
.y0_c00258{bottom:0.000000pt;}
.y26_c00258{bottom:2.760000pt;}
.y25_c00258{bottom:6.425219pt;}
.y24_c00258{bottom:48.280000pt;}
.y23_c00258{bottom:73.613333pt;}
.y22_c00258{bottom:96.280000pt;}
.y21_c00258{bottom:118.280000pt;}
.y20_c00258{bottom:141.346667pt;}
.y1f_c00258{bottom:162.013333pt;}
.y1e_c00258{bottom:184.546667pt;}
.y1d_c00258{bottom:206.680000pt;}
.y1c_c00258{bottom:228.413333pt;}
.y1b_c00258{bottom:250.280000pt;}
.y1a_c00258{bottom:271.880000pt;}
.y19_c00258{bottom:293.213333pt;}
.y18_c00258{bottom:315.080000pt;}
.y17_c00258{bottom:336.946667pt;}
.y16_c00258{bottom:358.813333pt;}
.y15_c00258{bottom:380.146667pt;}
.y14_c00258{bottom:401.746667pt;}
.y13_c00258{bottom:423.080000pt;}
.y12_c00258{bottom:445.213333pt;}
.y11_c00258{bottom:466.813333pt;}
.y10_c00258{bottom:488.413333pt;}
.yf_c00258{bottom:510.013333pt;}
.ye_c00258{bottom:531.346667pt;}
.yd_c00258{bottom:553.213333pt;}
.yc_c00258{bottom:574.280000pt;}
.yb_c00258{bottom:596.813333pt;}
.ya_c00258{bottom:618.280000pt;}
.y9_c00258{bottom:639.346667pt;}
.y8_c00258{bottom:661.480000pt;}
.y7_c00258{bottom:684.280000pt;}
.y6_c00258{bottom:704.813333pt;}
.y5_c00258{bottom:727.480000pt;}
.y4_c00258{bottom:749.480000pt;}
.y3_c00258{bottom:771.080000pt;}
.y2_c00258{bottom:792.680000pt;}
.y1_c00258{bottom:822.013333pt;}
.ha_c00258{height:11.733399pt;}
.hb_c00258{height:38.937500pt;}
.h7_c00258{height:64.277333pt;}
.h3_c00258{height:70.664062pt;}
.h5_c00258{height:70.902344pt;}
.h8_c00258{height:73.978667pt;}
.h4_c00258{height:74.906250pt;}
.h6_c00258{height:81.031250pt;}
.h9_c00258{height:96.750000pt;}
.h2_c00258{height:107.500000pt;}
.h0_c00258{height:879.133333pt;}
.h1_c00258{height:879.333333pt;}
.w1_c00258{width:93.222667pt;}
.w0_c00258{width:597.333333pt;}
.x0_c00258{left:0.000000pt;}
.x6_c00258{left:37.866667pt;}
.xc_c00258{left:39.066667pt;}
.xa_c00258{left:41.200000pt;}
.xf_c00258{left:46.800000pt;}
.xe_c00258{left:49.600000pt;}
.x9_c00258{left:50.800000pt;}
.x7_c00258{left:52.266667pt;}
.x8_c00258{left:53.733333pt;}
.x5_c00258{left:54.666667pt;}
.xd_c00258{left:56.133333pt;}
.x4_c00258{left:57.333333pt;}
.xb_c00258{left:83.200000pt;}
.x1_c00258{left:110.666667pt;}
.x3_c00258{left:177.866667pt;}
.x2_c00258{left:179.466667pt;}
.x10_c00258{left:255.834880pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8228f8d5ec70867dc7eee582.woff2')format("woff");}.ff1_c00259{font-family:ff1_c00259;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00259;src:url('chunks/assets/font_4bdd09198d3a19dae3444f45.woff2')format("woff");}.ff2_c00259{font-family:ff2_c00259;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00259;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff3_c00259{font-family:ff3_c00259;line-height:1.219238;font-style: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;}
.ls0_c00259{letter-spacing:0.000000px;}
.sc__c00259{text-shadow:none;}
.sc0_c00259{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00259{-webkit-text-stroke:0px transparent;}
.sc0_c00259{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00259{word-spacing:0.000000px;}
._1e_c00259{margin-left:-43.497000px;}
._16_c00259{margin-left:-17.577000px;}
._9_c00259{margin-left:-15.309000px;}
._a_c00259{margin-left:-13.284000px;}
._19_c00259{margin-left:-11.052000px;}
._10_c00259{margin-left:-8.604000px;}
._d_c00259{margin-left:-7.020000px;}
._11_c00259{margin-left:-5.859000px;}
._14_c00259{margin-left:-4.257000px;}
._e_c00259{margin-left:-3.042000px;}
._b_c00259{margin-left:-1.944000px;}
._c_c00259{width:1.260000px;}
._4_c00259{width:2.808000px;}
._18_c00259{width:3.816000px;}
._1_c00259{width:4.824000px;}
._6_c00259{width:5.832000px;}
._8_c00259{width:7.056000px;}
._2_c00259{width:8.064000px;}
._17_c00259{width:9.072000px;}
._0_c00259{width:10.440000px;}
._7_c00259{width:11.448000px;}
._f_c00259{width:12.636000px;}
._15_c00259{width:13.644000px;}
._12_c00259{width:15.705000px;}
._1a_c00259{width:17.046000px;}
._13_c00259{width:18.414000px;}
._1c_c00259{width:23.382000px;}
._5_c00259{width:24.912000px;}
._1d_c00259{width:43.299000px;}
._3_c00259{width:65.736000px;}
._20_c00259{width:129.519000px;}
._21_c00259{width:410.670000px;}
._1f_c00259{width:511.029000px;}
._1b_c00259{width:814.248000px;}
.fc2_c00259{color:transparent;}
.fc1_c00259{color:rgb(128,128,128);}
.fc0_c00259{color:rgb(0,0,0);}
.fs2_c00259{font-size:48.000000px;}
.fs0_c00259{font-size:72.000000px;}
.fs1_c00259{font-size:81.000000px;}
.y0_c00259{bottom:0.000000px;}
.y26_c00259{bottom:3.105000px;}
.y25_c00259{bottom:7.228357px;}
.y24_c00259{bottom:51.030000px;}
.y23_c00259{bottom:74.580000px;}
.y22_c00259{bottom:100.530000px;}
.y21_c00259{bottom:124.830000px;}
.y20_c00259{bottom:149.280000px;}
.y1f_c00259{bottom:174.180000px;}
.y1e_c00259{bottom:198.780000px;}
.y1d_c00259{bottom:223.230000px;}
.y1c_c00259{bottom:248.130000px;}
.y1b_c00259{bottom:273.030000px;}
.y1a_c00259{bottom:297.630000px;}
.y19_c00259{bottom:321.930000px;}
.y18_c00259{bottom:346.680000px;}
.y17_c00259{bottom:370.680000px;}
.y16_c00259{bottom:395.580000px;}
.y15_c00259{bottom:419.880000px;}
.y14_c00259{bottom:444.480000px;}
.y13_c00259{bottom:468.180000px;}
.y12_c00259{bottom:492.480000px;}
.y11_c00259{bottom:517.380000px;}
.y10_c00259{bottom:541.080000px;}
.yf_c00259{bottom:565.080000px;}
.ye_c00259{bottom:590.730000px;}
.yd_c00259{bottom:613.980000px;}
.yc_c00259{bottom:638.280000px;}
.yb_c00259{bottom:662.880000px;}
.ya_c00259{bottom:687.180000px;}
.y9_c00259{bottom:711.780000px;}
.y8_c00259{bottom:736.530000px;}
.y7_c00259{bottom:761.130000px;}
.y6_c00259{bottom:785.430000px;}
.y5_c00259{bottom:810.030000px;}
.y4_c00259{bottom:834.330000px;}
.y3_c00259{bottom:858.630000px;}
.y2_c00259{bottom:883.230000px;}
.y1_c00259{bottom:919.380000px;}
.h3_c00259{height:13.200074px;}
.h4_c00259{height:43.804688px;}
.h2_c00259{height:79.497070px;}
.h1_c00259{height:84.269531px;}
.h0_c00259{height:995.250000px;}
.w2_c00259{width:104.875500px;}
.w0_c00259{width:667.425000px;}
.w1_c00259{width:667.500000px;}
.x0_c00259{left:0.000000px;}
.x4_c00259{left:105.300000px;}
.x7_c00259{left:107.550000px;}
.x2_c00259{left:108.750000px;}
.x1_c00259{left:109.950000px;}
.x3_c00259{left:111.750000px;}
.x5_c00259{left:114.450000px;}
.x6_c00259{left:115.800000px;}
.x8_c00259{left:117.150000px;}
.xb_c00259{left:118.350000px;}
.xd_c00259{left:119.400000px;}
.x9_c00259{left:122.550000px;}
.xa_c00259{left:124.500000px;}
.xc_c00259{left:144.750000px;}
.xe_c00259{left:250.050000px;}
.xf_c00259{left:285.526749px;}
@media print{
.v0_c00259{vertical-align:0.000000pt;}
.ls0_c00259{letter-spacing:0.000000pt;}
.ws0_c00259{word-spacing:0.000000pt;}
._1e_c00259{margin-left:-38.664000pt;}
._16_c00259{margin-left:-15.624000pt;}
._9_c00259{margin-left:-13.608000pt;}
._a_c00259{margin-left:-11.808000pt;}
._19_c00259{margin-left:-9.824000pt;}
._10_c00259{margin-left:-7.648000pt;}
._d_c00259{margin-left:-6.240000pt;}
._11_c00259{margin-left:-5.208000pt;}
._14_c00259{margin-left:-3.784000pt;}
._e_c00259{margin-left:-2.704000pt;}
._b_c00259{margin-left:-1.728000pt;}
._c_c00259{width:1.120000pt;}
._4_c00259{width:2.496000pt;}
._18_c00259{width:3.392000pt;}
._1_c00259{width:4.288000pt;}
._6_c00259{width:5.184000pt;}
._8_c00259{width:6.272000pt;}
._2_c00259{width:7.168000pt;}
._17_c00259{width:8.064000pt;}
._0_c00259{width:9.280000pt;}
._7_c00259{width:10.176000pt;}
._f_c00259{width:11.232000pt;}
._15_c00259{width:12.128000pt;}
._12_c00259{width:13.960000pt;}
._1a_c00259{width:15.152000pt;}
._13_c00259{width:16.368000pt;}
._1c_c00259{width:20.784000pt;}
._5_c00259{width:22.144000pt;}
._1d_c00259{width:38.488000pt;}
._3_c00259{width:58.432000pt;}
._20_c00259{width:115.128000pt;}
._21_c00259{width:365.040000pt;}
._1f_c00259{width:454.248000pt;}
._1b_c00259{width:723.776000pt;}
.fs2_c00259{font-size:42.666667pt;}
.fs0_c00259{font-size:64.000000pt;}
.fs1_c00259{font-size:72.000000pt;}
.y0_c00259{bottom:0.000000pt;}
.y26_c00259{bottom:2.760000pt;}
.y25_c00259{bottom:6.425206pt;}
.y24_c00259{bottom:45.360000pt;}
.y23_c00259{bottom:66.293333pt;}
.y22_c00259{bottom:89.360000pt;}
.y21_c00259{bottom:110.960000pt;}
.y20_c00259{bottom:132.693333pt;}
.y1f_c00259{bottom:154.826667pt;}
.y1e_c00259{bottom:176.693333pt;}
.y1d_c00259{bottom:198.426667pt;}
.y1c_c00259{bottom:220.560000pt;}
.y1b_c00259{bottom:242.693333pt;}
.y1a_c00259{bottom:264.560000pt;}
.y19_c00259{bottom:286.160000pt;}
.y18_c00259{bottom:308.160000pt;}
.y17_c00259{bottom:329.493333pt;}
.y16_c00259{bottom:351.626667pt;}
.y15_c00259{bottom:373.226667pt;}
.y14_c00259{bottom:395.093333pt;}
.y13_c00259{bottom:416.160000pt;}
.y12_c00259{bottom:437.760000pt;}
.y11_c00259{bottom:459.893333pt;}
.y10_c00259{bottom:480.960000pt;}
.yf_c00259{bottom:502.293333pt;}
.ye_c00259{bottom:525.093333pt;}
.yd_c00259{bottom:545.760000pt;}
.yc_c00259{bottom:567.360000pt;}
.yb_c00259{bottom:589.226667pt;}
.ya_c00259{bottom:610.826667pt;}
.y9_c00259{bottom:632.693333pt;}
.y8_c00259{bottom:654.693333pt;}
.y7_c00259{bottom:676.560000pt;}
.y6_c00259{bottom:698.160000pt;}
.y5_c00259{bottom:720.026667pt;}
.y4_c00259{bottom:741.626667pt;}
.y3_c00259{bottom:763.226667pt;}
.y2_c00259{bottom:785.093333pt;}
.y1_c00259{bottom:817.226667pt;}
.h3_c00259{height:11.733399pt;}
.h4_c00259{height:38.937500pt;}
.h2_c00259{height:70.664062pt;}
.h1_c00259{height:74.906250pt;}
.h0_c00259{height:884.666667pt;}
.w2_c00259{width:93.222667pt;}
.w0_c00259{width:593.266667pt;}
.w1_c00259{width:593.333333pt;}
.x0_c00259{left:0.000000pt;}
.x4_c00259{left:93.600000pt;}
.x7_c00259{left:95.600000pt;}
.x2_c00259{left:96.666667pt;}
.x1_c00259{left:97.733333pt;}
.x3_c00259{left:99.333333pt;}
.x5_c00259{left:101.733333pt;}
.x6_c00259{left:102.933333pt;}
.x8_c00259{left:104.133333pt;}
.xb_c00259{left:105.200000pt;}
.xd_c00259{left:106.133333pt;}
.x9_c00259{left:108.933333pt;}
.xa_c00259{left:110.666667pt;}
.xc_c00259{left:128.666667pt;}
.xe_c00259{left:222.266667pt;}
.xf_c00259{left:253.801554pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ef30b742e7624b9bec1169e5.woff2')format("woff");}.ff1_c00260{font-family:ff1_c00260;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00260;src:url('chunks/assets/font_3ce0b2c788c1d451bbe40294.woff2')format("woff");}.ff2_c00260{font-family:ff2_c00260;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00260;src:url('chunks/assets/font_2ffd0fd12fe62982236bb0a5.woff2')format("woff");}.ff3_c00260{font-family:ff3_c00260;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00260;src:url('chunks/assets/font_a55d8f768fc34204f610eaf6.woff2')format("woff");}.ff4_c00260{font-family:ff4_c00260;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00260;src:url('chunks/assets/font_e31bd0500d91ccb46889d317.woff2')format("woff");}.ff5_c00260{font-family:ff5_c00260;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00260;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c00260{font-family:ff6_c00260;line-height:1.219238;font-style: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;}
.ls1_c00260{letter-spacing:0.000000px;}
.ls0_c00260{letter-spacing:23.400000px;}
.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;}
}
.ws2_c00260{word-spacing:-33.000000px;}
.ws1_c00260{word-spacing:-19.530000px;}
.ws0_c00260{word-spacing:-17.352000px;}
.ws3_c00260{word-spacing:0.000000px;}
._19_c00260{margin-left:-38.859000px;}
._14_c00260{margin-left:-20.124000px;}
._13_c00260{margin-left:-17.628000px;}
._1a_c00260{margin-left:-13.575000px;}
._17_c00260{margin-left:-10.512000px;}
._9_c00260{margin-left:-8.880000px;}
._18_c00260{margin-left:-7.344000px;}
._15_c00260{margin-left:-6.258000px;}
._1_c00260{margin-left:-4.383000px;}
._d_c00260{margin-left:-2.646000px;}
._16_c00260{margin-left:-1.278000px;}
._c_c00260{width:1.233000px;}
._e_c00260{width:2.964000px;}
._f_c00260{width:4.053000px;}
._4_c00260{width:5.112000px;}
._3_c00260{width:6.696000px;}
._7_c00260{width:7.704000px;}
._8_c00260{width:8.712000px;}
._6_c00260{width:10.008000px;}
._5_c00260{width:12.024000px;}
._b_c00260{width:14.472000px;}
._2_c00260{width:15.480000px;}
._0_c00260{width:17.415000px;}
._1e_c00260{width:18.936000px;}
._20_c00260{width:21.870000px;}
._a_c00260{width:29.292000px;}
._1c_c00260{width:37.623000px;}
._10_c00260{width:46.128000px;}
._12_c00260{width:85.176000px;}
._11_c00260{width:102.099000px;}
._1d_c00260{width:117.126000px;}
._1b_c00260{width:124.137000px;}
._21_c00260{width:126.765000px;}
._1f_c00260{width:1014.612000px;}
.fc2_c00260{color:transparent;}
.fc1_c00260{color:rgb(128,128,128);}
.fc0_c00260{color:rgb(0,0,0);}
.fs6_c00260{font-size:48.000000px;}
.fs3_c00260{font-size:51.000000px;}
.fs5_c00260{font-size:57.000000px;}
.fs2_c00260{font-size:66.000000px;}
.fs1_c00260{font-size:72.000000px;}
.fs4_c00260{font-size:78.000000px;}
.fs0_c00260{font-size:81.000000px;}
.y0_c00260{bottom:0.000000px;}
.y26_c00260{bottom:3.105000px;}
.y25_c00260{bottom:7.228371px;}
.y24_c00260{bottom:72.615000px;}
.y23_c00260{bottom:96.615000px;}
.y22_c00260{bottom:121.815000px;}
.y21_c00260{bottom:146.565000px;}
.y20_c00260{bottom:170.865000px;}
.y1f_c00260{bottom:195.765000px;}
.y1e_c00260{bottom:220.365000px;}
.y1d_c00260{bottom:245.115000px;}
.y1c_c00260{bottom:269.415000px;}
.y1b_c00260{bottom:294.015000px;}
.y1a_c00260{bottom:318.315000px;}
.y19_c00260{bottom:342.015000px;}
.y18_c00260{bottom:366.315000px;}
.y17_c00260{bottom:390.465000px;}
.y16_c00260{bottom:414.465000px;}
.y15_c00260{bottom:438.165000px;}
.y14_c00260{bottom:462.165000px;}
.y13_c00260{bottom:486.765000px;}
.y12_c00260{bottom:510.615000px;}
.y11_c00260{bottom:535.965000px;}
.y10_c00260{bottom:560.265000px;}
.yf_c00260{bottom:585.915000px;}
.ye_c00260{bottom:609.615000px;}
.yd_c00260{bottom:633.915000px;}
.yc_c00260{bottom:658.215000px;}
.yb_c00260{bottom:682.515000px;}
.ya_c00260{bottom:707.115000px;}
.y9_c00260{bottom:732.165000px;}
.y8_c00260{bottom:756.315000px;}
.y7_c00260{bottom:780.615000px;}
.y6_c00260{bottom:805.365000px;}
.y5_c00260{bottom:829.965000px;}
.y4_c00260{bottom:854.565000px;}
.y3_c00260{bottom:877.965000px;}
.y2_c00260{bottom:902.265000px;}
.y1_c00260{bottom:937.965000px;}
.h7_c00260{height:13.200074px;}
.h8_c00260{height:43.804688px;}
.h6_c00260{height:51.398438px;}
.h5_c00260{height:79.497070px;}
.h2_c00260{height:84.269531px;}
.h4_c00260{height:91.160156px;}
.h3_c00260{height:98.756836px;}
.h0_c00260{height:989.025000px;}
.h1_c00260{height:989.250000px;}
.w1_c00260{width:104.875500px;}
.w0_c00260{width:672.000000px;}
.x0_c00260{left:0.000000px;}
.x6_c00260{left:46.200000px;}
.xa_c00260{left:49.650000px;}
.x3_c00260{left:61.350000px;}
.x2_c00260{left:63.450000px;}
.x4_c00260{left:64.800000px;}
.x5_c00260{left:67.050000px;}
.x8_c00260{left:68.550000px;}
.x7_c00260{left:69.750000px;}
.x9_c00260{left:71.250000px;}
.x1_c00260{left:198.450000px;}
.xc_c00260{left:287.814240px;}
.xb_c00260{left:513.900000px;}
@media print{
.v0_c00260{vertical-align:0.000000pt;}
.ls1_c00260{letter-spacing:0.000000pt;}
.ls0_c00260{letter-spacing:20.800000pt;}
.ws2_c00260{word-spacing:-29.333333pt;}
.ws1_c00260{word-spacing:-17.360000pt;}
.ws0_c00260{word-spacing:-15.424000pt;}
.ws3_c00260{word-spacing:0.000000pt;}
._19_c00260{margin-left:-34.541333pt;}
._14_c00260{margin-left:-17.888000pt;}
._13_c00260{margin-left:-15.669333pt;}
._1a_c00260{margin-left:-12.066667pt;}
._17_c00260{margin-left:-9.344000pt;}
._9_c00260{margin-left:-7.893333pt;}
._18_c00260{margin-left:-6.528000pt;}
._15_c00260{margin-left:-5.562667pt;}
._1_c00260{margin-left:-3.896000pt;}
._d_c00260{margin-left:-2.352000pt;}
._16_c00260{margin-left:-1.136000pt;}
._c_c00260{width:1.096000pt;}
._e_c00260{width:2.634667pt;}
._f_c00260{width:3.602667pt;}
._4_c00260{width:4.544000pt;}
._3_c00260{width:5.952000pt;}
._7_c00260{width:6.848000pt;}
._8_c00260{width:7.744000pt;}
._6_c00260{width:8.896000pt;}
._5_c00260{width:10.688000pt;}
._b_c00260{width:12.864000pt;}
._2_c00260{width:13.760000pt;}
._0_c00260{width:15.480000pt;}
._1e_c00260{width:16.832000pt;}
._20_c00260{width:19.440000pt;}
._a_c00260{width:26.037333pt;}
._1c_c00260{width:33.442667pt;}
._10_c00260{width:41.002667pt;}
._12_c00260{width:75.712000pt;}
._11_c00260{width:90.754667pt;}
._1d_c00260{width:104.112000pt;}
._1b_c00260{width:110.344000pt;}
._21_c00260{width:112.680000pt;}
._1f_c00260{width:901.877333pt;}
.fs6_c00260{font-size:42.666667pt;}
.fs3_c00260{font-size:45.333333pt;}
.fs5_c00260{font-size:50.666667pt;}
.fs2_c00260{font-size:58.666667pt;}
.fs1_c00260{font-size:64.000000pt;}
.fs4_c00260{font-size:69.333333pt;}
.fs0_c00260{font-size:72.000000pt;}
.y0_c00260{bottom:0.000000pt;}
.y26_c00260{bottom:2.760000pt;}
.y25_c00260{bottom:6.425219pt;}
.y24_c00260{bottom:64.546667pt;}
.y23_c00260{bottom:85.880000pt;}
.y22_c00260{bottom:108.280000pt;}
.y21_c00260{bottom:130.280000pt;}
.y20_c00260{bottom:151.880000pt;}
.y1f_c00260{bottom:174.013333pt;}
.y1e_c00260{bottom:195.880000pt;}
.y1d_c00260{bottom:217.880000pt;}
.y1c_c00260{bottom:239.480000pt;}
.y1b_c00260{bottom:261.346667pt;}
.y1a_c00260{bottom:282.946667pt;}
.y19_c00260{bottom:304.013333pt;}
.y18_c00260{bottom:325.613333pt;}
.y17_c00260{bottom:347.080000pt;}
.y16_c00260{bottom:368.413333pt;}
.y15_c00260{bottom:389.480000pt;}
.y14_c00260{bottom:410.813333pt;}
.y13_c00260{bottom:432.680000pt;}
.y12_c00260{bottom:453.880000pt;}
.y11_c00260{bottom:476.413333pt;}
.y10_c00260{bottom:498.013333pt;}
.yf_c00260{bottom:520.813333pt;}
.ye_c00260{bottom:541.880000pt;}
.yd_c00260{bottom:563.480000pt;}
.yc_c00260{bottom:585.080000pt;}
.yb_c00260{bottom:606.680000pt;}
.ya_c00260{bottom:628.546667pt;}
.y9_c00260{bottom:650.813333pt;}
.y8_c00260{bottom:672.280000pt;}
.y7_c00260{bottom:693.880000pt;}
.y6_c00260{bottom:715.880000pt;}
.y5_c00260{bottom:737.746667pt;}
.y4_c00260{bottom:759.613333pt;}
.y3_c00260{bottom:780.413333pt;}
.y2_c00260{bottom:802.013333pt;}
.y1_c00260{bottom:833.746667pt;}
.h7_c00260{height:11.733399pt;}
.h8_c00260{height:38.937500pt;}
.h6_c00260{height:45.687500pt;}
.h5_c00260{height:70.664062pt;}
.h2_c00260{height:74.906250pt;}
.h4_c00260{height:81.031250pt;}
.h3_c00260{height:87.783854pt;}
.h0_c00260{height:879.133333pt;}
.h1_c00260{height:879.333333pt;}
.w1_c00260{width:93.222667pt;}
.w0_c00260{width:597.333333pt;}
.x0_c00260{left:0.000000pt;}
.x6_c00260{left:41.066667pt;}
.xa_c00260{left:44.133333pt;}
.x3_c00260{left:54.533333pt;}
.x2_c00260{left:56.400000pt;}
.x4_c00260{left:57.600000pt;}
.x5_c00260{left:59.600000pt;}
.x8_c00260{left:60.933333pt;}
.x7_c00260{left:62.000000pt;}
.x9_c00260{left:63.333333pt;}
.x1_c00260{left:176.400000pt;}
.xc_c00260{left:255.834880pt;}
.xb_c00260{left:456.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_b8b24e651a50061ebcb4909b.woff2')format("woff");}.ff1_c00261{font-family:ff1_c00261;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00261;src:url('chunks/assets/font_1c2ffbadf84fec704f630a4b.woff2')format("woff");}.ff2_c00261{font-family:ff2_c00261;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00261;src:url('chunks/assets/font_1fc4daf11b18e45ec004354a.woff2')format("woff");}.ff3_c00261{font-family:ff3_c00261;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00261;src:url('chunks/assets/font_93e4d0e7d7401c48990b10ea.woff2')format("woff");}.ff4_c00261{font-family:ff4_c00261;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00261;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c00261{font-family:ff5_c00261;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00261{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m0_c00261{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00261{vertical-align:0.000000px;}
.ls2_c00261{letter-spacing:0.000000px;}
.ls0_c00261{letter-spacing:15.600000px;}
.ls1_c00261{letter-spacing:70.350000px;}
.sc__c00261{text-shadow:none;}
.sc0_c00261{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00261{-webkit-text-stroke:0px transparent;}
.sc0_c00261{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00261{word-spacing:-59.184000px;}
.ws1_c00261{word-spacing:-27.000000px;}
.ws2_c00261{word-spacing:0.000000px;}
._13_c00261{margin-left:-24.057000px;}
._19_c00261{margin-left:-21.789000px;}
._12_c00261{margin-left:-13.203000px;}
._11_c00261{margin-left:-11.532000px;}
._15_c00261{margin-left:-9.477000px;}
._14_c00261{margin-left:-8.352000px;}
._d_c00261{margin-left:-7.125000px;}
._f_c00261{margin-left:-5.892000px;}
._9_c00261{margin-left:-4.818000px;}
._4_c00261{margin-left:-3.138000px;}
._1_c00261{margin-left:-1.944000px;}
._2_c00261{width:1.863000px;}
._3_c00261{width:3.099000px;}
._0_c00261{width:5.103000px;}
._7_c00261{width:6.399000px;}
._5_c00261{width:8.280000px;}
._c_c00261{width:9.477000px;}
._e_c00261{width:10.863000px;}
._8_c00261{width:12.189000px;}
._a_c00261{width:14.439000px;}
._6_c00261{width:16.725000px;}
._b_c00261{width:18.093000px;}
._10_c00261{width:24.999000px;}
._17_c00261{width:26.538000px;}
._18_c00261{width:32.097000px;}
._16_c00261{width:237.735000px;}
.fc2_c00261{color:transparent;}
.fc1_c00261{color:rgb(128,128,128);}
.fc0_c00261{color:rgb(0,0,0);}
.fs5_c00261{font-size:48.000000px;}
.fs3_c00261{font-size:66.000000px;}
.fs2_c00261{font-size:72.000000px;}
.fs0_c00261{font-size:81.000000px;}
.fs1_c00261{font-size:84.000000px;}
.fs4_c00261{font-size:108.000000px;}
.y0_c00261{bottom:0.000000px;}
.y25_c00261{bottom:3.105000px;}
.y24_c00261{bottom:7.228357px;}
.y23_c00261{bottom:65.580000px;}
.y22_c00261{bottom:87.780000px;}
.y21_c00261{bottom:113.430000px;}
.y20_c00261{bottom:137.730000px;}
.y1f_c00261{bottom:161.730000px;}
.y1e_c00261{bottom:186.330000px;}
.y1d_c00261{bottom:210.630000px;}
.y1c_c00261{bottom:235.530000px;}
.y1b_c00261{bottom:259.830000px;}
.y1a_c00261{bottom:284.880000px;}
.y19_c00261{bottom:309.180000px;}
.y18_c00261{bottom:333.180000px;}
.y17_c00261{bottom:358.080000px;}
.y16_c00261{bottom:382.380000px;}
.y15_c00261{bottom:406.680000px;}
.y14_c00261{bottom:431.280000px;}
.y13_c00261{bottom:454.680000px;}
.y12_c00261{bottom:481.230000px;}
.y11_c00261{bottom:503.580000px;}
.y10_c00261{bottom:528.180000px;}
.yf_c00261{bottom:551.880000px;}
.ye_c00261{bottom:577.080000px;}
.yd_c00261{bottom:601.530000px;}
.yc_c00261{bottom:625.680000px;}
.yb_c00261{bottom:649.980000px;}
.ya_c00261{bottom:675.330000px;}
.y9_c00261{bottom:698.580000px;}
.y8_c00261{bottom:722.880000px;}
.y7_c00261{bottom:747.330000px;}
.y6_c00261{bottom:771.480000px;}
.y5_c00261{bottom:795.930000px;}
.y4_c00261{bottom:820.230000px;}
.y3_c00261{bottom:844.380000px;}
.y2_c00261{bottom:868.680000px;}
.y1_c00261{bottom:893.430000px;}
.h5_c00261{height:13.200074px;}
.h6_c00261{height:43.804688px;}
.h2_c00261{height:79.497070px;}
.h1_c00261{height:82.441406px;}
.h3_c00261{height:84.269531px;}
.h4_c00261{height:108.843750px;}
.h0_c00261{height:995.250000px;}
.w2_c00261{width:104.875500px;}
.w0_c00261{width:667.425000px;}
.w1_c00261{width:667.500000px;}
.x0_c00261{left:0.000000px;}
.x5_c00261{left:16.800000px;}
.x6_c00261{left:38.250000px;}
.x2_c00261{left:106.650000px;}
.x1_c00261{left:108.450000px;}
.x4_c00261{left:110.100000px;}
.x7_c00261{left:111.750000px;}
.x3_c00261{left:130.200000px;}
.x8_c00261{left:136.650000px;}
.x9_c00261{left:156.300000px;}
.xc_c00261{left:285.526749px;}
.xa_c00261{left:481.950000px;}
.xb_c00261{left:545.700000px;}
@media print{
.v0_c00261{vertical-align:0.000000pt;}
.ls2_c00261{letter-spacing:0.000000pt;}
.ls0_c00261{letter-spacing:13.866667pt;}
.ls1_c00261{letter-spacing:62.533333pt;}
.ws0_c00261{word-spacing:-52.608000pt;}
.ws1_c00261{word-spacing:-24.000000pt;}
.ws2_c00261{word-spacing:0.000000pt;}
._13_c00261{margin-left:-21.384000pt;}
._19_c00261{margin-left:-19.368000pt;}
._12_c00261{margin-left:-11.736000pt;}
._11_c00261{margin-left:-10.250667pt;}
._15_c00261{margin-left:-8.424000pt;}
._14_c00261{margin-left:-7.424000pt;}
._d_c00261{margin-left:-6.333333pt;}
._f_c00261{margin-left:-5.237333pt;}
._9_c00261{margin-left:-4.282667pt;}
._4_c00261{margin-left:-2.789333pt;}
._1_c00261{margin-left:-1.728000pt;}
._2_c00261{width:1.656000pt;}
._3_c00261{width:2.754667pt;}
._0_c00261{width:4.536000pt;}
._7_c00261{width:5.688000pt;}
._5_c00261{width:7.360000pt;}
._c_c00261{width:8.424000pt;}
._e_c00261{width:9.656000pt;}
._8_c00261{width:10.834667pt;}
._a_c00261{width:12.834667pt;}
._6_c00261{width:14.866667pt;}
._b_c00261{width:16.082667pt;}
._10_c00261{width:22.221333pt;}
._17_c00261{width:23.589333pt;}
._18_c00261{width:28.530667pt;}
._16_c00261{width:211.320000pt;}
.fs5_c00261{font-size:42.666667pt;}
.fs3_c00261{font-size:58.666667pt;}
.fs2_c00261{font-size:64.000000pt;}
.fs0_c00261{font-size:72.000000pt;}
.fs1_c00261{font-size:74.666667pt;}
.fs4_c00261{font-size:96.000000pt;}
.y0_c00261{bottom:0.000000pt;}
.y25_c00261{bottom:2.760000pt;}
.y24_c00261{bottom:6.425206pt;}
.y23_c00261{bottom:58.293333pt;}
.y22_c00261{bottom:78.026667pt;}
.y21_c00261{bottom:100.826667pt;}
.y20_c00261{bottom:122.426667pt;}
.y1f_c00261{bottom:143.760000pt;}
.y1e_c00261{bottom:165.626667pt;}
.y1d_c00261{bottom:187.226667pt;}
.y1c_c00261{bottom:209.360000pt;}
.y1b_c00261{bottom:230.960000pt;}
.y1a_c00261{bottom:253.226667pt;}
.y19_c00261{bottom:274.826667pt;}
.y18_c00261{bottom:296.160000pt;}
.y17_c00261{bottom:318.293333pt;}
.y16_c00261{bottom:339.893333pt;}
.y15_c00261{bottom:361.493333pt;}
.y14_c00261{bottom:383.360000pt;}
.y13_c00261{bottom:404.160000pt;}
.y12_c00261{bottom:427.760000pt;}
.y11_c00261{bottom:447.626667pt;}
.y10_c00261{bottom:469.493333pt;}
.yf_c00261{bottom:490.560000pt;}
.ye_c00261{bottom:512.960000pt;}
.yd_c00261{bottom:534.693333pt;}
.yc_c00261{bottom:556.160000pt;}
.yb_c00261{bottom:577.760000pt;}
.ya_c00261{bottom:600.293333pt;}
.y9_c00261{bottom:620.960000pt;}
.y8_c00261{bottom:642.560000pt;}
.y7_c00261{bottom:664.293333pt;}
.y6_c00261{bottom:685.760000pt;}
.y5_c00261{bottom:707.493333pt;}
.y4_c00261{bottom:729.093333pt;}
.y3_c00261{bottom:750.560000pt;}
.y2_c00261{bottom:772.160000pt;}
.y1_c00261{bottom:794.160000pt;}
.h5_c00261{height:11.733399pt;}
.h6_c00261{height:38.937500pt;}
.h2_c00261{height:70.664062pt;}
.h1_c00261{height:73.281250pt;}
.h3_c00261{height:74.906250pt;}
.h4_c00261{height:96.750000pt;}
.h0_c00261{height:884.666667pt;}
.w2_c00261{width:93.222667pt;}
.w0_c00261{width:593.266667pt;}
.w1_c00261{width:593.333333pt;}
.x0_c00261{left:0.000000pt;}
.x5_c00261{left:14.933333pt;}
.x6_c00261{left:34.000000pt;}
.x2_c00261{left:94.800000pt;}
.x1_c00261{left:96.400000pt;}
.x4_c00261{left:97.866667pt;}
.x7_c00261{left:99.333333pt;}
.x3_c00261{left:115.733333pt;}
.x8_c00261{left:121.466667pt;}
.x9_c00261{left:138.933333pt;}
.xc_c00261{left:253.801554pt;}
.xa_c00261{left:428.400000pt;}
.xb_c00261{left:485.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_8f21fe6daa23a888a046b59d.woff2')format("woff");}.ff1_c00262{font-family:ff1_c00262;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00262;src:url('chunks/assets/font_598a312c649a6cf80bf78f70.woff2')format("woff");}.ff2_c00262{font-family:ff2_c00262;line-height:1.311035;font-style:normal;font-weight:normal;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_0610f6bf0b935205fbf14e93.woff2')format("woff");}.ff3_c00262{font-family:ff3_c00262;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00262;src:url('chunks/assets/font_c912688ae251bb2014643136.woff2')format("woff");}.ff4_c00262{font-family:ff4_c00262;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00262;src:url('chunks/assets/font_d39e62614a0300c54493c9c6.woff2')format("woff");}.ff5_c00262{font-family:ff5_c00262;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00262;src:url('chunks/assets/font_1cb12f34339ddebf32c8c771.woff2')format("woff");}.ff6_c00262{font-family:ff6_c00262;line-height:1.437000;font-style:normal;font-weight: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_c00262;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c00262{font-family:ff7_c00262;line-height:1.219238;font-style: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;}
.ls3_c00262{letter-spacing:0.000000px;}
.ls1_c00262{letter-spacing:3.000000px;}
.ls2_c00262{letter-spacing:12.000000px;}
.ls0_c00262{letter-spacing:13.248000px;}
.sc__c00262{text-shadow:none;}
.sc0_c00262{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00262{-webkit-text-stroke:0px transparent;}
.sc0_c00262{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00262{word-spacing:-43.674000px;}
.ws1_c00262{word-spacing:0.000000px;}
._14_c00262{margin-left:-16.857000px;}
._17_c00262{margin-left:-14.163000px;}
._15_c00262{margin-left:-11.619000px;}
._11_c00262{margin-left:-9.486000px;}
._d_c00262{margin-left:-8.343000px;}
._5_c00262{margin-left:-6.561000px;}
._e_c00262{margin-left:-5.427000px;}
._7_c00262{margin-left:-3.726000px;}
._2_c00262{margin-left:-1.944000px;}
._6_c00262{width:1.296000px;}
._3_c00262{width:2.349000px;}
._4_c00262{width:3.483000px;}
._0_c00262{width:5.346000px;}
._8_c00262{width:6.723000px;}
._1_c00262{width:8.505000px;}
._a_c00262{width:10.125000px;}
._9_c00262{width:11.178000px;}
._1b_c00262{width:12.555000px;}
._b_c00262{width:13.932000px;}
._16_c00262{width:16.968000px;}
._c_c00262{width:18.063000px;}
._18_c00262{width:29.526000px;}
._f_c00262{width:31.284000px;}
._10_c00262{width:34.443000px;}
._13_c00262{width:44.841000px;}
._19_c00262{width:96.933000px;}
._12_c00262{width:271.065000px;}
._1a_c00262{width:280.638000px;}
.fc2_c00262{color:transparent;}
.fc1_c00262{color:rgb(128,128,128);}
.fc0_c00262{color:rgb(0,0,0);}
.fs6_c00262{font-size:48.000000px;}
.fs4_c00262{font-size:60.000000px;}
.fs1_c00262{font-size:72.000000px;}
.fs3_c00262{font-size:75.000000px;}
.fs0_c00262{font-size:81.000000px;}
.fs5_c00262{font-size:87.000000px;}
.fs2_c00262{font-size:93.000000px;}
.y0_c00262{bottom:0.000000px;}
.y23_c00262{bottom:3.105000px;}
.y22_c00262{bottom:7.228371px;}
.y21_c00262{bottom:54.765000px;}
.y20_c00262{bottom:82.665000px;}
.y1f_c00262{bottom:109.665000px;}
.y1e_c00262{bottom:133.965000px;}
.y1d_c00262{bottom:158.715000px;}
.y1c_c00262{bottom:183.015000px;}
.y1b_c00262{bottom:207.315000px;}
.y1a_c00262{bottom:232.215000px;}
.y19_c00262{bottom:256.965000px;}
.y18_c00262{bottom:281.565000px;}
.y17_c00262{bottom:305.865000px;}
.y16_c00262{bottom:329.415000px;}
.y15_c00262{bottom:354.015000px;}
.y14_c00262{bottom:377.415000px;}
.y13_c00262{bottom:401.715000px;}
.y12_c00262{bottom:425.715000px;}
.y11_c00262{bottom:449.865000px;}
.y10_c00262{bottom:473.865000px;}
.yf_c00262{bottom:498.465000px;}
.ye_c00262{bottom:522.765000px;}
.yd_c00262{bottom:547.215000px;}
.yc_c00262{bottom:595.815000px;}
.yb_c00262{bottom:644.415000px;}
.ya_c00262{bottom:668.715000px;}
.y9_c00262{bottom:693.315000px;}
.y8_c00262{bottom:717.915000px;}
.y7_c00262{bottom:742.815000px;}
.y6_c00262{bottom:767.265000px;}
.y5_c00262{bottom:791.865000px;}
.y4_c00262{bottom:816.165000px;}
.y3_c00262{bottom:840.465000px;}
.y2_c00262{bottom:865.065000px;}
.y1_c00262{bottom:889.365000px;}
.h9_c00262{height:13.200074px;}
.ha_c00262{height:43.804688px;}
.h4_c00262{height:70.628906px;}
.h6_c00262{height:73.571777px;}
.h7_c00262{height:73.608398px;}
.h2_c00262{height:79.497070px;}
.h5_c00262{height:84.269531px;}
.h8_c00262{height:91.176000px;}
.h3_c00262{height:91.274414px;}
.h0_c00262{height:989.025000px;}
.h1_c00262{height:989.250000px;}
.w1_c00262{width:104.875500px;}
.w0_c00262{width:672.000000px;}
.x0_c00262{left:0.000000px;}
.xd_c00262{left:40.050000px;}
.xa_c00262{left:52.350000px;}
.xb_c00262{left:55.050000px;}
.x9_c00262{left:56.700000px;}
.xc_c00262{left:58.050000px;}
.x8_c00262{left:60.300000px;}
.x4_c00262{left:62.400000px;}
.x3_c00262{left:63.900000px;}
.x1_c00262{left:65.100000px;}
.x2_c00262{left:66.150000px;}
.x5_c00262{left:90.000000px;}
.x7_c00262{left:98.100000px;}
.x6_c00262{left:112.050000px;}
.xf_c00262{left:287.814240px;}
.xe_c00262{left:360.450000px;}
@media print{
.v0_c00262{vertical-align:0.000000pt;}
.ls3_c00262{letter-spacing:0.000000pt;}
.ls1_c00262{letter-spacing:2.666667pt;}
.ls2_c00262{letter-spacing:10.666667pt;}
.ls0_c00262{letter-spacing:11.776000pt;}
.ws0_c00262{word-spacing:-38.821333pt;}
.ws1_c00262{word-spacing:0.000000pt;}
._14_c00262{margin-left:-14.984000pt;}
._17_c00262{margin-left:-12.589333pt;}
._15_c00262{margin-left:-10.328000pt;}
._11_c00262{margin-left:-8.432000pt;}
._d_c00262{margin-left:-7.416000pt;}
._5_c00262{margin-left:-5.832000pt;}
._e_c00262{margin-left:-4.824000pt;}
._7_c00262{margin-left:-3.312000pt;}
._2_c00262{margin-left:-1.728000pt;}
._6_c00262{width:1.152000pt;}
._3_c00262{width:2.088000pt;}
._4_c00262{width:3.096000pt;}
._0_c00262{width:4.752000pt;}
._8_c00262{width:5.976000pt;}
._1_c00262{width:7.560000pt;}
._a_c00262{width:9.000000pt;}
._9_c00262{width:9.936000pt;}
._1b_c00262{width:11.160000pt;}
._b_c00262{width:12.384000pt;}
._16_c00262{width:15.082667pt;}
._c_c00262{width:16.056000pt;}
._18_c00262{width:26.245333pt;}
._f_c00262{width:27.808000pt;}
._10_c00262{width:30.616000pt;}
._13_c00262{width:39.858667pt;}
._19_c00262{width:86.162667pt;}
._12_c00262{width:240.946667pt;}
._1a_c00262{width:249.456000pt;}
.fs6_c00262{font-size:42.666667pt;}
.fs4_c00262{font-size:53.333333pt;}
.fs1_c00262{font-size:64.000000pt;}
.fs3_c00262{font-size:66.666667pt;}
.fs0_c00262{font-size:72.000000pt;}
.fs5_c00262{font-size:77.333333pt;}
.fs2_c00262{font-size:82.666667pt;}
.y0_c00262{bottom:0.000000pt;}
.y23_c00262{bottom:2.760000pt;}
.y22_c00262{bottom:6.425219pt;}
.y21_c00262{bottom:48.680000pt;}
.y20_c00262{bottom:73.480000pt;}
.y1f_c00262{bottom:97.480000pt;}
.y1e_c00262{bottom:119.080000pt;}
.y1d_c00262{bottom:141.080000pt;}
.y1c_c00262{bottom:162.680000pt;}
.y1b_c00262{bottom:184.280000pt;}
.y1a_c00262{bottom:206.413333pt;}
.y19_c00262{bottom:228.413333pt;}
.y18_c00262{bottom:250.280000pt;}
.y17_c00262{bottom:271.880000pt;}
.y16_c00262{bottom:292.813333pt;}
.y15_c00262{bottom:314.680000pt;}
.y14_c00262{bottom:335.480000pt;}
.y13_c00262{bottom:357.080000pt;}
.y12_c00262{bottom:378.413333pt;}
.y11_c00262{bottom:399.880000pt;}
.y10_c00262{bottom:421.213333pt;}
.yf_c00262{bottom:443.080000pt;}
.ye_c00262{bottom:464.680000pt;}
.yd_c00262{bottom:486.413333pt;}
.yc_c00262{bottom:529.613333pt;}
.yb_c00262{bottom:572.813333pt;}
.ya_c00262{bottom:594.413333pt;}
.y9_c00262{bottom:616.280000pt;}
.y8_c00262{bottom:638.146667pt;}
.y7_c00262{bottom:660.280000pt;}
.y6_c00262{bottom:682.013333pt;}
.y5_c00262{bottom:703.880000pt;}
.y4_c00262{bottom:725.480000pt;}
.y3_c00262{bottom:747.080000pt;}
.y2_c00262{bottom:768.946667pt;}
.y1_c00262{bottom:790.546667pt;}
.h9_c00262{height:11.733399pt;}
.ha_c00262{height:38.937500pt;}
.h4_c00262{height:62.781250pt;}
.h6_c00262{height:65.397135pt;}
.h7_c00262{height:65.429688pt;}
.h2_c00262{height:70.664062pt;}
.h5_c00262{height:74.906250pt;}
.h8_c00262{height:81.045333pt;}
.h3_c00262{height:81.132812pt;}
.h0_c00262{height:879.133333pt;}
.h1_c00262{height:879.333333pt;}
.w1_c00262{width:93.222667pt;}
.w0_c00262{width:597.333333pt;}
.x0_c00262{left:0.000000pt;}
.xd_c00262{left:35.600000pt;}
.xa_c00262{left:46.533333pt;}
.xb_c00262{left:48.933333pt;}
.x9_c00262{left:50.400000pt;}
.xc_c00262{left:51.600000pt;}
.x8_c00262{left:53.600000pt;}
.x4_c00262{left:55.466667pt;}
.x3_c00262{left:56.800000pt;}
.x1_c00262{left:57.866667pt;}
.x2_c00262{left:58.800000pt;}
.x5_c00262{left:80.000000pt;}
.x7_c00262{left:87.200000pt;}
.x6_c00262{left:99.600000pt;}
.xf_c00262{left:255.834880pt;}
.xe_c00262{left:320.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_9544534082a5555408c963bd.woff2')format("woff");}.ff1_c00263{font-family:ff1_c00263;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00263;src:url('chunks/assets/font_63d44479bf10e22a2d4339fd.woff2')format("woff");}.ff2_c00263{font-family:ff2_c00263;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00263;src:url('chunks/assets/font_36a177bcc64e91b05d4acc12.woff2')format("woff");}.ff3_c00263{font-family:ff3_c00263;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00263;src:url('chunks/assets/font_445447fad626d04aa82aa9c8.woff2')format("woff");}.ff4_c00263{font-family:ff4_c00263;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00263;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c00263{font-family:ff5_c00263;line-height:1.219238;font-style: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;}
.ls0_c00263{letter-spacing:0.000000px;}
.ls1_c00263{letter-spacing:6.000000px;}
.sc__c00263{text-shadow:none;}
.sc0_c00263{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00263{-webkit-text-stroke:0px transparent;}
.sc0_c00263{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00263{word-spacing:-56.058000px;}
.ws1_c00263{word-spacing:-17.352000px;}
.ws2_c00263{word-spacing:-16.500000px;}
.ws3_c00263{word-spacing:0.000000px;}
._1b_c00263{margin-left:-23.895000px;}
._12_c00263{margin-left:-16.929000px;}
._6_c00263{margin-left:-14.823000px;}
._13_c00263{margin-left:-13.770000px;}
._16_c00263{margin-left:-11.421000px;}
._11_c00263{margin-left:-10.083000px;}
._e_c00263{margin-left:-9.072000px;}
._a_c00263{margin-left:-7.371000px;}
._3_c00263{margin-left:-6.318000px;}
._c_c00263{margin-left:-4.293000px;}
._b_c00263{margin-left:-3.078000px;}
._7_c00263{margin-left:-2.025000px;}
._1a_c00263{margin-left:-1.014000px;}
._4_c00263{width:1.296000px;}
._0_c00263{width:2.997000px;}
._5_c00263{width:4.050000px;}
._1_c00263{width:5.103000px;}
._2_c00263{width:6.480000px;}
._8_c00263{width:7.938000px;}
._f_c00263{width:9.504000px;}
._9_c00263{width:11.016000px;}
._10_c00263{width:13.026000px;}
._14_c00263{width:14.718000px;}
._d_c00263{width:17.091000px;}
._17_c00263{width:30.144000px;}
._15_c00263{width:37.602000px;}
._18_c00263{width:328.536000px;}
._19_c00263{width:347.448000px;}
._1d_c00263{width:441.936000px;}
._1c_c00263{width:608.229000px;}
.fc2_c00263{color:transparent;}
.fc1_c00263{color:rgb(128,128,128);}
.fc0_c00263{color:rgb(0,0,0);}
.fs4_c00263{font-size:48.000000px;}
.fs1_c00263{font-size:54.000000px;}
.fs2_c00263{font-size:66.000000px;}
.fs3_c00263{font-size:72.000000px;}
.fs0_c00263{font-size:81.000000px;}
.y0_c00263{bottom:0.000000px;}
.y25_c00263{bottom:3.105000px;}
.y24_c00263{bottom:7.228357px;}
.y23_c00263{bottom:50.580000px;}
.y22_c00263{bottom:74.280000px;}
.y21_c00263{bottom:99.930000px;}
.y20_c00263{bottom:124.230000px;}
.y1f_c00263{bottom:148.530000px;}
.y1e_c00263{bottom:172.830000px;}
.y1d_c00263{bottom:197.430000px;}
.y1c_c00263{bottom:222.030000px;}
.y1b_c00263{bottom:246.480000px;}
.y1a_c00263{bottom:271.080000px;}
.y19_c00263{bottom:296.280000px;}
.y18_c00263{bottom:321.330000px;}
.y17_c00263{bottom:345.030000px;}
.y16_c00263{bottom:368.880000px;}
.y15_c00263{bottom:394.230000px;}
.y14_c00263{bottom:418.830000px;}
.y13_c00263{bottom:443.130000px;}
.y12_c00263{bottom:467.430000px;}
.y11_c00263{bottom:491.730000px;}
.y10_c00263{bottom:515.430000px;}
.yf_c00263{bottom:539.430000px;}
.ye_c00263{bottom:563.730000px;}
.yd_c00263{bottom:588.030000px;}
.yc_c00263{bottom:612.930000px;}
.yb_c00263{bottom:637.830000px;}
.ya_c00263{bottom:662.280000px;}
.y9_c00263{bottom:687.180000px;}
.y8_c00263{bottom:711.480000px;}
.y7_c00263{bottom:736.080000px;}
.y6_c00263{bottom:760.080000px;}
.y5_c00263{bottom:784.980000px;}
.y4_c00263{bottom:808.680000px;}
.y3_c00263{bottom:832.980000px;}
.y2_c00263{bottom:856.980000px;}
.y1_c00263{bottom:881.280000px;}
.h3_c00263{height:13.200074px;}
.h4_c00263{height:43.804688px;}
.h1_c00263{height:79.497070px;}
.h2_c00263{height:84.269531px;}
.h0_c00263{height:995.250000px;}
.w2_c00263{width:104.875500px;}
.w0_c00263{width:667.425000px;}
.w1_c00263{width:667.500000px;}
.x0_c00263{left:0.000000px;}
.x4_c00263{left:31.350000px;}
.x9_c00263{left:34.350000px;}
.x5_c00263{left:63.750000px;}
.x1_c00263{left:119.700000px;}
.x2_c00263{left:122.400000px;}
.x3_c00263{left:123.450000px;}
.x6_c00263{left:126.900000px;}
.x7_c00263{left:128.250000px;}
.x8_c00263{left:129.300000px;}
.xa_c00263{left:131.250000px;}
.xb_c00263{left:132.900000px;}
.xc_c00263{left:134.550000px;}
.xe_c00263{left:285.526749px;}
.xd_c00263{left:297.000000px;}
@media print{
.v0_c00263{vertical-align:0.000000pt;}
.ls0_c00263{letter-spacing:0.000000pt;}
.ls1_c00263{letter-spacing:5.333333pt;}
.ws0_c00263{word-spacing:-49.829333pt;}
.ws1_c00263{word-spacing:-15.424000pt;}
.ws2_c00263{word-spacing:-14.666667pt;}
.ws3_c00263{word-spacing:0.000000pt;}
._1b_c00263{margin-left:-21.240000pt;}
._12_c00263{margin-left:-15.048000pt;}
._6_c00263{margin-left:-13.176000pt;}
._13_c00263{margin-left:-12.240000pt;}
._16_c00263{margin-left:-10.152000pt;}
._11_c00263{margin-left:-8.962667pt;}
._e_c00263{margin-left:-8.064000pt;}
._a_c00263{margin-left:-6.552000pt;}
._3_c00263{margin-left:-5.616000pt;}
._c_c00263{margin-left:-3.816000pt;}
._b_c00263{margin-left:-2.736000pt;}
._7_c00263{margin-left:-1.800000pt;}
._1a_c00263{margin-left:-0.901333pt;}
._4_c00263{width:1.152000pt;}
._0_c00263{width:2.664000pt;}
._5_c00263{width:3.600000pt;}
._1_c00263{width:4.536000pt;}
._2_c00263{width:5.760000pt;}
._8_c00263{width:7.056000pt;}
._f_c00263{width:8.448000pt;}
._9_c00263{width:9.792000pt;}
._10_c00263{width:11.578667pt;}
._14_c00263{width:13.082667pt;}
._d_c00263{width:15.192000pt;}
._17_c00263{width:26.794667pt;}
._15_c00263{width:33.424000pt;}
._18_c00263{width:292.032000pt;}
._19_c00263{width:308.842667pt;}
._1d_c00263{width:392.832000pt;}
._1c_c00263{width:540.648000pt;}
.fs4_c00263{font-size:42.666667pt;}
.fs1_c00263{font-size:48.000000pt;}
.fs2_c00263{font-size:58.666667pt;}
.fs3_c00263{font-size:64.000000pt;}
.fs0_c00263{font-size:72.000000pt;}
.y0_c00263{bottom:0.000000pt;}
.y25_c00263{bottom:2.760000pt;}
.y24_c00263{bottom:6.425206pt;}
.y23_c00263{bottom:44.960000pt;}
.y22_c00263{bottom:66.026667pt;}
.y21_c00263{bottom:88.826667pt;}
.y20_c00263{bottom:110.426667pt;}
.y1f_c00263{bottom:132.026667pt;}
.y1e_c00263{bottom:153.626667pt;}
.y1d_c00263{bottom:175.493333pt;}
.y1c_c00263{bottom:197.360000pt;}
.y1b_c00263{bottom:219.093333pt;}
.y1a_c00263{bottom:240.960000pt;}
.y19_c00263{bottom:263.360000pt;}
.y18_c00263{bottom:285.626667pt;}
.y17_c00263{bottom:306.693333pt;}
.y16_c00263{bottom:327.893333pt;}
.y15_c00263{bottom:350.426667pt;}
.y14_c00263{bottom:372.293333pt;}
.y13_c00263{bottom:393.893333pt;}
.y12_c00263{bottom:415.493333pt;}
.y11_c00263{bottom:437.093333pt;}
.y10_c00263{bottom:458.160000pt;}
.yf_c00263{bottom:479.493333pt;}
.ye_c00263{bottom:501.093333pt;}
.yd_c00263{bottom:522.693333pt;}
.yc_c00263{bottom:544.826667pt;}
.yb_c00263{bottom:566.960000pt;}
.ya_c00263{bottom:588.693333pt;}
.y9_c00263{bottom:610.826667pt;}
.y8_c00263{bottom:632.426667pt;}
.y7_c00263{bottom:654.293333pt;}
.y6_c00263{bottom:675.626667pt;}
.y5_c00263{bottom:697.760000pt;}
.y4_c00263{bottom:718.826667pt;}
.y3_c00263{bottom:740.426667pt;}
.y2_c00263{bottom:761.760000pt;}
.y1_c00263{bottom:783.360000pt;}
.h3_c00263{height:11.733399pt;}
.h4_c00263{height:38.937500pt;}
.h1_c00263{height:70.664062pt;}
.h2_c00263{height:74.906250pt;}
.h0_c00263{height:884.666667pt;}
.w2_c00263{width:93.222667pt;}
.w0_c00263{width:593.266667pt;}
.w1_c00263{width:593.333333pt;}
.x0_c00263{left:0.000000pt;}
.x4_c00263{left:27.866667pt;}
.x9_c00263{left:30.533333pt;}
.x5_c00263{left:56.666667pt;}
.x1_c00263{left:106.400000pt;}
.x2_c00263{left:108.800000pt;}
.x3_c00263{left:109.733333pt;}
.x6_c00263{left:112.800000pt;}
.x7_c00263{left:114.000000pt;}
.x8_c00263{left:114.933333pt;}
.xa_c00263{left:116.666667pt;}
.xb_c00263{left:118.133333pt;}
.xc_c00263{left:119.600000pt;}
.xe_c00263{left:253.801554pt;}
.xd_c00263{left:264.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_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_d45a0fa2fe4bf7256064f7d5.woff2')format("woff");}.ff1_c00264{font-family:ff1_c00264;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00264;src:url('chunks/assets/font_26363177e1cdcb93801321ee.woff2')format("woff");}.ff2_c00264{font-family:ff2_c00264;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00264;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff3_c00264{font-family:ff3_c00264;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00264;src:url('chunks/assets/font_7c4484788e8d4c63459bf11f.woff2')format("woff");}.ff4_c00264{font-family:ff4_c00264;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00264;src:url('chunks/assets/font_5edc220477760b1b6237b7c9.woff2')format("woff");}.ff5_c00264{font-family:ff5_c00264;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00264;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c00264{font-family:ff6_c00264;line-height:1.219238;font-style: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;}
.ls3_c00264{letter-spacing:0.000000px;}
.ls1_c00264{letter-spacing:2.550000px;}
.ls0_c00264{letter-spacing:4.680000px;}
.ls2_c00264{letter-spacing:31.800000px;}
.sc__c00264{text-shadow:none;}
.sc0_c00264{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00264{-webkit-text-stroke:0px transparent;}
.sc0_c00264{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00264{word-spacing:-18.750000px;}
.ws1_c00264{word-spacing:-17.352000px;}
.ws3_c00264{word-spacing:0.000000px;}
.ws2_c00264{word-spacing:1.944000px;}
._12_c00264{margin-left:-15.141000px;}
._13_c00264{margin-left:-13.818000px;}
._10_c00264{margin-left:-12.312000px;}
._e_c00264{margin-left:-10.110000px;}
._14_c00264{margin-left:-8.226000px;}
._c_c00264{margin-left:-6.723000px;}
._a_c00264{margin-left:-5.670000px;}
._b_c00264{margin-left:-4.374000px;}
._4_c00264{margin-left:-2.835000px;}
._2_c00264{margin-left:-1.053000px;}
._3_c00264{width:1.782000px;}
._5_c00264{width:3.726000px;}
._1b_c00264{width:4.743000px;}
._1_c00264{width:5.751000px;}
._0_c00264{width:6.885000px;}
._8_c00264{width:8.586000px;}
._1a_c00264{width:9.639000px;}
._9_c00264{width:10.773000px;}
._18_c00264{width:12.069000px;}
._7_c00264{width:13.284000px;}
._6_c00264{width:14.580000px;}
._d_c00264{width:16.038000px;}
._16_c00264{width:18.306000px;}
._f_c00264{width:24.462000px;}
._11_c00264{width:31.833000px;}
._17_c00264{width:32.886000px;}
._15_c00264{width:37.260000px;}
._1c_c00264{width:46.296000px;}
._19_c00264{width:122.715000px;}
.fc2_c00264{color:transparent;}
.fc1_c00264{color:rgb(128,128,128);}
.fc0_c00264{color:rgb(0,0,0);}
.fs4_c00264{font-size:48.000000px;}
.fs3_c00264{font-size:66.000000px;}
.fs1_c00264{font-size:72.000000px;}
.fs2_c00264{font-size:75.000000px;}
.fs0_c00264{font-size:81.000000px;}
.y0_c00264{bottom:0.000000px;}
.y25_c00264{bottom:3.105000px;}
.y24_c00264{bottom:7.228363px;}
.y23_c00264{bottom:43.800000px;}
.y22_c00264{bottom:74.850000px;}
.y21_c00264{bottom:100.200000px;}
.y20_c00264{bottom:126.450000px;}
.y1f_c00264{bottom:149.550000px;}
.y1e_c00264{bottom:173.850000px;}
.y1d_c00264{bottom:199.500000px;}
.y1c_c00264{bottom:223.350000px;}
.y1b_c00264{bottom:248.100000px;}
.y1a_c00264{bottom:272.700000px;}
.y19_c00264{bottom:296.550000px;}
.y18_c00264{bottom:321.300000px;}
.y17_c00264{bottom:345.600000px;}
.y16_c00264{bottom:369.450000px;}
.y15_c00264{bottom:393.150000px;}
.y14_c00264{bottom:417.750000px;}
.y13_c00264{bottom:442.050000px;}
.y12_c00264{bottom:466.050000px;}
.y11_c00264{bottom:490.950000px;}
.y10_c00264{bottom:516.000000px;}
.yf_c00264{bottom:539.550000px;}
.ye_c00264{bottom:563.550000px;}
.yd_c00264{bottom:587.250000px;}
.yc_c00264{bottom:611.550000px;}
.yb_c00264{bottom:635.850000px;}
.ya_c00264{bottom:659.850000px;}
.y9_c00264{bottom:684.150000px;}
.y8_c00264{bottom:708.450000px;}
.y7_c00264{bottom:732.750000px;}
.y6_c00264{bottom:757.050000px;}
.y5_c00264{bottom:781.500000px;}
.y4_c00264{bottom:806.250000px;}
.y3_c00264{bottom:831.000000px;}
.y2_c00264{bottom:856.200000px;}
.y1_c00264{bottom:883.200000px;}
.h6_c00264{height:13.200074px;}
.h7_c00264{height:43.804688px;}
.h5_c00264{height:73.608398px;}
.h2_c00264{height:79.497070px;}
.h4_c00264{height:84.269531px;}
.h3_c00264{height:91.160156px;}
.h0_c00264{height:980.100000px;}
.h1_c00264{height:980.250000px;}
.w2_c00264{width:104.875500px;}
.w0_c00264{width:665.850000px;}
.w1_c00264{width:666.000000px;}
.x0_c00264{left:0.000000px;}
.xa_c00264{left:21.300000px;}
.x7_c00264{left:22.950000px;}
.x1_c00264{left:31.350000px;}
.x3_c00264{left:34.050000px;}
.x4_c00264{left:35.100000px;}
.x5_c00264{left:36.900000px;}
.x8_c00264{left:38.100000px;}
.x6_c00264{left:39.150000px;}
.x9_c00264{left:40.500000px;}
.xb_c00264{left:42.150000px;}
.x2_c00264{left:59.400000px;}
.xd_c00264{left:284.739258px;}
.xc_c00264{left:357.300000px;}
@media print{
.v0_c00264{vertical-align:0.000000pt;}
.ls3_c00264{letter-spacing:0.000000pt;}
.ls1_c00264{letter-spacing:2.266667pt;}
.ls0_c00264{letter-spacing:4.160000pt;}
.ls2_c00264{letter-spacing:28.266667pt;}
.ws0_c00264{word-spacing:-16.666667pt;}
.ws1_c00264{word-spacing:-15.424000pt;}
.ws3_c00264{word-spacing:0.000000pt;}
.ws2_c00264{word-spacing:1.728000pt;}
._12_c00264{margin-left:-13.458667pt;}
._13_c00264{margin-left:-12.282667pt;}
._10_c00264{margin-left:-10.944000pt;}
._e_c00264{margin-left:-8.986667pt;}
._14_c00264{margin-left:-7.312000pt;}
._c_c00264{margin-left:-5.976000pt;}
._a_c00264{margin-left:-5.040000pt;}
._b_c00264{margin-left:-3.888000pt;}
._4_c00264{margin-left:-2.520000pt;}
._2_c00264{margin-left:-0.936000pt;}
._3_c00264{width:1.584000pt;}
._5_c00264{width:3.312000pt;}
._1b_c00264{width:4.216000pt;}
._1_c00264{width:5.112000pt;}
._0_c00264{width:6.120000pt;}
._8_c00264{width:7.632000pt;}
._1a_c00264{width:8.568000pt;}
._9_c00264{width:9.576000pt;}
._18_c00264{width:10.728000pt;}
._7_c00264{width:11.808000pt;}
._6_c00264{width:12.960000pt;}
._d_c00264{width:14.256000pt;}
._16_c00264{width:16.272000pt;}
._f_c00264{width:21.744000pt;}
._11_c00264{width:28.296000pt;}
._17_c00264{width:29.232000pt;}
._15_c00264{width:33.120000pt;}
._1c_c00264{width:41.152000pt;}
._19_c00264{width:109.080000pt;}
.fs4_c00264{font-size:42.666667pt;}
.fs3_c00264{font-size:58.666667pt;}
.fs1_c00264{font-size:64.000000pt;}
.fs2_c00264{font-size:66.666667pt;}
.fs0_c00264{font-size:72.000000pt;}
.y0_c00264{bottom:0.000000pt;}
.y25_c00264{bottom:2.760000pt;}
.y24_c00264{bottom:6.425212pt;}
.y23_c00264{bottom:38.933333pt;}
.y22_c00264{bottom:66.533333pt;}
.y21_c00264{bottom:89.066667pt;}
.y20_c00264{bottom:112.400000pt;}
.y1f_c00264{bottom:132.933333pt;}
.y1e_c00264{bottom:154.533333pt;}
.y1d_c00264{bottom:177.333333pt;}
.y1c_c00264{bottom:198.533333pt;}
.y1b_c00264{bottom:220.533333pt;}
.y1a_c00264{bottom:242.400000pt;}
.y19_c00264{bottom:263.600000pt;}
.y18_c00264{bottom:285.600000pt;}
.y17_c00264{bottom:307.200000pt;}
.y16_c00264{bottom:328.400000pt;}
.y15_c00264{bottom:349.466667pt;}
.y14_c00264{bottom:371.333333pt;}
.y13_c00264{bottom:392.933333pt;}
.y12_c00264{bottom:414.266667pt;}
.y11_c00264{bottom:436.400000pt;}
.y10_c00264{bottom:458.666667pt;}
.yf_c00264{bottom:479.600000pt;}
.ye_c00264{bottom:500.933333pt;}
.yd_c00264{bottom:522.000000pt;}
.yc_c00264{bottom:543.600000pt;}
.yb_c00264{bottom:565.200000pt;}
.ya_c00264{bottom:586.533333pt;}
.y9_c00264{bottom:608.133333pt;}
.y8_c00264{bottom:629.733333pt;}
.y7_c00264{bottom:651.333333pt;}
.y6_c00264{bottom:672.933333pt;}
.y5_c00264{bottom:694.666667pt;}
.y4_c00264{bottom:716.666667pt;}
.y3_c00264{bottom:738.666667pt;}
.y2_c00264{bottom:761.066667pt;}
.y1_c00264{bottom:785.066667pt;}
.h6_c00264{height:11.733399pt;}
.h7_c00264{height:38.937500pt;}
.h5_c00264{height:65.429688pt;}
.h2_c00264{height:70.664062pt;}
.h4_c00264{height:74.906250pt;}
.h3_c00264{height:81.031250pt;}
.h0_c00264{height:871.200000pt;}
.h1_c00264{height:871.333333pt;}
.w2_c00264{width:93.222667pt;}
.w0_c00264{width:591.866667pt;}
.w1_c00264{width:592.000000pt;}
.x0_c00264{left:0.000000pt;}
.xa_c00264{left:18.933333pt;}
.x7_c00264{left:20.400000pt;}
.x1_c00264{left:27.866667pt;}
.x3_c00264{left:30.266667pt;}
.x4_c00264{left:31.200000pt;}
.x5_c00264{left:32.800000pt;}
.x8_c00264{left:33.866667pt;}
.x6_c00264{left:34.800000pt;}
.x9_c00264{left:36.000000pt;}
.xb_c00264{left:37.466667pt;}
.x2_c00264{left:52.800000pt;}
.xd_c00264{left:253.101563pt;}
.xc_c00264{left:317.600000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_855aee5247a5a112d7aa9ac0.woff2')format("woff");}.ff1_c00265{font-family:ff1_c00265;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00265;src:url('chunks/assets/font_589f921747dd300ffd35e1d1.woff2')format("woff");}.ff2_c00265{font-family:ff2_c00265;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00265;src:url('chunks/assets/font_004b606b28f71ef0f8d2e71f.woff2')format("woff");}.ff3_c00265{font-family:ff3_c00265;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00265;src:url('chunks/assets/font_9e10a37a6efcd30b1494b838.woff2')format("woff");}.ff4_c00265{font-family:ff4_c00265;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00265;src:url('chunks/assets/font_d1ec7b077259c303ec93c5f8.woff2')format("woff");}.ff5_c00265{font-family:ff5_c00265;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00265;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c00265{font-family:ff6_c00265;line-height:1.219238;font-style: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;}
.ls1_c00265{letter-spacing:0.000000px;}
.ls3_c00265{letter-spacing:3.000000px;}
.ls0_c00265{letter-spacing:7.500000px;}
.ls2_c00265{letter-spacing:84.000000px;}
.sc__c00265{text-shadow:none;}
.sc0_c00265{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00265{-webkit-text-stroke:0px transparent;}
.sc0_c00265{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00265{word-spacing:-67.686000px;}
.ws3_c00265{word-spacing:-20.250000px;}
.ws1_c00265{word-spacing:-17.352000px;}
.ws4_c00265{word-spacing:0.000000px;}
.ws0_c00265{word-spacing:737.520000px;}
._9_c00265{margin-left:-92.520000px;}
._a_c00265{margin-left:-90.288000px;}
._b_c00265{margin-left:-89.064000px;}
._d_c00265{margin-left:-84.744000px;}
._e_c00265{margin-left:-83.016000px;}
._c_c00265{margin-left:-75.168000px;}
._26_c00265{margin-left:-25.221000px;}
._2a_c00265{margin-left:-22.791000px;}
._21_c00265{margin-left:-16.632000px;}
._28_c00265{margin-left:-14.904000px;}
._1d_c00265{margin-left:-12.879000px;}
._20_c00265{margin-left:-10.008000px;}
._24_c00265{margin-left:-8.910000px;}
._7_c00265{margin-left:-7.776000px;}
._f_c00265{margin-left:-6.720000px;}
._8_c00265{margin-left:-4.779000px;}
._4_c00265{margin-left:-3.159000px;}
._3_c00265{margin-left:-1.296000px;}
._10_c00265{width:1.863000px;}
._0_c00265{width:2.997000px;}
._18_c00265{width:4.050000px;}
._1_c00265{width:5.103000px;}
._5_c00265{width:6.885000px;}
._2_c00265{width:8.019000px;}
._6_c00265{width:9.963000px;}
._11_c00265{width:11.259000px;}
._1c_c00265{width:12.390000px;}
._25_c00265{width:13.656000px;}
._13_c00265{width:15.309000px;}
._1e_c00265{width:17.253000px;}
._2e_c00265{width:19.800000px;}
._17_c00265{width:21.783000px;}
._2c_c00265{width:23.169000px;}
._2d_c00265{width:25.560000px;}
._29_c00265{width:26.946000px;}
._12_c00265{width:35.721000px;}
._1f_c00265{width:39.969000px;}
._1a_c00265{width:67.167000px;}
._22_c00265{width:71.214000px;}
._16_c00265{width:72.819000px;}
._14_c00265{width:74.088000px;}
._15_c00265{width:89.910000px;}
._23_c00265{width:104.625000px;}
._1b_c00265{width:183.789000px;}
._19_c00265{width:217.161000px;}
._27_c00265{width:241.947000px;}
._2b_c00265{width:289.656000px;}
.fc2_c00265{color:transparent;}
.fc1_c00265{color:rgb(128,128,128);}
.fc0_c00265{color:rgb(0,0,0);}
.fs5_c00265{font-size:36.000000px;}
.fs6_c00265{font-size:48.000000px;}
.fs2_c00265{font-size:60.000000px;}
.fs1_c00265{font-size:72.000000px;}
.fs4_c00265{font-size:78.000000px;}
.fs0_c00265{font-size:81.000000px;}
.fs3_c00265{font-size:87.000000px;}
.y0_c00265{bottom:0.000000px;}
.y25_c00265{bottom:3.105000px;}
.y24_c00265{bottom:7.228357px;}
.y23_c00265{bottom:60.180000px;}
.y22_c00265{bottom:83.130000px;}
.y21_c00265{bottom:106.680000px;}
.y20_c00265{bottom:131.580000px;}
.y1f_c00265{bottom:155.580000px;}
.y1e_c00265{bottom:179.880000px;}
.y1d_c00265{bottom:204.630000px;}
.y1c_c00265{bottom:228.930000px;}
.y1b_c00265{bottom:254.580000px;}
.y1a_c00265{bottom:278.130000px;}
.y19_c00265{bottom:303.180000px;}
.y18_c00265{bottom:326.730000px;}
.y17_c00265{bottom:350.730000px;}
.y16_c00265{bottom:375.630000px;}
.y15_c00265{bottom:400.980000px;}
.y14_c00265{bottom:423.930000px;}
.y13_c00265{bottom:448.530000px;}
.y12_c00265{bottom:472.830000px;}
.y11_c00265{bottom:496.830000px;}
.y10_c00265{bottom:521.880000px;}
.yf_c00265{bottom:544.380000px;}
.ye_c00265{bottom:568.980000px;}
.yd_c00265{bottom:594.330000px;}
.yc_c00265{bottom:617.730000px;}
.yb_c00265{bottom:641.880000px;}
.ya_c00265{bottom:666.180000px;}
.y9_c00265{bottom:690.480000px;}
.y8_c00265{bottom:715.830000px;}
.y7_c00265{bottom:737.730000px;}
.y6_c00265{bottom:763.080000px;}
.y5_c00265{bottom:787.380000px;}
.y4_c00265{bottom:811.680000px;}
.y3_c00265{bottom:837.030000px;}
.y2_c00265{bottom:864.030000px;}
.y1_c00265{bottom:887.730000px;}
.h5_c00265{height:13.200074px;}
.h6_c00265{height:43.804688px;}
.h1_c00265{height:79.497070px;}
.h2_c00265{height:84.269531px;}
.h3_c00265{height:91.176000px;}
.h4_c00265{height:98.756836px;}
.h0_c00265{height:995.250000px;}
.w2_c00265{width:104.875500px;}
.w0_c00265{width:667.425000px;}
.w1_c00265{width:667.500000px;}
.x0_c00265{left:0.000000px;}
.xa_c00265{left:38.550000px;}
.xe_c00265{left:39.900000px;}
.x9_c00265{left:41.250000px;}
.xc_c00265{left:42.300000px;}
.x5_c00265{left:43.500000px;}
.x7_c00265{left:44.550000px;}
.x6_c00265{left:46.650000px;}
.x2_c00265{left:108.900000px;}
.xf_c00265{left:131.250000px;}
.xd_c00265{left:132.600000px;}
.xb_c00265{left:133.650000px;}
.x4_c00265{left:135.300000px;}
.x8_c00265{left:136.350000px;}
.x1_c00265{left:137.400000px;}
.x11_c00265{left:285.526749px;}
.x3_c00265{left:508.950000px;}
.x10_c00265{left:566.700000px;}
@media print{
.v0_c00265{vertical-align:0.000000pt;}
.ls1_c00265{letter-spacing:0.000000pt;}
.ls3_c00265{letter-spacing:2.666667pt;}
.ls0_c00265{letter-spacing:6.666667pt;}
.ls2_c00265{letter-spacing:74.666667pt;}
.ws2_c00265{word-spacing:-60.165333pt;}
.ws3_c00265{word-spacing:-18.000000pt;}
.ws1_c00265{word-spacing:-15.424000pt;}
.ws4_c00265{word-spacing:0.000000pt;}
.ws0_c00265{word-spacing:655.573333pt;}
._9_c00265{margin-left:-82.240000pt;}
._a_c00265{margin-left:-80.256000pt;}
._b_c00265{margin-left:-79.168000pt;}
._d_c00265{margin-left:-75.328000pt;}
._e_c00265{margin-left:-73.792000pt;}
._c_c00265{margin-left:-66.816000pt;}
._26_c00265{margin-left:-22.418667pt;}
._2a_c00265{margin-left:-20.258667pt;}
._21_c00265{margin-left:-14.784000pt;}
._28_c00265{margin-left:-13.248000pt;}
._1d_c00265{margin-left:-11.448000pt;}
._20_c00265{margin-left:-8.896000pt;}
._24_c00265{margin-left:-7.920000pt;}
._7_c00265{margin-left:-6.912000pt;}
._f_c00265{margin-left:-5.973333pt;}
._8_c00265{margin-left:-4.248000pt;}
._4_c00265{margin-left:-2.808000pt;}
._3_c00265{margin-left:-1.152000pt;}
._10_c00265{width:1.656000pt;}
._0_c00265{width:2.664000pt;}
._18_c00265{width:3.600000pt;}
._1_c00265{width:4.536000pt;}
._5_c00265{width:6.120000pt;}
._2_c00265{width:7.128000pt;}
._6_c00265{width:8.856000pt;}
._11_c00265{width:10.008000pt;}
._1c_c00265{width:11.013333pt;}
._25_c00265{width:12.138667pt;}
._13_c00265{width:13.608000pt;}
._1e_c00265{width:15.336000pt;}
._2e_c00265{width:17.600000pt;}
._17_c00265{width:19.362667pt;}
._2c_c00265{width:20.594667pt;}
._2d_c00265{width:22.720000pt;}
._29_c00265{width:23.952000pt;}
._12_c00265{width:31.752000pt;}
._1f_c00265{width:35.528000pt;}
._1a_c00265{width:59.704000pt;}
._22_c00265{width:63.301333pt;}
._16_c00265{width:64.728000pt;}
._14_c00265{width:65.856000pt;}
._15_c00265{width:79.920000pt;}
._23_c00265{width:93.000000pt;}
._1b_c00265{width:163.368000pt;}
._19_c00265{width:193.032000pt;}
._27_c00265{width:215.064000pt;}
._2b_c00265{width:257.472000pt;}
.fs5_c00265{font-size:32.000000pt;}
.fs6_c00265{font-size:42.666667pt;}
.fs2_c00265{font-size:53.333333pt;}
.fs1_c00265{font-size:64.000000pt;}
.fs4_c00265{font-size:69.333333pt;}
.fs0_c00265{font-size:72.000000pt;}
.fs3_c00265{font-size:77.333333pt;}
.y0_c00265{bottom:0.000000pt;}
.y25_c00265{bottom:2.760000pt;}
.y24_c00265{bottom:6.425206pt;}
.y23_c00265{bottom:53.493333pt;}
.y22_c00265{bottom:73.893333pt;}
.y21_c00265{bottom:94.826667pt;}
.y20_c00265{bottom:116.960000pt;}
.y1f_c00265{bottom:138.293333pt;}
.y1e_c00265{bottom:159.893333pt;}
.y1d_c00265{bottom:181.893333pt;}
.y1c_c00265{bottom:203.493333pt;}
.y1b_c00265{bottom:226.293333pt;}
.y1a_c00265{bottom:247.226667pt;}
.y19_c00265{bottom:269.493333pt;}
.y18_c00265{bottom:290.426667pt;}
.y17_c00265{bottom:311.760000pt;}
.y16_c00265{bottom:333.893333pt;}
.y15_c00265{bottom:356.426667pt;}
.y14_c00265{bottom:376.826667pt;}
.y13_c00265{bottom:398.693333pt;}
.y12_c00265{bottom:420.293333pt;}
.y11_c00265{bottom:441.626667pt;}
.y10_c00265{bottom:463.893333pt;}
.yf_c00265{bottom:483.893333pt;}
.ye_c00265{bottom:505.760000pt;}
.yd_c00265{bottom:528.293333pt;}
.yc_c00265{bottom:549.093333pt;}
.yb_c00265{bottom:570.560000pt;}
.ya_c00265{bottom:592.160000pt;}
.y9_c00265{bottom:613.760000pt;}
.y8_c00265{bottom:636.293333pt;}
.y7_c00265{bottom:655.760000pt;}
.y6_c00265{bottom:678.293333pt;}
.y5_c00265{bottom:699.893333pt;}
.y4_c00265{bottom:721.493333pt;}
.y3_c00265{bottom:744.026667pt;}
.y2_c00265{bottom:768.026667pt;}
.y1_c00265{bottom:789.093333pt;}
.h5_c00265{height:11.733399pt;}
.h6_c00265{height:38.937500pt;}
.h1_c00265{height:70.664062pt;}
.h2_c00265{height:74.906250pt;}
.h3_c00265{height:81.045333pt;}
.h4_c00265{height:87.783854pt;}
.h0_c00265{height:884.666667pt;}
.w2_c00265{width:93.222667pt;}
.w0_c00265{width:593.266667pt;}
.w1_c00265{width:593.333333pt;}
.x0_c00265{left:0.000000pt;}
.xa_c00265{left:34.266667pt;}
.xe_c00265{left:35.466667pt;}
.x9_c00265{left:36.666667pt;}
.xc_c00265{left:37.600000pt;}
.x5_c00265{left:38.666667pt;}
.x7_c00265{left:39.600000pt;}
.x6_c00265{left:41.466667pt;}
.x2_c00265{left:96.800000pt;}
.xf_c00265{left:116.666667pt;}
.xd_c00265{left:117.866667pt;}
.xb_c00265{left:118.800000pt;}
.x4_c00265{left:120.266667pt;}
.x8_c00265{left:121.200000pt;}
.x1_c00265{left:122.133333pt;}
.x11_c00265{left:253.801554pt;}
.x3_c00265{left:452.400000pt;}
.x10_c00265{left:503.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_8af4b6cc5a08cebdaf562b64.woff2')format("woff");}.ff1_c00266{font-family:ff1_c00266;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00266;src:url('chunks/assets/font_d35826ec6075bd6a566bf089.woff2')format("woff");}.ff2_c00266{font-family:ff2_c00266;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00266;src:url('chunks/assets/font_2ee5960ff1ac9af72fe08e79.woff2')format("woff");}.ff3_c00266{font-family:ff3_c00266;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00266;src:url('chunks/assets/font_ba02931134e667e1a0bfbb50.woff2')format("woff");}.ff4_c00266{font-family:ff4_c00266;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00266;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff5_c00266{font-family:ff5_c00266;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00266;src:url('chunks/assets/font_b6473b41d50229c03222b42a.woff2')format("woff");}.ff6_c00266{font-family:ff6_c00266;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00266;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c00266{font-family:ff7_c00266;line-height:1.219238;font-style: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;}
.ls1_c00266{letter-spacing:0.000000px;}
.ls0_c00266{letter-spacing:4.650000px;}
.sc__c00266{text-shadow:none;}
.sc0_c00266{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00266{-webkit-text-stroke:0px transparent;}
.sc0_c00266{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00266{word-spacing:-67.686000px;}
.ws1_c00266{word-spacing:-59.184000px;}
.ws2_c00266{word-spacing:-20.250000px;}
.ws0_c00266{word-spacing:-2.623200px;}
.ws4_c00266{word-spacing:-1.377000px;}
.ws5_c00266{word-spacing:0.000000px;}
._17_c00266{margin-left:-24.321600px;}
._14_c00266{margin-left:-19.479000px;}
._18_c00266{margin-left:-18.389400px;}
._20_c00266{margin-left:-15.163200px;}
._1e_c00266{margin-left:-12.537000px;}
._19_c00266{margin-left:-11.116200px;}
._1b_c00266{margin-left:-9.825000px;}
._13_c00266{margin-left:-7.290000px;}
._7_c00266{margin-left:-6.012000px;}
._12_c00266{margin-left:-4.824600px;}
._5_c00266{margin-left:-3.486000px;}
._b_c00266{margin-left:-2.439600px;}
._9_c00266{margin-left:-1.325400px;}
._6_c00266{width:1.215000px;}
._2_c00266{width:2.268000px;}
._1_c00266{width:3.321000px;}
._0_c00266{width:5.103000px;}
._8_c00266{width:6.527400px;}
._f_c00266{width:7.533000px;}
._3_c00266{width:8.607000px;}
._a_c00266{width:9.891000px;}
._4_c00266{width:11.364000px;}
._10_c00266{width:12.567600px;}
._11_c00266{width:13.923600px;}
._1f_c00266{width:15.986400px;}
._15_c00266{width:17.004600px;}
._1c_c00266{width:18.567000px;}
._d_c00266{width:21.303000px;}
._e_c00266{width:23.095200px;}
._1a_c00266{width:24.960600px;}
._1d_c00266{width:28.368000px;}
._16_c00266{width:30.054000px;}
._c_c00266{width:35.809200px;}
.fc2_c00266{color:transparent;}
.fc1_c00266{color:rgb(128,128,128);}
.fc0_c00266{color:rgb(0,0,0);}
.fs6_c00266{font-size:48.000000px;}
.fs2_c00266{font-size:50.400000px;}
.fs5_c00266{font-size:51.000000px;}
.fs1_c00266{font-size:63.000000px;}
.fs3_c00266{font-size:72.000000px;}
.fs0_c00266{font-size:81.000000px;}
.fs4_c00266{font-size:87.000000px;}
.y0_c00266{bottom:0.000000px;}
.y25_c00266{bottom:3.105000px;}
.y24_c00266{bottom:7.228355px;}
.y23_c00266{bottom:51.285000px;}
.y22_c00266{bottom:74.535000px;}
.y21_c00266{bottom:99.435000px;}
.y20_c00266{bottom:124.485000px;}
.y1f_c00266{bottom:148.785000px;}
.y1e_c00266{bottom:173.685000px;}
.y1d_c00266{bottom:198.135000px;}
.y1c_c00266{bottom:222.285000px;}
.y1b_c00266{bottom:246.735000px;}
.y1a_c00266{bottom:270.885000px;}
.y19_c00266{bottom:294.585000px;}
.y18_c00266{bottom:318.585000px;}
.y17_c00266{bottom:342.585000px;}
.y16_c00266{bottom:366.735000px;}
.y15_c00266{bottom:390.735000px;}
.y14_c00266{bottom:414.735000px;}
.y13_c00266{bottom:438.285000px;}
.y12_c00266{bottom:462.285000px;}
.y11_c00266{bottom:486.885000px;}
.y10_c00266{bottom:511.185000px;}
.yf_c00266{bottom:535.485000px;}
.ye_c00266{bottom:559.485000px;}
.yd_c00266{bottom:584.085000px;}
.yc_c00266{bottom:607.785000px;}
.yb_c00266{bottom:632.385000px;}
.ya_c00266{bottom:656.385000px;}
.y9_c00266{bottom:680.385000px;}
.y8_c00266{bottom:704.685000px;}
.y7_c00266{bottom:728.985000px;}
.y6_c00266{bottom:753.885000px;}
.y5_c00266{bottom:778.635000px;}
.y4_c00266{bottom:802.185000px;}
.y3_c00266{bottom:827.085000px;}
.y2_c00266{bottom:851.085000px;}
.y1_c00266{bottom:875.085000px;}
.h6_c00266{height:13.200074px;}
.h7_c00266{height:43.804688px;}
.h5_c00266{height:51.398438px;}
.h2_c00266{height:79.497070px;}
.h3_c00266{height:91.160156px;}
.h4_c00266{height:91.176000px;}
.h0_c00266{height:972.525000px;}
.h1_c00266{height:972.750000px;}
.w2_c00266{width:104.875500px;}
.w0_c00266{width:660.450000px;}
.w1_c00266{width:660.750000px;}
.x0_c00266{left:0.000000px;}
.x6_c00266{left:20.550000px;}
.x7_c00266{left:21.600000px;}
.x3_c00266{left:23.250000px;}
.x1_c00266{left:39.150000px;}
.x2_c00266{left:40.200000px;}
.x5_c00266{left:41.250000px;}
.x4_c00266{left:42.600000px;}
.x9_c00266{left:282.039230px;}
.x8_c00266{left:474.150000px;}
@media print{
.v0_c00266{vertical-align:0.000000pt;}
.ls1_c00266{letter-spacing:0.000000pt;}
.ls0_c00266{letter-spacing:4.133333pt;}
.ws3_c00266{word-spacing:-60.165333pt;}
.ws1_c00266{word-spacing:-52.608000pt;}
.ws2_c00266{word-spacing:-18.000000pt;}
.ws0_c00266{word-spacing:-2.331733pt;}
.ws4_c00266{word-spacing:-1.224000pt;}
.ws5_c00266{word-spacing:0.000000pt;}
._17_c00266{margin-left:-21.619200pt;}
._14_c00266{margin-left:-17.314667pt;}
._18_c00266{margin-left:-16.346133pt;}
._20_c00266{margin-left:-13.478400pt;}
._1e_c00266{margin-left:-11.144000pt;}
._19_c00266{margin-left:-9.881067pt;}
._1b_c00266{margin-left:-8.733333pt;}
._13_c00266{margin-left:-6.480000pt;}
._7_c00266{margin-left:-5.344000pt;}
._12_c00266{margin-left:-4.288533pt;}
._5_c00266{margin-left:-3.098667pt;}
._b_c00266{margin-left:-2.168533pt;}
._9_c00266{margin-left:-1.178133pt;}
._6_c00266{width:1.080000pt;}
._2_c00266{width:2.016000pt;}
._1_c00266{width:2.952000pt;}
._0_c00266{width:4.536000pt;}
._8_c00266{width:5.802133pt;}
._f_c00266{width:6.696000pt;}
._3_c00266{width:7.650667pt;}
._a_c00266{width:8.792000pt;}
._4_c00266{width:10.101333pt;}
._10_c00266{width:11.171200pt;}
._11_c00266{width:12.376533pt;}
._1f_c00266{width:14.210133pt;}
._15_c00266{width:15.115200pt;}
._1c_c00266{width:16.504000pt;}
._d_c00266{width:18.936000pt;}
._e_c00266{width:20.529067pt;}
._1a_c00266{width:22.187200pt;}
._1d_c00266{width:25.216000pt;}
._16_c00266{width:26.714667pt;}
._c_c00266{width:31.830400pt;}
.fs6_c00266{font-size:42.666667pt;}
.fs2_c00266{font-size:44.800000pt;}
.fs5_c00266{font-size:45.333333pt;}
.fs1_c00266{font-size:56.000000pt;}
.fs3_c00266{font-size:64.000000pt;}
.fs0_c00266{font-size:72.000000pt;}
.fs4_c00266{font-size:77.333333pt;}
.y0_c00266{bottom:0.000000pt;}
.y25_c00266{bottom:2.760000pt;}
.y24_c00266{bottom:6.425204pt;}
.y23_c00266{bottom:45.586667pt;}
.y22_c00266{bottom:66.253333pt;}
.y21_c00266{bottom:88.386667pt;}
.y20_c00266{bottom:110.653333pt;}
.y1f_c00266{bottom:132.253333pt;}
.y1e_c00266{bottom:154.386667pt;}
.y1d_c00266{bottom:176.120000pt;}
.y1c_c00266{bottom:197.586667pt;}
.y1b_c00266{bottom:219.320000pt;}
.y1a_c00266{bottom:240.786667pt;}
.y19_c00266{bottom:261.853333pt;}
.y18_c00266{bottom:283.186667pt;}
.y17_c00266{bottom:304.520000pt;}
.y16_c00266{bottom:325.986667pt;}
.y15_c00266{bottom:347.320000pt;}
.y14_c00266{bottom:368.653333pt;}
.y13_c00266{bottom:389.586667pt;}
.y12_c00266{bottom:410.920000pt;}
.y11_c00266{bottom:432.786667pt;}
.y10_c00266{bottom:454.386667pt;}
.yf_c00266{bottom:475.986667pt;}
.ye_c00266{bottom:497.320000pt;}
.yd_c00266{bottom:519.186667pt;}
.yc_c00266{bottom:540.253333pt;}
.yb_c00266{bottom:562.120000pt;}
.ya_c00266{bottom:583.453333pt;}
.y9_c00266{bottom:604.786667pt;}
.y8_c00266{bottom:626.386667pt;}
.y7_c00266{bottom:647.986667pt;}
.y6_c00266{bottom:670.120000pt;}
.y5_c00266{bottom:692.120000pt;}
.y4_c00266{bottom:713.053333pt;}
.y3_c00266{bottom:735.186667pt;}
.y2_c00266{bottom:756.520000pt;}
.y1_c00266{bottom:777.853333pt;}
.h6_c00266{height:11.733399pt;}
.h7_c00266{height:38.937500pt;}
.h5_c00266{height:45.687500pt;}
.h2_c00266{height:70.664062pt;}
.h3_c00266{height:81.031250pt;}
.h4_c00266{height:81.045333pt;}
.h0_c00266{height:864.466667pt;}
.h1_c00266{height:864.666667pt;}
.w2_c00266{width:93.222667pt;}
.w0_c00266{width:587.066667pt;}
.w1_c00266{width:587.333333pt;}
.x0_c00266{left:0.000000pt;}
.x6_c00266{left:18.266667pt;}
.x7_c00266{left:19.200000pt;}
.x3_c00266{left:20.666667pt;}
.x1_c00266{left:34.800000pt;}
.x2_c00266{left:35.733333pt;}
.x5_c00266{left:36.666667pt;}
.x4_c00266{left:37.866667pt;}
.x9_c00266{left:250.701538pt;}
.x8_c00266{left:421.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_bcb5d182eb94543e6f554271.woff2')format("woff");}.ff1_c00267{font-family:ff1_c00267;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00267;src:url('chunks/assets/font_af03e15ba0f3ae6bea997548.woff2')format("woff");}.ff2_c00267{font-family:ff2_c00267;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00267;src:url('chunks/assets/font_e783443e6dda7469e7fd7409.woff2')format("woff");}.ff3_c00267{font-family:ff3_c00267;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00267;src:url('chunks/assets/font_b865cd32fd05321874f7b562.woff2')format("woff");}.ff4_c00267{font-family:ff4_c00267;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00267;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c00267{font-family:ff5_c00267;line-height:1.219238;font-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_c00267{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m0_c00267{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00267{vertical-align:0.000000px;}
.v1_c00267{vertical-align:153.000000px;}
.ls1_c00267{letter-spacing:0.000000px;}
.ls0_c00267{letter-spacing:26.250000px;}
.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:-70.500000px;}
.ws2_c00267{word-spacing:-59.184000px;}
.ws1_c00267{word-spacing:-27.000000px;}
.ws3_c00267{word-spacing:-20.250000px;}
.ws4_c00267{word-spacing:0.000000px;}
._1d_c00267{margin-left:-25.191000px;}
._20_c00267{margin-left:-15.309000px;}
._15_c00267{margin-left:-12.474000px;}
._12_c00267{margin-left:-10.773000px;}
._e_c00267{margin-left:-9.315000px;}
._1e_c00267{margin-left:-7.884000px;}
._5_c00267{margin-left:-6.723000px;}
._2_c00267{margin-left:-5.022000px;}
._d_c00267{margin-left:-3.969000px;}
._6_c00267{margin-left:-2.835000px;}
._c_c00267{margin-left:-1.782000px;}
._1_c00267{width:1.620000px;}
._0_c00267{width:2.673000px;}
._4_c00267{width:3.726000px;}
._3_c00267{width:5.346000px;}
._a_c00267{width:6.642000px;}
._9_c00267{width:8.424000px;}
._b_c00267{width:10.206000px;}
._8_c00267{width:11.745000px;}
._11_c00267{width:13.527000px;}
._17_c00267{width:14.823000px;}
._7_c00267{width:15.957000px;}
._16_c00267{width:18.225000px;}
._19_c00267{width:19.341000px;}
._18_c00267{width:21.168000px;}
._14_c00267{width:22.923000px;}
._1a_c00267{width:31.689000px;}
._1c_c00267{width:38.718000px;}
._1b_c00267{width:40.104000px;}
._21_c00267{width:41.391000px;}
._1f_c00267{width:48.771000px;}
._f_c00267{width:62.856000px;}
._10_c00267{width:195.372000px;}
._13_c00267{width:331.614000px;}
.fc2_c00267{color:transparent;}
.fc1_c00267{color:rgb(128,128,128);}
.fc0_c00267{color:rgb(0,0,0);}
.fs5_c00267{font-size:48.000000px;}
.fs1_c00267{font-size:63.000000px;}
.fs4_c00267{font-size:72.000000px;}
.fs0_c00267{font-size:81.000000px;}
.fs3_c00267{font-size:108.000000px;}
.fs2_c00267{font-size:282.000000px;}
.y0_c00267{bottom:0.000000px;}
.y24_c00267{bottom:3.105000px;}
.y23_c00267{bottom:7.228357px;}
.y22_c00267{bottom:66.480000px;}
.y21_c00267{bottom:88.080000px;}
.y20_c00267{bottom:113.730000px;}
.y1f_c00267{bottom:138.330000px;}
.y1e_c00267{bottom:163.080000px;}
.y1d_c00267{bottom:187.080000px;}
.y1c_c00267{bottom:211.680000px;}
.y1b_c00267{bottom:236.580000px;}
.y1a_c00267{bottom:261.180000px;}
.y19_c00267{bottom:285.630000px;}
.y18_c00267{bottom:309.930000px;}
.y15_c00267{bottom:320.580000px;}
.y17_c00267{bottom:334.230000px;}
.y16_c00267{bottom:358.830000px;}
.y14_c00267{bottom:406.980000px;}
.y13_c00267{bottom:432.030000px;}
.y12_c00267{bottom:478.980000px;}
.y11_c00267{bottom:504.180000px;}
.y10_c00267{bottom:528.630000px;}
.yf_c00267{bottom:552.930000px;}
.ye_c00267{bottom:577.530000px;}
.yd_c00267{bottom:601.830000px;}
.yc_c00267{bottom:626.130000px;}
.yb_c00267{bottom:650.430000px;}
.ya_c00267{bottom:675.030000px;}
.y9_c00267{bottom:699.630000px;}
.y8_c00267{bottom:723.630000px;}
.y7_c00267{bottom:748.530000px;}
.y6_c00267{bottom:772.830000px;}
.y5_c00267{bottom:797.280000px;}
.y4_c00267{bottom:820.080000px;}
.y3_c00267{bottom:844.530000px;}
.y2_c00267{bottom:869.130000px;}
.y1_c00267{bottom:893.130000px;}
.h7_c00267{height:13.200074px;}
.h8_c00267{height:43.804688px;}
.h3_c00267{height:61.800293px;}
.h2_c00267{height:61.831055px;}
.h1_c00267{height:79.497070px;}
.h6_c00267{height:84.269531px;}
.h5_c00267{height:108.843750px;}
.h4_c00267{height:276.767578px;}
.h0_c00267{height:995.250000px;}
.w2_c00267{width:104.875500px;}
.w0_c00267{width:667.425000px;}
.w1_c00267{width:667.500000px;}
.x0_c00267{left:0.000000px;}
.x4_c00267{left:44.100000px;}
.x2_c00267{left:49.500000px;}
.x11_c00267{left:130.950000px;}
.x10_c00267{left:132.000000px;}
.xf_c00267{left:133.050000px;}
.x5_c00267{left:134.100000px;}
.x6_c00267{left:135.450000px;}
.x7_c00267{left:136.650000px;}
.x3_c00267{left:138.300000px;}
.x1_c00267{left:140.400000px;}
.x8_c00267{left:141.450000px;}
.xe_c00267{left:184.350000px;}
.x9_c00267{left:185.400000px;}
.xa_c00267{left:279.900000px;}
.x16_c00267{left:285.526749px;}
.x12_c00267{left:345.150000px;}
.x13_c00267{left:364.500000px;}
.x14_c00267{left:431.400000px;}
.xb_c00267{left:526.200000px;}
.xc_c00267{left:551.850000px;}
.x15_c00267{left:568.800000px;}
.xd_c00267{left:605.700000px;}
@media print{
.v0_c00267{vertical-align:0.000000pt;}
.v1_c00267{vertical-align:136.000000pt;}
.ls1_c00267{letter-spacing:0.000000pt;}
.ls0_c00267{letter-spacing:23.333333pt;}
.ws0_c00267{word-spacing:-62.666667pt;}
.ws2_c00267{word-spacing:-52.608000pt;}
.ws1_c00267{word-spacing:-24.000000pt;}
.ws3_c00267{word-spacing:-18.000000pt;}
.ws4_c00267{word-spacing:0.000000pt;}
._1d_c00267{margin-left:-22.392000pt;}
._20_c00267{margin-left:-13.608000pt;}
._15_c00267{margin-left:-11.088000pt;}
._12_c00267{margin-left:-9.576000pt;}
._e_c00267{margin-left:-8.280000pt;}
._1e_c00267{margin-left:-7.008000pt;}
._5_c00267{margin-left:-5.976000pt;}
._2_c00267{margin-left:-4.464000pt;}
._d_c00267{margin-left:-3.528000pt;}
._6_c00267{margin-left:-2.520000pt;}
._c_c00267{margin-left:-1.584000pt;}
._1_c00267{width:1.440000pt;}
._0_c00267{width:2.376000pt;}
._4_c00267{width:3.312000pt;}
._3_c00267{width:4.752000pt;}
._a_c00267{width:5.904000pt;}
._9_c00267{width:7.488000pt;}
._b_c00267{width:9.072000pt;}
._8_c00267{width:10.440000pt;}
._11_c00267{width:12.024000pt;}
._17_c00267{width:13.176000pt;}
._7_c00267{width:14.184000pt;}
._16_c00267{width:16.200000pt;}
._19_c00267{width:17.192000pt;}
._18_c00267{width:18.816000pt;}
._14_c00267{width:20.376000pt;}
._1a_c00267{width:28.168000pt;}
._1c_c00267{width:34.416000pt;}
._1b_c00267{width:35.648000pt;}
._21_c00267{width:36.792000pt;}
._1f_c00267{width:43.352000pt;}
._f_c00267{width:55.872000pt;}
._10_c00267{width:173.664000pt;}
._13_c00267{width:294.768000pt;}
.fs5_c00267{font-size:42.666667pt;}
.fs1_c00267{font-size:56.000000pt;}
.fs4_c00267{font-size:64.000000pt;}
.fs0_c00267{font-size:72.000000pt;}
.fs3_c00267{font-size:96.000000pt;}
.fs2_c00267{font-size:250.666667pt;}
.y0_c00267{bottom:0.000000pt;}
.y24_c00267{bottom:2.760000pt;}
.y23_c00267{bottom:6.425206pt;}
.y22_c00267{bottom:59.093333pt;}
.y21_c00267{bottom:78.293333pt;}
.y20_c00267{bottom:101.093333pt;}
.y1f_c00267{bottom:122.960000pt;}
.y1e_c00267{bottom:144.960000pt;}
.y1d_c00267{bottom:166.293333pt;}
.y1c_c00267{bottom:188.160000pt;}
.y1b_c00267{bottom:210.293333pt;}
.y1a_c00267{bottom:232.160000pt;}
.y19_c00267{bottom:253.893333pt;}
.y18_c00267{bottom:275.493333pt;}
.y15_c00267{bottom:284.960000pt;}
.y17_c00267{bottom:297.093333pt;}
.y16_c00267{bottom:318.960000pt;}
.y14_c00267{bottom:361.760000pt;}
.y13_c00267{bottom:384.026667pt;}
.y12_c00267{bottom:425.760000pt;}
.y11_c00267{bottom:448.160000pt;}
.y10_c00267{bottom:469.893333pt;}
.yf_c00267{bottom:491.493333pt;}
.ye_c00267{bottom:513.360000pt;}
.yd_c00267{bottom:534.960000pt;}
.yc_c00267{bottom:556.560000pt;}
.yb_c00267{bottom:578.160000pt;}
.ya_c00267{bottom:600.026667pt;}
.y9_c00267{bottom:621.893333pt;}
.y8_c00267{bottom:643.226667pt;}
.y7_c00267{bottom:665.360000pt;}
.y6_c00267{bottom:686.960000pt;}
.y5_c00267{bottom:708.693333pt;}
.y4_c00267{bottom:728.960000pt;}
.y3_c00267{bottom:750.693333pt;}
.y2_c00267{bottom:772.560000pt;}
.y1_c00267{bottom:793.893333pt;}
.h7_c00267{height:11.733399pt;}
.h8_c00267{height:38.937500pt;}
.h3_c00267{height:54.933594pt;}
.h2_c00267{height:54.960938pt;}
.h1_c00267{height:70.664062pt;}
.h6_c00267{height:74.906250pt;}
.h5_c00267{height:96.750000pt;}
.h4_c00267{height:246.015625pt;}
.h0_c00267{height:884.666667pt;}
.w2_c00267{width:93.222667pt;}
.w0_c00267{width:593.266667pt;}
.w1_c00267{width:593.333333pt;}
.x0_c00267{left:0.000000pt;}
.x4_c00267{left:39.200000pt;}
.x2_c00267{left:44.000000pt;}
.x11_c00267{left:116.400000pt;}
.x10_c00267{left:117.333333pt;}
.xf_c00267{left:118.266667pt;}
.x5_c00267{left:119.200000pt;}
.x6_c00267{left:120.400000pt;}
.x7_c00267{left:121.466667pt;}
.x3_c00267{left:122.933333pt;}
.x1_c00267{left:124.800000pt;}
.x8_c00267{left:125.733333pt;}
.xe_c00267{left:163.866667pt;}
.x9_c00267{left:164.800000pt;}
.xa_c00267{left:248.800000pt;}
.x16_c00267{left:253.801554pt;}
.x12_c00267{left:306.800000pt;}
.x13_c00267{left:324.000000pt;}
.x14_c00267{left:383.466667pt;}
.xb_c00267{left:467.733333pt;}
.xc_c00267{left:490.533333pt;}
.x15_c00267{left:505.600000pt;}
.xd_c00267{left:538.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_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_38373dde68740841ef1222b4.woff2')format("woff");}.ff1_c00268{font-family:ff1_c00268;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00268;src:url('chunks/assets/font_8ca1cae9751ef1992a20c520.woff2')format("woff");}.ff2_c00268{font-family:ff2_c00268;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00268;src:url('chunks/assets/font_4180c4dc15f7b938bdf2505f.woff2')format("woff");}.ff3_c00268{font-family:ff3_c00268;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00268;src:url('chunks/assets/font_cd34e9ca9d88df1185f88a5e.woff2')format("woff");}.ff4_c00268{font-family:ff4_c00268;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00268;src:url('chunks/assets/font_a731cc98e1bdb8f114802f3e.woff2')format("woff");}.ff5_c00268{font-family:ff5_c00268;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00268;src:url('chunks/assets/font_325a9039f231b58eb6843eea.woff2')format("woff");}.ff6_c00268{font-family:ff6_c00268;line-height:1.311035;font-style:normal;font-weight: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_c00268;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c00268{font-family:ff7_c00268;line-height:1.219238;font-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_c00268{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,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;}
.ls2_c00268{letter-spacing:0.000000px;}
.ls1_c00268{letter-spacing:1.602000px;}
.ls0_c00268{letter-spacing:7.500000px;}
.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:-31.500000px;}
.ws4_c00268{word-spacing:-20.250000px;}
.ws3_c00268{word-spacing:-15.624000px;}
.ws2_c00268{word-spacing:-13.737000px;}
.ws5_c00268{word-spacing:0.000000px;}
.ws0_c00268{word-spacing:2.433000px;}
._8_c00268{margin-left:-17.646000px;}
._1e_c00268{margin-left:-13.527000px;}
._4_c00268{margin-left:-11.934000px;}
._14_c00268{margin-left:-10.557000px;}
._13_c00268{margin-left:-8.943000px;}
._15_c00268{margin-left:-7.371000px;}
._c_c00268{margin-left:-5.997000px;}
._1_c00268{margin-left:-4.692000px;}
._e_c00268{margin-left:-3.510000px;}
._0_c00268{margin-left:-2.448000px;}
._5_c00268{margin-left:-1.428000px;}
._b_c00268{width:1.218000px;}
._3_c00268{width:2.244000px;}
._2_c00268{width:4.182000px;}
._9_c00268{width:5.508000px;}
._a_c00268{width:7.308000px;}
._7_c00268{width:8.364000px;}
._f_c00268{width:10.233000px;}
._10_c00268{width:11.241000px;}
._12_c00268{width:13.080000px;}
._16_c00268{width:14.232000px;}
._1c_c00268{width:15.675000px;}
._1b_c00268{width:17.133000px;}
._d_c00268{width:24.876000px;}
._1d_c00268{width:29.391000px;}
._19_c00268{width:39.690000px;}
._18_c00268{width:44.388000px;}
._17_c00268{width:63.909000px;}
._1a_c00268{width:69.255000px;}
._6_c00268{width:88.842000px;}
._11_c00268{width:329.607000px;}
.fc2_c00268{color:transparent;}
.fc1_c00268{color:rgb(128,128,128);}
.fc0_c00268{color:rgb(0,0,0);}
.fs6_c00268{font-size:48.000000px;}
.fs2_c00268{font-size:57.000000px;}
.fs4_c00268{font-size:63.000000px;}
.fs3_c00268{font-size:78.000000px;}
.fs1_c00268{font-size:81.000000px;}
.fs0_c00268{font-size:102.000000px;}
.fs5_c00268{font-size:108.000000px;}
.y0_c00268{bottom:0.000000px;}
.y26_c00268{bottom:3.105000px;}
.y25_c00268{bottom:7.228371px;}
.y24_c00268{bottom:57.015000px;}
.y23_c00268{bottom:79.665000px;}
.y22_c00268{bottom:106.365000px;}
.y21_c00268{bottom:131.715000px;}
.y20_c00268{bottom:156.165000px;}
.y1f_c00268{bottom:180.915000px;}
.y1e_c00268{bottom:205.665000px;}
.y1d_c00268{bottom:230.565000px;}
.y1c_c00268{bottom:255.165000px;}
.y1b_c00268{bottom:279.465000px;}
.y1a_c00268{bottom:304.065000px;}
.y19_c00268{bottom:328.365000px;}
.y18_c00268{bottom:352.665000px;}
.y17_c00268{bottom:376.965000px;}
.y16_c00268{bottom:400.965000px;}
.y15_c00268{bottom:424.965000px;}
.y14_c00268{bottom:448.965000px;}
.y13_c00268{bottom:472.965000px;}
.y12_c00268{bottom:497.865000px;}
.y11_c00268{bottom:521.865000px;}
.y10_c00268{bottom:546.165000px;}
.yf_c00268{bottom:570.465000px;}
.ye_c00268{bottom:595.065000px;}
.yd_c00268{bottom:619.365000px;}
.yc_c00268{bottom:643.665000px;}
.yb_c00268{bottom:667.365000px;}
.ya_c00268{bottom:691.665000px;}
.y9_c00268{bottom:716.265000px;}
.y8_c00268{bottom:740.565000px;}
.y7_c00268{bottom:764.865000px;}
.y6_c00268{bottom:788.865000px;}
.y5_c00268{bottom:813.465000px;}
.y4_c00268{bottom:838.365000px;}
.y3_c00268{bottom:863.415000px;}
.y2_c00268{bottom:886.965000px;}
.y1_c00268{bottom:921.015000px;}
.h7_c00268{height:13.200074px;}
.h8_c00268{height:43.804688px;}
.h5_c00268{height:72.168457px;}
.h3_c00268{height:79.497070px;}
.h4_c00268{height:98.756836px;}
.h2_c00268{height:100.057617px;}
.h6_c00268{height:108.843750px;}
.h0_c00268{height:989.025000px;}
.h1_c00268{height:989.250000px;}
.w1_c00268{width:104.875500px;}
.w0_c00268{width:672.000000px;}
.x0_c00268{left:0.000000px;}
.x3_c00268{left:39.450000px;}
.x2_c00268{left:40.800000px;}
.x5_c00268{left:44.850000px;}
.x4_c00268{left:46.200000px;}
.x7_c00268{left:47.250000px;}
.x6_c00268{left:48.300000px;}
.x8_c00268{left:50.550000px;}
.x9_c00268{left:51.900000px;}
.xa_c00268{left:52.950000px;}
.xb_c00268{left:54.000000px;}
.xc_c00268{left:100.950000px;}
.x1_c00268{left:200.100000px;}
.xf_c00268{left:287.814240px;}
.xd_c00268{left:466.650000px;}
.xe_c00268{left:499.800000px;}
@media print{
.v0_c00268{vertical-align:0.000000pt;}
.ls2_c00268{letter-spacing:0.000000pt;}
.ls1_c00268{letter-spacing:1.424000pt;}
.ls0_c00268{letter-spacing:6.666667pt;}
.ws1_c00268{word-spacing:-28.000000pt;}
.ws4_c00268{word-spacing:-18.000000pt;}
.ws3_c00268{word-spacing:-13.888000pt;}
.ws2_c00268{word-spacing:-12.210667pt;}
.ws5_c00268{word-spacing:0.000000pt;}
.ws0_c00268{word-spacing:2.162667pt;}
._8_c00268{margin-left:-15.685333pt;}
._1e_c00268{margin-left:-12.024000pt;}
._4_c00268{margin-left:-10.608000pt;}
._14_c00268{margin-left:-9.384000pt;}
._13_c00268{margin-left:-7.949333pt;}
._15_c00268{margin-left:-6.552000pt;}
._c_c00268{margin-left:-5.330667pt;}
._1_c00268{margin-left:-4.170667pt;}
._e_c00268{margin-left:-3.120000pt;}
._0_c00268{margin-left:-2.176000pt;}
._5_c00268{margin-left:-1.269333pt;}
._b_c00268{width:1.082667pt;}
._3_c00268{width:1.994667pt;}
._2_c00268{width:3.717333pt;}
._9_c00268{width:4.896000pt;}
._a_c00268{width:6.496000pt;}
._7_c00268{width:7.434667pt;}
._f_c00268{width:9.096000pt;}
._10_c00268{width:9.992000pt;}
._12_c00268{width:11.626667pt;}
._16_c00268{width:12.650667pt;}
._1c_c00268{width:13.933333pt;}
._1b_c00268{width:15.229333pt;}
._d_c00268{width:22.112000pt;}
._1d_c00268{width:26.125333pt;}
._19_c00268{width:35.280000pt;}
._18_c00268{width:39.456000pt;}
._17_c00268{width:56.808000pt;}
._1a_c00268{width:61.560000pt;}
._6_c00268{width:78.970667pt;}
._11_c00268{width:292.984000pt;}
.fs6_c00268{font-size:42.666667pt;}
.fs2_c00268{font-size:50.666667pt;}
.fs4_c00268{font-size:56.000000pt;}
.fs3_c00268{font-size:69.333333pt;}
.fs1_c00268{font-size:72.000000pt;}
.fs0_c00268{font-size:90.666667pt;}
.fs5_c00268{font-size:96.000000pt;}
.y0_c00268{bottom:0.000000pt;}
.y26_c00268{bottom:2.760000pt;}
.y25_c00268{bottom:6.425219pt;}
.y24_c00268{bottom:50.680000pt;}
.y23_c00268{bottom:70.813333pt;}
.y22_c00268{bottom:94.546667pt;}
.y21_c00268{bottom:117.080000pt;}
.y20_c00268{bottom:138.813333pt;}
.y1f_c00268{bottom:160.813333pt;}
.y1e_c00268{bottom:182.813333pt;}
.y1d_c00268{bottom:204.946667pt;}
.y1c_c00268{bottom:226.813333pt;}
.y1b_c00268{bottom:248.413333pt;}
.y1a_c00268{bottom:270.280000pt;}
.y19_c00268{bottom:291.880000pt;}
.y18_c00268{bottom:313.480000pt;}
.y17_c00268{bottom:335.080000pt;}
.y16_c00268{bottom:356.413333pt;}
.y15_c00268{bottom:377.746667pt;}
.y14_c00268{bottom:399.080000pt;}
.y13_c00268{bottom:420.413333pt;}
.y12_c00268{bottom:442.546667pt;}
.y11_c00268{bottom:463.880000pt;}
.y10_c00268{bottom:485.480000pt;}
.yf_c00268{bottom:507.080000pt;}
.ye_c00268{bottom:528.946667pt;}
.yd_c00268{bottom:550.546667pt;}
.yc_c00268{bottom:572.146667pt;}
.yb_c00268{bottom:593.213333pt;}
.ya_c00268{bottom:614.813333pt;}
.y9_c00268{bottom:636.680000pt;}
.y8_c00268{bottom:658.280000pt;}
.y7_c00268{bottom:679.880000pt;}
.y6_c00268{bottom:701.213333pt;}
.y5_c00268{bottom:723.080000pt;}
.y4_c00268{bottom:745.213333pt;}
.y3_c00268{bottom:767.480000pt;}
.y2_c00268{bottom:788.413333pt;}
.y1_c00268{bottom:818.680000pt;}
.h7_c00268{height:11.733399pt;}
.h8_c00268{height:38.937500pt;}
.h5_c00268{height:64.149740pt;}
.h3_c00268{height:70.664062pt;}
.h4_c00268{height:87.783854pt;}
.h2_c00268{height:88.940104pt;}
.h6_c00268{height:96.750000pt;}
.h0_c00268{height:879.133333pt;}
.h1_c00268{height:879.333333pt;}
.w1_c00268{width:93.222667pt;}
.w0_c00268{width:597.333333pt;}
.x0_c00268{left:0.000000pt;}
.x3_c00268{left:35.066667pt;}
.x2_c00268{left:36.266667pt;}
.x5_c00268{left:39.866667pt;}
.x4_c00268{left:41.066667pt;}
.x7_c00268{left:42.000000pt;}
.x6_c00268{left:42.933333pt;}
.x8_c00268{left:44.933333pt;}
.x9_c00268{left:46.133333pt;}
.xa_c00268{left:47.066667pt;}
.xb_c00268{left:48.000000pt;}
.xc_c00268{left:89.733333pt;}
.x1_c00268{left:177.866667pt;}
.xf_c00268{left:255.834880pt;}
.xd_c00268{left:414.800000pt;}
.xe_c00268{left:444.266667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_17d47f9d698b86446a4a43f4.woff2')format("woff");}.ff1_c00269{font-family:ff1_c00269;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00269;src:url('chunks/assets/font_2e3201c27080584f3dc495a1.woff2')format("woff");}.ff2_c00269{font-family:ff2_c00269;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00269;src:url('chunks/assets/font_08af5effb5c400d77cfc2437.woff2')format("woff");}.ff3_c00269{font-family:ff3_c00269;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00269;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff4_c00269{font-family:ff4_c00269;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00269;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c00269{font-family:ff5_c00269;line-height:1.219238;font-style: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;}
.ls2_c00269{letter-spacing:0.000000px;}
.ls1_c00269{letter-spacing:2.100000px;}
.ls0_c00269{letter-spacing:17.700000px;}
.sc__c00269{text-shadow:none;}
.sc0_c00269{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00269{-webkit-text-stroke:0px transparent;}
.sc0_c00269{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00269{word-spacing:-67.686000px;}
.ws0_c00269{word-spacing:-17.352000px;}
.ws2_c00269{word-spacing:0.000000px;}
._20_c00269{margin-left:-30.051000px;}
._21_c00269{margin-left:-26.730000px;}
._1d_c00269{margin-left:-20.979000px;}
._23_c00269{margin-left:-19.818000px;}
._1e_c00269{margin-left:-17.739000px;}
._10_c00269{margin-left:-15.120000px;}
._e_c00269{margin-left:-13.968000px;}
._13_c00269{margin-left:-11.208000px;}
._d_c00269{margin-left:-10.080000px;}
._f_c00269{margin-left:-7.776000px;}
._3_c00269{margin-left:-6.264000px;}
._4_c00269{margin-left:-4.536000px;}
._12_c00269{margin-left:-2.997000px;}
._9_c00269{margin-left:-1.620000px;}
._0_c00269{width:1.152000px;}
._1_c00269{width:2.592000px;}
._7_c00269{width:4.212000px;}
._b_c00269{width:5.589000px;}
._6_c00269{width:7.128000px;}
._8_c00269{width:9.072000px;}
._c_c00269{width:10.254000px;}
._17_c00269{width:11.826000px;}
._a_c00269{width:12.960000px;}
._15_c00269{width:15.360000px;}
._18_c00269{width:16.830000px;}
._1c_c00269{width:18.081000px;}
._2_c00269{width:19.224000px;}
._5_c00269{width:28.059000px;}
._16_c00269{width:37.125000px;}
._11_c00269{width:41.181000px;}
._19_c00269{width:42.192000px;}
._24_c00269{width:45.567000px;}
._1b_c00269{width:71.538000px;}
._1a_c00269{width:79.140000px;}
._27_c00269{width:139.188000px;}
._25_c00269{width:151.632000px;}
._14_c00269{width:208.152000px;}
._22_c00269{width:264.375000px;}
._1f_c00269{width:369.522000px;}
._26_c00269{width:387.666000px;}
._28_c00269{width:871.227000px;}
.fc2_c00269{color:transparent;}
.fc1_c00269{color:rgb(128,128,128);}
.fc0_c00269{color:rgb(0,0,0);}
.fs3_c00269{font-size:48.000000px;}
.fs0_c00269{font-size:72.000000px;}
.fs1_c00269{font-size:81.000000px;}
.fs2_c00269{font-size:87.000000px;}
.y0_c00269{bottom:0.000000px;}
.y25_c00269{bottom:3.105000px;}
.y24_c00269{bottom:7.228357px;}
.y23_c00269{bottom:64.530000px;}
.y22_c00269{bottom:79.980000px;}
.y21_c00269{bottom:104.730000px;}
.y20_c00269{bottom:130.230000px;}
.y1f_c00269{bottom:156.330000px;}
.y1e_c00269{bottom:180.180000px;}
.y1d_c00269{bottom:203.730000px;}
.y1c_c00269{bottom:228.480000px;}
.y1b_c00269{bottom:253.230000px;}
.y1a_c00269{bottom:278.430000px;}
.y19_c00269{bottom:303.030000px;}
.y18_c00269{bottom:327.330000px;}
.y17_c00269{bottom:352.380000px;}
.y16_c00269{bottom:376.680000px;}
.y15_c00269{bottom:401.580000px;}
.y14_c00269{bottom:425.580000px;}
.y13_c00269{bottom:450.180000px;}
.y12_c00269{bottom:475.530000px;}
.y11_c00269{bottom:499.230000px;}
.y10_c00269{bottom:523.230000px;}
.yf_c00269{bottom:547.380000px;}
.ye_c00269{bottom:573.030000px;}
.yd_c00269{bottom:597.030000px;}
.yc_c00269{bottom:620.430000px;}
.yb_c00269{bottom:646.380000px;}
.ya_c00269{bottom:669.930000px;}
.y9_c00269{bottom:693.630000px;}
.y8_c00269{bottom:717.930000px;}
.y7_c00269{bottom:742.830000px;}
.y6_c00269{bottom:767.130000px;}
.y5_c00269{bottom:792.480000px;}
.y4_c00269{bottom:815.730000px;}
.y3_c00269{bottom:839.430000px;}
.y2_c00269{bottom:862.680000px;}
.y1_c00269{bottom:887.280000px;}
.h5_c00269{height:13.200074px;}
.h6_c00269{height:43.804688px;}
.h3_c00269{height:79.497070px;}
.h1_c00269{height:84.269531px;}
.h4_c00269{height:91.160156px;}
.h2_c00269{height:91.176000px;}
.h0_c00269{height:995.250000px;}
.w2_c00269{width:104.875500px;}
.w0_c00269{width:667.425000px;}
.w1_c00269{width:667.500000px;}
.x0_c00269{left:0.000000px;}
.xc_c00269{left:27.750000px;}
.x6_c00269{left:28.950000px;}
.x7_c00269{left:30.600000px;}
.x2_c00269{left:34.050000px;}
.x1_c00269{left:36.450000px;}
.xd_c00269{left:88.800000px;}
.x10_c00269{left:110.100000px;}
.xf_c00269{left:111.750000px;}
.xe_c00269{left:116.100000px;}
.xb_c00269{left:117.900000px;}
.xa_c00269{left:119.550000px;}
.x4_c00269{left:120.750000px;}
.x9_c00269{left:122.850000px;}
.x5_c00269{left:123.900000px;}
.x3_c00269{left:125.250000px;}
.x8_c00269{left:136.650000px;}
.x11_c00269{left:285.526749px;}
@media print{
.v0_c00269{vertical-align:0.000000pt;}
.ls2_c00269{letter-spacing:0.000000pt;}
.ls1_c00269{letter-spacing:1.866667pt;}
.ls0_c00269{letter-spacing:15.733333pt;}
.ws1_c00269{word-spacing:-60.165333pt;}
.ws0_c00269{word-spacing:-15.424000pt;}
.ws2_c00269{word-spacing:0.000000pt;}
._20_c00269{margin-left:-26.712000pt;}
._21_c00269{margin-left:-23.760000pt;}
._1d_c00269{margin-left:-18.648000pt;}
._23_c00269{margin-left:-17.616000pt;}
._1e_c00269{margin-left:-15.768000pt;}
._10_c00269{margin-left:-13.440000pt;}
._e_c00269{margin-left:-12.416000pt;}
._13_c00269{margin-left:-9.962667pt;}
._d_c00269{margin-left:-8.960000pt;}
._f_c00269{margin-left:-6.912000pt;}
._3_c00269{margin-left:-5.568000pt;}
._4_c00269{margin-left:-4.032000pt;}
._12_c00269{margin-left:-2.664000pt;}
._9_c00269{margin-left:-1.440000pt;}
._0_c00269{width:1.024000pt;}
._1_c00269{width:2.304000pt;}
._7_c00269{width:3.744000pt;}
._b_c00269{width:4.968000pt;}
._6_c00269{width:6.336000pt;}
._8_c00269{width:8.064000pt;}
._c_c00269{width:9.114667pt;}
._17_c00269{width:10.512000pt;}
._a_c00269{width:11.520000pt;}
._15_c00269{width:13.653333pt;}
._18_c00269{width:14.960000pt;}
._1c_c00269{width:16.072000pt;}
._2_c00269{width:17.088000pt;}
._5_c00269{width:24.941333pt;}
._16_c00269{width:33.000000pt;}
._11_c00269{width:36.605333pt;}
._19_c00269{width:37.504000pt;}
._24_c00269{width:40.504000pt;}
._1b_c00269{width:63.589333pt;}
._1a_c00269{width:70.346667pt;}
._27_c00269{width:123.722667pt;}
._25_c00269{width:134.784000pt;}
._14_c00269{width:185.024000pt;}
._22_c00269{width:235.000000pt;}
._1f_c00269{width:328.464000pt;}
._26_c00269{width:344.592000pt;}
._28_c00269{width:774.424000pt;}
.fs3_c00269{font-size:42.666667pt;}
.fs0_c00269{font-size:64.000000pt;}
.fs1_c00269{font-size:72.000000pt;}
.fs2_c00269{font-size:77.333333pt;}
.y0_c00269{bottom:0.000000pt;}
.y25_c00269{bottom:2.760000pt;}
.y24_c00269{bottom:6.425206pt;}
.y23_c00269{bottom:57.360000pt;}
.y22_c00269{bottom:71.093333pt;}
.y21_c00269{bottom:93.093333pt;}
.y20_c00269{bottom:115.760000pt;}
.y1f_c00269{bottom:138.960000pt;}
.y1e_c00269{bottom:160.160000pt;}
.y1d_c00269{bottom:181.093333pt;}
.y1c_c00269{bottom:203.093333pt;}
.y1b_c00269{bottom:225.093333pt;}
.y1a_c00269{bottom:247.493333pt;}
.y19_c00269{bottom:269.360000pt;}
.y18_c00269{bottom:290.960000pt;}
.y17_c00269{bottom:313.226667pt;}
.y16_c00269{bottom:334.826667pt;}
.y15_c00269{bottom:356.960000pt;}
.y14_c00269{bottom:378.293333pt;}
.y13_c00269{bottom:400.160000pt;}
.y12_c00269{bottom:422.693333pt;}
.y11_c00269{bottom:443.760000pt;}
.y10_c00269{bottom:465.093333pt;}
.yf_c00269{bottom:486.560000pt;}
.ye_c00269{bottom:509.360000pt;}
.yd_c00269{bottom:530.693333pt;}
.yc_c00269{bottom:551.493333pt;}
.yb_c00269{bottom:574.560000pt;}
.ya_c00269{bottom:595.493333pt;}
.y9_c00269{bottom:616.560000pt;}
.y8_c00269{bottom:638.160000pt;}
.y7_c00269{bottom:660.293333pt;}
.y6_c00269{bottom:681.893333pt;}
.y5_c00269{bottom:704.426667pt;}
.y4_c00269{bottom:725.093333pt;}
.y3_c00269{bottom:746.160000pt;}
.y2_c00269{bottom:766.826667pt;}
.y1_c00269{bottom:788.693333pt;}
.h5_c00269{height:11.733399pt;}
.h6_c00269{height:38.937500pt;}
.h3_c00269{height:70.664062pt;}
.h1_c00269{height:74.906250pt;}
.h4_c00269{height:81.031250pt;}
.h2_c00269{height:81.045333pt;}
.h0_c00269{height:884.666667pt;}
.w2_c00269{width:93.222667pt;}
.w0_c00269{width:593.266667pt;}
.w1_c00269{width:593.333333pt;}
.x0_c00269{left:0.000000pt;}
.xc_c00269{left:24.666667pt;}
.x6_c00269{left:25.733333pt;}
.x7_c00269{left:27.200000pt;}
.x2_c00269{left:30.266667pt;}
.x1_c00269{left:32.400000pt;}
.xd_c00269{left:78.933333pt;}
.x10_c00269{left:97.866667pt;}
.xf_c00269{left:99.333333pt;}
.xe_c00269{left:103.200000pt;}
.xb_c00269{left:104.800000pt;}
.xa_c00269{left:106.266667pt;}
.x4_c00269{left:107.333333pt;}
.x9_c00269{left:109.200000pt;}
.x5_c00269{left:110.133333pt;}
.x3_c00269{left:111.333333pt;}
.x8_c00269{left:121.466667pt;}
.x11_c00269{left:253.801554pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a67c8de03650c46b20e4872b.woff2')format("woff");}.ff1_c00270{font-family:ff1_c00270;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00270;src:url('chunks/assets/font_9656a850182c0aec246732aa.woff2')format("woff");}.ff2_c00270{font-family:ff2_c00270;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00270;src:url('chunks/assets/font_2064d11f643758508a17f9e6.woff2')format("woff");}.ff3_c00270{font-family:ff3_c00270;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00270;src:url('chunks/assets/font_057f840f3e10c27ec109bddc.woff2')format("woff");}.ff4_c00270{font-family:ff4_c00270;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00270;src:url('chunks/assets/font_737cdef649043b32d2abcf87.woff2')format("woff");}.ff5_c00270{font-family:ff5_c00270;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00270;src:url('chunks/assets/font_a1e7f1830985fc47edb4438d.woff2')format("woff");}.ff6_c00270{font-family:ff6_c00270;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00270;src:url('chunks/assets/font_71851dd05dabc23cfd5c016a.woff2')format("woff");}.ff7_c00270{font-family:ff7_c00270;line-height:1.437000;font-style:normal;font-weight: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_c00270;src:url('chunks/assets/font_b39366b1db540b347c8b47bd.woff2')format("woff");}.ff8_c00270{font-family:ff8_c00270;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00270;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff9_c00270{font-family:ff9_c00270;line-height:1.219238;font-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_c00270{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,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;}
.v1_c00270{vertical-align:16.200000px;}
.ls5_c00270{letter-spacing:0.000000px;}
.ls3_c00270{letter-spacing:3.000000px;}
.ls4_c00270{letter-spacing:9.000000px;}
.ls6_c00270{letter-spacing:12.000000px;}
.ls2_c00270{letter-spacing:25.827000px;}
.ls0_c00270{letter-spacing:89.400000px;}
.ls1_c00270{letter-spacing:203.448000px;}
.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;}
}
.ws3_c00270{word-spacing:-67.686000px;}
.ws1_c00270{word-spacing:-23.832000px;}
.ws0_c00270{word-spacing:-17.352000px;}
.ws2_c00270{word-spacing:-9.000000px;}
.ws4_c00270{word-spacing:0.000000px;}
._36_c00270{margin-left:-42.930000px;}
._44_c00270{margin-left:-33.660000px;}
._20_c00270{margin-left:-31.185000px;}
._35_c00270{margin-left:-29.646000px;}
._1b_c00270{margin-left:-26.730000px;}
._28_c00270{margin-left:-25.059000px;}
._15_c00270{margin-left:-19.980000px;}
._37_c00270{margin-left:-18.948000px;}
._33_c00270{margin-left:-17.340000px;}
._24_c00270{margin-left:-15.471000px;}
._8_c00270{margin-left:-14.418000px;}
._b_c00270{margin-left:-13.332000px;}
._10_c00270{margin-left:-10.659000px;}
._d_c00270{margin-left:-9.327000px;}
._3_c00270{margin-left:-7.752000px;}
._e_c00270{margin-left:-6.723000px;}
._17_c00270{margin-left:-5.520000px;}
._c_c00270{margin-left:-4.470000px;}
._9_c00270{margin-left:-3.159000px;}
._18_c00270{margin-left:-2.106000px;}
._f_c00270{margin-left:-1.053000px;}
._11_c00270{width:1.371000px;}
._2_c00270{width:2.448000px;}
._5_c00270{width:3.774000px;}
._1_c00270{width:4.794000px;}
._0_c00270{width:6.630000px;}
._4_c00270{width:8.262000px;}
._16_c00270{width:9.882000px;}
._a_c00270{width:10.950000px;}
._12_c00270{width:12.801000px;}
._1a_c00270{width:14.841000px;}
._25_c00270{width:16.206000px;}
._7_c00270{width:18.009000px;}
._1c_c00270{width:22.827000px;}
._19_c00270{width:24.603000px;}
._14_c00270{width:31.827000px;}
._2c_c00270{width:34.674000px;}
._42_c00270{width:36.381000px;}
._32_c00270{width:41.028000px;}
._3b_c00270{width:45.624000px;}
._21_c00270{width:47.790000px;}
._31_c00270{width:49.152000px;}
._30_c00270{width:55.920000px;}
._26_c00270{width:57.282000px;}
._29_c00270{width:64.470000px;}
._3e_c00270{width:66.711000px;}
._22_c00270{width:80.754000px;}
._3a_c00270{width:88.209000px;}
._41_c00270{width:96.180000px;}
._6_c00270{width:100.416000px;}
._34_c00270{width:118.800000px;}
._2d_c00270{width:124.794000px;}
._2a_c00270{width:136.410000px;}
._39_c00270{width:147.618000px;}
._2e_c00270{width:160.719000px;}
._40_c00270{width:195.639000px;}
._2b_c00270{width:197.442000px;}
._3c_c00270{width:218.901000px;}
._43_c00270{width:236.973000px;}
._2f_c00270{width:265.563000px;}
._13_c00270{width:270.537000px;}
._3f_c00270{width:272.217000px;}
._1f_c00270{width:331.533000px;}
._27_c00270{width:383.217000px;}
._45_c00270{width:403.818000px;}
._23_c00270{width:432.459000px;}
._38_c00270{width:494.262000px;}
._1e_c00270{width:803.277000px;}
._1d_c00270{width:1033.827000px;}
._3d_c00270{width:1181.802000px;}
.fc2_c00270{color:transparent;}
.fc1_c00270{color:rgb(128,128,128);}
.fc0_c00270{color:rgb(0,0,0);}
.fs7_c00270{font-size:36.000000px;}
.fsa_c00270{font-size:48.000000px;}
.fs9_c00270{font-size:51.000000px;}
.fs6_c00270{font-size:57.600000px;}
.fs8_c00270{font-size:60.000000px;}
.fs4_c00270{font-size:66.000000px;}
.fs3_c00270{font-size:72.000000px;}
.fs2_c00270{font-size:81.000000px;}
.fs1_c00270{font-size:87.000000px;}
.fs0_c00270{font-size:102.000000px;}
.fs5_c00270{font-size:108.000000px;}
.y0_c00270{bottom:0.000000px;}
.y20_c00270{bottom:3.105000px;}
.y1f_c00270{bottom:7.228371px;}
.y1e_c00270{bottom:158.715000px;}
.y1d_c00270{bottom:173.115000px;}
.y1c_c00270{bottom:197.865000px;}
.y1b_c00270{bottom:221.115000px;}
.y1a_c00270{bottom:246.015000px;}
.y19_c00270{bottom:270.765000px;}
.y18_c00270{bottom:298.815000px;}
.y17_c00270{bottom:316.365000px;}
.y16_c00270{bottom:329.715000px;}
.y15_c00270{bottom:345.615000px;}
.y14_c00270{bottom:461.715000px;}
.y13_c00270{bottom:485.415000px;}
.y12_c00270{bottom:510.615000px;}
.y11_c00270{bottom:534.915000px;}
.y10_c00270{bottom:559.215000px;}
.yf_c00270{bottom:583.215000px;}
.ye_c00270{bottom:607.215000px;}
.yd_c00270{bottom:631.215000px;}
.yc_c00270{bottom:655.215000px;}
.yb_c00270{bottom:679.515000px;}
.ya_c00270{bottom:704.115000px;}
.y9_c00270{bottom:728.715000px;}
.y8_c00270{bottom:753.015000px;}
.y7_c00270{bottom:778.065000px;}
.y6_c00270{bottom:802.365000px;}
.y5_c00270{bottom:826.965000px;}
.y4_c00270{bottom:851.265000px;}
.y3_c00270{bottom:875.865000px;}
.y2_c00270{bottom:900.465000px;}
.y1_c00270{bottom:933.915000px;}
.h8_c00270{height:13.200074px;}
.h9_c00270{height:43.804688px;}
.h7_c00270{height:54.417000px;}
.h3_c00270{height:79.497070px;}
.h4_c00270{height:84.269531px;}
.h6_c00270{height:91.176000px;}
.h2_c00270{height:100.057617px;}
.h5_c00270{height:108.843750px;}
.h0_c00270{height:989.025000px;}
.h1_c00270{height:989.250000px;}
.w1_c00270{width:104.875500px;}
.w0_c00270{width:672.000000px;}
.x0_c00270{left:0.000000px;}
.x8_c00270{left:54.450000px;}
.x4_c00270{left:55.800000px;}
.x2_c00270{left:57.750000px;}
.x3_c00270{left:58.950000px;}
.x5_c00270{left:61.050000px;}
.x6_c00270{left:62.100000px;}
.x11_c00270{left:78.000000px;}
.x7_c00270{left:86.400000px;}
.x1_c00270{left:127.200000px;}
.x10_c00270{left:138.750000px;}
.xd_c00270{left:211.650000px;}
.xa_c00270{left:213.600000px;}
.xc_c00270{left:223.800000px;}
.xb_c00270{left:229.500000px;}
.x12_c00270{left:287.814240px;}
.xf_c00270{left:340.950000px;}
.xe_c00270{left:357.750000px;}
.x9_c00270{left:477.300000px;}
@media print{
.v0_c00270{vertical-align:0.000000pt;}
.v1_c00270{vertical-align:14.400000pt;}
.ls5_c00270{letter-spacing:0.000000pt;}
.ls3_c00270{letter-spacing:2.666667pt;}
.ls4_c00270{letter-spacing:8.000000pt;}
.ls6_c00270{letter-spacing:10.666667pt;}
.ls2_c00270{letter-spacing:22.957333pt;}
.ls0_c00270{letter-spacing:79.466667pt;}
.ls1_c00270{letter-spacing:180.842667pt;}
.ws3_c00270{word-spacing:-60.165333pt;}
.ws1_c00270{word-spacing:-21.184000pt;}
.ws0_c00270{word-spacing:-15.424000pt;}
.ws2_c00270{word-spacing:-8.000000pt;}
.ws4_c00270{word-spacing:0.000000pt;}
._36_c00270{margin-left:-38.160000pt;}
._44_c00270{margin-left:-29.920000pt;}
._20_c00270{margin-left:-27.720000pt;}
._35_c00270{margin-left:-26.352000pt;}
._1b_c00270{margin-left:-23.760000pt;}
._28_c00270{margin-left:-22.274667pt;}
._15_c00270{margin-left:-17.760000pt;}
._37_c00270{margin-left:-16.842667pt;}
._33_c00270{margin-left:-15.413333pt;}
._24_c00270{margin-left:-13.752000pt;}
._8_c00270{margin-left:-12.816000pt;}
._b_c00270{margin-left:-11.850667pt;}
._10_c00270{margin-left:-9.474667pt;}
._d_c00270{margin-left:-8.290667pt;}
._3_c00270{margin-left:-6.890667pt;}
._e_c00270{margin-left:-5.976000pt;}
._17_c00270{margin-left:-4.906667pt;}
._c_c00270{margin-left:-3.973333pt;}
._9_c00270{margin-left:-2.808000pt;}
._18_c00270{margin-left:-1.872000pt;}
._f_c00270{margin-left:-0.936000pt;}
._11_c00270{width:1.218667pt;}
._2_c00270{width:2.176000pt;}
._5_c00270{width:3.354667pt;}
._1_c00270{width:4.261333pt;}
._0_c00270{width:5.893333pt;}
._4_c00270{width:7.344000pt;}
._16_c00270{width:8.784000pt;}
._a_c00270{width:9.733333pt;}
._12_c00270{width:11.378667pt;}
._1a_c00270{width:13.192000pt;}
._25_c00270{width:14.405333pt;}
._7_c00270{width:16.008000pt;}
._1c_c00270{width:20.290667pt;}
._19_c00270{width:21.869333pt;}
._14_c00270{width:28.290667pt;}
._2c_c00270{width:30.821333pt;}
._42_c00270{width:32.338667pt;}
._32_c00270{width:36.469333pt;}
._3b_c00270{width:40.554667pt;}
._21_c00270{width:42.480000pt;}
._31_c00270{width:43.690667pt;}
._30_c00270{width:49.706667pt;}
._26_c00270{width:50.917333pt;}
._29_c00270{width:57.306667pt;}
._3e_c00270{width:59.298667pt;}
._22_c00270{width:71.781333pt;}
._3a_c00270{width:78.408000pt;}
._41_c00270{width:85.493333pt;}
._6_c00270{width:89.258667pt;}
._34_c00270{width:105.600000pt;}
._2d_c00270{width:110.928000pt;}
._2a_c00270{width:121.253333pt;}
._39_c00270{width:131.216000pt;}
._2e_c00270{width:142.861333pt;}
._40_c00270{width:173.901333pt;}
._2b_c00270{width:175.504000pt;}
._3c_c00270{width:194.578667pt;}
._43_c00270{width:210.642667pt;}
._2f_c00270{width:236.056000pt;}
._13_c00270{width:240.477333pt;}
._3f_c00270{width:241.970667pt;}
._1f_c00270{width:294.696000pt;}
._27_c00270{width:340.637333pt;}
._45_c00270{width:358.949333pt;}
._23_c00270{width:384.408000pt;}
._38_c00270{width:439.344000pt;}
._1e_c00270{width:714.024000pt;}
._1d_c00270{width:918.957333pt;}
._3d_c00270{width:1050.490667pt;}
.fs7_c00270{font-size:32.000000pt;}
.fsa_c00270{font-size:42.666667pt;}
.fs9_c00270{font-size:45.333333pt;}
.fs6_c00270{font-size:51.200000pt;}
.fs8_c00270{font-size:53.333333pt;}
.fs4_c00270{font-size:58.666667pt;}
.fs3_c00270{font-size:64.000000pt;}
.fs2_c00270{font-size:72.000000pt;}
.fs1_c00270{font-size:77.333333pt;}
.fs0_c00270{font-size:90.666667pt;}
.fs5_c00270{font-size:96.000000pt;}
.y0_c00270{bottom:0.000000pt;}
.y20_c00270{bottom:2.760000pt;}
.y1f_c00270{bottom:6.425219pt;}
.y1e_c00270{bottom:141.080000pt;}
.y1d_c00270{bottom:153.880000pt;}
.y1c_c00270{bottom:175.880000pt;}
.y1b_c00270{bottom:196.546667pt;}
.y1a_c00270{bottom:218.680000pt;}
.y19_c00270{bottom:240.680000pt;}
.y18_c00270{bottom:265.613333pt;}
.y17_c00270{bottom:281.213333pt;}
.y16_c00270{bottom:293.080000pt;}
.y15_c00270{bottom:307.213333pt;}
.y14_c00270{bottom:410.413333pt;}
.y13_c00270{bottom:431.480000pt;}
.y12_c00270{bottom:453.880000pt;}
.y11_c00270{bottom:475.480000pt;}
.y10_c00270{bottom:497.080000pt;}
.yf_c00270{bottom:518.413333pt;}
.ye_c00270{bottom:539.746667pt;}
.yd_c00270{bottom:561.080000pt;}
.yc_c00270{bottom:582.413333pt;}
.yb_c00270{bottom:604.013333pt;}
.ya_c00270{bottom:625.880000pt;}
.y9_c00270{bottom:647.746667pt;}
.y8_c00270{bottom:669.346667pt;}
.y7_c00270{bottom:691.613333pt;}
.y6_c00270{bottom:713.213333pt;}
.y5_c00270{bottom:735.080000pt;}
.y4_c00270{bottom:756.680000pt;}
.y3_c00270{bottom:778.546667pt;}
.y2_c00270{bottom:800.413333pt;}
.y1_c00270{bottom:830.146667pt;}
.h8_c00270{height:11.733399pt;}
.h9_c00270{height:38.937500pt;}
.h7_c00270{height:48.370667pt;}
.h3_c00270{height:70.664062pt;}
.h4_c00270{height:74.906250pt;}
.h6_c00270{height:81.045333pt;}
.h2_c00270{height:88.940104pt;}
.h5_c00270{height:96.750000pt;}
.h0_c00270{height:879.133333pt;}
.h1_c00270{height:879.333333pt;}
.w1_c00270{width:93.222667pt;}
.w0_c00270{width:597.333333pt;}
.x0_c00270{left:0.000000pt;}
.x8_c00270{left:48.400000pt;}
.x4_c00270{left:49.600000pt;}
.x2_c00270{left:51.333333pt;}
.x3_c00270{left:52.400000pt;}
.x5_c00270{left:54.266667pt;}
.x6_c00270{left:55.200000pt;}
.x11_c00270{left:69.333333pt;}
.x7_c00270{left:76.800000pt;}
.x1_c00270{left:113.066667pt;}
.x10_c00270{left:123.333333pt;}
.xd_c00270{left:188.133333pt;}
.xa_c00270{left:189.866667pt;}
.xc_c00270{left:198.933333pt;}
.xb_c00270{left:204.000000pt;}
.x12_c00270{left:255.834880pt;}
.xf_c00270{left:303.066667pt;}
.xe_c00270{left:318.000000pt;}
.x9_c00270{left:424.266667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_4db9ccafdcd8f9cebded9277.woff2')format("woff");}.ff1_c00271{font-family:ff1_c00271;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00271;src:url('chunks/assets/font_03caa93e5f855f81d52d1be0.woff2')format("woff");}.ff2_c00271{font-family:ff2_c00271;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00271;src:url('chunks/assets/font_5ce4f3933dd4dd255466edf9.woff2')format("woff");}.ff3_c00271{font-family:ff3_c00271;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00271;src:url('chunks/assets/font_5ea81b66095b79b9e73fd4bb.woff2')format("woff");}.ff4_c00271{font-family:ff4_c00271;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00271;src:url('chunks/assets/font_a1c1573ed8f8bd564bb13f21.woff2')format("woff");}.ff5_c00271{font-family:ff5_c00271;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00271;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c00271{font-family:ff6_c00271;line-height:1.219238;font-style: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;}
.ls8_c00271{letter-spacing:-3.000000px;}
.ls5_c00271{letter-spacing:0.000000px;}
.ls7_c00271{letter-spacing:3.000000px;}
.ls2_c00271{letter-spacing:15.000000px;}
.ls1_c00271{letter-spacing:20.700000px;}
.ls6_c00271{letter-spacing:21.000000px;}
.ls4_c00271{letter-spacing:30.000000px;}
.ls3_c00271{letter-spacing:51.000000px;}
.ls0_c00271{letter-spacing:100.320000px;}
.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:-132.132000px;}
.ws1_c00271{word-spacing:-86.100000px;}
.ws2_c00271{word-spacing:-59.184000px;}
.ws3_c00271{word-spacing:-16.500000px;}
.ws4_c00271{word-spacing:0.000000px;}
._0_c00271{margin-left:-99.396000px;}
._1b_c00271{margin-left:-18.678000px;}
._3_c00271{margin-left:-11.628000px;}
._1d_c00271{margin-left:-8.601000px;}
._e_c00271{margin-left:-6.720000px;}
._15_c00271{margin-left:-4.236000px;}
._19_c00271{margin-left:-3.084000px;}
._1a_c00271{margin-left:-1.284000px;}
._18_c00271{width:1.014000px;}
._6_c00271{width:2.016000px;}
._8_c00271{width:3.600000px;}
._5_c00271{width:5.304000px;}
._4_c00271{width:6.324000px;}
._b_c00271{width:7.770000px;}
._11_c00271{width:8.991000px;}
._10_c00271{width:10.059000px;}
._14_c00271{width:12.069000px;}
._d_c00271{width:13.134000px;}
._c_c00271{width:14.394000px;}
._13_c00271{width:16.248000px;}
._f_c00271{width:17.319000px;}
._a_c00271{width:19.176000px;}
._2_c00271{width:20.298000px;}
._1_c00271{width:21.318000px;}
._12_c00271{width:26.229000px;}
._16_c00271{width:30.000000px;}
._7_c00271{width:61.200000px;}
._9_c00271{width:81.504000px;}
._17_c00271{width:137.580000px;}
._1e_c00271{width:150.222000px;}
._1c_c00271{width:183.837000px;}
.fc2_c00271{color:transparent;}
.fc1_c00271{color:rgb(128,128,128);}
.fc0_c00271{color:rgb(0,0,0);}
.fs9_c00271{font-size:48.000000px;}
.fs4_c00271{font-size:60.000000px;}
.fs8_c00271{font-size:66.000000px;}
.fs7_c00271{font-size:72.000000px;}
.fs3_c00271{font-size:81.000000px;}
.fs6_c00271{font-size:84.000000px;}
.fs5_c00271{font-size:90.000000px;}
.fs1_c00271{font-size:102.000000px;}
.fs0_c00271{font-size:132.000000px;}
.fs2_c00271{font-size:144.000000px;}
.y0_c00271{bottom:0.000000px;}
.y1f_c00271{bottom:3.105000px;}
.y1e_c00271{bottom:7.228357px;}
.y1c_c00271{bottom:65.580000px;}
.y1b_c00271{bottom:90.180000px;}
.y1a_c00271{bottom:116.730000px;}
.y19_c00271{bottom:141.780000px;}
.y18_c00271{bottom:166.380000px;}
.y17_c00271{bottom:190.980000px;}
.y16_c00271{bottom:215.730000px;}
.y15_c00271{bottom:240.330000px;}
.y14_c00271{bottom:264.630000px;}
.y13_c00271{bottom:289.230000px;}
.y12_c00271{bottom:313.980000px;}
.y11_c00271{bottom:338.880000px;}
.y10_c00271{bottom:362.430000px;}
.yf_c00271{bottom:387.480000px;}
.y1d_c00271{bottom:402.030000px;}
.ye_c00271{bottom:412.080000px;}
.yd_c00271{bottom:436.680000px;}
.yc_c00271{bottom:461.730000px;}
.yb_c00271{bottom:485.280000px;}
.ya_c00271{bottom:510.630000px;}
.y9_c00271{bottom:534.330000px;}
.y8_c00271{bottom:590.730000px;}
.y7_c00271{bottom:620.430000px;}
.y6_c00271{bottom:674.430000px;}
.y5_c00271{bottom:702.630000px;}
.y4_c00271{bottom:731.430000px;}
.y3_c00271{bottom:764.880000px;}
.y2_c00271{bottom:818.880000px;}
.y1_c00271{bottom:890.730000px;}
.h7_c00271{height:13.200074px;}
.h8_c00271{height:43.804688px;}
.h4_c00271{height:79.497070px;}
.h6_c00271{height:84.269531px;}
.h5_c00271{height:88.286133px;}
.h2_c00271{height:104.839927px;}
.h1_c00271{height:167.126953px;}
.h3_c00271{height:182.320312px;}
.h0_c00271{height:995.250000px;}
.w2_c00271{width:104.875500px;}
.w0_c00271{width:667.425000px;}
.w1_c00271{width:667.500000px;}
.x0_c00271{left:0.000000px;}
.xc_c00271{left:36.750000px;}
.x14_c00271{left:38.250000px;}
.xf_c00271{left:79.650000px;}
.x12_c00271{left:126.000000px;}
.x11_c00271{left:127.350000px;}
.xe_c00271{left:128.550000px;}
.xd_c00271{left:129.600000px;}
.x4_c00271{left:133.350000px;}
.x3_c00271{left:134.700000px;}
.x1_c00271{left:145.200000px;}
.x5_c00271{left:168.750000px;}
.x10_c00271{left:183.000000px;}
.x2_c00271{left:215.700000px;}
.x8_c00271{left:273.000000px;}
.x15_c00271{left:285.526749px;}
.x6_c00271{left:290.250000px;}
.xb_c00271{left:296.100000px;}
.xa_c00271{left:298.050000px;}
.x9_c00271{left:299.250000px;}
.x7_c00271{left:422.850000px;}
.x13_c00271{left:573.000000px;}
@media print{
.v0_c00271{vertical-align:0.000000pt;}
.ls8_c00271{letter-spacing:-2.666667pt;}
.ls5_c00271{letter-spacing:0.000000pt;}
.ls7_c00271{letter-spacing:2.666667pt;}
.ls2_c00271{letter-spacing:13.333333pt;}
.ls1_c00271{letter-spacing:18.400000pt;}
.ls6_c00271{letter-spacing:18.666667pt;}
.ls4_c00271{letter-spacing:26.666667pt;}
.ls3_c00271{letter-spacing:45.333333pt;}
.ls0_c00271{letter-spacing:89.173333pt;}
.ws0_c00271{word-spacing:-117.450667pt;}
.ws1_c00271{word-spacing:-76.533333pt;}
.ws2_c00271{word-spacing:-52.608000pt;}
.ws3_c00271{word-spacing:-14.666667pt;}
.ws4_c00271{word-spacing:0.000000pt;}
._0_c00271{margin-left:-88.352000pt;}
._1b_c00271{margin-left:-16.602667pt;}
._3_c00271{margin-left:-10.336000pt;}
._1d_c00271{margin-left:-7.645333pt;}
._e_c00271{margin-left:-5.973333pt;}
._15_c00271{margin-left:-3.765333pt;}
._19_c00271{margin-left:-2.741333pt;}
._1a_c00271{margin-left:-1.141333pt;}
._18_c00271{width:0.901333pt;}
._6_c00271{width:1.792000pt;}
._8_c00271{width:3.200000pt;}
._5_c00271{width:4.714667pt;}
._4_c00271{width:5.621333pt;}
._b_c00271{width:6.906667pt;}
._11_c00271{width:7.992000pt;}
._10_c00271{width:8.941333pt;}
._14_c00271{width:10.728000pt;}
._d_c00271{width:11.674667pt;}
._c_c00271{width:12.794667pt;}
._13_c00271{width:14.442667pt;}
._f_c00271{width:15.394667pt;}
._a_c00271{width:17.045333pt;}
._2_c00271{width:18.042667pt;}
._1_c00271{width:18.949333pt;}
._12_c00271{width:23.314667pt;}
._16_c00271{width:26.666667pt;}
._7_c00271{width:54.400000pt;}
._9_c00271{width:72.448000pt;}
._17_c00271{width:122.293333pt;}
._1e_c00271{width:133.530667pt;}
._1c_c00271{width:163.410667pt;}
.fs9_c00271{font-size:42.666667pt;}
.fs4_c00271{font-size:53.333333pt;}
.fs8_c00271{font-size:58.666667pt;}
.fs7_c00271{font-size:64.000000pt;}
.fs3_c00271{font-size:72.000000pt;}
.fs6_c00271{font-size:74.666667pt;}
.fs5_c00271{font-size:80.000000pt;}
.fs1_c00271{font-size:90.666667pt;}
.fs0_c00271{font-size:117.333333pt;}
.fs2_c00271{font-size:128.000000pt;}
.y0_c00271{bottom:0.000000pt;}
.y1f_c00271{bottom:2.760000pt;}
.y1e_c00271{bottom:6.425206pt;}
.y1c_c00271{bottom:58.293333pt;}
.y1b_c00271{bottom:80.160000pt;}
.y1a_c00271{bottom:103.760000pt;}
.y19_c00271{bottom:126.026667pt;}
.y18_c00271{bottom:147.893333pt;}
.y17_c00271{bottom:169.760000pt;}
.y16_c00271{bottom:191.760000pt;}
.y15_c00271{bottom:213.626667pt;}
.y14_c00271{bottom:235.226667pt;}
.y13_c00271{bottom:257.093333pt;}
.y12_c00271{bottom:279.093333pt;}
.y11_c00271{bottom:301.226667pt;}
.y10_c00271{bottom:322.160000pt;}
.yf_c00271{bottom:344.426667pt;}
.y1d_c00271{bottom:357.360000pt;}
.ye_c00271{bottom:366.293333pt;}
.yd_c00271{bottom:388.160000pt;}
.yc_c00271{bottom:410.426667pt;}
.yb_c00271{bottom:431.360000pt;}
.ya_c00271{bottom:453.893333pt;}
.y9_c00271{bottom:474.960000pt;}
.y8_c00271{bottom:525.093333pt;}
.y7_c00271{bottom:551.493333pt;}
.y6_c00271{bottom:599.493333pt;}
.y5_c00271{bottom:624.560000pt;}
.y4_c00271{bottom:650.160000pt;}
.y3_c00271{bottom:679.893333pt;}
.y2_c00271{bottom:727.893333pt;}
.y1_c00271{bottom:791.760000pt;}
.h7_c00271{height:11.733399pt;}
.h8_c00271{height:38.937500pt;}
.h4_c00271{height:70.664062pt;}
.h6_c00271{height:74.906250pt;}
.h5_c00271{height:78.476562pt;}
.h2_c00271{height:93.191046pt;}
.h1_c00271{height:148.557292pt;}
.h3_c00271{height:162.062500pt;}
.h0_c00271{height:884.666667pt;}
.w2_c00271{width:93.222667pt;}
.w0_c00271{width:593.266667pt;}
.w1_c00271{width:593.333333pt;}
.x0_c00271{left:0.000000pt;}
.xc_c00271{left:32.666667pt;}
.x14_c00271{left:34.000000pt;}
.xf_c00271{left:70.800000pt;}
.x12_c00271{left:112.000000pt;}
.x11_c00271{left:113.200000pt;}
.xe_c00271{left:114.266667pt;}
.xd_c00271{left:115.200000pt;}
.x4_c00271{left:118.533333pt;}
.x3_c00271{left:119.733333pt;}
.x1_c00271{left:129.066667pt;}
.x5_c00271{left:150.000000pt;}
.x10_c00271{left:162.666667pt;}
.x2_c00271{left:191.733333pt;}
.x8_c00271{left:242.666667pt;}
.x15_c00271{left:253.801554pt;}
.x6_c00271{left:258.000000pt;}
.xb_c00271{left:263.200000pt;}
.xa_c00271{left:264.933333pt;}
.x9_c00271{left:266.000000pt;}
.x7_c00271{left:375.866667pt;}
.x13_c00271{left:509.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_68f596c3e1d7c268b70e0a20.woff2')format("woff");}.ff1_c00272{font-family:ff1_c00272;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00272;src:url('chunks/assets/font_bbf7b910d1e8c1112dd48e86.woff2')format("woff");}.ff2_c00272{font-family:ff2_c00272;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00272;src:url('chunks/assets/font_ef04648fb0116f4dc323d6d4.woff2')format("woff");}.ff3_c00272{font-family:ff3_c00272;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00272;src:url('chunks/assets/font_f7c14414f4dc61811aa0b0a5.woff2')format("woff");}.ff4_c00272{font-family:ff4_c00272;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00272;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff5_c00272{font-family:ff5_c00272;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00272;src:url('chunks/assets/font_9378ad1a27f24808027ddd36.woff2')format("woff");}.ff6_c00272{font-family:ff6_c00272;line-height:1.437000;font-style:normal;font-weight: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_c00272;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c00272{font-family:ff7_c00272;line-height:1.219238;font-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_c00272{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,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;}
.ls2_c00272{letter-spacing:0.000000px;}
.ls0_c00272{letter-spacing:3.000000px;}
.ls1_c00272{letter-spacing:9.000000px;}
.sc__c00272{text-shadow:none;}
.sc0_c00272{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00272{-webkit-text-stroke:0px transparent;}
.sc0_c00272{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00272{word-spacing:-67.686000px;}
.ws0_c00272{word-spacing:-17.352000px;}
.ws2_c00272{word-spacing:0.000000px;}
._c_c00272{margin-left:-25.491000px;}
._6_c00272{margin-left:-18.564000px;}
._4_c00272{margin-left:-11.220000px;}
._7_c00272{margin-left:-8.160000px;}
._2_c00272{margin-left:-6.222000px;}
._17_c00272{margin-left:-4.452000px;}
._5_c00272{margin-left:-3.162000px;}
._3_c00272{margin-left:-2.040000px;}
._11_c00272{margin-left:-1.005000px;}
._1_c00272{width:1.020000px;}
._0_c00272{width:2.142000px;}
._8_c00272{width:3.162000px;}
._9_c00272{width:4.284000px;}
._e_c00272{width:5.286000px;}
._d_c00272{width:6.729000px;}
._b_c00272{width:8.049000px;}
._16_c00272{width:9.102000px;}
._13_c00272{width:10.653000px;}
._f_c00272{width:12.279000px;}
._14_c00272{width:13.857000px;}
._10_c00272{width:15.684000px;}
._1a_c00272{width:17.106000px;}
._1c_c00272{width:19.110000px;}
._15_c00272{width:23.592000px;}
._1b_c00272{width:29.307000px;}
._12_c00272{width:30.408000px;}
._19_c00272{width:34.713000px;}
._a_c00272{width:49.980000px;}
._1d_c00272{width:323.244000px;}
._18_c00272{width:331.926000px;}
.fc2_c00272{color:transparent;}
.fc1_c00272{color:rgb(128,128,128);}
.fc0_c00272{color:rgb(0,0,0);}
.fs7_c00272{font-size:48.000000px;}
.fs3_c00272{font-size:72.000000px;}
.fs2_c00272{font-size:81.000000px;}
.fs4_c00272{font-size:84.000000px;}
.fs1_c00272{font-size:87.000000px;}
.fs0_c00272{font-size:102.000000px;}
.fs5_c00272{font-size:105.000000px;}
.fs6_c00272{font-size:108.000000px;}
.y0_c00272{bottom:0.000000px;}
.y26_c00272{bottom:3.105000px;}
.y25_c00272{bottom:7.228363px;}
.y24_c00272{bottom:64.350000px;}
.y23_c00272{bottom:89.100000px;}
.y22_c00272{bottom:114.000000px;}
.y21_c00272{bottom:139.800000px;}
.y20_c00272{bottom:165.000000px;}
.y1f_c00272{bottom:189.600000px;}
.y1e_c00272{bottom:214.200000px;}
.y1d_c00272{bottom:238.950000px;}
.y1c_c00272{bottom:263.850000px;}
.y1b_c00272{bottom:288.300000px;}
.y1a_c00272{bottom:313.200000px;}
.y19_c00272{bottom:337.500000px;}
.y18_c00272{bottom:361.800000px;}
.y17_c00272{bottom:386.100000px;}
.y16_c00272{bottom:410.100000px;}
.y15_c00272{bottom:434.100000px;}
.y14_c00272{bottom:458.100000px;}
.y13_c00272{bottom:482.400000px;}
.y12_c00272{bottom:508.050000px;}
.y11_c00272{bottom:531.900000px;}
.y10_c00272{bottom:556.200000px;}
.yf_c00272{bottom:580.500000px;}
.ye_c00272{bottom:605.850000px;}
.yd_c00272{bottom:629.550000px;}
.yc_c00272{bottom:653.850000px;}
.yb_c00272{bottom:678.150000px;}
.ya_c00272{bottom:703.350000px;}
.y9_c00272{bottom:727.950000px;}
.y8_c00272{bottom:751.650000px;}
.y7_c00272{bottom:776.550000px;}
.y6_c00272{bottom:801.300000px;}
.y5_c00272{bottom:825.300000px;}
.y4_c00272{bottom:850.050000px;}
.y3_c00272{bottom:874.800000px;}
.y2_c00272{bottom:899.400000px;}
.y1_c00272{bottom:935.850000px;}
.ha_c00272{height:13.200074px;}
.hb_c00272{height:43.804688px;}
.h4_c00272{height:79.497070px;}
.h5_c00272{height:82.441406px;}
.h6_c00272{height:84.269531px;}
.h3_c00272{height:91.160156px;}
.h7_c00272{height:91.176000px;}
.h2_c00272{height:100.057617px;}
.h9_c00272{height:108.843750px;}
.h8_c00272{height:122.893066px;}
.h0_c00272{height:980.100000px;}
.h1_c00272{height:980.250000px;}
.w2_c00272{width:104.875500px;}
.w0_c00272{width:665.850000px;}
.w1_c00272{width:666.000000px;}
.x0_c00272{left:0.000000px;}
.x2_c00272{left:52.650000px;}
.x3_c00272{left:54.300000px;}
.x4_c00272{left:56.400000px;}
.x5_c00272{left:58.050000px;}
.x6_c00272{left:59.400000px;}
.x7_c00272{left:61.050000px;}
.x8_c00272{left:62.550000px;}
.x9_c00272{left:63.750000px;}
.xa_c00272{left:64.800000px;}
.xb_c00272{left:65.850000px;}
.x1_c00272{left:72.000000px;}
.xe_c00272{left:284.739258px;}
.xc_c00272{left:418.800000px;}
.xd_c00272{left:436.500000px;}
@media print{
.v0_c00272{vertical-align:0.000000pt;}
.ls2_c00272{letter-spacing:0.000000pt;}
.ls0_c00272{letter-spacing:2.666667pt;}
.ls1_c00272{letter-spacing:8.000000pt;}
.ws1_c00272{word-spacing:-60.165333pt;}
.ws0_c00272{word-spacing:-15.424000pt;}
.ws2_c00272{word-spacing:0.000000pt;}
._c_c00272{margin-left:-22.658667pt;}
._6_c00272{margin-left:-16.501333pt;}
._4_c00272{margin-left:-9.973333pt;}
._7_c00272{margin-left:-7.253333pt;}
._2_c00272{margin-left:-5.530667pt;}
._17_c00272{margin-left:-3.957333pt;}
._5_c00272{margin-left:-2.810667pt;}
._3_c00272{margin-left:-1.813333pt;}
._11_c00272{margin-left:-0.893333pt;}
._1_c00272{width:0.906667pt;}
._0_c00272{width:1.904000pt;}
._8_c00272{width:2.810667pt;}
._9_c00272{width:3.808000pt;}
._e_c00272{width:4.698667pt;}
._d_c00272{width:5.981333pt;}
._b_c00272{width:7.154667pt;}
._16_c00272{width:8.090667pt;}
._13_c00272{width:9.469333pt;}
._f_c00272{width:10.914667pt;}
._14_c00272{width:12.317333pt;}
._10_c00272{width:13.941333pt;}
._1a_c00272{width:15.205333pt;}
._1c_c00272{width:16.986667pt;}
._15_c00272{width:20.970667pt;}
._1b_c00272{width:26.050667pt;}
._12_c00272{width:27.029333pt;}
._19_c00272{width:30.856000pt;}
._a_c00272{width:44.426667pt;}
._1d_c00272{width:287.328000pt;}
._18_c00272{width:295.045333pt;}
.fs7_c00272{font-size:42.666667pt;}
.fs3_c00272{font-size:64.000000pt;}
.fs2_c00272{font-size:72.000000pt;}
.fs4_c00272{font-size:74.666667pt;}
.fs1_c00272{font-size:77.333333pt;}
.fs0_c00272{font-size:90.666667pt;}
.fs5_c00272{font-size:93.333333pt;}
.fs6_c00272{font-size:96.000000pt;}
.y0_c00272{bottom:0.000000pt;}
.y26_c00272{bottom:2.760000pt;}
.y25_c00272{bottom:6.425212pt;}
.y24_c00272{bottom:57.200000pt;}
.y23_c00272{bottom:79.200000pt;}
.y22_c00272{bottom:101.333333pt;}
.y21_c00272{bottom:124.266667pt;}
.y20_c00272{bottom:146.666667pt;}
.y1f_c00272{bottom:168.533333pt;}
.y1e_c00272{bottom:190.400000pt;}
.y1d_c00272{bottom:212.400000pt;}
.y1c_c00272{bottom:234.533333pt;}
.y1b_c00272{bottom:256.266667pt;}
.y1a_c00272{bottom:278.400000pt;}
.y19_c00272{bottom:300.000000pt;}
.y18_c00272{bottom:321.600000pt;}
.y17_c00272{bottom:343.200000pt;}
.y16_c00272{bottom:364.533333pt;}
.y15_c00272{bottom:385.866667pt;}
.y14_c00272{bottom:407.200000pt;}
.y13_c00272{bottom:428.800000pt;}
.y12_c00272{bottom:451.600000pt;}
.y11_c00272{bottom:472.800000pt;}
.y10_c00272{bottom:494.400000pt;}
.yf_c00272{bottom:516.000000pt;}
.ye_c00272{bottom:538.533333pt;}
.yd_c00272{bottom:559.600000pt;}
.yc_c00272{bottom:581.200000pt;}
.yb_c00272{bottom:602.800000pt;}
.ya_c00272{bottom:625.200000pt;}
.y9_c00272{bottom:647.066667pt;}
.y8_c00272{bottom:668.133333pt;}
.y7_c00272{bottom:690.266667pt;}
.y6_c00272{bottom:712.266667pt;}
.y5_c00272{bottom:733.600000pt;}
.y4_c00272{bottom:755.600000pt;}
.y3_c00272{bottom:777.600000pt;}
.y2_c00272{bottom:799.466667pt;}
.y1_c00272{bottom:831.866667pt;}
.ha_c00272{height:11.733399pt;}
.hb_c00272{height:38.937500pt;}
.h4_c00272{height:70.664062pt;}
.h5_c00272{height:73.281250pt;}
.h6_c00272{height:74.906250pt;}
.h3_c00272{height:81.031250pt;}
.h7_c00272{height:81.045333pt;}
.h2_c00272{height:88.940104pt;}
.h9_c00272{height:96.750000pt;}
.h8_c00272{height:109.238281pt;}
.h0_c00272{height:871.200000pt;}
.h1_c00272{height:871.333333pt;}
.w2_c00272{width:93.222667pt;}
.w0_c00272{width:591.866667pt;}
.w1_c00272{width:592.000000pt;}
.x0_c00272{left:0.000000pt;}
.x2_c00272{left:46.800000pt;}
.x3_c00272{left:48.266667pt;}
.x4_c00272{left:50.133333pt;}
.x5_c00272{left:51.600000pt;}
.x6_c00272{left:52.800000pt;}
.x7_c00272{left:54.266667pt;}
.x8_c00272{left:55.600000pt;}
.x9_c00272{left:56.666667pt;}
.xa_c00272{left:57.600000pt;}
.xb_c00272{left:58.533333pt;}
.x1_c00272{left:64.000000pt;}
.xe_c00272{left:253.101563pt;}
.xc_c00272{left:372.266667pt;}
.xd_c00272{left:388.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_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_d817a96abff683d29fc17a74.woff2')format("woff");}.ff1_c00273{font-family:ff1_c00273;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00273;src:url('chunks/assets/font_aec71f0bce15ffc0b46225bc.woff2')format("woff");}.ff2_c00273{font-family:ff2_c00273;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00273;src:url('chunks/assets/font_ae6bcd0395f178cd0c02e957.woff2')format("woff");}.ff3_c00273{font-family:ff3_c00273;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00273;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff4_c00273{font-family:ff4_c00273;line-height:1.219238;font-style: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;}
.ls3_c00273{letter-spacing:0.000000px;}
.ls0_c00273{letter-spacing:0.900000px;}
.ls1_c00273{letter-spacing:3.000000px;}
.ls2_c00273{letter-spacing:338.400000px;}
.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;}
}
.ws1_c00273{word-spacing:-67.686000px;}
.ws2_c00273{word-spacing:-20.250000px;}
.ws3_c00273{word-spacing:0.000000px;}
.ws0_c00273{word-spacing:25.368000px;}
._10_c00273{margin-left:-12.717000px;}
._12_c00273{margin-left:-10.044000px;}
._13_c00273{margin-left:-8.847000px;}
._c_c00273{margin-left:-7.695000px;}
._b_c00273{margin-left:-6.237000px;}
._9_c00273{margin-left:-4.941000px;}
._2_c00273{margin-left:-2.997000px;}
._4_c00273{margin-left:-1.458000px;}
._0_c00273{width:1.782000px;}
._1_c00273{width:3.159000px;}
._3_c00273{width:4.860000px;}
._8_c00273{width:6.642000px;}
._d_c00273{width:7.695000px;}
._5_c00273{width:8.829000px;}
._a_c00273{width:9.882000px;}
._7_c00273{width:11.421000px;}
._6_c00273{width:12.636000px;}
._14_c00273{width:14.436000px;}
._11_c00273{width:17.172000px;}
._f_c00273{width:30.861000px;}
._e_c00273{width:112.287000px;}
.fc2_c00273{color:transparent;}
.fc1_c00273{color:rgb(128,128,128);}
.fc0_c00273{color:rgb(0,0,0);}
.fs4_c00273{font-size:48.000000px;}
.fs2_c00273{font-size:75.000000px;}
.fs0_c00273{font-size:81.000000px;}
.fs3_c00273{font-size:84.000000px;}
.fs1_c00273{font-size:87.000000px;}
.y0_c00273{bottom:0.000000px;}
.y25_c00273{bottom:3.105000px;}
.y24_c00273{bottom:7.228363px;}
.y23_c00273{bottom:34.050000px;}
.y22_c00273{bottom:56.700000px;}
.y21_c00273{bottom:82.050000px;}
.y20_c00273{bottom:107.100000px;}
.y1f_c00273{bottom:133.050000px;}
.y1e_c00273{bottom:156.600000px;}
.y1d_c00273{bottom:180.600000px;}
.y1c_c00273{bottom:204.900000px;}
.y1b_c00273{bottom:229.950000px;}
.y1a_c00273{bottom:254.250000px;}
.y19_c00273{bottom:278.550000px;}
.y18_c00273{bottom:303.450000px;}
.y17_c00273{bottom:328.050000px;}
.y16_c00273{bottom:352.350000px;}
.y15_c00273{bottom:376.950000px;}
.y14_c00273{bottom:401.700000px;}
.y13_c00273{bottom:426.000000px;}
.y12_c00273{bottom:450.000000px;}
.y11_c00273{bottom:473.250000px;}
.y10_c00273{bottom:498.900000px;}
.yf_c00273{bottom:522.750000px;}
.ye_c00273{bottom:547.200000px;}
.yd_c00273{bottom:571.800000px;}
.yc_c00273{bottom:596.100000px;}
.yb_c00273{bottom:620.100000px;}
.ya_c00273{bottom:644.700000px;}
.y9_c00273{bottom:668.550000px;}
.y8_c00273{bottom:693.300000px;}
.y7_c00273{bottom:717.600000px;}
.y6_c00273{bottom:742.200000px;}
.y5_c00273{bottom:766.200000px;}
.y4_c00273{bottom:790.800000px;}
.y3_c00273{bottom:814.050000px;}
.y2_c00273{bottom:838.950000px;}
.y1_c00273{bottom:862.650000px;}
.h5_c00273{height:13.200074px;}
.h6_c00273{height:43.804688px;}
.h2_c00273{height:79.497070px;}
.h4_c00273{height:82.441406px;}
.h3_c00273{height:91.176000px;}
.h1_c00273{height:969.000000px;}
.h0_c00273{height:969.300000px;}
.w2_c00273{width:104.875500px;}
.w1_c00273{width:649.500000px;}
.w0_c00273{width:649.650000px;}
.x0_c00273{left:0.000000px;}
.x5_c00273{left:16.200000px;}
.x4_c00273{left:108.000000px;}
.x2_c00273{left:109.800000px;}
.x1_c00273{left:111.750000px;}
.x3_c00273{left:133.350000px;}
.x7_c00273{left:276.639267px;}
.x6_c00273{left:531.900000px;}
@media print{
.v0_c00273{vertical-align:0.000000pt;}
.ls3_c00273{letter-spacing:0.000000pt;}
.ls0_c00273{letter-spacing:0.800000pt;}
.ls1_c00273{letter-spacing:2.666667pt;}
.ls2_c00273{letter-spacing:300.800000pt;}
.ws1_c00273{word-spacing:-60.165333pt;}
.ws2_c00273{word-spacing:-18.000000pt;}
.ws3_c00273{word-spacing:0.000000pt;}
.ws0_c00273{word-spacing:22.549333pt;}
._10_c00273{margin-left:-11.304000pt;}
._12_c00273{margin-left:-8.928000pt;}
._13_c00273{margin-left:-7.864000pt;}
._c_c00273{margin-left:-6.840000pt;}
._b_c00273{margin-left:-5.544000pt;}
._9_c00273{margin-left:-4.392000pt;}
._2_c00273{margin-left:-2.664000pt;}
._4_c00273{margin-left:-1.296000pt;}
._0_c00273{width:1.584000pt;}
._1_c00273{width:2.808000pt;}
._3_c00273{width:4.320000pt;}
._8_c00273{width:5.904000pt;}
._d_c00273{width:6.840000pt;}
._5_c00273{width:7.848000pt;}
._a_c00273{width:8.784000pt;}
._7_c00273{width:10.152000pt;}
._6_c00273{width:11.232000pt;}
._14_c00273{width:12.832000pt;}
._11_c00273{width:15.264000pt;}
._f_c00273{width:27.432000pt;}
._e_c00273{width:99.810667pt;}
.fs4_c00273{font-size:42.666667pt;}
.fs2_c00273{font-size:66.666667pt;}
.fs0_c00273{font-size:72.000000pt;}
.fs3_c00273{font-size:74.666667pt;}
.fs1_c00273{font-size:77.333333pt;}
.y0_c00273{bottom:0.000000pt;}
.y25_c00273{bottom:2.760000pt;}
.y24_c00273{bottom:6.425212pt;}
.y23_c00273{bottom:30.266667pt;}
.y22_c00273{bottom:50.400000pt;}
.y21_c00273{bottom:72.933333pt;}
.y20_c00273{bottom:95.200000pt;}
.y1f_c00273{bottom:118.266667pt;}
.y1e_c00273{bottom:139.200000pt;}
.y1d_c00273{bottom:160.533333pt;}
.y1c_c00273{bottom:182.133333pt;}
.y1b_c00273{bottom:204.400000pt;}
.y1a_c00273{bottom:226.000000pt;}
.y19_c00273{bottom:247.600000pt;}
.y18_c00273{bottom:269.733333pt;}
.y17_c00273{bottom:291.600000pt;}
.y16_c00273{bottom:313.200000pt;}
.y15_c00273{bottom:335.066667pt;}
.y14_c00273{bottom:357.066667pt;}
.y13_c00273{bottom:378.666667pt;}
.y12_c00273{bottom:400.000000pt;}
.y11_c00273{bottom:420.666667pt;}
.y10_c00273{bottom:443.466667pt;}
.yf_c00273{bottom:464.666667pt;}
.ye_c00273{bottom:486.400000pt;}
.yd_c00273{bottom:508.266667pt;}
.yc_c00273{bottom:529.866667pt;}
.yb_c00273{bottom:551.200000pt;}
.ya_c00273{bottom:573.066667pt;}
.y9_c00273{bottom:594.266667pt;}
.y8_c00273{bottom:616.266667pt;}
.y7_c00273{bottom:637.866667pt;}
.y6_c00273{bottom:659.733333pt;}
.y5_c00273{bottom:681.066667pt;}
.y4_c00273{bottom:702.933333pt;}
.y3_c00273{bottom:723.600000pt;}
.y2_c00273{bottom:745.733333pt;}
.y1_c00273{bottom:766.800000pt;}
.h5_c00273{height:11.733399pt;}
.h6_c00273{height:38.937500pt;}
.h2_c00273{height:70.664062pt;}
.h4_c00273{height:73.281250pt;}
.h3_c00273{height:81.045333pt;}
.h1_c00273{height:861.333333pt;}
.h0_c00273{height:861.600000pt;}
.w2_c00273{width:93.222667pt;}
.w1_c00273{width:577.333333pt;}
.w0_c00273{width:577.466667pt;}
.x0_c00273{left:0.000000pt;}
.x5_c00273{left:14.400000pt;}
.x4_c00273{left:96.000000pt;}
.x2_c00273{left:97.600000pt;}
.x1_c00273{left:99.333333pt;}
.x3_c00273{left:118.533333pt;}
.x7_c00273{left:245.901571pt;}
.x6_c00273{left:472.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_d3d555fa785146e1aa1757cf.woff2')format("woff");}.ff1_c00274{font-family:ff1_c00274;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00274;src:url('chunks/assets/font_a9f04cac794b04178aba679f.woff2')format("woff");}.ff2_c00274{font-family:ff2_c00274;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00274;src:url('chunks/assets/font_9f5d10c7048f13d444ee3e35.woff2')format("woff");}.ff3_c00274{font-family:ff3_c00274;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00274;src:url('chunks/assets/font_f16dc6106747fddd8db6c714.woff2')format("woff");}.ff4_c00274{font-family:ff4_c00274;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00274;src:url('chunks/assets/font_0c439a8c5b49068dc448e3eb.woff2')format("woff");}.ff5_c00274{font-family:ff5_c00274;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00274;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c00274{font-family:ff6_c00274;line-height:1.219238;font-style: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;}
.ls2_c00274{letter-spacing:-9.000000px;}
.ls1_c00274{letter-spacing:0.000000px;}
.ls0_c00274{letter-spacing:2.100000px;}
.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;}
}
.ws2_c00274{word-spacing:-20.250000px;}
.ws0_c00274{word-spacing:-17.352000px;}
.ws1_c00274{word-spacing:-13.737000px;}
.ws3_c00274{word-spacing:0.000000px;}
._13_c00274{margin-left:-24.300000px;}
._1d_c00274{margin-left:-17.208000px;}
._21_c00274{margin-left:-13.347000px;}
._b_c00274{margin-left:-12.024000px;}
._10_c00274{margin-left:-10.944000px;}
._1e_c00274{margin-left:-9.279000px;}
._16_c00274{margin-left:-8.064000px;}
._e_c00274{margin-left:-6.237000px;}
._11_c00274{margin-left:-4.914000px;}
._8_c00274{margin-left:-3.339000px;}
._9_c00274{margin-left:-1.638000px;}
._d_c00274{width:1.620000px;}
._c_c00274{width:2.664000px;}
._7_c00274{width:3.744000px;}
._f_c00274{width:4.797000px;}
._5_c00274{width:5.904000px;}
._4_c00274{width:7.704000px;}
._1_c00274{width:8.784000px;}
._6_c00274{width:10.512000px;}
._1a_c00274{width:11.826000px;}
._2_c00274{width:13.248000px;}
._0_c00274{width:14.328000px;}
._3_c00274{width:15.336000px;}
._22_c00274{width:16.728000px;}
._20_c00274{width:18.198000px;}
._19_c00274{width:25.245000px;}
._1b_c00274{width:28.593000px;}
._18_c00274{width:31.341000px;}
._12_c00274{width:34.950000px;}
._1c_c00274{width:37.272000px;}
._14_c00274{width:40.536000px;}
._a_c00274{width:46.566000px;}
._15_c00274{width:159.885000px;}
._17_c00274{width:276.777000px;}
._1f_c00274{width:290.070000px;}
._23_c00274{width:341.262000px;}
.fc2_c00274{color:transparent;}
.fc1_c00274{color:rgb(128,128,128);}
.fc0_c00274{color:rgb(0,0,0);}
.fs8_c00274{font-size:48.000000px;}
.fs7_c00274{font-size:51.000000px;}
.fs4_c00274{font-size:57.000000px;}
.fs6_c00274{font-size:66.000000px;}
.fs0_c00274{font-size:72.000000px;}
.fs5_c00274{font-size:78.000000px;}
.fs2_c00274{font-size:81.000000px;}
.fs3_c00274{font-size:87.000000px;}
.fs1_c00274{font-size:99.000000px;}
.y0_c00274{bottom:0.000000px;}
.y26_c00274{bottom:3.105000px;}
.y25_c00274{bottom:7.228363px;}
.y24_c00274{bottom:51.750000px;}
.y23_c00274{bottom:80.100000px;}
.y22_c00274{bottom:105.750000px;}
.y21_c00274{bottom:130.650000px;}
.y20_c00274{bottom:154.950000px;}
.y1f_c00274{bottom:179.250000px;}
.y1e_c00274{bottom:206.550000px;}
.y1d_c00274{bottom:228.150000px;}
.y1c_c00274{bottom:250.200000px;}
.y1b_c00274{bottom:277.200000px;}
.y1a_c00274{bottom:300.450000px;}
.y19_c00274{bottom:325.350000px;}
.y18_c00274{bottom:349.950000px;}
.y17_c00274{bottom:374.250000px;}
.y16_c00274{bottom:398.700000px;}
.y15_c00274{bottom:422.550000px;}
.y14_c00274{bottom:446.550000px;}
.y13_c00274{bottom:469.500000px;}
.y12_c00274{bottom:494.850000px;}
.y11_c00274{bottom:519.450000px;}
.y10_c00274{bottom:542.400000px;}
.yf_c00274{bottom:567.300000px;}
.ye_c00274{bottom:591.300000px;}
.yd_c00274{bottom:615.150000px;}
.yc_c00274{bottom:638.250000px;}
.yb_c00274{bottom:661.500000px;}
.ya_c00274{bottom:687.150000px;}
.y9_c00274{bottom:712.350000px;}
.y8_c00274{bottom:736.350000px;}
.y7_c00274{bottom:760.350000px;}
.y6_c00274{bottom:784.650000px;}
.y5_c00274{bottom:808.650000px;}
.y4_c00274{bottom:833.250000px;}
.y3_c00274{bottom:857.700000px;}
.y2_c00274{bottom:882.000000px;}
.y1_c00274{bottom:916.950000px;}
.h8_c00274{height:13.200074px;}
.h9_c00274{height:43.804688px;}
.h3_c00274{height:79.497070px;}
.h6_c00274{height:84.269531px;}
.h5_c00274{height:91.160156px;}
.h4_c00274{height:91.176000px;}
.h7_c00274{height:98.756836px;}
.h2_c00274{height:115.870605px;}
.h0_c00274{height:980.100000px;}
.h1_c00274{height:980.250000px;}
.w2_c00274{width:104.875500px;}
.w0_c00274{width:665.850000px;}
.w1_c00274{width:666.000000px;}
.x0_c00274{left:0.000000px;}
.x9_c00274{left:47.550000px;}
.x5_c00274{left:51.750000px;}
.x2_c00274{left:52.950000px;}
.x3_c00274{left:54.300000px;}
.x4_c00274{left:55.800000px;}
.x6_c00274{left:57.150000px;}
.x7_c00274{left:58.350000px;}
.x8_c00274{left:59.700000px;}
.xb_c00274{left:60.750000px;}
.x1_c00274{left:77.250000px;}
.xa_c00274{left:85.050000px;}
.xd_c00274{left:284.739258px;}
.xc_c00274{left:391.200000px;}
@media print{
.v0_c00274{vertical-align:0.000000pt;}
.ls2_c00274{letter-spacing:-8.000000pt;}
.ls1_c00274{letter-spacing:0.000000pt;}
.ls0_c00274{letter-spacing:1.866667pt;}
.ws2_c00274{word-spacing:-18.000000pt;}
.ws0_c00274{word-spacing:-15.424000pt;}
.ws1_c00274{word-spacing:-12.210667pt;}
.ws3_c00274{word-spacing:0.000000pt;}
._13_c00274{margin-left:-21.600000pt;}
._1d_c00274{margin-left:-15.296000pt;}
._21_c00274{margin-left:-11.864000pt;}
._b_c00274{margin-left:-10.688000pt;}
._10_c00274{margin-left:-9.728000pt;}
._1e_c00274{margin-left:-8.248000pt;}
._16_c00274{margin-left:-7.168000pt;}
._e_c00274{margin-left:-5.544000pt;}
._11_c00274{margin-left:-4.368000pt;}
._8_c00274{margin-left:-2.968000pt;}
._9_c00274{margin-left:-1.456000pt;}
._d_c00274{width:1.440000pt;}
._c_c00274{width:2.368000pt;}
._7_c00274{width:3.328000pt;}
._f_c00274{width:4.264000pt;}
._5_c00274{width:5.248000pt;}
._4_c00274{width:6.848000pt;}
._1_c00274{width:7.808000pt;}
._6_c00274{width:9.344000pt;}
._1a_c00274{width:10.512000pt;}
._2_c00274{width:11.776000pt;}
._0_c00274{width:12.736000pt;}
._3_c00274{width:13.632000pt;}
._22_c00274{width:14.869333pt;}
._20_c00274{width:16.176000pt;}
._19_c00274{width:22.440000pt;}
._1b_c00274{width:25.416000pt;}
._18_c00274{width:27.858667pt;}
._12_c00274{width:31.066667pt;}
._1c_c00274{width:33.130667pt;}
._14_c00274{width:36.032000pt;}
._a_c00274{width:41.392000pt;}
._15_c00274{width:142.120000pt;}
._17_c00274{width:246.024000pt;}
._1f_c00274{width:257.840000pt;}
._23_c00274{width:303.344000pt;}
.fs8_c00274{font-size:42.666667pt;}
.fs7_c00274{font-size:45.333333pt;}
.fs4_c00274{font-size:50.666667pt;}
.fs6_c00274{font-size:58.666667pt;}
.fs0_c00274{font-size:64.000000pt;}
.fs5_c00274{font-size:69.333333pt;}
.fs2_c00274{font-size:72.000000pt;}
.fs3_c00274{font-size:77.333333pt;}
.fs1_c00274{font-size:88.000000pt;}
.y0_c00274{bottom:0.000000pt;}
.y26_c00274{bottom:2.760000pt;}
.y25_c00274{bottom:6.425212pt;}
.y24_c00274{bottom:46.000000pt;}
.y23_c00274{bottom:71.200000pt;}
.y22_c00274{bottom:94.000000pt;}
.y21_c00274{bottom:116.133333pt;}
.y20_c00274{bottom:137.733333pt;}
.y1f_c00274{bottom:159.333333pt;}
.y1e_c00274{bottom:183.600000pt;}
.y1d_c00274{bottom:202.800000pt;}
.y1c_c00274{bottom:222.400000pt;}
.y1b_c00274{bottom:246.400000pt;}
.y1a_c00274{bottom:267.066667pt;}
.y19_c00274{bottom:289.200000pt;}
.y18_c00274{bottom:311.066667pt;}
.y17_c00274{bottom:332.666667pt;}
.y16_c00274{bottom:354.400000pt;}
.y15_c00274{bottom:375.600000pt;}
.y14_c00274{bottom:396.933333pt;}
.y13_c00274{bottom:417.333333pt;}
.y12_c00274{bottom:439.866667pt;}
.y11_c00274{bottom:461.733333pt;}
.y10_c00274{bottom:482.133333pt;}
.yf_c00274{bottom:504.266667pt;}
.ye_c00274{bottom:525.600000pt;}
.yd_c00274{bottom:546.800000pt;}
.yc_c00274{bottom:567.333333pt;}
.yb_c00274{bottom:588.000000pt;}
.ya_c00274{bottom:610.800000pt;}
.y9_c00274{bottom:633.200000pt;}
.y8_c00274{bottom:654.533333pt;}
.y7_c00274{bottom:675.866667pt;}
.y6_c00274{bottom:697.466667pt;}
.y5_c00274{bottom:718.800000pt;}
.y4_c00274{bottom:740.666667pt;}
.y3_c00274{bottom:762.400000pt;}
.y2_c00274{bottom:784.000000pt;}
.y1_c00274{bottom:815.066667pt;}
.h8_c00274{height:11.733399pt;}
.h9_c00274{height:38.937500pt;}
.h3_c00274{height:70.664062pt;}
.h6_c00274{height:74.906250pt;}
.h5_c00274{height:81.031250pt;}
.h4_c00274{height:81.045333pt;}
.h7_c00274{height:87.783854pt;}
.h2_c00274{height:102.996094pt;}
.h0_c00274{height:871.200000pt;}
.h1_c00274{height:871.333333pt;}
.w2_c00274{width:93.222667pt;}
.w0_c00274{width:591.866667pt;}
.w1_c00274{width:592.000000pt;}
.x0_c00274{left:0.000000pt;}
.x9_c00274{left:42.266667pt;}
.x5_c00274{left:46.000000pt;}
.x2_c00274{left:47.066667pt;}
.x3_c00274{left:48.266667pt;}
.x4_c00274{left:49.600000pt;}
.x6_c00274{left:50.800000pt;}
.x7_c00274{left:51.866667pt;}
.x8_c00274{left:53.066667pt;}
.xb_c00274{left:54.000000pt;}
.x1_c00274{left:68.666667pt;}
.xa_c00274{left:75.600000pt;}
.xd_c00274{left:253.101563pt;}
.xc_c00274{left:347.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_575bcbc057dcdce69393b0da.woff2')format("woff");}.ff1_c00275{font-family:ff1_c00275;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00275;src:url('chunks/assets/font_a64ceaeaa3558829ef1146a5.woff2')format("woff");}.ff2_c00275{font-family:ff2_c00275;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00275;src:url('chunks/assets/font_be400033f20b3242fb73e36c.woff2')format("woff");}.ff3_c00275{font-family:ff3_c00275;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00275;src:url('chunks/assets/font_343ec4aa4f707f21d6852a48.woff2')format("woff");}.ff4_c00275{font-family:ff4_c00275;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00275;src:url('chunks/assets/font_2d9487b21c41ec6a4c9b14f0.woff2')format("woff");}.ff5_c00275{font-family:ff5_c00275;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00275;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c00275{font-family:ff6_c00275;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00275{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00275{vertical-align:0.000000px;}
.ls1_c00275{letter-spacing:0.000000px;}
.ls0_c00275{letter-spacing:3.000000px;}
.sc__c00275{text-shadow:none;}
.sc0_c00275{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00275{-webkit-text-stroke:0px transparent;}
.sc0_c00275{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00275{word-spacing:-23.859000px;}
.ws1_c00275{word-spacing:-17.352000px;}
.ws2_c00275{word-spacing:0.000000px;}
._3_c00275{margin-left:-25.188000px;}
._1c_c00275{margin-left:-23.238000px;}
._4_c00275{margin-left:-20.493000px;}
._6_c00275{margin-left:-18.414000px;}
._14_c00275{margin-left:-16.902000px;}
._8_c00275{margin-left:-14.949000px;}
._0_c00275{margin-left:-10.563000px;}
._16_c00275{margin-left:-8.703000px;}
._7_c00275{margin-left:-7.128000px;}
._1a_c00275{margin-left:-5.922000px;}
._5_c00275{margin-left:-4.851000px;}
._10_c00275{margin-left:-2.790000px;}
._9_c00275{margin-left:-1.485000px;}
._b_c00275{width:1.134000px;}
._a_c00275{width:2.430000px;}
._11_c00275{width:3.915000px;}
._c_c00275{width:4.968000px;}
._f_c00275{width:5.994000px;}
._e_c00275{width:7.020000px;}
._13_c00275{width:8.100000px;}
._2_c00275{width:9.108000px;}
._12_c00275{width:10.530000px;}
._d_c00275{width:11.961000px;}
._17_c00275{width:13.023000px;}
._18_c00275{width:14.913000px;}
._15_c00275{width:16.191000px;}
._21_c00275{width:18.873000px;}
._1b_c00275{width:26.397000px;}
._20_c00275{width:30.090000px;}
._1f_c00275{width:35.346000px;}
._1e_c00275{width:79.461000px;}
._24_c00275{width:104.013000px;}
._1d_c00275{width:114.543000px;}
._22_c00275{width:123.678000px;}
._19_c00275{width:331.728000px;}
._1_c00275{width:341.748000px;}
._23_c00275{width:506.781000px;}
.fc2_c00275{color:transparent;}
.fc1_c00275{color:rgb(128,128,128);}
.fc0_c00275{color:rgb(0,0,0);}
.fs6_c00275{font-size:48.000000px;}
.fs3_c00275{font-size:66.000000px;}
.fs4_c00275{font-size:72.000000px;}
.fs5_c00275{font-size:75.000000px;}
.fs2_c00275{font-size:81.000000px;}
.fs0_c00275{font-size:99.000000px;}
.fs1_c00275{font-size:132.000000px;}
.y0_c00275{bottom:0.000000px;}
.y23_c00275{bottom:3.105000px;}
.y22_c00275{bottom:7.228357px;}
.y21_c00275{bottom:89.430000px;}
.y20_c00275{bottom:137.430000px;}
.y1f_c00275{bottom:161.730000px;}
.y1e_c00275{bottom:186.330000px;}
.y1d_c00275{bottom:211.230000px;}
.y1c_c00275{bottom:235.680000px;}
.y1b_c00275{bottom:260.580000px;}
.y1a_c00275{bottom:285.180000px;}
.y19_c00275{bottom:309.780000px;}
.y18_c00275{bottom:334.080000px;}
.y17_c00275{bottom:358.530000px;}
.y16_c00275{bottom:383.730000px;}
.y15_c00275{bottom:407.130000px;}
.y14_c00275{bottom:427.980000px;}
.y13_c00275{bottom:456.930000px;}
.y12_c00275{bottom:481.380000px;}
.y11_c00275{bottom:505.980000px;}
.y10_c00275{bottom:529.980000px;}
.yf_c00275{bottom:554.880000px;}
.ye_c00275{bottom:579.180000px;}
.yd_c00275{bottom:602.430000px;}
.yc_c00275{bottom:627.180000px;}
.yb_c00275{bottom:652.080000px;}
.ya_c00275{bottom:676.380000px;}
.y9_c00275{bottom:700.380000px;}
.y8_c00275{bottom:726.030000px;}
.y7_c00275{bottom:749.280000px;}
.y6_c00275{bottom:773.880000px;}
.y5_c00275{bottom:798.180000px;}
.y4_c00275{bottom:822.480000px;}
.y3_c00275{bottom:846.780000px;}
.y2_c00275{bottom:871.080000px;}
.y1_c00275{bottom:905.580000px;}
.h5_c00275{height:13.200074px;}
.h6_c00275{height:43.804688px;}
.h4_c00275{height:73.608398px;}
.h2_c00275{height:79.497070px;}
.h3_c00275{height:84.269531px;}
.h1_c00275{height:167.126953px;}
.h0_c00275{height:995.250000px;}
.w2_c00275{width:104.875500px;}
.w0_c00275{width:667.425000px;}
.w1_c00275{width:667.500000px;}
.x0_c00275{left:0.000000px;}
.x6_c00275{left:26.550000px;}
.x8_c00275{left:32.400000px;}
.x9_c00275{left:55.050000px;}
.xd_c00275{left:61.800000px;}
.xe_c00275{left:69.900000px;}
.x2_c00275{left:113.100000px;}
.x3_c00275{left:115.350000px;}
.x5_c00275{left:116.700000px;}
.x4_c00275{left:118.350000px;}
.x7_c00275{left:119.700000px;}
.xb_c00275{left:122.550000px;}
.xa_c00275{left:123.900000px;}
.xc_c00275{left:125.850000px;}
.xf_c00275{left:127.200000px;}
.x1_c00275{left:148.950000px;}
.x10_c00275{left:157.650000px;}
.x13_c00275{left:188.700000px;}
.x11_c00275{left:240.600000px;}
.x12_c00275{left:262.200000px;}
.x15_c00275{left:285.526749px;}
.x14_c00275{left:575.400000px;}
@media print{
.v0_c00275{vertical-align:0.000000pt;}
.ls1_c00275{letter-spacing:0.000000pt;}
.ls0_c00275{letter-spacing:2.666667pt;}
.ws0_c00275{word-spacing:-21.208000pt;}
.ws1_c00275{word-spacing:-15.424000pt;}
.ws2_c00275{word-spacing:0.000000pt;}
._3_c00275{margin-left:-22.389333pt;}
._1c_c00275{margin-left:-20.656000pt;}
._4_c00275{margin-left:-18.216000pt;}
._6_c00275{margin-left:-16.368000pt;}
._14_c00275{margin-left:-15.024000pt;}
._8_c00275{margin-left:-13.288000pt;}
._0_c00275{margin-left:-9.389333pt;}
._16_c00275{margin-left:-7.736000pt;}
._7_c00275{margin-left:-6.336000pt;}
._1a_c00275{margin-left:-5.264000pt;}
._5_c00275{margin-left:-4.312000pt;}
._10_c00275{margin-left:-2.480000pt;}
._9_c00275{margin-left:-1.320000pt;}
._b_c00275{width:1.008000pt;}
._a_c00275{width:2.160000pt;}
._11_c00275{width:3.480000pt;}
._c_c00275{width:4.416000pt;}
._f_c00275{width:5.328000pt;}
._e_c00275{width:6.240000pt;}
._13_c00275{width:7.200000pt;}
._2_c00275{width:8.096000pt;}
._12_c00275{width:9.360000pt;}
._d_c00275{width:10.632000pt;}
._17_c00275{width:11.576000pt;}
._18_c00275{width:13.256000pt;}
._15_c00275{width:14.392000pt;}
._21_c00275{width:16.776000pt;}
._1b_c00275{width:23.464000pt;}
._20_c00275{width:26.746667pt;}
._1f_c00275{width:31.418667pt;}
._1e_c00275{width:70.632000pt;}
._24_c00275{width:92.456000pt;}
._1d_c00275{width:101.816000pt;}
._22_c00275{width:109.936000pt;}
._19_c00275{width:294.869333pt;}
._1_c00275{width:303.776000pt;}
._23_c00275{width:450.472000pt;}
.fs6_c00275{font-size:42.666667pt;}
.fs3_c00275{font-size:58.666667pt;}
.fs4_c00275{font-size:64.000000pt;}
.fs5_c00275{font-size:66.666667pt;}
.fs2_c00275{font-size:72.000000pt;}
.fs0_c00275{font-size:88.000000pt;}
.fs1_c00275{font-size:117.333333pt;}
.y0_c00275{bottom:0.000000pt;}
.y23_c00275{bottom:2.760000pt;}
.y22_c00275{bottom:6.425206pt;}
.y21_c00275{bottom:79.493333pt;}
.y20_c00275{bottom:122.160000pt;}
.y1f_c00275{bottom:143.760000pt;}
.y1e_c00275{bottom:165.626667pt;}
.y1d_c00275{bottom:187.760000pt;}
.y1c_c00275{bottom:209.493333pt;}
.y1b_c00275{bottom:231.626667pt;}
.y1a_c00275{bottom:253.493333pt;}
.y19_c00275{bottom:275.360000pt;}
.y18_c00275{bottom:296.960000pt;}
.y17_c00275{bottom:318.693333pt;}
.y16_c00275{bottom:341.093333pt;}
.y15_c00275{bottom:361.893333pt;}
.y14_c00275{bottom:380.426667pt;}
.y13_c00275{bottom:406.160000pt;}
.y12_c00275{bottom:427.893333pt;}
.y11_c00275{bottom:449.760000pt;}
.y10_c00275{bottom:471.093333pt;}
.yf_c00275{bottom:493.226667pt;}
.ye_c00275{bottom:514.826667pt;}
.yd_c00275{bottom:535.493333pt;}
.yc_c00275{bottom:557.493333pt;}
.yb_c00275{bottom:579.626667pt;}
.ya_c00275{bottom:601.226667pt;}
.y9_c00275{bottom:622.560000pt;}
.y8_c00275{bottom:645.360000pt;}
.y7_c00275{bottom:666.026667pt;}
.y6_c00275{bottom:687.893333pt;}
.y5_c00275{bottom:709.493333pt;}
.y4_c00275{bottom:731.093333pt;}
.y3_c00275{bottom:752.693333pt;}
.y2_c00275{bottom:774.293333pt;}
.y1_c00275{bottom:804.960000pt;}
.h5_c00275{height:11.733399pt;}
.h6_c00275{height:38.937500pt;}
.h4_c00275{height:65.429688pt;}
.h2_c00275{height:70.664062pt;}
.h3_c00275{height:74.906250pt;}
.h1_c00275{height:148.557292pt;}
.h0_c00275{height:884.666667pt;}
.w2_c00275{width:93.222667pt;}
.w0_c00275{width:593.266667pt;}
.w1_c00275{width:593.333333pt;}
.x0_c00275{left:0.000000pt;}
.x6_c00275{left:23.600000pt;}
.x8_c00275{left:28.800000pt;}
.x9_c00275{left:48.933333pt;}
.xd_c00275{left:54.933333pt;}
.xe_c00275{left:62.133333pt;}
.x2_c00275{left:100.533333pt;}
.x3_c00275{left:102.533333pt;}
.x5_c00275{left:103.733333pt;}
.x4_c00275{left:105.200000pt;}
.x7_c00275{left:106.400000pt;}
.xb_c00275{left:108.933333pt;}
.xa_c00275{left:110.133333pt;}
.xc_c00275{left:111.866667pt;}
.xf_c00275{left:113.066667pt;}
.x1_c00275{left:132.400000pt;}
.x10_c00275{left:140.133333pt;}
.x13_c00275{left:167.733333pt;}
.x11_c00275{left:213.866667pt;}
.x12_c00275{left:233.066667pt;}
.x15_c00275{left:253.801554pt;}
.x14_c00275{left:511.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_fe339d62863b2aed8460aa88.woff2')format("woff");}.ff1_c00276{font-family:ff1_c00276;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00276;src:url('chunks/assets/font_93d31203597eb9da40420950.woff2')format("woff");}.ff2_c00276{font-family:ff2_c00276;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00276;src:url('chunks/assets/font_49207dd3f77df8e0da2d9643.woff2')format("woff");}.ff3_c00276{font-family:ff3_c00276;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00276;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff4_c00276{font-family:ff4_c00276;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00276;src:url('chunks/assets/font_9969ca0712ce4ea95eac6096.woff2')format("woff");}.ff5_c00276{font-family:ff5_c00276;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00276;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c00276{font-family:ff6_c00276;line-height:1.219238;font-style: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;}
.ls5_c00276{letter-spacing:-3.000000px;}
.ls3_c00276{letter-spacing:0.000000px;}
.ls4_c00276{letter-spacing:3.000000px;}
.ls1_c00276{letter-spacing:8.760000px;}
.ls0_c00276{letter-spacing:10.704000px;}
.ls2_c00276{letter-spacing:11.136000px;}
.sc__c00276{text-shadow:none;}
.sc0_c00276{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00276{-webkit-text-stroke:0px transparent;}
.sc0_c00276{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00276{word-spacing:-23.832000px;}
.ws3_c00276{word-spacing:-19.065600px;}
.ws1_c00276{word-spacing:-17.352000px;}
.ws0_c00276{word-spacing:-1.500000px;}
.ws4_c00276{word-spacing:0.000000px;}
._1d_c00276{margin-left:-25.020000px;}
._1e_c00276{margin-left:-18.595200px;}
._1f_c00276{margin-left:-16.080000px;}
._7_c00276{margin-left:-14.433000px;}
._15_c00276{margin-left:-10.191000px;}
._1b_c00276{margin-left:-9.156000px;}
._14_c00276{margin-left:-7.233000px;}
._13_c00276{margin-left:-5.757000px;}
._a_c00276{margin-left:-4.668000px;}
._d_c00276{margin-left:-3.243000px;}
._11_c00276{margin-left:-1.872000px;}
._8_c00276{width:1.338000px;}
._e_c00276{width:3.024000px;}
._f_c00276{width:4.566000px;}
._9_c00276{width:6.207000px;}
._1_c00276{width:7.620000px;}
._3_c00276{width:8.991000px;}
._c_c00276{width:10.143000px;}
._2_c00276{width:11.430000px;}
._4_c00276{width:12.771000px;}
._17_c00276{width:13.896000px;}
._16_c00276{width:15.846000px;}
._0_c00276{width:17.280000px;}
._1a_c00276{width:18.417000px;}
._6_c00276{width:19.869000px;}
._19_c00276{width:22.104000px;}
._5_c00276{width:24.180000px;}
._12_c00276{width:28.002000px;}
._b_c00276{width:30.660000px;}
._18_c00276{width:33.414000px;}
._20_c00276{width:35.319000px;}
._1c_c00276{width:38.580000px;}
._10_c00276{width:125.244000px;}
._21_c00276{width:376.149000px;}
.fc2_c00276{color:transparent;}
.fc1_c00276{color:rgb(128,128,128);}
.fc0_c00276{color:rgb(0,0,0);}
.fs5_c00276{font-size:48.000000px;}
.fs4_c00276{font-size:57.600000px;}
.fs0_c00276{font-size:60.000000px;}
.fs3_c00276{font-size:72.000000px;}
.fs1_c00276{font-size:81.000000px;}
.fs2_c00276{font-size:84.000000px;}
.y0_c00276{bottom:0.000000px;}
.y24_c00276{bottom:3.105000px;}
.y23_c00276{bottom:7.228355px;}
.y22_c00276{bottom:48.585000px;}
.y21_c00276{bottom:75.135000px;}
.y20_c00276{bottom:100.785000px;}
.y1f_c00276{bottom:125.085000px;}
.y1e_c00276{bottom:149.835000px;}
.y1d_c00276{bottom:172.485000px;}
.y1c_c00276{bottom:198.435000px;}
.y1b_c00276{bottom:222.285000px;}
.y1a_c00276{bottom:246.735000px;}
.y19_c00276{bottom:270.285000px;}
.y18_c00276{bottom:294.885000px;}
.y17_c00276{bottom:318.885000px;}
.y16_c00276{bottom:343.185000px;}
.y15_c00276{bottom:367.485000px;}
.y14_c00276{bottom:391.785000px;}
.y13_c00276{bottom:416.085000px;}
.y12_c00276{bottom:440.685000px;}
.y11_c00276{bottom:465.285000px;}
.y10_c00276{bottom:489.285000px;}
.yf_c00276{bottom:513.285000px;}
.ye_c00276{bottom:536.985000px;}
.yd_c00276{bottom:560.235000px;}
.yc_c00276{bottom:584.085000px;}
.yb_c00276{bottom:607.485000px;}
.ya_c00276{bottom:631.485000px;}
.y9_c00276{bottom:654.435000px;}
.y8_c00276{bottom:679.335000px;}
.y7_c00276{bottom:703.635000px;}
.y6_c00276{bottom:728.685000px;}
.y5_c00276{bottom:752.235000px;}
.y4_c00276{bottom:775.785000px;}
.y3_c00276{bottom:799.185000px;}
.y2_c00276{bottom:845.085000px;}
.y1_c00276{bottom:873.135000px;}
.h6_c00276{height:13.200074px;}
.h7_c00276{height:43.804688px;}
.h2_c00276{height:79.497070px;}
.h3_c00276{height:82.400391px;}
.h5_c00276{height:84.269531px;}
.h4_c00276{height:91.160156px;}
.h0_c00276{height:977.925000px;}
.h1_c00276{height:978.000000px;}
.w2_c00276{width:104.875500px;}
.w0_c00276{width:664.200000px;}
.w1_c00276{width:664.500000px;}
.x0_c00276{left:0.000000px;}
.x1_c00276{left:30.600000px;}
.x5_c00276{left:31.950000px;}
.x6_c00276{left:33.750000px;}
.x8_c00276{left:36.000000px;}
.x7_c00276{left:38.850000px;}
.x9_c00276{left:40.050000px;}
.xa_c00276{left:41.550000px;}
.xb_c00276{left:42.750000px;}
.xc_c00276{left:44.250000px;}
.x4_c00276{left:162.300000px;}
.x3_c00276{left:164.100000px;}
.x2_c00276{left:170.550000px;}
.xe_c00276{left:283.914230px;}
.xd_c00276{left:361.500000px;}
@media print{
.v0_c00276{vertical-align:0.000000pt;}
.ls5_c00276{letter-spacing:-2.666667pt;}
.ls3_c00276{letter-spacing:0.000000pt;}
.ls4_c00276{letter-spacing:2.666667pt;}
.ls1_c00276{letter-spacing:7.786667pt;}
.ls0_c00276{letter-spacing:9.514667pt;}
.ls2_c00276{letter-spacing:9.898667pt;}
.ws2_c00276{word-spacing:-21.184000pt;}
.ws3_c00276{word-spacing:-16.947200pt;}
.ws1_c00276{word-spacing:-15.424000pt;}
.ws0_c00276{word-spacing:-1.333333pt;}
.ws4_c00276{word-spacing:0.000000pt;}
._1d_c00276{margin-left:-22.240000pt;}
._1e_c00276{margin-left:-16.529067pt;}
._1f_c00276{margin-left:-14.293333pt;}
._7_c00276{margin-left:-12.829333pt;}
._15_c00276{margin-left:-9.058667pt;}
._1b_c00276{margin-left:-8.138667pt;}
._14_c00276{margin-left:-6.429333pt;}
._13_c00276{margin-left:-5.117333pt;}
._a_c00276{margin-left:-4.149333pt;}
._d_c00276{margin-left:-2.882667pt;}
._11_c00276{margin-left:-1.664000pt;}
._8_c00276{width:1.189333pt;}
._e_c00276{width:2.688000pt;}
._f_c00276{width:4.058667pt;}
._9_c00276{width:5.517333pt;}
._1_c00276{width:6.773333pt;}
._3_c00276{width:7.992000pt;}
._c_c00276{width:9.016000pt;}
._2_c00276{width:10.160000pt;}
._4_c00276{width:11.352000pt;}
._17_c00276{width:12.352000pt;}
._16_c00276{width:14.085333pt;}
._0_c00276{width:15.360000pt;}
._1a_c00276{width:16.370667pt;}
._6_c00276{width:17.661333pt;}
._19_c00276{width:19.648000pt;}
._5_c00276{width:21.493333pt;}
._12_c00276{width:24.890667pt;}
._b_c00276{width:27.253333pt;}
._18_c00276{width:29.701333pt;}
._20_c00276{width:31.394667pt;}
._1c_c00276{width:34.293333pt;}
._10_c00276{width:111.328000pt;}
._21_c00276{width:334.354667pt;}
.fs5_c00276{font-size:42.666667pt;}
.fs4_c00276{font-size:51.200000pt;}
.fs0_c00276{font-size:53.333333pt;}
.fs3_c00276{font-size:64.000000pt;}
.fs1_c00276{font-size:72.000000pt;}
.fs2_c00276{font-size:74.666667pt;}
.y0_c00276{bottom:0.000000pt;}
.y24_c00276{bottom:2.760000pt;}
.y23_c00276{bottom:6.425204pt;}
.y22_c00276{bottom:43.186667pt;}
.y21_c00276{bottom:66.786667pt;}
.y20_c00276{bottom:89.586667pt;}
.y1f_c00276{bottom:111.186667pt;}
.y1e_c00276{bottom:133.186667pt;}
.y1d_c00276{bottom:153.320000pt;}
.y1c_c00276{bottom:176.386667pt;}
.y1b_c00276{bottom:197.586667pt;}
.y1a_c00276{bottom:219.320000pt;}
.y19_c00276{bottom:240.253333pt;}
.y18_c00276{bottom:262.120000pt;}
.y17_c00276{bottom:283.453333pt;}
.y16_c00276{bottom:305.053333pt;}
.y15_c00276{bottom:326.653333pt;}
.y14_c00276{bottom:348.253333pt;}
.y13_c00276{bottom:369.853333pt;}
.y12_c00276{bottom:391.720000pt;}
.y11_c00276{bottom:413.586667pt;}
.y10_c00276{bottom:434.920000pt;}
.yf_c00276{bottom:456.253333pt;}
.ye_c00276{bottom:477.320000pt;}
.yd_c00276{bottom:497.986667pt;}
.yc_c00276{bottom:519.186667pt;}
.yb_c00276{bottom:539.986667pt;}
.ya_c00276{bottom:561.320000pt;}
.y9_c00276{bottom:581.720000pt;}
.y8_c00276{bottom:603.853333pt;}
.y7_c00276{bottom:625.453333pt;}
.y6_c00276{bottom:647.720000pt;}
.y5_c00276{bottom:668.653333pt;}
.y4_c00276{bottom:689.586667pt;}
.y3_c00276{bottom:710.386667pt;}
.y2_c00276{bottom:751.186667pt;}
.y1_c00276{bottom:776.120000pt;}
.h6_c00276{height:11.733399pt;}
.h7_c00276{height:38.937500pt;}
.h2_c00276{height:70.664062pt;}
.h3_c00276{height:73.244792pt;}
.h5_c00276{height:74.906250pt;}
.h4_c00276{height:81.031250pt;}
.h0_c00276{height:869.266667pt;}
.h1_c00276{height:869.333333pt;}
.w2_c00276{width:93.222667pt;}
.w0_c00276{width:590.400000pt;}
.w1_c00276{width:590.666667pt;}
.x0_c00276{left:0.000000pt;}
.x1_c00276{left:27.200000pt;}
.x5_c00276{left:28.400000pt;}
.x6_c00276{left:30.000000pt;}
.x8_c00276{left:32.000000pt;}
.x7_c00276{left:34.533333pt;}
.x9_c00276{left:35.600000pt;}
.xa_c00276{left:36.933333pt;}
.xb_c00276{left:38.000000pt;}
.xc_c00276{left:39.333333pt;}
.x4_c00276{left:144.266667pt;}
.x3_c00276{left:145.866667pt;}
.x2_c00276{left:151.600000pt;}
.xe_c00276{left:252.368205pt;}
.xd_c00276{left:321.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_d3e841bf1ecedd264bc8c7ba.woff2')format("woff");}.ff1_c00277{font-family:ff1_c00277;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00277;src:url('chunks/assets/font_f79e02fa9bdd413e5faf6499.woff2')format("woff");}.ff2_c00277{font-family:ff2_c00277;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00277;src:url('chunks/assets/font_d6516c1dcaabdfee46162b5b.woff2')format("woff");}.ff3_c00277{font-family:ff3_c00277;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00277;src:url('chunks/assets/font_c43def0b1c29f9930bc2b85c.woff2')format("woff");}.ff4_c00277{font-family:ff4_c00277;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00277;src:url('chunks/assets/font_23d4b1072d773177cc158428.woff2')format("woff");}.ff5_c00277{font-family:ff5_c00277;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00277;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c00277{font-family:ff6_c00277;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00277{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00277{vertical-align:0.000000px;}
.ls0_c00277{letter-spacing:0.000000px;}
.sc__c00277{text-shadow:none;}
.sc0_c00277{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00277{-webkit-text-stroke:0px transparent;}
.sc0_c00277{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00277{word-spacing:-67.686000px;}
.ws3_c00277{word-spacing:-18.798000px;}
.ws0_c00277{word-spacing:-17.352000px;}
.ws2_c00277{word-spacing:-15.750000px;}
.ws4_c00277{word-spacing:0.000000px;}
._15_c00277{margin-left:-23.085000px;}
._12_c00277{margin-left:-12.636000px;}
._10_c00277{margin-left:-9.792000px;}
._3_c00277{margin-left:-7.623000px;}
._0_c00277{margin-left:-6.480000px;}
._2_c00277{margin-left:-4.488000px;}
._1_c00277{margin-left:-2.664000px;}
._b_c00277{margin-left:-1.311000px;}
._a_c00277{width:1.716000px;}
._5_c00277{width:2.916000px;}
._7_c00277{width:3.969000px;}
._6_c00277{width:5.103000px;}
._8_c00277{width:6.237000px;}
._c_c00277{width:7.989000px;}
._9_c00277{width:8.991000px;}
._d_c00277{width:10.914000px;}
._f_c00277{width:12.096000px;}
._e_c00277{width:13.278000px;}
._16_c00277{width:14.733000px;}
._11_c00277{width:16.056000px;}
._1d_c00277{width:17.784000px;}
._1a_c00277{width:21.495000px;}
._1c_c00277{width:22.857000px;}
._1b_c00277{width:24.705000px;}
._1e_c00277{width:25.734000px;}
._18_c00277{width:28.311000px;}
._19_c00277{width:36.630000px;}
._13_c00277{width:65.214000px;}
._1f_c00277{width:74.025000px;}
._4_c00277{width:190.998000px;}
._14_c00277{width:196.287000px;}
._17_c00277{width:368.799000px;}
._20_c00277{width:1719.873000px;}
.fc2_c00277{color:transparent;}
.fc1_c00277{color:rgb(128,128,128);}
.fc0_c00277{color:rgb(0,0,0);}
.fs5_c00277{font-size:48.000000px;}
.fs3_c00277{font-size:63.000000px;}
.fs0_c00277{font-size:72.000000px;}
.fs4_c00277{font-size:78.000000px;}
.fs1_c00277{font-size:81.000000px;}
.fs2_c00277{font-size:87.000000px;}
.y0_c00277{bottom:0.000000px;}
.y25_c00277{bottom:3.105000px;}
.y24_c00277{bottom:7.228357px;}
.y23_c00277{bottom:48.030000px;}
.y22_c00277{bottom:72.330000px;}
.y21_c00277{bottom:97.230000px;}
.y20_c00277{bottom:121.830000px;}
.y1f_c00277{bottom:146.130000px;}
.y1e_c00277{bottom:170.430000px;}
.y1d_c00277{bottom:194.730000px;}
.y1c_c00277{bottom:219.480000px;}
.y1b_c00277{bottom:243.630000px;}
.y1a_c00277{bottom:267.930000px;}
.y19_c00277{bottom:292.380000px;}
.y18_c00277{bottom:315.930000px;}
.y17_c00277{bottom:340.980000px;}
.y16_c00277{bottom:365.580000px;}
.y15_c00277{bottom:389.580000px;}
.y14_c00277{bottom:413.730000px;}
.y13_c00277{bottom:438.030000px;}
.y12_c00277{bottom:461.130000px;}
.y11_c00277{bottom:488.730000px;}
.y10_c00277{bottom:508.230000px;}
.yf_c00277{bottom:532.980000px;}
.ye_c00277{bottom:558.180000px;}
.yd_c00277{bottom:581.880000px;}
.yc_c00277{bottom:606.180000px;}
.yb_c00277{bottom:630.180000px;}
.ya_c00277{bottom:654.480000px;}
.y9_c00277{bottom:678.780000px;}
.y8_c00277{bottom:702.780000px;}
.y7_c00277{bottom:727.080000px;}
.y6_c00277{bottom:751.230000px;}
.y5_c00277{bottom:775.230000px;}
.y4_c00277{bottom:798.930000px;}
.y3_c00277{bottom:823.230000px;}
.y2_c00277{bottom:847.230000px;}
.y1_c00277{bottom:870.480000px;}
.h6_c00277{height:13.200074px;}
.h7_c00277{height:43.804688px;}
.h4_c00277{height:79.497070px;}
.h2_c00277{height:84.269531px;}
.h3_c00277{height:91.176000px;}
.h5_c00277{height:91.291992px;}
.h1_c00277{height:978.750000px;}
.h0_c00277{height:979.050000px;}
.w2_c00277{width:104.875500px;}
.w0_c00277{width:656.100000px;}
.w1_c00277{width:656.250000px;}
.x0_c00277{left:0.000000px;}
.x8_c00277{left:42.300000px;}
.x5_c00277{left:44.550000px;}
.x4_c00277{left:45.900000px;}
.x1_c00277{left:47.850000px;}
.xa_c00277{left:103.050000px;}
.xc_c00277{left:118.500000px;}
.xb_c00277{left:129.900000px;}
.x9_c00277{left:131.700000px;}
.x7_c00277{left:132.750000px;}
.x6_c00277{left:134.700000px;}
.x3_c00277{left:136.650000px;}
.x2_c00277{left:137.700000px;}
.xd_c00277{left:279.864258px;}
@media print{
.v0_c00277{vertical-align:0.000000pt;}
.ls0_c00277{letter-spacing:0.000000pt;}
.ws1_c00277{word-spacing:-60.165333pt;}
.ws3_c00277{word-spacing:-16.709333pt;}
.ws0_c00277{word-spacing:-15.424000pt;}
.ws2_c00277{word-spacing:-14.000000pt;}
.ws4_c00277{word-spacing:0.000000pt;}
._15_c00277{margin-left:-20.520000pt;}
._12_c00277{margin-left:-11.232000pt;}
._10_c00277{margin-left:-8.704000pt;}
._3_c00277{margin-left:-6.776000pt;}
._0_c00277{margin-left:-5.760000pt;}
._2_c00277{margin-left:-3.989333pt;}
._1_c00277{margin-left:-2.368000pt;}
._b_c00277{margin-left:-1.165333pt;}
._a_c00277{width:1.525333pt;}
._5_c00277{width:2.592000pt;}
._7_c00277{width:3.528000pt;}
._6_c00277{width:4.536000pt;}
._8_c00277{width:5.544000pt;}
._c_c00277{width:7.101333pt;}
._9_c00277{width:7.992000pt;}
._d_c00277{width:9.701333pt;}
._f_c00277{width:10.752000pt;}
._e_c00277{width:11.802667pt;}
._16_c00277{width:13.096000pt;}
._11_c00277{width:14.272000pt;}
._1d_c00277{width:15.808000pt;}
._1a_c00277{width:19.106667pt;}
._1c_c00277{width:20.317333pt;}
._1b_c00277{width:21.960000pt;}
._1e_c00277{width:22.874667pt;}
._18_c00277{width:25.165333pt;}
._19_c00277{width:32.560000pt;}
._13_c00277{width:57.968000pt;}
._1f_c00277{width:65.800000pt;}
._4_c00277{width:169.776000pt;}
._14_c00277{width:174.477333pt;}
._17_c00277{width:327.821333pt;}
._20_c00277{width:1528.776000pt;}
.fs5_c00277{font-size:42.666667pt;}
.fs3_c00277{font-size:56.000000pt;}
.fs0_c00277{font-size:64.000000pt;}
.fs4_c00277{font-size:69.333333pt;}
.fs1_c00277{font-size:72.000000pt;}
.fs2_c00277{font-size:77.333333pt;}
.y0_c00277{bottom:0.000000pt;}
.y25_c00277{bottom:2.760000pt;}
.y24_c00277{bottom:6.425206pt;}
.y23_c00277{bottom:42.693333pt;}
.y22_c00277{bottom:64.293333pt;}
.y21_c00277{bottom:86.426667pt;}
.y20_c00277{bottom:108.293333pt;}
.y1f_c00277{bottom:129.893333pt;}
.y1e_c00277{bottom:151.493333pt;}
.y1d_c00277{bottom:173.093333pt;}
.y1c_c00277{bottom:195.093333pt;}
.y1b_c00277{bottom:216.560000pt;}
.y1a_c00277{bottom:238.160000pt;}
.y19_c00277{bottom:259.893333pt;}
.y18_c00277{bottom:280.826667pt;}
.y17_c00277{bottom:303.093333pt;}
.y16_c00277{bottom:324.960000pt;}
.y15_c00277{bottom:346.293333pt;}
.y14_c00277{bottom:367.760000pt;}
.y13_c00277{bottom:389.360000pt;}
.y12_c00277{bottom:409.893333pt;}
.y11_c00277{bottom:434.426667pt;}
.y10_c00277{bottom:451.760000pt;}
.yf_c00277{bottom:473.760000pt;}
.ye_c00277{bottom:496.160000pt;}
.yd_c00277{bottom:517.226667pt;}
.yc_c00277{bottom:538.826667pt;}
.yb_c00277{bottom:560.160000pt;}
.ya_c00277{bottom:581.760000pt;}
.y9_c00277{bottom:603.360000pt;}
.y8_c00277{bottom:624.693333pt;}
.y7_c00277{bottom:646.293333pt;}
.y6_c00277{bottom:667.760000pt;}
.y5_c00277{bottom:689.093333pt;}
.y4_c00277{bottom:710.160000pt;}
.y3_c00277{bottom:731.760000pt;}
.y2_c00277{bottom:753.093333pt;}
.y1_c00277{bottom:773.760000pt;}
.h6_c00277{height:11.733399pt;}
.h7_c00277{height:38.937500pt;}
.h4_c00277{height:70.664062pt;}
.h2_c00277{height:74.906250pt;}
.h3_c00277{height:81.045333pt;}
.h5_c00277{height:81.148438pt;}
.h1_c00277{height:870.000000pt;}
.h0_c00277{height:870.266667pt;}
.w2_c00277{width:93.222667pt;}
.w0_c00277{width:583.200000pt;}
.w1_c00277{width:583.333333pt;}
.x0_c00277{left:0.000000pt;}
.x8_c00277{left:37.600000pt;}
.x5_c00277{left:39.600000pt;}
.x4_c00277{left:40.800000pt;}
.x1_c00277{left:42.533333pt;}
.xa_c00277{left:91.600000pt;}
.xc_c00277{left:105.333333pt;}
.xb_c00277{left:115.466667pt;}
.x9_c00277{left:117.066667pt;}
.x7_c00277{left:118.000000pt;}
.x6_c00277{left:119.733333pt;}
.x3_c00277{left:121.466667pt;}
.x2_c00277{left:122.400000pt;}
.xd_c00277{left:248.768229pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_53220744bc2ab8aa2845d5e7.woff2')format("woff");}.ff1_c00278{font-family:ff1_c00278;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00278;src:url('chunks/assets/font_b31a3df1ee14f10c3462f057.woff2')format("woff");}.ff2_c00278{font-family:ff2_c00278;line-height:1.437000;font-style:normal;font-weight:normal;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_4adbdf89ea0bfc6c27b91405.woff2')format("woff");}.ff3_c00278{font-family:ff3_c00278;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00278;src:url('chunks/assets/font_02c0d6b7b202011b24b7bdd6.woff2')format("woff");}.ff4_c00278{font-family:ff4_c00278;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00278;src:url('chunks/assets/font_323d4d15af1085d586dd22ed.woff2')format("woff");}.ff5_c00278{font-family:ff5_c00278;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00278;src:url('chunks/assets/font_c84125f3ffdb16f5a11e7190.woff2')format("woff");}.ff6_c00278{font-family:ff6_c00278;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00278;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c00278{font-family:ff7_c00278;line-height:1.219238;font-style: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);}
.v1_c00278{vertical-align:-84.600000px;}
.v2_c00278{vertical-align:-15.000000px;}
.v0_c00278{vertical-align:0.000000px;}
.ls1_c00278{letter-spacing:0.000000px;}
.ls2_c00278{letter-spacing:6.000000px;}
.ls3_c00278{letter-spacing:9.000000px;}
.ls0_c00278{letter-spacing:149.460000px;}
.sc__c00278{text-shadow:none;}
.sc0_c00278{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00278{-webkit-text-stroke:0px transparent;}
.sc0_c00278{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00278{word-spacing:-85.356000px;}
.ws3_c00278{word-spacing:-67.686000px;}
.ws2_c00278{word-spacing:-17.352000px;}
.ws4_c00278{word-spacing:0.000000px;}
.ws1_c00278{word-spacing:112.497000px;}
._23_c00278{margin-left:-25.806000px;}
._24_c00278{margin-left:-24.219000px;}
._d_c00278{margin-left:-18.330000px;}
._8_c00278{margin-left:-15.996000px;}
._21_c00278{margin-left:-13.446000px;}
._c_c00278{margin-left:-10.533000px;}
._4_c00278{margin-left:-8.613000px;}
._7_c00278{margin-left:-7.029000px;}
._6_c00278{margin-left:-5.544000px;}
._3_c00278{margin-left:-3.465000px;}
._0_c00278{margin-left:-1.485000px;}
._5_c00278{width:1.584000px;}
._a_c00278{width:2.637000px;}
._1_c00278{width:4.356000px;}
._2_c00278{width:5.742000px;}
._b_c00278{width:6.966000px;}
._11_c00278{width:8.127000px;}
._18_c00278{width:9.243000px;}
._10_c00278{width:10.260000px;}
._14_c00278{width:11.448000px;}
._13_c00278{width:12.555000px;}
._1c_c00278{width:13.764000px;}
._15_c00278{width:14.778000px;}
._12_c00278{width:16.848000px;}
._1b_c00278{width:18.234000px;}
._1e_c00278{width:21.981000px;}
._1a_c00278{width:24.402000px;}
._25_c00278{width:28.350000px;}
._f_c00278{width:32.124000px;}
._e_c00278{width:33.885000px;}
._22_c00278{width:46.743000px;}
._17_c00278{width:58.485000px;}
._9_c00278{width:99.996000px;}
._1f_c00278{width:120.150000px;}
._16_c00278{width:214.965000px;}
._20_c00278{width:217.737000px;}
._26_c00278{width:276.750000px;}
._1d_c00278{width:308.394000px;}
._19_c00278{width:321.354000px;}
.fc2_c00278{color:transparent;}
.fc1_c00278{color:rgb(128,128,128);}
.fc0_c00278{color:rgb(0,0,0);}
.fs7_c00278{font-size:42.000000px;}
.fs9_c00278{font-size:48.000000px;}
.fs4_c00278{font-size:57.000000px;}
.fs5_c00278{font-size:60.000000px;}
.fs6_c00278{font-size:72.000000px;}
.fs3_c00278{font-size:78.000000px;}
.fs2_c00278{font-size:81.000000px;}
.fs8_c00278{font-size:87.000000px;}
.fs0_c00278{font-size:99.000000px;}
.fs1_c00278{font-size:102.000000px;}
.y0_c00278{bottom:0.000000px;}
.y25_c00278{bottom:3.105000px;}
.y24_c00278{bottom:7.228363px;}
.y23_c00278{bottom:69.150000px;}
.y22_c00278{bottom:92.850000px;}
.y21_c00278{bottom:118.800000px;}
.y20_c00278{bottom:142.050000px;}
.y1f_c00278{bottom:166.800000px;}
.y1e_c00278{bottom:191.400000px;}
.y1d_c00278{bottom:216.300000px;}
.y1c_c00278{bottom:241.050000px;}
.y1b_c00278{bottom:265.350000px;}
.y1a_c00278{bottom:289.650000px;}
.y19_c00278{bottom:313.500000px;}
.y18_c00278{bottom:337.950000px;}
.y17_c00278{bottom:362.550000px;}
.y16_c00278{bottom:386.400000px;}
.y15_c00278{bottom:410.850000px;}
.y14_c00278{bottom:435.000000px;}
.y13_c00278{bottom:459.750000px;}
.y12_c00278{bottom:483.300000px;}
.y11_c00278{bottom:508.050000px;}
.y10_c00278{bottom:532.650000px;}
.yf_c00278{bottom:555.300000px;}
.ye_c00278{bottom:580.200000px;}
.yd_c00278{bottom:602.400000px;}
.yc_c00278{bottom:625.350000px;}
.yb_c00278{bottom:648.750000px;}
.ya_c00278{bottom:674.100000px;}
.y9_c00278{bottom:697.950000px;}
.y8_c00278{bottom:720.900000px;}
.y7_c00278{bottom:744.900000px;}
.y6_c00278{bottom:769.200000px;}
.y5_c00278{bottom:793.800000px;}
.y4_c00278{bottom:821.550000px;}
.y3_c00278{bottom:862.650000px;}
.y2_c00278{bottom:889.650000px;}
.y1_c00278{bottom:925.050000px;}
.ha_c00278{height:13.200074px;}
.hb_c00278{height:43.804688px;}
.h8_c00278{height:66.713379px;}
.h4_c00278{height:75.966797px;}
.h3_c00278{height:79.497070px;}
.h6_c00278{height:84.269531px;}
.h7_c00278{height:91.160156px;}
.h9_c00278{height:91.176000px;}
.h5_c00278{height:98.756836px;}
.h2_c00278{height:115.870605px;}
.h0_c00278{height:980.100000px;}
.h1_c00278{height:980.250000px;}
.w2_c00278{width:104.875500px;}
.w0_c00278{width:665.850000px;}
.w1_c00278{width:666.000000px;}
.x0_c00278{left:0.000000px;}
.xa_c00278{left:38.700000px;}
.xc_c00278{left:39.750000px;}
.x9_c00278{left:41.400000px;}
.x8_c00278{left:42.600000px;}
.x7_c00278{left:44.250000px;}
.x6_c00278{left:45.450000px;}
.x5_c00278{left:46.500000px;}
.x2_c00278{left:47.850000px;}
.x3_c00278{left:50.250000px;}
.xb_c00278{left:66.450000px;}
.x4_c00278{left:99.150000px;}
.x1_c00278{left:110.400000px;}
.xe_c00278{left:284.739258px;}
.xd_c00278{left:376.200000px;}
@media print{
.v1_c00278{vertical-align:-75.200000pt;}
.v2_c00278{vertical-align:-13.333333pt;}
.v0_c00278{vertical-align:0.000000pt;}
.ls1_c00278{letter-spacing:0.000000pt;}
.ls2_c00278{letter-spacing:5.333333pt;}
.ls3_c00278{letter-spacing:8.000000pt;}
.ls0_c00278{letter-spacing:132.853333pt;}
.ws0_c00278{word-spacing:-75.872000pt;}
.ws3_c00278{word-spacing:-60.165333pt;}
.ws2_c00278{word-spacing:-15.424000pt;}
.ws4_c00278{word-spacing:0.000000pt;}
.ws1_c00278{word-spacing:99.997333pt;}
._23_c00278{margin-left:-22.938667pt;}
._24_c00278{margin-left:-21.528000pt;}
._d_c00278{margin-left:-16.293333pt;}
._8_c00278{margin-left:-14.218667pt;}
._21_c00278{margin-left:-11.952000pt;}
._c_c00278{margin-left:-9.362667pt;}
._4_c00278{margin-left:-7.656000pt;}
._7_c00278{margin-left:-6.248000pt;}
._6_c00278{margin-left:-4.928000pt;}
._3_c00278{margin-left:-3.080000pt;}
._0_c00278{margin-left:-1.320000pt;}
._5_c00278{width:1.408000pt;}
._a_c00278{width:2.344000pt;}
._1_c00278{width:3.872000pt;}
._2_c00278{width:5.104000pt;}
._b_c00278{width:6.192000pt;}
._11_c00278{width:7.224000pt;}
._18_c00278{width:8.216000pt;}
._10_c00278{width:9.120000pt;}
._14_c00278{width:10.176000pt;}
._13_c00278{width:11.160000pt;}
._1c_c00278{width:12.234667pt;}
._15_c00278{width:13.136000pt;}
._12_c00278{width:14.976000pt;}
._1b_c00278{width:16.208000pt;}
._1e_c00278{width:19.538667pt;}
._1a_c00278{width:21.690667pt;}
._25_c00278{width:25.200000pt;}
._f_c00278{width:28.554667pt;}
._e_c00278{width:30.120000pt;}
._22_c00278{width:41.549333pt;}
._17_c00278{width:51.986667pt;}
._9_c00278{width:88.885333pt;}
._1f_c00278{width:106.800000pt;}
._16_c00278{width:191.080000pt;}
._20_c00278{width:193.544000pt;}
._26_c00278{width:246.000000pt;}
._1d_c00278{width:274.128000pt;}
._19_c00278{width:285.648000pt;}
.fs7_c00278{font-size:37.333333pt;}
.fs9_c00278{font-size:42.666667pt;}
.fs4_c00278{font-size:50.666667pt;}
.fs5_c00278{font-size:53.333333pt;}
.fs6_c00278{font-size:64.000000pt;}
.fs3_c00278{font-size:69.333333pt;}
.fs2_c00278{font-size:72.000000pt;}
.fs8_c00278{font-size:77.333333pt;}
.fs0_c00278{font-size:88.000000pt;}
.fs1_c00278{font-size:90.666667pt;}
.y0_c00278{bottom:0.000000pt;}
.y25_c00278{bottom:2.760000pt;}
.y24_c00278{bottom:6.425212pt;}
.y23_c00278{bottom:61.466667pt;}
.y22_c00278{bottom:82.533333pt;}
.y21_c00278{bottom:105.600000pt;}
.y20_c00278{bottom:126.266667pt;}
.y1f_c00278{bottom:148.266667pt;}
.y1e_c00278{bottom:170.133333pt;}
.y1d_c00278{bottom:192.266667pt;}
.y1c_c00278{bottom:214.266667pt;}
.y1b_c00278{bottom:235.866667pt;}
.y1a_c00278{bottom:257.466667pt;}
.y19_c00278{bottom:278.666667pt;}
.y18_c00278{bottom:300.400000pt;}
.y17_c00278{bottom:322.266667pt;}
.y16_c00278{bottom:343.466667pt;}
.y15_c00278{bottom:365.200000pt;}
.y14_c00278{bottom:386.666667pt;}
.y13_c00278{bottom:408.666667pt;}
.y12_c00278{bottom:429.600000pt;}
.y11_c00278{bottom:451.600000pt;}
.y10_c00278{bottom:473.466667pt;}
.yf_c00278{bottom:493.600000pt;}
.ye_c00278{bottom:515.733333pt;}
.yd_c00278{bottom:535.466667pt;}
.yc_c00278{bottom:555.866667pt;}
.yb_c00278{bottom:576.666667pt;}
.ya_c00278{bottom:599.200000pt;}
.y9_c00278{bottom:620.400000pt;}
.y8_c00278{bottom:640.800000pt;}
.y7_c00278{bottom:662.133333pt;}
.y6_c00278{bottom:683.733333pt;}
.y5_c00278{bottom:705.600000pt;}
.y4_c00278{bottom:730.266667pt;}
.y3_c00278{bottom:766.800000pt;}
.y2_c00278{bottom:790.800000pt;}
.y1_c00278{bottom:822.266667pt;}
.ha_c00278{height:11.733399pt;}
.hb_c00278{height:38.937500pt;}
.h8_c00278{height:59.300781pt;}
.h4_c00278{height:67.526042pt;}
.h3_c00278{height:70.664062pt;}
.h6_c00278{height:74.906250pt;}
.h7_c00278{height:81.031250pt;}
.h9_c00278{height:81.045333pt;}
.h5_c00278{height:87.783854pt;}
.h2_c00278{height:102.996094pt;}
.h0_c00278{height:871.200000pt;}
.h1_c00278{height:871.333333pt;}
.w2_c00278{width:93.222667pt;}
.w0_c00278{width:591.866667pt;}
.w1_c00278{width:592.000000pt;}
.x0_c00278{left:0.000000pt;}
.xa_c00278{left:34.400000pt;}
.xc_c00278{left:35.333333pt;}
.x9_c00278{left:36.800000pt;}
.x8_c00278{left:37.866667pt;}
.x7_c00278{left:39.333333pt;}
.x6_c00278{left:40.400000pt;}
.x5_c00278{left:41.333333pt;}
.x2_c00278{left:42.533333pt;}
.x3_c00278{left:44.666667pt;}
.xb_c00278{left:59.066667pt;}
.x4_c00278{left:88.133333pt;}
.x1_c00278{left:98.133333pt;}
.xe_c00278{left:253.101563pt;}
.xd_c00278{left:334.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_5c1a81efae8113f249587001.woff2')format("woff");}.ff1_c00279{font-family:ff1_c00279;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00279;src:url('chunks/assets/font_4d29948ff112872b7e49d618.woff2')format("woff");}.ff2_c00279{font-family:ff2_c00279;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00279;src:url('chunks/assets/font_692dd58244e6cf5dcbdc5ee6.woff2')format("woff");}.ff3_c00279{font-family:ff3_c00279;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00279;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff4_c00279{font-family:ff4_c00279;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00279;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c00279{font-family:ff5_c00279;line-height:1.219238;font-style: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;}
.ls1_c00279{letter-spacing:0.000000px;}
.ls0_c00279{letter-spacing:2.100000px;}
.sc__c00279{text-shadow:none;}
.sc0_c00279{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00279{-webkit-text-stroke:0px transparent;}
.sc0_c00279{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00279{word-spacing:-20.250000px;}
.ws1_c00279{word-spacing:-17.352000px;}
.ws2_c00279{word-spacing:0.000000px;}
._10_c00279{margin-left:-29.322000px;}
._17_c00279{margin-left:-22.923000px;}
._12_c00279{margin-left:-21.546000px;}
._1c_c00279{margin-left:-20.007000px;}
._18_c00279{margin-left:-15.309000px;}
._20_c00279{margin-left:-12.801000px;}
._16_c00279{margin-left:-11.664000px;}
._15_c00279{margin-left:-8.586000px;}
._a_c00279{margin-left:-6.885000px;}
._d_c00279{margin-left:-5.346000px;}
._f_c00279{margin-left:-4.131000px;}
._1_c00279{margin-left:-3.078000px;}
._b_c00279{margin-left:-1.296000px;}
._0_c00279{width:1.782000px;}
._3_c00279{width:3.159000px;}
._2_c00279{width:4.779000px;}
._c_c00279{width:6.075000px;}
._4_c00279{width:7.128000px;}
._5_c00279{width:8.991000px;}
._9_c00279{width:10.854000px;}
._e_c00279{width:12.150000px;}
._6_c00279{width:13.770000px;}
._14_c00279{width:16.119000px;}
._13_c00279{width:17.415000px;}
._1a_c00279{width:19.023000px;}
._8_c00279{width:22.356000px;}
._1f_c00279{width:26.892000px;}
._7_c00279{width:33.777000px;}
._21_c00279{width:35.460000px;}
._1d_c00279{width:84.735000px;}
._1b_c00279{width:191.988000px;}
._11_c00279{width:248.832000px;}
._19_c00279{width:363.204000px;}
._1e_c00279{width:601.440000px;}
.fc2_c00279{color:transparent;}
.fc1_c00279{color:rgb(128,128,128);}
.fc0_c00279{color:rgb(0,0,0);}
.fs3_c00279{font-size:48.000000px;}
.fs2_c00279{font-size:72.000000px;}
.fs0_c00279{font-size:81.000000px;}
.fs1_c00279{font-size:87.000000px;}
.y0_c00279{bottom:0.000000px;}
.y25_c00279{bottom:3.105000px;}
.y24_c00279{bottom:7.228369px;}
.y23_c00279{bottom:59.070000px;}
.y22_c00279{bottom:84.270000px;}
.y21_c00279{bottom:110.670000px;}
.y20_c00279{bottom:134.220000px;}
.y1f_c00279{bottom:158.520000px;}
.y1e_c00279{bottom:182.820000px;}
.y1d_c00279{bottom:207.270000px;}
.y1c_c00279{bottom:231.420000px;}
.y1b_c00279{bottom:256.470000px;}
.y1a_c00279{bottom:280.470000px;}
.y19_c00279{bottom:305.370000px;}
.y18_c00279{bottom:327.420000px;}
.y17_c00279{bottom:353.070000px;}
.y16_c00279{bottom:378.270000px;}
.y15_c00279{bottom:403.020000px;}
.y14_c00279{bottom:426.270000px;}
.y13_c00279{bottom:450.270000px;}
.y12_c00279{bottom:474.420000px;}
.y11_c00279{bottom:498.720000px;}
.y10_c00279{bottom:522.420000px;}
.yf_c00279{bottom:546.720000px;}
.ye_c00279{bottom:571.320000px;}
.yd_c00279{bottom:595.020000px;}
.yc_c00279{bottom:619.320000px;}
.yb_c00279{bottom:643.620000px;}
.ya_c00279{bottom:668.520000px;}
.y9_c00279{bottom:691.770000px;}
.y8_c00279{bottom:716.070000px;}
.y7_c00279{bottom:740.370000px;}
.y6_c00279{bottom:764.820000px;}
.y5_c00279{bottom:788.370000px;}
.y4_c00279{bottom:812.670000px;}
.y3_c00279{bottom:836.670000px;}
.y2_c00279{bottom:860.970000px;}
.y1_c00279{bottom:885.270000px;}
.h6_c00279{height:13.200073px;}
.h7_c00279{height:43.804688px;}
.h2_c00279{height:79.497070px;}
.h4_c00279{height:84.269531px;}
.h5_c00279{height:91.160156px;}
.h3_c00279{height:91.176000px;}
.h1_c00279{height:981.000000px;}
.h0_c00279{height:981.150000px;}
.w1_c00279{width:104.875500px;}
.w0_c00279{width:657.750000px;}
.x0_c00279{left:0.000000px;}
.x3_c00279{left:43.500000px;}
.xc_c00279{left:48.900000px;}
.xd_c00279{left:49.950000px;}
.xe_c00279{left:125.100000px;}
.x1_c00279{left:129.150000px;}
.x2_c00279{left:130.950000px;}
.x4_c00279{left:132.300000px;}
.x5_c00279{left:133.350000px;}
.x7_c00279{left:134.550000px;}
.x8_c00279{left:136.650000px;}
.x9_c00279{left:137.700000px;}
.xa_c00279{left:139.350000px;}
.xb_c00279{left:140.700000px;}
.xf_c00279{left:141.750000px;}
.x6_c00279{left:166.650000px;}
.x11_c00279{left:280.689240px;}
.x10_c00279{left:601.350000px;}
@media print{
.v0_c00279{vertical-align:0.000000pt;}
.ls1_c00279{letter-spacing:0.000000pt;}
.ls0_c00279{letter-spacing:1.866667pt;}
.ws0_c00279{word-spacing:-18.000000pt;}
.ws1_c00279{word-spacing:-15.424000pt;}
.ws2_c00279{word-spacing:0.000000pt;}
._10_c00279{margin-left:-26.064000pt;}
._17_c00279{margin-left:-20.376000pt;}
._12_c00279{margin-left:-19.152000pt;}
._1c_c00279{margin-left:-17.784000pt;}
._18_c00279{margin-left:-13.608000pt;}
._20_c00279{margin-left:-11.378667pt;}
._16_c00279{margin-left:-10.368000pt;}
._15_c00279{margin-left:-7.632000pt;}
._a_c00279{margin-left:-6.120000pt;}
._d_c00279{margin-left:-4.752000pt;}
._f_c00279{margin-left:-3.672000pt;}
._1_c00279{margin-left:-2.736000pt;}
._b_c00279{margin-left:-1.152000pt;}
._0_c00279{width:1.584000pt;}
._3_c00279{width:2.808000pt;}
._2_c00279{width:4.248000pt;}
._c_c00279{width:5.400000pt;}
._4_c00279{width:6.336000pt;}
._5_c00279{width:7.992000pt;}
._9_c00279{width:9.648000pt;}
._e_c00279{width:10.800000pt;}
._6_c00279{width:12.240000pt;}
._14_c00279{width:14.328000pt;}
._13_c00279{width:15.480000pt;}
._1a_c00279{width:16.909333pt;}
._8_c00279{width:19.872000pt;}
._1f_c00279{width:23.904000pt;}
._7_c00279{width:30.024000pt;}
._21_c00279{width:31.520000pt;}
._1d_c00279{width:75.320000pt;}
._1b_c00279{width:170.656000pt;}
._11_c00279{width:221.184000pt;}
._19_c00279{width:322.848000pt;}
._1e_c00279{width:534.613333pt;}
.fs3_c00279{font-size:42.666667pt;}
.fs2_c00279{font-size:64.000000pt;}
.fs0_c00279{font-size:72.000000pt;}
.fs1_c00279{font-size:77.333333pt;}
.y0_c00279{bottom:0.000000pt;}
.y25_c00279{bottom:2.760000pt;}
.y24_c00279{bottom:6.425217pt;}
.y23_c00279{bottom:52.506667pt;}
.y22_c00279{bottom:74.906667pt;}
.y21_c00279{bottom:98.373333pt;}
.y20_c00279{bottom:119.306667pt;}
.y1f_c00279{bottom:140.906667pt;}
.y1e_c00279{bottom:162.506667pt;}
.y1d_c00279{bottom:184.240000pt;}
.y1c_c00279{bottom:205.706667pt;}
.y1b_c00279{bottom:227.973333pt;}
.y1a_c00279{bottom:249.306667pt;}
.y19_c00279{bottom:271.440000pt;}
.y18_c00279{bottom:291.040000pt;}
.y17_c00279{bottom:313.840000pt;}
.y16_c00279{bottom:336.240000pt;}
.y15_c00279{bottom:358.240000pt;}
.y14_c00279{bottom:378.906667pt;}
.y13_c00279{bottom:400.240000pt;}
.y12_c00279{bottom:421.706667pt;}
.y11_c00279{bottom:443.306667pt;}
.y10_c00279{bottom:464.373333pt;}
.yf_c00279{bottom:485.973333pt;}
.ye_c00279{bottom:507.840000pt;}
.yd_c00279{bottom:528.906667pt;}
.yc_c00279{bottom:550.506667pt;}
.yb_c00279{bottom:572.106667pt;}
.ya_c00279{bottom:594.240000pt;}
.y9_c00279{bottom:614.906667pt;}
.y8_c00279{bottom:636.506667pt;}
.y7_c00279{bottom:658.106667pt;}
.y6_c00279{bottom:679.840000pt;}
.y5_c00279{bottom:700.773333pt;}
.y4_c00279{bottom:722.373333pt;}
.y3_c00279{bottom:743.706667pt;}
.y2_c00279{bottom:765.306667pt;}
.y1_c00279{bottom:786.906667pt;}
.h6_c00279{height:11.733399pt;}
.h7_c00279{height:38.937500pt;}
.h2_c00279{height:70.664062pt;}
.h4_c00279{height:74.906250pt;}
.h5_c00279{height:81.031250pt;}
.h3_c00279{height:81.045333pt;}
.h1_c00279{height:872.000000pt;}
.h0_c00279{height:872.133333pt;}
.w1_c00279{width:93.222667pt;}
.w0_c00279{width:584.666667pt;}
.x0_c00279{left:0.000000pt;}
.x3_c00279{left:38.666667pt;}
.xc_c00279{left:43.466667pt;}
.xd_c00279{left:44.400000pt;}
.xe_c00279{left:111.200000pt;}
.x1_c00279{left:114.800000pt;}
.x2_c00279{left:116.400000pt;}
.x4_c00279{left:117.600000pt;}
.x5_c00279{left:118.533333pt;}
.x7_c00279{left:119.600000pt;}
.x8_c00279{left:121.466667pt;}
.x9_c00279{left:122.400000pt;}
.xa_c00279{left:123.866667pt;}
.xb_c00279{left:125.066667pt;}
.xf_c00279{left:126.000000pt;}
.x6_c00279{left:148.133333pt;}
.x11_c00279{left:249.501546pt;}
.x10_c00279{left:534.533333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_b527fea0e14aaba10f5b8466.woff2')format("woff");}.ff1_c00280{font-family:ff1_c00280;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00280;src:url('chunks/assets/font_a64ceaeaa3558829ef1146a5.woff2')format("woff");}.ff2_c00280{font-family:ff2_c00280;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00280;src:url('chunks/assets/font_0311b8806ed024f53756eead.woff2')format("woff");}.ff3_c00280{font-family:ff3_c00280;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00280;src:url('chunks/assets/font_bdb382b51915189b1b7f9fe5.woff2')format("woff");}.ff4_c00280{font-family:ff4_c00280;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00280;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c00280{font-family:ff5_c00280;line-height:1.219238;font-style: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;}
.ls1_c00280{letter-spacing:0.000000px;}
.ls0_c00280{letter-spacing:2.145600px;}
.sc__c00280{text-shadow:none;}
.sc0_c00280{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00280{-webkit-text-stroke:0px transparent;}
.sc0_c00280{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00280{word-spacing:-23.859000px;}
.ws1_c00280{word-spacing:-23.832000px;}
.ws2_c00280{word-spacing:0.000000px;}
._2_c00280{margin-left:-52.536000px;}
._15_c00280{margin-left:-20.412000px;}
._1c_c00280{margin-left:-13.695000px;}
._1_c00280{margin-left:-11.748000px;}
._1a_c00280{margin-left:-9.765000px;}
._1b_c00280{margin-left:-8.757000px;}
._14_c00280{margin-left:-7.317000px;}
._4_c00280{margin-left:-5.643000px;}
._5_c00280{margin-left:-4.455000px;}
._e_c00280{margin-left:-3.087000px;}
._0_c00280{margin-left:-1.980000px;}
._6_c00280{width:1.584000px;}
._7_c00280{width:3.267000px;}
._d_c00280{width:4.401000px;}
._9_c00280{width:5.742000px;}
._a_c00280{width:7.227000px;}
._f_c00280{width:8.289000px;}
._b_c00280{width:9.801000px;}
._10_c00280{width:10.917000px;}
._c_c00280{width:12.753000px;}
._3_c00280{width:14.895000px;}
._17_c00280{width:15.903000px;}
._13_c00280{width:17.154000px;}
._18_c00280{width:18.666000px;}
._1d_c00280{width:22.296000px;}
._21_c00280{width:23.301000px;}
._25_c00280{width:26.430000px;}
._22_c00280{width:29.682000px;}
._20_c00280{width:34.956000px;}
._1f_c00280{width:36.180000px;}
._19_c00280{width:42.147000px;}
._23_c00280{width:48.786000px;}
._12_c00280{width:55.575000px;}
._8_c00280{width:98.901000px;}
._24_c00280{width:162.054000px;}
._1e_c00280{width:164.844000px;}
._11_c00280{width:254.214000px;}
._16_c00280{width:323.325000px;}
.fc2_c00280{color:transparent;}
.fc1_c00280{color:rgb(128,128,128);}
.fc0_c00280{color:rgb(0,0,0);}
.fs5_c00280{font-size:48.000000px;}
.fs4_c00280{font-size:57.600000px;}
.fs3_c00280{font-size:72.000000px;}
.fs2_c00280{font-size:81.000000px;}
.fs0_c00280{font-size:99.000000px;}
.fs1_c00280{font-size:132.000000px;}
.y0_c00280{bottom:0.000000px;}
.y25_c00280{bottom:3.105000px;}
.y24_c00280{bottom:7.228371px;}
.y23_c00280{bottom:100.965000px;}
.y22_c00280{bottom:123.315000px;}
.y21_c00280{bottom:150.165000px;}
.y20_c00280{bottom:175.965000px;}
.y1f_c00280{bottom:199.515000px;}
.y1e_c00280{bottom:225.165000px;}
.y1d_c00280{bottom:250.215000px;}
.y1c_c00280{bottom:274.815000px;}
.y1b_c00280{bottom:298.815000px;}
.y1a_c00280{bottom:322.965000px;}
.y19_c00280{bottom:347.265000px;}
.y18_c00280{bottom:371.565000px;}
.y17_c00280{bottom:396.315000px;}
.y16_c00280{bottom:420.915000px;}
.y15_c00280{bottom:445.815000px;}
.y14_c00280{bottom:470.115000px;}
.y13_c00280{bottom:494.415000px;}
.y12_c00280{bottom:518.715000px;}
.y11_c00280{bottom:543.015000px;}
.y10_c00280{bottom:567.015000px;}
.yf_c00280{bottom:591.015000px;}
.ye_c00280{bottom:615.015000px;}
.yd_c00280{bottom:639.015000px;}
.yc_c00280{bottom:662.865000px;}
.yb_c00280{bottom:686.865000px;}
.ya_c00280{bottom:711.165000px;}
.y9_c00280{bottom:736.065000px;}
.y8_c00280{bottom:760.065000px;}
.y7_c00280{bottom:784.365000px;}
.y6_c00280{bottom:808.665000px;}
.y5_c00280{bottom:833.265000px;}
.y4_c00280{bottom:857.265000px;}
.y3_c00280{bottom:881.565000px;}
.y2_c00280{bottom:906.165000px;}
.y1_c00280{bottom:939.615000px;}
.h5_c00280{height:13.200074px;}
.h6_c00280{height:43.804688px;}
.h3_c00280{height:79.497070px;}
.h4_c00280{height:84.269531px;}
.h2_c00280{height:167.126953px;}
.h0_c00280{height:989.025000px;}
.h1_c00280{height:989.250000px;}
.w1_c00280{width:104.875500px;}
.w0_c00280{width:672.000000px;}
.x0_c00280{left:0.000000px;}
.x2_c00280{left:45.150000px;}
.x3_c00280{left:46.200000px;}
.x4_c00280{left:47.250000px;}
.x5_c00280{left:48.300000px;}
.x6_c00280{left:49.650000px;}
.x7_c00280{left:50.850000px;}
.x8_c00280{left:51.900000px;}
.x1_c00280{left:108.300000px;}
.x9_c00280{left:287.814240px;}
@media print{
.v0_c00280{vertical-align:0.000000pt;}
.ls1_c00280{letter-spacing:0.000000pt;}
.ls0_c00280{letter-spacing:1.907200pt;}
.ws0_c00280{word-spacing:-21.208000pt;}
.ws1_c00280{word-spacing:-21.184000pt;}
.ws2_c00280{word-spacing:0.000000pt;}
._2_c00280{margin-left:-46.698667pt;}
._15_c00280{margin-left:-18.144000pt;}
._1c_c00280{margin-left:-12.173333pt;}
._1_c00280{margin-left:-10.442667pt;}
._1a_c00280{margin-left:-8.680000pt;}
._1b_c00280{margin-left:-7.784000pt;}
._14_c00280{margin-left:-6.504000pt;}
._4_c00280{margin-left:-5.016000pt;}
._5_c00280{margin-left:-3.960000pt;}
._e_c00280{margin-left:-2.744000pt;}
._0_c00280{margin-left:-1.760000pt;}
._6_c00280{width:1.408000pt;}
._7_c00280{width:2.904000pt;}
._d_c00280{width:3.912000pt;}
._9_c00280{width:5.104000pt;}
._a_c00280{width:6.424000pt;}
._f_c00280{width:7.368000pt;}
._b_c00280{width:8.712000pt;}
._10_c00280{width:9.704000pt;}
._c_c00280{width:11.336000pt;}
._3_c00280{width:13.240000pt;}
._17_c00280{width:14.136000pt;}
._13_c00280{width:15.248000pt;}
._18_c00280{width:16.592000pt;}
._1d_c00280{width:19.818667pt;}
._21_c00280{width:20.712000pt;}
._25_c00280{width:23.493333pt;}
._22_c00280{width:26.384000pt;}
._20_c00280{width:31.072000pt;}
._1f_c00280{width:32.160000pt;}
._19_c00280{width:37.464000pt;}
._23_c00280{width:43.365333pt;}
._12_c00280{width:49.400000pt;}
._8_c00280{width:87.912000pt;}
._24_c00280{width:144.048000pt;}
._1e_c00280{width:146.528000pt;}
._11_c00280{width:225.968000pt;}
._16_c00280{width:287.400000pt;}
.fs5_c00280{font-size:42.666667pt;}
.fs4_c00280{font-size:51.200000pt;}
.fs3_c00280{font-size:64.000000pt;}
.fs2_c00280{font-size:72.000000pt;}
.fs0_c00280{font-size:88.000000pt;}
.fs1_c00280{font-size:117.333333pt;}
.y0_c00280{bottom:0.000000pt;}
.y25_c00280{bottom:2.760000pt;}
.y24_c00280{bottom:6.425219pt;}
.y23_c00280{bottom:89.746667pt;}
.y22_c00280{bottom:109.613333pt;}
.y21_c00280{bottom:133.480000pt;}
.y20_c00280{bottom:156.413333pt;}
.y1f_c00280{bottom:177.346667pt;}
.y1e_c00280{bottom:200.146667pt;}
.y1d_c00280{bottom:222.413333pt;}
.y1c_c00280{bottom:244.280000pt;}
.y1b_c00280{bottom:265.613333pt;}
.y1a_c00280{bottom:287.080000pt;}
.y19_c00280{bottom:308.680000pt;}
.y18_c00280{bottom:330.280000pt;}
.y17_c00280{bottom:352.280000pt;}
.y16_c00280{bottom:374.146667pt;}
.y15_c00280{bottom:396.280000pt;}
.y14_c00280{bottom:417.880000pt;}
.y13_c00280{bottom:439.480000pt;}
.y12_c00280{bottom:461.080000pt;}
.y11_c00280{bottom:482.680000pt;}
.y10_c00280{bottom:504.013333pt;}
.yf_c00280{bottom:525.346667pt;}
.ye_c00280{bottom:546.680000pt;}
.yd_c00280{bottom:568.013333pt;}
.yc_c00280{bottom:589.213333pt;}
.yb_c00280{bottom:610.546667pt;}
.ya_c00280{bottom:632.146667pt;}
.y9_c00280{bottom:654.280000pt;}
.y8_c00280{bottom:675.613333pt;}
.y7_c00280{bottom:697.213333pt;}
.y6_c00280{bottom:718.813333pt;}
.y5_c00280{bottom:740.680000pt;}
.y4_c00280{bottom:762.013333pt;}
.y3_c00280{bottom:783.613333pt;}
.y2_c00280{bottom:805.480000pt;}
.y1_c00280{bottom:835.213333pt;}
.h5_c00280{height:11.733399pt;}
.h6_c00280{height:38.937500pt;}
.h3_c00280{height:70.664062pt;}
.h4_c00280{height:74.906250pt;}
.h2_c00280{height:148.557292pt;}
.h0_c00280{height:879.133333pt;}
.h1_c00280{height:879.333333pt;}
.w1_c00280{width:93.222667pt;}
.w0_c00280{width:597.333333pt;}
.x0_c00280{left:0.000000pt;}
.x2_c00280{left:40.133333pt;}
.x3_c00280{left:41.066667pt;}
.x4_c00280{left:42.000000pt;}
.x5_c00280{left:42.933333pt;}
.x6_c00280{left:44.133333pt;}
.x7_c00280{left:45.200000pt;}
.x8_c00280{left:46.133333pt;}
.x1_c00280{left:96.266667pt;}
.x9_c00280{left:255.834880pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7d139811240f0c70c4857dda.woff2')format("woff");}.ff1_c00281{font-family:ff1_c00281;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00281;src:url('chunks/assets/font_770053a0449766bd52a4cbd2.woff2')format("woff");}.ff2_c00281{font-family:ff2_c00281;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00281;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff3_c00281{font-family:ff3_c00281;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00281;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff4_c00281{font-family:ff4_c00281;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00281{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00281{vertical-align:0.000000px;}
.ls0_c00281{letter-spacing:0.000000px;}
.sc__c00281{text-shadow:none;}
.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;}
}
.ws2_c00281{word-spacing:-20.250000px;}
.ws0_c00281{word-spacing:-17.352000px;}
.ws1_c00281{word-spacing:-0.936000px;}
.ws3_c00281{word-spacing:0.000000px;}
._18_c00281{margin-left:-14.682000px;}
._14_c00281{margin-left:-12.879000px;}
._1f_c00281{margin-left:-10.368000px;}
._1c_c00281{margin-left:-8.262000px;}
._16_c00281{margin-left:-6.399000px;}
._13_c00281{margin-left:-5.265000px;}
._f_c00281{margin-left:-4.212000px;}
._10_c00281{margin-left:-2.673000px;}
._c_c00281{margin-left:-1.215000px;}
._9_c00281{width:1.539000px;}
._6_c00281{width:2.997000px;}
._1_c00281{width:4.050000px;}
._7_c00281{width:5.184000px;}
._0_c00281{width:6.561000px;}
._4_c00281{width:8.181000px;}
._3_c00281{width:9.801000px;}
._a_c00281{width:11.664000px;}
._5_c00281{width:13.446000px;}
._1d_c00281{width:14.985000px;}
._8_c00281{width:16.200000px;}
._b_c00281{width:17.739000px;}
._21_c00281{width:19.728000px;}
._2_c00281{width:22.761000px;}
._d_c00281{width:23.976000px;}
._e_c00281{width:26.487000px;}
._20_c00281{width:28.512000px;}
._22_c00281{width:30.135000px;}
._11_c00281{width:32.967000px;}
._1a_c00281{width:44.604000px;}
._1b_c00281{width:55.641000px;}
._23_c00281{width:157.545000px;}
._17_c00281{width:194.061000px;}
._12_c00281{width:229.635000px;}
._19_c00281{width:248.103000px;}
._1e_c00281{width:264.972000px;}
._15_c00281{width:445.095000px;}
.fc2_c00281{color:transparent;}
.fc1_c00281{color:rgb(128,128,128);}
.fc0_c00281{color:rgb(0,0,0);}
.fs2_c00281{font-size:48.000000px;}
.fs1_c00281{font-size:72.000000px;}
.fs0_c00281{font-size:81.000000px;}
.y0_c00281{bottom:0.000000px;}
.y25_c00281{bottom:3.105000px;}
.y24_c00281{bottom:7.228357px;}
.y23_c00281{bottom:60.030000px;}
.y22_c00281{bottom:82.080000px;}
.y21_c00281{bottom:108.630000px;}
.y20_c00281{bottom:132.330000px;}
.y1f_c00281{bottom:156.030000px;}
.y1e_c00281{bottom:181.230000px;}
.y1d_c00281{bottom:205.830000px;}
.y1c_c00281{bottom:231.630000px;}
.y1b_c00281{bottom:254.880000px;}
.y1a_c00281{bottom:279.480000px;}
.y19_c00281{bottom:303.780000px;}
.y18_c00281{bottom:329.430000px;}
.y17_c00281{bottom:352.080000px;}
.y16_c00281{bottom:379.680000px;}
.y15_c00281{bottom:402.330000px;}
.y14_c00281{bottom:425.580000px;}
.y13_c00281{bottom:450.180000px;}
.y12_c00281{bottom:475.230000px;}
.y11_c00281{bottom:499.230000px;}
.y10_c00281{bottom:522.480000px;}
.yf_c00281{bottom:545.430000px;}
.ye_c00281{bottom:570.330000px;}
.yd_c00281{bottom:594.780000px;}
.yc_c00281{bottom:618.930000px;}
.yb_c00281{bottom:642.930000px;}
.ya_c00281{bottom:667.980000px;}
.y9_c00281{bottom:691.530000px;}
.y8_c00281{bottom:715.830000px;}
.y7_c00281{bottom:739.230000px;}
.y6_c00281{bottom:764.130000px;}
.y5_c00281{bottom:787.980000px;}
.y4_c00281{bottom:811.980000px;}
.y3_c00281{bottom:835.980000px;}
.y2_c00281{bottom:860.280000px;}
.y1_c00281{bottom:884.580000px;}
.h5_c00281{height:13.200074px;}
.h6_c00281{height:43.804688px;}
.h2_c00281{height:79.497070px;}
.h4_c00281{height:84.269531px;}
.h3_c00281{height:91.160156px;}
.h1_c00281{height:978.750000px;}
.h0_c00281{height:979.050000px;}
.w2_c00281{width:104.875500px;}
.w0_c00281{width:656.100000px;}
.w1_c00281{width:656.250000px;}
.x0_c00281{left:0.000000px;}
.x8_c00281{left:18.150000px;}
.xc_c00281{left:20.250000px;}
.x7_c00281{left:24.000000px;}
.x5_c00281{left:26.700000px;}
.xd_c00281{left:111.000000px;}
.xb_c00281{left:114.750000px;}
.xa_c00281{left:115.800000px;}
.x9_c00281{left:117.450000px;}
.x6_c00281{left:118.500000px;}
.x4_c00281{left:120.600000px;}
.x3_c00281{left:121.800000px;}
.x2_c00281{left:122.850000px;}
.x1_c00281{left:124.500000px;}
.xf_c00281{left:279.864258px;}
.xe_c00281{left:558.600000px;}
@media print{
.v0_c00281{vertical-align:0.000000pt;}
.ls0_c00281{letter-spacing:0.000000pt;}
.ws2_c00281{word-spacing:-18.000000pt;}
.ws0_c00281{word-spacing:-15.424000pt;}
.ws1_c00281{word-spacing:-0.832000pt;}
.ws3_c00281{word-spacing:0.000000pt;}
._18_c00281{margin-left:-13.050667pt;}
._14_c00281{margin-left:-11.448000pt;}
._1f_c00281{margin-left:-9.216000pt;}
._1c_c00281{margin-left:-7.344000pt;}
._16_c00281{margin-left:-5.688000pt;}
._13_c00281{margin-left:-4.680000pt;}
._f_c00281{margin-left:-3.744000pt;}
._10_c00281{margin-left:-2.376000pt;}
._c_c00281{margin-left:-1.080000pt;}
._9_c00281{width:1.368000pt;}
._6_c00281{width:2.664000pt;}
._1_c00281{width:3.600000pt;}
._7_c00281{width:4.608000pt;}
._0_c00281{width:5.832000pt;}
._4_c00281{width:7.272000pt;}
._3_c00281{width:8.712000pt;}
._a_c00281{width:10.368000pt;}
._5_c00281{width:11.952000pt;}
._1d_c00281{width:13.320000pt;}
._8_c00281{width:14.400000pt;}
._b_c00281{width:15.768000pt;}
._21_c00281{width:17.536000pt;}
._2_c00281{width:20.232000pt;}
._d_c00281{width:21.312000pt;}
._e_c00281{width:23.544000pt;}
._20_c00281{width:25.344000pt;}
._22_c00281{width:26.786667pt;}
._11_c00281{width:29.304000pt;}
._1a_c00281{width:39.648000pt;}
._1b_c00281{width:49.458667pt;}
._23_c00281{width:140.040000pt;}
._17_c00281{width:172.498667pt;}
._12_c00281{width:204.120000pt;}
._19_c00281{width:220.536000pt;}
._1e_c00281{width:235.530667pt;}
._15_c00281{width:395.640000pt;}
.fs2_c00281{font-size:42.666667pt;}
.fs1_c00281{font-size:64.000000pt;}
.fs0_c00281{font-size:72.000000pt;}
.y0_c00281{bottom:0.000000pt;}
.y25_c00281{bottom:2.760000pt;}
.y24_c00281{bottom:6.425206pt;}
.y23_c00281{bottom:53.360000pt;}
.y22_c00281{bottom:72.960000pt;}
.y21_c00281{bottom:96.560000pt;}
.y20_c00281{bottom:117.626667pt;}
.y1f_c00281{bottom:138.693333pt;}
.y1e_c00281{bottom:161.093333pt;}
.y1d_c00281{bottom:182.960000pt;}
.y1c_c00281{bottom:205.893333pt;}
.y1b_c00281{bottom:226.560000pt;}
.y1a_c00281{bottom:248.426667pt;}
.y19_c00281{bottom:270.026667pt;}
.y18_c00281{bottom:292.826667pt;}
.y17_c00281{bottom:312.960000pt;}
.y16_c00281{bottom:337.493333pt;}
.y15_c00281{bottom:357.626667pt;}
.y14_c00281{bottom:378.293333pt;}
.y13_c00281{bottom:400.160000pt;}
.y12_c00281{bottom:422.426667pt;}
.y11_c00281{bottom:443.760000pt;}
.y10_c00281{bottom:464.426667pt;}
.yf_c00281{bottom:484.826667pt;}
.ye_c00281{bottom:506.960000pt;}
.yd_c00281{bottom:528.693333pt;}
.yc_c00281{bottom:550.160000pt;}
.yb_c00281{bottom:571.493333pt;}
.ya_c00281{bottom:593.760000pt;}
.y9_c00281{bottom:614.693333pt;}
.y8_c00281{bottom:636.293333pt;}
.y7_c00281{bottom:657.093333pt;}
.y6_c00281{bottom:679.226667pt;}
.y5_c00281{bottom:700.426667pt;}
.y4_c00281{bottom:721.760000pt;}
.y3_c00281{bottom:743.093333pt;}
.y2_c00281{bottom:764.693333pt;}
.y1_c00281{bottom:786.293333pt;}
.h5_c00281{height:11.733399pt;}
.h6_c00281{height:38.937500pt;}
.h2_c00281{height:70.664062pt;}
.h4_c00281{height:74.906250pt;}
.h3_c00281{height:81.031250pt;}
.h1_c00281{height:870.000000pt;}
.h0_c00281{height:870.266667pt;}
.w2_c00281{width:93.222667pt;}
.w0_c00281{width:583.200000pt;}
.w1_c00281{width:583.333333pt;}
.x0_c00281{left:0.000000pt;}
.x8_c00281{left:16.133333pt;}
.xc_c00281{left:18.000000pt;}
.x7_c00281{left:21.333333pt;}
.x5_c00281{left:23.733333pt;}
.xd_c00281{left:98.666667pt;}
.xb_c00281{left:102.000000pt;}
.xa_c00281{left:102.933333pt;}
.x9_c00281{left:104.400000pt;}
.x6_c00281{left:105.333333pt;}
.x4_c00281{left:107.200000pt;}
.x3_c00281{left:108.266667pt;}
.x2_c00281{left:109.200000pt;}
.x1_c00281{left:110.666667pt;}
.xf_c00281{left:248.768229pt;}
.xe_c00281{left:496.533333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_02c42c2968b20a9aa0fa3cdc.woff2')format("woff");}.ff1_c00282{font-family:ff1_c00282;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00282;src:url('chunks/assets/font_dabd50469491b3c1122975a8.woff2')format("woff");}.ff2_c00282{font-family:ff2_c00282;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00282;src:url('chunks/assets/font_7823f4e708c442dcf767dd89.woff2')format("woff");}.ff3_c00282{font-family:ff3_c00282;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00282;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff4_c00282{font-family:ff4_c00282;line-height:1.219238;font-style: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;}
.v1_c00282{vertical-align:130.800000px;}
.ls1_c00282{letter-spacing:0.000000px;}
.ls0_c00282{letter-spacing:6.288000px;}
.sc__c00282{text-shadow:none;}
.sc0_c00282{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00282{-webkit-text-stroke:0px transparent;}
.sc0_c00282{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00282{word-spacing:0.000000px;}
._14_c00282{margin-left:-19.656000px;}
._12_c00282{margin-left:-16.281000px;}
._10_c00282{margin-left:-14.823000px;}
._f_c00282{margin-left:-12.879000px;}
._11_c00282{margin-left:-11.259000px;}
._18_c00282{margin-left:-9.720000px;}
._8_c00282{margin-left:-8.667000px;}
._c_c00282{margin-left:-6.966000px;}
._d_c00282{margin-left:-5.832000px;}
._1_c00282{margin-left:-4.293000px;}
._a_c00282{margin-left:-3.159000px;}
._0_c00282{margin-left:-2.106000px;}
._e_c00282{margin-left:-1.053000px;}
._7_c00282{width:1.944000px;}
._9_c00282{width:3.888000px;}
._6_c00282{width:4.941000px;}
._b_c00282{width:6.075000px;}
._5_c00282{width:7.938000px;}
._3_c00282{width:9.639000px;}
._17_c00282{width:11.016000px;}
._4_c00282{width:12.879000px;}
._2_c00282{width:14.742000px;}
._19_c00282{width:16.119000px;}
._1e_c00282{width:17.325000px;}
._16_c00282{width:24.960000px;}
._15_c00282{width:30.486000px;}
._1d_c00282{width:32.886000px;}
._1c_c00282{width:37.746000px;}
._1f_c00282{width:39.915000px;}
._1a_c00282{width:43.821000px;}
._1b_c00282{width:203.148000px;}
._13_c00282{width:777.033000px;}
.fc2_c00282{color:transparent;}
.fc1_c00282{color:rgb(128,128,128);}
.fc0_c00282{color:rgb(0,0,0);}
.fs5_c00282{font-size:48.000000px;}
.fs2_c00282{font-size:57.000000px;}
.fs4_c00282{font-size:72.000000px;}
.fs1_c00282{font-size:78.000000px;}
.fs0_c00282{font-size:81.000000px;}
.fs3_c00282{font-size:252.000000px;}
.y0_c00282{bottom:0.000000px;}
.y23_c00282{bottom:3.105000px;}
.y22_c00282{bottom:7.228371px;}
.y21_c00282{bottom:61.815000px;}
.y20_c00282{bottom:86.715000px;}
.y1f_c00282{bottom:111.465000px;}
.y1e_c00282{bottom:135.765000px;}
.y1d_c00282{bottom:160.365000px;}
.y1c_c00282{bottom:184.665000px;}
.y1b_c00282{bottom:208.965000px;}
.y1a_c00282{bottom:233.565000px;}
.y19_c00282{bottom:257.865000px;}
.y18_c00282{bottom:281.565000px;}
.y17_c00282{bottom:306.165000px;}
.y16_c00282{bottom:330.165000px;}
.y15_c00282{bottom:354.465000px;}
.y14_c00282{bottom:377.715000px;}
.y13_c00282{bottom:402.765000px;}
.y12_c00282{bottom:426.615000px;}
.y11_c00282{bottom:450.615000px;}
.y10_c00282{bottom:474.915000px;}
.yf_c00282{bottom:498.915000px;}
.ye_c00282{bottom:523.215000px;}
.yd_c00282{bottom:547.215000px;}
.yc_c00282{bottom:570.765000px;}
.yb_c00282{bottom:595.365000px;}
.ya_c00282{bottom:618.315000px;}
.y8_c00282{bottom:633.165000px;}
.y9_c00282{bottom:642.315000px;}
.y7_c00282{bottom:714.165000px;}
.y6_c00282{bottom:761.715000px;}
.y5_c00282{bottom:786.465000px;}
.y4_c00282{bottom:810.315000px;}
.y3_c00282{bottom:834.315000px;}
.y2_c00282{bottom:858.315000px;}
.y1_c00282{bottom:882.315000px;}
.h6_c00282{height:13.200074px;}
.h7_c00282{height:43.804688px;}
.h2_c00282{height:79.497070px;}
.h5_c00282{height:84.269531px;}
.h3_c00282{height:98.756836px;}
.h4_c00282{height:247.324219px;}
.h0_c00282{height:989.025000px;}
.h1_c00282{height:989.250000px;}
.w1_c00282{width:104.875500px;}
.w0_c00282{width:672.000000px;}
.x0_c00282{left:0.000000px;}
.xa_c00282{left:55.800000px;}
.x7_c00282{left:57.150000px;}
.x5_c00282{left:59.100000px;}
.x9_c00282{left:60.150000px;}
.x8_c00282{left:61.200000px;}
.x6_c00282{left:62.850000px;}
.x2_c00282{left:65.700000px;}
.x1_c00282{left:66.750000px;}
.x4_c00282{left:69.750000px;}
.x3_c00282{left:106.950000px;}
.xc_c00282{left:287.814240px;}
.xb_c00282{left:493.050000px;}
@media print{
.v0_c00282{vertical-align:0.000000pt;}
.v1_c00282{vertical-align:116.266667pt;}
.ls1_c00282{letter-spacing:0.000000pt;}
.ls0_c00282{letter-spacing:5.589333pt;}
.ws0_c00282{word-spacing:0.000000pt;}
._14_c00282{margin-left:-17.472000pt;}
._12_c00282{margin-left:-14.472000pt;}
._10_c00282{margin-left:-13.176000pt;}
._f_c00282{margin-left:-11.448000pt;}
._11_c00282{margin-left:-10.008000pt;}
._18_c00282{margin-left:-8.640000pt;}
._8_c00282{margin-left:-7.704000pt;}
._c_c00282{margin-left:-6.192000pt;}
._d_c00282{margin-left:-5.184000pt;}
._1_c00282{margin-left:-3.816000pt;}
._a_c00282{margin-left:-2.808000pt;}
._0_c00282{margin-left:-1.872000pt;}
._e_c00282{margin-left:-0.936000pt;}
._7_c00282{width:1.728000pt;}
._9_c00282{width:3.456000pt;}
._6_c00282{width:4.392000pt;}
._b_c00282{width:5.400000pt;}
._5_c00282{width:7.056000pt;}
._3_c00282{width:8.568000pt;}
._17_c00282{width:9.792000pt;}
._4_c00282{width:11.448000pt;}
._2_c00282{width:13.104000pt;}
._19_c00282{width:14.328000pt;}
._1e_c00282{width:15.400000pt;}
._16_c00282{width:22.186667pt;}
._15_c00282{width:27.098667pt;}
._1d_c00282{width:29.232000pt;}
._1c_c00282{width:33.552000pt;}
._1f_c00282{width:35.480000pt;}
._1a_c00282{width:38.952000pt;}
._1b_c00282{width:180.576000pt;}
._13_c00282{width:690.696000pt;}
.fs5_c00282{font-size:42.666667pt;}
.fs2_c00282{font-size:50.666667pt;}
.fs4_c00282{font-size:64.000000pt;}
.fs1_c00282{font-size:69.333333pt;}
.fs0_c00282{font-size:72.000000pt;}
.fs3_c00282{font-size:224.000000pt;}
.y0_c00282{bottom:0.000000pt;}
.y23_c00282{bottom:2.760000pt;}
.y22_c00282{bottom:6.425219pt;}
.y21_c00282{bottom:54.946667pt;}
.y20_c00282{bottom:77.080000pt;}
.y1f_c00282{bottom:99.080000pt;}
.y1e_c00282{bottom:120.680000pt;}
.y1d_c00282{bottom:142.546667pt;}
.y1c_c00282{bottom:164.146667pt;}
.y1b_c00282{bottom:185.746667pt;}
.y1a_c00282{bottom:207.613333pt;}
.y19_c00282{bottom:229.213333pt;}
.y18_c00282{bottom:250.280000pt;}
.y17_c00282{bottom:272.146667pt;}
.y16_c00282{bottom:293.480000pt;}
.y15_c00282{bottom:315.080000pt;}
.y14_c00282{bottom:335.746667pt;}
.y13_c00282{bottom:358.013333pt;}
.y12_c00282{bottom:379.213333pt;}
.y11_c00282{bottom:400.546667pt;}
.y10_c00282{bottom:422.146667pt;}
.yf_c00282{bottom:443.480000pt;}
.ye_c00282{bottom:465.080000pt;}
.yd_c00282{bottom:486.413333pt;}
.yc_c00282{bottom:507.346667pt;}
.yb_c00282{bottom:529.213333pt;}
.ya_c00282{bottom:549.613333pt;}
.y8_c00282{bottom:562.813333pt;}
.y9_c00282{bottom:570.946667pt;}
.y7_c00282{bottom:634.813333pt;}
.y6_c00282{bottom:677.080000pt;}
.y5_c00282{bottom:699.080000pt;}
.y4_c00282{bottom:720.280000pt;}
.y3_c00282{bottom:741.613333pt;}
.y2_c00282{bottom:762.946667pt;}
.y1_c00282{bottom:784.280000pt;}
.h6_c00282{height:11.733399pt;}
.h7_c00282{height:38.937500pt;}
.h2_c00282{height:70.664062pt;}
.h5_c00282{height:74.906250pt;}
.h3_c00282{height:87.783854pt;}
.h4_c00282{height:219.843750pt;}
.h0_c00282{height:879.133333pt;}
.h1_c00282{height:879.333333pt;}
.w1_c00282{width:93.222667pt;}
.w0_c00282{width:597.333333pt;}
.x0_c00282{left:0.000000pt;}
.xa_c00282{left:49.600000pt;}
.x7_c00282{left:50.800000pt;}
.x5_c00282{left:52.533333pt;}
.x9_c00282{left:53.466667pt;}
.x8_c00282{left:54.400000pt;}
.x6_c00282{left:55.866667pt;}
.x2_c00282{left:58.400000pt;}
.x1_c00282{left:59.333333pt;}
.x4_c00282{left:62.000000pt;}
.x3_c00282{left:95.066667pt;}
.xc_c00282{left:255.834880pt;}
.xb_c00282{left:438.266667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_403eb67642539f2fa5b8105a.woff2')format("woff");}.ff1_c00283{font-family:ff1_c00283;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00283;src:url('chunks/assets/font_45ebfb6843a94737e667fc19.woff2')format("woff");}.ff2_c00283{font-family:ff2_c00283;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00283;src:url('chunks/assets/font_30f7c6b03d3768af7ec74582.woff2')format("woff");}.ff3_c00283{font-family:ff3_c00283;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00283;src:url('chunks/assets/font_2e1bcfb50dc206e482b50d4d.woff2')format("woff");}.ff4_c00283{font-family:ff4_c00283;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00283;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c00283{font-family:ff5_c00283;line-height:1.219238;font-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_c00283{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,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;}
.ls0_c00283{letter-spacing:0.000000px;}
.sc__c00283{text-shadow:none;}
.sc0_c00283{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00283{-webkit-text-stroke:0px transparent;}
.sc0_c00283{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00283{word-spacing:-1.785000px;}
.ws1_c00283{word-spacing:0.000000px;}
._1c_c00283{margin-left:-28.455000px;}
._18_c00283{margin-left:-21.387000px;}
._1d_c00283{margin-left:-12.708000px;}
._1e_c00283{margin-left:-11.322000px;}
._1b_c00283{margin-left:-7.926000px;}
._15_c00283{margin-left:-6.447000px;}
._20_c00283{margin-left:-5.259000px;}
._17_c00283{margin-left:-4.122000px;}
._16_c00283{margin-left:-2.904000px;}
._e_c00283{margin-left:-1.557000px;}
._3_c00283{width:1.824000px;}
._1_c00283{width:3.021000px;}
._0_c00283{width:4.161000px;}
._5_c00283{width:5.415000px;}
._c_c00283{width:6.726000px;}
._1f_c00283{width:7.770000px;}
._9_c00283{width:8.778000px;}
._b_c00283{width:9.804000px;}
._14_c00283{width:10.902000px;}
._a_c00283{width:12.027000px;}
._19_c00283{width:13.116000px;}
._13_c00283{width:14.637000px;}
._2_c00283{width:16.188000px;}
._f_c00283{width:17.790000px;}
._6_c00283{width:20.007000px;}
._7_c00283{width:21.204000px;}
._8_c00283{width:22.971000px;}
._d_c00283{width:25.707000px;}
._12_c00283{width:27.996000px;}
._1a_c00283{width:31.647000px;}
._11_c00283{width:35.763000px;}
._10_c00283{width:37.647000px;}
._4_c00283{width:135.318000px;}
.fc2_c00283{color:transparent;}
.fc1_c00283{color:rgb(128,128,128);}
.fc0_c00283{color:rgb(0,0,0);}
.fs5_c00283{font-size:48.000000px;}
.fs2_c00283{font-size:51.000000px;}
.fs0_c00283{font-size:57.000000px;}
.fs1_c00283{font-size:78.000000px;}
.fs3_c00283{font-size:81.000000px;}
.fs4_c00283{font-size:108.000000px;}
.y0_c00283{bottom:0.000000px;}
.y26_c00283{bottom:3.105000px;}
.y25_c00283{bottom:7.228371px;}
.y24_c00283{bottom:56.115000px;}
.y23_c00283{bottom:78.765000px;}
.y22_c00283{bottom:78.915000px;}
.y21_c00283{bottom:104.265000px;}
.y20_c00283{bottom:129.615000px;}
.y1f_c00283{bottom:153.615000px;}
.y1e_c00283{bottom:178.515000px;}
.y1d_c00283{bottom:202.965000px;}
.y1c_c00283{bottom:227.565000px;}
.y1b_c00283{bottom:252.165000px;}
.y1a_c00283{bottom:277.065000px;}
.y19_c00283{bottom:301.365000px;}
.y18_c00283{bottom:325.665000px;}
.y17_c00283{bottom:350.115000px;}
.y16_c00283{bottom:374.715000px;}
.y15_c00283{bottom:398.715000px;}
.y14_c00283{bottom:423.615000px;}
.y13_c00283{bottom:447.615000px;}
.y12_c00283{bottom:471.915000px;}
.y11_c00283{bottom:495.765000px;}
.y10_c00283{bottom:519.765000px;}
.yf_c00283{bottom:543.765000px;}
.ye_c00283{bottom:568.065000px;}
.yd_c00283{bottom:592.065000px;}
.yc_c00283{bottom:616.365000px;}
.yb_c00283{bottom:640.965000px;}
.ya_c00283{bottom:665.565000px;}
.y9_c00283{bottom:689.565000px;}
.y8_c00283{bottom:713.265000px;}
.y7_c00283{bottom:737.565000px;}
.y6_c00283{bottom:762.165000px;}
.y5_c00283{bottom:786.465000px;}
.y4_c00283{bottom:810.465000px;}
.y3_c00283{bottom:834.015000px;}
.y2_c00283{bottom:859.065000px;}
.y1_c00283{bottom:883.965000px;}
.h7_c00283{height:13.200074px;}
.h8_c00283{height:43.804688px;}
.h4_c00283{height:51.398438px;}
.h2_c00283{height:72.168457px;}
.h5_c00283{height:79.497070px;}
.h3_c00283{height:98.756836px;}
.h6_c00283{height:108.843750px;}
.h0_c00283{height:976.875000px;}
.h1_c00283{height:977.250000px;}
.w2_c00283{width:104.875500px;}
.w1_c00283{width:654.750000px;}
.w0_c00283{width:655.050000px;}
.x0_c00283{left:0.000000px;}
.x2_c00283{left:120.150000px;}
.x1_c00283{left:121.800000px;}
.x4_c00283{left:122.850000px;}
.x5_c00283{left:124.500000px;}
.x6_c00283{left:125.850000px;}
.x3_c00283{left:145.500000px;}
.xc_c00283{left:279.339249px;}
.x7_c00283{left:310.800000px;}
.x8_c00283{left:388.200000px;}
.x9_c00283{left:423.600000px;}
.xa_c00283{left:498.900000px;}
.xb_c00283{left:552.600000px;}
@media print{
.v0_c00283{vertical-align:0.000000pt;}
.ls0_c00283{letter-spacing:0.000000pt;}
.ws0_c00283{word-spacing:-1.586667pt;}
.ws1_c00283{word-spacing:0.000000pt;}
._1c_c00283{margin-left:-25.293333pt;}
._18_c00283{margin-left:-19.010667pt;}
._1d_c00283{margin-left:-11.296000pt;}
._1e_c00283{margin-left:-10.064000pt;}
._1b_c00283{margin-left:-7.045333pt;}
._15_c00283{margin-left:-5.730667pt;}
._20_c00283{margin-left:-4.674667pt;}
._17_c00283{margin-left:-3.664000pt;}
._16_c00283{margin-left:-2.581333pt;}
._e_c00283{margin-left:-1.384000pt;}
._3_c00283{width:1.621333pt;}
._1_c00283{width:2.685333pt;}
._0_c00283{width:3.698667pt;}
._5_c00283{width:4.813333pt;}
._c_c00283{width:5.978667pt;}
._1f_c00283{width:6.906667pt;}
._9_c00283{width:7.802667pt;}
._b_c00283{width:8.714667pt;}
._14_c00283{width:9.690667pt;}
._a_c00283{width:10.690667pt;}
._19_c00283{width:11.658667pt;}
._13_c00283{width:13.010667pt;}
._2_c00283{width:14.389333pt;}
._f_c00283{width:15.813333pt;}
._6_c00283{width:17.784000pt;}
._7_c00283{width:18.848000pt;}
._8_c00283{width:20.418667pt;}
._d_c00283{width:22.850667pt;}
._12_c00283{width:24.885333pt;}
._1a_c00283{width:28.130667pt;}
._11_c00283{width:31.789333pt;}
._10_c00283{width:33.464000pt;}
._4_c00283{width:120.282667pt;}
.fs5_c00283{font-size:42.666667pt;}
.fs2_c00283{font-size:45.333333pt;}
.fs0_c00283{font-size:50.666667pt;}
.fs1_c00283{font-size:69.333333pt;}
.fs3_c00283{font-size:72.000000pt;}
.fs4_c00283{font-size:96.000000pt;}
.y0_c00283{bottom:0.000000pt;}
.y26_c00283{bottom:2.760000pt;}
.y25_c00283{bottom:6.425219pt;}
.y24_c00283{bottom:49.880000pt;}
.y23_c00283{bottom:70.013333pt;}
.y22_c00283{bottom:70.146667pt;}
.y21_c00283{bottom:92.680000pt;}
.y20_c00283{bottom:115.213333pt;}
.y1f_c00283{bottom:136.546667pt;}
.y1e_c00283{bottom:158.680000pt;}
.y1d_c00283{bottom:180.413333pt;}
.y1c_c00283{bottom:202.280000pt;}
.y1b_c00283{bottom:224.146667pt;}
.y1a_c00283{bottom:246.280000pt;}
.y19_c00283{bottom:267.880000pt;}
.y18_c00283{bottom:289.480000pt;}
.y17_c00283{bottom:311.213333pt;}
.y16_c00283{bottom:333.080000pt;}
.y15_c00283{bottom:354.413333pt;}
.y14_c00283{bottom:376.546667pt;}
.y13_c00283{bottom:397.880000pt;}
.y12_c00283{bottom:419.480000pt;}
.y11_c00283{bottom:440.680000pt;}
.y10_c00283{bottom:462.013333pt;}
.yf_c00283{bottom:483.346667pt;}
.ye_c00283{bottom:504.946667pt;}
.yd_c00283{bottom:526.280000pt;}
.yc_c00283{bottom:547.880000pt;}
.yb_c00283{bottom:569.746667pt;}
.ya_c00283{bottom:591.613333pt;}
.y9_c00283{bottom:612.946667pt;}
.y8_c00283{bottom:634.013333pt;}
.y7_c00283{bottom:655.613333pt;}
.y6_c00283{bottom:677.480000pt;}
.y5_c00283{bottom:699.080000pt;}
.y4_c00283{bottom:720.413333pt;}
.y3_c00283{bottom:741.346667pt;}
.y2_c00283{bottom:763.613333pt;}
.y1_c00283{bottom:785.746667pt;}
.h7_c00283{height:11.733399pt;}
.h8_c00283{height:38.937500pt;}
.h4_c00283{height:45.687500pt;}
.h2_c00283{height:64.149740pt;}
.h5_c00283{height:70.664062pt;}
.h3_c00283{height:87.783854pt;}
.h6_c00283{height:96.750000pt;}
.h0_c00283{height:868.333333pt;}
.h1_c00283{height:868.666667pt;}
.w2_c00283{width:93.222667pt;}
.w1_c00283{width:582.000000pt;}
.w0_c00283{width:582.266667pt;}
.x0_c00283{left:0.000000pt;}
.x2_c00283{left:106.800000pt;}
.x1_c00283{left:108.266667pt;}
.x4_c00283{left:109.200000pt;}
.x5_c00283{left:110.666667pt;}
.x6_c00283{left:111.866667pt;}
.x3_c00283{left:129.333333pt;}
.xc_c00283{left:248.301554pt;}
.x7_c00283{left:276.266667pt;}
.x8_c00283{left:345.066667pt;}
.x9_c00283{left:376.533333pt;}
.xa_c00283{left:443.466667pt;}
.xb_c00283{left:491.200000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_501e5004ad93d99bd62f0459.woff2')format("woff");}.ff1_c00284{font-family:ff1_c00284;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00284;src:url('chunks/assets/font_36cfb818db7859c8745af67e.woff2')format("woff");}.ff2_c00284{font-family:ff2_c00284;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00284;src:url('chunks/assets/font_9ca26ee6300de3c115616fa0.woff2')format("woff");}.ff3_c00284{font-family:ff3_c00284;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00284;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff4_c00284{font-family:ff4_c00284;line-height:1.219238;font-style: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;}
.ls0_c00284{letter-spacing:0.000000px;}
.sc__c00284{text-shadow:none;}
.sc0_c00284{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00284{-webkit-text-stroke:0px transparent;}
.sc0_c00284{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00284{word-spacing:-17.352000px;}
.ws1_c00284{word-spacing:0.000000px;}
._16_c00284{margin-left:-26.406000px;}
._17_c00284{margin-left:-24.300000px;}
._1f_c00284{margin-left:-22.932000px;}
._10_c00284{margin-left:-17.865000px;}
._20_c00284{margin-left:-16.200000px;}
._1d_c00284{margin-left:-14.985000px;}
._d_c00284{margin-left:-13.536000px;}
._23_c00284{margin-left:-10.215000px;}
._7_c00284{margin-left:-9.009000px;}
._5_c00284{margin-left:-7.227000px;}
._0_c00284{margin-left:-5.346000px;}
._4_c00284{margin-left:-3.960000px;}
._1_c00284{margin-left:-2.376000px;}
._3_c00284{margin-left:-1.287000px;}
._6_c00284{width:1.683000px;}
._9_c00284{width:3.366000px;}
._8_c00284{width:5.148000px;}
._c_c00284{width:6.561000px;}
._e_c00284{width:7.596000px;}
._2_c00284{width:9.009000px;}
._b_c00284{width:11.052000px;}
._11_c00284{width:12.492000px;}
._12_c00284{width:13.662000px;}
._13_c00284{width:14.931000px;}
._1c_c00284{width:16.161000px;}
._f_c00284{width:18.396000px;}
._15_c00284{width:76.464000px;}
._18_c00284{width:83.268000px;}
._a_c00284{width:87.369000px;}
._1e_c00284{width:120.588000px;}
._1b_c00284{width:130.890000px;}
._1a_c00284{width:208.125000px;}
._21_c00284{width:209.313000px;}
._14_c00284{width:229.923000px;}
._22_c00284{width:315.009000px;}
._19_c00284{width:352.179000px;}
.fc2_c00284{color:transparent;}
.fc1_c00284{color:rgb(128,128,128);}
.fc0_c00284{color:rgb(0,0,0);}
.fs4_c00284{font-size:48.000000px;}
.fs3_c00284{font-size:72.000000px;}
.fs2_c00284{font-size:81.000000px;}
.fs0_c00284{font-size:99.000000px;}
.fs1_c00284{font-size:132.000000px;}
.y0_c00284{bottom:0.000000px;}
.y26_c00284{bottom:3.105000px;}
.y25_c00284{bottom:7.228371px;}
.y24_c00284{bottom:50.415000px;}
.y23_c00284{bottom:75.915000px;}
.y22_c00284{bottom:100.665000px;}
.y21_c00284{bottom:125.715000px;}
.y20_c00284{bottom:150.615000px;}
.y1f_c00284{bottom:175.515000px;}
.y1e_c00284{bottom:200.115000px;}
.y1d_c00284{bottom:225.165000px;}
.y1c_c00284{bottom:249.765000px;}
.y1b_c00284{bottom:273.765000px;}
.y1a_c00284{bottom:297.465000px;}
.y19_c00284{bottom:322.665000px;}
.y18_c00284{bottom:347.265000px;}
.y17_c00284{bottom:371.715000px;}
.y16_c00284{bottom:396.315000px;}
.y15_c00284{bottom:420.615000px;}
.y14_c00284{bottom:444.915000px;}
.y13_c00284{bottom:468.915000px;}
.y12_c00284{bottom:493.815000px;}
.y11_c00284{bottom:518.415000px;}
.y10_c00284{bottom:542.415000px;}
.yf_c00284{bottom:566.415000px;}
.ye_c00284{bottom:590.715000px;}
.yd_c00284{bottom:614.715000px;}
.yc_c00284{bottom:638.865000px;}
.yb_c00284{bottom:662.865000px;}
.ya_c00284{bottom:687.465000px;}
.y9_c00284{bottom:712.515000px;}
.y8_c00284{bottom:736.515000px;}
.y7_c00284{bottom:761.865000px;}
.y6_c00284{bottom:785.415000px;}
.y5_c00284{bottom:809.415000px;}
.y4_c00284{bottom:833.415000px;}
.y3_c00284{bottom:858.015000px;}
.y2_c00284{bottom:882.915000px;}
.y1_c00284{bottom:915.765000px;}
.h5_c00284{height:13.200074px;}
.h6_c00284{height:43.804688px;}
.h3_c00284{height:79.497070px;}
.h4_c00284{height:91.160156px;}
.h2_c00284{height:167.126953px;}
.h0_c00284{height:989.025000px;}
.h1_c00284{height:989.250000px;}
.w1_c00284{width:104.875500px;}
.w0_c00284{width:672.000000px;}
.x0_c00284{left:0.000000px;}
.x3_c00284{left:31.800000px;}
.x2_c00284{left:33.000000px;}
.x5_c00284{left:34.050000px;}
.x4_c00284{left:35.400000px;}
.xa_c00284{left:36.450000px;}
.x6_c00284{left:37.800000px;}
.x7_c00284{left:38.850000px;}
.x8_c00284{left:39.900000px;}
.x9_c00284{left:41.850000px;}
.xb_c00284{left:43.500000px;}
.xc_c00284{left:44.550000px;}
.xd_c00284{left:46.200000px;}
.x1_c00284{left:103.350000px;}
.xf_c00284{left:287.814240px;}
.xe_c00284{left:492.000000px;}
@media print{
.v0_c00284{vertical-align:0.000000pt;}
.ls0_c00284{letter-spacing:0.000000pt;}
.ws0_c00284{word-spacing:-15.424000pt;}
.ws1_c00284{word-spacing:0.000000pt;}
._16_c00284{margin-left:-23.472000pt;}
._17_c00284{margin-left:-21.600000pt;}
._1f_c00284{margin-left:-20.384000pt;}
._10_c00284{margin-left:-15.880000pt;}
._20_c00284{margin-left:-14.400000pt;}
._1d_c00284{margin-left:-13.320000pt;}
._d_c00284{margin-left:-12.032000pt;}
._23_c00284{margin-left:-9.080000pt;}
._7_c00284{margin-left:-8.008000pt;}
._5_c00284{margin-left:-6.424000pt;}
._0_c00284{margin-left:-4.752000pt;}
._4_c00284{margin-left:-3.520000pt;}
._1_c00284{margin-left:-2.112000pt;}
._3_c00284{margin-left:-1.144000pt;}
._6_c00284{width:1.496000pt;}
._9_c00284{width:2.992000pt;}
._8_c00284{width:4.576000pt;}
._c_c00284{width:5.832000pt;}
._e_c00284{width:6.752000pt;}
._2_c00284{width:8.008000pt;}
._b_c00284{width:9.824000pt;}
._11_c00284{width:11.104000pt;}
._12_c00284{width:12.144000pt;}
._13_c00284{width:13.272000pt;}
._1c_c00284{width:14.365333pt;}
._f_c00284{width:16.352000pt;}
._15_c00284{width:67.968000pt;}
._18_c00284{width:74.016000pt;}
._a_c00284{width:77.661333pt;}
._1e_c00284{width:107.189333pt;}
._1b_c00284{width:116.346667pt;}
._1a_c00284{width:185.000000pt;}
._21_c00284{width:186.056000pt;}
._14_c00284{width:204.376000pt;}
._22_c00284{width:280.008000pt;}
._19_c00284{width:313.048000pt;}
.fs4_c00284{font-size:42.666667pt;}
.fs3_c00284{font-size:64.000000pt;}
.fs2_c00284{font-size:72.000000pt;}
.fs0_c00284{font-size:88.000000pt;}
.fs1_c00284{font-size:117.333333pt;}
.y0_c00284{bottom:0.000000pt;}
.y26_c00284{bottom:2.760000pt;}
.y25_c00284{bottom:6.425219pt;}
.y24_c00284{bottom:44.813333pt;}
.y23_c00284{bottom:67.480000pt;}
.y22_c00284{bottom:89.480000pt;}
.y21_c00284{bottom:111.746667pt;}
.y20_c00284{bottom:133.880000pt;}
.y1f_c00284{bottom:156.013333pt;}
.y1e_c00284{bottom:177.880000pt;}
.y1d_c00284{bottom:200.146667pt;}
.y1c_c00284{bottom:222.013333pt;}
.y1b_c00284{bottom:243.346667pt;}
.y1a_c00284{bottom:264.413333pt;}
.y19_c00284{bottom:286.813333pt;}
.y18_c00284{bottom:308.680000pt;}
.y17_c00284{bottom:330.413333pt;}
.y16_c00284{bottom:352.280000pt;}
.y15_c00284{bottom:373.880000pt;}
.y14_c00284{bottom:395.480000pt;}
.y13_c00284{bottom:416.813333pt;}
.y12_c00284{bottom:438.946667pt;}
.y11_c00284{bottom:460.813333pt;}
.y10_c00284{bottom:482.146667pt;}
.yf_c00284{bottom:503.480000pt;}
.ye_c00284{bottom:525.080000pt;}
.yd_c00284{bottom:546.413333pt;}
.yc_c00284{bottom:567.880000pt;}
.yb_c00284{bottom:589.213333pt;}
.ya_c00284{bottom:611.080000pt;}
.y9_c00284{bottom:633.346667pt;}
.y8_c00284{bottom:654.680000pt;}
.y7_c00284{bottom:677.213333pt;}
.y6_c00284{bottom:698.146667pt;}
.y5_c00284{bottom:719.480000pt;}
.y4_c00284{bottom:740.813333pt;}
.y3_c00284{bottom:762.680000pt;}
.y2_c00284{bottom:784.813333pt;}
.y1_c00284{bottom:814.013333pt;}
.h5_c00284{height:11.733399pt;}
.h6_c00284{height:38.937500pt;}
.h3_c00284{height:70.664062pt;}
.h4_c00284{height:81.031250pt;}
.h2_c00284{height:148.557292pt;}
.h0_c00284{height:879.133333pt;}
.h1_c00284{height:879.333333pt;}
.w1_c00284{width:93.222667pt;}
.w0_c00284{width:597.333333pt;}
.x0_c00284{left:0.000000pt;}
.x3_c00284{left:28.266667pt;}
.x2_c00284{left:29.333333pt;}
.x5_c00284{left:30.266667pt;}
.x4_c00284{left:31.466667pt;}
.xa_c00284{left:32.400000pt;}
.x6_c00284{left:33.600000pt;}
.x7_c00284{left:34.533333pt;}
.x8_c00284{left:35.466667pt;}
.x9_c00284{left:37.200000pt;}
.xb_c00284{left:38.666667pt;}
.xc_c00284{left:39.600000pt;}
.xd_c00284{left:41.066667pt;}
.x1_c00284{left:91.866667pt;}
.xf_c00284{left:255.834880pt;}
.xe_c00284{left:437.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_b28314b9df86683804441b9b.woff2')format("woff");}.ff1_c00285{font-family:ff1_c00285;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00285;src:url('chunks/assets/font_481784d4e235a41754292018.woff2')format("woff");}.ff2_c00285{font-family:ff2_c00285;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00285;src:url('chunks/assets/font_a08340e5d3c6e12db0cbbfe8.woff2')format("woff");}.ff3_c00285{font-family:ff3_c00285;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00285;src:url('chunks/assets/font_21cfb66d2641253901cb2c71.woff2')format("woff");}.ff4_c00285{font-family:ff4_c00285;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00285;src:url('chunks/assets/font_47f4b1bbeb11b24337fed3c1.woff2')format("woff");}.ff5_c00285{font-family:ff5_c00285;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00285;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c00285{font-family:ff6_c00285;line-height:1.219238;font-style: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;}
.ls0_c00285{letter-spacing:0.000000px;}
.sc__c00285{text-shadow:none;}
.sc0_c00285{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00285{-webkit-text-stroke:0px transparent;}
.sc0_c00285{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00285{word-spacing:-67.686000px;}
.ws3_c00285{word-spacing:-20.250000px;}
.ws0_c00285{word-spacing:-17.352000px;}
.ws2_c00285{word-spacing:-13.737000px;}
.ws4_c00285{word-spacing:0.000000px;}
._1e_c00285{margin-left:-31.860000px;}
._12_c00285{margin-left:-22.905000px;}
._19_c00285{margin-left:-17.013000px;}
._6_c00285{margin-left:-14.418000px;}
._20_c00285{margin-left:-12.879000px;}
._1a_c00285{margin-left:-10.944000px;}
._15_c00285{margin-left:-9.639000px;}
._1c_c00285{margin-left:-8.493000px;}
._a_c00285{margin-left:-6.804000px;}
._14_c00285{margin-left:-5.427000px;}
._5_c00285{margin-left:-4.293000px;}
._3_c00285{margin-left:-2.916000px;}
._1_c00285{margin-left:-1.620000px;}
._2_c00285{width:1.296000px;}
._7_c00285{width:2.430000px;}
._0_c00285{width:3.888000px;}
._4_c00285{width:5.184000px;}
._9_c00285{width:6.237000px;}
._8_c00285{width:7.290000px;}
._b_c00285{width:8.991000px;}
._11_c00285{width:10.773000px;}
._c_c00285{width:12.555000px;}
._d_c00285{width:14.175000px;}
._e_c00285{width:15.471000px;}
._1f_c00285{width:16.686000px;}
._f_c00285{width:18.063000px;}
._10_c00285{width:28.431000px;}
._16_c00285{width:31.200000px;}
._17_c00285{width:45.144000px;}
._18_c00285{width:59.193000px;}
._13_c00285{width:253.044000px;}
._1b_c00285{width:256.851000px;}
._1d_c00285{width:393.492000px;}
.fc2_c00285{color:transparent;}
.fc1_c00285{color:rgb(128,128,128);}
.fc0_c00285{color:rgb(0,0,0);}
.fs5_c00285{font-size:48.000000px;}
.fs3_c00285{font-size:57.000000px;}
.fs1_c00285{font-size:72.000000px;}
.fs4_c00285{font-size:78.000000px;}
.fs0_c00285{font-size:81.000000px;}
.fs2_c00285{font-size:87.000000px;}
.y0_c00285{bottom:0.000000px;}
.y25_c00285{bottom:3.105000px;}
.y24_c00285{bottom:7.228371px;}
.y23_c00285{bottom:43.215000px;}
.y22_c00285{bottom:67.215000px;}
.y21_c00285{bottom:93.165000px;}
.y20_c00285{bottom:118.515000px;}
.y1f_c00285{bottom:143.565000px;}
.y1e_c00285{bottom:167.715000px;}
.y1d_c00285{bottom:192.465000px;}
.y1c_c00285{bottom:217.065000px;}
.y1b_c00285{bottom:242.115000px;}
.y1a_c00285{bottom:267.615000px;}
.y19_c00285{bottom:292.665000px;}
.y18_c00285{bottom:317.265000px;}
.y17_c00285{bottom:340.215000px;}
.y16_c00285{bottom:364.965000px;}
.y15_c00285{bottom:389.265000px;}
.y14_c00285{bottom:413.115000px;}
.y13_c00285{bottom:438.465000px;}
.y12_c00285{bottom:463.065000px;}
.y11_c00285{bottom:487.065000px;}
.y10_c00285{bottom:511.065000px;}
.yf_c00285{bottom:534.915000px;}
.ye_c00285{bottom:559.365000px;}
.yd_c00285{bottom:583.665000px;}
.yc_c00285{bottom:607.815000px;}
.yb_c00285{bottom:632.265000px;}
.ya_c00285{bottom:656.565000px;}
.y9_c00285{bottom:680.865000px;}
.y8_c00285{bottom:705.165000px;}
.y7_c00285{bottom:729.465000px;}
.y6_c00285{bottom:754.065000px;}
.y5_c00285{bottom:777.915000px;}
.y4_c00285{bottom:801.915000px;}
.y3_c00285{bottom:826.215000px;}
.y2_c00285{bottom:850.515000px;}
.y1_c00285{bottom:874.815000px;}
.h6_c00285{height:13.200074px;}
.h7_c00285{height:43.804688px;}
.h2_c00285{height:79.497070px;}
.h3_c00285{height:84.269531px;}
.h4_c00285{height:91.176000px;}
.h5_c00285{height:98.756836px;}
.h0_c00285{height:976.875000px;}
.h1_c00285{height:977.250000px;}
.w2_c00285{width:104.875500px;}
.w1_c00285{width:654.750000px;}
.w0_c00285{width:655.050000px;}
.x0_c00285{left:0.000000px;}
.x9_c00285{left:33.450000px;}
.x8_c00285{left:34.800000px;}
.x7_c00285{left:35.850000px;}
.x5_c00285{left:38.850000px;}
.x4_c00285{left:84.150000px;}
.xb_c00285{left:121.200000px;}
.xe_c00285{left:122.850000px;}
.xd_c00285{left:125.550000px;}
.x10_c00285{left:128.250000px;}
.xf_c00285{left:130.050000px;}
.xa_c00285{left:131.250000px;}
.x6_c00285{left:133.350000px;}
.x3_c00285{left:134.700000px;}
.x2_c00285{left:136.800000px;}
.x1_c00285{left:138.450000px;}
.xc_c00285{left:155.700000px;}
.x12_c00285{left:279.339249px;}
.x11_c00285{left:557.550000px;}
@media print{
.v0_c00285{vertical-align:0.000000pt;}
.ls0_c00285{letter-spacing:0.000000pt;}
.ws1_c00285{word-spacing:-60.165333pt;}
.ws3_c00285{word-spacing:-18.000000pt;}
.ws0_c00285{word-spacing:-15.424000pt;}
.ws2_c00285{word-spacing:-12.210667pt;}
.ws4_c00285{word-spacing:0.000000pt;}
._1e_c00285{margin-left:-28.320000pt;}
._12_c00285{margin-left:-20.360000pt;}
._19_c00285{margin-left:-15.122667pt;}
._6_c00285{margin-left:-12.816000pt;}
._20_c00285{margin-left:-11.448000pt;}
._1a_c00285{margin-left:-9.728000pt;}
._15_c00285{margin-left:-8.568000pt;}
._1c_c00285{margin-left:-7.549333pt;}
._a_c00285{margin-left:-6.048000pt;}
._14_c00285{margin-left:-4.824000pt;}
._5_c00285{margin-left:-3.816000pt;}
._3_c00285{margin-left:-2.592000pt;}
._1_c00285{margin-left:-1.440000pt;}
._2_c00285{width:1.152000pt;}
._7_c00285{width:2.160000pt;}
._0_c00285{width:3.456000pt;}
._4_c00285{width:4.608000pt;}
._9_c00285{width:5.544000pt;}
._8_c00285{width:6.480000pt;}
._b_c00285{width:7.992000pt;}
._11_c00285{width:9.576000pt;}
._c_c00285{width:11.160000pt;}
._d_c00285{width:12.600000pt;}
._e_c00285{width:13.752000pt;}
._1f_c00285{width:14.832000pt;}
._f_c00285{width:16.056000pt;}
._10_c00285{width:25.272000pt;}
._16_c00285{width:27.733333pt;}
._17_c00285{width:40.128000pt;}
._18_c00285{width:52.616000pt;}
._13_c00285{width:224.928000pt;}
._1b_c00285{width:228.312000pt;}
._1d_c00285{width:349.770667pt;}
.fs5_c00285{font-size:42.666667pt;}
.fs3_c00285{font-size:50.666667pt;}
.fs1_c00285{font-size:64.000000pt;}
.fs4_c00285{font-size:69.333333pt;}
.fs0_c00285{font-size:72.000000pt;}
.fs2_c00285{font-size:77.333333pt;}
.y0_c00285{bottom:0.000000pt;}
.y25_c00285{bottom:2.760000pt;}
.y24_c00285{bottom:6.425219pt;}
.y23_c00285{bottom:38.413333pt;}
.y22_c00285{bottom:59.746667pt;}
.y21_c00285{bottom:82.813333pt;}
.y20_c00285{bottom:105.346667pt;}
.y1f_c00285{bottom:127.613333pt;}
.y1e_c00285{bottom:149.080000pt;}
.y1d_c00285{bottom:171.080000pt;}
.y1c_c00285{bottom:192.946667pt;}
.y1b_c00285{bottom:215.213333pt;}
.y1a_c00285{bottom:237.880000pt;}
.y19_c00285{bottom:260.146667pt;}
.y18_c00285{bottom:282.013333pt;}
.y17_c00285{bottom:302.413333pt;}
.y16_c00285{bottom:324.413333pt;}
.y15_c00285{bottom:346.013333pt;}
.y14_c00285{bottom:367.213333pt;}
.y13_c00285{bottom:389.746667pt;}
.y12_c00285{bottom:411.613333pt;}
.y11_c00285{bottom:432.946667pt;}
.y10_c00285{bottom:454.280000pt;}
.yf_c00285{bottom:475.480000pt;}
.ye_c00285{bottom:497.213333pt;}
.yd_c00285{bottom:518.813333pt;}
.yc_c00285{bottom:540.280000pt;}
.yb_c00285{bottom:562.013333pt;}
.ya_c00285{bottom:583.613333pt;}
.y9_c00285{bottom:605.213333pt;}
.y8_c00285{bottom:626.813333pt;}
.y7_c00285{bottom:648.413333pt;}
.y6_c00285{bottom:670.280000pt;}
.y5_c00285{bottom:691.480000pt;}
.y4_c00285{bottom:712.813333pt;}
.y3_c00285{bottom:734.413333pt;}
.y2_c00285{bottom:756.013333pt;}
.y1_c00285{bottom:777.613333pt;}
.h6_c00285{height:11.733399pt;}
.h7_c00285{height:38.937500pt;}
.h2_c00285{height:70.664062pt;}
.h3_c00285{height:74.906250pt;}
.h4_c00285{height:81.045333pt;}
.h5_c00285{height:87.783854pt;}
.h0_c00285{height:868.333333pt;}
.h1_c00285{height:868.666667pt;}
.w2_c00285{width:93.222667pt;}
.w1_c00285{width:582.000000pt;}
.w0_c00285{width:582.266667pt;}
.x0_c00285{left:0.000000pt;}
.x9_c00285{left:29.733333pt;}
.x8_c00285{left:30.933333pt;}
.x7_c00285{left:31.866667pt;}
.x5_c00285{left:34.533333pt;}
.x4_c00285{left:74.800000pt;}
.xb_c00285{left:107.733333pt;}
.xe_c00285{left:109.200000pt;}
.xd_c00285{left:111.600000pt;}
.x10_c00285{left:114.000000pt;}
.xf_c00285{left:115.600000pt;}
.xa_c00285{left:116.666667pt;}
.x6_c00285{left:118.533333pt;}
.x3_c00285{left:119.733333pt;}
.x2_c00285{left:121.600000pt;}
.x1_c00285{left:123.066667pt;}
.xc_c00285{left:138.400000pt;}
.x12_c00285{left:248.301554pt;}
.x11_c00285{left:495.600000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ab13f932b8da88b9ee2d34a6.woff2')format("woff");}.ff1_c00286{font-family:ff1_c00286;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00286;src:url('chunks/assets/font_577f09a587b64344a5e73cb7.woff2')format("woff");}.ff2_c00286{font-family:ff2_c00286;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00286;src:url('chunks/assets/font_4bb5783c407b1ff2a388c206.woff2')format("woff");}.ff3_c00286{font-family:ff3_c00286;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00286;src:url('chunks/assets/font_337e7375a41673b4a55d81a3.woff2')format("woff");}.ff4_c00286{font-family:ff4_c00286;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00286;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c00286{font-family:ff5_c00286;line-height:1.219238;font-style: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;}
.v1_c00286{vertical-align:145.200000px;}
.ls2_c00286{letter-spacing:0.000000px;}
.ls0_c00286{letter-spacing:0.312000px;}
.ls1_c00286{letter-spacing:2.150400px;}
.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:-151.788000px;}
.ws0_c00286{word-spacing:-20.250000px;}
.ws2_c00286{word-spacing:0.000000px;}
._23_c00286{margin-left:-38.124000px;}
._11_c00286{margin-left:-37.098000px;}
._1a_c00286{margin-left:-32.859000px;}
._22_c00286{margin-left:-31.239000px;}
._1f_c00286{margin-left:-25.110000px;}
._21_c00286{margin-left:-22.194000px;}
._15_c00286{margin-left:-16.038000px;}
._19_c00286{margin-left:-12.906000px;}
._c_c00286{margin-left:-11.421000px;}
._d_c00286{margin-left:-9.639000px;}
._14_c00286{margin-left:-8.586000px;}
._18_c00286{margin-left:-5.967000px;}
._e_c00286{margin-left:-4.941000px;}
._17_c00286{margin-left:-3.834000px;}
._3_c00286{margin-left:-2.754000px;}
._a_c00286{margin-left:-1.458000px;}
._4_c00286{width:1.134000px;}
._7_c00286{width:2.349000px;}
._6_c00286{width:3.483000px;}
._5_c00286{width:5.022000px;}
._1_c00286{width:6.318000px;}
._2_c00286{width:7.452000px;}
._9_c00286{width:8.748000px;}
._0_c00286{width:9.882000px;}
._f_c00286{width:10.935000px;}
._12_c00286{width:12.636000px;}
._8_c00286{width:13.689000px;}
._1d_c00286{width:14.985000px;}
._1b_c00286{width:16.848000px;}
._27_c00286{width:17.985000px;}
._24_c00286{width:23.085000px;}
._1c_c00286{width:24.408000px;}
._25_c00286{width:30.480000px;}
._26_c00286{width:36.576000px;}
._16_c00286{width:108.123000px;}
._1e_c00286{width:136.323000px;}
._20_c00286{width:173.016000px;}
._10_c00286{width:217.647000px;}
._b_c00286{width:240.165000px;}
._13_c00286{width:344.046000px;}
.fc2_c00286{color:transparent;}
.fc1_c00286{color:rgb(128,128,128);}
.fc0_c00286{color:rgb(0,0,0);}
.fs4_c00286{font-size:48.000000px;}
.fs2_c00286{font-size:57.600000px;}
.fs1_c00286{font-size:72.000000px;}
.fs0_c00286{font-size:81.000000px;}
.fs3_c00286{font-size:273.000000px;}
.y0_c00286{bottom:0.000000px;}
.y23_c00286{bottom:3.105000px;}
.y22_c00286{bottom:7.228371px;}
.y21_c00286{bottom:59.115000px;}
.y20_c00286{bottom:83.715000px;}
.y1f_c00286{bottom:109.365000px;}
.y1e_c00286{bottom:134.115000px;}
.y1c_c00286{bottom:146.415000px;}
.y1d_c00286{bottom:158.265000px;}
.y1b_c00286{bottom:231.915000px;}
.y1a_c00286{bottom:279.465000px;}
.y19_c00286{bottom:304.215000px;}
.y18_c00286{bottom:328.815000px;}
.y17_c00286{bottom:353.115000px;}
.y16_c00286{bottom:376.965000px;}
.y15_c00286{bottom:401.265000px;}
.y14_c00286{bottom:424.365000px;}
.y13_c00286{bottom:448.215000px;}
.y12_c00286{bottom:473.865000px;}
.y11_c00286{bottom:498.165000px;}
.y10_c00286{bottom:522.465000px;}
.yf_c00286{bottom:545.865000px;}
.ye_c00286{bottom:569.715000px;}
.yd_c00286{bottom:593.715000px;}
.yc_c00286{bottom:617.265000px;}
.yb_c00286{bottom:641.565000px;}
.ya_c00286{bottom:665.565000px;}
.y9_c00286{bottom:689.865000px;}
.y8_c00286{bottom:714.465000px;}
.y7_c00286{bottom:738.165000px;}
.y6_c00286{bottom:762.765000px;}
.y5_c00286{bottom:787.365000px;}
.y4_c00286{bottom:811.065000px;}
.y3_c00286{bottom:835.365000px;}
.y2_c00286{bottom:859.965000px;}
.y1_c00286{bottom:884.715000px;}
.h5_c00286{height:13.200074px;}
.h6_c00286{height:43.804688px;}
.h2_c00286{height:79.497070px;}
.h3_c00286{height:84.269531px;}
.h4_c00286{height:275.132812px;}
.h0_c00286{height:989.025000px;}
.h1_c00286{height:989.250000px;}
.w1_c00286{width:104.875500px;}
.w0_c00286{width:672.000000px;}
.x0_c00286{left:0.000000px;}
.x6_c00286{left:33.450000px;}
.x5_c00286{left:34.500000px;}
.x4_c00286{left:35.850000px;}
.x1_c00286{left:36.900000px;}
.x3_c00286{left:38.550000px;}
.x7_c00286{left:39.900000px;}
.x2_c00286{left:62.100000px;}
.xa_c00286{left:87.450000px;}
.x8_c00286{left:88.800000px;}
.x9_c00286{left:90.900000px;}
.xc_c00286{left:287.814240px;}
.xb_c00286{left:483.750000px;}
@media print{
.v0_c00286{vertical-align:0.000000pt;}
.v1_c00286{vertical-align:129.066667pt;}
.ls2_c00286{letter-spacing:0.000000pt;}
.ls0_c00286{letter-spacing:0.277333pt;}
.ls1_c00286{letter-spacing:1.911467pt;}
.ws1_c00286{word-spacing:-134.922667pt;}
.ws0_c00286{word-spacing:-18.000000pt;}
.ws2_c00286{word-spacing:0.000000pt;}
._23_c00286{margin-left:-33.888000pt;}
._11_c00286{margin-left:-32.976000pt;}
._1a_c00286{margin-left:-29.208000pt;}
._22_c00286{margin-left:-27.768000pt;}
._1f_c00286{margin-left:-22.320000pt;}
._21_c00286{margin-left:-19.728000pt;}
._15_c00286{margin-left:-14.256000pt;}
._19_c00286{margin-left:-11.472000pt;}
._c_c00286{margin-left:-10.152000pt;}
._d_c00286{margin-left:-8.568000pt;}
._14_c00286{margin-left:-7.632000pt;}
._18_c00286{margin-left:-5.304000pt;}
._e_c00286{margin-left:-4.392000pt;}
._17_c00286{margin-left:-3.408000pt;}
._3_c00286{margin-left:-2.448000pt;}
._a_c00286{margin-left:-1.296000pt;}
._4_c00286{width:1.008000pt;}
._7_c00286{width:2.088000pt;}
._6_c00286{width:3.096000pt;}
._5_c00286{width:4.464000pt;}
._1_c00286{width:5.616000pt;}
._2_c00286{width:6.624000pt;}
._9_c00286{width:7.776000pt;}
._0_c00286{width:8.784000pt;}
._f_c00286{width:9.720000pt;}
._12_c00286{width:11.232000pt;}
._8_c00286{width:12.168000pt;}
._1d_c00286{width:13.320000pt;}
._1b_c00286{width:14.976000pt;}
._27_c00286{width:15.986667pt;}
._24_c00286{width:20.520000pt;}
._1c_c00286{width:21.696000pt;}
._25_c00286{width:27.093333pt;}
._26_c00286{width:32.512000pt;}
._16_c00286{width:96.109333pt;}
._1e_c00286{width:121.176000pt;}
._20_c00286{width:153.792000pt;}
._10_c00286{width:193.464000pt;}
._b_c00286{width:213.480000pt;}
._13_c00286{width:305.818667pt;}
.fs4_c00286{font-size:42.666667pt;}
.fs2_c00286{font-size:51.200000pt;}
.fs1_c00286{font-size:64.000000pt;}
.fs0_c00286{font-size:72.000000pt;}
.fs3_c00286{font-size:242.666667pt;}
.y0_c00286{bottom:0.000000pt;}
.y23_c00286{bottom:2.760000pt;}
.y22_c00286{bottom:6.425219pt;}
.y21_c00286{bottom:52.546667pt;}
.y20_c00286{bottom:74.413333pt;}
.y1f_c00286{bottom:97.213333pt;}
.y1e_c00286{bottom:119.213333pt;}
.y1c_c00286{bottom:130.146667pt;}
.y1d_c00286{bottom:140.680000pt;}
.y1b_c00286{bottom:206.146667pt;}
.y1a_c00286{bottom:248.413333pt;}
.y19_c00286{bottom:270.413333pt;}
.y18_c00286{bottom:292.280000pt;}
.y17_c00286{bottom:313.880000pt;}
.y16_c00286{bottom:335.080000pt;}
.y15_c00286{bottom:356.680000pt;}
.y14_c00286{bottom:377.213333pt;}
.y13_c00286{bottom:398.413333pt;}
.y12_c00286{bottom:421.213333pt;}
.y11_c00286{bottom:442.813333pt;}
.y10_c00286{bottom:464.413333pt;}
.yf_c00286{bottom:485.213333pt;}
.ye_c00286{bottom:506.413333pt;}
.yd_c00286{bottom:527.746667pt;}
.yc_c00286{bottom:548.680000pt;}
.yb_c00286{bottom:570.280000pt;}
.ya_c00286{bottom:591.613333pt;}
.y9_c00286{bottom:613.213333pt;}
.y8_c00286{bottom:635.080000pt;}
.y7_c00286{bottom:656.146667pt;}
.y6_c00286{bottom:678.013333pt;}
.y5_c00286{bottom:699.880000pt;}
.y4_c00286{bottom:720.946667pt;}
.y3_c00286{bottom:742.546667pt;}
.y2_c00286{bottom:764.413333pt;}
.y1_c00286{bottom:786.413333pt;}
.h5_c00286{height:11.733399pt;}
.h6_c00286{height:38.937500pt;}
.h2_c00286{height:70.664062pt;}
.h3_c00286{height:74.906250pt;}
.h4_c00286{height:244.562500pt;}
.h0_c00286{height:879.133333pt;}
.h1_c00286{height:879.333333pt;}
.w1_c00286{width:93.222667pt;}
.w0_c00286{width:597.333333pt;}
.x0_c00286{left:0.000000pt;}
.x6_c00286{left:29.733333pt;}
.x5_c00286{left:30.666667pt;}
.x4_c00286{left:31.866667pt;}
.x1_c00286{left:32.800000pt;}
.x3_c00286{left:34.266667pt;}
.x7_c00286{left:35.466667pt;}
.x2_c00286{left:55.200000pt;}
.xa_c00286{left:77.733333pt;}
.x8_c00286{left:78.933333pt;}
.x9_c00286{left:80.800000pt;}
.xc_c00286{left:255.834880pt;}
.xb_c00286{left:430.000000pt;}
}





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

.ir_c00287:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00287{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00287;src:url('chunks/assets/font_a5d88becc088cd099237b6ff.woff2')format("woff");}.ff1_c00287{font-family:ff1_c00287;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00287;src:url('chunks/assets/font_70361779120d28627d2da090.woff2')format("woff");}.ff2_c00287{font-family:ff2_c00287;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00287;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff3_c00287{font-family:ff3_c00287;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00287;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff4_c00287{font-family:ff4_c00287;line-height:1.219238;font-style: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;}
.ls0_c00287{letter-spacing:0.000000px;}
.sc__c00287{text-shadow:none;}
.sc0_c00287{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00287{-webkit-text-stroke:0px transparent;}
.sc0_c00287{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00287{word-spacing:-17.352000px;}
.ws1_c00287{word-spacing:0.000000px;}
._1b_c00287{margin-left:-38.808000px;}
._d_c00287{margin-left:-17.244000px;}
._14_c00287{margin-left:-14.913000px;}
._c_c00287{margin-left:-12.420000px;}
._1a_c00287{margin-left:-10.764000px;}
._e_c00287{margin-left:-9.711000px;}
._b_c00287{margin-left:-8.514000px;}
._8_c00287{margin-left:-7.452000px;}
._a_c00287{margin-left:-5.670000px;}
._1_c00287{margin-left:-4.536000px;}
._2_c00287{margin-left:-3.483000px;}
._5_c00287{margin-left:-2.025000px;}
._0_c00287{width:1.863000px;}
._3_c00287{width:2.916000px;}
._4_c00287{width:4.536000px;}
._7_c00287{width:6.480000px;}
._6_c00287{width:8.343000px;}
._9_c00287{width:9.396000px;}
._12_c00287{width:11.421000px;}
._15_c00287{width:12.717000px;}
._16_c00287{width:14.661000px;}
._11_c00287{width:16.119000px;}
._18_c00287{width:41.613000px;}
._f_c00287{width:47.595000px;}
._19_c00287{width:88.074000px;}
._13_c00287{width:95.850000px;}
._17_c00287{width:145.122000px;}
._10_c00287{width:301.908000px;}
._1c_c00287{width:855.117000px;}
.fc2_c00287{color:transparent;}
.fc1_c00287{color:rgb(128,128,128);}
.fc0_c00287{color:rgb(0,0,0);}
.fs2_c00287{font-size:48.000000px;}
.fs1_c00287{font-size:72.000000px;}
.fs0_c00287{font-size:81.000000px;}
.y0_c00287{bottom:0.000000px;}
.y25_c00287{bottom:3.105000px;}
.y24_c00287{bottom:7.228357px;}
.y23_c00287{bottom:61.380000px;}
.y22_c00287{bottom:86.430000px;}
.y21_c00287{bottom:112.080000px;}
.y20_c00287{bottom:136.380000px;}
.y1f_c00287{bottom:160.980000px;}
.y1e_c00287{bottom:185.580000px;}
.y1d_c00287{bottom:210.630000px;}
.y1c_c00287{bottom:235.530000px;}
.y1b_c00287{bottom:260.280000px;}
.y1a_c00287{bottom:284.580000px;}
.y19_c00287{bottom:309.180000px;}
.y18_c00287{bottom:333.780000px;}
.y17_c00287{bottom:358.380000px;}
.y16_c00287{bottom:382.830000px;}
.y15_c00287{bottom:407.130000px;}
.y14_c00287{bottom:431.730000px;}
.y13_c00287{bottom:456.330000px;}
.y12_c00287{bottom:480.330000px;}
.y11_c00287{bottom:504.930000px;}
.y10_c00287{bottom:528.630000px;}
.yf_c00287{bottom:552.780000px;}
.ye_c00287{bottom:578.130000px;}
.yd_c00287{bottom:601.530000px;}
.yc_c00287{bottom:626.430000px;}
.yb_c00287{bottom:650.130000px;}
.ya_c00287{bottom:674.430000px;}
.y9_c00287{bottom:698.730000px;}
.y8_c00287{bottom:722.880000px;}
.y7_c00287{bottom:747.330000px;}
.y6_c00287{bottom:771.630000px;}
.y5_c00287{bottom:796.530000px;}
.y4_c00287{bottom:820.530000px;}
.y3_c00287{bottom:844.530000px;}
.y2_c00287{bottom:868.680000px;}
.y1_c00287{bottom:892.980000px;}
.h5_c00287{height:13.200074px;}
.h6_c00287{height:43.804688px;}
.h2_c00287{height:79.497070px;}
.h4_c00287{height:84.269531px;}
.h3_c00287{height:91.160156px;}
.h0_c00287{height:984.450000px;}
.h1_c00287{height:984.750000px;}
.w2_c00287{width:104.875500px;}
.w0_c00287{width:659.850000px;}
.w1_c00287{width:660.000000px;}
.x0_c00287{left:0.000000px;}
.x9_c00287{left:45.300000px;}
.x5_c00287{left:50.250000px;}
.x4_c00287{left:82.800000px;}
.x8_c00287{left:139.050000px;}
.x7_c00287{left:141.750000px;}
.x1_c00287{left:144.450000px;}
.x2_c00287{left:145.500000px;}
.x6_c00287{left:147.600000px;}
.x3_c00287{left:192.000000px;}
.xb_c00287{left:281.739258px;}
.xa_c00287{left:363.450000px;}
@media print{
.v0_c00287{vertical-align:0.000000pt;}
.ls0_c00287{letter-spacing:0.000000pt;}
.ws0_c00287{word-spacing:-15.424000pt;}
.ws1_c00287{word-spacing:0.000000pt;}
._1b_c00287{margin-left:-34.496000pt;}
._d_c00287{margin-left:-15.328000pt;}
._14_c00287{margin-left:-13.256000pt;}
._c_c00287{margin-left:-11.040000pt;}
._1a_c00287{margin-left:-9.568000pt;}
._e_c00287{margin-left:-8.632000pt;}
._b_c00287{margin-left:-7.568000pt;}
._8_c00287{margin-left:-6.624000pt;}
._a_c00287{margin-left:-5.040000pt;}
._1_c00287{margin-left:-4.032000pt;}
._2_c00287{margin-left:-3.096000pt;}
._5_c00287{margin-left:-1.800000pt;}
._0_c00287{width:1.656000pt;}
._3_c00287{width:2.592000pt;}
._4_c00287{width:4.032000pt;}
._7_c00287{width:5.760000pt;}
._6_c00287{width:7.416000pt;}
._9_c00287{width:8.352000pt;}
._12_c00287{width:10.152000pt;}
._15_c00287{width:11.304000pt;}
._16_c00287{width:13.032000pt;}
._11_c00287{width:14.328000pt;}
._18_c00287{width:36.989333pt;}
._f_c00287{width:42.306667pt;}
._19_c00287{width:78.288000pt;}
._13_c00287{width:85.200000pt;}
._17_c00287{width:128.997333pt;}
._10_c00287{width:268.362667pt;}
._1c_c00287{width:760.104000pt;}
.fs2_c00287{font-size:42.666667pt;}
.fs1_c00287{font-size:64.000000pt;}
.fs0_c00287{font-size:72.000000pt;}
.y0_c00287{bottom:0.000000pt;}
.y25_c00287{bottom:2.760000pt;}
.y24_c00287{bottom:6.425206pt;}
.y23_c00287{bottom:54.560000pt;}
.y22_c00287{bottom:76.826667pt;}
.y21_c00287{bottom:99.626667pt;}
.y20_c00287{bottom:121.226667pt;}
.y1f_c00287{bottom:143.093333pt;}
.y1e_c00287{bottom:164.960000pt;}
.y1d_c00287{bottom:187.226667pt;}
.y1c_c00287{bottom:209.360000pt;}
.y1b_c00287{bottom:231.360000pt;}
.y1a_c00287{bottom:252.960000pt;}
.y19_c00287{bottom:274.826667pt;}
.y18_c00287{bottom:296.693333pt;}
.y17_c00287{bottom:318.560000pt;}
.y16_c00287{bottom:340.293333pt;}
.y15_c00287{bottom:361.893333pt;}
.y14_c00287{bottom:383.760000pt;}
.y13_c00287{bottom:405.626667pt;}
.y12_c00287{bottom:426.960000pt;}
.y11_c00287{bottom:448.826667pt;}
.y10_c00287{bottom:469.893333pt;}
.yf_c00287{bottom:491.360000pt;}
.ye_c00287{bottom:513.893333pt;}
.yd_c00287{bottom:534.693333pt;}
.yc_c00287{bottom:556.826667pt;}
.yb_c00287{bottom:577.893333pt;}
.ya_c00287{bottom:599.493333pt;}
.y9_c00287{bottom:621.093333pt;}
.y8_c00287{bottom:642.560000pt;}
.y7_c00287{bottom:664.293333pt;}
.y6_c00287{bottom:685.893333pt;}
.y5_c00287{bottom:708.026667pt;}
.y4_c00287{bottom:729.360000pt;}
.y3_c00287{bottom:750.693333pt;}
.y2_c00287{bottom:772.160000pt;}
.y1_c00287{bottom:793.760000pt;}
.h5_c00287{height:11.733399pt;}
.h6_c00287{height:38.937500pt;}
.h2_c00287{height:70.664062pt;}
.h4_c00287{height:74.906250pt;}
.h3_c00287{height:81.031250pt;}
.h0_c00287{height:875.066667pt;}
.h1_c00287{height:875.333333pt;}
.w2_c00287{width:93.222667pt;}
.w0_c00287{width:586.533333pt;}
.w1_c00287{width:586.666667pt;}
.x0_c00287{left:0.000000pt;}
.x9_c00287{left:40.266667pt;}
.x5_c00287{left:44.666667pt;}
.x4_c00287{left:73.600000pt;}
.x8_c00287{left:123.600000pt;}
.x7_c00287{left:126.000000pt;}
.x1_c00287{left:128.400000pt;}
.x2_c00287{left:129.333333pt;}
.x6_c00287{left:131.200000pt;}
.x3_c00287{left:170.666667pt;}
.xb_c00287{left:250.434896pt;}
.xa_c00287{left:323.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_9a68fce79db1accc5865fc60.woff2')format("woff");}.ff1_c00288{font-family:ff1_c00288;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00288;src:url('chunks/assets/font_a144249f20333719f42e8899.woff2')format("woff");}.ff2_c00288{font-family:ff2_c00288;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00288;src:url('chunks/assets/font_d472fcc90685e7d6b5077a03.woff2')format("woff");}.ff3_c00288{font-family:ff3_c00288;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00288;src:url('chunks/assets/font_d38f1eaa5670d2930613e5c6.woff2')format("woff");}.ff4_c00288{font-family:ff4_c00288;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00288;src:url('chunks/assets/font_d64fa3d5459a397cf9a38cd0.woff2')format("woff");}.ff5_c00288{font-family:ff5_c00288;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00288;src:url('chunks/assets/font_cf206527db520c06c8db44fb.woff2')format("woff");}.ff6_c00288{font-family:ff6_c00288;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00288;src:url('chunks/assets/font_64fd121dd265e8b2ae15e7e1.woff2')format("woff");}.ff7_c00288{font-family:ff7_c00288;line-height:1.437000;font-style:normal;font-weight: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_c00288;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff8_c00288{font-family:ff8_c00288;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00288{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00288{vertical-align:0.000000px;}
.ls1_c00288{letter-spacing:0.000000px;}
.ls3_c00288{letter-spacing:3.000000px;}
.ls2_c00288{letter-spacing:9.000000px;}
.ls0_c00288{letter-spacing:17.550000px;}
.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:-27.000000px;}
.ws3_c00288{word-spacing:-23.832000px;}
.ws4_c00288{word-spacing:-21.000000px;}
.ws5_c00288{word-spacing:-20.250000px;}
.ws2_c00288{word-spacing:-19.065600px;}
.ws1_c00288{word-spacing:-17.352000px;}
.ws6_c00288{word-spacing:0.000000px;}
._1c_c00288{margin-left:-22.290000px;}
._1f_c00288{margin-left:-17.529000px;}
._11_c00288{margin-left:-14.400000px;}
._e_c00288{margin-left:-13.392000px;}
._14_c00288{margin-left:-10.962000px;}
._15_c00288{margin-left:-9.558000px;}
._1e_c00288{margin-left:-8.541000px;}
._c_c00288{margin-left:-6.696000px;}
._17_c00288{margin-left:-5.679000px;}
._1a_c00288{margin-left:-4.632000px;}
._b_c00288{margin-left:-3.600000px;}
._d_c00288{margin-left:-1.944000px;}
._12_c00288{width:1.440000px;}
._10_c00288{width:2.520000px;}
._f_c00288{width:3.888000px;}
._16_c00288{width:4.905000px;}
._19_c00288{width:6.174000px;}
._2_c00288{width:7.272000px;}
._1_c00288{width:8.352000px;}
._3_c00288{width:10.440000px;}
._4_c00288{width:12.960000px;}
._0_c00288{width:14.904000px;}
._9_c00288{width:16.056000px;}
._21_c00288{width:17.073000px;}
._a_c00288{width:19.440000px;}
._5_c00288{width:21.312000px;}
._7_c00288{width:23.760000px;}
._6_c00288{width:25.344000px;}
._1d_c00288{width:31.218000px;}
._8_c00288{width:65.304000px;}
._18_c00288{width:127.899000px;}
._22_c00288{width:319.638000px;}
._23_c00288{width:322.089000px;}
._1b_c00288{width:325.509000px;}
._20_c00288{width:331.992000px;}
._24_c00288{width:337.860000px;}
._13_c00288{width:382.488000px;}
.fc2_c00288{color:transparent;}
.fc1_c00288{color:rgb(128,128,128);}
.fc0_c00288{color:rgb(0,0,0);}
.fs5_c00288{font-size:48.000000px;}
.fs3_c00288{font-size:57.600000px;}
.fs4_c00288{font-size:69.000000px;}
.fs0_c00288{font-size:72.000000px;}
.fs2_c00288{font-size:81.000000px;}
.fs1_c00288{font-size:90.000000px;}
.y0_c00288{bottom:0.000000px;}
.y24_c00288{bottom:3.105000px;}
.y23_c00288{bottom:7.228363px;}
.y22_c00288{bottom:39.450000px;}
.y21_c00288{bottom:64.050000px;}
.y20_c00288{bottom:89.400000px;}
.y1f_c00288{bottom:114.300000px;}
.y1e_c00288{bottom:138.750000px;}
.y1d_c00288{bottom:163.050000px;}
.y1c_c00288{bottom:187.650000px;}
.y1b_c00288{bottom:211.950000px;}
.y1a_c00288{bottom:236.550000px;}
.y19_c00288{bottom:260.850000px;}
.y18_c00288{bottom:283.500000px;}
.y17_c00288{bottom:308.700000px;}
.y16_c00288{bottom:332.700000px;}
.y15_c00288{bottom:357.000000px;}
.y14_c00288{bottom:381.000000px;}
.y13_c00288{bottom:405.300000px;}
.y12_c00288{bottom:429.000000px;}
.y11_c00288{bottom:453.300000px;}
.y10_c00288{bottom:477.150000px;}
.yf_c00288{bottom:501.150000px;}
.ye_c00288{bottom:525.150000px;}
.yd_c00288{bottom:548.700000px;}
.yc_c00288{bottom:572.700000px;}
.yb_c00288{bottom:645.750000px;}
.ya_c00288{bottom:669.900000px;}
.y9_c00288{bottom:694.500000px;}
.y8_c00288{bottom:718.650000px;}
.y7_c00288{bottom:743.250000px;}
.y6_c00288{bottom:767.850000px;}
.y5_c00288{bottom:792.450000px;}
.y4_c00288{bottom:817.650000px;}
.y3_c00288{bottom:841.350000px;}
.y2_c00288{bottom:865.650000px;}
.y1_c00288{bottom:897.450000px;}
.h8_c00288{height:13.200074px;}
.h9_c00288{height:43.804688px;}
.h6_c00288{height:72.312000px;}
.h5_c00288{height:72.562500px;}
.h3_c00288{height:79.497070px;}
.h1_c00288{height:84.269531px;}
.h7_c00288{height:87.361816px;}
.h2_c00288{height:90.703125px;}
.h4_c00288{height:91.160156px;}
.h0_c00288{height:958.500000px;}
.w2_c00288{width:104.875500px;}
.w1_c00288{width:651.000000px;}
.w0_c00288{width:651.225000px;}
.x0_c00288{left:0.000000px;}
.x2_c00288{left:46.800000px;}
.x3_c00288{left:48.000000px;}
.x4_c00288{left:49.650000px;}
.x6_c00288{left:51.000000px;}
.x7_c00288{left:52.350000px;}
.x1_c00288{left:116.400000px;}
.x9_c00288{left:277.426758px;}
.x5_c00288{left:292.650000px;}
.x8_c00288{left:398.250000px;}
@media print{
.v0_c00288{vertical-align:0.000000pt;}
.ls1_c00288{letter-spacing:0.000000pt;}
.ls3_c00288{letter-spacing:2.666667pt;}
.ls2_c00288{letter-spacing:8.000000pt;}
.ls0_c00288{letter-spacing:15.600000pt;}
.ws0_c00288{word-spacing:-24.000000pt;}
.ws3_c00288{word-spacing:-21.184000pt;}
.ws4_c00288{word-spacing:-18.666667pt;}
.ws5_c00288{word-spacing:-18.000000pt;}
.ws2_c00288{word-spacing:-16.947200pt;}
.ws1_c00288{word-spacing:-15.424000pt;}
.ws6_c00288{word-spacing:0.000000pt;}
._1c_c00288{margin-left:-19.813333pt;}
._1f_c00288{margin-left:-15.581333pt;}
._11_c00288{margin-left:-12.800000pt;}
._e_c00288{margin-left:-11.904000pt;}
._14_c00288{margin-left:-9.744000pt;}
._15_c00288{margin-left:-8.496000pt;}
._1e_c00288{margin-left:-7.592000pt;}
._c_c00288{margin-left:-5.952000pt;}
._17_c00288{margin-left:-5.048000pt;}
._1a_c00288{margin-left:-4.117333pt;}
._b_c00288{margin-left:-3.200000pt;}
._d_c00288{margin-left:-1.728000pt;}
._12_c00288{width:1.280000pt;}
._10_c00288{width:2.240000pt;}
._f_c00288{width:3.456000pt;}
._16_c00288{width:4.360000pt;}
._19_c00288{width:5.488000pt;}
._2_c00288{width:6.464000pt;}
._1_c00288{width:7.424000pt;}
._3_c00288{width:9.280000pt;}
._4_c00288{width:11.520000pt;}
._0_c00288{width:13.248000pt;}
._9_c00288{width:14.272000pt;}
._21_c00288{width:15.176000pt;}
._a_c00288{width:17.280000pt;}
._5_c00288{width:18.944000pt;}
._7_c00288{width:21.120000pt;}
._6_c00288{width:22.528000pt;}
._1d_c00288{width:27.749333pt;}
._8_c00288{width:58.048000pt;}
._18_c00288{width:113.688000pt;}
._22_c00288{width:284.122667pt;}
._23_c00288{width:286.301333pt;}
._1b_c00288{width:289.341333pt;}
._20_c00288{width:295.104000pt;}
._24_c00288{width:300.320000pt;}
._13_c00288{width:339.989333pt;}
.fs5_c00288{font-size:42.666667pt;}
.fs3_c00288{font-size:51.200000pt;}
.fs4_c00288{font-size:61.333333pt;}
.fs0_c00288{font-size:64.000000pt;}
.fs2_c00288{font-size:72.000000pt;}
.fs1_c00288{font-size:80.000000pt;}
.y0_c00288{bottom:0.000000pt;}
.y24_c00288{bottom:2.760000pt;}
.y23_c00288{bottom:6.425212pt;}
.y22_c00288{bottom:35.066667pt;}
.y21_c00288{bottom:56.933333pt;}
.y20_c00288{bottom:79.466667pt;}
.y1f_c00288{bottom:101.600000pt;}
.y1e_c00288{bottom:123.333333pt;}
.y1d_c00288{bottom:144.933333pt;}
.y1c_c00288{bottom:166.800000pt;}
.y1b_c00288{bottom:188.400000pt;}
.y1a_c00288{bottom:210.266667pt;}
.y19_c00288{bottom:231.866667pt;}
.y18_c00288{bottom:252.000000pt;}
.y17_c00288{bottom:274.400000pt;}
.y16_c00288{bottom:295.733333pt;}
.y15_c00288{bottom:317.333333pt;}
.y14_c00288{bottom:338.666667pt;}
.y13_c00288{bottom:360.266667pt;}
.y12_c00288{bottom:381.333333pt;}
.y11_c00288{bottom:402.933333pt;}
.y10_c00288{bottom:424.133333pt;}
.yf_c00288{bottom:445.466667pt;}
.ye_c00288{bottom:466.800000pt;}
.yd_c00288{bottom:487.733333pt;}
.yc_c00288{bottom:509.066667pt;}
.yb_c00288{bottom:574.000000pt;}
.ya_c00288{bottom:595.466667pt;}
.y9_c00288{bottom:617.333333pt;}
.y8_c00288{bottom:638.800000pt;}
.y7_c00288{bottom:660.666667pt;}
.y6_c00288{bottom:682.533333pt;}
.y5_c00288{bottom:704.400000pt;}
.y4_c00288{bottom:726.800000pt;}
.y3_c00288{bottom:747.866667pt;}
.y2_c00288{bottom:769.466667pt;}
.y1_c00288{bottom:797.733333pt;}
.h8_c00288{height:11.733399pt;}
.h9_c00288{height:38.937500pt;}
.h6_c00288{height:64.277333pt;}
.h5_c00288{height:64.500000pt;}
.h3_c00288{height:70.664062pt;}
.h1_c00288{height:74.906250pt;}
.h7_c00288{height:77.654948pt;}
.h2_c00288{height:80.625000pt;}
.h4_c00288{height:81.031250pt;}
.h0_c00288{height:852.000000pt;}
.w2_c00288{width:93.222667pt;}
.w1_c00288{width:578.666667pt;}
.w0_c00288{width:578.866667pt;}
.x0_c00288{left:0.000000pt;}
.x2_c00288{left:41.600000pt;}
.x3_c00288{left:42.666667pt;}
.x4_c00288{left:44.133333pt;}
.x6_c00288{left:45.333333pt;}
.x7_c00288{left:46.533333pt;}
.x1_c00288{left:103.466667pt;}
.x9_c00288{left:246.601563pt;}
.x5_c00288{left:260.133333pt;}
.x8_c00288{left:354.000000pt;}
}





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

.ir_c00289:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00289{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00289;src:url('chunks/assets/font_bcc48861c7157cefa52ce1c5.woff2')format("woff");}.ff1_c00289{font-family:ff1_c00289;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00289;src:url('chunks/assets/font_0b4ef8c17e278be97729a589.woff2')format("woff");}.ff2_c00289{font-family:ff2_c00289;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00289;src:url('chunks/assets/font_997328ae2eb6d29f47e06051.woff2')format("woff");}.ff3_c00289{font-family:ff3_c00289;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00289;src:url('chunks/assets/font_4a0c52990343b8ee6f81479e.woff2')format("woff");}.ff4_c00289{font-family:ff4_c00289;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00289;src:url('chunks/assets/font_fa4bbbd49835d318e504f803.woff2')format("woff");}.ff5_c00289{font-family:ff5_c00289;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00289;src:url('chunks/assets/font_5c2f55e4d99f2c15a0fa31f1.woff2')format("woff");}.ff6_c00289{font-family:ff6_c00289;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00289;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c00289{font-family:ff7_c00289;line-height:1.219238;font-style: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;}
.v1_c00289{vertical-align:124.200000px;}
.ls1_c00289{letter-spacing:0.000000px;}
.ls0_c00289{letter-spacing:27.456000px;}
.sc__c00289{text-shadow:none;}
.sc0_c00289{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00289{-webkit-text-stroke:0px transparent;}
.sc0_c00289{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00289{word-spacing:-67.686000px;}
.ws2_c00289{word-spacing:-31.812000px;}
.ws0_c00289{word-spacing:-17.352000px;}
.ws3_c00289{word-spacing:0.000000px;}
._1e_c00289{margin-left:-30.618000px;}
._14_c00289{margin-left:-18.876000px;}
._1d_c00289{margin-left:-16.077000px;}
._1a_c00289{margin-left:-13.653000px;}
._f_c00289{margin-left:-12.555000px;}
._1c_c00289{margin-left:-11.490000px;}
._18_c00289{margin-left:-9.996000px;}
._13_c00289{margin-left:-8.736000px;}
._1f_c00289{margin-left:-7.707000px;}
._17_c00289{margin-left:-6.318000px;}
._c_c00289{margin-left:-4.455000px;}
._2_c00289{margin-left:-3.402000px;}
._a_c00289{margin-left:-2.349000px;}
._6_c00289{margin-left:-1.134000px;}
._3_c00289{width:1.377000px;}
._1_c00289{width:2.997000px;}
._7_c00289{width:4.050000px;}
._0_c00289{width:5.103000px;}
._5_c00289{width:6.561000px;}
._9_c00289{width:7.695000px;}
._b_c00289{width:9.315000px;}
._4_c00289{width:10.854000px;}
._12_c00289{width:12.555000px;}
._d_c00289{width:13.689000px;}
._11_c00289{width:14.985000px;}
._e_c00289{width:16.200000px;}
._25_c00289{width:22.443000px;}
._21_c00289{width:27.891000px;}
._16_c00289{width:29.298000px;}
._19_c00289{width:30.489000px;}
._15_c00289{width:32.448000px;}
._8_c00289{width:35.802000px;}
._10_c00289{width:68.202000px;}
._24_c00289{width:80.721000px;}
._20_c00289{width:150.651000px;}
._23_c00289{width:178.092000px;}
._1b_c00289{width:260.238000px;}
._22_c00289{width:307.071000px;}
.fc2_c00289{color:transparent;}
.fc1_c00289{color:rgb(128,128,128);}
.fc0_c00289{color:rgb(0,0,0);}
.fs8_c00289{font-size:48.000000px;}
.fs6_c00289{font-size:51.000000px;}
.fs2_c00289{font-size:57.000000px;}
.fs4_c00289{font-size:72.000000px;}
.fs1_c00289{font-size:78.000000px;}
.fs0_c00289{font-size:81.000000px;}
.fs5_c00289{font-size:87.000000px;}
.fs7_c00289{font-size:132.000000px;}
.fs3_c00289{font-size:258.000000px;}
.y0_c00289{bottom:0.000000px;}
.y24_c00289{bottom:3.105000px;}
.y23_c00289{bottom:7.228369px;}
.y22_c00289{bottom:66.720000px;}
.y21_c00289{bottom:90.720000px;}
.y20_c00289{bottom:115.320000px;}
.y1f_c00289{bottom:139.020000px;}
.y1e_c00289{bottom:165.270000px;}
.y1d_c00289{bottom:189.570000px;}
.y1c_c00289{bottom:214.620000px;}
.y1b_c00289{bottom:238.620000px;}
.y1a_c00289{bottom:262.620000px;}
.y19_c00289{bottom:287.520000px;}
.y18_c00289{bottom:311.820000px;}
.y17_c00289{bottom:337.170000px;}
.y16_c00289{bottom:360.420000px;}
.y15_c00289{bottom:385.320000px;}
.y14_c00289{bottom:409.020000px;}
.y13_c00289{bottom:433.620000px;}
.y12_c00289{bottom:458.220000px;}
.y11_c00289{bottom:482.970000px;}
.y10_c00289{bottom:506.220000px;}
.yf_c00289{bottom:529.470000px;}
.yd_c00289{bottom:546.720000px;}
.ye_c00289{bottom:553.770000px;}
.yc_c00289{bottom:602.670000px;}
.yb_c00289{bottom:649.920000px;}
.ya_c00289{bottom:674.370000px;}
.y9_c00289{bottom:699.270000px;}
.y8_c00289{bottom:722.970000px;}
.y7_c00289{bottom:747.270000px;}
.y6_c00289{bottom:771.570000px;}
.y5_c00289{bottom:795.720000px;}
.y4_c00289{bottom:819.720000px;}
.y3_c00289{bottom:843.720000px;}
.y2_c00289{bottom:868.020000px;}
.y1_c00289{bottom:892.320000px;}
.h8_c00289{height:13.200073px;}
.h9_c00289{height:43.804688px;}
.h1_c00289{height:79.497070px;}
.h6_c00289{height:84.269531px;}
.h5_c00289{height:91.160156px;}
.h4_c00289{height:91.176000px;}
.h2_c00289{height:98.756836px;}
.h7_c00289{height:167.126953px;}
.h3_c00289{height:270.384000px;}
.h0_c00289{height:989.250000px;}
.w2_c00289{width:104.875500px;}
.w1_c00289{width:663.000000px;}
.w0_c00289{width:663.150000px;}
.x0_c00289{left:0.000000px;}
.xb_c00289{left:38.250000px;}
.x9_c00289{left:40.200000px;}
.xa_c00289{left:41.850000px;}
.x4_c00289{left:104.700000px;}
.x2_c00289{left:129.000000px;}
.x1_c00289{left:130.200000px;}
.x3_c00289{left:131.700000px;}
.x8_c00289{left:133.650000px;}
.x6_c00289{left:135.000000px;}
.x7_c00289{left:185.250000px;}
.x5_c00289{left:211.350000px;}
.xd_c00289{left:283.389267px;}
.xc_c00289{left:602.400000px;}
@media print{
.v0_c00289{vertical-align:0.000000pt;}
.v1_c00289{vertical-align:110.400000pt;}
.ls1_c00289{letter-spacing:0.000000pt;}
.ls0_c00289{letter-spacing:24.405333pt;}
.ws1_c00289{word-spacing:-60.165333pt;}
.ws2_c00289{word-spacing:-28.277333pt;}
.ws0_c00289{word-spacing:-15.424000pt;}
.ws3_c00289{word-spacing:0.000000pt;}
._1e_c00289{margin-left:-27.216000pt;}
._14_c00289{margin-left:-16.778667pt;}
._1d_c00289{margin-left:-14.290667pt;}
._1a_c00289{margin-left:-12.136000pt;}
._f_c00289{margin-left:-11.160000pt;}
._1c_c00289{margin-left:-10.213333pt;}
._18_c00289{margin-left:-8.885333pt;}
._13_c00289{margin-left:-7.765333pt;}
._1f_c00289{margin-left:-6.850667pt;}
._17_c00289{margin-left:-5.616000pt;}
._c_c00289{margin-left:-3.960000pt;}
._2_c00289{margin-left:-3.024000pt;}
._a_c00289{margin-left:-2.088000pt;}
._6_c00289{margin-left:-1.008000pt;}
._3_c00289{width:1.224000pt;}
._1_c00289{width:2.664000pt;}
._7_c00289{width:3.600000pt;}
._0_c00289{width:4.536000pt;}
._5_c00289{width:5.832000pt;}
._9_c00289{width:6.840000pt;}
._b_c00289{width:8.280000pt;}
._4_c00289{width:9.648000pt;}
._12_c00289{width:11.160000pt;}
._d_c00289{width:12.168000pt;}
._11_c00289{width:13.320000pt;}
._e_c00289{width:14.400000pt;}
._25_c00289{width:19.949333pt;}
._21_c00289{width:24.792000pt;}
._16_c00289{width:26.042667pt;}
._19_c00289{width:27.101333pt;}
._15_c00289{width:28.842667pt;}
._8_c00289{width:31.824000pt;}
._10_c00289{width:60.624000pt;}
._24_c00289{width:71.752000pt;}
._20_c00289{width:133.912000pt;}
._23_c00289{width:158.304000pt;}
._1b_c00289{width:231.322667pt;}
._22_c00289{width:272.952000pt;}
.fs8_c00289{font-size:42.666667pt;}
.fs6_c00289{font-size:45.333333pt;}
.fs2_c00289{font-size:50.666667pt;}
.fs4_c00289{font-size:64.000000pt;}
.fs1_c00289{font-size:69.333333pt;}
.fs0_c00289{font-size:72.000000pt;}
.fs5_c00289{font-size:77.333333pt;}
.fs7_c00289{font-size:117.333333pt;}
.fs3_c00289{font-size:229.333333pt;}
.y0_c00289{bottom:0.000000pt;}
.y24_c00289{bottom:2.760000pt;}
.y23_c00289{bottom:6.425217pt;}
.y22_c00289{bottom:59.306667pt;}
.y21_c00289{bottom:80.640000pt;}
.y20_c00289{bottom:102.506667pt;}
.y1f_c00289{bottom:123.573333pt;}
.y1e_c00289{bottom:146.906667pt;}
.y1d_c00289{bottom:168.506667pt;}
.y1c_c00289{bottom:190.773333pt;}
.y1b_c00289{bottom:212.106667pt;}
.y1a_c00289{bottom:233.440000pt;}
.y19_c00289{bottom:255.573333pt;}
.y18_c00289{bottom:277.173333pt;}
.y17_c00289{bottom:299.706667pt;}
.y16_c00289{bottom:320.373333pt;}
.y15_c00289{bottom:342.506667pt;}
.y14_c00289{bottom:363.573333pt;}
.y13_c00289{bottom:385.440000pt;}
.y12_c00289{bottom:407.306667pt;}
.y11_c00289{bottom:429.306667pt;}
.y10_c00289{bottom:449.973333pt;}
.yf_c00289{bottom:470.640000pt;}
.yd_c00289{bottom:485.973333pt;}
.ye_c00289{bottom:492.240000pt;}
.yc_c00289{bottom:535.706667pt;}
.yb_c00289{bottom:577.706667pt;}
.ya_c00289{bottom:599.440000pt;}
.y9_c00289{bottom:621.573333pt;}
.y8_c00289{bottom:642.640000pt;}
.y7_c00289{bottom:664.240000pt;}
.y6_c00289{bottom:685.840000pt;}
.y5_c00289{bottom:707.306667pt;}
.y4_c00289{bottom:728.640000pt;}
.y3_c00289{bottom:749.973333pt;}
.y2_c00289{bottom:771.573333pt;}
.y1_c00289{bottom:793.173333pt;}
.h8_c00289{height:11.733399pt;}
.h9_c00289{height:38.937500pt;}
.h1_c00289{height:70.664062pt;}
.h6_c00289{height:74.906250pt;}
.h5_c00289{height:81.031250pt;}
.h4_c00289{height:81.045333pt;}
.h2_c00289{height:87.783854pt;}
.h7_c00289{height:148.557292pt;}
.h3_c00289{height:240.341333pt;}
.h0_c00289{height:879.333333pt;}
.w2_c00289{width:93.222667pt;}
.w1_c00289{width:589.333333pt;}
.w0_c00289{width:589.466667pt;}
.x0_c00289{left:0.000000pt;}
.xb_c00289{left:34.000000pt;}
.x9_c00289{left:35.733333pt;}
.xa_c00289{left:37.200000pt;}
.x4_c00289{left:93.066667pt;}
.x2_c00289{left:114.666667pt;}
.x1_c00289{left:115.733333pt;}
.x3_c00289{left:117.066667pt;}
.x8_c00289{left:118.800000pt;}
.x6_c00289{left:120.000000pt;}
.x7_c00289{left:164.666667pt;}
.x5_c00289{left:187.866667pt;}
.xd_c00289{left:251.901571pt;}
.xc_c00289{left:535.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_830417f789fe2265ca512047.woff2')format("woff");}.ff1_c00290{font-family:ff1_c00290;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00290;src:url('chunks/assets/font_1c731620870edcd51b8b2800.woff2')format("woff");}.ff2_c00290{font-family:ff2_c00290;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00290;src:url('chunks/assets/font_fe60c5ad0739de8e43647c56.woff2')format("woff");}.ff3_c00290{font-family:ff3_c00290;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00290;src:url('chunks/assets/font_b6c6d3e4baf3c7501f21d2ba.woff2')format("woff");}.ff4_c00290{font-family:ff4_c00290;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00290;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c00290{font-family:ff5_c00290;line-height:1.219238;font-style: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;}
.ls0_c00290{letter-spacing:0.000000px;}
.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:-59.184000px;}
.ws2_c00290{word-spacing:-33.480000px;}
.ws0_c00290{word-spacing:-20.250000px;}
.ws3_c00290{word-spacing:0.000000px;}
._13_c00290{margin-left:-26.568000px;}
._11_c00290{margin-left:-23.292000px;}
._12_c00290{margin-left:-12.078000px;}
._16_c00290{margin-left:-9.102000px;}
._e_c00290{margin-left:-7.938000px;}
._8_c00290{margin-left:-5.670000px;}
._6_c00290{margin-left:-4.131000px;}
._a_c00290{margin-left:-2.937000px;}
._c_c00290{margin-left:-1.863000px;}
._1_c00290{width:1.377000px;}
._2_c00290{width:3.078000px;}
._10_c00290{width:4.098000px;}
._0_c00290{width:5.103000px;}
._4_c00290{width:6.399000px;}
._5_c00290{width:7.614000px;}
._7_c00290{width:9.153000px;}
._3_c00290{width:10.611000px;}
._9_c00290{width:12.099000px;}
._d_c00290{width:13.701000px;}
._f_c00290{width:15.087000px;}
._b_c00290{width:16.170000px;}
._14_c00290{width:18.438000px;}
._18_c00290{width:32.991000px;}
._19_c00290{width:34.416000px;}
._1a_c00290{width:35.742000px;}
._17_c00290{width:41.529000px;}
._15_c00290{width:131.844000px;}
._1b_c00290{width:333.477000px;}
.fc2_c00290{color:transparent;}
.fc1_c00290{color:rgb(128,128,128);}
.fc0_c00290{color:rgb(0,0,0);}
.fs4_c00290{font-size:48.000000px;}
.fs1_c00290{font-size:66.000000px;}
.fs3_c00290{font-size:72.000000px;}
.fs2_c00290{font-size:78.000000px;}
.fs0_c00290{font-size:81.000000px;}
.y0_c00290{bottom:0.000000px;}
.y25_c00290{bottom:3.105000px;}
.y24_c00290{bottom:7.228363px;}
.y23_c00290{bottom:59.100000px;}
.y22_c00290{bottom:84.750000px;}
.y21_c00290{bottom:109.650000px;}
.y20_c00290{bottom:134.700000px;}
.y1f_c00290{bottom:159.600000px;}
.y1e_c00290{bottom:183.900000px;}
.y1d_c00290{bottom:208.500000px;}
.y1c_c00290{bottom:232.800000px;}
.y1b_c00290{bottom:257.550000px;}
.y1a_c00290{bottom:281.700000px;}
.y19_c00290{bottom:305.700000px;}
.y18_c00290{bottom:330.000000px;}
.y17_c00290{bottom:353.700000px;}
.y16_c00290{bottom:377.550000px;}
.y15_c00290{bottom:401.850000px;}
.y14_c00290{bottom:426.150000px;}
.y13_c00290{bottom:449.850000px;}
.y12_c00290{bottom:474.150000px;}
.y11_c00290{bottom:498.150000px;}
.y10_c00290{bottom:522.150000px;}
.yf_c00290{bottom:546.000000px;}
.ye_c00290{bottom:570.000000px;}
.yd_c00290{bottom:593.250000px;}
.yc_c00290{bottom:618.000000px;}
.yb_c00290{bottom:641.550000px;}
.ya_c00290{bottom:665.850000px;}
.y9_c00290{bottom:690.150000px;}
.y8_c00290{bottom:714.900000px;}
.y7_c00290{bottom:738.150000px;}
.y6_c00290{bottom:762.750000px;}
.y5_c00290{bottom:784.050000px;}
.y4_c00290{bottom:810.750000px;}
.y3_c00290{bottom:834.750000px;}
.y2_c00290{bottom:860.250000px;}
.y1_c00290{bottom:883.500000px;}
.h5_c00290{height:13.200074px;}
.h6_c00290{height:43.804688px;}
.h2_c00290{height:79.497070px;}
.h4_c00290{height:84.269531px;}
.h3_c00290{height:98.756836px;}
.h1_c00290{height:982.500000px;}
.h0_c00290{height:982.800000px;}
.w2_c00290{width:104.875500px;}
.w0_c00290{width:667.425000px;}
.w1_c00290{width:667.500000px;}
.x0_c00290{left:0.000000px;}
.x7_c00290{left:50.850000px;}
.xb_c00290{left:52.200000px;}
.xa_c00290{left:53.250000px;}
.x9_c00290{left:54.300000px;}
.x8_c00290{left:55.950000px;}
.x6_c00290{left:57.750000px;}
.x5_c00290{left:59.700000px;}
.x4_c00290{left:61.050000px;}
.x1_c00290{left:62.100000px;}
.x2_c00290{left:64.500000px;}
.x3_c00290{left:85.950000px;}
.xd_c00290{left:285.526749px;}
.xc_c00290{left:371.850000px;}
@media print{
.v0_c00290{vertical-align:0.000000pt;}
.ls0_c00290{letter-spacing:0.000000pt;}
.ws1_c00290{word-spacing:-52.608000pt;}
.ws2_c00290{word-spacing:-29.760000pt;}
.ws0_c00290{word-spacing:-18.000000pt;}
.ws3_c00290{word-spacing:0.000000pt;}
._13_c00290{margin-left:-23.616000pt;}
._11_c00290{margin-left:-20.704000pt;}
._12_c00290{margin-left:-10.736000pt;}
._16_c00290{margin-left:-8.090667pt;}
._e_c00290{margin-left:-7.056000pt;}
._8_c00290{margin-left:-5.040000pt;}
._6_c00290{margin-left:-3.672000pt;}
._a_c00290{margin-left:-2.610667pt;}
._c_c00290{margin-left:-1.656000pt;}
._1_c00290{width:1.224000pt;}
._2_c00290{width:2.736000pt;}
._10_c00290{width:3.642667pt;}
._0_c00290{width:4.536000pt;}
._4_c00290{width:5.688000pt;}
._5_c00290{width:6.768000pt;}
._7_c00290{width:8.136000pt;}
._3_c00290{width:9.432000pt;}
._9_c00290{width:10.754667pt;}
._d_c00290{width:12.178667pt;}
._f_c00290{width:13.410667pt;}
._b_c00290{width:14.373333pt;}
._14_c00290{width:16.389333pt;}
._18_c00290{width:29.325333pt;}
._19_c00290{width:30.592000pt;}
._1a_c00290{width:31.770667pt;}
._17_c00290{width:36.914667pt;}
._15_c00290{width:117.194667pt;}
._1b_c00290{width:296.424000pt;}
.fs4_c00290{font-size:42.666667pt;}
.fs1_c00290{font-size:58.666667pt;}
.fs3_c00290{font-size:64.000000pt;}
.fs2_c00290{font-size:69.333333pt;}
.fs0_c00290{font-size:72.000000pt;}
.y0_c00290{bottom:0.000000pt;}
.y25_c00290{bottom:2.760000pt;}
.y24_c00290{bottom:6.425212pt;}
.y23_c00290{bottom:52.533333pt;}
.y22_c00290{bottom:75.333333pt;}
.y21_c00290{bottom:97.466667pt;}
.y20_c00290{bottom:119.733333pt;}
.y1f_c00290{bottom:141.866667pt;}
.y1e_c00290{bottom:163.466667pt;}
.y1d_c00290{bottom:185.333333pt;}
.y1c_c00290{bottom:206.933333pt;}
.y1b_c00290{bottom:228.933333pt;}
.y1a_c00290{bottom:250.400000pt;}
.y19_c00290{bottom:271.733333pt;}
.y18_c00290{bottom:293.333333pt;}
.y17_c00290{bottom:314.400000pt;}
.y16_c00290{bottom:335.600000pt;}
.y15_c00290{bottom:357.200000pt;}
.y14_c00290{bottom:378.800000pt;}
.y13_c00290{bottom:399.866667pt;}
.y12_c00290{bottom:421.466667pt;}
.y11_c00290{bottom:442.800000pt;}
.y10_c00290{bottom:464.133333pt;}
.yf_c00290{bottom:485.333333pt;}
.ye_c00290{bottom:506.666667pt;}
.yd_c00290{bottom:527.333333pt;}
.yc_c00290{bottom:549.333333pt;}
.yb_c00290{bottom:570.266667pt;}
.ya_c00290{bottom:591.866667pt;}
.y9_c00290{bottom:613.466667pt;}
.y8_c00290{bottom:635.466667pt;}
.y7_c00290{bottom:656.133333pt;}
.y6_c00290{bottom:678.000000pt;}
.y5_c00290{bottom:696.933333pt;}
.y4_c00290{bottom:720.666667pt;}
.y3_c00290{bottom:742.000000pt;}
.y2_c00290{bottom:764.666667pt;}
.y1_c00290{bottom:785.333333pt;}
.h5_c00290{height:11.733399pt;}
.h6_c00290{height:38.937500pt;}
.h2_c00290{height:70.664062pt;}
.h4_c00290{height:74.906250pt;}
.h3_c00290{height:87.783854pt;}
.h1_c00290{height:873.333333pt;}
.h0_c00290{height:873.600000pt;}
.w2_c00290{width:93.222667pt;}
.w0_c00290{width:593.266667pt;}
.w1_c00290{width:593.333333pt;}
.x0_c00290{left:0.000000pt;}
.x7_c00290{left:45.200000pt;}
.xb_c00290{left:46.400000pt;}
.xa_c00290{left:47.333333pt;}
.x9_c00290{left:48.266667pt;}
.x8_c00290{left:49.733333pt;}
.x6_c00290{left:51.333333pt;}
.x5_c00290{left:53.066667pt;}
.x4_c00290{left:54.266667pt;}
.x1_c00290{left:55.200000pt;}
.x2_c00290{left:57.333333pt;}
.x3_c00290{left:76.400000pt;}
.xd_c00290{left:253.801554pt;}
.xc_c00290{left:330.533333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_61d072de33823f4fb414fb29.woff2')format("woff");}.ff1_c00291{font-family:ff1_c00291;line-height:1.437000;font-style:normal;font-weight:normal;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_cbb87acd5cd1df53779121ed.woff2')format("woff");}.ff2_c00291{font-family:ff2_c00291;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00291;src:url('chunks/assets/font_32708be4c5cc076b5fdfb529.woff2')format("woff");}.ff3_c00291{font-family:ff3_c00291;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00291;src:url('chunks/assets/font_a5b4ef2a8bc7dbb7eb27e945.woff2')format("woff");}.ff4_c00291{font-family:ff4_c00291;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00291;src:url('chunks/assets/font_d94c7c72aa4b062f392ebdbe.woff2')format("woff");}.ff5_c00291{font-family:ff5_c00291;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00291;src:url('chunks/assets/font_c302dbefc7ae8cf56df7a833.woff2')format("woff");}.ff6_c00291{font-family:ff6_c00291;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00291;src:url('chunks/assets/font_2e2961b2ae318eb57edaefb0.woff2')format("woff");}.ff7_c00291{font-family:ff7_c00291;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00291;src:url('chunks/assets/font_a59a7add9a7a5e6734af176f.woff2')format("woff");}.ff8_c00291{font-family:ff8_c00291;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00291;src:url('chunks/assets/font_e59de531861c4bc02294f069.woff2')format("woff");}.ff9_c00291{font-family:ff9_c00291;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00291;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ffa_c00291{font-family:ffa_c00291;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c00291;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ffb_c00291{font-family:ffb_c00291;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00291{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00291{vertical-align:0.000000px;}
.ls3_c00291{letter-spacing:0.000000px;}
.ls4_c00291{letter-spacing:6.000000px;}
.ls1_c00291{letter-spacing:8.448000px;}
.ls2_c00291{letter-spacing:15.186000px;}
.ls0_c00291{letter-spacing:79.074000px;}
.sc__c00291{text-shadow:none;}
.sc0_c00291{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00291{-webkit-text-stroke:0px transparent;}
.sc0_c00291{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00291{word-spacing:-87.333000px;}
.ws0_c00291{word-spacing:-67.686000px;}
.ws6_c00291{word-spacing:-33.984000px;}
.ws7_c00291{word-spacing:-30.000000px;}
.ws5_c00291{word-spacing:-23.352000px;}
.ws2_c00291{word-spacing:-20.250000px;}
.ws4_c00291{word-spacing:-18.798000px;}
.ws8_c00291{word-spacing:-17.352000px;}
.ws9_c00291{word-spacing:0.000000px;}
.ws1_c00291{word-spacing:0.648000px;}
._19_c00291{margin-left:-42.471000px;}
._20_c00291{margin-left:-27.621000px;}
._1e_c00291{margin-left:-24.567000px;}
._2d_c00291{margin-left:-23.085000px;}
._29_c00291{margin-left:-19.401000px;}
._18_c00291{margin-left:-17.856000px;}
._1b_c00291{margin-left:-16.029000px;}
._24_c00291{margin-left:-14.508000px;}
._16_c00291{margin-left:-12.552000px;}
._17_c00291{margin-left:-9.936000px;}
._27_c00291{margin-left:-8.865000px;}
._1a_c00291{margin-left:-7.629000px;}
._f_c00291{margin-left:-5.847000px;}
._13_c00291{margin-left:-3.840000px;}
._d_c00291{margin-left:-2.307000px;}
._10_c00291{margin-left:-1.206000px;}
._e_c00291{width:1.926000px;}
._b_c00291{width:3.096000px;}
._11_c00291{width:4.830000px;}
._a_c00291{width:5.976000px;}
._c_c00291{width:7.776000px;}
._15_c00291{width:8.874000px;}
._9_c00291{width:9.936000px;}
._2_c00291{width:11.304000px;}
._6_c00291{width:12.888000px;}
._2a_c00291{width:13.995000px;}
._28_c00291{width:15.345000px;}
._0_c00291{width:16.530000px;}
._30_c00291{width:18.561000px;}
._8_c00291{width:21.312000px;}
._3_c00291{width:22.536000px;}
._5_c00291{width:23.616000px;}
._32_c00291{width:24.858000px;}
._4_c00291{width:26.064000px;}
._2c_c00291{width:27.888000px;}
._7_c00291{width:34.848000px;}
._33_c00291{width:46.044000px;}
._23_c00291{width:56.880000px;}
._1d_c00291{width:63.915000px;}
._2e_c00291{width:66.096000px;}
._25_c00291{width:105.399000px;}
._34_c00291{width:121.011000px;}
._21_c00291{width:127.980000px;}
._1c_c00291{width:137.937000px;}
._2f_c00291{width:145.677000px;}
._1f_c00291{width:149.283000px;}
._26_c00291{width:286.422000px;}
._31_c00291{width:308.892000px;}
._14_c00291{width:427.110000px;}
._12_c00291{width:435.456000px;}
._2b_c00291{width:504.435000px;}
._1_c00291{width:581.601000px;}
._22_c00291{width:626.976000px;}
._35_c00291{width:1587.393000px;}
.fc2_c00291{color:transparent;}
.fc1_c00291{color:rgb(128,128,128);}
.fc0_c00291{color:rgb(0,0,0);}
.fs7_c00291{font-size:48.000000px;}
.fs6_c00291{font-size:54.000000px;}
.fs5_c00291{font-size:60.000000px;}
.fs2_c00291{font-size:72.000000px;}
.fs3_c00291{font-size:78.000000px;}
.fs1_c00291{font-size:81.000000px;}
.fs0_c00291{font-size:87.000000px;}
.fs4_c00291{font-size:129.000000px;}
.y0_c00291{bottom:0.000000px;}
.y27_c00291{bottom:3.105000px;}
.y26_c00291{bottom:7.228357px;}
.y25_c00291{bottom:60.180000px;}
.y24_c00291{bottom:85.080000px;}
.y23_c00291{bottom:110.130000px;}
.y22_c00291{bottom:134.730000px;}
.y21_c00291{bottom:159.630000px;}
.y20_c00291{bottom:183.930000px;}
.y1f_c00291{bottom:208.230000px;}
.y1e_c00291{bottom:233.580000px;}
.y1d_c00291{bottom:257.280000px;}
.y1c_c00291{bottom:280.080000px;}
.y1b_c00291{bottom:307.230000px;}
.y1a_c00291{bottom:331.230000px;}
.y19_c00291{bottom:355.830000px;}
.y18_c00291{bottom:380.430000px;}
.y17_c00291{bottom:405.030000px;}
.y16_c00291{bottom:430.080000px;}
.y15_c00291{bottom:453.630000px;}
.y14_c00291{bottom:477.930000px;}
.y13_c00291{bottom:502.230000px;}
.y12_c00291{bottom:526.230000px;}
.y11_c00291{bottom:550.230000px;}
.y10_c00291{bottom:574.530000px;}
.yf_c00291{bottom:598.830000px;}
.ye_c00291{bottom:623.130000px;}
.yd_c00291{bottom:647.430000px;}
.yc_c00291{bottom:672.030000px;}
.yb_c00291{bottom:696.330000px;}
.ya_c00291{bottom:720.330000px;}
.y9_c00291{bottom:744.630000px;}
.y8_c00291{bottom:768.930000px;}
.y7_c00291{bottom:792.180000px;}
.y6_c00291{bottom:804.630000px;}
.y5_c00291{bottom:820.080000px;}
.y4_c00291{bottom:841.830000px;}
.y3_c00291{bottom:866.430000px;}
.y2_c00291{bottom:890.730000px;}
.y1_c00291{bottom:924.180000px;}
.h9_c00291{height:13.200074px;}
.ha_c00291{height:43.804688px;}
.h5_c00291{height:72.562500px;}
.h8_c00291{height:79.497070px;}
.h4_c00291{height:81.632812px;}
.h3_c00291{height:84.269531px;}
.h2_c00291{height:91.176000px;}
.h7_c00291{height:91.291992px;}
.h6_c00291{height:163.328613px;}
.h0_c00291{height:984.450000px;}
.h1_c00291{height:984.750000px;}
.w2_c00291{width:104.875500px;}
.w0_c00291{width:659.850000px;}
.w1_c00291{width:660.000000px;}
.x0_c00291{left:0.000000px;}
.x2_c00291{left:29.400000px;}
.xc_c00291{left:35.100000px;}
.xd_c00291{left:37.200000px;}
.x3_c00291{left:49.650000px;}
.xf_c00291{left:114.150000px;}
.x1_c00291{left:122.550000px;}
.x4_c00291{left:124.950000px;}
.x5_c00291{left:126.150000px;}
.x6_c00291{left:127.350000px;}
.x7_c00291{left:129.600000px;}
.x8_c00291{left:130.950000px;}
.x9_c00291{left:132.300000px;}
.xa_c00291{left:133.650000px;}
.xe_c00291{left:134.700000px;}
.x10_c00291{left:139.050000px;}
.xb_c00291{left:209.850000px;}
.x11_c00291{left:281.739258px;}
@media print{
.v0_c00291{vertical-align:0.000000pt;}
.ls3_c00291{letter-spacing:0.000000pt;}
.ls4_c00291{letter-spacing:5.333333pt;}
.ls1_c00291{letter-spacing:7.509333pt;}
.ls2_c00291{letter-spacing:13.498667pt;}
.ls0_c00291{letter-spacing:70.288000pt;}
.ws3_c00291{word-spacing:-77.629333pt;}
.ws0_c00291{word-spacing:-60.165333pt;}
.ws6_c00291{word-spacing:-30.208000pt;}
.ws7_c00291{word-spacing:-26.666667pt;}
.ws5_c00291{word-spacing:-20.757333pt;}
.ws2_c00291{word-spacing:-18.000000pt;}
.ws4_c00291{word-spacing:-16.709333pt;}
.ws8_c00291{word-spacing:-15.424000pt;}
.ws9_c00291{word-spacing:0.000000pt;}
.ws1_c00291{word-spacing:0.576000pt;}
._19_c00291{margin-left:-37.752000pt;}
._20_c00291{margin-left:-24.552000pt;}
._1e_c00291{margin-left:-21.837333pt;}
._2d_c00291{margin-left:-20.520000pt;}
._29_c00291{margin-left:-17.245333pt;}
._18_c00291{margin-left:-15.872000pt;}
._1b_c00291{margin-left:-14.248000pt;}
._24_c00291{margin-left:-12.896000pt;}
._16_c00291{margin-left:-11.157333pt;}
._17_c00291{margin-left:-8.832000pt;}
._27_c00291{margin-left:-7.880000pt;}
._1a_c00291{margin-left:-6.781333pt;}
._f_c00291{margin-left:-5.197333pt;}
._13_c00291{margin-left:-3.413333pt;}
._d_c00291{margin-left:-2.050667pt;}
._10_c00291{margin-left:-1.072000pt;}
._e_c00291{width:1.712000pt;}
._b_c00291{width:2.752000pt;}
._11_c00291{width:4.293333pt;}
._a_c00291{width:5.312000pt;}
._c_c00291{width:6.912000pt;}
._15_c00291{width:7.888000pt;}
._9_c00291{width:8.832000pt;}
._2_c00291{width:10.048000pt;}
._6_c00291{width:11.456000pt;}
._2a_c00291{width:12.440000pt;}
._28_c00291{width:13.640000pt;}
._0_c00291{width:14.693333pt;}
._30_c00291{width:16.498667pt;}
._8_c00291{width:18.944000pt;}
._3_c00291{width:20.032000pt;}
._5_c00291{width:20.992000pt;}
._32_c00291{width:22.096000pt;}
._4_c00291{width:23.168000pt;}
._2c_c00291{width:24.789333pt;}
._7_c00291{width:30.976000pt;}
._33_c00291{width:40.928000pt;}
._23_c00291{width:50.560000pt;}
._1d_c00291{width:56.813333pt;}
._2e_c00291{width:58.752000pt;}
._25_c00291{width:93.688000pt;}
._34_c00291{width:107.565333pt;}
._21_c00291{width:113.760000pt;}
._1c_c00291{width:122.610667pt;}
._2f_c00291{width:129.490667pt;}
._1f_c00291{width:132.696000pt;}
._26_c00291{width:254.597333pt;}
._31_c00291{width:274.570667pt;}
._14_c00291{width:379.653333pt;}
._12_c00291{width:387.072000pt;}
._2b_c00291{width:448.386667pt;}
._1_c00291{width:516.978667pt;}
._22_c00291{width:557.312000pt;}
._35_c00291{width:1411.016000pt;}
.fs7_c00291{font-size:42.666667pt;}
.fs6_c00291{font-size:48.000000pt;}
.fs5_c00291{font-size:53.333333pt;}
.fs2_c00291{font-size:64.000000pt;}
.fs3_c00291{font-size:69.333333pt;}
.fs1_c00291{font-size:72.000000pt;}
.fs0_c00291{font-size:77.333333pt;}
.fs4_c00291{font-size:114.666667pt;}
.y0_c00291{bottom:0.000000pt;}
.y27_c00291{bottom:2.760000pt;}
.y26_c00291{bottom:6.425206pt;}
.y25_c00291{bottom:53.493333pt;}
.y24_c00291{bottom:75.626667pt;}
.y23_c00291{bottom:97.893333pt;}
.y22_c00291{bottom:119.760000pt;}
.y21_c00291{bottom:141.893333pt;}
.y20_c00291{bottom:163.493333pt;}
.y1f_c00291{bottom:185.093333pt;}
.y1e_c00291{bottom:207.626667pt;}
.y1d_c00291{bottom:228.693333pt;}
.y1c_c00291{bottom:248.960000pt;}
.y1b_c00291{bottom:273.093333pt;}
.y1a_c00291{bottom:294.426667pt;}
.y19_c00291{bottom:316.293333pt;}
.y18_c00291{bottom:338.160000pt;}
.y17_c00291{bottom:360.026667pt;}
.y16_c00291{bottom:382.293333pt;}
.y15_c00291{bottom:403.226667pt;}
.y14_c00291{bottom:424.826667pt;}
.y13_c00291{bottom:446.426667pt;}
.y12_c00291{bottom:467.760000pt;}
.y11_c00291{bottom:489.093333pt;}
.y10_c00291{bottom:510.693333pt;}
.yf_c00291{bottom:532.293333pt;}
.ye_c00291{bottom:553.893333pt;}
.yd_c00291{bottom:575.493333pt;}
.yc_c00291{bottom:597.360000pt;}
.yb_c00291{bottom:618.960000pt;}
.ya_c00291{bottom:640.293333pt;}
.y9_c00291{bottom:661.893333pt;}
.y8_c00291{bottom:683.493333pt;}
.y7_c00291{bottom:704.160000pt;}
.y6_c00291{bottom:715.226667pt;}
.y5_c00291{bottom:728.960000pt;}
.y4_c00291{bottom:748.293333pt;}
.y3_c00291{bottom:770.160000pt;}
.y2_c00291{bottom:791.760000pt;}
.y1_c00291{bottom:821.493333pt;}
.h9_c00291{height:11.733399pt;}
.ha_c00291{height:38.937500pt;}
.h5_c00291{height:64.500000pt;}
.h8_c00291{height:70.664062pt;}
.h4_c00291{height:72.562500pt;}
.h3_c00291{height:74.906250pt;}
.h2_c00291{height:81.045333pt;}
.h7_c00291{height:81.148438pt;}
.h6_c00291{height:145.180990pt;}
.h0_c00291{height:875.066667pt;}
.h1_c00291{height:875.333333pt;}
.w2_c00291{width:93.222667pt;}
.w0_c00291{width:586.533333pt;}
.w1_c00291{width:586.666667pt;}
.x0_c00291{left:0.000000pt;}
.x2_c00291{left:26.133333pt;}
.xc_c00291{left:31.200000pt;}
.xd_c00291{left:33.066667pt;}
.x3_c00291{left:44.133333pt;}
.xf_c00291{left:101.466667pt;}
.x1_c00291{left:108.933333pt;}
.x4_c00291{left:111.066667pt;}
.x5_c00291{left:112.133333pt;}
.x6_c00291{left:113.200000pt;}
.x7_c00291{left:115.200000pt;}
.x8_c00291{left:116.400000pt;}
.x9_c00291{left:117.600000pt;}
.xa_c00291{left:118.800000pt;}
.xe_c00291{left:119.733333pt;}
.x10_c00291{left:123.600000pt;}
.xb_c00291{left:186.533333pt;}
.x11_c00291{left:250.434896pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3658d76c7a0008c51ea30fb0.woff2')format("woff");}.ff1_c00292{font-family:ff1_c00292;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00292;src:url('chunks/assets/font_5a3b5127d2fe9105a3789b3f.woff2')format("woff");}.ff2_c00292{font-family:ff2_c00292;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00292;src:url('chunks/assets/font_3ed5ce745d00a4eaea35f559.woff2')format("woff");}.ff3_c00292{font-family:ff3_c00292;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00292;src:url('chunks/assets/font_5be7849b4a38cfc0f4fd202c.woff2')format("woff");}.ff4_c00292{font-family:ff4_c00292;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00292;src:url('chunks/assets/font_1e90423f36df7062d25cbe80.woff2')format("woff");}.ff5_c00292{font-family:ff5_c00292;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00292;src:url('chunks/assets/font_00331dc45676ff83ad75ff74.woff2')format("woff");}.ff6_c00292{font-family:ff6_c00292;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00292;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c00292{font-family:ff7_c00292;line-height:1.219238;font-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_c00292{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,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;}
.ls2_c00292{letter-spacing:0.000000px;}
.ls3_c00292{letter-spacing:3.000000px;}
.ls1_c00292{letter-spacing:7.941000px;}
.ls0_c00292{letter-spacing:13.920000px;}
.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;}
}
.ws2_c00292{word-spacing:-67.686000px;}
.ws1_c00292{word-spacing:-17.352000px;}
.ws0_c00292{word-spacing:-15.000000px;}
.ws4_c00292{word-spacing:0.000000px;}
.ws3_c00292{word-spacing:2.400000px;}
._22_c00292{margin-left:-26.406000px;}
._1b_c00292{margin-left:-21.870000px;}
._1a_c00292{margin-left:-18.873000px;}
._11_c00292{margin-left:-14.499000px;}
._1e_c00292{margin-left:-11.988000px;}
._9_c00292{margin-left:-10.197000px;}
._13_c00292{margin-left:-8.568000px;}
._7_c00292{margin-left:-7.524000px;}
._b_c00292{margin-left:-6.039000px;}
._6_c00292{margin-left:-4.653000px;}
._8_c00292{margin-left:-3.366000px;}
._5_c00292{margin-left:-1.584000px;}
._e_c00292{width:1.719000px;}
._f_c00292{width:3.672000px;}
._2_c00292{width:4.950000px;}
._3_c00292{width:6.237000px;}
._d_c00292{width:8.100000px;}
._4_c00292{width:9.306000px;}
._1_c00292{width:10.395000px;}
._0_c00292{width:11.781000px;}
._14_c00292{width:12.915000px;}
._c_c00292{width:14.418000px;}
._28_c00292{width:15.867000px;}
._23_c00292{width:17.019000px;}
._26_c00292{width:18.345000px;}
._24_c00292{width:19.680000px;}
._25_c00292{width:22.038000px;}
._29_c00292{width:26.049000px;}
._12_c00292{width:27.468000px;}
._10_c00292{width:44.247000px;}
._19_c00292{width:52.605000px;}
._27_c00292{width:55.869000px;}
._1c_c00292{width:59.409000px;}
._16_c00292{width:75.051000px;}
._1f_c00292{width:89.829000px;}
._17_c00292{width:92.424000px;}
._18_c00292{width:111.039000px;}
._1d_c00292{width:121.743000px;}
._21_c00292{width:182.637000px;}
._15_c00292{width:249.111000px;}
._2a_c00292{width:325.659000px;}
._20_c00292{width:347.268000px;}
._2b_c00292{width:427.752000px;}
._a_c00292{width:673.926000px;}
.fc2_c00292{color:transparent;}
.fc1_c00292{color:rgb(128,128,128);}
.fc0_c00292{color:rgb(0,0,0);}
.fs8_c00292{font-size:48.000000px;}
.fs4_c00292{font-size:60.000000px;}
.fs3_c00292{font-size:72.000000px;}
.fs5_c00292{font-size:78.000000px;}
.fs2_c00292{font-size:81.000000px;}
.fs6_c00292{font-size:87.000000px;}
.fs0_c00292{font-size:99.000000px;}
.fs7_c00292{font-size:108.000000px;}
.fs1_c00292{font-size:132.000000px;}
.y0_c00292{bottom:0.000000px;}
.y26_c00292{bottom:3.105000px;}
.y25_c00292{bottom:7.228369px;}
.y23_c00292{bottom:53.370000px;}
.y22_c00292{bottom:80.220000px;}
.y21_c00292{bottom:104.670000px;}
.y20_c00292{bottom:129.570000px;}
.y1f_c00292{bottom:154.470000px;}
.y1e_c00292{bottom:181.470000px;}
.y24_c00292{bottom:196.020000px;}
.y1d_c00292{bottom:211.320000px;}
.y1c_c00292{bottom:241.620000px;}
.y1b_c00292{bottom:279.720000px;}
.y1a_c00292{bottom:305.370000px;}
.y19_c00292{bottom:329.070000px;}
.y18_c00292{bottom:352.920000px;}
.y17_c00292{bottom:376.920000px;}
.y16_c00292{bottom:400.920000px;}
.y15_c00292{bottom:425.220000px;}
.y14_c00292{bottom:448.170000px;}
.y13_c00292{bottom:472.770000px;}
.y12_c00292{bottom:496.770000px;}
.y11_c00292{bottom:521.370000px;}
.y10_c00292{bottom:543.420000px;}
.yf_c00292{bottom:569.070000px;}
.ye_c00292{bottom:592.920000px;}
.yd_c00292{bottom:616.320000px;}
.yc_c00292{bottom:640.470000px;}
.yb_c00292{bottom:663.570000px;}
.ya_c00292{bottom:688.770000px;}
.y9_c00292{bottom:713.070000px;}
.y8_c00292{bottom:737.670000px;}
.y7_c00292{bottom:760.620000px;}
.y6_c00292{bottom:785.670000px;}
.y5_c00292{bottom:810.270000px;}
.y4_c00292{bottom:835.020000px;}
.y3_c00292{bottom:859.170000px;}
.y2_c00292{bottom:882.870000px;}
.y1_c00292{bottom:916.920000px;}
.h9_c00292{height:13.200073px;}
.ha_c00292{height:43.804688px;}
.h3_c00292{height:79.497070px;}
.h7_c00292{height:84.269531px;}
.h4_c00292{height:91.160156px;}
.h6_c00292{height:91.176000px;}
.h5_c00292{height:98.756836px;}
.h8_c00292{height:108.843750px;}
.h2_c00292{height:167.126953px;}
.h0_c00292{height:970.350000px;}
.h1_c00292{height:970.500000px;}
.w2_c00292{width:104.875500px;}
.w1_c00292{width:659.250000px;}
.w0_c00292{width:659.325000px;}
.x0_c00292{left:0.000000px;}
.x3_c00292{left:41.250000px;}
.x2_c00292{left:42.300000px;}
.x4_c00292{left:43.650000px;}
.x5_c00292{left:44.850000px;}
.x6_c00292{left:47.250000px;}
.x7_c00292{left:48.600000px;}
.x8_c00292{left:49.650000px;}
.x9_c00292{left:50.700000px;}
.xa_c00292{left:51.750000px;}
.xb_c00292{left:53.100000px;}
.xc_c00292{left:82.350000px;}
.x1_c00292{left:114.900000px;}
.xd_c00292{left:147.900000px;}
.x10_c00292{left:152.550000px;}
.xf_c00292{left:153.600000px;}
.xe_c00292{left:154.650000px;}
.x13_c00292{left:281.476730px;}
.x11_c00292{left:367.650000px;}
.x12_c00292{left:624.000000px;}
@media print{
.v0_c00292{vertical-align:0.000000pt;}
.ls2_c00292{letter-spacing:0.000000pt;}
.ls3_c00292{letter-spacing:2.666667pt;}
.ls1_c00292{letter-spacing:7.058667pt;}
.ls0_c00292{letter-spacing:12.373333pt;}
.ws2_c00292{word-spacing:-60.165333pt;}
.ws1_c00292{word-spacing:-15.424000pt;}
.ws0_c00292{word-spacing:-13.333333pt;}
.ws4_c00292{word-spacing:0.000000pt;}
.ws3_c00292{word-spacing:2.133333pt;}
._22_c00292{margin-left:-23.472000pt;}
._1b_c00292{margin-left:-19.440000pt;}
._1a_c00292{margin-left:-16.776000pt;}
._11_c00292{margin-left:-12.888000pt;}
._1e_c00292{margin-left:-10.656000pt;}
._9_c00292{margin-left:-9.064000pt;}
._13_c00292{margin-left:-7.616000pt;}
._7_c00292{margin-left:-6.688000pt;}
._b_c00292{margin-left:-5.368000pt;}
._6_c00292{margin-left:-4.136000pt;}
._8_c00292{margin-left:-2.992000pt;}
._5_c00292{margin-left:-1.408000pt;}
._e_c00292{width:1.528000pt;}
._f_c00292{width:3.264000pt;}
._2_c00292{width:4.400000pt;}
._3_c00292{width:5.544000pt;}
._d_c00292{width:7.200000pt;}
._4_c00292{width:8.272000pt;}
._1_c00292{width:9.240000pt;}
._0_c00292{width:10.472000pt;}
._14_c00292{width:11.480000pt;}
._c_c00292{width:12.816000pt;}
._28_c00292{width:14.104000pt;}
._23_c00292{width:15.128000pt;}
._26_c00292{width:16.306667pt;}
._24_c00292{width:17.493333pt;}
._25_c00292{width:19.589333pt;}
._29_c00292{width:23.154667pt;}
._12_c00292{width:24.416000pt;}
._10_c00292{width:39.330667pt;}
._19_c00292{width:46.760000pt;}
._27_c00292{width:49.661333pt;}
._1c_c00292{width:52.808000pt;}
._16_c00292{width:66.712000pt;}
._1f_c00292{width:79.848000pt;}
._17_c00292{width:82.154667pt;}
._18_c00292{width:98.701333pt;}
._1d_c00292{width:108.216000pt;}
._21_c00292{width:162.344000pt;}
._15_c00292{width:221.432000pt;}
._2a_c00292{width:289.474667pt;}
._20_c00292{width:308.682667pt;}
._2b_c00292{width:380.224000pt;}
._a_c00292{width:599.045333pt;}
.fs8_c00292{font-size:42.666667pt;}
.fs4_c00292{font-size:53.333333pt;}
.fs3_c00292{font-size:64.000000pt;}
.fs5_c00292{font-size:69.333333pt;}
.fs2_c00292{font-size:72.000000pt;}
.fs6_c00292{font-size:77.333333pt;}
.fs0_c00292{font-size:88.000000pt;}
.fs7_c00292{font-size:96.000000pt;}
.fs1_c00292{font-size:117.333333pt;}
.y0_c00292{bottom:0.000000pt;}
.y26_c00292{bottom:2.760000pt;}
.y25_c00292{bottom:6.425217pt;}
.y23_c00292{bottom:47.440000pt;}
.y22_c00292{bottom:71.306667pt;}
.y21_c00292{bottom:93.040000pt;}
.y20_c00292{bottom:115.173333pt;}
.y1f_c00292{bottom:137.306667pt;}
.y1e_c00292{bottom:161.306667pt;}
.y24_c00292{bottom:174.240000pt;}
.y1d_c00292{bottom:187.840000pt;}
.y1c_c00292{bottom:214.773333pt;}
.y1b_c00292{bottom:248.640000pt;}
.y1a_c00292{bottom:271.440000pt;}
.y19_c00292{bottom:292.506667pt;}
.y18_c00292{bottom:313.706667pt;}
.y17_c00292{bottom:335.040000pt;}
.y16_c00292{bottom:356.373333pt;}
.y15_c00292{bottom:377.973333pt;}
.y14_c00292{bottom:398.373333pt;}
.y13_c00292{bottom:420.240000pt;}
.y12_c00292{bottom:441.573333pt;}
.y11_c00292{bottom:463.440000pt;}
.y10_c00292{bottom:483.040000pt;}
.yf_c00292{bottom:505.840000pt;}
.ye_c00292{bottom:527.040000pt;}
.yd_c00292{bottom:547.840000pt;}
.yc_c00292{bottom:569.306667pt;}
.yb_c00292{bottom:589.840000pt;}
.ya_c00292{bottom:612.240000pt;}
.y9_c00292{bottom:633.840000pt;}
.y8_c00292{bottom:655.706667pt;}
.y7_c00292{bottom:676.106667pt;}
.y6_c00292{bottom:698.373333pt;}
.y5_c00292{bottom:720.240000pt;}
.y4_c00292{bottom:742.240000pt;}
.y3_c00292{bottom:763.706667pt;}
.y2_c00292{bottom:784.773333pt;}
.y1_c00292{bottom:815.040000pt;}
.h9_c00292{height:11.733399pt;}
.ha_c00292{height:38.937500pt;}
.h3_c00292{height:70.664062pt;}
.h7_c00292{height:74.906250pt;}
.h4_c00292{height:81.031250pt;}
.h6_c00292{height:81.045333pt;}
.h5_c00292{height:87.783854pt;}
.h8_c00292{height:96.750000pt;}
.h2_c00292{height:148.557292pt;}
.h0_c00292{height:862.533333pt;}
.h1_c00292{height:862.666667pt;}
.w2_c00292{width:93.222667pt;}
.w1_c00292{width:586.000000pt;}
.w0_c00292{width:586.066667pt;}
.x0_c00292{left:0.000000pt;}
.x3_c00292{left:36.666667pt;}
.x2_c00292{left:37.600000pt;}
.x4_c00292{left:38.800000pt;}
.x5_c00292{left:39.866667pt;}
.x6_c00292{left:42.000000pt;}
.x7_c00292{left:43.200000pt;}
.x8_c00292{left:44.133333pt;}
.x9_c00292{left:45.066667pt;}
.xa_c00292{left:46.000000pt;}
.xb_c00292{left:47.200000pt;}
.xc_c00292{left:73.200000pt;}
.x1_c00292{left:102.133333pt;}
.xd_c00292{left:131.466667pt;}
.x10_c00292{left:135.600000pt;}
.xf_c00292{left:136.533333pt;}
.xe_c00292{left:137.466667pt;}
.x13_c00292{left:250.201538pt;}
.x11_c00292{left:326.800000pt;}
.x12_c00292{left:554.666667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_9524b7113ee92f35db79a1eb.woff2')format("woff");}.ff1_c00293{font-family:ff1_c00293;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00293;src:url('chunks/assets/font_5db1c68d43862198647f79ea.woff2')format("woff");}.ff2_c00293{font-family:ff2_c00293;line-height:1.311035;font-style:normal;font-weight:normal;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_46209937c638e390e641da29.woff2')format("woff");}.ff3_c00293{font-family:ff3_c00293;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00293;src:url('chunks/assets/font_925dc05e9c248eb5f5994857.woff2')format("woff");}.ff4_c00293{font-family:ff4_c00293;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00293;src:url('chunks/assets/font_e452e13b9b33caf05ea55ecf.woff2')format("woff");}.ff5_c00293{font-family:ff5_c00293;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00293;src:url('chunks/assets/font_2eba819ae6797d3847b2f5a0.woff2')format("woff");}.ff6_c00293{font-family:ff6_c00293;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00293;src:url('chunks/assets/font_59ce80a92fcafd4fee24d953.woff2')format("woff");}.ff7_c00293{font-family:ff7_c00293;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00293;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff8_c00293{font-family:ff8_c00293;line-height:1.219238;font-style: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;}
.ls2_c00293{letter-spacing:0.000000px;}
.ls0_c00293{letter-spacing:6.900000px;}
.ls1_c00293{letter-spacing:36.000000px;}
.sc__c00293{text-shadow:none;}
.sc0_c00293{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00293{-webkit-text-stroke:0px transparent;}
.sc0_c00293{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00293{word-spacing:-67.686000px;}
.ws0_c00293{word-spacing:-36.000000px;}
.ws2_c00293{word-spacing:-17.352000px;}
.ws3_c00293{word-spacing:0.000000px;}
._19_c00293{margin-left:-38.718000px;}
._2a_c00293{margin-left:-29.970000px;}
._3_c00293{margin-left:-24.240000px;}
._15_c00293{margin-left:-22.032000px;}
._1_c00293{margin-left:-19.848000px;}
._27_c00293{margin-left:-17.736000px;}
._22_c00293{margin-left:-16.506000px;}
._1b_c00293{margin-left:-15.315000px;}
._0_c00293{margin-left:-13.728000px;}
._8_c00293{margin-left:-11.898000px;}
._1c_c00293{margin-left:-10.449000px;}
._e_c00293{margin-left:-9.315000px;}
._29_c00293{margin-left:-7.887000px;}
._a_c00293{margin-left:-6.537000px;}
._9_c00293{margin-left:-5.280000px;}
._7_c00293{margin-left:-3.663000px;}
._5_c00293{margin-left:-1.863000px;}
._28_c00293{width:1.032000px;}
._4_c00293{width:2.040000px;}
._c_c00293{width:3.354000px;}
._b_c00293{width:4.779000px;}
._d_c00293{width:5.970000px;}
._18_c00293{width:7.161000px;}
._6_c00293{width:8.244000px;}
._11_c00293{width:9.315000px;}
._17_c00293{width:11.307000px;}
._1f_c00293{width:12.771000px;}
._2_c00293{width:13.800000px;}
._10_c00293{width:15.030000px;}
._24_c00293{width:17.079000px;}
._13_c00293{width:18.630000px;}
._12_c00293{width:21.951000px;}
._21_c00293{width:23.136000px;}
._1e_c00293{width:24.885000px;}
._20_c00293{width:28.563000px;}
._14_c00293{width:30.375000px;}
._1a_c00293{width:91.611000px;}
._1d_c00293{width:145.785000px;}
._16_c00293{width:148.311000px;}
._26_c00293{width:168.822000px;}
._23_c00293{width:269.235000px;}
._2b_c00293{width:281.232000px;}
._25_c00293{width:296.523000px;}
._2c_c00293{width:321.732000px;}
._f_c00293{width:380.538000px;}
._2d_c00293{width:887.928000px;}
.fc2_c00293{color:transparent;}
.fc1_c00293{color:rgb(128,128,128);}
.fc0_c00293{color:rgb(0,0,0);}
.fs7_c00293{font-size:48.000000px;}
.fs5_c00293{font-size:72.000000px;}
.fs4_c00293{font-size:81.000000px;}
.fs6_c00293{font-size:87.000000px;}
.fs3_c00293{font-size:99.000000px;}
.fs2_c00293{font-size:102.000000px;}
.fs1_c00293{font-size:120.000000px;}
.fs0_c00293{font-size:132.000000px;}
.y0_c00293{bottom:0.000000px;}
.y26_c00293{bottom:3.105000px;}
.y25_c00293{bottom:7.228369px;}
.y24_c00293{bottom:65.820000px;}
.y23_c00293{bottom:90.420000px;}
.y22_c00293{bottom:116.070000px;}
.y21_c00293{bottom:140.670000px;}
.y20_c00293{bottom:164.670000px;}
.y1f_c00293{bottom:189.570000px;}
.y1e_c00293{bottom:213.570000px;}
.y1d_c00293{bottom:238.620000px;}
.y1c_c00293{bottom:263.520000px;}
.y1b_c00293{bottom:287.820000px;}
.y1a_c00293{bottom:312.420000px;}
.y19_c00293{bottom:336.420000px;}
.y18_c00293{bottom:362.070000px;}
.y17_c00293{bottom:385.470000px;}
.y16_c00293{bottom:411.420000px;}
.y15_c00293{bottom:434.670000px;}
.y14_c00293{bottom:458.220000px;}
.y13_c00293{bottom:482.970000px;}
.y12_c00293{bottom:507.870000px;}
.y11_c00293{bottom:531.270000px;}
.y10_c00293{bottom:555.420000px;}
.yf_c00293{bottom:579.720000px;}
.ye_c00293{bottom:603.720000px;}
.yd_c00293{bottom:628.020000px;}
.yc_c00293{bottom:652.620000px;}
.yb_c00293{bottom:677.070000px;}
.ya_c00293{bottom:700.920000px;}
.y9_c00293{bottom:725.220000px;}
.y8_c00293{bottom:748.620000px;}
.y7_c00293{bottom:772.470000px;}
.y6_c00293{bottom:797.070000px;}
.y5_c00293{bottom:821.520000px;}
.y4_c00293{bottom:846.420000px;}
.y3_c00293{bottom:869.670000px;}
.y2_c00293{bottom:893.670000px;}
.y1_c00293{bottom:928.020000px;}
.h6_c00293{height:13.200073px;}
.h7_c00293{height:43.804688px;}
.h3_c00293{height:79.497070px;}
.h5_c00293{height:84.269531px;}
.h4_c00293{height:91.176000px;}
.h2_c00293{height:167.126953px;}
.h1_c00293{height:986.250000px;}
.h0_c00293{height:986.550000px;}
.w1_c00293{width:104.875500px;}
.w0_c00293{width:661.500000px;}
.x0_c00293{left:0.000000px;}
.x3_c00293{left:20.700000px;}
.xf_c00293{left:26.700000px;}
.xc_c00293{left:28.650000px;}
.x7_c00293{left:30.150000px;}
.x8_c00293{left:31.350000px;}
.x4_c00293{left:81.300000px;}
.x5_c00293{left:93.600000px;}
.xe_c00293{left:101.250000px;}
.x11_c00293{left:115.800000px;}
.x10_c00293{left:117.450000px;}
.xd_c00293{left:119.250000px;}
.x9_c00293{left:121.800000px;}
.xa_c00293{left:122.850000px;}
.x2_c00293{left:123.900000px;}
.x6_c00293{left:125.250000px;}
.xb_c00293{left:160.350000px;}
.x1_c00293{left:241.650000px;}
.x12_c00293{left:282.564240px;}
@media print{
.v0_c00293{vertical-align:0.000000pt;}
.ls2_c00293{letter-spacing:0.000000pt;}
.ls0_c00293{letter-spacing:6.133333pt;}
.ls1_c00293{letter-spacing:32.000000pt;}
.ws1_c00293{word-spacing:-60.165333pt;}
.ws0_c00293{word-spacing:-32.000000pt;}
.ws2_c00293{word-spacing:-15.424000pt;}
.ws3_c00293{word-spacing:0.000000pt;}
._19_c00293{margin-left:-34.416000pt;}
._2a_c00293{margin-left:-26.640000pt;}
._3_c00293{margin-left:-21.546667pt;}
._15_c00293{margin-left:-19.584000pt;}
._1_c00293{margin-left:-17.642667pt;}
._27_c00293{margin-left:-15.765333pt;}
._22_c00293{margin-left:-14.672000pt;}
._1b_c00293{margin-left:-13.613333pt;}
._0_c00293{margin-left:-12.202667pt;}
._8_c00293{margin-left:-10.576000pt;}
._1c_c00293{margin-left:-9.288000pt;}
._e_c00293{margin-left:-8.280000pt;}
._29_c00293{margin-left:-7.010667pt;}
._a_c00293{margin-left:-5.810667pt;}
._9_c00293{margin-left:-4.693333pt;}
._7_c00293{margin-left:-3.256000pt;}
._5_c00293{margin-left:-1.656000pt;}
._28_c00293{width:0.917333pt;}
._4_c00293{width:1.813333pt;}
._c_c00293{width:2.981333pt;}
._b_c00293{width:4.248000pt;}
._d_c00293{width:5.306667pt;}
._18_c00293{width:6.365333pt;}
._6_c00293{width:7.328000pt;}
._11_c00293{width:8.280000pt;}
._17_c00293{width:10.050667pt;}
._1f_c00293{width:11.352000pt;}
._2_c00293{width:12.266667pt;}
._10_c00293{width:13.360000pt;}
._24_c00293{width:15.181333pt;}
._13_c00293{width:16.560000pt;}
._12_c00293{width:19.512000pt;}
._21_c00293{width:20.565333pt;}
._1e_c00293{width:22.120000pt;}
._20_c00293{width:25.389333pt;}
._14_c00293{width:27.000000pt;}
._1a_c00293{width:81.432000pt;}
._1d_c00293{width:129.586667pt;}
._16_c00293{width:131.832000pt;}
._26_c00293{width:150.064000pt;}
._23_c00293{width:239.320000pt;}
._2b_c00293{width:249.984000pt;}
._25_c00293{width:263.576000pt;}
._2c_c00293{width:285.984000pt;}
._f_c00293{width:338.256000pt;}
._2d_c00293{width:789.269333pt;}
.fs7_c00293{font-size:42.666667pt;}
.fs5_c00293{font-size:64.000000pt;}
.fs4_c00293{font-size:72.000000pt;}
.fs6_c00293{font-size:77.333333pt;}
.fs3_c00293{font-size:88.000000pt;}
.fs2_c00293{font-size:90.666667pt;}
.fs1_c00293{font-size:106.666667pt;}
.fs0_c00293{font-size:117.333333pt;}
.y0_c00293{bottom:0.000000pt;}
.y26_c00293{bottom:2.760000pt;}
.y25_c00293{bottom:6.425217pt;}
.y24_c00293{bottom:58.506667pt;}
.y23_c00293{bottom:80.373333pt;}
.y22_c00293{bottom:103.173333pt;}
.y21_c00293{bottom:125.040000pt;}
.y20_c00293{bottom:146.373333pt;}
.y1f_c00293{bottom:168.506667pt;}
.y1e_c00293{bottom:189.840000pt;}
.y1d_c00293{bottom:212.106667pt;}
.y1c_c00293{bottom:234.240000pt;}
.y1b_c00293{bottom:255.840000pt;}
.y1a_c00293{bottom:277.706667pt;}
.y19_c00293{bottom:299.040000pt;}
.y18_c00293{bottom:321.840000pt;}
.y17_c00293{bottom:342.640000pt;}
.y16_c00293{bottom:365.706667pt;}
.y15_c00293{bottom:386.373333pt;}
.y14_c00293{bottom:407.306667pt;}
.y13_c00293{bottom:429.306667pt;}
.y12_c00293{bottom:451.440000pt;}
.y11_c00293{bottom:472.240000pt;}
.y10_c00293{bottom:493.706667pt;}
.yf_c00293{bottom:515.306667pt;}
.ye_c00293{bottom:536.640000pt;}
.yd_c00293{bottom:558.240000pt;}
.yc_c00293{bottom:580.106667pt;}
.yb_c00293{bottom:601.840000pt;}
.ya_c00293{bottom:623.040000pt;}
.y9_c00293{bottom:644.640000pt;}
.y8_c00293{bottom:665.440000pt;}
.y7_c00293{bottom:686.640000pt;}
.y6_c00293{bottom:708.506667pt;}
.y5_c00293{bottom:730.240000pt;}
.y4_c00293{bottom:752.373333pt;}
.y3_c00293{bottom:773.040000pt;}
.y2_c00293{bottom:794.373333pt;}
.y1_c00293{bottom:824.906667pt;}
.h6_c00293{height:11.733399pt;}
.h7_c00293{height:38.937500pt;}
.h3_c00293{height:70.664062pt;}
.h5_c00293{height:74.906250pt;}
.h4_c00293{height:81.045333pt;}
.h2_c00293{height:148.557292pt;}
.h1_c00293{height:876.666667pt;}
.h0_c00293{height:876.933333pt;}
.w1_c00293{width:93.222667pt;}
.w0_c00293{width:588.000000pt;}
.x0_c00293{left:0.000000pt;}
.x3_c00293{left:18.400000pt;}
.xf_c00293{left:23.733333pt;}
.xc_c00293{left:25.466667pt;}
.x7_c00293{left:26.800000pt;}
.x8_c00293{left:27.866667pt;}
.x4_c00293{left:72.266667pt;}
.x5_c00293{left:83.200000pt;}
.xe_c00293{left:90.000000pt;}
.x11_c00293{left:102.933333pt;}
.x10_c00293{left:104.400000pt;}
.xd_c00293{left:106.000000pt;}
.x9_c00293{left:108.266667pt;}
.xa_c00293{left:109.200000pt;}
.x2_c00293{left:110.133333pt;}
.x6_c00293{left:111.333333pt;}
.xb_c00293{left:142.533333pt;}
.x1_c00293{left:214.800000pt;}
.x12_c00293{left:251.168213pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_66b8603218b01cab69817ef2.woff2')format("woff");}.ff1_c00294{font-family:ff1_c00294;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00294;src:url('chunks/assets/font_1f9cc855afd8e3b46c6faf16.woff2')format("woff");}.ff2_c00294{font-family:ff2_c00294;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00294;src:url('chunks/assets/font_c8d1ce813ffacd18d5c23a0f.woff2')format("woff");}.ff3_c00294{font-family:ff3_c00294;line-height:1.311035;font-style:normal;font-weight:normal;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_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff4_c00294{font-family:ff4_c00294;line-height:1.219238;font-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_c00294{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,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;}
.ls0_c00294{letter-spacing:0.000000px;}
.sc__c00294{text-shadow:none;}
.sc0_c00294{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00294{-webkit-text-stroke:0px transparent;}
.sc0_c00294{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00294{word-spacing:0.000000px;}
._23_c00294{margin-left:-26.001000px;}
._12_c00294{margin-left:-20.412000px;}
._11_c00294{margin-left:-15.309000px;}
._f_c00294{margin-left:-11.988000px;}
._1e_c00294{margin-left:-10.896000px;}
._8_c00294{margin-left:-8.748000px;}
._d_c00294{margin-left:-7.695000px;}
._7_c00294{margin-left:-6.561000px;}
._1d_c00294{margin-left:-5.514000px;}
._3_c00294{margin-left:-3.888000px;}
._1c_c00294{margin-left:-2.817000px;}
._6_c00294{margin-left:-1.782000px;}
._0_c00294{width:1.539000px;}
._1_c00294{width:2.754000px;}
._17_c00294{width:3.768000px;}
._2_c00294{width:4.779000px;}
._5_c00294{width:5.994000px;}
._4_c00294{width:7.290000px;}
._c_c00294{width:8.343000px;}
._14_c00294{width:9.435000px;}
._9_c00294{width:10.773000px;}
._1b_c00294{width:11.988000px;}
._b_c00294{width:13.041000px;}
._16_c00294{width:14.661000px;}
._a_c00294{width:16.200000px;}
._1a_c00294{width:17.334000px;}
._e_c00294{width:19.620000px;}
._1f_c00294{width:22.257000px;}
._13_c00294{width:24.189000px;}
._19_c00294{width:25.758000px;}
._10_c00294{width:28.755000px;}
._15_c00294{width:35.478000px;}
._26_c00294{width:38.043000px;}
._22_c00294{width:90.780000px;}
._24_c00294{width:143.856000px;}
._18_c00294{width:158.922000px;}
._20_c00294{width:194.598000px;}
._21_c00294{width:239.148000px;}
._27_c00294{width:403.812000px;}
._25_c00294{width:555.894000px;}
.fc2_c00294{color:transparent;}
.fc1_c00294{color:rgb(128,128,128);}
.fc0_c00294{color:rgb(0,0,0);}
.fs4_c00294{font-size:48.000000px;}
.fs1_c00294{font-size:60.000000px;}
.fs2_c00294{font-size:72.000000px;}
.fs0_c00294{font-size:81.000000px;}
.fs3_c00294{font-size:108.000000px;}
.y0_c00294{bottom:0.000000px;}
.y25_c00294{bottom:3.105000px;}
.y24_c00294{bottom:7.228363px;}
.y23_c00294{bottom:58.350000px;}
.y22_c00294{bottom:84.000000px;}
.y21_c00294{bottom:109.350000px;}
.y20_c00294{bottom:134.100000px;}
.y1f_c00294{bottom:158.400000px;}
.y1e_c00294{bottom:183.000000px;}
.y1d_c00294{bottom:207.300000px;}
.y1c_c00294{bottom:231.600000px;}
.y1b_c00294{bottom:255.600000px;}
.y1a_c00294{bottom:280.200000px;}
.y19_c00294{bottom:304.050000px;}
.y18_c00294{bottom:326.100000px;}
.y17_c00294{bottom:351.750000px;}
.y16_c00294{bottom:376.050000px;}
.y15_c00294{bottom:399.900000px;}
.y14_c00294{bottom:423.600000px;}
.y13_c00294{bottom:446.850000px;}
.y12_c00294{bottom:470.850000px;}
.y11_c00294{bottom:495.450000px;}
.y10_c00294{bottom:519.450000px;}
.yf_c00294{bottom:543.150000px;}
.ye_c00294{bottom:567.300000px;}
.yd_c00294{bottom:591.000000px;}
.yc_c00294{bottom:615.000000px;}
.yb_c00294{bottom:639.300000px;}
.ya_c00294{bottom:663.300000px;}
.y9_c00294{bottom:686.850000px;}
.y8_c00294{bottom:711.750000px;}
.y7_c00294{bottom:735.450000px;}
.y6_c00294{bottom:759.450000px;}
.y5_c00294{bottom:784.050000px;}
.y4_c00294{bottom:808.200000px;}
.y3_c00294{bottom:832.950000px;}
.y2_c00294{bottom:856.800000px;}
.y1_c00294{bottom:880.950000px;}
.h5_c00294{height:13.200074px;}
.h6_c00294{height:43.804688px;}
.h2_c00294{height:79.497070px;}
.h3_c00294{height:84.269531px;}
.h4_c00294{height:108.843750px;}
.h0_c00294{height:980.100000px;}
.h1_c00294{height:980.250000px;}
.w2_c00294{width:104.875500px;}
.w0_c00294{width:665.850000px;}
.w1_c00294{width:666.000000px;}
.x0_c00294{left:0.000000px;}
.x9_c00294{left:43.650000px;}
.x7_c00294{left:46.350000px;}
.x4_c00294{left:50.400000px;}
.x1_c00294{left:51.600000px;}
.xd_c00294{left:53.400000px;}
.xc_c00294{left:54.750000px;}
.xb_c00294{left:55.800000px;}
.x8_c00294{left:57.450000px;}
.x6_c00294{left:59.400000px;}
.x5_c00294{left:61.050000px;}
.x2_c00294{left:62.100000px;}
.x3_c00294{left:63.450000px;}
.xa_c00294{left:82.350000px;}
.xf_c00294{left:284.739258px;}
.xe_c00294{left:356.400000px;}
@media print{
.v0_c00294{vertical-align:0.000000pt;}
.ls0_c00294{letter-spacing:0.000000pt;}
.ws0_c00294{word-spacing:0.000000pt;}
._23_c00294{margin-left:-23.112000pt;}
._12_c00294{margin-left:-18.144000pt;}
._11_c00294{margin-left:-13.608000pt;}
._f_c00294{margin-left:-10.656000pt;}
._1e_c00294{margin-left:-9.685333pt;}
._8_c00294{margin-left:-7.776000pt;}
._d_c00294{margin-left:-6.840000pt;}
._7_c00294{margin-left:-5.832000pt;}
._1d_c00294{margin-left:-4.901333pt;}
._3_c00294{margin-left:-3.456000pt;}
._1c_c00294{margin-left:-2.504000pt;}
._6_c00294{margin-left:-1.584000pt;}
._0_c00294{width:1.368000pt;}
._1_c00294{width:2.448000pt;}
._17_c00294{width:3.349333pt;}
._2_c00294{width:4.248000pt;}
._5_c00294{width:5.328000pt;}
._4_c00294{width:6.480000pt;}
._c_c00294{width:7.416000pt;}
._14_c00294{width:8.386667pt;}
._9_c00294{width:9.576000pt;}
._1b_c00294{width:10.656000pt;}
._b_c00294{width:11.592000pt;}
._16_c00294{width:13.032000pt;}
._a_c00294{width:14.400000pt;}
._1a_c00294{width:15.408000pt;}
._e_c00294{width:17.440000pt;}
._1f_c00294{width:19.784000pt;}
._13_c00294{width:21.501333pt;}
._19_c00294{width:22.896000pt;}
._10_c00294{width:25.560000pt;}
._15_c00294{width:31.536000pt;}
._26_c00294{width:33.816000pt;}
._22_c00294{width:80.693333pt;}
._24_c00294{width:127.872000pt;}
._18_c00294{width:141.264000pt;}
._20_c00294{width:172.976000pt;}
._21_c00294{width:212.576000pt;}
._27_c00294{width:358.944000pt;}
._25_c00294{width:494.128000pt;}
.fs4_c00294{font-size:42.666667pt;}
.fs1_c00294{font-size:53.333333pt;}
.fs2_c00294{font-size:64.000000pt;}
.fs0_c00294{font-size:72.000000pt;}
.fs3_c00294{font-size:96.000000pt;}
.y0_c00294{bottom:0.000000pt;}
.y25_c00294{bottom:2.760000pt;}
.y24_c00294{bottom:6.425212pt;}
.y23_c00294{bottom:51.866667pt;}
.y22_c00294{bottom:74.666667pt;}
.y21_c00294{bottom:97.200000pt;}
.y20_c00294{bottom:119.200000pt;}
.y1f_c00294{bottom:140.800000pt;}
.y1e_c00294{bottom:162.666667pt;}
.y1d_c00294{bottom:184.266667pt;}
.y1c_c00294{bottom:205.866667pt;}
.y1b_c00294{bottom:227.200000pt;}
.y1a_c00294{bottom:249.066667pt;}
.y19_c00294{bottom:270.266667pt;}
.y18_c00294{bottom:289.866667pt;}
.y17_c00294{bottom:312.666667pt;}
.y16_c00294{bottom:334.266667pt;}
.y15_c00294{bottom:355.466667pt;}
.y14_c00294{bottom:376.533333pt;}
.y13_c00294{bottom:397.200000pt;}
.y12_c00294{bottom:418.533333pt;}
.y11_c00294{bottom:440.400000pt;}
.y10_c00294{bottom:461.733333pt;}
.yf_c00294{bottom:482.800000pt;}
.ye_c00294{bottom:504.266667pt;}
.yd_c00294{bottom:525.333333pt;}
.yc_c00294{bottom:546.666667pt;}
.yb_c00294{bottom:568.266667pt;}
.ya_c00294{bottom:589.600000pt;}
.y9_c00294{bottom:610.533333pt;}
.y8_c00294{bottom:632.666667pt;}
.y7_c00294{bottom:653.733333pt;}
.y6_c00294{bottom:675.066667pt;}
.y5_c00294{bottom:696.933333pt;}
.y4_c00294{bottom:718.400000pt;}
.y3_c00294{bottom:740.400000pt;}
.y2_c00294{bottom:761.600000pt;}
.y1_c00294{bottom:783.066667pt;}
.h5_c00294{height:11.733399pt;}
.h6_c00294{height:38.937500pt;}
.h2_c00294{height:70.664062pt;}
.h3_c00294{height:74.906250pt;}
.h4_c00294{height:96.750000pt;}
.h0_c00294{height:871.200000pt;}
.h1_c00294{height:871.333333pt;}
.w2_c00294{width:93.222667pt;}
.w0_c00294{width:591.866667pt;}
.w1_c00294{width:592.000000pt;}
.x0_c00294{left:0.000000pt;}
.x9_c00294{left:38.800000pt;}
.x7_c00294{left:41.200000pt;}
.x4_c00294{left:44.800000pt;}
.x1_c00294{left:45.866667pt;}
.xd_c00294{left:47.466667pt;}
.xc_c00294{left:48.666667pt;}
.xb_c00294{left:49.600000pt;}
.x8_c00294{left:51.066667pt;}
.x6_c00294{left:52.800000pt;}
.x5_c00294{left:54.266667pt;}
.x2_c00294{left:55.200000pt;}
.x3_c00294{left:56.400000pt;}
.xa_c00294{left:73.200000pt;}
.xf_c00294{left:253.101563pt;}
.xe_c00294{left:316.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a928518b47d89e269a7cf871.woff2')format("woff");}.ff1_c00295{font-family:ff1_c00295;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00295;src:url('chunks/assets/font_76c1447fddb8e606a7fd8d7a.woff2')format("woff");}.ff2_c00295{font-family:ff2_c00295;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00295;src:url('chunks/assets/font_631f833a91615fe2f40c0feb.woff2')format("woff");}.ff3_c00295{font-family:ff3_c00295;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00295;src:url('chunks/assets/font_425ad0b0cf91887abcb8f71d.woff2')format("woff");}.ff4_c00295{font-family:ff4_c00295;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00295;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c00295{font-family:ff5_c00295;line-height:1.219238;font-style: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;}
.ls0_c00295{letter-spacing:0.000000px;}
.ls1_c00295{letter-spacing:186.000000px;}
.sc__c00295{text-shadow:none;}
.sc0_c00295{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00295{-webkit-text-stroke:0px transparent;}
.sc0_c00295{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00295{word-spacing:-20.250000px;}
.ws0_c00295{word-spacing:-17.352000px;}
.ws2_c00295{word-spacing:-15.906000px;}
.ws4_c00295{word-spacing:0.000000px;}
.ws1_c00295{word-spacing:1080.768000px;}
._20_c00295{margin-left:-199.800000px;}
._21_c00295{margin-left:-195.336000px;}
._22_c00295{margin-left:-188.928000px;}
._24_c00295{margin-left:-186.960000px;}
._23_c00295{margin-left:-178.848000px;}
._29_c00295{margin-left:-29.727000px;}
._2d_c00295{margin-left:-23.004000px;}
._28_c00295{margin-left:-21.579000px;}
._1b_c00295{margin-left:-19.440000px;}
._b_c00295{margin-left:-15.294000px;}
._2c_c00295{margin-left:-13.254000px;}
._11_c00295{margin-left:-11.664000px;}
._10_c00295{margin-left:-10.494000px;}
._d_c00295{margin-left:-8.667000px;}
._f_c00295{margin-left:-7.278000px;}
._4_c00295{margin-left:-6.156000px;}
._13_c00295{margin-left:-5.139000px;}
._8_c00295{margin-left:-4.068000px;}
._9_c00295{margin-left:-2.628000px;}
._3_c00295{margin-left:-1.620000px;}
._14_c00295{width:1.098000px;}
._5_c00295{width:2.106000px;}
._7_c00295{width:3.483000px;}
._2_c00295{width:4.536000px;}
._1_c00295{width:5.994000px;}
._0_c00295{width:7.533000px;}
._6_c00295{width:8.667000px;}
._1d_c00295{width:9.786000px;}
._c_c00295{width:10.806000px;}
._16_c00295{width:12.240000px;}
._12_c00295{width:14.466000px;}
._15_c00295{width:25.791000px;}
._17_c00295{width:29.529000px;}
._2b_c00295{width:33.885000px;}
._1e_c00295{width:35.559000px;}
._19_c00295{width:36.861000px;}
._1a_c00295{width:40.905000px;}
._26_c00295{width:53.955000px;}
._1c_c00295{width:176.766000px;}
._25_c00295{width:182.046000px;}
._1f_c00295{width:221.421000px;}
._18_c00295{width:230.580000px;}
._a_c00295{width:243.630000px;}
._e_c00295{width:246.069000px;}
._27_c00295{width:261.003000px;}
._2a_c00295{width:412.977000px;}
.fc2_c00295{color:transparent;}
.fc1_c00295{color:rgb(128,128,128);}
.fc0_c00295{color:rgb(0,0,0);}
.fs4_c00295{font-size:48.000000px;}
.fs2_c00295{font-size:66.000000px;}
.fs3_c00295{font-size:69.000000px;}
.fs1_c00295{font-size:72.000000px;}
.fs0_c00295{font-size:81.000000px;}
.y0_c00295{bottom:0.000000px;}
.y23_c00295{bottom:3.105000px;}
.y22_c00295{bottom:7.228371px;}
.y21_c00295{bottom:55.815000px;}
.y20_c00295{bottom:81.315000px;}
.y1f_c00295{bottom:106.065000px;}
.y1e_c00295{bottom:155.265000px;}
.y1d_c00295{bottom:203.865000px;}
.y1c_c00295{bottom:228.165000px;}
.y1b_c00295{bottom:252.765000px;}
.y1a_c00295{bottom:277.065000px;}
.y19_c00295{bottom:301.515000px;}
.y18_c00295{bottom:325.665000px;}
.y17_c00295{bottom:349.965000px;}
.y16_c00295{bottom:373.365000px;}
.y15_c00295{bottom:397.365000px;}
.y14_c00295{bottom:422.865000px;}
.y13_c00295{bottom:448.665000px;}
.y12_c00295{bottom:471.465000px;}
.y11_c00295{bottom:495.765000px;}
.y10_c00295{bottom:519.465000px;}
.yf_c00295{bottom:544.065000px;}
.ye_c00295{bottom:567.465000px;}
.yd_c00295{bottom:592.065000px;}
.yc_c00295{bottom:615.315000px;}
.yb_c00295{bottom:638.265000px;}
.ya_c00295{bottom:666.315000px;}
.y9_c00295{bottom:689.865000px;}
.y8_c00295{bottom:713.565000px;}
.y7_c00295{bottom:737.415000px;}
.y6_c00295{bottom:762.165000px;}
.y5_c00295{bottom:786.765000px;}
.y4_c00295{bottom:810.015000px;}
.y3_c00295{bottom:834.015000px;}
.y2_c00295{bottom:857.715000px;}
.y1_c00295{bottom:881.565000px;}
.h6_c00295{height:13.200074px;}
.h7_c00295{height:43.804688px;}
.h2_c00295{height:79.497070px;}
.h5_c00295{height:83.563477px;}
.h3_c00295{height:84.269531px;}
.h4_c00295{height:91.160156px;}
.h1_c00295{height:971.250000px;}
.h0_c00295{height:971.475000px;}
.w2_c00295{width:104.875500px;}
.w1_c00295{width:651.000000px;}
.w0_c00295{width:651.225000px;}
.x0_c00295{left:0.000000px;}
.x2_c00295{left:24.000000px;}
.x3_c00295{left:25.650000px;}
.x6_c00295{left:29.700000px;}
.x7_c00295{left:31.050000px;}
.x8_c00295{left:33.300000px;}
.xc_c00295{left:35.700000px;}
.xd_c00295{left:37.050000px;}
.xe_c00295{left:38.700000px;}
.x1_c00295{left:116.850000px;}
.x9_c00295{left:118.500000px;}
.x4_c00295{left:121.200000px;}
.x5_c00295{left:122.550000px;}
.xa_c00295{left:129.300000px;}
.xb_c00295{left:130.500000px;}
.xf_c00295{left:131.550000px;}
.x10_c00295{left:132.600000px;}
.x12_c00295{left:176.100000px;}
.x11_c00295{left:184.200000px;}
.x14_c00295{left:277.426758px;}
.x13_c00295{left:603.000000px;}
@media print{
.v0_c00295{vertical-align:0.000000pt;}
.ls0_c00295{letter-spacing:0.000000pt;}
.ls1_c00295{letter-spacing:165.333333pt;}
.ws3_c00295{word-spacing:-18.000000pt;}
.ws0_c00295{word-spacing:-15.424000pt;}
.ws2_c00295{word-spacing:-14.138667pt;}
.ws4_c00295{word-spacing:0.000000pt;}
.ws1_c00295{word-spacing:960.682667pt;}
._20_c00295{margin-left:-177.600000pt;}
._21_c00295{margin-left:-173.632000pt;}
._22_c00295{margin-left:-167.936000pt;}
._24_c00295{margin-left:-166.186667pt;}
._23_c00295{margin-left:-158.976000pt;}
._29_c00295{margin-left:-26.424000pt;}
._2d_c00295{margin-left:-20.448000pt;}
._28_c00295{margin-left:-19.181333pt;}
._1b_c00295{margin-left:-17.280000pt;}
._b_c00295{margin-left:-13.594667pt;}
._2c_c00295{margin-left:-11.781333pt;}
._11_c00295{margin-left:-10.368000pt;}
._10_c00295{margin-left:-9.328000pt;}
._d_c00295{margin-left:-7.704000pt;}
._f_c00295{margin-left:-6.469333pt;}
._4_c00295{margin-left:-5.472000pt;}
._13_c00295{margin-left:-4.568000pt;}
._8_c00295{margin-left:-3.616000pt;}
._9_c00295{margin-left:-2.336000pt;}
._3_c00295{margin-left:-1.440000pt;}
._14_c00295{width:0.976000pt;}
._5_c00295{width:1.872000pt;}
._7_c00295{width:3.096000pt;}
._2_c00295{width:4.032000pt;}
._1_c00295{width:5.328000pt;}
._0_c00295{width:6.696000pt;}
._6_c00295{width:7.704000pt;}
._1d_c00295{width:8.698667pt;}
._c_c00295{width:9.605333pt;}
._16_c00295{width:10.880000pt;}
._12_c00295{width:12.858667pt;}
._15_c00295{width:22.925333pt;}
._17_c00295{width:26.248000pt;}
._2b_c00295{width:30.120000pt;}
._1e_c00295{width:31.608000pt;}
._19_c00295{width:32.765333pt;}
._1a_c00295{width:36.360000pt;}
._26_c00295{width:47.960000pt;}
._1c_c00295{width:157.125333pt;}
._25_c00295{width:161.818667pt;}
._1f_c00295{width:196.818667pt;}
._18_c00295{width:204.960000pt;}
._a_c00295{width:216.560000pt;}
._e_c00295{width:218.728000pt;}
._27_c00295{width:232.002667pt;}
._2a_c00295{width:367.090667pt;}
.fs4_c00295{font-size:42.666667pt;}
.fs2_c00295{font-size:58.666667pt;}
.fs3_c00295{font-size:61.333333pt;}
.fs1_c00295{font-size:64.000000pt;}
.fs0_c00295{font-size:72.000000pt;}
.y0_c00295{bottom:0.000000pt;}
.y23_c00295{bottom:2.760000pt;}
.y22_c00295{bottom:6.425219pt;}
.y21_c00295{bottom:49.613333pt;}
.y20_c00295{bottom:72.280000pt;}
.y1f_c00295{bottom:94.280000pt;}
.y1e_c00295{bottom:138.013333pt;}
.y1d_c00295{bottom:181.213333pt;}
.y1c_c00295{bottom:202.813333pt;}
.y1b_c00295{bottom:224.680000pt;}
.y1a_c00295{bottom:246.280000pt;}
.y19_c00295{bottom:268.013333pt;}
.y18_c00295{bottom:289.480000pt;}
.y17_c00295{bottom:311.080000pt;}
.y16_c00295{bottom:331.880000pt;}
.y15_c00295{bottom:353.213333pt;}
.y14_c00295{bottom:375.880000pt;}
.y13_c00295{bottom:398.813333pt;}
.y12_c00295{bottom:419.080000pt;}
.y11_c00295{bottom:440.680000pt;}
.y10_c00295{bottom:461.746667pt;}
.yf_c00295{bottom:483.613333pt;}
.ye_c00295{bottom:504.413333pt;}
.yd_c00295{bottom:526.280000pt;}
.yc_c00295{bottom:546.946667pt;}
.yb_c00295{bottom:567.346667pt;}
.ya_c00295{bottom:592.280000pt;}
.y9_c00295{bottom:613.213333pt;}
.y8_c00295{bottom:634.280000pt;}
.y7_c00295{bottom:655.480000pt;}
.y6_c00295{bottom:677.480000pt;}
.y5_c00295{bottom:699.346667pt;}
.y4_c00295{bottom:720.013333pt;}
.y3_c00295{bottom:741.346667pt;}
.y2_c00295{bottom:762.413333pt;}
.y1_c00295{bottom:783.613333pt;}
.h6_c00295{height:11.733399pt;}
.h7_c00295{height:38.937500pt;}
.h2_c00295{height:70.664062pt;}
.h5_c00295{height:74.278646pt;}
.h3_c00295{height:74.906250pt;}
.h4_c00295{height:81.031250pt;}
.h1_c00295{height:863.333333pt;}
.h0_c00295{height:863.533333pt;}
.w2_c00295{width:93.222667pt;}
.w1_c00295{width:578.666667pt;}
.w0_c00295{width:578.866667pt;}
.x0_c00295{left:0.000000pt;}
.x2_c00295{left:21.333333pt;}
.x3_c00295{left:22.800000pt;}
.x6_c00295{left:26.400000pt;}
.x7_c00295{left:27.600000pt;}
.x8_c00295{left:29.600000pt;}
.xc_c00295{left:31.733333pt;}
.xd_c00295{left:32.933333pt;}
.xe_c00295{left:34.400000pt;}
.x1_c00295{left:103.866667pt;}
.x9_c00295{left:105.333333pt;}
.x4_c00295{left:107.733333pt;}
.x5_c00295{left:108.933333pt;}
.xa_c00295{left:114.933333pt;}
.xb_c00295{left:116.000000pt;}
.xf_c00295{left:116.933333pt;}
.x10_c00295{left:117.866667pt;}
.x12_c00295{left:156.533333pt;}
.x11_c00295{left:163.733333pt;}
.x14_c00295{left:246.601563pt;}
.x13_c00295{left:536.000000pt;}
}





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

.ir_c00296:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00296{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00296;src:url('chunks/assets/font_f3d3e8c2bfde9ee5f37af079.woff2')format("woff");}.ff1_c00296{font-family:ff1_c00296;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00296;src:url('chunks/assets/font_1fc4daf11b18e45ec004354a.woff2')format("woff");}.ff2_c00296{font-family:ff2_c00296;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00296;src:url('chunks/assets/font_bb5b2c2e836a6e01eb655538.woff2')format("woff");}.ff3_c00296{font-family:ff3_c00296;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00296;src:url('chunks/assets/font_691dbc7f6e01930c84b64324.woff2')format("woff");}.ff4_c00296{font-family:ff4_c00296;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00296;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff5_c00296{font-family:ff5_c00296;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00296;src:url('chunks/assets/font_b9c02e7bfc41c70a5b4593f9.woff2')format("woff");}.ff6_c00296{font-family:ff6_c00296;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00296;src:url('chunks/assets/font_0842a159976898b41ea684f7.woff2')format("woff");}.ff7_c00296{font-family:ff7_c00296;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00296;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff8_c00296{font-family:ff8_c00296;line-height:1.219238;font-style: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;}
.ls3_c00296{letter-spacing:-6.000000px;}
.ls4_c00296{letter-spacing:0.000000px;}
.ls2_c00296{letter-spacing:0.900000px;}
.ls1_c00296{letter-spacing:9.300000px;}
.ls0_c00296{letter-spacing:23.400000px;}
.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;}
}
.ws2_c00296{word-spacing:-17.352000px;}
.ws3_c00296{word-spacing:0.000000px;}
.ws0_c00296{word-spacing:7.152000px;}
.ws1_c00296{word-spacing:20.040000px;}
._2a_c00296{margin-left:-25.191000px;}
._1e_c00296{margin-left:-22.881000px;}
._22_c00296{margin-left:-20.574000px;}
._2b_c00296{margin-left:-19.470000px;}
._26_c00296{margin-left:-17.982000px;}
._21_c00296{margin-left:-16.767000px;}
._1b_c00296{margin-left:-13.761000px;}
._27_c00296{margin-left:-11.988000px;}
._24_c00296{margin-left:-10.956000px;}
._12_c00296{margin-left:-9.456000px;}
._1c_c00296{margin-left:-8.208000px;}
._f_c00296{margin-left:-6.906000px;}
._e_c00296{margin-left:-5.265000px;}
._10_c00296{margin-left:-3.786000px;}
._d_c00296{margin-left:-2.673000px;}
._a_c00296{margin-left:-1.134000px;}
._8_c00296{width:1.056000px;}
._7_c00296{width:2.772000px;}
._18_c00296{width:3.792000px;}
._11_c00296{width:4.818000px;}
._14_c00296{width:6.312000px;}
._16_c00296{width:8.010000px;}
._2_c00296{width:9.936000px;}
._c_c00296{width:11.196000px;}
._5_c00296{width:12.888000px;}
._1_c00296{width:14.760000px;}
._1a_c00296{width:15.963000px;}
._19_c00296{width:17.874000px;}
._0_c00296{width:19.656000px;}
._4_c00296{width:23.400000px;}
._2d_c00296{width:24.828000px;}
._25_c00296{width:26.097000px;}
._6_c00296{width:27.408000px;}
._1d_c00296{width:29.214000px;}
._1f_c00296{width:30.417000px;}
._32_c00296{width:33.006000px;}
._15_c00296{width:34.809000px;}
._3_c00296{width:44.568000px;}
._30_c00296{width:46.455000px;}
._29_c00296{width:53.814000px;}
._28_c00296{width:70.764000px;}
._17_c00296{width:90.363000px;}
._2f_c00296{width:167.601000px;}
._34_c00296{width:186.216000px;}
._20_c00296{width:201.999000px;}
._2e_c00296{width:218.136000px;}
._33_c00296{width:227.367000px;}
._23_c00296{width:271.680000px;}
._2c_c00296{width:275.016000px;}
._31_c00296{width:325.131000px;}
._b_c00296{width:346.356000px;}
._9_c00296{width:448.638000px;}
._13_c00296{width:669.279000px;}
.fc2_c00296{color:transparent;}
.fc1_c00296{color:rgb(128,128,128);}
.fc0_c00296{color:rgb(0,0,0);}
.fs5_c00296{font-size:48.000000px;}
.fs4_c00296{font-size:64.800000px;}
.fs1_c00296{font-size:66.000000px;}
.fs0_c00296{font-size:72.000000px;}
.fs2_c00296{font-size:81.000000px;}
.fs3_c00296{font-size:87.000000px;}
.y0_c00296{bottom:0.000000px;}
.y26_c00296{bottom:3.105000px;}
.y25_c00296{bottom:7.228363px;}
.y24_c00296{bottom:60.450000px;}
.y23_c00296{bottom:84.750000px;}
.y22_c00296{bottom:110.700000px;}
.y21_c00296{bottom:134.700000px;}
.y20_c00296{bottom:159.600000px;}
.y1f_c00296{bottom:183.300000px;}
.y1e_c00296{bottom:208.950000px;}
.y1d_c00296{bottom:233.550000px;}
.y1c_c00296{bottom:257.550000px;}
.y1b_c00296{bottom:282.150000px;}
.y1a_c00296{bottom:305.550000px;}
.y19_c00296{bottom:330.150000px;}
.y18_c00296{bottom:354.000000px;}
.y17_c00296{bottom:378.000000px;}
.y16_c00296{bottom:402.000000px;}
.y15_c00296{bottom:425.550000px;}
.y14_c00296{bottom:450.000000px;}
.y13_c00296{bottom:474.600000px;}
.y12_c00296{bottom:499.050000px;}
.y11_c00296{bottom:523.050000px;}
.y10_c00296{bottom:546.750000px;}
.yf_c00296{bottom:572.100000px;}
.ye_c00296{bottom:595.650000px;}
.yd_c00296{bottom:619.950000px;}
.yc_c00296{bottom:643.950000px;}
.yb_c00296{bottom:668.700000px;}
.ya_c00296{bottom:692.550000px;}
.y9_c00296{bottom:717.150000px;}
.y8_c00296{bottom:741.150000px;}
.y7_c00296{bottom:765.900000px;}
.y6_c00296{bottom:789.750000px;}
.y5_c00296{bottom:814.050000px;}
.y4_c00296{bottom:837.750000px;}
.y3_c00296{bottom:862.050000px;}
.y2_c00296{bottom:887.550000px;}
.y1_c00296{bottom:918.450000px;}
.h6_c00296{height:13.200074px;}
.h7_c00296{height:43.804688px;}
.h3_c00296{height:79.497070px;}
.h2_c00296{height:84.269531px;}
.h4_c00296{height:91.160156px;}
.h5_c00296{height:91.176000px;}
.h1_c00296{height:982.500000px;}
.h0_c00296{height:982.800000px;}
.w2_c00296{width:104.875500px;}
.w0_c00296{width:667.425000px;}
.w1_c00296{width:667.500000px;}
.x0_c00296{left:0.000000px;}
.x7_c00296{left:36.150000px;}
.xa_c00296{left:37.350000px;}
.x2_c00296{left:39.150000px;}
.x8_c00296{left:44.550000px;}
.xc_c00296{left:49.200000px;}
.x4_c00296{left:50.250000px;}
.x5_c00296{left:52.650000px;}
.x6_c00296{left:54.600000px;}
.x9_c00296{left:56.400000px;}
.xb_c00296{left:58.650000px;}
.x3_c00296{left:92.100000px;}
.x1_c00296{left:139.050000px;}
.xe_c00296{left:285.526749px;}
.xd_c00296{left:376.200000px;}
@media print{
.v0_c00296{vertical-align:0.000000pt;}
.ls3_c00296{letter-spacing:-5.333333pt;}
.ls4_c00296{letter-spacing:0.000000pt;}
.ls2_c00296{letter-spacing:0.800000pt;}
.ls1_c00296{letter-spacing:8.266667pt;}
.ls0_c00296{letter-spacing:20.800000pt;}
.ws2_c00296{word-spacing:-15.424000pt;}
.ws3_c00296{word-spacing:0.000000pt;}
.ws0_c00296{word-spacing:6.357333pt;}
.ws1_c00296{word-spacing:17.813333pt;}
._2a_c00296{margin-left:-22.392000pt;}
._1e_c00296{margin-left:-20.338667pt;}
._22_c00296{margin-left:-18.288000pt;}
._2b_c00296{margin-left:-17.306667pt;}
._26_c00296{margin-left:-15.984000pt;}
._21_c00296{margin-left:-14.904000pt;}
._1b_c00296{margin-left:-12.232000pt;}
._27_c00296{margin-left:-10.656000pt;}
._24_c00296{margin-left:-9.738667pt;}
._12_c00296{margin-left:-8.405333pt;}
._1c_c00296{margin-left:-7.296000pt;}
._f_c00296{margin-left:-6.138667pt;}
._e_c00296{margin-left:-4.680000pt;}
._10_c00296{margin-left:-3.365333pt;}
._d_c00296{margin-left:-2.376000pt;}
._a_c00296{margin-left:-1.008000pt;}
._8_c00296{width:0.938667pt;}
._7_c00296{width:2.464000pt;}
._18_c00296{width:3.370667pt;}
._11_c00296{width:4.282667pt;}
._14_c00296{width:5.610667pt;}
._16_c00296{width:7.120000pt;}
._2_c00296{width:8.832000pt;}
._c_c00296{width:9.952000pt;}
._5_c00296{width:11.456000pt;}
._1_c00296{width:13.120000pt;}
._1a_c00296{width:14.189333pt;}
._19_c00296{width:15.888000pt;}
._0_c00296{width:17.472000pt;}
._4_c00296{width:20.800000pt;}
._2d_c00296{width:22.069333pt;}
._25_c00296{width:23.197333pt;}
._6_c00296{width:24.362667pt;}
._1d_c00296{width:25.968000pt;}
._1f_c00296{width:27.037333pt;}
._32_c00296{width:29.338667pt;}
._15_c00296{width:30.941333pt;}
._3_c00296{width:39.616000pt;}
._30_c00296{width:41.293333pt;}
._29_c00296{width:47.834667pt;}
._28_c00296{width:62.901333pt;}
._17_c00296{width:80.322667pt;}
._2f_c00296{width:148.978667pt;}
._34_c00296{width:165.525333pt;}
._20_c00296{width:179.554667pt;}
._2e_c00296{width:193.898667pt;}
._33_c00296{width:202.104000pt;}
._23_c00296{width:241.493333pt;}
._2c_c00296{width:244.458667pt;}
._31_c00296{width:289.005333pt;}
._b_c00296{width:307.872000pt;}
._9_c00296{width:398.789333pt;}
._13_c00296{width:594.914667pt;}
.fs5_c00296{font-size:42.666667pt;}
.fs4_c00296{font-size:57.600000pt;}
.fs1_c00296{font-size:58.666667pt;}
.fs0_c00296{font-size:64.000000pt;}
.fs2_c00296{font-size:72.000000pt;}
.fs3_c00296{font-size:77.333333pt;}
.y0_c00296{bottom:0.000000pt;}
.y26_c00296{bottom:2.760000pt;}
.y25_c00296{bottom:6.425212pt;}
.y24_c00296{bottom:53.733333pt;}
.y23_c00296{bottom:75.333333pt;}
.y22_c00296{bottom:98.400000pt;}
.y21_c00296{bottom:119.733333pt;}
.y20_c00296{bottom:141.866667pt;}
.y1f_c00296{bottom:162.933333pt;}
.y1e_c00296{bottom:185.733333pt;}
.y1d_c00296{bottom:207.600000pt;}
.y1c_c00296{bottom:228.933333pt;}
.y1b_c00296{bottom:250.800000pt;}
.y1a_c00296{bottom:271.600000pt;}
.y19_c00296{bottom:293.466667pt;}
.y18_c00296{bottom:314.666667pt;}
.y17_c00296{bottom:336.000000pt;}
.y16_c00296{bottom:357.333333pt;}
.y15_c00296{bottom:378.266667pt;}
.y14_c00296{bottom:400.000000pt;}
.y13_c00296{bottom:421.866667pt;}
.y12_c00296{bottom:443.600000pt;}
.y11_c00296{bottom:464.933333pt;}
.y10_c00296{bottom:486.000000pt;}
.yf_c00296{bottom:508.533333pt;}
.ye_c00296{bottom:529.466667pt;}
.yd_c00296{bottom:551.066667pt;}
.yc_c00296{bottom:572.400000pt;}
.yb_c00296{bottom:594.400000pt;}
.ya_c00296{bottom:615.600000pt;}
.y9_c00296{bottom:637.466667pt;}
.y8_c00296{bottom:658.800000pt;}
.y7_c00296{bottom:680.800000pt;}
.y6_c00296{bottom:702.000000pt;}
.y5_c00296{bottom:723.600000pt;}
.y4_c00296{bottom:744.666667pt;}
.y3_c00296{bottom:766.266667pt;}
.y2_c00296{bottom:788.933333pt;}
.y1_c00296{bottom:816.400000pt;}
.h6_c00296{height:11.733399pt;}
.h7_c00296{height:38.937500pt;}
.h3_c00296{height:70.664062pt;}
.h2_c00296{height:74.906250pt;}
.h4_c00296{height:81.031250pt;}
.h5_c00296{height:81.045333pt;}
.h1_c00296{height:873.333333pt;}
.h0_c00296{height:873.600000pt;}
.w2_c00296{width:93.222667pt;}
.w0_c00296{width:593.266667pt;}
.w1_c00296{width:593.333333pt;}
.x0_c00296{left:0.000000pt;}
.x7_c00296{left:32.133333pt;}
.xa_c00296{left:33.200000pt;}
.x2_c00296{left:34.800000pt;}
.x8_c00296{left:39.600000pt;}
.xc_c00296{left:43.733333pt;}
.x4_c00296{left:44.666667pt;}
.x5_c00296{left:46.800000pt;}
.x6_c00296{left:48.533333pt;}
.x9_c00296{left:50.133333pt;}
.xb_c00296{left:52.133333pt;}
.x3_c00296{left:81.866667pt;}
.x1_c00296{left:123.600000pt;}
.xe_c00296{left:253.801554pt;}
.xd_c00296{left:334.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_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_41308f212e482eda4db386e6.woff2')format("woff");}.ff1_c00297{font-family:ff1_c00297;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00297;src:url('chunks/assets/font_750887790d539a82428495e1.woff2')format("woff");}.ff2_c00297{font-family:ff2_c00297;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00297;src:url('chunks/assets/font_463645629150a1d8d74f505a.woff2')format("woff");}.ff3_c00297{font-family:ff3_c00297;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00297;src:url('chunks/assets/font_ad045ab31a21421415a89ade.woff2')format("woff");}.ff4_c00297{font-family:ff4_c00297;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00297;src:url('chunks/assets/font_c507b54328890978adcfbe94.woff2')format("woff");}.ff5_c00297{font-family:ff5_c00297;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00297;src:url('chunks/assets/font_85b86d0b69dc6d364e8d09cd.woff2')format("woff");}.ff6_c00297{font-family:ff6_c00297;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00297;src:url('chunks/assets/font_1608b80e13bf8c1f079fe4da.woff2')format("woff");}.ff7_c00297{font-family:ff7_c00297;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00297;src:url('chunks/assets/font_8195556060b7efb863c83118.woff2')format("woff");}.ff8_c00297{font-family:ff8_c00297;line-height:1.437000;font-style:normal;font-weight: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_c00297;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff9_c00297{font-family:ff9_c00297;line-height:1.219238;font-style: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;}
.ls3_c00297{letter-spacing:-6.000000px;}
.ls2_c00297{letter-spacing:-3.000000px;}
.ls1_c00297{letter-spacing:0.000000px;}
.ls0_c00297{letter-spacing:13.800000px;}
.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:-67.686000px;}
.ws4_c00297{word-spacing:-36.000000px;}
.ws3_c00297{word-spacing:-20.250000px;}
.ws2_c00297{word-spacing:-17.352000px;}
.ws1_c00297{word-spacing:-14.250000px;}
.ws5_c00297{word-spacing:-8.250000px;}
.ws6_c00297{word-spacing:-0.057000px;}
.ws7_c00297{word-spacing:-0.045600px;}
.ws9_c00297{word-spacing:0.000000px;}
.ws8_c00297{word-spacing:3.021000px;}
._24_c00297{margin-left:-32.400000px;}
._c_c00297{margin-left:-21.951000px;}
._1a_c00297{margin-left:-19.860000px;}
._21_c00297{margin-left:-18.549000px;}
._25_c00297{margin-left:-15.753000px;}
._e_c00297{margin-left:-13.203000px;}
._9_c00297{margin-left:-11.421000px;}
._1f_c00297{margin-left:-10.206000px;}
._10_c00297{margin-left:-8.829000px;}
._1b_c00297{margin-left:-7.776000px;}
._7_c00297{margin-left:-6.075000px;}
._2e_c00297{margin-left:-4.941000px;}
._16_c00297{margin-left:-3.807000px;}
._b_c00297{margin-left:-2.187000px;}
._1e_c00297{margin-left:-1.134000px;}
._0_c00297{width:1.053000px;}
._1_c00297{width:2.754000px;}
._8_c00297{width:4.131000px;}
._a_c00297{width:5.427000px;}
._11_c00297{width:6.966000px;}
._13_c00297{width:8.019000px;}
._12_c00297{width:9.882000px;}
._14_c00297{width:11.907000px;}
._15_c00297{width:13.932000px;}
._2_c00297{width:14.985000px;}
._17_c00297{width:16.038000px;}
._3_c00297{width:17.415000px;}
._22_c00297{width:18.909000px;}
._2d_c00297{width:20.328000px;}
._23_c00297{width:21.510000px;}
._6_c00297{width:23.409000px;}
._4_c00297{width:25.029000px;}
._5_c00297{width:26.406000px;}
._d_c00297{width:39.204000px;}
._1d_c00297{width:51.306000px;}
._19_c00297{width:59.373000px;}
._2a_c00297{width:77.673000px;}
._28_c00297{width:95.514000px;}
._26_c00297{width:102.708000px;}
._30_c00297{width:122.310000px;}
._f_c00297{width:147.177000px;}
._2c_c00297{width:196.596000px;}
._20_c00297{width:197.802000px;}
._1c_c00297{width:219.834000px;}
._27_c00297{width:233.781000px;}
._2b_c00297{width:289.525800px;}
._2f_c00297{width:293.415000px;}
._29_c00297{width:419.973000px;}
._18_c00297{width:612.117000px;}
._31_c00297{width:1665.279000px;}
.fc2_c00297{color:transparent;}
.fc1_c00297{color:rgb(128,128,128);}
.fc0_c00297{color:rgb(0,0,0);}
.fs7_c00297{font-size:45.600000px;}
.fs8_c00297{font-size:48.000000px;}
.fs2_c00297{font-size:57.000000px;}
.fs4_c00297{font-size:60.000000px;}
.fs5_c00297{font-size:63.000000px;}
.fs3_c00297{font-size:72.000000px;}
.fs6_c00297{font-size:75.000000px;}
.fs0_c00297{font-size:81.000000px;}
.fs1_c00297{font-size:87.000000px;}
.y0_c00297{bottom:0.000000px;}
.y25_c00297{bottom:3.105000px;}
.y24_c00297{bottom:7.228357px;}
.y23_c00297{bottom:65.430000px;}
.y22_c00297{bottom:87.030000px;}
.y21_c00297{bottom:112.830000px;}
.y20_c00297{bottom:137.130000px;}
.y1f_c00297{bottom:164.130000px;}
.y1e_c00297{bottom:189.330000px;}
.y1d_c00297{bottom:211.680000px;}
.y1c_c00297{bottom:236.880000px;}
.y1b_c00297{bottom:260.880000px;}
.y1a_c00297{bottom:284.580000px;}
.y19_c00297{bottom:308.580000px;}
.y18_c00297{bottom:335.430000px;}
.y17_c00297{bottom:357.180000px;}
.y16_c00297{bottom:382.380000px;}
.y15_c00297{bottom:409.080000px;}
.y14_c00297{bottom:431.730000px;}
.y13_c00297{bottom:455.580000px;}
.y12_c00297{bottom:479.580000px;}
.y11_c00297{bottom:503.280000px;}
.y10_c00297{bottom:528.180000px;}
.yf_c00297{bottom:552.180000px;}
.ye_c00297{bottom:576.780000px;}
.yd_c00297{bottom:601.530000px;}
.yc_c00297{bottom:624.030000px;}
.yb_c00297{bottom:647.430000px;}
.ya_c00297{bottom:673.080000px;}
.y9_c00297{bottom:696.630000px;}
.y8_c00297{bottom:723.030000px;}
.y7_c00297{bottom:746.580000px;}
.y6_c00297{bottom:766.230000px;}
.y5_c00297{bottom:793.530000px;}
.y4_c00297{bottom:817.380000px;}
.y3_c00297{bottom:841.830000px;}
.y2_c00297{bottom:867.330000px;}
.y1_c00297{bottom:890.430000px;}
.h9_c00297{height:13.200074px;}
.ha_c00297{height:43.804688px;}
.h8_c00297{height:59.736000px;}
.h4_c00297{height:61.831055px;}
.h7_c00297{height:70.628906px;}
.h1_c00297{height:79.497070px;}
.h3_c00297{height:84.269531px;}
.h5_c00297{height:91.160156px;}
.h2_c00297{height:91.176000px;}
.h6_c00297{height:94.958496px;}
.h0_c00297{height:995.250000px;}
.w2_c00297{width:104.875500px;}
.w0_c00297{width:667.425000px;}
.w1_c00297{width:667.500000px;}
.x0_c00297{left:0.000000px;}
.xc_c00297{left:37.500000px;}
.x6_c00297{left:38.700000px;}
.xa_c00297{left:40.200000px;}
.x7_c00297{left:41.850000px;}
.x2_c00297{left:61.350000px;}
.xd_c00297{left:68.850000px;}
.x9_c00297{left:74.700000px;}
.xf_c00297{left:114.150000px;}
.xe_c00297{left:116.400000px;}
.xb_c00297{left:120.150000px;}
.x8_c00297{left:122.250000px;}
.x1_c00297{left:129.300000px;}
.x3_c00297{left:133.200000px;}
.x5_c00297{left:135.300000px;}
.x4_c00297{left:136.350000px;}
.x10_c00297{left:285.526749px;}
@media print{
.v0_c00297{vertical-align:0.000000pt;}
.ls3_c00297{letter-spacing:-5.333333pt;}
.ls2_c00297{letter-spacing:-2.666667pt;}
.ls1_c00297{letter-spacing:0.000000pt;}
.ls0_c00297{letter-spacing:12.266667pt;}
.ws0_c00297{word-spacing:-60.165333pt;}
.ws4_c00297{word-spacing:-32.000000pt;}
.ws3_c00297{word-spacing:-18.000000pt;}
.ws2_c00297{word-spacing:-15.424000pt;}
.ws1_c00297{word-spacing:-12.666667pt;}
.ws5_c00297{word-spacing:-7.333333pt;}
.ws6_c00297{word-spacing:-0.050667pt;}
.ws7_c00297{word-spacing:-0.040533pt;}
.ws9_c00297{word-spacing:0.000000pt;}
.ws8_c00297{word-spacing:2.685333pt;}
._24_c00297{margin-left:-28.800000pt;}
._c_c00297{margin-left:-19.512000pt;}
._1a_c00297{margin-left:-17.653333pt;}
._21_c00297{margin-left:-16.488000pt;}
._25_c00297{margin-left:-14.002667pt;}
._e_c00297{margin-left:-11.736000pt;}
._9_c00297{margin-left:-10.152000pt;}
._1f_c00297{margin-left:-9.072000pt;}
._10_c00297{margin-left:-7.848000pt;}
._1b_c00297{margin-left:-6.912000pt;}
._7_c00297{margin-left:-5.400000pt;}
._2e_c00297{margin-left:-4.392000pt;}
._16_c00297{margin-left:-3.384000pt;}
._b_c00297{margin-left:-1.944000pt;}
._1e_c00297{margin-left:-1.008000pt;}
._0_c00297{width:0.936000pt;}
._1_c00297{width:2.448000pt;}
._8_c00297{width:3.672000pt;}
._a_c00297{width:4.824000pt;}
._11_c00297{width:6.192000pt;}
._13_c00297{width:7.128000pt;}
._12_c00297{width:8.784000pt;}
._14_c00297{width:10.584000pt;}
._15_c00297{width:12.384000pt;}
._2_c00297{width:13.320000pt;}
._17_c00297{width:14.256000pt;}
._3_c00297{width:15.480000pt;}
._22_c00297{width:16.808000pt;}
._2d_c00297{width:18.069333pt;}
._23_c00297{width:19.120000pt;}
._6_c00297{width:20.808000pt;}
._4_c00297{width:22.248000pt;}
._5_c00297{width:23.472000pt;}
._d_c00297{width:34.848000pt;}
._1d_c00297{width:45.605333pt;}
._19_c00297{width:52.776000pt;}
._2a_c00297{width:69.042667pt;}
._28_c00297{width:84.901333pt;}
._26_c00297{width:91.296000pt;}
._30_c00297{width:108.720000pt;}
._f_c00297{width:130.824000pt;}
._2c_c00297{width:174.752000pt;}
._20_c00297{width:175.824000pt;}
._1c_c00297{width:195.408000pt;}
._27_c00297{width:207.805333pt;}
._2b_c00297{width:257.356267pt;}
._2f_c00297{width:260.813333pt;}
._29_c00297{width:373.309333pt;}
._18_c00297{width:544.104000pt;}
._31_c00297{width:1480.248000pt;}
.fs7_c00297{font-size:40.533333pt;}
.fs8_c00297{font-size:42.666667pt;}
.fs2_c00297{font-size:50.666667pt;}
.fs4_c00297{font-size:53.333333pt;}
.fs5_c00297{font-size:56.000000pt;}
.fs3_c00297{font-size:64.000000pt;}
.fs6_c00297{font-size:66.666667pt;}
.fs0_c00297{font-size:72.000000pt;}
.fs1_c00297{font-size:77.333333pt;}
.y0_c00297{bottom:0.000000pt;}
.y25_c00297{bottom:2.760000pt;}
.y24_c00297{bottom:6.425206pt;}
.y23_c00297{bottom:58.160000pt;}
.y22_c00297{bottom:77.360000pt;}
.y21_c00297{bottom:100.293333pt;}
.y20_c00297{bottom:121.893333pt;}
.y1f_c00297{bottom:145.893333pt;}
.y1e_c00297{bottom:168.293333pt;}
.y1d_c00297{bottom:188.160000pt;}
.y1c_c00297{bottom:210.560000pt;}
.y1b_c00297{bottom:231.893333pt;}
.y1a_c00297{bottom:252.960000pt;}
.y19_c00297{bottom:274.293333pt;}
.y18_c00297{bottom:298.160000pt;}
.y17_c00297{bottom:317.493333pt;}
.y16_c00297{bottom:339.893333pt;}
.y15_c00297{bottom:363.626667pt;}
.y14_c00297{bottom:383.760000pt;}
.y13_c00297{bottom:404.960000pt;}
.y12_c00297{bottom:426.293333pt;}
.y11_c00297{bottom:447.360000pt;}
.y10_c00297{bottom:469.493333pt;}
.yf_c00297{bottom:490.826667pt;}
.ye_c00297{bottom:512.693333pt;}
.yd_c00297{bottom:534.693333pt;}
.yc_c00297{bottom:554.693333pt;}
.yb_c00297{bottom:575.493333pt;}
.ya_c00297{bottom:598.293333pt;}
.y9_c00297{bottom:619.226667pt;}
.y8_c00297{bottom:642.693333pt;}
.y7_c00297{bottom:663.626667pt;}
.y6_c00297{bottom:681.093333pt;}
.y5_c00297{bottom:705.360000pt;}
.y4_c00297{bottom:726.560000pt;}
.y3_c00297{bottom:748.293333pt;}
.y2_c00297{bottom:770.960000pt;}
.y1_c00297{bottom:791.493333pt;}
.h9_c00297{height:11.733399pt;}
.ha_c00297{height:38.937500pt;}
.h8_c00297{height:53.098667pt;}
.h4_c00297{height:54.960938pt;}
.h7_c00297{height:62.781250pt;}
.h1_c00297{height:70.664062pt;}
.h3_c00297{height:74.906250pt;}
.h5_c00297{height:81.031250pt;}
.h2_c00297{height:81.045333pt;}
.h6_c00297{height:84.407552pt;}
.h0_c00297{height:884.666667pt;}
.w2_c00297{width:93.222667pt;}
.w0_c00297{width:593.266667pt;}
.w1_c00297{width:593.333333pt;}
.x0_c00297{left:0.000000pt;}
.xc_c00297{left:33.333333pt;}
.x6_c00297{left:34.400000pt;}
.xa_c00297{left:35.733333pt;}
.x7_c00297{left:37.200000pt;}
.x2_c00297{left:54.533333pt;}
.xd_c00297{left:61.200000pt;}
.x9_c00297{left:66.400000pt;}
.xf_c00297{left:101.466667pt;}
.xe_c00297{left:103.466667pt;}
.xb_c00297{left:106.800000pt;}
.x8_c00297{left:108.666667pt;}
.x1_c00297{left:114.933333pt;}
.x3_c00297{left:118.400000pt;}
.x5_c00297{left:120.266667pt;}
.x4_c00297{left:121.200000pt;}
.x10_c00297{left:253.801554pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_21ec86778cbf2b5661d55c38.woff2')format("woff");}.ff1_c00298{font-family:ff1_c00298;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00298;src:url('chunks/assets/font_ec1dffdc1934c121250f795c.woff2')format("woff");}.ff2_c00298{font-family:ff2_c00298;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00298;src:url('chunks/assets/font_aa5b347d9200dceb783c1e38.woff2')format("woff");}.ff3_c00298{font-family:ff3_c00298;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00298;src:url('chunks/assets/font_94eb70978d712ddfcffa6e86.woff2')format("woff");}.ff4_c00298{font-family:ff4_c00298;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00298;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c00298{font-family:ff5_c00298;line-height:1.219238;font-style: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;}
.ls0_c00298{letter-spacing:0.000000px;}
.sc__c00298{text-shadow:none;}
.sc0_c00298{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00298{-webkit-text-stroke:0px transparent;}
.sc0_c00298{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00298{word-spacing:-18.798000px;}
.ws1_c00298{word-spacing:0.000000px;}
._1c_c00298{margin-left:-28.080000px;}
._17_c00298{margin-left:-25.461000px;}
._19_c00298{margin-left:-24.024000px;}
._c_c00298{margin-left:-22.572000px;}
._23_c00298{margin-left:-20.670000px;}
._2e_c00298{margin-left:-16.119000px;}
._26_c00298{margin-left:-14.985000px;}
._b_c00298{margin-left:-13.533000px;}
._30_c00298{margin-left:-12.105000px;}
._1a_c00298{margin-left:-11.082000px;}
._1_c00298{margin-left:-9.306000px;}
._21_c00298{margin-left:-7.884000px;}
._2_c00298{margin-left:-6.732000px;}
._1f_c00298{margin-left:-5.562000px;}
._12_c00298{margin-left:-3.690000px;}
._11_c00298{margin-left:-2.424000px;}
._0_c00298{margin-left:-1.188000px;}
._15_c00298{width:1.332000px;}
._d_c00298{width:3.033000px;}
._e_c00298{width:4.059000px;}
._5_c00298{width:5.346000px;}
._8_c00298{width:6.435000px;}
._4_c00298{width:7.623000px;}
._3_c00298{width:9.009000px;}
._9_c00298{width:10.494000px;}
._13_c00298{width:12.246000px;}
._6_c00298{width:13.860000px;}
._7_c00298{width:15.147000px;}
._f_c00298{width:17.118000px;}
._28_c00298{width:18.489000px;}
._2a_c00298{width:19.803000px;}
._10_c00298{width:20.979000px;}
._1e_c00298{width:22.032000px;}
._14_c00298{width:23.946000px;}
._20_c00298{width:29.304000px;}
._16_c00298{width:31.494000px;}
._29_c00298{width:33.105000px;}
._22_c00298{width:34.455000px;}
._27_c00298{width:36.216000px;}
._1b_c00298{width:37.284000px;}
._2b_c00298{width:41.265000px;}
._2d_c00298{width:78.726000px;}
._2f_c00298{width:86.832000px;}
._2c_c00298{width:118.089000px;}
._25_c00298{width:173.565000px;}
._1d_c00298{width:188.526000px;}
._18_c00298{width:256.620000px;}
._24_c00298{width:312.906000px;}
._a_c00298{width:410.454000px;}
._31_c00298{width:1458.603000px;}
.fc2_c00298{color:transparent;}
.fc1_c00298{color:rgb(128,128,128);}
.fc0_c00298{color:rgb(0,0,0);}
.fs5_c00298{font-size:48.000000px;}
.fs2_c00298{font-size:63.000000px;}
.fs3_c00298{font-size:78.000000px;}
.fs4_c00298{font-size:81.000000px;}
.fs0_c00298{font-size:99.000000px;}
.fs1_c00298{font-size:132.000000px;}
.y0_c00298{bottom:0.000000px;}
.y26_c00298{bottom:3.105000px;}
.y25_c00298{bottom:7.228355px;}
.y24_c00298{bottom:64.035000px;}
.y23_c00298{bottom:89.985000px;}
.y22_c00298{bottom:113.985000px;}
.y21_c00298{bottom:140.085000px;}
.y20_c00298{bottom:164.985000px;}
.y1f_c00298{bottom:189.285000px;}
.y1e_c00298{bottom:213.285000px;}
.y1d_c00298{bottom:237.885000px;}
.y1c_c00298{bottom:262.485000px;}
.y1b_c00298{bottom:287.085000px;}
.y1a_c00298{bottom:309.135000px;}
.y19_c00298{bottom:334.485000px;}
.y18_c00298{bottom:358.635000px;}
.y17_c00298{bottom:382.935000px;}
.y16_c00298{bottom:407.385000px;}
.y15_c00298{bottom:431.535000px;}
.y14_c00298{bottom:455.535000px;}
.y13_c00298{bottom:479.835000px;}
.y12_c00298{bottom:504.435000px;}
.y11_c00298{bottom:528.735000px;}
.y10_c00298{bottom:551.835000px;}
.yf_c00298{bottom:575.985000px;}
.ye_c00298{bottom:600.735000px;}
.yd_c00298{bottom:623.985000px;}
.yc_c00298{bottom:648.585000px;}
.yb_c00298{bottom:673.185000px;}
.ya_c00298{bottom:697.185000px;}
.y9_c00298{bottom:719.835000px;}
.y8_c00298{bottom:745.485000px;}
.y7_c00298{bottom:769.785000px;}
.y6_c00298{bottom:793.485000px;}
.y5_c00298{bottom:818.085000px;}
.y4_c00298{bottom:842.985000px;}
.y3_c00298{bottom:866.985000px;}
.y2_c00298{bottom:891.885000px;}
.y1_c00298{bottom:925.335000px;}
.h6_c00298{height:13.200074px;}
.h7_c00298{height:43.804688px;}
.h3_c00298{height:63.492188px;}
.h5_c00298{height:79.497070px;}
.h4_c00298{height:98.756836px;}
.h2_c00298{height:167.126953px;}
.h0_c00298{height:977.925000px;}
.h1_c00298{height:978.000000px;}
.w2_c00298{width:104.875500px;}
.w0_c00298{width:664.200000px;}
.w1_c00298{width:664.500000px;}
.x0_c00298{left:0.000000px;}
.x7_c00298{left:27.300000px;}
.x9_c00298{left:35.550000px;}
.x8_c00298{left:36.750000px;}
.x6_c00298{left:38.100000px;}
.x5_c00298{left:39.150000px;}
.x2_c00298{left:40.200000px;}
.x4_c00298{left:41.250000px;}
.x3_c00298{left:53.550000px;}
.x1_c00298{left:67.950000px;}
.xa_c00298{left:86.400000px;}
.xb_c00298{left:283.914230px;}
@media print{
.v0_c00298{vertical-align:0.000000pt;}
.ls0_c00298{letter-spacing:0.000000pt;}
.ws0_c00298{word-spacing:-16.709333pt;}
.ws1_c00298{word-spacing:0.000000pt;}
._1c_c00298{margin-left:-24.960000pt;}
._17_c00298{margin-left:-22.632000pt;}
._19_c00298{margin-left:-21.354667pt;}
._c_c00298{margin-left:-20.064000pt;}
._23_c00298{margin-left:-18.373333pt;}
._2e_c00298{margin-left:-14.328000pt;}
._26_c00298{margin-left:-13.320000pt;}
._b_c00298{margin-left:-12.029333pt;}
._30_c00298{margin-left:-10.760000pt;}
._1a_c00298{margin-left:-9.850667pt;}
._1_c00298{margin-left:-8.272000pt;}
._21_c00298{margin-left:-7.008000pt;}
._2_c00298{margin-left:-5.984000pt;}
._1f_c00298{margin-left:-4.944000pt;}
._12_c00298{margin-left:-3.280000pt;}
._11_c00298{margin-left:-2.154667pt;}
._0_c00298{margin-left:-1.056000pt;}
._15_c00298{width:1.184000pt;}
._d_c00298{width:2.696000pt;}
._e_c00298{width:3.608000pt;}
._5_c00298{width:4.752000pt;}
._8_c00298{width:5.720000pt;}
._4_c00298{width:6.776000pt;}
._3_c00298{width:8.008000pt;}
._9_c00298{width:9.328000pt;}
._13_c00298{width:10.885333pt;}
._6_c00298{width:12.320000pt;}
._7_c00298{width:13.464000pt;}
._f_c00298{width:15.216000pt;}
._28_c00298{width:16.434667pt;}
._2a_c00298{width:17.602667pt;}
._10_c00298{width:18.648000pt;}
._1e_c00298{width:19.584000pt;}
._14_c00298{width:21.285333pt;}
._20_c00298{width:26.048000pt;}
._16_c00298{width:27.994667pt;}
._29_c00298{width:29.426667pt;}
._22_c00298{width:30.626667pt;}
._27_c00298{width:32.192000pt;}
._1b_c00298{width:33.141333pt;}
._2b_c00298{width:36.680000pt;}
._2d_c00298{width:69.978667pt;}
._2f_c00298{width:77.184000pt;}
._2c_c00298{width:104.968000pt;}
._25_c00298{width:154.280000pt;}
._1d_c00298{width:167.578667pt;}
._18_c00298{width:228.106667pt;}
._24_c00298{width:278.138667pt;}
._a_c00298{width:364.848000pt;}
._31_c00298{width:1296.536000pt;}
.fs5_c00298{font-size:42.666667pt;}
.fs2_c00298{font-size:56.000000pt;}
.fs3_c00298{font-size:69.333333pt;}
.fs4_c00298{font-size:72.000000pt;}
.fs0_c00298{font-size:88.000000pt;}
.fs1_c00298{font-size:117.333333pt;}
.y0_c00298{bottom:0.000000pt;}
.y26_c00298{bottom:2.760000pt;}
.y25_c00298{bottom:6.425204pt;}
.y24_c00298{bottom:56.920000pt;}
.y23_c00298{bottom:79.986667pt;}
.y22_c00298{bottom:101.320000pt;}
.y21_c00298{bottom:124.520000pt;}
.y20_c00298{bottom:146.653333pt;}
.y1f_c00298{bottom:168.253333pt;}
.y1e_c00298{bottom:189.586667pt;}
.y1d_c00298{bottom:211.453333pt;}
.y1c_c00298{bottom:233.320000pt;}
.y1b_c00298{bottom:255.186667pt;}
.y1a_c00298{bottom:274.786667pt;}
.y19_c00298{bottom:297.320000pt;}
.y18_c00298{bottom:318.786667pt;}
.y17_c00298{bottom:340.386667pt;}
.y16_c00298{bottom:362.120000pt;}
.y15_c00298{bottom:383.586667pt;}
.y14_c00298{bottom:404.920000pt;}
.y13_c00298{bottom:426.520000pt;}
.y12_c00298{bottom:448.386667pt;}
.y11_c00298{bottom:469.986667pt;}
.y10_c00298{bottom:490.520000pt;}
.yf_c00298{bottom:511.986667pt;}
.ye_c00298{bottom:533.986667pt;}
.yd_c00298{bottom:554.653333pt;}
.yc_c00298{bottom:576.520000pt;}
.yb_c00298{bottom:598.386667pt;}
.ya_c00298{bottom:619.720000pt;}
.y9_c00298{bottom:639.853333pt;}
.y8_c00298{bottom:662.653333pt;}
.y7_c00298{bottom:684.253333pt;}
.y6_c00298{bottom:705.320000pt;}
.y5_c00298{bottom:727.186667pt;}
.y4_c00298{bottom:749.320000pt;}
.y3_c00298{bottom:770.653333pt;}
.y2_c00298{bottom:792.786667pt;}
.y1_c00298{bottom:822.520000pt;}
.h6_c00298{height:11.733399pt;}
.h7_c00298{height:38.937500pt;}
.h3_c00298{height:56.437500pt;}
.h5_c00298{height:70.664062pt;}
.h4_c00298{height:87.783854pt;}
.h2_c00298{height:148.557292pt;}
.h0_c00298{height:869.266667pt;}
.h1_c00298{height:869.333333pt;}
.w2_c00298{width:93.222667pt;}
.w0_c00298{width:590.400000pt;}
.w1_c00298{width:590.666667pt;}
.x0_c00298{left:0.000000pt;}
.x7_c00298{left:24.266667pt;}
.x9_c00298{left:31.600000pt;}
.x8_c00298{left:32.666667pt;}
.x6_c00298{left:33.866667pt;}
.x5_c00298{left:34.800000pt;}
.x2_c00298{left:35.733333pt;}
.x4_c00298{left:36.666667pt;}
.x3_c00298{left:47.600000pt;}
.x1_c00298{left:60.400000pt;}
.xa_c00298{left:76.800000pt;}
.xb_c00298{left:252.368205pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a83692bf00031d26accb1477.woff2')format("woff");}.ff1_c00299{font-family:ff1_c00299;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00299;src:url('chunks/assets/font_8a025c6c69ad42359db182c1.woff2')format("woff");}.ff2_c00299{font-family:ff2_c00299;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00299;src:url('chunks/assets/font_1e657d784c7278d6e7c6fd4f.woff2')format("woff");}.ff3_c00299{font-family:ff3_c00299;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00299;src:url('chunks/assets/font_1fc4daf11b18e45ec004354a.woff2')format("woff");}.ff4_c00299{font-family:ff4_c00299;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00299;src:url('chunks/assets/font_f38c6c76d88eac49dd6b147e.woff2')format("woff");}.ff5_c00299{font-family:ff5_c00299;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00299;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c00299{font-family:ff6_c00299;line-height:1.219238;font-style: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);}
.v1_c00299{vertical-align:-15.000000px;}
.v0_c00299{vertical-align:0.000000px;}
.ls3_c00299{letter-spacing:0.000000px;}
.ls0_c00299{letter-spacing:5.280000px;}
.ls2_c00299{letter-spacing:6.300000px;}
.ls1_c00299{letter-spacing:169.980000px;}
.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;}
}
.ws4_c00299{word-spacing:-67.686000px;}
.ws0_c00299{word-spacing:-20.250000px;}
.ws3_c00299{word-spacing:-17.352000px;}
.ws2_c00299{word-spacing:-13.737000px;}
.ws5_c00299{word-spacing:0.000000px;}
.ws1_c00299{word-spacing:0.171000px;}
._20_c00299{margin-left:-19.557000px;}
._17_c00299{margin-left:-15.522000px;}
._1b_c00299{margin-left:-13.608000px;}
._b_c00299{margin-left:-11.826000px;}
._15_c00299{margin-left:-10.611000px;}
._c_c00299{margin-left:-9.477000px;}
._9_c00299{margin-left:-8.424000px;}
._1d_c00299{margin-left:-6.885000px;}
._5_c00299{margin-left:-5.832000px;}
._3_c00299{margin-left:-4.536000px;}
._a_c00299{margin-left:-3.240000px;}
._0_c00299{margin-left:-1.620000px;}
._7_c00299{width:1.620000px;}
._1_c00299{width:2.916000px;}
._2_c00299{width:4.617000px;}
._4_c00299{width:5.994000px;}
._8_c00299{width:7.776000px;}
._10_c00299{width:9.144000px;}
._6_c00299{width:10.206000px;}
._f_c00299{width:12.150000px;}
._1c_c00299{width:13.158000px;}
._1a_c00299{width:15.081000px;}
._d_c00299{width:16.119000px;}
._11_c00299{width:17.733000px;}
._16_c00299{width:19.245000px;}
._14_c00299{width:20.406000px;}
._e_c00299{width:23.004000px;}
._21_c00299{width:38.718000px;}
._1e_c00299{width:77.760000px;}
._1f_c00299{width:189.306000px;}
._12_c00299{width:203.073000px;}
._18_c00299{width:361.668000px;}
._19_c00299{width:365.520000px;}
._13_c00299{width:625.866000px;}
.fc2_c00299{color:transparent;}
.fc1_c00299{color:rgb(128,128,128);}
.fc0_c00299{color:rgb(0,0,0);}
.fs7_c00299{font-size:24.000000px;}
.fs8_c00299{font-size:48.000000px;}
.fs2_c00299{font-size:57.000000px;}
.fs4_c00299{font-size:60.000000px;}
.fs5_c00299{font-size:63.000000px;}
.fs0_c00299{font-size:72.000000px;}
.fs3_c00299{font-size:78.000000px;}
.fs1_c00299{font-size:81.000000px;}
.fs6_c00299{font-size:87.000000px;}
.y0_c00299{bottom:0.000000px;}
.y25_c00299{bottom:3.105000px;}
.y24_c00299{bottom:7.228357px;}
.y23_c00299{bottom:67.530000px;}
.y22_c00299{bottom:92.880000px;}
.y21_c00299{bottom:118.230000px;}
.y20_c00299{bottom:143.130000px;}
.y1f_c00299{bottom:168.030000px;}
.y1e_c00299{bottom:192.780000px;}
.y1d_c00299{bottom:217.380000px;}
.y1c_c00299{bottom:241.980000px;}
.y1b_c00299{bottom:265.980000px;}
.y1a_c00299{bottom:290.880000px;}
.y19_c00299{bottom:315.330000px;}
.y18_c00299{bottom:339.480000px;}
.y17_c00299{bottom:363.780000px;}
.y16_c00299{bottom:388.080000px;}
.y15_c00299{bottom:412.080000px;}
.y14_c00299{bottom:437.430000px;}
.y13_c00299{bottom:460.980000px;}
.y12_c00299{bottom:486.630000px;}
.y11_c00299{bottom:510.330000px;}
.y10_c00299{bottom:534.030000px;}
.yf_c00299{bottom:558.630000px;}
.ye_c00299{bottom:582.480000px;}
.yd_c00299{bottom:606.180000px;}
.yc_c00299{bottom:629.130000px;}
.yb_c00299{bottom:655.080000px;}
.ya_c00299{bottom:678.780000px;}
.y9_c00299{bottom:707.130000px;}
.y8_c00299{bottom:726.930000px;}
.y7_c00299{bottom:751.980000px;}
.y6_c00299{bottom:774.630000px;}
.y5_c00299{bottom:798.480000px;}
.y4_c00299{bottom:822.480000px;}
.y3_c00299{bottom:847.080000px;}
.y2_c00299{bottom:871.530000px;}
.y1_c00299{bottom:895.680000px;}
.h7_c00299{height:13.200074px;}
.h8_c00299{height:43.804688px;}
.h5_c00299{height:72.168457px;}
.h4_c00299{height:75.966797px;}
.h2_c00299{height:79.497070px;}
.h1_c00299{height:84.269531px;}
.h6_c00299{height:91.176000px;}
.h3_c00299{height:98.756836px;}
.h0_c00299{height:995.250000px;}
.w2_c00299{width:104.875500px;}
.w0_c00299{width:667.425000px;}
.w1_c00299{width:667.500000px;}
.x0_c00299{left:0.000000px;}
.xc_c00299{left:38.850000px;}
.x7_c00299{left:45.450000px;}
.xd_c00299{left:128.850000px;}
.xb_c00299{left:130.200000px;}
.xa_c00299{left:131.550000px;}
.x9_c00299{left:132.600000px;}
.x2_c00299{left:133.950000px;}
.x1_c00299{left:135.450000px;}
.x4_c00299{left:140.700000px;}
.x3_c00299{left:191.100000px;}
.x6_c00299{left:198.750000px;}
.x8_c00299{left:233.250000px;}
.x5_c00299{left:270.000000px;}
.xf_c00299{left:285.526749px;}
.xe_c00299{left:578.700000px;}
@media print{
.v1_c00299{vertical-align:-13.333333pt;}
.v0_c00299{vertical-align:0.000000pt;}
.ls3_c00299{letter-spacing:0.000000pt;}
.ls0_c00299{letter-spacing:4.693333pt;}
.ls2_c00299{letter-spacing:5.600000pt;}
.ls1_c00299{letter-spacing:151.093333pt;}
.ws4_c00299{word-spacing:-60.165333pt;}
.ws0_c00299{word-spacing:-18.000000pt;}
.ws3_c00299{word-spacing:-15.424000pt;}
.ws2_c00299{word-spacing:-12.210667pt;}
.ws5_c00299{word-spacing:0.000000pt;}
.ws1_c00299{word-spacing:0.152000pt;}
._20_c00299{margin-left:-17.384000pt;}
._17_c00299{margin-left:-13.797333pt;}
._1b_c00299{margin-left:-12.096000pt;}
._b_c00299{margin-left:-10.512000pt;}
._15_c00299{margin-left:-9.432000pt;}
._c_c00299{margin-left:-8.424000pt;}
._9_c00299{margin-left:-7.488000pt;}
._1d_c00299{margin-left:-6.120000pt;}
._5_c00299{margin-left:-5.184000pt;}
._3_c00299{margin-left:-4.032000pt;}
._a_c00299{margin-left:-2.880000pt;}
._0_c00299{margin-left:-1.440000pt;}
._7_c00299{width:1.440000pt;}
._1_c00299{width:2.592000pt;}
._2_c00299{width:4.104000pt;}
._4_c00299{width:5.328000pt;}
._8_c00299{width:6.912000pt;}
._10_c00299{width:8.128000pt;}
._6_c00299{width:9.072000pt;}
._f_c00299{width:10.800000pt;}
._1c_c00299{width:11.696000pt;}
._1a_c00299{width:13.405333pt;}
._d_c00299{width:14.328000pt;}
._11_c00299{width:15.762667pt;}
._16_c00299{width:17.106667pt;}
._14_c00299{width:18.138667pt;}
._e_c00299{width:20.448000pt;}
._21_c00299{width:34.416000pt;}
._1e_c00299{width:69.120000pt;}
._1f_c00299{width:168.272000pt;}
._12_c00299{width:180.509333pt;}
._18_c00299{width:321.482667pt;}
._19_c00299{width:324.906667pt;}
._13_c00299{width:556.325333pt;}
.fs7_c00299{font-size:21.333333pt;}
.fs8_c00299{font-size:42.666667pt;}
.fs2_c00299{font-size:50.666667pt;}
.fs4_c00299{font-size:53.333333pt;}
.fs5_c00299{font-size:56.000000pt;}
.fs0_c00299{font-size:64.000000pt;}
.fs3_c00299{font-size:69.333333pt;}
.fs1_c00299{font-size:72.000000pt;}
.fs6_c00299{font-size:77.333333pt;}
.y0_c00299{bottom:0.000000pt;}
.y25_c00299{bottom:2.760000pt;}
.y24_c00299{bottom:6.425206pt;}
.y23_c00299{bottom:60.026667pt;}
.y22_c00299{bottom:82.560000pt;}
.y21_c00299{bottom:105.093333pt;}
.y20_c00299{bottom:127.226667pt;}
.y1f_c00299{bottom:149.360000pt;}
.y1e_c00299{bottom:171.360000pt;}
.y1d_c00299{bottom:193.226667pt;}
.y1c_c00299{bottom:215.093333pt;}
.y1b_c00299{bottom:236.426667pt;}
.y1a_c00299{bottom:258.560000pt;}
.y19_c00299{bottom:280.293333pt;}
.y18_c00299{bottom:301.760000pt;}
.y17_c00299{bottom:323.360000pt;}
.y16_c00299{bottom:344.960000pt;}
.y15_c00299{bottom:366.293333pt;}
.y14_c00299{bottom:388.826667pt;}
.y13_c00299{bottom:409.760000pt;}
.y12_c00299{bottom:432.560000pt;}
.y11_c00299{bottom:453.626667pt;}
.y10_c00299{bottom:474.693333pt;}
.yf_c00299{bottom:496.560000pt;}
.ye_c00299{bottom:517.760000pt;}
.yd_c00299{bottom:538.826667pt;}
.yc_c00299{bottom:559.226667pt;}
.yb_c00299{bottom:582.293333pt;}
.ya_c00299{bottom:603.360000pt;}
.y9_c00299{bottom:628.560000pt;}
.y8_c00299{bottom:646.160000pt;}
.y7_c00299{bottom:668.426667pt;}
.y6_c00299{bottom:688.560000pt;}
.y5_c00299{bottom:709.760000pt;}
.y4_c00299{bottom:731.093333pt;}
.y3_c00299{bottom:752.960000pt;}
.y2_c00299{bottom:774.693333pt;}
.y1_c00299{bottom:796.160000pt;}
.h7_c00299{height:11.733399pt;}
.h8_c00299{height:38.937500pt;}
.h5_c00299{height:64.149740pt;}
.h4_c00299{height:67.526042pt;}
.h2_c00299{height:70.664062pt;}
.h1_c00299{height:74.906250pt;}
.h6_c00299{height:81.045333pt;}
.h3_c00299{height:87.783854pt;}
.h0_c00299{height:884.666667pt;}
.w2_c00299{width:93.222667pt;}
.w0_c00299{width:593.266667pt;}
.w1_c00299{width:593.333333pt;}
.x0_c00299{left:0.000000pt;}
.xc_c00299{left:34.533333pt;}
.x7_c00299{left:40.400000pt;}
.xd_c00299{left:114.533333pt;}
.xb_c00299{left:115.733333pt;}
.xa_c00299{left:116.933333pt;}
.x9_c00299{left:117.866667pt;}
.x2_c00299{left:119.066667pt;}
.x1_c00299{left:120.400000pt;}
.x4_c00299{left:125.066667pt;}
.x3_c00299{left:169.866667pt;}
.x6_c00299{left:176.666667pt;}
.x8_c00299{left:207.333333pt;}
.x5_c00299{left:240.000000pt;}
.xf_c00299{left:253.801554pt;}
.xe_c00299{left:514.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_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_d261a4b84f18ffa9155c2df7.woff2')format("woff");}.ff1_c00300{font-family:ff1_c00300;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00300;src:url('chunks/assets/font_b360f0892cd660f69ddd2783.woff2')format("woff");}.ff2_c00300{font-family:ff2_c00300;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00300;src:url('chunks/assets/font_087c1f97cc7391ad5910024e.woff2')format("woff");}.ff3_c00300{font-family:ff3_c00300;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00300;src:url('chunks/assets/font_f543ce08956779cfd10ddeb1.woff2')format("woff");}.ff4_c00300{font-family:ff4_c00300;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00300;src:url('chunks/assets/font_cf3954a81c90e29c8a1d5754.woff2')format("woff");}.ff5_c00300{font-family:ff5_c00300;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00300;src:url('chunks/assets/font_b8c02ca30b1b4d7b8a5a21ed.woff2')format("woff");}.ff6_c00300{font-family:ff6_c00300;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00300;src:url('chunks/assets/font_c622ea166ceca98227d0b711.woff2')format("woff");}.ff7_c00300{font-family:ff7_c00300;line-height:1.437000;font-style:normal;font-weight: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_c00300;src:url('chunks/assets/font_b9b523f0c9a8026b98788fbc.woff2')format("woff");}.ff8_c00300{font-family:ff8_c00300;line-height:1.437000;font-style:normal;font-weight: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_c00300;src:url('chunks/assets/font_972e97a30e74e97ce1fb6018.woff2')format("woff");}.ff9_c00300{font-family:ff9_c00300;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00300;src:url('chunks/assets/font_8f84a716374921b2e20b71b8.woff2')format("woff");}.ffa_c00300{font-family:ffa_c00300;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c00300;src:url('chunks/assets/font_9679f6f91a9bc0e709f4b253.woff2')format("woff");}.ffb_c00300{font-family:ffb_c00300;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc_c00300;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ffc_c00300{font-family:ffc_c00300;line-height:1.219238;font-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.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m0_c00300{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00300{vertical-align:0.000000px;}
.ls2_c00300{letter-spacing:0.000000px;}
.ls1_c00300{letter-spacing:6.600000px;}
.ls3_c00300{letter-spacing:9.000000px;}
.ls4_c00300{letter-spacing:18.000000px;}
.ls0_c00300{letter-spacing:24.750000px;}
.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;}
}
.ws1_c00300{word-spacing:-34.500000px;}
.ws0_c00300{word-spacing:-16.926000px;}
.ws2_c00300{word-spacing:0.000000px;}
._23_c00300{margin-left:-25.935000px;}
._21_c00300{margin-left:-18.840000px;}
._16_c00300{margin-left:-13.350000px;}
._1a_c00300{margin-left:-11.886000px;}
._14_c00300{margin-left:-10.761000px;}
._22_c00300{margin-left:-9.672000px;}
._26_c00300{margin-left:-7.047000px;}
._8_c00300{margin-left:-6.021000px;}
._1b_c00300{margin-left:-4.962000px;}
._a_c00300{margin-left:-3.744000px;}
._12_c00300{margin-left:-2.376000px;}
._d_c00300{margin-left:-1.056000px;}
._b_c00300{width:1.398000px;}
._3_c00300{width:2.511000px;}
._4_c00300{width:3.969000px;}
._2_c00300{width:5.346000px;}
._24_c00300{width:6.381000px;}
._0_c00300{width:7.392000px;}
._9_c00300{width:8.892000px;}
._1f_c00300{width:9.966000px;}
._f_c00300{width:11.025000px;}
._17_c00300{width:12.192000px;}
._e_c00300{width:13.314000px;}
._11_c00300{width:14.520000px;}
._1d_c00300{width:15.528000px;}
._6_c00300{width:17.982000px;}
._18_c00300{width:19.890000px;}
._10_c00300{width:21.579000px;}
._13_c00300{width:23.877000px;}
._15_c00300{width:25.944000px;}
._25_c00300{width:29.664000px;}
._7_c00300{width:31.104000px;}
._5_c00300{width:38.637000px;}
._1c_c00300{width:73.743000px;}
._27_c00300{width:88.938000px;}
._1_c00300{width:93.288000px;}
._1e_c00300{width:117.480000px;}
._19_c00300{width:170.853000px;}
._c_c00300{width:192.630000px;}
._20_c00300{width:224.913000px;}
._28_c00300{width:1501.323000px;}
.fc2_c00300{color:transparent;}
.fc1_c00300{color:rgb(128,128,128);}
.fc0_c00300{color:rgb(0,0,0);}
.fs0_c00300{font-size:24.000000px;}
.fs8_c00300{font-size:48.000000px;}
.fs5_c00300{font-size:60.000000px;}
.fs4_c00300{font-size:69.000000px;}
.fs3_c00300{font-size:72.000000px;}
.fs2_c00300{font-size:78.000000px;}
.fs1_c00300{font-size:81.000000px;}
.fs7_c00300{font-size:87.000000px;}
.fs6_c00300{font-size:93.000000px;}
.y0_c00300{bottom:0.000000px;}
.y26_c00300{bottom:3.105000px;}
.y25_c00300{bottom:7.228371px;}
.y24_c00300{bottom:66.615000px;}
.y23_c00300{bottom:91.515000px;}
.y22_c00300{bottom:116.565000px;}
.y21_c00300{bottom:141.465000px;}
.y20_c00300{bottom:166.365000px;}
.y1f_c00300{bottom:190.815000px;}
.y1e_c00300{bottom:215.415000px;}
.y1d_c00300{bottom:239.715000px;}
.y1c_c00300{bottom:264.015000px;}
.y1b_c00300{bottom:287.865000px;}
.y1a_c00300{bottom:312.315000px;}
.y19_c00300{bottom:336.165000px;}
.y18_c00300{bottom:360.465000px;}
.y17_c00300{bottom:384.165000px;}
.y16_c00300{bottom:409.365000px;}
.y15_c00300{bottom:432.315000px;}
.y14_c00300{bottom:456.765000px;}
.y13_c00300{bottom:481.365000px;}
.y12_c00300{bottom:505.215000px;}
.y11_c00300{bottom:529.215000px;}
.y10_c00300{bottom:553.515000px;}
.yf_c00300{bottom:576.915000px;}
.ye_c00300{bottom:600.765000px;}
.yd_c00300{bottom:624.465000px;}
.yc_c00300{bottom:649.365000px;}
.yb_c00300{bottom:672.615000px;}
.ya_c00300{bottom:696.615000px;}
.y9_c00300{bottom:721.665000px;}
.y8_c00300{bottom:744.615000px;}
.y7_c00300{bottom:768.915000px;}
.y6_c00300{bottom:792.915000px;}
.y5_c00300{bottom:817.065000px;}
.y4_c00300{bottom:841.365000px;}
.y3_c00300{bottom:865.365000px;}
.y2_c00300{bottom:889.065000px;}
.y1_c00300{bottom:924.465000px;}
.hb_c00300{height:13.200074px;}
.hc_c00300{height:43.804688px;}
.h7_c00300{height:58.886719px;}
.h6_c00300{height:72.312000px;}
.h2_c00300{height:79.457520px;}
.ha_c00300{height:79.497070px;}
.h3_c00300{height:83.226000px;}
.h4_c00300{height:84.269531px;}
.h8_c00300{height:93.726562px;}
.h5_c00300{height:98.756836px;}
.h9_c00300{height:110.151855px;}
.h0_c00300{height:989.025000px;}
.h1_c00300{height:989.250000px;}
.w1_c00300{width:104.875500px;}
.w0_c00300{width:672.000000px;}
.x0_c00300{left:0.000000px;}
.x5_c00300{left:28.800000px;}
.xe_c00300{left:34.500000px;}
.x1_c00300{left:43.500000px;}
.x2_c00300{left:44.850000px;}
.x3_c00300{left:47.250000px;}
.x4_c00300{left:48.600000px;}
.x6_c00300{left:49.650000px;}
.x7_c00300{left:50.700000px;}
.x8_c00300{left:52.050000px;}
.xc_c00300{left:53.400000px;}
.xd_c00300{left:55.050000px;}
.x9_c00300{left:62.100000px;}
.xf_c00300{left:63.900000px;}
.xa_c00300{left:66.900000px;}
.xb_c00300{left:79.950000px;}
.x10_c00300{left:287.814240px;}
@media print{
.v0_c00300{vertical-align:0.000000pt;}
.ls2_c00300{letter-spacing:0.000000pt;}
.ls1_c00300{letter-spacing:5.866667pt;}
.ls3_c00300{letter-spacing:8.000000pt;}
.ls4_c00300{letter-spacing:16.000000pt;}
.ls0_c00300{letter-spacing:22.000000pt;}
.ws1_c00300{word-spacing:-30.666667pt;}
.ws0_c00300{word-spacing:-15.045333pt;}
.ws2_c00300{word-spacing:0.000000pt;}
._23_c00300{margin-left:-23.053333pt;}
._21_c00300{margin-left:-16.746667pt;}
._16_c00300{margin-left:-11.866667pt;}
._1a_c00300{margin-left:-10.565333pt;}
._14_c00300{margin-left:-9.565333pt;}
._22_c00300{margin-left:-8.597333pt;}
._26_c00300{margin-left:-6.264000pt;}
._8_c00300{margin-left:-5.352000pt;}
._1b_c00300{margin-left:-4.410667pt;}
._a_c00300{margin-left:-3.328000pt;}
._12_c00300{margin-left:-2.112000pt;}
._d_c00300{margin-left:-0.938667pt;}
._b_c00300{width:1.242667pt;}
._3_c00300{width:2.232000pt;}
._4_c00300{width:3.528000pt;}
._2_c00300{width:4.752000pt;}
._24_c00300{width:5.672000pt;}
._0_c00300{width:6.570667pt;}
._9_c00300{width:7.904000pt;}
._1f_c00300{width:8.858667pt;}
._f_c00300{width:9.800000pt;}
._17_c00300{width:10.837333pt;}
._e_c00300{width:11.834667pt;}
._11_c00300{width:12.906667pt;}
._1d_c00300{width:13.802667pt;}
._6_c00300{width:15.984000pt;}
._18_c00300{width:17.680000pt;}
._10_c00300{width:19.181333pt;}
._13_c00300{width:21.224000pt;}
._15_c00300{width:23.061333pt;}
._25_c00300{width:26.368000pt;}
._7_c00300{width:27.648000pt;}
._5_c00300{width:34.344000pt;}
._1c_c00300{width:65.549333pt;}
._27_c00300{width:79.056000pt;}
._1_c00300{width:82.922667pt;}
._1e_c00300{width:104.426667pt;}
._19_c00300{width:151.869333pt;}
._c_c00300{width:171.226667pt;}
._20_c00300{width:199.922667pt;}
._28_c00300{width:1334.509333pt;}
.fs0_c00300{font-size:21.333333pt;}
.fs8_c00300{font-size:42.666667pt;}
.fs5_c00300{font-size:53.333333pt;}
.fs4_c00300{font-size:61.333333pt;}
.fs3_c00300{font-size:64.000000pt;}
.fs2_c00300{font-size:69.333333pt;}
.fs1_c00300{font-size:72.000000pt;}
.fs7_c00300{font-size:77.333333pt;}
.fs6_c00300{font-size:82.666667pt;}
.y0_c00300{bottom:0.000000pt;}
.y26_c00300{bottom:2.760000pt;}
.y25_c00300{bottom:6.425219pt;}
.y24_c00300{bottom:59.213333pt;}
.y23_c00300{bottom:81.346667pt;}
.y22_c00300{bottom:103.613333pt;}
.y21_c00300{bottom:125.746667pt;}
.y20_c00300{bottom:147.880000pt;}
.y1f_c00300{bottom:169.613333pt;}
.y1e_c00300{bottom:191.480000pt;}
.y1d_c00300{bottom:213.080000pt;}
.y1c_c00300{bottom:234.680000pt;}
.y1b_c00300{bottom:255.880000pt;}
.y1a_c00300{bottom:277.613333pt;}
.y19_c00300{bottom:298.813333pt;}
.y18_c00300{bottom:320.413333pt;}
.y17_c00300{bottom:341.480000pt;}
.y16_c00300{bottom:363.880000pt;}
.y15_c00300{bottom:384.280000pt;}
.y14_c00300{bottom:406.013333pt;}
.y13_c00300{bottom:427.880000pt;}
.y12_c00300{bottom:449.080000pt;}
.y11_c00300{bottom:470.413333pt;}
.y10_c00300{bottom:492.013333pt;}
.yf_c00300{bottom:512.813333pt;}
.ye_c00300{bottom:534.013333pt;}
.yd_c00300{bottom:555.080000pt;}
.yc_c00300{bottom:577.213333pt;}
.yb_c00300{bottom:597.880000pt;}
.ya_c00300{bottom:619.213333pt;}
.y9_c00300{bottom:641.480000pt;}
.y8_c00300{bottom:661.880000pt;}
.y7_c00300{bottom:683.480000pt;}
.y6_c00300{bottom:704.813333pt;}
.y5_c00300{bottom:726.280000pt;}
.y4_c00300{bottom:747.880000pt;}
.y3_c00300{bottom:769.213333pt;}
.y2_c00300{bottom:790.280000pt;}
.y1_c00300{bottom:821.746667pt;}
.hb_c00300{height:11.733399pt;}
.hc_c00300{height:38.937500pt;}
.h7_c00300{height:52.343750pt;}
.h6_c00300{height:64.277333pt;}
.h2_c00300{height:70.628906pt;}
.ha_c00300{height:70.664062pt;}
.h3_c00300{height:73.978667pt;}
.h4_c00300{height:74.906250pt;}
.h8_c00300{height:83.312500pt;}
.h5_c00300{height:87.783854pt;}
.h9_c00300{height:97.912760pt;}
.h0_c00300{height:879.133333pt;}
.h1_c00300{height:879.333333pt;}
.w1_c00300{width:93.222667pt;}
.w0_c00300{width:597.333333pt;}
.x0_c00300{left:0.000000pt;}
.x5_c00300{left:25.600000pt;}
.xe_c00300{left:30.666667pt;}
.x1_c00300{left:38.666667pt;}
.x2_c00300{left:39.866667pt;}
.x3_c00300{left:42.000000pt;}
.x4_c00300{left:43.200000pt;}
.x6_c00300{left:44.133333pt;}
.x7_c00300{left:45.066667pt;}
.x8_c00300{left:46.266667pt;}
.xc_c00300{left:47.466667pt;}
.xd_c00300{left:48.933333pt;}
.x9_c00300{left:55.200000pt;}
.xf_c00300{left:56.800000pt;}
.xa_c00300{left:59.466667pt;}
.xb_c00300{left:71.066667pt;}
.x10_c00300{left:255.834880pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_863a179228692f1d72477fa8.woff2')format("woff");}.ff1_c00301{font-family:ff1_c00301;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00301;src:url('chunks/assets/font_4ad51fa008ef177dbb98f38c.woff2')format("woff");}.ff2_c00301{font-family:ff2_c00301;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00301;src:url('chunks/assets/font_17393d0866f70f6b7071e18f.woff2')format("woff");}.ff3_c00301{font-family:ff3_c00301;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00301;src:url('chunks/assets/font_174b1622cd492b5fc777f3c4.woff2')format("woff");}.ff4_c00301{font-family:ff4_c00301;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00301;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c00301{font-family:ff5_c00301;line-height:1.219238;font-style: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;}
.ls4_c00301{letter-spacing:0.000000px;}
.ls0_c00301{letter-spacing:2.880000px;}
.ls3_c00301{letter-spacing:14.802000px;}
.ls1_c00301{letter-spacing:16.002000px;}
.ls2_c00301{letter-spacing:23.802000px;}
.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;}
}
.ws2_c00301{word-spacing:-37.500000px;}
.ws0_c00301{word-spacing:-17.352000px;}
.ws1_c00301{word-spacing:-13.737000px;}
.ws3_c00301{word-spacing:0.000000px;}
._e_c00301{margin-left:-15.066000px;}
._15_c00301{margin-left:-12.366000px;}
._12_c00301{margin-left:-9.852000px;}
._6_c00301{margin-left:-7.296000px;}
._3_c00301{margin-left:-5.985000px;}
._9_c00301{margin-left:-4.047000px;}
._d_c00301{margin-left:-2.469000px;}
._f_c00301{margin-left:-1.005000px;}
._7_c00301{width:1.425000px;}
._1_c00301{width:2.793000px;}
._c_c00301{width:3.804000px;}
._2_c00301{width:4.845000px;}
._0_c00301{width:5.928000px;}
._5_c00301{width:7.695000px;}
._a_c00301{width:8.721000px;}
._4_c00301{width:9.918000px;}
._18_c00301{width:10.968000px;}
._8_c00301{width:11.970000px;}
._10_c00301{width:13.032000px;}
._11_c00301{width:14.322000px;}
._16_c00301{width:18.720000px;}
._b_c00301{width:20.634000px;}
._19_c00301{width:24.852000px;}
._14_c00301{width:113.076000px;}
._13_c00301{width:337.881000px;}
._17_c00301{width:391.797000px;}
.fc2_c00301{color:transparent;}
.fc1_c00301{color:rgb(128,128,128);}
.fc0_c00301{color:rgb(0,0,0);}
.fs5_c00301{font-size:48.000000px;}
.fs0_c00301{font-size:57.000000px;}
.fs1_c00301{font-size:72.000000px;}
.fs4_c00301{font-size:75.000000px;}
.fs2_c00301{font-size:78.000000px;}
.fs3_c00301{font-size:81.000000px;}
.y0_c00301{bottom:0.000000px;}
.y25_c00301{bottom:3.105000px;}
.y24_c00301{bottom:7.228369px;}
.y23_c00301{bottom:66.120000px;}
.y22_c00301{bottom:89.820000px;}
.y21_c00301{bottom:114.420000px;}
.y20_c00301{bottom:139.620000px;}
.y1f_c00301{bottom:163.320000px;}
.y1e_c00301{bottom:187.620000px;}
.y1d_c00301{bottom:212.220000px;}
.y1c_c00301{bottom:236.520000px;}
.y1b_c00301{bottom:260.820000px;}
.y1a_c00301{bottom:285.570000px;}
.y19_c00301{bottom:309.120000px;}
.y18_c00301{bottom:334.170000px;}
.y17_c00301{bottom:358.770000px;}
.y16_c00301{bottom:382.770000px;}
.y15_c00301{bottom:407.370000px;}
.y14_c00301{bottom:431.370000px;}
.y13_c00301{bottom:455.220000px;}
.y12_c00301{bottom:479.820000px;}
.y11_c00301{bottom:503.820000px;}
.y10_c00301{bottom:527.520000px;}
.yf_c00301{bottom:551.820000px;}
.ye_c00301{bottom:576.120000px;}
.yd_c00301{bottom:600.120000px;}
.yc_c00301{bottom:624.420000px;}
.yb_c00301{bottom:650.970000px;}
.ya_c00301{bottom:672.870000px;}
.y9_c00301{bottom:697.170000px;}
.y8_c00301{bottom:720.870000px;}
.y7_c00301{bottom:745.470000px;}
.y6_c00301{bottom:768.870000px;}
.y5_c00301{bottom:793.020000px;}
.y4_c00301{bottom:817.470000px;}
.y3_c00301{bottom:841.620000px;}
.y2_c00301{bottom:866.370000px;}
.y1_c00301{bottom:890.670000px;}
.h7_c00301{height:13.200073px;}
.h8_c00301{height:43.804688px;}
.h2_c00301{height:72.168457px;}
.h6_c00301{height:73.571777px;}
.h4_c00301{height:79.497070px;}
.h5_c00301{height:84.269531px;}
.h3_c00301{height:98.756836px;}
.h1_c00301{height:986.250000px;}
.h0_c00301{height:986.550000px;}
.w1_c00301{width:104.875500px;}
.w0_c00301{width:661.500000px;}
.x0_c00301{left:0.000000px;}
.x10_c00301{left:12.750000px;}
.xc_c00301{left:20.250000px;}
.x7_c00301{left:21.300000px;}
.xb_c00301{left:71.250000px;}
.xf_c00301{left:107.550000px;}
.xe_c00301{left:109.050000px;}
.xd_c00301{left:110.400000px;}
.xa_c00301{left:113.400000px;}
.x9_c00301{left:115.050000px;}
.x8_c00301{left:116.400000px;}
.x6_c00301{left:117.450000px;}
.x5_c00301{left:118.800000px;}
.x4_c00301{left:120.600000px;}
.x3_c00301{left:121.800000px;}
.x2_c00301{left:123.750000px;}
.x1_c00301{left:124.950000px;}
.x12_c00301{left:282.564240px;}
.x11_c00301{left:558.150000px;}
@media print{
.v0_c00301{vertical-align:0.000000pt;}
.ls4_c00301{letter-spacing:0.000000pt;}
.ls0_c00301{letter-spacing:2.560000pt;}
.ls3_c00301{letter-spacing:13.157333pt;}
.ls1_c00301{letter-spacing:14.224000pt;}
.ls2_c00301{letter-spacing:21.157333pt;}
.ws2_c00301{word-spacing:-33.333333pt;}
.ws0_c00301{word-spacing:-15.424000pt;}
.ws1_c00301{word-spacing:-12.210667pt;}
.ws3_c00301{word-spacing:0.000000pt;}
._e_c00301{margin-left:-13.392000pt;}
._15_c00301{margin-left:-10.992000pt;}
._12_c00301{margin-left:-8.757333pt;}
._6_c00301{margin-left:-6.485333pt;}
._3_c00301{margin-left:-5.320000pt;}
._9_c00301{margin-left:-3.597333pt;}
._d_c00301{margin-left:-2.194667pt;}
._f_c00301{margin-left:-0.893333pt;}
._7_c00301{width:1.266667pt;}
._1_c00301{width:2.482667pt;}
._c_c00301{width:3.381333pt;}
._2_c00301{width:4.306667pt;}
._0_c00301{width:5.269333pt;}
._5_c00301{width:6.840000pt;}
._a_c00301{width:7.752000pt;}
._4_c00301{width:8.816000pt;}
._18_c00301{width:9.749333pt;}
._8_c00301{width:10.640000pt;}
._10_c00301{width:11.584000pt;}
._11_c00301{width:12.730667pt;}
._16_c00301{width:16.640000pt;}
._b_c00301{width:18.341333pt;}
._19_c00301{width:22.090667pt;}
._14_c00301{width:100.512000pt;}
._13_c00301{width:300.338667pt;}
._17_c00301{width:348.264000pt;}
.fs5_c00301{font-size:42.666667pt;}
.fs0_c00301{font-size:50.666667pt;}
.fs1_c00301{font-size:64.000000pt;}
.fs4_c00301{font-size:66.666667pt;}
.fs2_c00301{font-size:69.333333pt;}
.fs3_c00301{font-size:72.000000pt;}
.y0_c00301{bottom:0.000000pt;}
.y25_c00301{bottom:2.760000pt;}
.y24_c00301{bottom:6.425217pt;}
.y23_c00301{bottom:58.773333pt;}
.y22_c00301{bottom:79.840000pt;}
.y21_c00301{bottom:101.706667pt;}
.y20_c00301{bottom:124.106667pt;}
.y1f_c00301{bottom:145.173333pt;}
.y1e_c00301{bottom:166.773333pt;}
.y1d_c00301{bottom:188.640000pt;}
.y1c_c00301{bottom:210.240000pt;}
.y1b_c00301{bottom:231.840000pt;}
.y1a_c00301{bottom:253.840000pt;}
.y19_c00301{bottom:274.773333pt;}
.y18_c00301{bottom:297.040000pt;}
.y17_c00301{bottom:318.906667pt;}
.y16_c00301{bottom:340.240000pt;}
.y15_c00301{bottom:362.106667pt;}
.y14_c00301{bottom:383.440000pt;}
.y13_c00301{bottom:404.640000pt;}
.y12_c00301{bottom:426.506667pt;}
.y11_c00301{bottom:447.840000pt;}
.y10_c00301{bottom:468.906667pt;}
.yf_c00301{bottom:490.506667pt;}
.ye_c00301{bottom:512.106667pt;}
.yd_c00301{bottom:533.440000pt;}
.yc_c00301{bottom:555.040000pt;}
.yb_c00301{bottom:578.640000pt;}
.ya_c00301{bottom:598.106667pt;}
.y9_c00301{bottom:619.706667pt;}
.y8_c00301{bottom:640.773333pt;}
.y7_c00301{bottom:662.640000pt;}
.y6_c00301{bottom:683.440000pt;}
.y5_c00301{bottom:704.906667pt;}
.y4_c00301{bottom:726.640000pt;}
.y3_c00301{bottom:748.106667pt;}
.y2_c00301{bottom:770.106667pt;}
.y1_c00301{bottom:791.706667pt;}
.h7_c00301{height:11.733399pt;}
.h8_c00301{height:38.937500pt;}
.h2_c00301{height:64.149740pt;}
.h6_c00301{height:65.397135pt;}
.h4_c00301{height:70.664062pt;}
.h5_c00301{height:74.906250pt;}
.h3_c00301{height:87.783854pt;}
.h1_c00301{height:876.666667pt;}
.h0_c00301{height:876.933333pt;}
.w1_c00301{width:93.222667pt;}
.w0_c00301{width:588.000000pt;}
.x0_c00301{left:0.000000pt;}
.x10_c00301{left:11.333333pt;}
.xc_c00301{left:18.000000pt;}
.x7_c00301{left:18.933333pt;}
.xb_c00301{left:63.333333pt;}
.xf_c00301{left:95.600000pt;}
.xe_c00301{left:96.933333pt;}
.xd_c00301{left:98.133333pt;}
.xa_c00301{left:100.800000pt;}
.x9_c00301{left:102.266667pt;}
.x8_c00301{left:103.466667pt;}
.x6_c00301{left:104.400000pt;}
.x5_c00301{left:105.600000pt;}
.x4_c00301{left:107.200000pt;}
.x3_c00301{left:108.266667pt;}
.x2_c00301{left:110.000000pt;}
.x1_c00301{left:111.066667pt;}
.x12_c00301{left:251.168213pt;}
.x11_c00301{left:496.133333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_0d0673072a3832cb8cf335eb.woff2')format("woff");}.ff1_c00302{font-family:ff1_c00302;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00302;src:url('chunks/assets/font_3890e8da4c8cd9f7d352aa31.woff2')format("woff");}.ff2_c00302{font-family:ff2_c00302;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00302;src:url('chunks/assets/font_2e5ce9823b28abf67ff34396.woff2')format("woff");}.ff3_c00302{font-family:ff3_c00302;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00302;src:url('chunks/assets/font_45fe1fe1e856bbbf8860d8b7.woff2')format("woff");}.ff4_c00302{font-family:ff4_c00302;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00302;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff5_c00302{font-family:ff5_c00302;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00302;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c00302{font-family:ff6_c00302;line-height:1.219238;font-style: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;}
.ls3_c00302{letter-spacing:0.000000px;}
.ls4_c00302{letter-spacing:3.000000px;}
.ls1_c00302{letter-spacing:3.600000px;}
.ls2_c00302{letter-spacing:6.600000px;}
.ls0_c00302{letter-spacing:10.986000px;}
.ls5_c00302{letter-spacing:21.000000px;}
.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;}
}
.ws2_c00302{word-spacing:-41.250000px;}
.ws0_c00302{word-spacing:-26.250000px;}
.ws4_c00302{word-spacing:-20.250000px;}
.ws1_c00302{word-spacing:-18.750000px;}
.ws3_c00302{word-spacing:-17.352000px;}
.ws5_c00302{word-spacing:0.000000px;}
._16_c00302{margin-left:-30.816000px;}
._18_c00302{margin-left:-16.881000px;}
._19_c00302{margin-left:-15.690000px;}
._14_c00302{margin-left:-13.569000px;}
._15_c00302{margin-left:-10.653000px;}
._5_c00302{margin-left:-9.078000px;}
._6_c00302{margin-left:-7.854000px;}
._a_c00302{margin-left:-6.849000px;}
._e_c00302{margin-left:-5.349000px;}
._1_c00302{margin-left:-3.888000px;}
._c_c00302{margin-left:-2.430000px;}
._4_c00302{margin-left:-1.428000px;}
._f_c00302{width:1.020000px;}
._0_c00302{width:2.058000px;}
._2_c00302{width:3.570000px;}
._8_c00302{width:5.406000px;}
._b_c00302{width:6.723000px;}
._9_c00302{width:8.364000px;}
._d_c00302{width:9.405000px;}
._13_c00302{width:10.611000px;}
._3_c00302{width:11.628000px;}
._10_c00302{width:13.608000px;}
._12_c00302{width:14.769000px;}
._1c_c00302{width:16.038000px;}
._1d_c00302{width:18.495000px;}
._17_c00302{width:30.666000px;}
._1b_c00302{width:32.361000px;}
._1e_c00302{width:39.333000px;}
._7_c00302{width:55.878000px;}
._11_c00302{width:109.350000px;}
._1a_c00302{width:225.420000px;}
.fc2_c00302{color:transparent;}
.fc1_c00302{color:rgb(128,128,128);}
.fc0_c00302{color:rgb(0,0,0);}
.fs7_c00302{font-size:48.000000px;}
.fs4_c00302{font-size:72.000000px;}
.fs3_c00302{font-size:75.000000px;}
.fs5_c00302{font-size:81.000000px;}
.fs6_c00302{font-size:84.000000px;}
.fs0_c00302{font-size:87.000000px;}
.fs2_c00302{font-size:102.000000px;}
.fs1_c00302{font-size:105.000000px;}
.y0_c00302{bottom:0.000000px;}
.y26_c00302{bottom:3.105000px;}
.y25_c00302{bottom:7.228363px;}
.y24_c00302{bottom:67.500000px;}
.y23_c00302{bottom:92.550000px;}
.y22_c00302{bottom:117.750000px;}
.y21_c00302{bottom:142.050000px;}
.y20_c00302{bottom:166.350000px;}
.y1f_c00302{bottom:190.650000px;}
.y1e_c00302{bottom:214.650000px;}
.y1d_c00302{bottom:238.350000px;}
.y1c_c00302{bottom:263.250000px;}
.y1b_c00302{bottom:287.550000px;}
.y1a_c00302{bottom:311.850000px;}
.y19_c00302{bottom:335.400000px;}
.y18_c00302{bottom:359.100000px;}
.y17_c00302{bottom:383.400000px;}
.y16_c00302{bottom:407.550000px;}
.y15_c00302{bottom:431.700000px;}
.y14_c00302{bottom:455.850000px;}
.y13_c00302{bottom:479.550000px;}
.y12_c00302{bottom:503.850000px;}
.y11_c00302{bottom:527.850000px;}
.y10_c00302{bottom:552.150000px;}
.yf_c00302{bottom:575.850000px;}
.ye_c00302{bottom:599.700000px;}
.yd_c00302{bottom:623.700000px;}
.yc_c00302{bottom:647.250000px;}
.yb_c00302{bottom:671.250000px;}
.ya_c00302{bottom:695.250000px;}
.y9_c00302{bottom:720.600000px;}
.y8_c00302{bottom:743.550000px;}
.y7_c00302{bottom:767.850000px;}
.y6_c00302{bottom:792.450000px;}
.y5_c00302{bottom:814.950000px;}
.y4_c00302{bottom:840.600000px;}
.y3_c00302{bottom:865.050000px;}
.y2_c00302{bottom:889.350000px;}
.y1_c00302{bottom:924.450000px;}
.h7_c00302{height:13.200074px;}
.h8_c00302{height:43.804688px;}
.h3_c00302{height:79.497070px;}
.h4_c00302{height:82.441406px;}
.h5_c00302{height:84.269531px;}
.h6_c00302{height:91.160156px;}
.h2_c00302{height:105.820312px;}
.h0_c00302{height:980.100000px;}
.h1_c00302{height:980.250000px;}
.w2_c00302{width:104.875500px;}
.w0_c00302{width:665.850000px;}
.w1_c00302{width:666.000000px;}
.x0_c00302{left:0.000000px;}
.x3_c00302{left:20.850000px;}
.x5_c00302{left:39.450000px;}
.x2_c00302{left:40.950000px;}
.x4_c00302{left:42.450000px;}
.x6_c00302{left:65.250000px;}
.x1_c00302{left:69.900000px;}
.x8_c00302{left:284.739258px;}
.x7_c00302{left:480.000000px;}
@media print{
.v0_c00302{vertical-align:0.000000pt;}
.ls3_c00302{letter-spacing:0.000000pt;}
.ls4_c00302{letter-spacing:2.666667pt;}
.ls1_c00302{letter-spacing:3.200000pt;}
.ls2_c00302{letter-spacing:5.866667pt;}
.ls0_c00302{letter-spacing:9.765333pt;}
.ls5_c00302{letter-spacing:18.666667pt;}
.ws2_c00302{word-spacing:-36.666667pt;}
.ws0_c00302{word-spacing:-23.333333pt;}
.ws4_c00302{word-spacing:-18.000000pt;}
.ws1_c00302{word-spacing:-16.666667pt;}
.ws3_c00302{word-spacing:-15.424000pt;}
.ws5_c00302{word-spacing:0.000000pt;}
._16_c00302{margin-left:-27.392000pt;}
._18_c00302{margin-left:-15.005333pt;}
._19_c00302{margin-left:-13.946667pt;}
._14_c00302{margin-left:-12.061333pt;}
._15_c00302{margin-left:-9.469333pt;}
._5_c00302{margin-left:-8.069333pt;}
._6_c00302{margin-left:-6.981333pt;}
._a_c00302{margin-left:-6.088000pt;}
._e_c00302{margin-left:-4.754667pt;}
._1_c00302{margin-left:-3.456000pt;}
._c_c00302{margin-left:-2.160000pt;}
._4_c00302{margin-left:-1.269333pt;}
._f_c00302{width:0.906667pt;}
._0_c00302{width:1.829333pt;}
._2_c00302{width:3.173333pt;}
._8_c00302{width:4.805333pt;}
._b_c00302{width:5.976000pt;}
._9_c00302{width:7.434667pt;}
._d_c00302{width:8.360000pt;}
._13_c00302{width:9.432000pt;}
._3_c00302{width:10.336000pt;}
._10_c00302{width:12.096000pt;}
._12_c00302{width:13.128000pt;}
._1c_c00302{width:14.256000pt;}
._1d_c00302{width:16.440000pt;}
._17_c00302{width:27.258667pt;}
._1b_c00302{width:28.765333pt;}
._1e_c00302{width:34.962667pt;}
._7_c00302{width:49.669333pt;}
._11_c00302{width:97.200000pt;}
._1a_c00302{width:200.373333pt;}
.fs7_c00302{font-size:42.666667pt;}
.fs4_c00302{font-size:64.000000pt;}
.fs3_c00302{font-size:66.666667pt;}
.fs5_c00302{font-size:72.000000pt;}
.fs6_c00302{font-size:74.666667pt;}
.fs0_c00302{font-size:77.333333pt;}
.fs2_c00302{font-size:90.666667pt;}
.fs1_c00302{font-size:93.333333pt;}
.y0_c00302{bottom:0.000000pt;}
.y26_c00302{bottom:2.760000pt;}
.y25_c00302{bottom:6.425212pt;}
.y24_c00302{bottom:60.000000pt;}
.y23_c00302{bottom:82.266667pt;}
.y22_c00302{bottom:104.666667pt;}
.y21_c00302{bottom:126.266667pt;}
.y20_c00302{bottom:147.866667pt;}
.y1f_c00302{bottom:169.466667pt;}
.y1e_c00302{bottom:190.800000pt;}
.y1d_c00302{bottom:211.866667pt;}
.y1c_c00302{bottom:234.000000pt;}
.y1b_c00302{bottom:255.600000pt;}
.y1a_c00302{bottom:277.200000pt;}
.y19_c00302{bottom:298.133333pt;}
.y18_c00302{bottom:319.200000pt;}
.y17_c00302{bottom:340.800000pt;}
.y16_c00302{bottom:362.266667pt;}
.y15_c00302{bottom:383.733333pt;}
.y14_c00302{bottom:405.200000pt;}
.y13_c00302{bottom:426.266667pt;}
.y12_c00302{bottom:447.866667pt;}
.y11_c00302{bottom:469.200000pt;}
.y10_c00302{bottom:490.800000pt;}
.yf_c00302{bottom:511.866667pt;}
.ye_c00302{bottom:533.066667pt;}
.yd_c00302{bottom:554.400000pt;}
.yc_c00302{bottom:575.333333pt;}
.yb_c00302{bottom:596.666667pt;}
.ya_c00302{bottom:618.000000pt;}
.y9_c00302{bottom:640.533333pt;}
.y8_c00302{bottom:660.933333pt;}
.y7_c00302{bottom:682.533333pt;}
.y6_c00302{bottom:704.400000pt;}
.y5_c00302{bottom:724.400000pt;}
.y4_c00302{bottom:747.200000pt;}
.y3_c00302{bottom:768.933333pt;}
.y2_c00302{bottom:790.533333pt;}
.y1_c00302{bottom:821.733333pt;}
.h7_c00302{height:11.733399pt;}
.h8_c00302{height:38.937500pt;}
.h3_c00302{height:70.664062pt;}
.h4_c00302{height:73.281250pt;}
.h5_c00302{height:74.906250pt;}
.h6_c00302{height:81.031250pt;}
.h2_c00302{height:94.062500pt;}
.h0_c00302{height:871.200000pt;}
.h1_c00302{height:871.333333pt;}
.w2_c00302{width:93.222667pt;}
.w0_c00302{width:591.866667pt;}
.w1_c00302{width:592.000000pt;}
.x0_c00302{left:0.000000pt;}
.x3_c00302{left:18.533333pt;}
.x5_c00302{left:35.066667pt;}
.x2_c00302{left:36.400000pt;}
.x4_c00302{left:37.733333pt;}
.x6_c00302{left:58.000000pt;}
.x1_c00302{left:62.133333pt;}
.x8_c00302{left:253.101563pt;}
.x7_c00302{left:426.666667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_510897e9b7ad5da78a8c3bb2.woff2')format("woff");}.ff1_c00303{font-family:ff1_c00303;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00303;src:url('chunks/assets/font_52bb6f6e0c3812ca3f0c8a2c.woff2')format("woff");}.ff2_c00303{font-family:ff2_c00303;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00303;src:url('chunks/assets/font_996185829d3b6b26699935a0.woff2')format("woff");}.ff3_c00303{font-family:ff3_c00303;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00303;src:url('chunks/assets/font_1a967e3c5fc58c929254de30.woff2')format("woff");}.ff4_c00303{font-family:ff4_c00303;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00303;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c00303{font-family:ff5_c00303;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00303{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00303{vertical-align:0.000000px;}
.ls0_c00303{letter-spacing:0.000000px;}
.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:-59.184000px;}
.ws1_c00303{word-spacing:0.000000px;}
._1f_c00303{margin-left:-26.244000px;}
._b_c00303{margin-left:-21.708000px;}
._11_c00303{margin-left:-17.658000px;}
._10_c00303{margin-left:-12.312000px;}
._f_c00303{margin-left:-7.938000px;}
._12_c00303{margin-left:-6.885000px;}
._a_c00303{margin-left:-5.103000px;}
._1_c00303{margin-left:-2.997000px;}
._3_c00303{margin-left:-1.782000px;}
._2_c00303{width:1.215000px;}
._4_c00303{width:2.997000px;}
._0_c00303{width:4.860000px;}
._7_c00303{width:6.318000px;}
._5_c00303{width:7.614000px;}
._8_c00303{width:9.072000px;}
._14_c00303{width:10.368000px;}
._6_c00303{width:11.664000px;}
._c_c00303{width:13.608000px;}
._9_c00303{width:15.066000px;}
._19_c00303{width:16.119000px;}
._e_c00303{width:17.739000px;}
._1d_c00303{width:18.954000px;}
._1a_c00303{width:26.892000px;}
._22_c00303{width:32.319000px;}
._d_c00303{width:35.511000px;}
._16_c00303{width:36.879000px;}
._17_c00303{width:40.014000px;}
._15_c00303{width:43.011000px;}
._1e_c00303{width:61.722000px;}
._20_c00303{width:73.953000px;}
._25_c00303{width:111.246000px;}
._18_c00303{width:121.137000px;}
._21_c00303{width:131.706000px;}
._23_c00303{width:148.554000px;}
._1b_c00303{width:222.993000px;}
._1c_c00303{width:288.684000px;}
._13_c00303{width:314.199000px;}
._24_c00303{width:442.857000px;}
.fc2_c00303{color:transparent;}
.fc1_c00303{color:rgb(128,128,128);}
.fc0_c00303{color:rgb(0,0,0);}
.fs5_c00303{font-size:48.000000px;}
.fs4_c00303{font-size:57.000000px;}
.fs2_c00303{font-size:66.000000px;}
.fs1_c00303{font-size:72.000000px;}
.fs3_c00303{font-size:78.000000px;}
.fs0_c00303{font-size:81.000000px;}
.y0_c00303{bottom:0.000000px;}
.y22_c00303{bottom:3.105000px;}
.y21_c00303{bottom:7.228357px;}
.y20_c00303{bottom:121.230000px;}
.y1f_c00303{bottom:145.830000px;}
.y1e_c00303{bottom:170.730000px;}
.y1d_c00303{bottom:195.180000px;}
.y1c_c00303{bottom:217.980000px;}
.y1b_c00303{bottom:243.780000px;}
.y1a_c00303{bottom:268.680000px;}
.y19_c00303{bottom:293.280000px;}
.y18_c00303{bottom:316.980000px;}
.y17_c00303{bottom:341.280000px;}
.y16_c00303{bottom:365.880000px;}
.y15_c00303{bottom:390.180000px;}
.y14_c00303{bottom:414.780000px;}
.y13_c00303{bottom:438.780000px;}
.y12_c00303{bottom:462.480000px;}
.y11_c00303{bottom:486.630000px;}
.y10_c00303{bottom:510.930000px;}
.yf_c00303{bottom:535.230000px;}
.ye_c00303{bottom:559.530000px;}
.yd_c00303{bottom:583.530000px;}
.yc_c00303{bottom:608.580000px;}
.yb_c00303{bottom:633.780000px;}
.ya_c00303{bottom:656.880000px;}
.y9_c00303{bottom:681.180000px;}
.y8_c00303{bottom:705.780000px;}
.y7_c00303{bottom:730.380000px;}
.y6_c00303{bottom:754.680000px;}
.y5_c00303{bottom:778.680000px;}
.y4_c00303{bottom:802.680000px;}
.y3_c00303{bottom:826.830000px;}
.y2_c00303{bottom:851.130000px;}
.y1_c00303{bottom:875.430000px;}
.h5_c00303{height:13.200074px;}
.h6_c00303{height:43.804688px;}
.h2_c00303{height:79.497070px;}
.h3_c00303{height:91.160156px;}
.h4_c00303{height:98.756836px;}
.h1_c00303{height:978.750000px;}
.h0_c00303{height:979.050000px;}
.w2_c00303{width:104.875500px;}
.w0_c00303{width:656.100000px;}
.w1_c00303{width:656.250000px;}
.x0_c00303{left:0.000000px;}
.x9_c00303{left:51.600000px;}
.x3_c00303{left:55.050000px;}
.x5_c00303{left:56.400000px;}
.x8_c00303{left:70.200000px;}
.xc_c00303{left:100.350000px;}
.xb_c00303{left:140.400000px;}
.x6_c00303{left:142.350000px;}
.x7_c00303{left:144.150000px;}
.xa_c00303{left:145.500000px;}
.x4_c00303{left:147.150000px;}
.x2_c00303{left:148.950000px;}
.x1_c00303{left:150.150000px;}
.xd_c00303{left:225.900000px;}
.xf_c00303{left:279.864258px;}
.xe_c00303{left:308.100000px;}
@media print{
.v0_c00303{vertical-align:0.000000pt;}
.ls0_c00303{letter-spacing:0.000000pt;}
.ws0_c00303{word-spacing:-52.608000pt;}
.ws1_c00303{word-spacing:0.000000pt;}
._1f_c00303{margin-left:-23.328000pt;}
._b_c00303{margin-left:-19.296000pt;}
._11_c00303{margin-left:-15.696000pt;}
._10_c00303{margin-left:-10.944000pt;}
._f_c00303{margin-left:-7.056000pt;}
._12_c00303{margin-left:-6.120000pt;}
._a_c00303{margin-left:-4.536000pt;}
._1_c00303{margin-left:-2.664000pt;}
._3_c00303{margin-left:-1.584000pt;}
._2_c00303{width:1.080000pt;}
._4_c00303{width:2.664000pt;}
._0_c00303{width:4.320000pt;}
._7_c00303{width:5.616000pt;}
._5_c00303{width:6.768000pt;}
._8_c00303{width:8.064000pt;}
._14_c00303{width:9.216000pt;}
._6_c00303{width:10.368000pt;}
._c_c00303{width:12.096000pt;}
._9_c00303{width:13.392000pt;}
._19_c00303{width:14.328000pt;}
._e_c00303{width:15.768000pt;}
._1d_c00303{width:16.848000pt;}
._1a_c00303{width:23.904000pt;}
._22_c00303{width:28.728000pt;}
._d_c00303{width:31.565333pt;}
._16_c00303{width:32.781333pt;}
._17_c00303{width:35.568000pt;}
._15_c00303{width:38.232000pt;}
._1e_c00303{width:54.864000pt;}
._20_c00303{width:65.736000pt;}
._25_c00303{width:98.885333pt;}
._18_c00303{width:107.677333pt;}
._21_c00303{width:117.072000pt;}
._23_c00303{width:132.048000pt;}
._1b_c00303{width:198.216000pt;}
._1c_c00303{width:256.608000pt;}
._13_c00303{width:279.288000pt;}
._24_c00303{width:393.650667pt;}
.fs5_c00303{font-size:42.666667pt;}
.fs4_c00303{font-size:50.666667pt;}
.fs2_c00303{font-size:58.666667pt;}
.fs1_c00303{font-size:64.000000pt;}
.fs3_c00303{font-size:69.333333pt;}
.fs0_c00303{font-size:72.000000pt;}
.y0_c00303{bottom:0.000000pt;}
.y22_c00303{bottom:2.760000pt;}
.y21_c00303{bottom:6.425206pt;}
.y20_c00303{bottom:107.760000pt;}
.y1f_c00303{bottom:129.626667pt;}
.y1e_c00303{bottom:151.760000pt;}
.y1d_c00303{bottom:173.493333pt;}
.y1c_c00303{bottom:193.760000pt;}
.y1b_c00303{bottom:216.693333pt;}
.y1a_c00303{bottom:238.826667pt;}
.y19_c00303{bottom:260.693333pt;}
.y18_c00303{bottom:281.760000pt;}
.y17_c00303{bottom:303.360000pt;}
.y16_c00303{bottom:325.226667pt;}
.y15_c00303{bottom:346.826667pt;}
.y14_c00303{bottom:368.693333pt;}
.y13_c00303{bottom:390.026667pt;}
.y12_c00303{bottom:411.093333pt;}
.y11_c00303{bottom:432.560000pt;}
.y10_c00303{bottom:454.160000pt;}
.yf_c00303{bottom:475.760000pt;}
.ye_c00303{bottom:497.360000pt;}
.yd_c00303{bottom:518.693333pt;}
.yc_c00303{bottom:540.960000pt;}
.yb_c00303{bottom:563.360000pt;}
.ya_c00303{bottom:583.893333pt;}
.y9_c00303{bottom:605.493333pt;}
.y8_c00303{bottom:627.360000pt;}
.y7_c00303{bottom:649.226667pt;}
.y6_c00303{bottom:670.826667pt;}
.y5_c00303{bottom:692.160000pt;}
.y4_c00303{bottom:713.493333pt;}
.y3_c00303{bottom:734.960000pt;}
.y2_c00303{bottom:756.560000pt;}
.y1_c00303{bottom:778.160000pt;}
.h5_c00303{height:11.733399pt;}
.h6_c00303{height:38.937500pt;}
.h2_c00303{height:70.664062pt;}
.h3_c00303{height:81.031250pt;}
.h4_c00303{height:87.783854pt;}
.h1_c00303{height:870.000000pt;}
.h0_c00303{height:870.266667pt;}
.w2_c00303{width:93.222667pt;}
.w0_c00303{width:583.200000pt;}
.w1_c00303{width:583.333333pt;}
.x0_c00303{left:0.000000pt;}
.x9_c00303{left:45.866667pt;}
.x3_c00303{left:48.933333pt;}
.x5_c00303{left:50.133333pt;}
.x8_c00303{left:62.400000pt;}
.xc_c00303{left:89.200000pt;}
.xb_c00303{left:124.800000pt;}
.x6_c00303{left:126.533333pt;}
.x7_c00303{left:128.133333pt;}
.xa_c00303{left:129.333333pt;}
.x4_c00303{left:130.800000pt;}
.x2_c00303{left:132.400000pt;}
.x1_c00303{left:133.466667pt;}
.xd_c00303{left:200.800000pt;}
.xf_c00303{left:248.768229pt;}
.xe_c00303{left:273.866667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f5e713534b108e45f26372c7.woff2')format("woff");}.ff1_c00304{font-family:ff1_c00304;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00304;src:url('chunks/assets/font_c8aa5e7db08b0167c9196fe4.woff2')format("woff");}.ff2_c00304{font-family:ff2_c00304;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00304;src:url('chunks/assets/font_4499417578349fc5aafe9c32.woff2')format("woff");}.ff3_c00304{font-family:ff3_c00304;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00304;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff4_c00304{font-family:ff4_c00304;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00304;src:url('chunks/assets/font_7a43970de3cdee956bd4d1f5.woff2')format("woff");}.ff5_c00304{font-family:ff5_c00304;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00304;src:url('chunks/assets/font_3668f9103a126b3d621923a8.woff2')format("woff");}.ff6_c00304{font-family:ff6_c00304;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00304;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c00304{font-family:ff7_c00304;line-height:1.219238;font-style: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;}
.ls3_c00304{letter-spacing:0.000000px;}
.ls2_c00304{letter-spacing:3.000000px;}
.ls0_c00304{letter-spacing:15.864000px;}
.ls1_c00304{letter-spacing:22.500000px;}
.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;}
}
.ws2_c00304{word-spacing:-20.250000px;}
.ws0_c00304{word-spacing:-17.352000px;}
.ws1_c00304{word-spacing:-16.500000px;}
.ws3_c00304{word-spacing:0.000000px;}
._18_c00304{margin-left:-16.200000px;}
._13_c00304{margin-left:-14.796000px;}
._19_c00304{margin-left:-13.284000px;}
._15_c00304{margin-left:-12.174000px;}
._f_c00304{margin-left:-10.224000px;}
._12_c00304{margin-left:-8.208000px;}
._10_c00304{margin-left:-7.008000px;}
._2_c00304{margin-left:-5.508000px;}
._c_c00304{margin-left:-4.464000px;}
._1_c00304{margin-left:-2.856000px;}
._0_c00304{margin-left:-1.530000px;}
._d_c00304{width:1.224000px;}
._b_c00304{width:2.448000px;}
._a_c00304{width:3.600000px;}
._6_c00304{width:4.824000px;}
._9_c00304{width:6.480000px;}
._5_c00304{width:8.424000px;}
._4_c00304{width:9.864000px;}
._8_c00304{width:11.016000px;}
._14_c00304{width:12.438000px;}
._11_c00304{width:13.779000px;}
._7_c00304{width:16.344000px;}
._16_c00304{width:17.961000px;}
._17_c00304{width:21.696000px;}
._e_c00304{width:24.480000px;}
._1a_c00304{width:25.977000px;}
._3_c00304{width:150.378000px;}
.fc2_c00304{color:transparent;}
.fc1_c00304{color:rgb(128,128,128);}
.fc0_c00304{color:rgb(0,0,0);}
.fs7_c00304{font-size:48.000000px;}
.fs6_c00304{font-size:51.000000px;}
.fs5_c00304{font-size:63.000000px;}
.fs3_c00304{font-size:66.000000px;}
.fs2_c00304{font-size:72.000000px;}
.fs4_c00304{font-size:81.000000px;}
.fs1_c00304{font-size:87.000000px;}
.fs0_c00304{font-size:102.000000px;}
.y0_c00304{bottom:0.000000px;}
.y23_c00304{bottom:3.105000px;}
.y22_c00304{bottom:7.228355px;}
.y21_c00304{bottom:103.635000px;}
.y20_c00304{bottom:127.785000px;}
.y1f_c00304{bottom:152.535000px;}
.y1e_c00304{bottom:176.835000px;}
.y1d_c00304{bottom:201.735000px;}
.y1c_c00304{bottom:226.035000px;}
.y1b_c00304{bottom:250.635000px;}
.y1a_c00304{bottom:274.935000px;}
.y19_c00304{bottom:298.635000px;}
.y18_c00304{bottom:322.935000px;}
.y17_c00304{bottom:346.635000px;}
.y16_c00304{bottom:370.185000px;}
.y15_c00304{bottom:394.185000px;}
.y14_c00304{bottom:418.185000px;}
.y13_c00304{bottom:442.035000px;}
.y12_c00304{bottom:466.035000px;}
.y11_c00304{bottom:489.735000px;}
.y10_c00304{bottom:514.035000px;}
.yf_c00304{bottom:538.335000px;}
.ye_c00304{bottom:562.485000px;}
.yd_c00304{bottom:586.185000px;}
.yc_c00304{bottom:611.835000px;}
.yb_c00304{bottom:635.085000px;}
.ya_c00304{bottom:659.385000px;}
.y9_c00304{bottom:683.085000px;}
.y8_c00304{bottom:707.085000px;}
.y7_c00304{bottom:731.685000px;}
.y6_c00304{bottom:755.985000px;}
.y5_c00304{bottom:811.635000px;}
.y4_c00304{bottom:840.285000px;}
.y3_c00304{bottom:868.635000px;}
.y2_c00304{bottom:897.435000px;}
.y1_c00304{bottom:934.785000px;}
.h7_c00304{height:13.200074px;}
.h8_c00304{height:43.804688px;}
.h5_c00304{height:79.497070px;}
.h4_c00304{height:84.269531px;}
.h3_c00304{height:91.160156px;}
.h6_c00304{height:91.176000px;}
.h2_c00304{height:100.057617px;}
.h0_c00304{height:977.925000px;}
.h1_c00304{height:978.000000px;}
.w2_c00304{width:104.875500px;}
.w0_c00304{width:664.200000px;}
.w1_c00304{width:664.500000px;}
.x0_c00304{left:0.000000px;}
.xc_c00304{left:33.450000px;}
.x9_c00304{left:35.400000px;}
.xb_c00304{left:36.750000px;}
.x2_c00304{left:37.800000px;}
.xa_c00304{left:38.850000px;}
.x3_c00304{left:106.200000px;}
.x4_c00304{left:135.000000px;}
.x8_c00304{left:166.650000px;}
.x5_c00304{left:168.000000px;}
.x6_c00304{left:169.350000px;}
.x7_c00304{left:171.000000px;}
.x1_c00304{left:220.350000px;}
.xd_c00304{left:283.914230px;}
@media print{
.v0_c00304{vertical-align:0.000000pt;}
.ls3_c00304{letter-spacing:0.000000pt;}
.ls2_c00304{letter-spacing:2.666667pt;}
.ls0_c00304{letter-spacing:14.101333pt;}
.ls1_c00304{letter-spacing:20.000000pt;}
.ws2_c00304{word-spacing:-18.000000pt;}
.ws0_c00304{word-spacing:-15.424000pt;}
.ws1_c00304{word-spacing:-14.666667pt;}
.ws3_c00304{word-spacing:0.000000pt;}
._18_c00304{margin-left:-14.400000pt;}
._13_c00304{margin-left:-13.152000pt;}
._19_c00304{margin-left:-11.808000pt;}
._15_c00304{margin-left:-10.821333pt;}
._f_c00304{margin-left:-9.088000pt;}
._12_c00304{margin-left:-7.296000pt;}
._10_c00304{margin-left:-6.229333pt;}
._2_c00304{margin-left:-4.896000pt;}
._c_c00304{margin-left:-3.968000pt;}
._1_c00304{margin-left:-2.538667pt;}
._0_c00304{margin-left:-1.360000pt;}
._d_c00304{width:1.088000pt;}
._b_c00304{width:2.176000pt;}
._a_c00304{width:3.200000pt;}
._6_c00304{width:4.288000pt;}
._9_c00304{width:5.760000pt;}
._5_c00304{width:7.488000pt;}
._4_c00304{width:8.768000pt;}
._8_c00304{width:9.792000pt;}
._14_c00304{width:11.056000pt;}
._11_c00304{width:12.248000pt;}
._7_c00304{width:14.528000pt;}
._16_c00304{width:15.965333pt;}
._17_c00304{width:19.285333pt;}
._e_c00304{width:21.760000pt;}
._1a_c00304{width:23.090667pt;}
._3_c00304{width:133.669333pt;}
.fs7_c00304{font-size:42.666667pt;}
.fs6_c00304{font-size:45.333333pt;}
.fs5_c00304{font-size:56.000000pt;}
.fs3_c00304{font-size:58.666667pt;}
.fs2_c00304{font-size:64.000000pt;}
.fs4_c00304{font-size:72.000000pt;}
.fs1_c00304{font-size:77.333333pt;}
.fs0_c00304{font-size:90.666667pt;}
.y0_c00304{bottom:0.000000pt;}
.y23_c00304{bottom:2.760000pt;}
.y22_c00304{bottom:6.425204pt;}
.y21_c00304{bottom:92.120000pt;}
.y20_c00304{bottom:113.586667pt;}
.y1f_c00304{bottom:135.586667pt;}
.y1e_c00304{bottom:157.186667pt;}
.y1d_c00304{bottom:179.320000pt;}
.y1c_c00304{bottom:200.920000pt;}
.y1b_c00304{bottom:222.786667pt;}
.y1a_c00304{bottom:244.386667pt;}
.y19_c00304{bottom:265.453333pt;}
.y18_c00304{bottom:287.053333pt;}
.y17_c00304{bottom:308.120000pt;}
.y16_c00304{bottom:329.053333pt;}
.y15_c00304{bottom:350.386667pt;}
.y14_c00304{bottom:371.720000pt;}
.y13_c00304{bottom:392.920000pt;}
.y12_c00304{bottom:414.253333pt;}
.y11_c00304{bottom:435.320000pt;}
.y10_c00304{bottom:456.920000pt;}
.yf_c00304{bottom:478.520000pt;}
.ye_c00304{bottom:499.986667pt;}
.yd_c00304{bottom:521.053333pt;}
.yc_c00304{bottom:543.853333pt;}
.yb_c00304{bottom:564.520000pt;}
.ya_c00304{bottom:586.120000pt;}
.y9_c00304{bottom:607.186667pt;}
.y8_c00304{bottom:628.520000pt;}
.y7_c00304{bottom:650.386667pt;}
.y6_c00304{bottom:671.986667pt;}
.y5_c00304{bottom:721.453333pt;}
.y4_c00304{bottom:746.920000pt;}
.y3_c00304{bottom:772.120000pt;}
.y2_c00304{bottom:797.720000pt;}
.y1_c00304{bottom:830.920000pt;}
.h7_c00304{height:11.733399pt;}
.h8_c00304{height:38.937500pt;}
.h5_c00304{height:70.664062pt;}
.h4_c00304{height:74.906250pt;}
.h3_c00304{height:81.031250pt;}
.h6_c00304{height:81.045333pt;}
.h2_c00304{height:88.940104pt;}
.h0_c00304{height:869.266667pt;}
.h1_c00304{height:869.333333pt;}
.w2_c00304{width:93.222667pt;}
.w0_c00304{width:590.400000pt;}
.w1_c00304{width:590.666667pt;}
.x0_c00304{left:0.000000pt;}
.xc_c00304{left:29.733333pt;}
.x9_c00304{left:31.466667pt;}
.xb_c00304{left:32.666667pt;}
.x2_c00304{left:33.600000pt;}
.xa_c00304{left:34.533333pt;}
.x3_c00304{left:94.400000pt;}
.x4_c00304{left:120.000000pt;}
.x8_c00304{left:148.133333pt;}
.x5_c00304{left:149.333333pt;}
.x6_c00304{left:150.533333pt;}
.x7_c00304{left:152.000000pt;}
.x1_c00304{left:195.866667pt;}
.xd_c00304{left:252.368205pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0f821a81b094cf50c7937fea.woff2')format("woff");}.ff1_c00305{font-family:ff1_c00305;line-height:1.311035;font-style:normal;font-weight:normal;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_373aad32ecc2482597512d4b.woff2')format("woff");}.ff2_c00305{font-family:ff2_c00305;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00305;src:url('chunks/assets/font_8e59a8eaf59a409195b56fa7.woff2')format("woff");}.ff3_c00305{font-family:ff3_c00305;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00305;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff4_c00305{font-family:ff4_c00305;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00305;src:url('chunks/assets/font_c68cd35f9accf34fe7c31184.woff2')format("woff");}.ff5_c00305{font-family:ff5_c00305;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00305;src:url('chunks/assets/font_9da31019a66b82e7676c89a4.woff2')format("woff");}.ff6_c00305{font-family:ff6_c00305;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00305;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c00305{font-family:ff7_c00305;line-height:1.219238;font-style: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;}
.ls2_c00305{letter-spacing:-6.000000px;}
.ls1_c00305{letter-spacing:0.000000px;}
.ls0_c00305{letter-spacing:18.000000px;}
.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;}
}
.ws3_c00305{word-spacing:-61.686000px;}
.ws2_c00305{word-spacing:-59.184000px;}
.ws0_c00305{word-spacing:-36.000000px;}
.ws4_c00305{word-spacing:-2.964000px;}
.ws1_c00305{word-spacing:-2.508000px;}
.ws5_c00305{word-spacing:0.000000px;}
._17_c00305{margin-left:-14.559000px;}
._14_c00305{margin-left:-12.900000px;}
._12_c00305{margin-left:-9.720000px;}
._1_c00305{margin-left:-8.424000px;}
._15_c00305{margin-left:-7.314000px;}
._0_c00305{margin-left:-6.192000px;}
._3_c00305{margin-left:-4.212000px;}
._7_c00305{margin-left:-2.835000px;}
._8_c00305{margin-left:-1.053000px;}
._9_c00305{width:1.215000px;}
._5_c00305{width:2.349000px;}
._2_c00305{width:3.564000px;}
._4_c00305{width:5.508000px;}
._a_c00305{width:6.804000px;}
._6_c00305{width:8.262000px;}
._b_c00305{width:10.044000px;}
._f_c00305{width:11.340000px;}
._d_c00305{width:12.555000px;}
._16_c00305{width:13.932000px;}
._10_c00305{width:15.831000px;}
._e_c00305{width:17.496000px;}
._1a_c00305{width:18.789000px;}
._19_c00305{width:20.370000px;}
._1b_c00305{width:21.951000px;}
._18_c00305{width:23.214000px;}
._1c_c00305{width:24.369000px;}
._13_c00305{width:25.686000px;}
._c_c00305{width:35.721000px;}
._11_c00305{width:41.229000px;}
.fc2_c00305{color:transparent;}
.fc1_c00305{color:rgb(128,128,128);}
.fc0_c00305{color:rgb(0,0,0);}
.fs4_c00305{font-size:48.000000px;}
.fs2_c00305{font-size:57.000000px;}
.fs0_c00305{font-size:72.000000px;}
.fs1_c00305{font-size:81.000000px;}
.fs3_c00305{font-size:87.000000px;}
.y0_c00305{bottom:0.000000px;}
.y26_c00305{bottom:3.105000px;}
.y25_c00305{bottom:7.228357px;}
.y24_c00305{bottom:71.880000px;}
.y23_c00305{bottom:99.930000px;}
.y22_c00305{bottom:124.830000px;}
.y21_c00305{bottom:149.280000px;}
.y20_c00305{bottom:173.430000px;}
.y1f_c00305{bottom:198.180000px;}
.y1e_c00305{bottom:222.480000px;}
.y1d_c00305{bottom:246.780000px;}
.y1c_c00305{bottom:271.380000px;}
.y1b_c00305{bottom:295.680000px;}
.y1_c00305{bottom:308.880000px;}
.y1a_c00305{bottom:320.580000px;}
.y19_c00305{bottom:344.880000px;}
.y18_c00305{bottom:369.180000px;}
.y17_c00305{bottom:392.880000px;}
.y16_c00305{bottom:417.180000px;}
.y15_c00305{bottom:441.480000px;}
.y14_c00305{bottom:465.780000px;}
.y13_c00305{bottom:489.780000px;}
.y12_c00305{bottom:514.980000px;}
.y11_c00305{bottom:537.930000px;}
.y10_c00305{bottom:561.630000px;}
.yf_c00305{bottom:585.930000px;}
.ye_c00305{bottom:609.930000px;}
.yd_c00305{bottom:634.530000px;}
.yc_c00305{bottom:658.530000px;}
.yb_c00305{bottom:682.380000px;}
.ya_c00305{bottom:706.080000px;}
.y9_c00305{bottom:730.680000px;}
.y8_c00305{bottom:754.680000px;}
.y7_c00305{bottom:778.980000px;}
.y6_c00305{bottom:802.680000px;}
.y5_c00305{bottom:826.980000px;}
.y4_c00305{bottom:851.130000px;}
.y3_c00305{bottom:875.130000px;}
.y2_c00305{bottom:899.430000px;}
.h7_c00305{height:13.200074px;}
.h8_c00305{height:43.804688px;}
.h5_c00305{height:57.445312px;}
.h1_c00305{height:72.562500px;}
.h2_c00305{height:79.497070px;}
.h6_c00305{height:84.269531px;}
.h3_c00305{height:91.160156px;}
.h4_c00305{height:91.176000px;}
.h0_c00305{height:995.250000px;}
.w2_c00305{width:104.875500px;}
.w0_c00305{width:667.425000px;}
.w1_c00305{width:667.500000px;}
.x0_c00305{left:0.000000px;}
.x1_c00305{left:47.850000px;}
.x5_c00305{left:133.950000px;}
.x4_c00305{left:135.300000px;}
.x2_c00305{left:136.350000px;}
.x3_c00305{left:138.000000px;}
.x6_c00305{left:139.800000px;}
.x7_c00305{left:150.600000px;}
.x9_c00305{left:285.526749px;}
.x8_c00305{left:619.650000px;}
@media print{
.v0_c00305{vertical-align:0.000000pt;}
.ls2_c00305{letter-spacing:-5.333333pt;}
.ls1_c00305{letter-spacing:0.000000pt;}
.ls0_c00305{letter-spacing:16.000000pt;}
.ws3_c00305{word-spacing:-54.832000pt;}
.ws2_c00305{word-spacing:-52.608000pt;}
.ws0_c00305{word-spacing:-32.000000pt;}
.ws4_c00305{word-spacing:-2.634667pt;}
.ws1_c00305{word-spacing:-2.229333pt;}
.ws5_c00305{word-spacing:0.000000pt;}
._17_c00305{margin-left:-12.941333pt;}
._14_c00305{margin-left:-11.466667pt;}
._12_c00305{margin-left:-8.640000pt;}
._1_c00305{margin-left:-7.488000pt;}
._15_c00305{margin-left:-6.501333pt;}
._0_c00305{margin-left:-5.504000pt;}
._3_c00305{margin-left:-3.744000pt;}
._7_c00305{margin-left:-2.520000pt;}
._8_c00305{margin-left:-0.936000pt;}
._9_c00305{width:1.080000pt;}
._5_c00305{width:2.088000pt;}
._2_c00305{width:3.168000pt;}
._4_c00305{width:4.896000pt;}
._a_c00305{width:6.048000pt;}
._6_c00305{width:7.344000pt;}
._b_c00305{width:8.928000pt;}
._f_c00305{width:10.080000pt;}
._d_c00305{width:11.160000pt;}
._16_c00305{width:12.384000pt;}
._10_c00305{width:14.072000pt;}
._e_c00305{width:15.552000pt;}
._1a_c00305{width:16.701333pt;}
._19_c00305{width:18.106667pt;}
._1b_c00305{width:19.512000pt;}
._18_c00305{width:20.634667pt;}
._1c_c00305{width:21.661333pt;}
._13_c00305{width:22.832000pt;}
._c_c00305{width:31.752000pt;}
._11_c00305{width:36.648000pt;}
.fs4_c00305{font-size:42.666667pt;}
.fs2_c00305{font-size:50.666667pt;}
.fs0_c00305{font-size:64.000000pt;}
.fs1_c00305{font-size:72.000000pt;}
.fs3_c00305{font-size:77.333333pt;}
.y0_c00305{bottom:0.000000pt;}
.y26_c00305{bottom:2.760000pt;}
.y25_c00305{bottom:6.425206pt;}
.y24_c00305{bottom:63.893333pt;}
.y23_c00305{bottom:88.826667pt;}
.y22_c00305{bottom:110.960000pt;}
.y21_c00305{bottom:132.693333pt;}
.y20_c00305{bottom:154.160000pt;}
.y1f_c00305{bottom:176.160000pt;}
.y1e_c00305{bottom:197.760000pt;}
.y1d_c00305{bottom:219.360000pt;}
.y1c_c00305{bottom:241.226667pt;}
.y1b_c00305{bottom:262.826667pt;}
.y1_c00305{bottom:274.560000pt;}
.y1a_c00305{bottom:284.960000pt;}
.y19_c00305{bottom:306.560000pt;}
.y18_c00305{bottom:328.160000pt;}
.y17_c00305{bottom:349.226667pt;}
.y16_c00305{bottom:370.826667pt;}
.y15_c00305{bottom:392.426667pt;}
.y14_c00305{bottom:414.026667pt;}
.y13_c00305{bottom:435.360000pt;}
.y12_c00305{bottom:457.760000pt;}
.y11_c00305{bottom:478.160000pt;}
.y10_c00305{bottom:499.226667pt;}
.yf_c00305{bottom:520.826667pt;}
.ye_c00305{bottom:542.160000pt;}
.yd_c00305{bottom:564.026667pt;}
.yc_c00305{bottom:585.360000pt;}
.yb_c00305{bottom:606.560000pt;}
.ya_c00305{bottom:627.626667pt;}
.y9_c00305{bottom:649.493333pt;}
.y8_c00305{bottom:670.826667pt;}
.y7_c00305{bottom:692.426667pt;}
.y6_c00305{bottom:713.493333pt;}
.y5_c00305{bottom:735.093333pt;}
.y4_c00305{bottom:756.560000pt;}
.y3_c00305{bottom:777.893333pt;}
.y2_c00305{bottom:799.493333pt;}
.h7_c00305{height:11.733399pt;}
.h8_c00305{height:38.937500pt;}
.h5_c00305{height:51.062500pt;}
.h1_c00305{height:64.500000pt;}
.h2_c00305{height:70.664062pt;}
.h6_c00305{height:74.906250pt;}
.h3_c00305{height:81.031250pt;}
.h4_c00305{height:81.045333pt;}
.h0_c00305{height:884.666667pt;}
.w2_c00305{width:93.222667pt;}
.w0_c00305{width:593.266667pt;}
.w1_c00305{width:593.333333pt;}
.x0_c00305{left:0.000000pt;}
.x1_c00305{left:42.533333pt;}
.x5_c00305{left:119.066667pt;}
.x4_c00305{left:120.266667pt;}
.x2_c00305{left:121.200000pt;}
.x3_c00305{left:122.666667pt;}
.x6_c00305{left:124.266667pt;}
.x7_c00305{left:133.866667pt;}
.x9_c00305{left:253.801554pt;}
.x8_c00305{left:550.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_c1a0a339fba1784de9f065d3.woff2')format("woff");}.ff1_c00306{font-family:ff1_c00306;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00306;src:url('chunks/assets/font_5c76af2ba1687d58937e121f.woff2')format("woff");}.ff2_c00306{font-family:ff2_c00306;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00306;src:url('chunks/assets/font_e5adfbf222ef82a5c5278e39.woff2')format("woff");}.ff3_c00306{font-family:ff3_c00306;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00306;src:url('chunks/assets/font_d8f56fb4690a7d866f6019c7.woff2')format("woff");}.ff4_c00306{font-family:ff4_c00306;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00306;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff5_c00306{font-family:ff5_c00306;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00306;src:url('chunks/assets/font_cc60a82d2f6a8ae755794cef.woff2')format("woff");}.ff6_c00306{font-family:ff6_c00306;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00306;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c00306{font-family:ff7_c00306;line-height:1.219238;font-style: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;}
.ls3_c00306{letter-spacing:-6.000000px;}
.ls2_c00306{letter-spacing:0.000000px;}
.ls0_c00306{letter-spacing:3.000000px;}
.ls1_c00306{letter-spacing:6.000000px;}
.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;}
}
.ws3_c00306{word-spacing:-61.686000px;}
.ws0_c00306{word-spacing:-58.500000px;}
.ws2_c00306{word-spacing:-33.000000px;}
.ws1_c00306{word-spacing:-17.352000px;}
.ws4_c00306{word-spacing:0.000000px;}
._1f_c00306{margin-left:-30.129000px;}
._b_c00306{margin-left:-28.269000px;}
._14_c00306{margin-left:-26.361000px;}
._5_c00306{margin-left:-24.582000px;}
._11_c00306{margin-left:-22.680000px;}
._13_c00306{margin-left:-16.767000px;}
._1b_c00306{margin-left:-13.752000px;}
._1e_c00306{margin-left:-12.528000px;}
._8_c00306{margin-left:-11.100000px;}
._23_c00306{margin-left:-9.990000px;}
._1d_c00306{margin-left:-8.970000px;}
._1_c00306{margin-left:-7.650000px;}
._2_c00306{margin-left:-5.712000px;}
._3_c00306{margin-left:-4.692000px;}
._4_c00306{margin-left:-3.162000px;}
._0_c00306{margin-left:-1.428000px;}
._e_c00306{width:1.578000px;}
._d_c00306{width:2.766000px;}
._c_c00306{width:3.882000px;}
._f_c00306{width:5.523000px;}
._a_c00306{width:7.209000px;}
._9_c00306{width:8.424000px;}
._18_c00306{width:10.494000px;}
._17_c00306{width:12.687000px;}
._15_c00306{width:13.938000px;}
._16_c00306{width:15.228000px;}
._1a_c00306{width:16.668000px;}
._19_c00306{width:18.090000px;}
._24_c00306{width:19.236000px;}
._7_c00306{width:20.616000px;}
._26_c00306{width:24.948000px;}
._1c_c00306{width:26.253000px;}
._21_c00306{width:35.154000px;}
._20_c00306{width:37.905000px;}
._25_c00306{width:43.887000px;}
._22_c00306{width:50.850000px;}
._12_c00306{width:52.614000px;}
._10_c00306{width:98.148000px;}
._6_c00306{width:297.942000px;}
._27_c00306{width:342.762000px;}
.fc2_c00306{color:transparent;}
.fc1_c00306{color:rgb(128,128,128);}
.fc0_c00306{color:rgb(0,0,0);}
.fs6_c00306{font-size:48.000000px;}
.fs4_c00306{font-size:66.000000px;}
.fs3_c00306{font-size:72.000000px;}
.fs2_c00306{font-size:81.000000px;}
.fs5_c00306{font-size:87.000000px;}
.fs0_c00306{font-size:102.000000px;}
.fs1_c00306{font-size:117.000000px;}
.y0_c00306{bottom:0.000000px;}
.y26_c00306{bottom:3.105000px;}
.y25_c00306{bottom:7.228363px;}
.y24_c00306{bottom:76.650000px;}
.y23_c00306{bottom:101.550000px;}
.y22_c00306{bottom:127.200000px;}
.y21_c00306{bottom:150.900000px;}
.y20_c00306{bottom:176.100000px;}
.y1f_c00306{bottom:200.700000px;}
.y1e_c00306{bottom:225.150000px;}
.y1d_c00306{bottom:249.450000px;}
.y1c_c00306{bottom:273.750000px;}
.y1b_c00306{bottom:298.050000px;}
.y1a_c00306{bottom:322.950000px;}
.y19_c00306{bottom:346.200000px;}
.y18_c00306{bottom:370.200000px;}
.y17_c00306{bottom:394.200000px;}
.y16_c00306{bottom:418.200000px;}
.y15_c00306{bottom:442.200000px;}
.y14_c00306{bottom:465.750000px;}
.y13_c00306{bottom:490.050000px;}
.y12_c00306{bottom:514.650000px;}
.y11_c00306{bottom:537.750000px;}
.y10_c00306{bottom:561.900000px;}
.yf_c00306{bottom:585.600000px;}
.ye_c00306{bottom:608.850000px;}
.yd_c00306{bottom:632.850000px;}
.yc_c00306{bottom:656.850000px;}
.yb_c00306{bottom:680.100000px;}
.ya_c00306{bottom:704.700000px;}
.y9_c00306{bottom:729.000000px;}
.y8_c00306{bottom:753.000000px;}
.y7_c00306{bottom:777.300000px;}
.y6_c00306{bottom:801.600000px;}
.y5_c00306{bottom:825.300000px;}
.y4_c00306{bottom:849.750000px;}
.y3_c00306{bottom:873.750000px;}
.y2_c00306{bottom:898.050000px;}
.y1_c00306{bottom:931.800000px;}
.h7_c00306{height:13.200074px;}
.h8_c00306{height:43.804688px;}
.h3_c00306{height:79.497070px;}
.h5_c00306{height:84.269531px;}
.h4_c00306{height:91.160156px;}
.h6_c00306{height:91.176000px;}
.h2_c00306{height:114.771973px;}
.h0_c00306{height:974.700000px;}
.h1_c00306{height:975.000000px;}
.w2_c00306{width:104.875500px;}
.w0_c00306{width:662.025000px;}
.w1_c00306{width:662.250000px;}
.x0_c00306{left:0.000000px;}
.x6_c00306{left:45.300000px;}
.x9_c00306{left:46.800000px;}
.x8_c00306{left:47.850000px;}
.x5_c00306{left:48.900000px;}
.x7_c00306{left:50.250000px;}
.x4_c00306{left:52.350000px;}
.x3_c00306{left:53.550000px;}
.x2_c00306{left:54.750000px;}
.x1_c00306{left:126.600000px;}
.xb_c00306{left:282.826767px;}
.xa_c00306{left:364.500000px;}
@media print{
.v0_c00306{vertical-align:0.000000pt;}
.ls3_c00306{letter-spacing:-5.333333pt;}
.ls2_c00306{letter-spacing:0.000000pt;}
.ls0_c00306{letter-spacing:2.666667pt;}
.ls1_c00306{letter-spacing:5.333333pt;}
.ws3_c00306{word-spacing:-54.832000pt;}
.ws0_c00306{word-spacing:-52.000000pt;}
.ws2_c00306{word-spacing:-29.333333pt;}
.ws1_c00306{word-spacing:-15.424000pt;}
.ws4_c00306{word-spacing:0.000000pt;}
._1f_c00306{margin-left:-26.781333pt;}
._b_c00306{margin-left:-25.128000pt;}
._14_c00306{margin-left:-23.432000pt;}
._5_c00306{margin-left:-21.850667pt;}
._11_c00306{margin-left:-20.160000pt;}
._13_c00306{margin-left:-14.904000pt;}
._1b_c00306{margin-left:-12.224000pt;}
._1e_c00306{margin-left:-11.136000pt;}
._8_c00306{margin-left:-9.866667pt;}
._23_c00306{margin-left:-8.880000pt;}
._1d_c00306{margin-left:-7.973333pt;}
._1_c00306{margin-left:-6.800000pt;}
._2_c00306{margin-left:-5.077333pt;}
._3_c00306{margin-left:-4.170667pt;}
._4_c00306{margin-left:-2.810667pt;}
._0_c00306{margin-left:-1.269333pt;}
._e_c00306{width:1.402667pt;}
._d_c00306{width:2.458667pt;}
._c_c00306{width:3.450667pt;}
._f_c00306{width:4.909333pt;}
._a_c00306{width:6.408000pt;}
._9_c00306{width:7.488000pt;}
._18_c00306{width:9.328000pt;}
._17_c00306{width:11.277333pt;}
._15_c00306{width:12.389333pt;}
._16_c00306{width:13.536000pt;}
._1a_c00306{width:14.816000pt;}
._19_c00306{width:16.080000pt;}
._24_c00306{width:17.098667pt;}
._7_c00306{width:18.325333pt;}
._26_c00306{width:22.176000pt;}
._1c_c00306{width:23.336000pt;}
._21_c00306{width:31.248000pt;}
._20_c00306{width:33.693333pt;}
._25_c00306{width:39.010667pt;}
._22_c00306{width:45.200000pt;}
._12_c00306{width:46.768000pt;}
._10_c00306{width:87.242667pt;}
._6_c00306{width:264.837333pt;}
._27_c00306{width:304.677333pt;}
.fs6_c00306{font-size:42.666667pt;}
.fs4_c00306{font-size:58.666667pt;}
.fs3_c00306{font-size:64.000000pt;}
.fs2_c00306{font-size:72.000000pt;}
.fs5_c00306{font-size:77.333333pt;}
.fs0_c00306{font-size:90.666667pt;}
.fs1_c00306{font-size:104.000000pt;}
.y0_c00306{bottom:0.000000pt;}
.y26_c00306{bottom:2.760000pt;}
.y25_c00306{bottom:6.425212pt;}
.y24_c00306{bottom:68.133333pt;}
.y23_c00306{bottom:90.266667pt;}
.y22_c00306{bottom:113.066667pt;}
.y21_c00306{bottom:134.133333pt;}
.y20_c00306{bottom:156.533333pt;}
.y1f_c00306{bottom:178.400000pt;}
.y1e_c00306{bottom:200.133333pt;}
.y1d_c00306{bottom:221.733333pt;}
.y1c_c00306{bottom:243.333333pt;}
.y1b_c00306{bottom:264.933333pt;}
.y1a_c00306{bottom:287.066667pt;}
.y19_c00306{bottom:307.733333pt;}
.y18_c00306{bottom:329.066667pt;}
.y17_c00306{bottom:350.400000pt;}
.y16_c00306{bottom:371.733333pt;}
.y15_c00306{bottom:393.066667pt;}
.y14_c00306{bottom:414.000000pt;}
.y13_c00306{bottom:435.600000pt;}
.y12_c00306{bottom:457.466667pt;}
.y11_c00306{bottom:478.000000pt;}
.y10_c00306{bottom:499.466667pt;}
.yf_c00306{bottom:520.533333pt;}
.ye_c00306{bottom:541.200000pt;}
.yd_c00306{bottom:562.533333pt;}
.yc_c00306{bottom:583.866667pt;}
.yb_c00306{bottom:604.533333pt;}
.ya_c00306{bottom:626.400000pt;}
.y9_c00306{bottom:648.000000pt;}
.y8_c00306{bottom:669.333333pt;}
.y7_c00306{bottom:690.933333pt;}
.y6_c00306{bottom:712.533333pt;}
.y5_c00306{bottom:733.600000pt;}
.y4_c00306{bottom:755.333333pt;}
.y3_c00306{bottom:776.666667pt;}
.y2_c00306{bottom:798.266667pt;}
.y1_c00306{bottom:828.266667pt;}
.h7_c00306{height:11.733399pt;}
.h8_c00306{height:38.937500pt;}
.h3_c00306{height:70.664062pt;}
.h5_c00306{height:74.906250pt;}
.h4_c00306{height:81.031250pt;}
.h6_c00306{height:81.045333pt;}
.h2_c00306{height:102.019531pt;}
.h0_c00306{height:866.400000pt;}
.h1_c00306{height:866.666667pt;}
.w2_c00306{width:93.222667pt;}
.w0_c00306{width:588.466667pt;}
.w1_c00306{width:588.666667pt;}
.x0_c00306{left:0.000000pt;}
.x6_c00306{left:40.266667pt;}
.x9_c00306{left:41.600000pt;}
.x8_c00306{left:42.533333pt;}
.x5_c00306{left:43.466667pt;}
.x7_c00306{left:44.666667pt;}
.x4_c00306{left:46.533333pt;}
.x3_c00306{left:47.600000pt;}
.x2_c00306{left:48.666667pt;}
.x1_c00306{left:112.533333pt;}
.xb_c00306{left:251.401571pt;}
.xa_c00306{left:324.000000pt;}
}





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

.ir_c00307:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00307{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00307;src:url('chunks/assets/font_7af8d102017694c0d97b677b.woff2')format("woff");}.ff1_c00307{font-family:ff1_c00307;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00307;src:url('chunks/assets/font_5ceccb9ec75ba32e15603a18.woff2')format("woff");}.ff2_c00307{font-family:ff2_c00307;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00307;src:url('chunks/assets/font_f6539279636d8a90069a65a6.woff2')format("woff");}.ff3_c00307{font-family:ff3_c00307;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00307;src:url('chunks/assets/font_957a9b31f94e4560039e8a07.woff2')format("woff");}.ff4_c00307{font-family:ff4_c00307;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00307;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c00307{font-family:ff5_c00307;line-height:1.219238;font-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_c00307{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,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;}
.ls1_c00307{letter-spacing:0.000000px;}
.ls0_c00307{letter-spacing:3.000000px;}
.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:-27.000000px;}
.ws3_c00307{word-spacing:-20.250000px;}
.ws2_c00307{word-spacing:-18.750000px;}
.ws0_c00307{word-spacing:-17.352000px;}
.ws4_c00307{word-spacing:0.000000px;}
._1c_c00307{margin-left:-40.500000px;}
._1b_c00307{margin-left:-35.088000px;}
._16_c00307{margin-left:-26.406000px;}
._13_c00307{margin-left:-14.985000px;}
._11_c00307{margin-left:-12.378000px;}
._14_c00307{margin-left:-10.452000px;}
._9_c00307{margin-left:-8.976000px;}
._1a_c00307{margin-left:-7.893000px;}
._f_c00307{margin-left:-6.888000px;}
._a_c00307{margin-left:-5.262000px;}
._5_c00307{margin-left:-3.831000px;}
._8_c00307{margin-left:-1.857000px;}
._3_c00307{width:1.320000px;}
._1_c00307{width:3.240000px;}
._2_c00307{width:4.896000px;}
._0_c00307{width:5.976000px;}
._7_c00307{width:7.860000px;}
._6_c00307{width:9.213000px;}
._c_c00307{width:11.199000px;}
._b_c00307{width:12.921000px;}
._e_c00307{width:14.208000px;}
._d_c00307{width:15.969000px;}
._1e_c00307{width:18.954000px;}
._15_c00307{width:23.448000px;}
._4_c00307{width:31.914000px;}
._10_c00307{width:37.188000px;}
._1f_c00307{width:38.445000px;}
._12_c00307{width:48.114000px;}
._18_c00307{width:87.723000px;}
._20_c00307{width:176.826000px;}
._17_c00307{width:196.668000px;}
._19_c00307{width:215.556000px;}
._1d_c00307{width:352.593000px;}
.fc2_c00307{color:transparent;}
.fc1_c00307{color:rgb(128,128,128);}
.fc0_c00307{color:rgb(0,0,0);}
.fs4_c00307{font-size:48.000000px;}
.fs0_c00307{font-size:72.000000px;}
.fs2_c00307{font-size:75.000000px;}
.fs1_c00307{font-size:81.000000px;}
.fs3_c00307{font-size:108.000000px;}
.y0_c00307{bottom:0.000000px;}
.y23_c00307{bottom:3.105000px;}
.y22_c00307{bottom:7.228357px;}
.y21_c00307{bottom:66.780000px;}
.y20_c00307{bottom:91.230000px;}
.y1f_c00307{bottom:116.430000px;}
.y1e_c00307{bottom:141.030000px;}
.y1d_c00307{bottom:165.780000px;}
.y1c_c00307{bottom:190.380000px;}
.y1b_c00307{bottom:214.680000px;}
.y1a_c00307{bottom:239.280000px;}
.y19_c00307{bottom:263.880000px;}
.y18_c00307{bottom:288.180000px;}
.y17_c00307{bottom:312.480000px;}
.y16_c00307{bottom:336.930000px;}
.y15_c00307{bottom:361.080000px;}
.y14_c00307{bottom:385.380000px;}
.y13_c00307{bottom:410.430000px;}
.y12_c00307{bottom:432.330000px;}
.y11_c00307{bottom:457.680000px;}
.y10_c00307{bottom:482.280000px;}
.yf_c00307{bottom:505.680000px;}
.ye_c00307{bottom:529.530000px;}
.yd_c00307{bottom:577.530000px;}
.yc_c00307{bottom:625.380000px;}
.yb_c00307{bottom:649.080000px;}
.ya_c00307{bottom:673.680000px;}
.y9_c00307{bottom:697.380000px;}
.y8_c00307{bottom:721.680000px;}
.y7_c00307{bottom:745.530000px;}
.y6_c00307{bottom:769.530000px;}
.y5_c00307{bottom:793.530000px;}
.y4_c00307{bottom:817.530000px;}
.y3_c00307{bottom:841.380000px;}
.y2_c00307{bottom:865.380000px;}
.y1_c00307{bottom:888.930000px;}
.h5_c00307{height:13.200074px;}
.h6_c00307{height:43.804688px;}
.h3_c00307{height:73.571777px;}
.h2_c00307{height:79.497070px;}
.h1_c00307{height:84.269531px;}
.h4_c00307{height:108.843750px;}
.h0_c00307{height:995.250000px;}
.w2_c00307{width:104.875500px;}
.w0_c00307{width:667.425000px;}
.w1_c00307{width:667.500000px;}
.x0_c00307{left:0.000000px;}
.x1_c00307{left:53.700000px;}
.xe_c00307{left:55.650000px;}
.xb_c00307{left:60.450000px;}
.xd_c00307{left:63.750000px;}
.xf_c00307{left:98.850000px;}
.xc_c00307{left:106.650000px;}
.x4_c00307{left:143.400000px;}
.x3_c00307{left:144.450000px;}
.x2_c00307{left:145.500000px;}
.x5_c00307{left:147.150000px;}
.x9_c00307{left:151.500000px;}
.x10_c00307{left:152.850000px;}
.x8_c00307{left:168.450000px;}
.x6_c00307{left:186.900000px;}
.x7_c00307{left:204.900000px;}
.x12_c00307{left:285.526749px;}
.x11_c00307{left:602.100000px;}
.xa_c00307{left:645.900000px;}
@media print{
.v0_c00307{vertical-align:0.000000pt;}
.ls1_c00307{letter-spacing:0.000000pt;}
.ls0_c00307{letter-spacing:2.666667pt;}
.ws1_c00307{word-spacing:-24.000000pt;}
.ws3_c00307{word-spacing:-18.000000pt;}
.ws2_c00307{word-spacing:-16.666667pt;}
.ws0_c00307{word-spacing:-15.424000pt;}
.ws4_c00307{word-spacing:0.000000pt;}
._1c_c00307{margin-left:-36.000000pt;}
._1b_c00307{margin-left:-31.189333pt;}
._16_c00307{margin-left:-23.472000pt;}
._13_c00307{margin-left:-13.320000pt;}
._11_c00307{margin-left:-11.002667pt;}
._14_c00307{margin-left:-9.290667pt;}
._9_c00307{margin-left:-7.978667pt;}
._1a_c00307{margin-left:-7.016000pt;}
._f_c00307{margin-left:-6.122667pt;}
._a_c00307{margin-left:-4.677333pt;}
._5_c00307{margin-left:-3.405333pt;}
._8_c00307{margin-left:-1.650667pt;}
._3_c00307{width:1.173333pt;}
._1_c00307{width:2.880000pt;}
._2_c00307{width:4.352000pt;}
._0_c00307{width:5.312000pt;}
._7_c00307{width:6.986667pt;}
._6_c00307{width:8.189333pt;}
._c_c00307{width:9.954667pt;}
._b_c00307{width:11.485333pt;}
._e_c00307{width:12.629333pt;}
._d_c00307{width:14.194667pt;}
._1e_c00307{width:16.848000pt;}
._15_c00307{width:20.842667pt;}
._4_c00307{width:28.368000pt;}
._10_c00307{width:33.056000pt;}
._1f_c00307{width:34.173333pt;}
._12_c00307{width:42.768000pt;}
._18_c00307{width:77.976000pt;}
._20_c00307{width:157.178667pt;}
._17_c00307{width:174.816000pt;}
._19_c00307{width:191.605333pt;}
._1d_c00307{width:313.416000pt;}
.fs4_c00307{font-size:42.666667pt;}
.fs0_c00307{font-size:64.000000pt;}
.fs2_c00307{font-size:66.666667pt;}
.fs1_c00307{font-size:72.000000pt;}
.fs3_c00307{font-size:96.000000pt;}
.y0_c00307{bottom:0.000000pt;}
.y23_c00307{bottom:2.760000pt;}
.y22_c00307{bottom:6.425206pt;}
.y21_c00307{bottom:59.360000pt;}
.y20_c00307{bottom:81.093333pt;}
.y1f_c00307{bottom:103.493333pt;}
.y1e_c00307{bottom:125.360000pt;}
.y1d_c00307{bottom:147.360000pt;}
.y1c_c00307{bottom:169.226667pt;}
.y1b_c00307{bottom:190.826667pt;}
.y1a_c00307{bottom:212.693333pt;}
.y19_c00307{bottom:234.560000pt;}
.y18_c00307{bottom:256.160000pt;}
.y17_c00307{bottom:277.760000pt;}
.y16_c00307{bottom:299.493333pt;}
.y15_c00307{bottom:320.960000pt;}
.y14_c00307{bottom:342.560000pt;}
.y13_c00307{bottom:364.826667pt;}
.y12_c00307{bottom:384.293333pt;}
.y11_c00307{bottom:406.826667pt;}
.y10_c00307{bottom:428.693333pt;}
.yf_c00307{bottom:449.493333pt;}
.ye_c00307{bottom:470.693333pt;}
.yd_c00307{bottom:513.360000pt;}
.yc_c00307{bottom:555.893333pt;}
.yb_c00307{bottom:576.960000pt;}
.ya_c00307{bottom:598.826667pt;}
.y9_c00307{bottom:619.893333pt;}
.y8_c00307{bottom:641.493333pt;}
.y7_c00307{bottom:662.693333pt;}
.y6_c00307{bottom:684.026667pt;}
.y5_c00307{bottom:705.360000pt;}
.y4_c00307{bottom:726.693333pt;}
.y3_c00307{bottom:747.893333pt;}
.y2_c00307{bottom:769.226667pt;}
.y1_c00307{bottom:790.160000pt;}
.h5_c00307{height:11.733399pt;}
.h6_c00307{height:38.937500pt;}
.h3_c00307{height:65.397135pt;}
.h2_c00307{height:70.664062pt;}
.h1_c00307{height:74.906250pt;}
.h4_c00307{height:96.750000pt;}
.h0_c00307{height:884.666667pt;}
.w2_c00307{width:93.222667pt;}
.w0_c00307{width:593.266667pt;}
.w1_c00307{width:593.333333pt;}
.x0_c00307{left:0.000000pt;}
.x1_c00307{left:47.733333pt;}
.xe_c00307{left:49.466667pt;}
.xb_c00307{left:53.733333pt;}
.xd_c00307{left:56.666667pt;}
.xf_c00307{left:87.866667pt;}
.xc_c00307{left:94.800000pt;}
.x4_c00307{left:127.466667pt;}
.x3_c00307{left:128.400000pt;}
.x2_c00307{left:129.333333pt;}
.x5_c00307{left:130.800000pt;}
.x9_c00307{left:134.666667pt;}
.x10_c00307{left:135.866667pt;}
.x8_c00307{left:149.733333pt;}
.x6_c00307{left:166.133333pt;}
.x7_c00307{left:182.133333pt;}
.x12_c00307{left:253.801554pt;}
.x11_c00307{left:535.200000pt;}
.xa_c00307{left:574.133333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_93baf2b1952e3f3494ca3496.woff2')format("woff");}.ff1_c00308{font-family:ff1_c00308;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00308;src:url('chunks/assets/font_badb301a24493d4935ce686f.woff2')format("woff");}.ff2_c00308{font-family:ff2_c00308;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00308;src:url('chunks/assets/font_b2c8ca7c6b7ba35bed3fdfa8.woff2')format("woff");}.ff3_c00308{font-family:ff3_c00308;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00308;src:url('chunks/assets/font_545c9231f25f73389926009f.woff2')format("woff");}.ff4_c00308{font-family:ff4_c00308;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00308;src:url('chunks/assets/font_83ba107c51b4ad5cb1621ad5.woff2')format("woff");}.ff5_c00308{font-family:ff5_c00308;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00308;src:url('chunks/assets/font_00510be03eded4744a4f6a97.woff2')format("woff");}.ff6_c00308{font-family:ff6_c00308;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00308;src:url('chunks/assets/font_e9f976f5205c38f16ed608d1.woff2')format("woff");}.ff7_c00308{font-family:ff7_c00308;line-height:1.437000;font-style:normal;font-weight: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_c00308;src:url('chunks/assets/font_ae05c9ea43073c7e75910564.woff2')format("woff");}.ff8_c00308{font-family:ff8_c00308;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00308;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff9_c00308{font-family:ff9_c00308;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00308;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ffa_c00308{font-family:ffa_c00308;line-height:1.219238;font-style: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;}
.ls8_c00308{letter-spacing:-6.000000px;}
.ls6_c00308{letter-spacing:0.000000px;}
.ls4_c00308{letter-spacing:1.680000px;}
.ls5_c00308{letter-spacing:2.700000px;}
.ls9_c00308{letter-spacing:3.000000px;}
.ls3_c00308{letter-spacing:3.900000px;}
.lsa_c00308{letter-spacing:6.000000px;}
.ls0_c00308{letter-spacing:6.300000px;}
.ls1_c00308{letter-spacing:13.200000px;}
.ls2_c00308{letter-spacing:13.227000px;}
.ls7_c00308{letter-spacing:18.000000px;}
.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;}
}
.ws3_c00308{word-spacing:-61.686000px;}
.ws1_c00308{word-spacing:-40.032000px;}
.ws4_c00308{word-spacing:-21.000000px;}
.ws0_c00308{word-spacing:-20.250000px;}
.ws5_c00308{word-spacing:-17.352000px;}
.ws2_c00308{word-spacing:-0.513000px;}
.ws6_c00308{word-spacing:0.000000px;}
._f_c00308{margin-left:-26.841000px;}
._13_c00308{margin-left:-24.600000px;}
._3_c00308{margin-left:-16.929000px;}
._2a_c00308{margin-left:-15.309000px;}
._10_c00308{margin-left:-12.765000px;}
._21_c00308{margin-left:-11.556000px;}
._26_c00308{margin-left:-9.558000px;}
._9_c00308{margin-left:-8.181000px;}
._7_c00308{margin-left:-6.318000px;}
._1d_c00308{margin-left:-5.184000px;}
._a_c00308{margin-left:-4.050000px;}
._18_c00308{margin-left:-2.967000px;}
._5_c00308{margin-left:-1.944000px;}
._4_c00308{width:1.458000px;}
._8_c00308{width:2.754000px;}
._6_c00308{width:3.969000px;}
._1_c00308{width:5.913000px;}
._2_c00308{width:6.966000px;}
._b_c00308{width:8.424000px;}
._27_c00308{width:9.447000px;}
._0_c00308{width:10.530000px;}
._d_c00308{width:11.733000px;}
._c_c00308{width:13.203000px;}
._e_c00308{width:14.337000px;}
._1c_c00308{width:15.807000px;}
._1a_c00308{width:16.935000px;}
._1b_c00308{width:23.484000px;}
._20_c00308{width:27.744000px;}
._25_c00308{width:30.861000px;}
._29_c00308{width:34.659000px;}
._2b_c00308{width:38.961000px;}
._2c_c00308{width:42.525000px;}
._28_c00308{width:56.619000px;}
._17_c00308{width:73.533000px;}
._1f_c00308{width:79.167000px;}
._23_c00308{width:80.421000px;}
._1e_c00308{width:86.508000px;}
._22_c00308{width:93.606000px;}
._24_c00308{width:98.964000px;}
._15_c00308{width:120.375000px;}
._16_c00308{width:129.207000px;}
._11_c00308{width:164.898000px;}
._19_c00308{width:184.644000px;}
._14_c00308{width:286.350000px;}
._12_c00308{width:366.015000px;}
.fc2_c00308{color:transparent;}
.fc1_c00308{color:rgb(128,128,128);}
.fc0_c00308{color:rgb(0,0,0);}
.fs6_c00308{font-size:48.000000px;}
.fs5_c00308{font-size:57.000000px;}
.fs4_c00308{font-size:60.000000px;}
.fs2_c00308{font-size:69.000000px;}
.fs3_c00308{font-size:72.000000px;}
.fs0_c00308{font-size:81.000000px;}
.fs1_c00308{font-size:87.000000px;}
.y0_c00308{bottom:0.000000px;}
.y26_c00308{bottom:3.105000px;}
.y25_c00308{bottom:7.228355px;}
.y24_c00308{bottom:69.735000px;}
.y23_c00308{bottom:97.785000px;}
.y22_c00308{bottom:122.535000px;}
.y21_c00308{bottom:146.835000px;}
.y20_c00308{bottom:171.435000px;}
.y1f_c00308{bottom:195.735000px;}
.y1e_c00308{bottom:220.035000px;}
.y1d_c00308{bottom:244.635000px;}
.y1c_c00308{bottom:268.935000px;}
.y1b_c00308{bottom:293.535000px;}
.y1a_c00308{bottom:316.935000px;}
.y19_c00308{bottom:341.085000px;}
.y18_c00308{bottom:365.085000px;}
.y17_c00308{bottom:389.085000px;}
.y16_c00308{bottom:413.385000px;}
.y15_c00308{bottom:436.935000px;}
.y14_c00308{bottom:461.235000px;}
.y13_c00308{bottom:485.235000px;}
.y12_c00308{bottom:509.985000px;}
.y11_c00308{bottom:533.235000px;}
.y10_c00308{bottom:557.535000px;}
.yf_c00308{bottom:582.135000px;}
.ye_c00308{bottom:603.735000px;}
.yd_c00308{bottom:628.335000px;}
.yc_c00308{bottom:652.335000px;}
.yb_c00308{bottom:675.885000px;}
.ya_c00308{bottom:700.185000px;}
.y9_c00308{bottom:724.185000px;}
.y8_c00308{bottom:748.185000px;}
.y7_c00308{bottom:772.485000px;}
.y6_c00308{bottom:796.485000px;}
.y5_c00308{bottom:820.485000px;}
.y4_c00308{bottom:831.585000px;}
.y3_c00308{bottom:847.335000px;}
.y2_c00308{bottom:870.285000px;}
.y1_c00308{bottom:892.635000px;}
.h7_c00308{height:13.200074px;}
.h8_c00308{height:43.804688px;}
.h4_c00308{height:72.312000px;}
.h2_c00308{height:79.497070px;}
.h5_c00308{height:84.269531px;}
.h6_c00308{height:91.160156px;}
.h3_c00308{height:91.176000px;}
.h0_c00308{height:972.525000px;}
.h1_c00308{height:972.750000px;}
.w2_c00308{width:104.875500px;}
.w0_c00308{width:660.450000px;}
.w1_c00308{width:660.750000px;}
.x0_c00308{left:0.000000px;}
.x5_c00308{left:30.750000px;}
.x6_c00308{left:36.150000px;}
.x1_c00308{left:47.250000px;}
.x2_c00308{left:48.900000px;}
.x4_c00308{left:50.250000px;}
.x7_c00308{left:51.600000px;}
.x3_c00308{left:71.250000px;}
.x9_c00308{left:282.039230px;}
.x8_c00308{left:369.450000px;}
@media print{
.v0_c00308{vertical-align:0.000000pt;}
.ls8_c00308{letter-spacing:-5.333333pt;}
.ls6_c00308{letter-spacing:0.000000pt;}
.ls4_c00308{letter-spacing:1.493333pt;}
.ls5_c00308{letter-spacing:2.400000pt;}
.ls9_c00308{letter-spacing:2.666667pt;}
.ls3_c00308{letter-spacing:3.466667pt;}
.lsa_c00308{letter-spacing:5.333333pt;}
.ls0_c00308{letter-spacing:5.600000pt;}
.ls1_c00308{letter-spacing:11.733333pt;}
.ls2_c00308{letter-spacing:11.757333pt;}
.ls7_c00308{letter-spacing:16.000000pt;}
.ws3_c00308{word-spacing:-54.832000pt;}
.ws1_c00308{word-spacing:-35.584000pt;}
.ws4_c00308{word-spacing:-18.666667pt;}
.ws0_c00308{word-spacing:-18.000000pt;}
.ws5_c00308{word-spacing:-15.424000pt;}
.ws2_c00308{word-spacing:-0.456000pt;}
.ws6_c00308{word-spacing:0.000000pt;}
._f_c00308{margin-left:-23.858667pt;}
._13_c00308{margin-left:-21.866667pt;}
._3_c00308{margin-left:-15.048000pt;}
._2a_c00308{margin-left:-13.608000pt;}
._10_c00308{margin-left:-11.346667pt;}
._21_c00308{margin-left:-10.272000pt;}
._26_c00308{margin-left:-8.496000pt;}
._9_c00308{margin-left:-7.272000pt;}
._7_c00308{margin-left:-5.616000pt;}
._1d_c00308{margin-left:-4.608000pt;}
._a_c00308{margin-left:-3.600000pt;}
._18_c00308{margin-left:-2.637333pt;}
._5_c00308{margin-left:-1.728000pt;}
._4_c00308{width:1.296000pt;}
._8_c00308{width:2.448000pt;}
._6_c00308{width:3.528000pt;}
._1_c00308{width:5.256000pt;}
._2_c00308{width:6.192000pt;}
._b_c00308{width:7.488000pt;}
._27_c00308{width:8.397333pt;}
._0_c00308{width:9.360000pt;}
._d_c00308{width:10.429333pt;}
._c_c00308{width:11.736000pt;}
._e_c00308{width:12.744000pt;}
._1c_c00308{width:14.050667pt;}
._1a_c00308{width:15.053333pt;}
._1b_c00308{width:20.874667pt;}
._20_c00308{width:24.661333pt;}
._25_c00308{width:27.432000pt;}
._29_c00308{width:30.808000pt;}
._2b_c00308{width:34.632000pt;}
._2c_c00308{width:37.800000pt;}
._28_c00308{width:50.328000pt;}
._17_c00308{width:65.362667pt;}
._1f_c00308{width:70.370667pt;}
._23_c00308{width:71.485333pt;}
._1e_c00308{width:76.896000pt;}
._22_c00308{width:83.205333pt;}
._24_c00308{width:87.968000pt;}
._15_c00308{width:107.000000pt;}
._16_c00308{width:114.850667pt;}
._11_c00308{width:146.576000pt;}
._19_c00308{width:164.128000pt;}
._14_c00308{width:254.533333pt;}
._12_c00308{width:325.346667pt;}
.fs6_c00308{font-size:42.666667pt;}
.fs5_c00308{font-size:50.666667pt;}
.fs4_c00308{font-size:53.333333pt;}
.fs2_c00308{font-size:61.333333pt;}
.fs3_c00308{font-size:64.000000pt;}
.fs0_c00308{font-size:72.000000pt;}
.fs1_c00308{font-size:77.333333pt;}
.y0_c00308{bottom:0.000000pt;}
.y26_c00308{bottom:2.760000pt;}
.y25_c00308{bottom:6.425204pt;}
.y24_c00308{bottom:61.986667pt;}
.y23_c00308{bottom:86.920000pt;}
.y22_c00308{bottom:108.920000pt;}
.y21_c00308{bottom:130.520000pt;}
.y20_c00308{bottom:152.386667pt;}
.y1f_c00308{bottom:173.986667pt;}
.y1e_c00308{bottom:195.586667pt;}
.y1d_c00308{bottom:217.453333pt;}
.y1c_c00308{bottom:239.053333pt;}
.y1b_c00308{bottom:260.920000pt;}
.y1a_c00308{bottom:281.720000pt;}
.y19_c00308{bottom:303.186667pt;}
.y18_c00308{bottom:324.520000pt;}
.y17_c00308{bottom:345.853333pt;}
.y16_c00308{bottom:367.453333pt;}
.y15_c00308{bottom:388.386667pt;}
.y14_c00308{bottom:409.986667pt;}
.y13_c00308{bottom:431.320000pt;}
.y12_c00308{bottom:453.320000pt;}
.y11_c00308{bottom:473.986667pt;}
.y10_c00308{bottom:495.586667pt;}
.yf_c00308{bottom:517.453333pt;}
.ye_c00308{bottom:536.653333pt;}
.yd_c00308{bottom:558.520000pt;}
.yc_c00308{bottom:579.853333pt;}
.yb_c00308{bottom:600.786667pt;}
.ya_c00308{bottom:622.386667pt;}
.y9_c00308{bottom:643.720000pt;}
.y8_c00308{bottom:665.053333pt;}
.y7_c00308{bottom:686.653333pt;}
.y6_c00308{bottom:707.986667pt;}
.y5_c00308{bottom:729.320000pt;}
.y4_c00308{bottom:739.186667pt;}
.y3_c00308{bottom:753.186667pt;}
.y2_c00308{bottom:773.586667pt;}
.y1_c00308{bottom:793.453333pt;}
.h7_c00308{height:11.733399pt;}
.h8_c00308{height:38.937500pt;}
.h4_c00308{height:64.277333pt;}
.h2_c00308{height:70.664062pt;}
.h5_c00308{height:74.906250pt;}
.h6_c00308{height:81.031250pt;}
.h3_c00308{height:81.045333pt;}
.h0_c00308{height:864.466667pt;}
.h1_c00308{height:864.666667pt;}
.w2_c00308{width:93.222667pt;}
.w0_c00308{width:587.066667pt;}
.w1_c00308{width:587.333333pt;}
.x0_c00308{left:0.000000pt;}
.x5_c00308{left:27.333333pt;}
.x6_c00308{left:32.133333pt;}
.x1_c00308{left:42.000000pt;}
.x2_c00308{left:43.466667pt;}
.x4_c00308{left:44.666667pt;}
.x7_c00308{left:45.866667pt;}
.x3_c00308{left:63.333333pt;}
.x9_c00308{left:250.701538pt;}
.x8_c00308{left:328.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_77d0bf7ac44b1c6c30c9f000.woff2')format("woff");}.ff1_c00309{font-family:ff1_c00309;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00309;src:url('chunks/assets/font_421695711b5100c17aadf042.woff2')format("woff");}.ff2_c00309{font-family:ff2_c00309;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00309;src:url('chunks/assets/font_9121bcab997a4dac4b41089a.woff2')format("woff");}.ff3_c00309{font-family:ff3_c00309;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00309;src:url('chunks/assets/font_2ccf795a5da5ddee95da1718.woff2')format("woff");}.ff4_c00309{font-family:ff4_c00309;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00309;src:url('chunks/assets/font_ed92c4223300e3a3d8376f8e.woff2')format("woff");}.ff5_c00309{font-family:ff5_c00309;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00309;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c00309{font-family:ff6_c00309;line-height:1.219238;font-style: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;}
.ls2_c00309{letter-spacing:-9.000000px;}
.ls3_c00309{letter-spacing:-6.000000px;}
.ls1_c00309{letter-spacing:0.000000px;}
.ls0_c00309{letter-spacing:0.240000px;}
.ls4_c00309{letter-spacing:3.000000px;}
.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:-61.686000px;}
.ws0_c00309{word-spacing:-20.250000px;}
.ws2_c00309{word-spacing:0.000000px;}
._7_c00309{margin-left:-33.660000px;}
._11_c00309{margin-left:-31.716000px;}
._19_c00309{margin-left:-30.354000px;}
._3_c00309{margin-left:-28.500000px;}
._14_c00309{margin-left:-27.459000px;}
._10_c00309{margin-left:-22.956000px;}
._6_c00309{margin-left:-12.648000px;}
._1_c00309{margin-left:-11.424000px;}
._2_c00309{margin-left:-10.404000px;}
._12_c00309{margin-left:-8.058000px;}
._13_c00309{margin-left:-6.075000px;}
._5_c00309{margin-left:-4.791000px;}
._0_c00309{margin-left:-2.997000px;}
._a_c00309{margin-left:-1.863000px;}
._9_c00309{width:1.134000px;}
._4_c00309{width:2.430000px;}
._b_c00309{width:4.050000px;}
._c_c00309{width:5.184000px;}
._e_c00309{width:6.237000px;}
._f_c00309{width:7.695000px;}
._d_c00309{width:9.396000px;}
._16_c00309{width:11.097000px;}
._1a_c00309{width:12.231000px;}
._17_c00309{width:13.527000px;}
._8_c00309{width:14.580000px;}
._18_c00309{width:18.306000px;}
._15_c00309{width:50.433000px;}
._1b_c00309{width:1552.806000px;}
.fc2_c00309{color:transparent;}
.fc1_c00309{color:rgb(128,128,128);}
.fc0_c00309{color:rgb(0,0,0);}
.fs4_c00309{font-size:48.000000px;}
.fs2_c00309{font-size:72.000000px;}
.fs0_c00309{font-size:81.000000px;}
.fs3_c00309{font-size:87.000000px;}
.fs1_c00309{font-size:102.000000px;}
.y0_c00309{bottom:0.000000px;}
.y26_c00309{bottom:3.105000px;}
.y25_c00309{bottom:7.228357px;}
.y24_c00309{bottom:65.430000px;}
.y23_c00309{bottom:87.480000px;}
.y22_c00309{bottom:112.680000px;}
.y21_c00309{bottom:137.130000px;}
.y20_c00309{bottom:161.730000px;}
.y1f_c00309{bottom:186.330000px;}
.y1e_c00309{bottom:211.680000px;}
.y1d_c00309{bottom:234.930000px;}
.y1c_c00309{bottom:259.530000px;}
.y1b_c00309{bottom:283.830000px;}
.y1a_c00309{bottom:308.430000px;}
.y19_c00309{bottom:332.730000px;}
.y18_c00309{bottom:357.480000px;}
.y17_c00309{bottom:381.330000px;}
.y16_c00309{bottom:405.330000px;}
.y15_c00309{bottom:429.630000px;}
.y14_c00309{bottom:454.230000px;}
.y13_c00309{bottom:478.230000px;}
.y12_c00309{bottom:501.930000px;}
.y11_c00309{bottom:526.380000px;}
.y10_c00309{bottom:550.230000px;}
.yf_c00309{bottom:574.080000px;}
.y1_c00309{bottom:591.030000px;}
.ye_c00309{bottom:598.380000px;}
.yd_c00309{bottom:622.380000px;}
.yc_c00309{bottom:646.680000px;}
.yb_c00309{bottom:670.980000px;}
.ya_c00309{bottom:694.980000px;}
.y9_c00309{bottom:719.580000px;}
.y8_c00309{bottom:743.580000px;}
.y7_c00309{bottom:767.430000px;}
.y6_c00309{bottom:789.780000px;}
.y5_c00309{bottom:815.430000px;}
.y4_c00309{bottom:839.430000px;}
.y3_c00309{bottom:864.030000px;}
.y2_c00309{bottom:888.030000px;}
.h5_c00309{height:13.200074px;}
.h6_c00309{height:43.804688px;}
.h1_c00309{height:79.497070px;}
.h4_c00309{height:84.269531px;}
.h2_c00309{height:104.839927px;}
.h3_c00309{height:105.439927px;}
.h0_c00309{height:995.250000px;}
.w2_c00309{width:104.875500px;}
.w0_c00309{width:667.425000px;}
.w1_c00309{width:667.500000px;}
.x0_c00309{left:0.000000px;}
.x5_c00309{left:49.650000px;}
.x1_c00309{left:52.350000px;}
.x2_c00309{left:145.500000px;}
.x3_c00309{left:147.150000px;}
.x6_c00309{left:148.950000px;}
.x7_c00309{left:150.300000px;}
.x8_c00309{left:151.500000px;}
.x9_c00309{left:152.550000px;}
.x4_c00309{left:162.300000px;}
.xa_c00309{left:187.350000px;}
.xb_c00309{left:285.526749px;}
@media print{
.v0_c00309{vertical-align:0.000000pt;}
.ls2_c00309{letter-spacing:-8.000000pt;}
.ls3_c00309{letter-spacing:-5.333333pt;}
.ls1_c00309{letter-spacing:0.000000pt;}
.ls0_c00309{letter-spacing:0.213333pt;}
.ls4_c00309{letter-spacing:2.666667pt;}
.ws1_c00309{word-spacing:-54.832000pt;}
.ws0_c00309{word-spacing:-18.000000pt;}
.ws2_c00309{word-spacing:0.000000pt;}
._7_c00309{margin-left:-29.920000pt;}
._11_c00309{margin-left:-28.192000pt;}
._19_c00309{margin-left:-26.981333pt;}
._3_c00309{margin-left:-25.333333pt;}
._14_c00309{margin-left:-24.408000pt;}
._10_c00309{margin-left:-20.405333pt;}
._6_c00309{margin-left:-11.242667pt;}
._1_c00309{margin-left:-10.154667pt;}
._2_c00309{margin-left:-9.248000pt;}
._12_c00309{margin-left:-7.162667pt;}
._13_c00309{margin-left:-5.400000pt;}
._5_c00309{margin-left:-4.258667pt;}
._0_c00309{margin-left:-2.664000pt;}
._a_c00309{margin-left:-1.656000pt;}
._9_c00309{width:1.008000pt;}
._4_c00309{width:2.160000pt;}
._b_c00309{width:3.600000pt;}
._c_c00309{width:4.608000pt;}
._e_c00309{width:5.544000pt;}
._f_c00309{width:6.840000pt;}
._d_c00309{width:8.352000pt;}
._16_c00309{width:9.864000pt;}
._1a_c00309{width:10.872000pt;}
._17_c00309{width:12.024000pt;}
._8_c00309{width:12.960000pt;}
._18_c00309{width:16.272000pt;}
._15_c00309{width:44.829333pt;}
._1b_c00309{width:1380.272000pt;}
.fs4_c00309{font-size:42.666667pt;}
.fs2_c00309{font-size:64.000000pt;}
.fs0_c00309{font-size:72.000000pt;}
.fs3_c00309{font-size:77.333333pt;}
.fs1_c00309{font-size:90.666667pt;}
.y0_c00309{bottom:0.000000pt;}
.y26_c00309{bottom:2.760000pt;}
.y25_c00309{bottom:6.425206pt;}
.y24_c00309{bottom:58.160000pt;}
.y23_c00309{bottom:77.760000pt;}
.y22_c00309{bottom:100.160000pt;}
.y21_c00309{bottom:121.893333pt;}
.y20_c00309{bottom:143.760000pt;}
.y1f_c00309{bottom:165.626667pt;}
.y1e_c00309{bottom:188.160000pt;}
.y1d_c00309{bottom:208.826667pt;}
.y1c_c00309{bottom:230.693333pt;}
.y1b_c00309{bottom:252.293333pt;}
.y1a_c00309{bottom:274.160000pt;}
.y19_c00309{bottom:295.760000pt;}
.y18_c00309{bottom:317.760000pt;}
.y17_c00309{bottom:338.960000pt;}
.y16_c00309{bottom:360.293333pt;}
.y15_c00309{bottom:381.893333pt;}
.y14_c00309{bottom:403.760000pt;}
.y13_c00309{bottom:425.093333pt;}
.y12_c00309{bottom:446.160000pt;}
.y11_c00309{bottom:467.893333pt;}
.y10_c00309{bottom:489.093333pt;}
.yf_c00309{bottom:510.293333pt;}
.y1_c00309{bottom:525.360000pt;}
.ye_c00309{bottom:531.893333pt;}
.yd_c00309{bottom:553.226667pt;}
.yc_c00309{bottom:574.826667pt;}
.yb_c00309{bottom:596.426667pt;}
.ya_c00309{bottom:617.760000pt;}
.y9_c00309{bottom:639.626667pt;}
.y8_c00309{bottom:660.960000pt;}
.y7_c00309{bottom:682.160000pt;}
.y6_c00309{bottom:702.026667pt;}
.y5_c00309{bottom:724.826667pt;}
.y4_c00309{bottom:746.160000pt;}
.y3_c00309{bottom:768.026667pt;}
.y2_c00309{bottom:789.360000pt;}
.h5_c00309{height:11.733399pt;}
.h6_c00309{height:38.937500pt;}
.h1_c00309{height:70.664062pt;}
.h4_c00309{height:74.906250pt;}
.h2_c00309{height:93.191046pt;}
.h3_c00309{height:93.724379pt;}
.h0_c00309{height:884.666667pt;}
.w2_c00309{width:93.222667pt;}
.w0_c00309{width:593.266667pt;}
.w1_c00309{width:593.333333pt;}
.x0_c00309{left:0.000000pt;}
.x5_c00309{left:44.133333pt;}
.x1_c00309{left:46.533333pt;}
.x2_c00309{left:129.333333pt;}
.x3_c00309{left:130.800000pt;}
.x6_c00309{left:132.400000pt;}
.x7_c00309{left:133.600000pt;}
.x8_c00309{left:134.666667pt;}
.x9_c00309{left:135.600000pt;}
.x4_c00309{left:144.266667pt;}
.xa_c00309{left:166.533333pt;}
.xb_c00309{left:253.801554pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_584c64db01b12c2cb7f86980.woff2')format("woff");}.ff1_c00310{font-family:ff1_c00310;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00310;src:url('chunks/assets/font_c7c3d872116a653cf82e24de.woff2')format("woff");}.ff2_c00310{font-family:ff2_c00310;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00310;src:url('chunks/assets/font_5d6980e1573ef53dec96e0dc.woff2')format("woff");}.ff3_c00310{font-family:ff3_c00310;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00310;src:url('chunks/assets/font_89484f4b9fcef2464bfb0217.woff2')format("woff");}.ff4_c00310{font-family:ff4_c00310;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00310;src:url('chunks/assets/font_c31de0d99a85441435103621.woff2')format("woff");}.ff5_c00310{font-family:ff5_c00310;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00310;src:url('chunks/assets/font_9724146d0c217da459c9e0c4.woff2')format("woff");}.ff6_c00310{font-family:ff6_c00310;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00310;src:url('chunks/assets/font_155d22c1cd85f91494ec1206.woff2')format("woff");}.ff7_c00310{font-family:ff7_c00310;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00310;src:url('chunks/assets/font_b37cd5b0de1e3149a906beb9.woff2')format("woff");}.ff8_c00310{font-family:ff8_c00310;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00310;src:url('chunks/assets/font_096d32090aeed5caf93fd13c.woff2')format("woff");}.ff9_c00310{font-family:ff9_c00310;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00310;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ffa_c00310{font-family:ffa_c00310;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00310{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00310{vertical-align:0.000000px;}
.v1_c00310{vertical-align:162.600000px;}
.ls5_c00310{letter-spacing:-6.000000px;}
.ls4_c00310{letter-spacing:0.000000px;}
.ls3_c00310{letter-spacing:6.000000px;}
.ls2_c00310{letter-spacing:10.800000px;}
.ls1_c00310{letter-spacing:19.800000px;}
.ls0_c00310{letter-spacing:81.714000px;}
.sc__c00310{text-shadow:none;}
.sc0_c00310{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00310{-webkit-text-stroke:0px transparent;}
.sc0_c00310{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00310{word-spacing:-61.686000px;}
.ws1_c00310{word-spacing:0.000000px;}
._24_c00310{margin-left:-33.048000px;}
._28_c00310{margin-left:-31.200000px;}
._14_c00310{margin-left:-23.085000px;}
._21_c00310{margin-left:-20.358000px;}
._1c_c00310{margin-left:-18.201000px;}
._19_c00310{margin-left:-16.857000px;}
._1d_c00310{margin-left:-15.132000px;}
._1e_c00310{margin-left:-13.092000px;}
._1f_c00310{margin-left:-11.181000px;}
._7_c00310{margin-left:-9.996000px;}
._16_c00310{margin-left:-8.667000px;}
._8_c00310{margin-left:-7.446000px;}
._9_c00310{margin-left:-6.120000px;}
._6_c00310{margin-left:-4.998000px;}
._4_c00310{margin-left:-3.468000px;}
._5_c00310{margin-left:-1.938000px;}
._3_c00310{width:1.836000px;}
._b_c00310{width:3.456000px;}
._c_c00310{width:5.427000px;}
._e_c00310{width:7.356000px;}
._d_c00310{width:8.364000px;}
._10_c00310{width:9.489000px;}
._f_c00310{width:10.521000px;}
._12_c00310{width:12.006000px;}
._2_c00310{width:14.382000px;}
._11_c00310{width:15.561000px;}
._1_c00310{width:25.806000px;}
._17_c00310{width:28.143000px;}
._1a_c00310{width:31.137000px;}
._18_c00310{width:32.796000px;}
._0_c00310{width:33.966000px;}
._1b_c00310{width:36.606000px;}
._22_c00310{width:39.390000px;}
._13_c00310{width:53.973000px;}
._25_c00310{width:60.996000px;}
._15_c00310{width:64.071000px;}
._a_c00310{width:69.258000px;}
._26_c00310{width:136.059000px;}
._23_c00310{width:180.519000px;}
._29_c00310{width:232.236000px;}
._20_c00310{width:233.976000px;}
._27_c00310{width:853.902000px;}
.fc2_c00310{color:transparent;}
.fc1_c00310{color:rgb(128,128,128);}
.fc0_c00310{color:rgb(0,0,0);}
.fs8_c00310{font-size:48.000000px;}
.fs7_c00310{font-size:60.000000px;}
.fs2_c00310{font-size:72.000000px;}
.fs5_c00310{font-size:75.000000px;}
.fs4_c00310{font-size:78.000000px;}
.fs1_c00310{font-size:81.000000px;}
.fs3_c00310{font-size:87.000000px;}
.fs0_c00310{font-size:102.000000px;}
.fs6_c00310{font-size:261.000000px;}
.y0_c00310{bottom:0.000000px;}
.y27_c00310{bottom:3.105000px;}
.y26_c00310{bottom:7.228357px;}
.y25_c00310{bottom:54.030000px;}
.y24_c00310{bottom:79.380000px;}
.y23_c00310{bottom:88.830000px;}
.y22_c00310{bottom:104.730000px;}
.y21_c00310{bottom:129.630000px;}
.y20_c00310{bottom:153.930000px;}
.y1f_c00310{bottom:177.930000px;}
.y1d_c00310{bottom:186.780000px;}
.y1e_c00310{bottom:203.280000px;}
.y1c_c00310{bottom:251.880000px;}
.y1b_c00310{bottom:275.130000px;}
.y1a_c00310{bottom:299.130000px;}
.y19_c00310{bottom:323.730000px;}
.y18_c00310{bottom:347.730000px;}
.y17_c00310{bottom:371.280000px;}
.y16_c00310{bottom:395.880000px;}
.y15_c00310{bottom:419.580000px;}
.y14_c00310{bottom:444.180000px;}
.y13_c00310{bottom:467.730000px;}
.y12_c00310{bottom:492.180000px;}
.y11_c00310{bottom:516.480000px;}
.y10_c00310{bottom:539.730000px;}
.yf_c00310{bottom:563.730000px;}
.ye_c00310{bottom:588.630000px;}
.yd_c00310{bottom:610.980000px;}
.yc_c00310{bottom:635.130000px;}
.yb_c00310{bottom:658.830000px;}
.ya_c00310{bottom:683.430000px;}
.y9_c00310{bottom:707.130000px;}
.y8_c00310{bottom:731.280000px;}
.y7_c00310{bottom:755.430000px;}
.y6_c00310{bottom:779.580000px;}
.y5_c00310{bottom:804.030000px;}
.y4_c00310{bottom:828.180000px;}
.y3_c00310{bottom:852.480000px;}
.y2_c00310{bottom:876.930000px;}
.y1_c00310{bottom:911.280000px;}
.h8_c00310{height:13.200074px;}
.h9_c00310{height:43.804688px;}
.h5_c00310{height:73.571777px;}
.h2_c00310{height:79.497070px;}
.h3_c00310{height:91.160156px;}
.h4_c00310{height:91.176000px;}
.h7_c00310{height:98.756836px;}
.h1_c00310{height:100.057617px;}
.h6_c00310{height:242.097070px;}
.h0_c00310{height:968.250000px;}
.w1_c00310{width:104.875500px;}
.w0_c00310{width:657.750000px;}
.x0_c00310{left:0.000000px;}
.xd_c00310{left:29.400000px;}
.xb_c00310{left:30.750000px;}
.xa_c00310{left:32.100000px;}
.x7_c00310{left:33.450000px;}
.x6_c00310{left:35.100000px;}
.x5_c00310{left:36.900000px;}
.x4_c00310{left:38.100000px;}
.x3_c00310{left:39.750000px;}
.x2_c00310{left:41.550000px;}
.x9_c00310{left:77.400000px;}
.xc_c00310{left:82.200000px;}
.x8_c00310{left:107.400000px;}
.x1_c00310{left:116.400000px;}
.xf_c00310{left:280.689240px;}
.xe_c00310{left:366.300000px;}
@media print{
.v0_c00310{vertical-align:0.000000pt;}
.v1_c00310{vertical-align:144.533333pt;}
.ls5_c00310{letter-spacing:-5.333333pt;}
.ls4_c00310{letter-spacing:0.000000pt;}
.ls3_c00310{letter-spacing:5.333333pt;}
.ls2_c00310{letter-spacing:9.600000pt;}
.ls1_c00310{letter-spacing:17.600000pt;}
.ls0_c00310{letter-spacing:72.634667pt;}
.ws0_c00310{word-spacing:-54.832000pt;}
.ws1_c00310{word-spacing:0.000000pt;}
._24_c00310{margin-left:-29.376000pt;}
._28_c00310{margin-left:-27.733333pt;}
._14_c00310{margin-left:-20.520000pt;}
._21_c00310{margin-left:-18.096000pt;}
._1c_c00310{margin-left:-16.178667pt;}
._19_c00310{margin-left:-14.984000pt;}
._1d_c00310{margin-left:-13.450667pt;}
._1e_c00310{margin-left:-11.637333pt;}
._1f_c00310{margin-left:-9.938667pt;}
._7_c00310{margin-left:-8.885333pt;}
._16_c00310{margin-left:-7.704000pt;}
._8_c00310{margin-left:-6.618667pt;}
._9_c00310{margin-left:-5.440000pt;}
._6_c00310{margin-left:-4.442667pt;}
._4_c00310{margin-left:-3.082667pt;}
._5_c00310{margin-left:-1.722667pt;}
._3_c00310{width:1.632000pt;}
._b_c00310{width:3.072000pt;}
._c_c00310{width:4.824000pt;}
._e_c00310{width:6.538667pt;}
._d_c00310{width:7.434667pt;}
._10_c00310{width:8.434667pt;}
._f_c00310{width:9.352000pt;}
._12_c00310{width:10.672000pt;}
._2_c00310{width:12.784000pt;}
._11_c00310{width:13.832000pt;}
._1_c00310{width:22.938667pt;}
._17_c00310{width:25.016000pt;}
._1a_c00310{width:27.677333pt;}
._18_c00310{width:29.152000pt;}
._0_c00310{width:30.192000pt;}
._1b_c00310{width:32.538667pt;}
._22_c00310{width:35.013333pt;}
._13_c00310{width:47.976000pt;}
._25_c00310{width:54.218667pt;}
._15_c00310{width:56.952000pt;}
._a_c00310{width:61.562667pt;}
._26_c00310{width:120.941333pt;}
._23_c00310{width:160.461333pt;}
._29_c00310{width:206.432000pt;}
._20_c00310{width:207.978667pt;}
._27_c00310{width:759.024000pt;}
.fs8_c00310{font-size:42.666667pt;}
.fs7_c00310{font-size:53.333333pt;}
.fs2_c00310{font-size:64.000000pt;}
.fs5_c00310{font-size:66.666667pt;}
.fs4_c00310{font-size:69.333333pt;}
.fs1_c00310{font-size:72.000000pt;}
.fs3_c00310{font-size:77.333333pt;}
.fs0_c00310{font-size:90.666667pt;}
.fs6_c00310{font-size:232.000000pt;}
.y0_c00310{bottom:0.000000pt;}
.y27_c00310{bottom:2.760000pt;}
.y26_c00310{bottom:6.425206pt;}
.y25_c00310{bottom:48.026667pt;}
.y24_c00310{bottom:70.560000pt;}
.y23_c00310{bottom:78.960000pt;}
.y22_c00310{bottom:93.093333pt;}
.y21_c00310{bottom:115.226667pt;}
.y20_c00310{bottom:136.826667pt;}
.y1f_c00310{bottom:158.160000pt;}
.y1d_c00310{bottom:166.026667pt;}
.y1e_c00310{bottom:180.693333pt;}
.y1c_c00310{bottom:223.893333pt;}
.y1b_c00310{bottom:244.560000pt;}
.y1a_c00310{bottom:265.893333pt;}
.y19_c00310{bottom:287.760000pt;}
.y18_c00310{bottom:309.093333pt;}
.y17_c00310{bottom:330.026667pt;}
.y16_c00310{bottom:351.893333pt;}
.y15_c00310{bottom:372.960000pt;}
.y14_c00310{bottom:394.826667pt;}
.y13_c00310{bottom:415.760000pt;}
.y12_c00310{bottom:437.493333pt;}
.y11_c00310{bottom:459.093333pt;}
.y10_c00310{bottom:479.760000pt;}
.yf_c00310{bottom:501.093333pt;}
.ye_c00310{bottom:523.226667pt;}
.yd_c00310{bottom:543.093333pt;}
.yc_c00310{bottom:564.560000pt;}
.yb_c00310{bottom:585.626667pt;}
.ya_c00310{bottom:607.493333pt;}
.y9_c00310{bottom:628.560000pt;}
.y8_c00310{bottom:650.026667pt;}
.y7_c00310{bottom:671.493333pt;}
.y6_c00310{bottom:692.960000pt;}
.y5_c00310{bottom:714.693333pt;}
.y4_c00310{bottom:736.160000pt;}
.y3_c00310{bottom:757.760000pt;}
.y2_c00310{bottom:779.493333pt;}
.y1_c00310{bottom:810.026667pt;}
.h8_c00310{height:11.733399pt;}
.h9_c00310{height:38.937500pt;}
.h5_c00310{height:65.397135pt;}
.h2_c00310{height:70.664062pt;}
.h3_c00310{height:81.031250pt;}
.h4_c00310{height:81.045333pt;}
.h7_c00310{height:87.783854pt;}
.h1_c00310{height:88.940104pt;}
.h6_c00310{height:215.197396pt;}
.h0_c00310{height:860.666667pt;}
.w1_c00310{width:93.222667pt;}
.w0_c00310{width:584.666667pt;}
.x0_c00310{left:0.000000pt;}
.xd_c00310{left:26.133333pt;}
.xb_c00310{left:27.333333pt;}
.xa_c00310{left:28.533333pt;}
.x7_c00310{left:29.733333pt;}
.x6_c00310{left:31.200000pt;}
.x5_c00310{left:32.800000pt;}
.x4_c00310{left:33.866667pt;}
.x3_c00310{left:35.333333pt;}
.x2_c00310{left:36.933333pt;}
.x9_c00310{left:68.800000pt;}
.xc_c00310{left:73.066667pt;}
.x8_c00310{left:95.466667pt;}
.x1_c00310{left:103.466667pt;}
.xf_c00310{left:249.501546pt;}
.xe_c00310{left:325.600000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_813cdd9b538b9e2c56f1aa0b.woff2')format("woff");}.ff1_c00311{font-family:ff1_c00311;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00311;src:url('chunks/assets/font_75abb3bd081a85695b4263ee.woff2')format("woff");}.ff2_c00311{font-family:ff2_c00311;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00311;src:url('chunks/assets/font_6cddc210e1fbbe3a219a4fe5.woff2')format("woff");}.ff3_c00311{font-family:ff3_c00311;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00311;src:url('chunks/assets/font_18b190cb745b44386f3752ae.woff2')format("woff");}.ff4_c00311{font-family:ff4_c00311;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00311;src:url('chunks/assets/font_2027bb8bfb71dfc2c685cdb0.woff2')format("woff");}.ff5_c00311{font-family:ff5_c00311;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00311;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff6_c00311{font-family:ff6_c00311;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00311;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c00311{font-family:ff7_c00311;line-height:1.219238;font-style: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;}
.ls3_c00311{letter-spacing:-3.000000px;}
.ls1_c00311{letter-spacing:0.000000px;}
.ls0_c00311{letter-spacing:2.850000px;}
.ls4_c00311{letter-spacing:3.000000px;}
.ls2_c00311{letter-spacing:12.000000px;}
.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:-23.250000px;}
.ws2_c00311{word-spacing:-17.352000px;}
.ws1_c00311{word-spacing:-14.460000px;}
.ws3_c00311{word-spacing:0.000000px;}
._13_c00311{margin-left:-26.181000px;}
._1a_c00311{margin-left:-21.465000px;}
._16_c00311{margin-left:-17.424000px;}
._1d_c00311{margin-left:-15.264000px;}
._15_c00311{margin-left:-13.320000px;}
._18_c00311{margin-left:-12.240000px;}
._d_c00311{margin-left:-11.028000px;}
._21_c00311{margin-left:-9.420000px;}
._11_c00311{margin-left:-8.343000px;}
._8_c00311{margin-left:-6.465000px;}
._e_c00311{margin-left:-5.358000px;}
._7_c00311{margin-left:-4.212000px;}
._4_c00311{margin-left:-2.835000px;}
._5_c00311{margin-left:-1.539000px;}
._6_c00311{width:1.377000px;}
._0_c00311{width:2.673000px;}
._1b_c00311{width:3.696000px;}
._2_c00311{width:4.698000px;}
._1_c00311{width:5.994000px;}
._f_c00311{width:7.047000px;}
._3_c00311{width:8.100000px;}
._9_c00311{width:9.489000px;}
._10_c00311{width:10.680000px;}
._c_c00311{width:13.203000px;}
._20_c00311{width:14.316000px;}
._a_c00311{width:15.606000px;}
._1f_c00311{width:18.216000px;}
._b_c00311{width:23.652000px;}
._19_c00311{width:67.536000px;}
._1e_c00311{width:113.976000px;}
._1c_c00311{width:134.712000px;}
._14_c00311{width:135.822000px;}
._12_c00311{width:186.834000px;}
._17_c00311{width:334.512000px;}
.fc2_c00311{color:transparent;}
.fc1_c00311{color:rgb(128,128,128);}
.fc0_c00311{color:rgb(0,0,0);}
.fs5_c00311{font-size:48.000000px;}
.fs2_c00311{font-size:60.000000px;}
.fs3_c00311{font-size:63.000000px;}
.fs4_c00311{font-size:72.000000px;}
.fs0_c00311{font-size:81.000000px;}
.fs1_c00311{font-size:93.000000px;}
.y0_c00311{bottom:0.000000px;}
.y25_c00311{bottom:3.105000px;}
.y24_c00311{bottom:7.228357px;}
.y23_c00311{bottom:64.230000px;}
.y22_c00311{bottom:88.080000px;}
.y21_c00311{bottom:113.730000px;}
.y20_c00311{bottom:138.030000px;}
.y1f_c00311{bottom:162.780000px;}
.y1e_c00311{bottom:187.380000px;}
.y1d_c00311{bottom:211.980000px;}
.y1c_c00311{bottom:236.580000px;}
.y1b_c00311{bottom:261.180000px;}
.y1a_c00311{bottom:285.180000px;}
.y19_c00311{bottom:311.580000px;}
.y18_c00311{bottom:333.780000px;}
.y17_c00311{bottom:359.880000px;}
.y16_c00311{bottom:382.680000px;}
.y15_c00311{bottom:407.430000px;}
.y14_c00311{bottom:431.280000px;}
.y13_c00311{bottom:455.580000px;}
.y12_c00311{bottom:482.280000px;}
.y11_c00311{bottom:503.280000px;}
.y10_c00311{bottom:527.580000px;}
.yf_c00311{bottom:551.130000px;}
.ye_c00311{bottom:575.880000px;}
.yd_c00311{bottom:600.030000px;}
.yc_c00311{bottom:624.480000px;}
.yb_c00311{bottom:648.030000px;}
.ya_c00311{bottom:672.030000px;}
.y9_c00311{bottom:696.330000px;}
.y8_c00311{bottom:720.630000px;}
.y7_c00311{bottom:744.930000px;}
.y6_c00311{bottom:768.780000px;}
.y5_c00311{bottom:792.180000px;}
.y4_c00311{bottom:816.780000px;}
.y3_c00311{bottom:840.480000px;}
.y2_c00311{bottom:865.380000px;}
.y1_c00311{bottom:888.630000px;}
.h8_c00311{height:13.200074px;}
.h9_c00311{height:43.804688px;}
.h5_c00311{height:65.040000px;}
.h6_c00311{height:72.562500px;}
.h3_c00311{height:79.497070px;}
.h4_c00311{height:84.269531px;}
.h7_c00311{height:91.160156px;}
.h2_c00311{height:93.726562px;}
.h0_c00311{height:984.450000px;}
.h1_c00311{height:984.750000px;}
.w2_c00311{width:104.875500px;}
.w0_c00311{width:659.850000px;}
.w1_c00311{width:660.000000px;}
.x0_c00311{left:0.000000px;}
.x7_c00311{left:46.500000px;}
.x5_c00311{left:51.000000px;}
.xa_c00311{left:72.600000px;}
.x4_c00311{left:135.750000px;}
.x1_c00311{left:139.950000px;}
.x2_c00311{left:141.450000px;}
.x3_c00311{left:142.800000px;}
.x6_c00311{left:144.750000px;}
.x8_c00311{left:146.850000px;}
.x9_c00311{left:148.050000px;}
.xc_c00311{left:281.739258px;}
.xb_c00311{left:593.250000px;}
@media print{
.v0_c00311{vertical-align:0.000000pt;}
.ls3_c00311{letter-spacing:-2.666667pt;}
.ls1_c00311{letter-spacing:0.000000pt;}
.ls0_c00311{letter-spacing:2.533333pt;}
.ls4_c00311{letter-spacing:2.666667pt;}
.ls2_c00311{letter-spacing:10.666667pt;}
.ws0_c00311{word-spacing:-20.666667pt;}
.ws2_c00311{word-spacing:-15.424000pt;}
.ws1_c00311{word-spacing:-12.853333pt;}
.ws3_c00311{word-spacing:0.000000pt;}
._13_c00311{margin-left:-23.272000pt;}
._1a_c00311{margin-left:-19.080000pt;}
._16_c00311{margin-left:-15.488000pt;}
._1d_c00311{margin-left:-13.568000pt;}
._15_c00311{margin-left:-11.840000pt;}
._18_c00311{margin-left:-10.880000pt;}
._d_c00311{margin-left:-9.802667pt;}
._21_c00311{margin-left:-8.373333pt;}
._11_c00311{margin-left:-7.416000pt;}
._8_c00311{margin-left:-5.746667pt;}
._e_c00311{margin-left:-4.762667pt;}
._7_c00311{margin-left:-3.744000pt;}
._4_c00311{margin-left:-2.520000pt;}
._5_c00311{margin-left:-1.368000pt;}
._6_c00311{width:1.224000pt;}
._0_c00311{width:2.376000pt;}
._1b_c00311{width:3.285333pt;}
._2_c00311{width:4.176000pt;}
._1_c00311{width:5.328000pt;}
._f_c00311{width:6.264000pt;}
._3_c00311{width:7.200000pt;}
._9_c00311{width:8.434667pt;}
._10_c00311{width:9.493333pt;}
._c_c00311{width:11.736000pt;}
._20_c00311{width:12.725333pt;}
._a_c00311{width:13.872000pt;}
._1f_c00311{width:16.192000pt;}
._b_c00311{width:21.024000pt;}
._19_c00311{width:60.032000pt;}
._1e_c00311{width:101.312000pt;}
._1c_c00311{width:119.744000pt;}
._14_c00311{width:120.730667pt;}
._12_c00311{width:166.074667pt;}
._17_c00311{width:297.344000pt;}
.fs5_c00311{font-size:42.666667pt;}
.fs2_c00311{font-size:53.333333pt;}
.fs3_c00311{font-size:56.000000pt;}
.fs4_c00311{font-size:64.000000pt;}
.fs0_c00311{font-size:72.000000pt;}
.fs1_c00311{font-size:82.666667pt;}
.y0_c00311{bottom:0.000000pt;}
.y25_c00311{bottom:2.760000pt;}
.y24_c00311{bottom:6.425206pt;}
.y23_c00311{bottom:57.093333pt;}
.y22_c00311{bottom:78.293333pt;}
.y21_c00311{bottom:101.093333pt;}
.y20_c00311{bottom:122.693333pt;}
.y1f_c00311{bottom:144.693333pt;}
.y1e_c00311{bottom:166.560000pt;}
.y1d_c00311{bottom:188.426667pt;}
.y1c_c00311{bottom:210.293333pt;}
.y1b_c00311{bottom:232.160000pt;}
.y1a_c00311{bottom:253.493333pt;}
.y19_c00311{bottom:276.960000pt;}
.y18_c00311{bottom:296.693333pt;}
.y17_c00311{bottom:319.893333pt;}
.y16_c00311{bottom:340.160000pt;}
.y15_c00311{bottom:362.160000pt;}
.y14_c00311{bottom:383.360000pt;}
.y13_c00311{bottom:404.960000pt;}
.y12_c00311{bottom:428.693333pt;}
.y11_c00311{bottom:447.360000pt;}
.y10_c00311{bottom:468.960000pt;}
.yf_c00311{bottom:489.893333pt;}
.ye_c00311{bottom:511.893333pt;}
.yd_c00311{bottom:533.360000pt;}
.yc_c00311{bottom:555.093333pt;}
.yb_c00311{bottom:576.026667pt;}
.ya_c00311{bottom:597.360000pt;}
.y9_c00311{bottom:618.960000pt;}
.y8_c00311{bottom:640.560000pt;}
.y7_c00311{bottom:662.160000pt;}
.y6_c00311{bottom:683.360000pt;}
.y5_c00311{bottom:704.160000pt;}
.y4_c00311{bottom:726.026667pt;}
.y3_c00311{bottom:747.093333pt;}
.y2_c00311{bottom:769.226667pt;}
.y1_c00311{bottom:789.893333pt;}
.h8_c00311{height:11.733399pt;}
.h9_c00311{height:38.937500pt;}
.h5_c00311{height:57.813333pt;}
.h6_c00311{height:64.500000pt;}
.h3_c00311{height:70.664062pt;}
.h4_c00311{height:74.906250pt;}
.h7_c00311{height:81.031250pt;}
.h2_c00311{height:83.312500pt;}
.h0_c00311{height:875.066667pt;}
.h1_c00311{height:875.333333pt;}
.w2_c00311{width:93.222667pt;}
.w0_c00311{width:586.533333pt;}
.w1_c00311{width:586.666667pt;}
.x0_c00311{left:0.000000pt;}
.x7_c00311{left:41.333333pt;}
.x5_c00311{left:45.333333pt;}
.xa_c00311{left:64.533333pt;}
.x4_c00311{left:120.666667pt;}
.x1_c00311{left:124.400000pt;}
.x2_c00311{left:125.733333pt;}
.x3_c00311{left:126.933333pt;}
.x6_c00311{left:128.666667pt;}
.x8_c00311{left:130.533333pt;}
.x9_c00311{left:131.600000pt;}
.xc_c00311{left:250.434896pt;}
.xb_c00311{left:527.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_97d5a5760488fbd305c69aa1.woff2')format("woff");}.ff1_c00312{font-family:ff1_c00312;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00312;src:url('chunks/assets/font_d5a46c1dead42e33e7ab7d59.woff2')format("woff");}.ff2_c00312{font-family:ff2_c00312;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00312;src:url('chunks/assets/font_473b2111ea2d0e424ea759ab.woff2')format("woff");}.ff3_c00312{font-family:ff3_c00312;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00312;src:url('chunks/assets/font_059673f66a758b424ba475dd.woff2')format("woff");}.ff4_c00312{font-family:ff4_c00312;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00312;src:url('chunks/assets/font_cd34e9ca9d88df1185f88a5e.woff2')format("woff");}.ff5_c00312{font-family:ff5_c00312;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00312;src:url('chunks/assets/font_9b2cec00e13dbed5b1929c2f.woff2')format("woff");}.ff6_c00312{font-family:ff6_c00312;line-height:1.437000;font-style:normal;font-weight: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_c00312;src:url('chunks/assets/font_59a785d5fb78e70791dd5374.woff2')format("woff");}.ff7_c00312{font-family:ff7_c00312;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00312;src:url('chunks/assets/font_d93a2416ea213c48ea21d431.woff2')format("woff");}.ff8_c00312{font-family:ff8_c00312;line-height:1.437000;font-style:normal;font-weight: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_c00312;src:url('chunks/assets/font_a7739f6186f1f6ca6b739494.woff2')format("woff");}.ff9_c00312{font-family:ff9_c00312;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00312;src:url('chunks/assets/font_2b7b102f6dba3f55933b6b0e.woff2')format("woff");}.ffa_c00312{font-family:ffa_c00312;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c00312;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ffb_c00312{font-family:ffb_c00312;line-height:1.219238;font-style: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;}
.ls4_c00312{letter-spacing:-9.000000px;}
.ls6_c00312{letter-spacing:-6.000000px;}
.ls5_c00312{letter-spacing:0.000000px;}
.ls3_c00312{letter-spacing:3.000000px;}
.ls1_c00312{letter-spacing:6.000000px;}
.ls2_c00312{letter-spacing:14.232000px;}
.ls0_c00312{letter-spacing:25.338000px;}
.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;}
}
.ws1_c00312{word-spacing:-61.686000px;}
.ws0_c00312{word-spacing:-55.992000px;}
.ws2_c00312{word-spacing:-17.352000px;}
.ws3_c00312{word-spacing:0.000000px;}
._12_c00312{margin-left:-22.449000px;}
._1e_c00312{margin-left:-18.477000px;}
._1f_c00312{margin-left:-17.070000px;}
._5_c00312{margin-left:-13.125000px;}
._15_c00312{margin-left:-11.685000px;}
._13_c00312{margin-left:-9.936000px;}
._3_c00312{margin-left:-8.925000px;}
._17_c00312{margin-left:-7.020000px;}
._d_c00312{margin-left:-5.415000px;}
._0_c00312{margin-left:-4.305000px;}
._1_c00312{margin-left:-3.045000px;}
._2_c00312{margin-left:-1.260000px;}
._e_c00312{width:1.305000px;}
._4_c00312{width:2.310000px;}
._c_c00312{width:3.699000px;}
._9_c00312{width:4.725000px;}
._a_c00312{width:6.090000px;}
._8_c00312{width:7.245000px;}
._10_c00312{width:8.319000px;}
._7_c00312{width:9.870000px;}
._11_c00312{width:11.145000px;}
._f_c00312{width:12.885000px;}
._6_c00312{width:14.595000px;}
._1d_c00312{width:16.059000px;}
._14_c00312{width:18.462000px;}
._16_c00312{width:32.046000px;}
._1c_c00312{width:38.604000px;}
._b_c00312{width:65.055000px;}
._18_c00312{width:165.990000px;}
._20_c00312{width:306.255000px;}
._1a_c00312{width:341.661000px;}
._1b_c00312{width:417.837000px;}
._19_c00312{width:575.664000px;}
.fc2_c00312{color:transparent;}
.fc1_c00312{color:rgb(128,128,128);}
.fc0_c00312{color:rgb(0,0,0);}
.fs6_c00312{font-size:24.000000px;}
.fs8_c00312{font-size:48.000000px;}
.fs7_c00312{font-size:57.000000px;}
.fs5_c00312{font-size:72.000000px;}
.fs4_c00312{font-size:78.000000px;}
.fs3_c00312{font-size:81.000000px;}
.fs1_c00312{font-size:87.000000px;}
.fs2_c00312{font-size:96.000000px;}
.fs0_c00312{font-size:105.000000px;}
.y0_c00312{bottom:0.000000px;}
.y27_c00312{bottom:3.105000px;}
.y26_c00312{bottom:7.228355px;}
.y25_c00312{bottom:60.285000px;}
.y24_c00312{bottom:90.735000px;}
.y23_c00312{bottom:116.085000px;}
.y22_c00312{bottom:140.685000px;}
.y21_c00312{bottom:165.585000px;}
.y20_c00312{bottom:190.035000px;}
.y1f_c00312{bottom:214.185000px;}
.y1e_c00312{bottom:238.935000px;}
.y1d_c00312{bottom:263.235000px;}
.y1c_c00312{bottom:287.535000px;}
.y1b_c00312{bottom:311.535000px;}
.y1a_c00312{bottom:335.835000px;}
.y19_c00312{bottom:359.985000px;}
.y18_c00312{bottom:384.285000px;}
.y17_c00312{bottom:408.585000px;}
.y16_c00312{bottom:432.585000px;}
.y15_c00312{bottom:456.585000px;}
.y14_c00312{bottom:468.435000px;}
.y13_c00312{bottom:480.885000px;}
.y12_c00312{bottom:505.785000px;}
.y11_c00312{bottom:529.185000px;}
.y10_c00312{bottom:553.185000px;}
.yf_c00312{bottom:576.735000px;}
.ye_c00312{bottom:600.435000px;}
.yd_c00312{bottom:624.285000px;}
.yc_c00312{bottom:648.285000px;}
.yb_c00312{bottom:671.985000px;}
.ya_c00312{bottom:696.285000px;}
.y9_c00312{bottom:720.435000px;}
.y8_c00312{bottom:744.435000px;}
.y7_c00312{bottom:768.435000px;}
.y6_c00312{bottom:793.785000px;}
.y5_c00312{bottom:816.735000px;}
.y4_c00312{bottom:840.585000px;}
.y3_c00312{bottom:865.035000px;}
.y2_c00312{bottom:888.585000px;}
.y1_c00312{bottom:923.985000px;}
.h9_c00312{height:13.200074px;}
.ha_c00312{height:43.804688px;}
.h7_c00312{height:59.736000px;}
.h3_c00312{height:79.497070px;}
.h8_c00312{height:84.269531px;}
.h6_c00312{height:91.160156px;}
.h5_c00312{height:91.176000px;}
.h4_c00312{height:98.756836px;}
.h2_c00312{height:121.546875px;}
.h0_c00312{height:977.925000px;}
.h1_c00312{height:978.000000px;}
.w2_c00312{width:104.875500px;}
.w0_c00312{width:664.200000px;}
.w1_c00312{width:664.500000px;}
.x0_c00312{left:0.000000px;}
.x9_c00312{left:45.150000px;}
.x2_c00312{left:57.000000px;}
.x3_c00312{left:58.350000px;}
.x4_c00312{left:59.400000px;}
.x5_c00312{left:61.050000px;}
.x6_c00312{left:62.400000px;}
.x8_c00312{left:63.450000px;}
.xb_c00312{left:65.700000px;}
.xa_c00312{left:66.750000px;}
.xc_c00312{left:67.800000px;}
.x1_c00312{left:127.800000px;}
.x7_c00312{left:201.150000px;}
.xe_c00312{left:283.914230px;}
.xd_c00312{left:402.300000px;}
@media print{
.v0_c00312{vertical-align:0.000000pt;}
.ls4_c00312{letter-spacing:-8.000000pt;}
.ls6_c00312{letter-spacing:-5.333333pt;}
.ls5_c00312{letter-spacing:0.000000pt;}
.ls3_c00312{letter-spacing:2.666667pt;}
.ls1_c00312{letter-spacing:5.333333pt;}
.ls2_c00312{letter-spacing:12.650667pt;}
.ls0_c00312{letter-spacing:22.522667pt;}
.ws1_c00312{word-spacing:-54.832000pt;}
.ws0_c00312{word-spacing:-49.770667pt;}
.ws2_c00312{word-spacing:-15.424000pt;}
.ws3_c00312{word-spacing:0.000000pt;}
._12_c00312{margin-left:-19.954667pt;}
._1e_c00312{margin-left:-16.424000pt;}
._1f_c00312{margin-left:-15.173333pt;}
._5_c00312{margin-left:-11.666667pt;}
._15_c00312{margin-left:-10.386667pt;}
._13_c00312{margin-left:-8.832000pt;}
._3_c00312{margin-left:-7.933333pt;}
._17_c00312{margin-left:-6.240000pt;}
._d_c00312{margin-left:-4.813333pt;}
._0_c00312{margin-left:-3.826667pt;}
._1_c00312{margin-left:-2.706667pt;}
._2_c00312{margin-left:-1.120000pt;}
._e_c00312{width:1.160000pt;}
._4_c00312{width:2.053333pt;}
._c_c00312{width:3.288000pt;}
._9_c00312{width:4.200000pt;}
._a_c00312{width:5.413333pt;}
._8_c00312{width:6.440000pt;}
._10_c00312{width:7.394667pt;}
._7_c00312{width:8.773333pt;}
._11_c00312{width:9.906667pt;}
._f_c00312{width:11.453333pt;}
._6_c00312{width:12.973333pt;}
._1d_c00312{width:14.274667pt;}
._14_c00312{width:16.410667pt;}
._16_c00312{width:28.485333pt;}
._1c_c00312{width:34.314667pt;}
._b_c00312{width:57.826667pt;}
._18_c00312{width:147.546667pt;}
._20_c00312{width:272.226667pt;}
._1a_c00312{width:303.698667pt;}
._1b_c00312{width:371.410667pt;}
._19_c00312{width:511.701333pt;}
.fs6_c00312{font-size:21.333333pt;}
.fs8_c00312{font-size:42.666667pt;}
.fs7_c00312{font-size:50.666667pt;}
.fs5_c00312{font-size:64.000000pt;}
.fs4_c00312{font-size:69.333333pt;}
.fs3_c00312{font-size:72.000000pt;}
.fs1_c00312{font-size:77.333333pt;}
.fs2_c00312{font-size:85.333333pt;}
.fs0_c00312{font-size:93.333333pt;}
.y0_c00312{bottom:0.000000pt;}
.y27_c00312{bottom:2.760000pt;}
.y26_c00312{bottom:6.425204pt;}
.y25_c00312{bottom:53.586667pt;}
.y24_c00312{bottom:80.653333pt;}
.y23_c00312{bottom:103.186667pt;}
.y22_c00312{bottom:125.053333pt;}
.y21_c00312{bottom:147.186667pt;}
.y20_c00312{bottom:168.920000pt;}
.y1f_c00312{bottom:190.386667pt;}
.y1e_c00312{bottom:212.386667pt;}
.y1d_c00312{bottom:233.986667pt;}
.y1c_c00312{bottom:255.586667pt;}
.y1b_c00312{bottom:276.920000pt;}
.y1a_c00312{bottom:298.520000pt;}
.y19_c00312{bottom:319.986667pt;}
.y18_c00312{bottom:341.586667pt;}
.y17_c00312{bottom:363.186667pt;}
.y16_c00312{bottom:384.520000pt;}
.y15_c00312{bottom:405.853333pt;}
.y14_c00312{bottom:416.386667pt;}
.y13_c00312{bottom:427.453333pt;}
.y12_c00312{bottom:449.586667pt;}
.y11_c00312{bottom:470.386667pt;}
.y10_c00312{bottom:491.720000pt;}
.yf_c00312{bottom:512.653333pt;}
.ye_c00312{bottom:533.720000pt;}
.yd_c00312{bottom:554.920000pt;}
.yc_c00312{bottom:576.253333pt;}
.yb_c00312{bottom:597.320000pt;}
.ya_c00312{bottom:618.920000pt;}
.y9_c00312{bottom:640.386667pt;}
.y8_c00312{bottom:661.720000pt;}
.y7_c00312{bottom:683.053333pt;}
.y6_c00312{bottom:705.586667pt;}
.y5_c00312{bottom:725.986667pt;}
.y4_c00312{bottom:747.186667pt;}
.y3_c00312{bottom:768.920000pt;}
.y2_c00312{bottom:789.853333pt;}
.y1_c00312{bottom:821.320000pt;}
.h9_c00312{height:11.733399pt;}
.ha_c00312{height:38.937500pt;}
.h7_c00312{height:53.098667pt;}
.h3_c00312{height:70.664062pt;}
.h8_c00312{height:74.906250pt;}
.h6_c00312{height:81.031250pt;}
.h5_c00312{height:81.045333pt;}
.h4_c00312{height:87.783854pt;}
.h2_c00312{height:108.041667pt;}
.h0_c00312{height:869.266667pt;}
.h1_c00312{height:869.333333pt;}
.w2_c00312{width:93.222667pt;}
.w0_c00312{width:590.400000pt;}
.w1_c00312{width:590.666667pt;}
.x0_c00312{left:0.000000pt;}
.x9_c00312{left:40.133333pt;}
.x2_c00312{left:50.666667pt;}
.x3_c00312{left:51.866667pt;}
.x4_c00312{left:52.800000pt;}
.x5_c00312{left:54.266667pt;}
.x6_c00312{left:55.466667pt;}
.x8_c00312{left:56.400000pt;}
.xb_c00312{left:58.400000pt;}
.xa_c00312{left:59.333333pt;}
.xc_c00312{left:60.266667pt;}
.x1_c00312{left:113.600000pt;}
.x7_c00312{left:178.800000pt;}
.xe_c00312{left:252.368205pt;}
.xd_c00312{left:357.600000pt;}
}





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

.ir_c00313:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00313{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00313;src:url('chunks/assets/font_f81b4bd07ae9d1ef851214b0.woff2')format("woff");}.ff1_c00313{font-family:ff1_c00313;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00313;src:url('chunks/assets/font_032f2f3158a9274423fde0e0.woff2')format("woff");}.ff2_c00313{font-family:ff2_c00313;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00313;src:url('chunks/assets/font_1f4a10a3bd7d244d4c6e35b5.woff2')format("woff");}.ff3_c00313{font-family:ff3_c00313;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00313;src:url('chunks/assets/font_44aec4e26883c013d53f6745.woff2')format("woff");}.ff4_c00313{font-family:ff4_c00313;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00313;src:url('chunks/assets/font_034fd77b74fafa7fd27148f5.woff2')format("woff");}.ff5_c00313{font-family:ff5_c00313;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00313;src:url('chunks/assets/font_e73ef7105c57cd607ca7bd15.woff2')format("woff");}.ff6_c00313{font-family:ff6_c00313;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00313;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c00313{font-family:ff7_c00313;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00313{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m0_c00313{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00313{vertical-align:0.000000px;}
.ls4_c00313{letter-spacing:-6.000000px;}
.ls3_c00313{letter-spacing:0.000000px;}
.ls2_c00313{letter-spacing:2.430000px;}
.ls1_c00313{letter-spacing:6.450000px;}
.ls0_c00313{letter-spacing:6.600000px;}
.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;}
}
.ws1_c00313{word-spacing:-61.686000px;}
.ws2_c00313{word-spacing:-27.000000px;}
.ws5_c00313{word-spacing:-20.250000px;}
.ws4_c00313{word-spacing:-18.798000px;}
.ws3_c00313{word-spacing:-18.750000px;}
.ws0_c00313{word-spacing:-17.352000px;}
.ws6_c00313{word-spacing:0.000000px;}
._f_c00313{margin-left:-12.744000px;}
._1_c00313{margin-left:-10.296000px;}
._b_c00313{margin-left:-9.240000px;}
._0_c00313{margin-left:-7.632000px;}
._a_c00313{margin-left:-6.264000px;}
._2_c00313{margin-left:-4.800000px;}
._3_c00313{margin-left:-2.952000px;}
._8_c00313{margin-left:-1.080000px;}
._c_c00313{width:1.044000px;}
._7_c00313{width:2.160000px;}
._6_c00313{width:3.456000px;}
._9_c00313{width:4.680000px;}
._5_c00313{width:5.700000px;}
._d_c00313{width:7.188000px;}
._10_c00313{width:8.736000px;}
._e_c00313{width:9.882000px;}
._12_c00313{width:10.896000px;}
._1b_c00313{width:11.955000px;}
._4_c00313{width:12.960000px;}
._11_c00313{width:14.376000px;}
._16_c00313{width:15.561000px;}
._15_c00313{width:19.431000px;}
._14_c00313{width:22.401000px;}
._1c_c00313{width:23.409000px;}
._17_c00313{width:25.821000px;}
._13_c00313{width:37.083000px;}
._19_c00313{width:45.333000px;}
._1a_c00313{width:95.868000px;}
._18_c00313{width:393.813000px;}
.fc2_c00313{color:transparent;}
.fc1_c00313{color:rgb(128,128,128);}
.fc0_c00313{color:rgb(0,0,0);}
.fs9_c00313{font-size:48.000000px;}
.fs6_c00313{font-size:57.000000px;}
.fs1_c00313{font-size:66.000000px;}
.fs8_c00313{font-size:69.000000px;}
.fs0_c00313{font-size:72.000000px;}
.fs5_c00313{font-size:75.000000px;}
.fs7_c00313{font-size:78.000000px;}
.fs2_c00313{font-size:81.000000px;}
.fs3_c00313{font-size:87.000000px;}
.fs4_c00313{font-size:108.000000px;}
.y0_c00313{bottom:0.000000px;}
.y27_c00313{bottom:3.105000px;}
.y26_c00313{bottom:7.228357px;}
.y25_c00313{bottom:75.630000px;}
.y24_c00313{bottom:99.930000px;}
.y23_c00313{bottom:124.830000px;}
.y22_c00313{bottom:148.830000px;}
.y21_c00313{bottom:173.880000px;}
.y20_c00313{bottom:198.480000px;}
.y1f_c00313{bottom:222.780000px;}
.y1e_c00313{bottom:249.780000px;}
.y1d_c00313{bottom:271.980000px;}
.y1c_c00313{bottom:297.030000px;}
.y1b_c00313{bottom:320.580000px;}
.y1a_c00313{bottom:344.880000px;}
.y19_c00313{bottom:371.280000px;}
.y18_c00313{bottom:394.530000px;}
.y17_c00313{bottom:417.780000px;}
.y16_c00313{bottom:441.180000px;}
.y15_c00313{bottom:465.480000px;}
.y14_c00313{bottom:490.830000px;}
.y13_c00313{bottom:514.980000px;}
.y12_c00313{bottom:539.280000px;}
.y11_c00313{bottom:563.280000px;}
.y10_c00313{bottom:587.280000px;}
.y2_c00313{bottom:594.780000px;}
.yf_c00313{bottom:611.280000px;}
.y1_c00313{bottom:621.630000px;}
.ye_c00313{bottom:635.580000px;}
.yd_c00313{bottom:659.880000px;}
.yc_c00313{bottom:684.480000px;}
.yb_c00313{bottom:708.030000px;}
.ya_c00313{bottom:732.330000px;}
.y9_c00313{bottom:758.130000px;}
.y8_c00313{bottom:780.330000px;}
.y7_c00313{bottom:805.230000px;}
.y6_c00313{bottom:828.330000px;}
.y5_c00313{bottom:852.480000px;}
.y4_c00313{bottom:876.180000px;}
.y3_c00313{bottom:901.230000px;}
.h9_c00313{height:13.200074px;}
.ha_c00313{height:43.804688px;}
.h8_c00313{height:67.686035px;}
.h6_c00313{height:72.168457px;}
.h5_c00313{height:73.571777px;}
.h4_c00313{height:79.497070px;}
.h1_c00313{height:84.269531px;}
.h2_c00313{height:91.176000px;}
.h7_c00313{height:98.756836px;}
.h3_c00313{height:108.843750px;}
.h0_c00313{height:995.250000px;}
.w2_c00313{width:104.875500px;}
.w0_c00313{width:667.425000px;}
.w1_c00313{width:667.500000px;}
.x0_c00313{left:0.000000px;}
.xf_c00313{left:24.600000px;}
.x1_c00313{left:26.400000px;}
.x2_c00313{left:29.100000px;}
.x17_c00313{left:112.500000px;}
.x16_c00313{left:114.750000px;}
.x15_c00313{left:115.800000px;}
.x14_c00313{left:116.850000px;}
.x13_c00313{left:117.900000px;}
.x12_c00313{left:119.100000px;}
.x11_c00313{left:120.150000px;}
.x10_c00313{left:121.800000px;}
.xe_c00313{left:123.900000px;}
.x9_c00313{left:124.950000px;}
.x3_c00313{left:126.150000px;}
.x4_c00313{left:151.500000px;}
.xa_c00313{left:177.300000px;}
.xb_c00313{left:285.300000px;}
.x5_c00313{left:366.300000px;}
.x6_c00313{left:407.400000px;}
.xc_c00313{left:504.000000px;}
.x7_c00313{left:512.700000px;}
.xd_c00313{left:528.900000px;}
.x18_c00313{left:544.500000px;}
.x8_c00313{left:577.500000px;}
@media print{
.v0_c00313{vertical-align:0.000000pt;}
.ls4_c00313{letter-spacing:-5.333333pt;}
.ls3_c00313{letter-spacing:0.000000pt;}
.ls2_c00313{letter-spacing:2.160000pt;}
.ls1_c00313{letter-spacing:5.733333pt;}
.ls0_c00313{letter-spacing:5.866667pt;}
.ws1_c00313{word-spacing:-54.832000pt;}
.ws2_c00313{word-spacing:-24.000000pt;}
.ws5_c00313{word-spacing:-18.000000pt;}
.ws4_c00313{word-spacing:-16.709333pt;}
.ws3_c00313{word-spacing:-16.666667pt;}
.ws0_c00313{word-spacing:-15.424000pt;}
.ws6_c00313{word-spacing:0.000000pt;}
._f_c00313{margin-left:-11.328000pt;}
._1_c00313{margin-left:-9.152000pt;}
._b_c00313{margin-left:-8.213333pt;}
._0_c00313{margin-left:-6.784000pt;}
._a_c00313{margin-left:-5.568000pt;}
._2_c00313{margin-left:-4.266667pt;}
._3_c00313{margin-left:-2.624000pt;}
._8_c00313{margin-left:-0.960000pt;}
._c_c00313{width:0.928000pt;}
._7_c00313{width:1.920000pt;}
._6_c00313{width:3.072000pt;}
._9_c00313{width:4.160000pt;}
._5_c00313{width:5.066667pt;}
._d_c00313{width:6.389333pt;}
._10_c00313{width:7.765333pt;}
._e_c00313{width:8.784000pt;}
._12_c00313{width:9.685333pt;}
._1b_c00313{width:10.626667pt;}
._4_c00313{width:11.520000pt;}
._11_c00313{width:12.778667pt;}
._16_c00313{width:13.832000pt;}
._15_c00313{width:17.272000pt;}
._14_c00313{width:19.912000pt;}
._1c_c00313{width:20.808000pt;}
._17_c00313{width:22.952000pt;}
._13_c00313{width:32.962667pt;}
._19_c00313{width:40.296000pt;}
._1a_c00313{width:85.216000pt;}
._18_c00313{width:350.056000pt;}
.fs9_c00313{font-size:42.666667pt;}
.fs6_c00313{font-size:50.666667pt;}
.fs1_c00313{font-size:58.666667pt;}
.fs8_c00313{font-size:61.333333pt;}
.fs0_c00313{font-size:64.000000pt;}
.fs5_c00313{font-size:66.666667pt;}
.fs7_c00313{font-size:69.333333pt;}
.fs2_c00313{font-size:72.000000pt;}
.fs3_c00313{font-size:77.333333pt;}
.fs4_c00313{font-size:96.000000pt;}
.y0_c00313{bottom:0.000000pt;}
.y27_c00313{bottom:2.760000pt;}
.y26_c00313{bottom:6.425206pt;}
.y25_c00313{bottom:67.226667pt;}
.y24_c00313{bottom:88.826667pt;}
.y23_c00313{bottom:110.960000pt;}
.y22_c00313{bottom:132.293333pt;}
.y21_c00313{bottom:154.560000pt;}
.y20_c00313{bottom:176.426667pt;}
.y1f_c00313{bottom:198.026667pt;}
.y1e_c00313{bottom:222.026667pt;}
.y1d_c00313{bottom:241.760000pt;}
.y1c_c00313{bottom:264.026667pt;}
.y1b_c00313{bottom:284.960000pt;}
.y1a_c00313{bottom:306.560000pt;}
.y19_c00313{bottom:330.026667pt;}
.y18_c00313{bottom:350.693333pt;}
.y17_c00313{bottom:371.360000pt;}
.y16_c00313{bottom:392.160000pt;}
.y15_c00313{bottom:413.760000pt;}
.y14_c00313{bottom:436.293333pt;}
.y13_c00313{bottom:457.760000pt;}
.y12_c00313{bottom:479.360000pt;}
.y11_c00313{bottom:500.693333pt;}
.y10_c00313{bottom:522.026667pt;}
.y2_c00313{bottom:528.693333pt;}
.yf_c00313{bottom:543.360000pt;}
.y1_c00313{bottom:552.560000pt;}
.ye_c00313{bottom:564.960000pt;}
.yd_c00313{bottom:586.560000pt;}
.yc_c00313{bottom:608.426667pt;}
.yb_c00313{bottom:629.360000pt;}
.ya_c00313{bottom:650.960000pt;}
.y9_c00313{bottom:673.893333pt;}
.y8_c00313{bottom:693.626667pt;}
.y7_c00313{bottom:715.760000pt;}
.y6_c00313{bottom:736.293333pt;}
.y5_c00313{bottom:757.760000pt;}
.y4_c00313{bottom:778.826667pt;}
.y3_c00313{bottom:801.093333pt;}
.h9_c00313{height:11.733399pt;}
.ha_c00313{height:38.937500pt;}
.h8_c00313{height:60.165365pt;}
.h6_c00313{height:64.149740pt;}
.h5_c00313{height:65.397135pt;}
.h4_c00313{height:70.664062pt;}
.h1_c00313{height:74.906250pt;}
.h2_c00313{height:81.045333pt;}
.h7_c00313{height:87.783854pt;}
.h3_c00313{height:96.750000pt;}
.h0_c00313{height:884.666667pt;}
.w2_c00313{width:93.222667pt;}
.w0_c00313{width:593.266667pt;}
.w1_c00313{width:593.333333pt;}
.x0_c00313{left:0.000000pt;}
.xf_c00313{left:21.866667pt;}
.x1_c00313{left:23.466667pt;}
.x2_c00313{left:25.866667pt;}
.x17_c00313{left:100.000000pt;}
.x16_c00313{left:102.000000pt;}
.x15_c00313{left:102.933333pt;}
.x14_c00313{left:103.866667pt;}
.x13_c00313{left:104.800000pt;}
.x12_c00313{left:105.866667pt;}
.x11_c00313{left:106.800000pt;}
.x10_c00313{left:108.266667pt;}
.xe_c00313{left:110.133333pt;}
.x9_c00313{left:111.066667pt;}
.x3_c00313{left:112.133333pt;}
.x4_c00313{left:134.666667pt;}
.xa_c00313{left:157.600000pt;}
.xb_c00313{left:253.600000pt;}
.x5_c00313{left:325.600000pt;}
.x6_c00313{left:362.133333pt;}
.xc_c00313{left:448.000000pt;}
.x7_c00313{left:455.733333pt;}
.xd_c00313{left:470.133333pt;}
.x18_c00313{left:484.000000pt;}
.x8_c00313{left:513.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_11484da434ad2e6183542356.woff2')format("woff");}.ff1_c00314{font-family:ff1_c00314;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00314;src:url('chunks/assets/font_5b7a5839852cc649999dbd15.woff2')format("woff");}.ff2_c00314{font-family:ff2_c00314;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00314;src:url('chunks/assets/font_bd452140522a7194221d28fd.woff2')format("woff");}.ff3_c00314{font-family:ff3_c00314;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00314;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff4_c00314{font-family:ff4_c00314;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00314;src:url('chunks/assets/font_7de55143e7d4f7dcd6b3a848.woff2')format("woff");}.ff5_c00314{font-family:ff5_c00314;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00314;src:url('chunks/assets/font_7b3845c727e64e9e6e9f0c2a.woff2')format("woff");}.ff6_c00314{font-family:ff6_c00314;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00314;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c00314{font-family:ff7_c00314;line-height:1.219238;font-style: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;}
.ls2_c00314{letter-spacing:-6.000000px;}
.ls1_c00314{letter-spacing:0.000000px;}
.ls0_c00314{letter-spacing:3.000000px;}
.sc__c00314{text-shadow:none;}
.sc0_c00314{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00314{-webkit-text-stroke:0px transparent;}
.sc0_c00314{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00314{word-spacing:-61.686000px;}
.ws0_c00314{word-spacing:-59.184000px;}
.ws2_c00314{word-spacing:-20.250000px;}
.ws3_c00314{word-spacing:0.000000px;}
._16_c00314{margin-left:-33.858000px;}
._19_c00314{margin-left:-28.023000px;}
._15_c00314{margin-left:-21.318000px;}
._14_c00314{margin-left:-14.379000px;}
._18_c00314{margin-left:-12.909000px;}
._12_c00314{margin-left:-8.871000px;}
._11_c00314{margin-left:-6.714000px;}
._d_c00314{margin-left:-5.661000px;}
._10_c00314{margin-left:-4.458000px;}
._3_c00314{margin-left:-3.366000px;}
._f_c00314{margin-left:-2.352000px;}
._a_c00314{margin-left:-1.185000px;}
._2_c00314{width:1.530000px;}
._1_c00314{width:2.958000px;}
._0_c00314{width:4.284000px;}
._b_c00314{width:6.213000px;}
._8_c00314{width:7.452000px;}
._e_c00314{width:8.958000px;}
._7_c00314{width:10.023000px;}
._9_c00314{width:11.745000px;}
._5_c00314{width:13.464000px;}
._6_c00314{width:14.994000px;}
._1a_c00314{width:16.038000px;}
._1b_c00314{width:17.253000px;}
._1d_c00314{width:18.360000px;}
._c_c00314{width:39.525000px;}
._1c_c00314{width:42.168000px;}
._13_c00314{width:51.855000px;}
._17_c00314{width:59.559000px;}
._4_c00314{width:123.420000px;}
.fc2_c00314{color:transparent;}
.fc1_c00314{color:rgb(128,128,128);}
.fc0_c00314{color:rgb(0,0,0);}
.fs4_c00314{font-size:48.000000px;}
.fs2_c00314{font-size:72.000000px;}
.fs1_c00314{font-size:81.000000px;}
.fs3_c00314{font-size:87.000000px;}
.fs0_c00314{font-size:102.000000px;}
.y0_c00314{bottom:0.000000px;}
.y26_c00314{bottom:3.105000px;}
.y25_c00314{bottom:7.228363px;}
.y24_c00314{bottom:67.800000px;}
.y23_c00314{bottom:93.150000px;}
.y22_c00314{bottom:118.050000px;}
.y21_c00314{bottom:142.350000px;}
.y20_c00314{bottom:166.350000px;}
.y1f_c00314{bottom:191.250000px;}
.y1e_c00314{bottom:215.700000px;}
.y1d_c00314{bottom:240.150000px;}
.y1c_c00314{bottom:264.300000px;}
.y1b_c00314{bottom:288.450000px;}
.y1a_c00314{bottom:312.150000px;}
.y19_c00314{bottom:336.150000px;}
.y18_c00314{bottom:360.750000px;}
.y17_c00314{bottom:384.300000px;}
.y16_c00314{bottom:409.050000px;}
.y15_c00314{bottom:433.050000px;}
.y14_c00314{bottom:456.900000px;}
.y13_c00314{bottom:481.200000px;}
.y12_c00314{bottom:505.200000px;}
.y11_c00314{bottom:529.200000px;}
.y10_c00314{bottom:553.200000px;}
.yf_c00314{bottom:576.750000px;}
.ye_c00314{bottom:601.050000px;}
.yd_c00314{bottom:624.600000px;}
.yc_c00314{bottom:648.000000px;}
.yb_c00314{bottom:672.300000px;}
.ya_c00314{bottom:696.300000px;}
.y9_c00314{bottom:720.300000px;}
.y8_c00314{bottom:744.900000px;}
.y7_c00314{bottom:769.050000px;}
.y6_c00314{bottom:793.500000px;}
.y5_c00314{bottom:817.200000px;}
.y4_c00314{bottom:841.800000px;}
.y3_c00314{bottom:866.250000px;}
.y2_c00314{bottom:891.000000px;}
.y1_c00314{bottom:924.300000px;}
.h6_c00314{height:13.200074px;}
.h7_c00314{height:43.804688px;}
.h5_c00314{height:79.497070px;}
.h3_c00314{height:91.160156px;}
.h4_c00314{height:91.176000px;}
.h2_c00314{height:100.057617px;}
.h0_c00314{height:980.100000px;}
.h1_c00314{height:980.250000px;}
.w2_c00314{width:104.875500px;}
.w0_c00314{width:665.850000px;}
.w1_c00314{width:666.000000px;}
.x0_c00314{left:0.000000px;}
.x2_c00314{left:43.950000px;}
.x3_c00314{left:45.450000px;}
.x4_c00314{left:46.950000px;}
.x5_c00314{left:49.200000px;}
.x6_c00314{left:50.250000px;}
.x8_c00314{left:51.900000px;}
.x9_c00314{left:52.950000px;}
.xa_c00314{left:54.000000px;}
.x7_c00314{left:64.350000px;}
.x1_c00314{left:113.700000px;}
.xc_c00314{left:284.739258px;}
.xb_c00314{left:486.300000px;}
@media print{
.v0_c00314{vertical-align:0.000000pt;}
.ls2_c00314{letter-spacing:-5.333333pt;}
.ls1_c00314{letter-spacing:0.000000pt;}
.ls0_c00314{letter-spacing:2.666667pt;}
.ws1_c00314{word-spacing:-54.832000pt;}
.ws0_c00314{word-spacing:-52.608000pt;}
.ws2_c00314{word-spacing:-18.000000pt;}
.ws3_c00314{word-spacing:0.000000pt;}
._16_c00314{margin-left:-30.096000pt;}
._19_c00314{margin-left:-24.909333pt;}
._15_c00314{margin-left:-18.949333pt;}
._14_c00314{margin-left:-12.781333pt;}
._18_c00314{margin-left:-11.474667pt;}
._12_c00314{margin-left:-7.885333pt;}
._11_c00314{margin-left:-5.968000pt;}
._d_c00314{margin-left:-5.032000pt;}
._10_c00314{margin-left:-3.962667pt;}
._3_c00314{margin-left:-2.992000pt;}
._f_c00314{margin-left:-2.090667pt;}
._a_c00314{margin-left:-1.053333pt;}
._2_c00314{width:1.360000pt;}
._1_c00314{width:2.629333pt;}
._0_c00314{width:3.808000pt;}
._b_c00314{width:5.522667pt;}
._8_c00314{width:6.624000pt;}
._e_c00314{width:7.962667pt;}
._7_c00314{width:8.909333pt;}
._9_c00314{width:10.440000pt;}
._5_c00314{width:11.968000pt;}
._6_c00314{width:13.328000pt;}
._1a_c00314{width:14.256000pt;}
._1b_c00314{width:15.336000pt;}
._1d_c00314{width:16.320000pt;}
._c_c00314{width:35.133333pt;}
._1c_c00314{width:37.482667pt;}
._13_c00314{width:46.093333pt;}
._17_c00314{width:52.941333pt;}
._4_c00314{width:109.706667pt;}
.fs4_c00314{font-size:42.666667pt;}
.fs2_c00314{font-size:64.000000pt;}
.fs1_c00314{font-size:72.000000pt;}
.fs3_c00314{font-size:77.333333pt;}
.fs0_c00314{font-size:90.666667pt;}
.y0_c00314{bottom:0.000000pt;}
.y26_c00314{bottom:2.760000pt;}
.y25_c00314{bottom:6.425212pt;}
.y24_c00314{bottom:60.266667pt;}
.y23_c00314{bottom:82.800000pt;}
.y22_c00314{bottom:104.933333pt;}
.y21_c00314{bottom:126.533333pt;}
.y20_c00314{bottom:147.866667pt;}
.y1f_c00314{bottom:170.000000pt;}
.y1e_c00314{bottom:191.733333pt;}
.y1d_c00314{bottom:213.466667pt;}
.y1c_c00314{bottom:234.933333pt;}
.y1b_c00314{bottom:256.400000pt;}
.y1a_c00314{bottom:277.466667pt;}
.y19_c00314{bottom:298.800000pt;}
.y18_c00314{bottom:320.666667pt;}
.y17_c00314{bottom:341.600000pt;}
.y16_c00314{bottom:363.600000pt;}
.y15_c00314{bottom:384.933333pt;}
.y14_c00314{bottom:406.133333pt;}
.y13_c00314{bottom:427.733333pt;}
.y12_c00314{bottom:449.066667pt;}
.y11_c00314{bottom:470.400000pt;}
.y10_c00314{bottom:491.733333pt;}
.yf_c00314{bottom:512.666667pt;}
.ye_c00314{bottom:534.266667pt;}
.yd_c00314{bottom:555.200000pt;}
.yc_c00314{bottom:576.000000pt;}
.yb_c00314{bottom:597.600000pt;}
.ya_c00314{bottom:618.933333pt;}
.y9_c00314{bottom:640.266667pt;}
.y8_c00314{bottom:662.133333pt;}
.y7_c00314{bottom:683.600000pt;}
.y6_c00314{bottom:705.333333pt;}
.y5_c00314{bottom:726.400000pt;}
.y4_c00314{bottom:748.266667pt;}
.y3_c00314{bottom:770.000000pt;}
.y2_c00314{bottom:792.000000pt;}
.y1_c00314{bottom:821.600000pt;}
.h6_c00314{height:11.733399pt;}
.h7_c00314{height:38.937500pt;}
.h5_c00314{height:70.664062pt;}
.h3_c00314{height:81.031250pt;}
.h4_c00314{height:81.045333pt;}
.h2_c00314{height:88.940104pt;}
.h0_c00314{height:871.200000pt;}
.h1_c00314{height:871.333333pt;}
.w2_c00314{width:93.222667pt;}
.w0_c00314{width:591.866667pt;}
.w1_c00314{width:592.000000pt;}
.x0_c00314{left:0.000000pt;}
.x2_c00314{left:39.066667pt;}
.x3_c00314{left:40.400000pt;}
.x4_c00314{left:41.733333pt;}
.x5_c00314{left:43.733333pt;}
.x6_c00314{left:44.666667pt;}
.x8_c00314{left:46.133333pt;}
.x9_c00314{left:47.066667pt;}
.xa_c00314{left:48.000000pt;}
.x7_c00314{left:57.200000pt;}
.x1_c00314{left:101.066667pt;}
.xc_c00314{left:253.101563pt;}
.xb_c00314{left:432.266667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_8983491a2b9aeb73d56d0e6b.woff2')format("woff");}.ff1_c00315{font-family:ff1_c00315;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00315;src:url('chunks/assets/font_1a6e2d415af45d63ee959c0f.woff2')format("woff");}.ff2_c00315{font-family:ff2_c00315;line-height:1.437000;font-style:normal;font-weight:normal;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_83f7fe3c48c46ca459dc89e1.woff2')format("woff");}.ff3_c00315{font-family:ff3_c00315;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00315;src:url('chunks/assets/font_37d7ef9eeb51225b62ebff43.woff2')format("woff");}.ff4_c00315{font-family:ff4_c00315;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00315;src:url('chunks/assets/font_14771c1b53cfe7277b038611.woff2')format("woff");}.ff5_c00315{font-family:ff5_c00315;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00315;src:url('chunks/assets/font_1fc4daf11b18e45ec004354a.woff2')format("woff");}.ff6_c00315{font-family:ff6_c00315;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00315;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c00315{font-family:ff7_c00315;line-height:1.219238;font-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_c00315{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,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;}
.ls6_c00315{letter-spacing:-6.000000px;}
.ls5_c00315{letter-spacing:0.000000px;}
.ls2_c00315{letter-spacing:1.002000px;}
.ls1_c00315{letter-spacing:1.080000px;}
.ls0_c00315{letter-spacing:1.500000px;}
.ls3_c00315{letter-spacing:18.864000px;}
.ls4_c00315{letter-spacing:20.802000px;}
.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:-61.686000px;}
.ws3_c00315{word-spacing:-33.000000px;}
.ws2_c00315{word-spacing:-17.352000px;}
.ws0_c00315{word-spacing:-13.737000px;}
.ws5_c00315{word-spacing:0.000000px;}
.ws4_c00315{word-spacing:3.417000px;}
._11_c00315{margin-left:-15.264000px;}
._10_c00315{margin-left:-13.563000px;}
._f_c00315{margin-left:-11.313000px;}
._16_c00315{margin-left:-9.576000px;}
._12_c00315{margin-left:-8.343000px;}
._e_c00315{margin-left:-7.272000px;}
._0_c00315{margin-left:-6.156000px;}
._a_c00315{margin-left:-4.860000px;}
._1_c00315{margin-left:-3.159000px;}
._9_c00315{margin-left:-1.701000px;}
._d_c00315{width:1.518000px;}
._5_c00315{width:2.673000px;}
._8_c00315{width:4.293000px;}
._4_c00315{width:5.427000px;}
._7_c00315{width:6.561000px;}
._3_c00315{width:8.505000px;}
._2_c00315{width:10.449000px;}
._6_c00315{width:11.526000px;}
._19_c00315{width:12.798000px;}
._14_c00315{width:14.241000px;}
._b_c00315{width:16.122000px;}
._1b_c00315{width:18.462000px;}
._c_c00315{width:19.872000px;}
._13_c00315{width:22.716000px;}
._17_c00315{width:29.184000px;}
._15_c00315{width:80.754000px;}
._1a_c00315{width:190.068000px;}
._18_c00315{width:288.834000px;}
.fc2_c00315{color:transparent;}
.fc1_c00315{color:rgb(128,128,128);}
.fc0_c00315{color:rgb(0,0,0);}
.fs8_c00315{font-size:48.000000px;}
.fs7_c00315{font-size:51.000000px;}
.fs2_c00315{font-size:57.000000px;}
.fs6_c00315{font-size:66.000000px;}
.fs3_c00315{font-size:72.000000px;}
.fs4_c00315{font-size:78.000000px;}
.fs0_c00315{font-size:81.000000px;}
.fs1_c00315{font-size:87.000000px;}
.fs5_c00315{font-size:108.000000px;}
.y0_c00315{bottom:0.000000px;}
.y25_c00315{bottom:3.105000px;}
.y24_c00315{bottom:7.228357px;}
.y23_c00315{bottom:70.980000px;}
.y22_c00315{bottom:94.230000px;}
.y21_c00315{bottom:119.880000px;}
.y20_c00315{bottom:144.480000px;}
.y1f_c00315{bottom:169.080000px;}
.y1e_c00315{bottom:193.380000px;}
.y1d_c00315{bottom:217.980000px;}
.y1c_c00315{bottom:242.280000px;}
.y1b_c00315{bottom:266.280000px;}
.y1a_c00315{bottom:291.030000px;}
.y19_c00315{bottom:315.180000px;}
.y18_c00315{bottom:339.480000px;}
.y17_c00315{bottom:363.780000px;}
.y16_c00315{bottom:388.080000px;}
.y15_c00315{bottom:412.380000px;}
.y14_c00315{bottom:437.730000px;}
.y13_c00315{bottom:460.980000px;}
.y12_c00315{bottom:485.430000px;}
.y11_c00315{bottom:508.680000px;}
.y10_c00315{bottom:532.680000px;}
.yf_c00315{bottom:556.980000px;}
.ye_c00315{bottom:580.830000px;}
.yd_c00315{bottom:605.430000px;}
.yc_c00315{bottom:629.430000px;}
.yb_c00315{bottom:654.030000px;}
.ya_c00315{bottom:677.730000px;}
.y9_c00315{bottom:702.030000px;}
.y8_c00315{bottom:726.330000px;}
.y7_c00315{bottom:750.330000px;}
.y6_c00315{bottom:774.330000px;}
.y5_c00315{bottom:798.180000px;}
.y4_c00315{bottom:822.180000px;}
.y3_c00315{bottom:846.180000px;}
.y2_c00315{bottom:870.480000px;}
.y1_c00315{bottom:894.780000px;}
.h8_c00315{height:13.200074px;}
.h9_c00315{height:43.804688px;}
.h7_c00315{height:51.398438px;}
.h2_c00315{height:72.168457px;}
.h4_c00315{height:79.497070px;}
.h5_c00315{height:84.269531px;}
.h1_c00315{height:91.176000px;}
.h3_c00315{height:98.756836px;}
.h6_c00315{height:108.843750px;}
.h0_c00315{height:995.250000px;}
.w2_c00315{width:104.875500px;}
.w0_c00315{width:667.425000px;}
.w1_c00315{width:667.500000px;}
.x0_c00315{left:0.000000px;}
.xa_c00315{left:31.350000px;}
.x5_c00315{left:34.350000px;}
.x4_c00315{left:115.800000px;}
.x1_c00315{left:120.150000px;}
.xb_c00315{left:121.200000px;}
.x9_c00315{left:122.850000px;}
.x6_c00315{left:124.200000px;}
.x7_c00315{left:125.850000px;}
.x2_c00315{left:127.200000px;}
.x3_c00315{left:128.550000px;}
.x8_c00315{left:163.350000px;}
.xd_c00315{left:285.526749px;}
.xc_c00315{left:583.500000px;}
@media print{
.v0_c00315{vertical-align:0.000000pt;}
.ls6_c00315{letter-spacing:-5.333333pt;}
.ls5_c00315{letter-spacing:0.000000pt;}
.ls2_c00315{letter-spacing:0.890667pt;}
.ls1_c00315{letter-spacing:0.960000pt;}
.ls0_c00315{letter-spacing:1.333333pt;}
.ls3_c00315{letter-spacing:16.768000pt;}
.ls4_c00315{letter-spacing:18.490667pt;}
.ws1_c00315{word-spacing:-54.832000pt;}
.ws3_c00315{word-spacing:-29.333333pt;}
.ws2_c00315{word-spacing:-15.424000pt;}
.ws0_c00315{word-spacing:-12.210667pt;}
.ws5_c00315{word-spacing:0.000000pt;}
.ws4_c00315{word-spacing:3.037333pt;}
._11_c00315{margin-left:-13.568000pt;}
._10_c00315{margin-left:-12.056000pt;}
._f_c00315{margin-left:-10.056000pt;}
._16_c00315{margin-left:-8.512000pt;}
._12_c00315{margin-left:-7.416000pt;}
._e_c00315{margin-left:-6.464000pt;}
._0_c00315{margin-left:-5.472000pt;}
._a_c00315{margin-left:-4.320000pt;}
._1_c00315{margin-left:-2.808000pt;}
._9_c00315{margin-left:-1.512000pt;}
._d_c00315{width:1.349333pt;}
._5_c00315{width:2.376000pt;}
._8_c00315{width:3.816000pt;}
._4_c00315{width:4.824000pt;}
._7_c00315{width:5.832000pt;}
._3_c00315{width:7.560000pt;}
._2_c00315{width:9.288000pt;}
._6_c00315{width:10.245333pt;}
._19_c00315{width:11.376000pt;}
._14_c00315{width:12.658667pt;}
._b_c00315{width:14.330667pt;}
._1b_c00315{width:16.410667pt;}
._c_c00315{width:17.664000pt;}
._13_c00315{width:20.192000pt;}
._17_c00315{width:25.941333pt;}
._15_c00315{width:71.781333pt;}
._1a_c00315{width:168.949333pt;}
._18_c00315{width:256.741333pt;}
.fs8_c00315{font-size:42.666667pt;}
.fs7_c00315{font-size:45.333333pt;}
.fs2_c00315{font-size:50.666667pt;}
.fs6_c00315{font-size:58.666667pt;}
.fs3_c00315{font-size:64.000000pt;}
.fs4_c00315{font-size:69.333333pt;}
.fs0_c00315{font-size:72.000000pt;}
.fs1_c00315{font-size:77.333333pt;}
.fs5_c00315{font-size:96.000000pt;}
.y0_c00315{bottom:0.000000pt;}
.y25_c00315{bottom:2.760000pt;}
.y24_c00315{bottom:6.425206pt;}
.y23_c00315{bottom:63.093333pt;}
.y22_c00315{bottom:83.760000pt;}
.y21_c00315{bottom:106.560000pt;}
.y20_c00315{bottom:128.426667pt;}
.y1f_c00315{bottom:150.293333pt;}
.y1e_c00315{bottom:171.893333pt;}
.y1d_c00315{bottom:193.760000pt;}
.y1c_c00315{bottom:215.360000pt;}
.y1b_c00315{bottom:236.693333pt;}
.y1a_c00315{bottom:258.693333pt;}
.y19_c00315{bottom:280.160000pt;}
.y18_c00315{bottom:301.760000pt;}
.y17_c00315{bottom:323.360000pt;}
.y16_c00315{bottom:344.960000pt;}
.y15_c00315{bottom:366.560000pt;}
.y14_c00315{bottom:389.093333pt;}
.y13_c00315{bottom:409.760000pt;}
.y12_c00315{bottom:431.493333pt;}
.y11_c00315{bottom:452.160000pt;}
.y10_c00315{bottom:473.493333pt;}
.yf_c00315{bottom:495.093333pt;}
.ye_c00315{bottom:516.293333pt;}
.yd_c00315{bottom:538.160000pt;}
.yc_c00315{bottom:559.493333pt;}
.yb_c00315{bottom:581.360000pt;}
.ya_c00315{bottom:602.426667pt;}
.y9_c00315{bottom:624.026667pt;}
.y8_c00315{bottom:645.626667pt;}
.y7_c00315{bottom:666.960000pt;}
.y6_c00315{bottom:688.293333pt;}
.y5_c00315{bottom:709.493333pt;}
.y4_c00315{bottom:730.826667pt;}
.y3_c00315{bottom:752.160000pt;}
.y2_c00315{bottom:773.760000pt;}
.y1_c00315{bottom:795.360000pt;}
.h8_c00315{height:11.733399pt;}
.h9_c00315{height:38.937500pt;}
.h7_c00315{height:45.687500pt;}
.h2_c00315{height:64.149740pt;}
.h4_c00315{height:70.664062pt;}
.h5_c00315{height:74.906250pt;}
.h1_c00315{height:81.045333pt;}
.h3_c00315{height:87.783854pt;}
.h6_c00315{height:96.750000pt;}
.h0_c00315{height:884.666667pt;}
.w2_c00315{width:93.222667pt;}
.w0_c00315{width:593.266667pt;}
.w1_c00315{width:593.333333pt;}
.x0_c00315{left:0.000000pt;}
.xa_c00315{left:27.866667pt;}
.x5_c00315{left:30.533333pt;}
.x4_c00315{left:102.933333pt;}
.x1_c00315{left:106.800000pt;}
.xb_c00315{left:107.733333pt;}
.x9_c00315{left:109.200000pt;}
.x6_c00315{left:110.400000pt;}
.x7_c00315{left:111.866667pt;}
.x2_c00315{left:113.066667pt;}
.x3_c00315{left:114.266667pt;}
.x8_c00315{left:145.200000pt;}
.xd_c00315{left:253.801554pt;}
.xc_c00315{left:518.666667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_6cb14d672961742862ddd1de.woff2')format("woff");}.ff1_c00316{font-family:ff1_c00316;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00316;src:url('chunks/assets/font_cfeb7940fa2e2fbb8e0552dd.woff2')format("woff");}.ff2_c00316{font-family:ff2_c00316;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00316;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff3_c00316{font-family:ff3_c00316;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00316;src:url('chunks/assets/font_8c1fb339adb5c06de4522b3d.woff2')format("woff");}.ff4_c00316{font-family:ff4_c00316;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00316;src:url('chunks/assets/font_823619bccd8f9a51f85e5d17.woff2')format("woff");}.ff5_c00316{font-family:ff5_c00316;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00316;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c00316{font-family:ff6_c00316;line-height:1.219238;font-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_c00316{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,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;}
.ls0_c00316{letter-spacing:0.000000px;}
.ls1_c00316{letter-spacing:3.000000px;}
.sc__c00316{text-shadow:none;}
.sc0_c00316{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00316{-webkit-text-stroke:0px transparent;}
.sc0_c00316{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00316{word-spacing:-20.250000px;}
.ws0_c00316{word-spacing:-17.352000px;}
.ws2_c00316{word-spacing:0.000000px;}
._1f_c00316{margin-left:-21.717000px;}
._12_c00316{margin-left:-20.139000px;}
._14_c00316{margin-left:-18.348000px;}
._1e_c00316{margin-left:-12.450000px;}
._1b_c00316{margin-left:-10.044000px;}
._e_c00316{margin-left:-8.757000px;}
._3_c00316{margin-left:-7.425000px;}
._a_c00316{margin-left:-5.838000px;}
._1_c00316{margin-left:-4.455000px;}
._2_c00316{margin-left:-2.871000px;}
._0_c00316{margin-left:-1.188000px;}
._5_c00316{width:1.764000px;}
._4_c00316{width:3.024000px;}
._6_c00316{width:4.440000px;}
._8_c00316{width:5.670000px;}
._7_c00316{width:7.263000px;}
._c_c00316{width:8.451000px;}
._10_c00316{width:9.582000px;}
._b_c00316{width:10.737000px;}
._11_c00316{width:12.024000px;}
._1a_c00316{width:14.394000px;}
._1d_c00316{width:15.921000px;}
._f_c00316{width:18.336000px;}
._9_c00316{width:39.993000px;}
._d_c00316{width:42.561000px;}
._18_c00316{width:90.396000px;}
._1c_c00316{width:103.329000px;}
._17_c00316{width:171.024000px;}
._15_c00316{width:237.150000px;}
._13_c00316{width:296.124000px;}
._20_c00316{width:369.276000px;}
._19_c00316{width:394.632000px;}
._16_c00316{width:799.335000px;}
.fc2_c00316{color:transparent;}
.fc1_c00316{color:rgb(128,128,128);}
.fc0_c00316{color:rgb(0,0,0);}
.fs6_c00316{font-size:48.000000px;}
.fs4_c00316{font-size:51.000000px;}
.fs3_c00316{font-size:72.000000px;}
.fs2_c00316{font-size:81.000000px;}
.fs1_c00316{font-size:84.000000px;}
.fs0_c00316{font-size:99.000000px;}
.fs5_c00316{font-size:108.000000px;}
.y0_c00316{bottom:0.000000px;}
.y23_c00316{bottom:3.105000px;}
.y22_c00316{bottom:7.228371px;}
.y21_c00316{bottom:95.265000px;}
.y20_c00316{bottom:120.915000px;}
.y1f_c00316{bottom:145.815000px;}
.y1e_c00316{bottom:170.265000px;}
.y1d_c00316{bottom:194.715000px;}
.y1c_c00316{bottom:219.165000px;}
.y1b_c00316{bottom:243.465000px;}
.y1a_c00316{bottom:268.065000px;}
.y19_c00316{bottom:292.365000px;}
.y18_c00316{bottom:316.365000px;}
.y17_c00316{bottom:340.515000px;}
.y16_c00316{bottom:365.265000px;}
.y15_c00316{bottom:388.815000px;}
.y14_c00316{bottom:413.565000px;}
.y13_c00316{bottom:437.715000px;}
.y12_c00316{bottom:462.165000px;}
.y11_c00316{bottom:486.465000px;}
.y10_c00316{bottom:511.365000px;}
.yf_c00316{bottom:535.365000px;}
.ye_c00316{bottom:559.215000px;}
.yd_c00316{bottom:593.715000px;}
.yc_c00316{bottom:621.015000px;}
.yb_c00316{bottom:649.665000px;}
.ya_c00316{bottom:678.465000px;}
.y9_c00316{bottom:719.865000px;}
.y8_c00316{bottom:745.515000px;}
.y7_c00316{bottom:770.265000px;}
.y6_c00316{bottom:794.265000px;}
.y5_c00316{bottom:818.415000px;}
.y4_c00316{bottom:843.465000px;}
.y3_c00316{bottom:867.015000px;}
.y2_c00316{bottom:891.765000px;}
.y1_c00316{bottom:925.215000px;}
.h8_c00316{height:13.200074px;}
.h9_c00316{height:43.804688px;}
.h5_c00316{height:79.497070px;}
.h6_c00316{height:82.400391px;}
.h3_c00316{height:82.441406px;}
.h4_c00316{height:91.160156px;}
.h7_c00316{height:108.843750px;}
.h2_c00316{height:115.870605px;}
.h0_c00316{height:989.025000px;}
.h1_c00316{height:989.250000px;}
.w1_c00316{width:104.875500px;}
.w0_c00316{width:672.000000px;}
.x0_c00316{left:0.000000px;}
.x2_c00316{left:36.900000px;}
.x4_c00316{left:39.900000px;}
.x5_c00316{left:41.250000px;}
.x6_c00316{left:42.900000px;}
.x7_c00316{left:44.250000px;}
.x8_c00316{left:45.300000px;}
.xc_c00316{left:47.550000px;}
.x12_c00316{left:49.350000px;}
.x13_c00316{left:51.300000px;}
.x3_c00316{left:73.500000px;}
.x9_c00316{left:74.550000px;}
.x1_c00316{left:110.700000px;}
.xa_c00316{left:133.650000px;}
.x14_c00316{left:161.700000px;}
.xe_c00316{left:167.400000px;}
.xf_c00316{left:171.150000px;}
.xd_c00316{left:180.900000px;}
.x10_c00316{left:182.700000px;}
.x11_c00316{left:184.650000px;}
.xb_c00316{left:207.300000px;}
.x15_c00316{left:246.450000px;}
.x19_c00316{left:287.814240px;}
.x16_c00316{left:362.100000px;}
.x17_c00316{left:387.150000px;}
.x18_c00316{left:499.200000px;}
@media print{
.v0_c00316{vertical-align:0.000000pt;}
.ls0_c00316{letter-spacing:0.000000pt;}
.ls1_c00316{letter-spacing:2.666667pt;}
.ws1_c00316{word-spacing:-18.000000pt;}
.ws0_c00316{word-spacing:-15.424000pt;}
.ws2_c00316{word-spacing:0.000000pt;}
._1f_c00316{margin-left:-19.304000pt;}
._12_c00316{margin-left:-17.901333pt;}
._14_c00316{margin-left:-16.309333pt;}
._1e_c00316{margin-left:-11.066667pt;}
._1b_c00316{margin-left:-8.928000pt;}
._e_c00316{margin-left:-7.784000pt;}
._3_c00316{margin-left:-6.600000pt;}
._a_c00316{margin-left:-5.189333pt;}
._1_c00316{margin-left:-3.960000pt;}
._2_c00316{margin-left:-2.552000pt;}
._0_c00316{margin-left:-1.056000pt;}
._5_c00316{width:1.568000pt;}
._4_c00316{width:2.688000pt;}
._6_c00316{width:3.946667pt;}
._8_c00316{width:5.040000pt;}
._7_c00316{width:6.456000pt;}
._c_c00316{width:7.512000pt;}
._10_c00316{width:8.517333pt;}
._b_c00316{width:9.544000pt;}
._11_c00316{width:10.688000pt;}
._1a_c00316{width:12.794667pt;}
._1d_c00316{width:14.152000pt;}
._f_c00316{width:16.298667pt;}
._9_c00316{width:35.549333pt;}
._d_c00316{width:37.832000pt;}
._18_c00316{width:80.352000pt;}
._1c_c00316{width:91.848000pt;}
._17_c00316{width:152.021333pt;}
._15_c00316{width:210.800000pt;}
._13_c00316{width:263.221333pt;}
._20_c00316{width:328.245333pt;}
._19_c00316{width:350.784000pt;}
._16_c00316{width:710.520000pt;}
.fs6_c00316{font-size:42.666667pt;}
.fs4_c00316{font-size:45.333333pt;}
.fs3_c00316{font-size:64.000000pt;}
.fs2_c00316{font-size:72.000000pt;}
.fs1_c00316{font-size:74.666667pt;}
.fs0_c00316{font-size:88.000000pt;}
.fs5_c00316{font-size:96.000000pt;}
.y0_c00316{bottom:0.000000pt;}
.y23_c00316{bottom:2.760000pt;}
.y22_c00316{bottom:6.425219pt;}
.y21_c00316{bottom:84.680000pt;}
.y20_c00316{bottom:107.480000pt;}
.y1f_c00316{bottom:129.613333pt;}
.y1e_c00316{bottom:151.346667pt;}
.y1d_c00316{bottom:173.080000pt;}
.y1c_c00316{bottom:194.813333pt;}
.y1b_c00316{bottom:216.413333pt;}
.y1a_c00316{bottom:238.280000pt;}
.y19_c00316{bottom:259.880000pt;}
.y18_c00316{bottom:281.213333pt;}
.y17_c00316{bottom:302.680000pt;}
.y16_c00316{bottom:324.680000pt;}
.y15_c00316{bottom:345.613333pt;}
.y14_c00316{bottom:367.613333pt;}
.y13_c00316{bottom:389.080000pt;}
.y12_c00316{bottom:410.813333pt;}
.y11_c00316{bottom:432.413333pt;}
.y10_c00316{bottom:454.546667pt;}
.yf_c00316{bottom:475.880000pt;}
.ye_c00316{bottom:497.080000pt;}
.yd_c00316{bottom:527.746667pt;}
.yc_c00316{bottom:552.013333pt;}
.yb_c00316{bottom:577.480000pt;}
.ya_c00316{bottom:603.080000pt;}
.y9_c00316{bottom:639.880000pt;}
.y8_c00316{bottom:662.680000pt;}
.y7_c00316{bottom:684.680000pt;}
.y6_c00316{bottom:706.013333pt;}
.y5_c00316{bottom:727.480000pt;}
.y4_c00316{bottom:749.746667pt;}
.y3_c00316{bottom:770.680000pt;}
.y2_c00316{bottom:792.680000pt;}
.y1_c00316{bottom:822.413333pt;}
.h8_c00316{height:11.733399pt;}
.h9_c00316{height:38.937500pt;}
.h5_c00316{height:70.664062pt;}
.h6_c00316{height:73.244792pt;}
.h3_c00316{height:73.281250pt;}
.h4_c00316{height:81.031250pt;}
.h7_c00316{height:96.750000pt;}
.h2_c00316{height:102.996094pt;}
.h0_c00316{height:879.133333pt;}
.h1_c00316{height:879.333333pt;}
.w1_c00316{width:93.222667pt;}
.w0_c00316{width:597.333333pt;}
.x0_c00316{left:0.000000pt;}
.x2_c00316{left:32.800000pt;}
.x4_c00316{left:35.466667pt;}
.x5_c00316{left:36.666667pt;}
.x6_c00316{left:38.133333pt;}
.x7_c00316{left:39.333333pt;}
.x8_c00316{left:40.266667pt;}
.xc_c00316{left:42.266667pt;}
.x12_c00316{left:43.866667pt;}
.x13_c00316{left:45.600000pt;}
.x3_c00316{left:65.333333pt;}
.x9_c00316{left:66.266667pt;}
.x1_c00316{left:98.400000pt;}
.xa_c00316{left:118.800000pt;}
.x14_c00316{left:143.733333pt;}
.xe_c00316{left:148.800000pt;}
.xf_c00316{left:152.133333pt;}
.xd_c00316{left:160.800000pt;}
.x10_c00316{left:162.400000pt;}
.x11_c00316{left:164.133333pt;}
.xb_c00316{left:184.266667pt;}
.x15_c00316{left:219.066667pt;}
.x19_c00316{left:255.834880pt;}
.x16_c00316{left:321.866667pt;}
.x17_c00316{left:344.133333pt;}
.x18_c00316{left:443.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a3966165d4474c9c00d2d6ea.woff2')format("woff");}.ff1_c00317{font-family:ff1_c00317;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00317;src:url('chunks/assets/font_d225c2ffa50f24b8fece1bfb.woff2')format("woff");}.ff2_c00317{font-family:ff2_c00317;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00317;src:url('chunks/assets/font_1754ff724a5345b87aa94b77.woff2')format("woff");}.ff3_c00317{font-family:ff3_c00317;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00317;src:url('chunks/assets/font_0d2935ee9f4ef35c52b8391f.woff2')format("woff");}.ff4_c00317{font-family:ff4_c00317;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00317;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff5_c00317{font-family:ff5_c00317;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00317;src:url('chunks/assets/font_3e9cf606f3e869d3eb6e3cd4.woff2')format("woff");}.ff6_c00317{font-family:ff6_c00317;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00317;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c00317{font-family:ff7_c00317;line-height:1.219238;font-style: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;}
.ls4_c00317{letter-spacing:0.000000px;}
.ls2_c00317{letter-spacing:0.300000px;}
.ls0_c00317{letter-spacing:0.672000px;}
.ls5_c00317{letter-spacing:3.000000px;}
.ls3_c00317{letter-spacing:5.400000px;}
.ls1_c00317{letter-spacing:639.150000px;}
.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;}
}
.ws2_c00317{word-spacing:-20.250000px;}
.ws1_c00317{word-spacing:-17.460000px;}
.ws0_c00317{word-spacing:-17.352000px;}
.ws3_c00317{word-spacing:0.000000px;}
._19_c00317{margin-left:-16.524000px;}
._1d_c00317{margin-left:-13.833000px;}
._7_c00317{margin-left:-12.393000px;}
._10_c00317{margin-left:-11.097000px;}
._f_c00317{margin-left:-9.315000px;}
._0_c00317{margin-left:-8.100000px;}
._1b_c00317{margin-left:-6.831000px;}
._2_c00317{margin-left:-5.427000px;}
._1_c00317{margin-left:-3.726000px;}
._9_c00317{margin-left:-1.944000px;}
._5_c00317{width:1.701000px;}
._4_c00317{width:3.321000px;}
._3_c00317{width:4.374000px;}
._6_c00317{width:6.237000px;}
._b_c00317{width:7.290000px;}
._8_c00317{width:8.343000px;}
._d_c00317{width:9.963000px;}
._a_c00317{width:11.664000px;}
._18_c00317{width:12.669000px;}
._e_c00317{width:13.851000px;}
._c_c00317{width:15.795000px;}
._12_c00317{width:17.415000px;}
._16_c00317{width:26.481000px;}
._15_c00317{width:78.813000px;}
._1c_c00317{width:87.822000px;}
._14_c00317{width:99.108000px;}
._11_c00317{width:139.299000px;}
._17_c00317{width:184.599000px;}
._1a_c00317{width:233.202000px;}
._13_c00317{width:244.620000px;}
.fc2_c00317{color:transparent;}
.fc1_c00317{color:rgb(128,128,128);}
.fc0_c00317{color:rgb(0,0,0);}
.fs7_c00317{font-size:45.000000px;}
.fs8_c00317{font-size:48.000000px;}
.fs4_c00317{font-size:60.000000px;}
.fs1_c00317{font-size:66.000000px;}
.fs2_c00317{font-size:72.000000px;}
.fs5_c00317{font-size:75.000000px;}
.fs0_c00317{font-size:81.000000px;}
.fs3_c00317{font-size:87.000000px;}
.fs6_c00317{font-size:102.000000px;}
.y0_c00317{bottom:0.000000px;}
.y25_c00317{bottom:3.105000px;}
.y24_c00317{bottom:7.228357px;}
.y23_c00317{bottom:64.830000px;}
.y22_c00317{bottom:87.480000px;}
.y21_c00317{bottom:113.430000px;}
.y20_c00317{bottom:138.030000px;}
.y1f_c00317{bottom:162.780000px;}
.y1e_c00317{bottom:187.380000px;}
.y1d_c00317{bottom:212.580000px;}
.y1c_c00317{bottom:237.330000px;}
.y1b_c00317{bottom:261.630000px;}
.y1a_c00317{bottom:285.930000px;}
.y19_c00317{bottom:310.230000px;}
.y18_c00317{bottom:335.130000px;}
.y17_c00317{bottom:360.180000px;}
.y16_c00317{bottom:383.430000px;}
.y15_c00317{bottom:408.030000px;}
.y14_c00317{bottom:432.330000px;}
.y13_c00317{bottom:456.030000px;}
.y12_c00317{bottom:479.880000px;}
.y11_c00317{bottom:505.680000px;}
.y10_c00317{bottom:527.280000px;}
.yf_c00317{bottom:550.830000px;}
.ye_c00317{bottom:574.530000px;}
.yd_c00317{bottom:600.030000px;}
.yc_c00317{bottom:627.030000px;}
.yb_c00317{bottom:648.330000px;}
.ya_c00317{bottom:672.330000px;}
.y9_c00317{bottom:696.630000px;}
.y8_c00317{bottom:720.330000px;}
.y7_c00317{bottom:744.180000px;}
.y6_c00317{bottom:768.480000px;}
.y5_c00317{bottom:792.480000px;}
.y4_c00317{bottom:818.430000px;}
.y3_c00317{bottom:840.480000px;}
.y2_c00317{bottom:864.630000px;}
.y1_c00317{bottom:888.030000px;}
.h7_c00317{height:13.200074px;}
.h8_c00317{height:43.804688px;}
.h2_c00317{height:79.497070px;}
.h3_c00317{height:84.269531px;}
.h6_c00317{height:91.160156px;}
.h4_c00317{height:91.176000px;}
.h5_c00317{height:102.796875px;}
.h1_c00317{height:978.750000px;}
.h0_c00317{height:979.050000px;}
.w2_c00317{width:104.875500px;}
.w0_c00317{width:656.100000px;}
.w1_c00317{width:656.250000px;}
.x0_c00317{left:0.000000px;}
.x6_c00317{left:43.950000px;}
.x5_c00317{left:46.200000px;}
.x4_c00317{left:47.250000px;}
.x2_c00317{left:48.300000px;}
.xc_c00317{left:130.500000px;}
.xb_c00317{left:131.550000px;}
.xa_c00317{left:132.600000px;}
.x8_c00317{left:133.650000px;}
.x7_c00317{left:134.700000px;}
.x9_c00317{left:136.350000px;}
.x3_c00317{left:137.400000px;}
.x1_c00317{left:139.650000px;}
.xe_c00317{left:279.864258px;}
.xd_c00317{left:564.600000px;}
@media print{
.v0_c00317{vertical-align:0.000000pt;}
.ls4_c00317{letter-spacing:0.000000pt;}
.ls2_c00317{letter-spacing:0.266667pt;}
.ls0_c00317{letter-spacing:0.597333pt;}
.ls5_c00317{letter-spacing:2.666667pt;}
.ls3_c00317{letter-spacing:4.800000pt;}
.ls1_c00317{letter-spacing:568.133333pt;}
.ws2_c00317{word-spacing:-18.000000pt;}
.ws1_c00317{word-spacing:-15.520000pt;}
.ws0_c00317{word-spacing:-15.424000pt;}
.ws3_c00317{word-spacing:0.000000pt;}
._19_c00317{margin-left:-14.688000pt;}
._1d_c00317{margin-left:-12.296000pt;}
._7_c00317{margin-left:-11.016000pt;}
._10_c00317{margin-left:-9.864000pt;}
._f_c00317{margin-left:-8.280000pt;}
._0_c00317{margin-left:-7.200000pt;}
._1b_c00317{margin-left:-6.072000pt;}
._2_c00317{margin-left:-4.824000pt;}
._1_c00317{margin-left:-3.312000pt;}
._9_c00317{margin-left:-1.728000pt;}
._5_c00317{width:1.512000pt;}
._4_c00317{width:2.952000pt;}
._3_c00317{width:3.888000pt;}
._6_c00317{width:5.544000pt;}
._b_c00317{width:6.480000pt;}
._8_c00317{width:7.416000pt;}
._d_c00317{width:8.856000pt;}
._a_c00317{width:10.368000pt;}
._18_c00317{width:11.261333pt;}
._e_c00317{width:12.312000pt;}
._c_c00317{width:14.040000pt;}
._12_c00317{width:15.480000pt;}
._16_c00317{width:23.538667pt;}
._15_c00317{width:70.056000pt;}
._1c_c00317{width:78.064000pt;}
._14_c00317{width:88.096000pt;}
._11_c00317{width:123.821333pt;}
._17_c00317{width:164.088000pt;}
._1a_c00317{width:207.290667pt;}
._13_c00317{width:217.440000pt;}
.fs7_c00317{font-size:40.000000pt;}
.fs8_c00317{font-size:42.666667pt;}
.fs4_c00317{font-size:53.333333pt;}
.fs1_c00317{font-size:58.666667pt;}
.fs2_c00317{font-size:64.000000pt;}
.fs5_c00317{font-size:66.666667pt;}
.fs0_c00317{font-size:72.000000pt;}
.fs3_c00317{font-size:77.333333pt;}
.fs6_c00317{font-size:90.666667pt;}
.y0_c00317{bottom:0.000000pt;}
.y25_c00317{bottom:2.760000pt;}
.y24_c00317{bottom:6.425206pt;}
.y23_c00317{bottom:57.626667pt;}
.y22_c00317{bottom:77.760000pt;}
.y21_c00317{bottom:100.826667pt;}
.y20_c00317{bottom:122.693333pt;}
.y1f_c00317{bottom:144.693333pt;}
.y1e_c00317{bottom:166.560000pt;}
.y1d_c00317{bottom:188.960000pt;}
.y1c_c00317{bottom:210.960000pt;}
.y1b_c00317{bottom:232.560000pt;}
.y1a_c00317{bottom:254.160000pt;}
.y19_c00317{bottom:275.760000pt;}
.y18_c00317{bottom:297.893333pt;}
.y17_c00317{bottom:320.160000pt;}
.y16_c00317{bottom:340.826667pt;}
.y15_c00317{bottom:362.693333pt;}
.y14_c00317{bottom:384.293333pt;}
.y13_c00317{bottom:405.360000pt;}
.y12_c00317{bottom:426.560000pt;}
.y11_c00317{bottom:449.493333pt;}
.y10_c00317{bottom:468.693333pt;}
.yf_c00317{bottom:489.626667pt;}
.ye_c00317{bottom:510.693333pt;}
.yd_c00317{bottom:533.360000pt;}
.yc_c00317{bottom:557.360000pt;}
.yb_c00317{bottom:576.293333pt;}
.ya_c00317{bottom:597.626667pt;}
.y9_c00317{bottom:619.226667pt;}
.y8_c00317{bottom:640.293333pt;}
.y7_c00317{bottom:661.493333pt;}
.y6_c00317{bottom:683.093333pt;}
.y5_c00317{bottom:704.426667pt;}
.y4_c00317{bottom:727.493333pt;}
.y3_c00317{bottom:747.093333pt;}
.y2_c00317{bottom:768.560000pt;}
.y1_c00317{bottom:789.360000pt;}
.h7_c00317{height:11.733399pt;}
.h8_c00317{height:38.937500pt;}
.h2_c00317{height:70.664062pt;}
.h3_c00317{height:74.906250pt;}
.h6_c00317{height:81.031250pt;}
.h4_c00317{height:81.045333pt;}
.h5_c00317{height:91.375000pt;}
.h1_c00317{height:870.000000pt;}
.h0_c00317{height:870.266667pt;}
.w2_c00317{width:93.222667pt;}
.w0_c00317{width:583.200000pt;}
.w1_c00317{width:583.333333pt;}
.x0_c00317{left:0.000000pt;}
.x6_c00317{left:39.066667pt;}
.x5_c00317{left:41.066667pt;}
.x4_c00317{left:42.000000pt;}
.x2_c00317{left:42.933333pt;}
.xc_c00317{left:116.000000pt;}
.xb_c00317{left:116.933333pt;}
.xa_c00317{left:117.866667pt;}
.x8_c00317{left:118.800000pt;}
.x7_c00317{left:119.733333pt;}
.x9_c00317{left:121.200000pt;}
.x3_c00317{left:122.133333pt;}
.x1_c00317{left:124.133333pt;}
.xe_c00317{left:248.768229pt;}
.xd_c00317{left:501.866667pt;}
}





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

.ir_c00318:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00318{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00318;src:url('chunks/assets/font_96d19966db910ef7dff054ba.woff2')format("woff");}.ff1_c00318{font-family:ff1_c00318;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00318;src:url('chunks/assets/font_1fc4daf11b18e45ec004354a.woff2')format("woff");}.ff2_c00318{font-family:ff2_c00318;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00318;src:url('chunks/assets/font_6164148ba9d8a5869f61c843.woff2')format("woff");}.ff3_c00318{font-family:ff3_c00318;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00318;src:url('chunks/assets/font_e1cb73cd979936ec8e5e52ae.woff2')format("woff");}.ff4_c00318{font-family:ff4_c00318;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00318;src:url('chunks/assets/font_b99caff73addf825c23a02a1.woff2')format("woff");}.ff5_c00318{font-family:ff5_c00318;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00318;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff6_c00318{font-family:ff6_c00318;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00318;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c00318{font-family:ff7_c00318;line-height:1.219238;font-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_c00318{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m0_c00318{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00318{vertical-align:0.000000px;}
.ls2_c00318{letter-spacing:-6.000000px;}
.ls1_c00318{letter-spacing:0.000000px;}
.ls0_c00318{letter-spacing:22.800000px;}
.sc__c00318{text-shadow:none;}
.sc0_c00318{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00318{-webkit-text-stroke:0px transparent;}
.sc0_c00318{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00318{word-spacing:-61.686000px;}
.ws1_c00318{word-spacing:-25.305000px;}
.ws2_c00318{word-spacing:0.000000px;}
._23_c00318{margin-left:-34.074000px;}
._26_c00318{margin-left:-30.030000px;}
._1e_c00318{margin-left:-27.621000px;}
._20_c00318{margin-left:-22.401000px;}
._25_c00318{margin-left:-20.796000px;}
._1f_c00318{margin-left:-19.197000px;}
._16_c00318{margin-left:-16.074000px;}
._24_c00318{margin-left:-14.859000px;}
._1b_c00318{margin-left:-12.933000px;}
._21_c00318{margin-left:-11.862000px;}
._1c_c00318{margin-left:-10.500000px;}
._1a_c00318{margin-left:-8.847000px;}
._17_c00318{margin-left:-7.002000px;}
._14_c00318{margin-left:-5.949000px;}
._12_c00318{margin-left:-4.626000px;}
._f_c00318{margin-left:-2.592000px;}
._11_c00318{margin-left:-1.377000px;}
._10_c00318{width:1.044000px;}
._d_c00318{width:2.106000px;}
._e_c00318{width:3.321000px;}
._13_c00318{width:4.329000px;}
._b_c00318{width:5.472000px;}
._2_c00318{width:6.912000px;}
._5_c00318{width:8.064000px;}
._a_c00318{width:10.008000px;}
._3_c00318{width:11.088000px;}
._4_c00318{width:12.672000px;}
._1_c00318{width:13.896000px;}
._0_c00318{width:15.840000px;}
._9_c00318{width:19.200000px;}
._7_c00318{width:22.176000px;}
._19_c00318{width:23.373000px;}
._22_c00318{width:26.262000px;}
._6_c00318{width:27.288000px;}
._18_c00318{width:28.323000px;}
._8_c00318{width:30.240000px;}
._1d_c00318{width:42.822000px;}
._15_c00318{width:62.406000px;}
._c_c00318{width:90.648000px;}
.fc2_c00318{color:transparent;}
.fc1_c00318{color:rgb(128,128,128);}
.fc0_c00318{color:rgb(0,0,0);}
.fs7_c00318{font-size:48.000000px;}
.fs1_c00318{font-size:66.000000px;}
.fs0_c00318{font-size:72.000000px;}
.fs2_c00318{font-size:81.000000px;}
.fs3_c00318{font-size:87.000000px;}
.fs6_c00318{font-size:90.000000px;}
.fs5_c00318{font-size:105.000000px;}
.fs4_c00318{font-size:108.000000px;}
.y0_c00318{bottom:0.000000px;}
.y25_c00318{bottom:3.105000px;}
.y24_c00318{bottom:7.228371px;}
.y23_c00318{bottom:90.915000px;}
.y22_c00318{bottom:114.465000px;}
.y21_c00318{bottom:140.415000px;}
.y20_c00318{bottom:165.015000px;}
.y1f_c00318{bottom:189.465000px;}
.y1e_c00318{bottom:213.615000px;}
.y1d_c00318{bottom:237.915000px;}
.y1c_c00318{bottom:262.215000px;}
.y1b_c00318{bottom:286.515000px;}
.y1a_c00318{bottom:309.915000px;}
.y19_c00318{bottom:333.915000px;}
.y18_c00318{bottom:358.065000px;}
.y17_c00318{bottom:382.065000px;}
.y16_c00318{bottom:406.365000px;}
.y15_c00318{bottom:430.665000px;}
.y14_c00318{bottom:454.365000px;}
.y13_c00318{bottom:478.365000px;}
.y12_c00318{bottom:503.265000px;}
.y11_c00318{bottom:526.815000px;}
.y10_c00318{bottom:551.265000px;}
.yf_c00318{bottom:575.115000px;}
.ye_c00318{bottom:598.365000px;}
.yd_c00318{bottom:622.665000px;}
.yc_c00318{bottom:646.065000px;}
.yb_c00318{bottom:670.665000px;}
.ya_c00318{bottom:694.365000px;}
.y9_c00318{bottom:718.665000px;}
.y8_c00318{bottom:743.565000px;}
.y7_c00318{bottom:767.265000px;}
.y6_c00318{bottom:791.115000px;}
.y5_c00318{bottom:815.715000px;}
.y4_c00318{bottom:839.415000px;}
.y3_c00318{bottom:864.315000px;}
.y2_c00318{bottom:887.715000px;}
.y1_c00318{bottom:923.865000px;}
.h9_c00318{height:13.200074px;}
.ha_c00318{height:43.804688px;}
.h3_c00318{height:79.497070px;}
.h2_c00318{height:84.269531px;}
.h7_c00318{height:90.703125px;}
.h4_c00318{height:91.176000px;}
.h5_c00318{height:108.843750px;}
.h6_c00318{height:122.893066px;}
.h8_c00318{height:132.941895px;}
.h1_c00318{height:984.750000px;}
.h0_c00318{height:984.975000px;}
.w2_c00318{width:104.875500px;}
.w1_c00318{width:669.000000px;}
.w0_c00318{width:669.075000px;}
.x0_c00318{left:0.000000px;}
.x6_c00318{left:22.050000px;}
.xa_c00318{left:23.250000px;}
.x3_c00318{left:35.400000px;}
.x2_c00318{left:37.200000px;}
.x5_c00318{left:38.850000px;}
.x4_c00318{left:40.950000px;}
.x7_c00318{left:42.900000px;}
.x9_c00318{left:46.350000px;}
.x8_c00318{left:49.650000px;}
.x10_c00318{left:60.750000px;}
.x1_c00318{left:112.950000px;}
.xb_c00318{left:153.600000px;}
.xc_c00318{left:171.450000px;}
.x11_c00318{left:286.351730px;}
.xd_c00318{left:321.300000px;}
.xe_c00318{left:329.850000px;}
.xf_c00318{left:505.500000px;}
@media print{
.v0_c00318{vertical-align:0.000000pt;}
.ls2_c00318{letter-spacing:-5.333333pt;}
.ls1_c00318{letter-spacing:0.000000pt;}
.ls0_c00318{letter-spacing:20.266667pt;}
.ws0_c00318{word-spacing:-54.832000pt;}
.ws1_c00318{word-spacing:-22.493333pt;}
.ws2_c00318{word-spacing:0.000000pt;}
._23_c00318{margin-left:-30.288000pt;}
._26_c00318{margin-left:-26.693333pt;}
._1e_c00318{margin-left:-24.552000pt;}
._20_c00318{margin-left:-19.912000pt;}
._25_c00318{margin-left:-18.485333pt;}
._1f_c00318{margin-left:-17.064000pt;}
._16_c00318{margin-left:-14.288000pt;}
._24_c00318{margin-left:-13.208000pt;}
._1b_c00318{margin-left:-11.496000pt;}
._21_c00318{margin-left:-10.544000pt;}
._1c_c00318{margin-left:-9.333333pt;}
._1a_c00318{margin-left:-7.864000pt;}
._17_c00318{margin-left:-6.224000pt;}
._14_c00318{margin-left:-5.288000pt;}
._12_c00318{margin-left:-4.112000pt;}
._f_c00318{margin-left:-2.304000pt;}
._11_c00318{margin-left:-1.224000pt;}
._10_c00318{width:0.928000pt;}
._d_c00318{width:1.872000pt;}
._e_c00318{width:2.952000pt;}
._13_c00318{width:3.848000pt;}
._b_c00318{width:4.864000pt;}
._2_c00318{width:6.144000pt;}
._5_c00318{width:7.168000pt;}
._a_c00318{width:8.896000pt;}
._3_c00318{width:9.856000pt;}
._4_c00318{width:11.264000pt;}
._1_c00318{width:12.352000pt;}
._0_c00318{width:14.080000pt;}
._9_c00318{width:17.066667pt;}
._7_c00318{width:19.712000pt;}
._19_c00318{width:20.776000pt;}
._22_c00318{width:23.344000pt;}
._6_c00318{width:24.256000pt;}
._18_c00318{width:25.176000pt;}
._8_c00318{width:26.880000pt;}
._1d_c00318{width:38.064000pt;}
._15_c00318{width:55.472000pt;}
._c_c00318{width:80.576000pt;}
.fs7_c00318{font-size:42.666667pt;}
.fs1_c00318{font-size:58.666667pt;}
.fs0_c00318{font-size:64.000000pt;}
.fs2_c00318{font-size:72.000000pt;}
.fs3_c00318{font-size:77.333333pt;}
.fs6_c00318{font-size:80.000000pt;}
.fs5_c00318{font-size:93.333333pt;}
.fs4_c00318{font-size:96.000000pt;}
.y0_c00318{bottom:0.000000pt;}
.y25_c00318{bottom:2.760000pt;}
.y24_c00318{bottom:6.425219pt;}
.y23_c00318{bottom:80.813333pt;}
.y22_c00318{bottom:101.746667pt;}
.y21_c00318{bottom:124.813333pt;}
.y20_c00318{bottom:146.680000pt;}
.y1f_c00318{bottom:168.413333pt;}
.y1e_c00318{bottom:189.880000pt;}
.y1d_c00318{bottom:211.480000pt;}
.y1c_c00318{bottom:233.080000pt;}
.y1b_c00318{bottom:254.680000pt;}
.y1a_c00318{bottom:275.480000pt;}
.y19_c00318{bottom:296.813333pt;}
.y18_c00318{bottom:318.280000pt;}
.y17_c00318{bottom:339.613333pt;}
.y16_c00318{bottom:361.213333pt;}
.y15_c00318{bottom:382.813333pt;}
.y14_c00318{bottom:403.880000pt;}
.y13_c00318{bottom:425.213333pt;}
.y12_c00318{bottom:447.346667pt;}
.y11_c00318{bottom:468.280000pt;}
.y10_c00318{bottom:490.013333pt;}
.yf_c00318{bottom:511.213333pt;}
.ye_c00318{bottom:531.880000pt;}
.yd_c00318{bottom:553.480000pt;}
.yc_c00318{bottom:574.280000pt;}
.yb_c00318{bottom:596.146667pt;}
.ya_c00318{bottom:617.213333pt;}
.y9_c00318{bottom:638.813333pt;}
.y8_c00318{bottom:660.946667pt;}
.y7_c00318{bottom:682.013333pt;}
.y6_c00318{bottom:703.213333pt;}
.y5_c00318{bottom:725.080000pt;}
.y4_c00318{bottom:746.146667pt;}
.y3_c00318{bottom:768.280000pt;}
.y2_c00318{bottom:789.080000pt;}
.y1_c00318{bottom:821.213333pt;}
.h9_c00318{height:11.733399pt;}
.ha_c00318{height:38.937500pt;}
.h3_c00318{height:70.664062pt;}
.h2_c00318{height:74.906250pt;}
.h7_c00318{height:80.625000pt;}
.h4_c00318{height:81.045333pt;}
.h5_c00318{height:96.750000pt;}
.h6_c00318{height:109.238281pt;}
.h8_c00318{height:118.170573pt;}
.h1_c00318{height:875.333333pt;}
.h0_c00318{height:875.533333pt;}
.w2_c00318{width:93.222667pt;}
.w1_c00318{width:594.666667pt;}
.w0_c00318{width:594.733333pt;}
.x0_c00318{left:0.000000pt;}
.x6_c00318{left:19.600000pt;}
.xa_c00318{left:20.666667pt;}
.x3_c00318{left:31.466667pt;}
.x2_c00318{left:33.066667pt;}
.x5_c00318{left:34.533333pt;}
.x4_c00318{left:36.400000pt;}
.x7_c00318{left:38.133333pt;}
.x9_c00318{left:41.200000pt;}
.x8_c00318{left:44.133333pt;}
.x10_c00318{left:54.000000pt;}
.x1_c00318{left:100.400000pt;}
.xb_c00318{left:136.533333pt;}
.xc_c00318{left:152.400000pt;}
.x11_c00318{left:254.534871pt;}
.xd_c00318{left:285.600000pt;}
.xe_c00318{left:293.200000pt;}
.xf_c00318{left:449.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_1fc77854a695972da64210ea.woff2')format("woff");}.ff1_c00319{font-family:ff1_c00319;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00319;src:url('chunks/assets/font_95b6fb8a4a3eba8b01f8cefe.woff2')format("woff");}.ff2_c00319{font-family:ff2_c00319;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00319;src:url('chunks/assets/font_9c7b1a44894f51d0ad98e919.woff2')format("woff");}.ff3_c00319{font-family:ff3_c00319;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00319;src:url('chunks/assets/font_cceab760334e5c1c2733d382.woff2')format("woff");}.ff4_c00319{font-family:ff4_c00319;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00319;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff5_c00319{font-family:ff5_c00319;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00319;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c00319{font-family:ff6_c00319;line-height:1.219238;font-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_c00319{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,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;}
.ls1_c00319{letter-spacing:-6.000000px;}
.ls0_c00319{letter-spacing:0.000000px;}
.sc__c00319{text-shadow:none;}
.sc0_c00319{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00319{-webkit-text-stroke:0px transparent;}
.sc0_c00319{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00319{word-spacing:-61.686000px;}
.ws2_c00319{word-spacing:-27.000000px;}
.ws1_c00319{word-spacing:-20.250000px;}
.ws4_c00319{word-spacing:0.000000px;}
.ws3_c00319{word-spacing:0.072000px;}
._10_c00319{margin-left:-28.107000px;}
._d_c00319{margin-left:-19.500000px;}
._11_c00319{margin-left:-15.957000px;}
._c_c00319{margin-left:-14.787000px;}
._15_c00319{margin-left:-12.393000px;}
._13_c00319{margin-left:-11.178000px;}
._14_c00319{margin-left:-9.315000px;}
._8_c00319{margin-left:-7.857000px;}
._6_c00319{margin-left:-5.913000px;}
._5_c00319{margin-left:-4.131000px;}
._2_c00319{margin-left:-3.078000px;}
._1_c00319{margin-left:-1.539000px;}
._3_c00319{width:1.539000px;}
._0_c00319{width:3.564000px;}
._4_c00319{width:5.427000px;}
._7_c00319{width:6.480000px;}
._b_c00319{width:7.938000px;}
._9_c00319{width:8.991000px;}
._a_c00319{width:10.854000px;}
._e_c00319{width:12.150000px;}
._f_c00319{width:13.851000px;}
._16_c00319{width:15.795000px;}
._19_c00319{width:20.493000px;}
._17_c00319{width:79.704000px;}
._18_c00319{width:238.797000px;}
._12_c00319{width:240.489000px;}
.fc2_c00319{color:transparent;}
.fc1_c00319{color:rgb(128,128,128);}
.fc0_c00319{color:rgb(0,0,0);}
.fs5_c00319{font-size:48.000000px;}
.fs3_c00319{font-size:72.000000px;}
.fs0_c00319{font-size:81.000000px;}
.fs4_c00319{font-size:84.000000px;}
.fs1_c00319{font-size:87.000000px;}
.fs2_c00319{font-size:108.000000px;}
.y0_c00319{bottom:0.000000px;}
.y25_c00319{bottom:3.105000px;}
.y24_c00319{bottom:7.228357px;}
.y23_c00319{bottom:75.630000px;}
.y22_c00319{bottom:97.830000px;}
.y21_c00319{bottom:123.930000px;}
.y20_c00319{bottom:148.530000px;}
.y1f_c00319{bottom:173.430000px;}
.y1e_c00319{bottom:197.880000px;}
.y1d_c00319{bottom:222.480000px;}
.y1c_c00319{bottom:247.380000px;}
.y1b_c00319{bottom:272.730000px;}
.y1a_c00319{bottom:295.980000px;}
.y19_c00319{bottom:319.980000px;}
.y18_c00319{bottom:344.280000px;}
.y17_c00319{bottom:368.880000px;}
.y16_c00319{bottom:393.180000px;}
.y15_c00319{bottom:417.480000px;}
.y14_c00319{bottom:442.230000px;}
.y13_c00319{bottom:466.380000px;}
.y12_c00319{bottom:490.080000px;}
.y11_c00319{bottom:513.780000px;}
.y10_c00319{bottom:537.930000px;}
.yf_c00319{bottom:562.680000px;}
.ye_c00319{bottom:585.630000px;}
.yd_c00319{bottom:609.930000px;}
.yc_c00319{bottom:633.930000px;}
.yb_c00319{bottom:658.080000px;}
.ya_c00319{bottom:682.380000px;}
.y9_c00319{bottom:706.380000px;}
.y8_c00319{bottom:730.680000px;}
.y7_c00319{bottom:755.280000px;}
.y6_c00319{bottom:778.980000px;}
.y5_c00319{bottom:803.580000px;}
.y4_c00319{bottom:827.280000px;}
.y3_c00319{bottom:851.580000px;}
.y2_c00319{bottom:875.430000px;}
.y1_c00319{bottom:899.430000px;}
.h7_c00319{height:13.200074px;}
.h8_c00319{height:43.804688px;}
.h1_c00319{height:79.497070px;}
.h5_c00319{height:82.441406px;}
.h4_c00319{height:84.269531px;}
.h6_c00319{height:91.160156px;}
.h2_c00319{height:91.176000px;}
.h3_c00319{height:108.843750px;}
.h0_c00319{height:995.250000px;}
.w2_c00319{width:104.875500px;}
.w0_c00319{width:667.425000px;}
.w1_c00319{width:667.500000px;}
.x0_c00319{left:0.000000px;}
.xc_c00319{left:46.200000px;}
.x3_c00319{left:62.550000px;}
.xb_c00319{left:105.900000px;}
.xe_c00319{left:134.100000px;}
.x8_c00319{left:135.300000px;}
.x6_c00319{left:136.350000px;}
.x2_c00319{left:137.400000px;}
.x1_c00319{left:139.950000px;}
.xd_c00319{left:171.450000px;}
.x13_c00319{left:285.526749px;}
.x9_c00319{left:343.650000px;}
.xa_c00319{left:365.850000px;}
.xf_c00319{left:433.050000px;}
.x10_c00319{left:470.550000px;}
.x4_c00319{left:494.400000px;}
.x5_c00319{left:519.600000px;}
.x12_c00319{left:587.550000px;}
.x7_c00319{left:605.700000px;}
.x11_c00319{left:610.500000px;}
@media print{
.v0_c00319{vertical-align:0.000000pt;}
.ls1_c00319{letter-spacing:-5.333333pt;}
.ls0_c00319{letter-spacing:0.000000pt;}
.ws0_c00319{word-spacing:-54.832000pt;}
.ws2_c00319{word-spacing:-24.000000pt;}
.ws1_c00319{word-spacing:-18.000000pt;}
.ws4_c00319{word-spacing:0.000000pt;}
.ws3_c00319{word-spacing:0.064000pt;}
._10_c00319{margin-left:-24.984000pt;}
._d_c00319{margin-left:-17.333333pt;}
._11_c00319{margin-left:-14.184000pt;}
._c_c00319{margin-left:-13.144000pt;}
._15_c00319{margin-left:-11.016000pt;}
._13_c00319{margin-left:-9.936000pt;}
._14_c00319{margin-left:-8.280000pt;}
._8_c00319{margin-left:-6.984000pt;}
._6_c00319{margin-left:-5.256000pt;}
._5_c00319{margin-left:-3.672000pt;}
._2_c00319{margin-left:-2.736000pt;}
._1_c00319{margin-left:-1.368000pt;}
._3_c00319{width:1.368000pt;}
._0_c00319{width:3.168000pt;}
._4_c00319{width:4.824000pt;}
._7_c00319{width:5.760000pt;}
._b_c00319{width:7.056000pt;}
._9_c00319{width:7.992000pt;}
._a_c00319{width:9.648000pt;}
._e_c00319{width:10.800000pt;}
._f_c00319{width:12.312000pt;}
._16_c00319{width:14.040000pt;}
._19_c00319{width:18.216000pt;}
._17_c00319{width:70.848000pt;}
._18_c00319{width:212.264000pt;}
._12_c00319{width:213.768000pt;}
.fs5_c00319{font-size:42.666667pt;}
.fs3_c00319{font-size:64.000000pt;}
.fs0_c00319{font-size:72.000000pt;}
.fs4_c00319{font-size:74.666667pt;}
.fs1_c00319{font-size:77.333333pt;}
.fs2_c00319{font-size:96.000000pt;}
.y0_c00319{bottom:0.000000pt;}
.y25_c00319{bottom:2.760000pt;}
.y24_c00319{bottom:6.425206pt;}
.y23_c00319{bottom:67.226667pt;}
.y22_c00319{bottom:86.960000pt;}
.y21_c00319{bottom:110.160000pt;}
.y20_c00319{bottom:132.026667pt;}
.y1f_c00319{bottom:154.160000pt;}
.y1e_c00319{bottom:175.893333pt;}
.y1d_c00319{bottom:197.760000pt;}
.y1c_c00319{bottom:219.893333pt;}
.y1b_c00319{bottom:242.426667pt;}
.y1a_c00319{bottom:263.093333pt;}
.y19_c00319{bottom:284.426667pt;}
.y18_c00319{bottom:306.026667pt;}
.y17_c00319{bottom:327.893333pt;}
.y16_c00319{bottom:349.493333pt;}
.y15_c00319{bottom:371.093333pt;}
.y14_c00319{bottom:393.093333pt;}
.y13_c00319{bottom:414.560000pt;}
.y12_c00319{bottom:435.626667pt;}
.y11_c00319{bottom:456.693333pt;}
.y10_c00319{bottom:478.160000pt;}
.yf_c00319{bottom:500.160000pt;}
.ye_c00319{bottom:520.560000pt;}
.yd_c00319{bottom:542.160000pt;}
.yc_c00319{bottom:563.493333pt;}
.yb_c00319{bottom:584.960000pt;}
.ya_c00319{bottom:606.560000pt;}
.y9_c00319{bottom:627.893333pt;}
.y8_c00319{bottom:649.493333pt;}
.y7_c00319{bottom:671.360000pt;}
.y6_c00319{bottom:692.426667pt;}
.y5_c00319{bottom:714.293333pt;}
.y4_c00319{bottom:735.360000pt;}
.y3_c00319{bottom:756.960000pt;}
.y2_c00319{bottom:778.160000pt;}
.y1_c00319{bottom:799.493333pt;}
.h7_c00319{height:11.733399pt;}
.h8_c00319{height:38.937500pt;}
.h1_c00319{height:70.664062pt;}
.h5_c00319{height:73.281250pt;}
.h4_c00319{height:74.906250pt;}
.h6_c00319{height:81.031250pt;}
.h2_c00319{height:81.045333pt;}
.h3_c00319{height:96.750000pt;}
.h0_c00319{height:884.666667pt;}
.w2_c00319{width:93.222667pt;}
.w0_c00319{width:593.266667pt;}
.w1_c00319{width:593.333333pt;}
.x0_c00319{left:0.000000pt;}
.xc_c00319{left:41.066667pt;}
.x3_c00319{left:55.600000pt;}
.xb_c00319{left:94.133333pt;}
.xe_c00319{left:119.200000pt;}
.x8_c00319{left:120.266667pt;}
.x6_c00319{left:121.200000pt;}
.x2_c00319{left:122.133333pt;}
.x1_c00319{left:124.400000pt;}
.xd_c00319{left:152.400000pt;}
.x13_c00319{left:253.801554pt;}
.x9_c00319{left:305.466667pt;}
.xa_c00319{left:325.200000pt;}
.xf_c00319{left:384.933333pt;}
.x10_c00319{left:418.266667pt;}
.x4_c00319{left:439.466667pt;}
.x5_c00319{left:461.866667pt;}
.x12_c00319{left:522.266667pt;}
.x7_c00319{left:538.400000pt;}
.x11_c00319{left:542.666667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_29cd02f9cfa9cce137d72806.woff2')format("woff");}.ff1_c00320{font-family:ff1_c00320;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00320;src:url('chunks/assets/font_f8d699a70dea142f17c53294.woff2')format("woff");}.ff2_c00320{font-family:ff2_c00320;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00320;src:url('chunks/assets/font_16538473226ff11320ca72f0.woff2')format("woff");}.ff3_c00320{font-family:ff3_c00320;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00320;src:url('chunks/assets/font_f545cca80f225dfcc0798679.woff2')format("woff");}.ff4_c00320{font-family:ff4_c00320;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00320;src:url('chunks/assets/font_7698654bc7c685d76321f82b.woff2')format("woff");}.ff5_c00320{font-family:ff5_c00320;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00320;src:url('chunks/assets/font_fadb50c7cad91ee762e2307f.woff2')format("woff");}.ff6_c00320{font-family:ff6_c00320;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00320;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c00320{font-family:ff7_c00320;line-height:1.219238;font-style: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;}
.v2_c00320{vertical-align:6.000000px;}
.v1_c00320{vertical-align:366.000000px;}
.ls2_c00320{letter-spacing:0.000000px;}
.ls1_c00320{letter-spacing:5.400000px;}
.ls3_c00320{letter-spacing:6.000000px;}
.ls0_c00320{letter-spacing:360.900000px;}
.sc__c00320{text-shadow:none;}
.sc0_c00320{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00320{-webkit-text-stroke:0px transparent;}
.sc0_c00320{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00320{word-spacing:0.000000px;}
._1e_c00320{margin-left:-18.069000px;}
._17_c00320{margin-left:-15.552000px;}
._1a_c00320{margin-left:-14.073000px;}
._19_c00320{margin-left:-11.853000px;}
._12_c00320{margin-left:-10.047000px;}
._1b_c00320{margin-left:-8.892000px;}
._b_c00320{margin-left:-7.557000px;}
._f_c00320{margin-left:-5.022000px;}
._13_c00320{margin-left:-3.768000px;}
._9_c00320{margin-left:-2.601000px;}
._a_c00320{margin-left:-1.197000px;}
._3_c00320{width:1.485000px;}
._2_c00320{width:2.772000px;}
._1_c00320{width:4.257000px;}
._0_c00320{width:5.445000px;}
._18_c00320{width:6.510000px;}
._5_c00320{width:7.524000px;}
._6_c00320{width:8.613000px;}
._11_c00320{width:9.639000px;}
._c_c00320{width:10.854000px;}
._15_c00320{width:12.012000px;}
._e_c00320{width:13.473000px;}
._10_c00320{width:14.772000px;}
._14_c00320{width:16.227000px;}
._7_c00320{width:18.012000px;}
._8_c00320{width:19.209000px;}
._d_c00320{width:23.244000px;}
._16_c00320{width:36.540000px;}
._1d_c00320{width:40.581000px;}
._1c_c00320{width:125.598000px;}
._4_c00320{width:146.619000px;}
._1f_c00320{width:359.307000px;}
.fc2_c00320{color:transparent;}
.fc1_c00320{color:rgb(128,128,128);}
.fc0_c00320{color:rgb(0,0,0);}
.fs5_c00320{font-size:42.000000px;}
.fs8_c00320{font-size:48.000000px;}
.fs2_c00320{font-size:57.000000px;}
.fs6_c00320{font-size:60.000000px;}
.fs7_c00320{font-size:72.000000px;}
.fs4_c00320{font-size:78.000000px;}
.fs3_c00320{font-size:81.000000px;}
.fs1_c00320{font-size:99.000000px;}
.fs0_c00320{font-size:339.000000px;}
.y0_c00320{bottom:0.000000px;}
.y26_c00320{bottom:3.105000px;}
.y25_c00320{bottom:7.228371px;}
.y24_c00320{bottom:59.115000px;}
.y23_c00320{bottom:86.715000px;}
.y22_c00320{bottom:111.765000px;}
.y21_c00320{bottom:135.765000px;}
.y20_c00320{bottom:161.115000px;}
.y1f_c00320{bottom:185.415000px;}
.y1e_c00320{bottom:209.715000px;}
.y1d_c00320{bottom:234.315000px;}
.y1c_c00320{bottom:258.615000px;}
.y1b_c00320{bottom:282.915000px;}
.y1a_c00320{bottom:306.465000px;}
.y19_c00320{bottom:330.465000px;}
.y18_c00320{bottom:354.765000px;}
.y17_c00320{bottom:378.765000px;}
.y16_c00320{bottom:402.765000px;}
.y15_c00320{bottom:427.065000px;}
.y14_c00320{bottom:451.215000px;}
.y13_c00320{bottom:474.915000px;}
.y12_c00320{bottom:497.415000px;}
.y11_c00320{bottom:523.215000px;}
.y10_c00320{bottom:547.515000px;}
.yf_c00320{bottom:571.515000px;}
.ye_c00320{bottom:595.665000px;}
.yd_c00320{bottom:619.665000px;}
.yc_c00320{bottom:643.665000px;}
.yb_c00320{bottom:668.565000px;}
.ya_c00320{bottom:692.565000px;}
.y9_c00320{bottom:717.915000px;}
.y8_c00320{bottom:740.865000px;}
.y7_c00320{bottom:765.765000px;}
.y6_c00320{bottom:789.765000px;}
.y5_c00320{bottom:814.515000px;}
.y1_c00320{bottom:829.215000px;}
.y4_c00320{bottom:839.115000px;}
.y3_c00320{bottom:861.615000px;}
.y2_c00320{bottom:886.065000px;}
.h8_c00320{height:13.200074px;}
.h9_c00320{height:43.804688px;}
.h3_c00320{height:66.713379px;}
.h5_c00320{height:79.497070px;}
.h4_c00320{height:83.226000px;}
.h7_c00320{height:84.269531px;}
.h6_c00320{height:85.497070px;}
.h2_c00320{height:481.870605px;}
.h0_c00320{height:989.025000px;}
.h1_c00320{height:989.250000px;}
.w1_c00320{width:104.875500px;}
.w0_c00320{width:672.000000px;}
.x0_c00320{left:0.000000px;}
.x8_c00320{left:48.150000px;}
.x1_c00320{left:49.200000px;}
.x5_c00320{left:50.550000px;}
.x6_c00320{left:52.200000px;}
.x7_c00320{left:57.000000px;}
.x3_c00320{left:92.850000px;}
.x4_c00320{left:95.550000px;}
.x2_c00320{left:129.600000px;}
.xa_c00320{left:287.814240px;}
.x9_c00320{left:413.400000px;}
@media print{
.v0_c00320{vertical-align:0.000000pt;}
.v2_c00320{vertical-align:5.333333pt;}
.v1_c00320{vertical-align:325.333333pt;}
.ls2_c00320{letter-spacing:0.000000pt;}
.ls1_c00320{letter-spacing:4.800000pt;}
.ls3_c00320{letter-spacing:5.333333pt;}
.ls0_c00320{letter-spacing:320.800000pt;}
.ws0_c00320{word-spacing:0.000000pt;}
._1e_c00320{margin-left:-16.061333pt;}
._17_c00320{margin-left:-13.824000pt;}
._1a_c00320{margin-left:-12.509333pt;}
._19_c00320{margin-left:-10.536000pt;}
._12_c00320{margin-left:-8.930667pt;}
._1b_c00320{margin-left:-7.904000pt;}
._b_c00320{margin-left:-6.717333pt;}
._f_c00320{margin-left:-4.464000pt;}
._13_c00320{margin-left:-3.349333pt;}
._9_c00320{margin-left:-2.312000pt;}
._a_c00320{margin-left:-1.064000pt;}
._3_c00320{width:1.320000pt;}
._2_c00320{width:2.464000pt;}
._1_c00320{width:3.784000pt;}
._0_c00320{width:4.840000pt;}
._18_c00320{width:5.786667pt;}
._5_c00320{width:6.688000pt;}
._6_c00320{width:7.656000pt;}
._11_c00320{width:8.568000pt;}
._c_c00320{width:9.648000pt;}
._15_c00320{width:10.677333pt;}
._e_c00320{width:11.976000pt;}
._10_c00320{width:13.130667pt;}
._14_c00320{width:14.424000pt;}
._7_c00320{width:16.010667pt;}
._8_c00320{width:17.074667pt;}
._d_c00320{width:20.661333pt;}
._16_c00320{width:32.480000pt;}
._1d_c00320{width:36.072000pt;}
._1c_c00320{width:111.642667pt;}
._4_c00320{width:130.328000pt;}
._1f_c00320{width:319.384000pt;}
.fs5_c00320{font-size:37.333333pt;}
.fs8_c00320{font-size:42.666667pt;}
.fs2_c00320{font-size:50.666667pt;}
.fs6_c00320{font-size:53.333333pt;}
.fs7_c00320{font-size:64.000000pt;}
.fs4_c00320{font-size:69.333333pt;}
.fs3_c00320{font-size:72.000000pt;}
.fs1_c00320{font-size:88.000000pt;}
.fs0_c00320{font-size:301.333333pt;}
.y0_c00320{bottom:0.000000pt;}
.y26_c00320{bottom:2.760000pt;}
.y25_c00320{bottom:6.425219pt;}
.y24_c00320{bottom:52.546667pt;}
.y23_c00320{bottom:77.080000pt;}
.y22_c00320{bottom:99.346667pt;}
.y21_c00320{bottom:120.680000pt;}
.y20_c00320{bottom:143.213333pt;}
.y1f_c00320{bottom:164.813333pt;}
.y1e_c00320{bottom:186.413333pt;}
.y1d_c00320{bottom:208.280000pt;}
.y1c_c00320{bottom:229.880000pt;}
.y1b_c00320{bottom:251.480000pt;}
.y1a_c00320{bottom:272.413333pt;}
.y19_c00320{bottom:293.746667pt;}
.y18_c00320{bottom:315.346667pt;}
.y17_c00320{bottom:336.680000pt;}
.y16_c00320{bottom:358.013333pt;}
.y15_c00320{bottom:379.613333pt;}
.y14_c00320{bottom:401.080000pt;}
.y13_c00320{bottom:422.146667pt;}
.y12_c00320{bottom:442.146667pt;}
.y11_c00320{bottom:465.080000pt;}
.y10_c00320{bottom:486.680000pt;}
.yf_c00320{bottom:508.013333pt;}
.ye_c00320{bottom:529.480000pt;}
.yd_c00320{bottom:550.813333pt;}
.yc_c00320{bottom:572.146667pt;}
.yb_c00320{bottom:594.280000pt;}
.ya_c00320{bottom:615.613333pt;}
.y9_c00320{bottom:638.146667pt;}
.y8_c00320{bottom:658.546667pt;}
.y7_c00320{bottom:680.680000pt;}
.y6_c00320{bottom:702.013333pt;}
.y5_c00320{bottom:724.013333pt;}
.y1_c00320{bottom:737.080000pt;}
.y4_c00320{bottom:745.880000pt;}
.y3_c00320{bottom:765.880000pt;}
.y2_c00320{bottom:787.613333pt;}
.h8_c00320{height:11.733399pt;}
.h9_c00320{height:38.937500pt;}
.h3_c00320{height:59.300781pt;}
.h5_c00320{height:70.664062pt;}
.h4_c00320{height:73.978667pt;}
.h7_c00320{height:74.906250pt;}
.h6_c00320{height:75.997396pt;}
.h2_c00320{height:428.329427pt;}
.h0_c00320{height:879.133333pt;}
.h1_c00320{height:879.333333pt;}
.w1_c00320{width:93.222667pt;}
.w0_c00320{width:597.333333pt;}
.x0_c00320{left:0.000000pt;}
.x8_c00320{left:42.800000pt;}
.x1_c00320{left:43.733333pt;}
.x5_c00320{left:44.933333pt;}
.x6_c00320{left:46.400000pt;}
.x7_c00320{left:50.666667pt;}
.x3_c00320{left:82.533333pt;}
.x4_c00320{left:84.933333pt;}
.x2_c00320{left:115.200000pt;}
.xa_c00320{left:255.834880pt;}
.x9_c00320{left:367.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_b8cc0fa03f5645a7c98a1912.woff2')format("woff");}.ff1_c00321{font-family:ff1_c00321;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00321;src:url('chunks/assets/font_8afff4bb12810ca5ea30e776.woff2')format("woff");}.ff2_c00321{font-family:ff2_c00321;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00321;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff3_c00321{font-family:ff3_c00321;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00321;src:url('chunks/assets/font_86e75fa021945d13b38d2fa9.woff2')format("woff");}.ff4_c00321{font-family:ff4_c00321;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00321;src:url('chunks/assets/font_af2932afd9fb45cead75901a.woff2')format("woff");}.ff5_c00321{font-family:ff5_c00321;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00321;src:url('chunks/assets/font_9fa1e0684553a16b0ccc9b61.woff2')format("woff");}.ff6_c00321{font-family:ff6_c00321;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00321;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c00321{font-family:ff7_c00321;line-height:1.219238;font-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_c00321{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,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;}
.ls3_c00321{letter-spacing:0.000000px;}
.ls0_c00321{letter-spacing:0.600000px;}
.ls1_c00321{letter-spacing:6.000000px;}
.ls2_c00321{letter-spacing:9.000000px;}
.ls4_c00321{letter-spacing:18.000000px;}
.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:-33.000000px;}
.ws2_c00321{word-spacing:-27.000000px;}
.ws0_c00321{word-spacing:-17.352000px;}
.ws3_c00321{word-spacing:0.000000px;}
._1c_c00321{margin-left:-27.489000px;}
._19_c00321{margin-left:-23.832000px;}
._23_c00321{margin-left:-21.789000px;}
._1a_c00321{margin-left:-16.491000px;}
._1f_c00321{margin-left:-11.871000px;}
._11_c00321{margin-left:-10.449000px;}
._16_c00321{margin-left:-8.856000px;}
._12_c00321{margin-left:-7.614000px;}
._17_c00321{margin-left:-6.345000px;}
._13_c00321{margin-left:-4.941000px;}
._d_c00321{margin-left:-3.645000px;}
._14_c00321{margin-left:-2.511000px;}
._0_c00321{margin-left:-1.458000px;}
._5_c00321{width:1.377000px;}
._a_c00321{width:2.430000px;}
._1_c00321{width:3.483000px;}
._3_c00321{width:5.427000px;}
._8_c00321{width:6.480000px;}
._4_c00321{width:7.533000px;}
._2_c00321{width:8.667000px;}
._c_c00321{width:9.720000px;}
._7_c00321{width:10.935000px;}
._6_c00321{width:12.717000px;}
._e_c00321{width:13.770000px;}
._b_c00321{width:15.471000px;}
._9_c00321{width:17.091000px;}
._f_c00321{width:19.116000px;}
._18_c00321{width:23.439000px;}
._10_c00321{width:26.244000px;}
._15_c00321{width:43.254000px;}
._1d_c00321{width:45.684000px;}
._20_c00321{width:67.434000px;}
._21_c00321{width:102.750000px;}
._24_c00321{width:280.989000px;}
._22_c00321{width:316.968000px;}
._1b_c00321{width:373.329000px;}
._1e_c00321{width:434.811000px;}
.fc2_c00321{color:transparent;}
.fc1_c00321{color:rgb(128,128,128);}
.fc0_c00321{color:rgb(0,0,0);}
.fs5_c00321{font-size:48.000000px;}
.fs2_c00321{font-size:66.000000px;}
.fs3_c00321{font-size:69.000000px;}
.fs1_c00321{font-size:72.000000px;}
.fs0_c00321{font-size:81.000000px;}
.fs4_c00321{font-size:108.000000px;}
.y0_c00321{bottom:0.000000px;}
.y25_c00321{bottom:3.105000px;}
.y24_c00321{bottom:7.228357px;}
.y23_c00321{bottom:51.030000px;}
.y22_c00321{bottom:77.280000px;}
.y21_c00321{bottom:103.380000px;}
.y20_c00321{bottom:127.530000px;}
.y1f_c00321{bottom:151.830000px;}
.y1e_c00321{bottom:175.530000px;}
.y1d_c00321{bottom:199.230000px;}
.y1c_c00321{bottom:223.380000px;}
.y1b_c00321{bottom:249.180000px;}
.y1a_c00321{bottom:274.380000px;}
.y19_c00321{bottom:298.680000px;}
.y18_c00321{bottom:323.430000px;}
.y17_c00321{bottom:347.580000px;}
.y16_c00321{bottom:371.880000px;}
.y15_c00321{bottom:393.930000px;}
.y14_c00321{bottom:420.480000px;}
.y13_c00321{bottom:446.130000px;}
.y12_c00321{bottom:469.080000px;}
.y11_c00321{bottom:493.080000px;}
.y10_c00321{bottom:517.080000px;}
.yf_c00321{bottom:540.780000px;}
.ye_c00321{bottom:564.930000px;}
.yd_c00321{bottom:589.230000px;}
.yc_c00321{bottom:613.530000px;}
.yb_c00321{bottom:637.530000px;}
.ya_c00321{bottom:661.830000px;}
.y9_c00321{bottom:685.830000px;}
.y8_c00321{bottom:710.130000px;}
.y7_c00321{bottom:734.430000px;}
.y6_c00321{bottom:758.730000px;}
.y5_c00321{bottom:782.730000px;}
.y4_c00321{bottom:807.030000px;}
.y3_c00321{bottom:831.330000px;}
.y2_c00321{bottom:854.280000px;}
.y1_c00321{bottom:878.280000px;}
.h5_c00321{height:13.200074px;}
.h6_c00321{height:43.804688px;}
.h1_c00321{height:79.497070px;}
.h3_c00321{height:84.269531px;}
.h2_c00321{height:91.160156px;}
.h4_c00321{height:108.843750px;}
.h0_c00321{height:995.250000px;}
.w2_c00321{width:104.875500px;}
.w0_c00321{width:667.425000px;}
.w1_c00321{width:667.500000px;}
.x0_c00321{left:0.000000px;}
.x9_c00321{left:31.350000px;}
.x8_c00321{left:32.850000px;}
.x5_c00321{left:34.500000px;}
.xa_c00321{left:40.800000px;}
.x7_c00321{left:75.300000px;}
.x6_c00321{left:121.500000px;}
.x2_c00321{left:122.550000px;}
.x1_c00321{left:123.600000px;}
.x3_c00321{left:126.300000px;}
.x4_c00321{left:128.550000px;}
.xc_c00321{left:285.526749px;}
.xb_c00321{left:579.450000px;}
@media print{
.v0_c00321{vertical-align:0.000000pt;}
.ls3_c00321{letter-spacing:0.000000pt;}
.ls0_c00321{letter-spacing:0.533333pt;}
.ls1_c00321{letter-spacing:5.333333pt;}
.ls2_c00321{letter-spacing:8.000000pt;}
.ls4_c00321{letter-spacing:16.000000pt;}
.ws1_c00321{word-spacing:-29.333333pt;}
.ws2_c00321{word-spacing:-24.000000pt;}
.ws0_c00321{word-spacing:-15.424000pt;}
.ws3_c00321{word-spacing:0.000000pt;}
._1c_c00321{margin-left:-24.434667pt;}
._19_c00321{margin-left:-21.184000pt;}
._23_c00321{margin-left:-19.368000pt;}
._1a_c00321{margin-left:-14.658667pt;}
._1f_c00321{margin-left:-10.552000pt;}
._11_c00321{margin-left:-9.288000pt;}
._16_c00321{margin-left:-7.872000pt;}
._12_c00321{margin-left:-6.768000pt;}
._17_c00321{margin-left:-5.640000pt;}
._13_c00321{margin-left:-4.392000pt;}
._d_c00321{margin-left:-3.240000pt;}
._14_c00321{margin-left:-2.232000pt;}
._0_c00321{margin-left:-1.296000pt;}
._5_c00321{width:1.224000pt;}
._a_c00321{width:2.160000pt;}
._1_c00321{width:3.096000pt;}
._3_c00321{width:4.824000pt;}
._8_c00321{width:5.760000pt;}
._4_c00321{width:6.696000pt;}
._2_c00321{width:7.704000pt;}
._c_c00321{width:8.640000pt;}
._7_c00321{width:9.720000pt;}
._6_c00321{width:11.304000pt;}
._e_c00321{width:12.240000pt;}
._b_c00321{width:13.752000pt;}
._9_c00321{width:15.192000pt;}
._f_c00321{width:16.992000pt;}
._18_c00321{width:20.834667pt;}
._10_c00321{width:23.328000pt;}
._15_c00321{width:38.448000pt;}
._1d_c00321{width:40.608000pt;}
._20_c00321{width:59.941333pt;}
._21_c00321{width:91.333333pt;}
._24_c00321{width:249.768000pt;}
._22_c00321{width:281.749333pt;}
._1b_c00321{width:331.848000pt;}
._1e_c00321{width:386.498667pt;}
.fs5_c00321{font-size:42.666667pt;}
.fs2_c00321{font-size:58.666667pt;}
.fs3_c00321{font-size:61.333333pt;}
.fs1_c00321{font-size:64.000000pt;}
.fs0_c00321{font-size:72.000000pt;}
.fs4_c00321{font-size:96.000000pt;}
.y0_c00321{bottom:0.000000pt;}
.y25_c00321{bottom:2.760000pt;}
.y24_c00321{bottom:6.425206pt;}
.y23_c00321{bottom:45.360000pt;}
.y22_c00321{bottom:68.693333pt;}
.y21_c00321{bottom:91.893333pt;}
.y20_c00321{bottom:113.360000pt;}
.y1f_c00321{bottom:134.960000pt;}
.y1e_c00321{bottom:156.026667pt;}
.y1d_c00321{bottom:177.093333pt;}
.y1c_c00321{bottom:198.560000pt;}
.y1b_c00321{bottom:221.493333pt;}
.y1a_c00321{bottom:243.893333pt;}
.y19_c00321{bottom:265.493333pt;}
.y18_c00321{bottom:287.493333pt;}
.y17_c00321{bottom:308.960000pt;}
.y16_c00321{bottom:330.560000pt;}
.y15_c00321{bottom:350.160000pt;}
.y14_c00321{bottom:373.760000pt;}
.y13_c00321{bottom:396.560000pt;}
.y12_c00321{bottom:416.960000pt;}
.y11_c00321{bottom:438.293333pt;}
.y10_c00321{bottom:459.626667pt;}
.yf_c00321{bottom:480.693333pt;}
.ye_c00321{bottom:502.160000pt;}
.yd_c00321{bottom:523.760000pt;}
.yc_c00321{bottom:545.360000pt;}
.yb_c00321{bottom:566.693333pt;}
.ya_c00321{bottom:588.293333pt;}
.y9_c00321{bottom:609.626667pt;}
.y8_c00321{bottom:631.226667pt;}
.y7_c00321{bottom:652.826667pt;}
.y6_c00321{bottom:674.426667pt;}
.y5_c00321{bottom:695.760000pt;}
.y4_c00321{bottom:717.360000pt;}
.y3_c00321{bottom:738.960000pt;}
.y2_c00321{bottom:759.360000pt;}
.y1_c00321{bottom:780.693333pt;}
.h5_c00321{height:11.733399pt;}
.h6_c00321{height:38.937500pt;}
.h1_c00321{height:70.664062pt;}
.h3_c00321{height:74.906250pt;}
.h2_c00321{height:81.031250pt;}
.h4_c00321{height:96.750000pt;}
.h0_c00321{height:884.666667pt;}
.w2_c00321{width:93.222667pt;}
.w0_c00321{width:593.266667pt;}
.w1_c00321{width:593.333333pt;}
.x0_c00321{left:0.000000pt;}
.x9_c00321{left:27.866667pt;}
.x8_c00321{left:29.200000pt;}
.x5_c00321{left:30.666667pt;}
.xa_c00321{left:36.266667pt;}
.x7_c00321{left:66.933333pt;}
.x6_c00321{left:108.000000pt;}
.x2_c00321{left:108.933333pt;}
.x1_c00321{left:109.866667pt;}
.x3_c00321{left:112.266667pt;}
.x4_c00321{left:114.266667pt;}
.xc_c00321{left:253.801554pt;}
.xb_c00321{left:515.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f4080337593a2a846021c3d5.woff2')format("woff");}.ff1_c00322{font-family:ff1_c00322;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00322;src:url('chunks/assets/font_1046d954b773ab09c4fb4d32.woff2')format("woff");}.ff2_c00322{font-family:ff2_c00322;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00322;src:url('chunks/assets/font_472057547b6ad32d40bed10b.woff2')format("woff");}.ff3_c00322{font-family:ff3_c00322;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00322;src:url('chunks/assets/font_4afece908ce1c883f8501bff.woff2')format("woff");}.ff4_c00322{font-family:ff4_c00322;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00322;src:url('chunks/assets/font_e6429ff942c196344954263f.woff2')format("woff");}.ff5_c00322{font-family:ff5_c00322;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00322;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c00322{font-family:ff6_c00322;line-height:1.219238;font-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_c00322{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,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);}
.v1_c00322{vertical-align:-65.400000px;}
.v0_c00322{vertical-align:0.000000px;}
.v2_c00322{vertical-align:21.600000px;}
.ls1_c00322{letter-spacing:0.000000px;}
.ls2_c00322{letter-spacing:3.000000px;}
.ls3_c00322{letter-spacing:6.000000px;}
.ls0_c00322{letter-spacing:169.860000px;}
.sc__c00322{text-shadow:none;}
.sc0_c00322{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00322{-webkit-text-stroke:0px transparent;}
.sc0_c00322{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00322{word-spacing:-28.500000px;}
.ws0_c00322{word-spacing:-0.108000px;}
.ws2_c00322{word-spacing:0.000000px;}
._1e_c00322{margin-left:-23.016000px;}
._0_c00322{margin-left:-15.138000px;}
._4_c00322{margin-left:-14.076000px;}
._5_c00322{margin-left:-10.200000px;}
._f_c00322{margin-left:-8.136000px;}
._10_c00322{margin-left:-6.276000px;}
._3_c00322{margin-left:-4.284000px;}
._2_c00322{margin-left:-2.346000px;}
._6_c00322{margin-left:-1.326000px;}
._8_c00322{width:1.224000px;}
._7_c00322{width:2.448000px;}
._b_c00322{width:4.212000px;}
._d_c00322{width:5.667000px;}
._c_c00322{width:7.161000px;}
._14_c00322{width:8.712000px;}
._15_c00322{width:10.245000px;}
._e_c00322{width:11.337000px;}
._17_c00322{width:12.558000px;}
._a_c00322{width:13.872000px;}
._16_c00322{width:15.330000px;}
._1a_c00322{width:16.461000px;}
._18_c00322{width:18.405000px;}
._20_c00322{width:20.724000px;}
._1f_c00322{width:23.286000px;}
._12_c00322{width:25.548000px;}
._11_c00322{width:26.568000px;}
._1b_c00322{width:27.750000px;}
._1c_c00322{width:29.655000px;}
._19_c00322{width:31.158000px;}
._13_c00322{width:33.480000px;}
._1d_c00322{width:40.008000px;}
._9_c00322{width:188.394000px;}
._1_c00322{width:217.017000px;}
._21_c00322{width:230.802000px;}
.fc2_c00322{color:transparent;}
.fc1_c00322{color:rgb(128,128,128);}
.fc0_c00322{color:rgb(0,0,0);}
.fs4_c00322{font-size:42.000000px;}
.fs9_c00322{font-size:48.000000px;}
.fs6_c00322{font-size:57.000000px;}
.fs7_c00322{font-size:60.000000px;}
.fs3_c00322{font-size:72.000000px;}
.fs5_c00322{font-size:78.000000px;}
.fs2_c00322{font-size:81.000000px;}
.fs0_c00322{font-size:87.000000px;}
.fs1_c00322{font-size:102.000000px;}
.fs8_c00322{font-size:108.000000px;}
.y0_c00322{bottom:0.000000px;}
.y24_c00322{bottom:3.105000px;}
.y23_c00322{bottom:7.228371px;}
.y22_c00322{bottom:66.465000px;}
.y21_c00322{bottom:90.465000px;}
.y20_c00322{bottom:116.865000px;}
.y1f_c00322{bottom:140.415000px;}
.y1e_c00322{bottom:165.465000px;}
.y1d_c00322{bottom:189.315000px;}
.y1c_c00322{bottom:208.365000px;}
.y1b_c00322{bottom:238.665000px;}
.y1a_c00322{bottom:285.615000px;}
.y19_c00322{bottom:310.965000px;}
.y18_c00322{bottom:335.265000px;}
.y17_c00322{bottom:359.415000px;}
.y16_c00322{bottom:383.865000px;}
.y15_c00322{bottom:408.465000px;}
.y14_c00322{bottom:433.065000px;}
.y13_c00322{bottom:456.765000px;}
.y12_c00322{bottom:480.915000px;}
.y11_c00322{bottom:505.215000px;}
.y10_c00322{bottom:529.215000px;}
.yf_c00322{bottom:553.515000px;}
.ye_c00322{bottom:577.215000px;}
.yd_c00322{bottom:600.765000px;}
.yc_c00322{bottom:641.715000px;}
.yb_c00322{bottom:673.965000px;}
.ya_c00322{bottom:698.715000px;}
.y9_c00322{bottom:722.565000px;}
.y8_c00322{bottom:746.865000px;}
.y7_c00322{bottom:770.865000px;}
.y6_c00322{bottom:794.865000px;}
.y5_c00322{bottom:819.765000px;}
.y4_c00322{bottom:843.465000px;}
.y3_c00322{bottom:867.165000px;}
.y2_c00322{bottom:891.315000px;}
.y1_c00322{bottom:925.215000px;}
.h9_c00322{height:13.200074px;}
.ha_c00322{height:43.804688px;}
.h3_c00322{height:79.497070px;}
.h5_c00322{height:84.269531px;}
.h4_c00322{height:91.160156px;}
.h6_c00322{height:98.756836px;}
.h2_c00322{height:100.057617px;}
.h7_c00322{height:101.097070px;}
.h8_c00322{height:108.843750px;}
.h0_c00322{height:989.025000px;}
.h1_c00322{height:989.250000px;}
.w1_c00322{width:104.875500px;}
.w0_c00322{width:672.000000px;}
.x0_c00322{left:0.000000px;}
.xb_c00322{left:28.800000px;}
.x7_c00322{left:37.800000px;}
.x1_c00322{left:43.500000px;}
.xa_c00322{left:45.900000px;}
.x6_c00322{left:47.250000px;}
.x5_c00322{left:48.600000px;}
.x3_c00322{left:50.400000px;}
.x4_c00322{left:52.050000px;}
.x2_c00322{left:54.450000px;}
.x8_c00322{left:76.950000px;}
.x9_c00322{left:105.000000px;}
.xc_c00322{left:115.050000px;}
.xe_c00322{left:287.814240px;}
.xd_c00322{left:396.600000px;}
@media print{
.v1_c00322{vertical-align:-58.133333pt;}
.v0_c00322{vertical-align:0.000000pt;}
.v2_c00322{vertical-align:19.200000pt;}
.ls1_c00322{letter-spacing:0.000000pt;}
.ls2_c00322{letter-spacing:2.666667pt;}
.ls3_c00322{letter-spacing:5.333333pt;}
.ls0_c00322{letter-spacing:150.986667pt;}
.ws1_c00322{word-spacing:-25.333333pt;}
.ws0_c00322{word-spacing:-0.096000pt;}
.ws2_c00322{word-spacing:0.000000pt;}
._1e_c00322{margin-left:-20.458667pt;}
._0_c00322{margin-left:-13.456000pt;}
._4_c00322{margin-left:-12.512000pt;}
._5_c00322{margin-left:-9.066667pt;}
._f_c00322{margin-left:-7.232000pt;}
._10_c00322{margin-left:-5.578667pt;}
._3_c00322{margin-left:-3.808000pt;}
._2_c00322{margin-left:-2.085333pt;}
._6_c00322{margin-left:-1.178667pt;}
._8_c00322{width:1.088000pt;}
._7_c00322{width:2.176000pt;}
._b_c00322{width:3.744000pt;}
._d_c00322{width:5.037333pt;}
._c_c00322{width:6.365333pt;}
._14_c00322{width:7.744000pt;}
._15_c00322{width:9.106667pt;}
._e_c00322{width:10.077333pt;}
._17_c00322{width:11.162667pt;}
._a_c00322{width:12.330667pt;}
._16_c00322{width:13.626667pt;}
._1a_c00322{width:14.632000pt;}
._18_c00322{width:16.360000pt;}
._20_c00322{width:18.421333pt;}
._1f_c00322{width:20.698667pt;}
._12_c00322{width:22.709333pt;}
._11_c00322{width:23.616000pt;}
._1b_c00322{width:24.666667pt;}
._1c_c00322{width:26.360000pt;}
._19_c00322{width:27.696000pt;}
._13_c00322{width:29.760000pt;}
._1d_c00322{width:35.562667pt;}
._9_c00322{width:167.461333pt;}
._1_c00322{width:192.904000pt;}
._21_c00322{width:205.157333pt;}
.fs4_c00322{font-size:37.333333pt;}
.fs9_c00322{font-size:42.666667pt;}
.fs6_c00322{font-size:50.666667pt;}
.fs7_c00322{font-size:53.333333pt;}
.fs3_c00322{font-size:64.000000pt;}
.fs5_c00322{font-size:69.333333pt;}
.fs2_c00322{font-size:72.000000pt;}
.fs0_c00322{font-size:77.333333pt;}
.fs1_c00322{font-size:90.666667pt;}
.fs8_c00322{font-size:96.000000pt;}
.y0_c00322{bottom:0.000000pt;}
.y24_c00322{bottom:2.760000pt;}
.y23_c00322{bottom:6.425219pt;}
.y22_c00322{bottom:59.080000pt;}
.y21_c00322{bottom:80.413333pt;}
.y20_c00322{bottom:103.880000pt;}
.y1f_c00322{bottom:124.813333pt;}
.y1e_c00322{bottom:147.080000pt;}
.y1d_c00322{bottom:168.280000pt;}
.y1c_c00322{bottom:185.213333pt;}
.y1b_c00322{bottom:212.146667pt;}
.y1a_c00322{bottom:253.880000pt;}
.y19_c00322{bottom:276.413333pt;}
.y18_c00322{bottom:298.013333pt;}
.y17_c00322{bottom:319.480000pt;}
.y16_c00322{bottom:341.213333pt;}
.y15_c00322{bottom:363.080000pt;}
.y14_c00322{bottom:384.946667pt;}
.y13_c00322{bottom:406.013333pt;}
.y12_c00322{bottom:427.480000pt;}
.y11_c00322{bottom:449.080000pt;}
.y10_c00322{bottom:470.413333pt;}
.yf_c00322{bottom:492.013333pt;}
.ye_c00322{bottom:513.080000pt;}
.yd_c00322{bottom:534.013333pt;}
.yc_c00322{bottom:570.413333pt;}
.yb_c00322{bottom:599.080000pt;}
.ya_c00322{bottom:621.080000pt;}
.y9_c00322{bottom:642.280000pt;}
.y8_c00322{bottom:663.880000pt;}
.y7_c00322{bottom:685.213333pt;}
.y6_c00322{bottom:706.546667pt;}
.y5_c00322{bottom:728.680000pt;}
.y4_c00322{bottom:749.746667pt;}
.y3_c00322{bottom:770.813333pt;}
.y2_c00322{bottom:792.280000pt;}
.y1_c00322{bottom:822.413333pt;}
.h9_c00322{height:11.733399pt;}
.ha_c00322{height:38.937500pt;}
.h3_c00322{height:70.664062pt;}
.h5_c00322{height:74.906250pt;}
.h4_c00322{height:81.031250pt;}
.h6_c00322{height:87.783854pt;}
.h2_c00322{height:88.940104pt;}
.h7_c00322{height:89.864062pt;}
.h8_c00322{height:96.750000pt;}
.h0_c00322{height:879.133333pt;}
.h1_c00322{height:879.333333pt;}
.w1_c00322{width:93.222667pt;}
.w0_c00322{width:597.333333pt;}
.x0_c00322{left:0.000000pt;}
.xb_c00322{left:25.600000pt;}
.x7_c00322{left:33.600000pt;}
.x1_c00322{left:38.666667pt;}
.xa_c00322{left:40.800000pt;}
.x6_c00322{left:42.000000pt;}
.x5_c00322{left:43.200000pt;}
.x3_c00322{left:44.800000pt;}
.x4_c00322{left:46.266667pt;}
.x2_c00322{left:48.400000pt;}
.x8_c00322{left:68.400000pt;}
.x9_c00322{left:93.333333pt;}
.xc_c00322{left:102.266667pt;}
.xe_c00322{left:255.834880pt;}
.xd_c00322{left:352.533333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_48d84e23e370d405dd088e05.woff2')format("woff");}.ff1_c00323{font-family:ff1_c00323;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00323;src:url('chunks/assets/font_7e85d59a3209af56065edc80.woff2')format("woff");}.ff2_c00323{font-family:ff2_c00323;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00323;src:url('chunks/assets/font_93ffc6188e6a40372ef98679.woff2')format("woff");}.ff3_c00323{font-family:ff3_c00323;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00323;src:url('chunks/assets/font_95277ab1a2bd3a6d0770027d.woff2')format("woff");}.ff4_c00323{font-family:ff4_c00323;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00323;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c00323{font-family:ff5_c00323;line-height:1.219238;font-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_c00323{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m0_c00323{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00323{vertical-align:0.000000px;}
.ls1_c00323{letter-spacing:0.000000px;}
.ls0_c00323{letter-spacing:5.802000px;}
.sc__c00323{text-shadow:none;}
.sc0_c00323{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00323{-webkit-text-stroke:0px transparent;}
.sc0_c00323{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00323{word-spacing:-17.352000px;}
.ws2_c00323{word-spacing:0.000000px;}
.ws1_c00323{word-spacing:2.793000px;}
._17_c00323{margin-left:-25.389000px;}
._1b_c00323{margin-left:-15.060000px;}
._13_c00323{margin-left:-13.644000px;}
._15_c00323{margin-left:-9.960000px;}
._a_c00323{margin-left:-8.406000px;}
._f_c00323{margin-left:-6.471000px;}
._7_c00323{margin-left:-5.163000px;}
._1_c00323{margin-left:-4.095000px;}
._2_c00323{margin-left:-2.835000px;}
._0_c00323{margin-left:-1.260000px;}
._5_c00323{width:1.575000px;}
._8_c00323{width:2.976000px;}
._4_c00323{width:4.305000px;}
._9_c00323{width:5.307000px;}
._6_c00323{width:6.378000px;}
._3_c00323{width:8.085000px;}
._b_c00323{width:9.294000px;}
._10_c00323{width:10.947000px;}
._d_c00323{width:12.159000px;}
._e_c00323{width:14.286000px;}
._c_c00323{width:15.990000px;}
._19_c00323{width:17.574000px;}
._12_c00323{width:18.663000px;}
._11_c00323{width:20.448000px;}
._16_c00323{width:22.224000px;}
._18_c00323{width:23.409000px;}
._14_c00323{width:29.262000px;}
._1a_c00323{width:30.390000px;}
.fc2_c00323{color:transparent;}
.fc1_c00323{color:rgb(128,128,128);}
.fc0_c00323{color:rgb(0,0,0);}
.fs6_c00323{font-size:48.000000px;}
.fs3_c00323{font-size:57.000000px;}
.fs2_c00323{font-size:72.000000px;}
.fs4_c00323{font-size:78.000000px;}
.fs1_c00323{font-size:81.000000px;}
.fs0_c00323{font-size:105.000000px;}
.fs5_c00323{font-size:108.000000px;}
.y0_c00323{bottom:0.000000px;}
.y26_c00323{bottom:3.105000px;}
.y25_c00323{bottom:7.228357px;}
.y24_c00323{bottom:54.030000px;}
.y23_c00323{bottom:79.980000px;}
.y22_c00323{bottom:105.930000px;}
.y21_c00323{bottom:130.380000px;}
.y20_c00323{bottom:154.680000px;}
.y1f_c00323{bottom:179.580000px;}
.y1e_c00323{bottom:204.180000px;}
.y1d_c00323{bottom:229.230000px;}
.y1c_c00323{bottom:253.530000px;}
.y1b_c00323{bottom:278.430000px;}
.y1a_c00323{bottom:303.030000px;}
.y19_c00323{bottom:327.030000px;}
.y18_c00323{bottom:351.330000px;}
.y17_c00323{bottom:375.930000px;}
.y16_c00323{bottom:400.680000px;}
.y15_c00323{bottom:424.680000px;}
.y14_c00323{bottom:448.980000px;}
.y13_c00323{bottom:473.280000px;}
.y12_c00323{bottom:497.580000px;}
.y11_c00323{bottom:521.430000px;}
.y10_c00323{bottom:545.430000px;}
.yf_c00323{bottom:569.730000px;}
.ye_c00323{bottom:594.030000px;}
.yd_c00323{bottom:618.330000px;}
.yc_c00323{bottom:642.330000px;}
.yb_c00323{bottom:666.930000px;}
.ya_c00323{bottom:691.230000px;}
.y9_c00323{bottom:715.530000px;}
.y8_c00323{bottom:739.830000px;}
.y7_c00323{bottom:764.130000px;}
.y6_c00323{bottom:788.730000px;}
.y5_c00323{bottom:812.430000px;}
.y4_c00323{bottom:836.730000px;}
.y3_c00323{bottom:861.030000px;}
.y2_c00323{bottom:885.030000px;}
.y1_c00323{bottom:919.680000px;}
.h7_c00323{height:13.200074px;}
.h8_c00323{height:43.804688px;}
.h2_c00323{height:79.497070px;}
.h5_c00323{height:84.269531px;}
.h3_c00323{height:91.160156px;}
.h4_c00323{height:98.756836px;}
.h6_c00323{height:108.843750px;}
.h1_c00323{height:122.893066px;}
.h0_c00323{height:995.250000px;}
.w2_c00323{width:104.875500px;}
.w0_c00323{width:667.425000px;}
.w1_c00323{width:667.500000px;}
.x0_c00323{left:0.000000px;}
.x5_c00323{left:111.600000px;}
.x2_c00323{left:115.500000px;}
.x6_c00323{left:117.000000px;}
.x3_c00323{left:118.050000px;}
.x4_c00323{left:119.250000px;}
.x8_c00323{left:121.050000px;}
.x9_c00323{left:122.400000px;}
.xa_c00323{left:123.450000px;}
.xb_c00323{left:124.800000px;}
.xc_c00323{left:126.450000px;}
.x7_c00323{left:137.250000px;}
.x1_c00323{left:221.700000px;}
.xe_c00323{left:285.526749px;}
.xd_c00323{left:603.450000px;}
@media print{
.v0_c00323{vertical-align:0.000000pt;}
.ls1_c00323{letter-spacing:0.000000pt;}
.ls0_c00323{letter-spacing:5.157333pt;}
.ws0_c00323{word-spacing:-15.424000pt;}
.ws2_c00323{word-spacing:0.000000pt;}
.ws1_c00323{word-spacing:2.482667pt;}
._17_c00323{margin-left:-22.568000pt;}
._1b_c00323{margin-left:-13.386667pt;}
._13_c00323{margin-left:-12.128000pt;}
._15_c00323{margin-left:-8.853333pt;}
._a_c00323{margin-left:-7.472000pt;}
._f_c00323{margin-left:-5.752000pt;}
._7_c00323{margin-left:-4.589333pt;}
._1_c00323{margin-left:-3.640000pt;}
._2_c00323{margin-left:-2.520000pt;}
._0_c00323{margin-left:-1.120000pt;}
._5_c00323{width:1.400000pt;}
._8_c00323{width:2.645333pt;}
._4_c00323{width:3.826667pt;}
._9_c00323{width:4.717333pt;}
._6_c00323{width:5.669333pt;}
._3_c00323{width:7.186667pt;}
._b_c00323{width:8.261333pt;}
._10_c00323{width:9.730667pt;}
._d_c00323{width:10.808000pt;}
._e_c00323{width:12.698667pt;}
._c_c00323{width:14.213333pt;}
._19_c00323{width:15.621333pt;}
._12_c00323{width:16.589333pt;}
._11_c00323{width:18.176000pt;}
._16_c00323{width:19.754667pt;}
._18_c00323{width:20.808000pt;}
._14_c00323{width:26.010667pt;}
._1a_c00323{width:27.013333pt;}
.fs6_c00323{font-size:42.666667pt;}
.fs3_c00323{font-size:50.666667pt;}
.fs2_c00323{font-size:64.000000pt;}
.fs4_c00323{font-size:69.333333pt;}
.fs1_c00323{font-size:72.000000pt;}
.fs0_c00323{font-size:93.333333pt;}
.fs5_c00323{font-size:96.000000pt;}
.y0_c00323{bottom:0.000000pt;}
.y26_c00323{bottom:2.760000pt;}
.y25_c00323{bottom:6.425206pt;}
.y24_c00323{bottom:48.026667pt;}
.y23_c00323{bottom:71.093333pt;}
.y22_c00323{bottom:94.160000pt;}
.y21_c00323{bottom:115.893333pt;}
.y20_c00323{bottom:137.493333pt;}
.y1f_c00323{bottom:159.626667pt;}
.y1e_c00323{bottom:181.493333pt;}
.y1d_c00323{bottom:203.760000pt;}
.y1c_c00323{bottom:225.360000pt;}
.y1b_c00323{bottom:247.493333pt;}
.y1a_c00323{bottom:269.360000pt;}
.y19_c00323{bottom:290.693333pt;}
.y18_c00323{bottom:312.293333pt;}
.y17_c00323{bottom:334.160000pt;}
.y16_c00323{bottom:356.160000pt;}
.y15_c00323{bottom:377.493333pt;}
.y14_c00323{bottom:399.093333pt;}
.y13_c00323{bottom:420.693333pt;}
.y12_c00323{bottom:442.293333pt;}
.y11_c00323{bottom:463.493333pt;}
.y10_c00323{bottom:484.826667pt;}
.yf_c00323{bottom:506.426667pt;}
.ye_c00323{bottom:528.026667pt;}
.yd_c00323{bottom:549.626667pt;}
.yc_c00323{bottom:570.960000pt;}
.yb_c00323{bottom:592.826667pt;}
.ya_c00323{bottom:614.426667pt;}
.y9_c00323{bottom:636.026667pt;}
.y8_c00323{bottom:657.626667pt;}
.y7_c00323{bottom:679.226667pt;}
.y6_c00323{bottom:701.093333pt;}
.y5_c00323{bottom:722.160000pt;}
.y4_c00323{bottom:743.760000pt;}
.y3_c00323{bottom:765.360000pt;}
.y2_c00323{bottom:786.693333pt;}
.y1_c00323{bottom:817.493333pt;}
.h7_c00323{height:11.733399pt;}
.h8_c00323{height:38.937500pt;}
.h2_c00323{height:70.664062pt;}
.h5_c00323{height:74.906250pt;}
.h3_c00323{height:81.031250pt;}
.h4_c00323{height:87.783854pt;}
.h6_c00323{height:96.750000pt;}
.h1_c00323{height:109.238281pt;}
.h0_c00323{height:884.666667pt;}
.w2_c00323{width:93.222667pt;}
.w0_c00323{width:593.266667pt;}
.w1_c00323{width:593.333333pt;}
.x0_c00323{left:0.000000pt;}
.x5_c00323{left:99.200000pt;}
.x2_c00323{left:102.666667pt;}
.x6_c00323{left:104.000000pt;}
.x3_c00323{left:104.933333pt;}
.x4_c00323{left:106.000000pt;}
.x8_c00323{left:107.600000pt;}
.x9_c00323{left:108.800000pt;}
.xa_c00323{left:109.733333pt;}
.xb_c00323{left:110.933333pt;}
.xc_c00323{left:112.400000pt;}
.x7_c00323{left:122.000000pt;}
.x1_c00323{left:197.066667pt;}
.xe_c00323{left:253.801554pt;}
.xd_c00323{left:536.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_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_c71b6923da4229b36c2e03a8.woff2')format("woff");}.ff1_c00324{font-family:ff1_c00324;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00324;src:url('chunks/assets/font_152f9276bc6fc8401adf03a8.woff2')format("woff");}.ff2_c00324{font-family:ff2_c00324;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00324;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff3_c00324{font-family:ff3_c00324;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00324;src:url('chunks/assets/font_67cc6a30c67151d0e48875cd.woff2')format("woff");}.ff4_c00324{font-family:ff4_c00324;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00324;src:url('chunks/assets/font_4219568b58012fa60e71da41.woff2')format("woff");}.ff5_c00324{font-family:ff5_c00324;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00324;src:url('chunks/assets/font_596c4c9ab41c0a2bdd2ccc0d.woff2')format("woff");}.ff6_c00324{font-family:ff6_c00324;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00324;src:url('chunks/assets/font_06a788753d65a93ac6245296.woff2')format("woff");}.ff7_c00324{font-family:ff7_c00324;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00324;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff8_c00324{font-family:ff8_c00324;line-height:1.219238;font-style: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;}
.ls6_c00324{letter-spacing:-9.000000px;}
.ls5_c00324{letter-spacing:-6.000000px;}
.ls2_c00324{letter-spacing:0.000000px;}
.ls4_c00324{letter-spacing:3.000000px;}
.ls3_c00324{letter-spacing:6.000000px;}
.ls1_c00324{letter-spacing:12.000000px;}
.ls0_c00324{letter-spacing:25.464000px;}
.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;}
}
.ws2_c00324{word-spacing:-61.686000px;}
.ws1_c00324{word-spacing:-20.250000px;}
.ws0_c00324{word-spacing:-17.352000px;}
.ws3_c00324{word-spacing:0.000000px;}
._13_c00324{margin-left:-27.135000px;}
._18_c00324{margin-left:-21.705000px;}
._14_c00324{margin-left:-19.632000px;}
._1a_c00324{margin-left:-17.271000px;}
._1c_c00324{margin-left:-12.345000px;}
._1b_c00324{margin-left:-10.497000px;}
._16_c00324{margin-left:-9.162000px;}
._17_c00324{margin-left:-7.857000px;}
._8_c00324{margin-left:-5.904000px;}
._11_c00324{margin-left:-4.113000px;}
._10_c00324{margin-left:-2.430000px;}
._e_c00324{margin-left:-1.215000px;}
._c_c00324{width:1.701000px;}
._b_c00324{width:2.835000px;}
._d_c00324{width:4.779000px;}
._f_c00324{width:6.723000px;}
._a_c00324{width:8.568000px;}
._1f_c00324{width:9.582000px;}
._2_c00324{width:10.584000px;}
._5_c00324{width:11.592000px;}
._6_c00324{width:12.888000px;}
._15_c00324{width:14.229000px;}
._19_c00324{width:16.263000px;}
._20_c00324{width:17.361000px;}
._4_c00324{width:18.504000px;}
._3_c00324{width:21.816000px;}
._1_c00324{width:23.832000px;}
._0_c00324{width:25.416000px;}
._1d_c00324{width:28.239000px;}
._1e_c00324{width:29.565000px;}
._9_c00324{width:42.048000px;}
._7_c00324{width:123.984000px;}
._12_c00324{width:219.096000px;}
._21_c00324{width:247.167000px;}
.fc2_c00324{color:transparent;}
.fc1_c00324{color:rgb(128,128,128);}
.fc0_c00324{color:rgb(0,0,0);}
.fs3_c00324{font-size:42.000000px;}
.fs6_c00324{font-size:48.000000px;}
.fs2_c00324{font-size:66.000000px;}
.fs0_c00324{font-size:72.000000px;}
.fs1_c00324{font-size:81.000000px;}
.fs4_c00324{font-size:87.000000px;}
.fs5_c00324{font-size:102.000000px;}
.y0_c00324{bottom:0.000000px;}
.y26_c00324{bottom:3.105000px;}
.y25_c00324{bottom:7.228363px;}
.y24_c00324{bottom:45.150000px;}
.y23_c00324{bottom:69.900000px;}
.y22_c00324{bottom:94.800000px;}
.y21_c00324{bottom:119.700000px;}
.y20_c00324{bottom:144.750000px;}
.y1f_c00324{bottom:169.350000px;}
.y1e_c00324{bottom:193.950000px;}
.y1d_c00324{bottom:218.700000px;}
.y1c_c00324{bottom:243.450000px;}
.y1b_c00324{bottom:268.350000px;}
.y1a_c00324{bottom:292.200000px;}
.y19_c00324{bottom:316.800000px;}
.y18_c00324{bottom:340.800000px;}
.y17_c00324{bottom:365.100000px;}
.y16_c00324{bottom:389.400000px;}
.y15_c00324{bottom:413.400000px;}
.y14_c00324{bottom:438.300000px;}
.y13_c00324{bottom:462.750000px;}
.y12_c00324{bottom:487.350000px;}
.y11_c00324{bottom:511.350000px;}
.y10_c00324{bottom:535.950000px;}
.yf_c00324{bottom:560.850000px;}
.ye_c00324{bottom:584.550000px;}
.yd_c00324{bottom:608.100000px;}
.yc_c00324{bottom:632.700000px;}
.yb_c00324{bottom:657.450000px;}
.ya_c00324{bottom:683.700000px;}
.y9_c00324{bottom:706.350000px;}
.y8_c00324{bottom:731.250000px;}
.y7_c00324{bottom:750.900000px;}
.y6_c00324{bottom:779.700000px;}
.y5_c00324{bottom:804.150000px;}
.y4_c00324{bottom:828.600000px;}
.y3_c00324{bottom:853.950000px;}
.y2_c00324{bottom:877.800000px;}
.y1_c00324{bottom:914.700000px;}
.h8_c00324{height:13.200074px;}
.h9_c00324{height:43.804688px;}
.h3_c00324{height:79.497070px;}
.h6_c00324{height:80.097070px;}
.h2_c00324{height:84.269531px;}
.h4_c00324{height:91.160156px;}
.h5_c00324{height:91.176000px;}
.h7_c00324{height:104.839927px;}
.h0_c00324{height:974.700000px;}
.h1_c00324{height:975.000000px;}
.w2_c00324{width:104.875500px;}
.w0_c00324{width:662.025000px;}
.w1_c00324{width:662.250000px;}
.x0_c00324{left:0.000000px;}
.x6_c00324{left:26.700000px;}
.x9_c00324{left:28.050000px;}
.x8_c00324{left:33.000000px;}
.xb_c00324{left:48.600000px;}
.x3_c00324{left:49.950000px;}
.x2_c00324{left:51.000000px;}
.x4_c00324{left:52.200000px;}
.xa_c00324{left:53.550000px;}
.x7_c00324{left:55.050000px;}
.x5_c00324{left:75.600000px;}
.x1_c00324{left:114.750000px;}
.xd_c00324{left:282.826767px;}
.xc_c00324{left:378.900000px;}
@media print{
.v0_c00324{vertical-align:0.000000pt;}
.ls6_c00324{letter-spacing:-8.000000pt;}
.ls5_c00324{letter-spacing:-5.333333pt;}
.ls2_c00324{letter-spacing:0.000000pt;}
.ls4_c00324{letter-spacing:2.666667pt;}
.ls3_c00324{letter-spacing:5.333333pt;}
.ls1_c00324{letter-spacing:10.666667pt;}
.ls0_c00324{letter-spacing:22.634667pt;}
.ws2_c00324{word-spacing:-54.832000pt;}
.ws1_c00324{word-spacing:-18.000000pt;}
.ws0_c00324{word-spacing:-15.424000pt;}
.ws3_c00324{word-spacing:0.000000pt;}
._13_c00324{margin-left:-24.120000pt;}
._18_c00324{margin-left:-19.293333pt;}
._14_c00324{margin-left:-17.450667pt;}
._1a_c00324{margin-left:-15.352000pt;}
._1c_c00324{margin-left:-10.973333pt;}
._1b_c00324{margin-left:-9.330667pt;}
._16_c00324{margin-left:-8.144000pt;}
._17_c00324{margin-left:-6.984000pt;}
._8_c00324{margin-left:-5.248000pt;}
._11_c00324{margin-left:-3.656000pt;}
._10_c00324{margin-left:-2.160000pt;}
._e_c00324{margin-left:-1.080000pt;}
._c_c00324{width:1.512000pt;}
._b_c00324{width:2.520000pt;}
._d_c00324{width:4.248000pt;}
._f_c00324{width:5.976000pt;}
._a_c00324{width:7.616000pt;}
._1f_c00324{width:8.517333pt;}
._2_c00324{width:9.408000pt;}
._5_c00324{width:10.304000pt;}
._6_c00324{width:11.456000pt;}
._15_c00324{width:12.648000pt;}
._19_c00324{width:14.456000pt;}
._20_c00324{width:15.432000pt;}
._4_c00324{width:16.448000pt;}
._3_c00324{width:19.392000pt;}
._1_c00324{width:21.184000pt;}
._0_c00324{width:22.592000pt;}
._1d_c00324{width:25.101333pt;}
._1e_c00324{width:26.280000pt;}
._9_c00324{width:37.376000pt;}
._7_c00324{width:110.208000pt;}
._12_c00324{width:194.752000pt;}
._21_c00324{width:219.704000pt;}
.fs3_c00324{font-size:37.333333pt;}
.fs6_c00324{font-size:42.666667pt;}
.fs2_c00324{font-size:58.666667pt;}
.fs0_c00324{font-size:64.000000pt;}
.fs1_c00324{font-size:72.000000pt;}
.fs4_c00324{font-size:77.333333pt;}
.fs5_c00324{font-size:90.666667pt;}
.y0_c00324{bottom:0.000000pt;}
.y26_c00324{bottom:2.760000pt;}
.y25_c00324{bottom:6.425212pt;}
.y24_c00324{bottom:40.133333pt;}
.y23_c00324{bottom:62.133333pt;}
.y22_c00324{bottom:84.266667pt;}
.y21_c00324{bottom:106.400000pt;}
.y20_c00324{bottom:128.666667pt;}
.y1f_c00324{bottom:150.533333pt;}
.y1e_c00324{bottom:172.400000pt;}
.y1d_c00324{bottom:194.400000pt;}
.y1c_c00324{bottom:216.400000pt;}
.y1b_c00324{bottom:238.533333pt;}
.y1a_c00324{bottom:259.733333pt;}
.y19_c00324{bottom:281.600000pt;}
.y18_c00324{bottom:302.933333pt;}
.y17_c00324{bottom:324.533333pt;}
.y16_c00324{bottom:346.133333pt;}
.y15_c00324{bottom:367.466667pt;}
.y14_c00324{bottom:389.600000pt;}
.y13_c00324{bottom:411.333333pt;}
.y12_c00324{bottom:433.200000pt;}
.y11_c00324{bottom:454.533333pt;}
.y10_c00324{bottom:476.400000pt;}
.yf_c00324{bottom:498.533333pt;}
.ye_c00324{bottom:519.600000pt;}
.yd_c00324{bottom:540.533333pt;}
.yc_c00324{bottom:562.400000pt;}
.yb_c00324{bottom:584.400000pt;}
.ya_c00324{bottom:607.733333pt;}
.y9_c00324{bottom:627.866667pt;}
.y8_c00324{bottom:650.000000pt;}
.y7_c00324{bottom:667.466667pt;}
.y6_c00324{bottom:693.066667pt;}
.y5_c00324{bottom:714.800000pt;}
.y4_c00324{bottom:736.533333pt;}
.y3_c00324{bottom:759.066667pt;}
.y2_c00324{bottom:780.266667pt;}
.y1_c00324{bottom:813.066667pt;}
.h8_c00324{height:11.733399pt;}
.h9_c00324{height:38.937500pt;}
.h3_c00324{height:70.664062pt;}
.h6_c00324{height:71.197396pt;}
.h2_c00324{height:74.906250pt;}
.h4_c00324{height:81.031250pt;}
.h5_c00324{height:81.045333pt;}
.h7_c00324{height:93.191046pt;}
.h0_c00324{height:866.400000pt;}
.h1_c00324{height:866.666667pt;}
.w2_c00324{width:93.222667pt;}
.w0_c00324{width:588.466667pt;}
.w1_c00324{width:588.666667pt;}
.x0_c00324{left:0.000000pt;}
.x6_c00324{left:23.733333pt;}
.x9_c00324{left:24.933333pt;}
.x8_c00324{left:29.333333pt;}
.xb_c00324{left:43.200000pt;}
.x3_c00324{left:44.400000pt;}
.x2_c00324{left:45.333333pt;}
.x4_c00324{left:46.400000pt;}
.xa_c00324{left:47.600000pt;}
.x7_c00324{left:48.933333pt;}
.x5_c00324{left:67.200000pt;}
.x1_c00324{left:102.000000pt;}
.xd_c00324{left:251.401571pt;}
.xc_c00324{left:336.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_d559d2fa20428ae6d7d9c546.woff2')format("woff");}.ff1_c00325{font-family:ff1_c00325;line-height:1.311035;font-style:normal;font-weight:normal;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_a7dc3300170e577a8b38403b.woff2')format("woff");}.ff2_c00325{font-family:ff2_c00325;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00325;src:url('chunks/assets/font_27a8d7b2ce9e5917e74a38c6.woff2')format("woff");}.ff3_c00325{font-family:ff3_c00325;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00325;src:url('chunks/assets/font_32c5f4df245fa2cc5c070c0f.woff2')format("woff");}.ff4_c00325{font-family:ff4_c00325;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00325;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff5_c00325{font-family:ff5_c00325;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00325;src:url('chunks/assets/font_c7134485956550f7874dc39a.woff2')format("woff");}.ff6_c00325{font-family:ff6_c00325;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00325;src:url('chunks/assets/font_b78c7cbf53e460c5bd44ba07.woff2')format("woff");}.ff7_c00325{font-family:ff7_c00325;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00325;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff8_c00325{font-family:ff8_c00325;line-height:1.219238;font-style: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;}
.ls7_c00325{letter-spacing:0.000000px;}
.ls1_c00325{letter-spacing:6.000000px;}
.ls6_c00325{letter-spacing:6.885000px;}
.ls3_c00325{letter-spacing:10.176000px;}
.ls5_c00325{letter-spacing:11.880000px;}
.ls8_c00325{letter-spacing:18.000000px;}
.ls2_c00325{letter-spacing:34.215000px;}
.ls4_c00325{letter-spacing:35.616000px;}
.ls0_c00325{letter-spacing:330.000000px;}
.sc__c00325{text-shadow:none;}
.sc0_c00325{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00325{-webkit-text-stroke:0px transparent;}
.sc0_c00325{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00325{word-spacing:-59.184000px;}
.ws0_c00325{word-spacing:-54.465000px;}
.ws2_c00325{word-spacing:-41.587200px;}
.ws3_c00325{word-spacing:-27.135000px;}
.ws4_c00325{word-spacing:0.000000px;}
._16_c00325{margin-left:-18.453000px;}
._1e_c00325{margin-left:-13.929000px;}
._15_c00325{margin-left:-12.036000px;}
._1a_c00325{margin-left:-8.208000px;}
._a_c00325{margin-left:-7.005000px;}
._19_c00325{margin-left:-5.844000px;}
._1_c00325{margin-left:-4.386000px;}
._0_c00325{margin-left:-2.958000px;}
._2_c00325{margin-left:-1.632000px;}
._3_c00325{width:1.020000px;}
._8_c00325{width:2.199000px;}
._5_c00325{width:3.564000px;}
._6_c00325{width:5.103000px;}
._9_c00325{width:6.342000px;}
._10_c00325{width:7.485000px;}
._7_c00325{width:8.505000px;}
._b_c00325{width:9.720000px;}
._4_c00325{width:10.899000px;}
._d_c00325{width:12.312000px;}
._1b_c00325{width:14.328000px;}
._11_c00325{width:15.546000px;}
._e_c00325{width:17.091000px;}
._c_c00325{width:18.306000px;}
._14_c00325{width:21.486000px;}
._1d_c00325{width:22.713000px;}
._f_c00325{width:24.585000px;}
._12_c00325{width:31.665000px;}
._18_c00325{width:44.286000px;}
._1c_c00325{width:48.828000px;}
._13_c00325{width:108.303000px;}
._17_c00325{width:210.888000px;}
.fc2_c00325{color:transparent;}
.fc1_c00325{color:rgb(128,128,128);}
.fc0_c00325{color:rgb(0,0,0);}
.fs5_c00325{font-size:48.000000px;}
.fs4_c00325{font-size:57.600000px;}
.fs3_c00325{font-size:72.000000px;}
.fs2_c00325{font-size:81.000000px;}
.fs1_c00325{font-size:102.000000px;}
.fs0_c00325{font-size:120.000000px;}
.y0_c00325{bottom:0.000000px;}
.y26_c00325{bottom:3.105000px;}
.y25_c00325{bottom:7.228357px;}
.y24_c00325{bottom:55.380000px;}
.y23_c00325{bottom:78.330000px;}
.y22_c00325{bottom:103.680000px;}
.y21_c00325{bottom:128.580000px;}
.y20_c00325{bottom:152.880000px;}
.y1f_c00325{bottom:177.480000px;}
.y1e_c00325{bottom:201.480000px;}
.y1d_c00325{bottom:225.480000px;}
.y1c_c00325{bottom:250.080000px;}
.y1b_c00325{bottom:274.830000px;}
.y1a_c00325{bottom:299.130000px;}
.y19_c00325{bottom:323.730000px;}
.y18_c00325{bottom:348.030000px;}
.y17_c00325{bottom:372.330000px;}
.y16_c00325{bottom:397.230000px;}
.y15_c00325{bottom:421.980000px;}
.y14_c00325{bottom:445.830000px;}
.y13_c00325{bottom:470.580000px;}
.y12_c00325{bottom:494.130000px;}
.y11_c00325{bottom:517.830000px;}
.y10_c00325{bottom:542.130000px;}
.yf_c00325{bottom:567.030000px;}
.ye_c00325{bottom:591.030000px;}
.yd_c00325{bottom:615.330000px;}
.yc_c00325{bottom:640.680000px;}
.yb_c00325{bottom:663.930000px;}
.ya_c00325{bottom:688.830000px;}
.y9_c00325{bottom:712.530000px;}
.y8_c00325{bottom:736.830000px;}
.y7_c00325{bottom:761.730000px;}
.y6_c00325{bottom:785.730000px;}
.y5_c00325{bottom:810.630000px;}
.y4_c00325{bottom:834.330000px;}
.y3_c00325{bottom:858.930000px;}
.y2_c00325{bottom:882.930000px;}
.y1_c00325{bottom:918.780000px;}
.h8_c00325{height:13.200074px;}
.h9_c00325{height:43.804688px;}
.h6_c00325{height:70.628906px;}
.h4_c00325{height:70.664062px;}
.h5_c00325{height:72.562500px;}
.h2_c00325{height:79.497070px;}
.h7_c00325{height:84.269531px;}
.h3_c00325{height:91.160156px;}
.h1_c00325{height:120.937500px;}
.h0_c00325{height:995.250000px;}
.w2_c00325{width:104.875500px;}
.w0_c00325{width:667.425000px;}
.w1_c00325{width:667.500000px;}
.x0_c00325{left:0.000000px;}
.x8_c00325{left:25.350000px;}
.x6_c00325{left:28.350000px;}
.x7_c00325{left:30.750000px;}
.x4_c00325{left:63.750000px;}
.xb_c00325{left:116.850000px;}
.x9_c00325{left:117.900000px;}
.xa_c00325{left:120.450000px;}
.x3_c00325{left:123.150000px;}
.x5_c00325{left:124.200000px;}
.x2_c00325{left:125.550000px;}
.x1_c00325{left:128.250000px;}
.xd_c00325{left:285.526749px;}
.xc_c00325{left:578.100000px;}
@media print{
.v0_c00325{vertical-align:0.000000pt;}
.ls7_c00325{letter-spacing:0.000000pt;}
.ls1_c00325{letter-spacing:5.333333pt;}
.ls6_c00325{letter-spacing:6.120000pt;}
.ls3_c00325{letter-spacing:9.045333pt;}
.ls5_c00325{letter-spacing:10.560000pt;}
.ls8_c00325{letter-spacing:16.000000pt;}
.ls2_c00325{letter-spacing:30.413333pt;}
.ls4_c00325{letter-spacing:31.658667pt;}
.ls0_c00325{letter-spacing:293.333333pt;}
.ws1_c00325{word-spacing:-52.608000pt;}
.ws0_c00325{word-spacing:-48.413333pt;}
.ws2_c00325{word-spacing:-36.966400pt;}
.ws3_c00325{word-spacing:-24.120000pt;}
.ws4_c00325{word-spacing:0.000000pt;}
._16_c00325{margin-left:-16.402667pt;}
._1e_c00325{margin-left:-12.381333pt;}
._15_c00325{margin-left:-10.698667pt;}
._1a_c00325{margin-left:-7.296000pt;}
._a_c00325{margin-left:-6.226667pt;}
._19_c00325{margin-left:-5.194667pt;}
._1_c00325{margin-left:-3.898667pt;}
._0_c00325{margin-left:-2.629333pt;}
._2_c00325{margin-left:-1.450667pt;}
._3_c00325{width:0.906667pt;}
._8_c00325{width:1.954667pt;}
._5_c00325{width:3.168000pt;}
._6_c00325{width:4.536000pt;}
._9_c00325{width:5.637333pt;}
._10_c00325{width:6.653333pt;}
._7_c00325{width:7.560000pt;}
._b_c00325{width:8.640000pt;}
._4_c00325{width:9.688000pt;}
._d_c00325{width:10.944000pt;}
._1b_c00325{width:12.736000pt;}
._11_c00325{width:13.818667pt;}
._e_c00325{width:15.192000pt;}
._c_c00325{width:16.272000pt;}
._14_c00325{width:19.098667pt;}
._1d_c00325{width:20.189333pt;}
._f_c00325{width:21.853333pt;}
._12_c00325{width:28.146667pt;}
._18_c00325{width:39.365333pt;}
._1c_c00325{width:43.402667pt;}
._13_c00325{width:96.269333pt;}
._17_c00325{width:187.456000pt;}
.fs5_c00325{font-size:42.666667pt;}
.fs4_c00325{font-size:51.200000pt;}
.fs3_c00325{font-size:64.000000pt;}
.fs2_c00325{font-size:72.000000pt;}
.fs1_c00325{font-size:90.666667pt;}
.fs0_c00325{font-size:106.666667pt;}
.y0_c00325{bottom:0.000000pt;}
.y26_c00325{bottom:2.760000pt;}
.y25_c00325{bottom:6.425206pt;}
.y24_c00325{bottom:49.226667pt;}
.y23_c00325{bottom:69.626667pt;}
.y22_c00325{bottom:92.160000pt;}
.y21_c00325{bottom:114.293333pt;}
.y20_c00325{bottom:135.893333pt;}
.y1f_c00325{bottom:157.760000pt;}
.y1e_c00325{bottom:179.093333pt;}
.y1d_c00325{bottom:200.426667pt;}
.y1c_c00325{bottom:222.293333pt;}
.y1b_c00325{bottom:244.293333pt;}
.y1a_c00325{bottom:265.893333pt;}
.y19_c00325{bottom:287.760000pt;}
.y18_c00325{bottom:309.360000pt;}
.y17_c00325{bottom:330.960000pt;}
.y16_c00325{bottom:353.093333pt;}
.y15_c00325{bottom:375.093333pt;}
.y14_c00325{bottom:396.293333pt;}
.y13_c00325{bottom:418.293333pt;}
.y12_c00325{bottom:439.226667pt;}
.y11_c00325{bottom:460.293333pt;}
.y10_c00325{bottom:481.893333pt;}
.yf_c00325{bottom:504.026667pt;}
.ye_c00325{bottom:525.360000pt;}
.yd_c00325{bottom:546.960000pt;}
.yc_c00325{bottom:569.493333pt;}
.yb_c00325{bottom:590.160000pt;}
.ya_c00325{bottom:612.293333pt;}
.y9_c00325{bottom:633.360000pt;}
.y8_c00325{bottom:654.960000pt;}
.y7_c00325{bottom:677.093333pt;}
.y6_c00325{bottom:698.426667pt;}
.y5_c00325{bottom:720.560000pt;}
.y4_c00325{bottom:741.626667pt;}
.y3_c00325{bottom:763.493333pt;}
.y2_c00325{bottom:784.826667pt;}
.y1_c00325{bottom:816.693333pt;}
.h8_c00325{height:11.733399pt;}
.h9_c00325{height:38.937500pt;}
.h6_c00325{height:62.781250pt;}
.h4_c00325{height:62.812500pt;}
.h5_c00325{height:64.500000pt;}
.h2_c00325{height:70.664062pt;}
.h7_c00325{height:74.906250pt;}
.h3_c00325{height:81.031250pt;}
.h1_c00325{height:107.500000pt;}
.h0_c00325{height:884.666667pt;}
.w2_c00325{width:93.222667pt;}
.w0_c00325{width:593.266667pt;}
.w1_c00325{width:593.333333pt;}
.x0_c00325{left:0.000000pt;}
.x8_c00325{left:22.533333pt;}
.x6_c00325{left:25.200000pt;}
.x7_c00325{left:27.333333pt;}
.x4_c00325{left:56.666667pt;}
.xb_c00325{left:103.866667pt;}
.x9_c00325{left:104.800000pt;}
.xa_c00325{left:107.066667pt;}
.x3_c00325{left:109.466667pt;}
.x5_c00325{left:110.400000pt;}
.x2_c00325{left:111.600000pt;}
.x1_c00325{left:114.000000pt;}
.xd_c00325{left:253.801554pt;}
.xc_c00325{left:513.866667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_9e86a6955885fda61f5f4619.woff2')format("woff");}.ff1_c00326{font-family:ff1_c00326;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00326;src:url('chunks/assets/font_fb0f40053abd5fe23d38be30.woff2')format("woff");}.ff2_c00326{font-family:ff2_c00326;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00326;src:url('chunks/assets/font_d8eda4dd6474cbd577f1c050.woff2')format("woff");}.ff3_c00326{font-family:ff3_c00326;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00326;src:url('chunks/assets/font_af711a13fb11bce4b96af72e.woff2')format("woff");}.ff4_c00326{font-family:ff4_c00326;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00326;src:url('chunks/assets/font_e108e6f62d6c5f58ae07b5e0.woff2')format("woff");}.ff5_c00326{font-family:ff5_c00326;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00326;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c00326{font-family:ff6_c00326;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00326{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00326{vertical-align:0.000000px;}
.v1_c00326{vertical-align:17.400000px;}
.ls6_c00326{letter-spacing:-9.000000px;}
.ls4_c00326{letter-spacing:0.000000px;}
.ls3_c00326{letter-spacing:3.000000px;}
.ls5_c00326{letter-spacing:6.000000px;}
.ls1_c00326{letter-spacing:8.568000px;}
.ls0_c00326{letter-spacing:25.140000px;}
.ls2_c00326{letter-spacing:176.400000px;}
.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;}
}
.ws0_c00326{word-spacing:-23.832000px;}
.ws3_c00326{word-spacing:-21.000000px;}
.ws1_c00326{word-spacing:-19.065600px;}
.ws2_c00326{word-spacing:-17.352000px;}
.ws4_c00326{word-spacing:-12.399000px;}
.ws5_c00326{word-spacing:-6.000000px;}
.ws6_c00326{word-spacing:0.000000px;}
._23_c00326{margin-left:-24.420000px;}
._1c_c00326{margin-left:-22.680000px;}
._1e_c00326{margin-left:-18.156000px;}
._20_c00326{margin-left:-16.347000px;}
._b_c00326{margin-left:-15.300000px;}
._a_c00326{margin-left:-13.158000px;}
._2_c00326{margin-left:-11.730000px;}
._9_c00326{margin-left:-9.588000px;}
._6_c00326{margin-left:-7.752000px;}
._16_c00326{margin-left:-6.480000px;}
._7_c00326{margin-left:-5.406000px;}
._5_c00326{margin-left:-4.284000px;}
._3_c00326{margin-left:-3.264000px;}
._4_c00326{margin-left:-2.244000px;}
._15_c00326{margin-left:-1.209000px;}
._1_c00326{width:1.020000px;}
._0_c00326{width:2.142000px;}
._17_c00326{width:3.159000px;}
._8_c00326{width:4.182000px;}
._f_c00326{width:5.694000px;}
._e_c00326{width:7.035000px;}
._12_c00326{width:8.130000px;}
._10_c00326{width:9.690000px;}
._13_c00326{width:11.226000px;}
._19_c00326{width:12.954000px;}
._14_c00326{width:14.304000px;}
._21_c00326{width:15.549000px;}
._d_c00326{width:16.992000px;}
._1f_c00326{width:25.704000px;}
._18_c00326{width:27.945000px;}
._1d_c00326{width:31.737000px;}
._1b_c00326{width:91.434000px;}
._25_c00326{width:118.152000px;}
._c_c00326{width:160.548000px;}
._11_c00326{width:203.232000px;}
._22_c00326{width:224.751000px;}
._1a_c00326{width:254.007000px;}
._26_c00326{width:295.827000px;}
._24_c00326{width:361.200000px;}
.fc2_c00326{color:transparent;}
.fc1_c00326{color:rgb(128,128,128);}
.fc0_c00326{color:rgb(0,0,0);}
.fs6_c00326{font-size:39.000000px;}
.fs7_c00326{font-size:48.000000px;}
.fs4_c00326{font-size:57.600000px;}
.fs1_c00326{font-size:60.000000px;}
.fs3_c00326{font-size:72.000000px;}
.fs2_c00326{font-size:81.000000px;}
.fs5_c00326{font-size:84.000000px;}
.fs0_c00326{font-size:102.000000px;}
.y0_c00326{bottom:0.000000px;}
.y25_c00326{bottom:3.105000px;}
.y24_c00326{bottom:7.228355px;}
.y23_c00326{bottom:101.235000px;}
.y22_c00326{bottom:125.835000px;}
.y21_c00326{bottom:150.735000px;}
.y20_c00326{bottom:175.185000px;}
.y1f_c00326{bottom:199.485000px;}
.y1e_c00326{bottom:212.835000px;}
.y1d_c00326{bottom:224.085000px;}
.y1c_c00326{bottom:248.685000px;}
.y1b_c00326{bottom:275.085000px;}
.y1a_c00326{bottom:304.635000px;}
.y19_c00326{bottom:334.335000px;}
.y18_c00326{bottom:363.735000px;}
.y17_c00326{bottom:390.135000px;}
.y16_c00326{bottom:415.035000px;}
.y15_c00326{bottom:439.335000px;}
.y14_c00326{bottom:463.635000px;}
.y13_c00326{bottom:487.335000px;}
.y12_c00326{bottom:512.235000px;}
.y11_c00326{bottom:535.935000px;}
.y10_c00326{bottom:559.935000px;}
.yf_c00326{bottom:584.835000px;}
.ye_c00326{bottom:608.535000px;}
.yd_c00326{bottom:633.135000px;}
.yc_c00326{bottom:658.485000px;}
.yb_c00326{bottom:680.985000px;}
.ya_c00326{bottom:705.735000px;}
.y9_c00326{bottom:729.285000px;}
.y8_c00326{bottom:754.185000px;}
.y7_c00326{bottom:778.485000px;}
.y6_c00326{bottom:802.785000px;}
.y5_c00326{bottom:827.535000px;}
.y4_c00326{bottom:851.535000px;}
.y3_c00326{bottom:876.735000px;}
.y2_c00326{bottom:896.385000px;}
.y1_c00326{bottom:936.435000px;}
.ha_c00326{height:13.200074px;}
.hb_c00326{height:43.804688px;}
.h9_c00326{height:58.886719px;}
.h4_c00326{height:79.497070px;}
.h8_c00326{height:82.400391px;}
.h7_c00326{height:82.441406px;}
.h6_c00326{height:84.269531px;}
.h5_c00326{height:91.160156px;}
.h3_c00326{height:96.897070px;}
.h2_c00326{height:100.057617px;}
.h0_c00326{height:977.925000px;}
.h1_c00326{height:978.000000px;}
.w2_c00326{width:104.875500px;}
.w0_c00326{width:664.200000px;}
.w1_c00326{width:664.500000px;}
.x0_c00326{left:0.000000px;}
.x2_c00326{left:43.950000px;}
.x4_c00326{left:46.200000px;}
.x5_c00326{left:47.250000px;}
.x6_c00326{left:48.300000px;}
.x8_c00326{left:49.650000px;}
.x7_c00326{left:51.300000px;}
.x9_c00326{left:52.950000px;}
.xa_c00326{left:54.300000px;}
.x10_c00326{left:57.000000px;}
.x3_c00326{left:58.650000px;}
.x11_c00326{left:59.850000px;}
.xb_c00326{left:80.400000px;}
.x1_c00326{left:101.250000px;}
.xc_c00326{left:129.300000px;}
.xe_c00326{left:131.400000px;}
.xf_c00326{left:163.350000px;}
.xd_c00326{left:250.500000px;}
.x12_c00326{left:283.914230px;}
@media print{
.v0_c00326{vertical-align:0.000000pt;}
.v1_c00326{vertical-align:15.466667pt;}
.ls6_c00326{letter-spacing:-8.000000pt;}
.ls4_c00326{letter-spacing:0.000000pt;}
.ls3_c00326{letter-spacing:2.666667pt;}
.ls5_c00326{letter-spacing:5.333333pt;}
.ls1_c00326{letter-spacing:7.616000pt;}
.ls0_c00326{letter-spacing:22.346667pt;}
.ls2_c00326{letter-spacing:156.800000pt;}
.ws0_c00326{word-spacing:-21.184000pt;}
.ws3_c00326{word-spacing:-18.666667pt;}
.ws1_c00326{word-spacing:-16.947200pt;}
.ws2_c00326{word-spacing:-15.424000pt;}
.ws4_c00326{word-spacing:-11.021333pt;}
.ws5_c00326{word-spacing:-5.333333pt;}
.ws6_c00326{word-spacing:0.000000pt;}
._23_c00326{margin-left:-21.706667pt;}
._1c_c00326{margin-left:-20.160000pt;}
._1e_c00326{margin-left:-16.138667pt;}
._20_c00326{margin-left:-14.530667pt;}
._b_c00326{margin-left:-13.600000pt;}
._a_c00326{margin-left:-11.696000pt;}
._2_c00326{margin-left:-10.426667pt;}
._9_c00326{margin-left:-8.522667pt;}
._6_c00326{margin-left:-6.890667pt;}
._16_c00326{margin-left:-5.760000pt;}
._7_c00326{margin-left:-4.805333pt;}
._5_c00326{margin-left:-3.808000pt;}
._3_c00326{margin-left:-2.901333pt;}
._4_c00326{margin-left:-1.994667pt;}
._15_c00326{margin-left:-1.074667pt;}
._1_c00326{width:0.906667pt;}
._0_c00326{width:1.904000pt;}
._17_c00326{width:2.808000pt;}
._8_c00326{width:3.717333pt;}
._f_c00326{width:5.061333pt;}
._e_c00326{width:6.253333pt;}
._12_c00326{width:7.226667pt;}
._10_c00326{width:8.613333pt;}
._13_c00326{width:9.978667pt;}
._19_c00326{width:11.514667pt;}
._14_c00326{width:12.714667pt;}
._21_c00326{width:13.821333pt;}
._d_c00326{width:15.104000pt;}
._1f_c00326{width:22.848000pt;}
._18_c00326{width:24.840000pt;}
._1d_c00326{width:28.210667pt;}
._1b_c00326{width:81.274667pt;}
._25_c00326{width:105.024000pt;}
._c_c00326{width:142.709333pt;}
._11_c00326{width:180.650667pt;}
._22_c00326{width:199.778667pt;}
._1a_c00326{width:225.784000pt;}
._26_c00326{width:262.957333pt;}
._24_c00326{width:321.066667pt;}
.fs6_c00326{font-size:34.666667pt;}
.fs7_c00326{font-size:42.666667pt;}
.fs4_c00326{font-size:51.200000pt;}
.fs1_c00326{font-size:53.333333pt;}
.fs3_c00326{font-size:64.000000pt;}
.fs2_c00326{font-size:72.000000pt;}
.fs5_c00326{font-size:74.666667pt;}
.fs0_c00326{font-size:90.666667pt;}
.y0_c00326{bottom:0.000000pt;}
.y25_c00326{bottom:2.760000pt;}
.y24_c00326{bottom:6.425204pt;}
.y23_c00326{bottom:89.986667pt;}
.y22_c00326{bottom:111.853333pt;}
.y21_c00326{bottom:133.986667pt;}
.y20_c00326{bottom:155.720000pt;}
.y1f_c00326{bottom:177.320000pt;}
.y1e_c00326{bottom:189.186667pt;}
.y1d_c00326{bottom:199.186667pt;}
.y1c_c00326{bottom:221.053333pt;}
.y1b_c00326{bottom:244.520000pt;}
.y1a_c00326{bottom:270.786667pt;}
.y19_c00326{bottom:297.186667pt;}
.y18_c00326{bottom:323.320000pt;}
.y17_c00326{bottom:346.786667pt;}
.y16_c00326{bottom:368.920000pt;}
.y15_c00326{bottom:390.520000pt;}
.y14_c00326{bottom:412.120000pt;}
.y13_c00326{bottom:433.186667pt;}
.y12_c00326{bottom:455.320000pt;}
.y11_c00326{bottom:476.386667pt;}
.y10_c00326{bottom:497.720000pt;}
.yf_c00326{bottom:519.853333pt;}
.ye_c00326{bottom:540.920000pt;}
.yd_c00326{bottom:562.786667pt;}
.yc_c00326{bottom:585.320000pt;}
.yb_c00326{bottom:605.320000pt;}
.ya_c00326{bottom:627.320000pt;}
.y9_c00326{bottom:648.253333pt;}
.y8_c00326{bottom:670.386667pt;}
.y7_c00326{bottom:691.986667pt;}
.y6_c00326{bottom:713.586667pt;}
.y5_c00326{bottom:735.586667pt;}
.y4_c00326{bottom:756.920000pt;}
.y3_c00326{bottom:779.320000pt;}
.y2_c00326{bottom:796.786667pt;}
.y1_c00326{bottom:832.386667pt;}
.ha_c00326{height:11.733399pt;}
.hb_c00326{height:38.937500pt;}
.h9_c00326{height:52.343750pt;}
.h4_c00326{height:70.664062pt;}
.h8_c00326{height:73.244792pt;}
.h7_c00326{height:73.281250pt;}
.h6_c00326{height:74.906250pt;}
.h5_c00326{height:81.031250pt;}
.h3_c00326{height:86.130729pt;}
.h2_c00326{height:88.940104pt;}
.h0_c00326{height:869.266667pt;}
.h1_c00326{height:869.333333pt;}
.w2_c00326{width:93.222667pt;}
.w0_c00326{width:590.400000pt;}
.w1_c00326{width:590.666667pt;}
.x0_c00326{left:0.000000pt;}
.x2_c00326{left:39.066667pt;}
.x4_c00326{left:41.066667pt;}
.x5_c00326{left:42.000000pt;}
.x6_c00326{left:42.933333pt;}
.x8_c00326{left:44.133333pt;}
.x7_c00326{left:45.600000pt;}
.x9_c00326{left:47.066667pt;}
.xa_c00326{left:48.266667pt;}
.x10_c00326{left:50.666667pt;}
.x3_c00326{left:52.133333pt;}
.x11_c00326{left:53.200000pt;}
.xb_c00326{left:71.466667pt;}
.x1_c00326{left:90.000000pt;}
.xc_c00326{left:114.933333pt;}
.xe_c00326{left:116.800000pt;}
.xf_c00326{left:145.200000pt;}
.xd_c00326{left:222.666667pt;}
.x12_c00326{left:252.368205pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7fd47ec3e9bb98c192b199b0.woff2')format("woff");}.ff1_c00327{font-family:ff1_c00327;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00327;src:url('chunks/assets/font_42ad97236eff7fbccff7db3a.woff2')format("woff");}.ff2_c00327{font-family:ff2_c00327;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00327;src:url('chunks/assets/font_19f583b134eb2a429cc8a7e9.woff2')format("woff");}.ff3_c00327{font-family:ff3_c00327;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00327;src:url('chunks/assets/font_468a72b81b051be3de5b434a.woff2')format("woff");}.ff4_c00327{font-family:ff4_c00327;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00327;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff5_c00327{font-family:ff5_c00327;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00327;src:url('chunks/assets/font_1122c96be8ab1c1ba7ee46a6.woff2')format("woff");}.ff6_c00327{font-family:ff6_c00327;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00327;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c00327{font-family:ff7_c00327;line-height:1.219238;font-style: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;}
.ls1_c00327{letter-spacing:-6.000000px;}
.ls2_c00327{letter-spacing:-3.000000px;}
.ls0_c00327{letter-spacing:0.000000px;}
.ls3_c00327{letter-spacing:6.000000px;}
.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:-61.686000px;}
.ws2_c00327{word-spacing:-26.250000px;}
.ws1_c00327{word-spacing:-17.352000px;}
.ws3_c00327{word-spacing:0.000000px;}
._25_c00327{margin-left:-28.698000px;}
._19_c00327{margin-left:-26.523000px;}
._1b_c00327{margin-left:-24.534000px;}
._17_c00327{margin-left:-20.412000px;}
._1d_c00327{margin-left:-19.296000px;}
._15_c00327{margin-left:-17.052000px;}
._e_c00327{margin-left:-13.959000px;}
._b_c00327{margin-left:-12.699000px;}
._10_c00327{margin-left:-10.764000px;}
._16_c00327{margin-left:-9.279000px;}
._f_c00327{margin-left:-7.614000px;}
._d_c00327{margin-left:-6.363000px;}
._9_c00327{margin-left:-4.941000px;}
._c_c00327{margin-left:-3.582000px;}
._8_c00327{margin-left:-2.511000px;}
._11_c00327{margin-left:-1.215000px;}
._7_c00327{width:1.053000px;}
._5_c00327{width:2.511000px;}
._0_c00327{width:3.564000px;}
._1_c00327{width:5.184000px;}
._3_c00327{width:6.885000px;}
._4_c00327{width:8.019000px;}
._13_c00327{width:9.315000px;}
._2_c00327{width:10.935000px;}
._6_c00327{width:12.798000px;}
._22_c00327{width:13.869000px;}
._14_c00327{width:14.931000px;}
._20_c00327{width:16.362000px;}
._12_c00327{width:17.496000px;}
._21_c00327{width:19.056000px;}
._a_c00327{width:21.636000px;}
._23_c00327{width:25.641000px;}
._1f_c00327{width:30.678000px;}
._1c_c00327{width:51.381000px;}
._1a_c00327{width:62.886000px;}
._1e_c00327{width:64.071000px;}
._18_c00327{width:102.384000px;}
._24_c00327{width:127.638000px;}
.fc2_c00327{color:transparent;}
.fc1_c00327{color:rgb(128,128,128);}
.fc0_c00327{color:rgb(0,0,0);}
.fs4_c00327{font-size:48.000000px;}
.fs3_c00327{font-size:60.000000px;}
.fs2_c00327{font-size:72.000000px;}
.fs0_c00327{font-size:81.000000px;}
.fs1_c00327{font-size:87.000000px;}
.y0_c00327{bottom:0.000000px;}
.y25_c00327{bottom:3.105000px;}
.y24_c00327{bottom:7.228363px;}
.y23_c00327{bottom:50.400000px;}
.y22_c00327{bottom:73.200000px;}
.y21_c00327{bottom:98.850000px;}
.y20_c00327{bottom:124.500000px;}
.y1f_c00327{bottom:147.900000px;}
.y1e_c00327{bottom:172.200000px;}
.y1d_c00327{bottom:196.500000px;}
.y1c_c00327{bottom:221.100000px;}
.y1b_c00327{bottom:245.400000px;}
.y1a_c00327{bottom:269.700000px;}
.y19_c00327{bottom:294.300000px;}
.y18_c00327{bottom:318.600000px;}
.y17_c00327{bottom:343.350000px;}
.y16_c00327{bottom:367.950000px;}
.y15_c00327{bottom:392.850000px;}
.y14_c00327{bottom:416.850000px;}
.y13_c00327{bottom:440.550000px;}
.y12_c00327{bottom:464.100000px;}
.y11_c00327{bottom:488.700000px;}
.y10_c00327{bottom:513.300000px;}
.yf_c00327{bottom:537.000000px;}
.ye_c00327{bottom:561.150000px;}
.yd_c00327{bottom:584.850000px;}
.yc_c00327{bottom:609.750000px;}
.yb_c00327{bottom:633.150000px;}
.ya_c00327{bottom:659.400000px;}
.y9_c00327{bottom:683.550000px;}
.y8_c00327{bottom:707.400000px;}
.y7_c00327{bottom:731.400000px;}
.y6_c00327{bottom:756.300000px;}
.y5_c00327{bottom:780.600000px;}
.y4_c00327{bottom:805.050000px;}
.y3_c00327{bottom:829.500000px;}
.y2_c00327{bottom:853.200000px;}
.y1_c00327{bottom:877.200000px;}
.h6_c00327{height:13.200074px;}
.h7_c00327{height:43.804688px;}
.h3_c00327{height:79.497070px;}
.h5_c00327{height:84.269531px;}
.h4_c00327{height:91.160156px;}
.h2_c00327{height:91.176000px;}
.h1_c00327{height:969.000000px;}
.h0_c00327{height:969.300000px;}
.w2_c00327{width:104.875500px;}
.w1_c00327{width:649.500000px;}
.w0_c00327{width:649.650000px;}
.x0_c00327{left:0.000000px;}
.x9_c00327{left:14.100000px;}
.x5_c00327{left:15.750000px;}
.xb_c00327{left:16.800000px;}
.x6_c00327{left:18.150000px;}
.x7_c00327{left:19.800000px;}
.x8_c00327{left:82.950000px;}
.xa_c00327{left:102.300000px;}
.x2_c00327{left:103.650000px;}
.x1_c00327{left:104.700000px;}
.x3_c00327{left:106.200000px;}
.x4_c00327{left:109.050000px;}
.xd_c00327{left:276.639267px;}
.xc_c00327{left:561.300000px;}
@media print{
.v0_c00327{vertical-align:0.000000pt;}
.ls1_c00327{letter-spacing:-5.333333pt;}
.ls2_c00327{letter-spacing:-2.666667pt;}
.ls0_c00327{letter-spacing:0.000000pt;}
.ls3_c00327{letter-spacing:5.333333pt;}
.ws0_c00327{word-spacing:-54.832000pt;}
.ws2_c00327{word-spacing:-23.333333pt;}
.ws1_c00327{word-spacing:-15.424000pt;}
.ws3_c00327{word-spacing:0.000000pt;}
._25_c00327{margin-left:-25.509333pt;}
._19_c00327{margin-left:-23.576000pt;}
._1b_c00327{margin-left:-21.808000pt;}
._17_c00327{margin-left:-18.144000pt;}
._1d_c00327{margin-left:-17.152000pt;}
._15_c00327{margin-left:-15.157333pt;}
._e_c00327{margin-left:-12.408000pt;}
._b_c00327{margin-left:-11.288000pt;}
._10_c00327{margin-left:-9.568000pt;}
._16_c00327{margin-left:-8.248000pt;}
._f_c00327{margin-left:-6.768000pt;}
._d_c00327{margin-left:-5.656000pt;}
._9_c00327{margin-left:-4.392000pt;}
._c_c00327{margin-left:-3.184000pt;}
._8_c00327{margin-left:-2.232000pt;}
._11_c00327{margin-left:-1.080000pt;}
._7_c00327{width:0.936000pt;}
._5_c00327{width:2.232000pt;}
._0_c00327{width:3.168000pt;}
._1_c00327{width:4.608000pt;}
._3_c00327{width:6.120000pt;}
._4_c00327{width:7.128000pt;}
._13_c00327{width:8.280000pt;}
._2_c00327{width:9.720000pt;}
._6_c00327{width:11.376000pt;}
._22_c00327{width:12.328000pt;}
._14_c00327{width:13.272000pt;}
._20_c00327{width:14.544000pt;}
._12_c00327{width:15.552000pt;}
._21_c00327{width:16.938667pt;}
._a_c00327{width:19.232000pt;}
._23_c00327{width:22.792000pt;}
._1f_c00327{width:27.269333pt;}
._1c_c00327{width:45.672000pt;}
._1a_c00327{width:55.898667pt;}
._1e_c00327{width:56.952000pt;}
._18_c00327{width:91.008000pt;}
._24_c00327{width:113.456000pt;}
.fs4_c00327{font-size:42.666667pt;}
.fs3_c00327{font-size:53.333333pt;}
.fs2_c00327{font-size:64.000000pt;}
.fs0_c00327{font-size:72.000000pt;}
.fs1_c00327{font-size:77.333333pt;}
.y0_c00327{bottom:0.000000pt;}
.y25_c00327{bottom:2.760000pt;}
.y24_c00327{bottom:6.425212pt;}
.y23_c00327{bottom:44.800000pt;}
.y22_c00327{bottom:65.066667pt;}
.y21_c00327{bottom:87.866667pt;}
.y20_c00327{bottom:110.666667pt;}
.y1f_c00327{bottom:131.466667pt;}
.y1e_c00327{bottom:153.066667pt;}
.y1d_c00327{bottom:174.666667pt;}
.y1c_c00327{bottom:196.533333pt;}
.y1b_c00327{bottom:218.133333pt;}
.y1a_c00327{bottom:239.733333pt;}
.y19_c00327{bottom:261.600000pt;}
.y18_c00327{bottom:283.200000pt;}
.y17_c00327{bottom:305.200000pt;}
.y16_c00327{bottom:327.066667pt;}
.y15_c00327{bottom:349.200000pt;}
.y14_c00327{bottom:370.533333pt;}
.y13_c00327{bottom:391.600000pt;}
.y12_c00327{bottom:412.533333pt;}
.y11_c00327{bottom:434.400000pt;}
.y10_c00327{bottom:456.266667pt;}
.yf_c00327{bottom:477.333333pt;}
.ye_c00327{bottom:498.800000pt;}
.yd_c00327{bottom:519.866667pt;}
.yc_c00327{bottom:542.000000pt;}
.yb_c00327{bottom:562.800000pt;}
.ya_c00327{bottom:586.133333pt;}
.y9_c00327{bottom:607.600000pt;}
.y8_c00327{bottom:628.800000pt;}
.y7_c00327{bottom:650.133333pt;}
.y6_c00327{bottom:672.266667pt;}
.y5_c00327{bottom:693.866667pt;}
.y4_c00327{bottom:715.600000pt;}
.y3_c00327{bottom:737.333333pt;}
.y2_c00327{bottom:758.400000pt;}
.y1_c00327{bottom:779.733333pt;}
.h6_c00327{height:11.733399pt;}
.h7_c00327{height:38.937500pt;}
.h3_c00327{height:70.664062pt;}
.h5_c00327{height:74.906250pt;}
.h4_c00327{height:81.031250pt;}
.h2_c00327{height:81.045333pt;}
.h1_c00327{height:861.333333pt;}
.h0_c00327{height:861.600000pt;}
.w2_c00327{width:93.222667pt;}
.w1_c00327{width:577.333333pt;}
.w0_c00327{width:577.466667pt;}
.x0_c00327{left:0.000000pt;}
.x9_c00327{left:12.533333pt;}
.x5_c00327{left:14.000000pt;}
.xb_c00327{left:14.933333pt;}
.x6_c00327{left:16.133333pt;}
.x7_c00327{left:17.600000pt;}
.x8_c00327{left:73.733333pt;}
.xa_c00327{left:90.933333pt;}
.x2_c00327{left:92.133333pt;}
.x1_c00327{left:93.066667pt;}
.x3_c00327{left:94.400000pt;}
.x4_c00327{left:96.933333pt;}
.xd_c00327{left:245.901571pt;}
.xc_c00327{left:498.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_dd394195a704369390962c6e.woff2')format("woff");}.ff1_c00328{font-family:ff1_c00328;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00328;src:url('chunks/assets/font_09b78beb957a6574bbdb8625.woff2')format("woff");}.ff2_c00328{font-family:ff2_c00328;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00328;src:url('chunks/assets/font_d6ba02a64da07c77e7ddb618.woff2')format("woff");}.ff3_c00328{font-family:ff3_c00328;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00328;src:url('chunks/assets/font_69ae830e870c9d037d88ab85.woff2')format("woff");}.ff4_c00328{font-family:ff4_c00328;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00328;src:url('chunks/assets/font_ff036228a12bcf051a7d4152.woff2')format("woff");}.ff5_c00328{font-family:ff5_c00328;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00328;src:url('chunks/assets/font_830a3f908cce5fafc284a31c.woff2')format("woff");}.ff6_c00328{font-family:ff6_c00328;line-height:1.437000;font-style:normal;font-weight: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_c00328;src:url('chunks/assets/font_f4a5de8fda77d0accb1a3b6f.woff2')format("woff");}.ff7_c00328{font-family:ff7_c00328;line-height:1.437000;font-style:normal;font-weight: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_c00328;src:url('chunks/assets/font_b893d30590a514f65509ecbd.woff2')format("woff");}.ff8_c00328{font-family:ff8_c00328;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00328;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff9_c00328{font-family:ff9_c00328;line-height:1.219238;font-style: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;}
.ls0_c00328{letter-spacing:0.000000px;}
.ls1_c00328{letter-spacing:6.000000px;}
.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;}
}
.ws1_c00328{word-spacing:-32.766000px;}
.ws2_c00328{word-spacing:-17.250000px;}
.ws0_c00328{word-spacing:-16.926000px;}
.ws3_c00328{word-spacing:0.000000px;}
._23_c00328{margin-left:-47.529000px;}
._25_c00328{margin-left:-37.296000px;}
._26_c00328{margin-left:-34.992000px;}
._8_c00328{margin-left:-33.261000px;}
._b_c00328{margin-left:-20.010000px;}
._12_c00328{margin-left:-18.873000px;}
._1e_c00328{margin-left:-17.760000px;}
._17_c00328{margin-left:-16.377000px;}
._14_c00328{margin-left:-13.575000px;}
._a_c00328{margin-left:-12.105000px;}
._1d_c00328{margin-left:-7.887000px;}
._9_c00328{margin-left:-6.687000px;}
._1f_c00328{margin-left:-4.755000px;}
._d_c00328{margin-left:-3.381000px;}
._10_c00328{margin-left:-2.118000px;}
._c_c00328{margin-left:-1.104000px;}
._6_c00328{width:1.092000px;}
._3_c00328{width:2.340000px;}
._7_c00328{width:3.666000px;}
._2_c00328{width:4.680000px;}
._1_c00328{width:6.084000px;}
._0_c00328{width:8.034000px;}
._5_c00328{width:9.126000px;}
._4_c00328{width:10.920000px;}
._13_c00328{width:12.558000px;}
._19_c00328{width:13.578000px;}
._e_c00328{width:15.057000px;}
._18_c00328{width:17.253000px;}
._15_c00328{width:19.119000px;}
._1a_c00328{width:20.577000px;}
._1b_c00328{width:22.293000px;}
._1c_c00328{width:23.493000px;}
._f_c00328{width:25.116000px;}
._22_c00328{width:46.899000px;}
._11_c00328{width:56.058000px;}
._21_c00328{width:79.509000px;}
._16_c00328{width:136.674000px;}
._20_c00328{width:140.133000px;}
._24_c00328{width:271.872000px;}
.fc2_c00328{color:transparent;}
.fc1_c00328{color:rgb(128,128,128);}
.fc0_c00328{color:rgb(0,0,0);}
.fs5_c00328{font-size:30.000000px;}
.fs7_c00328{font-size:48.000000px;}
.fs3_c00328{font-size:69.000000px;}
.fs0_c00328{font-size:78.000000px;}
.fs4_c00328{font-size:81.000000px;}
.fs2_c00328{font-size:87.000000px;}
.fs1_c00328{font-size:129.000000px;}
.fs6_c00328{font-size:144.000000px;}
.y0_c00328{bottom:0.000000px;}
.y25_c00328{bottom:3.105000px;}
.y24_c00328{bottom:7.228371px;}
.y23_c00328{bottom:63.465000px;}
.y22_c00328{bottom:87.765000px;}
.y21_c00328{bottom:112.815000px;}
.y20_c00328{bottom:136.815000px;}
.y1f_c00328{bottom:162.015000px;}
.y1e_c00328{bottom:185.415000px;}
.y1d_c00328{bottom:210.015000px;}
.y1c_c00328{bottom:235.365000px;}
.y1b_c00328{bottom:259.215000px;}
.y1a_c00328{bottom:283.215000px;}
.y19_c00328{bottom:307.815000px;}
.y18_c00328{bottom:332.565000px;}
.y17_c00328{bottom:356.865000px;}
.y16_c00328{bottom:381.465000px;}
.y15_c00328{bottom:405.465000px;}
.y14_c00328{bottom:430.665000px;}
.y13_c00328{bottom:454.065000px;}
.y12_c00328{bottom:478.665000px;}
.y11_c00328{bottom:502.665000px;}
.y10_c00328{bottom:527.565000px;}
.yf_c00328{bottom:551.265000px;}
.ye_c00328{bottom:575.865000px;}
.yd_c00328{bottom:598.515000px;}
.yc_c00328{bottom:624.765000px;}
.yb_c00328{bottom:646.965000px;}
.ya_c00328{bottom:673.365000px;}
.y9_c00328{bottom:696.615000px;}
.y8_c00328{bottom:720.315000px;}
.y7_c00328{bottom:744.315000px;}
.y6_c00328{bottom:768.165000px;}
.y5_c00328{bottom:792.465000px;}
.y4_c00328{bottom:817.515000px;}
.y3_c00328{bottom:841.365000px;}
.y2_c00328{bottom:867.015000px;}
.y1_c00328{bottom:890.115000px;}
.h8_c00328{height:13.200074px;}
.h9_c00328{height:43.804688px;}
.h6_c00328{height:72.312000px;}
.h5_c00328{height:79.497070px;}
.h2_c00328{height:83.226000px;}
.h4_c00328{height:110.151855px;}
.h3_c00328{height:163.328613px;}
.h7_c00328{height:182.320312px;}
.h0_c00328{height:989.025000px;}
.h1_c00328{height:989.250000px;}
.w1_c00328{width:104.875500px;}
.w0_c00328{width:672.000000px;}
.x0_c00328{left:0.000000px;}
.x1_c00328{left:40.200000px;}
.x3_c00328{left:41.550000px;}
.x2_c00328{left:42.750000px;}
.x7_c00328{left:43.950000px;}
.x6_c00328{left:63.900000px;}
.x4_c00328{left:67.200000px;}
.x5_c00328{left:92.250000px;}
.x9_c00328{left:287.814240px;}
.x8_c00328{left:393.600000px;}
@media print{
.v0_c00328{vertical-align:0.000000pt;}
.ls0_c00328{letter-spacing:0.000000pt;}
.ls1_c00328{letter-spacing:5.333333pt;}
.ws1_c00328{word-spacing:-29.125333pt;}
.ws2_c00328{word-spacing:-15.333333pt;}
.ws0_c00328{word-spacing:-15.045333pt;}
.ws3_c00328{word-spacing:0.000000pt;}
._23_c00328{margin-left:-42.248000pt;}
._25_c00328{margin-left:-33.152000pt;}
._26_c00328{margin-left:-31.104000pt;}
._8_c00328{margin-left:-29.565333pt;}
._b_c00328{margin-left:-17.786667pt;}
._12_c00328{margin-left:-16.776000pt;}
._1e_c00328{margin-left:-15.786667pt;}
._17_c00328{margin-left:-14.557333pt;}
._14_c00328{margin-left:-12.066667pt;}
._a_c00328{margin-left:-10.760000pt;}
._1d_c00328{margin-left:-7.010667pt;}
._9_c00328{margin-left:-5.944000pt;}
._1f_c00328{margin-left:-4.226667pt;}
._d_c00328{margin-left:-3.005333pt;}
._10_c00328{margin-left:-1.882667pt;}
._c_c00328{margin-left:-0.981333pt;}
._6_c00328{width:0.970667pt;}
._3_c00328{width:2.080000pt;}
._7_c00328{width:3.258667pt;}
._2_c00328{width:4.160000pt;}
._1_c00328{width:5.408000pt;}
._0_c00328{width:7.141333pt;}
._5_c00328{width:8.112000pt;}
._4_c00328{width:9.706667pt;}
._13_c00328{width:11.162667pt;}
._19_c00328{width:12.069333pt;}
._e_c00328{width:13.384000pt;}
._18_c00328{width:15.336000pt;}
._15_c00328{width:16.994667pt;}
._1a_c00328{width:18.290667pt;}
._1b_c00328{width:19.816000pt;}
._1c_c00328{width:20.882667pt;}
._f_c00328{width:22.325333pt;}
._22_c00328{width:41.688000pt;}
._11_c00328{width:49.829333pt;}
._21_c00328{width:70.674667pt;}
._16_c00328{width:121.488000pt;}
._20_c00328{width:124.562667pt;}
._24_c00328{width:241.664000pt;}
.fs5_c00328{font-size:26.666667pt;}
.fs7_c00328{font-size:42.666667pt;}
.fs3_c00328{font-size:61.333333pt;}
.fs0_c00328{font-size:69.333333pt;}
.fs4_c00328{font-size:72.000000pt;}
.fs2_c00328{font-size:77.333333pt;}
.fs1_c00328{font-size:114.666667pt;}
.fs6_c00328{font-size:128.000000pt;}
.y0_c00328{bottom:0.000000pt;}
.y25_c00328{bottom:2.760000pt;}
.y24_c00328{bottom:6.425219pt;}
.y23_c00328{bottom:56.413333pt;}
.y22_c00328{bottom:78.013333pt;}
.y21_c00328{bottom:100.280000pt;}
.y20_c00328{bottom:121.613333pt;}
.y1f_c00328{bottom:144.013333pt;}
.y1e_c00328{bottom:164.813333pt;}
.y1d_c00328{bottom:186.680000pt;}
.y1c_c00328{bottom:209.213333pt;}
.y1b_c00328{bottom:230.413333pt;}
.y1a_c00328{bottom:251.746667pt;}
.y19_c00328{bottom:273.613333pt;}
.y18_c00328{bottom:295.613333pt;}
.y17_c00328{bottom:317.213333pt;}
.y16_c00328{bottom:339.080000pt;}
.y15_c00328{bottom:360.413333pt;}
.y14_c00328{bottom:382.813333pt;}
.y13_c00328{bottom:403.613333pt;}
.y12_c00328{bottom:425.480000pt;}
.y11_c00328{bottom:446.813333pt;}
.y10_c00328{bottom:468.946667pt;}
.yf_c00328{bottom:490.013333pt;}
.ye_c00328{bottom:511.880000pt;}
.yd_c00328{bottom:532.013333pt;}
.yc_c00328{bottom:555.346667pt;}
.yb_c00328{bottom:575.080000pt;}
.ya_c00328{bottom:598.546667pt;}
.y9_c00328{bottom:619.213333pt;}
.y8_c00328{bottom:640.280000pt;}
.y7_c00328{bottom:661.613333pt;}
.y6_c00328{bottom:682.813333pt;}
.y5_c00328{bottom:704.413333pt;}
.y4_c00328{bottom:726.680000pt;}
.y3_c00328{bottom:747.880000pt;}
.y2_c00328{bottom:770.680000pt;}
.y1_c00328{bottom:791.213333pt;}
.h8_c00328{height:11.733399pt;}
.h9_c00328{height:38.937500pt;}
.h6_c00328{height:64.277333pt;}
.h5_c00328{height:70.664062pt;}
.h2_c00328{height:73.978667pt;}
.h4_c00328{height:97.912760pt;}
.h3_c00328{height:145.180990pt;}
.h7_c00328{height:162.062500pt;}
.h0_c00328{height:879.133333pt;}
.h1_c00328{height:879.333333pt;}
.w1_c00328{width:93.222667pt;}
.w0_c00328{width:597.333333pt;}
.x0_c00328{left:0.000000pt;}
.x1_c00328{left:35.733333pt;}
.x3_c00328{left:36.933333pt;}
.x2_c00328{left:38.000000pt;}
.x7_c00328{left:39.066667pt;}
.x6_c00328{left:56.800000pt;}
.x4_c00328{left:59.733333pt;}
.x5_c00328{left:82.000000pt;}
.x9_c00328{left:255.834880pt;}
.x8_c00328{left:349.866667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_171e50279c5772cbdac6e9bb.woff2')format("woff");}.ff1_c00329{font-family:ff1_c00329;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00329;src:url('chunks/assets/font_cc6ca517616fef78af19a25c.woff2')format("woff");}.ff2_c00329{font-family:ff2_c00329;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00329;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff3_c00329{font-family:ff3_c00329;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00329;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff4_c00329{font-family:ff4_c00329;line-height:1.219238;font-style: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;}
.ls0_c00329{letter-spacing:0.000000px;}
.ls1_c00329{letter-spacing:3.000000px;}
.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:-17.352000px;}
.ws1_c00329{word-spacing:-15.750000px;}
.ws2_c00329{word-spacing:0.000000px;}
._1a_c00329{margin-left:-24.300000px;}
._1d_c00329{margin-left:-17.253000px;}
._17_c00329{margin-left:-14.496000px;}
._14_c00329{margin-left:-12.717000px;}
._f_c00329{margin-left:-10.611000px;}
._1c_c00329{margin-left:-9.315000px;}
._7_c00329{margin-left:-7.938000px;}
._16_c00329{margin-left:-5.994000px;}
._10_c00329{margin-left:-4.941000px;}
._6_c00329{margin-left:-3.564000px;}
._3_c00329{margin-left:-2.430000px;}
._e_c00329{margin-left:-1.134000px;}
._4_c00329{width:1.539000px;}
._5_c00329{width:2.997000px;}
._1_c00329{width:4.293000px;}
._2_c00329{width:5.346000px;}
._0_c00329{width:6.561000px;}
._11_c00329{width:7.938000px;}
._8_c00329{width:9.234000px;}
._b_c00329{width:10.368000px;}
._13_c00329{width:11.502000px;}
._d_c00329{width:13.041000px;}
._c_c00329{width:14.256000px;}
._1b_c00329{width:15.633000px;}
._a_c00329{width:17.091000px;}
._1f_c00329{width:22.032000px;}
._12_c00329{width:23.733000px;}
._15_c00329{width:39.123000px;}
._9_c00329{width:48.033000px;}
._18_c00329{width:52.974000px;}
._19_c00329{width:135.918000px;}
._1e_c00329{width:140.001000px;}
.fc2_c00329{color:transparent;}
.fc1_c00329{color:rgb(128,128,128);}
.fc0_c00329{color:rgb(0,0,0);}
.fs3_c00329{font-size:48.000000px;}
.fs2_c00329{font-size:51.000000px;}
.fs1_c00329{font-size:72.000000px;}
.fs0_c00329{font-size:81.000000px;}
.y0_c00329{bottom:0.000000px;}
.y25_c00329{bottom:3.105000px;}
.y24_c00329{bottom:7.228369px;}
.y23_c00329{bottom:55.920000px;}
.y22_c00329{bottom:79.920000px;}
.y21_c00329{bottom:105.870000px;}
.y20_c00329{bottom:130.170000px;}
.y1f_c00329{bottom:154.920000px;}
.y1e_c00329{bottom:179.220000px;}
.y1d_c00329{bottom:204.420000px;}
.y1c_c00329{bottom:227.370000px;}
.y1b_c00329{bottom:252.420000px;}
.y1a_c00329{bottom:277.020000px;}
.y19_c00329{bottom:301.770000px;}
.y18_c00329{bottom:325.920000px;}
.y17_c00329{bottom:350.220000px;}
.y16_c00329{bottom:374.520000px;}
.y15_c00329{bottom:398.820000px;}
.y14_c00329{bottom:423.120000px;}
.y13_c00329{bottom:447.420000px;}
.y12_c00329{bottom:471.720000px;}
.y11_c00329{bottom:496.020000px;}
.y10_c00329{bottom:520.320000px;}
.yf_c00329{bottom:544.320000px;}
.ye_c00329{bottom:567.720000px;}
.yd_c00329{bottom:592.320000px;}
.yc_c00329{bottom:615.870000px;}
.yb_c00329{bottom:640.920000px;}
.ya_c00329{bottom:664.920000px;}
.y9_c00329{bottom:689.070000px;}
.y8_c00329{bottom:713.520000px;}
.y7_c00329{bottom:738.120000px;}
.y6_c00329{bottom:761.370000px;}
.y5_c00329{bottom:786.420000px;}
.y4_c00329{bottom:810.570000px;}
.y3_c00329{bottom:835.320000px;}
.y2_c00329{bottom:859.620000px;}
.y1_c00329{bottom:883.920000px;}
.h5_c00329{height:13.200073px;}
.h6_c00329{height:43.804688px;}
.h4_c00329{height:50.053711px;}
.h1_c00329{height:79.497070px;}
.h2_c00329{height:84.269531px;}
.h3_c00329{height:91.160156px;}
.h0_c00329{height:989.250000px;}
.w2_c00329{width:104.875500px;}
.w1_c00329{width:663.000000px;}
.w0_c00329{width:663.150000px;}
.x0_c00329{left:0.000000px;}
.xb_c00329{left:32.400000px;}
.x7_c00329{left:40.200000px;}
.x6_c00329{left:42.300000px;}
.xa_c00329{left:72.450000px;}
.x5_c00329{left:106.950000px;}
.x9_c00329{left:120.450000px;}
.x1_c00329{left:121.800000px;}
.x3_c00329{left:122.850000px;}
.x8_c00329{left:124.200000px;}
.x2_c00329{left:125.250000px;}
.x4_c00329{left:126.900000px;}
.xc_c00329{left:128.550000px;}
.xe_c00329{left:283.389267px;}
.xd_c00329{left:596.700000px;}
@media print{
.v0_c00329{vertical-align:0.000000pt;}
.ls0_c00329{letter-spacing:0.000000pt;}
.ls1_c00329{letter-spacing:2.666667pt;}
.ws0_c00329{word-spacing:-15.424000pt;}
.ws1_c00329{word-spacing:-14.000000pt;}
.ws2_c00329{word-spacing:0.000000pt;}
._1a_c00329{margin-left:-21.600000pt;}
._1d_c00329{margin-left:-15.336000pt;}
._17_c00329{margin-left:-12.885333pt;}
._14_c00329{margin-left:-11.304000pt;}
._f_c00329{margin-left:-9.432000pt;}
._1c_c00329{margin-left:-8.280000pt;}
._7_c00329{margin-left:-7.056000pt;}
._16_c00329{margin-left:-5.328000pt;}
._10_c00329{margin-left:-4.392000pt;}
._6_c00329{margin-left:-3.168000pt;}
._3_c00329{margin-left:-2.160000pt;}
._e_c00329{margin-left:-1.008000pt;}
._4_c00329{width:1.368000pt;}
._5_c00329{width:2.664000pt;}
._1_c00329{width:3.816000pt;}
._2_c00329{width:4.752000pt;}
._0_c00329{width:5.832000pt;}
._11_c00329{width:7.056000pt;}
._8_c00329{width:8.208000pt;}
._b_c00329{width:9.216000pt;}
._13_c00329{width:10.224000pt;}
._d_c00329{width:11.592000pt;}
._c_c00329{width:12.672000pt;}
._1b_c00329{width:13.896000pt;}
._a_c00329{width:15.192000pt;}
._1f_c00329{width:19.584000pt;}
._12_c00329{width:21.096000pt;}
._15_c00329{width:34.776000pt;}
._9_c00329{width:42.696000pt;}
._18_c00329{width:47.088000pt;}
._19_c00329{width:120.816000pt;}
._1e_c00329{width:124.445333pt;}
.fs3_c00329{font-size:42.666667pt;}
.fs2_c00329{font-size:45.333333pt;}
.fs1_c00329{font-size:64.000000pt;}
.fs0_c00329{font-size:72.000000pt;}
.y0_c00329{bottom:0.000000pt;}
.y25_c00329{bottom:2.760000pt;}
.y24_c00329{bottom:6.425217pt;}
.y23_c00329{bottom:49.706667pt;}
.y22_c00329{bottom:71.040000pt;}
.y21_c00329{bottom:94.106667pt;}
.y20_c00329{bottom:115.706667pt;}
.y1f_c00329{bottom:137.706667pt;}
.y1e_c00329{bottom:159.306667pt;}
.y1d_c00329{bottom:181.706667pt;}
.y1c_c00329{bottom:202.106667pt;}
.y1b_c00329{bottom:224.373333pt;}
.y1a_c00329{bottom:246.240000pt;}
.y19_c00329{bottom:268.240000pt;}
.y18_c00329{bottom:289.706667pt;}
.y17_c00329{bottom:311.306667pt;}
.y16_c00329{bottom:332.906667pt;}
.y15_c00329{bottom:354.506667pt;}
.y14_c00329{bottom:376.106667pt;}
.y13_c00329{bottom:397.706667pt;}
.y12_c00329{bottom:419.306667pt;}
.y11_c00329{bottom:440.906667pt;}
.y10_c00329{bottom:462.506667pt;}
.yf_c00329{bottom:483.840000pt;}
.ye_c00329{bottom:504.640000pt;}
.yd_c00329{bottom:526.506667pt;}
.yc_c00329{bottom:547.440000pt;}
.yb_c00329{bottom:569.706667pt;}
.ya_c00329{bottom:591.040000pt;}
.y9_c00329{bottom:612.506667pt;}
.y8_c00329{bottom:634.240000pt;}
.y7_c00329{bottom:656.106667pt;}
.y6_c00329{bottom:676.773333pt;}
.y5_c00329{bottom:699.040000pt;}
.y4_c00329{bottom:720.506667pt;}
.y3_c00329{bottom:742.506667pt;}
.y2_c00329{bottom:764.106667pt;}
.y1_c00329{bottom:785.706667pt;}
.h5_c00329{height:11.733399pt;}
.h6_c00329{height:38.937500pt;}
.h4_c00329{height:44.492188pt;}
.h1_c00329{height:70.664062pt;}
.h2_c00329{height:74.906250pt;}
.h3_c00329{height:81.031250pt;}
.h0_c00329{height:879.333333pt;}
.w2_c00329{width:93.222667pt;}
.w1_c00329{width:589.333333pt;}
.w0_c00329{width:589.466667pt;}
.x0_c00329{left:0.000000pt;}
.xb_c00329{left:28.800000pt;}
.x7_c00329{left:35.733333pt;}
.x6_c00329{left:37.600000pt;}
.xa_c00329{left:64.400000pt;}
.x5_c00329{left:95.066667pt;}
.x9_c00329{left:107.066667pt;}
.x1_c00329{left:108.266667pt;}
.x3_c00329{left:109.200000pt;}
.x8_c00329{left:110.400000pt;}
.x2_c00329{left:111.333333pt;}
.x4_c00329{left:112.800000pt;}
.xc_c00329{left:114.266667pt;}
.xe_c00329{left:251.901571pt;}
.xd_c00329{left:530.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_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_8913a9c807dec433d39cb617.woff2')format("woff");}.ff1_c00330{font-family:ff1_c00330;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00330;src:url('chunks/assets/font_22f59a8bea28574c9e92a59f.woff2')format("woff");}.ff2_c00330{font-family:ff2_c00330;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00330;src:url('chunks/assets/font_1dca625f71858877d4a20807.woff2')format("woff");}.ff3_c00330{font-family:ff3_c00330;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00330;src:url('chunks/assets/font_e73afac8ddf547fac83c3070.woff2')format("woff");}.ff4_c00330{font-family:ff4_c00330;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00330;src:url('chunks/assets/font_6c2c2aeba8edb952bc608a40.woff2')format("woff");}.ff5_c00330{font-family:ff5_c00330;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00330;src:url('chunks/assets/font_e4e3fd906f0488934ebe578e.woff2')format("woff");}.ff6_c00330{font-family:ff6_c00330;line-height:1.437000;font-style:normal;font-weight: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_c00330;src:url('chunks/assets/font_3487e8b8a26f945287f5156e.woff2')format("woff");}.ff7_c00330{font-family:ff7_c00330;line-height:1.311035;font-style:normal;font-weight: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_c00330;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff8_c00330{font-family:ff8_c00330;line-height:1.219238;font-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_c00330{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,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;}
.ls3_c00330{letter-spacing:-6.000000px;}
.ls2_c00330{letter-spacing:0.000000px;}
.ls0_c00330{letter-spacing:2.802000px;}
.ls1_c00330{letter-spacing:3.900000px;}
.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;}
}
.ws4_c00330{word-spacing:-66.720000px;}
.ws2_c00330{word-spacing:-61.686000px;}
.ws5_c00330{word-spacing:-60.048000px;}
.ws3_c00330{word-spacing:-18.798000px;}
.ws1_c00330{word-spacing:-17.352000px;}
.ws0_c00330{word-spacing:-13.737000px;}
.ws6_c00330{word-spacing:0.000000px;}
._26_c00330{margin-left:-28.257000px;}
._16_c00330{margin-left:-18.207000px;}
._22_c00330{margin-left:-15.957000px;}
._17_c00330{margin-left:-14.589000px;}
._1d_c00330{margin-left:-13.512000px;}
._21_c00330{margin-left:-12.306000px;}
._18_c00330{margin-left:-11.136000px;}
._13_c00330{margin-left:-9.576000px;}
._23_c00330{margin-left:-8.556000px;}
._6_c00330{margin-left:-7.371000px;}
._14_c00330{margin-left:-5.460000px;}
._8_c00330{margin-left:-4.455000px;}
._19_c00330{margin-left:-3.324000px;}
._b_c00330{margin-left:-2.106000px;}
._1c_c00330{margin-left:-1.053000px;}
._c_c00330{width:1.377000px;}
._a_c00330{width:2.430000px;}
._7_c00330{width:3.645000px;}
._5_c00330{width:4.941000px;}
._0_c00330{width:5.994000px;}
._3_c00330{width:7.209000px;}
._4_c00330{width:8.424000px;}
._1_c00330{width:9.639000px;}
._2_c00330{width:10.773000px;}
._9_c00330{width:11.826000px;}
._10_c00330{width:12.879000px;}
._20_c00330{width:14.223000px;}
._f_c00330{width:15.228000px;}
._e_c00330{width:16.281000px;}
._d_c00330{width:18.711000px;}
._1e_c00330{width:22.194000px;}
._24_c00330{width:24.207000px;}
._15_c00330{width:25.743000px;}
._11_c00330{width:29.469000px;}
._1a_c00330{width:31.998000px;}
._1b_c00330{width:36.789000px;}
._12_c00330{width:46.170000px;}
._1f_c00330{width:54.033000px;}
._25_c00330{width:109.179000px;}
.fc2_c00330{color:transparent;}
.fc1_c00330{color:rgb(128,128,128);}
.fc0_c00330{color:rgb(0,0,0);}
.fs8_c00330{font-size:48.000000px;}
.fs1_c00330{font-size:57.000000px;}
.fs2_c00330{font-size:72.000000px;}
.fs5_c00330{font-size:75.000000px;}
.fs3_c00330{font-size:78.000000px;}
.fs0_c00330{font-size:81.000000px;}
.fs4_c00330{font-size:87.000000px;}
.fs7_c00330{font-size:108.000000px;}
.fs6_c00330{font-size:120.000000px;}
.y0_c00330{bottom:0.000000px;}
.y25_c00330{bottom:3.105000px;}
.y24_c00330{bottom:7.228355px;}
.y23_c00330{bottom:56.985000px;}
.y22_c00330{bottom:79.635000px;}
.y21_c00330{bottom:105.285000px;}
.y20_c00330{bottom:129.885000px;}
.y1f_c00330{bottom:154.485000px;}
.y1e_c00330{bottom:179.235000px;}
.y1d_c00330{bottom:203.085000px;}
.y1c_c00330{bottom:227.085000px;}
.y1b_c00330{bottom:252.435000px;}
.y1a_c00330{bottom:277.035000px;}
.y19_c00330{bottom:300.735000px;}
.y18_c00330{bottom:325.335000px;}
.y17_c00330{bottom:350.235000px;}
.y16_c00330{bottom:374.835000px;}
.y15_c00330{bottom:399.585000px;}
.y14_c00330{bottom:422.835000px;}
.y13_c00330{bottom:447.435000px;}
.y12_c00330{bottom:471.735000px;}
.y11_c00330{bottom:496.485000px;}
.y10_c00330{bottom:520.635000px;}
.yf_c00330{bottom:544.635000px;}
.ye_c00330{bottom:568.935000px;}
.yd_c00330{bottom:592.335000px;}
.yc_c00330{bottom:616.485000px;}
.yb_c00330{bottom:640.485000px;}
.ya_c00330{bottom:664.785000px;}
.y9_c00330{bottom:689.385000px;}
.y8_c00330{bottom:716.385000px;}
.y7_c00330{bottom:737.685000px;}
.y6_c00330{bottom:762.285000px;}
.y5_c00330{bottom:786.735000px;}
.y4_c00330{bottom:810.885000px;}
.y3_c00330{bottom:835.185000px;}
.y2_c00330{bottom:860.235000px;}
.y1_c00330{bottom:883.785000px;}
.hb_c00330{height:13.200074px;}
.hc_c00330{height:43.804688px;}
.h3_c00330{height:72.168457px;}
.h7_c00330{height:73.608398px;}
.h2_c00330{height:79.497070px;}
.h4_c00330{height:84.269531px;}
.h8_c00330{height:91.176000px;}
.h5_c00330{height:98.756836px;}
.ha_c00330{height:108.843750px;}
.h6_c00330{height:110.151855px;}
.h9_c00330{height:120.937500px;}
.h0_c00330{height:977.925000px;}
.h1_c00330{height:978.000000px;}
.w2_c00330{width:104.875500px;}
.w0_c00330{width:664.200000px;}
.w1_c00330{width:664.500000px;}
.x0_c00330{left:0.000000px;}
.x1_c00330{left:52.200000px;}
.x2_c00330{left:54.000000px;}
.x3_c00330{left:55.050000px;}
.x4_c00330{left:56.100000px;}
.x5_c00330{left:57.600000px;}
.x7_c00330{left:283.914230px;}
.x6_c00330{left:483.000000px;}
@media print{
.v0_c00330{vertical-align:0.000000pt;}
.ls3_c00330{letter-spacing:-5.333333pt;}
.ls2_c00330{letter-spacing:0.000000pt;}
.ls0_c00330{letter-spacing:2.490667pt;}
.ls1_c00330{letter-spacing:3.466667pt;}
.ws4_c00330{word-spacing:-59.306667pt;}
.ws2_c00330{word-spacing:-54.832000pt;}
.ws5_c00330{word-spacing:-53.376000pt;}
.ws3_c00330{word-spacing:-16.709333pt;}
.ws1_c00330{word-spacing:-15.424000pt;}
.ws0_c00330{word-spacing:-12.210667pt;}
.ws6_c00330{word-spacing:0.000000pt;}
._26_c00330{margin-left:-25.117333pt;}
._16_c00330{margin-left:-16.184000pt;}
._22_c00330{margin-left:-14.184000pt;}
._17_c00330{margin-left:-12.968000pt;}
._1d_c00330{margin-left:-12.010667pt;}
._21_c00330{margin-left:-10.938667pt;}
._18_c00330{margin-left:-9.898667pt;}
._13_c00330{margin-left:-8.512000pt;}
._23_c00330{margin-left:-7.605333pt;}
._6_c00330{margin-left:-6.552000pt;}
._14_c00330{margin-left:-4.853333pt;}
._8_c00330{margin-left:-3.960000pt;}
._19_c00330{margin-left:-2.954667pt;}
._b_c00330{margin-left:-1.872000pt;}
._1c_c00330{margin-left:-0.936000pt;}
._c_c00330{width:1.224000pt;}
._a_c00330{width:2.160000pt;}
._7_c00330{width:3.240000pt;}
._5_c00330{width:4.392000pt;}
._0_c00330{width:5.328000pt;}
._3_c00330{width:6.408000pt;}
._4_c00330{width:7.488000pt;}
._1_c00330{width:8.568000pt;}
._2_c00330{width:9.576000pt;}
._9_c00330{width:10.512000pt;}
._10_c00330{width:11.448000pt;}
._20_c00330{width:12.642667pt;}
._f_c00330{width:13.536000pt;}
._e_c00330{width:14.472000pt;}
._d_c00330{width:16.632000pt;}
._1e_c00330{width:19.728000pt;}
._24_c00330{width:21.517333pt;}
._15_c00330{width:22.882667pt;}
._11_c00330{width:26.194667pt;}
._1a_c00330{width:28.442667pt;}
._1b_c00330{width:32.701333pt;}
._12_c00330{width:41.040000pt;}
._1f_c00330{width:48.029333pt;}
._25_c00330{width:97.048000pt;}
.fs8_c00330{font-size:42.666667pt;}
.fs1_c00330{font-size:50.666667pt;}
.fs2_c00330{font-size:64.000000pt;}
.fs5_c00330{font-size:66.666667pt;}
.fs3_c00330{font-size:69.333333pt;}
.fs0_c00330{font-size:72.000000pt;}
.fs4_c00330{font-size:77.333333pt;}
.fs7_c00330{font-size:96.000000pt;}
.fs6_c00330{font-size:106.666667pt;}
.y0_c00330{bottom:0.000000pt;}
.y25_c00330{bottom:2.760000pt;}
.y24_c00330{bottom:6.425204pt;}
.y23_c00330{bottom:50.653333pt;}
.y22_c00330{bottom:70.786667pt;}
.y21_c00330{bottom:93.586667pt;}
.y20_c00330{bottom:115.453333pt;}
.y1f_c00330{bottom:137.320000pt;}
.y1e_c00330{bottom:159.320000pt;}
.y1d_c00330{bottom:180.520000pt;}
.y1c_c00330{bottom:201.853333pt;}
.y1b_c00330{bottom:224.386667pt;}
.y1a_c00330{bottom:246.253333pt;}
.y19_c00330{bottom:267.320000pt;}
.y18_c00330{bottom:289.186667pt;}
.y17_c00330{bottom:311.320000pt;}
.y16_c00330{bottom:333.186667pt;}
.y15_c00330{bottom:355.186667pt;}
.y14_c00330{bottom:375.853333pt;}
.y13_c00330{bottom:397.720000pt;}
.y12_c00330{bottom:419.320000pt;}
.y11_c00330{bottom:441.320000pt;}
.y10_c00330{bottom:462.786667pt;}
.yf_c00330{bottom:484.120000pt;}
.ye_c00330{bottom:505.720000pt;}
.yd_c00330{bottom:526.520000pt;}
.yc_c00330{bottom:547.986667pt;}
.yb_c00330{bottom:569.320000pt;}
.ya_c00330{bottom:590.920000pt;}
.y9_c00330{bottom:612.786667pt;}
.y8_c00330{bottom:636.786667pt;}
.y7_c00330{bottom:655.720000pt;}
.y6_c00330{bottom:677.586667pt;}
.y5_c00330{bottom:699.320000pt;}
.y4_c00330{bottom:720.786667pt;}
.y3_c00330{bottom:742.386667pt;}
.y2_c00330{bottom:764.653333pt;}
.y1_c00330{bottom:785.586667pt;}
.hb_c00330{height:11.733399pt;}
.hc_c00330{height:38.937500pt;}
.h3_c00330{height:64.149740pt;}
.h7_c00330{height:65.429688pt;}
.h2_c00330{height:70.664062pt;}
.h4_c00330{height:74.906250pt;}
.h8_c00330{height:81.045333pt;}
.h5_c00330{height:87.783854pt;}
.ha_c00330{height:96.750000pt;}
.h6_c00330{height:97.912760pt;}
.h9_c00330{height:107.500000pt;}
.h0_c00330{height:869.266667pt;}
.h1_c00330{height:869.333333pt;}
.w2_c00330{width:93.222667pt;}
.w0_c00330{width:590.400000pt;}
.w1_c00330{width:590.666667pt;}
.x0_c00330{left:0.000000pt;}
.x1_c00330{left:46.400000pt;}
.x2_c00330{left:48.000000pt;}
.x3_c00330{left:48.933333pt;}
.x4_c00330{left:49.866667pt;}
.x5_c00330{left:51.200000pt;}
.x7_c00330{left:252.368205pt;}
.x6_c00330{left:429.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_b2ebda0fae39c9e76e2fba02.woff2')format("woff");}.ff1_c00331{font-family:ff1_c00331;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00331;src:url('chunks/assets/font_43cd51b5daf8c3c27b988bd1.woff2')format("woff");}.ff2_c00331{font-family:ff2_c00331;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00331;src:url('chunks/assets/font_3a83d475bec894dd3e99f2d4.woff2')format("woff");}.ff3_c00331{font-family:ff3_c00331;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00331;src:url('chunks/assets/font_2415e27a0918634e47c2a6e4.woff2')format("woff");}.ff4_c00331{font-family:ff4_c00331;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00331;src:url('chunks/assets/font_213f44994155194198c4a04a.woff2')format("woff");}.ff5_c00331{font-family:ff5_c00331;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00331;src:url('chunks/assets/font_86747512722635a7a88f7ee7.woff2')format("woff");}.ff6_c00331{font-family:ff6_c00331;line-height:1.372070;font-style:normal;font-weight: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_c00331;src:url('chunks/assets/font_4de1226fa43f289fd7279738.woff2')format("woff");}.ff7_c00331{font-family:ff7_c00331;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00331;src:url('chunks/assets/font_60a680d8fd89469c8de0bec5.woff2')format("woff");}.ff8_c00331{font-family:ff8_c00331;line-height:1.437000;font-style:normal;font-weight: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_c00331;src:url('chunks/assets/font_637a38fab310b96beffd6425.woff2')format("woff");}.ff9_c00331{font-family:ff9_c00331;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00331;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ffa_c00331{font-family:ffa_c00331;line-height:1.219238;font-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_c00331{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m0_c00331{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00331{vertical-align:0.000000px;}
.v1_c00331{vertical-align:154.800000px;}
.ls9_c00331{letter-spacing:-6.000000px;}
.ls8_c00331{letter-spacing:0.000000px;}
.ls4_c00331{letter-spacing:0.600000px;}
.ls5_c00331{letter-spacing:4.386000px;}
.ls1_c00331{letter-spacing:12.300000px;}
.ls6_c00331{letter-spacing:18.124800px;}
.ls7_c00331{letter-spacing:29.202000px;}
.ls3_c00331{letter-spacing:48.000000px;}
.ls2_c00331{letter-spacing:88.290000px;}
.ls0_c00331{letter-spacing:154.788000px;}
.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;}
}
.ws6_c00331{word-spacing:-61.686000px;}
.ws0_c00331{word-spacing:-23.859000px;}
.ws3_c00331{word-spacing:-20.250000px;}
.ws4_c00331{word-spacing:-18.867000px;}
.ws1_c00331{word-spacing:-17.352000px;}
.ws5_c00331{word-spacing:-15.093600px;}
.ws2_c00331{word-spacing:-13.737000px;}
.ws7_c00331{word-spacing:0.000000px;}
._12_c00331{margin-left:-24.129000px;}
._c_c00331{margin-left:-17.091000px;}
._a_c00331{margin-left:-11.865000px;}
._3_c00331{margin-left:-10.692000px;}
._5_c00331{margin-left:-9.009000px;}
._2_c00331{margin-left:-7.029000px;}
._4_c00331{margin-left:-5.247000px;}
._16_c00331{margin-left:-3.921000px;}
._0_c00331{margin-left:-2.772000px;}
._9_c00331{margin-left:-1.683000px;}
._18_c00331{width:1.083000px;}
._7_c00331{width:2.376000px;}
._1_c00331{width:4.323000px;}
._11_c00331{width:5.586000px;}
._14_c00331{width:7.446000px;}
._f_c00331{width:9.120000px;}
._10_c00331{width:10.488000px;}
._15_c00331{width:11.502000px;}
._8_c00331{width:12.639000px;}
._6_c00331{width:14.553000px;}
._1a_c00331{width:16.911000px;}
._1e_c00331{width:19.101000px;}
._1f_c00331{width:20.274000px;}
._13_c00331{width:25.308000px;}
._1d_c00331{width:26.331000px;}
._1c_c00331{width:29.265000px;}
._17_c00331{width:37.947000px;}
._b_c00331{width:132.435000px;}
._20_c00331{width:194.679000px;}
._19_c00331{width:222.405000px;}
._1b_c00331{width:312.516000px;}
._d_c00331{width:507.324000px;}
._21_c00331{width:667.065000px;}
._e_c00331{width:818.118000px;}
.fc2_c00331{color:transparent;}
.fc1_c00331{color:rgb(128,128,128);}
.fc0_c00331{color:rgb(0,0,0);}
.fsb_c00331{font-size:45.600000px;}
.fs9_c00331{font-size:48.000000px;}
.fsa_c00331{font-size:54.000000px;}
.fs5_c00331{font-size:57.000000px;}
.fs8_c00331{font-size:60.000000px;}
.fs3_c00331{font-size:72.000000px;}
.fs6_c00331{font-size:78.000000px;}
.fs4_c00331{font-size:81.000000px;}
.fsc_c00331{font-size:87.000000px;}
.fs0_c00331{font-size:99.000000px;}
.fs2_c00331{font-size:105.000000px;}
.fsd_c00331{font-size:108.000000px;}
.fs1_c00331{font-size:132.000000px;}
.fs7_c00331{font-size:270.000000px;}
.y0_c00331{bottom:0.000000px;}
.y27_c00331{bottom:3.105000px;}
.y26_c00331{bottom:7.228357px;}
.y25_c00331{bottom:63.480000px;}
.y24_c00331{bottom:87.180000px;}
.y23_c00331{bottom:112.830000px;}
.y22_c00331{bottom:138.030000px;}
.y21_c00331{bottom:162.330000px;}
.y20_c00331{bottom:186.630000px;}
.y1f_c00331{bottom:210.930000px;}
.y1e_c00331{bottom:235.230000px;}
.y1d_c00331{bottom:260.280000px;}
.y1c_c00331{bottom:284.580000px;}
.y1b_c00331{bottom:308.880000px;}
.y1a_c00331{bottom:334.830000px;}
.y19_c00331{bottom:358.830000px;}
.y18_c00331{bottom:382.080000px;}
.y17_c00331{bottom:406.380000px;}
.y16_c00331{bottom:431.280000px;}
.y15_c00331{bottom:455.730000px;}
.y14_c00331{bottom:479.580000px;}
.y13_c00331{bottom:503.580000px;}
.y12_c00331{bottom:527.580000px;}
.y11_c00331{bottom:550.830000px;}
.y10_c00331{bottom:575.430000px;}
.yf_c00331{bottom:599.730000px;}
.ye_c00331{bottom:624.780000px;}
.yd_c00331{bottom:648.780000px;}
.yc_c00331{bottom:673.080000px;}
.yb_c00331{bottom:697.680000px;}
.ya_c00331{bottom:721.680000px;}
.y9_c00331{bottom:745.980000px;}
.y8_c00331{bottom:770.580000px;}
.y6_c00331{bottom:780.780000px;}
.y7_c00331{bottom:794.880000px;}
.y5_c00331{bottom:844.530000px;}
.y4_c00331{bottom:868.080000px;}
.y3_c00331{bottom:891.630000px;}
.y2_c00331{bottom:909.630000px;}
.y1_c00331{bottom:928.080000px;}
.h8_c00331{height:13.200074px;}
.h9_c00331{height:43.804688px;}
.h5_c00331{height:79.497070px;}
.h2_c00331{height:84.269531px;}
.h6_c00331{height:91.176000px;}
.h3_c00331{height:98.756836px;}
.h7_c00331{height:108.843750px;}
.h1_c00331{height:167.126953px;}
.h4_c00331{height:264.858398px;}
.h0_c00331{height:995.250000px;}
.w2_c00331{width:104.875500px;}
.w0_c00331{width:667.425000px;}
.w1_c00331{width:667.500000px;}
.x0_c00331{left:0.000000px;}
.x2_c00331{left:19.650000px;}
.x4_c00331{left:25.200000px;}
.x3_c00331{left:29.700000px;}
.x9_c00331{left:93.750000px;}
.x5_c00331{left:100.950000px;}
.x8_c00331{left:112.950000px;}
.x7_c00331{left:114.750000px;}
.x1_c00331{left:116.400000px;}
.xb_c00331{left:118.050000px;}
.xa_c00331{left:119.400000px;}
.x6_c00331{left:179.250000px;}
.xd_c00331{left:285.526749px;}
.xc_c00331{left:550.350000px;}
@media print{
.v0_c00331{vertical-align:0.000000pt;}
.v1_c00331{vertical-align:137.600000pt;}
.ls9_c00331{letter-spacing:-5.333333pt;}
.ls8_c00331{letter-spacing:0.000000pt;}
.ls4_c00331{letter-spacing:0.533333pt;}
.ls5_c00331{letter-spacing:3.898667pt;}
.ls1_c00331{letter-spacing:10.933333pt;}
.ls6_c00331{letter-spacing:16.110933pt;}
.ls7_c00331{letter-spacing:25.957333pt;}
.ls3_c00331{letter-spacing:42.666667pt;}
.ls2_c00331{letter-spacing:78.480000pt;}
.ls0_c00331{letter-spacing:137.589333pt;}
.ws6_c00331{word-spacing:-54.832000pt;}
.ws0_c00331{word-spacing:-21.208000pt;}
.ws3_c00331{word-spacing:-18.000000pt;}
.ws4_c00331{word-spacing:-16.770667pt;}
.ws1_c00331{word-spacing:-15.424000pt;}
.ws5_c00331{word-spacing:-13.416533pt;}
.ws2_c00331{word-spacing:-12.210667pt;}
.ws7_c00331{word-spacing:0.000000pt;}
._12_c00331{margin-left:-21.448000pt;}
._c_c00331{margin-left:-15.192000pt;}
._a_c00331{margin-left:-10.546667pt;}
._3_c00331{margin-left:-9.504000pt;}
._5_c00331{margin-left:-8.008000pt;}
._2_c00331{margin-left:-6.248000pt;}
._4_c00331{margin-left:-4.664000pt;}
._16_c00331{margin-left:-3.485333pt;}
._0_c00331{margin-left:-2.464000pt;}
._9_c00331{margin-left:-1.496000pt;}
._18_c00331{width:0.962667pt;}
._7_c00331{width:2.112000pt;}
._1_c00331{width:3.842667pt;}
._11_c00331{width:4.965333pt;}
._14_c00331{width:6.618667pt;}
._f_c00331{width:8.106667pt;}
._10_c00331{width:9.322667pt;}
._15_c00331{width:10.224000pt;}
._8_c00331{width:11.234667pt;}
._6_c00331{width:12.936000pt;}
._1a_c00331{width:15.032000pt;}
._1e_c00331{width:16.978667pt;}
._1f_c00331{width:18.021333pt;}
._13_c00331{width:22.496000pt;}
._1d_c00331{width:23.405333pt;}
._1c_c00331{width:26.013333pt;}
._17_c00331{width:33.730667pt;}
._b_c00331{width:117.720000pt;}
._20_c00331{width:173.048000pt;}
._19_c00331{width:197.693333pt;}
._1b_c00331{width:277.792000pt;}
._d_c00331{width:450.954667pt;}
._21_c00331{width:592.946667pt;}
._e_c00331{width:727.216000pt;}
.fsb_c00331{font-size:40.533333pt;}
.fs9_c00331{font-size:42.666667pt;}
.fsa_c00331{font-size:48.000000pt;}
.fs5_c00331{font-size:50.666667pt;}
.fs8_c00331{font-size:53.333333pt;}
.fs3_c00331{font-size:64.000000pt;}
.fs6_c00331{font-size:69.333333pt;}
.fs4_c00331{font-size:72.000000pt;}
.fsc_c00331{font-size:77.333333pt;}
.fs0_c00331{font-size:88.000000pt;}
.fs2_c00331{font-size:93.333333pt;}
.fsd_c00331{font-size:96.000000pt;}
.fs1_c00331{font-size:117.333333pt;}
.fs7_c00331{font-size:240.000000pt;}
.y0_c00331{bottom:0.000000pt;}
.y27_c00331{bottom:2.760000pt;}
.y26_c00331{bottom:6.425206pt;}
.y25_c00331{bottom:56.426667pt;}
.y24_c00331{bottom:77.493333pt;}
.y23_c00331{bottom:100.293333pt;}
.y22_c00331{bottom:122.693333pt;}
.y21_c00331{bottom:144.293333pt;}
.y20_c00331{bottom:165.893333pt;}
.y1f_c00331{bottom:187.493333pt;}
.y1e_c00331{bottom:209.093333pt;}
.y1d_c00331{bottom:231.360000pt;}
.y1c_c00331{bottom:252.960000pt;}
.y1b_c00331{bottom:274.560000pt;}
.y1a_c00331{bottom:297.626667pt;}
.y19_c00331{bottom:318.960000pt;}
.y18_c00331{bottom:339.626667pt;}
.y17_c00331{bottom:361.226667pt;}
.y16_c00331{bottom:383.360000pt;}
.y15_c00331{bottom:405.093333pt;}
.y14_c00331{bottom:426.293333pt;}
.y13_c00331{bottom:447.626667pt;}
.y12_c00331{bottom:468.960000pt;}
.y11_c00331{bottom:489.626667pt;}
.y10_c00331{bottom:511.493333pt;}
.yf_c00331{bottom:533.093333pt;}
.ye_c00331{bottom:555.360000pt;}
.yd_c00331{bottom:576.693333pt;}
.yc_c00331{bottom:598.293333pt;}
.yb_c00331{bottom:620.160000pt;}
.ya_c00331{bottom:641.493333pt;}
.y9_c00331{bottom:663.093333pt;}
.y8_c00331{bottom:684.960000pt;}
.y6_c00331{bottom:694.026667pt;}
.y7_c00331{bottom:706.560000pt;}
.y5_c00331{bottom:750.693333pt;}
.y4_c00331{bottom:771.626667pt;}
.y3_c00331{bottom:792.560000pt;}
.y2_c00331{bottom:808.560000pt;}
.y1_c00331{bottom:824.960000pt;}
.h8_c00331{height:11.733399pt;}
.h9_c00331{height:38.937500pt;}
.h5_c00331{height:70.664062pt;}
.h2_c00331{height:74.906250pt;}
.h6_c00331{height:81.045333pt;}
.h3_c00331{height:87.783854pt;}
.h7_c00331{height:96.750000pt;}
.h1_c00331{height:148.557292pt;}
.h4_c00331{height:235.429688pt;}
.h0_c00331{height:884.666667pt;}
.w2_c00331{width:93.222667pt;}
.w0_c00331{width:593.266667pt;}
.w1_c00331{width:593.333333pt;}
.x0_c00331{left:0.000000pt;}
.x2_c00331{left:17.466667pt;}
.x4_c00331{left:22.400000pt;}
.x3_c00331{left:26.400000pt;}
.x9_c00331{left:83.333333pt;}
.x5_c00331{left:89.733333pt;}
.x8_c00331{left:100.400000pt;}
.x7_c00331{left:102.000000pt;}
.x1_c00331{left:103.466667pt;}
.xb_c00331{left:104.933333pt;}
.xa_c00331{left:106.133333pt;}
.x6_c00331{left:159.333333pt;}
.xd_c00331{left:253.801554pt;}
.xc_c00331{left:489.200000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ba096d786b6e9df6393cc029.woff2')format("woff");}.ff1_c00332{font-family:ff1_c00332;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00332;src:url('chunks/assets/font_bbdda00ba22f8e2789adceab.woff2')format("woff");}.ff2_c00332{font-family:ff2_c00332;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00332;src:url('chunks/assets/font_d3286cf475a04720fcd8fef4.woff2')format("woff");}.ff3_c00332{font-family:ff3_c00332;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00332;src:url('chunks/assets/font_2b66db295f62c9d807bdf189.woff2')format("woff");}.ff4_c00332{font-family:ff4_c00332;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00332;src:url('chunks/assets/font_1c2dc38739f5784cd145f3f3.woff2')format("woff");}.ff5_c00332{font-family:ff5_c00332;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00332;src:url('chunks/assets/font_8db8286504e71f1cd6628609.woff2')format("woff");}.ff6_c00332{font-family:ff6_c00332;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00332;src:url('chunks/assets/font_1ef26ff7311741a2ea60076b.woff2')format("woff");}.ff7_c00332{font-family:ff7_c00332;line-height:1.437000;font-style:normal;font-weight: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_c00332;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff8_c00332{font-family:ff8_c00332;line-height:1.219238;font-style: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);}
.m1_c00332{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m2_c00332{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.v0_c00332{vertical-align:0.000000px;}
.v1_c00332{vertical-align:133.800000px;}
.ls6_c00332{letter-spacing:-9.000000px;}
.ls4_c00332{letter-spacing:0.000000px;}
.ls0_c00332{letter-spacing:3.000000px;}
.ls5_c00332{letter-spacing:6.000000px;}
.ls3_c00332{letter-spacing:6.300000px;}
.ls1_c00332{letter-spacing:80.850000px;}
.ls2_c00332{letter-spacing:278.802000px;}
.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;}
}
.ws5_c00332{word-spacing:-198.390000px;}
.ws0_c00332{word-spacing:-28.500000px;}
.ws8_c00332{word-spacing:-21.000000px;}
.ws7_c00332{word-spacing:-20.250000px;}
.ws4_c00332{word-spacing:-17.352000px;}
.ws6_c00332{word-spacing:-16.500000px;}
.ws3_c00332{word-spacing:-13.737000px;}
.ws2_c00332{word-spacing:-11.250000px;}
.ws1_c00332{word-spacing:-3.726000px;}
.ws9_c00332{word-spacing:0.000000px;}
._21_c00332{margin-left:-36.795000px;}
._10_c00332{margin-left:-23.808000px;}
._26_c00332{margin-left:-21.060000px;}
._22_c00332{margin-left:-17.400000px;}
._24_c00332{margin-left:-16.200000px;}
._d_c00332{margin-left:-14.523000px;}
._1_c00332{margin-left:-12.840000px;}
._1d_c00332{margin-left:-11.196000px;}
._18_c00332{margin-left:-9.861000px;}
._5_c00332{margin-left:-8.058000px;}
._1c_c00332{margin-left:-6.990000px;}
._7_c00332{margin-left:-5.832000px;}
._13_c00332{margin-left:-4.563000px;}
._e_c00332{margin-left:-3.207000px;}
._6_c00332{margin-left:-1.326000px;}
._a_c00332{width:1.407000px;}
._b_c00332{width:2.907000px;}
._3_c00332{width:4.080000px;}
._2_c00332{width:5.100000px;}
._4_c00332{width:6.324000px;}
._12_c00332{width:7.695000px;}
._14_c00332{width:8.781000px;}
._c_c00332{width:10.227000px;}
._15_c00332{width:11.238000px;}
._11_c00332{width:12.333000px;}
._9_c00332{width:13.872000px;}
._17_c00332{width:15.336000px;}
._19_c00332{width:17.844000px;}
._1a_c00332{width:18.936000px;}
._0_c00332{width:21.600000px;}
._16_c00332{width:23.868000px;}
._25_c00332{width:27.216000px;}
._8_c00332{width:28.944000px;}
._1f_c00332{width:40.746000px;}
._27_c00332{width:95.256000px;}
._20_c00332{width:116.142000px;}
._23_c00332{width:122.532000px;}
._f_c00332{width:131.412000px;}
._1b_c00332{width:154.371000px;}
._1e_c00332{width:273.684000px;}
.fc2_c00332{color:transparent;}
.fc1_c00332{color:rgb(128,128,128);}
.fc0_c00332{color:rgb(0,0,0);}
.fs9_c00332{font-size:48.000000px;}
.fs4_c00332{font-size:57.000000px;}
.fs7_c00332{font-size:66.000000px;}
.fs0_c00332{font-size:72.000000px;}
.fs5_c00332{font-size:78.000000px;}
.fs3_c00332{font-size:81.000000px;}
.fs8_c00332{font-size:84.000000px;}
.fs2_c00332{font-size:87.000000px;}
.fs1_c00332{font-size:102.000000px;}
.fs6_c00332{font-size:255.000000px;}
.y0_c00332{bottom:0.000000px;}
.y24_c00332{bottom:3.105000px;}
.y23_c00332{bottom:7.228363px;}
.y22_c00332{bottom:48.150000px;}
.y21_c00332{bottom:72.900000px;}
.y20_c00332{bottom:97.500000px;}
.y1f_c00332{bottom:170.850000px;}
.y1e_c00332{bottom:195.750000px;}
.y1d_c00332{bottom:220.500000px;}
.y1c_c00332{bottom:245.100000px;}
.y1b_c00332{bottom:269.100000px;}
.y1a_c00332{bottom:293.700000px;}
.y19_c00332{bottom:318.300000px;}
.y17_c00332{bottom:333.750000px;}
.y18_c00332{bottom:343.200000px;}
.y16_c00332{bottom:391.950000px;}
.y15_c00332{bottom:416.100000px;}
.y14_c00332{bottom:440.400000px;}
.y13_c00332{bottom:464.850000px;}
.y12_c00332{bottom:489.450000px;}
.y11_c00332{bottom:512.700000px;}
.y10_c00332{bottom:536.700000px;}
.yf_c00332{bottom:562.050000px;}
.ye_c00332{bottom:584.550000px;}
.yd_c00332{bottom:608.550000px;}
.yc_c00332{bottom:632.100000px;}
.yb_c00332{bottom:656.100000px;}
.ya_c00332{bottom:680.400000px;}
.y9_c00332{bottom:704.700000px;}
.y8_c00332{bottom:728.700000px;}
.y7_c00332{bottom:753.000000px;}
.y6_c00332{bottom:777.000000px;}
.y5_c00332{bottom:801.900000px;}
.y4_c00332{bottom:827.850000px;}
.y3_c00332{bottom:850.200000px;}
.y2_c00332{bottom:875.100000px;}
.y1_c00332{bottom:910.500000px;}
.ha_c00332{height:13.200074px;}
.hb_c00332{height:43.804688px;}
.h4_c00332{height:79.497070px;}
.h6_c00332{height:84.269531px;}
.h9_c00332{height:84.656250px;}
.h3_c00332{height:91.160156px;}
.h8_c00332{height:91.176000px;}
.h5_c00332{height:98.756836px;}
.h2_c00332{height:100.057617px;}
.h7_c00332{height:267.240000px;}
.h0_c00332{height:980.100000px;}
.h1_c00332{height:980.250000px;}
.w2_c00332{width:104.875500px;}
.w0_c00332{width:665.850000px;}
.w1_c00332{width:666.000000px;}
.x0_c00332{left:0.000000px;}
.x2_c00332{left:38.250000px;}
.x3_c00332{left:40.200000px;}
.x4_c00332{left:42.150000px;}
.x5_c00332{left:43.200000px;}
.x6_c00332{left:44.250000px;}
.x7_c00332{left:45.900000px;}
.x8_c00332{left:47.550000px;}
.x9_c00332{left:48.600000px;}
.xc_c00332{left:49.650000px;}
.xb_c00332{left:51.000000px;}
.xd_c00332{left:52.350000px;}
.xa_c00332{left:56.400000px;}
.xe_c00332{left:62.100000px;}
.xf_c00332{left:73.950000px;}
.x1_c00332{left:108.300000px;}
.x10_c00332{left:130.650000px;}
.x11_c00332{left:196.500000px;}
.x12_c00332{left:235.950000px;}
.x14_c00332{left:284.739258px;}
.x13_c00332{left:512.400000px;}
@media print{
.v0_c00332{vertical-align:0.000000pt;}
.v1_c00332{vertical-align:118.933333pt;}
.ls6_c00332{letter-spacing:-8.000000pt;}
.ls4_c00332{letter-spacing:0.000000pt;}
.ls0_c00332{letter-spacing:2.666667pt;}
.ls5_c00332{letter-spacing:5.333333pt;}
.ls3_c00332{letter-spacing:5.600000pt;}
.ls1_c00332{letter-spacing:71.866667pt;}
.ls2_c00332{letter-spacing:247.824000pt;}
.ws5_c00332{word-spacing:-176.346667pt;}
.ws0_c00332{word-spacing:-25.333333pt;}
.ws8_c00332{word-spacing:-18.666667pt;}
.ws7_c00332{word-spacing:-18.000000pt;}
.ws4_c00332{word-spacing:-15.424000pt;}
.ws6_c00332{word-spacing:-14.666667pt;}
.ws3_c00332{word-spacing:-12.210667pt;}
.ws2_c00332{word-spacing:-10.000000pt;}
.ws1_c00332{word-spacing:-3.312000pt;}
.ws9_c00332{word-spacing:0.000000pt;}
._21_c00332{margin-left:-32.706667pt;}
._10_c00332{margin-left:-21.162667pt;}
._26_c00332{margin-left:-18.720000pt;}
._22_c00332{margin-left:-15.466667pt;}
._24_c00332{margin-left:-14.400000pt;}
._d_c00332{margin-left:-12.909333pt;}
._1_c00332{margin-left:-11.413333pt;}
._1d_c00332{margin-left:-9.952000pt;}
._18_c00332{margin-left:-8.765333pt;}
._5_c00332{margin-left:-7.162667pt;}
._1c_c00332{margin-left:-6.213333pt;}
._7_c00332{margin-left:-5.184000pt;}
._13_c00332{margin-left:-4.056000pt;}
._e_c00332{margin-left:-2.850667pt;}
._6_c00332{margin-left:-1.178667pt;}
._a_c00332{width:1.250667pt;}
._b_c00332{width:2.584000pt;}
._3_c00332{width:3.626667pt;}
._2_c00332{width:4.533333pt;}
._4_c00332{width:5.621333pt;}
._12_c00332{width:6.840000pt;}
._14_c00332{width:7.805333pt;}
._c_c00332{width:9.090667pt;}
._15_c00332{width:9.989333pt;}
._11_c00332{width:10.962667pt;}
._9_c00332{width:12.330667pt;}
._17_c00332{width:13.632000pt;}
._19_c00332{width:15.861333pt;}
._1a_c00332{width:16.832000pt;}
._0_c00332{width:19.200000pt;}
._16_c00332{width:21.216000pt;}
._25_c00332{width:24.192000pt;}
._8_c00332{width:25.728000pt;}
._1f_c00332{width:36.218667pt;}
._27_c00332{width:84.672000pt;}
._20_c00332{width:103.237333pt;}
._23_c00332{width:108.917333pt;}
._f_c00332{width:116.810667pt;}
._1b_c00332{width:137.218667pt;}
._1e_c00332{width:243.274667pt;}
.fs9_c00332{font-size:42.666667pt;}
.fs4_c00332{font-size:50.666667pt;}
.fs7_c00332{font-size:58.666667pt;}
.fs0_c00332{font-size:64.000000pt;}
.fs5_c00332{font-size:69.333333pt;}
.fs3_c00332{font-size:72.000000pt;}
.fs8_c00332{font-size:74.666667pt;}
.fs2_c00332{font-size:77.333333pt;}
.fs1_c00332{font-size:90.666667pt;}
.fs6_c00332{font-size:226.666667pt;}
.y0_c00332{bottom:0.000000pt;}
.y24_c00332{bottom:2.760000pt;}
.y23_c00332{bottom:6.425212pt;}
.y22_c00332{bottom:42.800000pt;}
.y21_c00332{bottom:64.800000pt;}
.y20_c00332{bottom:86.666667pt;}
.y1f_c00332{bottom:151.866667pt;}
.y1e_c00332{bottom:174.000000pt;}
.y1d_c00332{bottom:196.000000pt;}
.y1c_c00332{bottom:217.866667pt;}
.y1b_c00332{bottom:239.200000pt;}
.y1a_c00332{bottom:261.066667pt;}
.y19_c00332{bottom:282.933333pt;}
.y17_c00332{bottom:296.666667pt;}
.y18_c00332{bottom:305.066667pt;}
.y16_c00332{bottom:348.400000pt;}
.y15_c00332{bottom:369.866667pt;}
.y14_c00332{bottom:391.466667pt;}
.y13_c00332{bottom:413.200000pt;}
.y12_c00332{bottom:435.066667pt;}
.y11_c00332{bottom:455.733333pt;}
.y10_c00332{bottom:477.066667pt;}
.yf_c00332{bottom:499.600000pt;}
.ye_c00332{bottom:519.600000pt;}
.yd_c00332{bottom:540.933333pt;}
.yc_c00332{bottom:561.866667pt;}
.yb_c00332{bottom:583.200000pt;}
.ya_c00332{bottom:604.800000pt;}
.y9_c00332{bottom:626.400000pt;}
.y8_c00332{bottom:647.733333pt;}
.y7_c00332{bottom:669.333333pt;}
.y6_c00332{bottom:690.666667pt;}
.y5_c00332{bottom:712.800000pt;}
.y4_c00332{bottom:735.866667pt;}
.y3_c00332{bottom:755.733333pt;}
.y2_c00332{bottom:777.866667pt;}
.y1_c00332{bottom:809.333333pt;}
.ha_c00332{height:11.733399pt;}
.hb_c00332{height:38.937500pt;}
.h4_c00332{height:70.664062pt;}
.h6_c00332{height:74.906250pt;}
.h9_c00332{height:75.250000pt;}
.h3_c00332{height:81.031250pt;}
.h8_c00332{height:81.045333pt;}
.h5_c00332{height:87.783854pt;}
.h2_c00332{height:88.940104pt;}
.h7_c00332{height:237.546667pt;}
.h0_c00332{height:871.200000pt;}
.h1_c00332{height:871.333333pt;}
.w2_c00332{width:93.222667pt;}
.w0_c00332{width:591.866667pt;}
.w1_c00332{width:592.000000pt;}
.x0_c00332{left:0.000000pt;}
.x2_c00332{left:34.000000pt;}
.x3_c00332{left:35.733333pt;}
.x4_c00332{left:37.466667pt;}
.x5_c00332{left:38.400000pt;}
.x6_c00332{left:39.333333pt;}
.x7_c00332{left:40.800000pt;}
.x8_c00332{left:42.266667pt;}
.x9_c00332{left:43.200000pt;}
.xc_c00332{left:44.133333pt;}
.xb_c00332{left:45.333333pt;}
.xd_c00332{left:46.533333pt;}
.xa_c00332{left:50.133333pt;}
.xe_c00332{left:55.200000pt;}
.xf_c00332{left:65.733333pt;}
.x1_c00332{left:96.266667pt;}
.x10_c00332{left:116.133333pt;}
.x11_c00332{left:174.666667pt;}
.x12_c00332{left:209.733333pt;}
.x14_c00332{left:253.101563pt;}
.x13_c00332{left:455.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_8183aa15d5bf1ef56bbd0548.woff2')format("woff");}.ff1_c00333{font-family:ff1_c00333;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00333;src:url('chunks/assets/font_90fcf0704804fc419c179c77.woff2')format("woff");}.ff2_c00333{font-family:ff2_c00333;line-height:1.437000;font-style:normal;font-weight:normal;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_aeb1969e57543f47c968f017.woff2')format("woff");}.ff3_c00333{font-family:ff3_c00333;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00333;src:url('chunks/assets/font_2540b2866f6ce21e7bd0ab5d.woff2')format("woff");}.ff4_c00333{font-family:ff4_c00333;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00333;src:url('chunks/assets/font_11a53ae2626610b874ef6c57.woff2')format("woff");}.ff5_c00333{font-family:ff5_c00333;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00333;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c00333{font-family:ff6_c00333;line-height:1.219238;font-style: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;}
.ls3_c00333{letter-spacing:-6.000000px;}
.ls2_c00333{letter-spacing:0.000000px;}
.ls0_c00333{letter-spacing:1.500000px;}
.ls5_c00333{letter-spacing:3.000000px;}
.ls1_c00333{letter-spacing:3.900000px;}
.ls4_c00333{letter-spacing:42.000000px;}
.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;}
}
.ws4_c00333{word-spacing:-62.250000px;}
.ws0_c00333{word-spacing:-20.250000px;}
.ws1_c00333{word-spacing:-17.352000px;}
.ws2_c00333{word-spacing:-13.737000px;}
.ws3_c00333{word-spacing:-9.120000px;}
.ws5_c00333{word-spacing:0.000000px;}
._23_c00333{margin-left:-26.730000px;}
._16_c00333{margin-left:-25.110000px;}
._1a_c00333{margin-left:-11.070000px;}
._e_c00333{margin-left:-7.452000px;}
._6_c00333{margin-left:-6.237000px;}
._8_c00333{margin-left:-4.374000px;}
._10_c00333{margin-left:-2.916000px;}
._7_c00333{margin-left:-1.215000px;}
._4_c00333{width:1.620000px;}
._3_c00333{width:2.673000px;}
._1b_c00333{width:3.690000px;}
._1_c00333{width:4.698000px;}
._0_c00333{width:6.075000px;}
._2_c00333{width:7.128000px;}
._1f_c00333{width:8.136000px;}
._5_c00333{width:9.153000px;}
._c_c00333{width:10.368000px;}
._1e_c00333{width:11.727000px;}
._a_c00333{width:12.798000px;}
._9_c00333{width:14.499000px;}
._20_c00333{width:15.579000px;}
._d_c00333{width:16.686000px;}
._b_c00333{width:18.225000px;}
._12_c00333{width:21.303000px;}
._1c_c00333{width:23.097000px;}
._21_c00333{width:24.102000px;}
._f_c00333{width:30.213000px;}
._24_c00333{width:31.671000px;}
._22_c00333{width:34.587000px;}
._13_c00333{width:36.357000px;}
._1d_c00333{width:39.204000px;}
._18_c00333{width:41.745000px;}
._17_c00333{width:50.301000px;}
._11_c00333{width:106.434000px;}
._15_c00333{width:165.240000px;}
._19_c00333{width:169.992000px;}
._14_c00333{width:171.603000px;}
.fc2_c00333{color:transparent;}
.fc1_c00333{color:rgb(128,128,128);}
.fc0_c00333{color:rgb(0,0,0);}
.fs6_c00333{font-size:48.000000px;}
.fs5_c00333{font-size:54.000000px;}
.fs3_c00333{font-size:57.000000px;}
.fs4_c00333{font-size:63.000000px;}
.fs2_c00333{font-size:72.000000px;}
.fs0_c00333{font-size:81.000000px;}
.fs1_c00333{font-size:87.000000px;}
.y0_c00333{bottom:0.000000px;}
.y25_c00333{bottom:3.105000px;}
.y24_c00333{bottom:7.228357px;}
.y23_c00333{bottom:58.380000px;}
.y22_c00333{bottom:80.730000px;}
.y21_c00333{bottom:106.080000px;}
.y20_c00333{bottom:130.980000px;}
.y1f_c00333{bottom:155.580000px;}
.y1e_c00333{bottom:180.180000px;}
.y1d_c00333{bottom:204.480000px;}
.y1c_c00333{bottom:230.130000px;}
.y1b_c00333{bottom:253.830000px;}
.y1a_c00333{bottom:279.180000px;}
.y19_c00333{bottom:301.830000px;}
.y18_c00333{bottom:327.780000px;}
.y17_c00333{bottom:353.430000px;}
.y16_c00333{bottom:376.380000px;}
.y15_c00333{bottom:400.680000px;}
.y14_c00333{bottom:424.980000px;}
.y13_c00333{bottom:450.180000px;}
.y12_c00333{bottom:473.130000px;}
.y11_c00333{bottom:497.130000px;}
.y10_c00333{bottom:521.130000px;}
.yf_c00333{bottom:545.130000px;}
.ye_c00333{bottom:569.130000px;}
.yd_c00333{bottom:594.030000px;}
.yc_c00333{bottom:619.680000px;}
.yb_c00333{bottom:642.330000px;}
.ya_c00333{bottom:666.930000px;}
.y9_c00333{bottom:690.930000px;}
.y8_c00333{bottom:714.930000px;}
.y7_c00333{bottom:739.230000px;}
.y6_c00333{bottom:762.480000px;}
.y5_c00333{bottom:787.830000px;}
.y4_c00333{bottom:811.980000px;}
.y3_c00333{bottom:836.430000px;}
.y2_c00333{bottom:860.580000px;}
.y1_c00333{bottom:885.030000px;}
.h6_c00333{height:13.200074px;}
.h7_c00333{height:43.804688px;}
.h5_c00333{height:72.168457px;}
.h2_c00333{height:79.497070px;}
.h4_c00333{height:84.269531px;}
.h3_c00333{height:91.176000px;}
.h0_c00333{height:984.450000px;}
.h1_c00333{height:984.750000px;}
.w2_c00333{width:104.875500px;}
.w0_c00333{width:659.850000px;}
.w1_c00333{width:660.000000px;}
.x0_c00333{left:0.000000px;}
.xb_c00333{left:12.450000px;}
.x7_c00333{left:18.000000px;}
.x5_c00333{left:20.250000px;}
.x4_c00333{left:21.600000px;}
.xc_c00333{left:73.200000px;}
.x10_c00333{left:92.250000px;}
.x8_c00333{left:94.050000px;}
.xf_c00333{left:103.500000px;}
.xe_c00333{left:104.550000px;}
.xd_c00333{left:106.650000px;}
.xa_c00333{left:107.700000px;}
.x9_c00333{left:109.050000px;}
.x6_c00333{left:111.150000px;}
.x2_c00333{left:113.100000px;}
.x1_c00333{left:116.100000px;}
.x3_c00333{left:138.000000px;}
.x12_c00333{left:281.739258px;}
.x11_c00333{left:535.650000px;}
@media print{
.v0_c00333{vertical-align:0.000000pt;}
.ls3_c00333{letter-spacing:-5.333333pt;}
.ls2_c00333{letter-spacing:0.000000pt;}
.ls0_c00333{letter-spacing:1.333333pt;}
.ls5_c00333{letter-spacing:2.666667pt;}
.ls1_c00333{letter-spacing:3.466667pt;}
.ls4_c00333{letter-spacing:37.333333pt;}
.ws4_c00333{word-spacing:-55.333333pt;}
.ws0_c00333{word-spacing:-18.000000pt;}
.ws1_c00333{word-spacing:-15.424000pt;}
.ws2_c00333{word-spacing:-12.210667pt;}
.ws3_c00333{word-spacing:-8.106667pt;}
.ws5_c00333{word-spacing:0.000000pt;}
._23_c00333{margin-left:-23.760000pt;}
._16_c00333{margin-left:-22.320000pt;}
._1a_c00333{margin-left:-9.840000pt;}
._e_c00333{margin-left:-6.624000pt;}
._6_c00333{margin-left:-5.544000pt;}
._8_c00333{margin-left:-3.888000pt;}
._10_c00333{margin-left:-2.592000pt;}
._7_c00333{margin-left:-1.080000pt;}
._4_c00333{width:1.440000pt;}
._3_c00333{width:2.376000pt;}
._1b_c00333{width:3.280000pt;}
._1_c00333{width:4.176000pt;}
._0_c00333{width:5.400000pt;}
._2_c00333{width:6.336000pt;}
._1f_c00333{width:7.232000pt;}
._5_c00333{width:8.136000pt;}
._c_c00333{width:9.216000pt;}
._1e_c00333{width:10.424000pt;}
._a_c00333{width:11.376000pt;}
._9_c00333{width:12.888000pt;}
._20_c00333{width:13.848000pt;}
._d_c00333{width:14.832000pt;}
._b_c00333{width:16.200000pt;}
._12_c00333{width:18.936000pt;}
._1c_c00333{width:20.530667pt;}
._21_c00333{width:21.424000pt;}
._f_c00333{width:26.856000pt;}
._24_c00333{width:28.152000pt;}
._22_c00333{width:30.744000pt;}
._13_c00333{width:32.317333pt;}
._1d_c00333{width:34.848000pt;}
._18_c00333{width:37.106667pt;}
._17_c00333{width:44.712000pt;}
._11_c00333{width:94.608000pt;}
._15_c00333{width:146.880000pt;}
._19_c00333{width:151.104000pt;}
._14_c00333{width:152.536000pt;}
.fs6_c00333{font-size:42.666667pt;}
.fs5_c00333{font-size:48.000000pt;}
.fs3_c00333{font-size:50.666667pt;}
.fs4_c00333{font-size:56.000000pt;}
.fs2_c00333{font-size:64.000000pt;}
.fs0_c00333{font-size:72.000000pt;}
.fs1_c00333{font-size:77.333333pt;}
.y0_c00333{bottom:0.000000pt;}
.y25_c00333{bottom:2.760000pt;}
.y24_c00333{bottom:6.425206pt;}
.y23_c00333{bottom:51.893333pt;}
.y22_c00333{bottom:71.760000pt;}
.y21_c00333{bottom:94.293333pt;}
.y20_c00333{bottom:116.426667pt;}
.y1f_c00333{bottom:138.293333pt;}
.y1e_c00333{bottom:160.160000pt;}
.y1d_c00333{bottom:181.760000pt;}
.y1c_c00333{bottom:204.560000pt;}
.y1b_c00333{bottom:225.626667pt;}
.y1a_c00333{bottom:248.160000pt;}
.y19_c00333{bottom:268.293333pt;}
.y18_c00333{bottom:291.360000pt;}
.y17_c00333{bottom:314.160000pt;}
.y16_c00333{bottom:334.560000pt;}
.y15_c00333{bottom:356.160000pt;}
.y14_c00333{bottom:377.760000pt;}
.y13_c00333{bottom:400.160000pt;}
.y12_c00333{bottom:420.560000pt;}
.y11_c00333{bottom:441.893333pt;}
.y10_c00333{bottom:463.226667pt;}
.yf_c00333{bottom:484.560000pt;}
.ye_c00333{bottom:505.893333pt;}
.yd_c00333{bottom:528.026667pt;}
.yc_c00333{bottom:550.826667pt;}
.yb_c00333{bottom:570.960000pt;}
.ya_c00333{bottom:592.826667pt;}
.y9_c00333{bottom:614.160000pt;}
.y8_c00333{bottom:635.493333pt;}
.y7_c00333{bottom:657.093333pt;}
.y6_c00333{bottom:677.760000pt;}
.y5_c00333{bottom:700.293333pt;}
.y4_c00333{bottom:721.760000pt;}
.y3_c00333{bottom:743.493333pt;}
.y2_c00333{bottom:764.960000pt;}
.y1_c00333{bottom:786.693333pt;}
.h6_c00333{height:11.733399pt;}
.h7_c00333{height:38.937500pt;}
.h5_c00333{height:64.149740pt;}
.h2_c00333{height:70.664062pt;}
.h4_c00333{height:74.906250pt;}
.h3_c00333{height:81.045333pt;}
.h0_c00333{height:875.066667pt;}
.h1_c00333{height:875.333333pt;}
.w2_c00333{width:93.222667pt;}
.w0_c00333{width:586.533333pt;}
.w1_c00333{width:586.666667pt;}
.x0_c00333{left:0.000000pt;}
.xb_c00333{left:11.066667pt;}
.x7_c00333{left:16.000000pt;}
.x5_c00333{left:18.000000pt;}
.x4_c00333{left:19.200000pt;}
.xc_c00333{left:65.066667pt;}
.x10_c00333{left:82.000000pt;}
.x8_c00333{left:83.600000pt;}
.xf_c00333{left:92.000000pt;}
.xe_c00333{left:92.933333pt;}
.xd_c00333{left:94.800000pt;}
.xa_c00333{left:95.733333pt;}
.x9_c00333{left:96.933333pt;}
.x6_c00333{left:98.800000pt;}
.x2_c00333{left:100.533333pt;}
.x1_c00333{left:103.200000pt;}
.x3_c00333{left:122.666667pt;}
.x12_c00333{left:250.434896pt;}
.x11_c00333{left:476.133333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_8281dcb02fe7ce0eba299c07.woff2')format("woff");}.ff1_c00334{font-family:ff1_c00334;line-height:1.311035;font-style:normal;font-weight:normal;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_d7dde0f9122b12dfdc45f7b1.woff2')format("woff");}.ff2_c00334{font-family:ff2_c00334;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00334;src:url('chunks/assets/font_f6c4f1bb86f3cc749e68bd93.woff2')format("woff");}.ff3_c00334{font-family:ff3_c00334;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00334;src:url('chunks/assets/font_bc0a1b0b77a4e9e3276a432a.woff2')format("woff");}.ff4_c00334{font-family:ff4_c00334;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00334;src:url('chunks/assets/font_9ec4d1c36c5060caf7f34f27.woff2')format("woff");}.ff5_c00334{font-family:ff5_c00334;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00334;src:url('chunks/assets/font_688d1ce5799af1baa332042e.woff2')format("woff");}.ff6_c00334{font-family:ff6_c00334;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00334;src:url('chunks/assets/font_86c900a3d263b2c4a9a1b772.woff2')format("woff");}.ff7_c00334{font-family:ff7_c00334;line-height:1.437000;font-style:normal;font-weight: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_c00334;src:url('chunks/assets/font_a17576f13aab6cffc9b40752.woff2')format("woff");}.ff8_c00334{font-family:ff8_c00334;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00334;src:url('chunks/assets/font_71d0ab7f885b38115003cb92.woff2')format("woff");}.ff9_c00334{font-family:ff9_c00334;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00334;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ffa_c00334{font-family:ffa_c00334;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00334{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00334{vertical-align:0.000000px;}
.ls5_c00334{letter-spacing:-3.000000px;}
.ls3_c00334{letter-spacing:0.000000px;}
.ls2_c00334{letter-spacing:2.802000px;}
.ls4_c00334{letter-spacing:3.000000px;}
.ls1_c00334{letter-spacing:3.300000px;}
.ls6_c00334{letter-spacing:6.000000px;}
.ls0_c00334{letter-spacing:7.800000px;}
.sc__c00334{text-shadow:none;}
.sc0_c00334{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00334{-webkit-text-stroke:0px transparent;}
.sc0_c00334{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00334{word-spacing:-17.352000px;}
.ws2_c00334{word-spacing:-16.500000px;}
.ws1_c00334{word-spacing:-13.737000px;}
.ws3_c00334{word-spacing:0.000000px;}
._1b_c00334{margin-left:-31.014000px;}
._17_c00334{margin-left:-22.194000px;}
._14_c00334{margin-left:-20.655000px;}
._16_c00334{margin-left:-19.359000px;}
._18_c00334{margin-left:-17.595000px;}
._29_c00334{margin-left:-16.551000px;}
._15_c00334{margin-left:-14.094000px;}
._19_c00334{margin-left:-12.939000px;}
._2_c00334{margin-left:-11.571000px;}
._12_c00334{margin-left:-10.500000px;}
._6_c00334{margin-left:-8.478000px;}
._1e_c00334{margin-left:-7.443000px;}
._d_c00334{margin-left:-6.177000px;}
._4_c00334{margin-left:-5.094000px;}
._5_c00334{margin-left:-3.729000px;}
._7_c00334{margin-left:-2.277000px;}
._9_c00334{margin-left:-1.107000px;}
._3_c00334{width:1.392000px;}
._8_c00334{width:3.045000px;}
._e_c00334{width:4.164000px;}
._c_c00334{width:5.220000px;}
._b_c00334{width:6.786000px;}
._f_c00334{width:8.589000px;}
._1f_c00334{width:9.684000px;}
._1c_c00334{width:10.815000px;}
._1_c00334{width:12.180000px;}
._11_c00334{width:13.284000px;}
._10_c00334{width:14.322000px;}
._1d_c00334{width:16.431000px;}
._28_c00334{width:17.466000px;}
._20_c00334{width:19.581000px;}
._26_c00334{width:21.588000px;}
._22_c00334{width:22.848000px;}
._0_c00334{width:30.450000px;}
._2a_c00334{width:35.130000px;}
._25_c00334{width:39.537000px;}
._24_c00334{width:40.842000px;}
._27_c00334{width:45.948000px;}
._a_c00334{width:50.622000px;}
._23_c00334{width:51.708000px;}
._21_c00334{width:54.744000px;}
._13_c00334{width:173.847000px;}
._1a_c00334{width:201.204000px;}
.fc2_c00334{color:transparent;}
.fc1_c00334{color:rgb(128,128,128);}
.fc0_c00334{color:rgb(0,0,0);}
.fs9_c00334{font-size:42.000000px;}
.fsa_c00334{font-size:48.000000px;}
.fs6_c00334{font-size:54.000000px;}
.fs3_c00334{font-size:57.000000px;}
.fs5_c00334{font-size:60.000000px;}
.fs8_c00334{font-size:69.000000px;}
.fs4_c00334{font-size:72.000000px;}
.fs7_c00334{font-size:78.000000px;}
.fs2_c00334{font-size:81.000000px;}
.fs0_c00334{font-size:87.000000px;}
.fs1_c00334{font-size:102.000000px;}
.y0_c00334{bottom:0.000000px;}
.y26_c00334{bottom:3.105000px;}
.y25_c00334{bottom:7.228371px;}
.y24_c00334{bottom:60.165000px;}
.y23_c00334{bottom:83.715000px;}
.y22_c00334{bottom:108.465000px;}
.y21_c00334{bottom:132.765000px;}
.y20_c00334{bottom:158.265000px;}
.y1f_c00334{bottom:182.565000px;}
.y1e_c00334{bottom:205.665000px;}
.y1d_c00334{bottom:230.565000px;}
.y1c_c00334{bottom:253.815000px;}
.y1b_c00334{bottom:279.165000px;}
.y1a_c00334{bottom:303.465000px;}
.y19_c00334{bottom:328.065000px;}
.y18_c00334{bottom:353.415000px;}
.y17_c00334{bottom:376.965000px;}
.y16_c00334{bottom:401.265000px;}
.y15_c00334{bottom:426.315000px;}
.y14_c00334{bottom:450.615000px;}
.y13_c00334{bottom:474.165000px;}
.y12_c00334{bottom:498.915000px;}
.y11_c00334{bottom:523.515000px;}
.y10_c00334{bottom:546.465000px;}
.yf_c00334{bottom:573.165000px;}
.ye_c00334{bottom:597.015000px;}
.yd_c00334{bottom:618.315000px;}
.yc_c00334{bottom:642.315000px;}
.yb_c00334{bottom:666.015000px;}
.ya_c00334{bottom:690.315000px;}
.y9_c00334{bottom:714.615000px;}
.y8_c00334{bottom:738.765000px;}
.y7_c00334{bottom:764.865000px;}
.y6_c00334{bottom:787.515000px;}
.y5_c00334{bottom:811.815000px;}
.y4_c00334{bottom:836.115000px;}
.y3_c00334{bottom:859.965000px;}
.y2_c00334{bottom:878.865000px;}
.y1_c00334{bottom:913.065000px;}
.hc_c00334{height:13.200074px;}
.hb_c00334{height:42.328125px;}
.hd_c00334{height:43.804688px;}
.h5_c00334{height:68.370117px;}
.h6_c00334{height:72.168457px;}
.h3_c00334{height:79.497070px;}
.h9_c00334{height:83.226000px;}
.h4_c00334{height:84.269531px;}
.ha_c00334{height:91.160156px;}
.h8_c00334{height:91.176000px;}
.h7_c00334{height:98.756836px;}
.h2_c00334{height:100.057617px;}
.h0_c00334{height:989.025000px;}
.h1_c00334{height:989.250000px;}
.w1_c00334{width:104.875500px;}
.w0_c00334{width:672.000000px;}
.x0_c00334{left:0.000000px;}
.x3_c00334{left:38.250000px;}
.x2_c00334{left:41.250000px;}
.x5_c00334{left:43.200000px;}
.x6_c00334{left:44.850000px;}
.x4_c00334{left:46.500000px;}
.x7_c00334{left:47.700000px;}
.x1_c00334{left:58.050000px;}
.x9_c00334{left:287.814240px;}
.x8_c00334{left:505.950000px;}
@media print{
.v0_c00334{vertical-align:0.000000pt;}
.ls5_c00334{letter-spacing:-2.666667pt;}
.ls3_c00334{letter-spacing:0.000000pt;}
.ls2_c00334{letter-spacing:2.490667pt;}
.ls4_c00334{letter-spacing:2.666667pt;}
.ls1_c00334{letter-spacing:2.933333pt;}
.ls6_c00334{letter-spacing:5.333333pt;}
.ls0_c00334{letter-spacing:6.933333pt;}
.ws0_c00334{word-spacing:-15.424000pt;}
.ws2_c00334{word-spacing:-14.666667pt;}
.ws1_c00334{word-spacing:-12.210667pt;}
.ws3_c00334{word-spacing:0.000000pt;}
._1b_c00334{margin-left:-27.568000pt;}
._17_c00334{margin-left:-19.728000pt;}
._14_c00334{margin-left:-18.360000pt;}
._16_c00334{margin-left:-17.208000pt;}
._18_c00334{margin-left:-15.640000pt;}
._29_c00334{margin-left:-14.712000pt;}
._15_c00334{margin-left:-12.528000pt;}
._19_c00334{margin-left:-11.501333pt;}
._2_c00334{margin-left:-10.285333pt;}
._12_c00334{margin-left:-9.333333pt;}
._6_c00334{margin-left:-7.536000pt;}
._1e_c00334{margin-left:-6.616000pt;}
._d_c00334{margin-left:-5.490667pt;}
._4_c00334{margin-left:-4.528000pt;}
._5_c00334{margin-left:-3.314667pt;}
._7_c00334{margin-left:-2.024000pt;}
._9_c00334{margin-left:-0.984000pt;}
._3_c00334{width:1.237333pt;}
._8_c00334{width:2.706667pt;}
._e_c00334{width:3.701333pt;}
._c_c00334{width:4.640000pt;}
._b_c00334{width:6.032000pt;}
._f_c00334{width:7.634667pt;}
._1f_c00334{width:8.608000pt;}
._1c_c00334{width:9.613333pt;}
._1_c00334{width:10.826667pt;}
._11_c00334{width:11.808000pt;}
._10_c00334{width:12.730667pt;}
._1d_c00334{width:14.605333pt;}
._28_c00334{width:15.525333pt;}
._20_c00334{width:17.405333pt;}
._26_c00334{width:19.189333pt;}
._22_c00334{width:20.309333pt;}
._0_c00334{width:27.066667pt;}
._2a_c00334{width:31.226667pt;}
._25_c00334{width:35.144000pt;}
._24_c00334{width:36.304000pt;}
._27_c00334{width:40.842667pt;}
._a_c00334{width:44.997333pt;}
._23_c00334{width:45.962667pt;}
._21_c00334{width:48.661333pt;}
._13_c00334{width:154.530667pt;}
._1a_c00334{width:178.848000pt;}
.fs9_c00334{font-size:37.333333pt;}
.fsa_c00334{font-size:42.666667pt;}
.fs6_c00334{font-size:48.000000pt;}
.fs3_c00334{font-size:50.666667pt;}
.fs5_c00334{font-size:53.333333pt;}
.fs8_c00334{font-size:61.333333pt;}
.fs4_c00334{font-size:64.000000pt;}
.fs7_c00334{font-size:69.333333pt;}
.fs2_c00334{font-size:72.000000pt;}
.fs0_c00334{font-size:77.333333pt;}
.fs1_c00334{font-size:90.666667pt;}
.y0_c00334{bottom:0.000000pt;}
.y26_c00334{bottom:2.760000pt;}
.y25_c00334{bottom:6.425219pt;}
.y24_c00334{bottom:53.480000pt;}
.y23_c00334{bottom:74.413333pt;}
.y22_c00334{bottom:96.413333pt;}
.y21_c00334{bottom:118.013333pt;}
.y20_c00334{bottom:140.680000pt;}
.y1f_c00334{bottom:162.280000pt;}
.y1e_c00334{bottom:182.813333pt;}
.y1d_c00334{bottom:204.946667pt;}
.y1c_c00334{bottom:225.613333pt;}
.y1b_c00334{bottom:248.146667pt;}
.y1a_c00334{bottom:269.746667pt;}
.y19_c00334{bottom:291.613333pt;}
.y18_c00334{bottom:314.146667pt;}
.y17_c00334{bottom:335.080000pt;}
.y16_c00334{bottom:356.680000pt;}
.y15_c00334{bottom:378.946667pt;}
.y14_c00334{bottom:400.546667pt;}
.y13_c00334{bottom:421.480000pt;}
.y12_c00334{bottom:443.480000pt;}
.y11_c00334{bottom:465.346667pt;}
.y10_c00334{bottom:485.746667pt;}
.yf_c00334{bottom:509.480000pt;}
.ye_c00334{bottom:530.680000pt;}
.yd_c00334{bottom:549.613333pt;}
.yc_c00334{bottom:570.946667pt;}
.yb_c00334{bottom:592.013333pt;}
.ya_c00334{bottom:613.613333pt;}
.y9_c00334{bottom:635.213333pt;}
.y8_c00334{bottom:656.680000pt;}
.y7_c00334{bottom:679.880000pt;}
.y6_c00334{bottom:700.013333pt;}
.y5_c00334{bottom:721.613333pt;}
.y4_c00334{bottom:743.213333pt;}
.y3_c00334{bottom:764.413333pt;}
.y2_c00334{bottom:781.213333pt;}
.y1_c00334{bottom:811.613333pt;}
.hc_c00334{height:11.733399pt;}
.hb_c00334{height:37.625000pt;}
.hd_c00334{height:38.937500pt;}
.h5_c00334{height:60.773438pt;}
.h6_c00334{height:64.149740pt;}
.h3_c00334{height:70.664062pt;}
.h9_c00334{height:73.978667pt;}
.h4_c00334{height:74.906250pt;}
.ha_c00334{height:81.031250pt;}
.h8_c00334{height:81.045333pt;}
.h7_c00334{height:87.783854pt;}
.h2_c00334{height:88.940104pt;}
.h0_c00334{height:879.133333pt;}
.h1_c00334{height:879.333333pt;}
.w1_c00334{width:93.222667pt;}
.w0_c00334{width:597.333333pt;}
.x0_c00334{left:0.000000pt;}
.x3_c00334{left:34.000000pt;}
.x2_c00334{left:36.666667pt;}
.x5_c00334{left:38.400000pt;}
.x6_c00334{left:39.866667pt;}
.x4_c00334{left:41.333333pt;}
.x7_c00334{left:42.400000pt;}
.x1_c00334{left:51.600000pt;}
.x9_c00334{left:255.834880pt;}
.x8_c00334{left:449.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_3b0343593a2eecdb7a356c0b.woff2')format("woff");}.ff1_c00335{font-family:ff1_c00335;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00335;src:url('chunks/assets/font_99ad268e81d7851cbe68d2b8.woff2')format("woff");}.ff2_c00335{font-family:ff2_c00335;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00335;src:url('chunks/assets/font_783b31c175d486ecef13c0e6.woff2')format("woff");}.ff3_c00335{font-family:ff3_c00335;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00335;src:url('chunks/assets/font_438e23edc48b037476e86401.woff2')format("woff");}.ff4_c00335{font-family:ff4_c00335;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00335;src:url('chunks/assets/font_0de1df53ad7fa8051f4aa432.woff2')format("woff");}.ff5_c00335{font-family:ff5_c00335;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00335;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c00335{font-family:ff6_c00335;line-height:1.219238;font-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_c00335{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,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;}
.ls1_c00335{letter-spacing:-6.000000px;}
.ls0_c00335{letter-spacing:0.000000px;}
.ls2_c00335{letter-spacing:3.000000px;}
.ls3_c00335{letter-spacing:6.000000px;}
.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:-61.686000px;}
.ws0_c00335{word-spacing:-17.352000px;}
.ws2_c00335{word-spacing:-16.500000px;}
.ws4_c00335{word-spacing:0.000000px;}
.ws3_c00335{word-spacing:1.500000px;}
._1a_c00335{margin-left:-26.730000px;}
._1f_c00335{margin-left:-17.457000px;}
._e_c00335{margin-left:-13.851000px;}
._15_c00335{margin-left:-9.477000px;}
._c_c00335{margin-left:-8.181000px;}
._14_c00335{margin-left:-6.966000px;}
._d_c00335{margin-left:-5.589000px;}
._7_c00335{margin-left:-3.645000px;}
._19_c00335{margin-left:-2.643000px;}
._3_c00335{margin-left:-1.620000px;}
._4_c00335{width:1.296000px;}
._0_c00335{width:2.997000px;}
._6_c00335{width:4.374000px;}
._2_c00335{width:5.994000px;}
._1_c00335{width:7.047000px;}
._9_c00335{width:8.181000px;}
._8_c00335{width:10.044000px;}
._5_c00335{width:11.826000px;}
._11_c00335{width:13.446000px;}
._16_c00335{width:14.823000px;}
._17_c00335{width:16.524000px;}
._a_c00335{width:17.853000px;}
._20_c00335{width:19.992000px;}
._12_c00335{width:22.188000px;}
._22_c00335{width:23.976000px;}
._f_c00335{width:25.029000px;}
._21_c00335{width:26.889000px;}
._1e_c00335{width:29.196000px;}
._1d_c00335{width:32.610000px;}
._18_c00335{width:54.747000px;}
._10_c00335{width:56.538000px;}
._13_c00335{width:184.356000px;}
._b_c00335{width:191.727000px;}
._1c_c00335{width:306.909000px;}
._1b_c00335{width:329.913000px;}
.fc2_c00335{color:transparent;}
.fc1_c00335{color:rgb(128,128,128);}
.fc0_c00335{color:rgb(0,0,0);}
.fs9_c00335{font-size:48.000000px;}
.fs6_c00335{font-size:60.000000px;}
.fs5_c00335{font-size:66.000000px;}
.fs4_c00335{font-size:69.000000px;}
.fs1_c00335{font-size:72.000000px;}
.fs0_c00335{font-size:81.000000px;}
.fs2_c00335{font-size:84.000000px;}
.fs3_c00335{font-size:87.000000px;}
.fs7_c00335{font-size:105.000000px;}
.fs8_c00335{font-size:108.000000px;}
.y0_c00335{bottom:0.000000px;}
.y24_c00335{bottom:3.105000px;}
.y23_c00335{bottom:7.228357px;}
.y22_c00335{bottom:56.430000px;}
.y21_c00335{bottom:83.130000px;}
.y20_c00335{bottom:113.430000px;}
.y1f_c00335{bottom:142.830000px;}
.y1e_c00335{bottom:178.530000px;}
.y1d_c00335{bottom:203.280000px;}
.y1c_c00335{bottom:227.580000px;}
.y1b_c00335{bottom:252.180000px;}
.y1a_c00335{bottom:276.480000px;}
.y19_c00335{bottom:300.780000px;}
.y18_c00335{bottom:326.130000px;}
.y17_c00335{bottom:350.730000px;}
.y16_c00335{bottom:373.980000px;}
.y15_c00335{bottom:398.880000px;}
.y14_c00335{bottom:421.830000px;}
.y13_c00335{bottom:446.880000px;}
.y12_c00335{bottom:470.880000px;}
.y11_c00335{bottom:494.880000px;}
.y10_c00335{bottom:519.030000px;}
.yf_c00335{bottom:543.330000px;}
.ye_c00335{bottom:567.330000px;}
.yd_c00335{bottom:591.630000px;}
.yc_c00335{bottom:615.630000px;}
.yb_c00335{bottom:640.230000px;}
.ya_c00335{bottom:664.530000px;}
.y9_c00335{bottom:690.630000px;}
.y8_c00335{bottom:712.830000px;}
.y7_c00335{bottom:737.130000px;}
.y6_c00335{bottom:761.430000px;}
.y5_c00335{bottom:785.730000px;}
.y4_c00335{bottom:809.730000px;}
.y3_c00335{bottom:834.930000px;}
.y2_c00335{bottom:853.980000px;}
.y1_c00335{bottom:876.930000px;}
.h9_c00335{height:13.200074px;}
.ha_c00335{height:43.804688px;}
.h6_c00335{height:58.857422px;}
.h5_c00335{height:58.886719px;}
.h1_c00335{height:79.497070px;}
.h3_c00335{height:82.441406px;}
.h2_c00335{height:84.269531px;}
.h4_c00335{height:91.176000px;}
.h8_c00335{height:108.843750px;}
.h7_c00335{height:122.893066px;}
.h0_c00335{height:995.250000px;}
.w2_c00335{width:104.875500px;}
.w0_c00335{width:667.425000px;}
.w1_c00335{width:667.500000px;}
.x0_c00335{left:0.000000px;}
.x2_c00335{left:40.800000px;}
.x5_c00335{left:42.750000px;}
.xa_c00335{left:46.500000px;}
.x8_c00335{left:67.800000px;}
.x4_c00335{left:69.150000px;}
.x9_c00335{left:124.500000px;}
.x3_c00335{left:128.850000px;}
.x1_c00335{left:132.900000px;}
.x6_c00335{left:133.950000px;}
.x7_c00335{left:135.300000px;}
.xc_c00335{left:137.250000px;}
.xb_c00335{left:138.600000px;}
.xd_c00335{left:163.350000px;}
.xe_c00335{left:188.700000px;}
.x11_c00335{left:285.526749px;}
.xf_c00335{left:544.050000px;}
.x10_c00335{left:548.700000px;}
@media print{
.v0_c00335{vertical-align:0.000000pt;}
.ls1_c00335{letter-spacing:-5.333333pt;}
.ls0_c00335{letter-spacing:0.000000pt;}
.ls2_c00335{letter-spacing:2.666667pt;}
.ls3_c00335{letter-spacing:5.333333pt;}
.ws1_c00335{word-spacing:-54.832000pt;}
.ws0_c00335{word-spacing:-15.424000pt;}
.ws2_c00335{word-spacing:-14.666667pt;}
.ws4_c00335{word-spacing:0.000000pt;}
.ws3_c00335{word-spacing:1.333333pt;}
._1a_c00335{margin-left:-23.760000pt;}
._1f_c00335{margin-left:-15.517333pt;}
._e_c00335{margin-left:-12.312000pt;}
._15_c00335{margin-left:-8.424000pt;}
._c_c00335{margin-left:-7.272000pt;}
._14_c00335{margin-left:-6.192000pt;}
._d_c00335{margin-left:-4.968000pt;}
._7_c00335{margin-left:-3.240000pt;}
._19_c00335{margin-left:-2.349333pt;}
._3_c00335{margin-left:-1.440000pt;}
._4_c00335{width:1.152000pt;}
._0_c00335{width:2.664000pt;}
._6_c00335{width:3.888000pt;}
._2_c00335{width:5.328000pt;}
._1_c00335{width:6.264000pt;}
._9_c00335{width:7.272000pt;}
._8_c00335{width:8.928000pt;}
._5_c00335{width:10.512000pt;}
._11_c00335{width:11.952000pt;}
._16_c00335{width:13.176000pt;}
._17_c00335{width:14.688000pt;}
._a_c00335{width:15.869333pt;}
._20_c00335{width:17.770667pt;}
._12_c00335{width:19.722667pt;}
._22_c00335{width:21.312000pt;}
._f_c00335{width:22.248000pt;}
._21_c00335{width:23.901333pt;}
._1e_c00335{width:25.952000pt;}
._1d_c00335{width:28.986667pt;}
._18_c00335{width:48.664000pt;}
._10_c00335{width:50.256000pt;}
._13_c00335{width:163.872000pt;}
._b_c00335{width:170.424000pt;}
._1c_c00335{width:272.808000pt;}
._1b_c00335{width:293.256000pt;}
.fs9_c00335{font-size:42.666667pt;}
.fs6_c00335{font-size:53.333333pt;}
.fs5_c00335{font-size:58.666667pt;}
.fs4_c00335{font-size:61.333333pt;}
.fs1_c00335{font-size:64.000000pt;}
.fs0_c00335{font-size:72.000000pt;}
.fs2_c00335{font-size:74.666667pt;}
.fs3_c00335{font-size:77.333333pt;}
.fs7_c00335{font-size:93.333333pt;}
.fs8_c00335{font-size:96.000000pt;}
.y0_c00335{bottom:0.000000pt;}
.y24_c00335{bottom:2.760000pt;}
.y23_c00335{bottom:6.425206pt;}
.y22_c00335{bottom:50.160000pt;}
.y21_c00335{bottom:73.893333pt;}
.y20_c00335{bottom:100.826667pt;}
.y1f_c00335{bottom:126.960000pt;}
.y1e_c00335{bottom:158.693333pt;}
.y1d_c00335{bottom:180.693333pt;}
.y1c_c00335{bottom:202.293333pt;}
.y1b_c00335{bottom:224.160000pt;}
.y1a_c00335{bottom:245.760000pt;}
.y19_c00335{bottom:267.360000pt;}
.y18_c00335{bottom:289.893333pt;}
.y17_c00335{bottom:311.760000pt;}
.y16_c00335{bottom:332.426667pt;}
.y15_c00335{bottom:354.560000pt;}
.y14_c00335{bottom:374.960000pt;}
.y13_c00335{bottom:397.226667pt;}
.y12_c00335{bottom:418.560000pt;}
.y11_c00335{bottom:439.893333pt;}
.y10_c00335{bottom:461.360000pt;}
.yf_c00335{bottom:482.960000pt;}
.ye_c00335{bottom:504.293333pt;}
.yd_c00335{bottom:525.893333pt;}
.yc_c00335{bottom:547.226667pt;}
.yb_c00335{bottom:569.093333pt;}
.ya_c00335{bottom:590.693333pt;}
.y9_c00335{bottom:613.893333pt;}
.y8_c00335{bottom:633.626667pt;}
.y7_c00335{bottom:655.226667pt;}
.y6_c00335{bottom:676.826667pt;}
.y5_c00335{bottom:698.426667pt;}
.y4_c00335{bottom:719.760000pt;}
.y3_c00335{bottom:742.160000pt;}
.y2_c00335{bottom:759.093333pt;}
.y1_c00335{bottom:779.493333pt;}
.h9_c00335{height:11.733399pt;}
.ha_c00335{height:38.937500pt;}
.h6_c00335{height:52.317708pt;}
.h5_c00335{height:52.343750pt;}
.h1_c00335{height:70.664062pt;}
.h3_c00335{height:73.281250pt;}
.h2_c00335{height:74.906250pt;}
.h4_c00335{height:81.045333pt;}
.h8_c00335{height:96.750000pt;}
.h7_c00335{height:109.238281pt;}
.h0_c00335{height:884.666667pt;}
.w2_c00335{width:93.222667pt;}
.w0_c00335{width:593.266667pt;}
.w1_c00335{width:593.333333pt;}
.x0_c00335{left:0.000000pt;}
.x2_c00335{left:36.266667pt;}
.x5_c00335{left:38.000000pt;}
.xa_c00335{left:41.333333pt;}
.x8_c00335{left:60.266667pt;}
.x4_c00335{left:61.466667pt;}
.x9_c00335{left:110.666667pt;}
.x3_c00335{left:114.533333pt;}
.x1_c00335{left:118.133333pt;}
.x6_c00335{left:119.066667pt;}
.x7_c00335{left:120.266667pt;}
.xc_c00335{left:122.000000pt;}
.xb_c00335{left:123.200000pt;}
.xd_c00335{left:145.200000pt;}
.xe_c00335{left:167.733333pt;}
.x11_c00335{left:253.801554pt;}
.xf_c00335{left:483.600000pt;}
.x10_c00335{left:487.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e246b68941f0035d24e3caa8.woff2')format("woff");}.ff1_c00336{font-family:ff1_c00336;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00336;src:url('chunks/assets/font_1b800f3452193fc44e2c3daf.woff2')format("woff");}.ff2_c00336{font-family:ff2_c00336;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00336;src:url('chunks/assets/font_d00e356046b2d76cd3a773e9.woff2')format("woff");}.ff3_c00336{font-family:ff3_c00336;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00336;src:url('chunks/assets/font_e41609fab55072438001b008.woff2')format("woff");}.ff4_c00336{font-family:ff4_c00336;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00336;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff5_c00336{font-family:ff5_c00336;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00336;src:url('chunks/assets/font_23f458f937a120df8a1b1546.woff2')format("woff");}.ff6_c00336{font-family:ff6_c00336;line-height:1.437000;font-style:normal;font-weight: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_c00336;src:url('chunks/assets/font_fa9b8e17f4228cd4e984f805.woff2')format("woff");}.ff7_c00336{font-family:ff7_c00336;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00336;src:url('chunks/assets/font_b99e87fe0628e55d31ac9cd4.woff2')format("woff");}.ff8_c00336{font-family:ff8_c00336;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00336;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff9_c00336{font-family:ff9_c00336;line-height:1.219238;font-style: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;}
.ls5_c00336{letter-spacing:-18.000000px;}
.ls4_c00336{letter-spacing:-9.000000px;}
.ls3_c00336{letter-spacing:-6.000000px;}
.ls0_c00336{letter-spacing:0.000000px;}
.ls2_c00336{letter-spacing:3.000000px;}
.ls1_c00336{letter-spacing:6.000000px;}
.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:-61.686000px;}
.ws3_c00336{word-spacing:-38.100000px;}
.ws2_c00336{word-spacing:-33.000000px;}
.ws1_c00336{word-spacing:-17.352000px;}
.ws4_c00336{word-spacing:0.000000px;}
._21_c00336{margin-left:-23.184000px;}
._9_c00336{margin-left:-19.266000px;}
._19_c00336{margin-left:-15.930000px;}
._1e_c00336{margin-left:-14.184000px;}
._14_c00336{margin-left:-13.065000px;}
._23_c00336{margin-left:-11.757000px;}
._27_c00336{margin-left:-10.695000px;}
._a_c00336{margin-left:-8.736000px;}
._26_c00336{margin-left:-7.638000px;}
._d_c00336{margin-left:-6.630000px;}
._10_c00336{margin-left:-5.592000px;}
._8_c00336{margin-left:-3.588000px;}
._7_c00336{margin-left:-1.872000px;}
._b_c00336{width:1.014000px;}
._6_c00336{width:2.028000px;}
._3_c00336{width:3.588000px;}
._5_c00336{width:5.226000px;}
._4_c00336{width:6.708000px;}
._2_c00336{width:7.722000px;}
._0_c00336{width:9.204000px;}
._28_c00336{width:10.212000px;}
._1_c00336{width:11.310000px;}
._c_c00336{width:13.104000px;}
._e_c00336{width:14.430000px;}
._1f_c00336{width:16.101000px;}
._24_c00336{width:17.235000px;}
._12_c00336{width:19.422000px;}
._2a_c00336{width:29.241000px;}
._2f_c00336{width:30.600000px;}
._1b_c00336{width:32.565000px;}
._1d_c00336{width:45.657000px;}
._16_c00336{width:47.385000px;}
._2b_c00336{width:54.903000px;}
._15_c00336{width:57.798000px;}
._17_c00336{width:61.971000px;}
._13_c00336{width:85.023000px;}
._22_c00336{width:101.448000px;}
._18_c00336{width:144.690000px;}
._2d_c00336{width:149.535000px;}
._1a_c00336{width:176.400000px;}
._20_c00336{width:198.285000px;}
._f_c00336{width:209.976000px;}
._1c_c00336{width:211.260000px;}
._30_c00336{width:225.942000px;}
._29_c00336{width:284.658000px;}
._11_c00336{width:297.636000px;}
._25_c00336{width:312.855000px;}
._2e_c00336{width:1184.958000px;}
._2c_c00336{width:1786.293000px;}
.fc2_c00336{color:transparent;}
.fc1_c00336{color:rgb(128,128,128);}
.fc0_c00336{color:rgb(0,0,0);}
.fs3_c00336{font-size:39.000000px;}
.fs8_c00336{font-size:48.000000px;}
.fs2_c00336{font-size:60.000000px;}
.fs6_c00336{font-size:66.000000px;}
.fs1_c00336{font-size:72.000000px;}
.fs0_c00336{font-size:78.000000px;}
.fs4_c00336{font-size:81.000000px;}
.fs5_c00336{font-size:87.000000px;}
.fs7_c00336{font-size:102.000000px;}
.y0_c00336{bottom:0.000000px;}
.y26_c00336{bottom:3.105000px;}
.y25_c00336{bottom:7.228369px;}
.y24_c00336{bottom:35.070000px;}
.y23_c00336{bottom:64.470000px;}
.y22_c00336{bottom:87.120000px;}
.y21_c00336{bottom:111.720000px;}
.y20_c00336{bottom:136.320000px;}
.y1f_c00336{bottom:160.620000px;}
.y1e_c00336{bottom:183.720000px;}
.y1d_c00336{bottom:208.620000px;}
.y1c_c00336{bottom:233.520000px;}
.y1b_c00336{bottom:257.820000px;}
.y1a_c00336{bottom:281.520000px;}
.y19_c00336{bottom:306.120000px;}
.y18_c00336{bottom:330.420000px;}
.y17_c00336{bottom:354.720000px;}
.y16_c00336{bottom:378.570000px;}
.y15_c00336{bottom:402.270000px;}
.y14_c00336{bottom:426.270000px;}
.y13_c00336{bottom:450.570000px;}
.y12_c00336{bottom:474.570000px;}
.y11_c00336{bottom:499.170000px;}
.y10_c00336{bottom:523.020000px;}
.yf_c00336{bottom:547.320000px;}
.ye_c00336{bottom:571.320000px;}
.yd_c00336{bottom:595.020000px;}
.yc_c00336{bottom:619.020000px;}
.yb_c00336{bottom:643.620000px;}
.ya_c00336{bottom:668.520000px;}
.y9_c00336{bottom:691.470000px;}
.y8_c00336{bottom:715.770000px;}
.y7_c00336{bottom:725.220000px;}
.y6_c00336{bottom:740.070000px;}
.y5_c00336{bottom:764.670000px;}
.y4_c00336{bottom:789.420000px;}
.y3_c00336{bottom:814.020000px;}
.y2_c00336{bottom:837.720000px;}
.y1_c00336{bottom:862.920000px;}
.ha_c00336{height:13.200073px;}
.hb_c00336{height:43.804688px;}
.h4_c00336{height:58.886719px;}
.h6_c00336{height:79.497070px;}
.h2_c00336{height:83.226000px;}
.h3_c00336{height:84.269531px;}
.h8_c00336{height:90.560156px;}
.h5_c00336{height:91.160156px;}
.h7_c00336{height:91.176000px;}
.h9_c00336{height:104.839927px;}
.h0_c00336{height:970.350000px;}
.h1_c00336{height:970.500000px;}
.w2_c00336{width:104.875500px;}
.w1_c00336{width:659.250000px;}
.w0_c00336{width:659.325000px;}
.x0_c00336{left:0.000000px;}
.x7_c00336{left:52.650000px;}
.x5_c00336{left:54.300000px;}
.x6_c00336{left:55.350000px;}
.x8_c00336{left:56.700000px;}
.x9_c00336{left:58.500000px;}
.x4_c00336{left:90.750000px;}
.xa_c00336{left:94.800000px;}
.x3_c00336{left:166.350000px;}
.x1_c00336{left:183.600000px;}
.x2_c00336{left:184.650000px;}
.xb_c00336{left:281.476730px;}
@media print{
.v0_c00336{vertical-align:0.000000pt;}
.ls5_c00336{letter-spacing:-16.000000pt;}
.ls4_c00336{letter-spacing:-8.000000pt;}
.ls3_c00336{letter-spacing:-5.333333pt;}
.ls0_c00336{letter-spacing:0.000000pt;}
.ls2_c00336{letter-spacing:2.666667pt;}
.ls1_c00336{letter-spacing:5.333333pt;}
.ws0_c00336{word-spacing:-54.832000pt;}
.ws3_c00336{word-spacing:-33.866667pt;}
.ws2_c00336{word-spacing:-29.333333pt;}
.ws1_c00336{word-spacing:-15.424000pt;}
.ws4_c00336{word-spacing:0.000000pt;}
._21_c00336{margin-left:-20.608000pt;}
._9_c00336{margin-left:-17.125333pt;}
._19_c00336{margin-left:-14.160000pt;}
._1e_c00336{margin-left:-12.608000pt;}
._14_c00336{margin-left:-11.613333pt;}
._23_c00336{margin-left:-10.450667pt;}
._27_c00336{margin-left:-9.506667pt;}
._a_c00336{margin-left:-7.765333pt;}
._26_c00336{margin-left:-6.789333pt;}
._d_c00336{margin-left:-5.893333pt;}
._10_c00336{margin-left:-4.970667pt;}
._8_c00336{margin-left:-3.189333pt;}
._7_c00336{margin-left:-1.664000pt;}
._b_c00336{width:0.901333pt;}
._6_c00336{width:1.802667pt;}
._3_c00336{width:3.189333pt;}
._5_c00336{width:4.645333pt;}
._4_c00336{width:5.962667pt;}
._2_c00336{width:6.864000pt;}
._0_c00336{width:8.181333pt;}
._28_c00336{width:9.077333pt;}
._1_c00336{width:10.053333pt;}
._c_c00336{width:11.648000pt;}
._e_c00336{width:12.826667pt;}
._1f_c00336{width:14.312000pt;}
._24_c00336{width:15.320000pt;}
._12_c00336{width:17.264000pt;}
._2a_c00336{width:25.992000pt;}
._2f_c00336{width:27.200000pt;}
._1b_c00336{width:28.946667pt;}
._1d_c00336{width:40.584000pt;}
._16_c00336{width:42.120000pt;}
._2b_c00336{width:48.802667pt;}
._15_c00336{width:51.376000pt;}
._17_c00336{width:55.085333pt;}
._13_c00336{width:75.576000pt;}
._22_c00336{width:90.176000pt;}
._18_c00336{width:128.613333pt;}
._2d_c00336{width:132.920000pt;}
._1a_c00336{width:156.800000pt;}
._20_c00336{width:176.253333pt;}
._f_c00336{width:186.645333pt;}
._1c_c00336{width:187.786667pt;}
._30_c00336{width:200.837333pt;}
._29_c00336{width:253.029333pt;}
._11_c00336{width:264.565333pt;}
._25_c00336{width:278.093333pt;}
._2e_c00336{width:1053.296000pt;}
._2c_c00336{width:1587.816000pt;}
.fs3_c00336{font-size:34.666667pt;}
.fs8_c00336{font-size:42.666667pt;}
.fs2_c00336{font-size:53.333333pt;}
.fs6_c00336{font-size:58.666667pt;}
.fs1_c00336{font-size:64.000000pt;}
.fs0_c00336{font-size:69.333333pt;}
.fs4_c00336{font-size:72.000000pt;}
.fs5_c00336{font-size:77.333333pt;}
.fs7_c00336{font-size:90.666667pt;}
.y0_c00336{bottom:0.000000pt;}
.y26_c00336{bottom:2.760000pt;}
.y25_c00336{bottom:6.425217pt;}
.y24_c00336{bottom:31.173333pt;}
.y23_c00336{bottom:57.306667pt;}
.y22_c00336{bottom:77.440000pt;}
.y21_c00336{bottom:99.306667pt;}
.y20_c00336{bottom:121.173333pt;}
.y1f_c00336{bottom:142.773333pt;}
.y1e_c00336{bottom:163.306667pt;}
.y1d_c00336{bottom:185.440000pt;}
.y1c_c00336{bottom:207.573333pt;}
.y1b_c00336{bottom:229.173333pt;}
.y1a_c00336{bottom:250.240000pt;}
.y19_c00336{bottom:272.106667pt;}
.y18_c00336{bottom:293.706667pt;}
.y17_c00336{bottom:315.306667pt;}
.y16_c00336{bottom:336.506667pt;}
.y15_c00336{bottom:357.573333pt;}
.y14_c00336{bottom:378.906667pt;}
.y13_c00336{bottom:400.506667pt;}
.y12_c00336{bottom:421.840000pt;}
.y11_c00336{bottom:443.706667pt;}
.y10_c00336{bottom:464.906667pt;}
.yf_c00336{bottom:486.506667pt;}
.ye_c00336{bottom:507.840000pt;}
.yd_c00336{bottom:528.906667pt;}
.yc_c00336{bottom:550.240000pt;}
.yb_c00336{bottom:572.106667pt;}
.ya_c00336{bottom:594.240000pt;}
.y9_c00336{bottom:614.640000pt;}
.y8_c00336{bottom:636.240000pt;}
.y7_c00336{bottom:644.640000pt;}
.y6_c00336{bottom:657.840000pt;}
.y5_c00336{bottom:679.706667pt;}
.y4_c00336{bottom:701.706667pt;}
.y3_c00336{bottom:723.573333pt;}
.y2_c00336{bottom:744.640000pt;}
.y1_c00336{bottom:767.040000pt;}
.ha_c00336{height:11.733399pt;}
.hb_c00336{height:38.937500pt;}
.h4_c00336{height:52.343750pt;}
.h6_c00336{height:70.664062pt;}
.h2_c00336{height:73.978667pt;}
.h3_c00336{height:74.906250pt;}
.h8_c00336{height:80.497917pt;}
.h5_c00336{height:81.031250pt;}
.h7_c00336{height:81.045333pt;}
.h9_c00336{height:93.191046pt;}
.h0_c00336{height:862.533333pt;}
.h1_c00336{height:862.666667pt;}
.w2_c00336{width:93.222667pt;}
.w1_c00336{width:586.000000pt;}
.w0_c00336{width:586.066667pt;}
.x0_c00336{left:0.000000pt;}
.x7_c00336{left:46.800000pt;}
.x5_c00336{left:48.266667pt;}
.x6_c00336{left:49.200000pt;}
.x8_c00336{left:50.400000pt;}
.x9_c00336{left:52.000000pt;}
.x4_c00336{left:80.666667pt;}
.xa_c00336{left:84.266667pt;}
.x3_c00336{left:147.866667pt;}
.x1_c00336{left:163.200000pt;}
.x2_c00336{left:164.133333pt;}
.xb_c00336{left:250.201538pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_bd8c3779607203b85b316974.woff2')format("woff");}.ff1_c00337{font-family:ff1_c00337;line-height:1.437000;font-style:normal;font-weight:normal;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_9dc76d0794604ceb0ef28cd3.woff2')format("woff");}.ff2_c00337{font-family:ff2_c00337;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00337;src:url('chunks/assets/font_d2c0a862c80f53b7d70594fa.woff2')format("woff");}.ff3_c00337{font-family:ff3_c00337;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00337;src:url('chunks/assets/font_3ac2d27c08a6b7cb2b13ed5b.woff2')format("woff");}.ff4_c00337{font-family:ff4_c00337;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00337;src:url('chunks/assets/font_dbcc440b303967a3747b587a.woff2')format("woff");}.ff5_c00337{font-family:ff5_c00337;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00337;src:url('chunks/assets/font_dd7512760ebab950def8c74a.woff2')format("woff");}.ff6_c00337{font-family:ff6_c00337;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00337;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c00337{font-family:ff7_c00337;line-height:1.219238;font-style: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;}
.v1_c00337{vertical-align:147.600000px;}
.ls8_c00337{letter-spacing:-3.000000px;}
.ls7_c00337{letter-spacing:0.000000px;}
.ls2_c00337{letter-spacing:0.600000px;}
.ls1_c00337{letter-spacing:1.500000px;}
.ls4_c00337{letter-spacing:1.632000px;}
.ls3_c00337{letter-spacing:2.400000px;}
.ls5_c00337{letter-spacing:4.200000px;}
.ls0_c00337{letter-spacing:67.989000px;}
.ls6_c00337{letter-spacing:286.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;}
}
.ws0_c00337{word-spacing:-17.352000px;}
.ws1_c00337{word-spacing:0.000000px;}
._1f_c00337{margin-left:-44.754000px;}
._1c_c00337{margin-left:-35.481000px;}
._16_c00337{margin-left:-31.185000px;}
._1d_c00337{margin-left:-27.579000px;}
._21_c00337{margin-left:-26.445000px;}
._1b_c00337{margin-left:-22.860000px;}
._b_c00337{margin-left:-18.561000px;}
._17_c00337{margin-left:-15.471000px;}
._d_c00337{margin-left:-12.834000px;}
._15_c00337{margin-left:-10.623000px;}
._14_c00337{margin-left:-9.318000px;}
._e_c00337{margin-left:-7.740000px;}
._f_c00337{margin-left:-5.817000px;}
._c_c00337{margin-left:-4.554000px;}
._7_c00337{margin-left:-3.105000px;}
._9_c00337{margin-left:-1.932000px;}
._a_c00337{width:1.794000px;}
._8_c00337{width:3.036000px;}
._6_c00337{width:4.071000px;}
._1_c00337{width:5.865000px;}
._11_c00337{width:7.026000px;}
._5_c00337{width:8.073000px;}
._3_c00337{width:9.108000px;}
._19_c00337{width:10.314000px;}
._0_c00337{width:11.385000px;}
._12_c00337{width:12.615000px;}
._10_c00337{width:14.598000px;}
._26_c00337{width:16.464000px;}
._13_c00337{width:17.649000px;}
._25_c00337{width:22.440000px;}
._24_c00337{width:24.138000px;}
._2_c00337{width:25.944000px;}
._1e_c00337{width:28.029000px;}
._23_c00337{width:31.929000px;}
._4_c00337{width:36.777000px;}
._27_c00337{width:81.462000px;}
._28_c00337{width:98.535000px;}
._29_c00337{width:109.752000px;}
._18_c00337{width:139.017000px;}
._22_c00337{width:192.780000px;}
._20_c00337{width:235.332000px;}
._2a_c00337{width:313.215000px;}
._1a_c00337{width:326.646000px;}
._2b_c00337{width:1227.705000px;}
.fc2_c00337{color:transparent;}
.fc1_c00337{color:rgb(128,128,128);}
.fc0_c00337{color:rgb(0,0,0);}
.fs7_c00337{font-size:48.000000px;}
.fs6_c00337{font-size:66.000000px;}
.fs0_c00337{font-size:69.000000px;}
.fs2_c00337{font-size:72.000000px;}
.fs3_c00337{font-size:81.000000px;}
.fs4_c00337{font-size:87.000000px;}
.fs5_c00337{font-size:96.000000px;}
.fs1_c00337{font-size:267.000000px;}
.y0_c00337{bottom:0.000000px;}
.y25_c00337{bottom:3.105000px;}
.y24_c00337{bottom:7.228357px;}
.y23_c00337{bottom:61.530000px;}
.y22_c00337{bottom:87.030000px;}
.y21_c00337{bottom:112.830000px;}
.y20_c00337{bottom:136.380000px;}
.y1f_c00337{bottom:160.080000px;}
.y1e_c00337{bottom:184.380000px;}
.y1d_c00337{bottom:208.680000px;}
.y1c_c00337{bottom:233.280000px;}
.y1b_c00337{bottom:258.630000px;}
.y1a_c00337{bottom:283.530000px;}
.y19_c00337{bottom:306.480000px;}
.y18_c00337{bottom:332.130000px;}
.y17_c00337{bottom:355.830000px;}
.y16_c00337{bottom:380.430000px;}
.y15_c00337{bottom:404.730000px;}
.y14_c00337{bottom:428.580000px;}
.y13_c00337{bottom:451.230000px;}
.y12_c00337{bottom:477.180000px;}
.y11_c00337{bottom:501.630000px;}
.y10_c00337{bottom:525.780000px;}
.yf_c00337{bottom:548.730000px;}
.ye_c00337{bottom:573.030000px;}
.yd_c00337{bottom:597.030000px;}
.yc_c00337{bottom:621.780000px;}
.yb_c00337{bottom:646.080000px;}
.ya_c00337{bottom:669.330000px;}
.y9_c00337{bottom:693.930000px;}
.y8_c00337{bottom:718.230000px;}
.y7_c00337{bottom:741.930000px;}
.y6_c00337{bottom:766.530000px;}
.y5_c00337{bottom:790.530000px;}
.y4_c00337{bottom:814.830000px;}
.y2_c00337{bottom:826.530000px;}
.y3_c00337{bottom:839.430000px;}
.y1_c00337{bottom:888.030000px;}
.h5_c00337{height:13.200074px;}
.h6_c00337{height:43.804688px;}
.h1_c00337{height:72.312000px;}
.h3_c00337{height:79.497070px;}
.h4_c00337{height:84.269531px;}
.h2_c00337{height:261.915527px;}
.h0_c00337{height:995.250000px;}
.w2_c00337{width:104.875500px;}
.w0_c00337{width:667.425000px;}
.w1_c00337{width:667.500000px;}
.x0_c00337{left:0.000000px;}
.x8_c00337{left:25.350000px;}
.x9_c00337{left:27.450000px;}
.x6_c00337{left:28.650000px;}
.x7_c00337{left:30.150000px;}
.xa_c00337{left:46.950000px;}
.xb_c00337{left:97.950000px;}
.xc_c00337{left:105.600000px;}
.x2_c00337{left:110.700000px;}
.x5_c00337{left:118.200000px;}
.x4_c00337{left:120.150000px;}
.x1_c00337{left:158.250000px;}
.x3_c00337{left:183.300000px;}
.xd_c00337{left:285.526749px;}
@media print{
.v0_c00337{vertical-align:0.000000pt;}
.v1_c00337{vertical-align:131.200000pt;}
.ls8_c00337{letter-spacing:-2.666667pt;}
.ls7_c00337{letter-spacing:0.000000pt;}
.ls2_c00337{letter-spacing:0.533333pt;}
.ls1_c00337{letter-spacing:1.333333pt;}
.ls4_c00337{letter-spacing:1.450667pt;}
.ls3_c00337{letter-spacing:2.133333pt;}
.ls5_c00337{letter-spacing:3.733333pt;}
.ls0_c00337{letter-spacing:60.434667pt;}
.ls6_c00337{letter-spacing:254.933333pt;}
.ws0_c00337{word-spacing:-15.424000pt;}
.ws1_c00337{word-spacing:0.000000pt;}
._1f_c00337{margin-left:-39.781333pt;}
._1c_c00337{margin-left:-31.538667pt;}
._16_c00337{margin-left:-27.720000pt;}
._1d_c00337{margin-left:-24.514667pt;}
._21_c00337{margin-left:-23.506667pt;}
._1b_c00337{margin-left:-20.320000pt;}
._b_c00337{margin-left:-16.498667pt;}
._17_c00337{margin-left:-13.752000pt;}
._d_c00337{margin-left:-11.408000pt;}
._15_c00337{margin-left:-9.442667pt;}
._14_c00337{margin-left:-8.282667pt;}
._e_c00337{margin-left:-6.880000pt;}
._f_c00337{margin-left:-5.170667pt;}
._c_c00337{margin-left:-4.048000pt;}
._7_c00337{margin-left:-2.760000pt;}
._9_c00337{margin-left:-1.717333pt;}
._a_c00337{width:1.594667pt;}
._8_c00337{width:2.698667pt;}
._6_c00337{width:3.618667pt;}
._1_c00337{width:5.213333pt;}
._11_c00337{width:6.245333pt;}
._5_c00337{width:7.176000pt;}
._3_c00337{width:8.096000pt;}
._19_c00337{width:9.168000pt;}
._0_c00337{width:10.120000pt;}
._12_c00337{width:11.213333pt;}
._10_c00337{width:12.976000pt;}
._26_c00337{width:14.634667pt;}
._13_c00337{width:15.688000pt;}
._25_c00337{width:19.946667pt;}
._24_c00337{width:21.456000pt;}
._2_c00337{width:23.061333pt;}
._1e_c00337{width:24.914667pt;}
._23_c00337{width:28.381333pt;}
._4_c00337{width:32.690667pt;}
._27_c00337{width:72.410667pt;}
._28_c00337{width:87.586667pt;}
._29_c00337{width:97.557333pt;}
._18_c00337{width:123.570667pt;}
._22_c00337{width:171.360000pt;}
._20_c00337{width:209.184000pt;}
._2a_c00337{width:278.413333pt;}
._1a_c00337{width:290.352000pt;}
._2b_c00337{width:1091.293333pt;}
.fs7_c00337{font-size:42.666667pt;}
.fs6_c00337{font-size:58.666667pt;}
.fs0_c00337{font-size:61.333333pt;}
.fs2_c00337{font-size:64.000000pt;}
.fs3_c00337{font-size:72.000000pt;}
.fs4_c00337{font-size:77.333333pt;}
.fs5_c00337{font-size:85.333333pt;}
.fs1_c00337{font-size:237.333333pt;}
.y0_c00337{bottom:0.000000pt;}
.y25_c00337{bottom:2.760000pt;}
.y24_c00337{bottom:6.425206pt;}
.y23_c00337{bottom:54.693333pt;}
.y22_c00337{bottom:77.360000pt;}
.y21_c00337{bottom:100.293333pt;}
.y20_c00337{bottom:121.226667pt;}
.y1f_c00337{bottom:142.293333pt;}
.y1e_c00337{bottom:163.893333pt;}
.y1d_c00337{bottom:185.493333pt;}
.y1c_c00337{bottom:207.360000pt;}
.y1b_c00337{bottom:229.893333pt;}
.y1a_c00337{bottom:252.026667pt;}
.y19_c00337{bottom:272.426667pt;}
.y18_c00337{bottom:295.226667pt;}
.y17_c00337{bottom:316.293333pt;}
.y16_c00337{bottom:338.160000pt;}
.y15_c00337{bottom:359.760000pt;}
.y14_c00337{bottom:380.960000pt;}
.y13_c00337{bottom:401.093333pt;}
.y12_c00337{bottom:424.160000pt;}
.y11_c00337{bottom:445.893333pt;}
.y10_c00337{bottom:467.360000pt;}
.yf_c00337{bottom:487.760000pt;}
.ye_c00337{bottom:509.360000pt;}
.yd_c00337{bottom:530.693333pt;}
.yc_c00337{bottom:552.693333pt;}
.yb_c00337{bottom:574.293333pt;}
.ya_c00337{bottom:594.960000pt;}
.y9_c00337{bottom:616.826667pt;}
.y8_c00337{bottom:638.426667pt;}
.y7_c00337{bottom:659.493333pt;}
.y6_c00337{bottom:681.360000pt;}
.y5_c00337{bottom:702.693333pt;}
.y4_c00337{bottom:724.293333pt;}
.y2_c00337{bottom:734.693333pt;}
.y3_c00337{bottom:746.160000pt;}
.y1_c00337{bottom:789.360000pt;}
.h5_c00337{height:11.733399pt;}
.h6_c00337{height:38.937500pt;}
.h1_c00337{height:64.277333pt;}
.h3_c00337{height:70.664062pt;}
.h4_c00337{height:74.906250pt;}
.h2_c00337{height:232.813802pt;}
.h0_c00337{height:884.666667pt;}
.w2_c00337{width:93.222667pt;}
.w0_c00337{width:593.266667pt;}
.w1_c00337{width:593.333333pt;}
.x0_c00337{left:0.000000pt;}
.x8_c00337{left:22.533333pt;}
.x9_c00337{left:24.400000pt;}
.x6_c00337{left:25.466667pt;}
.x7_c00337{left:26.800000pt;}
.xa_c00337{left:41.733333pt;}
.xb_c00337{left:87.066667pt;}
.xc_c00337{left:93.866667pt;}
.x2_c00337{left:98.400000pt;}
.x5_c00337{left:105.066667pt;}
.x4_c00337{left:106.800000pt;}
.x1_c00337{left:140.666667pt;}
.x3_c00337{left:162.933333pt;}
.xd_c00337{left:253.801554pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7019c204e2aa45c4ab568487.woff2')format("woff");}.ff1_c00338{font-family:ff1_c00338;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00338;src:url('chunks/assets/font_abdbc3c3eaed42c7df4ff763.woff2')format("woff");}.ff2_c00338{font-family:ff2_c00338;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00338;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff3_c00338{font-family:ff3_c00338;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00338;src:url('chunks/assets/font_f49558518fa242e99ce78501.woff2')format("woff");}.ff4_c00338{font-family:ff4_c00338;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00338;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c00338{font-family:ff5_c00338;line-height:1.219238;font-style: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;}
.ls1_c00338{letter-spacing:-18.000000px;}
.ls0_c00338{letter-spacing:0.000000px;}
.sc__c00338{text-shadow:none;}
.sc0_c00338{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00338{-webkit-text-stroke:0px transparent;}
.sc0_c00338{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00338{word-spacing:-17.352000px;}
.ws1_c00338{word-spacing:0.000000px;}
._22_c00338{margin-left:-27.621000px;}
._13_c00338{margin-left:-23.004000px;}
._b_c00338{margin-left:-18.009000px;}
._1c_c00338{margin-left:-16.704000px;}
._1a_c00338{margin-left:-15.258000px;}
._18_c00338{margin-left:-13.833000px;}
._1e_c00338{margin-left:-12.609000px;}
._27_c00338{margin-left:-11.421000px;}
._19_c00338{margin-left:-10.395000px;}
._c_c00338{margin-left:-8.784000px;}
._a_c00338{margin-left:-6.930000px;}
._3_c00338{margin-left:-5.265000px;}
._4_c00338{margin-left:-4.050000px;}
._8_c00338{margin-left:-2.808000px;}
._5_c00338{margin-left:-1.458000px;}
._15_c00338{width:1.017000px;}
._0_c00338{width:2.106000px;}
._1_c00338{width:3.888000px;}
._2_c00338{width:5.184000px;}
._6_c00338{width:6.885000px;}
._f_c00338{width:8.505000px;}
._10_c00338{width:10.368000px;}
._e_c00338{width:12.312000px;}
._1d_c00338{width:13.596000px;}
._d_c00338{width:15.420000px;}
._28_c00338{width:18.306000px;}
._17_c00338{width:29.988000px;}
._9_c00338{width:32.112000px;}
._29_c00338{width:33.777000px;}
._20_c00338{width:35.451000px;}
._14_c00338{width:38.769000px;}
._25_c00338{width:41.778000px;}
._16_c00338{width:43.254000px;}
._21_c00338{width:76.599000px;}
._12_c00338{width:116.856000px;}
._23_c00338{width:143.532000px;}
._11_c00338{width:181.548000px;}
._26_c00338{width:212.193000px;}
._1f_c00338{width:218.664000px;}
._2a_c00338{width:282.258000px;}
._7_c00338{width:284.310000px;}
._1b_c00338{width:326.745000px;}
._24_c00338{width:1157.247000px;}
.fc2_c00338{color:transparent;}
.fc1_c00338{color:rgb(128,128,128);}
.fc0_c00338{color:rgb(0,0,0);}
.fs3_c00338{font-size:48.000000px;}
.fs1_c00338{font-size:72.000000px;}
.fs0_c00338{font-size:81.000000px;}
.fs2_c00338{font-size:102.000000px;}
.y0_c00338{bottom:0.000000px;}
.y25_c00338{bottom:3.105000px;}
.y24_c00338{bottom:7.228371px;}
.y23_c00338{bottom:68.565000px;}
.y22_c00338{bottom:92.715000px;}
.y21_c00338{bottom:117.765000px;}
.y20_c00338{bottom:142.815000px;}
.y1f_c00338{bottom:166.815000px;}
.y1e_c00338{bottom:190.815000px;}
.y1d_c00338{bottom:216.015000px;}
.y1c_c00338{bottom:240.315000px;}
.y1b_c00338{bottom:263.715000px;}
.y1a_c00338{bottom:288.615000px;}
.y19_c00338{bottom:313.215000px;}
.y18_c00338{bottom:337.215000px;}
.y17_c00338{bottom:361.215000px;}
.y16_c00338{bottom:385.215000px;}
.y15_c00338{bottom:409.365000px;}
.y14_c00338{bottom:433.365000px;}
.y13_c00338{bottom:456.765000px;}
.y12_c00338{bottom:481.065000px;}
.y11_c00338{bottom:505.215000px;}
.y10_c00338{bottom:529.665000px;}
.yf_c00338{bottom:552.915000px;}
.ye_c00338{bottom:576.915000px;}
.yd_c00338{bottom:601.065000px;}
.yc_c00338{bottom:625.365000px;}
.yb_c00338{bottom:648.765000px;}
.ya_c00338{bottom:672.765000px;}
.y9_c00338{bottom:696.915000px;}
.y8_c00338{bottom:720.915000px;}
.y7_c00338{bottom:747.615000px;}
.y6_c00338{bottom:770.265000px;}
.y5_c00338{bottom:794.265000px;}
.y4_c00338{bottom:818.115000px;}
.y3_c00338{bottom:842.415000px;}
.y2_c00338{bottom:869.115000px;}
.y1_c00338{bottom:891.315000px;}
.h6_c00338{height:13.200074px;}
.h7_c00338{height:43.804688px;}
.h2_c00338{height:79.497070px;}
.h3_c00338{height:84.269531px;}
.h4_c00338{height:91.160156px;}
.h5_c00338{height:104.839927px;}
.h0_c00338{height:989.025000px;}
.h1_c00338{height:989.250000px;}
.w1_c00338{width:104.875500px;}
.w0_c00338{width:672.000000px;}
.x0_c00338{left:0.000000px;}
.x6_c00338{left:54.000000px;}
.x3_c00338{left:55.350000px;}
.x5_c00338{left:56.700000px;}
.x8_c00338{left:57.750000px;}
.x7_c00338{left:58.800000px;}
.x4_c00338{left:60.150000px;}
.x2_c00338{left:61.800000px;}
.x1_c00338{left:63.750000px;}
.x9_c00338{left:83.400000px;}
.xb_c00338{left:287.814240px;}
.xa_c00338{left:368.250000px;}
@media print{
.v0_c00338{vertical-align:0.000000pt;}
.ls1_c00338{letter-spacing:-16.000000pt;}
.ls0_c00338{letter-spacing:0.000000pt;}
.ws0_c00338{word-spacing:-15.424000pt;}
.ws1_c00338{word-spacing:0.000000pt;}
._22_c00338{margin-left:-24.552000pt;}
._13_c00338{margin-left:-20.448000pt;}
._b_c00338{margin-left:-16.008000pt;}
._1c_c00338{margin-left:-14.848000pt;}
._1a_c00338{margin-left:-13.562667pt;}
._18_c00338{margin-left:-12.296000pt;}
._1e_c00338{margin-left:-11.208000pt;}
._27_c00338{margin-left:-10.152000pt;}
._19_c00338{margin-left:-9.240000pt;}
._c_c00338{margin-left:-7.808000pt;}
._a_c00338{margin-left:-6.160000pt;}
._3_c00338{margin-left:-4.680000pt;}
._4_c00338{margin-left:-3.600000pt;}
._8_c00338{margin-left:-2.496000pt;}
._5_c00338{margin-left:-1.296000pt;}
._15_c00338{width:0.904000pt;}
._0_c00338{width:1.872000pt;}
._1_c00338{width:3.456000pt;}
._2_c00338{width:4.608000pt;}
._6_c00338{width:6.120000pt;}
._f_c00338{width:7.560000pt;}
._10_c00338{width:9.216000pt;}
._e_c00338{width:10.944000pt;}
._1d_c00338{width:12.085333pt;}
._d_c00338{width:13.706667pt;}
._28_c00338{width:16.272000pt;}
._17_c00338{width:26.656000pt;}
._9_c00338{width:28.544000pt;}
._29_c00338{width:30.024000pt;}
._20_c00338{width:31.512000pt;}
._14_c00338{width:34.461333pt;}
._25_c00338{width:37.136000pt;}
._16_c00338{width:38.448000pt;}
._21_c00338{width:68.088000pt;}
._12_c00338{width:103.872000pt;}
._23_c00338{width:127.584000pt;}
._11_c00338{width:161.376000pt;}
._26_c00338{width:188.616000pt;}
._1f_c00338{width:194.368000pt;}
._2a_c00338{width:250.896000pt;}
._7_c00338{width:252.720000pt;}
._1b_c00338{width:290.440000pt;}
._24_c00338{width:1028.664000pt;}
.fs3_c00338{font-size:42.666667pt;}
.fs1_c00338{font-size:64.000000pt;}
.fs0_c00338{font-size:72.000000pt;}
.fs2_c00338{font-size:90.666667pt;}
.y0_c00338{bottom:0.000000pt;}
.y25_c00338{bottom:2.760000pt;}
.y24_c00338{bottom:6.425219pt;}
.y23_c00338{bottom:60.946667pt;}
.y22_c00338{bottom:82.413333pt;}
.y21_c00338{bottom:104.680000pt;}
.y20_c00338{bottom:126.946667pt;}
.y1f_c00338{bottom:148.280000pt;}
.y1e_c00338{bottom:169.613333pt;}
.y1d_c00338{bottom:192.013333pt;}
.y1c_c00338{bottom:213.613333pt;}
.y1b_c00338{bottom:234.413333pt;}
.y1a_c00338{bottom:256.546667pt;}
.y19_c00338{bottom:278.413333pt;}
.y18_c00338{bottom:299.746667pt;}
.y17_c00338{bottom:321.080000pt;}
.y16_c00338{bottom:342.413333pt;}
.y15_c00338{bottom:363.880000pt;}
.y14_c00338{bottom:385.213333pt;}
.y13_c00338{bottom:406.013333pt;}
.y12_c00338{bottom:427.613333pt;}
.y11_c00338{bottom:449.080000pt;}
.y10_c00338{bottom:470.813333pt;}
.yf_c00338{bottom:491.480000pt;}
.ye_c00338{bottom:512.813333pt;}
.yd_c00338{bottom:534.280000pt;}
.yc_c00338{bottom:555.880000pt;}
.yb_c00338{bottom:576.680000pt;}
.ya_c00338{bottom:598.013333pt;}
.y9_c00338{bottom:619.480000pt;}
.y8_c00338{bottom:640.813333pt;}
.y7_c00338{bottom:664.546667pt;}
.y6_c00338{bottom:684.680000pt;}
.y5_c00338{bottom:706.013333pt;}
.y4_c00338{bottom:727.213333pt;}
.y3_c00338{bottom:748.813333pt;}
.y2_c00338{bottom:772.546667pt;}
.y1_c00338{bottom:792.280000pt;}
.h6_c00338{height:11.733399pt;}
.h7_c00338{height:38.937500pt;}
.h2_c00338{height:70.664062pt;}
.h3_c00338{height:74.906250pt;}
.h4_c00338{height:81.031250pt;}
.h5_c00338{height:93.191046pt;}
.h0_c00338{height:879.133333pt;}
.h1_c00338{height:879.333333pt;}
.w1_c00338{width:93.222667pt;}
.w0_c00338{width:597.333333pt;}
.x0_c00338{left:0.000000pt;}
.x6_c00338{left:48.000000pt;}
.x3_c00338{left:49.200000pt;}
.x5_c00338{left:50.400000pt;}
.x8_c00338{left:51.333333pt;}
.x7_c00338{left:52.266667pt;}
.x4_c00338{left:53.466667pt;}
.x2_c00338{left:54.933333pt;}
.x1_c00338{left:56.666667pt;}
.x9_c00338{left:74.133333pt;}
.xb_c00338{left:255.834880pt;}
.xa_c00338{left:327.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a2acb9fe891e1be5a9f4abad.woff2')format("woff");}.ff1_c00339{font-family:ff1_c00339;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00339;src:url('chunks/assets/font_65d82374a92e76b1fde9ccbf.woff2')format("woff");}.ff2_c00339{font-family:ff2_c00339;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00339;src:url('chunks/assets/font_90de69961afa8aff361e8f66.woff2')format("woff");}.ff3_c00339{font-family:ff3_c00339;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00339;src:url('chunks/assets/font_8455dd5d81eeab2967b63315.woff2')format("woff");}.ff4_c00339{font-family:ff4_c00339;line-height:1.311035;font-style:normal;font-weight:normal;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_346a701407fd63fff0353473.woff2')format("woff");}.ff5_c00339{font-family:ff5_c00339;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00339;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c00339{font-family:ff6_c00339;line-height:1.219238;font-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_c00339{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,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;}
.ls4_c00339{letter-spacing:0.000000px;}
.ls3_c00339{letter-spacing:1.800000px;}
.ls0_c00339{letter-spacing:4.800000px;}
.ls1_c00339{letter-spacing:10.950000px;}
.ls2_c00339{letter-spacing:19.800000px;}
.sc__c00339{text-shadow:none;}
.sc0_c00339{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00339{-webkit-text-stroke:0px transparent;}
.sc0_c00339{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00339{word-spacing:-17.352000px;}
.ws2_c00339{word-spacing:-0.741000px;}
.ws1_c00339{word-spacing:-0.045600px;}
.ws5_c00339{word-spacing:0.000000px;}
.ws3_c00339{word-spacing:0.177000px;}
.ws4_c00339{word-spacing:1.368000px;}
._29_c00339{margin-left:-27.621000px;}
._8_c00339{margin-left:-23.232000px;}
._2d_c00339{margin-left:-21.126000px;}
._2f_c00339{margin-left:-17.325000px;}
._3_c00339{margin-left:-15.552000px;}
._2c_c00339{margin-left:-13.854000px;}
._2b_c00339{margin-left:-11.193000px;}
._d_c00339{margin-left:-8.262000px;}
._1d_c00339{margin-left:-7.197000px;}
._18_c00339{margin-left:-5.871000px;}
._1f_c00339{margin-left:-4.161000px;}
._19_c00339{margin-left:-2.826000px;}
._1b_c00339{margin-left:-1.344000px;}
._27_c00339{width:1.020000px;}
._9_c00339{width:2.160000px;}
._15_c00339{width:4.098000px;}
._16_c00339{width:5.895000px;}
._14_c00339{width:6.936000px;}
._10_c00339{width:8.427000px;}
._12_c00339{width:9.804000px;}
._7_c00339{width:10.872000px;}
._0_c00339{width:12.816000px;}
._1_c00339{width:14.112000px;}
._11_c00339{width:15.285000px;}
._f_c00339{width:16.938000px;}
._6_c00339{width:18.432000px;}
._b_c00339{width:20.304000px;}
._1e_c00339{width:21.420000px;}
._a_c00339{width:22.608000px;}
._17_c00339{width:23.859000px;}
._13_c00339{width:25.239000px;}
._1c_c00339{width:26.481000px;}
._24_c00339{width:27.981000px;}
._4_c00339{width:31.590000px;}
._21_c00339{width:36.156000px;}
._25_c00339{width:37.449000px;}
._22_c00339{width:40.995000px;}
._c_c00339{width:48.534000px;}
._2_c00339{width:56.862000px;}
._5_c00339{width:61.365000px;}
._2e_c00339{width:75.153000px;}
._28_c00339{width:77.901000px;}
._e_c00339{width:81.162000px;}
._2a_c00339{width:100.602000px;}
._20_c00339{width:106.647000px;}
._1a_c00339{width:145.692000px;}
._23_c00339{width:272.970000px;}
._26_c00339{width:401.274000px;}
._30_c00339{width:1674.756000px;}
.fc2_c00339{color:transparent;}
.fc1_c00339{color:rgb(128,128,128);}
.fc0_c00339{color:rgb(0,0,0);}
.fs5_c00339{font-size:45.600000px;}
.fs7_c00339{font-size:48.000000px;}
.fs4_c00339{font-size:57.000000px;}
.fs0_c00339{font-size:60.000000px;}
.fs2_c00339{font-size:66.000000px;}
.fs3_c00339{font-size:72.000000px;}
.fs1_c00339{font-size:81.000000px;}
.fs6_c00339{font-size:108.000000px;}
.y0_c00339{bottom:0.000000px;}
.y26_c00339{bottom:3.105000px;}
.y25_c00339{bottom:7.228369px;}
.y24_c00339{bottom:45.270000px;}
.y23_c00339{bottom:73.920000px;}
.y22_c00339{bottom:99.270000px;}
.y21_c00339{bottom:124.170000px;}
.y20_c00339{bottom:148.770000px;}
.y1f_c00339{bottom:172.770000px;}
.y1e_c00339{bottom:196.770000px;}
.y1d_c00339{bottom:221.370000px;}
.y1c_c00339{bottom:246.270000px;}
.y1b_c00339{bottom:270.570000px;}
.y1a_c00339{bottom:295.320000px;}
.y19_c00339{bottom:318.870000px;}
.y18_c00339{bottom:342.870000px;}
.y17_c00339{bottom:368.820000px;}
.y16_c00339{bottom:392.070000px;}
.y15_c00339{bottom:416.820000px;}
.y14_c00339{bottom:440.820000px;}
.y13_c00339{bottom:465.420000px;}
.y12_c00339{bottom:489.270000px;}
.y11_c00339{bottom:513.570000px;}
.y10_c00339{bottom:536.970000px;}
.yf_c00339{bottom:560.970000px;}
.ye_c00339{bottom:584.820000px;}
.yd_c00339{bottom:609.570000px;}
.yc_c00339{bottom:633.120000px;}
.yb_c00339{bottom:657.720000px;}
.ya_c00339{bottom:681.720000px;}
.y9_c00339{bottom:705.720000px;}
.y8_c00339{bottom:730.320000px;}
.y7_c00339{bottom:753.870000px;}
.y6_c00339{bottom:779.220000px;}
.y5_c00339{bottom:802.170000px;}
.y4_c00339{bottom:827.820000px;}
.y3_c00339{bottom:852.120000px;}
.y2_c00339{bottom:875.070000px;}
.y1_c00339{bottom:909.870000px;}
.h6_c00339{height:13.200073px;}
.h7_c00339{height:43.804688px;}
.h3_c00339{height:57.445312px;}
.h4_c00339{height:79.497070px;}
.h2_c00339{height:84.269531px;}
.h5_c00339{height:108.843750px;}
.h1_c00339{height:981.000000px;}
.h0_c00339{height:981.150000px;}
.w1_c00339{width:104.875500px;}
.w0_c00339{width:657.750000px;}
.x0_c00339{left:0.000000px;}
.xf_c00339{left:35.700000px;}
.x11_c00339{left:37.350000px;}
.x15_c00339{left:39.450000px;}
.x3_c00339{left:42.450000px;}
.x6_c00339{left:80.250000px;}
.x10_c00339{left:101.250000px;}
.x2_c00339{left:106.650000px;}
.x1_c00339{left:109.350000px;}
.x4_c00339{left:110.400000px;}
.x5_c00339{left:111.750000px;}
.x7_c00339{left:113.400000px;}
.x8_c00339{left:114.450000px;}
.x9_c00339{left:115.650000px;}
.xa_c00339{left:117.150000px;}
.xb_c00339{left:118.800000px;}
.xc_c00339{left:122.100000px;}
.xd_c00339{left:123.150000px;}
.xe_c00339{left:124.500000px;}
.x12_c00339{left:125.850000px;}
.x14_c00339{left:128.250000px;}
.x16_c00339{left:130.950000px;}
.x17_c00339{left:132.000000px;}
.x13_c00339{left:141.300000px;}
.x1a_c00339{left:280.689240px;}
.x18_c00339{left:294.600000px;}
.x19_c00339{left:331.050000px;}
@media print{
.v0_c00339{vertical-align:0.000000pt;}
.ls4_c00339{letter-spacing:0.000000pt;}
.ls3_c00339{letter-spacing:1.600000pt;}
.ls0_c00339{letter-spacing:4.266667pt;}
.ls1_c00339{letter-spacing:9.733333pt;}
.ls2_c00339{letter-spacing:17.600000pt;}
.ws0_c00339{word-spacing:-15.424000pt;}
.ws2_c00339{word-spacing:-0.658667pt;}
.ws1_c00339{word-spacing:-0.040533pt;}
.ws5_c00339{word-spacing:0.000000pt;}
.ws3_c00339{word-spacing:0.157333pt;}
.ws4_c00339{word-spacing:1.216000pt;}
._29_c00339{margin-left:-24.552000pt;}
._8_c00339{margin-left:-20.650667pt;}
._2d_c00339{margin-left:-18.778667pt;}
._2f_c00339{margin-left:-15.400000pt;}
._3_c00339{margin-left:-13.824000pt;}
._2c_c00339{margin-left:-12.314667pt;}
._2b_c00339{margin-left:-9.949333pt;}
._d_c00339{margin-left:-7.344000pt;}
._1d_c00339{margin-left:-6.397333pt;}
._18_c00339{margin-left:-5.218667pt;}
._1f_c00339{margin-left:-3.698667pt;}
._19_c00339{margin-left:-2.512000pt;}
._1b_c00339{margin-left:-1.194667pt;}
._27_c00339{width:0.906667pt;}
._9_c00339{width:1.920000pt;}
._15_c00339{width:3.642667pt;}
._16_c00339{width:5.240000pt;}
._14_c00339{width:6.165333pt;}
._10_c00339{width:7.490667pt;}
._12_c00339{width:8.714667pt;}
._7_c00339{width:9.664000pt;}
._0_c00339{width:11.392000pt;}
._1_c00339{width:12.544000pt;}
._11_c00339{width:13.586667pt;}
._f_c00339{width:15.056000pt;}
._6_c00339{width:16.384000pt;}
._b_c00339{width:18.048000pt;}
._1e_c00339{width:19.040000pt;}
._a_c00339{width:20.096000pt;}
._17_c00339{width:21.208000pt;}
._13_c00339{width:22.434667pt;}
._1c_c00339{width:23.538667pt;}
._24_c00339{width:24.872000pt;}
._4_c00339{width:28.080000pt;}
._21_c00339{width:32.138667pt;}
._25_c00339{width:33.288000pt;}
._22_c00339{width:36.440000pt;}
._c_c00339{width:43.141333pt;}
._2_c00339{width:50.544000pt;}
._5_c00339{width:54.546667pt;}
._2e_c00339{width:66.802667pt;}
._28_c00339{width:69.245333pt;}
._e_c00339{width:72.144000pt;}
._2a_c00339{width:89.424000pt;}
._20_c00339{width:94.797333pt;}
._1a_c00339{width:129.504000pt;}
._23_c00339{width:242.640000pt;}
._26_c00339{width:356.688000pt;}
._30_c00339{width:1488.672000pt;}
.fs5_c00339{font-size:40.533333pt;}
.fs7_c00339{font-size:42.666667pt;}
.fs4_c00339{font-size:50.666667pt;}
.fs0_c00339{font-size:53.333333pt;}
.fs2_c00339{font-size:58.666667pt;}
.fs3_c00339{font-size:64.000000pt;}
.fs1_c00339{font-size:72.000000pt;}
.fs6_c00339{font-size:96.000000pt;}
.y0_c00339{bottom:0.000000pt;}
.y26_c00339{bottom:2.760000pt;}
.y25_c00339{bottom:6.425217pt;}
.y24_c00339{bottom:40.240000pt;}
.y23_c00339{bottom:65.706667pt;}
.y22_c00339{bottom:88.240000pt;}
.y21_c00339{bottom:110.373333pt;}
.y20_c00339{bottom:132.240000pt;}
.y1f_c00339{bottom:153.573333pt;}
.y1e_c00339{bottom:174.906667pt;}
.y1d_c00339{bottom:196.773333pt;}
.y1c_c00339{bottom:218.906667pt;}
.y1b_c00339{bottom:240.506667pt;}
.y1a_c00339{bottom:262.506667pt;}
.y19_c00339{bottom:283.440000pt;}
.y18_c00339{bottom:304.773333pt;}
.y17_c00339{bottom:327.840000pt;}
.y16_c00339{bottom:348.506667pt;}
.y15_c00339{bottom:370.506667pt;}
.y14_c00339{bottom:391.840000pt;}
.y13_c00339{bottom:413.706667pt;}
.y12_c00339{bottom:434.906667pt;}
.y11_c00339{bottom:456.506667pt;}
.y10_c00339{bottom:477.306667pt;}
.yf_c00339{bottom:498.640000pt;}
.ye_c00339{bottom:519.840000pt;}
.yd_c00339{bottom:541.840000pt;}
.yc_c00339{bottom:562.773333pt;}
.yb_c00339{bottom:584.640000pt;}
.ya_c00339{bottom:605.973333pt;}
.y9_c00339{bottom:627.306667pt;}
.y8_c00339{bottom:649.173333pt;}
.y7_c00339{bottom:670.106667pt;}
.y6_c00339{bottom:692.640000pt;}
.y5_c00339{bottom:713.040000pt;}
.y4_c00339{bottom:735.840000pt;}
.y3_c00339{bottom:757.440000pt;}
.y2_c00339{bottom:777.840000pt;}
.y1_c00339{bottom:808.773333pt;}
.h6_c00339{height:11.733399pt;}
.h7_c00339{height:38.937500pt;}
.h3_c00339{height:51.062500pt;}
.h4_c00339{height:70.664062pt;}
.h2_c00339{height:74.906250pt;}
.h5_c00339{height:96.750000pt;}
.h1_c00339{height:872.000000pt;}
.h0_c00339{height:872.133333pt;}
.w1_c00339{width:93.222667pt;}
.w0_c00339{width:584.666667pt;}
.x0_c00339{left:0.000000pt;}
.xf_c00339{left:31.733333pt;}
.x11_c00339{left:33.200000pt;}
.x15_c00339{left:35.066667pt;}
.x3_c00339{left:37.733333pt;}
.x6_c00339{left:71.333333pt;}
.x10_c00339{left:90.000000pt;}
.x2_c00339{left:94.800000pt;}
.x1_c00339{left:97.200000pt;}
.x4_c00339{left:98.133333pt;}
.x5_c00339{left:99.333333pt;}
.x7_c00339{left:100.800000pt;}
.x8_c00339{left:101.733333pt;}
.x9_c00339{left:102.800000pt;}
.xa_c00339{left:104.133333pt;}
.xb_c00339{left:105.600000pt;}
.xc_c00339{left:108.533333pt;}
.xd_c00339{left:109.466667pt;}
.xe_c00339{left:110.666667pt;}
.x12_c00339{left:111.866667pt;}
.x14_c00339{left:114.000000pt;}
.x16_c00339{left:116.400000pt;}
.x17_c00339{left:117.333333pt;}
.x13_c00339{left:125.600000pt;}
.x1a_c00339{left:249.501546pt;}
.x18_c00339{left:261.866667pt;}
.x19_c00339{left:294.266667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_7e2929e9fcbabe80ce86c892.woff2')format("woff");}.ff1_c00340{font-family:ff1_c00340;line-height:1.437000;font-style:normal;font-weight:normal;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_f7f42b0a4b90a1a0b13839cb.woff2')format("woff");}.ff2_c00340{font-family:ff2_c00340;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00340;src:url('chunks/assets/font_5c37f8f052c5220b757ce602.woff2')format("woff");}.ff3_c00340{font-family:ff3_c00340;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00340;src:url('chunks/assets/font_afab2753f88ca6ba746cdf98.woff2')format("woff");}.ff4_c00340{font-family:ff4_c00340;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00340;src:url('chunks/assets/font_43c149fe7c70d3fc2144d42a.woff2')format("woff");}.ff5_c00340{font-family:ff5_c00340;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00340;src:url('chunks/assets/font_67cc6a30c67151d0e48875cd.woff2')format("woff");}.ff6_c00340{font-family:ff6_c00340;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00340;src:url('chunks/assets/font_e8056afcdea3bc0954783784.woff2')format("woff");}.ff7_c00340{font-family:ff7_c00340;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00340;src:url('chunks/assets/font_9789508edc020be74c9992b5.woff2')format("woff");}.ff8_c00340{font-family:ff8_c00340;line-height:1.437000;font-style:normal;font-weight: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_c00340;src:url('chunks/assets/font_36cc3ba6fa163d4d3e60bc8c.woff2')format("woff");}.ff9_c00340{font-family:ff9_c00340;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00340;src:url('chunks/assets/font_c07566f95e1a4172b799ad6e.woff2')format("woff");}.ffa_c00340{font-family:ffa_c00340;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c00340;src:url('chunks/assets/font_ed2ddf946fcab708e9a4688a.woff2')format("woff");}.ffb_c00340{font-family:ffb_c00340;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc_c00340;src:url('chunks/assets/font_07415bb71ba0993636ae4ef7.woff2')format("woff");}.ffc_c00340{font-family:ffc_c00340;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd_c00340;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ffd_c00340{font-family:ffd_c00340;line-height:1.219238;font-style: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;}
.ls4_c00340{letter-spacing:-6.000000px;}
.ls3_c00340{letter-spacing:0.000000px;}
.ls5_c00340{letter-spacing:6.000000px;}
.ls1_c00340{letter-spacing:6.462000px;}
.ls2_c00340{letter-spacing:7.800000px;}
.ls0_c00340{letter-spacing:41.262000px;}
.sc__c00340{text-shadow:none;}
.sc0_c00340{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00340{-webkit-text-stroke:0px transparent;}
.sc0_c00340{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00340{word-spacing:-103.581000px;}
.ws7_c00340{word-spacing:-87.333000px;}
.ws0_c00340{word-spacing:-81.690000px;}
.ws4_c00340{word-spacing:-61.686000px;}
.ws2_c00340{word-spacing:-50.505000px;}
.ws6_c00340{word-spacing:-20.250000px;}
.ws3_c00340{word-spacing:-17.352000px;}
.ws5_c00340{word-spacing:-13.737000px;}
.ws8_c00340{word-spacing:0.000000px;}
._1_c00340{margin-left:-56.865000px;}
._2a_c00340{margin-left:-51.825000px;}
._25_c00340{margin-left:-23.700000px;}
._24_c00340{margin-left:-22.374000px;}
._f_c00340{margin-left:-18.873000px;}
._10_c00340{margin-left:-16.827000px;}
._12_c00340{margin-left:-14.112000px;}
._23_c00340{margin-left:-12.798000px;}
._17_c00340{margin-left:-10.611000px;}
._b_c00340{margin-left:-8.109000px;}
._e_c00340{margin-left:-6.396000px;}
._c_c00340{margin-left:-5.187000px;}
._9_c00340{margin-left:-4.002000px;}
._8_c00340{margin-left:-2.673000px;}
._6_c00340{margin-left:-1.134000px;}
._0_c00340{width:1.365000px;}
._3_c00340{width:3.321000px;}
._2_c00340{width:4.536000px;}
._5_c00340{width:6.318000px;}
._7_c00340{width:7.533000px;}
._4_c00340{width:8.853000px;}
._a_c00340{width:10.038000px;}
._16_c00340{width:11.931000px;}
._15_c00340{width:13.338000px;}
._13_c00340{width:15.387000px;}
._26_c00340{width:18.927000px;}
._27_c00340{width:27.030000px;}
._28_c00340{width:29.484000px;}
._14_c00340{width:32.115000px;}
._1b_c00340{width:38.571000px;}
._d_c00340{width:44.502000px;}
._11_c00340{width:45.669000px;}
._29_c00340{width:48.204000px;}
._1c_c00340{width:49.302000px;}
._21_c00340{width:95.295000px;}
._20_c00340{width:182.853000px;}
._19_c00340{width:222.393000px;}
._1f_c00340{width:229.941000px;}
._1a_c00340{width:255.000000px;}
._2b_c00340{width:276.744000px;}
._1d_c00340{width:341.379000px;}
._18_c00340{width:348.462000px;}
._1e_c00340{width:404.190000px;}
._22_c00340{width:588.495000px;}
.fc2_c00340{color:transparent;}
.fc1_c00340{color:rgb(128,128,128);}
.fc0_c00340{color:rgb(0,0,0);}
.fsb_c00340{font-size:48.000000px;}
.fs8_c00340{font-size:57.000000px;}
.fs5_c00340{font-size:66.000000px;}
.fs9_c00340{font-size:69.000000px;}
.fs4_c00340{font-size:72.000000px;}
.fs7_c00340{font-size:78.000000px;}
.fs3_c00340{font-size:81.000000px;}
.fs6_c00340{font-size:87.000000px;}
.fs0_c00340{font-size:105.000000px;}
.fs1_c00340{font-size:114.000000px;}
.fsa_c00340{font-size:129.000000px;}
.fs2_c00340{font-size:153.000000px;}
.y0_c00340{bottom:0.000000px;}
.y27_c00340{bottom:3.105000px;}
.y26_c00340{bottom:7.228371px;}
.y25_c00340{bottom:66.915000px;}
.y24_c00340{bottom:90.915000px;}
.y23_c00340{bottom:116.565000px;}
.y22_c00340{bottom:140.415000px;}
.y21_c00340{bottom:164.715000px;}
.y20_c00340{bottom:189.015000px;}
.y1f_c00340{bottom:213.615000px;}
.y1e_c00340{bottom:237.915000px;}
.y1d_c00340{bottom:262.065000px;}
.y1c_c00340{bottom:286.515000px;}
.y1b_c00340{bottom:310.965000px;}
.y1a_c00340{bottom:335.565000px;}
.y19_c00340{bottom:359.415000px;}
.y18_c00340{bottom:383.415000px;}
.y17_c00340{bottom:407.715000px;}
.y16_c00340{bottom:432.465000px;}
.y15_c00340{bottom:455.415000px;}
.y14_c00340{bottom:479.265000px;}
.y13_c00340{bottom:503.265000px;}
.y12_c00340{bottom:527.565000px;}
.y11_c00340{bottom:551.565000px;}
.y10_c00340{bottom:575.565000px;}
.yf_c00340{bottom:599.415000px;}
.ye_c00340{bottom:611.565000px;}
.yd_c00340{bottom:623.415000px;}
.yc_c00340{bottom:647.715000px;}
.yb_c00340{bottom:672.315000px;}
.ya_c00340{bottom:696.015000px;}
.y9_c00340{bottom:720.015000px;}
.y8_c00340{bottom:744.315000px;}
.y7_c00340{bottom:768.615000px;}
.y6_c00340{bottom:793.815000px;}
.y5_c00340{bottom:818.115000px;}
.y4_c00340{bottom:841.815000px;}
.y3_c00340{bottom:865.065000px;}
.y2_c00340{bottom:889.665000px;}
.y1_c00340{bottom:922.815000px;}
.ha_c00340{height:13.200074px;}
.hb_c00340{height:43.804688px;}
.h3_c00340{height:79.497070px;}
.h8_c00340{height:83.226000px;}
.h4_c00340{height:84.269531px;}
.h5_c00340{height:91.160156px;}
.h6_c00340{height:91.176000px;}
.h7_c00340{height:98.756836px;}
.h9_c00340{height:163.328613px;}
.h2_c00340{height:193.715332px;}
.h0_c00340{height:989.025000px;}
.h1_c00340{height:989.250000px;}
.w1_c00340{width:104.875500px;}
.w0_c00340{width:672.000000px;}
.x0_c00340{left:0.000000px;}
.x3_c00340{left:39.450000px;}
.x9_c00340{left:43.800000px;}
.x2_c00340{left:45.300000px;}
.x4_c00340{left:46.500000px;}
.x5_c00340{left:47.550000px;}
.x6_c00340{left:48.600000px;}
.x7_c00340{left:49.950000px;}
.xa_c00340{left:51.000000px;}
.xb_c00340{left:52.200000px;}
.xc_c00340{left:53.250000px;}
.x1_c00340{left:101.250000px;}
.x8_c00340{left:123.900000px;}
.xe_c00340{left:287.814240px;}
.xd_c00340{left:378.900000px;}
@media print{
.v0_c00340{vertical-align:0.000000pt;}
.ls4_c00340{letter-spacing:-5.333333pt;}
.ls3_c00340{letter-spacing:0.000000pt;}
.ls5_c00340{letter-spacing:5.333333pt;}
.ls1_c00340{letter-spacing:5.744000pt;}
.ls2_c00340{letter-spacing:6.933333pt;}
.ls0_c00340{letter-spacing:36.677333pt;}
.ws1_c00340{word-spacing:-92.072000pt;}
.ws7_c00340{word-spacing:-77.629333pt;}
.ws0_c00340{word-spacing:-72.613333pt;}
.ws4_c00340{word-spacing:-54.832000pt;}
.ws2_c00340{word-spacing:-44.893333pt;}
.ws6_c00340{word-spacing:-18.000000pt;}
.ws3_c00340{word-spacing:-15.424000pt;}
.ws5_c00340{word-spacing:-12.210667pt;}
.ws8_c00340{word-spacing:0.000000pt;}
._1_c00340{margin-left:-50.546667pt;}
._2a_c00340{margin-left:-46.066667pt;}
._25_c00340{margin-left:-21.066667pt;}
._24_c00340{margin-left:-19.888000pt;}
._f_c00340{margin-left:-16.776000pt;}
._10_c00340{margin-left:-14.957333pt;}
._12_c00340{margin-left:-12.544000pt;}
._23_c00340{margin-left:-11.376000pt;}
._17_c00340{margin-left:-9.432000pt;}
._b_c00340{margin-left:-7.208000pt;}
._e_c00340{margin-left:-5.685333pt;}
._c_c00340{margin-left:-4.610667pt;}
._9_c00340{margin-left:-3.557333pt;}
._8_c00340{margin-left:-2.376000pt;}
._6_c00340{margin-left:-1.008000pt;}
._0_c00340{width:1.213333pt;}
._3_c00340{width:2.952000pt;}
._2_c00340{width:4.032000pt;}
._5_c00340{width:5.616000pt;}
._7_c00340{width:6.696000pt;}
._4_c00340{width:7.869333pt;}
._a_c00340{width:8.922667pt;}
._16_c00340{width:10.605333pt;}
._15_c00340{width:11.856000pt;}
._13_c00340{width:13.677333pt;}
._26_c00340{width:16.824000pt;}
._27_c00340{width:24.026667pt;}
._28_c00340{width:26.208000pt;}
._14_c00340{width:28.546667pt;}
._1b_c00340{width:34.285333pt;}
._d_c00340{width:39.557333pt;}
._11_c00340{width:40.594667pt;}
._29_c00340{width:42.848000pt;}
._1c_c00340{width:43.824000pt;}
._21_c00340{width:84.706667pt;}
._20_c00340{width:162.536000pt;}
._19_c00340{width:197.682667pt;}
._1f_c00340{width:204.392000pt;}
._1a_c00340{width:226.666667pt;}
._2b_c00340{width:245.994667pt;}
._1d_c00340{width:303.448000pt;}
._18_c00340{width:309.744000pt;}
._1e_c00340{width:359.280000pt;}
._22_c00340{width:523.106667pt;}
.fsb_c00340{font-size:42.666667pt;}
.fs8_c00340{font-size:50.666667pt;}
.fs5_c00340{font-size:58.666667pt;}
.fs9_c00340{font-size:61.333333pt;}
.fs4_c00340{font-size:64.000000pt;}
.fs7_c00340{font-size:69.333333pt;}
.fs3_c00340{font-size:72.000000pt;}
.fs6_c00340{font-size:77.333333pt;}
.fs0_c00340{font-size:93.333333pt;}
.fs1_c00340{font-size:101.333333pt;}
.fsa_c00340{font-size:114.666667pt;}
.fs2_c00340{font-size:136.000000pt;}
.y0_c00340{bottom:0.000000pt;}
.y27_c00340{bottom:2.760000pt;}
.y26_c00340{bottom:6.425219pt;}
.y25_c00340{bottom:59.480000pt;}
.y24_c00340{bottom:80.813333pt;}
.y23_c00340{bottom:103.613333pt;}
.y22_c00340{bottom:124.813333pt;}
.y21_c00340{bottom:146.413333pt;}
.y20_c00340{bottom:168.013333pt;}
.y1f_c00340{bottom:189.880000pt;}
.y1e_c00340{bottom:211.480000pt;}
.y1d_c00340{bottom:232.946667pt;}
.y1c_c00340{bottom:254.680000pt;}
.y1b_c00340{bottom:276.413333pt;}
.y1a_c00340{bottom:298.280000pt;}
.y19_c00340{bottom:319.480000pt;}
.y18_c00340{bottom:340.813333pt;}
.y17_c00340{bottom:362.413333pt;}
.y16_c00340{bottom:384.413333pt;}
.y15_c00340{bottom:404.813333pt;}
.y14_c00340{bottom:426.013333pt;}
.y13_c00340{bottom:447.346667pt;}
.y12_c00340{bottom:468.946667pt;}
.y11_c00340{bottom:490.280000pt;}
.y10_c00340{bottom:511.613333pt;}
.yf_c00340{bottom:532.813333pt;}
.ye_c00340{bottom:543.613333pt;}
.yd_c00340{bottom:554.146667pt;}
.yc_c00340{bottom:575.746667pt;}
.yb_c00340{bottom:597.613333pt;}
.ya_c00340{bottom:618.680000pt;}
.y9_c00340{bottom:640.013333pt;}
.y8_c00340{bottom:661.613333pt;}
.y7_c00340{bottom:683.213333pt;}
.y6_c00340{bottom:705.613333pt;}
.y5_c00340{bottom:727.213333pt;}
.y4_c00340{bottom:748.280000pt;}
.y3_c00340{bottom:768.946667pt;}
.y2_c00340{bottom:790.813333pt;}
.y1_c00340{bottom:820.280000pt;}
.ha_c00340{height:11.733399pt;}
.hb_c00340{height:38.937500pt;}
.h3_c00340{height:70.664062pt;}
.h8_c00340{height:73.978667pt;}
.h4_c00340{height:74.906250pt;}
.h5_c00340{height:81.031250pt;}
.h6_c00340{height:81.045333pt;}
.h7_c00340{height:87.783854pt;}
.h9_c00340{height:145.180990pt;}
.h2_c00340{height:172.191406pt;}
.h0_c00340{height:879.133333pt;}
.h1_c00340{height:879.333333pt;}
.w1_c00340{width:93.222667pt;}
.w0_c00340{width:597.333333pt;}
.x0_c00340{left:0.000000pt;}
.x3_c00340{left:35.066667pt;}
.x9_c00340{left:38.933333pt;}
.x2_c00340{left:40.266667pt;}
.x4_c00340{left:41.333333pt;}
.x5_c00340{left:42.266667pt;}
.x6_c00340{left:43.200000pt;}
.x7_c00340{left:44.400000pt;}
.xa_c00340{left:45.333333pt;}
.xb_c00340{left:46.400000pt;}
.xc_c00340{left:47.333333pt;}
.x1_c00340{left:90.000000pt;}
.x8_c00340{left:110.133333pt;}
.xe_c00340{left:255.834880pt;}
.xd_c00340{left:336.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_39e52f9e66a95ed9eb321257.woff2')format("woff");}.ff1_c00341{font-family:ff1_c00341;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00341;src:url('chunks/assets/font_46621b7639da9994fcc16db2.woff2')format("woff");}.ff2_c00341{font-family:ff2_c00341;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00341;src:url('chunks/assets/font_1e8ee156283423a2435ac02f.woff2')format("woff");}.ff3_c00341{font-family:ff3_c00341;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00341;src:url('chunks/assets/font_3a288211e41d6fe2d3ac92db.woff2')format("woff");}.ff4_c00341{font-family:ff4_c00341;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00341;src:url('chunks/assets/font_d5a46c1dead42e33e7ab7d59.woff2')format("woff");}.ff5_c00341{font-family:ff5_c00341;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00341;src:url('chunks/assets/font_5bec1fa267398d060bc3b469.woff2')format("woff");}.ff6_c00341{font-family:ff6_c00341;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00341;src:url('chunks/assets/font_42d3fd8e883226aaf91bc9af.woff2')format("woff");}.ff7_c00341{font-family:ff7_c00341;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00341;src:url('chunks/assets/font_9679f6f91a9bc0e709f4b253.woff2')format("woff");}.ff8_c00341{font-family:ff8_c00341;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00341;src:url('chunks/assets/font_8e49a9c4c9b426d541b54374.woff2')format("woff");}.ff9_c00341{font-family:ff9_c00341;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00341;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ffa_c00341{font-family:ffa_c00341;line-height:1.219238;font-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_c00341{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,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;}
.ls9_c00341{letter-spacing:-6.000000px;}
.lsa_c00341{letter-spacing:-3.000000px;}
.ls8_c00341{letter-spacing:0.000000px;}
.ls3_c00341{letter-spacing:1.320000px;}
.ls2_c00341{letter-spacing:3.000000px;}
.ls0_c00341{letter-spacing:6.000000px;}
.ls7_c00341{letter-spacing:6.210000px;}
.ls1_c00341{letter-spacing:10.338000px;}
.ls6_c00341{letter-spacing:16.602000px;}
.ls4_c00341{letter-spacing:34.602000px;}
.ls5_c00341{letter-spacing:180.102000px;}
.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:-45.300000px;}
.ws4_c00341{word-spacing:-20.250000px;}
.ws1_c00341{word-spacing:-17.352000px;}
.ws2_c00341{word-spacing:-13.737000px;}
.ws3_c00341{word-spacing:-9.750000px;}
.ws5_c00341{word-spacing:0.000000px;}
._24_c00341{margin-left:-50.586000px;}
._22_c00341{margin-left:-28.836000px;}
._25_c00341{margin-left:-15.201000px;}
._1b_c00341{margin-left:-13.212000px;}
._23_c00341{margin-left:-11.988000px;}
._10_c00341{margin-left:-10.719000px;}
._1e_c00341{margin-left:-9.069000px;}
._d_c00341{margin-left:-7.131000px;}
._e_c00341{margin-left:-5.559000px;}
._8_c00341{margin-left:-3.675000px;}
._0_c00341{margin-left:-2.100000px;}
._f_c00341{margin-left:-1.053000px;}
._1_c00341{width:1.440000px;}
._7_c00341{width:3.255000px;}
._6_c00341{width:4.935000px;}
._9_c00341{width:5.994000px;}
._b_c00341{width:7.041000px;}
._c_c00341{width:9.036000px;}
._11_c00341{width:10.401000px;}
._a_c00341{width:11.664000px;}
._28_c00341{width:12.750000px;}
._2_c00341{width:13.755000px;}
._12_c00341{width:16.107000px;}
._16_c00341{width:17.286000px;}
._19_c00341{width:19.017000px;}
._3_c00341{width:21.105000px;}
._1a_c00341{width:22.218000px;}
._4_c00341{width:23.415000px;}
._1c_c00341{width:25.431000px;}
._26_c00341{width:26.682000px;}
._14_c00341{width:30.660000px;}
._20_c00341{width:35.907000px;}
._1f_c00341{width:41.097000px;}
._21_c00341{width:88.524000px;}
._15_c00341{width:109.605000px;}
._2a_c00341{width:112.209000px;}
._5_c00341{width:123.165000px;}
._1d_c00341{width:181.731000px;}
._17_c00341{width:197.079000px;}
._18_c00341{width:203.634000px;}
._27_c00341{width:219.954000px;}
._13_c00341{width:242.916000px;}
._29_c00341{width:435.744000px;}
._2b_c00341{width:1069.614000px;}
.fc2_c00341{color:transparent;}
.fc1_c00341{color:rgb(128,128,128);}
.fc0_c00341{color:rgb(0,0,0);}
.fs8_c00341{font-size:36.000000px;}
.fsc_c00341{font-size:48.000000px;}
.fsb_c00341{font-size:51.000000px;}
.fs6_c00341{font-size:57.000000px;}
.fs9_c00341{font-size:63.000000px;}
.fs5_c00341{font-size:69.000000px;}
.fs1_c00341{font-size:72.000000px;}
.fs0_c00341{font-size:75.000000px;}
.fs7_c00341{font-size:78.000000px;}
.fs4_c00341{font-size:81.000000px;}
.fs3_c00341{font-size:87.000000px;}
.fs2_c00341{font-size:105.000000px;}
.fsa_c00341{font-size:108.000000px;}
.y0_c00341{bottom:0.000000px;}
.y26_c00341{bottom:3.105000px;}
.y25_c00341{bottom:7.228357px;}
.y24_c00341{bottom:54.630000px;}
.y23_c00341{bottom:77.730000px;}
.y22_c00341{bottom:102.030000px;}
.y21_c00341{bottom:128.580000px;}
.y20_c00341{bottom:153.630000px;}
.y1f_c00341{bottom:177.630000px;}
.y1e_c00341{bottom:202.830000px;}
.y1d_c00341{bottom:250.530000px;}
.y1c_c00341{bottom:298.080000px;}
.y1b_c00341{bottom:323.430000px;}
.y1a_c00341{bottom:348.630000px;}
.y19_c00341{bottom:371.280000px;}
.y18_c00341{bottom:400.230000px;}
.y17_c00341{bottom:421.830000px;}
.y16_c00341{bottom:445.830000px;}
.y15_c00341{bottom:470.880000px;}
.y14_c00341{bottom:494.130000px;}
.y13_c00341{bottom:519.030000px;}
.y12_c00341{bottom:543.780000px;}
.y11_c00341{bottom:567.330000px;}
.y10_c00341{bottom:590.730000px;}
.yf_c00341{bottom:615.330000px;}
.y2_c00341{bottom:631.830000px;}
.ye_c00341{bottom:640.680000px;}
.y1_c00341{bottom:649.680000px;}
.yd_c00341{bottom:661.830000px;}
.yc_c00341{bottom:687.930000px;}
.yb_c00341{bottom:712.530000px;}
.ya_c00341{bottom:736.380000px;}
.y9_c00341{bottom:760.080000px;}
.y8_c00341{bottom:784.680000px;}
.y7_c00341{bottom:808.680000px;}
.y6_c00341{bottom:832.680000px;}
.y5_c00341{bottom:858.630000px;}
.y4_c00341{bottom:880.980000px;}
.y3_c00341{bottom:918.780000px;}
.ha_c00341{height:13.200074px;}
.hb_c00341{height:43.804688px;}
.h9_c00341{height:50.053711px;}
.h4_c00341{height:79.497070px;}
.h1_c00341{height:81.300000px;}
.h2_c00341{height:84.269531px;}
.h7_c00341{height:87.361816px;}
.h5_c00341{height:98.756836px;}
.h3_c00341{height:103.051758px;}
.h8_c00341{height:108.843750px;}
.h6_c00341{height:110.151855px;}
.h0_c00341{height:995.250000px;}
.w2_c00341{width:104.875500px;}
.w0_c00341{width:667.425000px;}
.w1_c00341{width:667.500000px;}
.x0_c00341{left:0.000000px;}
.xe_c00341{left:18.600000px;}
.xf_c00341{left:19.800000px;}
.x9_c00341{left:36.000000px;}
.x1_c00341{left:37.500000px;}
.x8_c00341{left:38.700000px;}
.x11_c00341{left:46.200000px;}
.x6_c00341{left:53.700000px;}
.xc_c00341{left:116.400000px;}
.xd_c00341{left:125.100000px;}
.x5_c00341{left:126.150000px;}
.x4_c00341{left:127.200000px;}
.x3_c00341{left:128.250000px;}
.x2_c00341{left:129.300000px;}
.xb_c00341{left:131.550000px;}
.xa_c00341{left:173.700000px;}
.x7_c00341{left:228.150000px;}
.x12_c00341{left:285.526749px;}
.x10_c00341{left:607.800000px;}
@media print{
.v0_c00341{vertical-align:0.000000pt;}
.ls9_c00341{letter-spacing:-5.333333pt;}
.lsa_c00341{letter-spacing:-2.666667pt;}
.ls8_c00341{letter-spacing:0.000000pt;}
.ls3_c00341{letter-spacing:1.173333pt;}
.ls2_c00341{letter-spacing:2.666667pt;}
.ls0_c00341{letter-spacing:5.333333pt;}
.ls7_c00341{letter-spacing:5.520000pt;}
.ls1_c00341{letter-spacing:9.189333pt;}
.ls6_c00341{letter-spacing:14.757333pt;}
.ls4_c00341{letter-spacing:30.757333pt;}
.ls5_c00341{letter-spacing:160.090667pt;}
.ws0_c00341{word-spacing:-40.266667pt;}
.ws4_c00341{word-spacing:-18.000000pt;}
.ws1_c00341{word-spacing:-15.424000pt;}
.ws2_c00341{word-spacing:-12.210667pt;}
.ws3_c00341{word-spacing:-8.666667pt;}
.ws5_c00341{word-spacing:0.000000pt;}
._24_c00341{margin-left:-44.965333pt;}
._22_c00341{margin-left:-25.632000pt;}
._25_c00341{margin-left:-13.512000pt;}
._1b_c00341{margin-left:-11.744000pt;}
._23_c00341{margin-left:-10.656000pt;}
._10_c00341{margin-left:-9.528000pt;}
._1e_c00341{margin-left:-8.061333pt;}
._d_c00341{margin-left:-6.338667pt;}
._e_c00341{margin-left:-4.941333pt;}
._8_c00341{margin-left:-3.266667pt;}
._0_c00341{margin-left:-1.866667pt;}
._f_c00341{margin-left:-0.936000pt;}
._1_c00341{width:1.280000pt;}
._7_c00341{width:2.893333pt;}
._6_c00341{width:4.386667pt;}
._9_c00341{width:5.328000pt;}
._b_c00341{width:6.258667pt;}
._c_c00341{width:8.032000pt;}
._11_c00341{width:9.245333pt;}
._a_c00341{width:10.368000pt;}
._28_c00341{width:11.333333pt;}
._2_c00341{width:12.226667pt;}
._12_c00341{width:14.317333pt;}
._16_c00341{width:15.365333pt;}
._19_c00341{width:16.904000pt;}
._3_c00341{width:18.760000pt;}
._1a_c00341{width:19.749333pt;}
._4_c00341{width:20.813333pt;}
._1c_c00341{width:22.605333pt;}
._26_c00341{width:23.717333pt;}
._14_c00341{width:27.253333pt;}
._20_c00341{width:31.917333pt;}
._1f_c00341{width:36.530667pt;}
._21_c00341{width:78.688000pt;}
._15_c00341{width:97.426667pt;}
._2a_c00341{width:99.741333pt;}
._5_c00341{width:109.480000pt;}
._1d_c00341{width:161.538667pt;}
._17_c00341{width:175.181333pt;}
._18_c00341{width:181.008000pt;}
._27_c00341{width:195.514667pt;}
._13_c00341{width:215.925333pt;}
._29_c00341{width:387.328000pt;}
._2b_c00341{width:950.768000pt;}
.fs8_c00341{font-size:32.000000pt;}
.fsc_c00341{font-size:42.666667pt;}
.fsb_c00341{font-size:45.333333pt;}
.fs6_c00341{font-size:50.666667pt;}
.fs9_c00341{font-size:56.000000pt;}
.fs5_c00341{font-size:61.333333pt;}
.fs1_c00341{font-size:64.000000pt;}
.fs0_c00341{font-size:66.666667pt;}
.fs7_c00341{font-size:69.333333pt;}
.fs4_c00341{font-size:72.000000pt;}
.fs3_c00341{font-size:77.333333pt;}
.fs2_c00341{font-size:93.333333pt;}
.fsa_c00341{font-size:96.000000pt;}
.y0_c00341{bottom:0.000000pt;}
.y26_c00341{bottom:2.760000pt;}
.y25_c00341{bottom:6.425206pt;}
.y24_c00341{bottom:48.560000pt;}
.y23_c00341{bottom:69.093333pt;}
.y22_c00341{bottom:90.693333pt;}
.y21_c00341{bottom:114.293333pt;}
.y20_c00341{bottom:136.560000pt;}
.y1f_c00341{bottom:157.893333pt;}
.y1e_c00341{bottom:180.293333pt;}
.y1d_c00341{bottom:222.693333pt;}
.y1c_c00341{bottom:264.960000pt;}
.y1b_c00341{bottom:287.493333pt;}
.y1a_c00341{bottom:309.893333pt;}
.y19_c00341{bottom:330.026667pt;}
.y18_c00341{bottom:355.760000pt;}
.y17_c00341{bottom:374.960000pt;}
.y16_c00341{bottom:396.293333pt;}
.y15_c00341{bottom:418.560000pt;}
.y14_c00341{bottom:439.226667pt;}
.y13_c00341{bottom:461.360000pt;}
.y12_c00341{bottom:483.360000pt;}
.y11_c00341{bottom:504.293333pt;}
.y10_c00341{bottom:525.093333pt;}
.yf_c00341{bottom:546.960000pt;}
.y2_c00341{bottom:561.626667pt;}
.ye_c00341{bottom:569.493333pt;}
.y1_c00341{bottom:577.493333pt;}
.yd_c00341{bottom:588.293333pt;}
.yc_c00341{bottom:611.493333pt;}
.yb_c00341{bottom:633.360000pt;}
.ya_c00341{bottom:654.560000pt;}
.y9_c00341{bottom:675.626667pt;}
.y8_c00341{bottom:697.493333pt;}
.y7_c00341{bottom:718.826667pt;}
.y6_c00341{bottom:740.160000pt;}
.y5_c00341{bottom:763.226667pt;}
.y4_c00341{bottom:783.093333pt;}
.y3_c00341{bottom:816.693333pt;}
.ha_c00341{height:11.733399pt;}
.hb_c00341{height:38.937500pt;}
.h9_c00341{height:44.492188pt;}
.h4_c00341{height:70.664062pt;}
.h1_c00341{height:72.266667pt;}
.h2_c00341{height:74.906250pt;}
.h7_c00341{height:77.654948pt;}
.h5_c00341{height:87.783854pt;}
.h3_c00341{height:91.601562pt;}
.h8_c00341{height:96.750000pt;}
.h6_c00341{height:97.912760pt;}
.h0_c00341{height:884.666667pt;}
.w2_c00341{width:93.222667pt;}
.w0_c00341{width:593.266667pt;}
.w1_c00341{width:593.333333pt;}
.x0_c00341{left:0.000000pt;}
.xe_c00341{left:16.533333pt;}
.xf_c00341{left:17.600000pt;}
.x9_c00341{left:32.000000pt;}
.x1_c00341{left:33.333333pt;}
.x8_c00341{left:34.400000pt;}
.x11_c00341{left:41.066667pt;}
.x6_c00341{left:47.733333pt;}
.xc_c00341{left:103.466667pt;}
.xd_c00341{left:111.200000pt;}
.x5_c00341{left:112.133333pt;}
.x4_c00341{left:113.066667pt;}
.x3_c00341{left:114.000000pt;}
.x2_c00341{left:114.933333pt;}
.xb_c00341{left:116.933333pt;}
.xa_c00341{left:154.400000pt;}
.x7_c00341{left:202.800000pt;}
.x12_c00341{left:253.801554pt;}
.x10_c00341{left:540.266667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_5126bb89631062ef6bf88baa.woff2')format("woff");}.ff1_c00342{font-family:ff1_c00342;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00342;src:url('chunks/assets/font_41f5f064af7a1876e5917303.woff2')format("woff");}.ff2_c00342{font-family:ff2_c00342;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00342;src:url('chunks/assets/font_83fa7368436de688ab76ef5e.woff2')format("woff");}.ff3_c00342{font-family:ff3_c00342;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00342;src:url('chunks/assets/font_42cacd22cf984e8e6b8d9e47.woff2')format("woff");}.ff4_c00342{font-family:ff4_c00342;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00342;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c00342{font-family:ff5_c00342;line-height:1.219238;font-style: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);}
.v1_c00342{vertical-align:-1.200000px;}
.v0_c00342{vertical-align:0.000000px;}
.ls2_c00342{letter-spacing:0.000000px;}
.ls0_c00342{letter-spacing:0.960000px;}
.ls1_c00342{letter-spacing:2.202000px;}
.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;}
}
.ws1_c00342{word-spacing:-58.899000px;}
.ws0_c00342{word-spacing:-17.352000px;}
.ws2_c00342{word-spacing:0.000000px;}
._1f_c00342{margin-left:-17.157000px;}
._14_c00342{margin-left:-11.097000px;}
._11_c00342{margin-left:-10.044000px;}
._d_c00342{margin-left:-8.343000px;}
._21_c00342{margin-left:-6.876000px;}
._15_c00342{margin-left:-5.832000px;}
._a_c00342{margin-left:-4.779000px;}
._5_c00342{margin-left:-3.240000px;}
._7_c00342{margin-left:-1.863000px;}
._8_c00342{width:1.620000px;}
._1_c00342{width:2.997000px;}
._6_c00342{width:4.212000px;}
._0_c00342{width:5.670000px;}
._2_c00342{width:6.966000px;}
._4_c00342{width:8.910000px;}
._e_c00342{width:9.963000px;}
._b_c00342{width:11.178000px;}
._c_c00342{width:13.122000px;}
._18_c00342{width:14.256000px;}
._17_c00342{width:15.876000px;}
._9_c00342{width:17.253000px;}
._19_c00342{width:18.954000px;}
._1b_c00342{width:20.169000px;}
._22_c00342{width:21.708000px;}
._1c_c00342{width:22.788000px;}
._1e_c00342{width:26.112000px;}
._13_c00342{width:28.092000px;}
._1d_c00342{width:30.939000px;}
._3_c00342{width:33.291000px;}
._16_c00342{width:37.989000px;}
._12_c00342{width:63.474000px;}
._10_c00342{width:122.352000px;}
._20_c00342{width:184.437000px;}
._23_c00342{width:246.174000px;}
._f_c00342{width:262.602000px;}
._1a_c00342{width:279.459000px;}
.fc2_c00342{color:transparent;}
.fc1_c00342{color:rgb(128,128,128);}
.fc0_c00342{color:rgb(0,0,0);}
.fs5_c00342{font-size:48.000000px;}
.fs3_c00342{font-size:57.000000px;}
.fs1_c00342{font-size:72.000000px;}
.fs2_c00342{font-size:78.000000px;}
.fs0_c00342{font-size:81.000000px;}
.fs4_c00342{font-size:87.000000px;}
.y0_c00342{bottom:0.000000px;}
.y25_c00342{bottom:3.105000px;}
.y24_c00342{bottom:7.228371px;}
.y23_c00342{bottom:54.015000px;}
.y22_c00342{bottom:77.415000px;}
.y21_c00342{bottom:102.015000px;}
.y20_c00342{bottom:127.215000px;}
.y1f_c00342{bottom:151.215000px;}
.y1e_c00342{bottom:176.265000px;}
.y1d_c00342{bottom:200.865000px;}
.y1c_c00342{bottom:224.865000px;}
.y1b_c00342{bottom:249.165000px;}
.y1a_c00342{bottom:273.465000px;}
.y19_c00342{bottom:298.665000px;}
.y18_c00342{bottom:322.365000px;}
.y17_c00342{bottom:346.665000px;}
.y16_c00342{bottom:370.965000px;}
.y15_c00342{bottom:394.515000px;}
.y14_c00342{bottom:418.215000px;}
.y13_c00342{bottom:442.815000px;}
.y12_c00342{bottom:466.515000px;}
.y11_c00342{bottom:490.815000px;}
.y10_c00342{bottom:514.665000px;}
.yf_c00342{bottom:538.365000px;}
.ye_c00342{bottom:562.365000px;}
.yd_c00342{bottom:586.965000px;}
.yc_c00342{bottom:615.015000px;}
.yb_c00342{bottom:639.015000px;}
.ya_c00342{bottom:664.215000px;}
.y9_c00342{bottom:688.215000px;}
.y8_c00342{bottom:712.215000px;}
.y7_c00342{bottom:736.215000px;}
.y6_c00342{bottom:760.365000px;}
.y5_c00342{bottom:784.665000px;}
.y4_c00342{bottom:809.115000px;}
.y3_c00342{bottom:833.265000px;}
.y2_c00342{bottom:858.915000px;}
.y1_c00342{bottom:882.015000px;}
.h8_c00342{height:13.200074px;}
.h9_c00342{height:43.804688px;}
.h6_c00342{height:72.168457px;}
.h2_c00342{height:79.497070px;}
.h5_c00342{height:84.269531px;}
.h3_c00342{height:91.160156px;}
.h4_c00342{height:98.756836px;}
.h7_c00342{height:110.151855px;}
.h0_c00342{height:989.025000px;}
.h1_c00342{height:989.250000px;}
.w1_c00342{width:104.875500px;}
.w0_c00342{width:672.000000px;}
.x0_c00342{left:0.000000px;}
.x3_c00342{left:61.500000px;}
.x1_c00342{left:63.000000px;}
.x2_c00342{left:64.500000px;}
.x4_c00342{left:86.700000px;}
.x6_c00342{left:287.814240px;}
.x5_c00342{left:369.900000px;}
@media print{
.v1_c00342{vertical-align:-1.066667pt;}
.v0_c00342{vertical-align:0.000000pt;}
.ls2_c00342{letter-spacing:0.000000pt;}
.ls0_c00342{letter-spacing:0.853333pt;}
.ls1_c00342{letter-spacing:1.957333pt;}
.ws1_c00342{word-spacing:-52.354667pt;}
.ws0_c00342{word-spacing:-15.424000pt;}
.ws2_c00342{word-spacing:0.000000pt;}
._1f_c00342{margin-left:-15.250667pt;}
._14_c00342{margin-left:-9.864000pt;}
._11_c00342{margin-left:-8.928000pt;}
._d_c00342{margin-left:-7.416000pt;}
._21_c00342{margin-left:-6.112000pt;}
._15_c00342{margin-left:-5.184000pt;}
._a_c00342{margin-left:-4.248000pt;}
._5_c00342{margin-left:-2.880000pt;}
._7_c00342{margin-left:-1.656000pt;}
._8_c00342{width:1.440000pt;}
._1_c00342{width:2.664000pt;}
._6_c00342{width:3.744000pt;}
._0_c00342{width:5.040000pt;}
._2_c00342{width:6.192000pt;}
._4_c00342{width:7.920000pt;}
._e_c00342{width:8.856000pt;}
._b_c00342{width:9.936000pt;}
._c_c00342{width:11.664000pt;}
._18_c00342{width:12.672000pt;}
._17_c00342{width:14.112000pt;}
._9_c00342{width:15.336000pt;}
._19_c00342{width:16.848000pt;}
._1b_c00342{width:17.928000pt;}
._22_c00342{width:19.296000pt;}
._1c_c00342{width:20.256000pt;}
._1e_c00342{width:23.210667pt;}
._13_c00342{width:24.970667pt;}
._1d_c00342{width:27.501333pt;}
._3_c00342{width:29.592000pt;}
._16_c00342{width:33.768000pt;}
._12_c00342{width:56.421333pt;}
._10_c00342{width:108.757333pt;}
._20_c00342{width:163.944000pt;}
._23_c00342{width:218.821333pt;}
._f_c00342{width:233.424000pt;}
._1a_c00342{width:248.408000pt;}
.fs5_c00342{font-size:42.666667pt;}
.fs3_c00342{font-size:50.666667pt;}
.fs1_c00342{font-size:64.000000pt;}
.fs2_c00342{font-size:69.333333pt;}
.fs0_c00342{font-size:72.000000pt;}
.fs4_c00342{font-size:77.333333pt;}
.y0_c00342{bottom:0.000000pt;}
.y25_c00342{bottom:2.760000pt;}
.y24_c00342{bottom:6.425219pt;}
.y23_c00342{bottom:48.013333pt;}
.y22_c00342{bottom:68.813333pt;}
.y21_c00342{bottom:90.680000pt;}
.y20_c00342{bottom:113.080000pt;}
.y1f_c00342{bottom:134.413333pt;}
.y1e_c00342{bottom:156.680000pt;}
.y1d_c00342{bottom:178.546667pt;}
.y1c_c00342{bottom:199.880000pt;}
.y1b_c00342{bottom:221.480000pt;}
.y1a_c00342{bottom:243.080000pt;}
.y19_c00342{bottom:265.480000pt;}
.y18_c00342{bottom:286.546667pt;}
.y17_c00342{bottom:308.146667pt;}
.y16_c00342{bottom:329.746667pt;}
.y15_c00342{bottom:350.680000pt;}
.y14_c00342{bottom:371.746667pt;}
.y13_c00342{bottom:393.613333pt;}
.y12_c00342{bottom:414.680000pt;}
.y11_c00342{bottom:436.280000pt;}
.y10_c00342{bottom:457.480000pt;}
.yf_c00342{bottom:478.546667pt;}
.ye_c00342{bottom:499.880000pt;}
.yd_c00342{bottom:521.746667pt;}
.yc_c00342{bottom:546.680000pt;}
.yb_c00342{bottom:568.013333pt;}
.ya_c00342{bottom:590.413333pt;}
.y9_c00342{bottom:611.746667pt;}
.y8_c00342{bottom:633.080000pt;}
.y7_c00342{bottom:654.413333pt;}
.y6_c00342{bottom:675.880000pt;}
.y5_c00342{bottom:697.480000pt;}
.y4_c00342{bottom:719.213333pt;}
.y3_c00342{bottom:740.680000pt;}
.y2_c00342{bottom:763.480000pt;}
.y1_c00342{bottom:784.013333pt;}
.h8_c00342{height:11.733399pt;}
.h9_c00342{height:38.937500pt;}
.h6_c00342{height:64.149740pt;}
.h2_c00342{height:70.664062pt;}
.h5_c00342{height:74.906250pt;}
.h3_c00342{height:81.031250pt;}
.h4_c00342{height:87.783854pt;}
.h7_c00342{height:97.912760pt;}
.h0_c00342{height:879.133333pt;}
.h1_c00342{height:879.333333pt;}
.w1_c00342{width:93.222667pt;}
.w0_c00342{width:597.333333pt;}
.x0_c00342{left:0.000000pt;}
.x3_c00342{left:54.666667pt;}
.x1_c00342{left:56.000000pt;}
.x2_c00342{left:57.333333pt;}
.x4_c00342{left:77.066667pt;}
.x6_c00342{left:255.834880pt;}
.x5_c00342{left:328.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_6745d4fa553bf6f1f1cd5d0f.woff2')format("woff");}.ff1_c00343{font-family:ff1_c00343;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00343;src:url('chunks/assets/font_bb0f1b74c9c1153b6e736dc2.woff2')format("woff");}.ff2_c00343{font-family:ff2_c00343;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00343;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff3_c00343{font-family:ff3_c00343;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00343;src:url('chunks/assets/font_c5ebebefb5d9604b8ee0dbda.woff2')format("woff");}.ff4_c00343{font-family:ff4_c00343;line-height:1.437000;font-style:normal;font-weight:normal;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_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c00343{font-family:ff5_c00343;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00343{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00343{vertical-align:0.000000px;}
.ls2_c00343{letter-spacing:-6.000000px;}
.ls1_c00343{letter-spacing:0.000000px;}
.ls0_c00343{letter-spacing:5.682000px;}
.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;}
}
.ws1_c00343{word-spacing:-61.686000px;}
.ws2_c00343{word-spacing:-20.250000px;}
.ws0_c00343{word-spacing:-17.352000px;}
.ws3_c00343{word-spacing:0.000000px;}
._12_c00343{margin-left:-24.597000px;}
._1d_c00343{margin-left:-21.708000px;}
._24_c00343{margin-left:-17.307000px;}
._19_c00343{margin-left:-13.896000px;}
._16_c00343{margin-left:-12.861000px;}
._15_c00343{margin-left:-9.720000px;}
._d_c00343{margin-left:-8.244000px;}
._e_c00343{margin-left:-6.696000px;}
._6_c00343{margin-left:-5.589000px;}
._f_c00343{margin-left:-4.473000px;}
._8_c00343{margin-left:-2.511000px;}
._c_c00343{margin-left:-1.440000px;}
._4_c00343{width:1.782000px;}
._3_c00343{width:3.402000px;}
._2_c00343{width:4.860000px;}
._5_c00343{width:5.913000px;}
._1_c00343{width:7.209000px;}
._14_c00343{width:8.343000px;}
._0_c00343{width:10.206000px;}
._1c_c00343{width:11.715000px;}
._23_c00343{width:12.738000px;}
._1e_c00343{width:14.094000px;}
._1f_c00343{width:16.050000px;}
._20_c00343{width:18.537000px;}
._9_c00343{width:21.384000px;}
._1b_c00343{width:22.665000px;}
._21_c00343{width:24.309000px;}
._22_c00343{width:27.798000px;}
._b_c00343{width:29.754000px;}
._a_c00343{width:38.070000px;}
._1a_c00343{width:46.332000px;}
._18_c00343{width:48.111000px;}
._17_c00343{width:50.490000px;}
._7_c00343{width:93.798000px;}
._10_c00343{width:195.165000px;}
._13_c00343{width:248.589000px;}
._11_c00343{width:439.188000px;}
.fc2_c00343{color:transparent;}
.fc1_c00343{color:rgb(128,128,128);}
.fc0_c00343{color:rgb(0,0,0);}
.fs3_c00343{font-size:48.000000px;}
.fs1_c00343{font-size:72.000000px;}
.fs0_c00343{font-size:81.000000px;}
.fs2_c00343{font-size:87.000000px;}
.y0_c00343{bottom:0.000000px;}
.y25_c00343{bottom:3.105000px;}
.y24_c00343{bottom:7.228357px;}
.y23_c00343{bottom:57.780000px;}
.y22_c00343{bottom:82.080000px;}
.y21_c00343{bottom:109.980000px;}
.y20_c00343{bottom:135.030000px;}
.y1f_c00343{bottom:156.630000px;}
.y1e_c00343{bottom:184.230000px;}
.y1d_c00343{bottom:208.530000px;}
.y1c_c00343{bottom:231.930000px;}
.y1b_c00343{bottom:257.280000px;}
.y1a_c00343{bottom:281.880000px;}
.y19_c00343{bottom:304.830000px;}
.y18_c00343{bottom:330.180000px;}
.y17_c00343{bottom:354.480000px;}
.y16_c00343{bottom:379.380000px;}
.y15_c00343{bottom:403.980000px;}
.y14_c00343{bottom:427.380000px;}
.y13_c00343{bottom:452.280000px;}
.y12_c00343{bottom:476.880000px;}
.y11_c00343{bottom:500.880000px;}
.y10_c00343{bottom:524.880000px;}
.yf_c00343{bottom:548.430000px;}
.ye_c00343{bottom:572.430000px;}
.yd_c00343{bottom:597.030000px;}
.yc_c00343{bottom:621.330000px;}
.yb_c00343{bottom:645.930000px;}
.ya_c00343{bottom:668.580000px;}
.y9_c00343{bottom:694.230000px;}
.y8_c00343{bottom:718.230000px;}
.y7_c00343{bottom:742.530000px;}
.y6_c00343{bottom:766.530000px;}
.y5_c00343{bottom:790.530000px;}
.y4_c00343{bottom:815.730000px;}
.y3_c00343{bottom:839.130000px;}
.y2_c00343{bottom:863.430000px;}
.y1_c00343{bottom:887.730000px;}
.h5_c00343{height:13.200074px;}
.h6_c00343{height:43.804688px;}
.h1_c00343{height:79.497070px;}
.h2_c00343{height:84.269531px;}
.h3_c00343{height:91.160156px;}
.h4_c00343{height:91.176000px;}
.h0_c00343{height:995.250000px;}
.w2_c00343{width:104.875500px;}
.w0_c00343{width:667.425000px;}
.w1_c00343{width:667.500000px;}
.x0_c00343{left:0.000000px;}
.x3_c00343{left:27.900000px;}
.x4_c00343{left:29.100000px;}
.x5_c00343{left:31.350000px;}
.x8_c00343{left:33.000000px;}
.x10_c00343{left:38.100000px;}
.xf_c00343{left:39.450000px;}
.x2_c00343{left:80.700000px;}
.x9_c00343{left:82.950000px;}
.x11_c00343{left:97.200000px;}
.x1_c00343{left:120.450000px;}
.x6_c00343{left:122.850000px;}
.x7_c00343{left:123.900000px;}
.xa_c00343{left:126.150000px;}
.xb_c00343{left:127.200000px;}
.xc_c00343{left:128.250000px;}
.xd_c00343{left:129.300000px;}
.xe_c00343{left:130.350000px;}
.x12_c00343{left:131.400000px;}
.x14_c00343{left:285.526749px;}
.x13_c00343{left:567.300000px;}
@media print{
.v0_c00343{vertical-align:0.000000pt;}
.ls2_c00343{letter-spacing:-5.333333pt;}
.ls1_c00343{letter-spacing:0.000000pt;}
.ls0_c00343{letter-spacing:5.050667pt;}
.ws1_c00343{word-spacing:-54.832000pt;}
.ws2_c00343{word-spacing:-18.000000pt;}
.ws0_c00343{word-spacing:-15.424000pt;}
.ws3_c00343{word-spacing:0.000000pt;}
._12_c00343{margin-left:-21.864000pt;}
._1d_c00343{margin-left:-19.296000pt;}
._24_c00343{margin-left:-15.384000pt;}
._19_c00343{margin-left:-12.352000pt;}
._16_c00343{margin-left:-11.432000pt;}
._15_c00343{margin-left:-8.640000pt;}
._d_c00343{margin-left:-7.328000pt;}
._e_c00343{margin-left:-5.952000pt;}
._6_c00343{margin-left:-4.968000pt;}
._f_c00343{margin-left:-3.976000pt;}
._8_c00343{margin-left:-2.232000pt;}
._c_c00343{margin-left:-1.280000pt;}
._4_c00343{width:1.584000pt;}
._3_c00343{width:3.024000pt;}
._2_c00343{width:4.320000pt;}
._5_c00343{width:5.256000pt;}
._1_c00343{width:6.408000pt;}
._14_c00343{width:7.416000pt;}
._0_c00343{width:9.072000pt;}
._1c_c00343{width:10.413333pt;}
._23_c00343{width:11.322667pt;}
._1e_c00343{width:12.528000pt;}
._1f_c00343{width:14.266667pt;}
._20_c00343{width:16.477333pt;}
._9_c00343{width:19.008000pt;}
._1b_c00343{width:20.146667pt;}
._21_c00343{width:21.608000pt;}
._22_c00343{width:24.709333pt;}
._b_c00343{width:26.448000pt;}
._a_c00343{width:33.840000pt;}
._1a_c00343{width:41.184000pt;}
._18_c00343{width:42.765333pt;}
._17_c00343{width:44.880000pt;}
._7_c00343{width:83.376000pt;}
._10_c00343{width:173.480000pt;}
._13_c00343{width:220.968000pt;}
._11_c00343{width:390.389333pt;}
.fs3_c00343{font-size:42.666667pt;}
.fs1_c00343{font-size:64.000000pt;}
.fs0_c00343{font-size:72.000000pt;}
.fs2_c00343{font-size:77.333333pt;}
.y0_c00343{bottom:0.000000pt;}
.y25_c00343{bottom:2.760000pt;}
.y24_c00343{bottom:6.425206pt;}
.y23_c00343{bottom:51.360000pt;}
.y22_c00343{bottom:72.960000pt;}
.y21_c00343{bottom:97.760000pt;}
.y20_c00343{bottom:120.026667pt;}
.y1f_c00343{bottom:139.226667pt;}
.y1e_c00343{bottom:163.760000pt;}
.y1d_c00343{bottom:185.360000pt;}
.y1c_c00343{bottom:206.160000pt;}
.y1b_c00343{bottom:228.693333pt;}
.y1a_c00343{bottom:250.560000pt;}
.y19_c00343{bottom:270.960000pt;}
.y18_c00343{bottom:293.493333pt;}
.y17_c00343{bottom:315.093333pt;}
.y16_c00343{bottom:337.226667pt;}
.y15_c00343{bottom:359.093333pt;}
.y14_c00343{bottom:379.893333pt;}
.y13_c00343{bottom:402.026667pt;}
.y12_c00343{bottom:423.893333pt;}
.y11_c00343{bottom:445.226667pt;}
.y10_c00343{bottom:466.560000pt;}
.yf_c00343{bottom:487.493333pt;}
.ye_c00343{bottom:508.826667pt;}
.yd_c00343{bottom:530.693333pt;}
.yc_c00343{bottom:552.293333pt;}
.yb_c00343{bottom:574.160000pt;}
.ya_c00343{bottom:594.293333pt;}
.y9_c00343{bottom:617.093333pt;}
.y8_c00343{bottom:638.426667pt;}
.y7_c00343{bottom:660.026667pt;}
.y6_c00343{bottom:681.360000pt;}
.y5_c00343{bottom:702.693333pt;}
.y4_c00343{bottom:725.093333pt;}
.y3_c00343{bottom:745.893333pt;}
.y2_c00343{bottom:767.493333pt;}
.y1_c00343{bottom:789.093333pt;}
.h5_c00343{height:11.733399pt;}
.h6_c00343{height:38.937500pt;}
.h1_c00343{height:70.664062pt;}
.h2_c00343{height:74.906250pt;}
.h3_c00343{height:81.031250pt;}
.h4_c00343{height:81.045333pt;}
.h0_c00343{height:884.666667pt;}
.w2_c00343{width:93.222667pt;}
.w0_c00343{width:593.266667pt;}
.w1_c00343{width:593.333333pt;}
.x0_c00343{left:0.000000pt;}
.x3_c00343{left:24.800000pt;}
.x4_c00343{left:25.866667pt;}
.x5_c00343{left:27.866667pt;}
.x8_c00343{left:29.333333pt;}
.x10_c00343{left:33.866667pt;}
.xf_c00343{left:35.066667pt;}
.x2_c00343{left:71.733333pt;}
.x9_c00343{left:73.733333pt;}
.x11_c00343{left:86.400000pt;}
.x1_c00343{left:107.066667pt;}
.x6_c00343{left:109.200000pt;}
.x7_c00343{left:110.133333pt;}
.xa_c00343{left:112.133333pt;}
.xb_c00343{left:113.066667pt;}
.xc_c00343{left:114.000000pt;}
.xd_c00343{left:114.933333pt;}
.xe_c00343{left:115.866667pt;}
.x12_c00343{left:116.800000pt;}
.x14_c00343{left:253.801554pt;}
.x13_c00343{left:504.266667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_26e7399d5e7ee0fa953c5cd8.woff2')format("woff");}.ff1_c00344{font-family:ff1_c00344;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00344;src:url('chunks/assets/font_fccf325f5cbb04c782e9eb45.woff2')format("woff");}.ff2_c00344{font-family:ff2_c00344;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00344;src:url('chunks/assets/font_0d3fb3cea402d6daeeb5e633.woff2')format("woff");}.ff3_c00344{font-family:ff3_c00344;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00344;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff4_c00344{font-family:ff4_c00344;line-height:1.219238;font-style: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;}
.ls0_c00344{letter-spacing:0.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:-13.737000px;}
.ws1_c00344{word-spacing:0.000000px;}
._26_c00344{margin-left:-28.851000px;}
._29_c00344{margin-left:-21.888000px;}
._23_c00344{margin-left:-20.835000px;}
._2a_c00344{margin-left:-19.764000px;}
._17_c00344{margin-left:-18.711000px;}
._20_c00344{margin-left:-16.146000px;}
._12_c00344{margin-left:-14.901000px;}
._2_c00344{margin-left:-10.989000px;}
._f_c00344{margin-left:-9.792000px;}
._10_c00344{margin-left:-8.034000px;}
._b_c00344{margin-left:-6.966000px;}
._e_c00344{margin-left:-5.760000px;}
._0_c00344{margin-left:-4.455000px;}
._1_c00344{margin-left:-2.673000px;}
._3_c00344{margin-left:-1.584000px;}
._d_c00344{width:1.134000px;}
._a_c00344{width:2.592000px;}
._7_c00344{width:3.645000px;}
._8_c00344{width:4.779000px;}
._9_c00344{width:6.237000px;}
._14_c00344{width:7.371000px;}
._c_c00344{width:8.424000px;}
._1b_c00344{width:9.561000px;}
._13_c00344{width:10.731000px;}
._19_c00344{width:12.357000px;}
._25_c00344{width:14.037000px;}
._28_c00344{width:15.078000px;}
._1a_c00344{width:16.605000px;}
._2d_c00344{width:23.571000px;}
._5_c00344{width:26.037000px;}
._21_c00344{width:27.456000px;}
._6_c00344{width:39.501000px;}
._4_c00344{width:44.748000px;}
._1d_c00344{width:63.261000px;}
._2b_c00344{width:75.912000px;}
._18_c00344{width:89.601000px;}
._15_c00344{width:104.856000px;}
._1c_c00344{width:114.498000px;}
._1e_c00344{width:157.140000px;}
._11_c00344{width:169.320000px;}
._16_c00344{width:227.691000px;}
._2e_c00344{width:278.292000px;}
._24_c00344{width:323.502000px;}
._1f_c00344{width:344.826000px;}
._27_c00344{width:358.992000px;}
._22_c00344{width:381.966000px;}
._2c_c00344{width:1112.130000px;}
.fc2_c00344{color:transparent;}
.fc1_c00344{color:rgb(128,128,128);}
.fc0_c00344{color:rgb(0,0,0);}
.fs4_c00344{font-size:48.000000px;}
.fs3_c00344{font-size:57.000000px;}
.fs2_c00344{font-size:78.000000px;}
.fs1_c00344{font-size:81.000000px;}
.fs0_c00344{font-size:99.000000px;}
.y0_c00344{bottom:0.000000px;}
.y27_c00344{bottom:3.105000px;}
.y26_c00344{bottom:7.228371px;}
.y25_c00344{bottom:49.965000px;}
.y24_c00344{bottom:78.615000px;}
.y23_c00344{bottom:104.265000px;}
.y22_c00344{bottom:129.015000px;}
.y21_c00344{bottom:154.215000px;}
.y20_c00344{bottom:178.665000px;}
.y1f_c00344{bottom:202.515000px;}
.y1e_c00344{bottom:227.115000px;}
.y1d_c00344{bottom:251.865000px;}
.y1c_c00344{bottom:275.715000px;}
.y1b_c00344{bottom:300.765000px;}
.y1a_c00344{bottom:324.765000px;}
.y19_c00344{bottom:348.765000px;}
.y18_c00344{bottom:373.665000px;}
.y17_c00344{bottom:397.215000px;}
.y16_c00344{bottom:421.965000px;}
.y15_c00344{bottom:445.815000px;}
.y14_c00344{bottom:470.565000px;}
.y13_c00344{bottom:494.565000px;}
.y12_c00344{bottom:517.365000px;}
.y11_c00344{bottom:543.165000px;}
.y10_c00344{bottom:567.315000px;}
.yf_c00344{bottom:591.015000px;}
.ye_c00344{bottom:615.315000px;}
.yd_c00344{bottom:638.565000px;}
.yc_c00344{bottom:652.365000px;}
.yb_c00344{bottom:663.315000px;}
.ya_c00344{bottom:687.165000px;}
.y9_c00344{bottom:711.765000px;}
.y8_c00344{bottom:735.765000px;}
.y7_c00344{bottom:760.065000px;}
.y6_c00344{bottom:784.665000px;}
.y5_c00344{bottom:808.665000px;}
.y4_c00344{bottom:831.915000px;}
.y3_c00344{bottom:858.015000px;}
.y2_c00344{bottom:882.015000px;}
.y1_c00344{bottom:915.015000px;}
.h5_c00344{height:13.200074px;}
.h6_c00344{height:43.804688px;}
.h3_c00344{height:79.497070px;}
.h4_c00344{height:98.756836px;}
.h2_c00344{height:115.870605px;}
.h0_c00344{height:989.025000px;}
.h1_c00344{height:989.250000px;}
.w1_c00344{width:104.875500px;}
.w0_c00344{width:672.000000px;}
.x0_c00344{left:0.000000px;}
.x4_c00344{left:48.300000px;}
.x2_c00344{left:52.200000px;}
.x3_c00344{left:55.350000px;}
.x5_c00344{left:59.100000px;}
.x6_c00344{left:60.450000px;}
.x8_c00344{left:62.100000px;}
.x9_c00344{left:63.150000px;}
.xa_c00344{left:64.800000px;}
.xb_c00344{left:66.150000px;}
.xc_c00344{left:67.800000px;}
.xd_c00344{left:69.600000px;}
.xe_c00344{left:70.950000px;}
.xf_c00344{left:76.350000px;}
.x1_c00344{left:122.400000px;}
.x7_c00344{left:179.550000px;}
.x10_c00344{left:287.814240px;}
@media print{
.v0_c00344{vertical-align:0.000000pt;}
.ls0_c00344{letter-spacing:0.000000pt;}
.ws0_c00344{word-spacing:-12.210667pt;}
.ws1_c00344{word-spacing:0.000000pt;}
._26_c00344{margin-left:-25.645333pt;}
._29_c00344{margin-left:-19.456000pt;}
._23_c00344{margin-left:-18.520000pt;}
._2a_c00344{margin-left:-17.568000pt;}
._17_c00344{margin-left:-16.632000pt;}
._20_c00344{margin-left:-14.352000pt;}
._12_c00344{margin-left:-13.245333pt;}
._2_c00344{margin-left:-9.768000pt;}
._f_c00344{margin-left:-8.704000pt;}
._10_c00344{margin-left:-7.141333pt;}
._b_c00344{margin-left:-6.192000pt;}
._e_c00344{margin-left:-5.120000pt;}
._0_c00344{margin-left:-3.960000pt;}
._1_c00344{margin-left:-2.376000pt;}
._3_c00344{margin-left:-1.408000pt;}
._d_c00344{width:1.008000pt;}
._a_c00344{width:2.304000pt;}
._7_c00344{width:3.240000pt;}
._8_c00344{width:4.248000pt;}
._9_c00344{width:5.544000pt;}
._14_c00344{width:6.552000pt;}
._c_c00344{width:7.488000pt;}
._1b_c00344{width:8.498667pt;}
._13_c00344{width:9.538667pt;}
._19_c00344{width:10.984000pt;}
._25_c00344{width:12.477333pt;}
._28_c00344{width:13.402667pt;}
._1a_c00344{width:14.760000pt;}
._2d_c00344{width:20.952000pt;}
._5_c00344{width:23.144000pt;}
._21_c00344{width:24.405333pt;}
._6_c00344{width:35.112000pt;}
._4_c00344{width:39.776000pt;}
._1d_c00344{width:56.232000pt;}
._2b_c00344{width:67.477333pt;}
._18_c00344{width:79.645333pt;}
._15_c00344{width:93.205333pt;}
._1c_c00344{width:101.776000pt;}
._1e_c00344{width:139.680000pt;}
._11_c00344{width:150.506667pt;}
._16_c00344{width:202.392000pt;}
._2e_c00344{width:247.370667pt;}
._24_c00344{width:287.557333pt;}
._1f_c00344{width:306.512000pt;}
._27_c00344{width:319.104000pt;}
._22_c00344{width:339.525333pt;}
._2c_c00344{width:988.560000pt;}
.fs4_c00344{font-size:42.666667pt;}
.fs3_c00344{font-size:50.666667pt;}
.fs2_c00344{font-size:69.333333pt;}
.fs1_c00344{font-size:72.000000pt;}
.fs0_c00344{font-size:88.000000pt;}
.y0_c00344{bottom:0.000000pt;}
.y27_c00344{bottom:2.760000pt;}
.y26_c00344{bottom:6.425219pt;}
.y25_c00344{bottom:44.413333pt;}
.y24_c00344{bottom:69.880000pt;}
.y23_c00344{bottom:92.680000pt;}
.y22_c00344{bottom:114.680000pt;}
.y21_c00344{bottom:137.080000pt;}
.y20_c00344{bottom:158.813333pt;}
.y1f_c00344{bottom:180.013333pt;}
.y1e_c00344{bottom:201.880000pt;}
.y1d_c00344{bottom:223.880000pt;}
.y1c_c00344{bottom:245.080000pt;}
.y1b_c00344{bottom:267.346667pt;}
.y1a_c00344{bottom:288.680000pt;}
.y19_c00344{bottom:310.013333pt;}
.y18_c00344{bottom:332.146667pt;}
.y17_c00344{bottom:353.080000pt;}
.y16_c00344{bottom:375.080000pt;}
.y15_c00344{bottom:396.280000pt;}
.y14_c00344{bottom:418.280000pt;}
.y13_c00344{bottom:439.613333pt;}
.y12_c00344{bottom:459.880000pt;}
.y11_c00344{bottom:482.813333pt;}
.y10_c00344{bottom:504.280000pt;}
.yf_c00344{bottom:525.346667pt;}
.ye_c00344{bottom:546.946667pt;}
.yd_c00344{bottom:567.613333pt;}
.yc_c00344{bottom:579.880000pt;}
.yb_c00344{bottom:589.613333pt;}
.ya_c00344{bottom:610.813333pt;}
.y9_c00344{bottom:632.680000pt;}
.y8_c00344{bottom:654.013333pt;}
.y7_c00344{bottom:675.613333pt;}
.y6_c00344{bottom:697.480000pt;}
.y5_c00344{bottom:718.813333pt;}
.y4_c00344{bottom:739.480000pt;}
.y3_c00344{bottom:762.680000pt;}
.y2_c00344{bottom:784.013333pt;}
.y1_c00344{bottom:813.346667pt;}
.h5_c00344{height:11.733399pt;}
.h6_c00344{height:38.937500pt;}
.h3_c00344{height:70.664062pt;}
.h4_c00344{height:87.783854pt;}
.h2_c00344{height:102.996094pt;}
.h0_c00344{height:879.133333pt;}
.h1_c00344{height:879.333333pt;}
.w1_c00344{width:93.222667pt;}
.w0_c00344{width:597.333333pt;}
.x0_c00344{left:0.000000pt;}
.x4_c00344{left:42.933333pt;}
.x2_c00344{left:46.400000pt;}
.x3_c00344{left:49.200000pt;}
.x5_c00344{left:52.533333pt;}
.x6_c00344{left:53.733333pt;}
.x8_c00344{left:55.200000pt;}
.x9_c00344{left:56.133333pt;}
.xa_c00344{left:57.600000pt;}
.xb_c00344{left:58.800000pt;}
.xc_c00344{left:60.266667pt;}
.xd_c00344{left:61.866667pt;}
.xe_c00344{left:63.066667pt;}
.xf_c00344{left:67.866667pt;}
.x1_c00344{left:108.800000pt;}
.x7_c00344{left:159.600000pt;}
.x10_c00344{left:255.834880pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_74008919b3dc4dd8e8214ee2.woff2')format("woff");}.ff1_c00345{font-family:ff1_c00345;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00345;src:url('chunks/assets/font_1327f9017fbae58ecd7f3cf2.woff2')format("woff");}.ff2_c00345{font-family:ff2_c00345;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00345;src:url('chunks/assets/font_26c87fac3878a1d01bf2a2d2.woff2')format("woff");}.ff3_c00345{font-family:ff3_c00345;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00345;src:url('chunks/assets/font_10b47ab91a3fe3f25d9e667a.woff2')format("woff");}.ff4_c00345{font-family:ff4_c00345;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00345;src:url('chunks/assets/font_ad0be7b21fcd8e594364a1fe.woff2')format("woff");}.ff5_c00345{font-family:ff5_c00345;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00345;src:url('chunks/assets/font_8993e449fa86bf6bdaf031ba.woff2')format("woff");}.ff6_c00345{font-family:ff6_c00345;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00345;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c00345{font-family:ff7_c00345;line-height:1.219238;font-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_c00345{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,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;}
.ls4_c00345{letter-spacing:-9.000000px;}
.ls3_c00345{letter-spacing:0.000000px;}
.ls5_c00345{letter-spacing:3.000000px;}
.ls7_c00345{letter-spacing:6.000000px;}
.ls6_c00345{letter-spacing:9.000000px;}
.ls1_c00345{letter-spacing:11.700000px;}
.ls0_c00345{letter-spacing:12.627000px;}
.ls2_c00345{letter-spacing:19.500000px;}
.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;}
}
.ws3_c00345{word-spacing:-58.899000px;}
.ws1_c00345{word-spacing:-27.000000px;}
.ws0_c00345{word-spacing:-23.859000px;}
.ws5_c00345{word-spacing:-23.250000px;}
.ws6_c00345{word-spacing:-21.000000px;}
.ws4_c00345{word-spacing:-18.750000px;}
.ws7_c00345{word-spacing:-17.352000px;}
.ws8_c00345{word-spacing:-14.250000px;}
.ws2_c00345{word-spacing:-1.767000px;}
.ws9_c00345{word-spacing:0.000000px;}
._7_c00345{margin-left:-25.740000px;}
._b_c00345{margin-left:-18.348000px;}
._1_c00345{margin-left:-16.434000px;}
._f_c00345{margin-left:-14.058000px;}
._e_c00345{margin-left:-12.969000px;}
._29_c00345{margin-left:-11.940000px;}
._c_c00345{margin-left:-10.488000px;}
._20_c00345{margin-left:-8.652000px;}
._21_c00345{margin-left:-7.260000px;}
._d_c00345{margin-left:-6.039000px;}
._2a_c00345{margin-left:-4.683000px;}
._24_c00345{margin-left:-3.636000px;}
._8_c00345{margin-left:-2.475000px;}
._9_c00345{margin-left:-1.386000px;}
._4_c00345{width:1.320000px;}
._10_c00345{width:2.940000px;}
._5_c00345{width:4.092000px;}
._a_c00345{width:5.148000px;}
._17_c00345{width:6.354000px;}
._14_c00345{width:8.043000px;}
._19_c00345{width:9.423000px;}
._13_c00345{width:10.680000px;}
._12_c00345{width:12.549000px;}
._2_c00345{width:13.761000px;}
._1a_c00345{width:15.399000px;}
._11_c00345{width:16.749000px;}
._6_c00345{width:17.940000px;}
._1f_c00345{width:19.074000px;}
._22_c00345{width:20.457000px;}
._16_c00345{width:21.813000px;}
._18_c00345{width:24.057000px;}
._15_c00345{width:25.245000px;}
._1e_c00345{width:27.618000px;}
._27_c00345{width:28.977000px;}
._23_c00345{width:31.251000px;}
._2d_c00345{width:33.000000px;}
._0_c00345{width:36.927000px;}
._1b_c00345{width:39.501000px;}
._25_c00345{width:43.536000px;}
._1c_c00345{width:48.693000px;}
._26_c00345{width:56.817000px;}
._3_c00345{width:118.752000px;}
._2b_c00345{width:128.355000px;}
._1d_c00345{width:185.691000px;}
._2c_c00345{width:258.846000px;}
._28_c00345{width:328.134000px;}
.fc2_c00345{color:transparent;}
.fc1_c00345{color:rgb(128,128,128);}
.fc0_c00345{color:rgb(0,0,0);}
.fs8_c00345{font-size:27.000000px;}
.fsd_c00345{font-size:48.000000px;}
.fs3_c00345{font-size:57.000000px;}
.fs9_c00345{font-size:60.000000px;}
.fsc_c00345{font-size:66.000000px;}
.fs7_c00345{font-size:72.000000px;}
.fs6_c00345{font-size:75.000000px;}
.fsa_c00345{font-size:81.000000px;}
.fs2_c00345{font-size:84.000000px;}
.fs5_c00345{font-size:87.000000px;}
.fsb_c00345{font-size:90.000000px;}
.fs0_c00345{font-size:99.000000px;}
.fs4_c00345{font-size:108.000000px;}
.fs1_c00345{font-size:132.000000px;}
.y0_c00345{bottom:0.000000px;}
.y28_c00345{bottom:3.105000px;}
.y27_c00345{bottom:7.228357px;}
.y26_c00345{bottom:56.130000px;}
.y25_c00345{bottom:79.080000px;}
.y24_c00345{bottom:104.580000px;}
.y23_c00345{bottom:129.030000px;}
.y1c_c00345{bottom:145.080000px;}
.y22_c00345{bottom:154.680000px;}
.y1b_c00345{bottom:166.680000px;}
.y21_c00345{bottom:179.280000px;}
.y1a_c00345{bottom:188.730000px;}
.y20_c00345{bottom:203.880000px;}
.y1f_c00345{bottom:228.480000px;}
.y19_c00345{bottom:253.080000px;}
.y1e_c00345{bottom:253.230000px;}
.y1d_c00345{bottom:278.130000px;}
.y18_c00345{bottom:328.830000px;}
.y17_c00345{bottom:357.780000px;}
.y16_c00345{bottom:387.180000px;}
.y15_c00345{bottom:416.430000px;}
.y14_c00345{bottom:446.280000px;}
.y13_c00345{bottom:473.130000px;}
.y12_c00345{bottom:496.530000px;}
.y11_c00345{bottom:520.530000px;}
.y10_c00345{bottom:546.180000px;}
.yf_c00345{bottom:568.680000px;}
.ye_c00345{bottom:593.280000px;}
.yd_c00345{bottom:617.580000px;}
.yc_c00345{bottom:641.880000px;}
.yb_c00345{bottom:666.630000px;}
.ya_c00345{bottom:690.480000px;}
.y9_c00345{bottom:715.830000px;}
.y8_c00345{bottom:739.530000px;}
.y7_c00345{bottom:763.830000px;}
.y6_c00345{bottom:787.380000px;}
.y5_c00345{bottom:813.480000px;}
.y4_c00345{bottom:836.730000px;}
.y3_c00345{bottom:860.280000px;}
.y2_c00345{bottom:884.880000px;}
.y1_c00345{bottom:919.080000px;}
.he_c00345{height:13.200074px;}
.hf_c00345{height:43.804688px;}
.h4_c00345{height:57.445312px;}
.hb_c00345{height:58.857422px;}
.h9_c00345{height:58.886719px;}
.hc_c00345{height:64.743164px;}
.h6_c00345{height:73.571777px;}
.hd_c00345{height:73.608398px;}
.ha_c00345{height:79.497070px;}
.h2_c00345{height:82.441406px;}
.h7_c00345{height:84.269531px;}
.h8_c00345{height:88.286133px;}
.h3_c00345{height:108.843750px;}
.h5_c00345{height:110.151855px;}
.h1_c00345{height:167.126953px;}
.h0_c00345{height:995.250000px;}
.w2_c00345{width:104.875500px;}
.w0_c00345{width:667.425000px;}
.w1_c00345{width:667.500000px;}
.x0_c00345{left:0.000000px;}
.x11_c00345{left:22.500000px;}
.xf_c00345{left:24.600000px;}
.x9_c00345{left:28.350000px;}
.x4_c00345{left:31.050000px;}
.x3_c00345{left:32.700000px;}
.x12_c00345{left:69.900000px;}
.x10_c00345{left:88.050000px;}
.x16_c00345{left:119.850000px;}
.x15_c00345{left:121.200000px;}
.x6_c00345{left:125.100000px;}
.x5_c00345{left:126.150000px;}
.x7_c00345{left:127.200000px;}
.x1_c00345{left:129.900000px;}
.xb_c00345{left:155.850000px;}
.xc_c00345{left:196.350000px;}
.x14_c00345{left:257.850000px;}
.xd_c00345{left:259.500000px;}
.x13_c00345{left:260.850000px;}
.x18_c00345{left:285.526749px;}
.xa_c00345{left:315.900000px;}
.xe_c00345{left:340.800000px;}
.x17_c00345{left:576.000000px;}
.x2_c00345{left:593.700000px;}
.x8_c00345{left:606.750000px;}
@media print{
.v0_c00345{vertical-align:0.000000pt;}
.ls4_c00345{letter-spacing:-8.000000pt;}
.ls3_c00345{letter-spacing:0.000000pt;}
.ls5_c00345{letter-spacing:2.666667pt;}
.ls7_c00345{letter-spacing:5.333333pt;}
.ls6_c00345{letter-spacing:8.000000pt;}
.ls1_c00345{letter-spacing:10.400000pt;}
.ls0_c00345{letter-spacing:11.224000pt;}
.ls2_c00345{letter-spacing:17.333333pt;}
.ws3_c00345{word-spacing:-52.354667pt;}
.ws1_c00345{word-spacing:-24.000000pt;}
.ws0_c00345{word-spacing:-21.208000pt;}
.ws5_c00345{word-spacing:-20.666667pt;}
.ws6_c00345{word-spacing:-18.666667pt;}
.ws4_c00345{word-spacing:-16.666667pt;}
.ws7_c00345{word-spacing:-15.424000pt;}
.ws8_c00345{word-spacing:-12.666667pt;}
.ws2_c00345{word-spacing:-1.570667pt;}
.ws9_c00345{word-spacing:0.000000pt;}
._7_c00345{margin-left:-22.880000pt;}
._b_c00345{margin-left:-16.309333pt;}
._1_c00345{margin-left:-14.608000pt;}
._f_c00345{margin-left:-12.496000pt;}
._e_c00345{margin-left:-11.528000pt;}
._29_c00345{margin-left:-10.613333pt;}
._c_c00345{margin-left:-9.322667pt;}
._20_c00345{margin-left:-7.690667pt;}
._21_c00345{margin-left:-6.453333pt;}
._d_c00345{margin-left:-5.368000pt;}
._2a_c00345{margin-left:-4.162667pt;}
._24_c00345{margin-left:-3.232000pt;}
._8_c00345{margin-left:-2.200000pt;}
._9_c00345{margin-left:-1.232000pt;}
._4_c00345{width:1.173333pt;}
._10_c00345{width:2.613333pt;}
._5_c00345{width:3.637333pt;}
._a_c00345{width:4.576000pt;}
._17_c00345{width:5.648000pt;}
._14_c00345{width:7.149333pt;}
._19_c00345{width:8.376000pt;}
._13_c00345{width:9.493333pt;}
._12_c00345{width:11.154667pt;}
._2_c00345{width:12.232000pt;}
._1a_c00345{width:13.688000pt;}
._11_c00345{width:14.888000pt;}
._6_c00345{width:15.946667pt;}
._1f_c00345{width:16.954667pt;}
._22_c00345{width:18.184000pt;}
._16_c00345{width:19.389333pt;}
._18_c00345{width:21.384000pt;}
._15_c00345{width:22.440000pt;}
._1e_c00345{width:24.549333pt;}
._27_c00345{width:25.757333pt;}
._23_c00345{width:27.778667pt;}
._2d_c00345{width:29.333333pt;}
._0_c00345{width:32.824000pt;}
._1b_c00345{width:35.112000pt;}
._25_c00345{width:38.698667pt;}
._1c_c00345{width:43.282667pt;}
._26_c00345{width:50.504000pt;}
._3_c00345{width:105.557333pt;}
._2b_c00345{width:114.093333pt;}
._1d_c00345{width:165.058667pt;}
._2c_c00345{width:230.085333pt;}
._28_c00345{width:291.674667pt;}
.fs8_c00345{font-size:24.000000pt;}
.fsd_c00345{font-size:42.666667pt;}
.fs3_c00345{font-size:50.666667pt;}
.fs9_c00345{font-size:53.333333pt;}
.fsc_c00345{font-size:58.666667pt;}
.fs7_c00345{font-size:64.000000pt;}
.fs6_c00345{font-size:66.666667pt;}
.fsa_c00345{font-size:72.000000pt;}
.fs2_c00345{font-size:74.666667pt;}
.fs5_c00345{font-size:77.333333pt;}
.fsb_c00345{font-size:80.000000pt;}
.fs0_c00345{font-size:88.000000pt;}
.fs4_c00345{font-size:96.000000pt;}
.fs1_c00345{font-size:117.333333pt;}
.y0_c00345{bottom:0.000000pt;}
.y28_c00345{bottom:2.760000pt;}
.y27_c00345{bottom:6.425206pt;}
.y26_c00345{bottom:49.893333pt;}
.y25_c00345{bottom:70.293333pt;}
.y24_c00345{bottom:92.960000pt;}
.y23_c00345{bottom:114.693333pt;}
.y1c_c00345{bottom:128.960000pt;}
.y22_c00345{bottom:137.493333pt;}
.y1b_c00345{bottom:148.160000pt;}
.y21_c00345{bottom:159.360000pt;}
.y1a_c00345{bottom:167.760000pt;}
.y20_c00345{bottom:181.226667pt;}
.y1f_c00345{bottom:203.093333pt;}
.y19_c00345{bottom:224.960000pt;}
.y1e_c00345{bottom:225.093333pt;}
.y1d_c00345{bottom:247.226667pt;}
.y18_c00345{bottom:292.293333pt;}
.y17_c00345{bottom:318.026667pt;}
.y16_c00345{bottom:344.160000pt;}
.y15_c00345{bottom:370.160000pt;}
.y14_c00345{bottom:396.693333pt;}
.y13_c00345{bottom:420.560000pt;}
.y12_c00345{bottom:441.360000pt;}
.y11_c00345{bottom:462.693333pt;}
.y10_c00345{bottom:485.493333pt;}
.yf_c00345{bottom:505.493333pt;}
.ye_c00345{bottom:527.360000pt;}
.yd_c00345{bottom:548.960000pt;}
.yc_c00345{bottom:570.560000pt;}
.yb_c00345{bottom:592.560000pt;}
.ya_c00345{bottom:613.760000pt;}
.y9_c00345{bottom:636.293333pt;}
.y8_c00345{bottom:657.360000pt;}
.y7_c00345{bottom:678.960000pt;}
.y6_c00345{bottom:699.893333pt;}
.y5_c00345{bottom:723.093333pt;}
.y4_c00345{bottom:743.760000pt;}
.y3_c00345{bottom:764.693333pt;}
.y2_c00345{bottom:786.560000pt;}
.y1_c00345{bottom:816.960000pt;}
.he_c00345{height:11.733399pt;}
.hf_c00345{height:38.937500pt;}
.h4_c00345{height:51.062500pt;}
.hb_c00345{height:52.317708pt;}
.h9_c00345{height:52.343750pt;}
.hc_c00345{height:57.549479pt;}
.h6_c00345{height:65.397135pt;}
.hd_c00345{height:65.429688pt;}
.ha_c00345{height:70.664062pt;}
.h2_c00345{height:73.281250pt;}
.h7_c00345{height:74.906250pt;}
.h8_c00345{height:78.476562pt;}
.h3_c00345{height:96.750000pt;}
.h5_c00345{height:97.912760pt;}
.h1_c00345{height:148.557292pt;}
.h0_c00345{height:884.666667pt;}
.w2_c00345{width:93.222667pt;}
.w0_c00345{width:593.266667pt;}
.w1_c00345{width:593.333333pt;}
.x0_c00345{left:0.000000pt;}
.x11_c00345{left:20.000000pt;}
.xf_c00345{left:21.866667pt;}
.x9_c00345{left:25.200000pt;}
.x4_c00345{left:27.600000pt;}
.x3_c00345{left:29.066667pt;}
.x12_c00345{left:62.133333pt;}
.x10_c00345{left:78.266667pt;}
.x16_c00345{left:106.533333pt;}
.x15_c00345{left:107.733333pt;}
.x6_c00345{left:111.200000pt;}
.x5_c00345{left:112.133333pt;}
.x7_c00345{left:113.066667pt;}
.x1_c00345{left:115.466667pt;}
.xb_c00345{left:138.533333pt;}
.xc_c00345{left:174.533333pt;}
.x14_c00345{left:229.200000pt;}
.xd_c00345{left:230.666667pt;}
.x13_c00345{left:231.866667pt;}
.x18_c00345{left:253.801554pt;}
.xa_c00345{left:280.800000pt;}
.xe_c00345{left:302.933333pt;}
.x17_c00345{left:512.000000pt;}
.x2_c00345{left:527.733333pt;}
.x8_c00345{left:539.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_b0bce34d4ade2917015e7cca.woff2')format("woff");}.ff1_c00346{font-family:ff1_c00346;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00346;src:url('chunks/assets/font_0f1bb91d4058a22ab376186b.woff2')format("woff");}.ff2_c00346{font-family:ff2_c00346;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00346;src:url('chunks/assets/font_bed39132460864b886fac178.woff2')format("woff");}.ff3_c00346{font-family:ff3_c00346;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00346;src:url('chunks/assets/font_dee77cea0f23283272bcc2cb.woff2')format("woff");}.ff4_c00346{font-family:ff4_c00346;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00346;src:url('chunks/assets/font_007d17c5f6e4cc73a616f18c.woff2')format("woff");}.ff5_c00346{font-family:ff5_c00346;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00346;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c00346{font-family:ff6_c00346;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00346{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,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;}
.ls1_c00346{letter-spacing:-9.000000px;}
.ls3_c00346{letter-spacing:-6.000000px;}
.ls0_c00346{letter-spacing:0.000000px;}
.ls2_c00346{letter-spacing:3.000000px;}
.sc__c00346{text-shadow:none;}
.sc0_c00346{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00346{-webkit-text-stroke:0px transparent;}
.sc0_c00346{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00346{word-spacing:-60.048000px;}
.ws2_c00346{word-spacing:-38.232000px;}
.ws0_c00346{word-spacing:-23.859000px;}
.ws1_c00346{word-spacing:-17.352000px;}
.ws4_c00346{word-spacing:0.000000px;}
._14_c00346{margin-left:-27.621000px;}
._f_c00346{margin-left:-16.038000px;}
._26_c00346{margin-left:-14.985000px;}
._23_c00346{margin-left:-13.908000px;}
._25_c00346{margin-left:-12.687000px;}
._1a_c00346{margin-left:-11.664000px;}
._b_c00346{margin-left:-10.449000px;}
._1c_c00346{margin-left:-9.351000px;}
._1e_c00346{margin-left:-8.124000px;}
._a_c00346{margin-left:-6.840000px;}
._1d_c00346{margin-left:-5.265000px;}
._8_c00346{margin-left:-4.014000px;}
._d_c00346{margin-left:-2.871000px;}
._7_c00346{margin-left:-1.737000px;}
._e_c00346{width:1.080000px;}
._1_c00346{width:2.178000px;}
._2_c00346{width:3.663000px;}
._4_c00346{width:4.752000px;}
._0_c00346{width:6.039000px;}
._3_c00346{width:7.425000px;}
._5_c00346{width:8.910000px;}
._c_c00346{width:10.494000px;}
._10_c00346{width:12.150000px;}
._2d_c00346{width:13.176000px;}
._21_c00346{width:14.487000px;}
._9_c00346{width:15.759000px;}
._28_c00346{width:17.100000px;}
._20_c00346{width:19.305000px;}
._27_c00346{width:25.764000px;}
._24_c00346{width:28.050000px;}
._1f_c00346{width:31.692000px;}
._2f_c00346{width:34.911000px;}
._32_c00346{width:37.155000px;}
._2c_c00346{width:38.208000px;}
._12_c00346{width:40.905000px;}
._19_c00346{width:42.687000px;}
._15_c00346{width:45.765000px;}
._2e_c00346{width:47.151000px;}
._2a_c00346{width:68.373000px;}
._18_c00346{width:86.868000px;}
._2b_c00346{width:116.694000px;}
._17_c00346{width:146.934000px;}
._22_c00346{width:160.020000px;}
._13_c00346{width:235.710000px;}
._16_c00346{width:245.304000px;}
._30_c00346{width:250.083000px;}
._6_c00346{width:254.139000px;}
._29_c00346{width:305.496000px;}
._11_c00346{width:350.973000px;}
._1b_c00346{width:384.129000px;}
._31_c00346{width:418.545000px;}
.fc2_c00346{color:transparent;}
.fc1_c00346{color:rgb(128,128,128);}
.fc0_c00346{color:rgb(0,0,0);}
.fs6_c00346{font-size:48.000000px;}
.fs3_c00346{font-size:72.000000px;}
.fs4_c00346{font-size:78.000000px;}
.fs2_c00346{font-size:81.000000px;}
.fs0_c00346{font-size:99.000000px;}
.fs5_c00346{font-size:108.000000px;}
.fs1_c00346{font-size:132.000000px;}
.y0_c00346{bottom:0.000000px;}
.y27_c00346{bottom:3.105000px;}
.y26_c00346{bottom:7.228371px;}
.y25_c00346{bottom:45.615000px;}
.y24_c00346{bottom:71.265000px;}
.y23_c00346{bottom:96.615000px;}
.y22_c00346{bottom:120.915000px;}
.y21_c00346{bottom:144.765000px;}
.y20_c00346{bottom:167.865000px;}
.y1f_c00346{bottom:194.115000px;}
.y1e_c00346{bottom:218.715000px;}
.y1d_c00346{bottom:241.965000px;}
.y1c_c00346{bottom:267.315000px;}
.y1b_c00346{bottom:291.615000px;}
.y1a_c00346{bottom:316.215000px;}
.y19_c00346{bottom:340.215000px;}
.y18_c00346{bottom:364.815000px;}
.y17_c00346{bottom:389.115000px;}
.y16_c00346{bottom:413.115000px;}
.y15_c00346{bottom:436.815000px;}
.y14_c00346{bottom:461.415000px;}
.y13_c00346{bottom:485.715000px;}
.y12_c00346{bottom:510.015000px;}
.y11_c00346{bottom:534.315000px;}
.y10_c00346{bottom:557.565000px;}
.yf_c00346{bottom:582.615000px;}
.ye_c00346{bottom:606.165000px;}
.yd_c00346{bottom:630.915000px;}
.yc_c00346{bottom:654.465000px;}
.yb_c00346{bottom:678.765000px;}
.ya_c00346{bottom:703.065000px;}
.y9_c00346{bottom:727.665000px;}
.y8_c00346{bottom:751.965000px;}
.y7_c00346{bottom:776.565000px;}
.y6_c00346{bottom:801.015000px;}
.y5_c00346{bottom:825.615000px;}
.y4_c00346{bottom:837.015000px;}
.y3_c00346{bottom:849.615000px;}
.y2_c00346{bottom:874.215000px;}
.y1_c00346{bottom:907.965000px;}
.h9_c00346{height:13.200074px;}
.ha_c00346{height:43.804688px;}
.h3_c00346{height:79.497070px;}
.h4_c00346{height:84.269531px;}
.h7_c00346{height:91.160156px;}
.h5_c00346{height:98.756836px;}
.h6_c00346{height:102.555176px;}
.h8_c00346{height:108.843750px;}
.h2_c00346{height:167.126953px;}
.h0_c00346{height:989.025000px;}
.h1_c00346{height:989.250000px;}
.w1_c00346{width:104.875500px;}
.w0_c00346{width:672.000000px;}
.x0_c00346{left:0.000000px;}
.x6_c00346{left:47.250000px;}
.x9_c00346{left:56.250000px;}
.x7_c00346{left:57.300000px;}
.x5_c00346{left:58.650000px;}
.x4_c00346{left:60.000000px;}
.x2_c00346{left:61.050000px;}
.x8_c00346{left:62.100000px;}
.x3_c00346{left:73.350000px;}
.x1_c00346{left:119.700000px;}
.xa_c00346{left:128.250000px;}
.xc_c00346{left:287.814240px;}
.xb_c00346{left:511.350000px;}
@media print{
.v0_c00346{vertical-align:0.000000pt;}
.ls1_c00346{letter-spacing:-8.000000pt;}
.ls3_c00346{letter-spacing:-5.333333pt;}
.ls0_c00346{letter-spacing:0.000000pt;}
.ls2_c00346{letter-spacing:2.666667pt;}
.ws3_c00346{word-spacing:-53.376000pt;}
.ws2_c00346{word-spacing:-33.984000pt;}
.ws0_c00346{word-spacing:-21.208000pt;}
.ws1_c00346{word-spacing:-15.424000pt;}
.ws4_c00346{word-spacing:0.000000pt;}
._14_c00346{margin-left:-24.552000pt;}
._f_c00346{margin-left:-14.256000pt;}
._26_c00346{margin-left:-13.320000pt;}
._23_c00346{margin-left:-12.362667pt;}
._25_c00346{margin-left:-11.277333pt;}
._1a_c00346{margin-left:-10.368000pt;}
._b_c00346{margin-left:-9.288000pt;}
._1c_c00346{margin-left:-8.312000pt;}
._1e_c00346{margin-left:-7.221333pt;}
._a_c00346{margin-left:-6.080000pt;}
._1d_c00346{margin-left:-4.680000pt;}
._8_c00346{margin-left:-3.568000pt;}
._d_c00346{margin-left:-2.552000pt;}
._7_c00346{margin-left:-1.544000pt;}
._e_c00346{width:0.960000pt;}
._1_c00346{width:1.936000pt;}
._2_c00346{width:3.256000pt;}
._4_c00346{width:4.224000pt;}
._0_c00346{width:5.368000pt;}
._3_c00346{width:6.600000pt;}
._5_c00346{width:7.920000pt;}
._c_c00346{width:9.328000pt;}
._10_c00346{width:10.800000pt;}
._2d_c00346{width:11.712000pt;}
._21_c00346{width:12.877333pt;}
._9_c00346{width:14.008000pt;}
._28_c00346{width:15.200000pt;}
._20_c00346{width:17.160000pt;}
._27_c00346{width:22.901333pt;}
._24_c00346{width:24.933333pt;}
._1f_c00346{width:28.170667pt;}
._2f_c00346{width:31.032000pt;}
._32_c00346{width:33.026667pt;}
._2c_c00346{width:33.962667pt;}
._12_c00346{width:36.360000pt;}
._19_c00346{width:37.944000pt;}
._15_c00346{width:40.680000pt;}
._2e_c00346{width:41.912000pt;}
._2a_c00346{width:60.776000pt;}
._18_c00346{width:77.216000pt;}
._2b_c00346{width:103.728000pt;}
._17_c00346{width:130.608000pt;}
._22_c00346{width:142.240000pt;}
._13_c00346{width:209.520000pt;}
._16_c00346{width:218.048000pt;}
._30_c00346{width:222.296000pt;}
._6_c00346{width:225.901333pt;}
._29_c00346{width:271.552000pt;}
._11_c00346{width:311.976000pt;}
._1b_c00346{width:341.448000pt;}
._31_c00346{width:372.040000pt;}
.fs6_c00346{font-size:42.666667pt;}
.fs3_c00346{font-size:64.000000pt;}
.fs4_c00346{font-size:69.333333pt;}
.fs2_c00346{font-size:72.000000pt;}
.fs0_c00346{font-size:88.000000pt;}
.fs5_c00346{font-size:96.000000pt;}
.fs1_c00346{font-size:117.333333pt;}
.y0_c00346{bottom:0.000000pt;}
.y27_c00346{bottom:2.760000pt;}
.y26_c00346{bottom:6.425219pt;}
.y25_c00346{bottom:40.546667pt;}
.y24_c00346{bottom:63.346667pt;}
.y23_c00346{bottom:85.880000pt;}
.y22_c00346{bottom:107.480000pt;}
.y21_c00346{bottom:128.680000pt;}
.y20_c00346{bottom:149.213333pt;}
.y1f_c00346{bottom:172.546667pt;}
.y1e_c00346{bottom:194.413333pt;}
.y1d_c00346{bottom:215.080000pt;}
.y1c_c00346{bottom:237.613333pt;}
.y1b_c00346{bottom:259.213333pt;}
.y1a_c00346{bottom:281.080000pt;}
.y19_c00346{bottom:302.413333pt;}
.y18_c00346{bottom:324.280000pt;}
.y17_c00346{bottom:345.880000pt;}
.y16_c00346{bottom:367.213333pt;}
.y15_c00346{bottom:388.280000pt;}
.y14_c00346{bottom:410.146667pt;}
.y13_c00346{bottom:431.746667pt;}
.y12_c00346{bottom:453.346667pt;}
.y11_c00346{bottom:474.946667pt;}
.y10_c00346{bottom:495.613333pt;}
.yf_c00346{bottom:517.880000pt;}
.ye_c00346{bottom:538.813333pt;}
.yd_c00346{bottom:560.813333pt;}
.yc_c00346{bottom:581.746667pt;}
.yb_c00346{bottom:603.346667pt;}
.ya_c00346{bottom:624.946667pt;}
.y9_c00346{bottom:646.813333pt;}
.y8_c00346{bottom:668.413333pt;}
.y7_c00346{bottom:690.280000pt;}
.y6_c00346{bottom:712.013333pt;}
.y5_c00346{bottom:733.880000pt;}
.y4_c00346{bottom:744.013333pt;}
.y3_c00346{bottom:755.213333pt;}
.y2_c00346{bottom:777.080000pt;}
.y1_c00346{bottom:807.080000pt;}
.h9_c00346{height:11.733399pt;}
.ha_c00346{height:38.937500pt;}
.h3_c00346{height:70.664062pt;}
.h4_c00346{height:74.906250pt;}
.h7_c00346{height:81.031250pt;}
.h5_c00346{height:87.783854pt;}
.h6_c00346{height:91.160156pt;}
.h8_c00346{height:96.750000pt;}
.h2_c00346{height:148.557292pt;}
.h0_c00346{height:879.133333pt;}
.h1_c00346{height:879.333333pt;}
.w1_c00346{width:93.222667pt;}
.w0_c00346{width:597.333333pt;}
.x0_c00346{left:0.000000pt;}
.x6_c00346{left:42.000000pt;}
.x9_c00346{left:50.000000pt;}
.x7_c00346{left:50.933333pt;}
.x5_c00346{left:52.133333pt;}
.x4_c00346{left:53.333333pt;}
.x2_c00346{left:54.266667pt;}
.x8_c00346{left:55.200000pt;}
.x3_c00346{left:65.200000pt;}
.x1_c00346{left:106.400000pt;}
.xa_c00346{left:114.000000pt;}
.xc_c00346{left:255.834880pt;}
.xb_c00346{left:454.533333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_6d7ab34cdbce0ac5160b1aa6.woff2')format("woff");}.ff1_c00347{font-family:ff1_c00347;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00347;src:url('chunks/assets/font_175b4b5dcf6ff12cc3241777.woff2')format("woff");}.ff2_c00347{font-family:ff2_c00347;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00347;src:url('chunks/assets/font_223b720e0cb988c46a0fedcc.woff2')format("woff");}.ff3_c00347{font-family:ff3_c00347;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00347;src:url('chunks/assets/font_e6f2ca258f96c3f558cf7186.woff2')format("woff");}.ff4_c00347{font-family:ff4_c00347;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00347;src:url('chunks/assets/font_7042d4e6df789dda147e8a5e.woff2')format("woff");}.ff5_c00347{font-family:ff5_c00347;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00347;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c00347{font-family:ff6_c00347;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00347{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00347{vertical-align:0.000000px;}
.v1_c00347{vertical-align:1.200000px;}
.ls4_c00347{letter-spacing:-9.000000px;}
.ls5_c00347{letter-spacing:-6.000000px;}
.ls3_c00347{letter-spacing:0.000000px;}
.ls1_c00347{letter-spacing:0.360000px;}
.ls6_c00347{letter-spacing:9.000000px;}
.ls2_c00347{letter-spacing:16.920000px;}
.ls0_c00347{letter-spacing:152.520000px;}
.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;}
}
.ws3_c00347{word-spacing:-33.000000px;}
.ws4_c00347{word-spacing:-25.500000px;}
.ws0_c00347{word-spacing:-23.859000px;}
.ws5_c00347{word-spacing:-22.737000px;}
.ws2_c00347{word-spacing:-18.798000px;}
.ws1_c00347{word-spacing:-17.352000px;}
.ws6_c00347{word-spacing:-16.926000px;}
.ws7_c00347{word-spacing:0.000000px;}
._19_c00347{margin-left:-22.194000px;}
._1e_c00347{margin-left:-20.073000px;}
._1c_c00347{margin-left:-9.999000px;}
._7_c00347{margin-left:-7.623000px;}
._e_c00347{margin-left:-6.345000px;}
._6_c00347{margin-left:-4.356000px;}
._3_c00347{margin-left:-2.772000px;}
._4_c00347{margin-left:-1.584000px;}
._c_c00347{width:1.728000px;}
._a_c00347{width:3.645000px;}
._9_c00347{width:4.752000px;}
._d_c00347{width:5.814000px;}
._b_c00347{width:6.858000px;}
._1_c00347{width:8.316000px;}
._0_c00347{width:9.801000px;}
._12_c00347{width:11.349000px;}
._14_c00347{width:12.573000px;}
._1d_c00347{width:13.716000px;}
._8_c00347{width:14.751000px;}
._15_c00347{width:16.395000px;}
._16_c00347{width:17.766000px;}
._11_c00347{width:22.317000px;}
._13_c00347{width:25.632000px;}
._1a_c00347{width:32.562000px;}
._f_c00347{width:35.361000px;}
._18_c00347{width:37.899000px;}
._17_c00347{width:41.928000px;}
._10_c00347{width:45.351000px;}
._1b_c00347{width:168.768000px;}
._2_c00347{width:180.363000px;}
._5_c00347{width:197.424000px;}
.fc2_c00347{color:transparent;}
.fc1_c00347{color:rgb(128,128,128);}
.fc0_c00347{color:rgb(0,0,0);}
.fsa_c00347{font-size:48.000000px;}
.fs5_c00347{font-size:57.000000px;}
.fs7_c00347{font-size:60.000000px;}
.fs9_c00347{font-size:63.000000px;}
.fs8_c00347{font-size:66.000000px;}
.fs4_c00347{font-size:72.000000px;}
.fs6_c00347{font-size:78.000000px;}
.fs2_c00347{font-size:81.000000px;}
.fs3_c00347{font-size:84.000000px;}
.fs0_c00347{font-size:99.000000px;}
.fs1_c00347{font-size:132.000000px;}
.y0_c00347{bottom:0.000000px;}
.y23_c00347{bottom:3.105000px;}
.y22_c00347{bottom:7.228357px;}
.y21_c00347{bottom:60.780000px;}
.y20_c00347{bottom:85.080000px;}
.y1f_c00347{bottom:111.030000px;}
.y1e_c00347{bottom:135.780000px;}
.y1d_c00347{bottom:160.380000px;}
.y1c_c00347{bottom:184.380000px;}
.y1b_c00347{bottom:208.980000px;}
.y1a_c00347{bottom:233.280000px;}
.y19_c00347{bottom:283.230000px;}
.y18_c00347{bottom:307.080000px;}
.y17_c00347{bottom:331.080000px;}
.y16_c00347{bottom:357.480000px;}
.y15_c00347{bottom:380.130000px;}
.y14_c00347{bottom:404.280000px;}
.y13_c00347{bottom:428.730000px;}
.y12_c00347{bottom:452.580000px;}
.y11_c00347{bottom:476.880000px;}
.y10_c00347{bottom:501.480000px;}
.yf_c00347{bottom:526.230000px;}
.ye_c00347{bottom:549.180000px;}
.yd_c00347{bottom:598.080000px;}
.yc_c00347{bottom:645.330000px;}
.yb_c00347{bottom:669.930000px;}
.ya_c00347{bottom:694.680000px;}
.y9_c00347{bottom:718.830000px;}
.y8_c00347{bottom:743.130000px;}
.y7_c00347{bottom:767.430000px;}
.y6_c00347{bottom:791.730000px;}
.y5_c00347{bottom:814.830000px;}
.y4_c00347{bottom:841.380000px;}
.y3_c00347{bottom:864.330000px;}
.y2_c00347{bottom:889.080000px;}
.y1_c00347{bottom:922.380000px;}
.ha_c00347{height:13.200074px;}
.hb_c00347{height:43.804688px;}
.h8_c00347{height:72.168457px;}
.h2_c00347{height:79.497070px;}
.h6_c00347{height:80.697070px;}
.h3_c00347{height:82.441406px;}
.h9_c00347{height:83.226000px;}
.h7_c00347{height:84.269531px;}
.h4_c00347{height:91.160156px;}
.h5_c00347{height:98.756836px;}
.h1_c00347{height:167.126953px;}
.h0_c00347{height:995.250000px;}
.w2_c00347{width:104.875500px;}
.w0_c00347{width:667.425000px;}
.w1_c00347{width:667.500000px;}
.x0_c00347{left:0.000000px;}
.xa_c00347{left:29.400000px;}
.x3_c00347{left:33.300000px;}
.xb_c00347{left:105.600000px;}
.x9_c00347{left:120.450000px;}
.xd_c00347{left:122.250000px;}
.x8_c00347{left:123.600000px;}
.x7_c00347{left:124.650000px;}
.x2_c00347{left:126.450000px;}
.x1_c00347{left:128.700000px;}
.x4_c00347{left:130.050000px;}
.x6_c00347{left:146.100000px;}
.xc_c00347{left:180.150000px;}
.x5_c00347{left:253.800000px;}
.xf_c00347{left:285.526749px;}
.xe_c00347{left:563.250000px;}
@media print{
.v0_c00347{vertical-align:0.000000pt;}
.v1_c00347{vertical-align:1.066667pt;}
.ls4_c00347{letter-spacing:-8.000000pt;}
.ls5_c00347{letter-spacing:-5.333333pt;}
.ls3_c00347{letter-spacing:0.000000pt;}
.ls1_c00347{letter-spacing:0.320000pt;}
.ls6_c00347{letter-spacing:8.000000pt;}
.ls2_c00347{letter-spacing:15.040000pt;}
.ls0_c00347{letter-spacing:135.573333pt;}
.ws3_c00347{word-spacing:-29.333333pt;}
.ws4_c00347{word-spacing:-22.666667pt;}
.ws0_c00347{word-spacing:-21.208000pt;}
.ws5_c00347{word-spacing:-20.210667pt;}
.ws2_c00347{word-spacing:-16.709333pt;}
.ws1_c00347{word-spacing:-15.424000pt;}
.ws6_c00347{word-spacing:-15.045333pt;}
.ws7_c00347{word-spacing:0.000000pt;}
._19_c00347{margin-left:-19.728000pt;}
._1e_c00347{margin-left:-17.842667pt;}
._1c_c00347{margin-left:-8.888000pt;}
._7_c00347{margin-left:-6.776000pt;}
._e_c00347{margin-left:-5.640000pt;}
._6_c00347{margin-left:-3.872000pt;}
._3_c00347{margin-left:-2.464000pt;}
._4_c00347{margin-left:-1.408000pt;}
._c_c00347{width:1.536000pt;}
._a_c00347{width:3.240000pt;}
._9_c00347{width:4.224000pt;}
._d_c00347{width:5.168000pt;}
._b_c00347{width:6.096000pt;}
._1_c00347{width:7.392000pt;}
._0_c00347{width:8.712000pt;}
._12_c00347{width:10.088000pt;}
._14_c00347{width:11.176000pt;}
._1d_c00347{width:12.192000pt;}
._8_c00347{width:13.112000pt;}
._15_c00347{width:14.573333pt;}
._16_c00347{width:15.792000pt;}
._11_c00347{width:19.837333pt;}
._13_c00347{width:22.784000pt;}
._1a_c00347{width:28.944000pt;}
._f_c00347{width:31.432000pt;}
._18_c00347{width:33.688000pt;}
._17_c00347{width:37.269333pt;}
._10_c00347{width:40.312000pt;}
._1b_c00347{width:150.016000pt;}
._2_c00347{width:160.322667pt;}
._5_c00347{width:175.488000pt;}
.fsa_c00347{font-size:42.666667pt;}
.fs5_c00347{font-size:50.666667pt;}
.fs7_c00347{font-size:53.333333pt;}
.fs9_c00347{font-size:56.000000pt;}
.fs8_c00347{font-size:58.666667pt;}
.fs4_c00347{font-size:64.000000pt;}
.fs6_c00347{font-size:69.333333pt;}
.fs2_c00347{font-size:72.000000pt;}
.fs3_c00347{font-size:74.666667pt;}
.fs0_c00347{font-size:88.000000pt;}
.fs1_c00347{font-size:117.333333pt;}
.y0_c00347{bottom:0.000000pt;}
.y23_c00347{bottom:2.760000pt;}
.y22_c00347{bottom:6.425206pt;}
.y21_c00347{bottom:54.026667pt;}
.y20_c00347{bottom:75.626667pt;}
.y1f_c00347{bottom:98.693333pt;}
.y1e_c00347{bottom:120.693333pt;}
.y1d_c00347{bottom:142.560000pt;}
.y1c_c00347{bottom:163.893333pt;}
.y1b_c00347{bottom:185.760000pt;}
.y1a_c00347{bottom:207.360000pt;}
.y19_c00347{bottom:251.760000pt;}
.y18_c00347{bottom:272.960000pt;}
.y17_c00347{bottom:294.293333pt;}
.y16_c00347{bottom:317.760000pt;}
.y15_c00347{bottom:337.893333pt;}
.y14_c00347{bottom:359.360000pt;}
.y13_c00347{bottom:381.093333pt;}
.y12_c00347{bottom:402.293333pt;}
.y11_c00347{bottom:423.893333pt;}
.y10_c00347{bottom:445.760000pt;}
.yf_c00347{bottom:467.760000pt;}
.ye_c00347{bottom:488.160000pt;}
.yd_c00347{bottom:531.626667pt;}
.yc_c00347{bottom:573.626667pt;}
.yb_c00347{bottom:595.493333pt;}
.ya_c00347{bottom:617.493333pt;}
.y9_c00347{bottom:638.960000pt;}
.y8_c00347{bottom:660.560000pt;}
.y7_c00347{bottom:682.160000pt;}
.y6_c00347{bottom:703.760000pt;}
.y5_c00347{bottom:724.293333pt;}
.y4_c00347{bottom:747.893333pt;}
.y3_c00347{bottom:768.293333pt;}
.y2_c00347{bottom:790.293333pt;}
.y1_c00347{bottom:819.893333pt;}
.ha_c00347{height:11.733399pt;}
.hb_c00347{height:38.937500pt;}
.h8_c00347{height:64.149740pt;}
.h2_c00347{height:70.664062pt;}
.h6_c00347{height:71.730729pt;}
.h3_c00347{height:73.281250pt;}
.h9_c00347{height:73.978667pt;}
.h7_c00347{height:74.906250pt;}
.h4_c00347{height:81.031250pt;}
.h5_c00347{height:87.783854pt;}
.h1_c00347{height:148.557292pt;}
.h0_c00347{height:884.666667pt;}
.w2_c00347{width:93.222667pt;}
.w0_c00347{width:593.266667pt;}
.w1_c00347{width:593.333333pt;}
.x0_c00347{left:0.000000pt;}
.xa_c00347{left:26.133333pt;}
.x3_c00347{left:29.600000pt;}
.xb_c00347{left:93.866667pt;}
.x9_c00347{left:107.066667pt;}
.xd_c00347{left:108.666667pt;}
.x8_c00347{left:109.866667pt;}
.x7_c00347{left:110.800000pt;}
.x2_c00347{left:112.400000pt;}
.x1_c00347{left:114.400000pt;}
.x4_c00347{left:115.600000pt;}
.x6_c00347{left:129.866667pt;}
.xc_c00347{left:160.133333pt;}
.x5_c00347{left:225.600000pt;}
.xf_c00347{left:253.801554pt;}
.xe_c00347{left:500.666667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a8cf633aa665df062a801f09.woff2')format("woff");}.ff1_c00348{font-family:ff1_c00348;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00348;src:url('chunks/assets/font_27e11e972c0e862da8c496da.woff2')format("woff");}.ff2_c00348{font-family:ff2_c00348;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00348;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff3_c00348{font-family:ff3_c00348;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00348;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff4_c00348{font-family:ff4_c00348;line-height:1.219238;font-style: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;}
.ls2_c00348{letter-spacing:0.000000px;}
.ls0_c00348{letter-spacing:14.064000px;}
.ls1_c00348{letter-spacing:16.680000px;}
.sc__c00348{text-shadow:none;}
.sc0_c00348{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00348{-webkit-text-stroke:0px transparent;}
.sc0_c00348{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00348{word-spacing:-59.184000px;}
.ws1_c00348{word-spacing:-21.000000px;}
.ws2_c00348{word-spacing:0.000000px;}
._16_c00348{margin-left:-24.705000px;}
._1a_c00348{margin-left:-21.060000px;}
._1e_c00348{margin-left:-16.038000px;}
._f_c00348{margin-left:-14.418000px;}
._7_c00348{margin-left:-12.960000px;}
._b_c00348{margin-left:-10.935000px;}
._a_c00348{margin-left:-8.910000px;}
._10_c00348{margin-left:-6.318000px;}
._12_c00348{margin-left:-4.941000px;}
._1_c00348{margin-left:-3.078000px;}
._0_c00348{margin-left:-1.539000px;}
._2_c00348{width:1.215000px;}
._3_c00348{width:2.430000px;}
._6_c00348{width:3.483000px;}
._5_c00348{width:5.346000px;}
._8_c00348{width:7.128000px;}
._d_c00348{width:8.424000px;}
._11_c00348{width:10.368000px;}
._4_c00348{width:11.664000px;}
._15_c00348{width:13.122000px;}
._e_c00348{width:14.175000px;}
._18_c00348{width:15.390000px;}
._c_c00348{width:16.524000px;}
._1f_c00348{width:17.577000px;}
._9_c00348{width:18.792000px;}
._13_c00348{width:29.970000px;}
._1c_c00348{width:45.360000px;}
._17_c00348{width:59.859000px;}
._1d_c00348{width:102.789000px;}
._19_c00348{width:187.677000px;}
._14_c00348{width:289.980000px;}
._1b_c00348{width:301.968000px;}
.fc2_c00348{color:transparent;}
.fc1_c00348{color:rgb(128,128,128);}
.fc0_c00348{color:rgb(0,0,0);}
.fs3_c00348{font-size:48.000000px;}
.fs1_c00348{font-size:72.000000px;}
.fs0_c00348{font-size:81.000000px;}
.fs2_c00348{font-size:84.000000px;}
.y0_c00348{bottom:0.000000px;}
.y24_c00348{bottom:3.105000px;}
.y23_c00348{bottom:7.228371px;}
.y22_c00348{bottom:83.415000px;}
.y21_c00348{bottom:108.015000px;}
.y20_c00348{bottom:133.065000px;}
.y1f_c00348{bottom:157.665000px;}
.y1e_c00348{bottom:181.965000px;}
.y1d_c00348{bottom:206.565000px;}
.y1c_c00348{bottom:231.165000px;}
.y1b_c00348{bottom:255.615000px;}
.y1a_c00348{bottom:280.515000px;}
.y19_c00348{bottom:304.815000px;}
.y18_c00348{bottom:328.515000px;}
.y17_c00348{bottom:353.115000px;}
.y16_c00348{bottom:377.115000px;}
.y15_c00348{bottom:401.715000px;}
.y14_c00348{bottom:425.565000px;}
.y13_c00348{bottom:449.865000px;}
.y12_c00348{bottom:474.165000px;}
.y11_c00348{bottom:498.615000px;}
.y10_c00348{bottom:524.265000px;}
.yf_c00348{bottom:546.765000px;}
.ye_c00348{bottom:570.765000px;}
.yd_c00348{bottom:594.465000px;}
.yc_c00348{bottom:621.015000px;}
.yb_c00348{bottom:642.915000px;}
.ya_c00348{bottom:667.215000px;}
.y9_c00348{bottom:691.515000px;}
.y8_c00348{bottom:715.965000px;}
.y7_c00348{bottom:739.815000px;}
.y6_c00348{bottom:764.415000px;}
.y5_c00348{bottom:788.715000px;}
.y4_c00348{bottom:813.765000px;}
.y3_c00348{bottom:837.465000px;}
.y2_c00348{bottom:861.615000px;}
.y1_c00348{bottom:886.065000px;}
.h6_c00348{height:13.200074px;}
.h7_c00348{height:43.804688px;}
.h2_c00348{height:79.497070px;}
.h5_c00348{height:82.441406px;}
.h3_c00348{height:84.269531px;}
.h4_c00348{height:91.160156px;}
.h0_c00348{height:989.025000px;}
.h1_c00348{height:989.250000px;}
.w1_c00348{width:104.875500px;}
.w0_c00348{width:672.000000px;}
.x0_c00348{left:0.000000px;}
.x2_c00348{left:11.100000px;}
.x1_c00348{left:28.650000px;}
.x3_c00348{left:31.050000px;}
.x4_c00348{left:32.100000px;}
.x5_c00348{left:34.050000px;}
.x6_c00348{left:36.750000px;}
.x7_c00348{left:38.250000px;}
.x8_c00348{left:40.500000px;}
.x9_c00348{left:41.550000px;}
.xa_c00348{left:42.750000px;}
.xb_c00348{left:44.100000px;}
.xc_c00348{left:45.450000px;}
.xd_c00348{left:46.950000px;}
.xe_c00348{left:48.150000px;}
.xf_c00348{left:49.500000px;}
.x10_c00348{left:51.300000px;}
.x11_c00348{left:287.814240px;}
@media print{
.v0_c00348{vertical-align:0.000000pt;}
.ls2_c00348{letter-spacing:0.000000pt;}
.ls0_c00348{letter-spacing:12.501333pt;}
.ls1_c00348{letter-spacing:14.826667pt;}
.ws0_c00348{word-spacing:-52.608000pt;}
.ws1_c00348{word-spacing:-18.666667pt;}
.ws2_c00348{word-spacing:0.000000pt;}
._16_c00348{margin-left:-21.960000pt;}
._1a_c00348{margin-left:-18.720000pt;}
._1e_c00348{margin-left:-14.256000pt;}
._f_c00348{margin-left:-12.816000pt;}
._7_c00348{margin-left:-11.520000pt;}
._b_c00348{margin-left:-9.720000pt;}
._a_c00348{margin-left:-7.920000pt;}
._10_c00348{margin-left:-5.616000pt;}
._12_c00348{margin-left:-4.392000pt;}
._1_c00348{margin-left:-2.736000pt;}
._0_c00348{margin-left:-1.368000pt;}
._2_c00348{width:1.080000pt;}
._3_c00348{width:2.160000pt;}
._6_c00348{width:3.096000pt;}
._5_c00348{width:4.752000pt;}
._8_c00348{width:6.336000pt;}
._d_c00348{width:7.488000pt;}
._11_c00348{width:9.216000pt;}
._4_c00348{width:10.368000pt;}
._15_c00348{width:11.664000pt;}
._e_c00348{width:12.600000pt;}
._18_c00348{width:13.680000pt;}
._c_c00348{width:14.688000pt;}
._1f_c00348{width:15.624000pt;}
._9_c00348{width:16.704000pt;}
._13_c00348{width:26.640000pt;}
._1c_c00348{width:40.320000pt;}
._17_c00348{width:53.208000pt;}
._1d_c00348{width:91.368000pt;}
._19_c00348{width:166.824000pt;}
._14_c00348{width:257.760000pt;}
._1b_c00348{width:268.416000pt;}
.fs3_c00348{font-size:42.666667pt;}
.fs1_c00348{font-size:64.000000pt;}
.fs0_c00348{font-size:72.000000pt;}
.fs2_c00348{font-size:74.666667pt;}
.y0_c00348{bottom:0.000000pt;}
.y24_c00348{bottom:2.760000pt;}
.y23_c00348{bottom:6.425219pt;}
.y22_c00348{bottom:74.146667pt;}
.y21_c00348{bottom:96.013333pt;}
.y20_c00348{bottom:118.280000pt;}
.y1f_c00348{bottom:140.146667pt;}
.y1e_c00348{bottom:161.746667pt;}
.y1d_c00348{bottom:183.613333pt;}
.y1c_c00348{bottom:205.480000pt;}
.y1b_c00348{bottom:227.213333pt;}
.y1a_c00348{bottom:249.346667pt;}
.y19_c00348{bottom:270.946667pt;}
.y18_c00348{bottom:292.013333pt;}
.y17_c00348{bottom:313.880000pt;}
.y16_c00348{bottom:335.213333pt;}
.y15_c00348{bottom:357.080000pt;}
.y14_c00348{bottom:378.280000pt;}
.y13_c00348{bottom:399.880000pt;}
.y12_c00348{bottom:421.480000pt;}
.y11_c00348{bottom:443.213333pt;}
.y10_c00348{bottom:466.013333pt;}
.yf_c00348{bottom:486.013333pt;}
.ye_c00348{bottom:507.346667pt;}
.yd_c00348{bottom:528.413333pt;}
.yc_c00348{bottom:552.013333pt;}
.yb_c00348{bottom:571.480000pt;}
.ya_c00348{bottom:593.080000pt;}
.y9_c00348{bottom:614.680000pt;}
.y8_c00348{bottom:636.413333pt;}
.y7_c00348{bottom:657.613333pt;}
.y6_c00348{bottom:679.480000pt;}
.y5_c00348{bottom:701.080000pt;}
.y4_c00348{bottom:723.346667pt;}
.y3_c00348{bottom:744.413333pt;}
.y2_c00348{bottom:765.880000pt;}
.y1_c00348{bottom:787.613333pt;}
.h6_c00348{height:11.733399pt;}
.h7_c00348{height:38.937500pt;}
.h2_c00348{height:70.664062pt;}
.h5_c00348{height:73.281250pt;}
.h3_c00348{height:74.906250pt;}
.h4_c00348{height:81.031250pt;}
.h0_c00348{height:879.133333pt;}
.h1_c00348{height:879.333333pt;}
.w1_c00348{width:93.222667pt;}
.w0_c00348{width:597.333333pt;}
.x0_c00348{left:0.000000pt;}
.x2_c00348{left:9.866667pt;}
.x1_c00348{left:25.466667pt;}
.x3_c00348{left:27.600000pt;}
.x4_c00348{left:28.533333pt;}
.x5_c00348{left:30.266667pt;}
.x6_c00348{left:32.666667pt;}
.x7_c00348{left:34.000000pt;}
.x8_c00348{left:36.000000pt;}
.x9_c00348{left:36.933333pt;}
.xa_c00348{left:38.000000pt;}
.xb_c00348{left:39.200000pt;}
.xc_c00348{left:40.400000pt;}
.xd_c00348{left:41.733333pt;}
.xe_c00348{left:42.800000pt;}
.xf_c00348{left:44.000000pt;}
.x10_c00348{left:45.600000pt;}
.x11_c00348{left:255.834880pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a63ac0877d8290ca6b061766.woff2')format("woff");}.ff1_c00349{font-family:ff1_c00349;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00349;src:url('chunks/assets/font_7a0c085d6253d5fbc4b8b294.woff2')format("woff");}.ff2_c00349{font-family:ff2_c00349;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00349;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff3_c00349{font-family:ff3_c00349;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00349;src:url('chunks/assets/font_dd2617e8b59abde6d95d4b68.woff2')format("woff");}.ff4_c00349{font-family:ff4_c00349;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00349;src:url('chunks/assets/font_91b434560ebb0dd14f4d0de2.woff2')format("woff");}.ff5_c00349{font-family:ff5_c00349;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00349;src:url('chunks/assets/font_a76b44fcba60415f8abb1318.woff2')format("woff");}.ff6_c00349{font-family:ff6_c00349;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00349;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c00349{font-family:ff7_c00349;line-height:1.219238;font-style: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;}
.ls2_c00349{letter-spacing:0.000000px;}
.ls1_c00349{letter-spacing:32.400000px;}
.ls0_c00349{letter-spacing:42.150000px;}
.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;}
}
.ws3_c00349{word-spacing:-37.500000px;}
.ws1_c00349{word-spacing:-33.000000px;}
.ws0_c00349{word-spacing:-17.352000px;}
.ws2_c00349{word-spacing:-15.750000px;}
.ws4_c00349{word-spacing:0.000000px;}
._1c_c00349{margin-left:-31.590000px;}
._26_c00349{margin-left:-25.191000px;}
._13_c00349{margin-left:-17.352000px;}
._1e_c00349{margin-left:-14.913000px;}
._15_c00349{margin-left:-13.365000px;}
._1f_c00349{margin-left:-12.039000px;}
._11_c00349{margin-left:-10.035000px;}
._9_c00349{margin-left:-8.424000px;}
._5_c00349{margin-left:-7.371000px;}
._12_c00349{margin-left:-6.306000px;}
._3_c00349{margin-left:-5.184000px;}
._6_c00349{margin-left:-3.969000px;}
._8_c00349{margin-left:-2.916000px;}
._b_c00349{margin-left:-1.701000px;}
._2_c00349{width:1.458000px;}
._1_c00349{width:2.673000px;}
._7_c00349{width:3.888000px;}
._0_c00349{width:5.589000px;}
._4_c00349{width:6.885000px;}
._d_c00349{width:8.748000px;}
._e_c00349{width:9.801000px;}
._1a_c00349{width:10.902000px;}
._a_c00349{width:12.069000px;}
._10_c00349{width:13.782000px;}
._c_c00349{width:14.985000px;}
._27_c00349{width:16.119000px;}
._21_c00349{width:17.403000px;}
._20_c00349{width:19.434000px;}
._22_c00349{width:29.184000px;}
._f_c00349{width:31.338000px;}
._14_c00349{width:36.927000px;}
._19_c00349{width:38.550000px;}
._17_c00349{width:40.581000px;}
._23_c00349{width:48.744000px;}
._1b_c00349{width:113.046000px;}
._24_c00349{width:137.160000px;}
._25_c00349{width:180.306000px;}
._18_c00349{width:187.596000px;}
._1d_c00349{width:272.217000px;}
._16_c00349{width:355.671000px;}
._28_c00349{width:1732.428000px;}
.fc2_c00349{color:transparent;}
.fc1_c00349{color:rgb(128,128,128);}
.fc0_c00349{color:rgb(0,0,0);}
.fs6_c00349{font-size:48.000000px;}
.fs3_c00349{font-size:63.000000px;}
.fs2_c00349{font-size:66.000000px;}
.fs1_c00349{font-size:72.000000px;}
.fs5_c00349{font-size:75.000000px;}
.fs0_c00349{font-size:81.000000px;}
.fs4_c00349{font-size:87.000000px;}
.y0_c00349{bottom:0.000000px;}
.y25_c00349{bottom:3.105000px;}
.y24_c00349{bottom:7.228357px;}
.y23_c00349{bottom:69.630000px;}
.y22_c00349{bottom:91.080000px;}
.y21_c00349{bottom:117.180000px;}
.y20_c00349{bottom:141.780000px;}
.y1f_c00349{bottom:167.130000px;}
.y1e_c00349{bottom:192.030000px;}
.y1d_c00349{bottom:217.080000px;}
.y1c_c00349{bottom:241.980000px;}
.y1b_c00349{bottom:265.230000px;}
.y1a_c00349{bottom:290.280000px;}
.y19_c00349{bottom:314.280000px;}
.y18_c00349{bottom:338.280000px;}
.y17_c00349{bottom:363.180000px;}
.y16_c00349{bottom:387.780000px;}
.y15_c00349{bottom:412.380000px;}
.y14_c00349{bottom:436.080000px;}
.y13_c00349{bottom:460.380000px;}
.y12_c00349{bottom:485.280000px;}
.y11_c00349{bottom:511.680000px;}
.y10_c00349{bottom:531.930000px;}
.yf_c00349{bottom:556.980000px;}
.ye_c00349{bottom:580.830000px;}
.yd_c00349{bottom:604.830000px;}
.yc_c00349{bottom:628.530000px;}
.yb_c00349{bottom:653.430000px;}
.ya_c00349{bottom:677.430000px;}
.y9_c00349{bottom:702.030000px;}
.y8_c00349{bottom:726.030000px;}
.y7_c00349{bottom:749.280000px;}
.y6_c00349{bottom:774.630000px;}
.y5_c00349{bottom:799.230000px;}
.y4_c00349{bottom:821.580000px;}
.y3_c00349{bottom:847.230000px;}
.y2_c00349{bottom:871.530000px;}
.y1_c00349{bottom:895.680000px;}
.h5_c00349{height:13.200074px;}
.h6_c00349{height:43.804688px;}
.h1_c00349{height:79.497070px;}
.h3_c00349{height:84.269531px;}
.h2_c00349{height:91.160156px;}
.h4_c00349{height:110.151855px;}
.h0_c00349{height:995.250000px;}
.w2_c00349{width:104.875500px;}
.w0_c00349{width:667.425000px;}
.w1_c00349{width:667.500000px;}
.x0_c00349{left:0.000000px;}
.xb_c00349{left:22.350000px;}
.xc_c00349{left:23.700000px;}
.x9_c00349{left:26.700000px;}
.x6_c00349{left:28.050000px;}
.x4_c00349{left:29.700000px;}
.x7_c00349{left:71.850000px;}
.xa_c00349{left:90.150000px;}
.x10_c00349{left:110.700000px;}
.xf_c00349{left:115.500000px;}
.xe_c00349{left:116.550000px;}
.xd_c00349{left:117.900000px;}
.x8_c00349{left:119.400000px;}
.x5_c00349{left:120.900000px;}
.x3_c00349{left:122.850000px;}
.x2_c00349{left:123.900000px;}
.x1_c00349{left:126.600000px;}
.x11_c00349{left:285.526749px;}
@media print{
.v0_c00349{vertical-align:0.000000pt;}
.ls2_c00349{letter-spacing:0.000000pt;}
.ls1_c00349{letter-spacing:28.800000pt;}
.ls0_c00349{letter-spacing:37.466667pt;}
.ws3_c00349{word-spacing:-33.333333pt;}
.ws1_c00349{word-spacing:-29.333333pt;}
.ws0_c00349{word-spacing:-15.424000pt;}
.ws2_c00349{word-spacing:-14.000000pt;}
.ws4_c00349{word-spacing:0.000000pt;}
._1c_c00349{margin-left:-28.080000pt;}
._26_c00349{margin-left:-22.392000pt;}
._13_c00349{margin-left:-15.424000pt;}
._1e_c00349{margin-left:-13.256000pt;}
._15_c00349{margin-left:-11.880000pt;}
._1f_c00349{margin-left:-10.701333pt;}
._11_c00349{margin-left:-8.920000pt;}
._9_c00349{margin-left:-7.488000pt;}
._5_c00349{margin-left:-6.552000pt;}
._12_c00349{margin-left:-5.605333pt;}
._3_c00349{margin-left:-4.608000pt;}
._6_c00349{margin-left:-3.528000pt;}
._8_c00349{margin-left:-2.592000pt;}
._b_c00349{margin-left:-1.512000pt;}
._2_c00349{width:1.296000pt;}
._1_c00349{width:2.376000pt;}
._7_c00349{width:3.456000pt;}
._0_c00349{width:4.968000pt;}
._4_c00349{width:6.120000pt;}
._d_c00349{width:7.776000pt;}
._e_c00349{width:8.712000pt;}
._1a_c00349{width:9.690667pt;}
._a_c00349{width:10.728000pt;}
._10_c00349{width:12.250667pt;}
._c_c00349{width:13.320000pt;}
._27_c00349{width:14.328000pt;}
._21_c00349{width:15.469333pt;}
._20_c00349{width:17.274667pt;}
._22_c00349{width:25.941333pt;}
._f_c00349{width:27.856000pt;}
._14_c00349{width:32.824000pt;}
._19_c00349{width:34.266667pt;}
._17_c00349{width:36.072000pt;}
._23_c00349{width:43.328000pt;}
._1b_c00349{width:100.485333pt;}
._24_c00349{width:121.920000pt;}
._25_c00349{width:160.272000pt;}
._18_c00349{width:166.752000pt;}
._1d_c00349{width:241.970667pt;}
._16_c00349{width:316.152000pt;}
._28_c00349{width:1539.936000pt;}
.fs6_c00349{font-size:42.666667pt;}
.fs3_c00349{font-size:56.000000pt;}
.fs2_c00349{font-size:58.666667pt;}
.fs1_c00349{font-size:64.000000pt;}
.fs5_c00349{font-size:66.666667pt;}
.fs0_c00349{font-size:72.000000pt;}
.fs4_c00349{font-size:77.333333pt;}
.y0_c00349{bottom:0.000000pt;}
.y25_c00349{bottom:2.760000pt;}
.y24_c00349{bottom:6.425206pt;}
.y23_c00349{bottom:61.893333pt;}
.y22_c00349{bottom:80.960000pt;}
.y21_c00349{bottom:104.160000pt;}
.y20_c00349{bottom:126.026667pt;}
.y1f_c00349{bottom:148.560000pt;}
.y1e_c00349{bottom:170.693333pt;}
.y1d_c00349{bottom:192.960000pt;}
.y1c_c00349{bottom:215.093333pt;}
.y1b_c00349{bottom:235.760000pt;}
.y1a_c00349{bottom:258.026667pt;}
.y19_c00349{bottom:279.360000pt;}
.y18_c00349{bottom:300.693333pt;}
.y17_c00349{bottom:322.826667pt;}
.y16_c00349{bottom:344.693333pt;}
.y15_c00349{bottom:366.560000pt;}
.y14_c00349{bottom:387.626667pt;}
.y13_c00349{bottom:409.226667pt;}
.y12_c00349{bottom:431.360000pt;}
.y11_c00349{bottom:454.826667pt;}
.y10_c00349{bottom:472.826667pt;}
.yf_c00349{bottom:495.093333pt;}
.ye_c00349{bottom:516.293333pt;}
.yd_c00349{bottom:537.626667pt;}
.yc_c00349{bottom:558.693333pt;}
.yb_c00349{bottom:580.826667pt;}
.ya_c00349{bottom:602.160000pt;}
.y9_c00349{bottom:624.026667pt;}
.y8_c00349{bottom:645.360000pt;}
.y7_c00349{bottom:666.026667pt;}
.y6_c00349{bottom:688.560000pt;}
.y5_c00349{bottom:710.426667pt;}
.y4_c00349{bottom:730.293333pt;}
.y3_c00349{bottom:753.093333pt;}
.y2_c00349{bottom:774.693333pt;}
.y1_c00349{bottom:796.160000pt;}
.h5_c00349{height:11.733399pt;}
.h6_c00349{height:38.937500pt;}
.h1_c00349{height:70.664062pt;}
.h3_c00349{height:74.906250pt;}
.h2_c00349{height:81.031250pt;}
.h4_c00349{height:97.912760pt;}
.h0_c00349{height:884.666667pt;}
.w2_c00349{width:93.222667pt;}
.w0_c00349{width:593.266667pt;}
.w1_c00349{width:593.333333pt;}
.x0_c00349{left:0.000000pt;}
.xb_c00349{left:19.866667pt;}
.xc_c00349{left:21.066667pt;}
.x9_c00349{left:23.733333pt;}
.x6_c00349{left:24.933333pt;}
.x4_c00349{left:26.400000pt;}
.x7_c00349{left:63.866667pt;}
.xa_c00349{left:80.133333pt;}
.x10_c00349{left:98.400000pt;}
.xf_c00349{left:102.666667pt;}
.xe_c00349{left:103.600000pt;}
.xd_c00349{left:104.800000pt;}
.x8_c00349{left:106.133333pt;}
.x5_c00349{left:107.466667pt;}
.x3_c00349{left:109.200000pt;}
.x2_c00349{left:110.133333pt;}
.x1_c00349{left:112.533333pt;}
.x11_c00349{left:253.801554pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a94b5f4b5b95e098dab0f683.woff2')format("woff");}.ff1_c00350{font-family:ff1_c00350;line-height:1.311035;font-style:normal;font-weight:normal;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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff2_c00350{font-family:ff2_c00350;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00350;src:url('chunks/assets/font_2889025f270e76b2e2aeacf6.woff2')format("woff");}.ff3_c00350{font-family:ff3_c00350;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00350;src:url('chunks/assets/font_e2344b31f21b718161b91ba5.woff2')format("woff");}.ff4_c00350{font-family:ff4_c00350;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00350;src:url('chunks/assets/font_931c4c4572d36f9add32b265.woff2')format("woff");}.ff5_c00350{font-family:ff5_c00350;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00350;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c00350{font-family:ff6_c00350;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00350{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00350{vertical-align:0.000000px;}
.ls3_c00350{letter-spacing:0.000000px;}
.ls1_c00350{letter-spacing:4.002000px;}
.ls2_c00350{letter-spacing:5.754000px;}
.ls4_c00350{letter-spacing:9.000000px;}
.ls0_c00350{letter-spacing:9.954000px;}
.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;}
}
.ws3_c00350{word-spacing:-23.250000px;}
.ws5_c00350{word-spacing:-14.250000px;}
.ws0_c00350{word-spacing:-2.223000px;}
.ws4_c00350{word-spacing:-0.513000px;}
.ws6_c00350{word-spacing:0.000000px;}
.ws1_c00350{word-spacing:1.896000px;}
.ws2_c00350{word-spacing:15.390000px;}
._13_c00350{margin-left:-12.084000px;}
._20_c00350{margin-left:-10.278000px;}
._15_c00350{margin-left:-8.871000px;}
._18_c00350{margin-left:-7.815000px;}
._19_c00350{margin-left:-6.669000px;}
._1d_c00350{margin-left:-5.586000px;}
._c_c00350{margin-left:-3.363000px;}
._d_c00350{margin-left:-1.824000px;}
._3_c00350{width:1.938000px;}
._4_c00350{width:3.363000px;}
._7_c00350{width:5.244000px;}
._a_c00350{width:6.555000px;}
._1_c00350{width:7.581000px;}
._5_c00350{width:8.721000px;}
._2_c00350{width:9.747000px;}
._6_c00350{width:10.830000px;}
._0_c00350{width:12.426000px;}
._8_c00350{width:16.131000px;}
._11_c00350{width:17.157000px;}
._b_c00350{width:18.183000px;}
._9_c00350{width:19.665000px;}
._f_c00350{width:21.489000px;}
._e_c00350{width:23.313000px;}
._10_c00350{width:24.453000px;}
._16_c00350{width:25.992000px;}
._1b_c00350{width:27.222000px;}
._1c_c00350{width:28.386000px;}
._22_c00350{width:29.616000px;}
._21_c00350{width:31.554000px;}
._1f_c00350{width:33.141000px;}
._1a_c00350{width:35.277000px;}
._12_c00350{width:36.657000px;}
._1e_c00350{width:43.035000px;}
._17_c00350{width:46.761000px;}
._23_c00350{width:77.544000px;}
._14_c00350{width:233.508000px;}
.fc2_c00350{color:transparent;}
.fc1_c00350{color:rgb(128,128,128);}
.fc0_c00350{color:rgb(0,0,0);}
.fs2_c00350{font-size:48.000000px;}
.fs0_c00350{font-size:57.000000px;}
.fs1_c00350{font-size:78.000000px;}
.y0_c00350{bottom:0.000000px;}
.y25_c00350{bottom:3.105000px;}
.y24_c00350{bottom:7.228371px;}
.y23_c00350{bottom:55.065000px;}
.y22_c00350{bottom:79.665000px;}
.y21_c00350{bottom:105.615000px;}
.y20_c00350{bottom:129.915000px;}
.y1f_c00350{bottom:154.215000px;}
.y1e_c00350{bottom:178.965000px;}
.y1d_c00350{bottom:203.265000px;}
.y1c_c00350{bottom:227.565000px;}
.y1b_c00350{bottom:252.465000px;}
.y1a_c00350{bottom:276.765000px;}
.y19_c00350{bottom:300.765000px;}
.y18_c00350{bottom:325.365000px;}
.y17_c00350{bottom:349.065000px;}
.y16_c00350{bottom:373.365000px;}
.y15_c00350{bottom:397.665000px;}
.y14_c00350{bottom:421.665000px;}
.y13_c00350{bottom:445.815000px;}
.y12_c00350{bottom:470.115000px;}
.y11_c00350{bottom:494.115000px;}
.y10_c00350{bottom:518.415000px;}
.yf_c00350{bottom:541.815000px;}
.ye_c00350{bottom:565.965000px;}
.yd_c00350{bottom:589.965000px;}
.yc_c00350{bottom:613.665000px;}
.yb_c00350{bottom:637.665000px;}
.ya_c00350{bottom:661.815000px;}
.y9_c00350{bottom:686.865000px;}
.y8_c00350{bottom:710.415000px;}
.y7_c00350{bottom:734.415000px;}
.y6_c00350{bottom:758.715000px;}
.y5_c00350{bottom:783.315000px;}
.y4_c00350{bottom:807.315000px;}
.y3_c00350{bottom:831.615000px;}
.y2_c00350{bottom:856.215000px;}
.y1_c00350{bottom:880.515000px;}
.h4_c00350{height:13.200074px;}
.h5_c00350{height:43.804688px;}
.h2_c00350{height:57.445312px;}
.h3_c00350{height:98.756836px;}
.h0_c00350{height:989.025000px;}
.h1_c00350{height:989.250000px;}
.w1_c00350{width:104.875500px;}
.w0_c00350{width:672.000000px;}
.x0_c00350{left:0.000000px;}
.x6_c00350{left:24.300000px;}
.x5_c00350{left:25.950000px;}
.x4_c00350{left:37.800000px;}
.x7_c00350{left:43.500000px;}
.x1_c00350{left:44.550000px;}
.x3_c00350{left:45.900000px;}
.x2_c00350{left:69.750000px;}
.x9_c00350{left:287.814240px;}
.x8_c00350{left:508.200000px;}
@media print{
.v0_c00350{vertical-align:0.000000pt;}
.ls3_c00350{letter-spacing:0.000000pt;}
.ls1_c00350{letter-spacing:3.557333pt;}
.ls2_c00350{letter-spacing:5.114667pt;}
.ls4_c00350{letter-spacing:8.000000pt;}
.ls0_c00350{letter-spacing:8.848000pt;}
.ws3_c00350{word-spacing:-20.666667pt;}
.ws5_c00350{word-spacing:-12.666667pt;}
.ws0_c00350{word-spacing:-1.976000pt;}
.ws4_c00350{word-spacing:-0.456000pt;}
.ws6_c00350{word-spacing:0.000000pt;}
.ws1_c00350{word-spacing:1.685333pt;}
.ws2_c00350{word-spacing:13.680000pt;}
._13_c00350{margin-left:-10.741333pt;}
._20_c00350{margin-left:-9.136000pt;}
._15_c00350{margin-left:-7.885333pt;}
._18_c00350{margin-left:-6.946667pt;}
._19_c00350{margin-left:-5.928000pt;}
._1d_c00350{margin-left:-4.965333pt;}
._c_c00350{margin-left:-2.989333pt;}
._d_c00350{margin-left:-1.621333pt;}
._3_c00350{width:1.722667pt;}
._4_c00350{width:2.989333pt;}
._7_c00350{width:4.661333pt;}
._a_c00350{width:5.826667pt;}
._1_c00350{width:6.738667pt;}
._5_c00350{width:7.752000pt;}
._2_c00350{width:8.664000pt;}
._6_c00350{width:9.626667pt;}
._0_c00350{width:11.045333pt;}
._8_c00350{width:14.338667pt;}
._11_c00350{width:15.250667pt;}
._b_c00350{width:16.162667pt;}
._9_c00350{width:17.480000pt;}
._f_c00350{width:19.101333pt;}
._e_c00350{width:20.722667pt;}
._10_c00350{width:21.736000pt;}
._16_c00350{width:23.104000pt;}
._1b_c00350{width:24.197333pt;}
._1c_c00350{width:25.232000pt;}
._22_c00350{width:26.325333pt;}
._21_c00350{width:28.048000pt;}
._1f_c00350{width:29.458667pt;}
._1a_c00350{width:31.357333pt;}
._12_c00350{width:32.584000pt;}
._1e_c00350{width:38.253333pt;}
._17_c00350{width:41.565333pt;}
._23_c00350{width:68.928000pt;}
._14_c00350{width:207.562667pt;}
.fs2_c00350{font-size:42.666667pt;}
.fs0_c00350{font-size:50.666667pt;}
.fs1_c00350{font-size:69.333333pt;}
.y0_c00350{bottom:0.000000pt;}
.y25_c00350{bottom:2.760000pt;}
.y24_c00350{bottom:6.425219pt;}
.y23_c00350{bottom:48.946667pt;}
.y22_c00350{bottom:70.813333pt;}
.y21_c00350{bottom:93.880000pt;}
.y20_c00350{bottom:115.480000pt;}
.y1f_c00350{bottom:137.080000pt;}
.y1e_c00350{bottom:159.080000pt;}
.y1d_c00350{bottom:180.680000pt;}
.y1c_c00350{bottom:202.280000pt;}
.y1b_c00350{bottom:224.413333pt;}
.y1a_c00350{bottom:246.013333pt;}
.y19_c00350{bottom:267.346667pt;}
.y18_c00350{bottom:289.213333pt;}
.y17_c00350{bottom:310.280000pt;}
.y16_c00350{bottom:331.880000pt;}
.y15_c00350{bottom:353.480000pt;}
.y14_c00350{bottom:374.813333pt;}
.y13_c00350{bottom:396.280000pt;}
.y12_c00350{bottom:417.880000pt;}
.y11_c00350{bottom:439.213333pt;}
.y10_c00350{bottom:460.813333pt;}
.yf_c00350{bottom:481.613333pt;}
.ye_c00350{bottom:503.080000pt;}
.yd_c00350{bottom:524.413333pt;}
.yc_c00350{bottom:545.480000pt;}
.yb_c00350{bottom:566.813333pt;}
.ya_c00350{bottom:588.280000pt;}
.y9_c00350{bottom:610.546667pt;}
.y8_c00350{bottom:631.480000pt;}
.y7_c00350{bottom:652.813333pt;}
.y6_c00350{bottom:674.413333pt;}
.y5_c00350{bottom:696.280000pt;}
.y4_c00350{bottom:717.613333pt;}
.y3_c00350{bottom:739.213333pt;}
.y2_c00350{bottom:761.080000pt;}
.y1_c00350{bottom:782.680000pt;}
.h4_c00350{height:11.733399pt;}
.h5_c00350{height:38.937500pt;}
.h2_c00350{height:51.062500pt;}
.h3_c00350{height:87.783854pt;}
.h0_c00350{height:879.133333pt;}
.h1_c00350{height:879.333333pt;}
.w1_c00350{width:93.222667pt;}
.w0_c00350{width:597.333333pt;}
.x0_c00350{left:0.000000pt;}
.x6_c00350{left:21.600000pt;}
.x5_c00350{left:23.066667pt;}
.x4_c00350{left:33.600000pt;}
.x7_c00350{left:38.666667pt;}
.x1_c00350{left:39.600000pt;}
.x3_c00350{left:40.800000pt;}
.x2_c00350{left:62.000000pt;}
.x9_c00350{left:255.834880pt;}
.x8_c00350{left:451.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_c0793806c3fa20e2613bb48f.woff2')format("woff");}.ff1_c00351{font-family:ff1_c00351;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00351;src:url('chunks/assets/font_db174008d2d3a04e3aa9fc92.woff2')format("woff");}.ff2_c00351{font-family:ff2_c00351;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00351;src:url('chunks/assets/font_08b5c23f1ab7df8decce0c47.woff2')format("woff");}.ff3_c00351{font-family:ff3_c00351;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00351;src:url('chunks/assets/font_4e2955ece484d7cf37d2a728.woff2')format("woff");}.ff4_c00351{font-family:ff4_c00351;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00351;src:url('chunks/assets/font_fd1c79735403c7d5cefd05c4.woff2')format("woff");}.ff5_c00351{font-family:ff5_c00351;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00351;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c00351{font-family:ff6_c00351;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00351{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00351{vertical-align:0.000000px;}
.ls3_c00351{letter-spacing:-9.000000px;}
.ls2_c00351{letter-spacing:0.000000px;}
.ls1_c00351{letter-spacing:2.100000px;}
.ls0_c00351{letter-spacing:3.645000px;}
.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:-23.895000px;}
.ws0_c00351{word-spacing:-23.859000px;}
.ws3_c00351{word-spacing:-18.798000px;}
.ws2_c00351{word-spacing:-17.352000px;}
.ws4_c00351{word-spacing:0.000000px;}
._19_c00351{margin-left:-31.041000px;}
._11_c00351{margin-left:-24.300000px;}
._30_c00351{margin-left:-23.085000px;}
._25_c00351{margin-left:-19.590000px;}
._2e_c00351{margin-left:-16.524000px;}
._18_c00351{margin-left:-13.596000px;}
._10_c00351{margin-left:-12.291000px;}
._28_c00351{margin-left:-11.058000px;}
._16_c00351{margin-left:-9.477000px;}
._23_c00351{margin-left:-7.845000px;}
._1b_c00351{margin-left:-6.768000px;}
._3_c00351{margin-left:-5.340000px;}
._5_c00351{margin-left:-3.960000px;}
._6_c00351{margin-left:-2.475000px;}
._e_c00351{margin-left:-1.143000px;}
._1_c00351{width:1.287000px;}
._0_c00351{width:3.267000px;}
._a_c00351{width:4.674000px;}
._2_c00351{width:6.036000px;}
._13_c00351{width:7.086000px;}
._7_c00351{width:8.100000px;}
._12_c00351{width:9.108000px;}
._9_c00351{width:10.206000px;}
._2c_c00351{width:11.208000px;}
._8_c00351{width:12.270000px;}
._b_c00351{width:14.115000px;}
._d_c00351{width:15.474000px;}
._14_c00351{width:17.148000px;}
._c_c00351{width:18.573000px;}
._1d_c00351{width:21.261000px;}
._21_c00351{width:23.007000px;}
._f_c00351{width:24.537000px;}
._1a_c00351{width:25.848000px;}
._4_c00351{width:29.403000px;}
._2f_c00351{width:34.668000px;}
._17_c00351{width:40.542000px;}
._1c_c00351{width:48.762000px;}
._15_c00351{width:57.324000px;}
._29_c00351{width:58.974000px;}
._20_c00351{width:73.362000px;}
._2a_c00351{width:78.840000px;}
._32_c00351{width:87.441000px;}
._24_c00351{width:89.949000px;}
._1f_c00351{width:93.150000px;}
._26_c00351{width:140.535000px;}
._2d_c00351{width:171.456000px;}
._22_c00351{width:186.138000px;}
._31_c00351{width:232.308000px;}
._1e_c00351{width:318.735000px;}
._2b_c00351{width:360.051000px;}
._27_c00351{width:366.885000px;}
._33_c00351{width:398.514000px;}
._34_c00351{width:945.612000px;}
.fc2_c00351{color:transparent;}
.fc1_c00351{color:rgb(128,128,128);}
.fc0_c00351{color:rgb(0,0,0);}
.fs7_c00351{font-size:48.000000px;}
.fs4_c00351{font-size:57.000000px;}
.fs5_c00351{font-size:72.000000px;}
.fs3_c00351{font-size:78.000000px;}
.fs2_c00351{font-size:81.000000px;}
.fs6_c00351{font-size:87.000000px;}
.fs0_c00351{font-size:99.000000px;}
.fs1_c00351{font-size:132.000000px;}
.y0_c00351{bottom:0.000000px;}
.y26_c00351{bottom:3.105000px;}
.y25_c00351{bottom:7.228357px;}
.y24_c00351{bottom:58.830000px;}
.y23_c00351{bottom:82.380000px;}
.y22_c00351{bottom:107.730000px;}
.y21_c00351{bottom:135.780000px;}
.y20_c00351{bottom:156.930000px;}
.y1f_c00351{bottom:182.280000px;}
.y1e_c00351{bottom:206.580000px;}
.y1d_c00351{bottom:231.480000px;}
.y1c_c00351{bottom:255.480000px;}
.y1b_c00351{bottom:280.230000px;}
.y1a_c00351{bottom:305.730000px;}
.y19_c00351{bottom:329.130000px;}
.y18_c00351{bottom:353.130000px;}
.y17_c00351{bottom:381.030000px;}
.y16_c00351{bottom:400.980000px;}
.y15_c00351{bottom:426.330000px;}
.y14_c00351{bottom:450.930000px;}
.y13_c00351{bottom:474.930000px;}
.y12_c00351{bottom:499.230000px;}
.y11_c00351{bottom:524.130000px;}
.y10_c00351{bottom:547.830000px;}
.yf_c00351{bottom:571.080000px;}
.ye_c00351{bottom:595.080000px;}
.yd_c00351{bottom:621.030000px;}
.yc_c00351{bottom:643.380000px;}
.yb_c00351{bottom:667.530000px;}
.ya_c00351{bottom:691.980000px;}
.y9_c00351{bottom:713.430000px;}
.y8_c00351{bottom:740.430000px;}
.y7_c00351{bottom:765.180000px;}
.y6_c00351{bottom:786.480000px;}
.y5_c00351{bottom:814.380000px;}
.y4_c00351{bottom:837.630000px;}
.y3_c00351{bottom:861.930000px;}
.y2_c00351{bottom:886.680000px;}
.y1_c00351{bottom:921.330000px;}
.h9_c00351{height:13.200074px;}
.ha_c00351{height:43.804688px;}
.h4_c00351{height:66.713379px;}
.h2_c00351{height:79.497070px;}
.h8_c00351{height:81.632812px;}
.h5_c00351{height:84.269531px;}
.h7_c00351{height:91.160156px;}
.h6_c00351{height:91.176000px;}
.h3_c00351{height:98.756836px;}
.h1_c00351{height:167.126953px;}
.h0_c00351{height:995.250000px;}
.w2_c00351{width:104.875500px;}
.w0_c00351{width:667.425000px;}
.w1_c00351{width:667.500000px;}
.x0_c00351{left:0.000000px;}
.x8_c00351{left:38.250000px;}
.xe_c00351{left:39.600000px;}
.xb_c00351{left:43.200000px;}
.xf_c00351{left:45.000000px;}
.xd_c00351{left:60.750000px;}
.x9_c00351{left:97.200000px;}
.xc_c00351{left:123.900000px;}
.x10_c00351{left:124.950000px;}
.xa_c00351{left:126.000000px;}
.x3_c00351{left:127.650000px;}
.x4_c00351{left:128.700000px;}
.x2_c00351{left:129.900000px;}
.x5_c00351{left:131.250000px;}
.x6_c00351{left:183.750000px;}
.x1_c00351{left:228.450000px;}
.x7_c00351{left:285.300000px;}
@media print{
.v0_c00351{vertical-align:0.000000pt;}
.ls3_c00351{letter-spacing:-8.000000pt;}
.ls2_c00351{letter-spacing:0.000000pt;}
.ls1_c00351{letter-spacing:1.866667pt;}
.ls0_c00351{letter-spacing:3.240000pt;}
.ws1_c00351{word-spacing:-21.240000pt;}
.ws0_c00351{word-spacing:-21.208000pt;}
.ws3_c00351{word-spacing:-16.709333pt;}
.ws2_c00351{word-spacing:-15.424000pt;}
.ws4_c00351{word-spacing:0.000000pt;}
._19_c00351{margin-left:-27.592000pt;}
._11_c00351{margin-left:-21.600000pt;}
._30_c00351{margin-left:-20.520000pt;}
._25_c00351{margin-left:-17.413333pt;}
._2e_c00351{margin-left:-14.688000pt;}
._18_c00351{margin-left:-12.085333pt;}
._10_c00351{margin-left:-10.925333pt;}
._28_c00351{margin-left:-9.829333pt;}
._16_c00351{margin-left:-8.424000pt;}
._23_c00351{margin-left:-6.973333pt;}
._1b_c00351{margin-left:-6.016000pt;}
._3_c00351{margin-left:-4.746667pt;}
._5_c00351{margin-left:-3.520000pt;}
._6_c00351{margin-left:-2.200000pt;}
._e_c00351{margin-left:-1.016000pt;}
._1_c00351{width:1.144000pt;}
._0_c00351{width:2.904000pt;}
._a_c00351{width:4.154667pt;}
._2_c00351{width:5.365333pt;}
._13_c00351{width:6.298667pt;}
._7_c00351{width:7.200000pt;}
._12_c00351{width:8.096000pt;}
._9_c00351{width:9.072000pt;}
._2c_c00351{width:9.962667pt;}
._8_c00351{width:10.906667pt;}
._b_c00351{width:12.546667pt;}
._d_c00351{width:13.754667pt;}
._14_c00351{width:15.242667pt;}
._c_c00351{width:16.509333pt;}
._1d_c00351{width:18.898667pt;}
._21_c00351{width:20.450667pt;}
._f_c00351{width:21.810667pt;}
._1a_c00351{width:22.976000pt;}
._4_c00351{width:26.136000pt;}
._2f_c00351{width:30.816000pt;}
._17_c00351{width:36.037333pt;}
._1c_c00351{width:43.344000pt;}
._15_c00351{width:50.954667pt;}
._29_c00351{width:52.421333pt;}
._20_c00351{width:65.210667pt;}
._2a_c00351{width:70.080000pt;}
._32_c00351{width:77.725333pt;}
._24_c00351{width:79.954667pt;}
._1f_c00351{width:82.800000pt;}
._26_c00351{width:124.920000pt;}
._2d_c00351{width:152.405333pt;}
._22_c00351{width:165.456000pt;}
._31_c00351{width:206.496000pt;}
._1e_c00351{width:283.320000pt;}
._2b_c00351{width:320.045333pt;}
._27_c00351{width:326.120000pt;}
._33_c00351{width:354.234667pt;}
._34_c00351{width:840.544000pt;}
.fs7_c00351{font-size:42.666667pt;}
.fs4_c00351{font-size:50.666667pt;}
.fs5_c00351{font-size:64.000000pt;}
.fs3_c00351{font-size:69.333333pt;}
.fs2_c00351{font-size:72.000000pt;}
.fs6_c00351{font-size:77.333333pt;}
.fs0_c00351{font-size:88.000000pt;}
.fs1_c00351{font-size:117.333333pt;}
.y0_c00351{bottom:0.000000pt;}
.y26_c00351{bottom:2.760000pt;}
.y25_c00351{bottom:6.425206pt;}
.y24_c00351{bottom:52.293333pt;}
.y23_c00351{bottom:73.226667pt;}
.y22_c00351{bottom:95.760000pt;}
.y21_c00351{bottom:120.693333pt;}
.y20_c00351{bottom:139.493333pt;}
.y1f_c00351{bottom:162.026667pt;}
.y1e_c00351{bottom:183.626667pt;}
.y1d_c00351{bottom:205.760000pt;}
.y1c_c00351{bottom:227.093333pt;}
.y1b_c00351{bottom:249.093333pt;}
.y1a_c00351{bottom:271.760000pt;}
.y19_c00351{bottom:292.560000pt;}
.y18_c00351{bottom:313.893333pt;}
.y17_c00351{bottom:338.693333pt;}
.y16_c00351{bottom:356.426667pt;}
.y15_c00351{bottom:378.960000pt;}
.y14_c00351{bottom:400.826667pt;}
.y13_c00351{bottom:422.160000pt;}
.y12_c00351{bottom:443.760000pt;}
.y11_c00351{bottom:465.893333pt;}
.y10_c00351{bottom:486.960000pt;}
.yf_c00351{bottom:507.626667pt;}
.ye_c00351{bottom:528.960000pt;}
.yd_c00351{bottom:552.026667pt;}
.yc_c00351{bottom:571.893333pt;}
.yb_c00351{bottom:593.360000pt;}
.ya_c00351{bottom:615.093333pt;}
.y9_c00351{bottom:634.160000pt;}
.y8_c00351{bottom:658.160000pt;}
.y7_c00351{bottom:680.160000pt;}
.y6_c00351{bottom:699.093333pt;}
.y5_c00351{bottom:723.893333pt;}
.y4_c00351{bottom:744.560000pt;}
.y3_c00351{bottom:766.160000pt;}
.y2_c00351{bottom:788.160000pt;}
.y1_c00351{bottom:818.960000pt;}
.h9_c00351{height:11.733399pt;}
.ha_c00351{height:38.937500pt;}
.h4_c00351{height:59.300781pt;}
.h2_c00351{height:70.664062pt;}
.h8_c00351{height:72.562500pt;}
.h5_c00351{height:74.906250pt;}
.h7_c00351{height:81.031250pt;}
.h6_c00351{height:81.045333pt;}
.h3_c00351{height:87.783854pt;}
.h1_c00351{height:148.557292pt;}
.h0_c00351{height:884.666667pt;}
.w2_c00351{width:93.222667pt;}
.w0_c00351{width:593.266667pt;}
.w1_c00351{width:593.333333pt;}
.x0_c00351{left:0.000000pt;}
.x8_c00351{left:34.000000pt;}
.xe_c00351{left:35.200000pt;}
.xb_c00351{left:38.400000pt;}
.xf_c00351{left:40.000000pt;}
.xd_c00351{left:54.000000pt;}
.x9_c00351{left:86.400000pt;}
.xc_c00351{left:110.133333pt;}
.x10_c00351{left:111.066667pt;}
.xa_c00351{left:112.000000pt;}
.x3_c00351{left:113.466667pt;}
.x4_c00351{left:114.400000pt;}
.x2_c00351{left:115.466667pt;}
.x5_c00351{left:116.666667pt;}
.x6_c00351{left:163.333333pt;}
.x1_c00351{left:203.066667pt;}
.x7_c00351{left:253.600000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_8bef6de8cf9020418cc6adeb.woff2')format("woff");}.ff1_c00352{font-family:ff1_c00352;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00352;src:url('chunks/assets/font_48d6ca3e3649aa313f5c6d92.woff2')format("woff");}.ff2_c00352{font-family:ff2_c00352;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00352;src:url('chunks/assets/font_55cef316173525b6f342079f.woff2')format("woff");}.ff3_c00352{font-family:ff3_c00352;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00352;src:url('chunks/assets/font_08821b163102287e103e8ff4.woff2')format("woff");}.ff4_c00352{font-family:ff4_c00352;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00352;src:url('chunks/assets/font_0a20cec1794a3432953ece7a.woff2')format("woff");}.ff5_c00352{font-family:ff5_c00352;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00352;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c00352{font-family:ff6_c00352;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00352{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00352{vertical-align:0.000000px;}
.ls2_c00352{letter-spacing:-9.000000px;}
.ls1_c00352{letter-spacing:0.000000px;}
.ls3_c00352{letter-spacing:9.000000px;}
.ls0_c00352{letter-spacing:16.746000px;}
.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;}
}
.ws2_c00352{word-spacing:-22.737000px;}
.ws1_c00352{word-spacing:-20.250000px;}
.ws3_c00352{word-spacing:0.000000px;}
.ws0_c00352{word-spacing:1.539000px;}
._22_c00352{margin-left:-25.116000px;}
._21_c00352{margin-left:-17.628000px;}
._0_c00352{margin-left:-13.464000px;}
._24_c00352{margin-left:-12.339000px;}
._25_c00352{margin-left:-10.140000px;}
._23_c00352{margin-left:-8.658000px;}
._1_c00352{margin-left:-7.128000px;}
._8_c00352{margin-left:-5.643000px;}
._5_c00352{margin-left:-3.366000px;}
._9_c00352{margin-left:-1.782000px;}
._19_c00352{width:1.281000px;}
._e_c00352{width:2.448000px;}
._4_c00352{width:3.861000px;}
._2_c00352{width:4.950000px;}
._7_c00352{width:6.039000px;}
._3_c00352{width:7.821000px;}
._13_c00352{width:8.952000px;}
._6_c00352{width:10.296000px;}
._15_c00352{width:11.400000px;}
._d_c00352{width:12.426000px;}
._f_c00352{width:15.708000px;}
._11_c00352{width:16.815000px;}
._18_c00352{width:17.916000px;}
._12_c00352{width:19.038000px;}
._17_c00352{width:20.199000px;}
._1a_c00352{width:22.170000px;}
._c_c00352{width:23.598000px;}
._16_c00352{width:24.843000px;}
._27_c00352{width:25.941000px;}
._1b_c00352{width:26.985000px;}
._10_c00352{width:28.323000px;}
._1e_c00352{width:29.934000px;}
._26_c00352{width:31.518000px;}
._b_c00352{width:38.646000px;}
._a_c00352{width:61.944000px;}
._1d_c00352{width:74.742000px;}
._1c_c00352{width:130.059000px;}
._14_c00352{width:226.866000px;}
._28_c00352{width:240.741000px;}
._20_c00352{width:266.067000px;}
._1f_c00352{width:345.984000px;}
.fc2_c00352{color:transparent;}
.fc1_c00352{color:rgb(128,128,128);}
.fc0_c00352{color:rgb(0,0,0);}
.fs6_c00352{font-size:48.000000px;}
.fs2_c00352{font-size:57.000000px;}
.fs4_c00352{font-size:78.000000px;}
.fs3_c00352{font-size:81.000000px;}
.fs5_c00352{font-size:93.000000px;}
.fs0_c00352{font-size:99.000000px;}
.fs1_c00352{font-size:132.000000px;}
.y0_c00352{bottom:0.000000px;}
.y26_c00352{bottom:3.105000px;}
.y25_c00352{bottom:7.228371px;}
.y24_c00352{bottom:53.115000px;}
.y23_c00352{bottom:76.965000px;}
.y22_c00352{bottom:102.315000px;}
.y21_c00352{bottom:126.915000px;}
.y20_c00352{bottom:151.215000px;}
.y1f_c00352{bottom:175.965000px;}
.y1e_c00352{bottom:200.265000px;}
.y1d_c00352{bottom:224.565000px;}
.y1c_c00352{bottom:249.465000px;}
.y1b_c00352{bottom:273.465000px;}
.y1a_c00352{bottom:297.765000px;}
.y19_c00352{bottom:322.065000px;}
.y18_c00352{bottom:345.915000px;}
.y17_c00352{bottom:370.215000px;}
.y16_c00352{bottom:394.215000px;}
.y15_c00352{bottom:418.215000px;}
.y14_c00352{bottom:442.815000px;}
.y13_c00352{bottom:467.115000px;}
.y12_c00352{bottom:491.715000px;}
.y11_c00352{bottom:514.815000px;}
.y10_c00352{bottom:539.115000px;}
.yf_c00352{bottom:563.415000px;}
.ye_c00352{bottom:587.265000px;}
.yd_c00352{bottom:610.665000px;}
.yc_c00352{bottom:634.965000px;}
.yb_c00352{bottom:658.815000px;}
.ya_c00352{bottom:682.815000px;}
.y9_c00352{bottom:707.115000px;}
.y8_c00352{bottom:731.415000px;}
.y7_c00352{bottom:755.415000px;}
.y6_c00352{bottom:780.015000px;}
.y5_c00352{bottom:804.315000px;}
.y4_c00352{bottom:829.215000px;}
.y3_c00352{bottom:853.515000px;}
.y2_c00352{bottom:877.515000px;}
.y1_c00352{bottom:912.915000px;}
.h7_c00352{height:13.200074px;}
.h8_c00352{height:43.804688px;}
.h3_c00352{height:57.445312px;}
.h4_c00352{height:79.497070px;}
.h6_c00352{height:91.274414px;}
.h5_c00352{height:98.756836px;}
.h2_c00352{height:167.126953px;}
.h0_c00352{height:989.025000px;}
.h1_c00352{height:989.250000px;}
.w1_c00352{width:104.875500px;}
.w0_c00352{width:672.000000px;}
.x0_c00352{left:0.000000px;}
.x8_c00352{left:36.900000px;}
.x5_c00352{left:53.550000px;}
.x6_c00352{left:55.350000px;}
.x2_c00352{left:56.400000px;}
.x4_c00352{left:57.450000px;}
.x3_c00352{left:58.500000px;}
.x7_c00352{left:60.150000px;}
.x1_c00352{left:72.600000px;}
.xa_c00352{left:287.814240px;}
.x9_c00352{left:424.950000px;}
@media print{
.v0_c00352{vertical-align:0.000000pt;}
.ls2_c00352{letter-spacing:-8.000000pt;}
.ls1_c00352{letter-spacing:0.000000pt;}
.ls3_c00352{letter-spacing:8.000000pt;}
.ls0_c00352{letter-spacing:14.885333pt;}
.ws2_c00352{word-spacing:-20.210667pt;}
.ws1_c00352{word-spacing:-18.000000pt;}
.ws3_c00352{word-spacing:0.000000pt;}
.ws0_c00352{word-spacing:1.368000pt;}
._22_c00352{margin-left:-22.325333pt;}
._21_c00352{margin-left:-15.669333pt;}
._0_c00352{margin-left:-11.968000pt;}
._24_c00352{margin-left:-10.968000pt;}
._25_c00352{margin-left:-9.013333pt;}
._23_c00352{margin-left:-7.696000pt;}
._1_c00352{margin-left:-6.336000pt;}
._8_c00352{margin-left:-5.016000pt;}
._5_c00352{margin-left:-2.992000pt;}
._9_c00352{margin-left:-1.584000pt;}
._19_c00352{width:1.138667pt;}
._e_c00352{width:2.176000pt;}
._4_c00352{width:3.432000pt;}
._2_c00352{width:4.400000pt;}
._7_c00352{width:5.368000pt;}
._3_c00352{width:6.952000pt;}
._13_c00352{width:7.957333pt;}
._6_c00352{width:9.152000pt;}
._15_c00352{width:10.133333pt;}
._d_c00352{width:11.045333pt;}
._f_c00352{width:13.962667pt;}
._11_c00352{width:14.946667pt;}
._18_c00352{width:15.925333pt;}
._12_c00352{width:16.922667pt;}
._17_c00352{width:17.954667pt;}
._1a_c00352{width:19.706667pt;}
._c_c00352{width:20.976000pt;}
._16_c00352{width:22.082667pt;}
._27_c00352{width:23.058667pt;}
._1b_c00352{width:23.986667pt;}
._10_c00352{width:25.176000pt;}
._1e_c00352{width:26.608000pt;}
._26_c00352{width:28.016000pt;}
._b_c00352{width:34.352000pt;}
._a_c00352{width:55.061333pt;}
._1d_c00352{width:66.437333pt;}
._1c_c00352{width:115.608000pt;}
._14_c00352{width:201.658667pt;}
._28_c00352{width:213.992000pt;}
._20_c00352{width:236.504000pt;}
._1f_c00352{width:307.541333pt;}
.fs6_c00352{font-size:42.666667pt;}
.fs2_c00352{font-size:50.666667pt;}
.fs4_c00352{font-size:69.333333pt;}
.fs3_c00352{font-size:72.000000pt;}
.fs5_c00352{font-size:82.666667pt;}
.fs0_c00352{font-size:88.000000pt;}
.fs1_c00352{font-size:117.333333pt;}
.y0_c00352{bottom:0.000000pt;}
.y26_c00352{bottom:2.760000pt;}
.y25_c00352{bottom:6.425219pt;}
.y24_c00352{bottom:47.213333pt;}
.y23_c00352{bottom:68.413333pt;}
.y22_c00352{bottom:90.946667pt;}
.y21_c00352{bottom:112.813333pt;}
.y20_c00352{bottom:134.413333pt;}
.y1f_c00352{bottom:156.413333pt;}
.y1e_c00352{bottom:178.013333pt;}
.y1d_c00352{bottom:199.613333pt;}
.y1c_c00352{bottom:221.746667pt;}
.y1b_c00352{bottom:243.080000pt;}
.y1a_c00352{bottom:264.680000pt;}
.y19_c00352{bottom:286.280000pt;}
.y18_c00352{bottom:307.480000pt;}
.y17_c00352{bottom:329.080000pt;}
.y16_c00352{bottom:350.413333pt;}
.y15_c00352{bottom:371.746667pt;}
.y14_c00352{bottom:393.613333pt;}
.y13_c00352{bottom:415.213333pt;}
.y12_c00352{bottom:437.080000pt;}
.y11_c00352{bottom:457.613333pt;}
.y10_c00352{bottom:479.213333pt;}
.yf_c00352{bottom:500.813333pt;}
.ye_c00352{bottom:522.013333pt;}
.yd_c00352{bottom:542.813333pt;}
.yc_c00352{bottom:564.413333pt;}
.yb_c00352{bottom:585.613333pt;}
.ya_c00352{bottom:606.946667pt;}
.y9_c00352{bottom:628.546667pt;}
.y8_c00352{bottom:650.146667pt;}
.y7_c00352{bottom:671.480000pt;}
.y6_c00352{bottom:693.346667pt;}
.y5_c00352{bottom:714.946667pt;}
.y4_c00352{bottom:737.080000pt;}
.y3_c00352{bottom:758.680000pt;}
.y2_c00352{bottom:780.013333pt;}
.y1_c00352{bottom:811.480000pt;}
.h7_c00352{height:11.733399pt;}
.h8_c00352{height:38.937500pt;}
.h3_c00352{height:51.062500pt;}
.h4_c00352{height:70.664062pt;}
.h6_c00352{height:81.132812pt;}
.h5_c00352{height:87.783854pt;}
.h2_c00352{height:148.557292pt;}
.h0_c00352{height:879.133333pt;}
.h1_c00352{height:879.333333pt;}
.w1_c00352{width:93.222667pt;}
.w0_c00352{width:597.333333pt;}
.x0_c00352{left:0.000000pt;}
.x8_c00352{left:32.800000pt;}
.x5_c00352{left:47.600000pt;}
.x6_c00352{left:49.200000pt;}
.x2_c00352{left:50.133333pt;}
.x4_c00352{left:51.066667pt;}
.x3_c00352{left:52.000000pt;}
.x7_c00352{left:53.466667pt;}
.x1_c00352{left:64.533333pt;}
.xa_c00352{left:255.834880pt;}
.x9_c00352{left:377.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_d4062c512c0a5a669f5651a9.woff2')format("woff");}.ff1_c00353{font-family:ff1_c00353;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00353;src:url('chunks/assets/font_897e1856a00d04a4e67776a5.woff2')format("woff");}.ff2_c00353{font-family:ff2_c00353;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00353;src:url('chunks/assets/font_1dd36169d16279af7fb1bccb.woff2')format("woff");}.ff3_c00353{font-family:ff3_c00353;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00353;src:url('chunks/assets/font_27a3feb0946db98b96825783.woff2')format("woff");}.ff4_c00353{font-family:ff4_c00353;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00353;src:url('chunks/assets/font_58a0561ae8e2d541a7d08f09.woff2')format("woff");}.ff5_c00353{font-family:ff5_c00353;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00353;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c00353{font-family:ff6_c00353;line-height:1.219238;font-style: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;}
.ls4_c00353{letter-spacing:-6.000000px;}
.ls2_c00353{letter-spacing:0.000000px;}
.ls0_c00353{letter-spacing:3.000000px;}
.ls3_c00353{letter-spacing:6.000000px;}
.ls1_c00353{letter-spacing:16.500000px;}
.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;}
}
.ws3_c00353{word-spacing:-61.686000px;}
.ws2_c00353{word-spacing:-20.250000px;}
.ws0_c00353{word-spacing:-17.352000px;}
.ws1_c00353{word-spacing:-15.750000px;}
.ws4_c00353{word-spacing:0.000000px;}
._15_c00353{margin-left:-19.764000px;}
._16_c00353{margin-left:-18.132000px;}
._1d_c00353{margin-left:-17.013000px;}
._17_c00353{margin-left:-14.796000px;}
._19_c00353{margin-left:-12.084000px;}
._1c_c00353{margin-left:-10.584000px;}
._10_c00353{margin-left:-8.769000px;}
._3_c00353{margin-left:-6.552000px;}
._1_c00353{margin-left:-4.536000px;}
._2_c00353{margin-left:-3.384000px;}
._0_c00353{margin-left:-1.872000px;}
._e_c00353{width:1.053000px;}
._8_c00353{width:2.106000px;}
._5_c00353{width:3.312000px;}
._6_c00353{width:4.464000px;}
._b_c00353{width:6.390000px;}
._11_c00353{width:7.440000px;}
._9_c00353{width:8.784000px;}
._f_c00353{width:10.407000px;}
._7_c00353{width:11.799000px;}
._a_c00353{width:13.455000px;}
._c_c00353{width:15.534000px;}
._14_c00353{width:16.659000px;}
._1b_c00353{width:18.594000px;}
._d_c00353{width:25.809000px;}
._1a_c00353{width:107.193000px;}
._4_c00353{width:128.448000px;}
._1e_c00353{width:234.627000px;}
._18_c00353{width:258.867000px;}
._13_c00353{width:342.297000px;}
._12_c00353{width:389.664000px;}
.fc2_c00353{color:transparent;}
.fc1_c00353{color:rgb(128,128,128);}
.fc0_c00353{color:rgb(0,0,0);}
.fs2_c00353{font-size:42.000000px;}
.fs5_c00353{font-size:48.000000px;}
.fs3_c00353{font-size:51.000000px;}
.fs0_c00353{font-size:72.000000px;}
.fs1_c00353{font-size:81.000000px;}
.fs4_c00353{font-size:87.000000px;}
.y0_c00353{bottom:0.000000px;}
.y25_c00353{bottom:3.105000px;}
.y24_c00353{bottom:7.228357px;}
.y23_c00353{bottom:38.880000px;}
.y22_c00353{bottom:63.180000px;}
.y21_c00353{bottom:88.830000px;}
.y20_c00353{bottom:114.030000px;}
.y1f_c00353{bottom:138.330000px;}
.y1e_c00353{bottom:163.380000px;}
.y1d_c00353{bottom:187.980000px;}
.y1c_c00353{bottom:212.730000px;}
.y1b_c00353{bottom:237.030000px;}
.y1a_c00353{bottom:261.930000px;}
.y19_c00353{bottom:286.530000px;}
.y18_c00353{bottom:310.830000px;}
.y17_c00353{bottom:335.580000px;}
.y16_c00353{bottom:359.880000px;}
.y15_c00353{bottom:384.480000px;}
.y14_c00353{bottom:408.480000px;}
.y13_c00353{bottom:433.380000px;}
.y12_c00353{bottom:456.930000px;}
.y11_c00353{bottom:481.380000px;}
.y10_c00353{bottom:505.530000px;}
.yf_c00353{bottom:529.230000px;}
.ye_c00353{bottom:555.180000px;}
.yd_c00353{bottom:577.830000px;}
.yc_c00353{bottom:602.130000px;}
.yb_c00353{bottom:626.730000px;}
.ya_c00353{bottom:651.030000px;}
.y9_c00353{bottom:675.330000px;}
.y8_c00353{bottom:699.630000px;}
.y7_c00353{bottom:723.630000px;}
.y6_c00353{bottom:748.230000px;}
.y5_c00353{bottom:772.230000px;}
.y4_c00353{bottom:798.930000px;}
.y3_c00353{bottom:821.430000px;}
.y2_c00353{bottom:845.730000px;}
.y1_c00353{bottom:869.730000px;}
.h5_c00353{height:13.200074px;}
.h6_c00353{height:43.804688px;}
.h3_c00353{height:79.497070px;}
.h2_c00353{height:84.269531px;}
.h4_c00353{height:91.176000px;}
.h1_c00353{height:978.750000px;}
.h0_c00353{height:979.050000px;}
.w2_c00353{width:104.875500px;}
.w0_c00353{width:656.100000px;}
.w1_c00353{width:656.250000px;}
.x0_c00353{left:0.000000px;}
.x4_c00353{left:23.700000px;}
.xa_c00353{left:26.400000px;}
.x9_c00353{left:29.100000px;}
.x1_c00353{left:30.150000px;}
.x8_c00353{left:72.900000px;}
.x7_c00353{left:81.450000px;}
.x2_c00353{left:115.200000px;}
.x6_c00353{left:117.150000px;}
.x5_c00353{left:118.800000px;}
.x3_c00353{left:119.850000px;}
.xc_c00353{left:279.864258px;}
.xb_c00353{left:585.150000px;}
@media print{
.v0_c00353{vertical-align:0.000000pt;}
.ls4_c00353{letter-spacing:-5.333333pt;}
.ls2_c00353{letter-spacing:0.000000pt;}
.ls0_c00353{letter-spacing:2.666667pt;}
.ls3_c00353{letter-spacing:5.333333pt;}
.ls1_c00353{letter-spacing:14.666667pt;}
.ws3_c00353{word-spacing:-54.832000pt;}
.ws2_c00353{word-spacing:-18.000000pt;}
.ws0_c00353{word-spacing:-15.424000pt;}
.ws1_c00353{word-spacing:-14.000000pt;}
.ws4_c00353{word-spacing:0.000000pt;}
._15_c00353{margin-left:-17.568000pt;}
._16_c00353{margin-left:-16.117333pt;}
._1d_c00353{margin-left:-15.122667pt;}
._17_c00353{margin-left:-13.152000pt;}
._19_c00353{margin-left:-10.741333pt;}
._1c_c00353{margin-left:-9.408000pt;}
._10_c00353{margin-left:-7.794667pt;}
._3_c00353{margin-left:-5.824000pt;}
._1_c00353{margin-left:-4.032000pt;}
._2_c00353{margin-left:-3.008000pt;}
._0_c00353{margin-left:-1.664000pt;}
._e_c00353{width:0.936000pt;}
._8_c00353{width:1.872000pt;}
._5_c00353{width:2.944000pt;}
._6_c00353{width:3.968000pt;}
._b_c00353{width:5.680000pt;}
._11_c00353{width:6.613333pt;}
._9_c00353{width:7.808000pt;}
._f_c00353{width:9.250667pt;}
._7_c00353{width:10.488000pt;}
._a_c00353{width:11.960000pt;}
._c_c00353{width:13.808000pt;}
._14_c00353{width:14.808000pt;}
._1b_c00353{width:16.528000pt;}
._d_c00353{width:22.941333pt;}
._1a_c00353{width:95.282667pt;}
._4_c00353{width:114.176000pt;}
._1e_c00353{width:208.557333pt;}
._18_c00353{width:230.104000pt;}
._13_c00353{width:304.264000pt;}
._12_c00353{width:346.368000pt;}
.fs2_c00353{font-size:37.333333pt;}
.fs5_c00353{font-size:42.666667pt;}
.fs3_c00353{font-size:45.333333pt;}
.fs0_c00353{font-size:64.000000pt;}
.fs1_c00353{font-size:72.000000pt;}
.fs4_c00353{font-size:77.333333pt;}
.y0_c00353{bottom:0.000000pt;}
.y25_c00353{bottom:2.760000pt;}
.y24_c00353{bottom:6.425206pt;}
.y23_c00353{bottom:34.560000pt;}
.y22_c00353{bottom:56.160000pt;}
.y21_c00353{bottom:78.960000pt;}
.y20_c00353{bottom:101.360000pt;}
.y1f_c00353{bottom:122.960000pt;}
.y1e_c00353{bottom:145.226667pt;}
.y1d_c00353{bottom:167.093333pt;}
.y1c_c00353{bottom:189.093333pt;}
.y1b_c00353{bottom:210.693333pt;}
.y1a_c00353{bottom:232.826667pt;}
.y19_c00353{bottom:254.693333pt;}
.y18_c00353{bottom:276.293333pt;}
.y17_c00353{bottom:298.293333pt;}
.y16_c00353{bottom:319.893333pt;}
.y15_c00353{bottom:341.760000pt;}
.y14_c00353{bottom:363.093333pt;}
.y13_c00353{bottom:385.226667pt;}
.y12_c00353{bottom:406.160000pt;}
.y11_c00353{bottom:427.893333pt;}
.y10_c00353{bottom:449.360000pt;}
.yf_c00353{bottom:470.426667pt;}
.ye_c00353{bottom:493.493333pt;}
.yd_c00353{bottom:513.626667pt;}
.yc_c00353{bottom:535.226667pt;}
.yb_c00353{bottom:557.093333pt;}
.ya_c00353{bottom:578.693333pt;}
.y9_c00353{bottom:600.293333pt;}
.y8_c00353{bottom:621.893333pt;}
.y7_c00353{bottom:643.226667pt;}
.y6_c00353{bottom:665.093333pt;}
.y5_c00353{bottom:686.426667pt;}
.y4_c00353{bottom:710.160000pt;}
.y3_c00353{bottom:730.160000pt;}
.y2_c00353{bottom:751.760000pt;}
.y1_c00353{bottom:773.093333pt;}
.h5_c00353{height:11.733399pt;}
.h6_c00353{height:38.937500pt;}
.h3_c00353{height:70.664062pt;}
.h2_c00353{height:74.906250pt;}
.h4_c00353{height:81.045333pt;}
.h1_c00353{height:870.000000pt;}
.h0_c00353{height:870.266667pt;}
.w2_c00353{width:93.222667pt;}
.w0_c00353{width:583.200000pt;}
.w1_c00353{width:583.333333pt;}
.x0_c00353{left:0.000000pt;}
.x4_c00353{left:21.066667pt;}
.xa_c00353{left:23.466667pt;}
.x9_c00353{left:25.866667pt;}
.x1_c00353{left:26.800000pt;}
.x8_c00353{left:64.800000pt;}
.x7_c00353{left:72.400000pt;}
.x2_c00353{left:102.400000pt;}
.x6_c00353{left:104.133333pt;}
.x5_c00353{left:105.600000pt;}
.x3_c00353{left:106.533333pt;}
.xc_c00353{left:248.768229pt;}
.xb_c00353{left:520.133333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_d82a391509f3b0cbfcb8631e.woff2')format("woff");}.ff1_c00354{font-family:ff1_c00354;line-height:1.437000;font-style:normal;font-weight:normal;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_fceb65e98e0f90d8ded63052.woff2')format("woff");}.ff2_c00354{font-family:ff2_c00354;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00354;src:url('chunks/assets/font_c504b14d18ecfa2e282a5236.woff2')format("woff");}.ff3_c00354{font-family:ff3_c00354;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00354;src:url('chunks/assets/font_d5012637a5d766aaabd9bbd3.woff2')format("woff");}.ff4_c00354{font-family:ff4_c00354;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00354;src:url('chunks/assets/font_854fbda6dd00a52297a30845.woff2')format("woff");}.ff5_c00354{font-family:ff5_c00354;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00354;src:url('chunks/assets/font_8c4ad299a3bb2a67047f738e.woff2')format("woff");}.ff6_c00354{font-family:ff6_c00354;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00354;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c00354{font-family:ff7_c00354;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00354{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00354{vertical-align:0.000000px;}
.v1_c00354{vertical-align:155.400000px;}
.ls7_c00354{letter-spacing:0.000000px;}
.ls5_c00354{letter-spacing:4.002000px;}
.ls6_c00354{letter-spacing:5.754000px;}
.ls9_c00354{letter-spacing:6.000000px;}
.ls0_c00354{letter-spacing:6.063000px;}
.ls8_c00354{letter-spacing:9.000000px;}
.ls3_c00354{letter-spacing:13.350000px;}
.ls4_c00354{letter-spacing:21.402000px;}
.ls2_c00354{letter-spacing:28.173000px;}
.ls1_c00354{letter-spacing:58.764000px;}
.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;}
}
.ws4_c00354{word-spacing:-28.500000px;}
.ws0_c00354{word-spacing:-22.737000px;}
.ws5_c00354{word-spacing:-17.352000px;}
.ws1_c00354{word-spacing:-17.250000px;}
.ws3_c00354{word-spacing:-13.737000px;}
.ws2_c00354{word-spacing:-12.690000px;}
.ws6_c00354{word-spacing:0.000000px;}
._13_c00354{margin-left:-13.221000px;}
._11_c00354{margin-left:-11.166000px;}
._3_c00354{margin-left:-9.108000px;}
._22_c00354{margin-left:-7.347000px;}
._6_c00354{margin-left:-5.841000px;}
._5_c00354{margin-left:-3.762000px;}
._4_c00354{margin-left:-2.673000px;}
._d_c00354{margin-left:-1.386000px;}
._c_c00354{width:1.089000px;}
._a_c00354{width:2.178000px;}
._b_c00354{width:3.663000px;}
._14_c00354{width:4.674000px;}
._0_c00354{width:5.742000px;}
._7_c00354{width:7.524000px;}
._1_c00354{width:8.910000px;}
._2_c00354{width:10.197000px;}
._8_c00354{width:11.385000px;}
._9_c00354{width:13.068000px;}
._1a_c00354{width:15.279000px;}
._10_c00354{width:16.302000px;}
._12_c00354{width:17.325000px;}
._19_c00354{width:18.435000px;}
._f_c00354{width:19.542000px;}
._18_c00354{width:20.991000px;}
._15_c00354{width:22.152000px;}
._16_c00354{width:23.598000px;}
._1f_c00354{width:24.978000px;}
._17_c00354{width:27.132000px;}
._1b_c00354{width:29.370000px;}
._20_c00354{width:31.068000px;}
._1c_c00354{width:33.153000px;}
._1d_c00354{width:39.804000px;}
._e_c00354{width:78.453000px;}
._21_c00354{width:159.498000px;}
._1e_c00354{width:199.548000px;}
._23_c00354{width:208.758000px;}
.fc2_c00354{color:transparent;}
.fc1_c00354{color:rgb(128,128,128);}
.fc0_c00354{color:rgb(0,0,0);}
.fs8_c00354{font-size:48.000000px;}
.fs2_c00354{font-size:57.000000px;}
.fs5_c00354{font-size:60.000000px;}
.fs4_c00354{font-size:69.000000px;}
.fs7_c00354{font-size:72.000000px;}
.fs1_c00354{font-size:78.000000px;}
.fs6_c00354{font-size:81.000000px;}
.fs0_c00354{font-size:99.000000px;}
.fs3_c00354{font-size:276.000000px;}
.y0_c00354{bottom:0.000000px;}
.y25_c00354{bottom:3.105000px;}
.y24_c00354{bottom:7.228371px;}
.y23_c00354{bottom:54.015000px;}
.y22_c00354{bottom:78.015000px;}
.y21_c00354{bottom:102.915000px;}
.y20_c00354{bottom:127.665000px;}
.y1f_c00354{bottom:152.265000px;}
.y1e_c00354{bottom:177.315000px;}
.y1d_c00354{bottom:201.615000px;}
.y1c_c00354{bottom:225.915000px;}
.y1b_c00354{bottom:251.415000px;}
.y1a_c00354{bottom:274.815000px;}
.y19_c00354{bottom:299.115000px;}
.y18_c00354{bottom:323.415000px;}
.y17_c00354{bottom:347.715000px;}
.y16_c00354{bottom:371.715000px;}
.y15_c00354{bottom:395.865000px;}
.y14_c00354{bottom:420.165000px;}
.y13_c00354{bottom:444.915000px;}
.y12_c00354{bottom:468.465000px;}
.y11_c00354{bottom:492.765000px;}
.y10_c00354{bottom:517.515000px;}
.yf_c00354{bottom:541.065000px;}
.ye_c00354{bottom:565.065000px;}
.yd_c00354{bottom:589.365000px;}
.yc_c00354{bottom:613.365000px;}
.yb_c00354{bottom:637.965000px;}
.ya_c00354{bottom:661.515000px;}
.y9_c00354{bottom:686.115000px;}
.y8_c00354{bottom:710.565000px;}
.y7_c00354{bottom:734.715000px;}
.y5_c00354{bottom:744.465000px;}
.y6_c00354{bottom:759.165000px;}
.y4_c00354{bottom:807.765000px;}
.y3_c00354{bottom:831.615000px;}
.y2_c00354{bottom:880.665000px;}
.y1_c00354{bottom:915.765000px;}
.hb_c00354{height:13.200074px;}
.hc_c00354{height:43.804688px;}
.h3_c00354{height:57.445312px;}
.h8_c00354{height:58.886719px;}
.h5_c00354{height:66.713379px;}
.h9_c00354{height:72.168457px;}
.h7_c00354{height:72.312000px;}
.ha_c00354{height:84.269531px;}
.h4_c00354{height:98.756836px;}
.h2_c00354{height:103.752000px;}
.h6_c00354{height:289.248000px;}
.h0_c00354{height:989.025000px;}
.h1_c00354{height:989.250000px;}
.w1_c00354{width:104.875500px;}
.w0_c00354{width:672.000000px;}
.x0_c00354{left:0.000000px;}
.xb_c00354{left:57.300000px;}
.x5_c00354{left:65.100000px;}
.xa_c00354{left:69.150000px;}
.x9_c00354{left:70.950000px;}
.x8_c00354{left:72.000000px;}
.x2_c00354{left:73.350000px;}
.x7_c00354{left:75.300000px;}
.x1_c00354{left:99.150000px;}
.x3_c00354{left:111.450000px;}
.x6_c00354{left:121.950000px;}
.x4_c00354{left:268.050000px;}
.xd_c00354{left:287.814240px;}
.xc_c00354{left:431.550000px;}
@media print{
.v0_c00354{vertical-align:0.000000pt;}
.v1_c00354{vertical-align:138.133333pt;}
.ls7_c00354{letter-spacing:0.000000pt;}
.ls5_c00354{letter-spacing:3.557333pt;}
.ls6_c00354{letter-spacing:5.114667pt;}
.ls9_c00354{letter-spacing:5.333333pt;}
.ls0_c00354{letter-spacing:5.389333pt;}
.ls8_c00354{letter-spacing:8.000000pt;}
.ls3_c00354{letter-spacing:11.866667pt;}
.ls4_c00354{letter-spacing:19.024000pt;}
.ls2_c00354{letter-spacing:25.042667pt;}
.ls1_c00354{letter-spacing:52.234667pt;}
.ws4_c00354{word-spacing:-25.333333pt;}
.ws0_c00354{word-spacing:-20.210667pt;}
.ws5_c00354{word-spacing:-15.424000pt;}
.ws1_c00354{word-spacing:-15.333333pt;}
.ws3_c00354{word-spacing:-12.210667pt;}
.ws2_c00354{word-spacing:-11.280000pt;}
.ws6_c00354{word-spacing:0.000000pt;}
._13_c00354{margin-left:-11.752000pt;}
._11_c00354{margin-left:-9.925333pt;}
._3_c00354{margin-left:-8.096000pt;}
._22_c00354{margin-left:-6.530667pt;}
._6_c00354{margin-left:-5.192000pt;}
._5_c00354{margin-left:-3.344000pt;}
._4_c00354{margin-left:-2.376000pt;}
._d_c00354{margin-left:-1.232000pt;}
._c_c00354{width:0.968000pt;}
._a_c00354{width:1.936000pt;}
._b_c00354{width:3.256000pt;}
._14_c00354{width:4.154667pt;}
._0_c00354{width:5.104000pt;}
._7_c00354{width:6.688000pt;}
._1_c00354{width:7.920000pt;}
._2_c00354{width:9.064000pt;}
._8_c00354{width:10.120000pt;}
._9_c00354{width:11.616000pt;}
._1a_c00354{width:13.581333pt;}
._10_c00354{width:14.490667pt;}
._12_c00354{width:15.400000pt;}
._19_c00354{width:16.386667pt;}
._f_c00354{width:17.370667pt;}
._18_c00354{width:18.658667pt;}
._15_c00354{width:19.690667pt;}
._16_c00354{width:20.976000pt;}
._1f_c00354{width:22.202667pt;}
._17_c00354{width:24.117333pt;}
._1b_c00354{width:26.106667pt;}
._20_c00354{width:27.616000pt;}
._1c_c00354{width:29.469333pt;}
._1d_c00354{width:35.381333pt;}
._e_c00354{width:69.736000pt;}
._21_c00354{width:141.776000pt;}
._1e_c00354{width:177.376000pt;}
._23_c00354{width:185.562667pt;}
.fs8_c00354{font-size:42.666667pt;}
.fs2_c00354{font-size:50.666667pt;}
.fs5_c00354{font-size:53.333333pt;}
.fs4_c00354{font-size:61.333333pt;}
.fs7_c00354{font-size:64.000000pt;}
.fs1_c00354{font-size:69.333333pt;}
.fs6_c00354{font-size:72.000000pt;}
.fs0_c00354{font-size:88.000000pt;}
.fs3_c00354{font-size:245.333333pt;}
.y0_c00354{bottom:0.000000pt;}
.y25_c00354{bottom:2.760000pt;}
.y24_c00354{bottom:6.425219pt;}
.y23_c00354{bottom:48.013333pt;}
.y22_c00354{bottom:69.346667pt;}
.y21_c00354{bottom:91.480000pt;}
.y20_c00354{bottom:113.480000pt;}
.y1f_c00354{bottom:135.346667pt;}
.y1e_c00354{bottom:157.613333pt;}
.y1d_c00354{bottom:179.213333pt;}
.y1c_c00354{bottom:200.813333pt;}
.y1b_c00354{bottom:223.480000pt;}
.y1a_c00354{bottom:244.280000pt;}
.y19_c00354{bottom:265.880000pt;}
.y18_c00354{bottom:287.480000pt;}
.y17_c00354{bottom:309.080000pt;}
.y16_c00354{bottom:330.413333pt;}
.y15_c00354{bottom:351.880000pt;}
.y14_c00354{bottom:373.480000pt;}
.y13_c00354{bottom:395.480000pt;}
.y12_c00354{bottom:416.413333pt;}
.y11_c00354{bottom:438.013333pt;}
.y10_c00354{bottom:460.013333pt;}
.yf_c00354{bottom:480.946667pt;}
.ye_c00354{bottom:502.280000pt;}
.yd_c00354{bottom:523.880000pt;}
.yc_c00354{bottom:545.213333pt;}
.yb_c00354{bottom:567.080000pt;}
.ya_c00354{bottom:588.013333pt;}
.y9_c00354{bottom:609.880000pt;}
.y8_c00354{bottom:631.613333pt;}
.y7_c00354{bottom:653.080000pt;}
.y5_c00354{bottom:661.746667pt;}
.y6_c00354{bottom:674.813333pt;}
.y4_c00354{bottom:718.013333pt;}
.y3_c00354{bottom:739.213333pt;}
.y2_c00354{bottom:782.813333pt;}
.y1_c00354{bottom:814.013333pt;}
.hb_c00354{height:11.733399pt;}
.hc_c00354{height:38.937500pt;}
.h3_c00354{height:51.062500pt;}
.h8_c00354{height:52.343750pt;}
.h5_c00354{height:59.300781pt;}
.h9_c00354{height:64.149740pt;}
.h7_c00354{height:64.277333pt;}
.ha_c00354{height:74.906250pt;}
.h4_c00354{height:87.783854pt;}
.h2_c00354{height:92.224000pt;}
.h6_c00354{height:257.109333pt;}
.h0_c00354{height:879.133333pt;}
.h1_c00354{height:879.333333pt;}
.w1_c00354{width:93.222667pt;}
.w0_c00354{width:597.333333pt;}
.x0_c00354{left:0.000000pt;}
.xb_c00354{left:50.933333pt;}
.x5_c00354{left:57.866667pt;}
.xa_c00354{left:61.466667pt;}
.x9_c00354{left:63.066667pt;}
.x8_c00354{left:64.000000pt;}
.x2_c00354{left:65.200000pt;}
.x7_c00354{left:66.933333pt;}
.x1_c00354{left:88.133333pt;}
.x3_c00354{left:99.066667pt;}
.x6_c00354{left:108.400000pt;}
.x4_c00354{left:238.266667pt;}
.xd_c00354{left:255.834880pt;}
.xc_c00354{left:383.600000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_bbd0f5a5bf65d199cfab36a7.woff2')format("woff");}.ff1_c00355{font-family:ff1_c00355;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00355;src:url('chunks/assets/font_6f7779c5124104536f27a654.woff2')format("woff");}.ff2_c00355{font-family:ff2_c00355;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00355;src:url('chunks/assets/font_9b66176a406117650331a18f.woff2')format("woff");}.ff3_c00355{font-family:ff3_c00355;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00355;src:url('chunks/assets/font_83e5f89e911d4862a394f03e.woff2')format("woff");}.ff4_c00355{font-family:ff4_c00355;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00355;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c00355{font-family:ff5_c00355;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00355{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00355{vertical-align:0.000000px;}
.ls3_c00355{letter-spacing:0.000000px;}
.ls2_c00355{letter-spacing:3.000000px;}
.ls0_c00355{letter-spacing:7.200000px;}
.ls1_c00355{letter-spacing:9.000000px;}
.sc__c00355{text-shadow:none;}
.sc0_c00355{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00355{-webkit-text-stroke:0px transparent;}
.sc0_c00355{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00355{word-spacing:-50.064000px;}
.ws3_c00355{word-spacing:-20.250000px;}
.ws2_c00355{word-spacing:-17.352000px;}
.ws1_c00355{word-spacing:-1.152000px;}
.ws4_c00355{word-spacing:0.000000px;}
._1f_c00355{margin-left:-27.813000px;}
._11_c00355{margin-left:-23.004000px;}
._1c_c00355{margin-left:-20.520000px;}
._21_c00355{margin-left:-19.503000px;}
._7_c00355{margin-left:-15.120000px;}
._1b_c00355{margin-left:-13.872000px;}
._13_c00355{margin-left:-12.123000px;}
._18_c00355{margin-left:-11.025000px;}
._e_c00355{margin-left:-9.897000px;}
._1e_c00355{margin-left:-7.776000px;}
._6_c00355{margin-left:-6.615000px;}
._1_c00355{margin-left:-4.992000px;}
._0_c00355{margin-left:-3.567000px;}
._9_c00355{margin-left:-1.989000px;}
._f_c00355{width:1.191000px;}
._a_c00355{width:2.304000px;}
._4_c00355{width:3.675000px;}
._3_c00355{width:5.460000px;}
._5_c00355{width:7.140000px;}
._b_c00355{width:8.928000px;}
._17_c00355{width:10.404000px;}
._8_c00355{width:11.865000px;}
._c_c00355{width:13.632000px;}
._19_c00355{width:14.760000px;}
._10_c00355{width:15.864000px;}
._16_c00355{width:17.388000px;}
._1a_c00355{width:19.032000px;}
._22_c00355{width:30.927000px;}
._14_c00355{width:34.599000px;}
._25_c00355{width:35.853000px;}
._1d_c00355{width:105.729000px;}
._12_c00355{width:113.565000px;}
._20_c00355{width:126.456000px;}
._24_c00355{width:159.084000px;}
._23_c00355{width:170.589000px;}
._d_c00355{width:190.998000px;}
._2_c00355{width:203.280000px;}
._15_c00355{width:217.440000px;}
.fc2_c00355{color:transparent;}
.fc1_c00355{color:rgb(128,128,128);}
.fc0_c00355{color:rgb(0,0,0);}
.fs5_c00355{font-size:48.000000px;}
.fs3_c00355{font-size:66.000000px;}
.fs2_c00355{font-size:72.000000px;}
.fs4_c00355{font-size:81.000000px;}
.fs0_c00355{font-size:87.000000px;}
.fs1_c00355{font-size:105.000000px;}
.y0_c00355{bottom:0.000000px;}
.y26_c00355{bottom:3.105000px;}
.y25_c00355{bottom:7.228357px;}
.y24_c00355{bottom:54.330000px;}
.y23_c00355{bottom:80.430000px;}
.y22_c00355{bottom:105.630000px;}
.y21_c00355{bottom:129.630000px;}
.y20_c00355{bottom:154.530000px;}
.y1f_c00355{bottom:178.830000px;}
.y1e_c00355{bottom:203.280000px;}
.y1d_c00355{bottom:227.430000px;}
.y1c_c00355{bottom:252.480000px;}
.y1b_c00355{bottom:277.380000px;}
.y1a_c00355{bottom:301.680000px;}
.y19_c00355{bottom:325.980000px;}
.y18_c00355{bottom:350.280000px;}
.y17_c00355{bottom:375.030000px;}
.y16_c00355{bottom:399.030000px;}
.y15_c00355{bottom:422.880000px;}
.y14_c00355{bottom:447.180000px;}
.y13_c00355{bottom:472.230000px;}
.y12_c00355{bottom:495.780000px;}
.y11_c00355{bottom:520.380000px;}
.y10_c00355{bottom:544.080000px;}
.yf_c00355{bottom:568.380000px;}
.ye_c00355{bottom:592.080000px;}
.yd_c00355{bottom:616.680000px;}
.yc_c00355{bottom:640.530000px;}
.yb_c00355{bottom:665.580000px;}
.ya_c00355{bottom:689.580000px;}
.y9_c00355{bottom:713.580000px;}
.y8_c00355{bottom:737.880000px;}
.y7_c00355{bottom:762.030000px;}
.y6_c00355{bottom:787.830000px;}
.y5_c00355{bottom:810.780000px;}
.y4_c00355{bottom:834.030000px;}
.y3_c00355{bottom:859.230000px;}
.y2_c00355{bottom:882.930000px;}
.y1_c00355{bottom:919.680000px;}
.h4_c00355{height:13.200074px;}
.h5_c00355{height:43.804688px;}
.h3_c00355{height:79.497070px;}
.h2_c00355{height:84.269531px;}
.h1_c00355{height:103.000488px;}
.h0_c00355{height:995.250000px;}
.w2_c00355{width:104.875500px;}
.w0_c00355{width:667.425000px;}
.w1_c00355{width:667.500000px;}
.x0_c00355{left:0.000000px;}
.x2_c00355{left:18.300000px;}
.x5_c00355{left:20.550000px;}
.x8_c00355{left:24.750000px;}
.xc_c00355{left:28.050000px;}
.xf_c00355{left:31.350000px;}
.x10_c00355{left:32.400000px;}
.x4_c00355{left:71.550000px;}
.xd_c00355{left:79.350000px;}
.x1_c00355{left:106.950000px;}
.x3_c00355{left:109.050000px;}
.x6_c00355{left:110.700000px;}
.x7_c00355{left:112.350000px;}
.xa_c00355{left:114.450000px;}
.x9_c00355{left:115.500000px;}
.xe_c00355{left:118.500000px;}
.x11_c00355{left:121.500000px;}
.xb_c00355{left:171.900000px;}
.x13_c00355{left:285.526749px;}
.x12_c00355{left:572.400000px;}
@media print{
.v0_c00355{vertical-align:0.000000pt;}
.ls3_c00355{letter-spacing:0.000000pt;}
.ls2_c00355{letter-spacing:2.666667pt;}
.ls0_c00355{letter-spacing:6.400000pt;}
.ls1_c00355{letter-spacing:8.000000pt;}
.ws0_c00355{word-spacing:-44.501333pt;}
.ws3_c00355{word-spacing:-18.000000pt;}
.ws2_c00355{word-spacing:-15.424000pt;}
.ws1_c00355{word-spacing:-1.024000pt;}
.ws4_c00355{word-spacing:0.000000pt;}
._1f_c00355{margin-left:-24.722667pt;}
._11_c00355{margin-left:-20.448000pt;}
._1c_c00355{margin-left:-18.240000pt;}
._21_c00355{margin-left:-17.336000pt;}
._7_c00355{margin-left:-13.440000pt;}
._1b_c00355{margin-left:-12.330667pt;}
._13_c00355{margin-left:-10.776000pt;}
._18_c00355{margin-left:-9.800000pt;}
._e_c00355{margin-left:-8.797333pt;}
._1e_c00355{margin-left:-6.912000pt;}
._6_c00355{margin-left:-5.880000pt;}
._1_c00355{margin-left:-4.437333pt;}
._0_c00355{margin-left:-3.170667pt;}
._9_c00355{margin-left:-1.768000pt;}
._f_c00355{width:1.058667pt;}
._a_c00355{width:2.048000pt;}
._4_c00355{width:3.266667pt;}
._3_c00355{width:4.853333pt;}
._5_c00355{width:6.346667pt;}
._b_c00355{width:7.936000pt;}
._17_c00355{width:9.248000pt;}
._8_c00355{width:10.546667pt;}
._c_c00355{width:12.117333pt;}
._19_c00355{width:13.120000pt;}
._10_c00355{width:14.101333pt;}
._16_c00355{width:15.456000pt;}
._1a_c00355{width:16.917333pt;}
._22_c00355{width:27.490667pt;}
._14_c00355{width:30.754667pt;}
._25_c00355{width:31.869333pt;}
._1d_c00355{width:93.981333pt;}
._12_c00355{width:100.946667pt;}
._20_c00355{width:112.405333pt;}
._24_c00355{width:141.408000pt;}
._23_c00355{width:151.634667pt;}
._d_c00355{width:169.776000pt;}
._2_c00355{width:180.693333pt;}
._15_c00355{width:193.280000pt;}
.fs5_c00355{font-size:42.666667pt;}
.fs3_c00355{font-size:58.666667pt;}
.fs2_c00355{font-size:64.000000pt;}
.fs4_c00355{font-size:72.000000pt;}
.fs0_c00355{font-size:77.333333pt;}
.fs1_c00355{font-size:93.333333pt;}
.y0_c00355{bottom:0.000000pt;}
.y26_c00355{bottom:2.760000pt;}
.y25_c00355{bottom:6.425206pt;}
.y24_c00355{bottom:48.293333pt;}
.y23_c00355{bottom:71.493333pt;}
.y22_c00355{bottom:93.893333pt;}
.y21_c00355{bottom:115.226667pt;}
.y20_c00355{bottom:137.360000pt;}
.y1f_c00355{bottom:158.960000pt;}
.y1e_c00355{bottom:180.693333pt;}
.y1d_c00355{bottom:202.160000pt;}
.y1c_c00355{bottom:224.426667pt;}
.y1b_c00355{bottom:246.560000pt;}
.y1a_c00355{bottom:268.160000pt;}
.y19_c00355{bottom:289.760000pt;}
.y18_c00355{bottom:311.360000pt;}
.y17_c00355{bottom:333.360000pt;}
.y16_c00355{bottom:354.693333pt;}
.y15_c00355{bottom:375.893333pt;}
.y14_c00355{bottom:397.493333pt;}
.y13_c00355{bottom:419.760000pt;}
.y12_c00355{bottom:440.693333pt;}
.y11_c00355{bottom:462.560000pt;}
.y10_c00355{bottom:483.626667pt;}
.yf_c00355{bottom:505.226667pt;}
.ye_c00355{bottom:526.293333pt;}
.yd_c00355{bottom:548.160000pt;}
.yc_c00355{bottom:569.360000pt;}
.yb_c00355{bottom:591.626667pt;}
.ya_c00355{bottom:612.960000pt;}
.y9_c00355{bottom:634.293333pt;}
.y8_c00355{bottom:655.893333pt;}
.y7_c00355{bottom:677.360000pt;}
.y6_c00355{bottom:700.293333pt;}
.y5_c00355{bottom:720.693333pt;}
.y4_c00355{bottom:741.360000pt;}
.y3_c00355{bottom:763.760000pt;}
.y2_c00355{bottom:784.826667pt;}
.y1_c00355{bottom:817.493333pt;}
.h4_c00355{height:11.733399pt;}
.h5_c00355{height:38.937500pt;}
.h3_c00355{height:70.664062pt;}
.h2_c00355{height:74.906250pt;}
.h1_c00355{height:91.555990pt;}
.h0_c00355{height:884.666667pt;}
.w2_c00355{width:93.222667pt;}
.w0_c00355{width:593.266667pt;}
.w1_c00355{width:593.333333pt;}
.x0_c00355{left:0.000000pt;}
.x2_c00355{left:16.266667pt;}
.x5_c00355{left:18.266667pt;}
.x8_c00355{left:22.000000pt;}
.xc_c00355{left:24.933333pt;}
.xf_c00355{left:27.866667pt;}
.x10_c00355{left:28.800000pt;}
.x4_c00355{left:63.600000pt;}
.xd_c00355{left:70.533333pt;}
.x1_c00355{left:95.066667pt;}
.x3_c00355{left:96.933333pt;}
.x6_c00355{left:98.400000pt;}
.x7_c00355{left:99.866667pt;}
.xa_c00355{left:101.733333pt;}
.x9_c00355{left:102.666667pt;}
.xe_c00355{left:105.333333pt;}
.x11_c00355{left:108.000000pt;}
.xb_c00355{left:152.800000pt;}
.x13_c00355{left:253.801554pt;}
.x12_c00355{left:508.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_26cecd4e78f76525ff488a86.woff2')format("woff");}.ff1_c00356{font-family:ff1_c00356;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00356;src:url('chunks/assets/font_4069bffa01553d033ebf9bc5.woff2')format("woff");}.ff2_c00356{font-family:ff2_c00356;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00356;src:url('chunks/assets/font_d3933098faa3fe4df3b6c1c5.woff2')format("woff");}.ff3_c00356{font-family:ff3_c00356;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00356;src:url('chunks/assets/font_dc383a4ea393b7b8ed5bdb09.woff2')format("woff");}.ff4_c00356{font-family:ff4_c00356;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00356;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c00356{font-family:ff5_c00356;line-height:1.219238;font-style: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;}
.ls2_c00356{letter-spacing:0.000000px;}
.ls1_c00356{letter-spacing:0.614400px;}
.ls0_c00356{letter-spacing:1.814400px;}
.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;}
}
.ws0_c00356{word-spacing:-22.518000px;}
.ws1_c00356{word-spacing:-17.352000px;}
.ws2_c00356{word-spacing:0.000000px;}
._20_c00356{margin-left:-26.478000px;}
._24_c00356{margin-left:-24.399000px;}
._1f_c00356{margin-left:-22.008000px;}
._8_c00356{margin-left:-20.550000px;}
._17_c00356{margin-left:-18.642000px;}
._23_c00356{margin-left:-16.020000px;}
._19_c00356{margin-left:-14.238000px;}
._f_c00356{margin-left:-12.879000px;}
._9_c00356{margin-left:-11.826000px;}
._c_c00356{margin-left:-10.011000px;}
._e_c00356{margin-left:-8.667000px;}
._6_c00356{margin-left:-7.038000px;}
._d_c00356{margin-left:-5.589000px;}
._7_c00356{margin-left:-4.173000px;}
._a_c00356{margin-left:-2.511000px;}
._b_c00356{margin-left:-1.170000px;}
._3_c00356{width:1.458000px;}
._0_c00356{width:3.159000px;}
._2_c00356{width:4.941000px;}
._1_c00356{width:6.075000px;}
._4_c00356{width:7.209000px;}
._13_c00356{width:9.150000px;}
._5_c00356{width:10.854000px;}
._12_c00356{width:12.879000px;}
._22_c00356{width:13.908000px;}
._11_c00356{width:15.147000px;}
._25_c00356{width:16.803000px;}
._14_c00356{width:18.306000px;}
._26_c00356{width:21.699000px;}
._1a_c00356{width:26.568000px;}
._1d_c00356{width:51.801000px;}
._21_c00356{width:63.678000px;}
._1c_c00356{width:65.529000px;}
._1e_c00356{width:71.553000px;}
._18_c00356{width:81.930000px;}
._15_c00356{width:87.075000px;}
._10_c00356{width:177.594000px;}
._16_c00356{width:226.248000px;}
._1b_c00356{width:249.435000px;}
._28_c00356{width:288.684000px;}
._27_c00356{width:1266.042000px;}
.fc2_c00356{color:transparent;}
.fc1_c00356{color:rgb(128,128,128);}
.fc0_c00356{color:rgb(0,0,0);}
.fs4_c00356{font-size:48.000000px;}
.fs1_c00356{font-size:64.800000px;}
.fs3_c00356{font-size:72.000000px;}
.fs2_c00356{font-size:78.000000px;}
.fs0_c00356{font-size:81.000000px;}
.y0_c00356{bottom:0.000000px;}
.y25_c00356{bottom:3.105000px;}
.y24_c00356{bottom:7.228371px;}
.y23_c00356{bottom:43.665000px;}
.y22_c00356{bottom:67.515000px;}
.y21_c00356{bottom:92.865000px;}
.y20_c00356{bottom:117.765000px;}
.y1f_c00356{bottom:142.215000px;}
.y1e_c00356{bottom:166.515000px;}
.y1d_c00356{bottom:191.415000px;}
.y1c_c00356{bottom:216.315000px;}
.y1b_c00356{bottom:241.665000px;}
.y1a_c00356{bottom:264.915000px;}
.y19_c00356{bottom:289.215000px;}
.y18_c00356{bottom:313.515000px;}
.y17_c00356{bottom:337.515000px;}
.y16_c00356{bottom:362.115000px;}
.y15_c00356{bottom:386.415000px;}
.y14_c00356{bottom:410.715000px;}
.y13_c00356{bottom:435.465000px;}
.y12_c00356{bottom:459.765000px;}
.y11_c00356{bottom:483.315000px;}
.y10_c00356{bottom:507.315000px;}
.yf_c00356{bottom:531.915000px;}
.ye_c00356{bottom:556.215000px;}
.yd_c00356{bottom:580.515000px;}
.yc_c00356{bottom:603.465000px;}
.yb_c00356{bottom:628.215000px;}
.ya_c00356{bottom:652.515000px;}
.y9_c00356{bottom:676.815000px;}
.y8_c00356{bottom:701.415000px;}
.y7_c00356{bottom:728.115000px;}
.y6_c00356{bottom:753.765000px;}
.y5_c00356{bottom:775.365000px;}
.y4_c00356{bottom:799.215000px;}
.y3_c00356{bottom:823.515000px;}
.y2_c00356{bottom:848.865000px;}
.y1_c00356{bottom:872.865000px;}
.h6_c00356{height:13.200074px;}
.h7_c00356{height:43.804688px;}
.h2_c00356{height:79.497070px;}
.h4_c00356{height:84.269531px;}
.h5_c00356{height:91.160156px;}
.h3_c00356{height:98.756836px;}
.h0_c00356{height:989.025000px;}
.h1_c00356{height:989.250000px;}
.w1_c00356{width:104.875500px;}
.w0_c00356{width:672.000000px;}
.x0_c00356{left:0.000000px;}
.x5_c00356{left:62.400000px;}
.x1_c00356{left:64.500000px;}
.x4_c00356{left:66.150000px;}
.x3_c00356{left:67.800000px;}
.x2_c00356{left:69.150000px;}
.x6_c00356{left:93.450000px;}
.x7_c00356{left:287.814240px;}
@media print{
.v0_c00356{vertical-align:0.000000pt;}
.ls2_c00356{letter-spacing:0.000000pt;}
.ls1_c00356{letter-spacing:0.546133pt;}
.ls0_c00356{letter-spacing:1.612800pt;}
.ws0_c00356{word-spacing:-20.016000pt;}
.ws1_c00356{word-spacing:-15.424000pt;}
.ws2_c00356{word-spacing:0.000000pt;}
._20_c00356{margin-left:-23.536000pt;}
._24_c00356{margin-left:-21.688000pt;}
._1f_c00356{margin-left:-19.562667pt;}
._8_c00356{margin-left:-18.266667pt;}
._17_c00356{margin-left:-16.570667pt;}
._23_c00356{margin-left:-14.240000pt;}
._19_c00356{margin-left:-12.656000pt;}
._f_c00356{margin-left:-11.448000pt;}
._9_c00356{margin-left:-10.512000pt;}
._c_c00356{margin-left:-8.898667pt;}
._e_c00356{margin-left:-7.704000pt;}
._6_c00356{margin-left:-6.256000pt;}
._d_c00356{margin-left:-4.968000pt;}
._7_c00356{margin-left:-3.709333pt;}
._a_c00356{margin-left:-2.232000pt;}
._b_c00356{margin-left:-1.040000pt;}
._3_c00356{width:1.296000pt;}
._0_c00356{width:2.808000pt;}
._2_c00356{width:4.392000pt;}
._1_c00356{width:5.400000pt;}
._4_c00356{width:6.408000pt;}
._13_c00356{width:8.133333pt;}
._5_c00356{width:9.648000pt;}
._12_c00356{width:11.448000pt;}
._22_c00356{width:12.362667pt;}
._11_c00356{width:13.464000pt;}
._25_c00356{width:14.936000pt;}
._14_c00356{width:16.272000pt;}
._26_c00356{width:19.288000pt;}
._1a_c00356{width:23.616000pt;}
._1d_c00356{width:46.045333pt;}
._21_c00356{width:56.602667pt;}
._1c_c00356{width:58.248000pt;}
._1e_c00356{width:63.602667pt;}
._18_c00356{width:72.826667pt;}
._15_c00356{width:77.400000pt;}
._10_c00356{width:157.861333pt;}
._16_c00356{width:201.109333pt;}
._1b_c00356{width:221.720000pt;}
._28_c00356{width:256.608000pt;}
._27_c00356{width:1125.370667pt;}
.fs4_c00356{font-size:42.666667pt;}
.fs1_c00356{font-size:57.600000pt;}
.fs3_c00356{font-size:64.000000pt;}
.fs2_c00356{font-size:69.333333pt;}
.fs0_c00356{font-size:72.000000pt;}
.y0_c00356{bottom:0.000000pt;}
.y25_c00356{bottom:2.760000pt;}
.y24_c00356{bottom:6.425219pt;}
.y23_c00356{bottom:38.813333pt;}
.y22_c00356{bottom:60.013333pt;}
.y21_c00356{bottom:82.546667pt;}
.y20_c00356{bottom:104.680000pt;}
.y1f_c00356{bottom:126.413333pt;}
.y1e_c00356{bottom:148.013333pt;}
.y1d_c00356{bottom:170.146667pt;}
.y1c_c00356{bottom:192.280000pt;}
.y1b_c00356{bottom:214.813333pt;}
.y1a_c00356{bottom:235.480000pt;}
.y19_c00356{bottom:257.080000pt;}
.y18_c00356{bottom:278.680000pt;}
.y17_c00356{bottom:300.013333pt;}
.y16_c00356{bottom:321.880000pt;}
.y15_c00356{bottom:343.480000pt;}
.y14_c00356{bottom:365.080000pt;}
.y13_c00356{bottom:387.080000pt;}
.y12_c00356{bottom:408.680000pt;}
.y11_c00356{bottom:429.613333pt;}
.y10_c00356{bottom:450.946667pt;}
.yf_c00356{bottom:472.813333pt;}
.ye_c00356{bottom:494.413333pt;}
.yd_c00356{bottom:516.013333pt;}
.yc_c00356{bottom:536.413333pt;}
.yb_c00356{bottom:558.413333pt;}
.ya_c00356{bottom:580.013333pt;}
.y9_c00356{bottom:601.613333pt;}
.y8_c00356{bottom:623.480000pt;}
.y7_c00356{bottom:647.213333pt;}
.y6_c00356{bottom:670.013333pt;}
.y5_c00356{bottom:689.213333pt;}
.y4_c00356{bottom:710.413333pt;}
.y3_c00356{bottom:732.013333pt;}
.y2_c00356{bottom:754.546667pt;}
.y1_c00356{bottom:775.880000pt;}
.h6_c00356{height:11.733399pt;}
.h7_c00356{height:38.937500pt;}
.h2_c00356{height:70.664062pt;}
.h4_c00356{height:74.906250pt;}
.h5_c00356{height:81.031250pt;}
.h3_c00356{height:87.783854pt;}
.h0_c00356{height:879.133333pt;}
.h1_c00356{height:879.333333pt;}
.w1_c00356{width:93.222667pt;}
.w0_c00356{width:597.333333pt;}
.x0_c00356{left:0.000000pt;}
.x5_c00356{left:55.466667pt;}
.x1_c00356{left:57.333333pt;}
.x4_c00356{left:58.800000pt;}
.x3_c00356{left:60.266667pt;}
.x2_c00356{left:61.466667pt;}
.x6_c00356{left:83.066667pt;}
.x7_c00356{left:255.834880pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_442ccec3d020683cc5b9e881.woff2')format("woff");}.ff1_c00357{font-family:ff1_c00357;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00357;src:url('chunks/assets/font_2ba161be6b59409f04831c5d.woff2')format("woff");}.ff2_c00357{font-family:ff2_c00357;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00357;src:url('chunks/assets/font_fdd9d3c64c3681753bea1aef.woff2')format("woff");}.ff3_c00357{font-family:ff3_c00357;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00357;src:url('chunks/assets/font_780594d9c4a3719bc0649e24.woff2')format("woff");}.ff4_c00357{font-family:ff4_c00357;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00357;src:url('chunks/assets/font_3f83e65a2596966a7fec3af7.woff2')format("woff");}.ff5_c00357{font-family:ff5_c00357;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00357;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c00357{font-family:ff6_c00357;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00357{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m0_c00357{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00357{vertical-align:0.000000px;}
.ls2_c00357{letter-spacing:0.000000px;}
.ls1_c00357{letter-spacing:0.150000px;}
.ls3_c00357{letter-spacing:6.000000px;}
.ls0_c00357{letter-spacing:21.912000px;}
.sc__c00357{text-shadow:none;}
.sc0_c00357{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00357{-webkit-text-stroke:0px transparent;}
.sc0_c00357{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00357{word-spacing:-51.000000px;}
.ws2_c00357{word-spacing:-27.000000px;}
.ws1_c00357{word-spacing:-17.352000px;}
.ws3_c00357{word-spacing:0.000000px;}
._24_c00357{margin-left:-19.683000px;}
._27_c00357{margin-left:-16.398000px;}
._1f_c00357{margin-left:-14.862000px;}
._25_c00357{margin-left:-13.293000px;}
._2c_c00357{margin-left:-11.913000px;}
._2a_c00357{margin-left:-10.803000px;}
._5_c00357{margin-left:-9.801000px;}
._1a_c00357{margin-left:-7.677000px;}
._1_c00357{margin-left:-5.961000px;}
._18_c00357{margin-left:-4.887000px;}
._7_c00357{margin-left:-3.564000px;}
._4_c00357{margin-left:-2.277000px;}
._f_c00357{margin-left:-1.251000px;}
._17_c00357{width:1.629000px;}
._b_c00357{width:2.673000px;}
._16_c00357{width:3.726000px;}
._a_c00357{width:4.779000px;}
._9_c00357{width:5.994000px;}
._c_c00357{width:7.191000px;}
._8_c00357{width:8.748000px;}
._14_c00357{width:9.768000px;}
._1b_c00357{width:11.115000px;}
._d_c00357{width:12.312000px;}
._0_c00357{width:13.464000px;}
._11_c00357{width:14.661000px;}
._e_c00357{width:16.281000px;}
._1c_c00357{width:18.564000px;}
._1d_c00357{width:20.076000px;}
._21_c00357{width:21.525000px;}
._22_c00357{width:23.706000px;}
._28_c00357{width:25.029000px;}
._6_c00357{width:26.235000px;}
._1e_c00357{width:31.038000px;}
._12_c00357{width:32.823000px;}
._19_c00357{width:35.325000px;}
._15_c00357{width:36.600000px;}
._13_c00357{width:38.088000px;}
._10_c00357{width:46.983000px;}
._29_c00357{width:50.013000px;}
._26_c00357{width:70.389000px;}
._23_c00357{width:93.942000px;}
._2_c00357{width:210.375000px;}
._2b_c00357{width:217.341000px;}
._3_c00357{width:353.133000px;}
._20_c00357{width:446.547000px;}
.fc2_c00357{color:transparent;}
.fc1_c00357{color:rgb(128,128,128);}
.fc0_c00357{color:rgb(0,0,0);}
.fs4_c00357{font-size:42.000000px;}
.fs7_c00357{font-size:48.000000px;}
.fs3_c00357{font-size:72.000000px;}
.fs5_c00357{font-size:78.000000px;}
.fs2_c00357{font-size:81.000000px;}
.fs1_c00357{font-size:99.000000px;}
.fs0_c00357{font-size:102.000000px;}
.fs6_c00357{font-size:108.000000px;}
.y0_c00357{bottom:0.000000px;}
.y26_c00357{bottom:3.105000px;}
.y25_c00357{bottom:7.228369px;}
.y24_c00357{bottom:44.520000px;}
.y23_c00357{bottom:69.120000px;}
.y22_c00357{bottom:95.220000px;}
.y21_c00357{bottom:120.120000px;}
.y20_c00357{bottom:144.420000px;}
.y1f_c00357{bottom:168.720000px;}
.y1e_c00357{bottom:193.770000px;}
.y1d_c00357{bottom:218.370000px;}
.y1c_c00357{bottom:242.970000px;}
.y1b_c00357{bottom:267.270000px;}
.y1a_c00357{bottom:291.870000px;}
.y19_c00357{bottom:316.170000px;}
.y18_c00357{bottom:341.220000px;}
.y17_c00357{bottom:365.220000px;}
.y16_c00357{bottom:389.520000px;}
.y15_c00357{bottom:413.820000px;}
.y14_c00357{bottom:438.420000px;}
.y13_c00357{bottom:462.420000px;}
.y12_c00357{bottom:486.570000px;}
.y11_c00357{bottom:510.870000px;}
.y10_c00357{bottom:534.870000px;}
.yf_c00357{bottom:558.870000px;}
.ye_c00357{bottom:583.770000px;}
.yd_c00357{bottom:607.770000px;}
.yc_c00357{bottom:632.070000px;}
.yb_c00357{bottom:656.070000px;}
.ya_c00357{bottom:680.370000px;}
.y9_c00357{bottom:704.970000px;}
.y8_c00357{bottom:731.670000px;}
.y7_c00357{bottom:753.570000px;}
.y6_c00357{bottom:778.320000px;}
.y5_c00357{bottom:801.870000px;}
.y4_c00357{bottom:825.570000px;}
.y3_c00357{bottom:851.220000px;}
.y2_c00357{bottom:874.770000px;}
.y1_c00357{bottom:906.570000px;}
.h7_c00357{height:13.200073px;}
.h8_c00357{height:43.804688px;}
.h3_c00357{height:79.497070px;}
.h4_c00357{height:84.269531px;}
.h5_c00357{height:98.756836px;}
.h6_c00357{height:108.843750px;}
.h2_c00357{height:115.870605px;}
.h1_c00357{height:986.250000px;}
.h0_c00357{height:986.550000px;}
.w1_c00357{width:104.875500px;}
.w0_c00357{width:661.500000px;}
.x0_c00357{left:0.000000px;}
.x2_c00357{left:18.150000px;}
.xc_c00357{left:37.500000px;}
.x5_c00357{left:41.100000px;}
.x8_c00357{left:52.650000px;}
.x9_c00357{left:53.700000px;}
.x7_c00357{left:74.550000px;}
.xa_c00357{left:110.250000px;}
.x4_c00357{left:111.600000px;}
.x6_c00357{left:113.100000px;}
.x1_c00357{left:114.300000px;}
.x3_c00357{left:115.650000px;}
.xb_c00357{left:133.950000px;}
.x11_c00357{left:282.564240px;}
.xd_c00357{left:422.550000px;}
.xe_c00357{left:435.750000px;}
.x10_c00357{left:578.100000px;}
.xf_c00357{left:592.350000px;}
@media print{
.v0_c00357{vertical-align:0.000000pt;}
.ls2_c00357{letter-spacing:0.000000pt;}
.ls1_c00357{letter-spacing:0.133333pt;}
.ls3_c00357{letter-spacing:5.333333pt;}
.ls0_c00357{letter-spacing:19.477333pt;}
.ws0_c00357{word-spacing:-45.333333pt;}
.ws2_c00357{word-spacing:-24.000000pt;}
.ws1_c00357{word-spacing:-15.424000pt;}
.ws3_c00357{word-spacing:0.000000pt;}
._24_c00357{margin-left:-17.496000pt;}
._27_c00357{margin-left:-14.576000pt;}
._1f_c00357{margin-left:-13.210667pt;}
._25_c00357{margin-left:-11.816000pt;}
._2c_c00357{margin-left:-10.589333pt;}
._2a_c00357{margin-left:-9.602667pt;}
._5_c00357{margin-left:-8.712000pt;}
._1a_c00357{margin-left:-6.824000pt;}
._1_c00357{margin-left:-5.298667pt;}
._18_c00357{margin-left:-4.344000pt;}
._7_c00357{margin-left:-3.168000pt;}
._4_c00357{margin-left:-2.024000pt;}
._f_c00357{margin-left:-1.112000pt;}
._17_c00357{width:1.448000pt;}
._b_c00357{width:2.376000pt;}
._16_c00357{width:3.312000pt;}
._a_c00357{width:4.248000pt;}
._9_c00357{width:5.328000pt;}
._c_c00357{width:6.392000pt;}
._8_c00357{width:7.776000pt;}
._14_c00357{width:8.682667pt;}
._1b_c00357{width:9.880000pt;}
._d_c00357{width:10.944000pt;}
._0_c00357{width:11.968000pt;}
._11_c00357{width:13.032000pt;}
._e_c00357{width:14.472000pt;}
._1c_c00357{width:16.501333pt;}
._1d_c00357{width:17.845333pt;}
._21_c00357{width:19.133333pt;}
._22_c00357{width:21.072000pt;}
._28_c00357{width:22.248000pt;}
._6_c00357{width:23.320000pt;}
._1e_c00357{width:27.589333pt;}
._12_c00357{width:29.176000pt;}
._19_c00357{width:31.400000pt;}
._15_c00357{width:32.533333pt;}
._13_c00357{width:33.856000pt;}
._10_c00357{width:41.762667pt;}
._29_c00357{width:44.456000pt;}
._26_c00357{width:62.568000pt;}
._23_c00357{width:83.504000pt;}
._2_c00357{width:187.000000pt;}
._2b_c00357{width:193.192000pt;}
._3_c00357{width:313.896000pt;}
._20_c00357{width:396.930667pt;}
.fs4_c00357{font-size:37.333333pt;}
.fs7_c00357{font-size:42.666667pt;}
.fs3_c00357{font-size:64.000000pt;}
.fs5_c00357{font-size:69.333333pt;}
.fs2_c00357{font-size:72.000000pt;}
.fs1_c00357{font-size:88.000000pt;}
.fs0_c00357{font-size:90.666667pt;}
.fs6_c00357{font-size:96.000000pt;}
.y0_c00357{bottom:0.000000pt;}
.y26_c00357{bottom:2.760000pt;}
.y25_c00357{bottom:6.425217pt;}
.y24_c00357{bottom:39.573333pt;}
.y23_c00357{bottom:61.440000pt;}
.y22_c00357{bottom:84.640000pt;}
.y21_c00357{bottom:106.773333pt;}
.y20_c00357{bottom:128.373333pt;}
.y1f_c00357{bottom:149.973333pt;}
.y1e_c00357{bottom:172.240000pt;}
.y1d_c00357{bottom:194.106667pt;}
.y1c_c00357{bottom:215.973333pt;}
.y1b_c00357{bottom:237.573333pt;}
.y1a_c00357{bottom:259.440000pt;}
.y19_c00357{bottom:281.040000pt;}
.y18_c00357{bottom:303.306667pt;}
.y17_c00357{bottom:324.640000pt;}
.y16_c00357{bottom:346.240000pt;}
.y15_c00357{bottom:367.840000pt;}
.y14_c00357{bottom:389.706667pt;}
.y13_c00357{bottom:411.040000pt;}
.y12_c00357{bottom:432.506667pt;}
.y11_c00357{bottom:454.106667pt;}
.y10_c00357{bottom:475.440000pt;}
.yf_c00357{bottom:496.773333pt;}
.ye_c00357{bottom:518.906667pt;}
.yd_c00357{bottom:540.240000pt;}
.yc_c00357{bottom:561.840000pt;}
.yb_c00357{bottom:583.173333pt;}
.ya_c00357{bottom:604.773333pt;}
.y9_c00357{bottom:626.640000pt;}
.y8_c00357{bottom:650.373333pt;}
.y7_c00357{bottom:669.840000pt;}
.y6_c00357{bottom:691.840000pt;}
.y5_c00357{bottom:712.773333pt;}
.y4_c00357{bottom:733.840000pt;}
.y3_c00357{bottom:756.640000pt;}
.y2_c00357{bottom:777.573333pt;}
.y1_c00357{bottom:805.840000pt;}
.h7_c00357{height:11.733399pt;}
.h8_c00357{height:38.937500pt;}
.h3_c00357{height:70.664062pt;}
.h4_c00357{height:74.906250pt;}
.h5_c00357{height:87.783854pt;}
.h6_c00357{height:96.750000pt;}
.h2_c00357{height:102.996094pt;}
.h1_c00357{height:876.666667pt;}
.h0_c00357{height:876.933333pt;}
.w1_c00357{width:93.222667pt;}
.w0_c00357{width:588.000000pt;}
.x0_c00357{left:0.000000pt;}
.x2_c00357{left:16.133333pt;}
.xc_c00357{left:33.333333pt;}
.x5_c00357{left:36.533333pt;}
.x8_c00357{left:46.800000pt;}
.x9_c00357{left:47.733333pt;}
.x7_c00357{left:66.266667pt;}
.xa_c00357{left:98.000000pt;}
.x4_c00357{left:99.200000pt;}
.x6_c00357{left:100.533333pt;}
.x1_c00357{left:101.600000pt;}
.x3_c00357{left:102.800000pt;}
.xb_c00357{left:119.066667pt;}
.x11_c00357{left:251.168213pt;}
.xd_c00357{left:375.600000pt;}
.xe_c00357{left:387.333333pt;}
.x10_c00357{left:513.866667pt;}
.xf_c00357{left:526.533333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ac214ce45cb5b58223041a0d.woff2')format("woff");}.ff1_c00358{font-family:ff1_c00358;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00358;src:url('chunks/assets/font_0862fe2ea654ef5820b405fb.woff2')format("woff");}.ff2_c00358{font-family:ff2_c00358;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00358;src:url('chunks/assets/font_3c8ba3d75761be779913756d.woff2')format("woff");}.ff3_c00358{font-family:ff3_c00358;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00358;src:url('chunks/assets/font_e9351330f53ba74ddd670523.woff2')format("woff");}.ff4_c00358{font-family:ff4_c00358;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00358;src:url('chunks/assets/font_7b3845c727e64e9e6e9f0c2a.woff2')format("woff");}.ff5_c00358{font-family:ff5_c00358;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00358;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c00358{font-family:ff6_c00358;line-height:1.219238;font-style: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;}
.ls2_c00358{letter-spacing:-9.000000px;}
.ls1_c00358{letter-spacing:0.000000px;}
.ls3_c00358{letter-spacing:3.000000px;}
.ls0_c00358{letter-spacing:6.900000px;}
.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:-17.352000px;}
.ws1_c00358{word-spacing:0.000000px;}
._16_c00358{margin-left:-23.766000px;}
._12_c00358{margin-left:-21.627000px;}
._11_c00358{margin-left:-19.764000px;}
._1a_c00358{margin-left:-16.341000px;}
._22_c00358{margin-left:-11.886000px;}
._25_c00358{margin-left:-9.258000px;}
._14_c00358{margin-left:-7.887000px;}
._19_c00358{margin-left:-6.555000px;}
._4_c00358{margin-left:-5.544000px;}
._1_c00358{margin-left:-4.257000px;}
._0_c00358{margin-left:-2.277000px;}
._2_c00358{margin-left:-1.089000px;}
._e_c00358{width:1.143000px;}
._3_c00358{width:3.069000px;}
._6_c00358{width:4.884000px;}
._b_c00358{width:6.399000px;}
._8_c00358{width:7.533000px;}
._9_c00358{width:8.991000px;}
._c_c00358{width:10.848000px;}
._f_c00358{width:12.189000px;}
._a_c00358{width:13.770000px;}
._7_c00358{width:15.714000px;}
._18_c00358{width:18.291000px;}
._21_c00358{width:21.567000px;}
._1e_c00358{width:23.598000px;}
._1d_c00358{width:26.934000px;}
._23_c00358{width:28.536000px;}
._15_c00358{width:30.144000px;}
._1c_c00358{width:31.338000px;}
._27_c00358{width:33.048000px;}
._28_c00358{width:34.668000px;}
._1b_c00358{width:35.985000px;}
._1f_c00358{width:39.318000px;}
._5_c00358{width:51.474000px;}
._17_c00358{width:156.735000px;}
._d_c00358{width:171.396000px;}
._29_c00358{width:209.238000px;}
._24_c00358{width:217.914000px;}
._10_c00358{width:228.882000px;}
._20_c00358{width:291.513000px;}
._13_c00358{width:300.030000px;}
._26_c00358{width:1233.711000px;}
.fc2_c00358{color:transparent;}
.fc1_c00358{color:rgb(128,128,128);}
.fc0_c00358{color:rgb(0,0,0);}
.fs7_c00358{font-size:48.000000px;}
.fs3_c00358{font-size:54.000000px;}
.fs4_c00358{font-size:72.000000px;}
.fs2_c00358{font-size:81.000000px;}
.fs5_c00358{font-size:87.000000px;}
.fs6_c00358{font-size:93.000000px;}
.fs0_c00358{font-size:99.000000px;}
.fs1_c00358{font-size:132.000000px;}
.y0_c00358{bottom:0.000000px;}
.y26_c00358{bottom:3.105000px;}
.y25_c00358{bottom:7.228355px;}
.y24_c00358{bottom:42.135000px;}
.y23_c00358{bottom:70.785000px;}
.y22_c00358{bottom:96.135000px;}
.y21_c00358{bottom:121.035000px;}
.y20_c00358{bottom:145.785000px;}
.y1f_c00358{bottom:170.085000px;}
.y1e_c00358{bottom:194.085000px;}
.y1d_c00358{bottom:219.585000px;}
.y1c_c00358{bottom:243.885000px;}
.y1b_c00358{bottom:268.335000px;}
.y1a_c00358{bottom:292.635000px;}
.y19_c00358{bottom:316.485000px;}
.y18_c00358{bottom:341.235000px;}
.y17_c00358{bottom:366.135000px;}
.y16_c00358{bottom:390.135000px;}
.y15_c00358{bottom:414.435000px;}
.y14_c00358{bottom:438.735000px;}
.y13_c00358{bottom:463.335000px;}
.y12_c00358{bottom:487.335000px;}
.y11_c00358{bottom:512.535000px;}
.y10_c00358{bottom:536.235000px;}
.yf_c00358{bottom:560.235000px;}
.ye_c00358{bottom:584.835000px;}
.yd_c00358{bottom:608.835000px;}
.yc_c00358{bottom:632.835000px;}
.yb_c00358{bottom:657.135000px;}
.ya_c00358{bottom:681.435000px;}
.y9_c00358{bottom:705.585000px;}
.y8_c00358{bottom:730.035000px;}
.y7_c00358{bottom:754.935000px;}
.y6_c00358{bottom:779.535000px;}
.y5_c00358{bottom:803.835000px;}
.y4_c00358{bottom:829.185000px;}
.y3_c00358{bottom:852.885000px;}
.y2_c00358{bottom:875.835000px;}
.y1_c00358{bottom:912.885000px;}
.h8_c00358{height:13.200074px;}
.h9_c00358{height:43.804688px;}
.h3_c00358{height:79.497070px;}
.h4_c00358{height:84.269531px;}
.h5_c00358{height:91.160156px;}
.h6_c00358{height:91.176000px;}
.h7_c00358{height:93.726562px;}
.h2_c00358{height:167.126953px;}
.h0_c00358{height:977.925000px;}
.h1_c00358{height:978.000000px;}
.w2_c00358{width:104.875500px;}
.w0_c00358{width:664.200000px;}
.w1_c00358{width:664.500000px;}
.x0_c00358{left:0.000000px;}
.x2_c00358{left:52.650000px;}
.x6_c00358{left:57.300000px;}
.x5_c00358{left:58.950000px;}
.x4_c00358{left:60.000000px;}
.x3_c00358{left:61.350000px;}
.x1_c00358{left:73.200000px;}
.x7_c00358{left:80.250000px;}
.x8_c00358{left:283.914230px;}
@media print{
.v0_c00358{vertical-align:0.000000pt;}
.ls2_c00358{letter-spacing:-8.000000pt;}
.ls1_c00358{letter-spacing:0.000000pt;}
.ls3_c00358{letter-spacing:2.666667pt;}
.ls0_c00358{letter-spacing:6.133333pt;}
.ws0_c00358{word-spacing:-15.424000pt;}
.ws1_c00358{word-spacing:0.000000pt;}
._16_c00358{margin-left:-21.125333pt;}
._12_c00358{margin-left:-19.224000pt;}
._11_c00358{margin-left:-17.568000pt;}
._1a_c00358{margin-left:-14.525333pt;}
._22_c00358{margin-left:-10.565333pt;}
._25_c00358{margin-left:-8.229333pt;}
._14_c00358{margin-left:-7.010667pt;}
._19_c00358{margin-left:-5.826667pt;}
._4_c00358{margin-left:-4.928000pt;}
._1_c00358{margin-left:-3.784000pt;}
._0_c00358{margin-left:-2.024000pt;}
._2_c00358{margin-left:-0.968000pt;}
._e_c00358{width:1.016000pt;}
._3_c00358{width:2.728000pt;}
._6_c00358{width:4.341333pt;}
._b_c00358{width:5.688000pt;}
._8_c00358{width:6.696000pt;}
._9_c00358{width:7.992000pt;}
._c_c00358{width:9.642667pt;}
._f_c00358{width:10.834667pt;}
._a_c00358{width:12.240000pt;}
._7_c00358{width:13.968000pt;}
._18_c00358{width:16.258667pt;}
._21_c00358{width:19.170667pt;}
._1e_c00358{width:20.976000pt;}
._1d_c00358{width:23.941333pt;}
._23_c00358{width:25.365333pt;}
._15_c00358{width:26.794667pt;}
._1c_c00358{width:27.856000pt;}
._27_c00358{width:29.376000pt;}
._28_c00358{width:30.816000pt;}
._1b_c00358{width:31.986667pt;}
._1f_c00358{width:34.949333pt;}
._5_c00358{width:45.754667pt;}
._17_c00358{width:139.320000pt;}
._d_c00358{width:152.352000pt;}
._29_c00358{width:185.989333pt;}
._24_c00358{width:193.701333pt;}
._10_c00358{width:203.450667pt;}
._20_c00358{width:259.122667pt;}
._13_c00358{width:266.693333pt;}
._26_c00358{width:1096.632000pt;}
.fs7_c00358{font-size:42.666667pt;}
.fs3_c00358{font-size:48.000000pt;}
.fs4_c00358{font-size:64.000000pt;}
.fs2_c00358{font-size:72.000000pt;}
.fs5_c00358{font-size:77.333333pt;}
.fs6_c00358{font-size:82.666667pt;}
.fs0_c00358{font-size:88.000000pt;}
.fs1_c00358{font-size:117.333333pt;}
.y0_c00358{bottom:0.000000pt;}
.y26_c00358{bottom:2.760000pt;}
.y25_c00358{bottom:6.425204pt;}
.y24_c00358{bottom:37.453333pt;}
.y23_c00358{bottom:62.920000pt;}
.y22_c00358{bottom:85.453333pt;}
.y21_c00358{bottom:107.586667pt;}
.y20_c00358{bottom:129.586667pt;}
.y1f_c00358{bottom:151.186667pt;}
.y1e_c00358{bottom:172.520000pt;}
.y1d_c00358{bottom:195.186667pt;}
.y1c_c00358{bottom:216.786667pt;}
.y1b_c00358{bottom:238.520000pt;}
.y1a_c00358{bottom:260.120000pt;}
.y19_c00358{bottom:281.320000pt;}
.y18_c00358{bottom:303.320000pt;}
.y17_c00358{bottom:325.453333pt;}
.y16_c00358{bottom:346.786667pt;}
.y15_c00358{bottom:368.386667pt;}
.y14_c00358{bottom:389.986667pt;}
.y13_c00358{bottom:411.853333pt;}
.y12_c00358{bottom:433.186667pt;}
.y11_c00358{bottom:455.586667pt;}
.y10_c00358{bottom:476.653333pt;}
.yf_c00358{bottom:497.986667pt;}
.ye_c00358{bottom:519.853333pt;}
.yd_c00358{bottom:541.186667pt;}
.yc_c00358{bottom:562.520000pt;}
.yb_c00358{bottom:584.120000pt;}
.ya_c00358{bottom:605.720000pt;}
.y9_c00358{bottom:627.186667pt;}
.y8_c00358{bottom:648.920000pt;}
.y7_c00358{bottom:671.053333pt;}
.y6_c00358{bottom:692.920000pt;}
.y5_c00358{bottom:714.520000pt;}
.y4_c00358{bottom:737.053333pt;}
.y3_c00358{bottom:758.120000pt;}
.y2_c00358{bottom:778.520000pt;}
.y1_c00358{bottom:811.453333pt;}
.h8_c00358{height:11.733399pt;}
.h9_c00358{height:38.937500pt;}
.h3_c00358{height:70.664062pt;}
.h4_c00358{height:74.906250pt;}
.h5_c00358{height:81.031250pt;}
.h6_c00358{height:81.045333pt;}
.h7_c00358{height:83.312500pt;}
.h2_c00358{height:148.557292pt;}
.h0_c00358{height:869.266667pt;}
.h1_c00358{height:869.333333pt;}
.w2_c00358{width:93.222667pt;}
.w0_c00358{width:590.400000pt;}
.w1_c00358{width:590.666667pt;}
.x0_c00358{left:0.000000pt;}
.x2_c00358{left:46.800000pt;}
.x6_c00358{left:50.933333pt;}
.x5_c00358{left:52.400000pt;}
.x4_c00358{left:53.333333pt;}
.x3_c00358{left:54.533333pt;}
.x1_c00358{left:65.066667pt;}
.x7_c00358{left:71.333333pt;}
.x8_c00358{left:252.368205pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e7b84f5afbbcde56a723219d.woff2')format("woff");}.ff1_c00359{font-family:ff1_c00359;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00359;src:url('chunks/assets/font_875338c589120337c5093c5a.woff2')format("woff");}.ff2_c00359{font-family:ff2_c00359;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00359;src:url('chunks/assets/font_c11637b6621d7e233721f70c.woff2')format("woff");}.ff3_c00359{font-family:ff3_c00359;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00359;src:url('chunks/assets/font_2a99966aa1381918af29c7e8.woff2')format("woff");}.ff4_c00359{font-family:ff4_c00359;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00359;src:url('chunks/assets/font_df66a28f9af2be9fa7c29814.woff2')format("woff");}.ff5_c00359{font-family:ff5_c00359;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00359;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c00359{font-family:ff6_c00359;line-height:1.219238;font-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_c00359{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,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;}
.ls0_c00359{letter-spacing:-9.000000px;}
.ls1_c00359{letter-spacing:0.000000px;}
.ls2_c00359{letter-spacing:6.000000px;}
.sc__c00359{text-shadow:none;}
.sc0_c00359{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00359{-webkit-text-stroke:0px transparent;}
.sc0_c00359{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00359{word-spacing:-27.000000px;}
.ws2_c00359{word-spacing:-18.798000px;}
.ws3_c00359{word-spacing:0.000000px;}
.ws0_c00359{word-spacing:15.300000px;}
._2f_c00359{margin-left:-44.793000px;}
._2b_c00359{margin-left:-43.578000px;}
._39_c00359{margin-left:-30.852000px;}
._36_c00359{margin-left:-29.010000px;}
._33_c00359{margin-left:-24.933000px;}
._1a_c00359{margin-left:-23.814000px;}
._18_c00359{margin-left:-20.772000px;}
._25_c00359{margin-left:-19.740000px;}
._2c_c00359{margin-left:-18.447000px;}
._24_c00359{margin-left:-16.944000px;}
._34_c00359{margin-left:-15.795000px;}
._26_c00359{margin-left:-14.340000px;}
._15_c00359{margin-left:-11.199000px;}
._13_c00359{margin-left:-8.901000px;}
._f_c00359{margin-left:-7.860000px;}
._12_c00359{margin-left:-6.600000px;}
._31_c00359{margin-left:-5.064000px;}
._17_c00359{margin-left:-3.993000px;}
._a_c00359{margin-left:-2.970000px;}
._b_c00359{margin-left:-1.683000px;}
._8_c00359{width:1.782000px;}
._1_c00359{width:3.300000px;}
._5_c00359{width:4.356000px;}
._0_c00359{width:5.412000px;}
._6_c00359{width:7.161000px;}
._14_c00359{width:8.259000px;}
._3_c00359{width:9.306000px;}
._7_c00359{width:11.154000px;}
._22_c00359{width:12.342000px;}
._11_c00359{width:13.425000px;}
._e_c00359{width:14.466000px;}
._d_c00359{width:16.683000px;}
._9_c00359{width:18.513000px;}
._21_c00359{width:19.884000px;}
._20_c00359{width:21.039000px;}
._1d_c00359{width:23.580000px;}
._c_c00359{width:25.506000px;}
._4_c00359{width:27.126000px;}
._1e_c00359{width:28.179000px;}
._32_c00359{width:29.241000px;}
._10_c00359{width:31.134000px;}
._1c_c00359{width:34.911000px;}
._37_c00359{width:36.801000px;}
._2d_c00359{width:40.014000px;}
._38_c00359{width:42.642000px;}
._29_c00359{width:47.283000px;}
._2_c00359{width:56.100000px;}
._27_c00359{width:61.500000px;}
._35_c00359{width:86.976000px;}
._23_c00359{width:89.289000px;}
._30_c00359{width:111.456000px;}
._2a_c00359{width:116.631000px;}
._2e_c00359{width:217.023000px;}
._1f_c00359{width:219.972000px;}
._19_c00359{width:242.520000px;}
._16_c00359{width:274.029000px;}
._28_c00359{width:384.765000px;}
._1b_c00359{width:846.126000px;}
._3a_c00359{width:922.629000px;}
.fc2_c00359{color:transparent;}
.fc1_c00359{color:rgb(128,128,128);}
.fc0_c00359{color:rgb(0,0,0);}
.fs7_c00359{font-size:48.000000px;}
.fs5_c00359{font-size:54.000000px;}
.fs3_c00359{font-size:60.000000px;}
.fs6_c00359{font-size:78.000000px;}
.fs2_c00359{font-size:81.000000px;}
.fs1_c00359{font-size:99.000000px;}
.fs4_c00359{font-size:108.000000px;}
.fs0_c00359{font-size:132.000000px;}
.y0_c00359{bottom:0.000000px;}
.y22_c00359{bottom:3.105000px;}
.y21_c00359{bottom:7.228357px;}
.y20_c00359{bottom:51.330000px;}
.y1f_c00359{bottom:71.880000px;}
.y1e_c00359{bottom:97.980000px;}
.y1d_c00359{bottom:122.580000px;}
.y1c_c00359{bottom:147.780000px;}
.y1b_c00359{bottom:172.830000px;}
.y1a_c00359{bottom:199.530000px;}
.y19_c00359{bottom:222.780000px;}
.y18_c00359{bottom:247.080000px;}
.y17_c00359{bottom:271.380000px;}
.y16_c00359{bottom:296.430000px;}
.y15_c00359{bottom:320.580000px;}
.y14_c00359{bottom:344.580000px;}
.y13_c00359{bottom:371.280000px;}
.y12_c00359{bottom:395.580000px;}
.y11_c00359{bottom:418.830000px;}
.y10_c00359{bottom:447.180000px;}
.yf_c00359{bottom:469.230000px;}
.ye_c00359{bottom:497.880000px;}
.yd_c00359{bottom:583.530000px;}
.yc_c00359{bottom:635.130000px;}
.yb_c00359{bottom:660.780000px;}
.ya_c00359{bottom:687.480000px;}
.y9_c00359{bottom:711.780000px;}
.y8_c00359{bottom:734.130000px;}
.y7_c00359{bottom:758.430000px;}
.y6_c00359{bottom:783.030000px;}
.y5_c00359{bottom:807.630000px;}
.y4_c00359{bottom:831.330000px;}
.y3_c00359{bottom:855.630000px;}
.y2_c00359{bottom:880.230000px;}
.y1_c00359{bottom:916.080000px;}
.h6_c00359{height:13.200074px;}
.h7_c00359{height:43.804688px;}
.h3_c00359{height:58.857422px;}
.h2_c00359{height:79.497070px;}
.h5_c00359{height:98.756836px;}
.h4_c00359{height:108.843750px;}
.h1_c00359{height:167.126953px;}
.h0_c00359{height:995.250000px;}
.w2_c00359{width:104.875500px;}
.w0_c00359{width:667.425000px;}
.w1_c00359{width:667.500000px;}
.x0_c00359{left:0.000000px;}
.xb_c00359{left:83.700000px;}
.xd_c00359{left:105.300000px;}
.xc_c00359{left:106.650000px;}
.x3_c00359{left:108.300000px;}
.x1_c00359{left:109.350000px;}
.x2_c00359{left:111.000000px;}
.x7_c00359{left:135.000000px;}
.x6_c00359{left:148.200000px;}
.xa_c00359{left:183.150000px;}
.x5_c00359{left:202.050000px;}
.x4_c00359{left:203.100000px;}
.x8_c00359{left:237.300000px;}
.xe_c00359{left:285.526749px;}
.x9_c00359{left:580.200000px;}
@media print{
.v0_c00359{vertical-align:0.000000pt;}
.ls0_c00359{letter-spacing:-8.000000pt;}
.ls1_c00359{letter-spacing:0.000000pt;}
.ls2_c00359{letter-spacing:5.333333pt;}
.ws1_c00359{word-spacing:-24.000000pt;}
.ws2_c00359{word-spacing:-16.709333pt;}
.ws3_c00359{word-spacing:0.000000pt;}
.ws0_c00359{word-spacing:13.600000pt;}
._2f_c00359{margin-left:-39.816000pt;}
._2b_c00359{margin-left:-38.736000pt;}
._39_c00359{margin-left:-27.424000pt;}
._36_c00359{margin-left:-25.786667pt;}
._33_c00359{margin-left:-22.162667pt;}
._1a_c00359{margin-left:-21.168000pt;}
._18_c00359{margin-left:-18.464000pt;}
._25_c00359{margin-left:-17.546667pt;}
._2c_c00359{margin-left:-16.397333pt;}
._24_c00359{margin-left:-15.061333pt;}
._34_c00359{margin-left:-14.040000pt;}
._26_c00359{margin-left:-12.746667pt;}
._15_c00359{margin-left:-9.954667pt;}
._13_c00359{margin-left:-7.912000pt;}
._f_c00359{margin-left:-6.986667pt;}
._12_c00359{margin-left:-5.866667pt;}
._31_c00359{margin-left:-4.501333pt;}
._17_c00359{margin-left:-3.549333pt;}
._a_c00359{margin-left:-2.640000pt;}
._b_c00359{margin-left:-1.496000pt;}
._8_c00359{width:1.584000pt;}
._1_c00359{width:2.933333pt;}
._5_c00359{width:3.872000pt;}
._0_c00359{width:4.810667pt;}
._6_c00359{width:6.365333pt;}
._14_c00359{width:7.341333pt;}
._3_c00359{width:8.272000pt;}
._7_c00359{width:9.914667pt;}
._22_c00359{width:10.970667pt;}
._11_c00359{width:11.933333pt;}
._e_c00359{width:12.858667pt;}
._d_c00359{width:14.829333pt;}
._9_c00359{width:16.456000pt;}
._21_c00359{width:17.674667pt;}
._20_c00359{width:18.701333pt;}
._1d_c00359{width:20.960000pt;}
._c_c00359{width:22.672000pt;}
._4_c00359{width:24.112000pt;}
._1e_c00359{width:25.048000pt;}
._32_c00359{width:25.992000pt;}
._10_c00359{width:27.674667pt;}
._1c_c00359{width:31.032000pt;}
._37_c00359{width:32.712000pt;}
._2d_c00359{width:35.568000pt;}
._38_c00359{width:37.904000pt;}
._29_c00359{width:42.029333pt;}
._2_c00359{width:49.866667pt;}
._27_c00359{width:54.666667pt;}
._35_c00359{width:77.312000pt;}
._23_c00359{width:79.368000pt;}
._30_c00359{width:99.072000pt;}
._2a_c00359{width:103.672000pt;}
._2e_c00359{width:192.909333pt;}
._1f_c00359{width:195.530667pt;}
._19_c00359{width:215.573333pt;}
._16_c00359{width:243.581333pt;}
._28_c00359{width:342.013333pt;}
._1b_c00359{width:752.112000pt;}
._3a_c00359{width:820.114667pt;}
.fs7_c00359{font-size:42.666667pt;}
.fs5_c00359{font-size:48.000000pt;}
.fs3_c00359{font-size:53.333333pt;}
.fs6_c00359{font-size:69.333333pt;}
.fs2_c00359{font-size:72.000000pt;}
.fs1_c00359{font-size:88.000000pt;}
.fs4_c00359{font-size:96.000000pt;}
.fs0_c00359{font-size:117.333333pt;}
.y0_c00359{bottom:0.000000pt;}
.y22_c00359{bottom:2.760000pt;}
.y21_c00359{bottom:6.425206pt;}
.y20_c00359{bottom:45.626667pt;}
.y1f_c00359{bottom:63.893333pt;}
.y1e_c00359{bottom:87.093333pt;}
.y1d_c00359{bottom:108.960000pt;}
.y1c_c00359{bottom:131.360000pt;}
.y1b_c00359{bottom:153.626667pt;}
.y1a_c00359{bottom:177.360000pt;}
.y19_c00359{bottom:198.026667pt;}
.y18_c00359{bottom:219.626667pt;}
.y17_c00359{bottom:241.226667pt;}
.y16_c00359{bottom:263.493333pt;}
.y15_c00359{bottom:284.960000pt;}
.y14_c00359{bottom:306.293333pt;}
.y13_c00359{bottom:330.026667pt;}
.y12_c00359{bottom:351.626667pt;}
.y11_c00359{bottom:372.293333pt;}
.y10_c00359{bottom:397.493333pt;}
.yf_c00359{bottom:417.093333pt;}
.ye_c00359{bottom:442.560000pt;}
.yd_c00359{bottom:518.693333pt;}
.yc_c00359{bottom:564.560000pt;}
.yb_c00359{bottom:587.360000pt;}
.ya_c00359{bottom:611.093333pt;}
.y9_c00359{bottom:632.693333pt;}
.y8_c00359{bottom:652.560000pt;}
.y7_c00359{bottom:674.160000pt;}
.y6_c00359{bottom:696.026667pt;}
.y5_c00359{bottom:717.893333pt;}
.y4_c00359{bottom:738.960000pt;}
.y3_c00359{bottom:760.560000pt;}
.y2_c00359{bottom:782.426667pt;}
.y1_c00359{bottom:814.293333pt;}
.h6_c00359{height:11.733399pt;}
.h7_c00359{height:38.937500pt;}
.h3_c00359{height:52.317708pt;}
.h2_c00359{height:70.664062pt;}
.h5_c00359{height:87.783854pt;}
.h4_c00359{height:96.750000pt;}
.h1_c00359{height:148.557292pt;}
.h0_c00359{height:884.666667pt;}
.w2_c00359{width:93.222667pt;}
.w0_c00359{width:593.266667pt;}
.w1_c00359{width:593.333333pt;}
.x0_c00359{left:0.000000pt;}
.xb_c00359{left:74.400000pt;}
.xd_c00359{left:93.600000pt;}
.xc_c00359{left:94.800000pt;}
.x3_c00359{left:96.266667pt;}
.x1_c00359{left:97.200000pt;}
.x2_c00359{left:98.666667pt;}
.x7_c00359{left:120.000000pt;}
.x6_c00359{left:131.733333pt;}
.xa_c00359{left:162.800000pt;}
.x5_c00359{left:179.600000pt;}
.x4_c00359{left:180.533333pt;}
.x8_c00359{left:210.933333pt;}
.xe_c00359{left:253.801554pt;}
.x9_c00359{left:515.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_dfd0e86778238b19903295b7.woff2')format("woff");}.ff1_c00360{font-family:ff1_c00360;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00360;src:url('chunks/assets/font_8c6e018aa807f5989e1d864a.woff2')format("woff");}.ff2_c00360{font-family:ff2_c00360;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00360;src:url('chunks/assets/font_816ed9f43cc07e7869fbda02.woff2')format("woff");}.ff3_c00360{font-family:ff3_c00360;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00360;src:url('chunks/assets/font_7c9fb9e6ecd78dfe354a7fdf.woff2')format("woff");}.ff4_c00360{font-family:ff4_c00360;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00360;src:url('chunks/assets/font_4b2b498bd41f89494aef642a.woff2')format("woff");}.ff5_c00360{font-family:ff5_c00360;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00360;src:url('chunks/assets/font_bbb0d6552db9b1c46c88c612.woff2')format("woff");}.ff6_c00360{font-family:ff6_c00360;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00360;src:url('chunks/assets/font_3393aaf103d8ebbb8163bd4d.woff2')format("woff");}.ff7_c00360{font-family:ff7_c00360;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00360;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff8_c00360{font-family:ff8_c00360;line-height:1.219238;font-style: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;}
.ls2_c00360{letter-spacing:0.000000px;}
.ls3_c00360{letter-spacing:3.000000px;}
.ls0_c00360{letter-spacing:7.800000px;}
.ls1_c00360{letter-spacing:15.600000px;}
.sc__c00360{text-shadow:none;}
.sc0_c00360{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00360{-webkit-text-stroke:0px transparent;}
.sc0_c00360{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00360{word-spacing:-60.000000px;}
.ws4_c00360{word-spacing:-31.152000px;}
.ws1_c00360{word-spacing:-27.582000px;}
.ws3_c00360{word-spacing:-18.750000px;}
.ws2_c00360{word-spacing:-17.352000px;}
.ws5_c00360{word-spacing:0.000000px;}
._f_c00360{margin-left:-28.200000px;}
._1e_c00360{margin-left:-24.612000px;}
._1_c00360{margin-left:-20.790000px;}
._3_c00360{margin-left:-19.065000px;}
._c_c00360{margin-left:-17.952000px;}
._b_c00360{margin-left:-15.504000px;}
._1f_c00360{margin-left:-13.917000px;}
._5_c00360{margin-left:-12.138000px;}
._7_c00360{margin-left:-9.588000px;}
._2_c00360{margin-left:-8.505000px;}
._8_c00360{margin-left:-7.038000px;}
._28_c00360{margin-left:-6.033000px;}
._6_c00360{margin-left:-4.998000px;}
._18_c00360{margin-left:-3.321000px;}
._19_c00360{margin-left:-1.959000px;}
._a_c00360{width:1.224000px;}
._9_c00360{width:2.652000px;}
._12_c00360{width:3.813000px;}
._11_c00360{width:5.016000px;}
._14_c00360{width:6.102000px;}
._16_c00360{width:7.425000px;}
._4_c00360{width:8.976000px;}
._1c_c00360{width:10.560000px;}
._10_c00360{width:11.832000px;}
._1d_c00360{width:14.097000px;}
._20_c00360{width:15.189000px;}
._17_c00360{width:17.868000px;}
._0_c00360{width:21.195000px;}
._27_c00360{width:25.326000px;}
._2a_c00360{width:28.287000px;}
._2c_c00360{width:29.466000px;}
._2b_c00360{width:31.509000px;}
._25_c00360{width:34.239000px;}
._2f_c00360{width:39.393000px;}
._21_c00360{width:40.563000px;}
._e_c00360{width:42.348000px;}
._22_c00360{width:49.071000px;}
._24_c00360{width:72.078000px;}
._1a_c00360{width:73.452000px;}
._1b_c00360{width:74.520000px;}
._d_c00360{width:81.192000px;}
._23_c00360{width:88.923000px;}
._15_c00360{width:102.891000px;}
._2d_c00360{width:103.923000px;}
._2e_c00360{width:105.288000px;}
._29_c00360{width:200.376000px;}
._26_c00360{width:202.089000px;}
._13_c00360{width:330.738000px;}
.fc2_c00360{color:transparent;}
.fc1_c00360{color:rgb(128,128,128);}
.fc0_c00360{color:rgb(0,0,0);}
.fsa_c00360{font-size:48.000000px;}
.fs6_c00360{font-size:60.000000px;}
.fs7_c00360{font-size:66.000000px;}
.fs4_c00360{font-size:72.000000px;}
.fs8_c00360{font-size:75.000000px;}
.fs3_c00360{font-size:81.000000px;}
.fs9_c00360{font-size:84.000000px;}
.fs5_c00360{font-size:87.000000px;}
.fs1_c00360{font-size:102.000000px;}
.fs2_c00360{font-size:120.000000px;}
.fs0_c00360{font-size:135.000000px;}
.y0_c00360{bottom:0.000000px;}
.y25_c00360{bottom:3.105000px;}
.y24_c00360{bottom:7.228355px;}
.y23_c00360{bottom:49.635000px;}
.y22_c00360{bottom:102.585000px;}
.y21_c00360{bottom:127.935000px;}
.y20_c00360{bottom:152.235000px;}
.y1f_c00360{bottom:177.435000px;}
.y1e_c00360{bottom:201.735000px;}
.y1d_c00360{bottom:225.435000px;}
.y1c_c00360{bottom:250.035000px;}
.y1b_c00360{bottom:274.635000px;}
.y1a_c00360{bottom:298.935000px;}
.y19_c00360{bottom:322.335000px;}
.y18_c00360{bottom:347.535000px;}
.y17_c00360{bottom:371.535000px;}
.y16_c00360{bottom:395.235000px;}
.y15_c00360{bottom:418.785000px;}
.y14_c00360{bottom:443.835000px;}
.y13_c00360{bottom:468.435000px;}
.y12_c00360{bottom:492.285000px;}
.y11_c00360{bottom:517.035000px;}
.y10_c00360{bottom:541.335000px;}
.yf_c00360{bottom:566.685000px;}
.ye_c00360{bottom:589.635000px;}
.yd_c00360{bottom:614.235000px;}
.yc_c00360{bottom:639.585000px;}
.yb_c00360{bottom:663.735000px;}
.ya_c00360{bottom:686.835000px;}
.y9_c00360{bottom:711.435000px;}
.y8_c00360{bottom:736.785000px;}
.y7_c00360{bottom:761.085000px;}
.y6_c00360{bottom:785.385000px;}
.y5_c00360{bottom:810.885000px;}
.y4_c00360{bottom:833.985000px;}
.y3_c00360{bottom:859.185000px;}
.y2_c00360{bottom:884.535000px;}
.y1_c00360{bottom:915.885000px;}
.h8_c00360{height:13.200074px;}
.h9_c00360{height:43.804688px;}
.h3_c00360{height:79.497070px;}
.h7_c00360{height:82.441406px;}
.h4_c00360{height:84.269531px;}
.h6_c00360{height:91.160156px;}
.h5_c00360{height:110.151855px;}
.h2_c00360{height:170.925293px;}
.h0_c00360{height:972.525000px;}
.h1_c00360{height:972.750000px;}
.w2_c00360{width:104.875500px;}
.w0_c00360{width:660.450000px;}
.w1_c00360{width:660.750000px;}
.x0_c00360{left:0.000000px;}
.x6_c00360{left:32.700000px;}
.x5_c00360{left:33.750000px;}
.x4_c00360{left:34.800000px;}
.x2_c00360{left:36.150000px;}
.x3_c00360{left:37.500000px;}
.x1_c00360{left:54.450000px;}
.x8_c00360{left:282.039230px;}
.x7_c00360{left:392.550000px;}
@media print{
.v0_c00360{vertical-align:0.000000pt;}
.ls2_c00360{letter-spacing:0.000000pt;}
.ls3_c00360{letter-spacing:2.666667pt;}
.ls0_c00360{letter-spacing:6.933333pt;}
.ls1_c00360{letter-spacing:13.866667pt;}
.ws0_c00360{word-spacing:-53.333333pt;}
.ws4_c00360{word-spacing:-27.690667pt;}
.ws1_c00360{word-spacing:-24.517333pt;}
.ws3_c00360{word-spacing:-16.666667pt;}
.ws2_c00360{word-spacing:-15.424000pt;}
.ws5_c00360{word-spacing:0.000000pt;}
._f_c00360{margin-left:-25.066667pt;}
._1e_c00360{margin-left:-21.877333pt;}
._1_c00360{margin-left:-18.480000pt;}
._3_c00360{margin-left:-16.946667pt;}
._c_c00360{margin-left:-15.957333pt;}
._b_c00360{margin-left:-13.781333pt;}
._1f_c00360{margin-left:-12.370667pt;}
._5_c00360{margin-left:-10.789333pt;}
._7_c00360{margin-left:-8.522667pt;}
._2_c00360{margin-left:-7.560000pt;}
._8_c00360{margin-left:-6.256000pt;}
._28_c00360{margin-left:-5.362667pt;}
._6_c00360{margin-left:-4.442667pt;}
._18_c00360{margin-left:-2.952000pt;}
._19_c00360{margin-left:-1.741333pt;}
._a_c00360{width:1.088000pt;}
._9_c00360{width:2.357333pt;}
._12_c00360{width:3.389333pt;}
._11_c00360{width:4.458667pt;}
._14_c00360{width:5.424000pt;}
._16_c00360{width:6.600000pt;}
._4_c00360{width:7.978667pt;}
._1c_c00360{width:9.386667pt;}
._10_c00360{width:10.517333pt;}
._1d_c00360{width:12.530667pt;}
._20_c00360{width:13.501333pt;}
._17_c00360{width:15.882667pt;}
._0_c00360{width:18.840000pt;}
._27_c00360{width:22.512000pt;}
._2a_c00360{width:25.144000pt;}
._2c_c00360{width:26.192000pt;}
._2b_c00360{width:28.008000pt;}
._25_c00360{width:30.434667pt;}
._2f_c00360{width:35.016000pt;}
._21_c00360{width:36.056000pt;}
._e_c00360{width:37.642667pt;}
._22_c00360{width:43.618667pt;}
._24_c00360{width:64.069333pt;}
._1a_c00360{width:65.290667pt;}
._1b_c00360{width:66.240000pt;}
._d_c00360{width:72.170667pt;}
._23_c00360{width:79.042667pt;}
._15_c00360{width:91.458667pt;}
._2d_c00360{width:92.376000pt;}
._2e_c00360{width:93.589333pt;}
._29_c00360{width:178.112000pt;}
._26_c00360{width:179.634667pt;}
._13_c00360{width:293.989333pt;}
.fsa_c00360{font-size:42.666667pt;}
.fs6_c00360{font-size:53.333333pt;}
.fs7_c00360{font-size:58.666667pt;}
.fs4_c00360{font-size:64.000000pt;}
.fs8_c00360{font-size:66.666667pt;}
.fs3_c00360{font-size:72.000000pt;}
.fs9_c00360{font-size:74.666667pt;}
.fs5_c00360{font-size:77.333333pt;}
.fs1_c00360{font-size:90.666667pt;}
.fs2_c00360{font-size:106.666667pt;}
.fs0_c00360{font-size:120.000000pt;}
.y0_c00360{bottom:0.000000pt;}
.y25_c00360{bottom:2.760000pt;}
.y24_c00360{bottom:6.425204pt;}
.y23_c00360{bottom:44.120000pt;}
.y22_c00360{bottom:91.186667pt;}
.y21_c00360{bottom:113.720000pt;}
.y20_c00360{bottom:135.320000pt;}
.y1f_c00360{bottom:157.720000pt;}
.y1e_c00360{bottom:179.320000pt;}
.y1d_c00360{bottom:200.386667pt;}
.y1c_c00360{bottom:222.253333pt;}
.y1b_c00360{bottom:244.120000pt;}
.y1a_c00360{bottom:265.720000pt;}
.y19_c00360{bottom:286.520000pt;}
.y18_c00360{bottom:308.920000pt;}
.y17_c00360{bottom:330.253333pt;}
.y16_c00360{bottom:351.320000pt;}
.y15_c00360{bottom:372.253333pt;}
.y14_c00360{bottom:394.520000pt;}
.y13_c00360{bottom:416.386667pt;}
.y12_c00360{bottom:437.586667pt;}
.y11_c00360{bottom:459.586667pt;}
.y10_c00360{bottom:481.186667pt;}
.yf_c00360{bottom:503.720000pt;}
.ye_c00360{bottom:524.120000pt;}
.yd_c00360{bottom:545.986667pt;}
.yc_c00360{bottom:568.520000pt;}
.yb_c00360{bottom:589.986667pt;}
.ya_c00360{bottom:610.520000pt;}
.y9_c00360{bottom:632.386667pt;}
.y8_c00360{bottom:654.920000pt;}
.y7_c00360{bottom:676.520000pt;}
.y6_c00360{bottom:698.120000pt;}
.y5_c00360{bottom:720.786667pt;}
.y4_c00360{bottom:741.320000pt;}
.y3_c00360{bottom:763.720000pt;}
.y2_c00360{bottom:786.253333pt;}
.y1_c00360{bottom:814.120000pt;}
.h8_c00360{height:11.733399pt;}
.h9_c00360{height:38.937500pt;}
.h3_c00360{height:70.664062pt;}
.h7_c00360{height:73.281250pt;}
.h4_c00360{height:74.906250pt;}
.h6_c00360{height:81.031250pt;}
.h5_c00360{height:97.912760pt;}
.h2_c00360{height:151.933594pt;}
.h0_c00360{height:864.466667pt;}
.h1_c00360{height:864.666667pt;}
.w2_c00360{width:93.222667pt;}
.w0_c00360{width:587.066667pt;}
.w1_c00360{width:587.333333pt;}
.x0_c00360{left:0.000000pt;}
.x6_c00360{left:29.066667pt;}
.x5_c00360{left:30.000000pt;}
.x4_c00360{left:30.933333pt;}
.x2_c00360{left:32.133333pt;}
.x3_c00360{left:33.333333pt;}
.x1_c00360{left:48.400000pt;}
.x8_c00360{left:250.701538pt;}
.x7_c00360{left:348.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_b5aac20d3bf8a28114dcd4ac.woff2')format("woff");}.ff1_c00361{font-family:ff1_c00361;line-height:1.437000;font-style:normal;font-weight:normal;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_35960efaca5eb634bd84df4c.woff2')format("woff");}.ff2_c00361{font-family:ff2_c00361;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00361;src:url('chunks/assets/font_d8fd71cba1aae7b00d28c0eb.woff2')format("woff");}.ff3_c00361{font-family:ff3_c00361;line-height:1.311035;font-style:normal;font-weight:normal;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_72f4bdd157826bcfea5b8cc3.woff2')format("woff");}.ff4_c00361{font-family:ff4_c00361;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00361;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c00361{font-family:ff5_c00361;line-height:1.219238;font-style: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;}
.ls1_c00361{letter-spacing:0.000000px;}
.ls0_c00361{letter-spacing:6.000000px;}
.sc__c00361{text-shadow:none;}
.sc0_c00361{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00361{-webkit-text-stroke:0px transparent;}
.sc0_c00361{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00361{word-spacing:-59.184000px;}
.ws0_c00361{word-spacing:-40.032000px;}
.ws2_c00361{word-spacing:0.000000px;}
._22_c00361{margin-left:-22.404000px;}
._1d_c00361{margin-left:-20.019000px;}
._12_c00361{margin-left:-10.083000px;}
._14_c00361{margin-left:-8.712000px;}
._13_c00361{margin-left:-7.422000px;}
._16_c00361{margin-left:-6.330000px;}
._5_c00361{margin-left:-5.067000px;}
._a_c00361{margin-left:-4.050000px;}
._b_c00361{margin-left:-2.205000px;}
._c_c00361{margin-left:-1.116000px;}
._1c_c00361{width:1.023000px;}
._6_c00361{width:2.052000px;}
._15_c00361{width:3.054000px;}
._0_c00361{width:4.104000px;}
._2_c00361{width:5.871000px;}
._11_c00361{width:6.873000px;}
._1_c00361{width:7.980000px;}
._3_c00361{width:9.063000px;}
._10_c00361{width:10.086000px;}
._4_c00361{width:11.343000px;}
._17_c00361{width:12.870000px;}
._f_c00361{width:13.914000px;}
._e_c00361{width:15.825000px;}
._8_c00361{width:16.848000px;}
._24_c00361{width:18.045000px;}
._18_c00361{width:21.651000px;}
._21_c00361{width:23.085000px;}
._19_c00361{width:24.369000px;}
._20_c00361{width:25.821000px;}
._1a_c00361{width:26.916000px;}
._1b_c00361{width:28.977000px;}
._7_c00361{width:30.294000px;}
._23_c00361{width:32.694000px;}
._1f_c00361{width:34.287000px;}
._9_c00361{width:36.288000px;}
._1e_c00361{width:39.624000px;}
._d_c00361{width:83.715000px;}
._25_c00361{width:220.347000px;}
._26_c00361{width:1304.343000px;}
.fc2_c00361{color:transparent;}
.fc1_c00361{color:rgb(128,128,128);}
.fc0_c00361{color:rgb(0,0,0);}
.fs4_c00361{font-size:48.000000px;}
.fs0_c00361{font-size:57.000000px;}
.fs2_c00361{font-size:66.000000px;}
.fs3_c00361{font-size:72.000000px;}
.fs1_c00361{font-size:81.000000px;}
.y0_c00361{bottom:0.000000px;}
.y25_c00361{bottom:3.105000px;}
.y24_c00361{bottom:7.228357px;}
.y23_c00361{bottom:51.330000px;}
.y22_c00361{bottom:76.980000px;}
.y21_c00361{bottom:104.580000px;}
.y20_c00361{bottom:127.680000px;}
.y1f_c00361{bottom:152.880000px;}
.y1e_c00361{bottom:177.480000px;}
.y1d_c00361{bottom:201.780000px;}
.y1c_c00361{bottom:226.830000px;}
.y1b_c00361{bottom:253.080000px;}
.y1a_c00361{bottom:276.030000px;}
.y19_c00361{bottom:300.480000px;}
.y18_c00361{bottom:325.980000px;}
.y17_c00361{bottom:350.280000px;}
.y16_c00361{bottom:375.030000px;}
.y15_c00361{bottom:399.330000px;}
.y14_c00361{bottom:424.530000px;}
.y13_c00361{bottom:449.280000px;}
.y12_c00361{bottom:473.130000px;}
.y11_c00361{bottom:497.580000px;}
.y10_c00361{bottom:522.480000px;}
.yf_c00361{bottom:545.730000px;}
.ye_c00361{bottom:570.780000px;}
.yd_c00361{bottom:594.330000px;}
.yc_c00361{bottom:618.930000px;}
.yb_c00361{bottom:643.380000px;}
.ya_c00361{bottom:667.980000px;}
.y9_c00361{bottom:693.180000px;}
.y8_c00361{bottom:717.480000px;}
.y7_c00361{bottom:741.180000px;}
.y6_c00361{bottom:765.480000px;}
.y5_c00361{bottom:790.380000px;}
.y4_c00361{bottom:815.730000px;}
.y3_c00361{bottom:839.130000px;}
.y2_c00361{bottom:863.730000px;}
.y1_c00361{bottom:889.080000px;}
.h5_c00361{height:13.200074px;}
.h6_c00361{height:43.804688px;}
.h2_c00361{height:59.736000px;}
.h3_c00361{height:79.497070px;}
.h4_c00361{height:84.269531px;}
.h1_c00361{height:978.750000px;}
.h0_c00361{height:979.050000px;}
.w2_c00361{width:104.875500px;}
.w0_c00361{width:656.100000px;}
.w1_c00361{width:656.250000px;}
.x0_c00361{left:0.000000px;}
.xa_c00361{left:27.900000px;}
.x8_c00361{left:116.700000px;}
.xb_c00361{left:117.750000px;}
.x6_c00361{left:118.800000px;}
.x5_c00361{left:120.150000px;}
.x7_c00361{left:121.800000px;}
.x3_c00361{left:122.850000px;}
.x4_c00361{left:123.900000px;}
.x2_c00361{left:125.850000px;}
.x9_c00361{left:138.750000px;}
.x1_c00361{left:230.850000px;}
.xc_c00361{left:240.600000px;}
.xd_c00361{left:279.864258px;}
@media print{
.v0_c00361{vertical-align:0.000000pt;}
.ls1_c00361{letter-spacing:0.000000pt;}
.ls0_c00361{letter-spacing:5.333333pt;}
.ws1_c00361{word-spacing:-52.608000pt;}
.ws0_c00361{word-spacing:-35.584000pt;}
.ws2_c00361{word-spacing:0.000000pt;}
._22_c00361{margin-left:-19.914667pt;}
._1d_c00361{margin-left:-17.794667pt;}
._12_c00361{margin-left:-8.962667pt;}
._14_c00361{margin-left:-7.744000pt;}
._13_c00361{margin-left:-6.597333pt;}
._16_c00361{margin-left:-5.626667pt;}
._5_c00361{margin-left:-4.504000pt;}
._a_c00361{margin-left:-3.600000pt;}
._b_c00361{margin-left:-1.960000pt;}
._c_c00361{margin-left:-0.992000pt;}
._1c_c00361{width:0.909333pt;}
._6_c00361{width:1.824000pt;}
._15_c00361{width:2.714667pt;}
._0_c00361{width:3.648000pt;}
._2_c00361{width:5.218667pt;}
._11_c00361{width:6.109333pt;}
._1_c00361{width:7.093333pt;}
._3_c00361{width:8.056000pt;}
._10_c00361{width:8.965333pt;}
._4_c00361{width:10.082667pt;}
._17_c00361{width:11.440000pt;}
._f_c00361{width:12.368000pt;}
._e_c00361{width:14.066667pt;}
._8_c00361{width:14.976000pt;}
._24_c00361{width:16.040000pt;}
._18_c00361{width:19.245333pt;}
._21_c00361{width:20.520000pt;}
._19_c00361{width:21.661333pt;}
._20_c00361{width:22.952000pt;}
._1a_c00361{width:23.925333pt;}
._1b_c00361{width:25.757333pt;}
._7_c00361{width:26.928000pt;}
._23_c00361{width:29.061333pt;}
._1f_c00361{width:30.477333pt;}
._9_c00361{width:32.256000pt;}
._1e_c00361{width:35.221333pt;}
._d_c00361{width:74.413333pt;}
._25_c00361{width:195.864000pt;}
._26_c00361{width:1159.416000pt;}
.fs4_c00361{font-size:42.666667pt;}
.fs0_c00361{font-size:50.666667pt;}
.fs2_c00361{font-size:58.666667pt;}
.fs3_c00361{font-size:64.000000pt;}
.fs1_c00361{font-size:72.000000pt;}
.y0_c00361{bottom:0.000000pt;}
.y25_c00361{bottom:2.760000pt;}
.y24_c00361{bottom:6.425206pt;}
.y23_c00361{bottom:45.626667pt;}
.y22_c00361{bottom:68.426667pt;}
.y21_c00361{bottom:92.960000pt;}
.y20_c00361{bottom:113.493333pt;}
.y1f_c00361{bottom:135.893333pt;}
.y1e_c00361{bottom:157.760000pt;}
.y1d_c00361{bottom:179.360000pt;}
.y1c_c00361{bottom:201.626667pt;}
.y1b_c00361{bottom:224.960000pt;}
.y1a_c00361{bottom:245.360000pt;}
.y19_c00361{bottom:267.093333pt;}
.y18_c00361{bottom:289.760000pt;}
.y17_c00361{bottom:311.360000pt;}
.y16_c00361{bottom:333.360000pt;}
.y15_c00361{bottom:354.960000pt;}
.y14_c00361{bottom:377.360000pt;}
.y13_c00361{bottom:399.360000pt;}
.y12_c00361{bottom:420.560000pt;}
.y11_c00361{bottom:442.293333pt;}
.y10_c00361{bottom:464.426667pt;}
.yf_c00361{bottom:485.093333pt;}
.ye_c00361{bottom:507.360000pt;}
.yd_c00361{bottom:528.293333pt;}
.yc_c00361{bottom:550.160000pt;}
.yb_c00361{bottom:571.893333pt;}
.ya_c00361{bottom:593.760000pt;}
.y9_c00361{bottom:616.160000pt;}
.y8_c00361{bottom:637.760000pt;}
.y7_c00361{bottom:658.826667pt;}
.y6_c00361{bottom:680.426667pt;}
.y5_c00361{bottom:702.560000pt;}
.y4_c00361{bottom:725.093333pt;}
.y3_c00361{bottom:745.893333pt;}
.y2_c00361{bottom:767.760000pt;}
.y1_c00361{bottom:790.293333pt;}
.h5_c00361{height:11.733399pt;}
.h6_c00361{height:38.937500pt;}
.h2_c00361{height:53.098667pt;}
.h3_c00361{height:70.664062pt;}
.h4_c00361{height:74.906250pt;}
.h1_c00361{height:870.000000pt;}
.h0_c00361{height:870.266667pt;}
.w2_c00361{width:93.222667pt;}
.w0_c00361{width:583.200000pt;}
.w1_c00361{width:583.333333pt;}
.x0_c00361{left:0.000000pt;}
.xa_c00361{left:24.800000pt;}
.x8_c00361{left:103.733333pt;}
.xb_c00361{left:104.666667pt;}
.x6_c00361{left:105.600000pt;}
.x5_c00361{left:106.800000pt;}
.x7_c00361{left:108.266667pt;}
.x3_c00361{left:109.200000pt;}
.x4_c00361{left:110.133333pt;}
.x2_c00361{left:111.866667pt;}
.x9_c00361{left:123.333333pt;}
.x1_c00361{left:205.200000pt;}
.xc_c00361{left:213.866667pt;}
.xd_c00361{left:248.768229pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_378304f969156be182e8d820.woff2')format("woff");}.ff1_c00362{font-family:ff1_c00362;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00362;src:url('chunks/assets/font_a174664f56d2a864fcaa7df2.woff2')format("woff");}.ff2_c00362{font-family:ff2_c00362;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00362;src:url('chunks/assets/font_f9101493e21e7a4c432d384e.woff2')format("woff");}.ff3_c00362{font-family:ff3_c00362;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00362;src:url('chunks/assets/font_369d0047f865ebc9a964977f.woff2')format("woff");}.ff4_c00362{font-family:ff4_c00362;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00362;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff5_c00362{font-family:ff5_c00362;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00362;src:url('chunks/assets/font_c7553266bce5a06045bd3d20.woff2')format("woff");}.ff6_c00362{font-family:ff6_c00362;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00362;src:url('chunks/assets/font_4633821d9b4cb7cbfaf955d5.woff2')format("woff");}.ff7_c00362{font-family:ff7_c00362;line-height:1.437000;font-style:normal;font-weight: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_c00362;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff8_c00362{font-family:ff8_c00362;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00362{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m0_c00362{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00362{vertical-align:0.000000px;}
.ls3_c00362{letter-spacing:-15.000000px;}
.ls4_c00362{letter-spacing:0.000000px;}
.ls1_c00362{letter-spacing:0.600000px;}
.ls2_c00362{letter-spacing:3.000000px;}
.ls0_c00362{letter-spacing:4.080000px;}
.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;}
}
.ws4_c00362{word-spacing:-67.686000px;}
.ws3_c00362{word-spacing:-20.250000px;}
.ws1_c00362{word-spacing:-17.352000px;}
.ws0_c00362{word-spacing:-17.250000px;}
.ws5_c00362{word-spacing:0.000000px;}
.ws2_c00362{word-spacing:5.559000px;}
._9_c00362{margin-left:-18.618000px;}
._5_c00362{margin-left:-14.790000px;}
._18_c00362{margin-left:-11.988000px;}
._22_c00362{margin-left:-10.122000px;}
._1b_c00362{margin-left:-8.454000px;}
._19_c00362{margin-left:-6.453000px;}
._20_c00362{margin-left:-5.367000px;}
._4_c00362{margin-left:-4.182000px;}
._1a_c00362{margin-left:-2.955000px;}
._6_c00362{margin-left:-1.224000px;}
._d_c00362{width:1.020000px;}
._2_c00362{width:2.754000px;}
._15_c00362{width:3.756000px;}
._1_c00362{width:4.794000px;}
._16_c00362{width:5.835000px;}
._0_c00362{width:6.936000px;}
._3_c00362{width:8.058000px;}
._13_c00362{width:9.282000px;}
._c_c00362{width:10.404000px;}
._11_c00362{width:11.577000px;}
._1c_c00362{width:12.732000px;}
._f_c00362{width:14.229000px;}
._1d_c00362{width:15.279000px;}
._b_c00362{width:16.371000px;}
._a_c00362{width:18.258000px;}
._e_c00362{width:19.329000px;}
._8_c00362{width:20.910000px;}
._12_c00362{width:22.491000px;}
._25_c00362{width:24.657000px;}
._26_c00362{width:26.211000px;}
._27_c00362{width:28.629000px;}
._23_c00362{width:30.573000px;}
._1f_c00362{width:32.409000px;}
._10_c00362{width:33.660000px;}
._1e_c00362{width:38.238000px;}
._7_c00362{width:53.142000px;}
._24_c00362{width:94.041000px;}
._17_c00362{width:209.454000px;}
._21_c00362{width:321.618000px;}
._14_c00362{width:335.427000px;}
._28_c00362{width:387.441000px;}
._29_c00362{width:602.985000px;}
.fc2_c00362{color:transparent;}
.fc1_c00362{color:rgb(128,128,128);}
.fc0_c00362{color:rgb(0,0,0);}
.fs9_c00362{font-size:48.000000px;}
.fs2_c00362{font-size:51.000000px;}
.fs5_c00362{font-size:57.000000px;}
.fs6_c00362{font-size:66.000000px;}
.fs4_c00362{font-size:72.000000px;}
.fs3_c00362{font-size:81.000000px;}
.fs8_c00362{font-size:87.000000px;}
.fs7_c00362{font-size:93.000000px;}
.fs0_c00362{font-size:102.000000px;}
.fs1_c00362{font-size:129.000000px;}
.y0_c00362{bottom:0.000000px;}
.y26_c00362{bottom:3.105000px;}
.y25_c00362{bottom:7.228371px;}
.y24_c00362{bottom:45.615000px;}
.y23_c00362{bottom:71.865000px;}
.y22_c00362{bottom:96.915000px;}
.y21_c00362{bottom:123.315000px;}
.y20_c00362{bottom:147.915000px;}
.y1f_c00362{bottom:172.215000px;}
.y1e_c00362{bottom:196.515000px;}
.y1d_c00362{bottom:220.515000px;}
.y1c_c00362{bottom:245.715000px;}
.y1b_c00362{bottom:270.315000px;}
.y1a_c00362{bottom:294.615000px;}
.y19_c00362{bottom:318.615000px;}
.y18_c00362{bottom:343.215000px;}
.y17_c00362{bottom:367.515000px;}
.y16_c00362{bottom:391.515000px;}
.y15_c00362{bottom:415.815000px;}
.y14_c00362{bottom:440.415000px;}
.y13_c00362{bottom:464.715000px;}
.y12_c00362{bottom:489.765000px;}
.y11_c00362{bottom:513.315000px;}
.y10_c00362{bottom:537.615000px;}
.yf_c00362{bottom:561.615000px;}
.ye_c00362{bottom:585.315000px;}
.yd_c00362{bottom:609.315000px;}
.yc_c00362{bottom:634.215000px;}
.yb_c00362{bottom:657.765000px;}
.ya_c00362{bottom:682.065000px;}
.y9_c00362{bottom:706.365000px;}
.y8_c00362{bottom:730.815000px;}
.y7_c00362{bottom:754.965000px;}
.y6_c00362{bottom:779.265000px;}
.y5_c00362{bottom:803.265000px;}
.y4_c00362{bottom:828.615000px;}
.y3_c00362{bottom:852.615000px;}
.y2_c00362{bottom:876.915000px;}
.y1_c00362{bottom:909.915000px;}
.hc_c00362{height:13.200074px;}
.hd_c00362{height:43.804688px;}
.h9_c00362{height:50.028809px;}
.h3_c00362{height:51.398438px;}
.h4_c00362{height:79.497070px;}
.h5_c00362{height:84.269531px;}
.h6_c00362{height:91.160156px;}
.ha_c00362{height:91.176000px;}
.h8_c00362{height:91.229004px;}
.hb_c00362{height:91.274414px;}
.h7_c00362{height:93.726562px;}
.h2_c00362{height:126.543457px;}
.h0_c00362{height:989.025000px;}
.h1_c00362{height:989.250000px;}
.w1_c00362{width:104.875500px;}
.w0_c00362{width:672.000000px;}
.x0_c00362{left:0.000000px;}
.x9_c00362{left:39.750000px;}
.x6_c00362{left:40.800000px;}
.x4_c00362{left:42.900000px;}
.x3_c00362{left:44.550000px;}
.x2_c00362{left:46.200000px;}
.x1_c00362{left:60.750000px;}
.x5_c00362{left:80.250000px;}
.xa_c00362{left:214.650000px;}
.xb_c00362{left:287.814240px;}
.x7_c00362{left:620.400000px;}
.x8_c00362{left:627.900000px;}
@media print{
.v0_c00362{vertical-align:0.000000pt;}
.ls3_c00362{letter-spacing:-13.333333pt;}
.ls4_c00362{letter-spacing:0.000000pt;}
.ls1_c00362{letter-spacing:0.533333pt;}
.ls2_c00362{letter-spacing:2.666667pt;}
.ls0_c00362{letter-spacing:3.626667pt;}
.ws4_c00362{word-spacing:-60.165333pt;}
.ws3_c00362{word-spacing:-18.000000pt;}
.ws1_c00362{word-spacing:-15.424000pt;}
.ws0_c00362{word-spacing:-15.333333pt;}
.ws5_c00362{word-spacing:0.000000pt;}
.ws2_c00362{word-spacing:4.941333pt;}
._9_c00362{margin-left:-16.549333pt;}
._5_c00362{margin-left:-13.146667pt;}
._18_c00362{margin-left:-10.656000pt;}
._22_c00362{margin-left:-8.997333pt;}
._1b_c00362{margin-left:-7.514667pt;}
._19_c00362{margin-left:-5.736000pt;}
._20_c00362{margin-left:-4.770667pt;}
._4_c00362{margin-left:-3.717333pt;}
._1a_c00362{margin-left:-2.626667pt;}
._6_c00362{margin-left:-1.088000pt;}
._d_c00362{width:0.906667pt;}
._2_c00362{width:2.448000pt;}
._15_c00362{width:3.338667pt;}
._1_c00362{width:4.261333pt;}
._16_c00362{width:5.186667pt;}
._0_c00362{width:6.165333pt;}
._3_c00362{width:7.162667pt;}
._13_c00362{width:8.250667pt;}
._c_c00362{width:9.248000pt;}
._11_c00362{width:10.290667pt;}
._1c_c00362{width:11.317333pt;}
._f_c00362{width:12.648000pt;}
._1d_c00362{width:13.581333pt;}
._b_c00362{width:14.552000pt;}
._a_c00362{width:16.229333pt;}
._e_c00362{width:17.181333pt;}
._8_c00362{width:18.586667pt;}
._12_c00362{width:19.992000pt;}
._25_c00362{width:21.917333pt;}
._26_c00362{width:23.298667pt;}
._27_c00362{width:25.448000pt;}
._23_c00362{width:27.176000pt;}
._1f_c00362{width:28.808000pt;}
._10_c00362{width:29.920000pt;}
._1e_c00362{width:33.989333pt;}
._7_c00362{width:47.237333pt;}
._24_c00362{width:83.592000pt;}
._17_c00362{width:186.181333pt;}
._21_c00362{width:285.882667pt;}
._14_c00362{width:298.157333pt;}
._28_c00362{width:344.392000pt;}
._29_c00362{width:535.986667pt;}
.fs9_c00362{font-size:42.666667pt;}
.fs2_c00362{font-size:45.333333pt;}
.fs5_c00362{font-size:50.666667pt;}
.fs6_c00362{font-size:58.666667pt;}
.fs4_c00362{font-size:64.000000pt;}
.fs3_c00362{font-size:72.000000pt;}
.fs8_c00362{font-size:77.333333pt;}
.fs7_c00362{font-size:82.666667pt;}
.fs0_c00362{font-size:90.666667pt;}
.fs1_c00362{font-size:114.666667pt;}
.y0_c00362{bottom:0.000000pt;}
.y26_c00362{bottom:2.760000pt;}
.y25_c00362{bottom:6.425219pt;}
.y24_c00362{bottom:40.546667pt;}
.y23_c00362{bottom:63.880000pt;}
.y22_c00362{bottom:86.146667pt;}
.y21_c00362{bottom:109.613333pt;}
.y20_c00362{bottom:131.480000pt;}
.y1f_c00362{bottom:153.080000pt;}
.y1e_c00362{bottom:174.680000pt;}
.y1d_c00362{bottom:196.013333pt;}
.y1c_c00362{bottom:218.413333pt;}
.y1b_c00362{bottom:240.280000pt;}
.y1a_c00362{bottom:261.880000pt;}
.y19_c00362{bottom:283.213333pt;}
.y18_c00362{bottom:305.080000pt;}
.y17_c00362{bottom:326.680000pt;}
.y16_c00362{bottom:348.013333pt;}
.y15_c00362{bottom:369.613333pt;}
.y14_c00362{bottom:391.480000pt;}
.y13_c00362{bottom:413.080000pt;}
.y12_c00362{bottom:435.346667pt;}
.y11_c00362{bottom:456.280000pt;}
.y10_c00362{bottom:477.880000pt;}
.yf_c00362{bottom:499.213333pt;}
.ye_c00362{bottom:520.280000pt;}
.yd_c00362{bottom:541.613333pt;}
.yc_c00362{bottom:563.746667pt;}
.yb_c00362{bottom:584.680000pt;}
.ya_c00362{bottom:606.280000pt;}
.y9_c00362{bottom:627.880000pt;}
.y8_c00362{bottom:649.613333pt;}
.y7_c00362{bottom:671.080000pt;}
.y6_c00362{bottom:692.680000pt;}
.y5_c00362{bottom:714.013333pt;}
.y4_c00362{bottom:736.546667pt;}
.y3_c00362{bottom:757.880000pt;}
.y2_c00362{bottom:779.480000pt;}
.y1_c00362{bottom:808.813333pt;}
.hc_c00362{height:11.733399pt;}
.hd_c00362{height:38.937500pt;}
.h9_c00362{height:44.470052pt;}
.h3_c00362{height:45.687500pt;}
.h4_c00362{height:70.664062pt;}
.h5_c00362{height:74.906250pt;}
.h6_c00362{height:81.031250pt;}
.ha_c00362{height:81.045333pt;}
.h8_c00362{height:81.092448pt;}
.hb_c00362{height:81.132812pt;}
.h7_c00362{height:83.312500pt;}
.h2_c00362{height:112.483073pt;}
.h0_c00362{height:879.133333pt;}
.h1_c00362{height:879.333333pt;}
.w1_c00362{width:93.222667pt;}
.w0_c00362{width:597.333333pt;}
.x0_c00362{left:0.000000pt;}
.x9_c00362{left:35.333333pt;}
.x6_c00362{left:36.266667pt;}
.x4_c00362{left:38.133333pt;}
.x3_c00362{left:39.600000pt;}
.x2_c00362{left:41.066667pt;}
.x1_c00362{left:54.000000pt;}
.x5_c00362{left:71.333333pt;}
.xa_c00362{left:190.800000pt;}
.xb_c00362{left:255.834880pt;}
.x7_c00362{left:551.466667pt;}
.x8_c00362{left:558.133333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_09a6c4f94187c87b6fd79cd9.woff2')format("woff");}.ff1_c00363{font-family:ff1_c00363;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00363;src:url('chunks/assets/font_55ee3352b636d2b9950d6547.woff2')format("woff");}.ff2_c00363{font-family:ff2_c00363;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00363;src:url('chunks/assets/font_6c487674cd99258a1e52f5f4.woff2')format("woff");}.ff3_c00363{font-family:ff3_c00363;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00363;src:url('chunks/assets/font_3e2dfe4fb05a38047c6b2288.woff2')format("woff");}.ff4_c00363{font-family:ff4_c00363;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00363;src:url('chunks/assets/font_ba59661f39f032a72aeabfb9.woff2')format("woff");}.ff5_c00363{font-family:ff5_c00363;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00363;src:url('chunks/assets/font_23378941eb0a315e86ffd5c1.woff2')format("woff");}.ff6_c00363{font-family:ff6_c00363;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00363;src:url('chunks/assets/font_47f1f002aa1b278648ef9f0a.woff2')format("woff");}.ff7_c00363{font-family:ff7_c00363;line-height:1.437000;font-style:normal;font-weight: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_c00363;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff8_c00363{font-family:ff8_c00363;line-height:1.219238;font-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_c00363{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,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;}
.ls2_c00363{letter-spacing:0.000000px;}
.ls3_c00363{letter-spacing:3.000000px;}
.ls1_c00363{letter-spacing:24.600000px;}
.ls0_c00363{letter-spacing:31.800000px;}
.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;}
}
.ws5_c00363{word-spacing:-67.686000px;}
.ws2_c00363{word-spacing:-33.000000px;}
.ws4_c00363{word-spacing:-20.250000px;}
.ws3_c00363{word-spacing:-18.798000px;}
.ws1_c00363{word-spacing:-17.352000px;}
.ws6_c00363{word-spacing:0.000000px;}
.ws0_c00363{word-spacing:1.872000px;}
._2b_c00363{margin-left:-36.906000px;}
._25_c00363{margin-left:-33.696000px;}
._2f_c00363{margin-left:-31.290000px;}
._35_c00363{margin-left:-29.580000px;}
._2a_c00363{margin-left:-23.724000px;}
._27_c00363{margin-left:-22.140000px;}
._24_c00363{margin-left:-19.806000px;}
._2d_c00363{margin-left:-17.730000px;}
._28_c00363{margin-left:-15.657000px;}
._17_c00363{margin-left:-14.427000px;}
._38_c00363{margin-left:-13.014000px;}
._15_c00363{margin-left:-11.316000px;}
._2c_c00363{margin-left:-10.215000px;}
._12_c00363{margin-left:-9.138000px;}
._10_c00363{margin-left:-8.007000px;}
._11_c00363{margin-left:-5.940000px;}
._e_c00363{margin-left:-3.969000px;}
._0_c00363{margin-left:-2.592000px;}
._f_c00363{margin-left:-1.377000px;}
._d_c00363{width:1.296000px;}
._a_c00363{width:2.511000px;}
._c_c00363{width:3.969000px;}
._b_c00363{width:5.670000px;}
._14_c00363{width:7.056000px;}
._5_c00363{width:8.352000px;}
._6_c00363{width:9.936000px;}
._3_c00363{width:11.232000px;}
._7_c00363{width:12.264000px;}
._4_c00363{width:13.896000px;}
._2_c00363{width:14.904000px;}
._8_c00363{width:16.344000px;}
._1b_c00363{width:17.982000px;}
._19_c00363{width:21.414000px;}
._1a_c00363{width:23.328000px;}
._2e_c00363{width:30.141000px;}
._22_c00363{width:40.110000px;}
._36_c00363{width:41.844000px;}
._29_c00363{width:48.156000px;}
._1d_c00363{width:55.683000px;}
._20_c00363{width:61.884000px;}
._23_c00363{width:76.860000px;}
._26_c00363{width:92.988000px;}
._1_c00363{width:104.598000px;}
._16_c00363{width:111.426000px;}
._37_c00363{width:113.067000px;}
._9_c00363{width:119.640000px;}
._1e_c00363{width:139.137000px;}
._30_c00363{width:145.044000px;}
._18_c00363{width:149.706000px;}
._21_c00363{width:155.334000px;}
._13_c00363{width:168.345000px;}
._31_c00363{width:184.161000px;}
._1f_c00363{width:248.205000px;}
._34_c00363{width:301.860000px;}
._32_c00363{width:396.285000px;}
._33_c00363{width:519.660000px;}
._1c_c00363{width:714.780000px;}
.fc2_c00363{color:transparent;}
.fc1_c00363{color:rgb(128,128,128);}
.fc0_c00363{color:rgb(0,0,0);}
.fs7_c00363{font-size:45.000000px;}
.fs9_c00363{font-size:48.000000px;}
.fs0_c00363{font-size:54.000000px;}
.fs6_c00363{font-size:57.000000px;}
.fs2_c00363{font-size:66.000000px;}
.fs1_c00363{font-size:72.000000px;}
.fs4_c00363{font-size:78.000000px;}
.fs3_c00363{font-size:81.000000px;}
.fs8_c00363{font-size:87.000000px;}
.fs5_c00363{font-size:108.000000px;}
.y0_c00363{bottom:0.000000px;}
.y24_c00363{bottom:3.105000px;}
.y23_c00363{bottom:7.228357px;}
.y22_c00363{bottom:70.230000px;}
.y21_c00363{bottom:95.580000px;}
.y20_c00363{bottom:123.180000px;}
.y1f_c00363{bottom:145.830000px;}
.y1e_c00363{bottom:177.930000px;}
.y1d_c00363{bottom:190.080000px;}
.y1c_c00363{bottom:218.430000px;}
.y1b_c00363{bottom:244.380000px;}
.y1a_c00363{bottom:268.380000px;}
.y19_c00363{bottom:292.980000px;}
.y18_c00363{bottom:318.030000px;}
.y17_c00363{bottom:341.880000px;}
.y16_c00363{bottom:366.930000px;}
.y15_c00363{bottom:392.130000px;}
.y14_c00363{bottom:418.230000px;}
.y13_c00363{bottom:439.830000px;}
.y12_c00363{bottom:463.830000px;}
.y11_c00363{bottom:482.580000px;}
.y10_c00363{bottom:517.080000px;}
.yf_c00363{bottom:536.730000px;}
.ye_c00363{bottom:561.030000px;}
.yd_c00363{bottom:586.530000px;}
.yc_c00363{bottom:634.230000px;}
.yb_c00363{bottom:662.280000px;}
.ya_c00363{bottom:681.030000px;}
.y9_c00363{bottom:708.180000px;}
.y8_c00363{bottom:732.030000px;}
.y7_c00363{bottom:756.780000px;}
.y6_c00363{bottom:780.630000px;}
.y5_c00363{bottom:808.380000px;}
.y4_c00363{bottom:829.980000px;}
.y3_c00363{bottom:854.880000px;}
.y2_c00363{bottom:879.180000px;}
.y1_c00363{bottom:921.330000px;}
.h9_c00363{height:13.200074px;}
.ha_c00363{height:43.804688px;}
.h7_c00363{height:57.445312px;}
.h3_c00363{height:72.562500px;}
.h2_c00363{height:79.497070px;}
.h1_c00363{height:84.269531px;}
.h5_c00363{height:91.160156px;}
.h8_c00363{height:91.176000px;}
.h4_c00363{height:98.756836px;}
.h6_c00363{height:108.843750px;}
.h0_c00363{height:995.250000px;}
.w2_c00363{width:104.875500px;}
.w0_c00363{width:667.425000px;}
.w1_c00363{width:667.500000px;}
.x0_c00363{left:0.000000px;}
.x7_c00363{left:34.050000px;}
.x6_c00363{left:36.750000px;}
.x8_c00363{left:48.900000px;}
.xb_c00363{left:58.050000px;}
.x4_c00363{left:73.200000px;}
.xc_c00363{left:80.550000px;}
.xd_c00363{left:100.200000px;}
.x10_c00363{left:112.050000px;}
.x2_c00363{left:124.500000px;}
.x9_c00363{left:126.600000px;}
.x3_c00363{left:129.300000px;}
.xa_c00363{left:131.250000px;}
.xe_c00363{left:133.050000px;}
.x5_c00363{left:157.350000px;}
.x1_c00363{left:196.800000px;}
.xf_c00363{left:211.950000px;}
.x11_c00363{left:285.526749px;}
@media print{
.v0_c00363{vertical-align:0.000000pt;}
.ls2_c00363{letter-spacing:0.000000pt;}
.ls3_c00363{letter-spacing:2.666667pt;}
.ls1_c00363{letter-spacing:21.866667pt;}
.ls0_c00363{letter-spacing:28.266667pt;}
.ws5_c00363{word-spacing:-60.165333pt;}
.ws2_c00363{word-spacing:-29.333333pt;}
.ws4_c00363{word-spacing:-18.000000pt;}
.ws3_c00363{word-spacing:-16.709333pt;}
.ws1_c00363{word-spacing:-15.424000pt;}
.ws6_c00363{word-spacing:0.000000pt;}
.ws0_c00363{word-spacing:1.664000pt;}
._2b_c00363{margin-left:-32.805333pt;}
._25_c00363{margin-left:-29.952000pt;}
._2f_c00363{margin-left:-27.813333pt;}
._35_c00363{margin-left:-26.293333pt;}
._2a_c00363{margin-left:-21.088000pt;}
._27_c00363{margin-left:-19.680000pt;}
._24_c00363{margin-left:-17.605333pt;}
._2d_c00363{margin-left:-15.760000pt;}
._28_c00363{margin-left:-13.917333pt;}
._17_c00363{margin-left:-12.824000pt;}
._38_c00363{margin-left:-11.568000pt;}
._15_c00363{margin-left:-10.058667pt;}
._2c_c00363{margin-left:-9.080000pt;}
._12_c00363{margin-left:-8.122667pt;}
._10_c00363{margin-left:-7.117333pt;}
._11_c00363{margin-left:-5.280000pt;}
._e_c00363{margin-left:-3.528000pt;}
._0_c00363{margin-left:-2.304000pt;}
._f_c00363{margin-left:-1.224000pt;}
._d_c00363{width:1.152000pt;}
._a_c00363{width:2.232000pt;}
._c_c00363{width:3.528000pt;}
._b_c00363{width:5.040000pt;}
._14_c00363{width:6.272000pt;}
._5_c00363{width:7.424000pt;}
._6_c00363{width:8.832000pt;}
._3_c00363{width:9.984000pt;}
._7_c00363{width:10.901333pt;}
._4_c00363{width:12.352000pt;}
._2_c00363{width:13.248000pt;}
._8_c00363{width:14.528000pt;}
._1b_c00363{width:15.984000pt;}
._19_c00363{width:19.034667pt;}
._1a_c00363{width:20.736000pt;}
._2e_c00363{width:26.792000pt;}
._22_c00363{width:35.653333pt;}
._36_c00363{width:37.194667pt;}
._29_c00363{width:42.805333pt;}
._1d_c00363{width:49.496000pt;}
._20_c00363{width:55.008000pt;}
._23_c00363{width:68.320000pt;}
._26_c00363{width:82.656000pt;}
._1_c00363{width:92.976000pt;}
._16_c00363{width:99.045333pt;}
._37_c00363{width:100.504000pt;}
._9_c00363{width:106.346667pt;}
._1e_c00363{width:123.677333pt;}
._30_c00363{width:128.928000pt;}
._18_c00363{width:133.072000pt;}
._21_c00363{width:138.074667pt;}
._13_c00363{width:149.640000pt;}
._31_c00363{width:163.698667pt;}
._1f_c00363{width:220.626667pt;}
._34_c00363{width:268.320000pt;}
._32_c00363{width:352.253333pt;}
._33_c00363{width:461.920000pt;}
._1c_c00363{width:635.360000pt;}
.fs7_c00363{font-size:40.000000pt;}
.fs9_c00363{font-size:42.666667pt;}
.fs0_c00363{font-size:48.000000pt;}
.fs6_c00363{font-size:50.666667pt;}
.fs2_c00363{font-size:58.666667pt;}
.fs1_c00363{font-size:64.000000pt;}
.fs4_c00363{font-size:69.333333pt;}
.fs3_c00363{font-size:72.000000pt;}
.fs8_c00363{font-size:77.333333pt;}
.fs5_c00363{font-size:96.000000pt;}
.y0_c00363{bottom:0.000000pt;}
.y24_c00363{bottom:2.760000pt;}
.y23_c00363{bottom:6.425206pt;}
.y22_c00363{bottom:62.426667pt;}
.y21_c00363{bottom:84.960000pt;}
.y20_c00363{bottom:109.493333pt;}
.y1f_c00363{bottom:129.626667pt;}
.y1e_c00363{bottom:158.160000pt;}
.y1d_c00363{bottom:168.960000pt;}
.y1c_c00363{bottom:194.160000pt;}
.y1b_c00363{bottom:217.226667pt;}
.y1a_c00363{bottom:238.560000pt;}
.y19_c00363{bottom:260.426667pt;}
.y18_c00363{bottom:282.693333pt;}
.y17_c00363{bottom:303.893333pt;}
.y16_c00363{bottom:326.160000pt;}
.y15_c00363{bottom:348.560000pt;}
.y14_c00363{bottom:371.760000pt;}
.y13_c00363{bottom:390.960000pt;}
.y12_c00363{bottom:412.293333pt;}
.y11_c00363{bottom:428.960000pt;}
.y10_c00363{bottom:459.626667pt;}
.yf_c00363{bottom:477.093333pt;}
.ye_c00363{bottom:498.693333pt;}
.yd_c00363{bottom:521.360000pt;}
.yc_c00363{bottom:563.760000pt;}
.yb_c00363{bottom:588.693333pt;}
.ya_c00363{bottom:605.360000pt;}
.y9_c00363{bottom:629.493333pt;}
.y8_c00363{bottom:650.693333pt;}
.y7_c00363{bottom:672.693333pt;}
.y6_c00363{bottom:693.893333pt;}
.y5_c00363{bottom:718.560000pt;}
.y4_c00363{bottom:737.760000pt;}
.y3_c00363{bottom:759.893333pt;}
.y2_c00363{bottom:781.493333pt;}
.y1_c00363{bottom:818.960000pt;}
.h9_c00363{height:11.733399pt;}
.ha_c00363{height:38.937500pt;}
.h7_c00363{height:51.062500pt;}
.h3_c00363{height:64.500000pt;}
.h2_c00363{height:70.664062pt;}
.h1_c00363{height:74.906250pt;}
.h5_c00363{height:81.031250pt;}
.h8_c00363{height:81.045333pt;}
.h4_c00363{height:87.783854pt;}
.h6_c00363{height:96.750000pt;}
.h0_c00363{height:884.666667pt;}
.w2_c00363{width:93.222667pt;}
.w0_c00363{width:593.266667pt;}
.w1_c00363{width:593.333333pt;}
.x0_c00363{left:0.000000pt;}
.x7_c00363{left:30.266667pt;}
.x6_c00363{left:32.666667pt;}
.x8_c00363{left:43.466667pt;}
.xb_c00363{left:51.600000pt;}
.x4_c00363{left:65.066667pt;}
.xc_c00363{left:71.600000pt;}
.xd_c00363{left:89.066667pt;}
.x10_c00363{left:99.600000pt;}
.x2_c00363{left:110.666667pt;}
.x9_c00363{left:112.533333pt;}
.x3_c00363{left:114.933333pt;}
.xa_c00363{left:116.666667pt;}
.xe_c00363{left:118.266667pt;}
.x5_c00363{left:139.866667pt;}
.x1_c00363{left:174.933333pt;}
.xf_c00363{left:188.400000pt;}
.x11_c00363{left:253.801554pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_29955cab32a9d2828dc011d8.woff2')format("woff");}.ff1_c00364{font-family:ff1_c00364;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00364;src:url('chunks/assets/font_3c65677b14dc891c74f73544.woff2')format("woff");}.ff2_c00364{font-family:ff2_c00364;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00364;src:url('chunks/assets/font_ddf30d7f216d7ab32042dd4e.woff2')format("woff");}.ff3_c00364{font-family:ff3_c00364;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00364;src:url('chunks/assets/font_6befcc222842628aa361e87a.woff2')format("woff");}.ff4_c00364{font-family:ff4_c00364;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00364;src:url('chunks/assets/font_c53e78e860f7e61feb235100.woff2')format("woff");}.ff5_c00364{font-family:ff5_c00364;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00364;src:url('chunks/assets/font_88098d043720268eeb209ea3.woff2')format("woff");}.ff6_c00364{font-family:ff6_c00364;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00364;src:url('chunks/assets/font_ee2d64af4750d14909f57cd3.woff2')format("woff");}.ff7_c00364{font-family:ff7_c00364;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00364;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff8_c00364{font-family:ff8_c00364;line-height:1.219238;font-style: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;}
.ls6_c00364{letter-spacing:-6.000000px;}
.ls7_c00364{letter-spacing:0.000000px;}
.ls2_c00364{letter-spacing:1.602000px;}
.ls4_c00364{letter-spacing:3.000000px;}
.ls3_c00364{letter-spacing:5.100000px;}
.ls1_c00364{letter-spacing:5.355000px;}
.ls8_c00364{letter-spacing:6.000000px;}
.ls5_c00364{letter-spacing:15.000000px;}
.ls0_c00364{letter-spacing:53.250000px;}
.sc__c00364{text-shadow:none;}
.sc0_c00364{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00364{-webkit-text-stroke:0px transparent;}
.sc0_c00364{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00364{word-spacing:-27.750000px;}
.ws1_c00364{word-spacing:-15.750000px;}
.ws0_c00364{word-spacing:-13.737000px;}
.ws2_c00364{word-spacing:-0.052800px;}
.ws4_c00364{word-spacing:0.000000px;}
._21_c00364{margin-left:-63.288000px;}
._e_c00364{margin-left:-30.000000px;}
._18_c00364{margin-left:-24.675000px;}
._7_c00364{margin-left:-21.948000px;}
._19_c00364{margin-left:-20.232000px;}
._a_c00364{margin-left:-18.660000px;}
._d_c00364{margin-left:-16.200000px;}
._9_c00364{margin-left:-13.668000px;}
._3_c00364{margin-left:-12.342000px;}
._1b_c00364{margin-left:-11.307000px;}
._5_c00364{margin-left:-9.984000px;}
._c_c00364{margin-left:-7.800000px;}
._6_c00364{margin-left:-6.732000px;}
._14_c00364{margin-left:-4.785000px;}
._15_c00364{margin-left:-3.573000px;}
._4_c00364{margin-left:-2.040000px;}
._1e_c00364{margin-left:-1.023000px;}
._8_c00364{width:1.224000px;}
._1_c00364{width:3.162000px;}
._2_c00364{width:4.794000px;}
._10_c00364{width:5.979000px;}
._0_c00364{width:7.548000px;}
._f_c00364{width:8.577000px;}
._13_c00364{width:9.591000px;}
._17_c00364{width:11.451000px;}
._12_c00364{width:13.731000px;}
._1c_c00364{width:15.270000px;}
._16_c00364{width:17.106000px;}
._b_c00364{width:18.384000px;}
._1d_c00364{width:22.611000px;}
._1a_c00364{width:24.912000px;}
._1f_c00364{width:30.048000px;}
._20_c00364{width:82.209000px;}
._11_c00364{width:253.410000px;}
.fc2_c00364{color:transparent;}
.fc1_c00364{color:rgb(128,128,128);}
.fc0_c00364{color:rgb(0,0,0);}
.fsc_c00364{font-size:48.000000px;}
.fs9_c00364{font-size:51.000000px;}
.fsa_c00364{font-size:52.800000px;}
.fs5_c00364{font-size:57.000000px;}
.fs6_c00364{font-size:63.000000px;}
.fsb_c00364{font-size:66.000000px;}
.fs4_c00364{font-size:72.000000px;}
.fs7_c00364{font-size:78.000000px;}
.fs3_c00364{font-size:81.000000px;}
.fs1_c00364{font-size:87.000000px;}
.fs0_c00364{font-size:102.000000px;}
.fs2_c00364{font-size:120.000000px;}
.fs8_c00364{font-size:132.000000px;}
.y0_c00364{bottom:0.000000px;}
.y27_c00364{bottom:3.105000px;}
.y26_c00364{bottom:7.228371px;}
.y25_c00364{bottom:36.765000px;}
.y24_c00364{bottom:61.815000px;}
.y23_c00364{bottom:87.765000px;}
.y22_c00364{bottom:112.515000px;}
.y21_c00364{bottom:137.415000px;}
.y20_c00364{bottom:162.465000px;}
.y1f_c00364{bottom:186.465000px;}
.y1e_c00364{bottom:210.915000px;}
.y1d_c00364{bottom:235.365000px;}
.y1c_c00364{bottom:259.665000px;}
.y1b_c00364{bottom:283.965000px;}
.y1a_c00364{bottom:308.265000px;}
.y19_c00364{bottom:332.565000px;}
.y18_c00364{bottom:356.415000px;}
.y17_c00364{bottom:381.015000px;}
.y16_c00364{bottom:404.715000px;}
.y15_c00364{bottom:429.015000px;}
.y14_c00364{bottom:453.015000px;}
.y13_c00364{bottom:477.015000px;}
.y12_c00364{bottom:501.315000px;}
.y11_c00364{bottom:526.215000px;}
.y10_c00364{bottom:549.465000px;}
.yf_c00364{bottom:573.165000px;}
.ye_c00364{bottom:597.165000px;}
.yd_c00364{bottom:621.315000px;}
.yc_c00364{bottom:645.315000px;}
.yb_c00364{bottom:669.915000px;}
.ya_c00364{bottom:693.315000px;}
.y9_c00364{bottom:717.915000px;}
.y8_c00364{bottom:742.815000px;}
.y7_c00364{bottom:766.515000px;}
.y6_c00364{bottom:792.165000px;}
.y5_c00364{bottom:814.515000px;}
.y4_c00364{bottom:839.415000px;}
.y3_c00364{bottom:864.465000px;}
.y2_c00364{bottom:891.465000px;}
.y1_c00364{bottom:922.365000px;}
.ha_c00364{height:13.200074px;}
.hb_c00364{height:43.804688px;}
.h7_c00364{height:72.168457px;}
.h4_c00364{height:79.497070px;}
.h3_c00364{height:84.269531px;}
.h9_c00364{height:87.679688px;}
.h8_c00364{height:91.160156px;}
.h5_c00364{height:98.756836px;}
.h2_c00364{height:120.937500px;}
.h6_c00364{height:167.126953px;}
.h0_c00364{height:989.025000px;}
.h1_c00364{height:989.250000px;}
.w1_c00364{width:104.875500px;}
.w0_c00364{width:672.000000px;}
.x0_c00364{left:0.000000px;}
.x2_c00364{left:42.750000px;}
.x3_c00364{left:44.100000px;}
.x4_c00364{left:45.450000px;}
.x5_c00364{left:46.650000px;}
.x6_c00364{left:47.700000px;}
.x7_c00364{left:49.650000px;}
.x9_c00364{left:51.300000px;}
.xa_c00364{left:52.650000px;}
.x1_c00364{left:58.050000px;}
.x8_c00364{left:88.050000px;}
.xc_c00364{left:287.814240px;}
.xb_c00364{left:508.950000px;}
@media print{
.v0_c00364{vertical-align:0.000000pt;}
.ls6_c00364{letter-spacing:-5.333333pt;}
.ls7_c00364{letter-spacing:0.000000pt;}
.ls2_c00364{letter-spacing:1.424000pt;}
.ls4_c00364{letter-spacing:2.666667pt;}
.ls3_c00364{letter-spacing:4.533333pt;}
.ls1_c00364{letter-spacing:4.760000pt;}
.ls8_c00364{letter-spacing:5.333333pt;}
.ls5_c00364{letter-spacing:13.333333pt;}
.ls0_c00364{letter-spacing:47.333333pt;}
.ws3_c00364{word-spacing:-24.666667pt;}
.ws1_c00364{word-spacing:-14.000000pt;}
.ws0_c00364{word-spacing:-12.210667pt;}
.ws2_c00364{word-spacing:-0.046933pt;}
.ws4_c00364{word-spacing:0.000000pt;}
._21_c00364{margin-left:-56.256000pt;}
._e_c00364{margin-left:-26.666667pt;}
._18_c00364{margin-left:-21.933333pt;}
._7_c00364{margin-left:-19.509333pt;}
._19_c00364{margin-left:-17.984000pt;}
._a_c00364{margin-left:-16.586667pt;}
._d_c00364{margin-left:-14.400000pt;}
._9_c00364{margin-left:-12.149333pt;}
._3_c00364{margin-left:-10.970667pt;}
._1b_c00364{margin-left:-10.050667pt;}
._5_c00364{margin-left:-8.874667pt;}
._c_c00364{margin-left:-6.933333pt;}
._6_c00364{margin-left:-5.984000pt;}
._14_c00364{margin-left:-4.253333pt;}
._15_c00364{margin-left:-3.176000pt;}
._4_c00364{margin-left:-1.813333pt;}
._1e_c00364{margin-left:-0.909333pt;}
._8_c00364{width:1.088000pt;}
._1_c00364{width:2.810667pt;}
._2_c00364{width:4.261333pt;}
._10_c00364{width:5.314667pt;}
._0_c00364{width:6.709333pt;}
._f_c00364{width:7.624000pt;}
._13_c00364{width:8.525333pt;}
._17_c00364{width:10.178667pt;}
._12_c00364{width:12.205333pt;}
._1c_c00364{width:13.573333pt;}
._16_c00364{width:15.205333pt;}
._b_c00364{width:16.341333pt;}
._1d_c00364{width:20.098667pt;}
._1a_c00364{width:22.144000pt;}
._1f_c00364{width:26.709333pt;}
._20_c00364{width:73.074667pt;}
._11_c00364{width:225.253333pt;}
.fsc_c00364{font-size:42.666667pt;}
.fs9_c00364{font-size:45.333333pt;}
.fsa_c00364{font-size:46.933333pt;}
.fs5_c00364{font-size:50.666667pt;}
.fs6_c00364{font-size:56.000000pt;}
.fsb_c00364{font-size:58.666667pt;}
.fs4_c00364{font-size:64.000000pt;}
.fs7_c00364{font-size:69.333333pt;}
.fs3_c00364{font-size:72.000000pt;}
.fs1_c00364{font-size:77.333333pt;}
.fs0_c00364{font-size:90.666667pt;}
.fs2_c00364{font-size:106.666667pt;}
.fs8_c00364{font-size:117.333333pt;}
.y0_c00364{bottom:0.000000pt;}
.y27_c00364{bottom:2.760000pt;}
.y26_c00364{bottom:6.425219pt;}
.y25_c00364{bottom:32.680000pt;}
.y24_c00364{bottom:54.946667pt;}
.y23_c00364{bottom:78.013333pt;}
.y22_c00364{bottom:100.013333pt;}
.y21_c00364{bottom:122.146667pt;}
.y20_c00364{bottom:144.413333pt;}
.y1f_c00364{bottom:165.746667pt;}
.y1e_c00364{bottom:187.480000pt;}
.y1d_c00364{bottom:209.213333pt;}
.y1c_c00364{bottom:230.813333pt;}
.y1b_c00364{bottom:252.413333pt;}
.y1a_c00364{bottom:274.013333pt;}
.y19_c00364{bottom:295.613333pt;}
.y18_c00364{bottom:316.813333pt;}
.y17_c00364{bottom:338.680000pt;}
.y16_c00364{bottom:359.746667pt;}
.y15_c00364{bottom:381.346667pt;}
.y14_c00364{bottom:402.680000pt;}
.y13_c00364{bottom:424.013333pt;}
.y12_c00364{bottom:445.613333pt;}
.y11_c00364{bottom:467.746667pt;}
.y10_c00364{bottom:488.413333pt;}
.yf_c00364{bottom:509.480000pt;}
.ye_c00364{bottom:530.813333pt;}
.yd_c00364{bottom:552.280000pt;}
.yc_c00364{bottom:573.613333pt;}
.yb_c00364{bottom:595.480000pt;}
.ya_c00364{bottom:616.280000pt;}
.y9_c00364{bottom:638.146667pt;}
.y8_c00364{bottom:660.280000pt;}
.y7_c00364{bottom:681.346667pt;}
.y6_c00364{bottom:704.146667pt;}
.y5_c00364{bottom:724.013333pt;}
.y4_c00364{bottom:746.146667pt;}
.y3_c00364{bottom:768.413333pt;}
.y2_c00364{bottom:792.413333pt;}
.y1_c00364{bottom:819.880000pt;}
.ha_c00364{height:11.733399pt;}
.hb_c00364{height:38.937500pt;}
.h7_c00364{height:64.149740pt;}
.h4_c00364{height:70.664062pt;}
.h3_c00364{height:74.906250pt;}
.h9_c00364{height:77.937500pt;}
.h8_c00364{height:81.031250pt;}
.h5_c00364{height:87.783854pt;}
.h2_c00364{height:107.500000pt;}
.h6_c00364{height:148.557292pt;}
.h0_c00364{height:879.133333pt;}
.h1_c00364{height:879.333333pt;}
.w1_c00364{width:93.222667pt;}
.w0_c00364{width:597.333333pt;}
.x0_c00364{left:0.000000pt;}
.x2_c00364{left:38.000000pt;}
.x3_c00364{left:39.200000pt;}
.x4_c00364{left:40.400000pt;}
.x5_c00364{left:41.466667pt;}
.x6_c00364{left:42.400000pt;}
.x7_c00364{left:44.133333pt;}
.x9_c00364{left:45.600000pt;}
.xa_c00364{left:46.800000pt;}
.x1_c00364{left:51.600000pt;}
.x8_c00364{left:78.266667pt;}
.xc_c00364{left:255.834880pt;}
.xb_c00364{left:452.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_1ff1ab7efeee8e9aa0cc5b86.woff2')format("woff");}.ff1_c00365{font-family:ff1_c00365;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00365;src:url('chunks/assets/font_5f608a222b41a83d8a040f5e.woff2')format("woff");}.ff2_c00365{font-family:ff2_c00365;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00365;src:url('chunks/assets/font_fadc3115de5dc3d4012f49f0.woff2')format("woff");}.ff3_c00365{font-family:ff3_c00365;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00365;src:url('chunks/assets/font_cc7c4843c7d54c5ff719d451.woff2')format("woff");}.ff4_c00365{font-family:ff4_c00365;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00365;src:url('chunks/assets/font_a0088271faa5c48280deb21c.woff2')format("woff");}.ff5_c00365{font-family:ff5_c00365;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00365;src:url('chunks/assets/font_eb0fd8e5077b8b4129b2a16e.woff2')format("woff");}.ff6_c00365{font-family:ff6_c00365;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00365;src:url('chunks/assets/font_57009da31d95bbf0080eee86.woff2')format("woff");}.ff7_c00365{font-family:ff7_c00365;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00365;src:url('chunks/assets/font_ba2e1bb329d0b1cfa62b5567.woff2')format("woff");}.ff8_c00365{font-family:ff8_c00365;line-height:1.437000;font-style:normal;font-weight: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_c00365;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff9_c00365{font-family:ff9_c00365;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00365;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ffa_c00365{font-family:ffa_c00365;line-height:1.219238;font-style: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;}
.ls4_c00365{letter-spacing:0.000000px;}
.ls6_c00365{letter-spacing:3.000000px;}
.ls3_c00365{letter-spacing:3.174000px;}
.ls2_c00365{letter-spacing:4.170000px;}
.ls0_c00365{letter-spacing:5.616000px;}
.ls1_c00365{letter-spacing:6.300000px;}
.ls5_c00365{letter-spacing:18.000000px;}
.sc__c00365{text-shadow:none;}
.sc0_c00365{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00365{-webkit-text-stroke:0px transparent;}
.sc0_c00365{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00365{word-spacing:-55.620000px;}
.ws2_c00365{word-spacing:-34.926000px;}
.ws3_c00365{word-spacing:-24.000000px;}
.ws1_c00365{word-spacing:-17.352000px;}
.ws4_c00365{word-spacing:-16.926000px;}
.ws5_c00365{word-spacing:0.000000px;}
._24_c00365{margin-left:-16.545000px;}
._17_c00365{margin-left:-13.392000px;}
._12_c00365{margin-left:-11.952000px;}
._14_c00365{margin-left:-10.512000px;}
._13_c00365{margin-left:-7.920000px;}
._18_c00365{margin-left:-6.834000px;}
._19_c00365{margin-left:-5.640000px;}
._d_c00365{margin-left:-4.368000px;}
._c_c00365{margin-left:-2.808000px;}
._3_c00365{margin-left:-1.716000px;}
._2_c00365{width:1.170000px;}
._0_c00365{width:2.262000px;}
._6_c00365{width:3.666000px;}
._1_c00365{width:4.758000px;}
._a_c00365{width:5.850000px;}
._8_c00365{width:6.864000px;}
._4_c00365{width:7.878000px;}
._7_c00365{width:9.516000px;}
._5_c00365{width:10.608000px;}
._1e_c00365{width:11.700000px;}
._b_c00365{width:13.026000px;}
._e_c00365{width:14.976000px;}
._23_c00365{width:16.404000px;}
._f_c00365{width:18.018000px;}
._9_c00365{width:19.656000px;}
._1b_c00365{width:22.530000px;}
._1d_c00365{width:24.180000px;}
._22_c00365{width:34.530000px;}
._11_c00365{width:39.936000px;}
._21_c00365{width:42.426000px;}
._1f_c00365{width:44.160000px;}
._20_c00365{width:56.712000px;}
._1a_c00365{width:185.826000px;}
._15_c00365{width:211.776000px;}
._1c_c00365{width:256.884000px;}
._10_c00365{width:375.414000px;}
._16_c00365{width:394.992000px;}
.fc2_c00365{color:transparent;}
.fc1_c00365{color:rgb(128,128,128);}
.fc0_c00365{color:rgb(0,0,0);}
.fs6_c00365{font-size:24.000000px;}
.fs5_c00365{font-size:45.000000px;}
.fs7_c00365{font-size:48.000000px;}
.fs1_c00365{font-size:60.000000px;}
.fs3_c00365{font-size:69.000000px;}
.fs2_c00365{font-size:72.000000px;}
.fs0_c00365{font-size:78.000000px;}
.fs4_c00365{font-size:84.000000px;}
.y0_c00365{bottom:0.000000px;}
.y25_c00365{bottom:3.105000px;}
.y24_c00365{bottom:7.228357px;}
.y23_c00365{bottom:65.430000px;}
.y22_c00365{bottom:88.530000px;}
.y21_c00365{bottom:113.430000px;}
.y20_c00365{bottom:139.080000px;}
.y1f_c00365{bottom:163.380000px;}
.y1e_c00365{bottom:189.630000px;}
.y1d_c00365{bottom:213.330000px;}
.y1c_c00365{bottom:237.030000px;}
.y1b_c00365{bottom:261.930000px;}
.y1a_c00365{bottom:288.180000px;}
.y19_c00365{bottom:311.130000px;}
.y18_c00365{bottom:335.580000px;}
.y17_c00365{bottom:359.730000px;}
.y16_c00365{bottom:385.080000px;}
.y15_c00365{bottom:409.680000px;}
.y14_c00365{bottom:434.130000px;}
.y13_c00365{bottom:457.980000px;}
.y12_c00365{bottom:482.730000px;}
.y11_c00365{bottom:506.580000px;}
.y10_c00365{bottom:530.580000px;}
.yf_c00365{bottom:554.280000px;}
.ye_c00365{bottom:578.430000px;}
.yd_c00365{bottom:602.880000px;}
.yc_c00365{bottom:628.080000px;}
.yb_c00365{bottom:652.380000px;}
.ya_c00365{bottom:676.380000px;}
.y9_c00365{bottom:699.930000px;}
.y8_c00365{bottom:725.280000px;}
.y7_c00365{bottom:751.380000px;}
.y6_c00365{bottom:775.680000px;}
.y5_c00365{bottom:798.630000px;}
.y4_c00365{bottom:822.780000px;}
.y3_c00365{bottom:847.230000px;}
.y2_c00365{bottom:871.380000px;}
.y1_c00365{bottom:895.830000px;}
.h4_c00365{height:13.200074px;}
.h5_c00365{height:43.804688px;}
.h3_c00365{height:44.143066px;}
.h1_c00365{height:83.226000px;}
.h2_c00365{height:84.269531px;}
.h0_c00365{height:995.250000px;}
.w2_c00365{width:104.875500px;}
.w0_c00365{width:667.425000px;}
.w1_c00365{width:667.500000px;}
.x0_c00365{left:0.000000px;}
.x6_c00365{left:51.600000px;}
.x5_c00365{left:52.650000px;}
.x3_c00365{left:54.000000px;}
.x4_c00365{left:56.250000px;}
.xb_c00365{left:74.550000px;}
.xe_c00365{left:89.700000px;}
.xd_c00365{left:100.950000px;}
.xf_c00365{left:134.700000px;}
.x10_c00365{left:135.750000px;}
.xc_c00365{left:138.000000px;}
.x8_c00365{left:139.350000px;}
.xa_c00365{left:140.700000px;}
.x9_c00365{left:141.750000px;}
.x7_c00365{left:144.000000px;}
.x2_c00365{left:145.350000px;}
.x1_c00365{left:146.700000px;}
.x12_c00365{left:285.526749px;}
.x11_c00365{left:604.050000px;}
@media print{
.v0_c00365{vertical-align:0.000000pt;}
.ls4_c00365{letter-spacing:0.000000pt;}
.ls6_c00365{letter-spacing:2.666667pt;}
.ls3_c00365{letter-spacing:2.821333pt;}
.ls2_c00365{letter-spacing:3.706667pt;}
.ls0_c00365{letter-spacing:4.992000pt;}
.ls1_c00365{letter-spacing:5.600000pt;}
.ls5_c00365{letter-spacing:16.000000pt;}
.ws0_c00365{word-spacing:-49.440000pt;}
.ws2_c00365{word-spacing:-31.045333pt;}
.ws3_c00365{word-spacing:-21.333333pt;}
.ws1_c00365{word-spacing:-15.424000pt;}
.ws4_c00365{word-spacing:-15.045333pt;}
.ws5_c00365{word-spacing:0.000000pt;}
._24_c00365{margin-left:-14.706667pt;}
._17_c00365{margin-left:-11.904000pt;}
._12_c00365{margin-left:-10.624000pt;}
._14_c00365{margin-left:-9.344000pt;}
._13_c00365{margin-left:-7.040000pt;}
._18_c00365{margin-left:-6.074667pt;}
._19_c00365{margin-left:-5.013333pt;}
._d_c00365{margin-left:-3.882667pt;}
._c_c00365{margin-left:-2.496000pt;}
._3_c00365{margin-left:-1.525333pt;}
._2_c00365{width:1.040000pt;}
._0_c00365{width:2.010667pt;}
._6_c00365{width:3.258667pt;}
._1_c00365{width:4.229333pt;}
._a_c00365{width:5.200000pt;}
._8_c00365{width:6.101333pt;}
._4_c00365{width:7.002667pt;}
._7_c00365{width:8.458667pt;}
._5_c00365{width:9.429333pt;}
._1e_c00365{width:10.400000pt;}
._b_c00365{width:11.578667pt;}
._e_c00365{width:13.312000pt;}
._23_c00365{width:14.581333pt;}
._f_c00365{width:16.016000pt;}
._9_c00365{width:17.472000pt;}
._1b_c00365{width:20.026667pt;}
._1d_c00365{width:21.493333pt;}
._22_c00365{width:30.693333pt;}
._11_c00365{width:35.498667pt;}
._21_c00365{width:37.712000pt;}
._1f_c00365{width:39.253333pt;}
._20_c00365{width:50.410667pt;}
._1a_c00365{width:165.178667pt;}
._15_c00365{width:188.245333pt;}
._1c_c00365{width:228.341333pt;}
._10_c00365{width:333.701333pt;}
._16_c00365{width:351.104000pt;}
.fs6_c00365{font-size:21.333333pt;}
.fs5_c00365{font-size:40.000000pt;}
.fs7_c00365{font-size:42.666667pt;}
.fs1_c00365{font-size:53.333333pt;}
.fs3_c00365{font-size:61.333333pt;}
.fs2_c00365{font-size:64.000000pt;}
.fs0_c00365{font-size:69.333333pt;}
.fs4_c00365{font-size:74.666667pt;}
.y0_c00365{bottom:0.000000pt;}
.y25_c00365{bottom:2.760000pt;}
.y24_c00365{bottom:6.425206pt;}
.y23_c00365{bottom:58.160000pt;}
.y22_c00365{bottom:78.693333pt;}
.y21_c00365{bottom:100.826667pt;}
.y20_c00365{bottom:123.626667pt;}
.y1f_c00365{bottom:145.226667pt;}
.y1e_c00365{bottom:168.560000pt;}
.y1d_c00365{bottom:189.626667pt;}
.y1c_c00365{bottom:210.693333pt;}
.y1b_c00365{bottom:232.826667pt;}
.y1a_c00365{bottom:256.160000pt;}
.y19_c00365{bottom:276.560000pt;}
.y18_c00365{bottom:298.293333pt;}
.y17_c00365{bottom:319.760000pt;}
.y16_c00365{bottom:342.293333pt;}
.y15_c00365{bottom:364.160000pt;}
.y14_c00365{bottom:385.893333pt;}
.y13_c00365{bottom:407.093333pt;}
.y12_c00365{bottom:429.093333pt;}
.y11_c00365{bottom:450.293333pt;}
.y10_c00365{bottom:471.626667pt;}
.yf_c00365{bottom:492.693333pt;}
.ye_c00365{bottom:514.160000pt;}
.yd_c00365{bottom:535.893333pt;}
.yc_c00365{bottom:558.293333pt;}
.yb_c00365{bottom:579.893333pt;}
.ya_c00365{bottom:601.226667pt;}
.y9_c00365{bottom:622.160000pt;}
.y8_c00365{bottom:644.693333pt;}
.y7_c00365{bottom:667.893333pt;}
.y6_c00365{bottom:689.493333pt;}
.y5_c00365{bottom:709.893333pt;}
.y4_c00365{bottom:731.360000pt;}
.y3_c00365{bottom:753.093333pt;}
.y2_c00365{bottom:774.560000pt;}
.y1_c00365{bottom:796.293333pt;}
.h4_c00365{height:11.733399pt;}
.h5_c00365{height:38.937500pt;}
.h3_c00365{height:39.238281pt;}
.h1_c00365{height:73.978667pt;}
.h2_c00365{height:74.906250pt;}
.h0_c00365{height:884.666667pt;}
.w2_c00365{width:93.222667pt;}
.w0_c00365{width:593.266667pt;}
.w1_c00365{width:593.333333pt;}
.x0_c00365{left:0.000000pt;}
.x6_c00365{left:45.866667pt;}
.x5_c00365{left:46.800000pt;}
.x3_c00365{left:48.000000pt;}
.x4_c00365{left:50.000000pt;}
.xb_c00365{left:66.266667pt;}
.xe_c00365{left:79.733333pt;}
.xd_c00365{left:89.733333pt;}
.xf_c00365{left:119.733333pt;}
.x10_c00365{left:120.666667pt;}
.xc_c00365{left:122.666667pt;}
.x8_c00365{left:123.866667pt;}
.xa_c00365{left:125.066667pt;}
.x9_c00365{left:126.000000pt;}
.x7_c00365{left:128.000000pt;}
.x2_c00365{left:129.200000pt;}
.x1_c00365{left:130.400000pt;}
.x12_c00365{left:253.801554pt;}
.x11_c00365{left:536.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_5468200dc29956c1002f5f96.woff2')format("woff");}.ff1_c00366{font-family:ff1_c00366;line-height:1.437000;font-style:normal;font-weight:normal;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_cfc94cd231672c14fbea5708.woff2')format("woff");}.ff2_c00366{font-family:ff2_c00366;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00366;src:url('chunks/assets/font_3ef7426d4b0136028771a021.woff2')format("woff");}.ff3_c00366{font-family:ff3_c00366;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00366;src:url('chunks/assets/font_dc915904cc56ea9e155988ae.woff2')format("woff");}.ff4_c00366{font-family:ff4_c00366;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00366;src:url('chunks/assets/font_047908a56f63bf156c52c737.woff2')format("woff");}.ff5_c00366{font-family:ff5_c00366;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00366;src:url('chunks/assets/font_ad5ac158ef3910d0d06b1cc1.woff2')format("woff");}.ff6_c00366{font-family:ff6_c00366;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00366;src:url('chunks/assets/font_a217eec796447205fa288ff8.woff2')format("woff");}.ff7_c00366{font-family:ff7_c00366;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00366;src:url('chunks/assets/font_ea8a5573074e21a5e68088aa.woff2')format("woff");}.ff8_c00366{font-family:ff8_c00366;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00366;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff9_c00366{font-family:ff9_c00366;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00366{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m0_c00366{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00366{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.v0_c00366{vertical-align:0.000000px;}
.ls8_c00366{letter-spacing:-6.000000px;}
.ls6_c00366{letter-spacing:0.000000px;}
.ls0_c00366{letter-spacing:3.000000px;}
.ls1_c00366{letter-spacing:5.586000px;}
.ls9_c00366{letter-spacing:6.000000px;}
.ls5_c00366{letter-spacing:8.586000px;}
.ls7_c00366{letter-spacing:9.000000px;}
.ls4_c00366{letter-spacing:10.500000px;}
.ls2_c00366{letter-spacing:11.700000px;}
.ls3_c00366{letter-spacing:33.900000px;}
.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;}
}
.ws6_c00366{word-spacing:-39.300000px;}
.ws7_c00366{word-spacing:-27.000000px;}
.ws2_c00366{word-spacing:-24.000000px;}
.ws4_c00366{word-spacing:-19.629000px;}
.ws0_c00366{word-spacing:-18.750000px;}
.ws3_c00366{word-spacing:-17.250000px;}
.ws1_c00366{word-spacing:-15.183000px;}
.ws5_c00366{word-spacing:-5.451000px;}
.ws8_c00366{word-spacing:0.000000px;}
._1d_c00366{margin-left:-29.883000px;}
._1f_c00366{margin-left:-23.736000px;}
._22_c00366{margin-left:-19.920000px;}
._1b_c00366{margin-left:-13.386000px;}
._21_c00366{margin-left:-11.775000px;}
._f_c00366{margin-left:-10.194000px;}
._10_c00366{margin-left:-6.288000px;}
._c_c00366{margin-left:-5.121000px;}
._d_c00366{margin-left:-3.612000px;}
._b_c00366{margin-left:-2.370000px;}
._0_c00366{margin-left:-1.287000px;}
._2_c00366{width:1.188000px;}
._1_c00366{width:2.574000px;}
._3_c00366{width:3.663000px;}
._12_c00366{width:5.025000px;}
._14_c00366{width:6.042000px;}
._7_c00366{width:7.227000px;}
._8_c00366{width:8.811000px;}
._13_c00366{width:10.728000px;}
._6_c00366{width:11.880000px;}
._5_c00366{width:13.266000px;}
._16_c00366{width:15.006000px;}
._15_c00366{width:16.725000px;}
._e_c00366{width:18.090000px;}
._11_c00366{width:19.413000px;}
._1a_c00366{width:21.747000px;}
._17_c00366{width:23.547000px;}
._19_c00366{width:28.326000px;}
._a_c00366{width:29.799000px;}
._4_c00366{width:32.175000px;}
._9_c00366{width:55.044000px;}
._1c_c00366{width:147.177000px;}
._1e_c00366{width:210.174000px;}
._18_c00366{width:285.201000px;}
._20_c00366{width:366.462000px;}
.fc2_c00366{color:transparent;}
.fc1_c00366{color:rgb(128,128,128);}
.fc0_c00366{color:rgb(0,0,0);}
.fsc_c00366{font-size:48.000000px;}
.fs8_c00366{font-size:54.000000px;}
.fs3_c00366{font-size:57.000000px;}
.fs7_c00366{font-size:60.000000px;}
.fs6_c00366{font-size:63.000000px;}
.fs5_c00366{font-size:69.000000px;}
.fs9_c00366{font-size:72.000000px;}
.fs2_c00366{font-size:75.000000px;}
.fs4_c00366{font-size:78.000000px;}
.fs1_c00366{font-size:84.000000px;}
.fs0_c00366{font-size:99.000000px;}
.fsa_c00366{font-size:102.000000px;}
.fsb_c00366{font-size:108.000000px;}
.y0_c00366{bottom:0.000000px;}
.y28_c00366{bottom:3.105000px;}
.y27_c00366{bottom:7.228371px;}
.y26_c00366{bottom:63.165000px;}
.y24_c00366{bottom:87.465000px;}
.y23_c00366{bottom:112.515000px;}
.y22_c00366{bottom:137.715000px;}
.y25_c00366{bottom:141.165000px;}
.y21_c00366{bottom:161.715000px;}
.y20_c00366{bottom:181.215000px;}
.y1f_c00366{bottom:186.315000px;}
.y1e_c00366{bottom:211.065000px;}
.y1d_c00366{bottom:235.215000px;}
.y1c_c00366{bottom:259.515000px;}
.y1b_c00366{bottom:284.265000px;}
.y1a_c00366{bottom:308.865000px;}
.y19_c00366{bottom:332.565000px;}
.y18_c00366{bottom:356.865000px;}
.y17_c00366{bottom:381.015000px;}
.y16_c00366{bottom:405.315000px;}
.y15_c00366{bottom:429.315000px;}
.y14_c00366{bottom:453.315000px;}
.y13_c00366{bottom:477.915000px;}
.y12_c00366{bottom:501.915000px;}
.y11_c00366{bottom:526.215000px;}
.y10_c00366{bottom:550.215000px;}
.yf_c00366{bottom:574.065000px;}
.ye_c00366{bottom:598.065000px;}
.yd_c00366{bottom:621.465000px;}
.yc_c00366{bottom:645.615000px;}
.yb_c00366{bottom:669.915000px;}
.ya_c00366{bottom:693.915000px;}
.y9_c00366{bottom:718.515000px;}
.y8_c00366{bottom:744.165000px;}
.y7_c00366{bottom:766.815000px;}
.y6_c00366{bottom:791.415000px;}
.y5_c00366{bottom:817.215000px;}
.y4_c00366{bottom:840.015000px;}
.y3_c00366{bottom:864.465000px;}
.y2_c00366{bottom:889.665000px;}
.y1_c00366{bottom:925.515000px;}
.he_c00366{height:13.200074px;}
.hf_c00366{height:43.804688px;}
.h5_c00366{height:57.445312px;}
.h7_c00366{height:63.492188px;}
.h6_c00366{height:68.370117px;}
.h9_c00366{height:69.539062px;}
.ha_c00366{height:70.628906px;}
.h8_c00366{height:72.312000px;}
.h3_c00366{height:82.441406px;}
.hb_c00366{height:87.361816px;}
.h4_c00366{height:98.756836px;}
.h2_c00366{height:103.752000px;}
.hd_c00366{height:108.843750px;}
.hc_c00366{height:129.143555px;}
.h0_c00366{height:989.025000px;}
.h1_c00366{height:989.250000px;}
.w1_c00366{width:104.875500px;}
.w0_c00366{width:672.000000px;}
.x0_c00366{left:0.000000px;}
.x6_c00366{left:48.150000px;}
.x7_c00366{left:49.500000px;}
.x4_c00366{left:50.700000px;}
.x8_c00366{left:51.900000px;}
.x5_c00366{left:53.250000px;}
.x2_c00366{left:54.300000px;}
.x3_c00366{left:56.400000px;}
.x9_c00366{left:58.050000px;}
.x1_c00366{left:176.400000px;}
.xa_c00366{left:204.600000px;}
.xb_c00366{left:226.350000px;}
.xe_c00366{left:287.814240px;}
.xd_c00366{left:491.400000px;}
.xc_c00366{left:557.100000px;}
@media print{
.v0_c00366{vertical-align:0.000000pt;}
.ls8_c00366{letter-spacing:-5.333333pt;}
.ls6_c00366{letter-spacing:0.000000pt;}
.ls0_c00366{letter-spacing:2.666667pt;}
.ls1_c00366{letter-spacing:4.965333pt;}
.ls9_c00366{letter-spacing:5.333333pt;}
.ls5_c00366{letter-spacing:7.632000pt;}
.ls7_c00366{letter-spacing:8.000000pt;}
.ls4_c00366{letter-spacing:9.333333pt;}
.ls2_c00366{letter-spacing:10.400000pt;}
.ls3_c00366{letter-spacing:30.133333pt;}
.ws6_c00366{word-spacing:-34.933333pt;}
.ws7_c00366{word-spacing:-24.000000pt;}
.ws2_c00366{word-spacing:-21.333333pt;}
.ws4_c00366{word-spacing:-17.448000pt;}
.ws0_c00366{word-spacing:-16.666667pt;}
.ws3_c00366{word-spacing:-15.333333pt;}
.ws1_c00366{word-spacing:-13.496000pt;}
.ws5_c00366{word-spacing:-4.845333pt;}
.ws8_c00366{word-spacing:0.000000pt;}
._1d_c00366{margin-left:-26.562667pt;}
._1f_c00366{margin-left:-21.098667pt;}
._22_c00366{margin-left:-17.706667pt;}
._1b_c00366{margin-left:-11.898667pt;}
._21_c00366{margin-left:-10.466667pt;}
._f_c00366{margin-left:-9.061333pt;}
._10_c00366{margin-left:-5.589333pt;}
._c_c00366{margin-left:-4.552000pt;}
._d_c00366{margin-left:-3.210667pt;}
._b_c00366{margin-left:-2.106667pt;}
._0_c00366{margin-left:-1.144000pt;}
._2_c00366{width:1.056000pt;}
._1_c00366{width:2.288000pt;}
._3_c00366{width:3.256000pt;}
._12_c00366{width:4.466667pt;}
._14_c00366{width:5.370667pt;}
._7_c00366{width:6.424000pt;}
._8_c00366{width:7.832000pt;}
._13_c00366{width:9.536000pt;}
._6_c00366{width:10.560000pt;}
._5_c00366{width:11.792000pt;}
._16_c00366{width:13.338667pt;}
._15_c00366{width:14.866667pt;}
._e_c00366{width:16.080000pt;}
._11_c00366{width:17.256000pt;}
._1a_c00366{width:19.330667pt;}
._17_c00366{width:20.930667pt;}
._19_c00366{width:25.178667pt;}
._a_c00366{width:26.488000pt;}
._4_c00366{width:28.600000pt;}
._9_c00366{width:48.928000pt;}
._1c_c00366{width:130.824000pt;}
._1e_c00366{width:186.821333pt;}
._18_c00366{width:253.512000pt;}
._20_c00366{width:325.744000pt;}
.fsc_c00366{font-size:42.666667pt;}
.fs8_c00366{font-size:48.000000pt;}
.fs3_c00366{font-size:50.666667pt;}
.fs7_c00366{font-size:53.333333pt;}
.fs6_c00366{font-size:56.000000pt;}
.fs5_c00366{font-size:61.333333pt;}
.fs9_c00366{font-size:64.000000pt;}
.fs2_c00366{font-size:66.666667pt;}
.fs4_c00366{font-size:69.333333pt;}
.fs1_c00366{font-size:74.666667pt;}
.fs0_c00366{font-size:88.000000pt;}
.fsa_c00366{font-size:90.666667pt;}
.fsb_c00366{font-size:96.000000pt;}
.y0_c00366{bottom:0.000000pt;}
.y28_c00366{bottom:2.760000pt;}
.y27_c00366{bottom:6.425219pt;}
.y26_c00366{bottom:56.146667pt;}
.y24_c00366{bottom:77.746667pt;}
.y23_c00366{bottom:100.013333pt;}
.y22_c00366{bottom:122.413333pt;}
.y25_c00366{bottom:125.480000pt;}
.y21_c00366{bottom:143.746667pt;}
.y20_c00366{bottom:161.080000pt;}
.y1f_c00366{bottom:165.613333pt;}
.y1e_c00366{bottom:187.613333pt;}
.y1d_c00366{bottom:209.080000pt;}
.y1c_c00366{bottom:230.680000pt;}
.y1b_c00366{bottom:252.680000pt;}
.y1a_c00366{bottom:274.546667pt;}
.y19_c00366{bottom:295.613333pt;}
.y18_c00366{bottom:317.213333pt;}
.y17_c00366{bottom:338.680000pt;}
.y16_c00366{bottom:360.280000pt;}
.y15_c00366{bottom:381.613333pt;}
.y14_c00366{bottom:402.946667pt;}
.y13_c00366{bottom:424.813333pt;}
.y12_c00366{bottom:446.146667pt;}
.y11_c00366{bottom:467.746667pt;}
.y10_c00366{bottom:489.080000pt;}
.yf_c00366{bottom:510.280000pt;}
.ye_c00366{bottom:531.613333pt;}
.yd_c00366{bottom:552.413333pt;}
.yc_c00366{bottom:573.880000pt;}
.yb_c00366{bottom:595.480000pt;}
.ya_c00366{bottom:616.813333pt;}
.y9_c00366{bottom:638.680000pt;}
.y8_c00366{bottom:661.480000pt;}
.y7_c00366{bottom:681.613333pt;}
.y6_c00366{bottom:703.480000pt;}
.y5_c00366{bottom:726.413333pt;}
.y4_c00366{bottom:746.680000pt;}
.y3_c00366{bottom:768.413333pt;}
.y2_c00366{bottom:790.813333pt;}
.y1_c00366{bottom:822.680000pt;}
.he_c00366{height:11.733399pt;}
.hf_c00366{height:38.937500pt;}
.h5_c00366{height:51.062500pt;}
.h7_c00366{height:56.437500pt;}
.h6_c00366{height:60.773438pt;}
.h9_c00366{height:61.812500pt;}
.ha_c00366{height:62.781250pt;}
.h8_c00366{height:64.277333pt;}
.h3_c00366{height:73.281250pt;}
.hb_c00366{height:77.654948pt;}
.h4_c00366{height:87.783854pt;}
.h2_c00366{height:92.224000pt;}
.hd_c00366{height:96.750000pt;}
.hc_c00366{height:114.794271pt;}
.h0_c00366{height:879.133333pt;}
.h1_c00366{height:879.333333pt;}
.w1_c00366{width:93.222667pt;}
.w0_c00366{width:597.333333pt;}
.x0_c00366{left:0.000000pt;}
.x6_c00366{left:42.800000pt;}
.x7_c00366{left:44.000000pt;}
.x4_c00366{left:45.066667pt;}
.x8_c00366{left:46.133333pt;}
.x5_c00366{left:47.333333pt;}
.x2_c00366{left:48.266667pt;}
.x3_c00366{left:50.133333pt;}
.x9_c00366{left:51.600000pt;}
.x1_c00366{left:156.800000pt;}
.xa_c00366{left:181.866667pt;}
.xb_c00366{left:201.200000pt;}
.xe_c00366{left:255.834880pt;}
.xd_c00366{left:436.800000pt;}
.xc_c00366{left:495.200000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_be8d83163a8979426feac270.woff2')format("woff");}.ff1_c00367{font-family:ff1_c00367;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00367;src:url('chunks/assets/font_9319d29a0c80a592032c2825.woff2')format("woff");}.ff2_c00367{font-family:ff2_c00367;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00367;src:url('chunks/assets/font_b90ce076873d8c766e33833c.woff2')format("woff");}.ff3_c00367{font-family:ff3_c00367;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00367;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff4_c00367{font-family:ff4_c00367;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00367;src:url('chunks/assets/font_545ae5ad3063e562c0db5e1b.woff2')format("woff");}.ff5_c00367{font-family:ff5_c00367;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00367;src:url('chunks/assets/font_7984f66787959973e3e077fa.woff2')format("woff");}.ff6_c00367{font-family:ff6_c00367;line-height:1.437000;font-style:normal;font-weight: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_c00367;src:url('chunks/assets/font_954f366c00eca385a4081a68.woff2')format("woff");}.ff7_c00367{font-family:ff7_c00367;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00367;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff8_c00367{font-family:ff8_c00367;line-height:1.219238;font-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_c00367{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,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;}
.ls1_c00367{letter-spacing:-9.000000px;}
.ls3_c00367{letter-spacing:-3.000000px;}
.ls0_c00367{letter-spacing:0.000000px;}
.ls2_c00367{letter-spacing:3.000000px;}
.sc__c00367{text-shadow:none;}
.sc0_c00367{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00367{-webkit-text-stroke:0px transparent;}
.sc0_c00367{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00367{word-spacing:-47.100000px;}
.ws0_c00367{word-spacing:-24.750000px;}
.ws1_c00367{word-spacing:-22.500000px;}
.ws2_c00367{word-spacing:-18.000000px;}
.ws4_c00367{word-spacing:0.000000px;}
._21_c00367{margin-left:-40.278000px;}
._b_c00367{margin-left:-38.658000px;}
._1d_c00367{margin-left:-36.816000px;}
._15_c00367{margin-left:-35.196000px;}
._23_c00367{margin-left:-34.152000px;}
._20_c00367{margin-left:-32.724000px;}
._3_c00367{margin-left:-31.560000px;}
._e_c00367{margin-left:-30.456000px;}
._a_c00367{margin-left:-28.824000px;}
._1f_c00367{margin-left:-27.618000px;}
._6_c00367{margin-left:-26.112000px;}
._1e_c00367{margin-left:-24.612000px;}
._8_c00367{margin-left:-23.460000px;}
._2a_c00367{margin-left:-21.012000px;}
._12_c00367{margin-left:-18.930000px;}
._1c_c00367{margin-left:-17.118000px;}
._f_c00367{margin-left:-14.994000px;}
._9_c00367{margin-left:-13.260000px;}
._14_c00367{margin-left:-12.030000px;}
._4_c00367{margin-left:-10.812000px;}
._5_c00367{margin-left:-9.792000px;}
._7_c00367{margin-left:-8.772000px;}
._13_c00367{margin-left:-7.182000px;}
._11_c00367{margin-left:-6.018000px;}
._1b_c00367{margin-left:-4.248000px;}
._d_c00367{margin-left:-2.958000px;}
._1a_c00367{margin-left:-1.488000px;}
._1_c00367{width:1.170000px;}
._0_c00367{width:2.520000px;}
._18_c00367{width:3.582000px;}
._19_c00367{width:4.968000px;}
._2c_c00367{width:6.168000px;}
._17_c00367{width:7.170000px;}
._16_c00367{width:8.742000px;}
._24_c00367{width:10.287000px;}
._27_c00367{width:12.120000px;}
._26_c00367{width:13.302000px;}
._22_c00367{width:14.382000px;}
._28_c00367{width:15.930000px;}
._c_c00367{width:17.748000px;}
._2d_c00367{width:18.894000px;}
._25_c00367{width:25.056000px;}
._2b_c00367{width:79.380000px;}
._2_c00367{width:184.770000px;}
._29_c00367{width:192.276000px;}
._10_c00367{width:218.586000px;}
.fc2_c00367{color:transparent;}
.fc1_c00367{color:rgb(128,128,128);}
.fc0_c00367{color:rgb(0,0,0);}
.fs8_c00367{font-size:48.000000px;}
.fs3_c00367{font-size:72.000000px;}
.fs5_c00367{font-size:75.000000px;}
.fs7_c00367{font-size:78.000000px;}
.fs6_c00367{font-size:84.000000px;}
.fs0_c00367{font-size:90.000000px;}
.fs2_c00367{font-size:99.000000px;}
.fs1_c00367{font-size:102.000000px;}
.fs4_c00367{font-size:108.000000px;}
.y0_c00367{bottom:0.000000px;}
.y24_c00367{bottom:3.105000px;}
.y23_c00367{bottom:7.228357px;}
.y22_c00367{bottom:53.730000px;}
.y21_c00367{bottom:75.630000px;}
.y20_c00367{bottom:104.580000px;}
.y1f_c00367{bottom:126.630000px;}
.y1e_c00367{bottom:151.230000px;}
.y1d_c00367{bottom:175.530000px;}
.y1c_c00367{bottom:200.430000px;}
.y1b_c00367{bottom:226.080000px;}
.y1a_c00367{bottom:256.230000px;}
.y19_c00367{bottom:287.880000px;}
.y18_c00367{bottom:315.630000px;}
.y17_c00367{bottom:355.380000px;}
.y16_c00367{bottom:379.680000px;}
.y15_c00367{bottom:404.280000px;}
.y14_c00367{bottom:428.280000px;}
.y13_c00367{bottom:452.580000px;}
.y12_c00367{bottom:476.280000px;}
.y11_c00367{bottom:500.280000px;}
.y10_c00367{bottom:524.430000px;}
.yf_c00367{bottom:547.830000px;}
.ye_c00367{bottom:571.830000px;}
.yd_c00367{bottom:596.130000px;}
.yc_c00367{bottom:619.980000px;}
.yb_c00367{bottom:644.580000px;}
.ya_c00367{bottom:668.880000px;}
.y9_c00367{bottom:692.880000px;}
.y8_c00367{bottom:717.180000px;}
.y7_c00367{bottom:741.180000px;}
.y6_c00367{bottom:764.880000px;}
.y5_c00367{bottom:789.480000px;}
.y4_c00367{bottom:813.480000px;}
.y3_c00367{bottom:837.630000px;}
.y2_c00367{bottom:861.930000px;}
.y1_c00367{bottom:885.030000px;}
.h6_c00367{height:13.200074px;}
.h7_c00367{height:43.804688px;}
.h3_c00367{height:73.571777px;}
.h5_c00367{height:83.226000px;}
.h4_c00367{height:88.032000px;}
.h1_c00367{height:104.839927px;}
.h2_c00367{height:108.843750px;}
.h0_c00367{height:995.250000px;}
.w2_c00367{width:104.875500px;}
.w0_c00367{width:667.425000px;}
.w1_c00367{width:667.500000px;}
.x0_c00367{left:0.000000px;}
.x1_c00367{left:36.900000px;}
.x2_c00367{left:39.450000px;}
.x3_c00367{left:125.100000px;}
.x8_c00367{left:126.300000px;}
.x4_c00367{left:127.650000px;}
.x5_c00367{left:129.300000px;}
.x6_c00367{left:130.650000px;}
.x7_c00367{left:154.050000px;}
.xa_c00367{left:172.200000px;}
.x9_c00367{left:173.850000px;}
.xe_c00367{left:219.450000px;}
.xd_c00367{left:246.750000px;}
.xc_c00367{left:251.550000px;}
.x10_c00367{left:285.526749px;}
.xb_c00367{left:308.550000px;}
.xf_c00367{left:593.250000px;}
@media print{
.v0_c00367{vertical-align:0.000000pt;}
.ls1_c00367{letter-spacing:-8.000000pt;}
.ls3_c00367{letter-spacing:-2.666667pt;}
.ls0_c00367{letter-spacing:0.000000pt;}
.ls2_c00367{letter-spacing:2.666667pt;}
.ws3_c00367{word-spacing:-41.866667pt;}
.ws0_c00367{word-spacing:-22.000000pt;}
.ws1_c00367{word-spacing:-20.000000pt;}
.ws2_c00367{word-spacing:-16.000000pt;}
.ws4_c00367{word-spacing:0.000000pt;}
._21_c00367{margin-left:-35.802667pt;}
._b_c00367{margin-left:-34.362667pt;}
._1d_c00367{margin-left:-32.725333pt;}
._15_c00367{margin-left:-31.285333pt;}
._23_c00367{margin-left:-30.357333pt;}
._20_c00367{margin-left:-29.088000pt;}
._3_c00367{margin-left:-28.053333pt;}
._e_c00367{margin-left:-27.072000pt;}
._a_c00367{margin-left:-25.621333pt;}
._1f_c00367{margin-left:-24.549333pt;}
._6_c00367{margin-left:-23.210667pt;}
._1e_c00367{margin-left:-21.877333pt;}
._8_c00367{margin-left:-20.853333pt;}
._2a_c00367{margin-left:-18.677333pt;}
._12_c00367{margin-left:-16.826667pt;}
._1c_c00367{margin-left:-15.216000pt;}
._f_c00367{margin-left:-13.328000pt;}
._9_c00367{margin-left:-11.786667pt;}
._14_c00367{margin-left:-10.693333pt;}
._4_c00367{margin-left:-9.610667pt;}
._5_c00367{margin-left:-8.704000pt;}
._7_c00367{margin-left:-7.797333pt;}
._13_c00367{margin-left:-6.384000pt;}
._11_c00367{margin-left:-5.349333pt;}
._1b_c00367{margin-left:-3.776000pt;}
._d_c00367{margin-left:-2.629333pt;}
._1a_c00367{margin-left:-1.322667pt;}
._1_c00367{width:1.040000pt;}
._0_c00367{width:2.240000pt;}
._18_c00367{width:3.184000pt;}
._19_c00367{width:4.416000pt;}
._2c_c00367{width:5.482667pt;}
._17_c00367{width:6.373333pt;}
._16_c00367{width:7.770667pt;}
._24_c00367{width:9.144000pt;}
._27_c00367{width:10.773333pt;}
._26_c00367{width:11.824000pt;}
._22_c00367{width:12.784000pt;}
._28_c00367{width:14.160000pt;}
._c_c00367{width:15.776000pt;}
._2d_c00367{width:16.794667pt;}
._25_c00367{width:22.272000pt;}
._2b_c00367{width:70.560000pt;}
._2_c00367{width:164.240000pt;}
._29_c00367{width:170.912000pt;}
._10_c00367{width:194.298667pt;}
.fs8_c00367{font-size:42.666667pt;}
.fs3_c00367{font-size:64.000000pt;}
.fs5_c00367{font-size:66.666667pt;}
.fs7_c00367{font-size:69.333333pt;}
.fs6_c00367{font-size:74.666667pt;}
.fs0_c00367{font-size:80.000000pt;}
.fs2_c00367{font-size:88.000000pt;}
.fs1_c00367{font-size:90.666667pt;}
.fs4_c00367{font-size:96.000000pt;}
.y0_c00367{bottom:0.000000pt;}
.y24_c00367{bottom:2.760000pt;}
.y23_c00367{bottom:6.425206pt;}
.y22_c00367{bottom:47.760000pt;}
.y21_c00367{bottom:67.226667pt;}
.y20_c00367{bottom:92.960000pt;}
.y1f_c00367{bottom:112.560000pt;}
.y1e_c00367{bottom:134.426667pt;}
.y1d_c00367{bottom:156.026667pt;}
.y1c_c00367{bottom:178.160000pt;}
.y1b_c00367{bottom:200.960000pt;}
.y1a_c00367{bottom:227.760000pt;}
.y19_c00367{bottom:255.893333pt;}
.y18_c00367{bottom:280.560000pt;}
.y17_c00367{bottom:315.893333pt;}
.y16_c00367{bottom:337.493333pt;}
.y15_c00367{bottom:359.360000pt;}
.y14_c00367{bottom:380.693333pt;}
.y13_c00367{bottom:402.293333pt;}
.y12_c00367{bottom:423.360000pt;}
.y11_c00367{bottom:444.693333pt;}
.y10_c00367{bottom:466.160000pt;}
.yf_c00367{bottom:486.960000pt;}
.ye_c00367{bottom:508.293333pt;}
.yd_c00367{bottom:529.893333pt;}
.yc_c00367{bottom:551.093333pt;}
.yb_c00367{bottom:572.960000pt;}
.ya_c00367{bottom:594.560000pt;}
.y9_c00367{bottom:615.893333pt;}
.y8_c00367{bottom:637.493333pt;}
.y7_c00367{bottom:658.826667pt;}
.y6_c00367{bottom:679.893333pt;}
.y5_c00367{bottom:701.760000pt;}
.y4_c00367{bottom:723.093333pt;}
.y3_c00367{bottom:744.560000pt;}
.y2_c00367{bottom:766.160000pt;}
.y1_c00367{bottom:786.693333pt;}
.h6_c00367{height:11.733399pt;}
.h7_c00367{height:38.937500pt;}
.h3_c00367{height:65.397135pt;}
.h5_c00367{height:73.978667pt;}
.h4_c00367{height:78.250667pt;}
.h1_c00367{height:93.191046pt;}
.h2_c00367{height:96.750000pt;}
.h0_c00367{height:884.666667pt;}
.w2_c00367{width:93.222667pt;}
.w0_c00367{width:593.266667pt;}
.w1_c00367{width:593.333333pt;}
.x0_c00367{left:0.000000pt;}
.x1_c00367{left:32.800000pt;}
.x2_c00367{left:35.066667pt;}
.x3_c00367{left:111.200000pt;}
.x8_c00367{left:112.266667pt;}
.x4_c00367{left:113.466667pt;}
.x5_c00367{left:114.933333pt;}
.x6_c00367{left:116.133333pt;}
.x7_c00367{left:136.933333pt;}
.xa_c00367{left:153.066667pt;}
.x9_c00367{left:154.533333pt;}
.xe_c00367{left:195.066667pt;}
.xd_c00367{left:219.333333pt;}
.xc_c00367{left:223.600000pt;}
.x10_c00367{left:253.801554pt;}
.xb_c00367{left:274.266667pt;}
.xf_c00367{left:527.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_b1a7b9abd7f0170ab7c64f36.woff2')format("woff");}.ff1_c00368{font-family:ff1_c00368;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00368;src:url('chunks/assets/font_b057c11533ffffa7dbaabd7a.woff2')format("woff");}.ff2_c00368{font-family:ff2_c00368;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00368;src:url('chunks/assets/font_e3b36b14022a4992b607fdf0.woff2')format("woff");}.ff3_c00368{font-family:ff3_c00368;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00368;src:url('chunks/assets/font_4f26663eb8d4af1b34a85b7c.woff2')format("woff");}.ff4_c00368{font-family:ff4_c00368;line-height:1.437000;font-style:normal;font-weight:normal;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_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c00368{font-family:ff5_c00368;line-height:1.219238;font-style: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;}
.ls1_c00368{letter-spacing:0.000000px;}
.ls0_c00368{letter-spacing:5.100000px;}
.sc__c00368{text-shadow:none;}
.sc0_c00368{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00368{-webkit-text-stroke:0px transparent;}
.sc0_c00368{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00368{word-spacing:-17.352000px;}
.ws1_c00368{word-spacing:0.000000px;}
._7_c00368{margin-left:-37.092000px;}
._1e_c00368{margin-left:-29.466000px;}
._15_c00368{margin-left:-26.487000px;}
._17_c00368{margin-left:-18.873000px;}
._d_c00368{margin-left:-15.084000px;}
._19_c00368{margin-left:-13.941000px;}
._c_c00368{margin-left:-12.699000px;}
._1b_c00368{margin-left:-11.502000px;}
._14_c00368{margin-left:-10.179000px;}
._8_c00368{margin-left:-8.184000px;}
._3_c00368{margin-left:-6.039000px;}
._4_c00368{margin-left:-4.752000px;}
._1_c00368{margin-left:-3.366000px;}
._5_c00368{margin-left:-1.980000px;}
._0_c00368{width:1.881000px;}
._9_c00368{width:3.321000px;}
._a_c00368{width:4.860000px;}
._10_c00368{width:5.922000px;}
._2_c00368{width:6.930000px;}
._b_c00368{width:8.910000px;}
._1d_c00368{width:10.008000px;}
._e_c00368{width:11.052000px;}
._13_c00368{width:13.023000px;}
._11_c00368{width:15.228000px;}
._16_c00368{width:16.857000px;}
._f_c00368{width:17.982000px;}
._18_c00368{width:21.645000px;}
._1c_c00368{width:28.809000px;}
._12_c00368{width:39.579000px;}
._20_c00368{width:50.796000px;}
._6_c00368{width:55.164000px;}
._1a_c00368{width:151.152000px;}
._21_c00368{width:286.821000px;}
._1f_c00368{width:312.840000px;}
.fc2_c00368{color:transparent;}
.fc1_c00368{color:rgb(128,128,128);}
.fc0_c00368{color:rgb(0,0,0);}
.fs5_c00368{font-size:48.000000px;}
.fs3_c00368{font-size:72.000000px;}
.fs2_c00368{font-size:81.000000px;}
.fs4_c00368{font-size:87.000000px;}
.fs0_c00368{font-size:99.000000px;}
.fs1_c00368{font-size:132.000000px;}
.y0_c00368{bottom:0.000000px;}
.y26_c00368{bottom:3.105000px;}
.y25_c00368{bottom:7.228371px;}
.y24_c00368{bottom:75.615000px;}
.y23_c00368{bottom:101.715000px;}
.y22_c00368{bottom:127.215000px;}
.y21_c00368{bottom:151.665000px;}
.y20_c00368{bottom:176.565000px;}
.y1f_c00368{bottom:200.865000px;}
.y1e_c00368{bottom:225.465000px;}
.y1d_c00368{bottom:250.065000px;}
.y1c_c00368{bottom:274.665000px;}
.y1b_c00368{bottom:298.815000px;}
.y1a_c00368{bottom:322.965000px;}
.y19_c00368{bottom:347.415000px;}
.y18_c00368{bottom:371.715000px;}
.y17_c00368{bottom:395.865000px;}
.y16_c00368{bottom:420.165000px;}
.y15_c00368{bottom:444.465000px;}
.y14_c00368{bottom:468.465000px;}
.y13_c00368{bottom:492.765000px;}
.y12_c00368{bottom:517.365000px;}
.y11_c00368{bottom:541.365000px;}
.y10_c00368{bottom:565.065000px;}
.yf_c00368{bottom:589.065000px;}
.ye_c00368{bottom:612.915000px;}
.yd_c00368{bottom:636.915000px;}
.yc_c00368{bottom:660.915000px;}
.yb_c00368{bottom:685.515000px;}
.ya_c00368{bottom:709.515000px;}
.y9_c00368{bottom:733.815000px;}
.y8_c00368{bottom:758.415000px;}
.y7_c00368{bottom:783.015000px;}
.y6_c00368{bottom:807.315000px;}
.y5_c00368{bottom:832.665000px;}
.y4_c00368{bottom:856.965000px;}
.y3_c00368{bottom:881.265000px;}
.y2_c00368{bottom:905.865000px;}
.y1_c00368{bottom:939.615000px;}
.h7_c00368{height:13.200074px;}
.h8_c00368{height:43.804688px;}
.h3_c00368{height:79.497070px;}
.h5_c00368{height:84.269531px;}
.h4_c00368{height:91.160156px;}
.h6_c00368{height:91.176000px;}
.h2_c00368{height:167.126953px;}
.h0_c00368{height:989.025000px;}
.h1_c00368{height:989.250000px;}
.w1_c00368{width:104.875500px;}
.w0_c00368{width:672.000000px;}
.x0_c00368{left:0.000000px;}
.x2_c00368{left:51.300000px;}
.x3_c00368{left:52.650000px;}
.x4_c00368{left:54.000000px;}
.x5_c00368{left:55.650000px;}
.x7_c00368{left:57.600000px;}
.x6_c00368{left:60.450000px;}
.x1_c00368{left:114.300000px;}
.x9_c00368{left:287.814240px;}
.x8_c00368{left:381.000000px;}
@media print{
.v0_c00368{vertical-align:0.000000pt;}
.ls1_c00368{letter-spacing:0.000000pt;}
.ls0_c00368{letter-spacing:4.533333pt;}
.ws0_c00368{word-spacing:-15.424000pt;}
.ws1_c00368{word-spacing:0.000000pt;}
._7_c00368{margin-left:-32.970667pt;}
._1e_c00368{margin-left:-26.192000pt;}
._15_c00368{margin-left:-23.544000pt;}
._17_c00368{margin-left:-16.776000pt;}
._d_c00368{margin-left:-13.408000pt;}
._19_c00368{margin-left:-12.392000pt;}
._c_c00368{margin-left:-11.288000pt;}
._1b_c00368{margin-left:-10.224000pt;}
._14_c00368{margin-left:-9.048000pt;}
._8_c00368{margin-left:-7.274667pt;}
._3_c00368{margin-left:-5.368000pt;}
._4_c00368{margin-left:-4.224000pt;}
._1_c00368{margin-left:-2.992000pt;}
._5_c00368{margin-left:-1.760000pt;}
._0_c00368{width:1.672000pt;}
._9_c00368{width:2.952000pt;}
._a_c00368{width:4.320000pt;}
._10_c00368{width:5.264000pt;}
._2_c00368{width:6.160000pt;}
._b_c00368{width:7.920000pt;}
._1d_c00368{width:8.896000pt;}
._e_c00368{width:9.824000pt;}
._13_c00368{width:11.576000pt;}
._11_c00368{width:13.536000pt;}
._16_c00368{width:14.984000pt;}
._f_c00368{width:15.984000pt;}
._18_c00368{width:19.240000pt;}
._1c_c00368{width:25.608000pt;}
._12_c00368{width:35.181333pt;}
._20_c00368{width:45.152000pt;}
._6_c00368{width:49.034667pt;}
._1a_c00368{width:134.357333pt;}
._21_c00368{width:254.952000pt;}
._1f_c00368{width:278.080000pt;}
.fs5_c00368{font-size:42.666667pt;}
.fs3_c00368{font-size:64.000000pt;}
.fs2_c00368{font-size:72.000000pt;}
.fs4_c00368{font-size:77.333333pt;}
.fs0_c00368{font-size:88.000000pt;}
.fs1_c00368{font-size:117.333333pt;}
.y0_c00368{bottom:0.000000pt;}
.y26_c00368{bottom:2.760000pt;}
.y25_c00368{bottom:6.425219pt;}
.y24_c00368{bottom:67.213333pt;}
.y23_c00368{bottom:90.413333pt;}
.y22_c00368{bottom:113.080000pt;}
.y21_c00368{bottom:134.813333pt;}
.y20_c00368{bottom:156.946667pt;}
.y1f_c00368{bottom:178.546667pt;}
.y1e_c00368{bottom:200.413333pt;}
.y1d_c00368{bottom:222.280000pt;}
.y1c_c00368{bottom:244.146667pt;}
.y1b_c00368{bottom:265.613333pt;}
.y1a_c00368{bottom:287.080000pt;}
.y19_c00368{bottom:308.813333pt;}
.y18_c00368{bottom:330.413333pt;}
.y17_c00368{bottom:351.880000pt;}
.y16_c00368{bottom:373.480000pt;}
.y15_c00368{bottom:395.080000pt;}
.y14_c00368{bottom:416.413333pt;}
.y13_c00368{bottom:438.013333pt;}
.y12_c00368{bottom:459.880000pt;}
.y11_c00368{bottom:481.213333pt;}
.y10_c00368{bottom:502.280000pt;}
.yf_c00368{bottom:523.613333pt;}
.ye_c00368{bottom:544.813333pt;}
.yd_c00368{bottom:566.146667pt;}
.yc_c00368{bottom:587.480000pt;}
.yb_c00368{bottom:609.346667pt;}
.ya_c00368{bottom:630.680000pt;}
.y9_c00368{bottom:652.280000pt;}
.y8_c00368{bottom:674.146667pt;}
.y7_c00368{bottom:696.013333pt;}
.y6_c00368{bottom:717.613333pt;}
.y5_c00368{bottom:740.146667pt;}
.y4_c00368{bottom:761.746667pt;}
.y3_c00368{bottom:783.346667pt;}
.y2_c00368{bottom:805.213333pt;}
.y1_c00368{bottom:835.213333pt;}
.h7_c00368{height:11.733399pt;}
.h8_c00368{height:38.937500pt;}
.h3_c00368{height:70.664062pt;}
.h5_c00368{height:74.906250pt;}
.h4_c00368{height:81.031250pt;}
.h6_c00368{height:81.045333pt;}
.h2_c00368{height:148.557292pt;}
.h0_c00368{height:879.133333pt;}
.h1_c00368{height:879.333333pt;}
.w1_c00368{width:93.222667pt;}
.w0_c00368{width:597.333333pt;}
.x0_c00368{left:0.000000pt;}
.x2_c00368{left:45.600000pt;}
.x3_c00368{left:46.800000pt;}
.x4_c00368{left:48.000000pt;}
.x5_c00368{left:49.466667pt;}
.x7_c00368{left:51.200000pt;}
.x6_c00368{left:53.733333pt;}
.x1_c00368{left:101.600000pt;}
.x9_c00368{left:255.834880pt;}
.x8_c00368{left:338.666667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_cebd7e5990b9f569dba47881.woff2')format("woff");}.ff1_c00369{font-family:ff1_c00369;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00369;src:url('chunks/assets/font_b0f9f724cb6ee0ca7ef506ec.woff2')format("woff");}.ff2_c00369{font-family:ff2_c00369;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00369;src:url('chunks/assets/font_0ac2020157a0f2776a2eac68.woff2')format("woff");}.ff3_c00369{font-family:ff3_c00369;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00369;src:url('chunks/assets/font_2cc1d5208c3c5c84f503cb04.woff2')format("woff");}.ff4_c00369{font-family:ff4_c00369;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00369;src:url('chunks/assets/font_46c583d29435e90e7f82e90d.woff2')format("woff");}.ff5_c00369{font-family:ff5_c00369;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00369;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c00369{font-family:ff6_c00369;line-height:1.219238;font-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_c00369{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,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;}
.ls1_c00369{letter-spacing:0.000000px;}
.ls0_c00369{letter-spacing:1.800000px;}
.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:-33.000000px;}
.ws2_c00369{word-spacing:-21.000000px;}
.ws0_c00369{word-spacing:-17.352000px;}
.ws3_c00369{word-spacing:0.000000px;}
._14_c00369{margin-left:-29.403000px;}
._1f_c00369{margin-left:-18.711000px;}
._1d_c00369{margin-left:-12.117000px;}
._20_c00369{margin-left:-10.449000px;}
._d_c00369{margin-left:-8.586000px;}
._5_c00369{margin-left:-7.371000px;}
._8_c00369{margin-left:-6.156000px;}
._2_c00369{margin-left:-4.536000px;}
._a_c00369{margin-left:-2.835000px;}
._7_c00369{margin-left:-1.701000px;}
._1_c00369{width:1.782000px;}
._0_c00369{width:3.321000px;}
._9_c00369{width:4.374000px;}
._4_c00369{width:5.427000px;}
._3_c00369{width:7.452000px;}
._6_c00369{width:8.991000px;}
._c_c00369{width:10.206000px;}
._b_c00369{width:11.502000px;}
._f_c00369{width:14.013000px;}
._1e_c00369{width:15.147000px;}
._1c_c00369{width:16.701000px;}
._1b_c00369{width:23.700000px;}
._1a_c00369{width:37.188000px;}
._11_c00369{width:45.987000px;}
._15_c00369{width:49.596000px;}
._13_c00369{width:54.735000px;}
._10_c00369{width:83.754000px;}
._12_c00369{width:100.521000px;}
._18_c00369{width:121.095000px;}
._17_c00369{width:138.705000px;}
._e_c00369{width:212.151000px;}
._19_c00369{width:281.487000px;}
._16_c00369{width:333.429000px;}
.fc2_c00369{color:transparent;}
.fc1_c00369{color:rgb(128,128,128);}
.fc0_c00369{color:rgb(0,0,0);}
.fs7_c00369{font-size:48.000000px;}
.fs4_c00369{font-size:54.000000px;}
.fs3_c00369{font-size:57.000000px;}
.fs2_c00369{font-size:66.000000px;}
.fs1_c00369{font-size:72.000000px;}
.fs0_c00369{font-size:81.000000px;}
.fs6_c00369{font-size:84.000000px;}
.fs5_c00369{font-size:108.000000px;}
.y0_c00369{bottom:0.000000px;}
.y24_c00369{bottom:3.105000px;}
.y23_c00369{bottom:7.228357px;}
.y22_c00369{bottom:78.330000px;}
.y21_c00369{bottom:102.930000px;}
.y20_c00369{bottom:128.280000px;}
.y1f_c00369{bottom:152.880000px;}
.y1e_c00369{bottom:177.180000px;}
.y1d_c00369{bottom:201.930000px;}
.y1c_c00369{bottom:226.530000px;}
.y1b_c00369{bottom:251.130000px;}
.y1a_c00369{bottom:275.130000px;}
.y19_c00369{bottom:304.830000px;}
.y18_c00369{bottom:324.330000px;}
.y17_c00369{bottom:373.680000px;}
.y16_c00369{bottom:396.630000px;}
.y15_c00369{bottom:420.630000px;}
.y14_c00369{bottom:446.880000px;}
.y13_c00369{bottom:471.180000px;}
.y12_c00369{bottom:494.430000px;}
.y11_c00369{bottom:517.830000px;}
.y10_c00369{bottom:540.780000px;}
.yf_c00369{bottom:564.930000px;}
.ye_c00369{bottom:589.230000px;}
.yd_c00369{bottom:613.230000px;}
.yc_c00369{bottom:637.980000px;}
.yb_c00369{bottom:662.130000px;}
.ya_c00369{bottom:685.230000px;}
.y9_c00369{bottom:710.430000px;}
.y8_c00369{bottom:734.130000px;}
.y7_c00369{bottom:758.430000px;}
.y6_c00369{bottom:782.730000px;}
.y5_c00369{bottom:806.730000px;}
.y4_c00369{bottom:831.030000px;}
.y3_c00369{bottom:855.180000px;}
.y2_c00369{bottom:879.630000px;}
.y1_c00369{bottom:903.780000px;}
.h7_c00369{height:13.200074px;}
.h8_c00369{height:43.804688px;}
.h4_c00369{height:68.370117px;}
.h3_c00369{height:72.562500px;}
.h1_c00369{height:79.497070px;}
.h2_c00369{height:84.269531px;}
.h6_c00369{height:84.656250px;}
.h5_c00369{height:108.843750px;}
.h0_c00369{height:995.250000px;}
.w2_c00369{width:104.875500px;}
.w0_c00369{width:667.425000px;}
.w1_c00369{width:667.500000px;}
.x0_c00369{left:0.000000px;}
.x7_c00369{left:40.500000px;}
.x3_c00369{left:43.500000px;}
.x4_c00369{left:68.550000px;}
.xe_c00369{left:133.950000px;}
.xd_c00369{left:135.300000px;}
.x1_c00369{left:137.100000px;}
.x2_c00369{left:139.050000px;}
.x6_c00369{left:140.100000px;}
.x5_c00369{left:144.750000px;}
.x9_c00369{left:161.700000px;}
.x8_c00369{left:163.050000px;}
.xc_c00369{left:167.700000px;}
.xb_c00369{left:181.800000px;}
.xf_c00369{left:246.000000px;}
.x10_c00369{left:283.800000px;}
.x14_c00369{left:285.526749px;}
.x11_c00369{left:346.500000px;}
.x12_c00369{left:408.300000px;}
.x13_c00369{left:573.300000px;}
.xa_c00369{left:584.850000px;}
@media print{
.v0_c00369{vertical-align:0.000000pt;}
.ls1_c00369{letter-spacing:0.000000pt;}
.ls0_c00369{letter-spacing:1.600000pt;}
.ws1_c00369{word-spacing:-29.333333pt;}
.ws2_c00369{word-spacing:-18.666667pt;}
.ws0_c00369{word-spacing:-15.424000pt;}
.ws3_c00369{word-spacing:0.000000pt;}
._14_c00369{margin-left:-26.136000pt;}
._1f_c00369{margin-left:-16.632000pt;}
._1d_c00369{margin-left:-10.770667pt;}
._20_c00369{margin-left:-9.288000pt;}
._d_c00369{margin-left:-7.632000pt;}
._5_c00369{margin-left:-6.552000pt;}
._8_c00369{margin-left:-5.472000pt;}
._2_c00369{margin-left:-4.032000pt;}
._a_c00369{margin-left:-2.520000pt;}
._7_c00369{margin-left:-1.512000pt;}
._1_c00369{width:1.584000pt;}
._0_c00369{width:2.952000pt;}
._9_c00369{width:3.888000pt;}
._4_c00369{width:4.824000pt;}
._3_c00369{width:6.624000pt;}
._6_c00369{width:7.992000pt;}
._c_c00369{width:9.072000pt;}
._b_c00369{width:10.224000pt;}
._f_c00369{width:12.456000pt;}
._1e_c00369{width:13.464000pt;}
._1c_c00369{width:14.845333pt;}
._1b_c00369{width:21.066667pt;}
._1a_c00369{width:33.056000pt;}
._11_c00369{width:40.877333pt;}
._15_c00369{width:44.085333pt;}
._13_c00369{width:48.653333pt;}
._10_c00369{width:74.448000pt;}
._12_c00369{width:89.352000pt;}
._18_c00369{width:107.640000pt;}
._17_c00369{width:123.293333pt;}
._e_c00369{width:188.578667pt;}
._19_c00369{width:250.210667pt;}
._16_c00369{width:296.381333pt;}
.fs7_c00369{font-size:42.666667pt;}
.fs4_c00369{font-size:48.000000pt;}
.fs3_c00369{font-size:50.666667pt;}
.fs2_c00369{font-size:58.666667pt;}
.fs1_c00369{font-size:64.000000pt;}
.fs0_c00369{font-size:72.000000pt;}
.fs6_c00369{font-size:74.666667pt;}
.fs5_c00369{font-size:96.000000pt;}
.y0_c00369{bottom:0.000000pt;}
.y24_c00369{bottom:2.760000pt;}
.y23_c00369{bottom:6.425206pt;}
.y22_c00369{bottom:69.626667pt;}
.y21_c00369{bottom:91.493333pt;}
.y20_c00369{bottom:114.026667pt;}
.y1f_c00369{bottom:135.893333pt;}
.y1e_c00369{bottom:157.493333pt;}
.y1d_c00369{bottom:179.493333pt;}
.y1c_c00369{bottom:201.360000pt;}
.y1b_c00369{bottom:223.226667pt;}
.y1a_c00369{bottom:244.560000pt;}
.y19_c00369{bottom:270.960000pt;}
.y18_c00369{bottom:288.293333pt;}
.y17_c00369{bottom:332.160000pt;}
.y16_c00369{bottom:352.560000pt;}
.y15_c00369{bottom:373.893333pt;}
.y14_c00369{bottom:397.226667pt;}
.y13_c00369{bottom:418.826667pt;}
.y12_c00369{bottom:439.493333pt;}
.y11_c00369{bottom:460.293333pt;}
.y10_c00369{bottom:480.693333pt;}
.yf_c00369{bottom:502.160000pt;}
.ye_c00369{bottom:523.760000pt;}
.yd_c00369{bottom:545.093333pt;}
.yc_c00369{bottom:567.093333pt;}
.yb_c00369{bottom:588.560000pt;}
.ya_c00369{bottom:609.093333pt;}
.y9_c00369{bottom:631.493333pt;}
.y8_c00369{bottom:652.560000pt;}
.y7_c00369{bottom:674.160000pt;}
.y6_c00369{bottom:695.760000pt;}
.y5_c00369{bottom:717.093333pt;}
.y4_c00369{bottom:738.693333pt;}
.y3_c00369{bottom:760.160000pt;}
.y2_c00369{bottom:781.893333pt;}
.y1_c00369{bottom:803.360000pt;}
.h7_c00369{height:11.733399pt;}
.h8_c00369{height:38.937500pt;}
.h4_c00369{height:60.773438pt;}
.h3_c00369{height:64.500000pt;}
.h1_c00369{height:70.664062pt;}
.h2_c00369{height:74.906250pt;}
.h6_c00369{height:75.250000pt;}
.h5_c00369{height:96.750000pt;}
.h0_c00369{height:884.666667pt;}
.w2_c00369{width:93.222667pt;}
.w0_c00369{width:593.266667pt;}
.w1_c00369{width:593.333333pt;}
.x0_c00369{left:0.000000pt;}
.x7_c00369{left:36.000000pt;}
.x3_c00369{left:38.666667pt;}
.x4_c00369{left:60.933333pt;}
.xe_c00369{left:119.066667pt;}
.xd_c00369{left:120.266667pt;}
.x1_c00369{left:121.866667pt;}
.x2_c00369{left:123.600000pt;}
.x6_c00369{left:124.533333pt;}
.x5_c00369{left:128.666667pt;}
.x9_c00369{left:143.733333pt;}
.x8_c00369{left:144.933333pt;}
.xc_c00369{left:149.066667pt;}
.xb_c00369{left:161.600000pt;}
.xf_c00369{left:218.666667pt;}
.x10_c00369{left:252.266667pt;}
.x14_c00369{left:253.801554pt;}
.x11_c00369{left:308.000000pt;}
.x12_c00369{left:362.933333pt;}
.x13_c00369{left:509.600000pt;}
.xa_c00369{left:519.866667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ba92314f4942adc9605ef65a.woff2')format("woff");}.ff1_c00370{font-family:ff1_c00370;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00370;src:url('chunks/assets/font_faa22ba7e8c037441deb8828.woff2')format("woff");}.ff2_c00370{font-family:ff2_c00370;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00370;src:url('chunks/assets/font_2041c9eb84308c8964946e72.woff2')format("woff");}.ff3_c00370{font-family:ff3_c00370;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00370;src:url('chunks/assets/font_d0b62aec1bf14f472616f651.woff2')format("woff");}.ff4_c00370{font-family:ff4_c00370;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00370;src:url('chunks/assets/font_8e009abed1f4dcc07a4b295b.woff2')format("woff");}.ff5_c00370{font-family:ff5_c00370;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00370;src:url('chunks/assets/font_03398defb07adaa962cb31a0.woff2')format("woff");}.ff6_c00370{font-family:ff6_c00370;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00370;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c00370{font-family:ff7_c00370;line-height:1.219238;font-style: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;}
.ls3_c00370{letter-spacing:0.000000px;}
.ls5_c00370{letter-spacing:3.000000px;}
.ls0_c00370{letter-spacing:6.000000px;}
.ls2_c00370{letter-spacing:7.500000px;}
.ls4_c00370{letter-spacing:9.000000px;}
.ls1_c00370{letter-spacing:25.956000px;}
.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;}
}
.ws1_c00370{word-spacing:-42.000000px;}
.ws3_c00370{word-spacing:-21.750000px;}
.ws2_c00370{word-spacing:-12.750000px;}
.ws0_c00370{word-spacing:-0.459000px;}
.ws4_c00370{word-spacing:0.000000px;}
._1d_c00370{margin-left:-16.665000px;}
._18_c00370{margin-left:-14.112000px;}
._2_c00370{margin-left:-11.880000px;}
._21_c00370{margin-left:-10.611000px;}
._a_c00370{margin-left:-9.603000px;}
._7_c00370{margin-left:-8.415000px;}
._13_c00370{margin-left:-6.579000px;}
._0_c00370{margin-left:-5.346000px;}
._6_c00370{margin-left:-3.564000px;}
._1_c00370{margin-left:-1.584000px;}
._3_c00370{width:1.287000px;}
._9_c00370{width:2.772000px;}
._8_c00370{width:3.861000px;}
._12_c00370{width:4.914000px;}
._e_c00370{width:5.994000px;}
._14_c00370{width:7.065000px;}
._f_c00370{width:8.127000px;}
._5_c00370{width:9.405000px;}
._4_c00370{width:10.692000px;}
._11_c00370{width:12.726000px;}
._15_c00370{width:14.634000px;}
._10_c00370{width:16.137000px;}
._17_c00370{width:17.820000px;}
._1a_c00370{width:18.879000px;}
._1e_c00370{width:20.043000px;}
._19_c00370{width:22.020000px;}
._1c_c00370{width:25.074000px;}
._1f_c00370{width:28.401000px;}
._22_c00370{width:31.590000px;}
._c_c00370{width:34.749000px;}
._24_c00370{width:36.612000px;}
._d_c00370{width:38.115000px;}
._b_c00370{width:45.936000px;}
._20_c00370{width:47.916000px;}
._16_c00370{width:70.821000px;}
._1b_c00370{width:90.114000px;}
._25_c00370{width:312.111000px;}
._23_c00370{width:945.180000px;}
.fc2_c00370{color:transparent;}
.fc1_c00370{color:rgb(128,128,128);}
.fc0_c00370{color:rgb(0,0,0);}
.fs5_c00370{font-size:42.000000px;}
.fs8_c00370{font-size:48.000000px;}
.fs2_c00370{font-size:51.000000px;}
.fs4_c00370{font-size:63.000000px;}
.fs3_c00370{font-size:66.000000px;}
.fs6_c00370{font-size:72.000000px;}
.fs7_c00370{font-size:78.000000px;}
.fs1_c00370{font-size:81.000000px;}
.fs0_c00370{font-size:99.000000px;}
.y0_c00370{bottom:0.000000px;}
.y26_c00370{bottom:3.105000px;}
.y25_c00370{bottom:7.228371px;}
.y24_c00370{bottom:66.915000px;}
.y23_c00370{bottom:92.115000px;}
.y22_c00370{bottom:116.565000px;}
.y21_c00370{bottom:141.465000px;}
.y20_c00370{bottom:166.365000px;}
.y1f_c00370{bottom:190.815000px;}
.y1e_c00370{bottom:215.115000px;}
.y1d_c00370{bottom:239.715000px;}
.y1c_c00370{bottom:264.315000px;}
.y1b_c00370{bottom:288.015000px;}
.y1a_c00370{bottom:311.865000px;}
.y19_c00370{bottom:336.915000px;}
.y18_c00370{bottom:361.515000px;}
.y17_c00370{bottom:385.065000px;}
.y16_c00370{bottom:409.065000px;}
.y15_c00370{bottom:432.465000px;}
.y14_c00370{bottom:456.765000px;}
.y13_c00370{bottom:480.915000px;}
.y12_c00370{bottom:504.915000px;}
.y11_c00370{bottom:529.215000px;}
.y10_c00370{bottom:552.915000px;}
.yf_c00370{bottom:576.465000px;}
.ye_c00370{bottom:600.165000px;}
.yd_c00370{bottom:624.015000px;}
.yc_c00370{bottom:647.415000px;}
.yb_c00370{bottom:671.265000px;}
.ya_c00370{bottom:695.565000px;}
.y9_c00370{bottom:719.865000px;}
.y8_c00370{bottom:743.865000px;}
.y7_c00370{bottom:768.165000px;}
.y6_c00370{bottom:792.465000px;}
.y5_c00370{bottom:816.465000px;}
.y4_c00370{bottom:840.765000px;}
.y3_c00370{bottom:865.065000px;}
.y2_c00370{bottom:889.665000px;}
.y1_c00370{bottom:922.815000px;}
.h7_c00370{height:13.200074px;}
.h8_c00370{height:43.804688px;}
.h5_c00370{height:50.053711px;}
.h4_c00370{height:64.743164px;}
.h3_c00370{height:79.497070px;}
.h6_c00370{height:98.756836px;}
.h2_c00370{height:115.870605px;}
.h0_c00370{height:989.025000px;}
.h1_c00370{height:989.250000px;}
.w1_c00370{width:104.875500px;}
.w0_c00370{width:672.000000px;}
.x0_c00370{left:0.000000px;}
.x6_c00370{left:37.800000px;}
.x5_c00370{left:52.350000px;}
.x2_c00370{left:53.700000px;}
.x3_c00370{left:55.350000px;}
.x4_c00370{left:79.350000px;}
.x7_c00370{left:113.400000px;}
.x1_c00370{left:116.400000px;}
.x8_c00370{left:287.814240px;}
@media print{
.v0_c00370{vertical-align:0.000000pt;}
.ls3_c00370{letter-spacing:0.000000pt;}
.ls5_c00370{letter-spacing:2.666667pt;}
.ls0_c00370{letter-spacing:5.333333pt;}
.ls2_c00370{letter-spacing:6.666667pt;}
.ls4_c00370{letter-spacing:8.000000pt;}
.ls1_c00370{letter-spacing:23.072000pt;}
.ws1_c00370{word-spacing:-37.333333pt;}
.ws3_c00370{word-spacing:-19.333333pt;}
.ws2_c00370{word-spacing:-11.333333pt;}
.ws0_c00370{word-spacing:-0.408000pt;}
.ws4_c00370{word-spacing:0.000000pt;}
._1d_c00370{margin-left:-14.813333pt;}
._18_c00370{margin-left:-12.544000pt;}
._2_c00370{margin-left:-10.560000pt;}
._21_c00370{margin-left:-9.432000pt;}
._a_c00370{margin-left:-8.536000pt;}
._7_c00370{margin-left:-7.480000pt;}
._13_c00370{margin-left:-5.848000pt;}
._0_c00370{margin-left:-4.752000pt;}
._6_c00370{margin-left:-3.168000pt;}
._1_c00370{margin-left:-1.408000pt;}
._3_c00370{width:1.144000pt;}
._9_c00370{width:2.464000pt;}
._8_c00370{width:3.432000pt;}
._12_c00370{width:4.368000pt;}
._e_c00370{width:5.328000pt;}
._14_c00370{width:6.280000pt;}
._f_c00370{width:7.224000pt;}
._5_c00370{width:8.360000pt;}
._4_c00370{width:9.504000pt;}
._11_c00370{width:11.312000pt;}
._15_c00370{width:13.008000pt;}
._10_c00370{width:14.344000pt;}
._17_c00370{width:15.840000pt;}
._1a_c00370{width:16.781333pt;}
._1e_c00370{width:17.816000pt;}
._19_c00370{width:19.573333pt;}
._1c_c00370{width:22.288000pt;}
._1f_c00370{width:25.245333pt;}
._22_c00370{width:28.080000pt;}
._c_c00370{width:30.888000pt;}
._24_c00370{width:32.544000pt;}
._d_c00370{width:33.880000pt;}
._b_c00370{width:40.832000pt;}
._20_c00370{width:42.592000pt;}
._16_c00370{width:62.952000pt;}
._1b_c00370{width:80.101333pt;}
._25_c00370{width:277.432000pt;}
._23_c00370{width:840.160000pt;}
.fs5_c00370{font-size:37.333333pt;}
.fs8_c00370{font-size:42.666667pt;}
.fs2_c00370{font-size:45.333333pt;}
.fs4_c00370{font-size:56.000000pt;}
.fs3_c00370{font-size:58.666667pt;}
.fs6_c00370{font-size:64.000000pt;}
.fs7_c00370{font-size:69.333333pt;}
.fs1_c00370{font-size:72.000000pt;}
.fs0_c00370{font-size:88.000000pt;}
.y0_c00370{bottom:0.000000pt;}
.y26_c00370{bottom:2.760000pt;}
.y25_c00370{bottom:6.425219pt;}
.y24_c00370{bottom:59.480000pt;}
.y23_c00370{bottom:81.880000pt;}
.y22_c00370{bottom:103.613333pt;}
.y21_c00370{bottom:125.746667pt;}
.y20_c00370{bottom:147.880000pt;}
.y1f_c00370{bottom:169.613333pt;}
.y1e_c00370{bottom:191.213333pt;}
.y1d_c00370{bottom:213.080000pt;}
.y1c_c00370{bottom:234.946667pt;}
.y1b_c00370{bottom:256.013333pt;}
.y1a_c00370{bottom:277.213333pt;}
.y19_c00370{bottom:299.480000pt;}
.y18_c00370{bottom:321.346667pt;}
.y17_c00370{bottom:342.280000pt;}
.y16_c00370{bottom:363.613333pt;}
.y15_c00370{bottom:384.413333pt;}
.y14_c00370{bottom:406.013333pt;}
.y13_c00370{bottom:427.480000pt;}
.y12_c00370{bottom:448.813333pt;}
.y11_c00370{bottom:470.413333pt;}
.y10_c00370{bottom:491.480000pt;}
.yf_c00370{bottom:512.413333pt;}
.ye_c00370{bottom:533.480000pt;}
.yd_c00370{bottom:554.680000pt;}
.yc_c00370{bottom:575.480000pt;}
.yb_c00370{bottom:596.680000pt;}
.ya_c00370{bottom:618.280000pt;}
.y9_c00370{bottom:639.880000pt;}
.y8_c00370{bottom:661.213333pt;}
.y7_c00370{bottom:682.813333pt;}
.y6_c00370{bottom:704.413333pt;}
.y5_c00370{bottom:725.746667pt;}
.y4_c00370{bottom:747.346667pt;}
.y3_c00370{bottom:768.946667pt;}
.y2_c00370{bottom:790.813333pt;}
.y1_c00370{bottom:820.280000pt;}
.h7_c00370{height:11.733399pt;}
.h8_c00370{height:38.937500pt;}
.h5_c00370{height:44.492188pt;}
.h4_c00370{height:57.549479pt;}
.h3_c00370{height:70.664062pt;}
.h6_c00370{height:87.783854pt;}
.h2_c00370{height:102.996094pt;}
.h0_c00370{height:879.133333pt;}
.h1_c00370{height:879.333333pt;}
.w1_c00370{width:93.222667pt;}
.w0_c00370{width:597.333333pt;}
.x0_c00370{left:0.000000pt;}
.x6_c00370{left:33.600000pt;}
.x5_c00370{left:46.533333pt;}
.x2_c00370{left:47.733333pt;}
.x3_c00370{left:49.200000pt;}
.x4_c00370{left:70.533333pt;}
.x7_c00370{left:100.800000pt;}
.x1_c00370{left:103.466667pt;}
.x8_c00370{left:255.834880pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3d1aabf966034ddb985ee8cb.woff2')format("woff");}.ff1_c00371{font-family:ff1_c00371;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00371;src:url('chunks/assets/font_813782ef568944afc7a75163.woff2')format("woff");}.ff2_c00371{font-family:ff2_c00371;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00371;src:url('chunks/assets/font_e5f2bc397dafd6e8463115ee.woff2')format("woff");}.ff3_c00371{font-family:ff3_c00371;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00371;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff4_c00371{font-family:ff4_c00371;line-height:1.219238;font-style: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;}
.ls2_c00371{letter-spacing:0.000000px;}
.ls1_c00371{letter-spacing:3.000000px;}
.ls0_c00371{letter-spacing:3.627000px;}
.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:0.000000px;}
._14_c00371{margin-left:-17.820000px;}
._12_c00371{margin-left:-15.006000px;}
._13_c00371{margin-left:-12.636000px;}
._d_c00371{margin-left:-8.646000px;}
._e_c00371{margin-left:-5.994000px;}
._f_c00371{margin-left:-4.536000px;}
._8_c00371{margin-left:-2.997000px;}
._b_c00371{margin-left:-1.377000px;}
._5_c00371{width:1.782000px;}
._2_c00371{width:2.916000px;}
._1_c00371{width:4.536000px;}
._0_c00371{width:5.751000px;}
._3_c00371{width:6.804000px;}
._6_c00371{width:8.100000px;}
._7_c00371{width:9.315000px;}
._c_c00371{width:10.935000px;}
._16_c00371{width:12.024000px;}
._a_c00371{width:13.041000px;}
._4_c00371{width:14.823000px;}
._11_c00371{width:16.200000px;}
._15_c00371{width:17.577000px;}
._17_c00371{width:19.755000px;}
._9_c00371{width:22.113000px;}
._10_c00371{width:36.510000px;}
.fc2_c00371{color:transparent;}
.fc1_c00371{color:rgb(128,128,128);}
.fc0_c00371{color:rgb(0,0,0);}
.fs4_c00371{font-size:48.000000px;}
.fs3_c00371{font-size:57.000000px;}
.fs2_c00371{font-size:63.000000px;}
.fs1_c00371{font-size:72.000000px;}
.fs0_c00371{font-size:81.000000px;}
.y0_c00371{bottom:0.000000px;}
.y21_c00371{bottom:3.105000px;}
.y20_c00371{bottom:7.228369px;}
.y1f_c00371{bottom:56.670000px;}
.y1e_c00371{bottom:82.620000px;}
.y1d_c00371{bottom:108.270000px;}
.y1c_c00371{bottom:206.520000px;}
.y1b_c00371{bottom:230.070000px;}
.y1a_c00371{bottom:279.720000px;}
.y19_c00371{bottom:303.720000px;}
.y18_c00371{bottom:328.320000px;}
.y17_c00371{bottom:353.070000px;}
.y16_c00371{bottom:377.220000px;}
.y15_c00371{bottom:401.970000px;}
.y14_c00371{bottom:426.270000px;}
.y13_c00371{bottom:450.270000px;}
.y12_c00371{bottom:474.720000px;}
.y11_c00371{bottom:498.720000px;}
.y10_c00371{bottom:522.720000px;}
.yf_c00371{bottom:546.420000px;}
.ye_c00371{bottom:570.720000px;}
.yd_c00371{bottom:595.020000px;}
.yc_c00371{bottom:619.320000px;}
.yb_c00371{bottom:643.920000px;}
.ya_c00371{bottom:667.920000px;}
.y9_c00371{bottom:692.220000px;}
.y8_c00371{bottom:716.520000px;}
.y7_c00371{bottom:740.520000px;}
.y6_c00371{bottom:764.670000px;}
.y5_c00371{bottom:788.970000px;}
.y4_c00371{bottom:812.970000px;}
.y3_c00371{bottom:836.970000px;}
.y2_c00371{bottom:861.570000px;}
.y1_c00371{bottom:884.970000px;}
.h6_c00371{height:13.200073px;}
.h7_c00371{height:43.804688px;}
.h5_c00371{height:57.445312px;}
.h4_c00371{height:61.800293px;}
.h3_c00371{height:61.831055px;}
.h2_c00371{height:79.497070px;}
.h1_c00371{height:986.250000px;}
.h0_c00371{height:986.550000px;}
.w1_c00371{width:104.875500px;}
.w0_c00371{width:661.500000px;}
.x0_c00371{left:0.000000px;}
.x1_c00371{left:126.150000px;}
.x2_c00371{left:127.200000px;}
.x3_c00371{left:128.850000px;}
.x4_c00371{left:130.200000px;}
.x5_c00371{left:131.250000px;}
.x6_c00371{left:132.300000px;}
.x7_c00371{left:134.250000px;}
.x8_c00371{left:135.900000px;}
.x9_c00371{left:137.100000px;}
.xa_c00371{left:138.750000px;}
.xb_c00371{left:139.800000px;}
.xf_c00371{left:143.100000px;}
.xc_c00371{left:205.200000px;}
.xe_c00371{left:266.250000px;}
.x11_c00371{left:282.564240px;}
.xd_c00371{left:300.000000px;}
.x10_c00371{left:568.950000px;}
@media print{
.v0_c00371{vertical-align:0.000000pt;}
.ls2_c00371{letter-spacing:0.000000pt;}
.ls1_c00371{letter-spacing:2.666667pt;}
.ls0_c00371{letter-spacing:3.224000pt;}
.ws0_c00371{word-spacing:0.000000pt;}
._14_c00371{margin-left:-15.840000pt;}
._12_c00371{margin-left:-13.338667pt;}
._13_c00371{margin-left:-11.232000pt;}
._d_c00371{margin-left:-7.685333pt;}
._e_c00371{margin-left:-5.328000pt;}
._f_c00371{margin-left:-4.032000pt;}
._8_c00371{margin-left:-2.664000pt;}
._b_c00371{margin-left:-1.224000pt;}
._5_c00371{width:1.584000pt;}
._2_c00371{width:2.592000pt;}
._1_c00371{width:4.032000pt;}
._0_c00371{width:5.112000pt;}
._3_c00371{width:6.048000pt;}
._6_c00371{width:7.200000pt;}
._7_c00371{width:8.280000pt;}
._c_c00371{width:9.720000pt;}
._16_c00371{width:10.688000pt;}
._a_c00371{width:11.592000pt;}
._4_c00371{width:13.176000pt;}
._11_c00371{width:14.400000pt;}
._15_c00371{width:15.624000pt;}
._17_c00371{width:17.560000pt;}
._9_c00371{width:19.656000pt;}
._10_c00371{width:32.453333pt;}
.fs4_c00371{font-size:42.666667pt;}
.fs3_c00371{font-size:50.666667pt;}
.fs2_c00371{font-size:56.000000pt;}
.fs1_c00371{font-size:64.000000pt;}
.fs0_c00371{font-size:72.000000pt;}
.y0_c00371{bottom:0.000000pt;}
.y21_c00371{bottom:2.760000pt;}
.y20_c00371{bottom:6.425217pt;}
.y1f_c00371{bottom:50.373333pt;}
.y1e_c00371{bottom:73.440000pt;}
.y1d_c00371{bottom:96.240000pt;}
.y1c_c00371{bottom:183.573333pt;}
.y1b_c00371{bottom:204.506667pt;}
.y1a_c00371{bottom:248.640000pt;}
.y19_c00371{bottom:269.973333pt;}
.y18_c00371{bottom:291.840000pt;}
.y17_c00371{bottom:313.840000pt;}
.y16_c00371{bottom:335.306667pt;}
.y15_c00371{bottom:357.306667pt;}
.y14_c00371{bottom:378.906667pt;}
.y13_c00371{bottom:400.240000pt;}
.y12_c00371{bottom:421.973333pt;}
.y11_c00371{bottom:443.306667pt;}
.y10_c00371{bottom:464.640000pt;}
.yf_c00371{bottom:485.706667pt;}
.ye_c00371{bottom:507.306667pt;}
.yd_c00371{bottom:528.906667pt;}
.yc_c00371{bottom:550.506667pt;}
.yb_c00371{bottom:572.373333pt;}
.ya_c00371{bottom:593.706667pt;}
.y9_c00371{bottom:615.306667pt;}
.y8_c00371{bottom:636.906667pt;}
.y7_c00371{bottom:658.240000pt;}
.y6_c00371{bottom:679.706667pt;}
.y5_c00371{bottom:701.306667pt;}
.y4_c00371{bottom:722.640000pt;}
.y3_c00371{bottom:743.973333pt;}
.y2_c00371{bottom:765.840000pt;}
.y1_c00371{bottom:786.640000pt;}
.h6_c00371{height:11.733399pt;}
.h7_c00371{height:38.937500pt;}
.h5_c00371{height:51.062500pt;}
.h4_c00371{height:54.933594pt;}
.h3_c00371{height:54.960938pt;}
.h2_c00371{height:70.664062pt;}
.h1_c00371{height:876.666667pt;}
.h0_c00371{height:876.933333pt;}
.w1_c00371{width:93.222667pt;}
.w0_c00371{width:588.000000pt;}
.x0_c00371{left:0.000000pt;}
.x1_c00371{left:112.133333pt;}
.x2_c00371{left:113.066667pt;}
.x3_c00371{left:114.533333pt;}
.x4_c00371{left:115.733333pt;}
.x5_c00371{left:116.666667pt;}
.x6_c00371{left:117.600000pt;}
.x7_c00371{left:119.333333pt;}
.x8_c00371{left:120.800000pt;}
.x9_c00371{left:121.866667pt;}
.xa_c00371{left:123.333333pt;}
.xb_c00371{left:124.266667pt;}
.xf_c00371{left:127.200000pt;}
.xc_c00371{left:182.400000pt;}
.xe_c00371{left:236.666667pt;}
.x11_c00371{left:251.168213pt;}
.xd_c00371{left:266.666667pt;}
.x10_c00371{left:505.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_44e6943df9c17b152315d92d.woff2')format("woff");}.ff1_c00372{font-family:ff1_c00372;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00372;src:url('chunks/assets/font_a8e8f51c2ef12407cc9f62e6.woff2')format("woff");}.ff2_c00372{font-family:ff2_c00372;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00372;src:url('chunks/assets/font_4a1b3d1fd88566c28a0ba598.woff2')format("woff");}.ff3_c00372{font-family:ff3_c00372;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00372;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff4_c00372{font-family:ff4_c00372;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00372;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c00372{font-family:ff5_c00372;line-height:1.219238;font-style: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;}
.ls2_c00372{letter-spacing:0.000000px;}
.ls1_c00372{letter-spacing:15.402000px;}
.ls0_c00372{letter-spacing:218.802000px;}
.sc__c00372{text-shadow:none;}
.sc0_c00372{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00372{-webkit-text-stroke:0px transparent;}
.sc0_c00372{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00372{word-spacing:-17.352000px;}
.ws0_c00372{word-spacing:-1.824000px;}
.ws2_c00372{word-spacing:0.000000px;}
._1b_c00372{margin-left:-34.830000px;}
._12_c00372{margin-left:-17.010000px;}
._15_c00372{margin-left:-13.494000px;}
._11_c00372{margin-left:-11.745000px;}
._17_c00372{margin-left:-10.455000px;}
._8_c00372{margin-left:-8.910000px;}
._13_c00372{margin-left:-7.857000px;}
._c_c00372{margin-left:-6.480000px;}
._1_c00372{margin-left:-4.617000px;}
._5_c00372{margin-left:-3.483000px;}
._10_c00372{margin-left:-2.430000px;}
._4_c00372{margin-left:-1.296000px;}
._3_c00372{width:1.782000px;}
._b_c00372{width:2.835000px;}
._2_c00372{width:3.888000px;}
._7_c00372{width:5.184000px;}
._0_c00372{width:6.318000px;}
._a_c00372{width:7.371000px;}
._d_c00372{width:8.505000px;}
._9_c00372{width:10.206000px;}
._e_c00372{width:11.502000px;}
._6_c00372{width:13.689000px;}
._19_c00372{width:15.066000px;}
._f_c00372{width:16.929000px;}
._1a_c00372{width:18.312000px;}
._14_c00372{width:19.785000px;}
._18_c00372{width:22.521000px;}
._1e_c00372{width:36.120000px;}
._16_c00372{width:46.464000px;}
._1c_c00372{width:80.271000px;}
._1f_c00372{width:319.917000px;}
._1d_c00372{width:964.872000px;}
.fc2_c00372{color:transparent;}
.fc1_c00372{color:rgb(128,128,128);}
.fc0_c00372{color:rgb(0,0,0);}
.fs5_c00372{font-size:48.000000px;}
.fs1_c00372{font-size:57.000000px;}
.fs2_c00372{font-size:60.000000px;}
.fs3_c00372{font-size:72.000000px;}
.fs4_c00372{font-size:78.000000px;}
.fs0_c00372{font-size:81.000000px;}
.y0_c00372{bottom:0.000000px;}
.y25_c00372{bottom:3.105000px;}
.y24_c00372{bottom:7.228355px;}
.y23_c00372{bottom:53.535000px;}
.y22_c00372{bottom:81.285000px;}
.y21_c00372{bottom:107.235000px;}
.y20_c00372{bottom:131.835000px;}
.y1f_c00372{bottom:156.885000px;}
.y1e_c00372{bottom:181.485000px;}
.y1d_c00372{bottom:205.485000px;}
.y1c_c00372{bottom:230.535000px;}
.y1b_c00372{bottom:255.135000px;}
.y1a_c00372{bottom:279.435000px;}
.y19_c00372{bottom:304.335000px;}
.y18_c00372{bottom:328.935000px;}
.y17_c00372{bottom:353.385000px;}
.y16_c00372{bottom:378.585000px;}
.y15_c00372{bottom:402.285000px;}
.y14_c00372{bottom:426.585000px;}
.y13_c00372{bottom:451.485000px;}
.y12_c00372{bottom:475.785000px;}
.y11_c00372{bottom:500.385000px;}
.y10_c00372{bottom:524.385000px;}
.yf_c00372{bottom:549.135000px;}
.ye_c00372{bottom:572.685000px;}
.yd_c00372{bottom:596.385000px;}
.yc_c00372{bottom:619.935000px;}
.yb_c00372{bottom:644.235000px;}
.ya_c00372{bottom:668.235000px;}
.y9_c00372{bottom:692.535000px;}
.y8_c00372{bottom:718.785000px;}
.y7_c00372{bottom:741.435000px;}
.y6_c00372{bottom:766.035000px;}
.y5_c00372{bottom:791.385000px;}
.y4_c00372{bottom:817.635000px;}
.y3_c00372{bottom:840.735000px;}
.y2_c00372{bottom:865.935000px;}
.y1_c00372{bottom:890.535000px;}
.h5_c00372{height:13.200074px;}
.h6_c00372{height:43.804688px;}
.h2_c00372{height:79.497070px;}
.h3_c00372{height:91.160156px;}
.h4_c00372{height:98.756836px;}
.h0_c00372{height:977.925000px;}
.h1_c00372{height:978.000000px;}
.w2_c00372{width:104.875500px;}
.w0_c00372{width:664.200000px;}
.w1_c00372{width:664.500000px;}
.x0_c00372{left:0.000000px;}
.x1_c00372{left:49.950000px;}
.x2_c00372{left:51.000000px;}
.x4_c00372{left:52.200000px;}
.x3_c00372{left:53.550000px;}
.x5_c00372{left:76.950000px;}
.x6_c00372{left:283.914230px;}
@media print{
.v0_c00372{vertical-align:0.000000pt;}
.ls2_c00372{letter-spacing:0.000000pt;}
.ls1_c00372{letter-spacing:13.690667pt;}
.ls0_c00372{letter-spacing:194.490667pt;}
.ws1_c00372{word-spacing:-15.424000pt;}
.ws0_c00372{word-spacing:-1.621333pt;}
.ws2_c00372{word-spacing:0.000000pt;}
._1b_c00372{margin-left:-30.960000pt;}
._12_c00372{margin-left:-15.120000pt;}
._15_c00372{margin-left:-11.994667pt;}
._11_c00372{margin-left:-10.440000pt;}
._17_c00372{margin-left:-9.293333pt;}
._8_c00372{margin-left:-7.920000pt;}
._13_c00372{margin-left:-6.984000pt;}
._c_c00372{margin-left:-5.760000pt;}
._1_c00372{margin-left:-4.104000pt;}
._5_c00372{margin-left:-3.096000pt;}
._10_c00372{margin-left:-2.160000pt;}
._4_c00372{margin-left:-1.152000pt;}
._3_c00372{width:1.584000pt;}
._b_c00372{width:2.520000pt;}
._2_c00372{width:3.456000pt;}
._7_c00372{width:4.608000pt;}
._0_c00372{width:5.616000pt;}
._a_c00372{width:6.552000pt;}
._d_c00372{width:7.560000pt;}
._9_c00372{width:9.072000pt;}
._e_c00372{width:10.224000pt;}
._6_c00372{width:12.168000pt;}
._19_c00372{width:13.392000pt;}
._f_c00372{width:15.048000pt;}
._1a_c00372{width:16.277333pt;}
._14_c00372{width:17.586667pt;}
._18_c00372{width:20.018667pt;}
._1e_c00372{width:32.106667pt;}
._16_c00372{width:41.301333pt;}
._1c_c00372{width:71.352000pt;}
._1f_c00372{width:284.370667pt;}
._1d_c00372{width:857.664000pt;}
.fs5_c00372{font-size:42.666667pt;}
.fs1_c00372{font-size:50.666667pt;}
.fs2_c00372{font-size:53.333333pt;}
.fs3_c00372{font-size:64.000000pt;}
.fs4_c00372{font-size:69.333333pt;}
.fs0_c00372{font-size:72.000000pt;}
.y0_c00372{bottom:0.000000pt;}
.y25_c00372{bottom:2.760000pt;}
.y24_c00372{bottom:6.425204pt;}
.y23_c00372{bottom:47.586667pt;}
.y22_c00372{bottom:72.253333pt;}
.y21_c00372{bottom:95.320000pt;}
.y20_c00372{bottom:117.186667pt;}
.y1f_c00372{bottom:139.453333pt;}
.y1e_c00372{bottom:161.320000pt;}
.y1d_c00372{bottom:182.653333pt;}
.y1c_c00372{bottom:204.920000pt;}
.y1b_c00372{bottom:226.786667pt;}
.y1a_c00372{bottom:248.386667pt;}
.y19_c00372{bottom:270.520000pt;}
.y18_c00372{bottom:292.386667pt;}
.y17_c00372{bottom:314.120000pt;}
.y16_c00372{bottom:336.520000pt;}
.y15_c00372{bottom:357.586667pt;}
.y14_c00372{bottom:379.186667pt;}
.y13_c00372{bottom:401.320000pt;}
.y12_c00372{bottom:422.920000pt;}
.y11_c00372{bottom:444.786667pt;}
.y10_c00372{bottom:466.120000pt;}
.yf_c00372{bottom:488.120000pt;}
.ye_c00372{bottom:509.053333pt;}
.yd_c00372{bottom:530.120000pt;}
.yc_c00372{bottom:551.053333pt;}
.yb_c00372{bottom:572.653333pt;}
.ya_c00372{bottom:593.986667pt;}
.y9_c00372{bottom:615.586667pt;}
.y8_c00372{bottom:638.920000pt;}
.y7_c00372{bottom:659.053333pt;}
.y6_c00372{bottom:680.920000pt;}
.y5_c00372{bottom:703.453333pt;}
.y4_c00372{bottom:726.786667pt;}
.y3_c00372{bottom:747.320000pt;}
.y2_c00372{bottom:769.720000pt;}
.y1_c00372{bottom:791.586667pt;}
.h5_c00372{height:11.733399pt;}
.h6_c00372{height:38.937500pt;}
.h2_c00372{height:70.664062pt;}
.h3_c00372{height:81.031250pt;}
.h4_c00372{height:87.783854pt;}
.h0_c00372{height:869.266667pt;}
.h1_c00372{height:869.333333pt;}
.w2_c00372{width:93.222667pt;}
.w0_c00372{width:590.400000pt;}
.w1_c00372{width:590.666667pt;}
.x0_c00372{left:0.000000pt;}
.x1_c00372{left:44.400000pt;}
.x2_c00372{left:45.333333pt;}
.x4_c00372{left:46.400000pt;}
.x3_c00372{left:47.600000pt;}
.x5_c00372{left:68.400000pt;}
.x6_c00372{left:252.368205pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_06dad5c8b2fc528a75085e8d.woff2')format("woff");}.ff1_c00373{font-family:ff1_c00373;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00373;src:url('chunks/assets/font_8de6340a098c7c4117616d35.woff2')format("woff");}.ff2_c00373{font-family:ff2_c00373;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00373;src:url('chunks/assets/font_99bb69c0b03a2c42f7b15920.woff2')format("woff");}.ff3_c00373{font-family:ff3_c00373;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00373;src:url('chunks/assets/font_de02be9d0f24b7e896f22b1b.woff2')format("woff");}.ff4_c00373{font-family:ff4_c00373;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00373;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c00373{font-family:ff5_c00373;line-height:1.219238;font-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_c00373{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,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;}
.ls4_c00373{letter-spacing:-3.000000px;}
.ls3_c00373{letter-spacing:0.000000px;}
.ls1_c00373{letter-spacing:2.802000px;}
.ls2_c00373{letter-spacing:4.080000px;}
.ls0_c00373{letter-spacing:101.202000px;}
.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;}
}
.ws1_c00373{word-spacing:-17.352000px;}
.ws0_c00373{word-spacing:-13.737000px;}
.ws2_c00373{word-spacing:0.000000px;}
._1_c00373{margin-left:-17.604000px;}
._23_c00373{margin-left:-15.873000px;}
._15_c00373{margin-left:-14.049000px;}
._17_c00373{margin-left:-12.960000px;}
._2_c00373{margin-left:-11.340000px;}
._1c_c00373{margin-left:-9.846000px;}
._3_c00373{margin-left:-8.820000px;}
._6_c00373{margin-left:-7.140000px;}
._4_c00373{margin-left:-5.775000px;}
._c_c00373{margin-left:-4.410000px;}
._7_c00373{margin-left:-3.045000px;}
._a_c00373{margin-left:-1.155000px;}
._14_c00373{width:1.038000px;}
._11_c00373{width:2.106000px;}
._10_c00373{width:3.141000px;}
._e_c00373{width:4.212000px;}
._d_c00373{width:5.235000px;}
._5_c00373{width:6.510000px;}
._b_c00373{width:8.190000px;}
._f_c00373{width:9.468000px;}
._9_c00373{width:11.025000px;}
._8_c00373{width:12.180000px;}
._1b_c00373{width:13.326000px;}
._0_c00373{width:14.580000px;}
._18_c00373{width:17.031000px;}
._20_c00373{width:18.741000px;}
._19_c00373{width:20.085000px;}
._1a_c00373{width:21.519000px;}
._1f_c00373{width:22.788000px;}
._12_c00373{width:25.758000px;}
._22_c00373{width:26.841000px;}
._1e_c00373{width:29.409000px;}
._21_c00373{width:30.786000px;}
._16_c00373{width:32.553000px;}
._1d_c00373{width:130.182000px;}
._13_c00373{width:369.765000px;}
.fc2_c00373{color:transparent;}
.fc1_c00373{color:rgb(128,128,128);}
.fc0_c00373{color:rgb(0,0,0);}
.fs7_c00373{font-size:48.000000px;}
.fs5_c00373{font-size:57.000000px;}
.fs6_c00373{font-size:72.000000px;}
.fs4_c00373{font-size:78.000000px;}
.fs3_c00373{font-size:81.000000px;}
.fs0_c00373{font-size:99.000000px;}
.fs2_c00373{font-size:105.000000px;}
.fs1_c00373{font-size:108.000000px;}
.y0_c00373{bottom:0.000000px;}
.y26_c00373{bottom:3.105000px;}
.y25_c00373{bottom:7.228369px;}
.y24_c00373{bottom:68.220000px;}
.y23_c00373{bottom:93.120000px;}
.y22_c00373{bottom:116.820000px;}
.y21_c00373{bottom:141.420000px;}
.y20_c00373{bottom:164.970000px;}
.y1f_c00373{bottom:189.720000px;}
.y1e_c00373{bottom:214.620000px;}
.y1d_c00373{bottom:238.920000px;}
.y1c_c00373{bottom:263.820000px;}
.y1b_c00373{bottom:288.270000px;}
.y1a_c00373{bottom:312.870000px;}
.y19_c00373{bottom:337.470000px;}
.y18_c00373{bottom:362.370000px;}
.y17_c00373{bottom:386.820000px;}
.y16_c00373{bottom:411.720000px;}
.y15_c00373{bottom:435.420000px;}
.y14_c00373{bottom:460.020000px;}
.y13_c00373{bottom:484.020000px;}
.y12_c00373{bottom:508.170000px;}
.y11_c00373{bottom:532.470000px;}
.y10_c00373{bottom:557.220000px;}
.yf_c00373{bottom:580.470000px;}
.ye_c00373{bottom:608.070000px;}
.yd_c00373{bottom:627.420000px;}
.yc_c00373{bottom:653.670000px;}
.yb_c00373{bottom:677.970000px;}
.ya_c00373{bottom:702.270000px;}
.y9_c00373{bottom:726.570000px;}
.y8_c00373{bottom:750.870000px;}
.y7_c00373{bottom:775.620000px;}
.y6_c00373{bottom:800.520000px;}
.y5_c00373{bottom:824.820000px;}
.y4_c00373{bottom:849.420000px;}
.y3_c00373{bottom:874.170000px;}
.y2_c00373{bottom:898.770000px;}
.y1_c00373{bottom:934.920000px;}
.h8_c00373{height:13.200073px;}
.h9_c00373{height:43.804688px;}
.h6_c00373{height:72.168457px;}
.h4_c00373{height:79.497070px;}
.h7_c00373{height:84.269531px;}
.h5_c00373{height:98.756836px;}
.h2_c00373{height:108.843750px;}
.h1_c00373{height:115.870605px;}
.h3_c00373{height:122.893066px;}
.h0_c00373{height:989.250000px;}
.w2_c00373{width:104.875500px;}
.w1_c00373{width:663.000000px;}
.w0_c00373{width:663.150000px;}
.x0_c00373{left:0.000000px;}
.x5_c00373{left:6.300000px;}
.xd_c00373{left:17.550000px;}
.xa_c00373{left:21.900000px;}
.x7_c00373{left:24.300000px;}
.x8_c00373{left:25.950000px;}
.xb_c00373{left:50.700000px;}
.xc_c00373{left:67.800000px;}
.x9_c00373{left:113.850000px;}
.x4_c00373{left:115.350000px;}
.x6_c00373{left:116.400000px;}
.x1_c00373{left:120.600000px;}
.x2_c00373{left:129.900000px;}
.x3_c00373{left:200.850000px;}
.xe_c00373{left:234.600000px;}
.x15_c00373{left:283.389267px;}
.xf_c00373{left:294.000000px;}
.x10_c00373{left:329.400000px;}
.x11_c00373{left:391.802400px;}
.x12_c00373{left:503.850000px;}
.x13_c00373{left:548.550000px;}
.x14_c00373{left:565.050000px;}
@media print{
.v0_c00373{vertical-align:0.000000pt;}
.ls4_c00373{letter-spacing:-2.666667pt;}
.ls3_c00373{letter-spacing:0.000000pt;}
.ls1_c00373{letter-spacing:2.490667pt;}
.ls2_c00373{letter-spacing:3.626667pt;}
.ls0_c00373{letter-spacing:89.957333pt;}
.ws1_c00373{word-spacing:-15.424000pt;}
.ws0_c00373{word-spacing:-12.210667pt;}
.ws2_c00373{word-spacing:0.000000pt;}
._1_c00373{margin-left:-15.648000pt;}
._23_c00373{margin-left:-14.109333pt;}
._15_c00373{margin-left:-12.488000pt;}
._17_c00373{margin-left:-11.520000pt;}
._2_c00373{margin-left:-10.080000pt;}
._1c_c00373{margin-left:-8.752000pt;}
._3_c00373{margin-left:-7.840000pt;}
._6_c00373{margin-left:-6.346667pt;}
._4_c00373{margin-left:-5.133333pt;}
._c_c00373{margin-left:-3.920000pt;}
._7_c00373{margin-left:-2.706667pt;}
._a_c00373{margin-left:-1.026667pt;}
._14_c00373{width:0.922667pt;}
._11_c00373{width:1.872000pt;}
._10_c00373{width:2.792000pt;}
._e_c00373{width:3.744000pt;}
._d_c00373{width:4.653333pt;}
._5_c00373{width:5.786667pt;}
._b_c00373{width:7.280000pt;}
._f_c00373{width:8.416000pt;}
._9_c00373{width:9.800000pt;}
._8_c00373{width:10.826667pt;}
._1b_c00373{width:11.845333pt;}
._0_c00373{width:12.960000pt;}
._18_c00373{width:15.138667pt;}
._20_c00373{width:16.658667pt;}
._19_c00373{width:17.853333pt;}
._1a_c00373{width:19.128000pt;}
._1f_c00373{width:20.256000pt;}
._12_c00373{width:22.896000pt;}
._22_c00373{width:23.858667pt;}
._1e_c00373{width:26.141333pt;}
._21_c00373{width:27.365333pt;}
._16_c00373{width:28.936000pt;}
._1d_c00373{width:115.717333pt;}
._13_c00373{width:328.680000pt;}
.fs7_c00373{font-size:42.666667pt;}
.fs5_c00373{font-size:50.666667pt;}
.fs6_c00373{font-size:64.000000pt;}
.fs4_c00373{font-size:69.333333pt;}
.fs3_c00373{font-size:72.000000pt;}
.fs0_c00373{font-size:88.000000pt;}
.fs2_c00373{font-size:93.333333pt;}
.fs1_c00373{font-size:96.000000pt;}
.y0_c00373{bottom:0.000000pt;}
.y26_c00373{bottom:2.760000pt;}
.y25_c00373{bottom:6.425217pt;}
.y24_c00373{bottom:60.640000pt;}
.y23_c00373{bottom:82.773333pt;}
.y22_c00373{bottom:103.840000pt;}
.y21_c00373{bottom:125.706667pt;}
.y20_c00373{bottom:146.640000pt;}
.y1f_c00373{bottom:168.640000pt;}
.y1e_c00373{bottom:190.773333pt;}
.y1d_c00373{bottom:212.373333pt;}
.y1c_c00373{bottom:234.506667pt;}
.y1b_c00373{bottom:256.240000pt;}
.y1a_c00373{bottom:278.106667pt;}
.y19_c00373{bottom:299.973333pt;}
.y18_c00373{bottom:322.106667pt;}
.y17_c00373{bottom:343.840000pt;}
.y16_c00373{bottom:365.973333pt;}
.y15_c00373{bottom:387.040000pt;}
.y14_c00373{bottom:408.906667pt;}
.y13_c00373{bottom:430.240000pt;}
.y12_c00373{bottom:451.706667pt;}
.y11_c00373{bottom:473.306667pt;}
.y10_c00373{bottom:495.306667pt;}
.yf_c00373{bottom:515.973333pt;}
.ye_c00373{bottom:540.506667pt;}
.yd_c00373{bottom:557.706667pt;}
.yc_c00373{bottom:581.040000pt;}
.yb_c00373{bottom:602.640000pt;}
.ya_c00373{bottom:624.240000pt;}
.y9_c00373{bottom:645.840000pt;}
.y8_c00373{bottom:667.440000pt;}
.y7_c00373{bottom:689.440000pt;}
.y6_c00373{bottom:711.573333pt;}
.y5_c00373{bottom:733.173333pt;}
.y4_c00373{bottom:755.040000pt;}
.y3_c00373{bottom:777.040000pt;}
.y2_c00373{bottom:798.906667pt;}
.y1_c00373{bottom:831.040000pt;}
.h8_c00373{height:11.733399pt;}
.h9_c00373{height:38.937500pt;}
.h6_c00373{height:64.149740pt;}
.h4_c00373{height:70.664062pt;}
.h7_c00373{height:74.906250pt;}
.h5_c00373{height:87.783854pt;}
.h2_c00373{height:96.750000pt;}
.h1_c00373{height:102.996094pt;}
.h3_c00373{height:109.238281pt;}
.h0_c00373{height:879.333333pt;}
.w2_c00373{width:93.222667pt;}
.w1_c00373{width:589.333333pt;}
.w0_c00373{width:589.466667pt;}
.x0_c00373{left:0.000000pt;}
.x5_c00373{left:5.600000pt;}
.xd_c00373{left:15.600000pt;}
.xa_c00373{left:19.466667pt;}
.x7_c00373{left:21.600000pt;}
.x8_c00373{left:23.066667pt;}
.xb_c00373{left:45.066667pt;}
.xc_c00373{left:60.266667pt;}
.x9_c00373{left:101.200000pt;}
.x4_c00373{left:102.533333pt;}
.x6_c00373{left:103.466667pt;}
.x1_c00373{left:107.200000pt;}
.x2_c00373{left:115.466667pt;}
.x3_c00373{left:178.533333pt;}
.xe_c00373{left:208.533333pt;}
.x15_c00373{left:251.901571pt;}
.xf_c00373{left:261.333333pt;}
.x10_c00373{left:292.800000pt;}
.x11_c00373{left:348.268800pt;}
.x12_c00373{left:447.866667pt;}
.x13_c00373{left:487.600000pt;}
.x14_c00373{left:502.266667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_720687f3d8f6d5757458ac3a.woff2')format("woff");}.ff1_c00374{font-family:ff1_c00374;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00374;src:url('chunks/assets/font_bbf16aa0167d760db2f876e8.woff2')format("woff");}.ff2_c00374{font-family:ff2_c00374;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00374;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff3_c00374{font-family:ff3_c00374;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00374;src:url('chunks/assets/font_8ab0ed4cd97154348ceb3017.woff2')format("woff");}.ff4_c00374{font-family:ff4_c00374;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00374;src:url('chunks/assets/font_2bb25fcd1e824f7c39e1db57.woff2')format("woff");}.ff5_c00374{font-family:ff5_c00374;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00374;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c00374{font-family:ff6_c00374;line-height:1.219238;font-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_c00374{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,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;}
.ls3_c00374{letter-spacing:0.000000px;}
.ls1_c00374{letter-spacing:0.900000px;}
.ls2_c00374{letter-spacing:4.500000px;}
.ls0_c00374{letter-spacing:6.402000px;}
.sc__c00374{text-shadow:none;}
.sc0_c00374{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00374{-webkit-text-stroke:0px transparent;}
.sc0_c00374{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00374{word-spacing:-17.352000px;}
.ws0_c00374{word-spacing:-13.737000px;}
.ws2_c00374{word-spacing:0.000000px;}
._18_c00374{margin-left:-25.839000px;}
._1c_c00374{margin-left:-17.658000px;}
._1b_c00374{margin-left:-14.769000px;}
._4_c00374{margin-left:-12.672000px;}
._6_c00374{margin-left:-11.583000px;}
._15_c00374{margin-left:-10.530000px;}
._2_c00374{margin-left:-9.207000px;}
._1_c00374{margin-left:-7.227000px;}
._14_c00374{margin-left:-6.216000px;}
._f_c00374{margin-left:-4.995000px;}
._10_c00374{margin-left:-3.681000px;}
._3_c00374{margin-left:-2.277000px;}
._7_c00374{margin-left:-1.089000px;}
._0_c00374{width:1.089000px;}
._5_c00374{width:2.970000px;}
._11_c00374{width:3.987000px;}
._a_c00374{width:5.022000px;}
._d_c00374{width:6.210000px;}
._9_c00374{width:7.857000px;}
._c_c00374{width:9.072000px;}
._e_c00374{width:10.413000px;}
._1a_c00374{width:11.853000px;}
._b_c00374{width:12.879000px;}
._12_c00374{width:14.706000px;}
._13_c00374{width:16.155000px;}
._16_c00374{width:17.580000px;}
._1d_c00374{width:37.278000px;}
._17_c00374{width:43.683000px;}
._8_c00374{width:102.663000px;}
._19_c00374{width:150.489000px;}
._1e_c00374{width:355.131000px;}
.fc2_c00374{color:transparent;}
.fc1_c00374{color:rgb(128,128,128);}
.fc0_c00374{color:rgb(0,0,0);}
.fs7_c00374{font-size:48.000000px;}
.fs2_c00374{font-size:57.000000px;}
.fs5_c00374{font-size:72.000000px;}
.fs3_c00374{font-size:78.000000px;}
.fs1_c00374{font-size:81.000000px;}
.fs4_c00374{font-size:87.000000px;}
.fs0_c00374{font-size:99.000000px;}
.fs6_c00374{font-size:108.000000px;}
.y0_c00374{bottom:0.000000px;}
.y26_c00374{bottom:3.105000px;}
.y25_c00374{bottom:7.228371px;}
.y24_c00374{bottom:52.665000px;}
.y23_c00374{bottom:79.365000px;}
.y22_c00374{bottom:104.715000px;}
.y21_c00374{bottom:130.065000px;}
.y20_c00374{bottom:154.665000px;}
.y1f_c00374{bottom:179.265000px;}
.y1e_c00374{bottom:204.315000px;}
.y1d_c00374{bottom:228.915000px;}
.y1c_c00374{bottom:253.815000px;}
.y1b_c00374{bottom:278.565000px;}
.y1a_c00374{bottom:302.865000px;}
.y19_c00374{bottom:327.015000px;}
.y18_c00374{bottom:351.465000px;}
.y17_c00374{bottom:375.765000px;}
.y16_c00374{bottom:400.065000px;}
.y15_c00374{bottom:424.365000px;}
.y14_c00374{bottom:448.665000px;}
.y13_c00374{bottom:473.265000px;}
.y12_c00374{bottom:497.565000px;}
.y11_c00374{bottom:521.565000px;}
.y10_c00374{bottom:545.715000px;}
.yf_c00374{bottom:570.165000px;}
.ye_c00374{bottom:594.465000px;}
.yd_c00374{bottom:618.615000px;}
.yc_c00374{bottom:642.915000px;}
.yb_c00374{bottom:667.215000px;}
.ya_c00374{bottom:691.665000px;}
.y9_c00374{bottom:715.815000px;}
.y8_c00374{bottom:740.265000px;}
.y7_c00374{bottom:765.465000px;}
.y6_c00374{bottom:789.465000px;}
.y5_c00374{bottom:813.765000px;}
.y4_c00374{bottom:838.365000px;}
.y3_c00374{bottom:862.365000px;}
.y2_c00374{bottom:887.265000px;}
.y1_c00374{bottom:922.815000px;}
.h8_c00374{height:13.200074px;}
.h9_c00374{height:43.804688px;}
.h4_c00374{height:72.168457px;}
.h3_c00374{height:79.497070px;}
.h6_c00374{height:91.176000px;}
.h5_c00374{height:98.756836px;}
.h7_c00374{height:108.843750px;}
.h2_c00374{height:115.870605px;}
.h0_c00374{height:989.025000px;}
.h1_c00374{height:989.250000px;}
.w1_c00374{width:104.875500px;}
.w0_c00374{width:672.000000px;}
.x0_c00374{left:0.000000px;}
.x3_c00374{left:45.450000px;}
.xa_c00374{left:51.000000px;}
.x9_c00374{left:52.200000px;}
.x8_c00374{left:54.000000px;}
.x7_c00374{left:55.350000px;}
.x6_c00374{left:57.300000px;}
.x5_c00374{left:58.950000px;}
.x4_c00374{left:60.750000px;}
.x2_c00374{left:61.800000px;}
.x1_c00374{left:137.400000px;}
.xd_c00374{left:287.814240px;}
.xc_c00374{left:394.500000px;}
.xb_c00374{left:530.250000px;}
@media print{
.v0_c00374{vertical-align:0.000000pt;}
.ls3_c00374{letter-spacing:0.000000pt;}
.ls1_c00374{letter-spacing:0.800000pt;}
.ls2_c00374{letter-spacing:4.000000pt;}
.ls0_c00374{letter-spacing:5.690667pt;}
.ws1_c00374{word-spacing:-15.424000pt;}
.ws0_c00374{word-spacing:-12.210667pt;}
.ws2_c00374{word-spacing:0.000000pt;}
._18_c00374{margin-left:-22.968000pt;}
._1c_c00374{margin-left:-15.696000pt;}
._1b_c00374{margin-left:-13.128000pt;}
._4_c00374{margin-left:-11.264000pt;}
._6_c00374{margin-left:-10.296000pt;}
._15_c00374{margin-left:-9.360000pt;}
._2_c00374{margin-left:-8.184000pt;}
._1_c00374{margin-left:-6.424000pt;}
._14_c00374{margin-left:-5.525333pt;}
._f_c00374{margin-left:-4.440000pt;}
._10_c00374{margin-left:-3.272000pt;}
._3_c00374{margin-left:-2.024000pt;}
._7_c00374{margin-left:-0.968000pt;}
._0_c00374{width:0.968000pt;}
._5_c00374{width:2.640000pt;}
._11_c00374{width:3.544000pt;}
._a_c00374{width:4.464000pt;}
._d_c00374{width:5.520000pt;}
._9_c00374{width:6.984000pt;}
._c_c00374{width:8.064000pt;}
._e_c00374{width:9.256000pt;}
._1a_c00374{width:10.536000pt;}
._b_c00374{width:11.448000pt;}
._12_c00374{width:13.072000pt;}
._13_c00374{width:14.360000pt;}
._16_c00374{width:15.626667pt;}
._1d_c00374{width:33.136000pt;}
._17_c00374{width:38.829333pt;}
._8_c00374{width:91.256000pt;}
._19_c00374{width:133.768000pt;}
._1e_c00374{width:315.672000pt;}
.fs7_c00374{font-size:42.666667pt;}
.fs2_c00374{font-size:50.666667pt;}
.fs5_c00374{font-size:64.000000pt;}
.fs3_c00374{font-size:69.333333pt;}
.fs1_c00374{font-size:72.000000pt;}
.fs4_c00374{font-size:77.333333pt;}
.fs0_c00374{font-size:88.000000pt;}
.fs6_c00374{font-size:96.000000pt;}
.y0_c00374{bottom:0.000000pt;}
.y26_c00374{bottom:2.760000pt;}
.y25_c00374{bottom:6.425219pt;}
.y24_c00374{bottom:46.813333pt;}
.y23_c00374{bottom:70.546667pt;}
.y22_c00374{bottom:93.080000pt;}
.y21_c00374{bottom:115.613333pt;}
.y20_c00374{bottom:137.480000pt;}
.y1f_c00374{bottom:159.346667pt;}
.y1e_c00374{bottom:181.613333pt;}
.y1d_c00374{bottom:203.480000pt;}
.y1c_c00374{bottom:225.613333pt;}
.y1b_c00374{bottom:247.613333pt;}
.y1a_c00374{bottom:269.213333pt;}
.y19_c00374{bottom:290.680000pt;}
.y18_c00374{bottom:312.413333pt;}
.y17_c00374{bottom:334.013333pt;}
.y16_c00374{bottom:355.613333pt;}
.y15_c00374{bottom:377.213333pt;}
.y14_c00374{bottom:398.813333pt;}
.y13_c00374{bottom:420.680000pt;}
.y12_c00374{bottom:442.280000pt;}
.y11_c00374{bottom:463.613333pt;}
.y10_c00374{bottom:485.080000pt;}
.yf_c00374{bottom:506.813333pt;}
.ye_c00374{bottom:528.413333pt;}
.yd_c00374{bottom:549.880000pt;}
.yc_c00374{bottom:571.480000pt;}
.yb_c00374{bottom:593.080000pt;}
.ya_c00374{bottom:614.813333pt;}
.y9_c00374{bottom:636.280000pt;}
.y8_c00374{bottom:658.013333pt;}
.y7_c00374{bottom:680.413333pt;}
.y6_c00374{bottom:701.746667pt;}
.y5_c00374{bottom:723.346667pt;}
.y4_c00374{bottom:745.213333pt;}
.y3_c00374{bottom:766.546667pt;}
.y2_c00374{bottom:788.680000pt;}
.y1_c00374{bottom:820.280000pt;}
.h8_c00374{height:11.733399pt;}
.h9_c00374{height:38.937500pt;}
.h4_c00374{height:64.149740pt;}
.h3_c00374{height:70.664062pt;}
.h6_c00374{height:81.045333pt;}
.h5_c00374{height:87.783854pt;}
.h7_c00374{height:96.750000pt;}
.h2_c00374{height:102.996094pt;}
.h0_c00374{height:879.133333pt;}
.h1_c00374{height:879.333333pt;}
.w1_c00374{width:93.222667pt;}
.w0_c00374{width:597.333333pt;}
.x0_c00374{left:0.000000pt;}
.x3_c00374{left:40.400000pt;}
.xa_c00374{left:45.333333pt;}
.x9_c00374{left:46.400000pt;}
.x8_c00374{left:48.000000pt;}
.x7_c00374{left:49.200000pt;}
.x6_c00374{left:50.933333pt;}
.x5_c00374{left:52.400000pt;}
.x4_c00374{left:54.000000pt;}
.x2_c00374{left:54.933333pt;}
.x1_c00374{left:122.133333pt;}
.xd_c00374{left:255.834880pt;}
.xc_c00374{left:350.666667pt;}
.xb_c00374{left:471.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_19501aae8fcbdb50ca743bdd.woff2')format("woff");}.ff1_c00375{font-family:ff1_c00375;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00375;src:url('chunks/assets/font_6736548c066b9e3d88247de5.woff2')format("woff");}.ff2_c00375{font-family:ff2_c00375;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00375;src:url('chunks/assets/font_7bf0a9c57c157123d820ddb6.woff2')format("woff");}.ff3_c00375{font-family:ff3_c00375;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00375;src:url('chunks/assets/font_57e4b2c5e1fc97bed48c7f9a.woff2')format("woff");}.ff4_c00375{font-family:ff4_c00375;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00375;src:url('chunks/assets/font_a0b0ee0580e5020fd5a94f51.woff2')format("woff");}.ff5_c00375{font-family:ff5_c00375;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00375;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c00375{font-family:ff6_c00375;line-height:1.219238;font-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_c00375{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,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:145.800000px;}
.ls1_c00375{letter-spacing:0.000000px;}
.ls0_c00375{letter-spacing:15.000000px;}
.sc__c00375{text-shadow:none;}
.sc0_c00375{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00375{-webkit-text-stroke:0px transparent;}
.sc0_c00375{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00375{word-spacing:-68.250000px;}
.ws3_c00375{word-spacing:-67.686000px;}
.ws4_c00375{word-spacing:-20.250000px;}
.ws1_c00375{word-spacing:-18.750000px;}
.ws0_c00375{word-spacing:-17.352000px;}
.ws5_c00375{word-spacing:0.000000px;}
._1d_c00375{margin-left:-25.191000px;}
._19_c00375{margin-left:-23.106000px;}
._1f_c00375{margin-left:-19.572000px;}
._12_c00375{margin-left:-17.334000px;}
._14_c00375{margin-left:-13.692000px;}
._1b_c00375{margin-left:-11.988000px;}
._1e_c00375{margin-left:-10.773000px;}
._10_c00375{margin-left:-9.297000px;}
._11_c00375{margin-left:-8.019000px;}
._5_c00375{margin-left:-6.075000px;}
._2_c00375{margin-left:-4.941000px;}
._c_c00375{margin-left:-3.807000px;}
._8_c00375{margin-left:-2.511000px;}
._a_c00375{margin-left:-1.134000px;}
._20_c00375{width:1.008000px;}
._7_c00375{width:2.025000px;}
._6_c00375{width:3.969000px;}
._1_c00375{width:5.670000px;}
._0_c00375{width:7.209000px;}
._b_c00375{width:8.829000px;}
._3_c00375{width:9.963000px;}
._4_c00375{width:11.097000px;}
._e_c00375{width:12.312000px;}
._16_c00375{width:13.608000px;}
._f_c00375{width:14.661000px;}
._d_c00375{width:15.795000px;}
._9_c00375{width:17.172000px;}
._15_c00375{width:18.576000px;}
._18_c00375{width:28.566000px;}
._13_c00375{width:30.375000px;}
._17_c00375{width:35.838000px;}
._1c_c00375{width:69.174000px;}
._1a_c00375{width:426.276000px;}
.fc2_c00375{color:transparent;}
.fc1_c00375{color:rgb(128,128,128);}
.fc0_c00375{color:rgb(0,0,0);}
.fs8_c00375{font-size:48.000000px;}
.fs3_c00375{font-size:57.000000px;}
.fs1_c00375{font-size:72.000000px;}
.fs2_c00375{font-size:75.000000px;}
.fs4_c00375{font-size:78.000000px;}
.fs0_c00375{font-size:81.000000px;}
.fs6_c00375{font-size:87.000000px;}
.fs7_c00375{font-size:108.000000px;}
.fs5_c00375{font-size:273.000000px;}
.y0_c00375{bottom:0.000000px;}
.y23_c00375{bottom:3.105000px;}
.y22_c00375{bottom:7.228357px;}
.y21_c00375{bottom:64.530000px;}
.y20_c00375{bottom:91.830000px;}
.y1f_c00375{bottom:117.180000px;}
.y1e_c00375{bottom:141.780000px;}
.y1d_c00375{bottom:166.080000px;}
.y1c_c00375{bottom:190.080000px;}
.y1b_c00375{bottom:215.280000px;}
.y1a_c00375{bottom:239.730000px;}
.y19_c00375{bottom:264.330000px;}
.y18_c00375{bottom:288.930000px;}
.y17_c00375{bottom:313.230000px;}
.y16_c00375{bottom:337.830000px;}
.y15_c00375{bottom:362.580000px;}
.y14_c00375{bottom:385.080000px;}
.y13_c00375{bottom:411.180000px;}
.y12_c00375{bottom:435.480000px;}
.y11_c00375{bottom:460.080000px;}
.yf_c00375{bottom:471.780000px;}
.y10_c00375{bottom:483.930000px;}
.ye_c00375{bottom:555.180000px;}
.yd_c00375{bottom:579.780000px;}
.yc_c00375{bottom:627.780000px;}
.yb_c00375{bottom:652.380000px;}
.ya_c00375{bottom:676.980000px;}
.y9_c00375{bottom:701.430000px;}
.y8_c00375{bottom:725.730000px;}
.y7_c00375{bottom:749.880000px;}
.y6_c00375{bottom:774.330000px;}
.y5_c00375{bottom:798.480000px;}
.y4_c00375{bottom:822.780000px;}
.y3_c00375{bottom:847.230000px;}
.y2_c00375{bottom:871.830000px;}
.y1_c00375{bottom:896.130000px;}
.h8_c00375{height:13.200074px;}
.h9_c00375{height:43.804688px;}
.h4_c00375{height:66.713379px;}
.h1_c00375{height:79.497070px;}
.h2_c00375{height:84.269531px;}
.h6_c00375{height:91.176000px;}
.h3_c00375{height:98.756836px;}
.h7_c00375{height:108.843750px;}
.h5_c00375{height:275.132812px;}
.h0_c00375{height:995.250000px;}
.w2_c00375{width:104.875500px;}
.w0_c00375{width:667.425000px;}
.w1_c00375{width:667.500000px;}
.x0_c00375{left:0.000000px;}
.xd_c00375{left:41.550000px;}
.xe_c00375{left:93.750000px;}
.x5_c00375{left:111.000000px;}
.x1_c00375{left:122.400000px;}
.x2_c00375{left:123.450000px;}
.x6_c00375{left:124.500000px;}
.x3_c00375{left:125.550000px;}
.x7_c00375{left:126.600000px;}
.xa_c00375{left:127.650000px;}
.xf_c00375{left:129.600000px;}
.x10_c00375{left:131.250000px;}
.x11_c00375{left:136.050000px;}
.x12_c00375{left:137.400000px;}
.x4_c00375{left:150.450000px;}
.x8_c00375{left:165.450000px;}
.xc_c00375{left:171.150000px;}
.xb_c00375{left:173.250000px;}
.x9_c00375{left:268.650000px;}
.x15_c00375{left:285.526749px;}
.x14_c00375{left:563.250000px;}
.x13_c00375{left:612.900000px;}
@media print{
.v0_c00375{vertical-align:0.000000pt;}
.v1_c00375{vertical-align:129.600000pt;}
.ls1_c00375{letter-spacing:0.000000pt;}
.ls0_c00375{letter-spacing:13.333333pt;}
.ws2_c00375{word-spacing:-60.666667pt;}
.ws3_c00375{word-spacing:-60.165333pt;}
.ws4_c00375{word-spacing:-18.000000pt;}
.ws1_c00375{word-spacing:-16.666667pt;}
.ws0_c00375{word-spacing:-15.424000pt;}
.ws5_c00375{word-spacing:0.000000pt;}
._1d_c00375{margin-left:-22.392000pt;}
._19_c00375{margin-left:-20.538667pt;}
._1f_c00375{margin-left:-17.397333pt;}
._12_c00375{margin-left:-15.408000pt;}
._14_c00375{margin-left:-12.170667pt;}
._1b_c00375{margin-left:-10.656000pt;}
._1e_c00375{margin-left:-9.576000pt;}
._10_c00375{margin-left:-8.264000pt;}
._11_c00375{margin-left:-7.128000pt;}
._5_c00375{margin-left:-5.400000pt;}
._2_c00375{margin-left:-4.392000pt;}
._c_c00375{margin-left:-3.384000pt;}
._8_c00375{margin-left:-2.232000pt;}
._a_c00375{margin-left:-1.008000pt;}
._20_c00375{width:0.896000pt;}
._7_c00375{width:1.800000pt;}
._6_c00375{width:3.528000pt;}
._1_c00375{width:5.040000pt;}
._0_c00375{width:6.408000pt;}
._b_c00375{width:7.848000pt;}
._3_c00375{width:8.856000pt;}
._4_c00375{width:9.864000pt;}
._e_c00375{width:10.944000pt;}
._16_c00375{width:12.096000pt;}
._f_c00375{width:13.032000pt;}
._d_c00375{width:14.040000pt;}
._9_c00375{width:15.264000pt;}
._15_c00375{width:16.512000pt;}
._18_c00375{width:25.392000pt;}
._13_c00375{width:27.000000pt;}
._17_c00375{width:31.856000pt;}
._1c_c00375{width:61.488000pt;}
._1a_c00375{width:378.912000pt;}
.fs8_c00375{font-size:42.666667pt;}
.fs3_c00375{font-size:50.666667pt;}
.fs1_c00375{font-size:64.000000pt;}
.fs2_c00375{font-size:66.666667pt;}
.fs4_c00375{font-size:69.333333pt;}
.fs0_c00375{font-size:72.000000pt;}
.fs6_c00375{font-size:77.333333pt;}
.fs7_c00375{font-size:96.000000pt;}
.fs5_c00375{font-size:242.666667pt;}
.y0_c00375{bottom:0.000000pt;}
.y23_c00375{bottom:2.760000pt;}
.y22_c00375{bottom:6.425206pt;}
.y21_c00375{bottom:57.360000pt;}
.y20_c00375{bottom:81.626667pt;}
.y1f_c00375{bottom:104.160000pt;}
.y1e_c00375{bottom:126.026667pt;}
.y1d_c00375{bottom:147.626667pt;}
.y1c_c00375{bottom:168.960000pt;}
.y1b_c00375{bottom:191.360000pt;}
.y1a_c00375{bottom:213.093333pt;}
.y19_c00375{bottom:234.960000pt;}
.y18_c00375{bottom:256.826667pt;}
.y17_c00375{bottom:278.426667pt;}
.y16_c00375{bottom:300.293333pt;}
.y15_c00375{bottom:322.293333pt;}
.y14_c00375{bottom:342.293333pt;}
.y13_c00375{bottom:365.493333pt;}
.y12_c00375{bottom:387.093333pt;}
.y11_c00375{bottom:408.960000pt;}
.yf_c00375{bottom:419.360000pt;}
.y10_c00375{bottom:430.160000pt;}
.ye_c00375{bottom:493.493333pt;}
.yd_c00375{bottom:515.360000pt;}
.yc_c00375{bottom:558.026667pt;}
.yb_c00375{bottom:579.893333pt;}
.ya_c00375{bottom:601.760000pt;}
.y9_c00375{bottom:623.493333pt;}
.y8_c00375{bottom:645.093333pt;}
.y7_c00375{bottom:666.560000pt;}
.y6_c00375{bottom:688.293333pt;}
.y5_c00375{bottom:709.760000pt;}
.y4_c00375{bottom:731.360000pt;}
.y3_c00375{bottom:753.093333pt;}
.y2_c00375{bottom:774.960000pt;}
.y1_c00375{bottom:796.560000pt;}
.h8_c00375{height:11.733399pt;}
.h9_c00375{height:38.937500pt;}
.h4_c00375{height:59.300781pt;}
.h1_c00375{height:70.664062pt;}
.h2_c00375{height:74.906250pt;}
.h6_c00375{height:81.045333pt;}
.h3_c00375{height:87.783854pt;}
.h7_c00375{height:96.750000pt;}
.h5_c00375{height:244.562500pt;}
.h0_c00375{height:884.666667pt;}
.w2_c00375{width:93.222667pt;}
.w0_c00375{width:593.266667pt;}
.w1_c00375{width:593.333333pt;}
.x0_c00375{left:0.000000pt;}
.xd_c00375{left:36.933333pt;}
.xe_c00375{left:83.333333pt;}
.x5_c00375{left:98.666667pt;}
.x1_c00375{left:108.800000pt;}
.x2_c00375{left:109.733333pt;}
.x6_c00375{left:110.666667pt;}
.x3_c00375{left:111.600000pt;}
.x7_c00375{left:112.533333pt;}
.xa_c00375{left:113.466667pt;}
.xf_c00375{left:115.200000pt;}
.x10_c00375{left:116.666667pt;}
.x11_c00375{left:120.933333pt;}
.x12_c00375{left:122.133333pt;}
.x4_c00375{left:133.733333pt;}
.x8_c00375{left:147.066667pt;}
.xc_c00375{left:152.133333pt;}
.xb_c00375{left:154.000000pt;}
.x9_c00375{left:238.800000pt;}
.x15_c00375{left:253.801554pt;}
.x14_c00375{left:500.666667pt;}
.x13_c00375{left:544.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_65d3ae0fd4ab68ceb9a8083b.woff2')format("woff");}.ff1_c00376{font-family:ff1_c00376;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00376;src:url('chunks/assets/font_c69dacbcea1769983cf9178e.woff2')format("woff");}.ff2_c00376{font-family:ff2_c00376;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00376;src:url('chunks/assets/font_f24dec45fb88c63efb7f7696.woff2')format("woff");}.ff3_c00376{font-family:ff3_c00376;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00376;src:url('chunks/assets/font_04086c579837ce936d7fe170.woff2')format("woff");}.ff4_c00376{font-family:ff4_c00376;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00376;src:url('chunks/assets/font_8a78fb4c2f24ea465f5627d3.woff2')format("woff");}.ff5_c00376{font-family:ff5_c00376;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00376;src:url('chunks/assets/font_fdccf638dda58dbbaec9679f.woff2')format("woff");}.ff6_c00376{font-family:ff6_c00376;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00376;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c00376{font-family:ff7_c00376;line-height:1.219238;font-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_c00376{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,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;}
.ls3_c00376{letter-spacing:-3.000000px;}
.ls2_c00376{letter-spacing:0.000000px;}
.ls0_c00376{letter-spacing:1.500000px;}
.ls4_c00376{letter-spacing:6.000000px;}
.ls1_c00376{letter-spacing:29.646000px;}
.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;}
}
.ws2_c00376{word-spacing:-37.500000px;}
.ws3_c00376{word-spacing:-27.000000px;}
.ws0_c00376{word-spacing:-23.859000px;}
.ws1_c00376{word-spacing:-18.798000px;}
.ws4_c00376{word-spacing:0.000000px;}
._26_c00376{margin-left:-47.925000px;}
._2a_c00376{margin-left:-40.911000px;}
._25_c00376{margin-left:-36.549000px;}
._16_c00376{margin-left:-26.085000px;}
._2c_c00376{margin-left:-24.549000px;}
._27_c00376{margin-left:-23.055000px;}
._23_c00376{margin-left:-21.645000px;}
._24_c00376{margin-left:-19.890000px;}
._d_c00376{margin-left:-18.324000px;}
._14_c00376{margin-left:-17.229000px;}
._11_c00376{margin-left:-14.925000px;}
._13_c00376{margin-left:-13.689000px;}
._f_c00376{margin-left:-12.090000px;}
._9_c00376{margin-left:-10.686000px;}
._c_c00376{margin-left:-9.438000px;}
._a_c00376{margin-left:-8.346000px;}
._e_c00376{margin-left:-7.038000px;}
._5_c00376{margin-left:-6.015000px;}
._7_c00376{margin-left:-4.608000px;}
._10_c00376{margin-left:-3.474000px;}
._4_c00376{margin-left:-2.424000px;}
._b_c00376{margin-left:-1.407000px;}
._3_c00376{width:1.134000px;}
._1_c00376{width:2.376000px;}
._0_c00376{width:4.257000px;}
._2_c00376{width:5.346000px;}
._6_c00376{width:7.350000px;}
._1c_c00376{width:8.790000px;}
._12_c00376{width:9.876000px;}
._17_c00376{width:10.980000px;}
._18_c00376{width:13.041000px;}
._1b_c00376{width:14.274000px;}
._15_c00376{width:15.312000px;}
._1a_c00376{width:17.235000px;}
._21_c00376{width:19.134000px;}
._31_c00376{width:28.512000px;}
._2f_c00376{width:32.190000px;}
._1d_c00376{width:34.791000px;}
._19_c00376{width:38.040000px;}
._8_c00376{width:40.998000px;}
._20_c00376{width:57.711000px;}
._2b_c00376{width:88.590000px;}
._28_c00376{width:111.390000px;}
._30_c00376{width:171.450000px;}
._2d_c00376{width:193.629000px;}
._29_c00376{width:235.185000px;}
._1f_c00376{width:274.380000px;}
._1e_c00376{width:305.904000px;}
._32_c00376{width:330.720000px;}
._2e_c00376{width:398.781000px;}
._22_c00376{width:1042.581000px;}
.fc2_c00376{color:transparent;}
.fc1_c00376{color:rgb(128,128,128);}
.fc0_c00376{color:rgb(0,0,0);}
.fs6_c00376{font-size:36.000000px;}
.fs9_c00376{font-size:48.000000px;}
.fs3_c00376{font-size:66.000000px;}
.fs8_c00376{font-size:72.000000px;}
.fs2_c00376{font-size:75.000000px;}
.fs1_c00376{font-size:78.000000px;}
.fs7_c00376{font-size:81.000000px;}
.fs0_c00376{font-size:99.000000px;}
.fs5_c00376{font-size:108.000000px;}
.fs4_c00376{font-size:117.000000px;}
.y0_c00376{bottom:0.000000px;}
.y26_c00376{bottom:3.105000px;}
.y25_c00376{bottom:7.228371px;}
.y24_c00376{bottom:58.365000px;}
.y23_c00376{bottom:89.115000px;}
.y22_c00376{bottom:113.715000px;}
.y21_c00376{bottom:139.515000px;}
.y20_c00376{bottom:164.415000px;}
.y1f_c00376{bottom:189.465000px;}
.y1e_c00376{bottom:213.765000px;}
.y1d_c00376{bottom:237.915000px;}
.y1c_c00376{bottom:262.365000px;}
.y1b_c00376{bottom:285.915000px;}
.y1a_c00376{bottom:310.815000px;}
.y19_c00376{bottom:335.115000px;}
.y18_c00376{bottom:360.465000px;}
.y17_c00376{bottom:384.765000px;}
.y16_c00376{bottom:407.715000px;}
.y15_c00376{bottom:432.315000px;}
.y14_c00376{bottom:456.615000px;}
.y13_c00376{bottom:481.065000px;}
.y12_c00376{bottom:505.965000px;}
.y11_c00376{bottom:530.265000px;}
.y10_c00376{bottom:554.265000px;}
.yf_c00376{bottom:578.415000px;}
.ye_c00376{bottom:602.565000px;}
.yd_c00376{bottom:626.715000px;}
.yc_c00376{bottom:651.015000px;}
.yb_c00376{bottom:675.315000px;}
.ya_c00376{bottom:699.765000px;}
.y9_c00376{bottom:723.615000px;}
.y8_c00376{bottom:748.665000px;}
.y7_c00376{bottom:772.965000px;}
.y6_c00376{bottom:797.865000px;}
.y5_c00376{bottom:822.165000px;}
.y4_c00376{bottom:846.765000px;}
.y3_c00376{bottom:870.765000px;}
.y2_c00376{bottom:894.465000px;}
.y1_c00376{bottom:929.115000px;}
.h7_c00376{height:13.200074px;}
.h8_c00376{height:43.804688px;}
.h6_c00376{height:84.269531px;}
.h3_c00376{height:98.756836px;}
.h5_c00376{height:108.843750px;}
.h2_c00376{height:115.870605px;}
.h4_c00376{height:136.937988px;}
.h0_c00376{height:989.025000px;}
.h1_c00376{height:989.250000px;}
.w1_c00376{width:104.875500px;}
.w0_c00376{width:672.000000px;}
.x0_c00376{left:0.000000px;}
.x2_c00376{left:38.550000px;}
.x3_c00376{left:40.500000px;}
.x4_c00376{left:42.450000px;}
.x5_c00376{left:44.550000px;}
.x6_c00376{left:46.200000px;}
.x7_c00376{left:47.700000px;}
.x8_c00376{left:49.050000px;}
.x9_c00376{left:50.400000px;}
.xa_c00376{left:51.600000px;}
.xb_c00376{left:52.650000px;}
.xd_c00376{left:54.000000px;}
.xf_c00376{left:55.050000px;}
.xe_c00376{left:57.000000px;}
.x10_c00376{left:58.800000px;}
.x12_c00376{left:59.850000px;}
.xc_c00376{left:79.050000px;}
.x1_c00376{left:97.950000px;}
.x13_c00376{left:117.150000px;}
.x14_c00376{left:130.650000px;}
.x17_c00376{left:287.814240px;}
.x15_c00376{left:336.900000px;}
.x16_c00376{left:371.700000px;}
.x11_c00376{left:526.800000px;}
@media print{
.v0_c00376{vertical-align:0.000000pt;}
.ls3_c00376{letter-spacing:-2.666667pt;}
.ls2_c00376{letter-spacing:0.000000pt;}
.ls0_c00376{letter-spacing:1.333333pt;}
.ls4_c00376{letter-spacing:5.333333pt;}
.ls1_c00376{letter-spacing:26.352000pt;}
.ws2_c00376{word-spacing:-33.333333pt;}
.ws3_c00376{word-spacing:-24.000000pt;}
.ws0_c00376{word-spacing:-21.208000pt;}
.ws1_c00376{word-spacing:-16.709333pt;}
.ws4_c00376{word-spacing:0.000000pt;}
._26_c00376{margin-left:-42.600000pt;}
._2a_c00376{margin-left:-36.365333pt;}
._25_c00376{margin-left:-32.488000pt;}
._16_c00376{margin-left:-23.186667pt;}
._2c_c00376{margin-left:-21.821333pt;}
._27_c00376{margin-left:-20.493333pt;}
._23_c00376{margin-left:-19.240000pt;}
._24_c00376{margin-left:-17.680000pt;}
._d_c00376{margin-left:-16.288000pt;}
._14_c00376{margin-left:-15.314667pt;}
._11_c00376{margin-left:-13.266667pt;}
._13_c00376{margin-left:-12.168000pt;}
._f_c00376{margin-left:-10.746667pt;}
._9_c00376{margin-left:-9.498667pt;}
._c_c00376{margin-left:-8.389333pt;}
._a_c00376{margin-left:-7.418667pt;}
._e_c00376{margin-left:-6.256000pt;}
._5_c00376{margin-left:-5.346667pt;}
._7_c00376{margin-left:-4.096000pt;}
._10_c00376{margin-left:-3.088000pt;}
._4_c00376{margin-left:-2.154667pt;}
._b_c00376{margin-left:-1.250667pt;}
._3_c00376{width:1.008000pt;}
._1_c00376{width:2.112000pt;}
._0_c00376{width:3.784000pt;}
._2_c00376{width:4.752000pt;}
._6_c00376{width:6.533333pt;}
._1c_c00376{width:7.813333pt;}
._12_c00376{width:8.778667pt;}
._17_c00376{width:9.760000pt;}
._18_c00376{width:11.592000pt;}
._1b_c00376{width:12.688000pt;}
._15_c00376{width:13.610667pt;}
._1a_c00376{width:15.320000pt;}
._21_c00376{width:17.008000pt;}
._31_c00376{width:25.344000pt;}
._2f_c00376{width:28.613333pt;}
._1d_c00376{width:30.925333pt;}
._19_c00376{width:33.813333pt;}
._8_c00376{width:36.442667pt;}
._20_c00376{width:51.298667pt;}
._2b_c00376{width:78.746667pt;}
._28_c00376{width:99.013333pt;}
._30_c00376{width:152.400000pt;}
._2d_c00376{width:172.114667pt;}
._29_c00376{width:209.053333pt;}
._1f_c00376{width:243.893333pt;}
._1e_c00376{width:271.914667pt;}
._32_c00376{width:293.973333pt;}
._2e_c00376{width:354.472000pt;}
._22_c00376{width:926.738667pt;}
.fs6_c00376{font-size:32.000000pt;}
.fs9_c00376{font-size:42.666667pt;}
.fs3_c00376{font-size:58.666667pt;}
.fs8_c00376{font-size:64.000000pt;}
.fs2_c00376{font-size:66.666667pt;}
.fs1_c00376{font-size:69.333333pt;}
.fs7_c00376{font-size:72.000000pt;}
.fs0_c00376{font-size:88.000000pt;}
.fs5_c00376{font-size:96.000000pt;}
.fs4_c00376{font-size:104.000000pt;}
.y0_c00376{bottom:0.000000pt;}
.y26_c00376{bottom:2.760000pt;}
.y25_c00376{bottom:6.425219pt;}
.y24_c00376{bottom:51.880000pt;}
.y23_c00376{bottom:79.213333pt;}
.y22_c00376{bottom:101.080000pt;}
.y21_c00376{bottom:124.013333pt;}
.y20_c00376{bottom:146.146667pt;}
.y1f_c00376{bottom:168.413333pt;}
.y1e_c00376{bottom:190.013333pt;}
.y1d_c00376{bottom:211.480000pt;}
.y1c_c00376{bottom:233.213333pt;}
.y1b_c00376{bottom:254.146667pt;}
.y1a_c00376{bottom:276.280000pt;}
.y19_c00376{bottom:297.880000pt;}
.y18_c00376{bottom:320.413333pt;}
.y17_c00376{bottom:342.013333pt;}
.y16_c00376{bottom:362.413333pt;}
.y15_c00376{bottom:384.280000pt;}
.y14_c00376{bottom:405.880000pt;}
.y13_c00376{bottom:427.613333pt;}
.y12_c00376{bottom:449.746667pt;}
.y11_c00376{bottom:471.346667pt;}
.y10_c00376{bottom:492.680000pt;}
.yf_c00376{bottom:514.146667pt;}
.ye_c00376{bottom:535.613333pt;}
.yd_c00376{bottom:557.080000pt;}
.yc_c00376{bottom:578.680000pt;}
.yb_c00376{bottom:600.280000pt;}
.ya_c00376{bottom:622.013333pt;}
.y9_c00376{bottom:643.213333pt;}
.y8_c00376{bottom:665.480000pt;}
.y7_c00376{bottom:687.080000pt;}
.y6_c00376{bottom:709.213333pt;}
.y5_c00376{bottom:730.813333pt;}
.y4_c00376{bottom:752.680000pt;}
.y3_c00376{bottom:774.013333pt;}
.y2_c00376{bottom:795.080000pt;}
.y1_c00376{bottom:825.880000pt;}
.h7_c00376{height:11.733399pt;}
.h8_c00376{height:38.937500pt;}
.h6_c00376{height:74.906250pt;}
.h3_c00376{height:87.783854pt;}
.h5_c00376{height:96.750000pt;}
.h2_c00376{height:102.996094pt;}
.h4_c00376{height:121.722656pt;}
.h0_c00376{height:879.133333pt;}
.h1_c00376{height:879.333333pt;}
.w1_c00376{width:93.222667pt;}
.w0_c00376{width:597.333333pt;}
.x0_c00376{left:0.000000pt;}
.x2_c00376{left:34.266667pt;}
.x3_c00376{left:36.000000pt;}
.x4_c00376{left:37.733333pt;}
.x5_c00376{left:39.600000pt;}
.x6_c00376{left:41.066667pt;}
.x7_c00376{left:42.400000pt;}
.x8_c00376{left:43.600000pt;}
.x9_c00376{left:44.800000pt;}
.xa_c00376{left:45.866667pt;}
.xb_c00376{left:46.800000pt;}
.xd_c00376{left:48.000000pt;}
.xf_c00376{left:48.933333pt;}
.xe_c00376{left:50.666667pt;}
.x10_c00376{left:52.266667pt;}
.x12_c00376{left:53.200000pt;}
.xc_c00376{left:70.266667pt;}
.x1_c00376{left:87.066667pt;}
.x13_c00376{left:104.133333pt;}
.x14_c00376{left:116.133333pt;}
.x17_c00376{left:255.834880pt;}
.x15_c00376{left:299.466667pt;}
.x16_c00376{left:330.400000pt;}
.x11_c00376{left:468.266667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e3bd7344e9edd2ed0231cec0.woff2')format("woff");}.ff1_c00377{font-family:ff1_c00377;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00377;src:url('chunks/assets/font_9a3cf1359f0b9320859cee83.woff2')format("woff");}.ff2_c00377{font-family:ff2_c00377;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00377;src:url('chunks/assets/font_7b68c19fe3ca48c012830b5f.woff2')format("woff");}.ff3_c00377{font-family:ff3_c00377;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00377;src:url('chunks/assets/font_7f7458727c4e2042e665d3ac.woff2')format("woff");}.ff4_c00377{font-family:ff4_c00377;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00377;src:url('chunks/assets/font_31798a39aac8f32cab4d0ee9.woff2')format("woff");}.ff5_c00377{font-family:ff5_c00377;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00377;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c00377{font-family:ff6_c00377;line-height:1.219238;font-style: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;}
.ls2_c00377{letter-spacing:0.000000px;}
.ls1_c00377{letter-spacing:1.170000px;}
.ls0_c00377{letter-spacing:3.000000px;}
.sc__c00377{text-shadow:none;}
.sc0_c00377{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00377{-webkit-text-stroke:0px transparent;}
.sc0_c00377{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00377{word-spacing:-67.686000px;}
.ws0_c00377{word-spacing:-20.250000px;}
.ws4_c00377{word-spacing:-17.352000px;}
.ws3_c00377{word-spacing:-15.093600px;}
.ws2_c00377{word-spacing:-13.737000px;}
.ws5_c00377{word-spacing:0.000000px;}
._19_c00377{margin-left:-24.261000px;}
._1c_c00377{margin-left:-22.098000px;}
._13_c00377{margin-left:-16.929000px;}
._11_c00377{margin-left:-14.094000px;}
._12_c00377{margin-left:-11.907000px;}
._21_c00377{margin-left:-10.767000px;}
._10_c00377{margin-left:-9.315000px;}
._e_c00377{margin-left:-8.295000px;}
._a_c00377{margin-left:-6.561000px;}
._d_c00377{margin-left:-5.265000px;}
._2_c00377{margin-left:-4.050000px;}
._6_c00377{margin-left:-2.268000px;}
._9_c00377{margin-left:-1.134000px;}
._b_c00377{width:1.215000px;}
._3_c00377{width:2.430000px;}
._5_c00377{width:3.564000px;}
._4_c00377{width:4.617000px;}
._15_c00377{width:5.622000px;}
._1_c00377{width:6.642000px;}
._7_c00377{width:7.857000px;}
._0_c00377{width:8.991000px;}
._f_c00377{width:10.530000px;}
._c_c00377{width:11.745000px;}
._16_c00377{width:12.798000px;}
._8_c00377{width:14.661000px;}
._17_c00377{width:16.281000px;}
._1f_c00377{width:19.890000px;}
._22_c00377{width:29.399400px;}
._1d_c00377{width:33.954000px;}
._18_c00377{width:46.668000px;}
._20_c00377{width:52.308000px;}
._1b_c00377{width:84.159000px;}
._1a_c00377{width:152.523000px;}
._14_c00377{width:325.539000px;}
._1e_c00377{width:462.291000px;}
.fc2_c00377{color:transparent;}
.fc1_c00377{color:rgb(128,128,128);}
.fc0_c00377{color:rgb(0,0,0);}
.fs6_c00377{font-size:45.600000px;}
.fs7_c00377{font-size:48.000000px;}
.fs4_c00377{font-size:57.000000px;}
.fs2_c00377{font-size:72.000000px;}
.fs5_c00377{font-size:78.000000px;}
.fs0_c00377{font-size:81.000000px;}
.fs1_c00377{font-size:84.000000px;}
.fs3_c00377{font-size:87.000000px;}
.y0_c00377{bottom:0.000000px;}
.y25_c00377{bottom:3.105000px;}
.y24_c00377{bottom:7.228357px;}
.y23_c00377{bottom:75.330000px;}
.y22_c00377{bottom:97.230000px;}
.y21_c00377{bottom:122.580000px;}
.y20_c00377{bottom:147.180000px;}
.y1f_c00377{bottom:171.480000px;}
.y1e_c00377{bottom:195.780000px;}
.y1d_c00377{bottom:220.080000px;}
.y1c_c00377{bottom:244.980000px;}
.y1b_c00377{bottom:268.980000px;}
.y1a_c00377{bottom:294.030000px;}
.y19_c00377{bottom:318.330000px;}
.y18_c00377{bottom:342.630000px;}
.y17_c00377{bottom:367.530000px;}
.y16_c00377{bottom:392.130000px;}
.y15_c00377{bottom:416.430000px;}
.y14_c00377{bottom:440.880000px;}
.y13_c00377{bottom:465.180000px;}
.y12_c00377{bottom:490.080000px;}
.y11_c00377{bottom:514.080000px;}
.y10_c00377{bottom:538.380000px;}
.yf_c00377{bottom:564.030000px;}
.ye_c00377{bottom:586.530000px;}
.yd_c00377{bottom:610.980000px;}
.yc_c00377{bottom:635.280000px;}
.yb_c00377{bottom:659.880000px;}
.ya_c00377{bottom:683.880000px;}
.y9_c00377{bottom:708.030000px;}
.y8_c00377{bottom:732.480000px;}
.y7_c00377{bottom:756.780000px;}
.y6_c00377{bottom:781.080000px;}
.y5_c00377{bottom:805.380000px;}
.y4_c00377{bottom:830.580000px;}
.y3_c00377{bottom:854.580000px;}
.y2_c00377{bottom:878.580000px;}
.y1_c00377{bottom:903.480000px;}
.h7_c00377{height:13.200074px;}
.h8_c00377{height:43.804688px;}
.h5_c00377{height:66.713379px;}
.h1_c00377{height:79.497070px;}
.h2_c00377{height:82.441406px;}
.h3_c00377{height:84.269531px;}
.h4_c00377{height:91.176000px;}
.h6_c00377{height:98.756836px;}
.h0_c00377{height:995.250000px;}
.w2_c00377{width:104.875500px;}
.w0_c00377{width:667.425000px;}
.w1_c00377{width:667.500000px;}
.x0_c00377{left:0.000000px;}
.xb_c00377{left:13.800000px;}
.x4_c00377{left:16.650000px;}
.x5_c00377{left:18.300000px;}
.x3_c00377{left:22.050000px;}
.xe_c00377{left:94.200000px;}
.xf_c00377{left:99.600000px;}
.xd_c00377{left:105.600000px;}
.x9_c00377{left:108.450000px;}
.x8_c00377{left:109.650000px;}
.x7_c00377{left:111.150000px;}
.x6_c00377{left:112.500000px;}
.x2_c00377{left:114.450000px;}
.x1_c00377{left:115.650000px;}
.xc_c00377{left:120.750000px;}
.x11_c00377{left:285.526749px;}
.xa_c00377{left:295.950000px;}
.x10_c00377{left:548.550000px;}
@media print{
.v0_c00377{vertical-align:0.000000pt;}
.ls2_c00377{letter-spacing:0.000000pt;}
.ls1_c00377{letter-spacing:1.040000pt;}
.ls0_c00377{letter-spacing:2.666667pt;}
.ws1_c00377{word-spacing:-60.165333pt;}
.ws0_c00377{word-spacing:-18.000000pt;}
.ws4_c00377{word-spacing:-15.424000pt;}
.ws3_c00377{word-spacing:-13.416533pt;}
.ws2_c00377{word-spacing:-12.210667pt;}
.ws5_c00377{word-spacing:0.000000pt;}
._19_c00377{margin-left:-21.565333pt;}
._1c_c00377{margin-left:-19.642667pt;}
._13_c00377{margin-left:-15.048000pt;}
._11_c00377{margin-left:-12.528000pt;}
._12_c00377{margin-left:-10.584000pt;}
._21_c00377{margin-left:-9.570667pt;}
._10_c00377{margin-left:-8.280000pt;}
._e_c00377{margin-left:-7.373333pt;}
._a_c00377{margin-left:-5.832000pt;}
._d_c00377{margin-left:-4.680000pt;}
._2_c00377{margin-left:-3.600000pt;}
._6_c00377{margin-left:-2.016000pt;}
._9_c00377{margin-left:-1.008000pt;}
._b_c00377{width:1.080000pt;}
._3_c00377{width:2.160000pt;}
._5_c00377{width:3.168000pt;}
._4_c00377{width:4.104000pt;}
._15_c00377{width:4.997333pt;}
._1_c00377{width:5.904000pt;}
._7_c00377{width:6.984000pt;}
._0_c00377{width:7.992000pt;}
._f_c00377{width:9.360000pt;}
._c_c00377{width:10.440000pt;}
._16_c00377{width:11.376000pt;}
._8_c00377{width:13.032000pt;}
._17_c00377{width:14.472000pt;}
._1f_c00377{width:17.680000pt;}
._22_c00377{width:26.132800pt;}
._1d_c00377{width:30.181333pt;}
._18_c00377{width:41.482667pt;}
._20_c00377{width:46.496000pt;}
._1b_c00377{width:74.808000pt;}
._1a_c00377{width:135.576000pt;}
._14_c00377{width:289.368000pt;}
._1e_c00377{width:410.925333pt;}
.fs6_c00377{font-size:40.533333pt;}
.fs7_c00377{font-size:42.666667pt;}
.fs4_c00377{font-size:50.666667pt;}
.fs2_c00377{font-size:64.000000pt;}
.fs5_c00377{font-size:69.333333pt;}
.fs0_c00377{font-size:72.000000pt;}
.fs1_c00377{font-size:74.666667pt;}
.fs3_c00377{font-size:77.333333pt;}
.y0_c00377{bottom:0.000000pt;}
.y25_c00377{bottom:2.760000pt;}
.y24_c00377{bottom:6.425206pt;}
.y23_c00377{bottom:66.960000pt;}
.y22_c00377{bottom:86.426667pt;}
.y21_c00377{bottom:108.960000pt;}
.y20_c00377{bottom:130.826667pt;}
.y1f_c00377{bottom:152.426667pt;}
.y1e_c00377{bottom:174.026667pt;}
.y1d_c00377{bottom:195.626667pt;}
.y1c_c00377{bottom:217.760000pt;}
.y1b_c00377{bottom:239.093333pt;}
.y1a_c00377{bottom:261.360000pt;}
.y19_c00377{bottom:282.960000pt;}
.y18_c00377{bottom:304.560000pt;}
.y17_c00377{bottom:326.693333pt;}
.y16_c00377{bottom:348.560000pt;}
.y15_c00377{bottom:370.160000pt;}
.y14_c00377{bottom:391.893333pt;}
.y13_c00377{bottom:413.493333pt;}
.y12_c00377{bottom:435.626667pt;}
.y11_c00377{bottom:456.960000pt;}
.y10_c00377{bottom:478.560000pt;}
.yf_c00377{bottom:501.360000pt;}
.ye_c00377{bottom:521.360000pt;}
.yd_c00377{bottom:543.093333pt;}
.yc_c00377{bottom:564.693333pt;}
.yb_c00377{bottom:586.560000pt;}
.ya_c00377{bottom:607.893333pt;}
.y9_c00377{bottom:629.360000pt;}
.y8_c00377{bottom:651.093333pt;}
.y7_c00377{bottom:672.693333pt;}
.y6_c00377{bottom:694.293333pt;}
.y5_c00377{bottom:715.893333pt;}
.y4_c00377{bottom:738.293333pt;}
.y3_c00377{bottom:759.626667pt;}
.y2_c00377{bottom:780.960000pt;}
.y1_c00377{bottom:803.093333pt;}
.h7_c00377{height:11.733399pt;}
.h8_c00377{height:38.937500pt;}
.h5_c00377{height:59.300781pt;}
.h1_c00377{height:70.664062pt;}
.h2_c00377{height:73.281250pt;}
.h3_c00377{height:74.906250pt;}
.h4_c00377{height:81.045333pt;}
.h6_c00377{height:87.783854pt;}
.h0_c00377{height:884.666667pt;}
.w2_c00377{width:93.222667pt;}
.w0_c00377{width:593.266667pt;}
.w1_c00377{width:593.333333pt;}
.x0_c00377{left:0.000000pt;}
.xb_c00377{left:12.266667pt;}
.x4_c00377{left:14.800000pt;}
.x5_c00377{left:16.266667pt;}
.x3_c00377{left:19.600000pt;}
.xe_c00377{left:83.733333pt;}
.xf_c00377{left:88.533333pt;}
.xd_c00377{left:93.866667pt;}
.x9_c00377{left:96.400000pt;}
.x8_c00377{left:97.466667pt;}
.x7_c00377{left:98.800000pt;}
.x6_c00377{left:100.000000pt;}
.x2_c00377{left:101.733333pt;}
.x1_c00377{left:102.800000pt;}
.xc_c00377{left:107.333333pt;}
.x11_c00377{left:253.801554pt;}
.xa_c00377{left:263.066667pt;}
.x10_c00377{left:487.600000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_35eb9ce8663564f4dce17d8d.woff2')format("woff");}.ff1_c00378{font-family:ff1_c00378;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00378;src:url('chunks/assets/font_41adda578a8e861809c3fedb.woff2')format("woff");}.ff2_c00378{font-family:ff2_c00378;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00378;src:url('chunks/assets/font_af655e723d19c82ae1fb2571.woff2')format("woff");}.ff3_c00378{font-family:ff3_c00378;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00378;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff4_c00378{font-family:ff4_c00378;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00378;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c00378{font-family:ff5_c00378;line-height:1.219238;font-style: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;}
.ls0_c00378{letter-spacing:0.000000px;}
.sc__c00378{text-shadow:none;}
.sc0_c00378{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00378{-webkit-text-stroke:0px transparent;}
.sc0_c00378{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00378{word-spacing:-17.352000px;}
.ws0_c00378{word-spacing:-15.750000px;}
.ws2_c00378{word-spacing:0.000000px;}
._17_c00378{margin-left:-13.908000px;}
._18_c00378{margin-left:-12.357000px;}
._10_c00378{margin-left:-11.328000px;}
._19_c00378{margin-left:-10.287000px;}
._5_c00378{margin-left:-9.108000px;}
._1a_c00378{margin-left:-8.106000px;}
._1_c00378{margin-left:-6.831000px;}
._12_c00378{margin-left:-5.508000px;}
._15_c00378{margin-left:-4.503000px;}
._4_c00378{margin-left:-3.366000px;}
._6_c00378{margin-left:-2.178000px;}
._3_c00378{margin-left:-1.089000px;}
._0_c00378{width:1.683000px;}
._e_c00378{width:3.057000px;}
._d_c00378{width:4.359000px;}
._2_c00378{width:5.445000px;}
._c_c00378{width:6.468000px;}
._b_c00378{width:8.037000px;}
._a_c00378{width:9.291000px;}
._9_c00378{width:11.343000px;}
._13_c00378{width:12.624000px;}
._8_c00378{width:14.652000px;}
._f_c00378{width:16.113000px;}
._14_c00378{width:17.163000px;}
._11_c00378{width:18.378000px;}
._16_c00378{width:20.364000px;}
._7_c00378{width:47.817000px;}
.fc2_c00378{color:transparent;}
.fc1_c00378{color:rgb(128,128,128);}
.fc0_c00378{color:rgb(0,0,0);}
.fs6_c00378{font-size:48.000000px;}
.fs1_c00378{font-size:57.000000px;}
.fs3_c00378{font-size:63.000000px;}
.fs5_c00378{font-size:69.000000px;}
.fs2_c00378{font-size:72.000000px;}
.fs4_c00378{font-size:78.000000px;}
.fs0_c00378{font-size:99.000000px;}
.y0_c00378{bottom:0.000000px;}
.y26_c00378{bottom:3.105000px;}
.y25_c00378{bottom:7.228371px;}
.y24_c00378{bottom:73.665000px;}
.y23_c00378{bottom:96.165000px;}
.y22_c00378{bottom:121.815000px;}
.y21_c00378{bottom:146.265000px;}
.y20_c00378{bottom:170.565000px;}
.y1f_c00378{bottom:194.865000px;}
.y1e_c00378{bottom:219.465000px;}
.y1d_c00378{bottom:243.765000px;}
.y1c_c00378{bottom:268.665000px;}
.y1b_c00378{bottom:293.265000px;}
.y1a_c00378{bottom:317.265000px;}
.y19_c00378{bottom:341.265000px;}
.y18_c00378{bottom:365.865000px;}
.y17_c00378{bottom:390.165000px;}
.y16_c00378{bottom:414.165000px;}
.y15_c00378{bottom:438.765000px;}
.y14_c00378{bottom:462.765000px;}
.y13_c00378{bottom:487.065000px;}
.y12_c00378{bottom:511.365000px;}
.y11_c00378{bottom:535.665000px;}
.y10_c00378{bottom:560.265000px;}
.yf_c00378{bottom:583.965000px;}
.ye_c00378{bottom:607.965000px;}
.yd_c00378{bottom:632.265000px;}
.yc_c00378{bottom:656.415000px;}
.yb_c00378{bottom:680.715000px;}
.ya_c00378{bottom:705.015000px;}
.y9_c00378{bottom:729.165000px;}
.y8_c00378{bottom:753.615000px;}
.y7_c00378{bottom:778.065000px;}
.y6_c00378{bottom:802.365000px;}
.y5_c00378{bottom:826.965000px;}
.y4_c00378{bottom:850.815000px;}
.y3_c00378{bottom:875.565000px;}
.y2_c00378{bottom:901.215000px;}
.y1_c00378{bottom:934.665000px;}
.h8_c00378{height:13.200074px;}
.h9_c00378{height:43.804688px;}
.h5_c00378{height:66.713379px;}
.h3_c00378{height:72.168457px;}
.h6_c00378{height:72.768457px;}
.h4_c00378{height:84.269531px;}
.h7_c00378{height:98.756836px;}
.h2_c00378{height:115.870605px;}
.h0_c00378{height:989.025000px;}
.h1_c00378{height:989.250000px;}
.w1_c00378{width:104.875500px;}
.w0_c00378{width:672.000000px;}
.x0_c00378{left:0.000000px;}
.x2_c00378{left:44.550000px;}
.x3_c00378{left:46.200000px;}
.x4_c00378{left:47.250000px;}
.x5_c00378{left:48.900000px;}
.x6_c00378{left:49.950000px;}
.x7_c00378{left:51.000000px;}
.x8_c00378{left:52.050000px;}
.x9_c00378{left:54.000000px;}
.xa_c00378{left:55.800000px;}
.x1_c00378{left:100.800000px;}
.xc_c00378{left:287.814240px;}
.xb_c00378{left:508.950000px;}
@media print{
.v0_c00378{vertical-align:0.000000pt;}
.ls0_c00378{letter-spacing:0.000000pt;}
.ws1_c00378{word-spacing:-15.424000pt;}
.ws0_c00378{word-spacing:-14.000000pt;}
.ws2_c00378{word-spacing:0.000000pt;}
._17_c00378{margin-left:-12.362667pt;}
._18_c00378{margin-left:-10.984000pt;}
._10_c00378{margin-left:-10.069333pt;}
._19_c00378{margin-left:-9.144000pt;}
._5_c00378{margin-left:-8.096000pt;}
._1a_c00378{margin-left:-7.205333pt;}
._1_c00378{margin-left:-6.072000pt;}
._12_c00378{margin-left:-4.896000pt;}
._15_c00378{margin-left:-4.002667pt;}
._4_c00378{margin-left:-2.992000pt;}
._6_c00378{margin-left:-1.936000pt;}
._3_c00378{margin-left:-0.968000pt;}
._0_c00378{width:1.496000pt;}
._e_c00378{width:2.717333pt;}
._d_c00378{width:3.874667pt;}
._2_c00378{width:4.840000pt;}
._c_c00378{width:5.749333pt;}
._b_c00378{width:7.144000pt;}
._a_c00378{width:8.258667pt;}
._9_c00378{width:10.082667pt;}
._13_c00378{width:11.221333pt;}
._8_c00378{width:13.024000pt;}
._f_c00378{width:14.322667pt;}
._14_c00378{width:15.256000pt;}
._11_c00378{width:16.336000pt;}
._16_c00378{width:18.101333pt;}
._7_c00378{width:42.504000pt;}
.fs6_c00378{font-size:42.666667pt;}
.fs1_c00378{font-size:50.666667pt;}
.fs3_c00378{font-size:56.000000pt;}
.fs5_c00378{font-size:61.333333pt;}
.fs2_c00378{font-size:64.000000pt;}
.fs4_c00378{font-size:69.333333pt;}
.fs0_c00378{font-size:88.000000pt;}
.y0_c00378{bottom:0.000000pt;}
.y26_c00378{bottom:2.760000pt;}
.y25_c00378{bottom:6.425219pt;}
.y24_c00378{bottom:65.480000pt;}
.y23_c00378{bottom:85.480000pt;}
.y22_c00378{bottom:108.280000pt;}
.y21_c00378{bottom:130.013333pt;}
.y20_c00378{bottom:151.613333pt;}
.y1f_c00378{bottom:173.213333pt;}
.y1e_c00378{bottom:195.080000pt;}
.y1d_c00378{bottom:216.680000pt;}
.y1c_c00378{bottom:238.813333pt;}
.y1b_c00378{bottom:260.680000pt;}
.y1a_c00378{bottom:282.013333pt;}
.y19_c00378{bottom:303.346667pt;}
.y18_c00378{bottom:325.213333pt;}
.y17_c00378{bottom:346.813333pt;}
.y16_c00378{bottom:368.146667pt;}
.y15_c00378{bottom:390.013333pt;}
.y14_c00378{bottom:411.346667pt;}
.y13_c00378{bottom:432.946667pt;}
.y12_c00378{bottom:454.546667pt;}
.y11_c00378{bottom:476.146667pt;}
.y10_c00378{bottom:498.013333pt;}
.yf_c00378{bottom:519.080000pt;}
.ye_c00378{bottom:540.413333pt;}
.yd_c00378{bottom:562.013333pt;}
.yc_c00378{bottom:583.480000pt;}
.yb_c00378{bottom:605.080000pt;}
.ya_c00378{bottom:626.680000pt;}
.y9_c00378{bottom:648.146667pt;}
.y8_c00378{bottom:669.880000pt;}
.y7_c00378{bottom:691.613333pt;}
.y6_c00378{bottom:713.213333pt;}
.y5_c00378{bottom:735.080000pt;}
.y4_c00378{bottom:756.280000pt;}
.y3_c00378{bottom:778.280000pt;}
.y2_c00378{bottom:801.080000pt;}
.y1_c00378{bottom:830.813333pt;}
.h8_c00378{height:11.733399pt;}
.h9_c00378{height:38.937500pt;}
.h5_c00378{height:59.300781pt;}
.h3_c00378{height:64.149740pt;}
.h6_c00378{height:64.683073pt;}
.h4_c00378{height:74.906250pt;}
.h7_c00378{height:87.783854pt;}
.h2_c00378{height:102.996094pt;}
.h0_c00378{height:879.133333pt;}
.h1_c00378{height:879.333333pt;}
.w1_c00378{width:93.222667pt;}
.w0_c00378{width:597.333333pt;}
.x0_c00378{left:0.000000pt;}
.x2_c00378{left:39.600000pt;}
.x3_c00378{left:41.066667pt;}
.x4_c00378{left:42.000000pt;}
.x5_c00378{left:43.466667pt;}
.x6_c00378{left:44.400000pt;}
.x7_c00378{left:45.333333pt;}
.x8_c00378{left:46.266667pt;}
.x9_c00378{left:48.000000pt;}
.xa_c00378{left:49.600000pt;}
.x1_c00378{left:89.600000pt;}
.xc_c00378{left:255.834880pt;}
.xb_c00378{left:452.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_f545fbb015e6b28e132c986b.woff2')format("woff");}.ff1_c00379{font-family:ff1_c00379;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00379;src:url('chunks/assets/font_351b43f315a0c6ff0c62cd50.woff2')format("woff");}.ff2_c00379{font-family:ff2_c00379;line-height:1.437000;font-style:normal;font-weight:normal;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_ad6d7f4fddbc3c24802baf50.woff2')format("woff");}.ff3_c00379{font-family:ff3_c00379;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00379;src:url('chunks/assets/font_1fc4daf11b18e45ec004354a.woff2')format("woff");}.ff4_c00379{font-family:ff4_c00379;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00379;src:url('chunks/assets/font_94cf747f2a127dc53b694c08.woff2')format("woff");}.ff5_c00379{font-family:ff5_c00379;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00379;src:url('chunks/assets/font_f530d73717e54610689c29a1.woff2')format("woff");}.ff6_c00379{font-family:ff6_c00379;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00379;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c00379{font-family:ff7_c00379;line-height:1.219238;font-style: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;}
.ls4_c00379{letter-spacing:-6.000000px;}
.ls3_c00379{letter-spacing:0.000000px;}
.ls2_c00379{letter-spacing:0.150000px;}
.ls1_c00379{letter-spacing:0.900000px;}
.ls0_c00379{letter-spacing:221.988000px;}
.sc__c00379{text-shadow:none;}
.sc0_c00379{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00379{-webkit-text-stroke:0px transparent;}
.sc0_c00379{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00379{word-spacing:-20.250000px;}
.ws1_c00379{word-spacing:-17.352000px;}
.ws2_c00379{word-spacing:-13.800000px;}
.ws4_c00379{word-spacing:0.000000px;}
.ws0_c00379{word-spacing:5.895000px;}
._1e_c00379{margin-left:-28.674000px;}
._19_c00379{margin-left:-25.191000px;}
._17_c00379{margin-left:-23.085000px;}
._1a_c00379{margin-left:-21.753000px;}
._24_c00379{margin-left:-20.748000px;}
._1_c00379{margin-left:-15.660000px;}
._e_c00379{margin-left:-13.905000px;}
._f_c00379{margin-left:-11.742000px;}
._1f_c00379{margin-left:-10.101000px;}
._c_c00379{margin-left:-9.063000px;}
._1c_c00379{margin-left:-7.911000px;}
._9_c00379{margin-left:-6.831000px;}
._8_c00379{margin-left:-5.247000px;}
._4_c00379{margin-left:-3.384000px;}
._3_c00379{margin-left:-1.971000px;}
._a_c00379{width:1.584000px;}
._7_c00379{width:3.564000px;}
._5_c00379{width:5.157000px;}
._6_c00379{width:7.029000px;}
._11_c00379{width:8.040000px;}
._b_c00379{width:9.135000px;}
._d_c00379{width:10.164000px;}
._10_c00379{width:11.202000px;}
._16_c00379{width:13.041000px;}
._12_c00379{width:15.030000px;}
._14_c00379{width:16.560000px;}
._13_c00379{width:17.799000px;}
._2_c00379{width:19.845000px;}
._1d_c00379{width:21.768000px;}
._22_c00379{width:22.845000px;}
._15_c00379{width:24.327000px;}
._0_c00379{width:29.304000px;}
._20_c00379{width:32.148000px;}
._23_c00379{width:33.330000px;}
._21_c00379{width:34.668000px;}
._1b_c00379{width:45.441000px;}
._18_c00379{width:143.532000px;}
._25_c00379{width:156.735000px;}
.fc2_c00379{color:transparent;}
.fc1_c00379{color:rgb(128,128,128);}
.fc0_c00379{color:rgb(0,0,0);}
.fsa_c00379{font-size:48.000000px;}
.fs8_c00379{font-size:55.200000px;}
.fs3_c00379{font-size:57.000000px;}
.fs4_c00379{font-size:63.000000px;}
.fs9_c00379{font-size:69.000000px;}
.fs7_c00379{font-size:72.000000px;}
.fs5_c00379{font-size:78.000000px;}
.fs6_c00379{font-size:81.000000px;}
.fs2_c00379{font-size:99.000000px;}
.fs1_c00379{font-size:105.000000px;}
.fs0_c00379{font-size:132.000000px;}
.y0_c00379{bottom:0.000000px;}
.y26_c00379{bottom:3.105000px;}
.y25_c00379{bottom:7.228369px;}
.y24_c00379{bottom:70.170000px;}
.y23_c00379{bottom:93.720000px;}
.y22_c00379{bottom:118.770000px;}
.y21_c00379{bottom:144.120000px;}
.y20_c00379{bottom:169.320000px;}
.y1f_c00379{bottom:193.020000px;}
.y1e_c00379{bottom:217.920000px;}
.y1d_c00379{bottom:241.920000px;}
.y1c_c00379{bottom:266.970000px;}
.y1b_c00379{bottom:291.270000px;}
.y1a_c00379{bottom:315.570000px;}
.y19_c00379{bottom:340.170000px;}
.y18_c00379{bottom:364.770000px;}
.y17_c00379{bottom:388.020000px;}
.y16_c00379{bottom:413.670000px;}
.y15_c00379{bottom:437.970000px;}
.y14_c00379{bottom:464.070000px;}
.y13_c00379{bottom:486.570000px;}
.y12_c00379{bottom:511.020000px;}
.y11_c00379{bottom:534.870000px;}
.y10_c00379{bottom:559.170000px;}
.yf_c00379{bottom:583.920000px;}
.ye_c00379{bottom:606.120000px;}
.yd_c00379{bottom:632.070000px;}
.yc_c00379{bottom:656.670000px;}
.yb_c00379{bottom:681.120000px;}
.ya_c00379{bottom:705.420000px;}
.y9_c00379{bottom:730.020000px;}
.y8_c00379{bottom:754.320000px;}
.y7_c00379{bottom:778.920000px;}
.y6_c00379{bottom:803.220000px;}
.y5_c00379{bottom:827.520000px;}
.y4_c00379{bottom:852.870000px;}
.y3_c00379{bottom:876.720000px;}
.y2_c00379{bottom:901.020000px;}
.y1_c00379{bottom:936.570000px;}
.h9_c00379{height:13.200073px;}
.ha_c00379{height:43.804688px;}
.h5_c00379{height:66.713379px;}
.h3_c00379{height:72.168457px;}
.h6_c00379{height:79.497070px;}
.h7_c00379{height:84.269531px;}
.h8_c00379{height:91.160156px;}
.h4_c00379{height:98.756836px;}
.h2_c00379{height:167.126953px;}
.h1_c00379{height:986.250000px;}
.h0_c00379{height:986.550000px;}
.w1_c00379{width:104.875500px;}
.w0_c00379{width:661.500000px;}
.x0_c00379{left:0.000000px;}
.xe_c00379{left:18.600000px;}
.xc_c00379{left:21.900000px;}
.x7_c00379{left:23.250000px;}
.x8_c00379{left:48.300000px;}
.xa_c00379{left:57.000000px;}
.x3_c00379{left:96.150000px;}
.xb_c00379{left:108.900000px;}
.xd_c00379{left:110.400000px;}
.x6_c00379{left:111.600000px;}
.x4_c00379{left:112.650000px;}
.x1_c00379{left:113.700000px;}
.x2_c00379{left:114.750000px;}
.x9_c00379{left:115.800000px;}
.x5_c00379{left:138.300000px;}
.x10_c00379{left:282.564240px;}
.xf_c00379{left:565.950000px;}
@media print{
.v0_c00379{vertical-align:0.000000pt;}
.ls4_c00379{letter-spacing:-5.333333pt;}
.ls3_c00379{letter-spacing:0.000000pt;}
.ls2_c00379{letter-spacing:0.133333pt;}
.ls1_c00379{letter-spacing:0.800000pt;}
.ls0_c00379{letter-spacing:197.322667pt;}
.ws3_c00379{word-spacing:-18.000000pt;}
.ws1_c00379{word-spacing:-15.424000pt;}
.ws2_c00379{word-spacing:-12.266667pt;}
.ws4_c00379{word-spacing:0.000000pt;}
.ws0_c00379{word-spacing:5.240000pt;}
._1e_c00379{margin-left:-25.488000pt;}
._19_c00379{margin-left:-22.392000pt;}
._17_c00379{margin-left:-20.520000pt;}
._1a_c00379{margin-left:-19.336000pt;}
._24_c00379{margin-left:-18.442667pt;}
._1_c00379{margin-left:-13.920000pt;}
._e_c00379{margin-left:-12.360000pt;}
._f_c00379{margin-left:-10.437333pt;}
._1f_c00379{margin-left:-8.978667pt;}
._c_c00379{margin-left:-8.056000pt;}
._1c_c00379{margin-left:-7.032000pt;}
._9_c00379{margin-left:-6.072000pt;}
._8_c00379{margin-left:-4.664000pt;}
._4_c00379{margin-left:-3.008000pt;}
._3_c00379{margin-left:-1.752000pt;}
._a_c00379{width:1.408000pt;}
._7_c00379{width:3.168000pt;}
._5_c00379{width:4.584000pt;}
._6_c00379{width:6.248000pt;}
._11_c00379{width:7.146667pt;}
._b_c00379{width:8.120000pt;}
._d_c00379{width:9.034667pt;}
._10_c00379{width:9.957333pt;}
._16_c00379{width:11.592000pt;}
._12_c00379{width:13.360000pt;}
._14_c00379{width:14.720000pt;}
._13_c00379{width:15.821333pt;}
._2_c00379{width:17.640000pt;}
._1d_c00379{width:19.349333pt;}
._22_c00379{width:20.306667pt;}
._15_c00379{width:21.624000pt;}
._0_c00379{width:26.048000pt;}
._20_c00379{width:28.576000pt;}
._23_c00379{width:29.626667pt;}
._21_c00379{width:30.816000pt;}
._1b_c00379{width:40.392000pt;}
._18_c00379{width:127.584000pt;}
._25_c00379{width:139.320000pt;}
.fsa_c00379{font-size:42.666667pt;}
.fs8_c00379{font-size:49.066667pt;}
.fs3_c00379{font-size:50.666667pt;}
.fs4_c00379{font-size:56.000000pt;}
.fs9_c00379{font-size:61.333333pt;}
.fs7_c00379{font-size:64.000000pt;}
.fs5_c00379{font-size:69.333333pt;}
.fs6_c00379{font-size:72.000000pt;}
.fs2_c00379{font-size:88.000000pt;}
.fs1_c00379{font-size:93.333333pt;}
.fs0_c00379{font-size:117.333333pt;}
.y0_c00379{bottom:0.000000pt;}
.y26_c00379{bottom:2.760000pt;}
.y25_c00379{bottom:6.425217pt;}
.y24_c00379{bottom:62.373333pt;}
.y23_c00379{bottom:83.306667pt;}
.y22_c00379{bottom:105.573333pt;}
.y21_c00379{bottom:128.106667pt;}
.y20_c00379{bottom:150.506667pt;}
.y1f_c00379{bottom:171.573333pt;}
.y1e_c00379{bottom:193.706667pt;}
.y1d_c00379{bottom:215.040000pt;}
.y1c_c00379{bottom:237.306667pt;}
.y1b_c00379{bottom:258.906667pt;}
.y1a_c00379{bottom:280.506667pt;}
.y19_c00379{bottom:302.373333pt;}
.y18_c00379{bottom:324.240000pt;}
.y17_c00379{bottom:344.906667pt;}
.y16_c00379{bottom:367.706667pt;}
.y15_c00379{bottom:389.306667pt;}
.y14_c00379{bottom:412.506667pt;}
.y13_c00379{bottom:432.506667pt;}
.y12_c00379{bottom:454.240000pt;}
.y11_c00379{bottom:475.440000pt;}
.y10_c00379{bottom:497.040000pt;}
.yf_c00379{bottom:519.040000pt;}
.ye_c00379{bottom:538.773333pt;}
.yd_c00379{bottom:561.840000pt;}
.yc_c00379{bottom:583.706667pt;}
.yb_c00379{bottom:605.440000pt;}
.ya_c00379{bottom:627.040000pt;}
.y9_c00379{bottom:648.906667pt;}
.y8_c00379{bottom:670.506667pt;}
.y7_c00379{bottom:692.373333pt;}
.y6_c00379{bottom:713.973333pt;}
.y5_c00379{bottom:735.573333pt;}
.y4_c00379{bottom:758.106667pt;}
.y3_c00379{bottom:779.306667pt;}
.y2_c00379{bottom:800.906667pt;}
.y1_c00379{bottom:832.506667pt;}
.h9_c00379{height:11.733399pt;}
.ha_c00379{height:38.937500pt;}
.h5_c00379{height:59.300781pt;}
.h3_c00379{height:64.149740pt;}
.h6_c00379{height:70.664062pt;}
.h7_c00379{height:74.906250pt;}
.h8_c00379{height:81.031250pt;}
.h4_c00379{height:87.783854pt;}
.h2_c00379{height:148.557292pt;}
.h1_c00379{height:876.666667pt;}
.h0_c00379{height:876.933333pt;}
.w1_c00379{width:93.222667pt;}
.w0_c00379{width:588.000000pt;}
.x0_c00379{left:0.000000pt;}
.xe_c00379{left:16.533333pt;}
.xc_c00379{left:19.466667pt;}
.x7_c00379{left:20.666667pt;}
.x8_c00379{left:42.933333pt;}
.xa_c00379{left:50.666667pt;}
.x3_c00379{left:85.466667pt;}
.xb_c00379{left:96.800000pt;}
.xd_c00379{left:98.133333pt;}
.x6_c00379{left:99.200000pt;}
.x4_c00379{left:100.133333pt;}
.x1_c00379{left:101.066667pt;}
.x2_c00379{left:102.000000pt;}
.x9_c00379{left:102.933333pt;}
.x5_c00379{left:122.933333pt;}
.x10_c00379{left:251.168213pt;}
.xf_c00379{left:503.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_b51496f1a05424282637b610.woff2')format("woff");}.ff1_c00380{font-family:ff1_c00380;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00380;src:url('chunks/assets/font_f6a4439ba3646abbe9ed43b5.woff2')format("woff");}.ff2_c00380{font-family:ff2_c00380;line-height:1.311035;font-style:normal;font-weight:normal;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_66a651b632e1730c796deac6.woff2')format("woff");}.ff3_c00380{font-family:ff3_c00380;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00380;src:url('chunks/assets/font_58dbe87b280c24cfdef07551.woff2')format("woff");}.ff4_c00380{font-family:ff4_c00380;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00380;src:url('chunks/assets/font_a7b7fbd36a9801dd28b66b4f.woff2')format("woff");}.ff5_c00380{font-family:ff5_c00380;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00380;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c00380{font-family:ff6_c00380;line-height:1.219238;font-style: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;}
.ls3_c00380{letter-spacing:0.000000px;}
.ls1_c00380{letter-spacing:0.900000px;}
.ls0_c00380{letter-spacing:3.000000px;}
.ls2_c00380{letter-spacing:6.000000px;}
.sc__c00380{text-shadow:none;}
.sc0_c00380{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00380{-webkit-text-stroke:0px transparent;}
.sc0_c00380{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00380{word-spacing:-28.500000px;}
.ws1_c00380{word-spacing:0.000000px;}
._16_c00380{margin-left:-37.032000px;}
._9_c00380{margin-left:-23.340000px;}
._1c_c00380{margin-left:-14.850000px;}
._2_c00380{margin-left:-13.770000px;}
._0_c00380{margin-left:-9.261000px;}
._3_c00380{margin-left:-7.854000px;}
._15_c00380{margin-left:-6.663000px;}
._8_c00380{margin-left:-5.424000px;}
._f_c00380{margin-left:-4.314000px;}
._6_c00380{margin-left:-3.081000px;}
._7_c00380{margin-left:-2.040000px;}
._14_c00380{margin-left:-1.038000px;}
._13_c00380{width:1.086000px;}
._4_c00380{width:2.142000px;}
._5_c00380{width:3.264000px;}
._b_c00380{width:4.464000px;}
._c_c00380{width:5.598000px;}
._d_c00380{width:6.648000px;}
._e_c00380{width:8.145000px;}
._12_c00380{width:9.963000px;}
._1e_c00380{width:10.980000px;}
._10_c00380{width:12.021000px;}
._11_c00380{width:13.191000px;}
._1_c00380{width:15.033000px;}
._a_c00380{width:16.545000px;}
._19_c00380{width:18.135000px;}
._17_c00380{width:19.380000px;}
._1a_c00380{width:23.289000px;}
._1b_c00380{width:24.774000px;}
._18_c00380{width:26.883000px;}
._1d_c00380{width:29.760000px;}
.fc2_c00380{color:transparent;}
.fc1_c00380{color:rgb(128,128,128);}
.fc0_c00380{color:rgb(0,0,0);}
.fs5_c00380{font-size:48.000000px;}
.fs4_c00380{font-size:60.000000px;}
.fs3_c00380{font-size:72.000000px;}
.fs2_c00380{font-size:81.000000px;}
.fs1_c00380{font-size:87.000000px;}
.fs0_c00380{font-size:102.000000px;}
.y0_c00380{bottom:0.000000px;}
.y24_c00380{bottom:3.105000px;}
.y23_c00380{bottom:7.228363px;}
.y22_c00380{bottom:85.650000px;}
.y21_c00380{bottom:111.150000px;}
.y20_c00380{bottom:136.650000px;}
.y1f_c00380{bottom:161.400000px;}
.y1e_c00380{bottom:186.000000px;}
.y1d_c00380{bottom:210.600000px;}
.y1c_c00380{bottom:237.900000px;}
.y1b_c00380{bottom:267.000000px;}
.y1a_c00380{bottom:296.250000px;}
.y19_c00380{bottom:325.050000px;}
.y18_c00380{bottom:357.000000px;}
.y17_c00380{bottom:381.000000px;}
.y16_c00380{bottom:405.450000px;}
.y15_c00380{bottom:429.900000px;}
.y14_c00380{bottom:453.900000px;}
.y13_c00380{bottom:478.200000px;}
.y12_c00380{bottom:502.500000px;}
.y11_c00380{bottom:526.500000px;}
.y10_c00380{bottom:550.500000px;}
.yf_c00380{bottom:574.500000px;}
.ye_c00380{bottom:598.800000px;}
.yd_c00380{bottom:623.100000px;}
.yc_c00380{bottom:646.950000px;}
.yb_c00380{bottom:670.950000px;}
.ya_c00380{bottom:694.650000px;}
.y9_c00380{bottom:719.100000px;}
.y8_c00380{bottom:743.250000px;}
.y7_c00380{bottom:767.250000px;}
.y6_c00380{bottom:791.550000px;}
.y5_c00380{bottom:816.300000px;}
.y4_c00380{bottom:840.000000px;}
.y3_c00380{bottom:864.000000px;}
.y2_c00380{bottom:888.000000px;}
.y1_c00380{bottom:923.700000px;}
.h7_c00380{height:13.200074px;}
.h8_c00380{height:43.804688px;}
.h6_c00380{height:58.886719px;}
.h3_c00380{height:79.497070px;}
.h4_c00380{height:84.269531px;}
.h5_c00380{height:91.176000px;}
.h2_c00380{height:100.057617px;}
.h0_c00380{height:974.700000px;}
.h1_c00380{height:975.000000px;}
.w2_c00380{width:104.875500px;}
.w0_c00380{width:662.025000px;}
.w1_c00380{width:662.250000px;}
.x0_c00380{left:0.000000px;}
.x1_c00380{left:36.450000px;}
.x2_c00380{left:37.500000px;}
.x3_c00380{left:38.850000px;}
.x4_c00380{left:39.900000px;}
.x5_c00380{left:41.550000px;}
.x6_c00380{left:43.200000px;}
.x7_c00380{left:45.000000px;}
.x8_c00380{left:46.200000px;}
.x9_c00380{left:47.550000px;}
.xa_c00380{left:48.600000px;}
.xb_c00380{left:50.850000px;}
.xc_c00380{left:51.900000px;}
.xd_c00380{left:88.050000px;}
.xe_c00380{left:120.150000px;}
.x10_c00380{left:193.050000px;}
.x11_c00380{left:195.450000px;}
.x12_c00380{left:196.650000px;}
.xf_c00380{left:228.450000px;}
.x13_c00380{left:282.826767px;}
@media print{
.v0_c00380{vertical-align:0.000000pt;}
.ls3_c00380{letter-spacing:0.000000pt;}
.ls1_c00380{letter-spacing:0.800000pt;}
.ls0_c00380{letter-spacing:2.666667pt;}
.ls2_c00380{letter-spacing:5.333333pt;}
.ws0_c00380{word-spacing:-25.333333pt;}
.ws1_c00380{word-spacing:0.000000pt;}
._16_c00380{margin-left:-32.917333pt;}
._9_c00380{margin-left:-20.746667pt;}
._1c_c00380{margin-left:-13.200000pt;}
._2_c00380{margin-left:-12.240000pt;}
._0_c00380{margin-left:-8.232000pt;}
._3_c00380{margin-left:-6.981333pt;}
._15_c00380{margin-left:-5.922667pt;}
._8_c00380{margin-left:-4.821333pt;}
._f_c00380{margin-left:-3.834667pt;}
._6_c00380{margin-left:-2.738667pt;}
._7_c00380{margin-left:-1.813333pt;}
._14_c00380{margin-left:-0.922667pt;}
._13_c00380{width:0.965333pt;}
._4_c00380{width:1.904000pt;}
._5_c00380{width:2.901333pt;}
._b_c00380{width:3.968000pt;}
._c_c00380{width:4.976000pt;}
._d_c00380{width:5.909333pt;}
._e_c00380{width:7.240000pt;}
._12_c00380{width:8.856000pt;}
._1e_c00380{width:9.760000pt;}
._10_c00380{width:10.685333pt;}
._11_c00380{width:11.725333pt;}
._1_c00380{width:13.362667pt;}
._a_c00380{width:14.706667pt;}
._19_c00380{width:16.120000pt;}
._17_c00380{width:17.226667pt;}
._1a_c00380{width:20.701333pt;}
._1b_c00380{width:22.021333pt;}
._18_c00380{width:23.896000pt;}
._1d_c00380{width:26.453333pt;}
.fs5_c00380{font-size:42.666667pt;}
.fs4_c00380{font-size:53.333333pt;}
.fs3_c00380{font-size:64.000000pt;}
.fs2_c00380{font-size:72.000000pt;}
.fs1_c00380{font-size:77.333333pt;}
.fs0_c00380{font-size:90.666667pt;}
.y0_c00380{bottom:0.000000pt;}
.y24_c00380{bottom:2.760000pt;}
.y23_c00380{bottom:6.425212pt;}
.y22_c00380{bottom:76.133333pt;}
.y21_c00380{bottom:98.800000pt;}
.y20_c00380{bottom:121.466667pt;}
.y1f_c00380{bottom:143.466667pt;}
.y1e_c00380{bottom:165.333333pt;}
.y1d_c00380{bottom:187.200000pt;}
.y1c_c00380{bottom:211.466667pt;}
.y1b_c00380{bottom:237.333333pt;}
.y1a_c00380{bottom:263.333333pt;}
.y19_c00380{bottom:288.933333pt;}
.y18_c00380{bottom:317.333333pt;}
.y17_c00380{bottom:338.666667pt;}
.y16_c00380{bottom:360.400000pt;}
.y15_c00380{bottom:382.133333pt;}
.y14_c00380{bottom:403.466667pt;}
.y13_c00380{bottom:425.066667pt;}
.y12_c00380{bottom:446.666667pt;}
.y11_c00380{bottom:468.000000pt;}
.y10_c00380{bottom:489.333333pt;}
.yf_c00380{bottom:510.666667pt;}
.ye_c00380{bottom:532.266667pt;}
.yd_c00380{bottom:553.866667pt;}
.yc_c00380{bottom:575.066667pt;}
.yb_c00380{bottom:596.400000pt;}
.ya_c00380{bottom:617.466667pt;}
.y9_c00380{bottom:639.200000pt;}
.y8_c00380{bottom:660.666667pt;}
.y7_c00380{bottom:682.000000pt;}
.y6_c00380{bottom:703.600000pt;}
.y5_c00380{bottom:725.600000pt;}
.y4_c00380{bottom:746.666667pt;}
.y3_c00380{bottom:768.000000pt;}
.y2_c00380{bottom:789.333333pt;}
.y1_c00380{bottom:821.066667pt;}
.h7_c00380{height:11.733399pt;}
.h8_c00380{height:38.937500pt;}
.h6_c00380{height:52.343750pt;}
.h3_c00380{height:70.664062pt;}
.h4_c00380{height:74.906250pt;}
.h5_c00380{height:81.045333pt;}
.h2_c00380{height:88.940104pt;}
.h0_c00380{height:866.400000pt;}
.h1_c00380{height:866.666667pt;}
.w2_c00380{width:93.222667pt;}
.w0_c00380{width:588.466667pt;}
.w1_c00380{width:588.666667pt;}
.x0_c00380{left:0.000000pt;}
.x1_c00380{left:32.400000pt;}
.x2_c00380{left:33.333333pt;}
.x3_c00380{left:34.533333pt;}
.x4_c00380{left:35.466667pt;}
.x5_c00380{left:36.933333pt;}
.x6_c00380{left:38.400000pt;}
.x7_c00380{left:40.000000pt;}
.x8_c00380{left:41.066667pt;}
.x9_c00380{left:42.266667pt;}
.xa_c00380{left:43.200000pt;}
.xb_c00380{left:45.200000pt;}
.xc_c00380{left:46.133333pt;}
.xd_c00380{left:78.266667pt;}
.xe_c00380{left:106.800000pt;}
.x10_c00380{left:171.600000pt;}
.x11_c00380{left:173.733333pt;}
.x12_c00380{left:174.800000pt;}
.xf_c00380{left:203.066667pt;}
.x13_c00380{left:251.401571pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8428ab3bef3f8ace974579f0.woff2')format("woff");}.ff1_c00381{font-family:ff1_c00381;line-height:1.311035;font-style:normal;font-weight:normal;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_6384019ac3b60748fd98de93.woff2')format("woff");}.ff2_c00381{font-family:ff2_c00381;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00381;src:url('chunks/assets/font_9ec5d085e11a3413605b0c4a.woff2')format("woff");}.ff3_c00381{font-family:ff3_c00381;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00381;src:url('chunks/assets/font_3370e761cd18e510a14bc84b.woff2')format("woff");}.ff4_c00381{font-family:ff4_c00381;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00381;src:url('chunks/assets/font_f16dc6106747fddd8db6c714.woff2')format("woff");}.ff5_c00381{font-family:ff5_c00381;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00381;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c00381{font-family:ff6_c00381;line-height:1.219238;font-style: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;}
.ls2_c00381{letter-spacing:0.000000px;}
.ls3_c00381{letter-spacing:6.000000px;}
.ls0_c00381{letter-spacing:7.284000px;}
.ls1_c00381{letter-spacing:28.002000px;}
.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;}
}
.ws2_c00381{word-spacing:-23.784000px;}
.ws0_c00381{word-spacing:-20.250000px;}
.ws1_c00381{word-spacing:-17.352000px;}
.ws3_c00381{word-spacing:0.000000px;}
._1e_c00381{margin-left:-30.852000px;}
._1f_c00381{margin-left:-19.296000px;}
._1c_c00381{margin-left:-16.875000px;}
._13_c00381{margin-left:-14.544000px;}
._1d_c00381{margin-left:-12.384000px;}
._12_c00381{margin-left:-11.340000px;}
._16_c00381{margin-left:-9.144000px;}
._0_c00381{margin-left:-7.452000px;}
._a_c00381{margin-left:-6.192000px;}
._1_c00381{margin-left:-4.455000px;}
._2_c00381{margin-left:-2.754000px;}
._8_c00381{margin-left:-1.458000px;}
._4_c00381{width:1.863000px;}
._3_c00381{width:3.321000px;}
._6_c00381{width:4.455000px;}
._5_c00381{width:5.610000px;}
._c_c00381{width:6.954000px;}
._10_c00381{width:8.019000px;}
._21_c00381{width:9.021000px;}
._f_c00381{width:10.086000px;}
._9_c00381{width:11.121000px;}
._7_c00381{width:12.594000px;}
._d_c00381{width:13.647000px;}
._18_c00381{width:15.003000px;}
._20_c00381{width:16.146000px;}
._23_c00381{width:17.214000px;}
._19_c00381{width:18.588000px;}
._22_c00381{width:20.955000px;}
._1a_c00381{width:23.208000px;}
._11_c00381{width:24.270000px;}
._17_c00381{width:26.244000px;}
._b_c00381{width:38.736000px;}
._15_c00381{width:48.606000px;}
._1b_c00381{width:229.758000px;}
._e_c00381{width:244.095000px;}
._14_c00381{width:432.840000px;}
.fc2_c00381{color:transparent;}
.fc1_c00381{color:rgb(128,128,128);}
.fc0_c00381{color:rgb(0,0,0);}
.fs6_c00381{font-size:48.000000px;}
.fs4_c00381{font-size:57.000000px;}
.fs3_c00381{font-size:63.000000px;}
.fs2_c00381{font-size:66.000000px;}
.fs1_c00381{font-size:72.000000px;}
.fs5_c00381{font-size:78.000000px;}
.fs0_c00381{font-size:81.000000px;}
.y0_c00381{bottom:0.000000px;}
.y25_c00381{bottom:3.105000px;}
.y24_c00381{bottom:7.228369px;}
.y23_c00381{bottom:67.170000px;}
.y22_c00381{bottom:88.320000px;}
.y21_c00381{bottom:113.970000px;}
.y20_c00381{bottom:140.970000px;}
.y1f_c00381{bottom:162.720000px;}
.y1e_c00381{bottom:187.620000px;}
.y1d_c00381{bottom:212.220000px;}
.y1c_c00381{bottom:236.520000px;}
.y1b_c00381{bottom:261.120000px;}
.y1a_c00381{bottom:285.420000px;}
.y19_c00381{bottom:309.420000px;}
.y18_c00381{bottom:334.020000px;}
.y17_c00381{bottom:358.470000px;}
.y16_c00381{bottom:382.620000px;}
.y15_c00381{bottom:406.920000px;}
.y14_c00381{bottom:431.220000px;}
.y13_c00381{bottom:455.520000px;}
.y12_c00381{bottom:479.820000px;}
.y11_c00381{bottom:503.520000px;}
.y10_c00381{bottom:526.770000px;}
.yf_c00381{bottom:550.020000px;}
.ye_c00381{bottom:575.670000px;}
.yd_c00381{bottom:599.970000px;}
.yc_c00381{bottom:623.970000px;}
.yb_c00381{bottom:650.670000px;}
.ya_c00381{bottom:673.020000px;}
.y9_c00381{bottom:696.570000px;}
.y8_c00381{bottom:720.570000px;}
.y7_c00381{bottom:744.570000px;}
.y6_c00381{bottom:768.720000px;}
.y5_c00381{bottom:794.070000px;}
.y4_c00381{bottom:817.320000px;}
.y3_c00381{bottom:841.320000px;}
.y2_c00381{bottom:864.270000px;}
.y1_c00381{bottom:890.220000px;}
.h7_c00381{height:13.200073px;}
.h8_c00381{height:43.804688px;}
.h4_c00381{height:79.497070px;}
.h2_c00381{height:81.632812px;}
.h3_c00381{height:84.269531px;}
.h5_c00381{height:91.160156px;}
.h6_c00381{height:98.756836px;}
.h1_c00381{height:981.000000px;}
.h0_c00381{height:981.150000px;}
.w1_c00381{width:104.875500px;}
.w0_c00381{width:657.750000px;}
.x0_c00381{left:0.000000px;}
.xc_c00381{left:13.500000px;}
.x9_c00381{left:16.200000px;}
.x5_c00381{left:18.300000px;}
.x2_c00381{left:20.250000px;}
.x3_c00381{left:21.600000px;}
.xe_c00381{left:101.250000px;}
.xd_c00381{left:102.300000px;}
.xb_c00381{left:103.950000px;}
.xa_c00381{left:106.650000px;}
.x8_c00381{left:108.000000px;}
.x7_c00381{left:109.050000px;}
.x6_c00381{left:110.700000px;}
.x4_c00381{left:112.350000px;}
.x1_c00381{left:114.300000px;}
.x10_c00381{left:280.689240px;}
.xf_c00381{left:565.200000px;}
@media print{
.v0_c00381{vertical-align:0.000000pt;}
.ls2_c00381{letter-spacing:0.000000pt;}
.ls3_c00381{letter-spacing:5.333333pt;}
.ls0_c00381{letter-spacing:6.474667pt;}
.ls1_c00381{letter-spacing:24.890667pt;}
.ws2_c00381{word-spacing:-21.141333pt;}
.ws0_c00381{word-spacing:-18.000000pt;}
.ws1_c00381{word-spacing:-15.424000pt;}
.ws3_c00381{word-spacing:0.000000pt;}
._1e_c00381{margin-left:-27.424000pt;}
._1f_c00381{margin-left:-17.152000pt;}
._1c_c00381{margin-left:-15.000000pt;}
._13_c00381{margin-left:-12.928000pt;}
._1d_c00381{margin-left:-11.008000pt;}
._12_c00381{margin-left:-10.080000pt;}
._16_c00381{margin-left:-8.128000pt;}
._0_c00381{margin-left:-6.624000pt;}
._a_c00381{margin-left:-5.504000pt;}
._1_c00381{margin-left:-3.960000pt;}
._2_c00381{margin-left:-2.448000pt;}
._8_c00381{margin-left:-1.296000pt;}
._4_c00381{width:1.656000pt;}
._3_c00381{width:2.952000pt;}
._6_c00381{width:3.960000pt;}
._5_c00381{width:4.986667pt;}
._c_c00381{width:6.181333pt;}
._10_c00381{width:7.128000pt;}
._21_c00381{width:8.018667pt;}
._f_c00381{width:8.965333pt;}
._9_c00381{width:9.885333pt;}
._7_c00381{width:11.194667pt;}
._d_c00381{width:12.130667pt;}
._18_c00381{width:13.336000pt;}
._20_c00381{width:14.352000pt;}
._23_c00381{width:15.301333pt;}
._19_c00381{width:16.522667pt;}
._22_c00381{width:18.626667pt;}
._1a_c00381{width:20.629333pt;}
._11_c00381{width:21.573333pt;}
._17_c00381{width:23.328000pt;}
._b_c00381{width:34.432000pt;}
._15_c00381{width:43.205333pt;}
._1b_c00381{width:204.229333pt;}
._e_c00381{width:216.973333pt;}
._14_c00381{width:384.746667pt;}
.fs6_c00381{font-size:42.666667pt;}
.fs4_c00381{font-size:50.666667pt;}
.fs3_c00381{font-size:56.000000pt;}
.fs2_c00381{font-size:58.666667pt;}
.fs1_c00381{font-size:64.000000pt;}
.fs5_c00381{font-size:69.333333pt;}
.fs0_c00381{font-size:72.000000pt;}
.y0_c00381{bottom:0.000000pt;}
.y25_c00381{bottom:2.760000pt;}
.y24_c00381{bottom:6.425217pt;}
.y23_c00381{bottom:59.706667pt;}
.y22_c00381{bottom:78.506667pt;}
.y21_c00381{bottom:101.306667pt;}
.y20_c00381{bottom:125.306667pt;}
.y1f_c00381{bottom:144.640000pt;}
.y1e_c00381{bottom:166.773333pt;}
.y1d_c00381{bottom:188.640000pt;}
.y1c_c00381{bottom:210.240000pt;}
.y1b_c00381{bottom:232.106667pt;}
.y1a_c00381{bottom:253.706667pt;}
.y19_c00381{bottom:275.040000pt;}
.y18_c00381{bottom:296.906667pt;}
.y17_c00381{bottom:318.640000pt;}
.y16_c00381{bottom:340.106667pt;}
.y15_c00381{bottom:361.706667pt;}
.y14_c00381{bottom:383.306667pt;}
.y13_c00381{bottom:404.906667pt;}
.y12_c00381{bottom:426.506667pt;}
.y11_c00381{bottom:447.573333pt;}
.y10_c00381{bottom:468.240000pt;}
.yf_c00381{bottom:488.906667pt;}
.ye_c00381{bottom:511.706667pt;}
.yd_c00381{bottom:533.306667pt;}
.yc_c00381{bottom:554.640000pt;}
.yb_c00381{bottom:578.373333pt;}
.ya_c00381{bottom:598.240000pt;}
.y9_c00381{bottom:619.173333pt;}
.y8_c00381{bottom:640.506667pt;}
.y7_c00381{bottom:661.840000pt;}
.y6_c00381{bottom:683.306667pt;}
.y5_c00381{bottom:705.840000pt;}
.y4_c00381{bottom:726.506667pt;}
.y3_c00381{bottom:747.840000pt;}
.y2_c00381{bottom:768.240000pt;}
.y1_c00381{bottom:791.306667pt;}
.h7_c00381{height:11.733399pt;}
.h8_c00381{height:38.937500pt;}
.h4_c00381{height:70.664062pt;}
.h2_c00381{height:72.562500pt;}
.h3_c00381{height:74.906250pt;}
.h5_c00381{height:81.031250pt;}
.h6_c00381{height:87.783854pt;}
.h1_c00381{height:872.000000pt;}
.h0_c00381{height:872.133333pt;}
.w1_c00381{width:93.222667pt;}
.w0_c00381{width:584.666667pt;}
.x0_c00381{left:0.000000pt;}
.xc_c00381{left:12.000000pt;}
.x9_c00381{left:14.400000pt;}
.x5_c00381{left:16.266667pt;}
.x2_c00381{left:18.000000pt;}
.x3_c00381{left:19.200000pt;}
.xe_c00381{left:90.000000pt;}
.xd_c00381{left:90.933333pt;}
.xb_c00381{left:92.400000pt;}
.xa_c00381{left:94.800000pt;}
.x8_c00381{left:96.000000pt;}
.x7_c00381{left:96.933333pt;}
.x6_c00381{left:98.400000pt;}
.x4_c00381{left:99.866667pt;}
.x1_c00381{left:101.600000pt;}
.x10_c00381{left:249.501546pt;}
.xf_c00381{left:502.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_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_daa57048c36512cc246c637d.woff2')format("woff");}.ff1_c00382{font-family:ff1_c00382;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00382;src:url('chunks/assets/font_f4c6282b2a0481ac7678957b.woff2')format("woff");}.ff2_c00382{font-family:ff2_c00382;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00382;src:url('chunks/assets/font_bcf327eaaaff27dd60211b1f.woff2')format("woff");}.ff3_c00382{font-family:ff3_c00382;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00382;src:url('chunks/assets/font_f6fae608bcb7bbbf803d2e25.woff2')format("woff");}.ff4_c00382{font-family:ff4_c00382;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00382;src:url('chunks/assets/font_10ca7fb65c555fbbda3a3763.woff2')format("woff");}.ff5_c00382{font-family:ff5_c00382;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00382;src:url('chunks/assets/font_f8108213402a4551564d58aa.woff2')format("woff");}.ff6_c00382{font-family:ff6_c00382;line-height:1.437000;font-style:normal;font-weight: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_c00382;src:url('chunks/assets/font_b498d38055b305d8681bc37b.woff2')format("woff");}.ff7_c00382{font-family:ff7_c00382;line-height:1.437000;font-style:normal;font-weight: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_c00382;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff8_c00382{font-family:ff8_c00382;line-height:1.219238;font-style: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;}
.ls2_c00382{letter-spacing:0.000000px;}
.ls0_c00382{letter-spacing:4.602000px;}
.ls1_c00382{letter-spacing:36.402000px;}
.sc__c00382{text-shadow:none;}
.sc0_c00382{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00382{-webkit-text-stroke:0px transparent;}
.sc0_c00382{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00382{word-spacing:-67.686000px;}
.ws1_c00382{word-spacing:-33.000000px;}
.ws3_c00382{word-spacing:-20.250000px;}
.ws0_c00382{word-spacing:-17.352000px;}
.ws4_c00382{word-spacing:0.000000px;}
._a_c00382{margin-left:-23.859000px;}
._1e_c00382{margin-left:-18.270000px;}
._1f_c00382{margin-left:-16.116000px;}
._1_c00382{margin-left:-14.454000px;}
._2_c00382{margin-left:-12.969000px;}
._13_c00382{margin-left:-11.724000px;}
._15_c00382{margin-left:-9.456000px;}
._0_c00382{margin-left:-8.316000px;}
._11_c00382{margin-left:-6.864000px;}
._3_c00382{margin-left:-5.841000px;}
._6_c00382{margin-left:-4.554000px;}
._7_c00382{margin-left:-3.465000px;}
._8_c00382{margin-left:-1.782000px;}
._5_c00382{width:1.683000px;}
._f_c00382{width:3.024000px;}
._b_c00382{width:4.455000px;}
._c_c00382{width:6.138000px;}
._12_c00382{width:7.143000px;}
._4_c00382{width:8.217000px;}
._e_c00382{width:9.504000px;}
._10_c00382{width:10.899000px;}
._14_c00382{width:12.636000px;}
._16_c00382{width:13.851000px;}
._d_c00382{width:15.741000px;}
._1a_c00382{width:17.157000px;}
._18_c00382{width:24.795000px;}
._19_c00382{width:32.718000px;}
._9_c00382{width:37.422000px;}
._1d_c00382{width:129.231000px;}
._1b_c00382{width:173.751000px;}
._1c_c00382{width:179.337000px;}
._17_c00382{width:212.619000px;}
.fc2_c00382{color:transparent;}
.fc1_c00382{color:rgb(128,128,128);}
.fc0_c00382{color:rgb(0,0,0);}
.fs8_c00382{font-size:48.000000px;}
.fs4_c00382{font-size:57.000000px;}
.fs6_c00382{font-size:66.000000px;}
.fs5_c00382{font-size:72.000000px;}
.fs3_c00382{font-size:78.000000px;}
.fs2_c00382{font-size:81.000000px;}
.fs7_c00382{font-size:87.000000px;}
.fs1_c00382{font-size:99.000000px;}
.fs0_c00382{font-size:360.000000px;}
.y0_c00382{bottom:0.000000px;}
.y27_c00382{bottom:3.105000px;}
.y26_c00382{bottom:7.228363px;}
.y25_c00382{bottom:67.800000px;}
.y24_c00382{bottom:91.350000px;}
.y23_c00382{bottom:118.050000px;}
.y22_c00382{bottom:141.300000px;}
.y21_c00382{bottom:165.750000px;}
.y20_c00382{bottom:190.050000px;}
.y1f_c00382{bottom:214.350000px;}
.y1e_c00382{bottom:238.650000px;}
.y1d_c00382{bottom:263.250000px;}
.y1c_c00382{bottom:287.850000px;}
.y1b_c00382{bottom:311.850000px;}
.y1a_c00382{bottom:335.400000px;}
.y19_c00382{bottom:359.700000px;}
.y18_c00382{bottom:383.700000px;}
.y17_c00382{bottom:408.000000px;}
.y16_c00382{bottom:432.300000px;}
.y15_c00382{bottom:456.300000px;}
.y14_c00382{bottom:480.300000px;}
.y13_c00382{bottom:504.600000px;}
.y12_c00382{bottom:528.900000px;}
.y11_c00382{bottom:553.050000px;}
.y10_c00382{bottom:578.700000px;}
.yf_c00382{bottom:600.750000px;}
.ye_c00382{bottom:624.750000px;}
.yd_c00382{bottom:648.900000px;}
.yc_c00382{bottom:673.050000px;}
.yb_c00382{bottom:697.200000px;}
.ya_c00382{bottom:721.350000px;}
.y1_c00382{bottom:737.100000px;}
.y9_c00382{bottom:745.800000px;}
.y8_c00382{bottom:770.400000px;}
.y7_c00382{bottom:794.100000px;}
.y6_c00382{bottom:817.800000px;}
.y5_c00382{bottom:839.400000px;}
.y4_c00382{bottom:865.950000px;}
.y3_c00382{bottom:890.700000px;}
.y2_c00382{bottom:925.050000px;}
.h9_c00382{height:13.200074px;}
.ha_c00382{height:43.804688px;}
.h6_c00382{height:66.713379px;}
.h4_c00382{height:79.497070px;}
.h7_c00382{height:91.160156px;}
.h8_c00382{height:91.176000px;}
.h5_c00382{height:98.756836px;}
.h3_c00382{height:115.870605px;}
.h2_c00382{height:455.800781px;}
.h0_c00382{height:974.700000px;}
.h1_c00382{height:975.000000px;}
.w2_c00382{width:104.875500px;}
.w0_c00382{width:662.025000px;}
.w1_c00382{width:662.250000px;}
.x0_c00382{left:0.000000px;}
.x2_c00382{left:32.100000px;}
.x1_c00382{left:34.050000px;}
.x3_c00382{left:35.100000px;}
.x9_c00382{left:36.750000px;}
.xa_c00382{left:38.100000px;}
.x7_c00382{left:40.800000px;}
.x8_c00382{left:43.200000px;}
.x4_c00382{left:59.850000px;}
.x6_c00382{left:83.100000px;}
.x5_c00382{left:173.250000px;}
.xc_c00382{left:282.826767px;}
.xb_c00382{left:453.300000px;}
@media print{
.v0_c00382{vertical-align:0.000000pt;}
.ls2_c00382{letter-spacing:0.000000pt;}
.ls0_c00382{letter-spacing:4.090667pt;}
.ls1_c00382{letter-spacing:32.357333pt;}
.ws2_c00382{word-spacing:-60.165333pt;}
.ws1_c00382{word-spacing:-29.333333pt;}
.ws3_c00382{word-spacing:-18.000000pt;}
.ws0_c00382{word-spacing:-15.424000pt;}
.ws4_c00382{word-spacing:0.000000pt;}
._a_c00382{margin-left:-21.208000pt;}
._1e_c00382{margin-left:-16.240000pt;}
._1f_c00382{margin-left:-14.325333pt;}
._1_c00382{margin-left:-12.848000pt;}
._2_c00382{margin-left:-11.528000pt;}
._13_c00382{margin-left:-10.421333pt;}
._15_c00382{margin-left:-8.405333pt;}
._0_c00382{margin-left:-7.392000pt;}
._11_c00382{margin-left:-6.101333pt;}
._3_c00382{margin-left:-5.192000pt;}
._6_c00382{margin-left:-4.048000pt;}
._7_c00382{margin-left:-3.080000pt;}
._8_c00382{margin-left:-1.584000pt;}
._5_c00382{width:1.496000pt;}
._f_c00382{width:2.688000pt;}
._b_c00382{width:3.960000pt;}
._c_c00382{width:5.456000pt;}
._12_c00382{width:6.349333pt;}
._4_c00382{width:7.304000pt;}
._e_c00382{width:8.448000pt;}
._10_c00382{width:9.688000pt;}
._14_c00382{width:11.232000pt;}
._16_c00382{width:12.312000pt;}
._d_c00382{width:13.992000pt;}
._1a_c00382{width:15.250667pt;}
._18_c00382{width:22.040000pt;}
._19_c00382{width:29.082667pt;}
._9_c00382{width:33.264000pt;}
._1d_c00382{width:114.872000pt;}
._1b_c00382{width:154.445333pt;}
._1c_c00382{width:159.410667pt;}
._17_c00382{width:188.994667pt;}
.fs8_c00382{font-size:42.666667pt;}
.fs4_c00382{font-size:50.666667pt;}
.fs6_c00382{font-size:58.666667pt;}
.fs5_c00382{font-size:64.000000pt;}
.fs3_c00382{font-size:69.333333pt;}
.fs2_c00382{font-size:72.000000pt;}
.fs7_c00382{font-size:77.333333pt;}
.fs1_c00382{font-size:88.000000pt;}
.fs0_c00382{font-size:320.000000pt;}
.y0_c00382{bottom:0.000000pt;}
.y27_c00382{bottom:2.760000pt;}
.y26_c00382{bottom:6.425212pt;}
.y25_c00382{bottom:60.266667pt;}
.y24_c00382{bottom:81.200000pt;}
.y23_c00382{bottom:104.933333pt;}
.y22_c00382{bottom:125.600000pt;}
.y21_c00382{bottom:147.333333pt;}
.y20_c00382{bottom:168.933333pt;}
.y1f_c00382{bottom:190.533333pt;}
.y1e_c00382{bottom:212.133333pt;}
.y1d_c00382{bottom:234.000000pt;}
.y1c_c00382{bottom:255.866667pt;}
.y1b_c00382{bottom:277.200000pt;}
.y1a_c00382{bottom:298.133333pt;}
.y19_c00382{bottom:319.733333pt;}
.y18_c00382{bottom:341.066667pt;}
.y17_c00382{bottom:362.666667pt;}
.y16_c00382{bottom:384.266667pt;}
.y15_c00382{bottom:405.600000pt;}
.y14_c00382{bottom:426.933333pt;}
.y13_c00382{bottom:448.533333pt;}
.y12_c00382{bottom:470.133333pt;}
.y11_c00382{bottom:491.600000pt;}
.y10_c00382{bottom:514.400000pt;}
.yf_c00382{bottom:534.000000pt;}
.ye_c00382{bottom:555.333333pt;}
.yd_c00382{bottom:576.800000pt;}
.yc_c00382{bottom:598.266667pt;}
.yb_c00382{bottom:619.733333pt;}
.ya_c00382{bottom:641.200000pt;}
.y1_c00382{bottom:655.200000pt;}
.y9_c00382{bottom:662.933333pt;}
.y8_c00382{bottom:684.800000pt;}
.y7_c00382{bottom:705.866667pt;}
.y6_c00382{bottom:726.933333pt;}
.y5_c00382{bottom:746.133333pt;}
.y4_c00382{bottom:769.733333pt;}
.y3_c00382{bottom:791.733333pt;}
.y2_c00382{bottom:822.266667pt;}
.h9_c00382{height:11.733399pt;}
.ha_c00382{height:38.937500pt;}
.h6_c00382{height:59.300781pt;}
.h4_c00382{height:70.664062pt;}
.h7_c00382{height:81.031250pt;}
.h8_c00382{height:81.045333pt;}
.h5_c00382{height:87.783854pt;}
.h3_c00382{height:102.996094pt;}
.h2_c00382{height:405.156250pt;}
.h0_c00382{height:866.400000pt;}
.h1_c00382{height:866.666667pt;}
.w2_c00382{width:93.222667pt;}
.w0_c00382{width:588.466667pt;}
.w1_c00382{width:588.666667pt;}
.x0_c00382{left:0.000000pt;}
.x2_c00382{left:28.533333pt;}
.x1_c00382{left:30.266667pt;}
.x3_c00382{left:31.200000pt;}
.x9_c00382{left:32.666667pt;}
.xa_c00382{left:33.866667pt;}
.x7_c00382{left:36.266667pt;}
.x8_c00382{left:38.400000pt;}
.x4_c00382{left:53.200000pt;}
.x6_c00382{left:73.866667pt;}
.x5_c00382{left:154.000000pt;}
.xc_c00382{left:251.401571pt;}
.xb_c00382{left:402.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ec07ae5b2ed5b3cb26efd2f4.woff2')format("woff");}.ff1_c00383{font-family:ff1_c00383;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00383;src:url('chunks/assets/font_132858fbce5fa60e381f0f7e.woff2')format("woff");}.ff2_c00383{font-family:ff2_c00383;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00383;src:url('chunks/assets/font_9ec4b16c631c8f18d33d506d.woff2')format("woff");}.ff3_c00383{font-family:ff3_c00383;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00383;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff4_c00383{font-family:ff4_c00383;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00383{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m0_c00383{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00383{vertical-align:0.000000px;}
.ls0_c00383{letter-spacing:0.000000px;}
.sc__c00383{text-shadow:none;}
.sc0_c00383{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00383{-webkit-text-stroke:0px transparent;}
.sc0_c00383{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00383{word-spacing:-60.048000px;}
.ws0_c00383{word-spacing:-17.352000px;}
.ws2_c00383{word-spacing:0.000000px;}
._f_c00383{margin-left:-31.185000px;}
._18_c00383{margin-left:-15.903000px;}
._1c_c00383{margin-left:-13.203000px;}
._11_c00383{margin-left:-11.988000px;}
._1b_c00383{margin-left:-10.782000px;}
._16_c00383{margin-left:-9.558000px;}
._17_c00383{margin-left:-7.911000px;}
._10_c00383{margin-left:-6.480000px;}
._c_c00383{margin-left:-4.860000px;}
._d_c00383{margin-left:-3.321000px;}
._7_c00383{margin-left:-2.187000px;}
._13_c00383{margin-left:-1.161000px;}
._15_c00383{width:1.485000px;}
._3_c00383{width:2.511000px;}
._6_c00383{width:3.645000px;}
._9_c00383{width:4.698000px;}
._0_c00383{width:5.751000px;}
._1_c00383{width:7.290000px;}
._2_c00383{width:8.910000px;}
._e_c00383{width:10.206000px;}
._5_c00383{width:11.502000px;}
._4_c00383{width:13.122000px;}
._a_c00383{width:14.985000px;}
._8_c00383{width:16.362000px;}
._20_c00383{width:18.333000px;}
._19_c00383{width:28.134000px;}
._14_c00383{width:30.213000px;}
._1f_c00383{width:33.648000px;}
._1a_c00383{width:45.693000px;}
._b_c00383{width:237.399000px;}
._12_c00383{width:252.411000px;}
._1e_c00383{width:282.030000px;}
._23_c00383{width:283.662000px;}
._22_c00383{width:288.090000px;}
._21_c00383{width:341.496000px;}
._1d_c00383{width:412.047000px;}
.fc2_c00383{color:transparent;}
.fc1_c00383{color:rgb(128,128,128);}
.fc0_c00383{color:rgb(0,0,0);}
.fs3_c00383{font-size:48.000000px;}
.fs1_c00383{font-size:72.000000px;}
.fs0_c00383{font-size:81.000000px;}
.fs2_c00383{font-size:108.000000px;}
.y0_c00383{bottom:0.000000px;}
.y25_c00383{bottom:3.105000px;}
.y24_c00383{bottom:7.228357px;}
.y23_c00383{bottom:76.680000px;}
.y22_c00383{bottom:99.930000px;}
.y21_c00383{bottom:126.330000px;}
.y20_c00383{bottom:150.180000px;}
.y1f_c00383{bottom:174.180000px;}
.y1e_c00383{bottom:198.780000px;}
.y1d_c00383{bottom:223.380000px;}
.y1c_c00383{bottom:247.680000px;}
.y1b_c00383{bottom:272.130000px;}
.y1a_c00383{bottom:297.030000px;}
.y19_c00383{bottom:320.730000px;}
.y18_c00383{bottom:344.880000px;}
.y17_c00383{bottom:369.330000px;}
.y16_c00383{bottom:393.480000px;}
.y15_c00383{bottom:417.480000px;}
.y14_c00383{bottom:441.180000px;}
.y13_c00383{bottom:467.430000px;}
.y12_c00383{bottom:491.730000px;}
.y11_c00383{bottom:514.980000px;}
.y10_c00383{bottom:537.630000px;}
.yf_c00383{bottom:562.980000px;}
.ye_c00383{bottom:586.230000px;}
.yd_c00383{bottom:609.930000px;}
.yc_c00383{bottom:634.230000px;}
.yb_c00383{bottom:658.530000px;}
.ya_c00383{bottom:682.530000px;}
.y9_c00383{bottom:706.830000px;}
.y8_c00383{bottom:730.980000px;}
.y7_c00383{bottom:755.280000px;}
.y6_c00383{bottom:779.280000px;}
.y5_c00383{bottom:803.280000px;}
.y4_c00383{bottom:828.180000px;}
.y3_c00383{bottom:851.880000px;}
.y2_c00383{bottom:875.580000px;}
.y1_c00383{bottom:900.180000px;}
.h4_c00383{height:13.200074px;}
.h5_c00383{height:43.804688px;}
.h1_c00383{height:79.497070px;}
.h2_c00383{height:84.269531px;}
.h3_c00383{height:108.843750px;}
.h0_c00383{height:995.250000px;}
.w2_c00383{width:104.875500px;}
.w0_c00383{width:667.425000px;}
.w1_c00383{width:667.500000px;}
.x0_c00383{left:0.000000px;}
.x2_c00383{left:35.850000px;}
.x3_c00383{left:38.250000px;}
.x8_c00383{left:39.750000px;}
.xa_c00383{left:49.200000px;}
.xb_c00383{left:56.400000px;}
.x6_c00383{left:88.500000px;}
.x7_c00383{left:104.250000px;}
.x1_c00383{left:130.950000px;}
.x4_c00383{left:132.000000px;}
.x5_c00383{left:133.650000px;}
.x9_c00383{left:135.300000px;}
.xd_c00383{left:285.526749px;}
.xc_c00383{left:580.200000px;}
@media print{
.v0_c00383{vertical-align:0.000000pt;}
.ls0_c00383{letter-spacing:0.000000pt;}
.ws1_c00383{word-spacing:-53.376000pt;}
.ws0_c00383{word-spacing:-15.424000pt;}
.ws2_c00383{word-spacing:0.000000pt;}
._f_c00383{margin-left:-27.720000pt;}
._18_c00383{margin-left:-14.136000pt;}
._1c_c00383{margin-left:-11.736000pt;}
._11_c00383{margin-left:-10.656000pt;}
._1b_c00383{margin-left:-9.584000pt;}
._16_c00383{margin-left:-8.496000pt;}
._17_c00383{margin-left:-7.032000pt;}
._10_c00383{margin-left:-5.760000pt;}
._c_c00383{margin-left:-4.320000pt;}
._d_c00383{margin-left:-2.952000pt;}
._7_c00383{margin-left:-1.944000pt;}
._13_c00383{margin-left:-1.032000pt;}
._15_c00383{width:1.320000pt;}
._3_c00383{width:2.232000pt;}
._6_c00383{width:3.240000pt;}
._9_c00383{width:4.176000pt;}
._0_c00383{width:5.112000pt;}
._1_c00383{width:6.480000pt;}
._2_c00383{width:7.920000pt;}
._e_c00383{width:9.072000pt;}
._5_c00383{width:10.224000pt;}
._4_c00383{width:11.664000pt;}
._a_c00383{width:13.320000pt;}
._8_c00383{width:14.544000pt;}
._20_c00383{width:16.296000pt;}
._19_c00383{width:25.008000pt;}
._14_c00383{width:26.856000pt;}
._1f_c00383{width:29.909333pt;}
._1a_c00383{width:40.616000pt;}
._b_c00383{width:211.021333pt;}
._12_c00383{width:224.365333pt;}
._1e_c00383{width:250.693333pt;}
._23_c00383{width:252.144000pt;}
._22_c00383{width:256.080000pt;}
._21_c00383{width:303.552000pt;}
._1d_c00383{width:366.264000pt;}
.fs3_c00383{font-size:42.666667pt;}
.fs1_c00383{font-size:64.000000pt;}
.fs0_c00383{font-size:72.000000pt;}
.fs2_c00383{font-size:96.000000pt;}
.y0_c00383{bottom:0.000000pt;}
.y25_c00383{bottom:2.760000pt;}
.y24_c00383{bottom:6.425206pt;}
.y23_c00383{bottom:68.160000pt;}
.y22_c00383{bottom:88.826667pt;}
.y21_c00383{bottom:112.293333pt;}
.y20_c00383{bottom:133.493333pt;}
.y1f_c00383{bottom:154.826667pt;}
.y1e_c00383{bottom:176.693333pt;}
.y1d_c00383{bottom:198.560000pt;}
.y1c_c00383{bottom:220.160000pt;}
.y1b_c00383{bottom:241.893333pt;}
.y1a_c00383{bottom:264.026667pt;}
.y19_c00383{bottom:285.093333pt;}
.y18_c00383{bottom:306.560000pt;}
.y17_c00383{bottom:328.293333pt;}
.y16_c00383{bottom:349.760000pt;}
.y15_c00383{bottom:371.093333pt;}
.y14_c00383{bottom:392.160000pt;}
.y13_c00383{bottom:415.493333pt;}
.y12_c00383{bottom:437.093333pt;}
.y11_c00383{bottom:457.760000pt;}
.y10_c00383{bottom:477.893333pt;}
.yf_c00383{bottom:500.426667pt;}
.ye_c00383{bottom:521.093333pt;}
.yd_c00383{bottom:542.160000pt;}
.yc_c00383{bottom:563.760000pt;}
.yb_c00383{bottom:585.360000pt;}
.ya_c00383{bottom:606.693333pt;}
.y9_c00383{bottom:628.293333pt;}
.y8_c00383{bottom:649.760000pt;}
.y7_c00383{bottom:671.360000pt;}
.y6_c00383{bottom:692.693333pt;}
.y5_c00383{bottom:714.026667pt;}
.y4_c00383{bottom:736.160000pt;}
.y3_c00383{bottom:757.226667pt;}
.y2_c00383{bottom:778.293333pt;}
.y1_c00383{bottom:800.160000pt;}
.h4_c00383{height:11.733399pt;}
.h5_c00383{height:38.937500pt;}
.h1_c00383{height:70.664062pt;}
.h2_c00383{height:74.906250pt;}
.h3_c00383{height:96.750000pt;}
.h0_c00383{height:884.666667pt;}
.w2_c00383{width:93.222667pt;}
.w0_c00383{width:593.266667pt;}
.w1_c00383{width:593.333333pt;}
.x0_c00383{left:0.000000pt;}
.x2_c00383{left:31.866667pt;}
.x3_c00383{left:34.000000pt;}
.x8_c00383{left:35.333333pt;}
.xa_c00383{left:43.733333pt;}
.xb_c00383{left:50.133333pt;}
.x6_c00383{left:78.666667pt;}
.x7_c00383{left:92.666667pt;}
.x1_c00383{left:116.400000pt;}
.x4_c00383{left:117.333333pt;}
.x5_c00383{left:118.800000pt;}
.x9_c00383{left:120.266667pt;}
.xd_c00383{left:253.801554pt;}
.xc_c00383{left:515.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_8d0eb98fe13472e3f8cc2f8f.woff2')format("woff");}.ff1_c00384{font-family:ff1_c00384;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00384;src:url('chunks/assets/font_d985a5309af66bc6acc6d939.woff2')format("woff");}.ff2_c00384{font-family:ff2_c00384;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00384;src:url('chunks/assets/font_85076649f3debd7686879998.woff2')format("woff");}.ff3_c00384{font-family:ff3_c00384;line-height:1.437000;font-style:normal;font-weight:normal;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_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff4_c00384{font-family:ff4_c00384;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00384;src:url('chunks/assets/font_dc6ac76c86d209aea9a87441.woff2')format("woff");}.ff5_c00384{font-family:ff5_c00384;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00384;src:url('chunks/assets/font_e720fe3a9b9f156b86afd314.woff2')format("woff");}.ff6_c00384{font-family:ff6_c00384;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00384;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c00384{font-family:ff7_c00384;line-height:1.219238;font-style: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;}
.ls3_c00384{letter-spacing:0.000000px;}
.ls1_c00384{letter-spacing:2.400000px;}
.ls2_c00384{letter-spacing:7.002000px;}
.ls0_c00384{letter-spacing:23.700000px;}
.sc__c00384{text-shadow:none;}
.sc0_c00384{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00384{-webkit-text-stroke:0px transparent;}
.sc0_c00384{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00384{word-spacing:-67.686000px;}
.ws1_c00384{word-spacing:-33.000000px;}
.ws2_c00384{word-spacing:-17.352000px;}
.ws4_c00384{word-spacing:0.000000px;}
.ws3_c00384{word-spacing:10.281600px;}
._1a_c00384{margin-left:-22.752000px;}
._1f_c00384{margin-left:-19.734000px;}
._14_c00384{margin-left:-15.975000px;}
._e_c00384{margin-left:-14.703000px;}
._d_c00384{margin-left:-13.137000px;}
._1d_c00384{margin-left:-11.664000px;}
._17_c00384{margin-left:-10.653000px;}
._c_c00384{margin-left:-8.796000px;}
._b_c00384{margin-left:-7.353000px;}
._10_c00384{margin-left:-6.192000px;}
._5_c00384{margin-left:-4.860000px;}
._1_c00384{margin-left:-3.330000px;}
._f_c00384{margin-left:-1.887000px;}
._6_c00384{width:1.080000px;}
._0_c00384{width:2.970000px;}
._7_c00384{width:4.410000px;}
._2_c00384{width:5.670000px;}
._a_c00384{width:7.209000px;}
._3_c00384{width:8.730000px;}
._9_c00384{width:10.017000px;}
._12_c00384{width:11.055000px;}
._11_c00384{width:12.072000px;}
._4_c00384{width:13.950000px;}
._1e_c00384{width:15.846000px;}
._18_c00384{width:17.739000px;}
._21_c00384{width:19.555166px;}
._13_c00384{width:20.913000px;}
._15_c00384{width:23.436000px;}
._19_c00384{width:29.625000px;}
._8_c00384{width:36.450000px;}
._1b_c00384{width:39.294000px;}
._16_c00384{width:98.955000px;}
._1c_c00384{width:194.259000px;}
._20_c00384{width:238.545000px;}
.fc2_c00384{color:transparent;}
.fc1_c00384{color:rgb(128,128,128);}
.fc0_c00384{color:rgb(0,0,0);}
.fs7_c00384{font-size:33.600000px;}
.fs8_c00384{font-size:42.000000px;}
.fs9_c00384{font-size:48.000000px;}
.fs4_c00384{font-size:57.000000px;}
.fs5_c00384{font-size:66.000000px;}
.fs3_c00384{font-size:72.000000px;}
.fs6_c00384{font-size:78.000000px;}
.fs1_c00384{font-size:81.000000px;}
.fs2_c00384{font-size:87.000000px;}
.fs0_c00384{font-size:90.000000px;}
.y0_c00384{bottom:0.000000px;}
.y26_c00384{bottom:3.105000px;}
.y25_c00384{bottom:7.228363px;}
.y24_c00384{bottom:55.050000px;}
.y23_c00384{bottom:80.250000px;}
.y22_c00384{bottom:104.700000px;}
.y21_c00384{bottom:129.600000px;}
.y20_c00384{bottom:154.200000px;}
.y1f_c00384{bottom:178.500000px;}
.y1e_c00384{bottom:202.800000px;}
.y1d_c00384{bottom:227.100000px;}
.y1c_c00384{bottom:251.700000px;}
.y1b_c00384{bottom:275.700000px;}
.y1a_c00384{bottom:300.000000px;}
.y19_c00384{bottom:324.300000px;}
.y18_c00384{bottom:348.300000px;}
.y17_c00384{bottom:371.850000px;}
.y16_c00384{bottom:395.550000px;}
.y15_c00384{bottom:420.150000px;}
.y14_c00384{bottom:445.050000px;}
.y13_c00384{bottom:468.450000px;}
.y12_c00384{bottom:492.300000px;}
.y11_c00384{bottom:517.050000px;}
.y10_c00384{bottom:541.050000px;}
.yf_c00384{bottom:566.550000px;}
.ye_c00384{bottom:589.500000px;}
.yd_c00384{bottom:613.200000px;}
.yc_c00384{bottom:638.550000px;}
.yb_c00384{bottom:662.550000px;}
.ya_c00384{bottom:686.700000px;}
.y9_c00384{bottom:711.150000px;}
.y8_c00384{bottom:735.300000px;}
.y7_c00384{bottom:759.750000px;}
.y6_c00384{bottom:784.050000px;}
.y5_c00384{bottom:808.350000px;}
.y4_c00384{bottom:832.650000px;}
.y3_c00384{bottom:856.950000px;}
.y2_c00384{bottom:880.950000px;}
.y1_c00384{bottom:915.000000px;}
.h9_c00384{height:13.200074px;}
.ha_c00384{height:43.804688px;}
.h4_c00384{height:72.168457px;}
.h7_c00384{height:79.497070px;}
.h6_c00384{height:84.269531px;}
.h5_c00384{height:91.160156px;}
.h3_c00384{height:91.176000px;}
.h8_c00384{height:98.756836px;}
.h2_c00384{height:105.336914px;}
.h0_c00384{height:974.700000px;}
.h1_c00384{height:975.000000px;}
.w2_c00384{width:104.875500px;}
.w0_c00384{width:662.025000px;}
.w1_c00384{width:662.250000px;}
.x0_c00384{left:0.000000px;}
.x4_c00384{left:35.100000px;}
.x2_c00384{left:36.750000px;}
.x3_c00384{left:38.700000px;}
.x5_c00384{left:40.050000px;}
.x6_c00384{left:41.100000px;}
.x7_c00384{left:43.500000px;}
.x8_c00384{left:45.150000px;}
.x9_c00384{left:47.550000px;}
.x1_c00384{left:88.200000px;}
.xb_c00384{left:282.826767px;}
.xa_c00384{left:408.300000px;}
@media print{
.v0_c00384{vertical-align:0.000000pt;}
.ls3_c00384{letter-spacing:0.000000pt;}
.ls1_c00384{letter-spacing:2.133333pt;}
.ls2_c00384{letter-spacing:6.224000pt;}
.ls0_c00384{letter-spacing:21.066667pt;}
.ws0_c00384{word-spacing:-60.165333pt;}
.ws1_c00384{word-spacing:-29.333333pt;}
.ws2_c00384{word-spacing:-15.424000pt;}
.ws4_c00384{word-spacing:0.000000pt;}
.ws3_c00384{word-spacing:9.139200pt;}
._1a_c00384{margin-left:-20.224000pt;}
._1f_c00384{margin-left:-17.541333pt;}
._14_c00384{margin-left:-14.200000pt;}
._e_c00384{margin-left:-13.069333pt;}
._d_c00384{margin-left:-11.677333pt;}
._1d_c00384{margin-left:-10.368000pt;}
._17_c00384{margin-left:-9.469333pt;}
._c_c00384{margin-left:-7.818667pt;}
._b_c00384{margin-left:-6.536000pt;}
._10_c00384{margin-left:-5.504000pt;}
._5_c00384{margin-left:-4.320000pt;}
._1_c00384{margin-left:-2.960000pt;}
._f_c00384{margin-left:-1.677333pt;}
._6_c00384{width:0.960000pt;}
._0_c00384{width:2.640000pt;}
._7_c00384{width:3.920000pt;}
._2_c00384{width:5.040000pt;}
._a_c00384{width:6.408000pt;}
._3_c00384{width:7.760000pt;}
._9_c00384{width:8.904000pt;}
._12_c00384{width:9.826667pt;}
._11_c00384{width:10.730667pt;}
._4_c00384{width:12.400000pt;}
._1e_c00384{width:14.085333pt;}
._18_c00384{width:15.768000pt;}
._21_c00384{width:17.382370pt;}
._13_c00384{width:18.589333pt;}
._15_c00384{width:20.832000pt;}
._19_c00384{width:26.333333pt;}
._8_c00384{width:32.400000pt;}
._1b_c00384{width:34.928000pt;}
._16_c00384{width:87.960000pt;}
._1c_c00384{width:172.674667pt;}
._20_c00384{width:212.040000pt;}
.fs7_c00384{font-size:29.866667pt;}
.fs8_c00384{font-size:37.333333pt;}
.fs9_c00384{font-size:42.666667pt;}
.fs4_c00384{font-size:50.666667pt;}
.fs5_c00384{font-size:58.666667pt;}
.fs3_c00384{font-size:64.000000pt;}
.fs6_c00384{font-size:69.333333pt;}
.fs1_c00384{font-size:72.000000pt;}
.fs2_c00384{font-size:77.333333pt;}
.fs0_c00384{font-size:80.000000pt;}
.y0_c00384{bottom:0.000000pt;}
.y26_c00384{bottom:2.760000pt;}
.y25_c00384{bottom:6.425212pt;}
.y24_c00384{bottom:48.933333pt;}
.y23_c00384{bottom:71.333333pt;}
.y22_c00384{bottom:93.066667pt;}
.y21_c00384{bottom:115.200000pt;}
.y20_c00384{bottom:137.066667pt;}
.y1f_c00384{bottom:158.666667pt;}
.y1e_c00384{bottom:180.266667pt;}
.y1d_c00384{bottom:201.866667pt;}
.y1c_c00384{bottom:223.733333pt;}
.y1b_c00384{bottom:245.066667pt;}
.y1a_c00384{bottom:266.666667pt;}
.y19_c00384{bottom:288.266667pt;}
.y18_c00384{bottom:309.600000pt;}
.y17_c00384{bottom:330.533333pt;}
.y16_c00384{bottom:351.600000pt;}
.y15_c00384{bottom:373.466667pt;}
.y14_c00384{bottom:395.600000pt;}
.y13_c00384{bottom:416.400000pt;}
.y12_c00384{bottom:437.600000pt;}
.y11_c00384{bottom:459.600000pt;}
.y10_c00384{bottom:480.933333pt;}
.yf_c00384{bottom:503.600000pt;}
.ye_c00384{bottom:524.000000pt;}
.yd_c00384{bottom:545.066667pt;}
.yc_c00384{bottom:567.600000pt;}
.yb_c00384{bottom:588.933333pt;}
.ya_c00384{bottom:610.400000pt;}
.y9_c00384{bottom:632.133333pt;}
.y8_c00384{bottom:653.600000pt;}
.y7_c00384{bottom:675.333333pt;}
.y6_c00384{bottom:696.933333pt;}
.y5_c00384{bottom:718.533333pt;}
.y4_c00384{bottom:740.133333pt;}
.y3_c00384{bottom:761.733333pt;}
.y2_c00384{bottom:783.066667pt;}
.y1_c00384{bottom:813.333333pt;}
.h9_c00384{height:11.733399pt;}
.ha_c00384{height:38.937500pt;}
.h4_c00384{height:64.149740pt;}
.h7_c00384{height:70.664062pt;}
.h6_c00384{height:74.906250pt;}
.h5_c00384{height:81.031250pt;}
.h3_c00384{height:81.045333pt;}
.h8_c00384{height:87.783854pt;}
.h2_c00384{height:93.632812pt;}
.h0_c00384{height:866.400000pt;}
.h1_c00384{height:866.666667pt;}
.w2_c00384{width:93.222667pt;}
.w0_c00384{width:588.466667pt;}
.w1_c00384{width:588.666667pt;}
.x0_c00384{left:0.000000pt;}
.x4_c00384{left:31.200000pt;}
.x2_c00384{left:32.666667pt;}
.x3_c00384{left:34.400000pt;}
.x5_c00384{left:35.600000pt;}
.x6_c00384{left:36.533333pt;}
.x7_c00384{left:38.666667pt;}
.x8_c00384{left:40.133333pt;}
.x9_c00384{left:42.266667pt;}
.x1_c00384{left:78.400000pt;}
.xb_c00384{left:251.401571pt;}
.xa_c00384{left:362.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_6f3e149f5834ae6921c07c6f.woff2')format("woff");}.ff1_c00385{font-family:ff1_c00385;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00385;src:url('chunks/assets/font_b7b89b40a316aa56fdb01c45.woff2')format("woff");}.ff2_c00385{font-family:ff2_c00385;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00385;src:url('chunks/assets/font_de3e18af5016fe35852d2cbc.woff2')format("woff");}.ff3_c00385{font-family:ff3_c00385;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00385;src:url('chunks/assets/font_4fa4219bdaea9271c053ac74.woff2')format("woff");}.ff4_c00385{font-family:ff4_c00385;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00385;src:url('chunks/assets/font_97ea0b6858f66e17fd2ed483.woff2')format("woff");}.ff5_c00385{font-family:ff5_c00385;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00385;src:url('chunks/assets/font_a0493098c7389a6bb32f5006.woff2')format("woff");}.ff6_c00385{font-family:ff6_c00385;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00385;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c00385{font-family:ff7_c00385;line-height:1.219238;font-style: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;}
.v1_c00385{vertical-align:18.000000px;}
.ls6_c00385{letter-spacing:0.000000px;}
.ls3_c00385{letter-spacing:1.200000px;}
.ls7_c00385{letter-spacing:3.000000px;}
.ls2_c00385{letter-spacing:5.100000px;}
.ls0_c00385{letter-spacing:9.600000px;}
.ls4_c00385{letter-spacing:10.200000px;}
.ls8_c00385{letter-spacing:12.000000px;}
.ls1_c00385{letter-spacing:16.200000px;}
.ls5_c00385{letter-spacing:157.260000px;}
.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;}
}
.ws4_c00385{word-spacing:-67.686000px;}
.ws5_c00385{word-spacing:-55.620000px;}
.ws1_c00385{word-spacing:-28.350000px;}
.ws3_c00385{word-spacing:-20.250000px;}
.ws2_c00385{word-spacing:-18.750000px;}
.ws0_c00385{word-spacing:-18.000000px;}
.ws6_c00385{word-spacing:0.000000px;}
._12_c00385{margin-left:-18.621000px;}
._1_c00385{margin-left:-15.633000px;}
._f_c00385{margin-left:-12.513000px;}
._0_c00385{margin-left:-10.773000px;}
._16_c00385{margin-left:-8.697000px;}
._2_c00385{margin-left:-7.614000px;}
._3_c00385{margin-left:-6.156000px;}
._10_c00385{margin-left:-4.749000px;}
._5_c00385{margin-left:-3.300000px;}
._4_c00385{margin-left:-2.040000px;}
._e_c00385{margin-left:-1.035000px;}
._9_c00385{width:1.458000px;}
._8_c00385{width:2.754000px;}
._a_c00385{width:4.065000px;}
._d_c00385{width:5.226000px;}
._b_c00385{width:6.510000px;}
._17_c00385{width:7.527000px;}
._6_c00385{width:8.556000px;}
._11_c00385{width:9.750000px;}
._15_c00385{width:11.118000px;}
._c_c00385{width:12.339000px;}
._7_c00385{width:13.800000px;}
._1d_c00385{width:14.937000px;}
._14_c00385{width:16.623000px;}
._20_c00385{width:17.943000px;}
._13_c00385{width:19.020000px;}
._18_c00385{width:21.291000px;}
._1b_c00385{width:22.296000px;}
._1e_c00385{width:26.895000px;}
._1f_c00385{width:28.830000px;}
._1c_c00385{width:35.616000px;}
._1a_c00385{width:36.732000px;}
._19_c00385{width:39.549000px;}
.fc2_c00385{color:transparent;}
.fc1_c00385{color:rgb(128,128,128);}
.fc0_c00385{color:rgb(0,0,0);}
.fs6_c00385{font-size:48.000000px;}
.fs1_c00385{font-size:60.000000px;}
.fs2_c00385{font-size:69.000000px;}
.fs4_c00385{font-size:72.000000px;}
.fs3_c00385{font-size:75.000000px;}
.fs0_c00385{font-size:81.000000px;}
.fs5_c00385{font-size:87.000000px;}
.y0_c00385{bottom:0.000000px;}
.y26_c00385{bottom:3.105000px;}
.y25_c00385{bottom:7.228357px;}
.y24_c00385{bottom:64.530000px;}
.y23_c00385{bottom:85.830000px;}
.y22_c00385{bottom:110.730000px;}
.y21_c00385{bottom:135.630000px;}
.y20_c00385{bottom:159.930000px;}
.y1f_c00385{bottom:186.030000px;}
.y1e_c00385{bottom:208.680000px;}
.y1d_c00385{bottom:233.280000px;}
.y1c_c00385{bottom:257.580000px;}
.y1b_c00385{bottom:282.180000px;}
.y1a_c00385{bottom:306.480000px;}
.y19_c00385{bottom:330.780000px;}
.y18_c00385{bottom:355.080000px;}
.y17_c00385{bottom:379.980000px;}
.y16_c00385{bottom:404.430000px;}
.y15_c00385{bottom:429.630000px;}
.y14_c00385{bottom:453.630000px;}
.y13_c00385{bottom:477.330000px;}
.y12_c00385{bottom:501.180000px;}
.y11_c00385{bottom:525.180000px;}
.y10_c00385{bottom:548.880000px;}
.yf_c00385{bottom:573.180000px;}
.ye_c00385{bottom:597.480000px;}
.yd_c00385{bottom:617.280000px;}
.yc_c00385{bottom:646.080000px;}
.yb_c00385{bottom:694.230000px;}
.ya_c00385{bottom:719.580000px;}
.y2_c00385{bottom:740.880000px;}
.y9_c00385{bottom:743.280000px;}
.y8_c00385{bottom:767.580000px;}
.y7_c00385{bottom:791.880000px;}
.y1_c00385{bottom:813.330000px;}
.y6_c00385{bottom:816.180000px;}
.y5_c00385{bottom:839.430000px;}
.y4_c00385{bottom:864.030000px;}
.y3_c00385{bottom:888.030000px;}
.h9_c00385{height:13.200074px;}
.ha_c00385{height:43.804688px;}
.h2_c00385{height:67.719727px;}
.h4_c00385{height:73.608398px;}
.h8_c00385{height:75.966797px;}
.h1_c00385{height:79.497070px;}
.h3_c00385{height:81.632812px;}
.h7_c00385{height:84.269531px;}
.h5_c00385{height:91.176000px;}
.h6_c00385{height:97.497070px;}
.h0_c00385{height:995.250000px;}
.w2_c00385{width:104.875500px;}
.w0_c00385{width:667.425000px;}
.w1_c00385{width:667.500000px;}
.x0_c00385{left:0.000000px;}
.x1_c00385{left:23.850000px;}
.xa_c00385{left:73.200000px;}
.x3_c00385{left:108.750000px;}
.x2_c00385{left:111.000000px;}
.x4_c00385{left:112.050000px;}
.x8_c00385{left:114.150000px;}
.x9_c00385{left:115.350000px;}
.x6_c00385{left:116.850000px;}
.xb_c00385{left:118.500000px;}
.x7_c00385{left:164.100000px;}
.x5_c00385{left:170.100000px;}
.xd_c00385{left:285.526749px;}
.xc_c00385{left:602.100000px;}
@media print{
.v0_c00385{vertical-align:0.000000pt;}
.v1_c00385{vertical-align:16.000000pt;}
.ls6_c00385{letter-spacing:0.000000pt;}
.ls3_c00385{letter-spacing:1.066667pt;}
.ls7_c00385{letter-spacing:2.666667pt;}
.ls2_c00385{letter-spacing:4.533333pt;}
.ls0_c00385{letter-spacing:8.533333pt;}
.ls4_c00385{letter-spacing:9.066667pt;}
.ls8_c00385{letter-spacing:10.666667pt;}
.ls1_c00385{letter-spacing:14.400000pt;}
.ls5_c00385{letter-spacing:139.786667pt;}
.ws4_c00385{word-spacing:-60.165333pt;}
.ws5_c00385{word-spacing:-49.440000pt;}
.ws1_c00385{word-spacing:-25.200000pt;}
.ws3_c00385{word-spacing:-18.000000pt;}
.ws2_c00385{word-spacing:-16.666667pt;}
.ws0_c00385{word-spacing:-16.000000pt;}
.ws6_c00385{word-spacing:0.000000pt;}
._12_c00385{margin-left:-16.552000pt;}
._1_c00385{margin-left:-13.896000pt;}
._f_c00385{margin-left:-11.122667pt;}
._0_c00385{margin-left:-9.576000pt;}
._16_c00385{margin-left:-7.730667pt;}
._2_c00385{margin-left:-6.768000pt;}
._3_c00385{margin-left:-5.472000pt;}
._10_c00385{margin-left:-4.221333pt;}
._5_c00385{margin-left:-2.933333pt;}
._4_c00385{margin-left:-1.813333pt;}
._e_c00385{margin-left:-0.920000pt;}
._9_c00385{width:1.296000pt;}
._8_c00385{width:2.448000pt;}
._a_c00385{width:3.613333pt;}
._d_c00385{width:4.645333pt;}
._b_c00385{width:5.786667pt;}
._17_c00385{width:6.690667pt;}
._6_c00385{width:7.605333pt;}
._11_c00385{width:8.666667pt;}
._15_c00385{width:9.882667pt;}
._c_c00385{width:10.968000pt;}
._7_c00385{width:12.266667pt;}
._1d_c00385{width:13.277333pt;}
._14_c00385{width:14.776000pt;}
._20_c00385{width:15.949333pt;}
._13_c00385{width:16.906667pt;}
._18_c00385{width:18.925333pt;}
._1b_c00385{width:19.818667pt;}
._1e_c00385{width:23.906667pt;}
._1f_c00385{width:25.626667pt;}
._1c_c00385{width:31.658667pt;}
._1a_c00385{width:32.650667pt;}
._19_c00385{width:35.154667pt;}
.fs6_c00385{font-size:42.666667pt;}
.fs1_c00385{font-size:53.333333pt;}
.fs2_c00385{font-size:61.333333pt;}
.fs4_c00385{font-size:64.000000pt;}
.fs3_c00385{font-size:66.666667pt;}
.fs0_c00385{font-size:72.000000pt;}
.fs5_c00385{font-size:77.333333pt;}
.y0_c00385{bottom:0.000000pt;}
.y26_c00385{bottom:2.760000pt;}
.y25_c00385{bottom:6.425206pt;}
.y24_c00385{bottom:57.360000pt;}
.y23_c00385{bottom:76.293333pt;}
.y22_c00385{bottom:98.426667pt;}
.y21_c00385{bottom:120.560000pt;}
.y20_c00385{bottom:142.160000pt;}
.y1f_c00385{bottom:165.360000pt;}
.y1e_c00385{bottom:185.493333pt;}
.y1d_c00385{bottom:207.360000pt;}
.y1c_c00385{bottom:228.960000pt;}
.y1b_c00385{bottom:250.826667pt;}
.y1a_c00385{bottom:272.426667pt;}
.y19_c00385{bottom:294.026667pt;}
.y18_c00385{bottom:315.626667pt;}
.y17_c00385{bottom:337.760000pt;}
.y16_c00385{bottom:359.493333pt;}
.y15_c00385{bottom:381.893333pt;}
.y14_c00385{bottom:403.226667pt;}
.y13_c00385{bottom:424.293333pt;}
.y12_c00385{bottom:445.493333pt;}
.y11_c00385{bottom:466.826667pt;}
.y10_c00385{bottom:487.893333pt;}
.yf_c00385{bottom:509.493333pt;}
.ye_c00385{bottom:531.093333pt;}
.yd_c00385{bottom:548.693333pt;}
.yc_c00385{bottom:574.293333pt;}
.yb_c00385{bottom:617.093333pt;}
.ya_c00385{bottom:639.626667pt;}
.y2_c00385{bottom:658.560000pt;}
.y9_c00385{bottom:660.693333pt;}
.y8_c00385{bottom:682.293333pt;}
.y7_c00385{bottom:703.893333pt;}
.y1_c00385{bottom:722.960000pt;}
.y6_c00385{bottom:725.493333pt;}
.y5_c00385{bottom:746.160000pt;}
.y4_c00385{bottom:768.026667pt;}
.y3_c00385{bottom:789.360000pt;}
.h9_c00385{height:11.733399pt;}
.ha_c00385{height:38.937500pt;}
.h2_c00385{height:60.195312pt;}
.h4_c00385{height:65.429688pt;}
.h8_c00385{height:67.526042pt;}
.h1_c00385{height:70.664062pt;}
.h3_c00385{height:72.562500pt;}
.h7_c00385{height:74.906250pt;}
.h5_c00385{height:81.045333pt;}
.h6_c00385{height:86.664062pt;}
.h0_c00385{height:884.666667pt;}
.w2_c00385{width:93.222667pt;}
.w0_c00385{width:593.266667pt;}
.w1_c00385{width:593.333333pt;}
.x0_c00385{left:0.000000pt;}
.x1_c00385{left:21.200000pt;}
.xa_c00385{left:65.066667pt;}
.x3_c00385{left:96.666667pt;}
.x2_c00385{left:98.666667pt;}
.x4_c00385{left:99.600000pt;}
.x8_c00385{left:101.466667pt;}
.x9_c00385{left:102.533333pt;}
.x6_c00385{left:103.866667pt;}
.xb_c00385{left:105.333333pt;}
.x7_c00385{left:145.866667pt;}
.x5_c00385{left:151.200000pt;}
.xd_c00385{left:253.801554pt;}
.xc_c00385{left:535.200000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_bca2db88d3151dacd798e41d.woff2')format("woff");}.ff1_c00386{font-family:ff1_c00386;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00386;src:url('chunks/assets/font_b7c1f3db37a3cb93480ebe1d.woff2')format("woff");}.ff2_c00386{font-family:ff2_c00386;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00386;src:url('chunks/assets/font_fc71dd0c9476d1c1dde30820.woff2')format("woff");}.ff3_c00386{font-family:ff3_c00386;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00386;src:url('chunks/assets/font_8f966eee7430bbaccdbeb906.woff2')format("woff");}.ff4_c00386{font-family:ff4_c00386;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00386;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c00386{font-family:ff5_c00386;line-height:1.219238;font-style: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;}
.ls4_c00386{letter-spacing:0.000000px;}
.ls0_c00386{letter-spacing:10.800000px;}
.ls5_c00386{letter-spacing:12.000000px;}
.ls1_c00386{letter-spacing:12.402000px;}
.ls2_c00386{letter-spacing:17.802000px;}
.ls3_c00386{letter-spacing:31.602000px;}
.sc__c00386{text-shadow:none;}
.sc0_c00386{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00386{-webkit-text-stroke:0px transparent;}
.sc0_c00386{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00386{word-spacing:-67.686000px;}
.ws0_c00386{word-spacing:-28.152000px;}
.ws1_c00386{word-spacing:-25.737000px;}
.ws2_c00386{word-spacing:-17.352000px;}
.ws3_c00386{word-spacing:-13.737000px;}
.ws5_c00386{word-spacing:0.000000px;}
._22_c00386{margin-left:-16.692000px;}
._1e_c00386{margin-left:-10.701000px;}
._1c_c00386{margin-left:-9.543000px;}
._1f_c00386{margin-left:-8.415000px;}
._1d_c00386{margin-left:-6.795000px;}
._9_c00386{margin-left:-5.643000px;}
._7_c00386{margin-left:-4.554000px;}
._6_c00386{margin-left:-3.267000px;}
._5_c00386{margin-left:-2.178000px;}
._8_c00386{margin-left:-1.089000px;}
._e_c00386{width:1.620000px;}
._10_c00386{width:2.673000px;}
._d_c00386{width:3.807000px;}
._f_c00386{width:4.896000px;}
._11_c00386{width:5.931000px;}
._2_c00386{width:7.029000px;}
._12_c00386{width:8.145000px;}
._c_c00386{width:10.044000px;}
._15_c00386{width:11.190000px;}
._3_c00386{width:13.068000px;}
._1_c00386{width:14.949000px;}
._0_c00386{width:16.533000px;}
._24_c00386{width:17.577000px;}
._4_c00386{width:18.909000px;}
._20_c00386{width:21.477000px;}
._19_c00386{width:23.544000px;}
._16_c00386{width:24.687000px;}
._b_c00386{width:26.037000px;}
._25_c00386{width:27.144000px;}
._1a_c00386{width:28.269000px;}
._14_c00386{width:30.399000px;}
._a_c00386{width:32.076000px;}
._17_c00386{width:33.705000px;}
._23_c00386{width:36.204000px;}
._18_c00386{width:40.023000px;}
._21_c00386{width:42.204000px;}
._13_c00386{width:74.379000px;}
._1b_c00386{width:129.420000px;}
._26_c00386{width:224.901000px;}
.fc2_c00386{color:transparent;}
.fc1_c00386{color:rgb(128,128,128);}
.fc0_c00386{color:rgb(0,0,0);}
.fs6_c00386{font-size:48.000000px;}
.fs3_c00386{font-size:57.000000px;}
.fs2_c00386{font-size:72.000000px;}
.fs4_c00386{font-size:78.000000px;}
.fs1_c00386{font-size:81.000000px;}
.fs5_c00386{font-size:87.000000px;}
.fs0_c00386{font-size:99.000000px;}
.y0_c00386{bottom:0.000000px;}
.y26_c00386{bottom:3.105000px;}
.y25_c00386{bottom:7.228371px;}
.y24_c00386{bottom:67.215000px;}
.y23_c00386{bottom:90.765000px;}
.y22_c00386{bottom:116.865000px;}
.y21_c00386{bottom:140.865000px;}
.y20_c00386{bottom:166.065000px;}
.y1f_c00386{bottom:190.665000px;}
.y1e_c00386{bottom:214.965000px;}
.y1d_c00386{bottom:240.015000px;}
.y1c_c00386{bottom:264.315000px;}
.y1b_c00386{bottom:288.615000px;}
.y1a_c00386{bottom:313.215000px;}
.y19_c00386{bottom:337.515000px;}
.y18_c00386{bottom:361.215000px;}
.y17_c00386{bottom:385.515000px;}
.y16_c00386{bottom:410.115000px;}
.y15_c00386{bottom:434.715000px;}
.y14_c00386{bottom:458.415000px;}
.y13_c00386{bottom:482.265000px;}
.y12_c00386{bottom:506.565000px;}
.y11_c00386{bottom:531.015000px;}
.y10_c00386{bottom:555.315000px;}
.yf_c00386{bottom:579.915000px;}
.ye_c00386{bottom:603.165000px;}
.yd_c00386{bottom:627.465000px;}
.yc_c00386{bottom:652.515000px;}
.yb_c00386{bottom:676.065000px;}
.ya_c00386{bottom:700.065000px;}
.y9_c00386{bottom:724.365000px;}
.y8_c00386{bottom:748.365000px;}
.y7_c00386{bottom:772.515000px;}
.y6_c00386{bottom:796.965000px;}
.y5_c00386{bottom:820.515000px;}
.y4_c00386{bottom:845.415000px;}
.y3_c00386{bottom:869.715000px;}
.y2_c00386{bottom:894.465000px;}
.y1_c00386{bottom:926.865000px;}
.h9_c00386{height:13.200074px;}
.ha_c00386{height:43.804688px;}
.h6_c00386{height:72.168457px;}
.h3_c00386{height:79.497070px;}
.h4_c00386{height:84.269531px;}
.h5_c00386{height:91.160156px;}
.h8_c00386{height:91.176000px;}
.h7_c00386{height:98.756836px;}
.h2_c00386{height:115.870605px;}
.h0_c00386{height:989.025000px;}
.h1_c00386{height:989.250000px;}
.w1_c00386{width:104.875500px;}
.w0_c00386{width:672.000000px;}
.x0_c00386{left:0.000000px;}
.x6_c00386{left:44.250000px;}
.xd_c00386{left:49.200000px;}
.xa_c00386{left:50.250000px;}
.xc_c00386{left:51.900000px;}
.xb_c00386{left:52.950000px;}
.x9_c00386{left:55.650000px;}
.x8_c00386{left:57.750000px;}
.x7_c00386{left:60.150000px;}
.x5_c00386{left:63.150000px;}
.x4_c00386{left:65.250000px;}
.x3_c00386{left:66.450000px;}
.x2_c00386{left:67.500000px;}
.x1_c00386{left:69.900000px;}
.xf_c00386{left:287.814240px;}
.xe_c00386{left:395.100000px;}
@media print{
.v0_c00386{vertical-align:0.000000pt;}
.ls4_c00386{letter-spacing:0.000000pt;}
.ls0_c00386{letter-spacing:9.600000pt;}
.ls5_c00386{letter-spacing:10.666667pt;}
.ls1_c00386{letter-spacing:11.024000pt;}
.ls2_c00386{letter-spacing:15.824000pt;}
.ls3_c00386{letter-spacing:28.090667pt;}
.ws4_c00386{word-spacing:-60.165333pt;}
.ws0_c00386{word-spacing:-25.024000pt;}
.ws1_c00386{word-spacing:-22.877333pt;}
.ws2_c00386{word-spacing:-15.424000pt;}
.ws3_c00386{word-spacing:-12.210667pt;}
.ws5_c00386{word-spacing:0.000000pt;}
._22_c00386{margin-left:-14.837333pt;}
._1e_c00386{margin-left:-9.512000pt;}
._1c_c00386{margin-left:-8.482667pt;}
._1f_c00386{margin-left:-7.480000pt;}
._1d_c00386{margin-left:-6.040000pt;}
._9_c00386{margin-left:-5.016000pt;}
._7_c00386{margin-left:-4.048000pt;}
._6_c00386{margin-left:-2.904000pt;}
._5_c00386{margin-left:-1.936000pt;}
._8_c00386{margin-left:-0.968000pt;}
._e_c00386{width:1.440000pt;}
._10_c00386{width:2.376000pt;}
._d_c00386{width:3.384000pt;}
._f_c00386{width:4.352000pt;}
._11_c00386{width:5.272000pt;}
._2_c00386{width:6.248000pt;}
._12_c00386{width:7.240000pt;}
._c_c00386{width:8.928000pt;}
._15_c00386{width:9.946667pt;}
._3_c00386{width:11.616000pt;}
._1_c00386{width:13.288000pt;}
._0_c00386{width:14.696000pt;}
._24_c00386{width:15.624000pt;}
._4_c00386{width:16.808000pt;}
._20_c00386{width:19.090667pt;}
._19_c00386{width:20.928000pt;}
._16_c00386{width:21.944000pt;}
._b_c00386{width:23.144000pt;}
._25_c00386{width:24.128000pt;}
._1a_c00386{width:25.128000pt;}
._14_c00386{width:27.021333pt;}
._a_c00386{width:28.512000pt;}
._17_c00386{width:29.960000pt;}
._23_c00386{width:32.181333pt;}
._18_c00386{width:35.576000pt;}
._21_c00386{width:37.514667pt;}
._13_c00386{width:66.114667pt;}
._1b_c00386{width:115.040000pt;}
._26_c00386{width:199.912000pt;}
.fs6_c00386{font-size:42.666667pt;}
.fs3_c00386{font-size:50.666667pt;}
.fs2_c00386{font-size:64.000000pt;}
.fs4_c00386{font-size:69.333333pt;}
.fs1_c00386{font-size:72.000000pt;}
.fs5_c00386{font-size:77.333333pt;}
.fs0_c00386{font-size:88.000000pt;}
.y0_c00386{bottom:0.000000pt;}
.y26_c00386{bottom:2.760000pt;}
.y25_c00386{bottom:6.425219pt;}
.y24_c00386{bottom:59.746667pt;}
.y23_c00386{bottom:80.680000pt;}
.y22_c00386{bottom:103.880000pt;}
.y21_c00386{bottom:125.213333pt;}
.y20_c00386{bottom:147.613333pt;}
.y1f_c00386{bottom:169.480000pt;}
.y1e_c00386{bottom:191.080000pt;}
.y1d_c00386{bottom:213.346667pt;}
.y1c_c00386{bottom:234.946667pt;}
.y1b_c00386{bottom:256.546667pt;}
.y1a_c00386{bottom:278.413333pt;}
.y19_c00386{bottom:300.013333pt;}
.y18_c00386{bottom:321.080000pt;}
.y17_c00386{bottom:342.680000pt;}
.y16_c00386{bottom:364.546667pt;}
.y15_c00386{bottom:386.413333pt;}
.y14_c00386{bottom:407.480000pt;}
.y13_c00386{bottom:428.680000pt;}
.y12_c00386{bottom:450.280000pt;}
.y11_c00386{bottom:472.013333pt;}
.y10_c00386{bottom:493.613333pt;}
.yf_c00386{bottom:515.480000pt;}
.ye_c00386{bottom:536.146667pt;}
.yd_c00386{bottom:557.746667pt;}
.yc_c00386{bottom:580.013333pt;}
.yb_c00386{bottom:600.946667pt;}
.ya_c00386{bottom:622.280000pt;}
.y9_c00386{bottom:643.880000pt;}
.y8_c00386{bottom:665.213333pt;}
.y7_c00386{bottom:686.680000pt;}
.y6_c00386{bottom:708.413333pt;}
.y5_c00386{bottom:729.346667pt;}
.y4_c00386{bottom:751.480000pt;}
.y3_c00386{bottom:773.080000pt;}
.y2_c00386{bottom:795.080000pt;}
.y1_c00386{bottom:823.880000pt;}
.h9_c00386{height:11.733399pt;}
.ha_c00386{height:38.937500pt;}
.h6_c00386{height:64.149740pt;}
.h3_c00386{height:70.664062pt;}
.h4_c00386{height:74.906250pt;}
.h5_c00386{height:81.031250pt;}
.h8_c00386{height:81.045333pt;}
.h7_c00386{height:87.783854pt;}
.h2_c00386{height:102.996094pt;}
.h0_c00386{height:879.133333pt;}
.h1_c00386{height:879.333333pt;}
.w1_c00386{width:93.222667pt;}
.w0_c00386{width:597.333333pt;}
.x0_c00386{left:0.000000pt;}
.x6_c00386{left:39.333333pt;}
.xd_c00386{left:43.733333pt;}
.xa_c00386{left:44.666667pt;}
.xc_c00386{left:46.133333pt;}
.xb_c00386{left:47.066667pt;}
.x9_c00386{left:49.466667pt;}
.x8_c00386{left:51.333333pt;}
.x7_c00386{left:53.466667pt;}
.x5_c00386{left:56.133333pt;}
.x4_c00386{left:58.000000pt;}
.x3_c00386{left:59.066667pt;}
.x2_c00386{left:60.000000pt;}
.x1_c00386{left:62.133333pt;}
.xf_c00386{left:255.834880pt;}
.xe_c00386{left:351.200000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_9e3178d7c5a7b13008a229f9.woff2')format("woff");}.ff1_c00387{font-family:ff1_c00387;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00387;src:url('chunks/assets/font_92de1a21a6d74edf613f7ee4.woff2')format("woff");}.ff2_c00387{font-family:ff2_c00387;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00387;src:url('chunks/assets/font_c988803085e103a6b16027ce.woff2')format("woff");}.ff3_c00387{font-family:ff3_c00387;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00387;src:url('chunks/assets/font_57f3dd5d54666a89d821f25c.woff2')format("woff");}.ff4_c00387{font-family:ff4_c00387;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00387;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c00387{font-family:ff5_c00387;line-height:1.219238;font-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_c00387{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m0_c00387{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00387{vertical-align:0.000000px;}
.ls2_c00387{letter-spacing:0.000000px;}
.ls1_c00387{letter-spacing:3.816000px;}
.ls0_c00387{letter-spacing:22.602000px;}
.sc__c00387{text-shadow:none;}
.sc0_c00387{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00387{-webkit-text-stroke:0px transparent;}
.sc0_c00387{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00387{word-spacing:-27.000000px;}
.ws1_c00387{word-spacing:-17.352000px;}
.ws3_c00387{word-spacing:0.000000px;}
.ws0_c00387{word-spacing:1.425000px;}
._1a_c00387{margin-left:-13.062000px;}
._4_c00387{margin-left:-11.121000px;}
._19_c00387{margin-left:-9.714000px;}
._17_c00387{margin-left:-8.457000px;}
._18_c00387{margin-left:-6.990000px;}
._1_c00387{margin-left:-5.904000px;}
._2_c00387{margin-left:-4.896000px;}
._11_c00387{margin-left:-3.750000px;}
._3_c00387{margin-left:-2.568000px;}
._8_c00387{margin-left:-1.554000px;}
._5_c00387{width:1.611000px;}
._0_c00387{width:3.168000px;}
._7_c00387{width:4.302000px;}
._10_c00387{width:5.580000px;}
._b_c00387{width:6.642000px;}
._a_c00387{width:7.758000px;}
._f_c00387{width:9.315000px;}
._c_c00387{width:11.007000px;}
._13_c00387{width:12.072000px;}
._16_c00387{width:13.104000px;}
._12_c00387{width:14.280000px;}
._15_c00387{width:15.867000px;}
._9_c00387{width:17.022000px;}
._14_c00387{width:18.273000px;}
._1c_c00387{width:22.803000px;}
._1b_c00387{width:27.375000px;}
._1d_c00387{width:198.819000px;}
._e_c00387{width:218.277000px;}
._6_c00387{width:234.504000px;}
._d_c00387{width:284.454000px;}
.fc2_c00387{color:transparent;}
.fc1_c00387{color:rgb(128,128,128);}
.fc0_c00387{color:rgb(0,0,0);}
.fs5_c00387{font-size:48.000000px;}
.fs3_c00387{font-size:57.000000px;}
.fs0_c00387{font-size:72.000000px;}
.fs2_c00387{font-size:78.000000px;}
.fs1_c00387{font-size:81.000000px;}
.fs4_c00387{font-size:108.000000px;}
.y0_c00387{bottom:0.000000px;}
.y25_c00387{bottom:3.105000px;}
.y24_c00387{bottom:7.228357px;}
.y23_c00387{bottom:57.480000px;}
.y22_c00387{bottom:83.430000px;}
.y21_c00387{bottom:108.780000px;}
.y20_c00387{bottom:133.080000px;}
.y1f_c00387{bottom:157.380000px;}
.y1e_c00387{bottom:181.680000px;}
.y1d_c00387{bottom:205.980000px;}
.y1c_c00387{bottom:230.580000px;}
.y1b_c00387{bottom:254.580000px;}
.y1a_c00387{bottom:279.480000px;}
.y19_c00387{bottom:303.780000px;}
.y18_c00387{bottom:329.130000px;}
.y17_c00387{bottom:352.380000px;}
.y16_c00387{bottom:376.680000px;}
.y15_c00387{bottom:400.980000px;}
.y14_c00387{bottom:424.980000px;}
.y13_c00387{bottom:449.580000px;}
.y12_c00387{bottom:473.580000px;}
.y11_c00387{bottom:497.580000px;}
.y10_c00387{bottom:521.130000px;}
.yf_c00387{bottom:546.030000px;}
.ye_c00387{bottom:569.430000px;}
.yd_c00387{bottom:594.630000px;}
.yc_c00387{bottom:618.330000px;}
.yb_c00387{bottom:642.930000px;}
.ya_c00387{bottom:667.230000px;}
.y9_c00387{bottom:690.930000px;}
.y8_c00387{bottom:715.230000px;}
.y7_c00387{bottom:739.080000px;}
.y6_c00387{bottom:763.080000px;}
.y5_c00387{bottom:787.830000px;}
.y4_c00387{bottom:811.980000px;}
.y3_c00387{bottom:835.980000px;}
.y2_c00387{bottom:859.680000px;}
.y1_c00387{bottom:883.530000px;}
.h6_c00387{height:13.200074px;}
.h7_c00387{height:43.804688px;}
.h2_c00387{height:79.497070px;}
.h1_c00387{height:84.269531px;}
.h4_c00387{height:91.160156px;}
.h3_c00387{height:98.756836px;}
.h5_c00387{height:108.843750px;}
.h0_c00387{height:995.250000px;}
.w2_c00387{width:104.875500px;}
.w0_c00387{width:667.425000px;}
.w1_c00387{width:667.500000px;}
.x0_c00387{left:0.000000px;}
.x2_c00387{left:19.650000px;}
.x1_c00387{left:22.200000px;}
.x4_c00387{left:24.600000px;}
.x7_c00387{left:25.950000px;}
.x8_c00387{left:54.900000px;}
.x3_c00387{left:112.350000px;}
.x5_c00387{left:114.450000px;}
.x6_c00387{left:116.100000px;}
.x9_c00387{left:117.750000px;}
.xa_c00387{left:121.200000px;}
.xb_c00387{left:122.850000px;}
.xc_c00387{left:124.200000px;}
.xd_c00387{left:125.550000px;}
.xe_c00387{left:126.900000px;}
.xf_c00387{left:129.600000px;}
.x11_c00387{left:131.550000px;}
.x12_c00387{left:132.900000px;}
.x13_c00387{left:134.250000px;}
.x14_c00387{left:135.300000px;}
.x10_c00387{left:190.350000px;}
.x16_c00387{left:285.526749px;}
.x15_c00387{left:589.950000px;}
@media print{
.v0_c00387{vertical-align:0.000000pt;}
.ls2_c00387{letter-spacing:0.000000pt;}
.ls1_c00387{letter-spacing:3.392000pt;}
.ls0_c00387{letter-spacing:20.090667pt;}
.ws2_c00387{word-spacing:-24.000000pt;}
.ws1_c00387{word-spacing:-15.424000pt;}
.ws3_c00387{word-spacing:0.000000pt;}
.ws0_c00387{word-spacing:1.266667pt;}
._1a_c00387{margin-left:-11.610667pt;}
._4_c00387{margin-left:-9.885333pt;}
._19_c00387{margin-left:-8.634667pt;}
._17_c00387{margin-left:-7.517333pt;}
._18_c00387{margin-left:-6.213333pt;}
._1_c00387{margin-left:-5.248000pt;}
._2_c00387{margin-left:-4.352000pt;}
._11_c00387{margin-left:-3.333333pt;}
._3_c00387{margin-left:-2.282667pt;}
._8_c00387{margin-left:-1.381333pt;}
._5_c00387{width:1.432000pt;}
._0_c00387{width:2.816000pt;}
._7_c00387{width:3.824000pt;}
._10_c00387{width:4.960000pt;}
._b_c00387{width:5.904000pt;}
._a_c00387{width:6.896000pt;}
._f_c00387{width:8.280000pt;}
._c_c00387{width:9.784000pt;}
._13_c00387{width:10.730667pt;}
._16_c00387{width:11.648000pt;}
._12_c00387{width:12.693333pt;}
._15_c00387{width:14.104000pt;}
._9_c00387{width:15.130667pt;}
._14_c00387{width:16.242667pt;}
._1c_c00387{width:20.269333pt;}
._1b_c00387{width:24.333333pt;}
._1d_c00387{width:176.728000pt;}
._e_c00387{width:194.024000pt;}
._6_c00387{width:208.448000pt;}
._d_c00387{width:252.848000pt;}
.fs5_c00387{font-size:42.666667pt;}
.fs3_c00387{font-size:50.666667pt;}
.fs0_c00387{font-size:64.000000pt;}
.fs2_c00387{font-size:69.333333pt;}
.fs1_c00387{font-size:72.000000pt;}
.fs4_c00387{font-size:96.000000pt;}
.y0_c00387{bottom:0.000000pt;}
.y25_c00387{bottom:2.760000pt;}
.y24_c00387{bottom:6.425206pt;}
.y23_c00387{bottom:51.093333pt;}
.y22_c00387{bottom:74.160000pt;}
.y21_c00387{bottom:96.693333pt;}
.y20_c00387{bottom:118.293333pt;}
.y1f_c00387{bottom:139.893333pt;}
.y1e_c00387{bottom:161.493333pt;}
.y1d_c00387{bottom:183.093333pt;}
.y1c_c00387{bottom:204.960000pt;}
.y1b_c00387{bottom:226.293333pt;}
.y1a_c00387{bottom:248.426667pt;}
.y19_c00387{bottom:270.026667pt;}
.y18_c00387{bottom:292.560000pt;}
.y17_c00387{bottom:313.226667pt;}
.y16_c00387{bottom:334.826667pt;}
.y15_c00387{bottom:356.426667pt;}
.y14_c00387{bottom:377.760000pt;}
.y13_c00387{bottom:399.626667pt;}
.y12_c00387{bottom:420.960000pt;}
.y11_c00387{bottom:442.293333pt;}
.y10_c00387{bottom:463.226667pt;}
.yf_c00387{bottom:485.360000pt;}
.ye_c00387{bottom:506.160000pt;}
.yd_c00387{bottom:528.560000pt;}
.yc_c00387{bottom:549.626667pt;}
.yb_c00387{bottom:571.493333pt;}
.ya_c00387{bottom:593.093333pt;}
.y9_c00387{bottom:614.160000pt;}
.y8_c00387{bottom:635.760000pt;}
.y7_c00387{bottom:656.960000pt;}
.y6_c00387{bottom:678.293333pt;}
.y5_c00387{bottom:700.293333pt;}
.y4_c00387{bottom:721.760000pt;}
.y3_c00387{bottom:743.093333pt;}
.y2_c00387{bottom:764.160000pt;}
.y1_c00387{bottom:785.360000pt;}
.h6_c00387{height:11.733399pt;}
.h7_c00387{height:38.937500pt;}
.h2_c00387{height:70.664062pt;}
.h1_c00387{height:74.906250pt;}
.h4_c00387{height:81.031250pt;}
.h3_c00387{height:87.783854pt;}
.h5_c00387{height:96.750000pt;}
.h0_c00387{height:884.666667pt;}
.w2_c00387{width:93.222667pt;}
.w0_c00387{width:593.266667pt;}
.w1_c00387{width:593.333333pt;}
.x0_c00387{left:0.000000pt;}
.x2_c00387{left:17.466667pt;}
.x1_c00387{left:19.733333pt;}
.x4_c00387{left:21.866667pt;}
.x7_c00387{left:23.066667pt;}
.x8_c00387{left:48.800000pt;}
.x3_c00387{left:99.866667pt;}
.x5_c00387{left:101.733333pt;}
.x6_c00387{left:103.200000pt;}
.x9_c00387{left:104.666667pt;}
.xa_c00387{left:107.733333pt;}
.xb_c00387{left:109.200000pt;}
.xc_c00387{left:110.400000pt;}
.xd_c00387{left:111.600000pt;}
.xe_c00387{left:112.800000pt;}
.xf_c00387{left:115.200000pt;}
.x11_c00387{left:116.933333pt;}
.x12_c00387{left:118.133333pt;}
.x13_c00387{left:119.333333pt;}
.x14_c00387{left:120.266667pt;}
.x10_c00387{left:169.200000pt;}
.x16_c00387{left:253.801554pt;}
.x15_c00387{left:524.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a7cbdcf79d0ee8fd3f77e7c6.woff2')format("woff");}.ff1_c00388{font-family:ff1_c00388;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00388;src:url('chunks/assets/font_af30b20a67945669ff083255.woff2')format("woff");}.ff2_c00388{font-family:ff2_c00388;line-height:1.311035;font-style:normal;font-weight:normal;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_9935680a25ff23f32a541399.woff2')format("woff");}.ff3_c00388{font-family:ff3_c00388;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00388;src:url('chunks/assets/font_b5fd74821e5cf5267cc51145.woff2')format("woff");}.ff4_c00388{font-family:ff4_c00388;line-height:1.437000;font-style:normal;font-weight:normal;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_8ffe58b8b68a9311c36de91f.woff2')format("woff");}.ff5_c00388{font-family:ff5_c00388;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00388;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff6_c00388{font-family:ff6_c00388;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00388;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c00388{font-family:ff7_c00388;line-height:1.219238;font-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_c00388{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,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;}
.ls5_c00388{letter-spacing:0.000000px;}
.ls1_c00388{letter-spacing:0.900000px;}
.ls4_c00388{letter-spacing:3.000000px;}
.ls3_c00388{letter-spacing:10.500000px;}
.ls2_c00388{letter-spacing:20.202000px;}
.ls0_c00388{letter-spacing:23.250000px;}
.sc__c00388{text-shadow:none;}
.sc0_c00388{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00388{-webkit-text-stroke:0px transparent;}
.sc0_c00388{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00388{word-spacing:-67.686000px;}
.ws2_c00388{word-spacing:-20.250000px;}
.ws1_c00388{word-spacing:-17.352000px;}
.ws3_c00388{word-spacing:-0.864000px;}
.ws4_c00388{word-spacing:0.000000px;}
._23_c00388{margin-left:-26.406000px;}
._20_c00388{margin-left:-19.818000px;}
._1c_c00388{margin-left:-13.779000px;}
._10_c00388{margin-left:-11.355000px;}
._17_c00388{margin-left:-9.837000px;}
._16_c00388{margin-left:-8.214000px;}
._1a_c00388{margin-left:-7.158000px;}
._6_c00388{margin-left:-5.610000px;}
._9_c00388{margin-left:-3.570000px;}
._8_c00388{margin-left:-2.448000px;}
._a_c00388{margin-left:-1.326000px;}
._7_c00388{width:1.326000px;}
._18_c00388{width:2.328000px;}
._f_c00388{width:3.342000px;}
._1e_c00388{width:4.353000px;}
._11_c00388{width:5.385000px;}
._2_c00388{width:6.834000px;}
._15_c00388{width:8.439000px;}
._5_c00388{width:10.098000px;}
._4_c00388{width:11.730000px;}
._1_c00388{width:12.954000px;}
._1b_c00388{width:13.983000px;}
._19_c00388{width:15.726000px;}
._0_c00388{width:17.136000px;}
._1f_c00388{width:18.225000px;}
._3_c00388{width:21.420000px;}
._22_c00388{width:23.313000px;}
._12_c00388{width:26.340000px;}
._13_c00388{width:27.567000px;}
._14_c00388{width:30.726000px;}
._d_c00388{width:33.456000px;}
._c_c00388{width:38.250000px;}
._b_c00388{width:39.468000px;}
._21_c00388{width:42.357000px;}
._24_c00388{width:43.839000px;}
._e_c00388{width:44.982000px;}
._25_c00388{width:259.380000px;}
._1d_c00388{width:477.192000px;}
.fc2_c00388{color:transparent;}
.fc1_c00388{color:rgb(128,128,128);}
.fc0_c00388{color:rgb(0,0,0);}
.fs8_c00388{font-size:48.000000px;}
.fs4_c00388{font-size:57.000000px;}
.fs5_c00388{font-size:63.000000px;}
.fs3_c00388{font-size:72.000000px;}
.fs6_c00388{font-size:78.000000px;}
.fs2_c00388{font-size:81.000000px;}
.fs1_c00388{font-size:87.000000px;}
.fs0_c00388{font-size:102.000000px;}
.fs7_c00388{font-size:108.000000px;}
.y0_c00388{bottom:0.000000px;}
.y26_c00388{bottom:3.105000px;}
.y25_c00388{bottom:7.228371px;}
.y24_c00388{bottom:50.265000px;}
.y23_c00388{bottom:77.415000px;}
.y22_c00388{bottom:97.965000px;}
.y21_c00388{bottom:127.365000px;}
.y20_c00388{bottom:153.015000px;}
.y1f_c00388{bottom:177.615000px;}
.y1e_c00388{bottom:203.265000px;}
.y1d_c00388{bottom:226.815000px;}
.y1c_c00388{bottom:251.565000px;}
.y1b_c00388{bottom:275.415000px;}
.y1a_c00388{bottom:301.365000px;}
.y19_c00388{bottom:324.465000px;}
.y18_c00388{bottom:350.415000px;}
.y17_c00388{bottom:375.615000px;}
.y16_c00388{bottom:399.915000px;}
.y15_c00388{bottom:422.565000px;}
.y14_c00388{bottom:446.865000px;}
.y13_c00388{bottom:472.815000px;}
.y12_c00388{bottom:497.565000px;}
.y11_c00388{bottom:521.865000px;}
.y10_c00388{bottom:546.465000px;}
.yf_c00388{bottom:570.165000px;}
.ye_c00388{bottom:594.765000px;}
.yd_c00388{bottom:619.365000px;}
.yc_c00388{bottom:643.665000px;}
.yb_c00388{bottom:668.265000px;}
.ya_c00388{bottom:692.865000px;}
.y9_c00388{bottom:717.915000px;}
.y8_c00388{bottom:742.815000px;}
.y7_c00388{bottom:767.115000px;}
.y6_c00388{bottom:791.565000px;}
.y5_c00388{bottom:816.465000px;}
.y4_c00388{bottom:841.065000px;}
.y3_c00388{bottom:864.765000px;}
.y2_c00388{bottom:889.965000px;}
.y1_c00388{bottom:925.065000px;}
.ha_c00388{height:13.200074px;}
.hb_c00388{height:43.804688px;}
.h7_c00388{height:72.168457px;}
.h3_c00388{height:79.497070px;}
.h6_c00388{height:84.269531px;}
.h5_c00388{height:91.160156px;}
.h4_c00388{height:91.176000px;}
.h8_c00388{height:98.756836px;}
.h2_c00388{height:100.057617px;}
.h9_c00388{height:108.843750px;}
.h0_c00388{height:989.025000px;}
.h1_c00388{height:989.250000px;}
.w1_c00388{width:104.875500px;}
.w0_c00388{width:672.000000px;}
.x0_c00388{left:0.000000px;}
.x3_c00388{left:31.800000px;}
.x2_c00388{left:51.300000px;}
.x5_c00388{left:52.350000px;}
.x4_c00388{left:53.400000px;}
.x1_c00388{left:55.050000px;}
.x6_c00388{left:80.250000px;}
.xb_c00388{left:287.814240px;}
.x8_c00388{left:295.200000px;}
.x9_c00388{left:316.500000px;}
.xa_c00388{left:411.750000px;}
.x7_c00388{left:541.650000px;}
@media print{
.v0_c00388{vertical-align:0.000000pt;}
.ls5_c00388{letter-spacing:0.000000pt;}
.ls1_c00388{letter-spacing:0.800000pt;}
.ls4_c00388{letter-spacing:2.666667pt;}
.ls3_c00388{letter-spacing:9.333333pt;}
.ls2_c00388{letter-spacing:17.957333pt;}
.ls0_c00388{letter-spacing:20.666667pt;}
.ws0_c00388{word-spacing:-60.165333pt;}
.ws2_c00388{word-spacing:-18.000000pt;}
.ws1_c00388{word-spacing:-15.424000pt;}
.ws3_c00388{word-spacing:-0.768000pt;}
.ws4_c00388{word-spacing:0.000000pt;}
._23_c00388{margin-left:-23.472000pt;}
._20_c00388{margin-left:-17.616000pt;}
._1c_c00388{margin-left:-12.248000pt;}
._10_c00388{margin-left:-10.093333pt;}
._17_c00388{margin-left:-8.744000pt;}
._16_c00388{margin-left:-7.301333pt;}
._1a_c00388{margin-left:-6.362667pt;}
._6_c00388{margin-left:-4.986667pt;}
._9_c00388{margin-left:-3.173333pt;}
._8_c00388{margin-left:-2.176000pt;}
._a_c00388{margin-left:-1.178667pt;}
._7_c00388{width:1.178667pt;}
._18_c00388{width:2.069333pt;}
._f_c00388{width:2.970667pt;}
._1e_c00388{width:3.869333pt;}
._11_c00388{width:4.786667pt;}
._2_c00388{width:6.074667pt;}
._15_c00388{width:7.501333pt;}
._5_c00388{width:8.976000pt;}
._4_c00388{width:10.426667pt;}
._1_c00388{width:11.514667pt;}
._1b_c00388{width:12.429333pt;}
._19_c00388{width:13.978667pt;}
._0_c00388{width:15.232000pt;}
._1f_c00388{width:16.200000pt;}
._3_c00388{width:19.040000pt;}
._22_c00388{width:20.722667pt;}
._12_c00388{width:23.413333pt;}
._13_c00388{width:24.504000pt;}
._14_c00388{width:27.312000pt;}
._d_c00388{width:29.738667pt;}
._c_c00388{width:34.000000pt;}
._b_c00388{width:35.082667pt;}
._21_c00388{width:37.650667pt;}
._24_c00388{width:38.968000pt;}
._e_c00388{width:39.984000pt;}
._25_c00388{width:230.560000pt;}
._1d_c00388{width:424.170667pt;}
.fs8_c00388{font-size:42.666667pt;}
.fs4_c00388{font-size:50.666667pt;}
.fs5_c00388{font-size:56.000000pt;}
.fs3_c00388{font-size:64.000000pt;}
.fs6_c00388{font-size:69.333333pt;}
.fs2_c00388{font-size:72.000000pt;}
.fs1_c00388{font-size:77.333333pt;}
.fs0_c00388{font-size:90.666667pt;}
.fs7_c00388{font-size:96.000000pt;}
.y0_c00388{bottom:0.000000pt;}
.y26_c00388{bottom:2.760000pt;}
.y25_c00388{bottom:6.425219pt;}
.y24_c00388{bottom:44.680000pt;}
.y23_c00388{bottom:68.813333pt;}
.y22_c00388{bottom:87.080000pt;}
.y21_c00388{bottom:113.213333pt;}
.y20_c00388{bottom:136.013333pt;}
.y1f_c00388{bottom:157.880000pt;}
.y1e_c00388{bottom:180.680000pt;}
.y1d_c00388{bottom:201.613333pt;}
.y1c_c00388{bottom:223.613333pt;}
.y1b_c00388{bottom:244.813333pt;}
.y1a_c00388{bottom:267.880000pt;}
.y19_c00388{bottom:288.413333pt;}
.y18_c00388{bottom:311.480000pt;}
.y17_c00388{bottom:333.880000pt;}
.y16_c00388{bottom:355.480000pt;}
.y15_c00388{bottom:375.613333pt;}
.y14_c00388{bottom:397.213333pt;}
.y13_c00388{bottom:420.280000pt;}
.y12_c00388{bottom:442.280000pt;}
.y11_c00388{bottom:463.880000pt;}
.y10_c00388{bottom:485.746667pt;}
.yf_c00388{bottom:506.813333pt;}
.ye_c00388{bottom:528.680000pt;}
.yd_c00388{bottom:550.546667pt;}
.yc_c00388{bottom:572.146667pt;}
.yb_c00388{bottom:594.013333pt;}
.ya_c00388{bottom:615.880000pt;}
.y9_c00388{bottom:638.146667pt;}
.y8_c00388{bottom:660.280000pt;}
.y7_c00388{bottom:681.880000pt;}
.y6_c00388{bottom:703.613333pt;}
.y5_c00388{bottom:725.746667pt;}
.y4_c00388{bottom:747.613333pt;}
.y3_c00388{bottom:768.680000pt;}
.y2_c00388{bottom:791.080000pt;}
.y1_c00388{bottom:822.280000pt;}
.ha_c00388{height:11.733399pt;}
.hb_c00388{height:38.937500pt;}
.h7_c00388{height:64.149740pt;}
.h3_c00388{height:70.664062pt;}
.h6_c00388{height:74.906250pt;}
.h5_c00388{height:81.031250pt;}
.h4_c00388{height:81.045333pt;}
.h8_c00388{height:87.783854pt;}
.h2_c00388{height:88.940104pt;}
.h9_c00388{height:96.750000pt;}
.h0_c00388{height:879.133333pt;}
.h1_c00388{height:879.333333pt;}
.w1_c00388{width:93.222667pt;}
.w0_c00388{width:597.333333pt;}
.x0_c00388{left:0.000000pt;}
.x3_c00388{left:28.266667pt;}
.x2_c00388{left:45.600000pt;}
.x5_c00388{left:46.533333pt;}
.x4_c00388{left:47.466667pt;}
.x1_c00388{left:48.933333pt;}
.x6_c00388{left:71.333333pt;}
.xb_c00388{left:255.834880pt;}
.x8_c00388{left:262.400000pt;}
.x9_c00388{left:281.333333pt;}
.xa_c00388{left:366.000000pt;}
.x7_c00388{left:481.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_4c3cc84acddc4c63cb13e84b.woff2')format("woff");}.ff1_c00389{font-family:ff1_c00389;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00389;src:url('chunks/assets/font_d8c14adf5f2b1cc380617725.woff2')format("woff");}.ff2_c00389{font-family:ff2_c00389;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00389;src:url('chunks/assets/font_e2ffb6c76d93f2cc2123c77d.woff2')format("woff");}.ff3_c00389{font-family:ff3_c00389;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00389;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff4_c00389{font-family:ff4_c00389;line-height:1.219238;font-style: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;}
.ls0_c00389{letter-spacing:0.000000px;}
.ls1_c00389{letter-spacing:36.000000px;}
.sc__c00389{text-shadow:none;}
.sc0_c00389{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00389{-webkit-text-stroke:0px transparent;}
.sc0_c00389{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00389{word-spacing:-20.250000px;}
.ws0_c00389{word-spacing:-17.352000px;}
.ws2_c00389{word-spacing:0.000000px;}
._21_c00389{margin-left:-24.570000px;}
._23_c00389{margin-left:-23.409000px;}
._1b_c00389{margin-left:-21.870000px;}
._29_c00389{margin-left:-19.440000px;}
._1f_c00389{margin-left:-18.063000px;}
._1a_c00389{margin-left:-16.416000px;}
._12_c00389{margin-left:-13.932000px;}
._19_c00389{margin-left:-12.744000px;}
._18_c00389{margin-left:-11.097000px;}
._16_c00389{margin-left:-9.639000px;}
._14_c00389{margin-left:-8.505000px;}
._8_c00389{margin-left:-7.452000px;}
._1_c00389{margin-left:-5.832000px;}
._7_c00389{margin-left:-4.779000px;}
._4_c00389{margin-left:-3.321000px;}
._5_c00389{margin-left:-1.782000px;}
._2_c00389{width:1.863000px;}
._0_c00389{width:3.645000px;}
._6_c00389{width:4.779000px;}
._3_c00389{width:6.318000px;}
._a_c00389{width:7.857000px;}
._e_c00389{width:8.910000px;}
._9_c00389{width:9.963000px;}
._11_c00389{width:11.016000px;}
._10_c00389{width:12.150000px;}
._d_c00389{width:13.932000px;}
._15_c00389{width:15.471000px;}
._c_c00389{width:17.982000px;}
._1c_c00389{width:22.032000px;}
._22_c00389{width:26.001000px;}
._1e_c00389{width:29.376000px;}
._2a_c00389{width:30.630000px;}
._1d_c00389{width:35.307000px;}
._f_c00389{width:36.843000px;}
._b_c00389{width:40.905000px;}
._28_c00389{width:69.417000px;}
._24_c00389{width:140.418000px;}
._20_c00389{width:190.350000px;}
._25_c00389{width:248.883000px;}
._17_c00389{width:367.659000px;}
._26_c00389{width:387.423000px;}
._13_c00389{width:390.420000px;}
._27_c00389{width:774.759000px;}
._2b_c00389{width:1848.744000px;}
.fc2_c00389{color:transparent;}
.fc1_c00389{color:rgb(128,128,128);}
.fc0_c00389{color:rgb(0,0,0);}
.fs3_c00389{font-size:48.000000px;}
.fs1_c00389{font-size:72.000000px;}
.fs0_c00389{font-size:81.000000px;}
.fs2_c00389{font-size:144.000000px;}
.y0_c00389{bottom:0.000000px;}
.y28_c00389{bottom:3.105000px;}
.y27_c00389{bottom:7.228369px;}
.y25_c00389{bottom:8.670000px;}
.y24_c00389{bottom:18.870000px;}
.y23_c00389{bottom:41.520000px;}
.y22_c00389{bottom:67.470000px;}
.y21_c00389{bottom:92.070000px;}
.y20_c00389{bottom:119.070000px;}
.y1f_c00389{bottom:141.420000px;}
.y1e_c00389{bottom:166.020000px;}
.y1d_c00389{bottom:190.920000px;}
.y1c_c00389{bottom:215.370000px;}
.y1b_c00389{bottom:239.970000px;}
.y1a_c00389{bottom:264.270000px;}
.y19_c00389{bottom:289.170000px;}
.y26_c00389{bottom:308.370000px;}
.y18_c00389{bottom:313.770000px;}
.y17_c00389{bottom:338.220000px;}
.y16_c00389{bottom:363.420000px;}
.y15_c00389{bottom:386.670000px;}
.y14_c00389{bottom:412.020000px;}
.y13_c00389{bottom:436.770000px;}
.y12_c00389{bottom:460.920000px;}
.y11_c00389{bottom:485.670000px;}
.y10_c00389{bottom:509.670000px;}
.yf_c00389{bottom:534.270000px;}
.ye_c00389{bottom:558.270000px;}
.yd_c00389{bottom:582.570000px;}
.yc_c00389{bottom:607.170000px;}
.yb_c00389{bottom:631.770000px;}
.ya_c00389{bottom:656.370000px;}
.y9_c00389{bottom:680.670000px;}
.y8_c00389{bottom:705.270000px;}
.y7_c00389{bottom:729.720000px;}
.y6_c00389{bottom:754.320000px;}
.y5_c00389{bottom:778.620000px;}
.y4_c00389{bottom:805.170000px;}
.y3_c00389{bottom:827.820000px;}
.y2_c00389{bottom:852.870000px;}
.y1_c00389{bottom:877.770000px;}
.h6_c00389{height:13.200073px;}
.h7_c00389{height:43.804688px;}
.h2_c00389{height:79.497070px;}
.h3_c00389{height:84.269531px;}
.h4_c00389{height:91.160156px;}
.h5_c00389{height:182.320312px;}
.h1_c00389{height:981.000000px;}
.h0_c00389{height:981.150000px;}
.w1_c00389{width:104.875500px;}
.w0_c00389{width:657.750000px;}
.x0_c00389{left:0.000000px;}
.x13_c00389{left:12.150000px;}
.xd_c00389{left:13.200000px;}
.xe_c00389{left:15.150000px;}
.x5_c00389{left:17.850000px;}
.x7_c00389{left:20.250000px;}
.x6_c00389{left:21.600000px;}
.x3_c00389{left:25.950000px;}
.x9_c00389{left:56.700000px;}
.x11_c00389{left:61.200000px;}
.x12_c00389{left:99.900000px;}
.x10_c00389{left:109.050000px;}
.xf_c00389{left:117.900000px;}
.x8_c00389{left:119.400000px;}
.x2_c00389{left:120.450000px;}
.x1_c00389{left:121.950000px;}
.x4_c00389{left:123.600000px;}
.xb_c00389{left:169.500000px;}
.xc_c00389{left:174.900000px;}
.xa_c00389{left:184.650000px;}
.x14_c00389{left:280.689240px;}
@media print{
.v0_c00389{vertical-align:0.000000pt;}
.ls0_c00389{letter-spacing:0.000000pt;}
.ls1_c00389{letter-spacing:32.000000pt;}
.ws1_c00389{word-spacing:-18.000000pt;}
.ws0_c00389{word-spacing:-15.424000pt;}
.ws2_c00389{word-spacing:0.000000pt;}
._21_c00389{margin-left:-21.840000pt;}
._23_c00389{margin-left:-20.808000pt;}
._1b_c00389{margin-left:-19.440000pt;}
._29_c00389{margin-left:-17.280000pt;}
._1f_c00389{margin-left:-16.056000pt;}
._1a_c00389{margin-left:-14.592000pt;}
._12_c00389{margin-left:-12.384000pt;}
._19_c00389{margin-left:-11.328000pt;}
._18_c00389{margin-left:-9.864000pt;}
._16_c00389{margin-left:-8.568000pt;}
._14_c00389{margin-left:-7.560000pt;}
._8_c00389{margin-left:-6.624000pt;}
._1_c00389{margin-left:-5.184000pt;}
._7_c00389{margin-left:-4.248000pt;}
._4_c00389{margin-left:-2.952000pt;}
._5_c00389{margin-left:-1.584000pt;}
._2_c00389{width:1.656000pt;}
._0_c00389{width:3.240000pt;}
._6_c00389{width:4.248000pt;}
._3_c00389{width:5.616000pt;}
._a_c00389{width:6.984000pt;}
._e_c00389{width:7.920000pt;}
._9_c00389{width:8.856000pt;}
._11_c00389{width:9.792000pt;}
._10_c00389{width:10.800000pt;}
._d_c00389{width:12.384000pt;}
._15_c00389{width:13.752000pt;}
._c_c00389{width:15.984000pt;}
._1c_c00389{width:19.584000pt;}
._22_c00389{width:23.112000pt;}
._1e_c00389{width:26.112000pt;}
._2a_c00389{width:27.226667pt;}
._1d_c00389{width:31.384000pt;}
._f_c00389{width:32.749333pt;}
._b_c00389{width:36.360000pt;}
._28_c00389{width:61.704000pt;}
._24_c00389{width:124.816000pt;}
._20_c00389{width:169.200000pt;}
._25_c00389{width:221.229333pt;}
._17_c00389{width:326.808000pt;}
._26_c00389{width:344.376000pt;}
._13_c00389{width:347.040000pt;}
._27_c00389{width:688.674667pt;}
._2b_c00389{width:1643.328000pt;}
.fs3_c00389{font-size:42.666667pt;}
.fs1_c00389{font-size:64.000000pt;}
.fs0_c00389{font-size:72.000000pt;}
.fs2_c00389{font-size:128.000000pt;}
.y0_c00389{bottom:0.000000pt;}
.y28_c00389{bottom:2.760000pt;}
.y27_c00389{bottom:6.425217pt;}
.y25_c00389{bottom:7.706667pt;}
.y24_c00389{bottom:16.773333pt;}
.y23_c00389{bottom:36.906667pt;}
.y22_c00389{bottom:59.973333pt;}
.y21_c00389{bottom:81.840000pt;}
.y20_c00389{bottom:105.840000pt;}
.y1f_c00389{bottom:125.706667pt;}
.y1e_c00389{bottom:147.573333pt;}
.y1d_c00389{bottom:169.706667pt;}
.y1c_c00389{bottom:191.440000pt;}
.y1b_c00389{bottom:213.306667pt;}
.y1a_c00389{bottom:234.906667pt;}
.y19_c00389{bottom:257.040000pt;}
.y26_c00389{bottom:274.106667pt;}
.y18_c00389{bottom:278.906667pt;}
.y17_c00389{bottom:300.640000pt;}
.y16_c00389{bottom:323.040000pt;}
.y15_c00389{bottom:343.706667pt;}
.y14_c00389{bottom:366.240000pt;}
.y13_c00389{bottom:388.240000pt;}
.y12_c00389{bottom:409.706667pt;}
.y11_c00389{bottom:431.706667pt;}
.y10_c00389{bottom:453.040000pt;}
.yf_c00389{bottom:474.906667pt;}
.ye_c00389{bottom:496.240000pt;}
.yd_c00389{bottom:517.840000pt;}
.yc_c00389{bottom:539.706667pt;}
.yb_c00389{bottom:561.573333pt;}
.ya_c00389{bottom:583.440000pt;}
.y9_c00389{bottom:605.040000pt;}
.y8_c00389{bottom:626.906667pt;}
.y7_c00389{bottom:648.640000pt;}
.y6_c00389{bottom:670.506667pt;}
.y5_c00389{bottom:692.106667pt;}
.y4_c00389{bottom:715.706667pt;}
.y3_c00389{bottom:735.840000pt;}
.y2_c00389{bottom:758.106667pt;}
.y1_c00389{bottom:780.240000pt;}
.h6_c00389{height:11.733399pt;}
.h7_c00389{height:38.937500pt;}
.h2_c00389{height:70.664062pt;}
.h3_c00389{height:74.906250pt;}
.h4_c00389{height:81.031250pt;}
.h5_c00389{height:162.062500pt;}
.h1_c00389{height:872.000000pt;}
.h0_c00389{height:872.133333pt;}
.w1_c00389{width:93.222667pt;}
.w0_c00389{width:584.666667pt;}
.x0_c00389{left:0.000000pt;}
.x13_c00389{left:10.800000pt;}
.xd_c00389{left:11.733333pt;}
.xe_c00389{left:13.466667pt;}
.x5_c00389{left:15.866667pt;}
.x7_c00389{left:18.000000pt;}
.x6_c00389{left:19.200000pt;}
.x3_c00389{left:23.066667pt;}
.x9_c00389{left:50.400000pt;}
.x11_c00389{left:54.400000pt;}
.x12_c00389{left:88.800000pt;}
.x10_c00389{left:96.933333pt;}
.xf_c00389{left:104.800000pt;}
.x8_c00389{left:106.133333pt;}
.x2_c00389{left:107.066667pt;}
.x1_c00389{left:108.400000pt;}
.x4_c00389{left:109.866667pt;}
.xb_c00389{left:150.666667pt;}
.xc_c00389{left:155.466667pt;}
.xa_c00389{left:164.133333pt;}
.x14_c00389{left:249.501546pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3b3c18f15cd8cbb48e07ca11.woff2')format("woff");}.ff1_c00390{font-family:ff1_c00390;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00390;src:url('chunks/assets/font_2066bd9bf9463b1e5e2bb582.woff2')format("woff");}.ff2_c00390{font-family:ff2_c00390;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00390;src:url('chunks/assets/font_d2d74162df2f6219b0df6649.woff2')format("woff");}.ff3_c00390{font-family:ff3_c00390;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00390;src:url('chunks/assets/font_e1b04a67b92cdcd4a6126a11.woff2')format("woff");}.ff4_c00390{font-family:ff4_c00390;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00390;src:url('chunks/assets/font_b8eeacb91e2ff6620fd618f7.woff2')format("woff");}.ff5_c00390{font-family:ff5_c00390;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00390;src:url('chunks/assets/font_c4c9fd913ad2d5f7ff7d942a.woff2')format("woff");}.ff6_c00390{font-family:ff6_c00390;line-height:1.437000;font-style:normal;font-weight: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_c00390;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c00390{font-family:ff7_c00390;line-height:1.219238;font-style: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;}
.ls0_c00390{letter-spacing:0.000000px;}
.sc__c00390{text-shadow:none;}
.sc0_c00390{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00390{-webkit-text-stroke:0px transparent;}
.sc0_c00390{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00390{word-spacing:-67.686000px;}
.ws0_c00390{word-spacing:-17.352000px;}
.ws2_c00390{word-spacing:0.000000px;}
._e_c00390{margin-left:-24.255000px;}
._21_c00390{margin-left:-21.303000px;}
._1b_c00390{margin-left:-19.764000px;}
._b_c00390{margin-left:-15.543000px;}
._5_c00390{margin-left:-14.256000px;}
._17_c00390{margin-left:-12.009000px;}
._4_c00390{margin-left:-10.890000px;}
._f_c00390{margin-left:-9.702000px;}
._10_c00390{margin-left:-7.524000px;}
._3_c00390{margin-left:-6.432000px;}
._8_c00390{margin-left:-4.653000px;}
._a_c00390{margin-left:-2.772000px;}
._9_c00390{margin-left:-1.188000px;}
._2_c00390{width:1.029000px;}
._1_c00390{width:2.376000px;}
._12_c00390{width:3.909000px;}
._13_c00390{width:5.472000px;}
._0_c00390{width:6.633000px;}
._d_c00390{width:8.415000px;}
._c_c00390{width:10.395000px;}
._15_c00390{width:12.312000px;}
._25_c00390{width:13.527000px;}
._7_c00390{width:14.751000px;}
._6_c00390{width:15.939000px;}
._1a_c00390{width:17.475000px;}
._24_c00390{width:25.038000px;}
._1d_c00390{width:28.026000px;}
._1e_c00390{width:29.403000px;}
._11_c00390{width:30.432000px;}
._14_c00390{width:36.537000px;}
._19_c00390{width:38.799000px;}
._1c_c00390{width:51.111000px;}
._1f_c00390{width:67.146000px;}
._23_c00390{width:78.120000px;}
._22_c00390{width:84.060000px;}
._20_c00390{width:116.790000px;}
._18_c00390{width:271.332000px;}
._26_c00390{width:286.335000px;}
._16_c00390{width:333.303000px;}
.fc2_c00390{color:transparent;}
.fc1_c00390{color:rgb(128,128,128);}
.fc0_c00390{color:rgb(0,0,0);}
.fs5_c00390{font-size:48.000000px;}
.fs1_c00390{font-size:72.000000px;}
.fs3_c00390{font-size:81.000000px;}
.fs4_c00390{font-size:87.000000px;}
.fs0_c00390{font-size:99.000000px;}
.fs2_c00390{font-size:132.000000px;}
.y0_c00390{bottom:0.000000px;}
.y26_c00390{bottom:3.105000px;}
.y25_c00390{bottom:7.228371px;}
.y24_c00390{bottom:59.715000px;}
.y23_c00390{bottom:84.165000px;}
.y22_c00390{bottom:109.365000px;}
.y21_c00390{bottom:133.665000px;}
.y20_c00390{bottom:159.015000px;}
.y1f_c00390{bottom:183.615000px;}
.y1e_c00390{bottom:208.665000px;}
.y1d_c00390{bottom:232.665000px;}
.y1c_c00390{bottom:257.265000px;}
.y1b_c00390{bottom:281.865000px;}
.y1a_c00390{bottom:306.465000px;}
.y19_c00390{bottom:330.765000px;}
.y18_c00390{bottom:355.365000px;}
.y17_c00390{bottom:378.765000px;}
.y16_c00390{bottom:403.965000px;}
.y15_c00390{bottom:427.965000px;}
.y14_c00390{bottom:452.565000px;}
.y13_c00390{bottom:476.565000px;}
.y12_c00390{bottom:501.165000px;}
.y11_c00390{bottom:525.615000px;}
.y10_c00390{bottom:549.915000px;}
.yf_c00390{bottom:574.215000px;}
.ye_c00390{bottom:598.515000px;}
.yd_c00390{bottom:622.665000px;}
.yc_c00390{bottom:647.115000px;}
.yb_c00390{bottom:671.415000px;}
.ya_c00390{bottom:696.015000px;}
.y9_c00390{bottom:720.615000px;}
.y8_c00390{bottom:744.915000px;}
.y7_c00390{bottom:769.815000px;}
.y6_c00390{bottom:793.815000px;}
.y5_c00390{bottom:818.565000px;}
.y4_c00390{bottom:843.765000px;}
.y3_c00390{bottom:868.065000px;}
.y2_c00390{bottom:892.815000px;}
.y1_c00390{bottom:927.765000px;}
.h6_c00390{height:13.200074px;}
.h7_c00390{height:43.804688px;}
.h3_c00390{height:79.497070px;}
.h4_c00390{height:84.269531px;}
.h5_c00390{height:91.176000px;}
.h2_c00390{height:167.126953px;}
.h0_c00390{height:989.025000px;}
.h1_c00390{height:989.250000px;}
.w1_c00390{width:104.875500px;}
.w0_c00390{width:672.000000px;}
.x0_c00390{left:0.000000px;}
.x9_c00390{left:35.100000px;}
.x8_c00390{left:37.050000px;}
.x2_c00390{left:48.900000px;}
.x1_c00390{left:52.200000px;}
.x3_c00390{left:53.250000px;}
.x4_c00390{left:54.300000px;}
.x6_c00390{left:55.950000px;}
.x5_c00390{left:57.000000px;}
.x7_c00390{left:58.650000px;}
.xb_c00390{left:287.814240px;}
.xa_c00390{left:397.200000px;}
@media print{
.v0_c00390{vertical-align:0.000000pt;}
.ls0_c00390{letter-spacing:0.000000pt;}
.ws1_c00390{word-spacing:-60.165333pt;}
.ws0_c00390{word-spacing:-15.424000pt;}
.ws2_c00390{word-spacing:0.000000pt;}
._e_c00390{margin-left:-21.560000pt;}
._21_c00390{margin-left:-18.936000pt;}
._1b_c00390{margin-left:-17.568000pt;}
._b_c00390{margin-left:-13.816000pt;}
._5_c00390{margin-left:-12.672000pt;}
._17_c00390{margin-left:-10.674667pt;}
._4_c00390{margin-left:-9.680000pt;}
._f_c00390{margin-left:-8.624000pt;}
._10_c00390{margin-left:-6.688000pt;}
._3_c00390{margin-left:-5.717333pt;}
._8_c00390{margin-left:-4.136000pt;}
._a_c00390{margin-left:-2.464000pt;}
._9_c00390{margin-left:-1.056000pt;}
._2_c00390{width:0.914667pt;}
._1_c00390{width:2.112000pt;}
._12_c00390{width:3.474667pt;}
._13_c00390{width:4.864000pt;}
._0_c00390{width:5.896000pt;}
._d_c00390{width:7.480000pt;}
._c_c00390{width:9.240000pt;}
._15_c00390{width:10.944000pt;}
._25_c00390{width:12.024000pt;}
._7_c00390{width:13.112000pt;}
._6_c00390{width:14.168000pt;}
._1a_c00390{width:15.533333pt;}
._24_c00390{width:22.256000pt;}
._1d_c00390{width:24.912000pt;}
._1e_c00390{width:26.136000pt;}
._11_c00390{width:27.050667pt;}
._14_c00390{width:32.477333pt;}
._19_c00390{width:34.488000pt;}
._1c_c00390{width:45.432000pt;}
._1f_c00390{width:59.685333pt;}
._23_c00390{width:69.440000pt;}
._22_c00390{width:74.720000pt;}
._20_c00390{width:103.813333pt;}
._18_c00390{width:241.184000pt;}
._26_c00390{width:254.520000pt;}
._16_c00390{width:296.269333pt;}
.fs5_c00390{font-size:42.666667pt;}
.fs1_c00390{font-size:64.000000pt;}
.fs3_c00390{font-size:72.000000pt;}
.fs4_c00390{font-size:77.333333pt;}
.fs0_c00390{font-size:88.000000pt;}
.fs2_c00390{font-size:117.333333pt;}
.y0_c00390{bottom:0.000000pt;}
.y26_c00390{bottom:2.760000pt;}
.y25_c00390{bottom:6.425219pt;}
.y24_c00390{bottom:53.080000pt;}
.y23_c00390{bottom:74.813333pt;}
.y22_c00390{bottom:97.213333pt;}
.y21_c00390{bottom:118.813333pt;}
.y20_c00390{bottom:141.346667pt;}
.y1f_c00390{bottom:163.213333pt;}
.y1e_c00390{bottom:185.480000pt;}
.y1d_c00390{bottom:206.813333pt;}
.y1c_c00390{bottom:228.680000pt;}
.y1b_c00390{bottom:250.546667pt;}
.y1a_c00390{bottom:272.413333pt;}
.y19_c00390{bottom:294.013333pt;}
.y18_c00390{bottom:315.880000pt;}
.y17_c00390{bottom:336.680000pt;}
.y16_c00390{bottom:359.080000pt;}
.y15_c00390{bottom:380.413333pt;}
.y14_c00390{bottom:402.280000pt;}
.y13_c00390{bottom:423.613333pt;}
.y12_c00390{bottom:445.480000pt;}
.y11_c00390{bottom:467.213333pt;}
.y10_c00390{bottom:488.813333pt;}
.yf_c00390{bottom:510.413333pt;}
.ye_c00390{bottom:532.013333pt;}
.yd_c00390{bottom:553.480000pt;}
.yc_c00390{bottom:575.213333pt;}
.yb_c00390{bottom:596.813333pt;}
.ya_c00390{bottom:618.680000pt;}
.y9_c00390{bottom:640.546667pt;}
.y8_c00390{bottom:662.146667pt;}
.y7_c00390{bottom:684.280000pt;}
.y6_c00390{bottom:705.613333pt;}
.y5_c00390{bottom:727.613333pt;}
.y4_c00390{bottom:750.013333pt;}
.y3_c00390{bottom:771.613333pt;}
.y2_c00390{bottom:793.613333pt;}
.y1_c00390{bottom:824.680000pt;}
.h6_c00390{height:11.733399pt;}
.h7_c00390{height:38.937500pt;}
.h3_c00390{height:70.664062pt;}
.h4_c00390{height:74.906250pt;}
.h5_c00390{height:81.045333pt;}
.h2_c00390{height:148.557292pt;}
.h0_c00390{height:879.133333pt;}
.h1_c00390{height:879.333333pt;}
.w1_c00390{width:93.222667pt;}
.w0_c00390{width:597.333333pt;}
.x0_c00390{left:0.000000pt;}
.x9_c00390{left:31.200000pt;}
.x8_c00390{left:32.933333pt;}
.x2_c00390{left:43.466667pt;}
.x1_c00390{left:46.400000pt;}
.x3_c00390{left:47.333333pt;}
.x4_c00390{left:48.266667pt;}
.x6_c00390{left:49.733333pt;}
.x5_c00390{left:50.666667pt;}
.x7_c00390{left:52.133333pt;}
.xb_c00390{left:255.834880pt;}
.xa_c00390{left:353.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_6faf852a0e3fd8ccad167843.woff2')format("woff");}.ff1_c00391{font-family:ff1_c00391;line-height:1.435059;font-style:normal;font-weight:normal;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_055c8e2bae0dbf9c32537df7.woff2')format("woff");}.ff2_c00391{font-family:ff2_c00391;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00391;src:url('chunks/assets/font_e527454028b68a981aebf8b6.woff2')format("woff");}.ff3_c00391{font-family:ff3_c00391;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00391;src:url('chunks/assets/font_08c02c1f3c3c7f63f92f65cb.woff2')format("woff");}.ff4_c00391{font-family:ff4_c00391;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00391;src:url('chunks/assets/font_5943e640809243adf11cec69.woff2')format("woff");}.ff5_c00391{font-family:ff5_c00391;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00391;src:url('chunks/assets/font_f3e66cdf6ab58ff99b698ce3.woff2')format("woff");}.ff6_c00391{font-family:ff6_c00391;line-height:1.437000;font-style:normal;font-weight: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_c00391;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c00391{font-family:ff7_c00391;line-height:1.219238;font-style: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;}
.ls1_c00391{letter-spacing:0.000000px;}
.ls0_c00391{letter-spacing:1.602000px;}
.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:-67.686000px;}
.ws1_c00391{word-spacing:-18.798000px;}
.ws0_c00391{word-spacing:-17.352000px;}
.ws3_c00391{word-spacing:0.000000px;}
._1_c00391{margin-left:-29.376000px;}
._13_c00391{margin-left:-17.082000px;}
._14_c00391{margin-left:-13.884000px;}
._21_c00391{margin-left:-11.466000px;}
._6_c00391{margin-left:-9.477000px;}
._16_c00391{margin-left:-8.277000px;}
._0_c00391{margin-left:-7.224000px;}
._1c_c00391{margin-left:-5.544000px;}
._f_c00391{margin-left:-4.455000px;}
._4_c00391{margin-left:-3.159000px;}
._a_c00391{margin-left:-1.863000px;}
._5_c00391{width:1.296000px;}
._2_c00391{width:2.349000px;}
._3_c00391{width:3.402000px;}
._12_c00391{width:4.407000px;}
._7_c00391{width:5.427000px;}
._9_c00391{width:6.885000px;}
._c_c00391{width:8.100000px;}
._b_c00391{width:9.558000px;}
._8_c00391{width:10.707000px;}
._11_c00391{width:11.775000px;}
._e_c00391{width:12.960000px;}
._10_c00391{width:14.256000px;}
._19_c00391{width:15.459000px;}
._1b_c00391{width:16.656000px;}
._18_c00391{width:18.066000px;}
._15_c00391{width:21.534000px;}
._27_c00391{width:23.517000px;}
._2a_c00391{width:25.206000px;}
._23_c00391{width:26.310000px;}
._1a_c00391{width:27.372000px;}
._d_c00391{width:28.446000px;}
._29_c00391{width:30.966000px;}
._1f_c00391{width:36.537000px;}
._1d_c00391{width:37.632000px;}
._22_c00391{width:55.614000px;}
._17_c00391{width:82.413000px;}
._24_c00391{width:107.454000px;}
._1e_c00391{width:140.817000px;}
._26_c00391{width:232.164000px;}
._20_c00391{width:314.118000px;}
._25_c00391{width:385.701000px;}
._28_c00391{width:491.379000px;}
._2b_c00391{width:1774.434000px;}
.fc2_c00391{color:transparent;}
.fc1_c00391{color:rgb(128,128,128);}
.fc0_c00391{color:rgb(0,0,0);}
.fs6_c00391{font-size:36.000000px;}
.fs8_c00391{font-size:48.000000px;}
.fs4_c00391{font-size:54.000000px;}
.fs2_c00391{font-size:57.000000px;}
.fs5_c00391{font-size:72.000000px;}
.fs3_c00391{font-size:78.000000px;}
.fs1_c00391{font-size:81.000000px;}
.fs0_c00391{font-size:84.000000px;}
.fs7_c00391{font-size:87.000000px;}
.y0_c00391{bottom:0.000000px;}
.y25_c00391{bottom:3.105000px;}
.y24_c00391{bottom:7.228357px;}
.y23_c00391{bottom:58.080000px;}
.y22_c00391{bottom:82.380000px;}
.y21_c00391{bottom:103.230000px;}
.y1f_c00391{bottom:154.680000px;}
.y1e_c00391{bottom:178.230000px;}
.y1d_c00391{bottom:202.230000px;}
.y1c_c00391{bottom:227.580000px;}
.y1b_c00391{bottom:251.880000px;}
.y1a_c00391{bottom:275.430000px;}
.y19_c00391{bottom:302.430000px;}
.y18_c00391{bottom:327.030000px;}
.y17_c00391{bottom:350.730000px;}
.y20_c00391{bottom:367.230000px;}
.y16_c00391{bottom:376.080000px;}
.y15_c00391{bottom:398.880000px;}
.y14_c00391{bottom:423.630000px;}
.y13_c00391{bottom:450.180000px;}
.y12_c00391{bottom:472.530000px;}
.y11_c00391{bottom:497.430000px;}
.y10_c00391{bottom:520.380000px;}
.yf_c00391{bottom:544.680000px;}
.ye_c00391{bottom:568.080000px;}
.yd_c00391{bottom:592.980000px;}
.yc_c00391{bottom:617.580000px;}
.yb_c00391{bottom:641.880000px;}
.ya_c00391{bottom:666.630000px;}
.y9_c00391{bottom:690.930000px;}
.y8_c00391{bottom:715.830000px;}
.y7_c00391{bottom:740.130000px;}
.y6_c00391{bottom:764.880000px;}
.y5_c00391{bottom:789.780000px;}
.y4_c00391{bottom:813.780000px;}
.y3_c00391{bottom:837.780000px;}
.y2_c00391{bottom:862.680000px;}
.y1_c00391{bottom:886.680000px;}
.h8_c00391{height:13.200074px;}
.h9_c00391{height:43.804688px;}
.h5_c00391{height:66.713379px;}
.h6_c00391{height:68.370117px;}
.h4_c00391{height:72.168457px;}
.h2_c00391{height:79.497070px;}
.h1_c00391{height:87.445312px;}
.h7_c00391{height:91.176000px;}
.h3_c00391{height:98.756836px;}
.h0_c00391{height:995.250000px;}
.w2_c00391{width:104.875500px;}
.w0_c00391{width:667.425000px;}
.w1_c00391{width:667.500000px;}
.x0_c00391{left:0.000000px;}
.xa_c00391{left:13.800000px;}
.xb_c00391{left:15.150000px;}
.xc_c00391{left:16.500000px;}
.x8_c00391{left:17.550000px;}
.x9_c00391{left:19.500000px;}
.x7_c00391{left:71.100000px;}
.x6_c00391{left:85.350000px;}
.x4_c00391{left:103.200000px;}
.x3_c00391{left:105.600000px;}
.x1_c00391{left:106.650000px;}
.x2_c00391{left:108.300000px;}
.x5_c00391{left:184.650000px;}
.xd_c00391{left:285.526749px;}
@media print{
.v0_c00391{vertical-align:0.000000pt;}
.ls1_c00391{letter-spacing:0.000000pt;}
.ls0_c00391{letter-spacing:1.424000pt;}
.ws2_c00391{word-spacing:-60.165333pt;}
.ws1_c00391{word-spacing:-16.709333pt;}
.ws0_c00391{word-spacing:-15.424000pt;}
.ws3_c00391{word-spacing:0.000000pt;}
._1_c00391{margin-left:-26.112000pt;}
._13_c00391{margin-left:-15.184000pt;}
._14_c00391{margin-left:-12.341333pt;}
._21_c00391{margin-left:-10.192000pt;}
._6_c00391{margin-left:-8.424000pt;}
._16_c00391{margin-left:-7.357333pt;}
._0_c00391{margin-left:-6.421333pt;}
._1c_c00391{margin-left:-4.928000pt;}
._f_c00391{margin-left:-3.960000pt;}
._4_c00391{margin-left:-2.808000pt;}
._a_c00391{margin-left:-1.656000pt;}
._5_c00391{width:1.152000pt;}
._2_c00391{width:2.088000pt;}
._3_c00391{width:3.024000pt;}
._12_c00391{width:3.917333pt;}
._7_c00391{width:4.824000pt;}
._9_c00391{width:6.120000pt;}
._c_c00391{width:7.200000pt;}
._b_c00391{width:8.496000pt;}
._8_c00391{width:9.517333pt;}
._11_c00391{width:10.466667pt;}
._e_c00391{width:11.520000pt;}
._10_c00391{width:12.672000pt;}
._19_c00391{width:13.741333pt;}
._1b_c00391{width:14.805333pt;}
._18_c00391{width:16.058667pt;}
._15_c00391{width:19.141333pt;}
._27_c00391{width:20.904000pt;}
._2a_c00391{width:22.405333pt;}
._23_c00391{width:23.386667pt;}
._1a_c00391{width:24.330667pt;}
._d_c00391{width:25.285333pt;}
._29_c00391{width:27.525333pt;}
._1f_c00391{width:32.477333pt;}
._1d_c00391{width:33.450667pt;}
._22_c00391{width:49.434667pt;}
._17_c00391{width:73.256000pt;}
._24_c00391{width:95.514667pt;}
._1e_c00391{width:125.170667pt;}
._26_c00391{width:206.368000pt;}
._20_c00391{width:279.216000pt;}
._25_c00391{width:342.845333pt;}
._28_c00391{width:436.781333pt;}
._2b_c00391{width:1577.274667pt;}
.fs6_c00391{font-size:32.000000pt;}
.fs8_c00391{font-size:42.666667pt;}
.fs4_c00391{font-size:48.000000pt;}
.fs2_c00391{font-size:50.666667pt;}
.fs5_c00391{font-size:64.000000pt;}
.fs3_c00391{font-size:69.333333pt;}
.fs1_c00391{font-size:72.000000pt;}
.fs0_c00391{font-size:74.666667pt;}
.fs7_c00391{font-size:77.333333pt;}
.y0_c00391{bottom:0.000000pt;}
.y25_c00391{bottom:2.760000pt;}
.y24_c00391{bottom:6.425206pt;}
.y23_c00391{bottom:51.626667pt;}
.y22_c00391{bottom:73.226667pt;}
.y21_c00391{bottom:91.760000pt;}
.y1f_c00391{bottom:137.493333pt;}
.y1e_c00391{bottom:158.426667pt;}
.y1d_c00391{bottom:179.760000pt;}
.y1c_c00391{bottom:202.293333pt;}
.y1b_c00391{bottom:223.893333pt;}
.y1a_c00391{bottom:244.826667pt;}
.y19_c00391{bottom:268.826667pt;}
.y18_c00391{bottom:290.693333pt;}
.y17_c00391{bottom:311.760000pt;}
.y20_c00391{bottom:326.426667pt;}
.y16_c00391{bottom:334.293333pt;}
.y15_c00391{bottom:354.560000pt;}
.y14_c00391{bottom:376.560000pt;}
.y13_c00391{bottom:400.160000pt;}
.y12_c00391{bottom:420.026667pt;}
.y11_c00391{bottom:442.160000pt;}
.y10_c00391{bottom:462.560000pt;}
.yf_c00391{bottom:484.160000pt;}
.ye_c00391{bottom:504.960000pt;}
.yd_c00391{bottom:527.093333pt;}
.yc_c00391{bottom:548.960000pt;}
.yb_c00391{bottom:570.560000pt;}
.ya_c00391{bottom:592.560000pt;}
.y9_c00391{bottom:614.160000pt;}
.y8_c00391{bottom:636.293333pt;}
.y7_c00391{bottom:657.893333pt;}
.y6_c00391{bottom:679.893333pt;}
.y5_c00391{bottom:702.026667pt;}
.y4_c00391{bottom:723.360000pt;}
.y3_c00391{bottom:744.693333pt;}
.y2_c00391{bottom:766.826667pt;}
.y1_c00391{bottom:788.160000pt;}
.h8_c00391{height:11.733399pt;}
.h9_c00391{height:38.937500pt;}
.h5_c00391{height:59.300781pt;}
.h6_c00391{height:60.773438pt;}
.h4_c00391{height:64.149740pt;}
.h2_c00391{height:70.664062pt;}
.h1_c00391{height:77.729167pt;}
.h7_c00391{height:81.045333pt;}
.h3_c00391{height:87.783854pt;}
.h0_c00391{height:884.666667pt;}
.w2_c00391{width:93.222667pt;}
.w0_c00391{width:593.266667pt;}
.w1_c00391{width:593.333333pt;}
.x0_c00391{left:0.000000pt;}
.xa_c00391{left:12.266667pt;}
.xb_c00391{left:13.466667pt;}
.xc_c00391{left:14.666667pt;}
.x8_c00391{left:15.600000pt;}
.x9_c00391{left:17.333333pt;}
.x7_c00391{left:63.200000pt;}
.x6_c00391{left:75.866667pt;}
.x4_c00391{left:91.733333pt;}
.x3_c00391{left:93.866667pt;}
.x1_c00391{left:94.800000pt;}
.x2_c00391{left:96.266667pt;}
.x5_c00391{left:164.133333pt;}
.xd_c00391{left:253.801554pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c9e97c7dc446047960599a67.woff2')format("woff");}.ff1_c00392{font-family:ff1_c00392;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00392;src:url('chunks/assets/font_900825a7ff5fc7065c37843f.woff2')format("woff");}.ff2_c00392{font-family:ff2_c00392;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00392;src:url('chunks/assets/font_fd598bdef6a6cc9ab370be96.woff2')format("woff");}.ff3_c00392{font-family:ff3_c00392;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00392;src:url('chunks/assets/font_86e5f2b07b250d78be7fe5f9.woff2')format("woff");}.ff4_c00392{font-family:ff4_c00392;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00392;src:url('chunks/assets/font_ab16cf0fdaee4f1a53af7cb9.woff2')format("woff");}.ff5_c00392{font-family:ff5_c00392;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00392;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c00392{font-family:ff6_c00392;line-height:1.219238;font-style: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;}
.ls0_c00392{letter-spacing:0.000000px;}
.sc__c00392{text-shadow:none;}
.sc0_c00392{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00392{-webkit-text-stroke:0px transparent;}
.sc0_c00392{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00392{word-spacing:-67.686000px;}
.ws0_c00392{word-spacing:-23.859000px;}
.ws1_c00392{word-spacing:-17.352000px;}
.ws3_c00392{word-spacing:0.000000px;}
._15_c00392{margin-left:-21.663000px;}
._1a_c00392{margin-left:-16.200000px;}
._21_c00392{margin-left:-11.745000px;}
._17_c00392{margin-left:-9.411000px;}
._1c_c00392{margin-left:-7.956000px;}
._3_c00392{margin-left:-6.600000px;}
._e_c00392{margin-left:-5.301000px;}
._8_c00392{margin-left:-3.879000px;}
._4_c00392{margin-left:-2.352000px;}
._13_c00392{margin-left:-1.179000px;}
._1e_c00392{width:1.023000px;}
._2_c00392{width:2.034000px;}
._d_c00392{width:3.483000px;}
._1_c00392{width:4.851000px;}
._0_c00392{width:6.039000px;}
._9_c00392{width:7.599000px;}
._c_c00392{width:8.637000px;}
._a_c00392{width:10.140000px;}
._12_c00392{width:11.532000px;}
._11_c00392{width:12.960000px;}
._b_c00392{width:14.418000px;}
._1b_c00392{width:15.792000px;}
._f_c00392{width:16.893000px;}
._7_c00392{width:18.315000px;}
._6_c00392{width:19.998000px;}
._1d_c00392{width:24.558000px;}
._10_c00392{width:29.886000px;}
._16_c00392{width:31.899000px;}
._14_c00392{width:36.615000px;}
._18_c00392{width:39.714000px;}
._5_c00392{width:43.191000px;}
._22_c00392{width:44.616000px;}
._1f_c00392{width:143.058000px;}
._19_c00392{width:165.699000px;}
._23_c00392{width:314.208000px;}
._20_c00392{width:321.426000px;}
.fc2_c00392{color:transparent;}
.fc1_c00392{color:rgb(128,128,128);}
.fc0_c00392{color:rgb(0,0,0);}
.fs6_c00392{font-size:48.000000px;}
.fs3_c00392{font-size:72.000000px;}
.fs2_c00392{font-size:81.000000px;}
.fs4_c00392{font-size:87.000000px;}
.fs5_c00392{font-size:90.000000px;}
.fs0_c00392{font-size:99.000000px;}
.fs1_c00392{font-size:132.000000px;}
.y0_c00392{bottom:0.000000px;}
.y23_c00392{bottom:3.105000px;}
.y22_c00392{bottom:7.228355px;}
.y21_c00392{bottom:36.435000px;}
.y20_c00392{bottom:61.785000px;}
.y1f_c00392{bottom:87.435000px;}
.y1e_c00392{bottom:112.635000px;}
.y1d_c00392{bottom:137.385000px;}
.y1c_c00392{bottom:162.885000px;}
.y1b_c00392{bottom:186.585000px;}
.y1a_c00392{bottom:211.485000px;}
.y19_c00392{bottom:236.235000px;}
.y18_c00392{bottom:261.135000px;}
.y17_c00392{bottom:285.885000px;}
.y16_c00392{bottom:309.735000px;}
.y15_c00392{bottom:334.035000px;}
.y14_c00392{bottom:358.335000px;}
.y13_c00392{bottom:409.335000px;}
.y12_c00392{bottom:438.735000px;}
.y11_c00392{bottom:468.135000px;}
.y10_c00392{bottom:536.985000px;}
.yf_c00392{bottom:561.285000px;}
.ye_c00392{bottom:585.885000px;}
.yd_c00392{bottom:609.885000px;}
.yc_c00392{bottom:634.035000px;}
.yb_c00392{bottom:658.335000px;}
.ya_c00392{bottom:682.635000px;}
.y9_c00392{bottom:707.085000px;}
.y8_c00392{bottom:731.385000px;}
.y7_c00392{bottom:757.035000px;}
.y6_c00392{bottom:780.585000px;}
.y5_c00392{bottom:805.185000px;}
.y4_c00392{bottom:829.785000px;}
.y3_c00392{bottom:854.535000px;}
.y2_c00392{bottom:879.435000px;}
.y1_c00392{bottom:913.485000px;}
.h8_c00392{height:13.200074px;}
.h9_c00392{height:43.804688px;}
.h5_c00392{height:79.497070px;}
.h3_c00392{height:84.269531px;}
.h7_c00392{height:88.286133px;}
.h6_c00392{height:88.330078px;}
.h4_c00392{height:91.176000px;}
.h2_c00392{height:167.126953px;}
.h0_c00392{height:977.925000px;}
.h1_c00392{height:978.000000px;}
.w2_c00392{width:104.875500px;}
.w0_c00392{width:664.200000px;}
.w1_c00392{width:664.500000px;}
.x0_c00392{left:0.000000px;}
.xb_c00392{left:51.000000px;}
.x3_c00392{left:53.400000px;}
.x4_c00392{left:54.450000px;}
.x2_c00392{left:56.700000px;}
.x1_c00392{left:58.050000px;}
.x5_c00392{left:83.400000px;}
.x6_c00392{left:148.050000px;}
.x7_c00392{left:185.250000px;}
.xa_c00392{left:192.450000px;}
.x9_c00392{left:193.500000px;}
.x8_c00392{left:195.750000px;}
.xd_c00392{left:283.914230px;}
.xc_c00392{left:394.950000px;}
@media print{
.v0_c00392{vertical-align:0.000000pt;}
.ls0_c00392{letter-spacing:0.000000pt;}
.ws2_c00392{word-spacing:-60.165333pt;}
.ws0_c00392{word-spacing:-21.208000pt;}
.ws1_c00392{word-spacing:-15.424000pt;}
.ws3_c00392{word-spacing:0.000000pt;}
._15_c00392{margin-left:-19.256000pt;}
._1a_c00392{margin-left:-14.400000pt;}
._21_c00392{margin-left:-10.440000pt;}
._17_c00392{margin-left:-8.365333pt;}
._1c_c00392{margin-left:-7.072000pt;}
._3_c00392{margin-left:-5.866667pt;}
._e_c00392{margin-left:-4.712000pt;}
._8_c00392{margin-left:-3.448000pt;}
._4_c00392{margin-left:-2.090667pt;}
._13_c00392{margin-left:-1.048000pt;}
._1e_c00392{width:0.909333pt;}
._2_c00392{width:1.808000pt;}
._d_c00392{width:3.096000pt;}
._1_c00392{width:4.312000pt;}
._0_c00392{width:5.368000pt;}
._9_c00392{width:6.754667pt;}
._c_c00392{width:7.677333pt;}
._a_c00392{width:9.013333pt;}
._12_c00392{width:10.250667pt;}
._11_c00392{width:11.520000pt;}
._b_c00392{width:12.816000pt;}
._1b_c00392{width:14.037333pt;}
._f_c00392{width:15.016000pt;}
._7_c00392{width:16.280000pt;}
._6_c00392{width:17.776000pt;}
._1d_c00392{width:21.829333pt;}
._10_c00392{width:26.565333pt;}
._16_c00392{width:28.354667pt;}
._14_c00392{width:32.546667pt;}
._18_c00392{width:35.301333pt;}
._5_c00392{width:38.392000pt;}
._22_c00392{width:39.658667pt;}
._1f_c00392{width:127.162667pt;}
._19_c00392{width:147.288000pt;}
._23_c00392{width:279.296000pt;}
._20_c00392{width:285.712000pt;}
.fs6_c00392{font-size:42.666667pt;}
.fs3_c00392{font-size:64.000000pt;}
.fs2_c00392{font-size:72.000000pt;}
.fs4_c00392{font-size:77.333333pt;}
.fs5_c00392{font-size:80.000000pt;}
.fs0_c00392{font-size:88.000000pt;}
.fs1_c00392{font-size:117.333333pt;}
.y0_c00392{bottom:0.000000pt;}
.y23_c00392{bottom:2.760000pt;}
.y22_c00392{bottom:6.425204pt;}
.y21_c00392{bottom:32.386667pt;}
.y20_c00392{bottom:54.920000pt;}
.y1f_c00392{bottom:77.720000pt;}
.y1e_c00392{bottom:100.120000pt;}
.y1d_c00392{bottom:122.120000pt;}
.y1c_c00392{bottom:144.786667pt;}
.y1b_c00392{bottom:165.853333pt;}
.y1a_c00392{bottom:187.986667pt;}
.y19_c00392{bottom:209.986667pt;}
.y18_c00392{bottom:232.120000pt;}
.y17_c00392{bottom:254.120000pt;}
.y16_c00392{bottom:275.320000pt;}
.y15_c00392{bottom:296.920000pt;}
.y14_c00392{bottom:318.520000pt;}
.y13_c00392{bottom:363.853333pt;}
.y12_c00392{bottom:389.986667pt;}
.y11_c00392{bottom:416.120000pt;}
.y10_c00392{bottom:477.320000pt;}
.yf_c00392{bottom:498.920000pt;}
.ye_c00392{bottom:520.786667pt;}
.yd_c00392{bottom:542.120000pt;}
.yc_c00392{bottom:563.586667pt;}
.yb_c00392{bottom:585.186667pt;}
.ya_c00392{bottom:606.786667pt;}
.y9_c00392{bottom:628.520000pt;}
.y8_c00392{bottom:650.120000pt;}
.y7_c00392{bottom:672.920000pt;}
.y6_c00392{bottom:693.853333pt;}
.y5_c00392{bottom:715.720000pt;}
.y4_c00392{bottom:737.586667pt;}
.y3_c00392{bottom:759.586667pt;}
.y2_c00392{bottom:781.720000pt;}
.y1_c00392{bottom:811.986667pt;}
.h8_c00392{height:11.733399pt;}
.h9_c00392{height:38.937500pt;}
.h5_c00392{height:70.664062pt;}
.h3_c00392{height:74.906250pt;}
.h7_c00392{height:78.476562pt;}
.h6_c00392{height:78.515625pt;}
.h4_c00392{height:81.045333pt;}
.h2_c00392{height:148.557292pt;}
.h0_c00392{height:869.266667pt;}
.h1_c00392{height:869.333333pt;}
.w2_c00392{width:93.222667pt;}
.w0_c00392{width:590.400000pt;}
.w1_c00392{width:590.666667pt;}
.x0_c00392{left:0.000000pt;}
.xb_c00392{left:45.333333pt;}
.x3_c00392{left:47.466667pt;}
.x4_c00392{left:48.400000pt;}
.x2_c00392{left:50.400000pt;}
.x1_c00392{left:51.600000pt;}
.x5_c00392{left:74.133333pt;}
.x6_c00392{left:131.600000pt;}
.x7_c00392{left:164.666667pt;}
.xa_c00392{left:171.066667pt;}
.x9_c00392{left:172.000000pt;}
.x8_c00392{left:174.000000pt;}
.xd_c00392{left:252.368205pt;}
.xc_c00392{left:351.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_4191895841d7beffc651dda7.woff2')format("woff");}.ff1_c00393{font-family:ff1_c00393;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00393;src:url('chunks/assets/font_3b4c6d689ed4bd654688f33a.woff2')format("woff");}.ff2_c00393{font-family:ff2_c00393;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00393;src:url('chunks/assets/font_9e5c79f62903ec3b875d62ec.woff2')format("woff");}.ff3_c00393{font-family:ff3_c00393;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00393;src:url('chunks/assets/font_1a21b577b61809ceb5eddde0.woff2')format("woff");}.ff4_c00393{font-family:ff4_c00393;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00393;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c00393{font-family:ff5_c00393;line-height:1.219238;font-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_c00393{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,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;}
.ls3_c00393{letter-spacing:0.000000px;}
.ls1_c00393{letter-spacing:6.750000px;}
.ls0_c00393{letter-spacing:6.900000px;}
.ls2_c00393{letter-spacing:8.250000px;}
.sc__c00393{text-shadow:none;}
.sc0_c00393{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00393{-webkit-text-stroke:0px transparent;}
.sc0_c00393{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00393{word-spacing:-27.000000px;}
.ws1_c00393{word-spacing:0.000000px;}
._12_c00393{margin-left:-20.736000px;}
._18_c00393{margin-left:-17.928000px;}
._13_c00393{margin-left:-15.228000px;}
._c_c00393{margin-left:-12.474000px;}
._15_c00393{margin-left:-10.908000px;}
._14_c00393{margin-left:-9.315000px;}
._5_c00393{margin-left:-7.776000px;}
._7_c00393{margin-left:-6.075000px;}
._b_c00393{margin-left:-4.212000px;}
._6_c00393{margin-left:-2.754000px;}
._3_c00393{margin-left:-1.539000px;}
._2_c00393{width:1.377000px;}
._0_c00393{width:2.754000px;}
._1_c00393{width:4.212000px;}
._4_c00393{width:6.237000px;}
._a_c00393{width:7.857000px;}
._9_c00393{width:9.315000px;}
._8_c00393{width:10.530000px;}
._10_c00393{width:12.231000px;}
._16_c00393{width:13.446000px;}
._11_c00393{width:14.661000px;}
._e_c00393{width:16.038000px;}
._d_c00393{width:23.004000px;}
._1c_c00393{width:26.634000px;}
._1a_c00393{width:28.188000px;}
._17_c00393{width:36.207000px;}
._f_c00393{width:41.310000px;}
._19_c00393{width:227.205000px;}
._1b_c00393{width:469.962000px;}
.fc2_c00393{color:transparent;}
.fc1_c00393{color:rgb(128,128,128);}
.fc0_c00393{color:rgb(0,0,0);}
.fs4_c00393{font-size:48.000000px;}
.fs3_c00393{font-size:72.000000px;}
.fs0_c00393{font-size:81.000000px;}
.fs1_c00393{font-size:87.000000px;}
.fs2_c00393{font-size:108.000000px;}
.y0_c00393{bottom:0.000000px;}
.y26_c00393{bottom:3.105000px;}
.y25_c00393{bottom:7.228357px;}
.y24_c00393{bottom:41.580000px;}
.y23_c00393{bottom:63.180000px;}
.y22_c00393{bottom:89.730000px;}
.y21_c00393{bottom:114.180000px;}
.y20_c00393{bottom:139.080000px;}
.y1f_c00393{bottom:163.680000px;}
.y1e_c00393{bottom:188.280000px;}
.y1d_c00393{bottom:213.030000px;}
.y1c_c00393{bottom:236.880000px;}
.y1b_c00393{bottom:261.630000px;}
.y1a_c00393{bottom:285.180000px;}
.y19_c00393{bottom:311.580000px;}
.y18_c00393{bottom:335.430000px;}
.y17_c00393{bottom:359.880000px;}
.y16_c00393{bottom:384.480000px;}
.y15_c00393{bottom:410.430000px;}
.y14_c00393{bottom:433.680000px;}
.y13_c00393{bottom:458.280000px;}
.y12_c00393{bottom:482.730000px;}
.y10_c00393{bottom:506.730000px;}
.y11_c00393{bottom:506.880000px;}
.yf_c00393{bottom:531.330000px;}
.ye_c00393{bottom:555.930000px;}
.yd_c00393{bottom:580.530000px;}
.yc_c00393{bottom:605.130000px;}
.yb_c00393{bottom:629.730000px;}
.ya_c00393{bottom:654.480000px;}
.y9_c00393{bottom:678.780000px;}
.y8_c00393{bottom:703.680000px;}
.y7_c00393{bottom:728.280000px;}
.y6_c00393{bottom:752.730000px;}
.y5_c00393{bottom:777.630000px;}
.y4_c00393{bottom:802.230000px;}
.y3_c00393{bottom:826.830000px;}
.y2_c00393{bottom:851.130000px;}
.y1_c00393{bottom:876.480000px;}
.h4_c00393{height:13.200074px;}
.h5_c00393{height:43.804688px;}
.h1_c00393{height:79.497070px;}
.h2_c00393{height:91.176000px;}
.h3_c00393{height:108.843750px;}
.h0_c00393{height:995.250000px;}
.w2_c00393{width:104.875500px;}
.w0_c00393{width:667.425000px;}
.w1_c00393{width:667.500000px;}
.x0_c00393{left:0.000000px;}
.xb_c00393{left:37.800000px;}
.x3_c00393{left:114.450000px;}
.x2_c00393{left:124.650000px;}
.x1_c00393{left:126.450000px;}
.x5_c00393{left:127.650000px;}
.x4_c00393{left:128.850000px;}
.x8_c00393{left:129.900000px;}
.x6_c00393{left:131.250000px;}
.xd_c00393{left:285.526749px;}
.xc_c00393{left:599.700000px;}
.x7_c00393{left:610.500000px;}
.x9_c00393{left:617.250000px;}
.xa_c00393{left:619.650000px;}
@media print{
.v0_c00393{vertical-align:0.000000pt;}
.ls3_c00393{letter-spacing:0.000000pt;}
.ls1_c00393{letter-spacing:6.000000pt;}
.ls0_c00393{letter-spacing:6.133333pt;}
.ls2_c00393{letter-spacing:7.333333pt;}
.ws0_c00393{word-spacing:-24.000000pt;}
.ws1_c00393{word-spacing:0.000000pt;}
._12_c00393{margin-left:-18.432000pt;}
._18_c00393{margin-left:-15.936000pt;}
._13_c00393{margin-left:-13.536000pt;}
._c_c00393{margin-left:-11.088000pt;}
._15_c00393{margin-left:-9.696000pt;}
._14_c00393{margin-left:-8.280000pt;}
._5_c00393{margin-left:-6.912000pt;}
._7_c00393{margin-left:-5.400000pt;}
._b_c00393{margin-left:-3.744000pt;}
._6_c00393{margin-left:-2.448000pt;}
._3_c00393{margin-left:-1.368000pt;}
._2_c00393{width:1.224000pt;}
._0_c00393{width:2.448000pt;}
._1_c00393{width:3.744000pt;}
._4_c00393{width:5.544000pt;}
._a_c00393{width:6.984000pt;}
._9_c00393{width:8.280000pt;}
._8_c00393{width:9.360000pt;}
._10_c00393{width:10.872000pt;}
._16_c00393{width:11.952000pt;}
._11_c00393{width:13.032000pt;}
._e_c00393{width:14.256000pt;}
._d_c00393{width:20.448000pt;}
._1c_c00393{width:23.674667pt;}
._1a_c00393{width:25.056000pt;}
._17_c00393{width:32.184000pt;}
._f_c00393{width:36.720000pt;}
._19_c00393{width:201.960000pt;}
._1b_c00393{width:417.744000pt;}
.fs4_c00393{font-size:42.666667pt;}
.fs3_c00393{font-size:64.000000pt;}
.fs0_c00393{font-size:72.000000pt;}
.fs1_c00393{font-size:77.333333pt;}
.fs2_c00393{font-size:96.000000pt;}
.y0_c00393{bottom:0.000000pt;}
.y26_c00393{bottom:2.760000pt;}
.y25_c00393{bottom:6.425206pt;}
.y24_c00393{bottom:36.960000pt;}
.y23_c00393{bottom:56.160000pt;}
.y22_c00393{bottom:79.760000pt;}
.y21_c00393{bottom:101.493333pt;}
.y20_c00393{bottom:123.626667pt;}
.y1f_c00393{bottom:145.493333pt;}
.y1e_c00393{bottom:167.360000pt;}
.y1d_c00393{bottom:189.360000pt;}
.y1c_c00393{bottom:210.560000pt;}
.y1b_c00393{bottom:232.560000pt;}
.y1a_c00393{bottom:253.493333pt;}
.y19_c00393{bottom:276.960000pt;}
.y18_c00393{bottom:298.160000pt;}
.y17_c00393{bottom:319.893333pt;}
.y16_c00393{bottom:341.760000pt;}
.y15_c00393{bottom:364.826667pt;}
.y14_c00393{bottom:385.493333pt;}
.y13_c00393{bottom:407.360000pt;}
.y12_c00393{bottom:429.093333pt;}
.y10_c00393{bottom:450.426667pt;}
.y11_c00393{bottom:450.560000pt;}
.yf_c00393{bottom:472.293333pt;}
.ye_c00393{bottom:494.160000pt;}
.yd_c00393{bottom:516.026667pt;}
.yc_c00393{bottom:537.893333pt;}
.yb_c00393{bottom:559.760000pt;}
.ya_c00393{bottom:581.760000pt;}
.y9_c00393{bottom:603.360000pt;}
.y8_c00393{bottom:625.493333pt;}
.y7_c00393{bottom:647.360000pt;}
.y6_c00393{bottom:669.093333pt;}
.y5_c00393{bottom:691.226667pt;}
.y4_c00393{bottom:713.093333pt;}
.y3_c00393{bottom:734.960000pt;}
.y2_c00393{bottom:756.560000pt;}
.y1_c00393{bottom:779.093333pt;}
.h4_c00393{height:11.733399pt;}
.h5_c00393{height:38.937500pt;}
.h1_c00393{height:70.664062pt;}
.h2_c00393{height:81.045333pt;}
.h3_c00393{height:96.750000pt;}
.h0_c00393{height:884.666667pt;}
.w2_c00393{width:93.222667pt;}
.w0_c00393{width:593.266667pt;}
.w1_c00393{width:593.333333pt;}
.x0_c00393{left:0.000000pt;}
.xb_c00393{left:33.600000pt;}
.x3_c00393{left:101.733333pt;}
.x2_c00393{left:110.800000pt;}
.x1_c00393{left:112.400000pt;}
.x5_c00393{left:113.466667pt;}
.x4_c00393{left:114.533333pt;}
.x8_c00393{left:115.466667pt;}
.x6_c00393{left:116.666667pt;}
.xd_c00393{left:253.801554pt;}
.xc_c00393{left:533.066667pt;}
.x7_c00393{left:542.666667pt;}
.x9_c00393{left:548.666667pt;}
.xa_c00393{left:550.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_8ae917f814521b173d5759ea.woff2')format("woff");}.ff1_c00394{font-family:ff1_c00394;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00394;src:url('chunks/assets/font_9cc053137964d265bde54b3e.woff2')format("woff");}.ff2_c00394{font-family:ff2_c00394;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00394;src:url('chunks/assets/font_20779b44f35f9c07c38195fb.woff2')format("woff");}.ff3_c00394{font-family:ff3_c00394;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00394;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff4_c00394{font-family:ff4_c00394;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00394{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00394{vertical-align:-15.000000px;}
.v0_c00394{vertical-align:0.000000px;}
.ls1_c00394{letter-spacing:0.000000px;}
.ls2_c00394{letter-spacing:3.000000px;}
.ls0_c00394{letter-spacing:136.200000px;}
.sc__c00394{text-shadow:none;}
.sc0_c00394{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00394{-webkit-text-stroke:0px transparent;}
.sc0_c00394{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00394{word-spacing:-23.859000px;}
.ws2_c00394{word-spacing:-20.250000px;}
.ws1_c00394{word-spacing:-17.352000px;}
.ws3_c00394{word-spacing:0.000000px;}
._24_c00394{margin-left:-27.939000px;}
._7_c00394{margin-left:-26.268000px;}
._1_c00394{margin-left:-24.651000px;}
._1f_c00394{margin-left:-23.085000px;}
._4_c00394{margin-left:-21.780000px;}
._1d_c00394{margin-left:-19.764000px;}
._23_c00394{margin-left:-17.247000px;}
._8_c00394{margin-left:-15.300000px;}
._0_c00394{margin-left:-14.058000px;}
._2_c00394{margin-left:-12.474000px;}
._3_c00394{margin-left:-11.385000px;}
._14_c00394{margin-left:-10.026000px;}
._5_c00394{margin-left:-8.157000px;}
._26_c00394{margin-left:-7.107000px;}
._a_c00394{margin-left:-6.039000px;}
._c_c00394{margin-left:-4.020000px;}
._b_c00394{margin-left:-2.772000px;}
._9_c00394{margin-left:-1.188000px;}
._22_c00394{width:1.005000px;}
._12_c00394{width:2.115000px;}
._6_c00394{width:3.300000px;}
._f_c00394{width:4.950000px;}
._13_c00394{width:6.021000px;}
._e_c00394{width:7.194000px;}
._d_c00394{width:8.910000px;}
._17_c00394{width:10.404000px;}
._11_c00394{width:11.988000px;}
._16_c00394{width:13.593000px;}
._20_c00394{width:16.362000px;}
._15_c00394{width:18.840000px;}
._1e_c00394{width:23.100000px;}
._1b_c00394{width:28.386000px;}
._19_c00394{width:29.670000px;}
._21_c00394{width:33.159000px;}
._25_c00394{width:35.733000px;}
._18_c00394{width:60.228000px;}
._1c_c00394{width:148.203000px;}
._10_c00394{width:150.150000px;}
._1a_c00394{width:287.922000px;}
.fc2_c00394{color:transparent;}
.fc1_c00394{color:rgb(128,128,128);}
.fc0_c00394{color:rgb(0,0,0);}
.fs7_c00394{font-size:48.000000px;}
.fs5_c00394{font-size:60.000000px;}
.fs4_c00394{font-size:72.000000px;}
.fs3_c00394{font-size:75.000000px;}
.fs2_c00394{font-size:81.000000px;}
.fs6_c00394{font-size:84.000000px;}
.fs0_c00394{font-size:99.000000px;}
.fs1_c00394{font-size:132.000000px;}
.y0_c00394{bottom:0.000000px;}
.y25_c00394{bottom:3.105000px;}
.y24_c00394{bottom:7.228371px;}
.y23_c00394{bottom:87.465000px;}
.y22_c00394{bottom:111.015000px;}
.y21_c00394{bottom:136.665000px;}
.y20_c00394{bottom:161.415000px;}
.y1f_c00394{bottom:186.015000px;}
.y1e_c00394{bottom:210.915000px;}
.y1d_c00394{bottom:235.215000px;}
.y1c_c00394{bottom:260.265000px;}
.y1b_c00394{bottom:285.165000px;}
.y1a_c00394{bottom:309.165000px;}
.y19_c00394{bottom:333.465000px;}
.y18_c00394{bottom:357.765000px;}
.y17_c00394{bottom:382.065000px;}
.y16_c00394{bottom:406.815000px;}
.y15_c00394{bottom:431.115000px;}
.y14_c00394{bottom:455.415000px;}
.y13_c00394{bottom:479.715000px;}
.y12_c00394{bottom:504.015000px;}
.y11_c00394{bottom:528.615000px;}
.y10_c00394{bottom:553.215000px;}
.yf_c00394{bottom:577.815000px;}
.ye_c00394{bottom:601.065000px;}
.yd_c00394{bottom:625.515000px;}
.yc_c00394{bottom:649.815000px;}
.yb_c00394{bottom:675.465000px;}
.ya_c00394{bottom:698.715000px;}
.y9_c00394{bottom:723.315000px;}
.y8_c00394{bottom:747.615000px;}
.y7_c00394{bottom:772.515000px;}
.y6_c00394{bottom:796.965000px;}
.y5_c00394{bottom:825.615000px;}
.y4_c00394{bottom:846.465000px;}
.y3_c00394{bottom:879.315000px;}
.y2_c00394{bottom:895.515000px;}
.y1_c00394{bottom:930.465000px;}
.h9_c00394{height:13.200074px;}
.ha_c00394{height:43.804688px;}
.h6_c00394{height:75.966797px;}
.h3_c00394{height:79.497070px;}
.h7_c00394{height:82.441406px;}
.h5_c00394{height:84.269531px;}
.h8_c00394{height:91.160156px;}
.h4_c00394{height:94.958496px;}
.h2_c00394{height:167.126953px;}
.h0_c00394{height:989.025000px;}
.h1_c00394{height:989.250000px;}
.w1_c00394{width:104.875500px;}
.w0_c00394{width:672.000000px;}
.x0_c00394{left:0.000000px;}
.x8_c00394{left:64.800000px;}
.x9_c00394{left:66.600000px;}
.x2_c00394{left:68.250000px;}
.x4_c00394{left:69.600000px;}
.x5_c00394{left:71.250000px;}
.x7_c00394{left:72.600000px;}
.x6_c00394{left:115.050000px;}
.x1_c00394{left:124.500000px;}
.x3_c00394{left:190.800000px;}
.xa_c00394{left:287.814240px;}
@media print{
.v1_c00394{vertical-align:-13.333333pt;}
.v0_c00394{vertical-align:0.000000pt;}
.ls1_c00394{letter-spacing:0.000000pt;}
.ls2_c00394{letter-spacing:2.666667pt;}
.ls0_c00394{letter-spacing:121.066667pt;}
.ws0_c00394{word-spacing:-21.208000pt;}
.ws2_c00394{word-spacing:-18.000000pt;}
.ws1_c00394{word-spacing:-15.424000pt;}
.ws3_c00394{word-spacing:0.000000pt;}
._24_c00394{margin-left:-24.834667pt;}
._7_c00394{margin-left:-23.349333pt;}
._1_c00394{margin-left:-21.912000pt;}
._1f_c00394{margin-left:-20.520000pt;}
._4_c00394{margin-left:-19.360000pt;}
._1d_c00394{margin-left:-17.568000pt;}
._23_c00394{margin-left:-15.330667pt;}
._8_c00394{margin-left:-13.600000pt;}
._0_c00394{margin-left:-12.496000pt;}
._2_c00394{margin-left:-11.088000pt;}
._3_c00394{margin-left:-10.120000pt;}
._14_c00394{margin-left:-8.912000pt;}
._5_c00394{margin-left:-7.250667pt;}
._26_c00394{margin-left:-6.317333pt;}
._a_c00394{margin-left:-5.368000pt;}
._c_c00394{margin-left:-3.573333pt;}
._b_c00394{margin-left:-2.464000pt;}
._9_c00394{margin-left:-1.056000pt;}
._22_c00394{width:0.893333pt;}
._12_c00394{width:1.880000pt;}
._6_c00394{width:2.933333pt;}
._f_c00394{width:4.400000pt;}
._13_c00394{width:5.352000pt;}
._e_c00394{width:6.394667pt;}
._d_c00394{width:7.920000pt;}
._17_c00394{width:9.248000pt;}
._11_c00394{width:10.656000pt;}
._16_c00394{width:12.082667pt;}
._20_c00394{width:14.544000pt;}
._15_c00394{width:16.746667pt;}
._1e_c00394{width:20.533333pt;}
._1b_c00394{width:25.232000pt;}
._19_c00394{width:26.373333pt;}
._21_c00394{width:29.474667pt;}
._25_c00394{width:31.762667pt;}
._18_c00394{width:53.536000pt;}
._1c_c00394{width:131.736000pt;}
._10_c00394{width:133.466667pt;}
._1a_c00394{width:255.930667pt;}
.fs7_c00394{font-size:42.666667pt;}
.fs5_c00394{font-size:53.333333pt;}
.fs4_c00394{font-size:64.000000pt;}
.fs3_c00394{font-size:66.666667pt;}
.fs2_c00394{font-size:72.000000pt;}
.fs6_c00394{font-size:74.666667pt;}
.fs0_c00394{font-size:88.000000pt;}
.fs1_c00394{font-size:117.333333pt;}
.y0_c00394{bottom:0.000000pt;}
.y25_c00394{bottom:2.760000pt;}
.y24_c00394{bottom:6.425219pt;}
.y23_c00394{bottom:77.746667pt;}
.y22_c00394{bottom:98.680000pt;}
.y21_c00394{bottom:121.480000pt;}
.y20_c00394{bottom:143.480000pt;}
.y1f_c00394{bottom:165.346667pt;}
.y1e_c00394{bottom:187.480000pt;}
.y1d_c00394{bottom:209.080000pt;}
.y1c_c00394{bottom:231.346667pt;}
.y1b_c00394{bottom:253.480000pt;}
.y1a_c00394{bottom:274.813333pt;}
.y19_c00394{bottom:296.413333pt;}
.y18_c00394{bottom:318.013333pt;}
.y17_c00394{bottom:339.613333pt;}
.y16_c00394{bottom:361.613333pt;}
.y15_c00394{bottom:383.213333pt;}
.y14_c00394{bottom:404.813333pt;}
.y13_c00394{bottom:426.413333pt;}
.y12_c00394{bottom:448.013333pt;}
.y11_c00394{bottom:469.880000pt;}
.y10_c00394{bottom:491.746667pt;}
.yf_c00394{bottom:513.613333pt;}
.ye_c00394{bottom:534.280000pt;}
.yd_c00394{bottom:556.013333pt;}
.yc_c00394{bottom:577.613333pt;}
.yb_c00394{bottom:600.413333pt;}
.ya_c00394{bottom:621.080000pt;}
.y9_c00394{bottom:642.946667pt;}
.y8_c00394{bottom:664.546667pt;}
.y7_c00394{bottom:686.680000pt;}
.y6_c00394{bottom:708.413333pt;}
.y5_c00394{bottom:733.880000pt;}
.y4_c00394{bottom:752.413333pt;}
.y3_c00394{bottom:781.613333pt;}
.y2_c00394{bottom:796.013333pt;}
.y1_c00394{bottom:827.080000pt;}
.h9_c00394{height:11.733399pt;}
.ha_c00394{height:38.937500pt;}
.h6_c00394{height:67.526042pt;}
.h3_c00394{height:70.664062pt;}
.h7_c00394{height:73.281250pt;}
.h5_c00394{height:74.906250pt;}
.h8_c00394{height:81.031250pt;}
.h4_c00394{height:84.407552pt;}
.h2_c00394{height:148.557292pt;}
.h0_c00394{height:879.133333pt;}
.h1_c00394{height:879.333333pt;}
.w1_c00394{width:93.222667pt;}
.w0_c00394{width:597.333333pt;}
.x0_c00394{left:0.000000pt;}
.x8_c00394{left:57.600000pt;}
.x9_c00394{left:59.200000pt;}
.x2_c00394{left:60.666667pt;}
.x4_c00394{left:61.866667pt;}
.x5_c00394{left:63.333333pt;}
.x7_c00394{left:64.533333pt;}
.x6_c00394{left:102.266667pt;}
.x1_c00394{left:110.666667pt;}
.x3_c00394{left:169.600000pt;}
.xa_c00394{left:255.834880pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_be273b251cdd0021ec722ae2.woff2')format("woff");}.ff1_c00395{font-family:ff1_c00395;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00395;src:url('chunks/assets/font_98d26b3e1e179ddd8e679215.woff2')format("woff");}.ff2_c00395{font-family:ff2_c00395;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00395;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff3_c00395{font-family:ff3_c00395;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00395;src:url('chunks/assets/font_6cfb8dd7e42a29d490c55f3a.woff2')format("woff");}.ff4_c00395{font-family:ff4_c00395;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00395;src:url('chunks/assets/font_07e64c583eb7da715496183b.woff2')format("woff");}.ff5_c00395{font-family:ff5_c00395;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00395;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c00395{font-family:ff6_c00395;line-height:1.219238;font-style: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;}
.ls4_c00395{letter-spacing:-6.000000px;}
.ls3_c00395{letter-spacing:0.000000px;}
.ls2_c00395{letter-spacing:0.627000px;}
.ls0_c00395{letter-spacing:8.832000px;}
.ls1_c00395{letter-spacing:31.602000px;}
.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;}
}
.ws2_c00395{word-spacing:-20.250000px;}
.ws1_c00395{word-spacing:-18.014400px;}
.ws0_c00395{word-spacing:-17.352000px;}
.ws3_c00395{word-spacing:0.000000px;}
._1c_c00395{margin-left:-18.705000px;}
._14_c00395{margin-left:-12.768000px;}
._13_c00395{margin-left:-10.914000px;}
._c_c00395{margin-left:-9.882000px;}
._7_c00395{margin-left:-8.829000px;}
._12_c00395{margin-left:-7.410000px;}
._16_c00395{margin-left:-5.916000px;}
._b_c00395{margin-left:-4.779000px;}
._f_c00395{margin-left:-3.570000px;}
._2_c00395{margin-left:-2.025000px;}
._20_c00395{margin-left:-1.017000px;}
._5_c00395{width:1.539000px;}
._8_c00395{width:2.916000px;}
._3_c00395{width:4.212000px;}
._9_c00395{width:5.508000px;}
._6_c00395{width:6.561000px;}
._4_c00395{width:7.776000px;}
._1_c00395{width:9.072000px;}
._e_c00395{width:10.209000px;}
._d_c00395{width:11.505000px;}
._18_c00395{width:12.795000px;}
._0_c00395{width:14.418000px;}
._17_c00395{width:15.477000px;}
._1b_c00395{width:19.200000px;}
._10_c00395{width:21.792000px;}
._11_c00395{width:28.077000px;}
._15_c00395{width:32.397000px;}
._1a_c00395{width:33.717000px;}
._24_c00395{width:38.880000px;}
._1e_c00395{width:54.507000px;}
._22_c00395{width:160.005000px;}
._1d_c00395{width:199.017000px;}
._25_c00395{width:225.240000px;}
._1f_c00395{width:254.175000px;}
._21_c00395{width:258.471000px;}
._23_c00395{width:306.441000px;}
._a_c00395{width:351.864000px;}
._19_c00395{width:371.547000px;}
.fc2_c00395{color:transparent;}
.fc1_c00395{color:rgb(128,128,128);}
.fc0_c00395{color:rgb(0,0,0);}
.fs6_c00395{font-size:48.000000px;}
.fs2_c00395{font-size:57.000000px;}
.fs5_c00395{font-size:60.000000px;}
.fs4_c00395{font-size:64.800000px;}
.fs1_c00395{font-size:72.000000px;}
.fs3_c00395{font-size:78.000000px;}
.fs0_c00395{font-size:81.000000px;}
.y0_c00395{bottom:0.000000px;}
.y25_c00395{bottom:3.105000px;}
.y24_c00395{bottom:7.228369px;}
.y23_c00395{bottom:66.720000px;}
.y22_c00395{bottom:88.020000px;}
.y21_c00395{bottom:115.320000px;}
.y20_c00395{bottom:138.270000px;}
.y1f_c00395{bottom:163.320000px;}
.y1e_c00395{bottom:190.020000px;}
.y1d_c00395{bottom:213.870000px;}
.y1c_c00395{bottom:236.970000px;}
.y1b_c00395{bottom:261.570000px;}
.y1a_c00395{bottom:286.470000px;}
.y19_c00395{bottom:311.220000px;}
.y18_c00395{bottom:337.470000px;}
.y17_c00395{bottom:361.470000px;}
.y16_c00395{bottom:385.020000px;}
.y15_c00395{bottom:410.670000px;}
.y14_c00395{bottom:434.670000px;}
.y13_c00395{bottom:458.370000px;}
.y12_c00395{bottom:482.220000px;}
.y11_c00395{bottom:506.970000px;}
.y10_c00395{bottom:531.270000px;}
.yf_c00395{bottom:554.520000px;}
.ye_c00395{bottom:580.170000px;}
.yd_c00395{bottom:604.470000px;}
.yc_c00395{bottom:628.770000px;}
.yb_c00395{bottom:653.520000px;}
.ya_c00395{bottom:678.270000px;}
.y9_c00395{bottom:703.020000px;}
.y8_c00395{bottom:727.620000px;}
.y7_c00395{bottom:752.370000px;}
.y6_c00395{bottom:776.970000px;}
.y5_c00395{bottom:801.570000px;}
.y4_c00395{bottom:826.170000px;}
.y3_c00395{bottom:850.770000px;}
.y2_c00395{bottom:874.770000px;}
.y1_c00395{bottom:899.670000px;}
.h6_c00395{height:13.200073px;}
.h7_c00395{height:43.804688px;}
.h3_c00395{height:72.168457px;}
.h1_c00395{height:79.497070px;}
.h5_c00395{height:84.269531px;}
.h2_c00395{height:91.160156px;}
.h4_c00395{height:98.756836px;}
.h0_c00395{height:989.250000px;}
.w2_c00395{width:104.875500px;}
.w1_c00395{width:663.000000px;}
.w0_c00395{width:663.150000px;}
.x0_c00395{left:0.000000px;}
.xa_c00395{left:25.650000px;}
.x9_c00395{left:27.000000px;}
.xc_c00395{left:28.650000px;}
.x2_c00395{left:77.400000px;}
.xe_c00395{left:80.700000px;}
.x5_c00395{left:113.400000px;}
.x3_c00395{left:115.200000px;}
.x4_c00395{left:116.700000px;}
.x8_c00395{left:117.900000px;}
.x7_c00395{left:119.400000px;}
.xd_c00395{left:120.450000px;}
.xf_c00395{left:122.100000px;}
.x1_c00395{left:140.100000px;}
.x6_c00395{left:142.650000px;}
.xb_c00395{left:184.050000px;}
.x11_c00395{left:283.389267px;}
.x10_c00395{left:571.350000px;}
@media print{
.v0_c00395{vertical-align:0.000000pt;}
.ls4_c00395{letter-spacing:-5.333333pt;}
.ls3_c00395{letter-spacing:0.000000pt;}
.ls2_c00395{letter-spacing:0.557333pt;}
.ls0_c00395{letter-spacing:7.850667pt;}
.ls1_c00395{letter-spacing:28.090667pt;}
.ws2_c00395{word-spacing:-18.000000pt;}
.ws1_c00395{word-spacing:-16.012800pt;}
.ws0_c00395{word-spacing:-15.424000pt;}
.ws3_c00395{word-spacing:0.000000pt;}
._1c_c00395{margin-left:-16.626667pt;}
._14_c00395{margin-left:-11.349333pt;}
._13_c00395{margin-left:-9.701333pt;}
._c_c00395{margin-left:-8.784000pt;}
._7_c00395{margin-left:-7.848000pt;}
._12_c00395{margin-left:-6.586667pt;}
._16_c00395{margin-left:-5.258667pt;}
._b_c00395{margin-left:-4.248000pt;}
._f_c00395{margin-left:-3.173333pt;}
._2_c00395{margin-left:-1.800000pt;}
._20_c00395{margin-left:-0.904000pt;}
._5_c00395{width:1.368000pt;}
._8_c00395{width:2.592000pt;}
._3_c00395{width:3.744000pt;}
._9_c00395{width:4.896000pt;}
._6_c00395{width:5.832000pt;}
._4_c00395{width:6.912000pt;}
._1_c00395{width:8.064000pt;}
._e_c00395{width:9.074667pt;}
._d_c00395{width:10.226667pt;}
._18_c00395{width:11.373333pt;}
._0_c00395{width:12.816000pt;}
._17_c00395{width:13.757333pt;}
._1b_c00395{width:17.066667pt;}
._10_c00395{width:19.370667pt;}
._11_c00395{width:24.957333pt;}
._15_c00395{width:28.797333pt;}
._1a_c00395{width:29.970667pt;}
._24_c00395{width:34.560000pt;}
._1e_c00395{width:48.450667pt;}
._22_c00395{width:142.226667pt;}
._1d_c00395{width:176.904000pt;}
._25_c00395{width:200.213333pt;}
._1f_c00395{width:225.933333pt;}
._21_c00395{width:229.752000pt;}
._23_c00395{width:272.392000pt;}
._a_c00395{width:312.768000pt;}
._19_c00395{width:330.264000pt;}
.fs6_c00395{font-size:42.666667pt;}
.fs2_c00395{font-size:50.666667pt;}
.fs5_c00395{font-size:53.333333pt;}
.fs4_c00395{font-size:57.600000pt;}
.fs1_c00395{font-size:64.000000pt;}
.fs3_c00395{font-size:69.333333pt;}
.fs0_c00395{font-size:72.000000pt;}
.y0_c00395{bottom:0.000000pt;}
.y25_c00395{bottom:2.760000pt;}
.y24_c00395{bottom:6.425217pt;}
.y23_c00395{bottom:59.306667pt;}
.y22_c00395{bottom:78.240000pt;}
.y21_c00395{bottom:102.506667pt;}
.y20_c00395{bottom:122.906667pt;}
.y1f_c00395{bottom:145.173333pt;}
.y1e_c00395{bottom:168.906667pt;}
.y1d_c00395{bottom:190.106667pt;}
.y1c_c00395{bottom:210.640000pt;}
.y1b_c00395{bottom:232.506667pt;}
.y1a_c00395{bottom:254.640000pt;}
.y19_c00395{bottom:276.640000pt;}
.y18_c00395{bottom:299.973333pt;}
.y17_c00395{bottom:321.306667pt;}
.y16_c00395{bottom:342.240000pt;}
.y15_c00395{bottom:365.040000pt;}
.y14_c00395{bottom:386.373333pt;}
.y13_c00395{bottom:407.440000pt;}
.y12_c00395{bottom:428.640000pt;}
.y11_c00395{bottom:450.640000pt;}
.y10_c00395{bottom:472.240000pt;}
.yf_c00395{bottom:492.906667pt;}
.ye_c00395{bottom:515.706667pt;}
.yd_c00395{bottom:537.306667pt;}
.yc_c00395{bottom:558.906667pt;}
.yb_c00395{bottom:580.906667pt;}
.ya_c00395{bottom:602.906667pt;}
.y9_c00395{bottom:624.906667pt;}
.y8_c00395{bottom:646.773333pt;}
.y7_c00395{bottom:668.773333pt;}
.y6_c00395{bottom:690.640000pt;}
.y5_c00395{bottom:712.506667pt;}
.y4_c00395{bottom:734.373333pt;}
.y3_c00395{bottom:756.240000pt;}
.y2_c00395{bottom:777.573333pt;}
.y1_c00395{bottom:799.706667pt;}
.h6_c00395{height:11.733399pt;}
.h7_c00395{height:38.937500pt;}
.h3_c00395{height:64.149740pt;}
.h1_c00395{height:70.664062pt;}
.h5_c00395{height:74.906250pt;}
.h2_c00395{height:81.031250pt;}
.h4_c00395{height:87.783854pt;}
.h0_c00395{height:879.333333pt;}
.w2_c00395{width:93.222667pt;}
.w1_c00395{width:589.333333pt;}
.w0_c00395{width:589.466667pt;}
.x0_c00395{left:0.000000pt;}
.xa_c00395{left:22.800000pt;}
.x9_c00395{left:24.000000pt;}
.xc_c00395{left:25.466667pt;}
.x2_c00395{left:68.800000pt;}
.xe_c00395{left:71.733333pt;}
.x5_c00395{left:100.800000pt;}
.x3_c00395{left:102.400000pt;}
.x4_c00395{left:103.733333pt;}
.x8_c00395{left:104.800000pt;}
.x7_c00395{left:106.133333pt;}
.xd_c00395{left:107.066667pt;}
.xf_c00395{left:108.533333pt;}
.x1_c00395{left:124.533333pt;}
.x6_c00395{left:126.800000pt;}
.xb_c00395{left:163.600000pt;}
.x11_c00395{left:251.901571pt;}
.x10_c00395{left:507.866667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_93ade66eecc904fc5ee45264.woff2')format("woff");}.ff1_c00396{font-family:ff1_c00396;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00396;src:url('chunks/assets/font_11f02ecc3349619531ae19a5.woff2')format("woff");}.ff2_c00396{font-family:ff2_c00396;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00396;src:url('chunks/assets/font_82d4ca5f92fa1b3d58de07b1.woff2')format("woff");}.ff3_c00396{font-family:ff3_c00396;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00396;src:url('chunks/assets/font_0e1888d4f3763a8f2583a67a.woff2')format("woff");}.ff4_c00396{font-family:ff4_c00396;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00396;src:url('chunks/assets/font_a0088271faa5c48280deb21c.woff2')format("woff");}.ff5_c00396{font-family:ff5_c00396;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00396;src:url('chunks/assets/font_7cb50e8e6a2272ffca45d82c.woff2')format("woff");}.ff6_c00396{font-family:ff6_c00396;line-height:1.437000;font-style:normal;font-weight: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_c00396;src:url('chunks/assets/font_b57e6566d0e3b715838cb145.woff2')format("woff");}.ff7_c00396{font-family:ff7_c00396;line-height:1.437000;font-style:normal;font-weight: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_c00396;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff8_c00396{font-family:ff8_c00396;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00396{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00396{vertical-align:0.000000px;}
.v1_c00396{vertical-align:178.800000px;}
.ls5_c00396{letter-spacing:0.000000px;}
.ls0_c00396{letter-spacing:2.202000px;}
.ls1_c00396{letter-spacing:3.000000px;}
.ls4_c00396{letter-spacing:13.950000px;}
.ls2_c00396{letter-spacing:15.204000px;}
.ls3_c00396{letter-spacing:16.200000px;}
.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:-23.859000px;}
.ws2_c00396{word-spacing:-17.250000px;}
.ws1_c00396{word-spacing:-13.737000px;}
.ws3_c00396{word-spacing:0.000000px;}
._1d_c00396{margin-left:-29.616000px;}
._8_c00396{margin-left:-20.691000px;}
._a_c00396{margin-left:-19.422000px;}
._23_c00396{margin-left:-17.445000px;}
._7_c00396{margin-left:-14.454000px;}
._1f_c00396{margin-left:-13.080000px;}
._1e_c00396{margin-left:-10.920000px;}
._6_c00396{margin-left:-8.415000px;}
._1a_c00396{margin-left:-7.191000px;}
._19_c00396{margin-left:-6.189000px;}
._9_c00396{margin-left:-4.752000px;}
._0_c00396{margin-left:-2.673000px;}
._1_c00396{margin-left:-1.188000px;}
._20_c00396{width:1.209000px;}
._11_c00396{width:2.244000px;}
._4_c00396{width:4.158000px;}
._e_c00396{width:5.172000px;}
._3_c00396{width:6.534000px;}
._5_c00396{width:8.217000px;}
._2_c00396{width:9.900000px;}
._d_c00396{width:11.286000px;}
._13_c00396{width:12.306000px;}
._f_c00396{width:13.344000px;}
._10_c00396{width:14.364000px;}
._17_c00396{width:15.570000px;}
._15_c00396{width:18.903000px;}
._14_c00396{width:19.974000px;}
._c_c00396{width:21.879000px;}
._18_c00396{width:24.159000px;}
._24_c00396{width:25.860000px;}
._21_c00396{width:27.702000px;}
._16_c00396{width:29.799000px;}
._1b_c00396{width:39.510000px;}
._b_c00396{width:193.752000px;}
._1c_c00396{width:228.480000px;}
._12_c00396{width:380.481000px;}
._22_c00396{width:396.939000px;}
.fc2_c00396{color:transparent;}
.fc1_c00396{color:rgb(128,128,128);}
.fc0_c00396{color:rgb(0,0,0);}
.fs8_c00396{font-size:48.000000px;}
.fs2_c00396{font-size:57.000000px;}
.fs7_c00396{font-size:60.000000px;}
.fs6_c00396{font-size:69.000000px;}
.fs5_c00396{font-size:72.000000px;}
.fs3_c00396{font-size:78.000000px;}
.fs0_c00396{font-size:99.000000px;}
.fs1_c00396{font-size:132.000000px;}
.fs4_c00396{font-size:291.000000px;}
.y0_c00396{bottom:0.000000px;}
.y25_c00396{bottom:3.105000px;}
.y24_c00396{bottom:7.228355px;}
.y23_c00396{bottom:55.335000px;}
.y22_c00396{bottom:79.185000px;}
.y21_c00396{bottom:106.185000px;}
.y20_c00396{bottom:129.135000px;}
.y1f_c00396{bottom:153.885000px;}
.y1e_c00396{bottom:178.185000px;}
.y1d_c00396{bottom:203.085000px;}
.y1c_c00396{bottom:227.835000px;}
.y1b_c00396{bottom:252.135000px;}
.y1a_c00396{bottom:276.435000px;}
.y19_c00396{bottom:300.285000px;}
.y18_c00396{bottom:324.285000px;}
.y17_c00396{bottom:348.885000px;}
.y15_c00396{bottom:352.485000px;}
.y16_c00396{bottom:373.185000px;}
.y14_c00396{bottom:420.735000px;}
.y13_c00396{bottom:469.335000px;}
.y12_c00396{bottom:494.085000px;}
.y11_c00396{bottom:518.685000px;}
.y10_c00396{bottom:542.385000px;}
.yf_c00396{bottom:566.535000px;}
.ye_c00396{bottom:590.985000px;}
.yd_c00396{bottom:614.235000px;}
.yc_c00396{bottom:638.535000px;}
.yb_c00396{bottom:662.535000px;}
.ya_c00396{bottom:686.685000px;}
.y9_c00396{bottom:710.385000px;}
.y8_c00396{bottom:734.385000px;}
.y7_c00396{bottom:758.985000px;}
.y6_c00396{bottom:782.985000px;}
.y5_c00396{bottom:807.585000px;}
.y4_c00396{bottom:831.585000px;}
.y3_c00396{bottom:855.585000px;}
.y2_c00396{bottom:880.185000px;}
.y1_c00396{bottom:912.885000px;}
.h8_c00396{height:13.200074px;}
.h9_c00396{height:43.804688px;}
.h4_c00396{height:57.445312px;}
.h7_c00396{height:70.224609px;}
.h6_c00396{height:72.312000px;}
.h3_c00396{height:98.756836px;}
.h2_c00396{height:167.126953px;}
.h5_c00396{height:285.600586px;}
.h0_c00396{height:977.925000px;}
.h1_c00396{height:978.000000px;}
.w2_c00396{width:104.875500px;}
.w0_c00396{width:664.200000px;}
.w1_c00396{width:664.500000px;}
.x0_c00396{left:0.000000px;}
.x2_c00396{left:45.000000px;}
.x3_c00396{left:47.250000px;}
.x4_c00396{left:48.300000px;}
.x5_c00396{left:50.250000px;}
.x6_c00396{left:51.300000px;}
.x7_c00396{left:52.950000px;}
.x9_c00396{left:58.950000px;}
.xc_c00396{left:60.000000px;}
.xb_c00396{left:61.350000px;}
.xd_c00396{left:63.000000px;}
.x1_c00396{left:89.400000px;}
.xa_c00396{left:103.200000px;}
.x8_c00396{left:145.050000px;}
.xf_c00396{left:283.914230px;}
.xe_c00396{left:539.250000px;}
@media print{
.v0_c00396{vertical-align:0.000000pt;}
.v1_c00396{vertical-align:158.933333pt;}
.ls5_c00396{letter-spacing:0.000000pt;}
.ls0_c00396{letter-spacing:1.957333pt;}
.ls1_c00396{letter-spacing:2.666667pt;}
.ls4_c00396{letter-spacing:12.400000pt;}
.ls2_c00396{letter-spacing:13.514667pt;}
.ls3_c00396{letter-spacing:14.400000pt;}
.ws0_c00396{word-spacing:-21.208000pt;}
.ws2_c00396{word-spacing:-15.333333pt;}
.ws1_c00396{word-spacing:-12.210667pt;}
.ws3_c00396{word-spacing:0.000000pt;}
._1d_c00396{margin-left:-26.325333pt;}
._8_c00396{margin-left:-18.392000pt;}
._a_c00396{margin-left:-17.264000pt;}
._23_c00396{margin-left:-15.506667pt;}
._7_c00396{margin-left:-12.848000pt;}
._1f_c00396{margin-left:-11.626667pt;}
._1e_c00396{margin-left:-9.706667pt;}
._6_c00396{margin-left:-7.480000pt;}
._1a_c00396{margin-left:-6.392000pt;}
._19_c00396{margin-left:-5.501333pt;}
._9_c00396{margin-left:-4.224000pt;}
._0_c00396{margin-left:-2.376000pt;}
._1_c00396{margin-left:-1.056000pt;}
._20_c00396{width:1.074667pt;}
._11_c00396{width:1.994667pt;}
._4_c00396{width:3.696000pt;}
._e_c00396{width:4.597333pt;}
._3_c00396{width:5.808000pt;}
._5_c00396{width:7.304000pt;}
._2_c00396{width:8.800000pt;}
._d_c00396{width:10.032000pt;}
._13_c00396{width:10.938667pt;}
._f_c00396{width:11.861333pt;}
._10_c00396{width:12.768000pt;}
._17_c00396{width:13.840000pt;}
._15_c00396{width:16.802667pt;}
._14_c00396{width:17.754667pt;}
._c_c00396{width:19.448000pt;}
._18_c00396{width:21.474667pt;}
._24_c00396{width:22.986667pt;}
._21_c00396{width:24.624000pt;}
._16_c00396{width:26.488000pt;}
._1b_c00396{width:35.120000pt;}
._b_c00396{width:172.224000pt;}
._1c_c00396{width:203.093333pt;}
._12_c00396{width:338.205333pt;}
._22_c00396{width:352.834667pt;}
.fs8_c00396{font-size:42.666667pt;}
.fs2_c00396{font-size:50.666667pt;}
.fs7_c00396{font-size:53.333333pt;}
.fs6_c00396{font-size:61.333333pt;}
.fs5_c00396{font-size:64.000000pt;}
.fs3_c00396{font-size:69.333333pt;}
.fs0_c00396{font-size:88.000000pt;}
.fs1_c00396{font-size:117.333333pt;}
.fs4_c00396{font-size:258.666667pt;}
.y0_c00396{bottom:0.000000pt;}
.y25_c00396{bottom:2.760000pt;}
.y24_c00396{bottom:6.425204pt;}
.y23_c00396{bottom:49.186667pt;}
.y22_c00396{bottom:70.386667pt;}
.y21_c00396{bottom:94.386667pt;}
.y20_c00396{bottom:114.786667pt;}
.y1f_c00396{bottom:136.786667pt;}
.y1e_c00396{bottom:158.386667pt;}
.y1d_c00396{bottom:180.520000pt;}
.y1c_c00396{bottom:202.520000pt;}
.y1b_c00396{bottom:224.120000pt;}
.y1a_c00396{bottom:245.720000pt;}
.y19_c00396{bottom:266.920000pt;}
.y18_c00396{bottom:288.253333pt;}
.y17_c00396{bottom:310.120000pt;}
.y15_c00396{bottom:313.320000pt;}
.y16_c00396{bottom:331.720000pt;}
.y14_c00396{bottom:373.986667pt;}
.y13_c00396{bottom:417.186667pt;}
.y12_c00396{bottom:439.186667pt;}
.y11_c00396{bottom:461.053333pt;}
.y10_c00396{bottom:482.120000pt;}
.yf_c00396{bottom:503.586667pt;}
.ye_c00396{bottom:525.320000pt;}
.yd_c00396{bottom:545.986667pt;}
.yc_c00396{bottom:567.586667pt;}
.yb_c00396{bottom:588.920000pt;}
.ya_c00396{bottom:610.386667pt;}
.y9_c00396{bottom:631.453333pt;}
.y8_c00396{bottom:652.786667pt;}
.y7_c00396{bottom:674.653333pt;}
.y6_c00396{bottom:695.986667pt;}
.y5_c00396{bottom:717.853333pt;}
.y4_c00396{bottom:739.186667pt;}
.y3_c00396{bottom:760.520000pt;}
.y2_c00396{bottom:782.386667pt;}
.y1_c00396{bottom:811.453333pt;}
.h8_c00396{height:11.733399pt;}
.h9_c00396{height:38.937500pt;}
.h4_c00396{height:51.062500pt;}
.h7_c00396{height:62.421875pt;}
.h6_c00396{height:64.277333pt;}
.h3_c00396{height:87.783854pt;}
.h2_c00396{height:148.557292pt;}
.h5_c00396{height:253.867188pt;}
.h0_c00396{height:869.266667pt;}
.h1_c00396{height:869.333333pt;}
.w2_c00396{width:93.222667pt;}
.w0_c00396{width:590.400000pt;}
.w1_c00396{width:590.666667pt;}
.x0_c00396{left:0.000000pt;}
.x2_c00396{left:40.000000pt;}
.x3_c00396{left:42.000000pt;}
.x4_c00396{left:42.933333pt;}
.x5_c00396{left:44.666667pt;}
.x6_c00396{left:45.600000pt;}
.x7_c00396{left:47.066667pt;}
.x9_c00396{left:52.400000pt;}
.xc_c00396{left:53.333333pt;}
.xb_c00396{left:54.533333pt;}
.xd_c00396{left:56.000000pt;}
.x1_c00396{left:79.466667pt;}
.xa_c00396{left:91.733333pt;}
.x8_c00396{left:128.933333pt;}
.xf_c00396{left:252.368205pt;}
.xe_c00396{left:479.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_d3684cbd3c8ca888fe1bcb6e.woff2')format("woff");}.ff1_c00397{font-family:ff1_c00397;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00397;src:url('chunks/assets/font_f1c1fb098fb7433519ace19e.woff2')format("woff");}.ff2_c00397{font-family:ff2_c00397;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00397;src:url('chunks/assets/font_99fd83e15e60a38d30131209.woff2')format("woff");}.ff3_c00397{font-family:ff3_c00397;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00397;src:url('chunks/assets/font_6116212ffa3e578a562639e7.woff2')format("woff");}.ff4_c00397{font-family:ff4_c00397;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00397;src:url('chunks/assets/font_f13d5206ac693d1a888028e3.woff2')format("woff");}.ff5_c00397{font-family:ff5_c00397;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00397;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c00397{font-family:ff6_c00397;line-height:1.219238;font-style: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;}
.ls3_c00397{letter-spacing:0.000000px;}
.ls2_c00397{letter-spacing:3.000000px;}
.ls1_c00397{letter-spacing:3.300000px;}
.ls4_c00397{letter-spacing:6.000000px;}
.ls0_c00397{letter-spacing:8.280000px;}
.sc__c00397{text-shadow:none;}
.sc0_c00397{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00397{-webkit-text-stroke:0px transparent;}
.sc0_c00397{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00397{word-spacing:-17.352000px;}
.ws1_c00397{word-spacing:0.000000px;}
._18_c00397{margin-left:-24.672000px;}
._1b_c00397{margin-left:-17.982000px;}
._16_c00397{margin-left:-16.200000px;}
._10_c00397{margin-left:-14.901000px;}
._15_c00397{margin-left:-13.608000px;}
._24_c00397{margin-left:-11.925000px;}
._e_c00397{margin-left:-10.323000px;}
._17_c00397{margin-left:-8.712000px;}
._c_c00397{margin-left:-7.200000px;}
._1f_c00397{margin-left:-6.084000px;}
._b_c00397{margin-left:-4.932000px;}
._6_c00397{margin-left:-3.486000px;}
._0_c00397{margin-left:-1.632000px;}
._2_c00397{width:1.122000px;}
._3_c00397{width:2.550000px;}
._4_c00397{width:3.852000px;}
._1_c00397{width:4.896000px;}
._a_c00397{width:6.678000px;}
._5_c00397{width:7.980000px;}
._9_c00397{width:9.927000px;}
._11_c00397{width:11.592000px;}
._f_c00397{width:13.428000px;}
._d_c00397{width:14.577000px;}
._13_c00397{width:16.044000px;}
._8_c00397{width:18.036000px;}
._7_c00397{width:19.764000px;}
._14_c00397{width:21.405000px;}
._12_c00397{width:25.158000px;}
._1e_c00397{width:29.826000px;}
._1a_c00397{width:33.837000px;}
._20_c00397{width:36.735000px;}
._25_c00397{width:63.900000px;}
._23_c00397{width:92.559000px;}
._19_c00397{width:203.229000px;}
._21_c00397{width:301.332000px;}
._1c_c00397{width:317.844000px;}
._1d_c00397{width:378.318000px;}
._22_c00397{width:629.718000px;}
.fc2_c00397{color:transparent;}
.fc1_c00397{color:rgb(128,128,128);}
.fc0_c00397{color:rgb(0,0,0);}
.fs5_c00397{font-size:42.000000px;}
.fs7_c00397{font-size:48.000000px;}
.fs2_c00397{font-size:54.000000px;}
.fs3_c00397{font-size:72.000000px;}
.fs4_c00397{font-size:78.000000px;}
.fs1_c00397{font-size:81.000000px;}
.fs8_c00397{font-size:93.000000px;}
.fs0_c00397{font-size:102.000000px;}
.fs6_c00397{font-size:105.000000px;}
.y0_c00397{bottom:0.000000px;}
.y25_c00397{bottom:3.105000px;}
.y24_c00397{bottom:7.228357px;}
.y23_c00397{bottom:86.730000px;}
.y22_c00397{bottom:111.780000px;}
.y21_c00397{bottom:137.130000px;}
.y20_c00397{bottom:160.680000px;}
.y1f_c00397{bottom:185.580000px;}
.y1e_c00397{bottom:209.580000px;}
.y1d_c00397{bottom:234.930000px;}
.y1c_c00397{bottom:258.480000px;}
.y1b_c00397{bottom:282.780000px;}
.y1a_c00397{bottom:306.480000px;}
.y19_c00397{bottom:330.780000px;}
.y18_c00397{bottom:358.080000px;}
.y17_c00397{bottom:379.380000px;}
.y16_c00397{bottom:404.730000px;}
.y15_c00397{bottom:430.980000px;}
.y14_c00397{bottom:453.030000px;}
.y13_c00397{bottom:476.880000px;}
.y12_c00397{bottom:501.480000px;}
.y11_c00397{bottom:524.880000px;}
.y10_c00397{bottom:549.780000px;}
.yf_c00397{bottom:573.180000px;}
.ye_c00397{bottom:600.480000px;}
.yd_c00397{bottom:623.430000px;}
.yc_c00397{bottom:647.280000px;}
.yb_c00397{bottom:671.580000px;}
.ya_c00397{bottom:694.680000px;}
.y9_c00397{bottom:719.280000px;}
.y8_c00397{bottom:743.130000px;}
.y7_c00397{bottom:766.830000px;}
.y6_c00397{bottom:794.130000px;}
.y5_c00397{bottom:818.130000px;}
.y4_c00397{bottom:840.330000px;}
.y3_c00397{bottom:865.680000px;}
.y2_c00397{bottom:889.380000px;}
.y1_c00397{bottom:923.730000px;}
.h8_c00397{height:13.200074px;}
.h9_c00397{height:43.804688px;}
.h3_c00397{height:79.497070px;}
.h4_c00397{height:84.269531px;}
.h6_c00397{height:91.160156px;}
.h5_c00397{height:98.756836px;}
.h7_c00397{height:103.000488px;}
.h2_c00397{height:119.381836px;}
.h0_c00397{height:984.450000px;}
.h1_c00397{height:984.750000px;}
.w2_c00397{width:104.875500px;}
.w0_c00397{width:659.850000px;}
.w1_c00397{width:660.000000px;}
.x0_c00397{left:0.000000px;}
.x10_c00397{left:27.600000px;}
.xe_c00397{left:30.150000px;}
.x9_c00397{left:38.100000px;}
.x5_c00397{left:39.450000px;}
.xc_c00397{left:42.300000px;}
.x11_c00397{left:53.250000px;}
.x8_c00397{left:86.700000px;}
.x15_c00397{left:112.500000px;}
.x14_c00397{left:113.850000px;}
.x13_c00397{left:115.050000px;}
.x12_c00397{left:116.400000px;}
.xd_c00397{left:121.200000px;}
.xb_c00397{left:123.600000px;}
.xa_c00397{left:124.650000px;}
.x7_c00397{left:126.150000px;}
.x6_c00397{left:127.200000px;}
.x4_c00397{left:128.850000px;}
.x3_c00397{left:130.500000px;}
.x2_c00397{left:133.200000px;}
.xf_c00397{left:185.400000px;}
.x1_c00397{left:242.100000px;}
.x16_c00397{left:281.739258px;}
@media print{
.v0_c00397{vertical-align:0.000000pt;}
.ls3_c00397{letter-spacing:0.000000pt;}
.ls2_c00397{letter-spacing:2.666667pt;}
.ls1_c00397{letter-spacing:2.933333pt;}
.ls4_c00397{letter-spacing:5.333333pt;}
.ls0_c00397{letter-spacing:7.360000pt;}
.ws0_c00397{word-spacing:-15.424000pt;}
.ws1_c00397{word-spacing:0.000000pt;}
._18_c00397{margin-left:-21.930667pt;}
._1b_c00397{margin-left:-15.984000pt;}
._16_c00397{margin-left:-14.400000pt;}
._10_c00397{margin-left:-13.245333pt;}
._15_c00397{margin-left:-12.096000pt;}
._24_c00397{margin-left:-10.600000pt;}
._e_c00397{margin-left:-9.176000pt;}
._17_c00397{margin-left:-7.744000pt;}
._c_c00397{margin-left:-6.400000pt;}
._1f_c00397{margin-left:-5.408000pt;}
._b_c00397{margin-left:-4.384000pt;}
._6_c00397{margin-left:-3.098667pt;}
._0_c00397{margin-left:-1.450667pt;}
._2_c00397{width:0.997333pt;}
._3_c00397{width:2.266667pt;}
._4_c00397{width:3.424000pt;}
._1_c00397{width:4.352000pt;}
._a_c00397{width:5.936000pt;}
._5_c00397{width:7.093333pt;}
._9_c00397{width:8.824000pt;}
._11_c00397{width:10.304000pt;}
._f_c00397{width:11.936000pt;}
._d_c00397{width:12.957333pt;}
._13_c00397{width:14.261333pt;}
._8_c00397{width:16.032000pt;}
._7_c00397{width:17.568000pt;}
._14_c00397{width:19.026667pt;}
._12_c00397{width:22.362667pt;}
._1e_c00397{width:26.512000pt;}
._1a_c00397{width:30.077333pt;}
._20_c00397{width:32.653333pt;}
._25_c00397{width:56.800000pt;}
._23_c00397{width:82.274667pt;}
._19_c00397{width:180.648000pt;}
._21_c00397{width:267.850667pt;}
._1c_c00397{width:282.528000pt;}
._1d_c00397{width:336.282667pt;}
._22_c00397{width:559.749333pt;}
.fs5_c00397{font-size:37.333333pt;}
.fs7_c00397{font-size:42.666667pt;}
.fs2_c00397{font-size:48.000000pt;}
.fs3_c00397{font-size:64.000000pt;}
.fs4_c00397{font-size:69.333333pt;}
.fs1_c00397{font-size:72.000000pt;}
.fs8_c00397{font-size:82.666667pt;}
.fs0_c00397{font-size:90.666667pt;}
.fs6_c00397{font-size:93.333333pt;}
.y0_c00397{bottom:0.000000pt;}
.y25_c00397{bottom:2.760000pt;}
.y24_c00397{bottom:6.425206pt;}
.y23_c00397{bottom:77.093333pt;}
.y22_c00397{bottom:99.360000pt;}
.y21_c00397{bottom:121.893333pt;}
.y20_c00397{bottom:142.826667pt;}
.y1f_c00397{bottom:164.960000pt;}
.y1e_c00397{bottom:186.293333pt;}
.y1d_c00397{bottom:208.826667pt;}
.y1c_c00397{bottom:229.760000pt;}
.y1b_c00397{bottom:251.360000pt;}
.y1a_c00397{bottom:272.426667pt;}
.y19_c00397{bottom:294.026667pt;}
.y18_c00397{bottom:318.293333pt;}
.y17_c00397{bottom:337.226667pt;}
.y16_c00397{bottom:359.760000pt;}
.y15_c00397{bottom:383.093333pt;}
.y14_c00397{bottom:402.693333pt;}
.y13_c00397{bottom:423.893333pt;}
.y12_c00397{bottom:445.760000pt;}
.y11_c00397{bottom:466.560000pt;}
.y10_c00397{bottom:488.693333pt;}
.yf_c00397{bottom:509.493333pt;}
.ye_c00397{bottom:533.760000pt;}
.yd_c00397{bottom:554.160000pt;}
.yc_c00397{bottom:575.360000pt;}
.yb_c00397{bottom:596.960000pt;}
.ya_c00397{bottom:617.493333pt;}
.y9_c00397{bottom:639.360000pt;}
.y8_c00397{bottom:660.560000pt;}
.y7_c00397{bottom:681.626667pt;}
.y6_c00397{bottom:705.893333pt;}
.y5_c00397{bottom:727.226667pt;}
.y4_c00397{bottom:746.960000pt;}
.y3_c00397{bottom:769.493333pt;}
.y2_c00397{bottom:790.560000pt;}
.y1_c00397{bottom:821.093333pt;}
.h8_c00397{height:11.733399pt;}
.h9_c00397{height:38.937500pt;}
.h3_c00397{height:70.664062pt;}
.h4_c00397{height:74.906250pt;}
.h6_c00397{height:81.031250pt;}
.h5_c00397{height:87.783854pt;}
.h7_c00397{height:91.555990pt;}
.h2_c00397{height:106.117188pt;}
.h0_c00397{height:875.066667pt;}
.h1_c00397{height:875.333333pt;}
.w2_c00397{width:93.222667pt;}
.w0_c00397{width:586.533333pt;}
.w1_c00397{width:586.666667pt;}
.x0_c00397{left:0.000000pt;}
.x10_c00397{left:24.533333pt;}
.xe_c00397{left:26.800000pt;}
.x9_c00397{left:33.866667pt;}
.x5_c00397{left:35.066667pt;}
.xc_c00397{left:37.600000pt;}
.x11_c00397{left:47.333333pt;}
.x8_c00397{left:77.066667pt;}
.x15_c00397{left:100.000000pt;}
.x14_c00397{left:101.200000pt;}
.x13_c00397{left:102.266667pt;}
.x12_c00397{left:103.466667pt;}
.xd_c00397{left:107.733333pt;}
.xb_c00397{left:109.866667pt;}
.xa_c00397{left:110.800000pt;}
.x7_c00397{left:112.133333pt;}
.x6_c00397{left:113.066667pt;}
.x4_c00397{left:114.533333pt;}
.x3_c00397{left:116.000000pt;}
.x2_c00397{left:118.400000pt;}
.xf_c00397{left:164.800000pt;}
.x1_c00397{left:215.200000pt;}
.x16_c00397{left:250.434896pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5a389a79bc32bb5ee805af8e.woff2')format("woff");}.ff1_c00398{font-family:ff1_c00398;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00398;src:url('chunks/assets/font_7248675d4801e713f3adf963.woff2')format("woff");}.ff2_c00398{font-family:ff2_c00398;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00398;src:url('chunks/assets/font_15f4019b2217df92ee60e0e5.woff2')format("woff");}.ff3_c00398{font-family:ff3_c00398;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00398;src:url('chunks/assets/font_98fe4b0a63bccd8a19a0363e.woff2')format("woff");}.ff4_c00398{font-family:ff4_c00398;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00398;src:url('chunks/assets/font_4fbc5831fba8a1f3e0c839ea.woff2')format("woff");}.ff5_c00398{font-family:ff5_c00398;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00398;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c00398{font-family:ff6_c00398;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00398{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00398{vertical-align:0.000000px;}
.ls2_c00398{letter-spacing:0.000000px;}
.ls0_c00398{letter-spacing:6.000000px;}
.ls1_c00398{letter-spacing:7.050000px;}
.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;}
}
.ws2_c00398{word-spacing:-20.538000px;}
.ws0_c00398{word-spacing:-17.352000px;}
.ws1_c00398{word-spacing:-15.750000px;}
.ws3_c00398{word-spacing:0.000000px;}
._21_c00398{margin-left:-24.696000px;}
._b_c00398{margin-left:-23.661000px;}
._d_c00398{margin-left:-21.546000px;}
._c_c00398{margin-left:-20.529000px;}
._23_c00398{margin-left:-19.296000px;}
._a_c00398{margin-left:-16.335000px;}
._9_c00398{margin-left:-14.256000px;}
._25_c00398{margin-left:-12.255000px;}
._1a_c00398{margin-left:-10.989000px;}
._1e_c00398{margin-left:-9.852000px;}
._1c_c00398{margin-left:-8.829000px;}
._15_c00398{margin-left:-7.623000px;}
._19_c00398{margin-left:-5.832000px;}
._6_c00398{margin-left:-4.554000px;}
._8_c00398{margin-left:-3.267000px;}
._5_c00398{margin-left:-2.079000px;}
._1b_c00398{width:1.026000px;}
._2_c00398{width:2.079000px;}
._1_c00398{width:3.564000px;}
._0_c00398{width:4.851000px;}
._e_c00398{width:6.012000px;}
._7_c00398{width:7.029000px;}
._f_c00398{width:8.163000px;}
._10_c00398{width:9.612000px;}
._12_c00398{width:11.097000px;}
._11_c00398{width:12.330000px;}
._4_c00398{width:13.761000px;}
._3_c00398{width:15.543000px;}
._27_c00398{width:16.986000px;}
._14_c00398{width:18.258000px;}
._1d_c00398{width:19.311000px;}
._26_c00398{width:20.826000px;}
._16_c00398{width:21.879000px;}
._13_c00398{width:23.625000px;}
._18_c00398{width:25.740000px;}
._17_c00398{width:27.693000px;}
._20_c00398{width:30.525000px;}
._1f_c00398{width:32.769000px;}
._22_c00398{width:34.560000px;}
._24_c00398{width:90.648000px;}
.fc2_c00398{color:transparent;}
.fc1_c00398{color:rgb(128,128,128);}
.fc0_c00398{color:rgb(0,0,0);}
.fs7_c00398{font-size:48.000000px;}
.fs3_c00398{font-size:57.000000px;}
.fs5_c00398{font-size:63.000000px;}
.fs6_c00398{font-size:66.000000px;}
.fs4_c00398{font-size:72.000000px;}
.fs2_c00398{font-size:81.000000px;}
.fs0_c00398{font-size:99.000000px;}
.fs1_c00398{font-size:132.000000px;}
.y0_c00398{bottom:0.000000px;}
.y25_c00398{bottom:3.105000px;}
.y24_c00398{bottom:7.228371px;}
.y23_c00398{bottom:72.915000px;}
.y22_c00398{bottom:97.965000px;}
.y21_c00398{bottom:122.865000px;}
.y20_c00398{bottom:147.165000px;}
.y1f_c00398{bottom:171.915000px;}
.y1e_c00398{bottom:196.065000px;}
.y1d_c00398{bottom:220.365000px;}
.y1c_c00398{bottom:244.815000px;}
.y1b_c00398{bottom:269.415000px;}
.y1a_c00398{bottom:293.415000px;}
.y19_c00398{bottom:317.565000px;}
.y18_c00398{bottom:342.015000px;}
.y17_c00398{bottom:366.165000px;}
.y16_c00398{bottom:389.115000px;}
.y15_c00398{bottom:414.465000px;}
.y14_c00398{bottom:438.765000px;}
.y13_c00398{bottom:463.515000px;}
.y12_c00398{bottom:487.365000px;}
.y11_c00398{bottom:511.365000px;}
.y10_c00398{bottom:536.265000px;}
.yf_c00398{bottom:559.665000px;}
.ye_c00398{bottom:584.265000px;}
.yd_c00398{bottom:607.815000px;}
.yc_c00398{bottom:630.915000px;}
.yb_c00398{bottom:655.065000px;}
.ya_c00398{bottom:679.365000px;}
.y9_c00398{bottom:703.665000px;}
.y8_c00398{bottom:728.115000px;}
.y7_c00398{bottom:752.415000px;}
.y6_c00398{bottom:776.265000px;}
.y5_c00398{bottom:801.015000px;}
.y4_c00398{bottom:825.915000px;}
.y3_c00398{bottom:851.265000px;}
.y2_c00398{bottom:874.515000px;}
.y1_c00398{bottom:909.315000px;}
.h8_c00398{height:13.200074px;}
.h9_c00398{height:43.804688px;}
.h7_c00398{height:61.831055px;}
.h6_c00398{height:66.713379px;}
.h3_c00398{height:79.497070px;}
.h4_c00398{height:84.269531px;}
.h5_c00398{height:91.160156px;}
.h2_c00398{height:167.126953px;}
.h0_c00398{height:989.025000px;}
.h1_c00398{height:989.250000px;}
.w1_c00398{width:104.875500px;}
.w0_c00398{width:672.000000px;}
.x0_c00398{left:0.000000px;}
.x6_c00398{left:60.000000px;}
.x7_c00398{left:62.700000px;}
.x2_c00398{left:64.500000px;}
.x3_c00398{left:66.150000px;}
.x4_c00398{left:67.200000px;}
.x1_c00398{left:68.250000px;}
.x5_c00398{left:92.400000px;}
.x8_c00398{left:287.814240px;}
@media print{
.v0_c00398{vertical-align:0.000000pt;}
.ls2_c00398{letter-spacing:0.000000pt;}
.ls0_c00398{letter-spacing:5.333333pt;}
.ls1_c00398{letter-spacing:6.266667pt;}
.ws2_c00398{word-spacing:-18.256000pt;}
.ws0_c00398{word-spacing:-15.424000pt;}
.ws1_c00398{word-spacing:-14.000000pt;}
.ws3_c00398{word-spacing:0.000000pt;}
._21_c00398{margin-left:-21.952000pt;}
._b_c00398{margin-left:-21.032000pt;}
._d_c00398{margin-left:-19.152000pt;}
._c_c00398{margin-left:-18.248000pt;}
._23_c00398{margin-left:-17.152000pt;}
._a_c00398{margin-left:-14.520000pt;}
._9_c00398{margin-left:-12.672000pt;}
._25_c00398{margin-left:-10.893333pt;}
._1a_c00398{margin-left:-9.768000pt;}
._1e_c00398{margin-left:-8.757333pt;}
._1c_c00398{margin-left:-7.848000pt;}
._15_c00398{margin-left:-6.776000pt;}
._19_c00398{margin-left:-5.184000pt;}
._6_c00398{margin-left:-4.048000pt;}
._8_c00398{margin-left:-2.904000pt;}
._5_c00398{margin-left:-1.848000pt;}
._1b_c00398{width:0.912000pt;}
._2_c00398{width:1.848000pt;}
._1_c00398{width:3.168000pt;}
._0_c00398{width:4.312000pt;}
._e_c00398{width:5.344000pt;}
._7_c00398{width:6.248000pt;}
._f_c00398{width:7.256000pt;}
._10_c00398{width:8.544000pt;}
._12_c00398{width:9.864000pt;}
._11_c00398{width:10.960000pt;}
._4_c00398{width:12.232000pt;}
._3_c00398{width:13.816000pt;}
._27_c00398{width:15.098667pt;}
._14_c00398{width:16.229333pt;}
._1d_c00398{width:17.165333pt;}
._26_c00398{width:18.512000pt;}
._16_c00398{width:19.448000pt;}
._13_c00398{width:21.000000pt;}
._18_c00398{width:22.880000pt;}
._17_c00398{width:24.616000pt;}
._20_c00398{width:27.133333pt;}
._1f_c00398{width:29.128000pt;}
._22_c00398{width:30.720000pt;}
._24_c00398{width:80.576000pt;}
.fs7_c00398{font-size:42.666667pt;}
.fs3_c00398{font-size:50.666667pt;}
.fs5_c00398{font-size:56.000000pt;}
.fs6_c00398{font-size:58.666667pt;}
.fs4_c00398{font-size:64.000000pt;}
.fs2_c00398{font-size:72.000000pt;}
.fs0_c00398{font-size:88.000000pt;}
.fs1_c00398{font-size:117.333333pt;}
.y0_c00398{bottom:0.000000pt;}
.y25_c00398{bottom:2.760000pt;}
.y24_c00398{bottom:6.425219pt;}
.y23_c00398{bottom:64.813333pt;}
.y22_c00398{bottom:87.080000pt;}
.y21_c00398{bottom:109.213333pt;}
.y20_c00398{bottom:130.813333pt;}
.y1f_c00398{bottom:152.813333pt;}
.y1e_c00398{bottom:174.280000pt;}
.y1d_c00398{bottom:195.880000pt;}
.y1c_c00398{bottom:217.613333pt;}
.y1b_c00398{bottom:239.480000pt;}
.y1a_c00398{bottom:260.813333pt;}
.y19_c00398{bottom:282.280000pt;}
.y18_c00398{bottom:304.013333pt;}
.y17_c00398{bottom:325.480000pt;}
.y16_c00398{bottom:345.880000pt;}
.y15_c00398{bottom:368.413333pt;}
.y14_c00398{bottom:390.013333pt;}
.y13_c00398{bottom:412.013333pt;}
.y12_c00398{bottom:433.213333pt;}
.y11_c00398{bottom:454.546667pt;}
.y10_c00398{bottom:476.680000pt;}
.yf_c00398{bottom:497.480000pt;}
.ye_c00398{bottom:519.346667pt;}
.yd_c00398{bottom:540.280000pt;}
.yc_c00398{bottom:560.813333pt;}
.yb_c00398{bottom:582.280000pt;}
.ya_c00398{bottom:603.880000pt;}
.y9_c00398{bottom:625.480000pt;}
.y8_c00398{bottom:647.213333pt;}
.y7_c00398{bottom:668.813333pt;}
.y6_c00398{bottom:690.013333pt;}
.y5_c00398{bottom:712.013333pt;}
.y4_c00398{bottom:734.146667pt;}
.y3_c00398{bottom:756.680000pt;}
.y2_c00398{bottom:777.346667pt;}
.y1_c00398{bottom:808.280000pt;}
.h8_c00398{height:11.733399pt;}
.h9_c00398{height:38.937500pt;}
.h7_c00398{height:54.960938pt;}
.h6_c00398{height:59.300781pt;}
.h3_c00398{height:70.664062pt;}
.h4_c00398{height:74.906250pt;}
.h5_c00398{height:81.031250pt;}
.h2_c00398{height:148.557292pt;}
.h0_c00398{height:879.133333pt;}
.h1_c00398{height:879.333333pt;}
.w1_c00398{width:93.222667pt;}
.w0_c00398{width:597.333333pt;}
.x0_c00398{left:0.000000pt;}
.x6_c00398{left:53.333333pt;}
.x7_c00398{left:55.733333pt;}
.x2_c00398{left:57.333333pt;}
.x3_c00398{left:58.800000pt;}
.x4_c00398{left:59.733333pt;}
.x1_c00398{left:60.666667pt;}
.x5_c00398{left:82.133333pt;}
.x8_c00398{left:255.834880pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b51b217e35c8d3e68d834505.woff2')format("woff");}.ff1_c00399{font-family:ff1_c00399;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00399;src:url('chunks/assets/font_b3abca62ca63cd6a3b40ca8b.woff2')format("woff");}.ff2_c00399{font-family:ff2_c00399;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00399;src:url('chunks/assets/font_e2ee6d00e58297131f7c41bf.woff2')format("woff");}.ff3_c00399{font-family:ff3_c00399;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00399;src:url('chunks/assets/font_e8708cd585f27b08d7dc99c6.woff2')format("woff");}.ff4_c00399{font-family:ff4_c00399;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00399;src:url('chunks/assets/font_7c4ae0a84a4568bf63bf6de9.woff2')format("woff");}.ff5_c00399{font-family:ff5_c00399;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00399;src:url('chunks/assets/font_5fe0fcab5f66947bc44eb754.woff2')format("woff");}.ff6_c00399{font-family:ff6_c00399;line-height:1.437000;font-style:normal;font-weight: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_c00399;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c00399{font-family:ff7_c00399;line-height:1.219238;font-style: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;}
.ls2_c00399{letter-spacing:0.000000px;}
.ls1_c00399{letter-spacing:13.350000px;}
.ls0_c00399{letter-spacing:14.280000px;}
.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;}
}
.ws1_c00399{word-spacing:-20.250000px;}
.ws0_c00399{word-spacing:-18.798000px;}
.ws2_c00399{word-spacing:0.000000px;}
._17_c00399{margin-left:-21.222000px;}
._11_c00399{margin-left:-14.094000px;}
._18_c00399{margin-left:-12.150000px;}
._14_c00399{margin-left:-10.935000px;}
._1a_c00399{margin-left:-9.720000px;}
._16_c00399{margin-left:-8.505000px;}
._19_c00399{margin-left:-6.885000px;}
._12_c00399{margin-left:-5.670000px;}
._13_c00399{margin-left:-4.212000px;}
._15_c00399{margin-left:-2.754000px;}
._c_c00399{margin-left:-1.053000px;}
._7_c00399{width:1.539000px;}
._6_c00399{width:2.997000px;}
._0_c00399{width:4.455000px;}
._4_c00399{width:5.751000px;}
._a_c00399{width:6.966000px;}
._1_c00399{width:8.100000px;}
._b_c00399{width:9.801000px;}
._2_c00399{width:11.097000px;}
._d_c00399{width:12.150000px;}
._8_c00399{width:13.527000px;}
._f_c00399{width:14.661000px;}
._5_c00399{width:16.362000px;}
._9_c00399{width:18.306000px;}
._1d_c00399{width:21.627000px;}
._1b_c00399{width:24.462000px;}
._1c_c00399{width:26.046000px;}
._10_c00399{width:28.107000px;}
._e_c00399{width:31.428000px;}
._1e_c00399{width:33.615000px;}
._3_c00399{width:36.045000px;}
._1f_c00399{width:418.362000px;}
.fc2_c00399{color:transparent;}
.fc1_c00399{color:rgb(128,128,128);}
.fc0_c00399{color:rgb(0,0,0);}
.fs5_c00399{font-size:48.000000px;}
.fs3_c00399{font-size:60.000000px;}
.fs4_c00399{font-size:69.000000px;}
.fs2_c00399{font-size:72.000000px;}
.fs1_c00399{font-size:78.000000px;}
.fs0_c00399{font-size:81.000000px;}
.y0_c00399{bottom:0.000000px;}
.y25_c00399{bottom:3.105000px;}
.y24_c00399{bottom:7.228369px;}
.y23_c00399{bottom:67.470000px;}
.y22_c00399{bottom:88.470000px;}
.y21_c00399{bottom:113.970000px;}
.y20_c00399{bottom:139.020000px;}
.y1f_c00399{bottom:162.720000px;}
.y1e_c00399{bottom:187.020000px;}
.y1d_c00399{bottom:211.920000px;}
.y1c_c00399{bottom:236.520000px;}
.y1b_c00399{bottom:260.220000px;}
.y1a_c00399{bottom:284.820000px;}
.y19_c00399{bottom:308.520000px;}
.y18_c00399{bottom:332.820000px;}
.y17_c00399{bottom:357.120000px;}
.y16_c00399{bottom:382.320000px;}
.y15_c00399{bottom:406.020000px;}
.y14_c00399{bottom:430.620000px;}
.y13_c00399{bottom:454.920000px;}
.y12_c00399{bottom:478.920000px;}
.y11_c00399{bottom:502.770000px;}
.y10_c00399{bottom:527.070000px;}
.yf_c00399{bottom:550.770000px;}
.ye_c00399{bottom:574.470000px;}
.yd_c00399{bottom:599.070000px;}
.yc_c00399{bottom:623.370000px;}
.yb_c00399{bottom:647.970000px;}
.ya_c00399{bottom:671.970000px;}
.y9_c00399{bottom:696.270000px;}
.y8_c00399{bottom:720.570000px;}
.y7_c00399{bottom:744.870000px;}
.y6_c00399{bottom:769.170000px;}
.y5_c00399{bottom:793.470000px;}
.y4_c00399{bottom:818.670000px;}
.y3_c00399{bottom:842.370000px;}
.y2_c00399{bottom:866.370000px;}
.y1_c00399{bottom:890.970000px;}
.h5_c00399{height:13.200073px;}
.h6_c00399{height:43.804688px;}
.h4_c00399{height:72.312000px;}
.h1_c00399{height:79.497070px;}
.h3_c00399{height:91.160156px;}
.h2_c00399{height:98.756836px;}
.h0_c00399{height:989.250000px;}
.w2_c00399{width:104.875500px;}
.w1_c00399{width:663.000000px;}
.w0_c00399{width:663.150000px;}
.x0_c00399{left:0.000000px;}
.x3_c00399{left:114.300000px;}
.x7_c00399{left:115.650000px;}
.x2_c00399{left:121.050000px;}
.x1_c00399{left:122.550000px;}
.x4_c00399{left:124.200000px;}
.x5_c00399{left:126.450000px;}
.x6_c00399{left:127.800000px;}
.x8_c00399{left:130.050000px;}
.x9_c00399{left:131.400000px;}
.xa_c00399{left:135.600000px;}
.xc_c00399{left:283.389267px;}
.xb_c00399{left:598.050000px;}
@media print{
.v0_c00399{vertical-align:0.000000pt;}
.ls2_c00399{letter-spacing:0.000000pt;}
.ls1_c00399{letter-spacing:11.866667pt;}
.ls0_c00399{letter-spacing:12.693333pt;}
.ws1_c00399{word-spacing:-18.000000pt;}
.ws0_c00399{word-spacing:-16.709333pt;}
.ws2_c00399{word-spacing:0.000000pt;}
._17_c00399{margin-left:-18.864000pt;}
._11_c00399{margin-left:-12.528000pt;}
._18_c00399{margin-left:-10.800000pt;}
._14_c00399{margin-left:-9.720000pt;}
._1a_c00399{margin-left:-8.640000pt;}
._16_c00399{margin-left:-7.560000pt;}
._19_c00399{margin-left:-6.120000pt;}
._12_c00399{margin-left:-5.040000pt;}
._13_c00399{margin-left:-3.744000pt;}
._15_c00399{margin-left:-2.448000pt;}
._c_c00399{margin-left:-0.936000pt;}
._7_c00399{width:1.368000pt;}
._6_c00399{width:2.664000pt;}
._0_c00399{width:3.960000pt;}
._4_c00399{width:5.112000pt;}
._a_c00399{width:6.192000pt;}
._1_c00399{width:7.200000pt;}
._b_c00399{width:8.712000pt;}
._2_c00399{width:9.864000pt;}
._d_c00399{width:10.800000pt;}
._8_c00399{width:12.024000pt;}
._f_c00399{width:13.032000pt;}
._5_c00399{width:14.544000pt;}
._9_c00399{width:16.272000pt;}
._1d_c00399{width:19.224000pt;}
._1b_c00399{width:21.744000pt;}
._1c_c00399{width:23.152000pt;}
._10_c00399{width:24.984000pt;}
._e_c00399{width:27.936000pt;}
._1e_c00399{width:29.880000pt;}
._3_c00399{width:32.040000pt;}
._1f_c00399{width:371.877333pt;}
.fs5_c00399{font-size:42.666667pt;}
.fs3_c00399{font-size:53.333333pt;}
.fs4_c00399{font-size:61.333333pt;}
.fs2_c00399{font-size:64.000000pt;}
.fs1_c00399{font-size:69.333333pt;}
.fs0_c00399{font-size:72.000000pt;}
.y0_c00399{bottom:0.000000pt;}
.y25_c00399{bottom:2.760000pt;}
.y24_c00399{bottom:6.425217pt;}
.y23_c00399{bottom:59.973333pt;}
.y22_c00399{bottom:78.640000pt;}
.y21_c00399{bottom:101.306667pt;}
.y20_c00399{bottom:123.573333pt;}
.y1f_c00399{bottom:144.640000pt;}
.y1e_c00399{bottom:166.240000pt;}
.y1d_c00399{bottom:188.373333pt;}
.y1c_c00399{bottom:210.240000pt;}
.y1b_c00399{bottom:231.306667pt;}
.y1a_c00399{bottom:253.173333pt;}
.y19_c00399{bottom:274.240000pt;}
.y18_c00399{bottom:295.840000pt;}
.y17_c00399{bottom:317.440000pt;}
.y16_c00399{bottom:339.840000pt;}
.y15_c00399{bottom:360.906667pt;}
.y14_c00399{bottom:382.773333pt;}
.y13_c00399{bottom:404.373333pt;}
.y12_c00399{bottom:425.706667pt;}
.y11_c00399{bottom:446.906667pt;}
.y10_c00399{bottom:468.506667pt;}
.yf_c00399{bottom:489.573333pt;}
.ye_c00399{bottom:510.640000pt;}
.yd_c00399{bottom:532.506667pt;}
.yc_c00399{bottom:554.106667pt;}
.yb_c00399{bottom:575.973333pt;}
.ya_c00399{bottom:597.306667pt;}
.y9_c00399{bottom:618.906667pt;}
.y8_c00399{bottom:640.506667pt;}
.y7_c00399{bottom:662.106667pt;}
.y6_c00399{bottom:683.706667pt;}
.y5_c00399{bottom:705.306667pt;}
.y4_c00399{bottom:727.706667pt;}
.y3_c00399{bottom:748.773333pt;}
.y2_c00399{bottom:770.106667pt;}
.y1_c00399{bottom:791.973333pt;}
.h5_c00399{height:11.733399pt;}
.h6_c00399{height:38.937500pt;}
.h4_c00399{height:64.277333pt;}
.h1_c00399{height:70.664062pt;}
.h3_c00399{height:81.031250pt;}
.h2_c00399{height:87.783854pt;}
.h0_c00399{height:879.333333pt;}
.w2_c00399{width:93.222667pt;}
.w1_c00399{width:589.333333pt;}
.w0_c00399{width:589.466667pt;}
.x0_c00399{left:0.000000pt;}
.x3_c00399{left:101.600000pt;}
.x7_c00399{left:102.800000pt;}
.x2_c00399{left:107.600000pt;}
.x1_c00399{left:108.933333pt;}
.x4_c00399{left:110.400000pt;}
.x5_c00399{left:112.400000pt;}
.x6_c00399{left:113.600000pt;}
.x8_c00399{left:115.600000pt;}
.x9_c00399{left:116.800000pt;}
.xa_c00399{left:120.533333pt;}
.xc_c00399{left:251.901571pt;}
.xb_c00399{left:531.600000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_57ffca45cc989610b6a59091.woff2')format("woff");}.ff1_c00400{font-family:ff1_c00400;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00400;src:url('chunks/assets/font_1d62bc2563d1c47de53981d7.woff2')format("woff");}.ff2_c00400{font-family:ff2_c00400;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00400;src:url('chunks/assets/font_a2715dd1b309f13be113935a.woff2')format("woff");}.ff3_c00400{font-family:ff3_c00400;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00400;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff4_c00400{font-family:ff4_c00400;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00400;src:url('chunks/assets/font_0db8672d401693f7613fbcb8.woff2')format("woff");}.ff5_c00400{font-family:ff5_c00400;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00400;src:url('chunks/assets/font_37bb160f40b7e729a2d969a7.woff2')format("woff");}.ff6_c00400{font-family:ff6_c00400;line-height:1.437000;font-style:normal;font-weight: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_c00400;src:url('chunks/assets/font_a2944bcc3a74e809316c170f.woff2')format("woff");}.ff7_c00400{font-family:ff7_c00400;line-height:1.437000;font-style:normal;font-weight: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_c00400;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff8_c00400{font-family:ff8_c00400;line-height:1.219238;font-style: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;}
.ls3_c00400{letter-spacing:0.000000px;}
.ls1_c00400{letter-spacing:11.520000px;}
.ls0_c00400{letter-spacing:22.350000px;}
.ls2_c00400{letter-spacing:37.950000px;}
.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.000000px;}
.ws0_c00400{word-spacing:-17.352000px;}
.ws2_c00400{word-spacing:-17.250000px;}
.ws3_c00400{word-spacing:0.000000px;}
._21_c00400{margin-left:-20.763000px;}
._b_c00400{margin-left:-16.380000px;}
._15_c00400{margin-left:-13.371000px;}
._4_c00400{margin-left:-11.445000px;}
._1a_c00400{margin-left:-9.231000px;}
._1d_c00400{margin-left:-7.662000px;}
._9_c00400{margin-left:-6.510000px;}
._1b_c00400{margin-left:-5.361000px;}
._0_c00400{margin-left:-4.305000px;}
._1_c00400{margin-left:-2.730000px;}
._2_c00400{margin-left:-1.680000px;}
._8_c00400{width:1.680000px;}
._5_c00400{width:2.835000px;}
._6_c00400{width:4.830000px;}
._7_c00400{width:5.880000px;}
._a_c00400{width:7.140000px;}
._3_c00400{width:9.135000px;}
._12_c00400{width:10.554000px;}
._e_c00400{width:11.961000px;}
._10_c00400{width:13.932000px;}
._d_c00400{width:15.354000px;}
._17_c00400{width:16.431000px;}
._f_c00400{width:17.916000px;}
._1c_c00400{width:19.821000px;}
._16_c00400{width:21.651000px;}
._11_c00400{width:23.766000px;}
._18_c00400{width:24.786000px;}
._19_c00400{width:26.247000px;}
._14_c00400{width:27.534000px;}
._1e_c00400{width:28.803000px;}
._13_c00400{width:32.190000px;}
._20_c00400{width:38.988000px;}
._1f_c00400{width:49.995000px;}
._c_c00400{width:147.630000px;}
._22_c00400{width:222.447000px;}
._23_c00400{width:237.189000px;}
._24_c00400{width:251.523000px;}
.fc2_c00400{color:transparent;}
.fc1_c00400{color:rgb(128,128,128);}
.fc0_c00400{color:rgb(0,0,0);}
.fs4_c00400{font-size:48.000000px;}
.fs3_c00400{font-size:69.000000px;}
.fs2_c00400{font-size:72.000000px;}
.fs1_c00400{font-size:81.000000px;}
.fs0_c00400{font-size:105.000000px;}
.y0_c00400{bottom:0.000000px;}
.y26_c00400{bottom:3.105000px;}
.y25_c00400{bottom:7.228363px;}
.y24_c00400{bottom:49.200000px;}
.y23_c00400{bottom:75.300000px;}
.y22_c00400{bottom:100.200000px;}
.y21_c00400{bottom:125.250000px;}
.y20_c00400{bottom:149.400000px;}
.y1f_c00400{bottom:173.400000px;}
.y1e_c00400{bottom:197.700000px;}
.y1d_c00400{bottom:222.300000px;}
.y1c_c00400{bottom:246.600000px;}
.y1b_c00400{bottom:271.050000px;}
.y1a_c00400{bottom:295.200000px;}
.y19_c00400{bottom:319.200000px;}
.y18_c00400{bottom:343.200000px;}
.y17_c00400{bottom:367.200000px;}
.y16_c00400{bottom:390.750000px;}
.y15_c00400{bottom:415.350000px;}
.y14_c00400{bottom:439.650000px;}
.y13_c00400{bottom:463.350000px;}
.y12_c00400{bottom:487.650000px;}
.y11_c00400{bottom:511.650000px;}
.y10_c00400{bottom:535.650000px;}
.yf_c00400{bottom:559.800000px;}
.ye_c00400{bottom:584.100000px;}
.yd_c00400{bottom:608.100000px;}
.yc_c00400{bottom:632.850000px;}
.yb_c00400{bottom:656.700000px;}
.ya_c00400{bottom:681.000000px;}
.y9_c00400{bottom:705.000000px;}
.y8_c00400{bottom:729.300000px;}
.y7_c00400{bottom:753.600000px;}
.y6_c00400{bottom:777.900000px;}
.y5_c00400{bottom:801.900000px;}
.y4_c00400{bottom:826.500000px;}
.y3_c00400{bottom:850.050000px;}
.y2_c00400{bottom:875.250000px;}
.y1_c00400{bottom:907.950000px;}
.h7_c00400{height:13.200074px;}
.h8_c00400{height:43.804688px;}
.h6_c00400{height:72.312000px;}
.h3_c00400{height:79.497070px;}
.h5_c00400{height:84.269531px;}
.h4_c00400{height:91.160156px;}
.h2_c00400{height:103.000488px;}
.h0_c00400{height:974.700000px;}
.h1_c00400{height:975.000000px;}
.w2_c00400{width:104.875500px;}
.w0_c00400{width:662.025000px;}
.w1_c00400{width:662.250000px;}
.x0_c00400{left:0.000000px;}
.x2_c00400{left:53.700000px;}
.x3_c00400{left:56.250000px;}
.x4_c00400{left:57.750000px;}
.x5_c00400{left:58.800000px;}
.x1_c00400{left:60.750000px;}
.x6_c00400{left:62.100000px;}
.x7_c00400{left:63.750000px;}
.x8_c00400{left:65.250000px;}
.xa_c00400{left:282.826767px;}
.x9_c00400{left:441.900000px;}
@media print{
.v0_c00400{vertical-align:0.000000pt;}
.ls3_c00400{letter-spacing:0.000000pt;}
.ls1_c00400{letter-spacing:10.240000pt;}
.ls0_c00400{letter-spacing:19.866667pt;}
.ls2_c00400{letter-spacing:33.733333pt;}
.ws1_c00400{word-spacing:-16.000000pt;}
.ws0_c00400{word-spacing:-15.424000pt;}
.ws2_c00400{word-spacing:-15.333333pt;}
.ws3_c00400{word-spacing:0.000000pt;}
._21_c00400{margin-left:-18.456000pt;}
._b_c00400{margin-left:-14.560000pt;}
._15_c00400{margin-left:-11.885333pt;}
._4_c00400{margin-left:-10.173333pt;}
._1a_c00400{margin-left:-8.205333pt;}
._1d_c00400{margin-left:-6.810667pt;}
._9_c00400{margin-left:-5.786667pt;}
._1b_c00400{margin-left:-4.765333pt;}
._0_c00400{margin-left:-3.826667pt;}
._1_c00400{margin-left:-2.426667pt;}
._2_c00400{margin-left:-1.493333pt;}
._8_c00400{width:1.493333pt;}
._5_c00400{width:2.520000pt;}
._6_c00400{width:4.293333pt;}
._7_c00400{width:5.226667pt;}
._a_c00400{width:6.346667pt;}
._3_c00400{width:8.120000pt;}
._12_c00400{width:9.381333pt;}
._e_c00400{width:10.632000pt;}
._10_c00400{width:12.384000pt;}
._d_c00400{width:13.648000pt;}
._17_c00400{width:14.605333pt;}
._f_c00400{width:15.925333pt;}
._1c_c00400{width:17.618667pt;}
._16_c00400{width:19.245333pt;}
._11_c00400{width:21.125333pt;}
._18_c00400{width:22.032000pt;}
._19_c00400{width:23.330667pt;}
._14_c00400{width:24.474667pt;}
._1e_c00400{width:25.602667pt;}
._13_c00400{width:28.613333pt;}
._20_c00400{width:34.656000pt;}
._1f_c00400{width:44.440000pt;}
._c_c00400{width:131.226667pt;}
._22_c00400{width:197.730667pt;}
._23_c00400{width:210.834667pt;}
._24_c00400{width:223.576000pt;}
.fs4_c00400{font-size:42.666667pt;}
.fs3_c00400{font-size:61.333333pt;}
.fs2_c00400{font-size:64.000000pt;}
.fs1_c00400{font-size:72.000000pt;}
.fs0_c00400{font-size:93.333333pt;}
.y0_c00400{bottom:0.000000pt;}
.y26_c00400{bottom:2.760000pt;}
.y25_c00400{bottom:6.425212pt;}
.y24_c00400{bottom:43.733333pt;}
.y23_c00400{bottom:66.933333pt;}
.y22_c00400{bottom:89.066667pt;}
.y21_c00400{bottom:111.333333pt;}
.y20_c00400{bottom:132.800000pt;}
.y1f_c00400{bottom:154.133333pt;}
.y1e_c00400{bottom:175.733333pt;}
.y1d_c00400{bottom:197.600000pt;}
.y1c_c00400{bottom:219.200000pt;}
.y1b_c00400{bottom:240.933333pt;}
.y1a_c00400{bottom:262.400000pt;}
.y19_c00400{bottom:283.733333pt;}
.y18_c00400{bottom:305.066667pt;}
.y17_c00400{bottom:326.400000pt;}
.y16_c00400{bottom:347.333333pt;}
.y15_c00400{bottom:369.200000pt;}
.y14_c00400{bottom:390.800000pt;}
.y13_c00400{bottom:411.866667pt;}
.y12_c00400{bottom:433.466667pt;}
.y11_c00400{bottom:454.800000pt;}
.y10_c00400{bottom:476.133333pt;}
.yf_c00400{bottom:497.600000pt;}
.ye_c00400{bottom:519.200000pt;}
.yd_c00400{bottom:540.533333pt;}
.yc_c00400{bottom:562.533333pt;}
.yb_c00400{bottom:583.733333pt;}
.ya_c00400{bottom:605.333333pt;}
.y9_c00400{bottom:626.666667pt;}
.y8_c00400{bottom:648.266667pt;}
.y7_c00400{bottom:669.866667pt;}
.y6_c00400{bottom:691.466667pt;}
.y5_c00400{bottom:712.800000pt;}
.y4_c00400{bottom:734.666667pt;}
.y3_c00400{bottom:755.600000pt;}
.y2_c00400{bottom:778.000000pt;}
.y1_c00400{bottom:807.066667pt;}
.h7_c00400{height:11.733399pt;}
.h8_c00400{height:38.937500pt;}
.h6_c00400{height:64.277333pt;}
.h3_c00400{height:70.664062pt;}
.h5_c00400{height:74.906250pt;}
.h4_c00400{height:81.031250pt;}
.h2_c00400{height:91.555990pt;}
.h0_c00400{height:866.400000pt;}
.h1_c00400{height:866.666667pt;}
.w2_c00400{width:93.222667pt;}
.w0_c00400{width:588.466667pt;}
.w1_c00400{width:588.666667pt;}
.x0_c00400{left:0.000000pt;}
.x2_c00400{left:47.733333pt;}
.x3_c00400{left:50.000000pt;}
.x4_c00400{left:51.333333pt;}
.x5_c00400{left:52.266667pt;}
.x1_c00400{left:54.000000pt;}
.x6_c00400{left:55.200000pt;}
.x7_c00400{left:56.666667pt;}
.x8_c00400{left:58.000000pt;}
.xa_c00400{left:251.401571pt;}
.x9_c00400{left:392.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_fc3c9c59cb0bf50521e917d6.woff2')format("woff");}.ff1_c00401{font-family:ff1_c00401;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00401;src:url('chunks/assets/font_b8d1476aefae5492de764388.woff2')format("woff");}.ff2_c00401{font-family:ff2_c00401;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00401;src:url('chunks/assets/font_46e7715d0c753d0d4c46c82b.woff2')format("woff");}.ff3_c00401{font-family:ff3_c00401;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00401;src:url('chunks/assets/font_1dd36169d16279af7fb1bccb.woff2')format("woff");}.ff4_c00401{font-family:ff4_c00401;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00401;src:url('chunks/assets/font_67d4bb07b2efd104dbf3d45f.woff2')format("woff");}.ff5_c00401{font-family:ff5_c00401;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00401;src:url('chunks/assets/font_2dd4b5c25657edc686697b6d.woff2')format("woff");}.ff6_c00401{font-family:ff6_c00401;line-height:1.437000;font-style:normal;font-weight: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_c00401;src:url('chunks/assets/font_4fd8b00c24e40e360fb055e7.woff2')format("woff");}.ff7_c00401{font-family:ff7_c00401;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00401;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff8_c00401{font-family:ff8_c00401;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00401{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00401{vertical-align:0.000000px;}
.v1_c00401{vertical-align:37.800000px;}
.ls2_c00401{letter-spacing:0.000000px;}
.ls0_c00401{letter-spacing:13.350000px;}
.ls1_c00401{letter-spacing:35.550000px;}
.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:-59.184000px;}
.ws3_c00401{word-spacing:-20.250000px;}
.ws2_c00401{word-spacing:-17.250000px;}
.ws0_c00401{word-spacing:-2.175000px;}
.ws4_c00401{word-spacing:0.000000px;}
._1d_c00401{margin-left:-26.622000px;}
._1b_c00401{margin-left:-19.650000px;}
._2_c00401{margin-left:-15.810000px;}
._1c_c00401{margin-left:-14.601000px;}
._22_c00401{margin-left:-13.230000px;}
._7_c00401{margin-left:-11.745000px;}
._5_c00401{margin-left:-10.530000px;}
._0_c00401{margin-left:-9.450000px;}
._11_c00401{margin-left:-7.884000px;}
._14_c00401{margin-left:-6.813000px;}
._8_c00401{margin-left:-4.923000px;}
._1_c00401{margin-left:-3.825000px;}
._15_c00401{margin-left:-2.691000px;}
._10_c00401{margin-left:-1.377000px;}
._12_c00401{width:1.089000px;}
._c_c00401{width:2.349000px;}
._13_c00401{width:3.699000px;}
._d_c00401{width:4.860000px;}
._b_c00401{width:5.994000px;}
._f_c00401{width:7.452000px;}
._e_c00401{width:9.153000px;}
._1f_c00401{width:10.224000px;}
._16_c00401{width:11.286000px;}
._4_c00401{width:12.735000px;}
._a_c00401{width:14.904000px;}
._1a_c00401{width:16.515000px;}
._18_c00401{width:18.783000px;}
._21_c00401{width:19.824000px;}
._3_c00401{width:22.962000px;}
._20_c00401{width:26.424000px;}
._19_c00401{width:31.806000px;}
._23_c00401{width:38.058000px;}
._6_c00401{width:40.338000px;}
._17_c00401{width:281.322000px;}
._9_c00401{width:459.252000px;}
._1e_c00401{width:489.468000px;}
.fc2_c00401{color:transparent;}
.fc1_c00401{color:rgb(128,128,128);}
.fc0_c00401{color:rgb(0,0,0);}
.fs6_c00401{font-size:48.000000px;}
.fs5_c00401{font-size:51.000000px;}
.fs3_c00401{font-size:69.000000px;}
.fs2_c00401{font-size:72.000000px;}
.fs0_c00401{font-size:75.000000px;}
.fs1_c00401{font-size:81.000000px;}
.fs4_c00401{font-size:84.000000px;}
.y0_c00401{bottom:0.000000px;}
.y24_c00401{bottom:3.105000px;}
.y23_c00401{bottom:7.228357px;}
.y22_c00401{bottom:57.330000px;}
.y21_c00401{bottom:79.980000px;}
.y20_c00401{bottom:105.030000px;}
.y1f_c00401{bottom:129.330000px;}
.y1e_c00401{bottom:153.180000px;}
.y1d_c00401{bottom:177.630000px;}
.y1c_c00401{bottom:201.930000px;}
.y1b_c00401{bottom:226.230000px;}
.y1a_c00401{bottom:251.130000px;}
.y19_c00401{bottom:275.430000px;}
.y18_c00401{bottom:299.430000px;}
.y17_c00401{bottom:333.780000px;}
.y16_c00401{bottom:362.580000px;}
.y15_c00401{bottom:391.830000px;}
.y14_c00401{bottom:418.230000px;}
.y13_c00401{bottom:442.530000px;}
.y12_c00401{bottom:466.830000px;}
.y11_c00401{bottom:490.380000px;}
.y10_c00401{bottom:514.080000px;}
.yf_c00401{bottom:537.930000px;}
.ye_c00401{bottom:561.930000px;}
.yd_c00401{bottom:586.530000px;}
.yc_c00401{bottom:610.830000px;}
.yb_c00401{bottom:635.130000px;}
.ya_c00401{bottom:659.130000px;}
.y9_c00401{bottom:683.130000px;}
.y8_c00401{bottom:707.430000px;}
.y7_c00401{bottom:731.730000px;}
.y6_c00401{bottom:757.080000px;}
.y5_c00401{bottom:780.030000px;}
.y4_c00401{bottom:804.630000px;}
.y3_c00401{bottom:828.330000px;}
.y2_c00401{bottom:852.630000px;}
.y1_c00401{bottom:867.030000px;}
.h7_c00401{height:13.200074px;}
.h8_c00401{height:43.804688px;}
.h6_c00401{height:72.312000px;}
.h3_c00401{height:79.497070px;}
.h5_c00401{height:82.400391px;}
.h4_c00401{height:82.441406px;}
.h2_c00401{height:122.069531px;}
.h0_c00401{height:984.450000px;}
.h1_c00401{height:984.750000px;}
.w2_c00401{width:104.875500px;}
.w0_c00401{width:659.850000px;}
.w1_c00401{width:660.000000px;}
.x0_c00401{left:0.000000px;}
.x1_c00401{left:27.750000px;}
.x3_c00401{left:29.400000px;}
.x4_c00401{left:30.750000px;}
.xb_c00401{left:108.300000px;}
.x10_c00401{left:109.950000px;}
.x9_c00401{left:112.800000px;}
.x8_c00401{left:113.850000px;}
.x7_c00401{left:115.200000px;}
.x6_c00401{left:116.550000px;}
.x5_c00401{left:117.750000px;}
.x2_c00401{left:118.800000px;}
.xa_c00401{left:137.400000px;}
.xc_c00401{left:237.900000px;}
.xe_c00401{left:243.900000px;}
.xd_c00401{left:244.950000px;}
.xf_c00401{left:248.100000px;}
.x12_c00401{left:281.739258px;}
.x11_c00401{left:579.450000px;}
@media print{
.v0_c00401{vertical-align:0.000000pt;}
.v1_c00401{vertical-align:33.600000pt;}
.ls2_c00401{letter-spacing:0.000000pt;}
.ls0_c00401{letter-spacing:11.866667pt;}
.ls1_c00401{letter-spacing:31.600000pt;}
.ws1_c00401{word-spacing:-52.608000pt;}
.ws3_c00401{word-spacing:-18.000000pt;}
.ws2_c00401{word-spacing:-15.333333pt;}
.ws0_c00401{word-spacing:-1.933333pt;}
.ws4_c00401{word-spacing:0.000000pt;}
._1d_c00401{margin-left:-23.664000pt;}
._1b_c00401{margin-left:-17.466667pt;}
._2_c00401{margin-left:-14.053333pt;}
._1c_c00401{margin-left:-12.978667pt;}
._22_c00401{margin-left:-11.760000pt;}
._7_c00401{margin-left:-10.440000pt;}
._5_c00401{margin-left:-9.360000pt;}
._0_c00401{margin-left:-8.400000pt;}
._11_c00401{margin-left:-7.008000pt;}
._14_c00401{margin-left:-6.056000pt;}
._8_c00401{margin-left:-4.376000pt;}
._1_c00401{margin-left:-3.400000pt;}
._15_c00401{margin-left:-2.392000pt;}
._10_c00401{margin-left:-1.224000pt;}
._12_c00401{width:0.968000pt;}
._c_c00401{width:2.088000pt;}
._13_c00401{width:3.288000pt;}
._d_c00401{width:4.320000pt;}
._b_c00401{width:5.328000pt;}
._f_c00401{width:6.624000pt;}
._e_c00401{width:8.136000pt;}
._1f_c00401{width:9.088000pt;}
._16_c00401{width:10.032000pt;}
._4_c00401{width:11.320000pt;}
._a_c00401{width:13.248000pt;}
._1a_c00401{width:14.680000pt;}
._18_c00401{width:16.696000pt;}
._21_c00401{width:17.621333pt;}
._3_c00401{width:20.410667pt;}
._20_c00401{width:23.488000pt;}
._19_c00401{width:28.272000pt;}
._23_c00401{width:33.829333pt;}
._6_c00401{width:35.856000pt;}
._17_c00401{width:250.064000pt;}
._9_c00401{width:408.224000pt;}
._1e_c00401{width:435.082667pt;}
.fs6_c00401{font-size:42.666667pt;}
.fs5_c00401{font-size:45.333333pt;}
.fs3_c00401{font-size:61.333333pt;}
.fs2_c00401{font-size:64.000000pt;}
.fs0_c00401{font-size:66.666667pt;}
.fs1_c00401{font-size:72.000000pt;}
.fs4_c00401{font-size:74.666667pt;}
.y0_c00401{bottom:0.000000pt;}
.y24_c00401{bottom:2.760000pt;}
.y23_c00401{bottom:6.425206pt;}
.y22_c00401{bottom:50.960000pt;}
.y21_c00401{bottom:71.093333pt;}
.y20_c00401{bottom:93.360000pt;}
.y1f_c00401{bottom:114.960000pt;}
.y1e_c00401{bottom:136.160000pt;}
.y1d_c00401{bottom:157.893333pt;}
.y1c_c00401{bottom:179.493333pt;}
.y1b_c00401{bottom:201.093333pt;}
.y1a_c00401{bottom:223.226667pt;}
.y19_c00401{bottom:244.826667pt;}
.y18_c00401{bottom:266.160000pt;}
.y17_c00401{bottom:296.693333pt;}
.y16_c00401{bottom:322.293333pt;}
.y15_c00401{bottom:348.293333pt;}
.y14_c00401{bottom:371.760000pt;}
.y13_c00401{bottom:393.360000pt;}
.y12_c00401{bottom:414.960000pt;}
.y11_c00401{bottom:435.893333pt;}
.y10_c00401{bottom:456.960000pt;}
.yf_c00401{bottom:478.160000pt;}
.ye_c00401{bottom:499.493333pt;}
.yd_c00401{bottom:521.360000pt;}
.yc_c00401{bottom:542.960000pt;}
.yb_c00401{bottom:564.560000pt;}
.ya_c00401{bottom:585.893333pt;}
.y9_c00401{bottom:607.226667pt;}
.y8_c00401{bottom:628.826667pt;}
.y7_c00401{bottom:650.426667pt;}
.y6_c00401{bottom:672.960000pt;}
.y5_c00401{bottom:693.360000pt;}
.y4_c00401{bottom:715.226667pt;}
.y3_c00401{bottom:736.293333pt;}
.y2_c00401{bottom:757.893333pt;}
.y1_c00401{bottom:770.693333pt;}
.h7_c00401{height:11.733399pt;}
.h8_c00401{height:38.937500pt;}
.h6_c00401{height:64.277333pt;}
.h3_c00401{height:70.664062pt;}
.h5_c00401{height:73.244792pt;}
.h4_c00401{height:73.281250pt;}
.h2_c00401{height:108.506250pt;}
.h0_c00401{height:875.066667pt;}
.h1_c00401{height:875.333333pt;}
.w2_c00401{width:93.222667pt;}
.w0_c00401{width:586.533333pt;}
.w1_c00401{width:586.666667pt;}
.x0_c00401{left:0.000000pt;}
.x1_c00401{left:24.666667pt;}
.x3_c00401{left:26.133333pt;}
.x4_c00401{left:27.333333pt;}
.xb_c00401{left:96.266667pt;}
.x10_c00401{left:97.733333pt;}
.x9_c00401{left:100.266667pt;}
.x8_c00401{left:101.200000pt;}
.x7_c00401{left:102.400000pt;}
.x6_c00401{left:103.600000pt;}
.x5_c00401{left:104.666667pt;}
.x2_c00401{left:105.600000pt;}
.xa_c00401{left:122.133333pt;}
.xc_c00401{left:211.466667pt;}
.xe_c00401{left:216.800000pt;}
.xd_c00401{left:217.733333pt;}
.xf_c00401{left:220.533333pt;}
.x12_c00401{left:250.434896pt;}
.x11_c00401{left:515.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_12919ea7784a0894febff983.woff2')format("woff");}.ff1_c00402{font-family:ff1_c00402;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00402;src:url('chunks/assets/font_dde7eb11bd0a183acfe70a45.woff2')format("woff");}.ff2_c00402{font-family:ff2_c00402;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00402;src:url('chunks/assets/font_cb89a8b87dbed755ca1415a3.woff2')format("woff");}.ff3_c00402{font-family:ff3_c00402;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00402;src:url('chunks/assets/font_66cfe3d7b2855dc1a71dfde9.woff2')format("woff");}.ff4_c00402{font-family:ff4_c00402;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00402;src:url('chunks/assets/font_33c0dba8a738006999092ac7.woff2')format("woff");}.ff5_c00402{font-family:ff5_c00402;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00402;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c00402{font-family:ff6_c00402;line-height:1.219238;font-style: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;}
.ls4_c00402{letter-spacing:0.000000px;}
.ls2_c00402{letter-spacing:3.000000px;}
.ls0_c00402{letter-spacing:5.280000px;}
.ls3_c00402{letter-spacing:6.000000px;}
.ls1_c00402{letter-spacing:14.802000px;}
.sc__c00402{text-shadow:none;}
.sc0_c00402{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00402{-webkit-text-stroke:0px transparent;}
.sc0_c00402{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00402{word-spacing:-17.352000px;}
.ws1_c00402{word-spacing:0.000000px;}
._1f_c00402{margin-left:-16.362000px;}
._1d_c00402{margin-left:-15.147000px;}
._1e_c00402{margin-left:-11.859000px;}
._7_c00402{margin-left:-9.570000px;}
._1a_c00402{margin-left:-8.211000px;}
._4_c00402{margin-left:-6.990000px;}
._f_c00402{margin-left:-5.979000px;}
._6_c00402{margin-left:-4.794000px;}
._5_c00402{margin-left:-2.856000px;}
._2_c00402{margin-left:-1.452000px;}
._1_c00402{width:1.428000px;}
._0_c00402{width:3.366000px;}
._8_c00402{width:4.512000px;}
._a_c00402{width:5.703000px;}
._3_c00402{width:6.888000px;}
._c_c00402{width:8.445000px;}
._9_c00402{width:9.618000px;}
._b_c00402{width:10.854000px;}
._15_c00402{width:12.114000px;}
._e_c00402{width:13.146000px;}
._11_c00402{width:14.583000px;}
._d_c00402{width:15.606000px;}
._10_c00402{width:16.941000px;}
._1b_c00402{width:18.129000px;}
._16_c00402{width:19.173000px;}
._19_c00402{width:24.825000px;}
._13_c00402{width:27.093000px;}
._18_c00402{width:29.100000px;}
._14_c00402{width:32.226000px;}
._17_c00402{width:45.972000px;}
._12_c00402{width:152.160000px;}
._20_c00402{width:297.741000px;}
._1c_c00402{width:313.890000px;}
.fc2_c00402{color:transparent;}
.fc1_c00402{color:rgb(128,128,128);}
.fc0_c00402{color:rgb(0,0,0);}
.fs7_c00402{font-size:48.000000px;}
.fs6_c00402{font-size:57.000000px;}
.fs4_c00402{font-size:72.000000px;}
.fs3_c00402{font-size:75.000000px;}
.fs5_c00402{font-size:78.000000px;}
.fs2_c00402{font-size:81.000000px;}
.fs1_c00402{font-size:87.000000px;}
.fs0_c00402{font-size:102.000000px;}
.y0_c00402{bottom:0.000000px;}
.y26_c00402{bottom:3.105000px;}
.y25_c00402{bottom:7.228371px;}
.y24_c00402{bottom:60.165000px;}
.y23_c00402{bottom:86.415000px;}
.y22_c00402{bottom:111.015000px;}
.y21_c00402{bottom:136.065000px;}
.y20_c00402{bottom:160.365000px;}
.y1f_c00402{bottom:183.915000px;}
.y1e_c00402{bottom:209.265000px;}
.y1d_c00402{bottom:233.865000px;}
.y1c_c00402{bottom:256.965000px;}
.y1b_c00402{bottom:282.465000px;}
.y1a_c00402{bottom:306.915000px;}
.y19_c00402{bottom:330.165000px;}
.y18_c00402{bottom:354.165000px;}
.y17_c00402{bottom:379.065000px;}
.y16_c00402{bottom:402.765000px;}
.y15_c00402{bottom:427.365000px;}
.y14_c00402{bottom:451.365000px;}
.y13_c00402{bottom:475.665000px;}
.y12_c00402{bottom:499.815000px;}
.y11_c00402{bottom:524.115000px;}
.y10_c00402{bottom:547.815000px;}
.yf_c00402{bottom:571.815000px;}
.ye_c00402{bottom:595.665000px;}
.yd_c00402{bottom:619.665000px;}
.yc_c00402{bottom:643.665000px;}
.yb_c00402{bottom:667.665000px;}
.ya_c00402{bottom:691.665000px;}
.y9_c00402{bottom:715.815000px;}
.y8_c00402{bottom:740.265000px;}
.y7_c00402{bottom:764.115000px;}
.y6_c00402{bottom:788.415000px;}
.y5_c00402{bottom:811.665000px;}
.y4_c00402{bottom:837.465000px;}
.y3_c00402{bottom:861.765000px;}
.y2_c00402{bottom:885.615000px;}
.y1_c00402{bottom:921.015000px;}
.h6_c00402{height:13.200074px;}
.h7_c00402{height:43.804688px;}
.h3_c00402{height:79.497070px;}
.h4_c00402{height:84.269531px;}
.h5_c00402{height:98.756836px;}
.h2_c00402{height:100.057617px;}
.h0_c00402{height:989.025000px;}
.h1_c00402{height:989.250000px;}
.w1_c00402{width:104.875500px;}
.w0_c00402{width:672.000000px;}
.x0_c00402{left:0.000000px;}
.x3_c00402{left:56.250000px;}
.x2_c00402{left:57.750000px;}
.x4_c00402{left:58.800000px;}
.x1_c00402{left:60.000000px;}
.x5_c00402{left:61.050000px;}
.x6_c00402{left:62.100000px;}
.x7_c00402{left:63.450000px;}
.x8_c00402{left:64.800000px;}
.xa_c00402{left:287.814240px;}
.x9_c00402{left:397.950000px;}
@media print{
.v0_c00402{vertical-align:0.000000pt;}
.ls4_c00402{letter-spacing:0.000000pt;}
.ls2_c00402{letter-spacing:2.666667pt;}
.ls0_c00402{letter-spacing:4.693333pt;}
.ls3_c00402{letter-spacing:5.333333pt;}
.ls1_c00402{letter-spacing:13.157333pt;}
.ws0_c00402{word-spacing:-15.424000pt;}
.ws1_c00402{word-spacing:0.000000pt;}
._1f_c00402{margin-left:-14.544000pt;}
._1d_c00402{margin-left:-13.464000pt;}
._1e_c00402{margin-left:-10.541333pt;}
._7_c00402{margin-left:-8.506667pt;}
._1a_c00402{margin-left:-7.298667pt;}
._4_c00402{margin-left:-6.213333pt;}
._f_c00402{margin-left:-5.314667pt;}
._6_c00402{margin-left:-4.261333pt;}
._5_c00402{margin-left:-2.538667pt;}
._2_c00402{margin-left:-1.290667pt;}
._1_c00402{width:1.269333pt;}
._0_c00402{width:2.992000pt;}
._8_c00402{width:4.010667pt;}
._a_c00402{width:5.069333pt;}
._3_c00402{width:6.122667pt;}
._c_c00402{width:7.506667pt;}
._9_c00402{width:8.549333pt;}
._b_c00402{width:9.648000pt;}
._15_c00402{width:10.768000pt;}
._e_c00402{width:11.685333pt;}
._11_c00402{width:12.962667pt;}
._d_c00402{width:13.872000pt;}
._10_c00402{width:15.058667pt;}
._1b_c00402{width:16.114667pt;}
._16_c00402{width:17.042667pt;}
._19_c00402{width:22.066667pt;}
._13_c00402{width:24.082667pt;}
._18_c00402{width:25.866667pt;}
._14_c00402{width:28.645333pt;}
._17_c00402{width:40.864000pt;}
._12_c00402{width:135.253333pt;}
._20_c00402{width:264.658667pt;}
._1c_c00402{width:279.013333pt;}
.fs7_c00402{font-size:42.666667pt;}
.fs6_c00402{font-size:50.666667pt;}
.fs4_c00402{font-size:64.000000pt;}
.fs3_c00402{font-size:66.666667pt;}
.fs5_c00402{font-size:69.333333pt;}
.fs2_c00402{font-size:72.000000pt;}
.fs1_c00402{font-size:77.333333pt;}
.fs0_c00402{font-size:90.666667pt;}
.y0_c00402{bottom:0.000000pt;}
.y26_c00402{bottom:2.760000pt;}
.y25_c00402{bottom:6.425219pt;}
.y24_c00402{bottom:53.480000pt;}
.y23_c00402{bottom:76.813333pt;}
.y22_c00402{bottom:98.680000pt;}
.y21_c00402{bottom:120.946667pt;}
.y20_c00402{bottom:142.546667pt;}
.y1f_c00402{bottom:163.480000pt;}
.y1e_c00402{bottom:186.013333pt;}
.y1d_c00402{bottom:207.880000pt;}
.y1c_c00402{bottom:228.413333pt;}
.y1b_c00402{bottom:251.080000pt;}
.y1a_c00402{bottom:272.813333pt;}
.y19_c00402{bottom:293.480000pt;}
.y18_c00402{bottom:314.813333pt;}
.y17_c00402{bottom:336.946667pt;}
.y16_c00402{bottom:358.013333pt;}
.y15_c00402{bottom:379.880000pt;}
.y14_c00402{bottom:401.213333pt;}
.y13_c00402{bottom:422.813333pt;}
.y12_c00402{bottom:444.280000pt;}
.y11_c00402{bottom:465.880000pt;}
.y10_c00402{bottom:486.946667pt;}
.yf_c00402{bottom:508.280000pt;}
.ye_c00402{bottom:529.480000pt;}
.yd_c00402{bottom:550.813333pt;}
.yc_c00402{bottom:572.146667pt;}
.yb_c00402{bottom:593.480000pt;}
.ya_c00402{bottom:614.813333pt;}
.y9_c00402{bottom:636.280000pt;}
.y8_c00402{bottom:658.013333pt;}
.y7_c00402{bottom:679.213333pt;}
.y6_c00402{bottom:700.813333pt;}
.y5_c00402{bottom:721.480000pt;}
.y4_c00402{bottom:744.413333pt;}
.y3_c00402{bottom:766.013333pt;}
.y2_c00402{bottom:787.213333pt;}
.y1_c00402{bottom:818.680000pt;}
.h6_c00402{height:11.733399pt;}
.h7_c00402{height:38.937500pt;}
.h3_c00402{height:70.664062pt;}
.h4_c00402{height:74.906250pt;}
.h5_c00402{height:87.783854pt;}
.h2_c00402{height:88.940104pt;}
.h0_c00402{height:879.133333pt;}
.h1_c00402{height:879.333333pt;}
.w1_c00402{width:93.222667pt;}
.w0_c00402{width:597.333333pt;}
.x0_c00402{left:0.000000pt;}
.x3_c00402{left:50.000000pt;}
.x2_c00402{left:51.333333pt;}
.x4_c00402{left:52.266667pt;}
.x1_c00402{left:53.333333pt;}
.x5_c00402{left:54.266667pt;}
.x6_c00402{left:55.200000pt;}
.x7_c00402{left:56.400000pt;}
.x8_c00402{left:57.600000pt;}
.xa_c00402{left:255.834880pt;}
.x9_c00402{left:353.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_2d951de4c8458ce2aa3c6869.woff2')format("woff");}.ff1_c00403{font-family:ff1_c00403;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00403;src:url('chunks/assets/font_d475c26ada49c7fc05a60674.woff2')format("woff");}.ff2_c00403{font-family:ff2_c00403;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00403;src:url('chunks/assets/font_21a9a96696820884308511ff.woff2')format("woff");}.ff3_c00403{font-family:ff3_c00403;line-height:1.311035;font-style:normal;font-weight:normal;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_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff4_c00403{font-family:ff4_c00403;line-height:1.219238;font-style: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;}
.ls1_c00403{letter-spacing:-6.000000px;}
.ls0_c00403{letter-spacing:0.000000px;}
.sc__c00403{text-shadow:none;}
.sc0_c00403{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00403{-webkit-text-stroke:0px transparent;}
.sc0_c00403{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00403{word-spacing:-17.352000px;}
.ws1_c00403{word-spacing:0.000000px;}
._1b_c00403{margin-left:-27.216000px;}
._17_c00403{margin-left:-18.405000px;}
._18_c00403{margin-left:-15.768000px;}
._19_c00403{margin-left:-13.329000px;}
._12_c00403{margin-left:-11.556000px;}
._11_c00403{margin-left:-10.422000px;}
._0_c00403{margin-left:-9.108000px;}
._22_c00403{margin-left:-7.872000px;}
._1_c00403{margin-left:-6.831000px;}
._15_c00403{margin-left:-5.769000px;}
._2_c00403{margin-left:-4.554000px;}
._5_c00403{margin-left:-2.871000px;}
._4_c00403{margin-left:-1.188000px;}
._d_c00403{width:1.458000px;}
._c_c00403{width:3.096000px;}
._a_c00403{width:4.455000px;}
._7_c00403{width:5.904000px;}
._b_c00403{width:6.921000px;}
._f_c00403{width:7.929000px;}
._10_c00403{width:9.639000px;}
._e_c00403{width:10.719000px;}
._9_c00403{width:11.745000px;}
._25_c00403{width:12.801000px;}
._8_c00403{width:14.010000px;}
._23_c00403{width:15.192000px;}
._13_c00403{width:16.425000px;}
._1f_c00403{width:17.541000px;}
._3_c00403{width:18.711000px;}
._20_c00403{width:21.285000px;}
._26_c00403{width:25.953000px;}
._1e_c00403{width:33.021000px;}
._24_c00403{width:34.515000px;}
._1d_c00403{width:46.278000px;}
._1a_c00403{width:69.729000px;}
._6_c00403{width:114.987000px;}
._16_c00403{width:223.263000px;}
._21_c00403{width:284.325000px;}
._1c_c00403{width:328.617000px;}
._14_c00403{width:499.770000px;}
.fc2_c00403{color:transparent;}
.fc1_c00403{color:rgb(128,128,128);}
.fc0_c00403{color:rgb(0,0,0);}
.fs5_c00403{font-size:48.000000px;}
.fs2_c00403{font-size:72.000000px;}
.fs1_c00403{font-size:81.000000px;}
.fs3_c00403{font-size:93.000000px;}
.fs0_c00403{font-size:99.000000px;}
.fs4_c00403{font-size:120.000000px;}
.y0_c00403{bottom:0.000000px;}
.y25_c00403{bottom:3.105000px;}
.y24_c00403{bottom:7.228369px;}
.y23_c00403{bottom:84.420000px;}
.y22_c00403{bottom:110.370000px;}
.y21_c00403{bottom:134.370000px;}
.y20_c00403{bottom:159.270000px;}
.y1f_c00403{bottom:183.270000px;}
.y1e_c00403{bottom:207.270000px;}
.y1d_c00403{bottom:231.570000px;}
.y1c_c00403{bottom:255.870000px;}
.y1b_c00403{bottom:280.470000px;}
.y1a_c00403{bottom:304.770000px;}
.y19_c00403{bottom:328.770000px;}
.y18_c00403{bottom:353.370000px;}
.y17_c00403{bottom:377.370000px;}
.y16_c00403{bottom:402.270000px;}
.y15_c00403{bottom:426.270000px;}
.y14_c00403{bottom:450.270000px;}
.y13_c00403{bottom:474.420000px;}
.y12_c00403{bottom:498.420000px;}
.y11_c00403{bottom:522.120000px;}
.y10_c00403{bottom:545.970000px;}
.yf_c00403{bottom:569.970000px;}
.ye_c00403{bottom:592.920000px;}
.yd_c00403{bottom:618.570000px;}
.yc_c00403{bottom:643.170000px;}
.yb_c00403{bottom:667.620000px;}
.ya_c00403{bottom:691.770000px;}
.y9_c00403{bottom:715.170000px;}
.y8_c00403{bottom:740.370000px;}
.y7_c00403{bottom:764.070000px;}
.y6_c00403{bottom:788.370000px;}
.y5_c00403{bottom:812.070000px;}
.y4_c00403{bottom:836.970000px;}
.y3_c00403{bottom:860.970000px;}
.y2_c00403{bottom:885.870000px;}
.y1_c00403{bottom:920.070000px;}
.h6_c00403{height:13.200073px;}
.h7_c00403{height:43.804688px;}
.h3_c00403{height:79.497070px;}
.h2_c00403{height:84.269531px;}
.h4_c00403{height:93.726562px;}
.h1_c00403{height:115.870605px;}
.h5_c00403{height:120.937500px;}
.h0_c00403{height:989.250000px;}
.w2_c00403{width:104.875500px;}
.w1_c00403{width:663.000000px;}
.w0_c00403{width:663.150000px;}
.x0_c00403{left:0.000000px;}
.xa_c00403{left:13.200000px;}
.x6_c00403{left:19.950000px;}
.x7_c00403{left:63.750000px;}
.x9_c00403{left:104.250000px;}
.x2_c00403{left:105.300000px;}
.x3_c00403{left:106.950000px;}
.x4_c00403{left:108.000000px;}
.x5_c00403{left:109.350000px;}
.x8_c00403{left:110.400000px;}
.x1_c00403{left:208.200000px;}
.xb_c00403{left:283.389267px;}
@media print{
.v0_c00403{vertical-align:0.000000pt;}
.ls1_c00403{letter-spacing:-5.333333pt;}
.ls0_c00403{letter-spacing:0.000000pt;}
.ws0_c00403{word-spacing:-15.424000pt;}
.ws1_c00403{word-spacing:0.000000pt;}
._1b_c00403{margin-left:-24.192000pt;}
._17_c00403{margin-left:-16.360000pt;}
._18_c00403{margin-left:-14.016000pt;}
._19_c00403{margin-left:-11.848000pt;}
._12_c00403{margin-left:-10.272000pt;}
._11_c00403{margin-left:-9.264000pt;}
._0_c00403{margin-left:-8.096000pt;}
._22_c00403{margin-left:-6.997333pt;}
._1_c00403{margin-left:-6.072000pt;}
._15_c00403{margin-left:-5.128000pt;}
._2_c00403{margin-left:-4.048000pt;}
._5_c00403{margin-left:-2.552000pt;}
._4_c00403{margin-left:-1.056000pt;}
._d_c00403{width:1.296000pt;}
._c_c00403{width:2.752000pt;}
._a_c00403{width:3.960000pt;}
._7_c00403{width:5.248000pt;}
._b_c00403{width:6.152000pt;}
._f_c00403{width:7.048000pt;}
._10_c00403{width:8.568000pt;}
._e_c00403{width:9.528000pt;}
._9_c00403{width:10.440000pt;}
._25_c00403{width:11.378667pt;}
._8_c00403{width:12.453333pt;}
._23_c00403{width:13.504000pt;}
._13_c00403{width:14.600000pt;}
._1f_c00403{width:15.592000pt;}
._3_c00403{width:16.632000pt;}
._20_c00403{width:18.920000pt;}
._26_c00403{width:23.069333pt;}
._1e_c00403{width:29.352000pt;}
._24_c00403{width:30.680000pt;}
._1d_c00403{width:41.136000pt;}
._1a_c00403{width:61.981333pt;}
._6_c00403{width:102.210667pt;}
._16_c00403{width:198.456000pt;}
._21_c00403{width:252.733333pt;}
._1c_c00403{width:292.104000pt;}
._14_c00403{width:444.240000pt;}
.fs5_c00403{font-size:42.666667pt;}
.fs2_c00403{font-size:64.000000pt;}
.fs1_c00403{font-size:72.000000pt;}
.fs3_c00403{font-size:82.666667pt;}
.fs0_c00403{font-size:88.000000pt;}
.fs4_c00403{font-size:106.666667pt;}
.y0_c00403{bottom:0.000000pt;}
.y25_c00403{bottom:2.760000pt;}
.y24_c00403{bottom:6.425217pt;}
.y23_c00403{bottom:75.040000pt;}
.y22_c00403{bottom:98.106667pt;}
.y21_c00403{bottom:119.440000pt;}
.y20_c00403{bottom:141.573333pt;}
.y1f_c00403{bottom:162.906667pt;}
.y1e_c00403{bottom:184.240000pt;}
.y1d_c00403{bottom:205.840000pt;}
.y1c_c00403{bottom:227.440000pt;}
.y1b_c00403{bottom:249.306667pt;}
.y1a_c00403{bottom:270.906667pt;}
.y19_c00403{bottom:292.240000pt;}
.y18_c00403{bottom:314.106667pt;}
.y17_c00403{bottom:335.440000pt;}
.y16_c00403{bottom:357.573333pt;}
.y15_c00403{bottom:378.906667pt;}
.y14_c00403{bottom:400.240000pt;}
.y13_c00403{bottom:421.706667pt;}
.y12_c00403{bottom:443.040000pt;}
.y11_c00403{bottom:464.106667pt;}
.y10_c00403{bottom:485.306667pt;}
.yf_c00403{bottom:506.640000pt;}
.ye_c00403{bottom:527.040000pt;}
.yd_c00403{bottom:549.840000pt;}
.yc_c00403{bottom:571.706667pt;}
.yb_c00403{bottom:593.440000pt;}
.ya_c00403{bottom:614.906667pt;}
.y9_c00403{bottom:635.706667pt;}
.y8_c00403{bottom:658.106667pt;}
.y7_c00403{bottom:679.173333pt;}
.y6_c00403{bottom:700.773333pt;}
.y5_c00403{bottom:721.840000pt;}
.y4_c00403{bottom:743.973333pt;}
.y3_c00403{bottom:765.306667pt;}
.y2_c00403{bottom:787.440000pt;}
.y1_c00403{bottom:817.840000pt;}
.h6_c00403{height:11.733399pt;}
.h7_c00403{height:38.937500pt;}
.h3_c00403{height:70.664062pt;}
.h2_c00403{height:74.906250pt;}
.h4_c00403{height:83.312500pt;}
.h1_c00403{height:102.996094pt;}
.h5_c00403{height:107.500000pt;}
.h0_c00403{height:879.333333pt;}
.w2_c00403{width:93.222667pt;}
.w1_c00403{width:589.333333pt;}
.w0_c00403{width:589.466667pt;}
.x0_c00403{left:0.000000pt;}
.xa_c00403{left:11.733333pt;}
.x6_c00403{left:17.733333pt;}
.x7_c00403{left:56.666667pt;}
.x9_c00403{left:92.666667pt;}
.x2_c00403{left:93.600000pt;}
.x3_c00403{left:95.066667pt;}
.x4_c00403{left:96.000000pt;}
.x5_c00403{left:97.200000pt;}
.x8_c00403{left:98.133333pt;}
.x1_c00403{left:185.066667pt;}
.xb_c00403{left:251.901571pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_379c5d32af6573c5fdec7faf.woff2')format("woff");}.ff1_c00404{font-family:ff1_c00404;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00404;src:url('chunks/assets/font_adc0ffb88a988bb4a7823e4a.woff2')format("woff");}.ff2_c00404{font-family:ff2_c00404;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00404;src:url('chunks/assets/font_31d8f126f4f1279a9eaba94d.woff2')format("woff");}.ff3_c00404{font-family:ff3_c00404;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00404;src:url('chunks/assets/font_068ea4f43ce71d6597b8d8a9.woff2')format("woff");}.ff4_c00404{font-family:ff4_c00404;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00404;src:url('chunks/assets/font_e2eb07833e50d1283cc7c7b2.woff2')format("woff");}.ff5_c00404{font-family:ff5_c00404;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00404;src:url('chunks/assets/font_56cd6b300689c5b9a50ee54a.woff2')format("woff");}.ff6_c00404{font-family:ff6_c00404;line-height:1.437000;font-style:normal;font-weight: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_c00404;src:url('chunks/assets/font_6aeb856cfab2ee421df130bb.woff2')format("woff");}.ff7_c00404{font-family:ff7_c00404;line-height:1.311035;font-style:normal;font-weight: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_c00404;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff8_c00404{font-family:ff8_c00404;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00404{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00404{vertical-align:0.000000px;}
.v1_c00404{vertical-align:25.800000px;}
.ls4_c00404{letter-spacing:0.000000px;}
.ls3_c00404{letter-spacing:1.800000px;}
.ls6_c00404{letter-spacing:3.000000px;}
.ls0_c00404{letter-spacing:3.588000px;}
.ls5_c00404{letter-spacing:6.000000px;}
.ls2_c00404{letter-spacing:18.216000px;}
.ls1_c00404{letter-spacing:183.180000px;}
.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:-67.686000px;}
.ws0_c00404{word-spacing:-23.859000px;}
.ws3_c00404{word-spacing:-17.400000px;}
.ws2_c00404{word-spacing:-17.352000px;}
.ws4_c00404{word-spacing:0.000000px;}
._16_c00404{margin-left:-17.577000px;}
._a_c00404{margin-left:-16.134000px;}
._1c_c00404{margin-left:-14.760000px;}
._1b_c00404{margin-left:-12.825600px;}
._e_c00404{margin-left:-10.134000px;}
._7_c00404{margin-left:-7.722000px;}
._f_c00404{margin-left:-6.642000px;}
._6_c00404{margin-left:-5.292000px;}
._2_c00404{margin-left:-4.212000px;}
._5_c00404{margin-left:-3.069000px;}
._4_c00404{margin-left:-1.980000px;}
._1_c00404{width:1.374000px;}
._9_c00404{width:2.424000px;}
._0_c00404{width:3.663000px;}
._8_c00404{width:5.400000px;}
._3_c00404{width:6.663000px;}
._12_c00404{width:7.710000px;}
._d_c00404{width:8.757000px;}
._c_c00404{width:10.503000px;}
._11_c00404{width:11.823000px;}
._b_c00404{width:13.395000px;}
._14_c00404{width:14.502000px;}
._13_c00404{width:16.194000px;}
._10_c00404{width:17.853000px;}
._19_c00404{width:18.987000px;}
._1a_c00404{width:20.634000px;}
._17_c00404{width:23.220000px;}
._18_c00404{width:57.594000px;}
._15_c00404{width:180.009000px;}
._1d_c00404{width:280.017000px;}
.fc2_c00404{color:transparent;}
.fc1_c00404{color:rgb(128,128,128);}
.fc0_c00404{color:rgb(0,0,0);}
.fs9_c00404{font-size:48.000000px;}
.fs5_c00404{font-size:54.000000px;}
.fs6_c00404{font-size:57.000000px;}
.fs8_c00404{font-size:57.600000px;}
.fs7_c00404{font-size:60.000000px;}
.fs4_c00404{font-size:72.000000px;}
.fs3_c00404{font-size:81.000000px;}
.fs2_c00404{font-size:87.000000px;}
.fs0_c00404{font-size:99.000000px;}
.fs1_c00404{font-size:132.000000px;}
.y0_c00404{bottom:0.000000px;}
.y25_c00404{bottom:3.105000px;}
.y24_c00404{bottom:7.228371px;}
.y23_c00404{bottom:60.465000px;}
.y22_c00404{bottom:84.015000px;}
.y21_c00404{bottom:110.115000px;}
.y20_c00404{bottom:127.665000px;}
.y1f_c00404{bottom:159.315000px;}
.y1e_c00404{bottom:204.915000px;}
.y1d_c00404{bottom:231.315000px;}
.y1c_c00404{bottom:255.915000px;}
.y1b_c00404{bottom:280.515000px;}
.y1a_c00404{bottom:304.065000px;}
.y19_c00404{bottom:328.515000px;}
.y18_c00404{bottom:352.815000px;}
.y17_c00404{bottom:376.665000px;}
.y16_c00404{bottom:400.665000px;}
.y15_c00404{bottom:424.215000px;}
.y14_c00404{bottom:448.215000px;}
.y13_c00404{bottom:472.515000px;}
.y12_c00404{bottom:496.215000px;}
.y11_c00404{bottom:520.515000px;}
.y10_c00404{bottom:543.915000px;}
.yf_c00404{bottom:567.765000px;}
.ye_c00404{bottom:591.615000px;}
.yd_c00404{bottom:615.315000px;}
.yc_c00404{bottom:639.015000px;}
.yb_c00404{bottom:663.165000px;}
.ya_c00404{bottom:687.465000px;}
.y9_c00404{bottom:711.465000px;}
.y8_c00404{bottom:735.765000px;}
.y7_c00404{bottom:759.465000px;}
.y6_c00404{bottom:783.465000px;}
.y5_c00404{bottom:808.065000px;}
.y4_c00404{bottom:831.615000px;}
.y3_c00404{bottom:856.215000px;}
.y2_c00404{bottom:879.915000px;}
.y1_c00404{bottom:914.265000px;}
.h8_c00404{height:13.200074px;}
.h9_c00404{height:43.804688px;}
.h6_c00404{height:66.713379px;}
.h3_c00404{height:79.497070px;}
.h5_c00404{height:91.160156px;}
.h4_c00404{height:91.176000px;}
.h7_c00404{height:105.297070px;}
.h2_c00404{height:167.126953px;}
.h0_c00404{height:989.025000px;}
.h1_c00404{height:989.250000px;}
.w1_c00404{width:104.875500px;}
.w0_c00404{width:672.000000px;}
.x0_c00404{left:0.000000px;}
.x1_c00404{left:55.950000px;}
.x2_c00404{left:57.600000px;}
.x3_c00404{left:58.650000px;}
.x4_c00404{left:59.700000px;}
.x8_c00404{left:61.650000px;}
.x6_c00404{left:64.050000px;}
.x7_c00404{left:123.450000px;}
.x5_c00404{left:184.500000px;}
.xa_c00404{left:287.814240px;}
.x9_c00404{left:385.650000px;}
@media print{
.v0_c00404{vertical-align:0.000000pt;}
.v1_c00404{vertical-align:22.933333pt;}
.ls4_c00404{letter-spacing:0.000000pt;}
.ls3_c00404{letter-spacing:1.600000pt;}
.ls6_c00404{letter-spacing:2.666667pt;}
.ls0_c00404{letter-spacing:3.189333pt;}
.ls5_c00404{letter-spacing:5.333333pt;}
.ls2_c00404{letter-spacing:16.192000pt;}
.ls1_c00404{letter-spacing:162.826667pt;}
.ws1_c00404{word-spacing:-60.165333pt;}
.ws0_c00404{word-spacing:-21.208000pt;}
.ws3_c00404{word-spacing:-15.466667pt;}
.ws2_c00404{word-spacing:-15.424000pt;}
.ws4_c00404{word-spacing:0.000000pt;}
._16_c00404{margin-left:-15.624000pt;}
._a_c00404{margin-left:-14.341333pt;}
._1c_c00404{margin-left:-13.120000pt;}
._1b_c00404{margin-left:-11.400533pt;}
._e_c00404{margin-left:-9.008000pt;}
._7_c00404{margin-left:-6.864000pt;}
._f_c00404{margin-left:-5.904000pt;}
._6_c00404{margin-left:-4.704000pt;}
._2_c00404{margin-left:-3.744000pt;}
._5_c00404{margin-left:-2.728000pt;}
._4_c00404{margin-left:-1.760000pt;}
._1_c00404{width:1.221333pt;}
._9_c00404{width:2.154667pt;}
._0_c00404{width:3.256000pt;}
._8_c00404{width:4.800000pt;}
._3_c00404{width:5.922667pt;}
._12_c00404{width:6.853333pt;}
._d_c00404{width:7.784000pt;}
._c_c00404{width:9.336000pt;}
._11_c00404{width:10.509333pt;}
._b_c00404{width:11.906667pt;}
._14_c00404{width:12.890667pt;}
._13_c00404{width:14.394667pt;}
._10_c00404{width:15.869333pt;}
._19_c00404{width:16.877333pt;}
._1a_c00404{width:18.341333pt;}
._17_c00404{width:20.640000pt;}
._18_c00404{width:51.194667pt;}
._15_c00404{width:160.008000pt;}
._1d_c00404{width:248.904000pt;}
.fs9_c00404{font-size:42.666667pt;}
.fs5_c00404{font-size:48.000000pt;}
.fs6_c00404{font-size:50.666667pt;}
.fs8_c00404{font-size:51.200000pt;}
.fs7_c00404{font-size:53.333333pt;}
.fs4_c00404{font-size:64.000000pt;}
.fs3_c00404{font-size:72.000000pt;}
.fs2_c00404{font-size:77.333333pt;}
.fs0_c00404{font-size:88.000000pt;}
.fs1_c00404{font-size:117.333333pt;}
.y0_c00404{bottom:0.000000pt;}
.y25_c00404{bottom:2.760000pt;}
.y24_c00404{bottom:6.425219pt;}
.y23_c00404{bottom:53.746667pt;}
.y22_c00404{bottom:74.680000pt;}
.y21_c00404{bottom:97.880000pt;}
.y20_c00404{bottom:113.480000pt;}
.y1f_c00404{bottom:141.613333pt;}
.y1e_c00404{bottom:182.146667pt;}
.y1d_c00404{bottom:205.613333pt;}
.y1c_c00404{bottom:227.480000pt;}
.y1b_c00404{bottom:249.346667pt;}
.y1a_c00404{bottom:270.280000pt;}
.y19_c00404{bottom:292.013333pt;}
.y18_c00404{bottom:313.613333pt;}
.y17_c00404{bottom:334.813333pt;}
.y16_c00404{bottom:356.146667pt;}
.y15_c00404{bottom:377.080000pt;}
.y14_c00404{bottom:398.413333pt;}
.y13_c00404{bottom:420.013333pt;}
.y12_c00404{bottom:441.080000pt;}
.y11_c00404{bottom:462.680000pt;}
.y10_c00404{bottom:483.480000pt;}
.yf_c00404{bottom:504.680000pt;}
.ye_c00404{bottom:525.880000pt;}
.yd_c00404{bottom:546.946667pt;}
.yc_c00404{bottom:568.013333pt;}
.yb_c00404{bottom:589.480000pt;}
.ya_c00404{bottom:611.080000pt;}
.y9_c00404{bottom:632.413333pt;}
.y8_c00404{bottom:654.013333pt;}
.y7_c00404{bottom:675.080000pt;}
.y6_c00404{bottom:696.413333pt;}
.y5_c00404{bottom:718.280000pt;}
.y4_c00404{bottom:739.213333pt;}
.y3_c00404{bottom:761.080000pt;}
.y2_c00404{bottom:782.146667pt;}
.y1_c00404{bottom:812.680000pt;}
.h8_c00404{height:11.733399pt;}
.h9_c00404{height:38.937500pt;}
.h6_c00404{height:59.300781pt;}
.h3_c00404{height:70.664062pt;}
.h5_c00404{height:81.031250pt;}
.h4_c00404{height:81.045333pt;}
.h7_c00404{height:93.597396pt;}
.h2_c00404{height:148.557292pt;}
.h0_c00404{height:879.133333pt;}
.h1_c00404{height:879.333333pt;}
.w1_c00404{width:93.222667pt;}
.w0_c00404{width:597.333333pt;}
.x0_c00404{left:0.000000pt;}
.x1_c00404{left:49.733333pt;}
.x2_c00404{left:51.200000pt;}
.x3_c00404{left:52.133333pt;}
.x4_c00404{left:53.066667pt;}
.x8_c00404{left:54.800000pt;}
.x6_c00404{left:56.933333pt;}
.x7_c00404{left:109.733333pt;}
.x5_c00404{left:164.000000pt;}
.xa_c00404{left:255.834880pt;}
.x9_c00404{left:342.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_38bec230fcac7bf6fa3190b7.woff2')format("woff");}.ff1_c00405{font-family:ff1_c00405;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00405;src:url('chunks/assets/font_e8001c02ca9fe8ecf7bcabfd.woff2')format("woff");}.ff2_c00405{font-family:ff2_c00405;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00405;src:url('chunks/assets/font_323a54d8dde29b0a2a7a32a8.woff2')format("woff");}.ff3_c00405{font-family:ff3_c00405;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00405;src:url('chunks/assets/font_13ff4c6b078500ecefa8e02b.woff2')format("woff");}.ff4_c00405{font-family:ff4_c00405;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00405;src:url('chunks/assets/font_6441fe879069acc0f82cf5f9.woff2')format("woff");}.ff5_c00405{font-family:ff5_c00405;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00405;src:url('chunks/assets/font_e85c726efeb9c87e98282705.woff2')format("woff");}.ff6_c00405{font-family:ff6_c00405;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00405;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c00405{font-family:ff7_c00405;line-height:1.219238;font-style: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;}
.ls2_c00405{letter-spacing:0.000000px;}
.ls1_c00405{letter-spacing:0.192000px;}
.ls0_c00405{letter-spacing:3.000000px;}
.sc__c00405{text-shadow:none;}
.sc0_c00405{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00405{-webkit-text-stroke:0px transparent;}
.sc0_c00405{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00405{word-spacing:-67.686000px;}
.ws6_c00405{word-spacing:-45.036000px;}
.ws3_c00405{word-spacing:-21.000000px;}
.ws4_c00405{word-spacing:-20.250000px;}
.ws1_c00405{word-spacing:-18.000000px;}
.ws0_c00405{word-spacing:-17.352000px;}
.ws2_c00405{word-spacing:-3.888000px;}
.ws7_c00405{word-spacing:0.000000px;}
._1b_c00405{margin-left:-23.004000px;}
._1a_c00405{margin-left:-20.772000px;}
._1c_c00405{margin-left:-18.630000px;}
._17_c00405{margin-left:-17.136000px;}
._18_c00405{margin-left:-15.768000px;}
._15_c00405{margin-left:-14.400000px;}
._2c_c00405{margin-left:-13.026000px;}
._d_c00405{margin-left:-11.988000px;}
._12_c00405{margin-left:-10.611000px;}
._13_c00405{margin-left:-8.100000px;}
._6_c00405{margin-left:-7.047000px;}
._9_c00405{margin-left:-5.994000px;}
._3_c00405{margin-left:-4.050000px;}
._4_c00405{margin-left:-2.835000px;}
._5_c00405{margin-left:-1.458000px;}
._b_c00405{width:1.134000px;}
._7_c00405{width:2.187000px;}
._0_c00405{width:3.564000px;}
._8_c00405{width:5.022000px;}
._1_c00405{width:6.075000px;}
._2_c00405{width:7.695000px;}
._a_c00405{width:9.072000px;}
._20_c00405{width:10.110000px;}
._c_c00405{width:11.178000px;}
._26_c00405{width:12.555000px;}
._16_c00405{width:13.941000px;}
._10_c00405{width:15.228000px;}
._24_c00405{width:16.920000px;}
._f_c00405{width:18.225000px;}
._25_c00405{width:19.368000px;}
._14_c00405{width:21.186000px;}
._2a_c00405{width:25.158000px;}
._19_c00405{width:26.208000px;}
._21_c00405{width:28.689000px;}
._1d_c00405{width:31.428000px;}
._2d_c00405{width:36.180000px;}
._23_c00405{width:39.519000px;}
._28_c00405{width:41.715000px;}
._e_c00405{width:60.426000px;}
._1e_c00405{width:97.038000px;}
._1f_c00405{width:197.556000px;}
._11_c00405{width:214.002000px;}
._2e_c00405{width:226.578000px;}
._27_c00405{width:242.190000px;}
._2b_c00405{width:364.581000px;}
._29_c00405{width:416.751000px;}
._22_c00405{width:443.556000px;}
.fc2_c00405{color:transparent;}
.fc1_c00405{color:rgb(128,128,128);}
.fc0_c00405{color:rgb(0,0,0);}
.fs4_c00405{font-size:48.000000px;}
.fs2_c00405{font-size:69.000000px;}
.fs1_c00405{font-size:72.000000px;}
.fs0_c00405{font-size:81.000000px;}
.fs3_c00405{font-size:87.000000px;}
.y0_c00405{bottom:0.000000px;}
.y25_c00405{bottom:3.105000px;}
.y24_c00405{bottom:7.228369px;}
.y23_c00405{bottom:51.270000px;}
.y22_c00405{bottom:73.920000px;}
.y21_c00405{bottom:99.120000px;}
.y20_c00405{bottom:123.870000px;}
.y1f_c00405{bottom:146.820000px;}
.y1e_c00405{bottom:171.420000px;}
.y1d_c00405{bottom:195.720000px;}
.y1c_c00405{bottom:220.620000px;}
.y1b_c00405{bottom:244.620000px;}
.y1a_c00405{bottom:269.370000px;}
.y19_c00405{bottom:293.670000px;}
.y18_c00405{bottom:317.220000px;}
.y17_c00405{bottom:341.520000px;}
.y16_c00405{bottom:365.520000px;}
.y15_c00405{bottom:390.120000px;}
.y14_c00405{bottom:416.370000px;}
.y13_c00405{bottom:440.670000px;}
.y12_c00405{bottom:462.420000px;}
.y11_c00405{bottom:487.320000px;}
.y10_c00405{bottom:511.320000px;}
.yf_c00405{bottom:535.170000px;}
.ye_c00405{bottom:558.270000px;}
.yd_c00405{bottom:582.870000px;}
.yc_c00405{bottom:606.720000px;}
.yb_c00405{bottom:631.470000px;}
.ya_c00405{bottom:654.720000px;}
.y9_c00405{bottom:678.420000px;}
.y8_c00405{bottom:702.270000px;}
.y7_c00405{bottom:728.370000px;}
.y6_c00405{bottom:751.620000px;}
.y5_c00405{bottom:776.220000px;}
.y4_c00405{bottom:800.820000px;}
.y3_c00405{bottom:824.070000px;}
.y2_c00405{bottom:848.370000px;}
.y1_c00405{bottom:872.070000px;}
.h6_c00405{height:13.200073px;}
.h7_c00405{height:43.804688px;}
.h4_c00405{height:72.562500px;}
.h2_c00405{height:79.497070px;}
.h3_c00405{height:84.269531px;}
.h5_c00405{height:91.176000px;}
.h1_c00405{height:986.250000px;}
.h0_c00405{height:986.550000px;}
.w1_c00405{width:104.875500px;}
.w0_c00405{width:661.500000px;}
.x0_c00405{left:0.000000px;}
.x5_c00405{left:3.450000px;}
.x6_c00405{left:33.150000px;}
.x4_c00405{left:35.400000px;}
.x8_c00405{left:36.900000px;}
.x9_c00405{left:44.550000px;}
.x3_c00405{left:51.600000px;}
.x2_c00405{left:73.800000px;}
.xb_c00405{left:127.200000px;}
.x7_c00405{left:128.700000px;}
.x1_c00405{left:129.900000px;}
.xa_c00405{left:130.950000px;}
.xc_c00405{left:223.200000px;}
.xe_c00405{left:282.564240px;}
.xd_c00405{left:571.500000px;}
@media print{
.v0_c00405{vertical-align:0.000000pt;}
.ls2_c00405{letter-spacing:0.000000pt;}
.ls1_c00405{letter-spacing:0.170667pt;}
.ls0_c00405{letter-spacing:2.666667pt;}
.ws5_c00405{word-spacing:-60.165333pt;}
.ws6_c00405{word-spacing:-40.032000pt;}
.ws3_c00405{word-spacing:-18.666667pt;}
.ws4_c00405{word-spacing:-18.000000pt;}
.ws1_c00405{word-spacing:-16.000000pt;}
.ws0_c00405{word-spacing:-15.424000pt;}
.ws2_c00405{word-spacing:-3.456000pt;}
.ws7_c00405{word-spacing:0.000000pt;}
._1b_c00405{margin-left:-20.448000pt;}
._1a_c00405{margin-left:-18.464000pt;}
._1c_c00405{margin-left:-16.560000pt;}
._17_c00405{margin-left:-15.232000pt;}
._18_c00405{margin-left:-14.016000pt;}
._15_c00405{margin-left:-12.800000pt;}
._2c_c00405{margin-left:-11.578667pt;}
._d_c00405{margin-left:-10.656000pt;}
._12_c00405{margin-left:-9.432000pt;}
._13_c00405{margin-left:-7.200000pt;}
._6_c00405{margin-left:-6.264000pt;}
._9_c00405{margin-left:-5.328000pt;}
._3_c00405{margin-left:-3.600000pt;}
._4_c00405{margin-left:-2.520000pt;}
._5_c00405{margin-left:-1.296000pt;}
._b_c00405{width:1.008000pt;}
._7_c00405{width:1.944000pt;}
._0_c00405{width:3.168000pt;}
._8_c00405{width:4.464000pt;}
._1_c00405{width:5.400000pt;}
._2_c00405{width:6.840000pt;}
._a_c00405{width:8.064000pt;}
._20_c00405{width:8.986667pt;}
._c_c00405{width:9.936000pt;}
._26_c00405{width:11.160000pt;}
._16_c00405{width:12.392000pt;}
._10_c00405{width:13.536000pt;}
._24_c00405{width:15.040000pt;}
._f_c00405{width:16.200000pt;}
._25_c00405{width:17.216000pt;}
._14_c00405{width:18.832000pt;}
._2a_c00405{width:22.362667pt;}
._19_c00405{width:23.296000pt;}
._21_c00405{width:25.501333pt;}
._1d_c00405{width:27.936000pt;}
._2d_c00405{width:32.160000pt;}
._23_c00405{width:35.128000pt;}
._28_c00405{width:37.080000pt;}
._e_c00405{width:53.712000pt;}
._1e_c00405{width:86.256000pt;}
._1f_c00405{width:175.605333pt;}
._11_c00405{width:190.224000pt;}
._2e_c00405{width:201.402667pt;}
._27_c00405{width:215.280000pt;}
._2b_c00405{width:324.072000pt;}
._29_c00405{width:370.445333pt;}
._22_c00405{width:394.272000pt;}
.fs4_c00405{font-size:42.666667pt;}
.fs2_c00405{font-size:61.333333pt;}
.fs1_c00405{font-size:64.000000pt;}
.fs0_c00405{font-size:72.000000pt;}
.fs3_c00405{font-size:77.333333pt;}
.y0_c00405{bottom:0.000000pt;}
.y25_c00405{bottom:2.760000pt;}
.y24_c00405{bottom:6.425217pt;}
.y23_c00405{bottom:45.573333pt;}
.y22_c00405{bottom:65.706667pt;}
.y21_c00405{bottom:88.106667pt;}
.y20_c00405{bottom:110.106667pt;}
.y1f_c00405{bottom:130.506667pt;}
.y1e_c00405{bottom:152.373333pt;}
.y1d_c00405{bottom:173.973333pt;}
.y1c_c00405{bottom:196.106667pt;}
.y1b_c00405{bottom:217.440000pt;}
.y1a_c00405{bottom:239.440000pt;}
.y19_c00405{bottom:261.040000pt;}
.y18_c00405{bottom:281.973333pt;}
.y17_c00405{bottom:303.573333pt;}
.y16_c00405{bottom:324.906667pt;}
.y15_c00405{bottom:346.773333pt;}
.y14_c00405{bottom:370.106667pt;}
.y13_c00405{bottom:391.706667pt;}
.y12_c00405{bottom:411.040000pt;}
.y11_c00405{bottom:433.173333pt;}
.y10_c00405{bottom:454.506667pt;}
.yf_c00405{bottom:475.706667pt;}
.ye_c00405{bottom:496.240000pt;}
.yd_c00405{bottom:518.106667pt;}
.yc_c00405{bottom:539.306667pt;}
.yb_c00405{bottom:561.306667pt;}
.ya_c00405{bottom:581.973333pt;}
.y9_c00405{bottom:603.040000pt;}
.y8_c00405{bottom:624.240000pt;}
.y7_c00405{bottom:647.440000pt;}
.y6_c00405{bottom:668.106667pt;}
.y5_c00405{bottom:689.973333pt;}
.y4_c00405{bottom:711.840000pt;}
.y3_c00405{bottom:732.506667pt;}
.y2_c00405{bottom:754.106667pt;}
.y1_c00405{bottom:775.173333pt;}
.h6_c00405{height:11.733399pt;}
.h7_c00405{height:38.937500pt;}
.h4_c00405{height:64.500000pt;}
.h2_c00405{height:70.664062pt;}
.h3_c00405{height:74.906250pt;}
.h5_c00405{height:81.045333pt;}
.h1_c00405{height:876.666667pt;}
.h0_c00405{height:876.933333pt;}
.w1_c00405{width:93.222667pt;}
.w0_c00405{width:588.000000pt;}
.x0_c00405{left:0.000000pt;}
.x5_c00405{left:3.066667pt;}
.x6_c00405{left:29.466667pt;}
.x4_c00405{left:31.466667pt;}
.x8_c00405{left:32.800000pt;}
.x9_c00405{left:39.600000pt;}
.x3_c00405{left:45.866667pt;}
.x2_c00405{left:65.600000pt;}
.xb_c00405{left:113.066667pt;}
.x7_c00405{left:114.400000pt;}
.x1_c00405{left:115.466667pt;}
.xa_c00405{left:116.400000pt;}
.xc_c00405{left:198.400000pt;}
.xe_c00405{left:251.168213pt;}
.xd_c00405{left:508.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_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_a3bd92fe72553e110c8a6566.woff2')format("woff");}.ff1_c00406{font-family:ff1_c00406;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00406;src:url('chunks/assets/font_7e3c7c84e023dfeea4e38224.woff2')format("woff");}.ff2_c00406{font-family:ff2_c00406;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00406;src:url('chunks/assets/font_0e802b00333726dda21a44a4.woff2')format("woff");}.ff3_c00406{font-family:ff3_c00406;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00406;src:url('chunks/assets/font_d7c05ff056573bcd32169a68.woff2')format("woff");}.ff4_c00406{font-family:ff4_c00406;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00406;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff5_c00406{font-family:ff5_c00406;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00406;src:url('chunks/assets/font_9f1b650bb5cfbf1ab6ae0a2b.woff2')format("woff");}.ff6_c00406{font-family:ff6_c00406;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00406;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c00406{font-family:ff7_c00406;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00406{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00406{vertical-align:-31.200000px;}
.v0_c00406{vertical-align:0.000000px;}
.ls3_c00406{letter-spacing:-9.000000px;}
.ls1_c00406{letter-spacing:0.000000px;}
.ls2_c00406{letter-spacing:9.000000px;}
.ls0_c00406{letter-spacing:23.202000px;}
.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:-21.240000px;}
.ws2_c00406{word-spacing:-17.352000px;}
.ws1_c00406{word-spacing:-13.737000px;}
.ws3_c00406{word-spacing:0.000000px;}
._10_c00406{margin-left:-16.524000px;}
._11_c00406{margin-left:-14.175000px;}
._1b_c00406{margin-left:-11.826000px;}
._1a_c00406{margin-left:-10.053000px;}
._15_c00406{margin-left:-8.835000px;}
._a_c00406{margin-left:-7.506000px;}
._7_c00406{margin-left:-5.544000px;}
._c_c00406{margin-left:-4.050000px;}
._6_c00406{margin-left:-2.871000px;}
._5_c00406{margin-left:-1.089000px;}
._1_c00406{width:1.386000px;}
._2_c00406{width:3.168000px;}
._0_c00406{width:5.148000px;}
._9_c00406{width:6.237000px;}
._1f_c00406{width:7.308000px;}
._4_c00406{width:8.316000px;}
._3_c00406{width:9.603000px;}
._8_c00406{width:10.791000px;}
._e_c00406{width:11.889000px;}
._f_c00406{width:13.653000px;}
._d_c00406{width:14.958000px;}
._17_c00406{width:17.163000px;}
._b_c00406{width:18.441000px;}
._13_c00406{width:22.908000px;}
._18_c00406{width:27.054000px;}
._1e_c00406{width:31.185000px;}
._19_c00406{width:34.911000px;}
._1d_c00406{width:47.937000px;}
._1c_c00406{width:49.824000px;}
._14_c00406{width:98.937000px;}
._16_c00406{width:103.386000px;}
._20_c00406{width:260.256000px;}
._12_c00406{width:363.141000px;}
.fc2_c00406{color:transparent;}
.fc1_c00406{color:rgb(128,128,128);}
.fc0_c00406{color:rgb(0,0,0);}
.fs3_c00406{font-size:45.000000px;}
.fs7_c00406{font-size:48.000000px;}
.fs2_c00406{font-size:57.000000px;}
.fs5_c00406{font-size:72.000000px;}
.fs4_c00406{font-size:78.000000px;}
.fs1_c00406{font-size:81.000000px;}
.fs0_c00406{font-size:99.000000px;}
.fs6_c00406{font-size:102.000000px;}
.y0_c00406{bottom:0.000000px;}
.y26_c00406{bottom:3.105000px;}
.y25_c00406{bottom:7.228371px;}
.y24_c00406{bottom:58.365000px;}
.y23_c00406{bottom:84.765000px;}
.y22_c00406{bottom:109.815000px;}
.y21_c00406{bottom:133.665000px;}
.y20_c00406{bottom:158.415000px;}
.y1f_c00406{bottom:183.615000px;}
.y1e_c00406{bottom:207.615000px;}
.y1d_c00406{bottom:232.215000px;}
.y1c_c00406{bottom:256.815000px;}
.y1b_c00406{bottom:280.215000px;}
.y1a_c00406{bottom:304.215000px;}
.y19_c00406{bottom:329.415000px;}
.y18_c00406{bottom:353.115000px;}
.y17_c00406{bottom:377.715000px;}
.y16_c00406{bottom:401.265000px;}
.y15_c00406{bottom:425.715000px;}
.y14_c00406{bottom:449.865000px;}
.y13_c00406{bottom:474.165000px;}
.y12_c00406{bottom:498.165000px;}
.y11_c00406{bottom:522.765000px;}
.y10_c00406{bottom:546.765000px;}
.yf_c00406{bottom:570.165000px;}
.ye_c00406{bottom:593.715000px;}
.yd_c00406{bottom:618.015000px;}
.yc_c00406{bottom:641.715000px;}
.yb_c00406{bottom:665.565000px;}
.ya_c00406{bottom:690.165000px;}
.y9_c00406{bottom:714.165000px;}
.y8_c00406{bottom:738.165000px;}
.y7_c00406{bottom:762.465000px;}
.y6_c00406{bottom:786.465000px;}
.y5_c00406{bottom:810.765000px;}
.y4_c00406{bottom:835.065000px;}
.y3_c00406{bottom:859.065000px;}
.y2_c00406{bottom:883.365000px;}
.y1_c00406{bottom:918.315000px;}
.h8_c00406{height:13.200074px;}
.h9_c00406{height:43.804688px;}
.h4_c00406{height:66.713379px;}
.h3_c00406{height:79.497070px;}
.h6_c00406{height:91.160156px;}
.h5_c00406{height:98.756836px;}
.h7_c00406{height:104.839927px;}
.h2_c00406{height:115.870605px;}
.h0_c00406{height:989.025000px;}
.h1_c00406{height:989.250000px;}
.w1_c00406{width:104.875500px;}
.w0_c00406{width:672.000000px;}
.x0_c00406{left:0.000000px;}
.x6_c00406{left:46.800000px;}
.x1_c00406{left:55.950000px;}
.x2_c00406{left:57.000000px;}
.x3_c00406{left:58.050000px;}
.x4_c00406{left:59.700000px;}
.x5_c00406{left:61.050000px;}
.x7_c00406{left:62.100000px;}
.x9_c00406{left:287.814240px;}
.x8_c00406{left:401.550000px;}
@media print{
.v1_c00406{vertical-align:-27.733333pt;}
.v0_c00406{vertical-align:0.000000pt;}
.ls3_c00406{letter-spacing:-8.000000pt;}
.ls1_c00406{letter-spacing:0.000000pt;}
.ls2_c00406{letter-spacing:8.000000pt;}
.ls0_c00406{letter-spacing:20.624000pt;}
.ws0_c00406{word-spacing:-18.880000pt;}
.ws2_c00406{word-spacing:-15.424000pt;}
.ws1_c00406{word-spacing:-12.210667pt;}
.ws3_c00406{word-spacing:0.000000pt;}
._10_c00406{margin-left:-14.688000pt;}
._11_c00406{margin-left:-12.600000pt;}
._1b_c00406{margin-left:-10.512000pt;}
._1a_c00406{margin-left:-8.936000pt;}
._15_c00406{margin-left:-7.853333pt;}
._a_c00406{margin-left:-6.672000pt;}
._7_c00406{margin-left:-4.928000pt;}
._c_c00406{margin-left:-3.600000pt;}
._6_c00406{margin-left:-2.552000pt;}
._5_c00406{margin-left:-0.968000pt;}
._1_c00406{width:1.232000pt;}
._2_c00406{width:2.816000pt;}
._0_c00406{width:4.576000pt;}
._9_c00406{width:5.544000pt;}
._1f_c00406{width:6.496000pt;}
._4_c00406{width:7.392000pt;}
._3_c00406{width:8.536000pt;}
._8_c00406{width:9.592000pt;}
._e_c00406{width:10.568000pt;}
._f_c00406{width:12.136000pt;}
._d_c00406{width:13.296000pt;}
._17_c00406{width:15.256000pt;}
._b_c00406{width:16.392000pt;}
._13_c00406{width:20.362667pt;}
._18_c00406{width:24.048000pt;}
._1e_c00406{width:27.720000pt;}
._19_c00406{width:31.032000pt;}
._1d_c00406{width:42.610667pt;}
._1c_c00406{width:44.288000pt;}
._14_c00406{width:87.944000pt;}
._16_c00406{width:91.898667pt;}
._20_c00406{width:231.338667pt;}
._12_c00406{width:322.792000pt;}
.fs3_c00406{font-size:40.000000pt;}
.fs7_c00406{font-size:42.666667pt;}
.fs2_c00406{font-size:50.666667pt;}
.fs5_c00406{font-size:64.000000pt;}
.fs4_c00406{font-size:69.333333pt;}
.fs1_c00406{font-size:72.000000pt;}
.fs0_c00406{font-size:88.000000pt;}
.fs6_c00406{font-size:90.666667pt;}
.y0_c00406{bottom:0.000000pt;}
.y26_c00406{bottom:2.760000pt;}
.y25_c00406{bottom:6.425219pt;}
.y24_c00406{bottom:51.880000pt;}
.y23_c00406{bottom:75.346667pt;}
.y22_c00406{bottom:97.613333pt;}
.y21_c00406{bottom:118.813333pt;}
.y20_c00406{bottom:140.813333pt;}
.y1f_c00406{bottom:163.213333pt;}
.y1e_c00406{bottom:184.546667pt;}
.y1d_c00406{bottom:206.413333pt;}
.y1c_c00406{bottom:228.280000pt;}
.y1b_c00406{bottom:249.080000pt;}
.y1a_c00406{bottom:270.413333pt;}
.y19_c00406{bottom:292.813333pt;}
.y18_c00406{bottom:313.880000pt;}
.y17_c00406{bottom:335.746667pt;}
.y16_c00406{bottom:356.680000pt;}
.y15_c00406{bottom:378.413333pt;}
.y14_c00406{bottom:399.880000pt;}
.y13_c00406{bottom:421.480000pt;}
.y12_c00406{bottom:442.813333pt;}
.y11_c00406{bottom:464.680000pt;}
.y10_c00406{bottom:486.013333pt;}
.yf_c00406{bottom:506.813333pt;}
.ye_c00406{bottom:527.746667pt;}
.yd_c00406{bottom:549.346667pt;}
.yc_c00406{bottom:570.413333pt;}
.yb_c00406{bottom:591.613333pt;}
.ya_c00406{bottom:613.480000pt;}
.y9_c00406{bottom:634.813333pt;}
.y8_c00406{bottom:656.146667pt;}
.y7_c00406{bottom:677.746667pt;}
.y6_c00406{bottom:699.080000pt;}
.y5_c00406{bottom:720.680000pt;}
.y4_c00406{bottom:742.280000pt;}
.y3_c00406{bottom:763.613333pt;}
.y2_c00406{bottom:785.213333pt;}
.y1_c00406{bottom:816.280000pt;}
.h8_c00406{height:11.733399pt;}
.h9_c00406{height:38.937500pt;}
.h4_c00406{height:59.300781pt;}
.h3_c00406{height:70.664062pt;}
.h6_c00406{height:81.031250pt;}
.h5_c00406{height:87.783854pt;}
.h7_c00406{height:93.191046pt;}
.h2_c00406{height:102.996094pt;}
.h0_c00406{height:879.133333pt;}
.h1_c00406{height:879.333333pt;}
.w1_c00406{width:93.222667pt;}
.w0_c00406{width:597.333333pt;}
.x0_c00406{left:0.000000pt;}
.x6_c00406{left:41.600000pt;}
.x1_c00406{left:49.733333pt;}
.x2_c00406{left:50.666667pt;}
.x3_c00406{left:51.600000pt;}
.x4_c00406{left:53.066667pt;}
.x5_c00406{left:54.266667pt;}
.x7_c00406{left:55.200000pt;}
.x9_c00406{left:255.834880pt;}
.x8_c00406{left:356.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_fe541cdc5135231c444c8c1a.woff2')format("woff");}.ff1_c00407{font-family:ff1_c00407;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00407;src:url('chunks/assets/font_ab48360836c024064c78cf00.woff2')format("woff");}.ff2_c00407{font-family:ff2_c00407;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00407;src:url('chunks/assets/font_626c12bd2190e2785f76d6f3.woff2')format("woff");}.ff3_c00407{font-family:ff3_c00407;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00407;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff4_c00407{font-family:ff4_c00407;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00407;src:url('chunks/assets/font_18513369a717990a763bdcfc.woff2')format("woff");}.ff5_c00407{font-family:ff5_c00407;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00407;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c00407{font-family:ff6_c00407;line-height:1.219238;font-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_c00407{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m0_c00407{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00407{vertical-align:0.000000px;}
.v1_c00407{vertical-align:119.400000px;}
.ls3_c00407{letter-spacing:0.000000px;}
.ls1_c00407{letter-spacing:19.488000px;}
.ls4_c00407{letter-spacing:21.000000px;}
.ls2_c00407{letter-spacing:37.704000px;}
.ls0_c00407{letter-spacing:135.873000px;}
.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;}
}
.ws2_c00407{word-spacing:-60.048000px;}
.ws1_c00407{word-spacing:-34.737000px;}
.ws0_c00407{word-spacing:-17.352000px;}
.ws3_c00407{word-spacing:0.000000px;}
._1a_c00407{margin-left:-17.757000px;}
._18_c00407{margin-left:-14.040000px;}
._16_c00407{margin-left:-12.816000px;}
._14_c00407{margin-left:-11.160000px;}
._17_c00407{margin-left:-9.936000px;}
._19_c00407{margin-left:-8.190000px;}
._b_c00407{margin-left:-6.966000px;}
._12_c00407{margin-left:-5.301000px;}
._9_c00407{margin-left:-4.032000px;}
._2_c00407{margin-left:-2.754000px;}
._4_c00407{margin-left:-1.458000px;}
._8_c00407{width:1.296000px;}
._1_c00407{width:2.673000px;}
._0_c00407{width:3.807000px;}
._3_c00407{width:5.589000px;}
._5_c00407{width:6.804000px;}
._e_c00407{width:8.181000px;}
._6_c00407{width:10.044000px;}
._1c_c00407{width:11.289000px;}
._d_c00407{width:12.312000px;}
._a_c00407{width:13.416000px;}
._7_c00407{width:14.661000px;}
._13_c00407{width:16.317000px;}
._f_c00407{width:18.630000px;}
._11_c00407{width:23.004000px;}
._1b_c00407{width:25.596000px;}
._1d_c00407{width:28.431000px;}
._10_c00407{width:36.531000px;}
._15_c00407{width:223.254000px;}
._c_c00407{width:409.104000px;}
.fc2_c00407{color:transparent;}
.fc1_c00407{color:rgb(128,128,128);}
.fc0_c00407{color:rgb(0,0,0);}
.fs6_c00407{font-size:48.000000px;}
.fs2_c00407{font-size:57.000000px;}
.fs4_c00407{font-size:60.000000px;}
.fs1_c00407{font-size:72.000000px;}
.fs0_c00407{font-size:81.000000px;}
.fs5_c00407{font-size:108.000000px;}
.fs3_c00407{font-size:243.000000px;}
.y0_c00407{bottom:0.000000px;}
.y24_c00407{bottom:3.105000px;}
.y23_c00407{bottom:7.228355px;}
.y22_c00407{bottom:61.635000px;}
.y21_c00407{bottom:84.285000px;}
.y20_c00407{bottom:107.985000px;}
.y1f_c00407{bottom:132.285000px;}
.y1e_c00407{bottom:156.885000px;}
.y1d_c00407{bottom:180.885000px;}
.y1c_c00407{bottom:206.085000px;}
.y1b_c00407{bottom:229.785000px;}
.y1a_c00407{bottom:254.085000px;}
.y19_c00407{bottom:278.685000px;}
.y18_c00407{bottom:304.035000px;}
.y17_c00407{bottom:326.985000px;}
.y16_c00407{bottom:351.285000px;}
.y15_c00407{bottom:375.585000px;}
.y14_c00407{bottom:399.885000px;}
.y13_c00407{bottom:424.935000px;}
.y12_c00407{bottom:449.085000px;}
.y11_c00407{bottom:471.735000px;}
.y10_c00407{bottom:495.735000px;}
.ye_c00407{bottom:513.135000px;}
.yf_c00407{bottom:519.285000px;}
.yd_c00407{bottom:567.285000px;}
.yc_c00407{bottom:614.235000px;}
.yb_c00407{bottom:638.835000px;}
.ya_c00407{bottom:663.135000px;}
.y9_c00407{bottom:686.835000px;}
.y8_c00407{bottom:711.135000px;}
.y7_c00407{bottom:734.985000px;}
.y6_c00407{bottom:760.335000px;}
.y5_c00407{bottom:782.685000px;}
.y4_c00407{bottom:809.235000px;}
.y3_c00407{bottom:831.885000px;}
.y2_c00407{bottom:855.585000px;}
.y1_c00407{bottom:878.535000px;}
.h8_c00407{height:13.200074px;}
.h9_c00407{height:43.804688px;}
.h4_c00407{height:66.713379px;}
.h2_c00407{height:79.497070px;}
.h3_c00407{height:84.269531px;}
.h6_c00407{height:91.160156px;}
.h7_c00407{height:108.843750px;}
.h5_c00407{height:254.664000px;}
.h1_c00407{height:969.750000px;}
.h0_c00407{height:969.825000px;}
.w2_c00407{width:104.875500px;}
.w0_c00407{width:656.100000px;}
.w1_c00407{width:656.250000px;}
.x0_c00407{left:0.000000px;}
.x2_c00407{left:28.650000px;}
.x8_c00407{left:48.600000px;}
.x5_c00407{left:108.750000px;}
.xb_c00407{left:109.800000px;}
.xa_c00407{left:112.050000px;}
.x9_c00407{left:113.400000px;}
.x7_c00407{left:114.450000px;}
.x3_c00407{left:115.500000px;}
.x1_c00407{left:116.700000px;}
.x4_c00407{left:146.850000px;}
.x6_c00407{left:166.350000px;}
.xd_c00407{left:279.864258px;}
.xc_c00407{left:572.850000px;}
@media print{
.v0_c00407{vertical-align:0.000000pt;}
.v1_c00407{vertical-align:106.133333pt;}
.ls3_c00407{letter-spacing:0.000000pt;}
.ls1_c00407{letter-spacing:17.322667pt;}
.ls4_c00407{letter-spacing:18.666667pt;}
.ls2_c00407{letter-spacing:33.514667pt;}
.ls0_c00407{letter-spacing:120.776000pt;}
.ws2_c00407{word-spacing:-53.376000pt;}
.ws1_c00407{word-spacing:-30.877333pt;}
.ws0_c00407{word-spacing:-15.424000pt;}
.ws3_c00407{word-spacing:0.000000pt;}
._1a_c00407{margin-left:-15.784000pt;}
._18_c00407{margin-left:-12.480000pt;}
._16_c00407{margin-left:-11.392000pt;}
._14_c00407{margin-left:-9.920000pt;}
._17_c00407{margin-left:-8.832000pt;}
._19_c00407{margin-left:-7.280000pt;}
._b_c00407{margin-left:-6.192000pt;}
._12_c00407{margin-left:-4.712000pt;}
._9_c00407{margin-left:-3.584000pt;}
._2_c00407{margin-left:-2.448000pt;}
._4_c00407{margin-left:-1.296000pt;}
._8_c00407{width:1.152000pt;}
._1_c00407{width:2.376000pt;}
._0_c00407{width:3.384000pt;}
._3_c00407{width:4.968000pt;}
._5_c00407{width:6.048000pt;}
._e_c00407{width:7.272000pt;}
._6_c00407{width:8.928000pt;}
._1c_c00407{width:10.034667pt;}
._d_c00407{width:10.944000pt;}
._a_c00407{width:11.925333pt;}
._7_c00407{width:13.032000pt;}
._13_c00407{width:14.504000pt;}
._f_c00407{width:16.560000pt;}
._11_c00407{width:20.448000pt;}
._1b_c00407{width:22.752000pt;}
._1d_c00407{width:25.272000pt;}
._10_c00407{width:32.472000pt;}
._15_c00407{width:198.448000pt;}
._c_c00407{width:363.648000pt;}
.fs6_c00407{font-size:42.666667pt;}
.fs2_c00407{font-size:50.666667pt;}
.fs4_c00407{font-size:53.333333pt;}
.fs1_c00407{font-size:64.000000pt;}
.fs0_c00407{font-size:72.000000pt;}
.fs5_c00407{font-size:96.000000pt;}
.fs3_c00407{font-size:216.000000pt;}
.y0_c00407{bottom:0.000000pt;}
.y24_c00407{bottom:2.760000pt;}
.y23_c00407{bottom:6.425204pt;}
.y22_c00407{bottom:54.786667pt;}
.y21_c00407{bottom:74.920000pt;}
.y20_c00407{bottom:95.986667pt;}
.y1f_c00407{bottom:117.586667pt;}
.y1e_c00407{bottom:139.453333pt;}
.y1d_c00407{bottom:160.786667pt;}
.y1c_c00407{bottom:183.186667pt;}
.y1b_c00407{bottom:204.253333pt;}
.y1a_c00407{bottom:225.853333pt;}
.y19_c00407{bottom:247.720000pt;}
.y18_c00407{bottom:270.253333pt;}
.y17_c00407{bottom:290.653333pt;}
.y16_c00407{bottom:312.253333pt;}
.y15_c00407{bottom:333.853333pt;}
.y14_c00407{bottom:355.453333pt;}
.y13_c00407{bottom:377.720000pt;}
.y12_c00407{bottom:399.186667pt;}
.y11_c00407{bottom:419.320000pt;}
.y10_c00407{bottom:440.653333pt;}
.ye_c00407{bottom:456.120000pt;}
.yf_c00407{bottom:461.586667pt;}
.yd_c00407{bottom:504.253333pt;}
.yc_c00407{bottom:545.986667pt;}
.yb_c00407{bottom:567.853333pt;}
.ya_c00407{bottom:589.453333pt;}
.y9_c00407{bottom:610.520000pt;}
.y8_c00407{bottom:632.120000pt;}
.y7_c00407{bottom:653.320000pt;}
.y6_c00407{bottom:675.853333pt;}
.y5_c00407{bottom:695.720000pt;}
.y4_c00407{bottom:719.320000pt;}
.y3_c00407{bottom:739.453333pt;}
.y2_c00407{bottom:760.520000pt;}
.y1_c00407{bottom:780.920000pt;}
.h8_c00407{height:11.733399pt;}
.h9_c00407{height:38.937500pt;}
.h4_c00407{height:59.300781pt;}
.h2_c00407{height:70.664062pt;}
.h3_c00407{height:74.906250pt;}
.h6_c00407{height:81.031250pt;}
.h7_c00407{height:96.750000pt;}
.h5_c00407{height:226.368000pt;}
.h1_c00407{height:862.000000pt;}
.h0_c00407{height:862.066667pt;}
.w2_c00407{width:93.222667pt;}
.w0_c00407{width:583.200000pt;}
.w1_c00407{width:583.333333pt;}
.x0_c00407{left:0.000000pt;}
.x2_c00407{left:25.466667pt;}
.x8_c00407{left:43.200000pt;}
.x5_c00407{left:96.666667pt;}
.xb_c00407{left:97.600000pt;}
.xa_c00407{left:99.600000pt;}
.x9_c00407{left:100.800000pt;}
.x7_c00407{left:101.733333pt;}
.x3_c00407{left:102.666667pt;}
.x1_c00407{left:103.733333pt;}
.x4_c00407{left:130.533333pt;}
.x6_c00407{left:147.866667pt;}
.xd_c00407{left:248.768229pt;}
.xc_c00407{left:509.200000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_98237affdbe4e467d5858824.woff2')format("woff");}.ff1_c00408{font-family:ff1_c00408;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00408;src:url('chunks/assets/font_4c90add470487c2d25ea248f.woff2')format("woff");}.ff2_c00408{font-family:ff2_c00408;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00408;src:url('chunks/assets/font_401860a503828b59d31e0f82.woff2')format("woff");}.ff3_c00408{font-family:ff3_c00408;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00408;src:url('chunks/assets/font_13b48bbbebbb10089f059814.woff2')format("woff");}.ff4_c00408{font-family:ff4_c00408;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00408;src:url('chunks/assets/font_e5d75ab403abde3eb381a8b7.woff2')format("woff");}.ff5_c00408{font-family:ff5_c00408;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00408;src:url('chunks/assets/font_1a46a295f00795f28216fcef.woff2')format("woff");}.ff6_c00408{font-family:ff6_c00408;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00408;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c00408{font-family:ff7_c00408;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00408{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00408{vertical-align:0.000000px;}
.ls1_c00408{letter-spacing:0.000000px;}
.ls0_c00408{letter-spacing:3.000000px;}
.sc__c00408{text-shadow:none;}
.sc0_c00408{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00408{-webkit-text-stroke:0px transparent;}
.sc0_c00408{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00408{word-spacing:-79.356000px;}
.ws0_c00408{word-spacing:-23.859000px;}
.ws2_c00408{word-spacing:-18.798000px;}
.ws3_c00408{word-spacing:-18.405000px;}
.ws4_c00408{word-spacing:0.000000px;}
._2_c00408{margin-left:-18.600000px;}
._14_c00408{margin-left:-12.441000px;}
._5_c00408{margin-left:-7.920000px;}
._c_c00408{margin-left:-6.732000px;}
._6_c00408{margin-left:-5.544000px;}
._8_c00408{margin-left:-4.521000px;}
._b_c00408{margin-left:-3.465000px;}
._9_c00408{margin-left:-2.409000px;}
._a_c00408{margin-left:-1.287000px;}
._1a_c00408{width:1.014000px;}
._1_c00408{width:2.046000px;}
._10_c00408{width:3.096000px;}
._15_c00408{width:4.137000px;}
._12_c00408{width:5.160000px;}
._0_c00408{width:6.930000px;}
._e_c00408{width:8.826000px;}
._f_c00408{width:10.110000px;}
._7_c00408{width:11.979000px;}
._3_c00408{width:13.167000px;}
._13_c00408{width:15.087000px;}
._19_c00408{width:16.188000px;}
._11_c00408{width:18.552000px;}
._4_c00408{width:20.394000px;}
._1b_c00408{width:21.546000px;}
._17_c00408{width:22.878000px;}
._1e_c00408{width:24.399000px;}
._1c_c00408{width:25.791000px;}
._16_c00408{width:27.936000px;}
._d_c00408{width:33.990000px;}
._18_c00408{width:41.325000px;}
._1d_c00408{width:42.468000px;}
._1f_c00408{width:293.172000px;}
.fc2_c00408{color:transparent;}
.fc1_c00408{color:rgb(128,128,128);}
.fc0_c00408{color:rgb(0,0,0);}
.fs5_c00408{font-size:48.000000px;}
.fs2_c00408{font-size:57.000000px;}
.fs3_c00408{font-size:78.000000px;}
.fs4_c00408{font-size:81.000000px;}
.fs0_c00408{font-size:99.000000px;}
.fs1_c00408{font-size:102.000000px;}
.y0_c00408{bottom:0.000000px;}
.y26_c00408{bottom:3.105000px;}
.y25_c00408{bottom:7.228371px;}
.y24_c00408{bottom:62.115000px;}
.y23_c00408{bottom:86.115000px;}
.y22_c00408{bottom:111.465000px;}
.y21_c00408{bottom:136.065000px;}
.y20_c00408{bottom:160.065000px;}
.y1f_c00408{bottom:184.065000px;}
.y1e_c00408{bottom:208.365000px;}
.y1d_c00408{bottom:232.665000px;}
.y1c_c00408{bottom:256.815000px;}
.y1b_c00408{bottom:280.815000px;}
.y1a_c00408{bottom:305.115000px;}
.y19_c00408{bottom:328.515000px;}
.y18_c00408{bottom:352.815000px;}
.y17_c00408{bottom:376.965000px;}
.y16_c00408{bottom:400.665000px;}
.y15_c00408{bottom:424.965000px;}
.y14_c00408{bottom:448.515000px;}
.y13_c00408{bottom:472.815000px;}
.y12_c00408{bottom:496.515000px;}
.y11_c00408{bottom:521.415000px;}
.y10_c00408{bottom:544.365000px;}
.yf_c00408{bottom:568.065000px;}
.ye_c00408{bottom:591.765000px;}
.yd_c00408{bottom:615.465000px;}
.yc_c00408{bottom:639.315000px;}
.yb_c00408{bottom:663.165000px;}
.ya_c00408{bottom:686.865000px;}
.y9_c00408{bottom:711.165000px;}
.y8_c00408{bottom:735.165000px;}
.y7_c00408{bottom:759.165000px;}
.y6_c00408{bottom:783.015000px;}
.y5_c00408{bottom:807.015000px;}
.y4_c00408{bottom:831.015000px;}
.y3_c00408{bottom:855.015000px;}
.y2_c00408{bottom:879.165000px;}
.y1_c00408{bottom:912.915000px;}
.h6_c00408{height:13.200074px;}
.h7_c00408{height:43.804688px;}
.h3_c00408{height:57.445312px;}
.h5_c00408{height:79.497070px;}
.h4_c00408{height:98.756836px;}
.h2_c00408{height:115.870605px;}
.h0_c00408{height:989.025000px;}
.h1_c00408{height:989.250000px;}
.w1_c00408{width:104.875500px;}
.w0_c00408{width:672.000000px;}
.x0_c00408{left:0.000000px;}
.x3_c00408{left:51.600000px;}
.x2_c00408{left:53.100000px;}
.x1_c00408{left:55.350000px;}
.x5_c00408{left:287.814240px;}
.x4_c00408{left:380.700000px;}
@media print{
.v0_c00408{vertical-align:0.000000pt;}
.ls1_c00408{letter-spacing:0.000000pt;}
.ls0_c00408{letter-spacing:2.666667pt;}
.ws1_c00408{word-spacing:-70.538667pt;}
.ws0_c00408{word-spacing:-21.208000pt;}
.ws2_c00408{word-spacing:-16.709333pt;}
.ws3_c00408{word-spacing:-16.360000pt;}
.ws4_c00408{word-spacing:0.000000pt;}
._2_c00408{margin-left:-16.533333pt;}
._14_c00408{margin-left:-11.058667pt;}
._5_c00408{margin-left:-7.040000pt;}
._c_c00408{margin-left:-5.984000pt;}
._6_c00408{margin-left:-4.928000pt;}
._8_c00408{margin-left:-4.018667pt;}
._b_c00408{margin-left:-3.080000pt;}
._9_c00408{margin-left:-2.141333pt;}
._a_c00408{margin-left:-1.144000pt;}
._1a_c00408{width:0.901333pt;}
._1_c00408{width:1.818667pt;}
._10_c00408{width:2.752000pt;}
._15_c00408{width:3.677333pt;}
._12_c00408{width:4.586667pt;}
._0_c00408{width:6.160000pt;}
._e_c00408{width:7.845333pt;}
._f_c00408{width:8.986667pt;}
._7_c00408{width:10.648000pt;}
._3_c00408{width:11.704000pt;}
._13_c00408{width:13.410667pt;}
._19_c00408{width:14.389333pt;}
._11_c00408{width:16.490667pt;}
._4_c00408{width:18.128000pt;}
._1b_c00408{width:19.152000pt;}
._17_c00408{width:20.336000pt;}
._1e_c00408{width:21.688000pt;}
._1c_c00408{width:22.925333pt;}
._16_c00408{width:24.832000pt;}
._d_c00408{width:30.213333pt;}
._18_c00408{width:36.733333pt;}
._1d_c00408{width:37.749333pt;}
._1f_c00408{width:260.597333pt;}
.fs5_c00408{font-size:42.666667pt;}
.fs2_c00408{font-size:50.666667pt;}
.fs3_c00408{font-size:69.333333pt;}
.fs4_c00408{font-size:72.000000pt;}
.fs0_c00408{font-size:88.000000pt;}
.fs1_c00408{font-size:90.666667pt;}
.y0_c00408{bottom:0.000000pt;}
.y26_c00408{bottom:2.760000pt;}
.y25_c00408{bottom:6.425219pt;}
.y24_c00408{bottom:55.213333pt;}
.y23_c00408{bottom:76.546667pt;}
.y22_c00408{bottom:99.080000pt;}
.y21_c00408{bottom:120.946667pt;}
.y20_c00408{bottom:142.280000pt;}
.y1f_c00408{bottom:163.613333pt;}
.y1e_c00408{bottom:185.213333pt;}
.y1d_c00408{bottom:206.813333pt;}
.y1c_c00408{bottom:228.280000pt;}
.y1b_c00408{bottom:249.613333pt;}
.y1a_c00408{bottom:271.213333pt;}
.y19_c00408{bottom:292.013333pt;}
.y18_c00408{bottom:313.613333pt;}
.y17_c00408{bottom:335.080000pt;}
.y16_c00408{bottom:356.146667pt;}
.y15_c00408{bottom:377.746667pt;}
.y14_c00408{bottom:398.680000pt;}
.y13_c00408{bottom:420.280000pt;}
.y12_c00408{bottom:441.346667pt;}
.y11_c00408{bottom:463.480000pt;}
.y10_c00408{bottom:483.880000pt;}
.yf_c00408{bottom:504.946667pt;}
.ye_c00408{bottom:526.013333pt;}
.yd_c00408{bottom:547.080000pt;}
.yc_c00408{bottom:568.280000pt;}
.yb_c00408{bottom:589.480000pt;}
.ya_c00408{bottom:610.546667pt;}
.y9_c00408{bottom:632.146667pt;}
.y8_c00408{bottom:653.480000pt;}
.y7_c00408{bottom:674.813333pt;}
.y6_c00408{bottom:696.013333pt;}
.y5_c00408{bottom:717.346667pt;}
.y4_c00408{bottom:738.680000pt;}
.y3_c00408{bottom:760.013333pt;}
.y2_c00408{bottom:781.480000pt;}
.y1_c00408{bottom:811.480000pt;}
.h6_c00408{height:11.733399pt;}
.h7_c00408{height:38.937500pt;}
.h3_c00408{height:51.062500pt;}
.h5_c00408{height:70.664062pt;}
.h4_c00408{height:87.783854pt;}
.h2_c00408{height:102.996094pt;}
.h0_c00408{height:879.133333pt;}
.h1_c00408{height:879.333333pt;}
.w1_c00408{width:93.222667pt;}
.w0_c00408{width:597.333333pt;}
.x0_c00408{left:0.000000pt;}
.x3_c00408{left:45.866667pt;}
.x2_c00408{left:47.200000pt;}
.x1_c00408{left:49.200000pt;}
.x5_c00408{left:255.834880pt;}
.x4_c00408{left:338.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_707c01433e6cc10ea5de3526.woff2')format("woff");}.ff1_c00409{font-family:ff1_c00409;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00409;src:url('chunks/assets/font_c63da397dbfd293610b1de52.woff2')format("woff");}.ff2_c00409{font-family:ff2_c00409;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00409;src:url('chunks/assets/font_c93b33d5e0ac22bc919d4c21.woff2')format("woff");}.ff3_c00409{font-family:ff3_c00409;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00409;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff4_c00409{font-family:ff4_c00409;line-height:1.219238;font-style: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;}
.ls1_c00409{letter-spacing:0.000000px;}
.ls0_c00409{letter-spacing:3.000000px;}
.sc__c00409{text-shadow:none;}
.sc0_c00409{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00409{-webkit-text-stroke:0px transparent;}
.sc0_c00409{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00409{word-spacing:-31.500000px;}
.ws2_c00409{word-spacing:-20.250000px;}
.ws0_c00409{word-spacing:-18.903000px;}
.ws3_c00409{word-spacing:0.000000px;}
._14_c00409{margin-left:-16.701000px;}
._13_c00409{margin-left:-7.674000px;}
._4_c00409{margin-left:-6.384000px;}
._b_c00409{margin-left:-4.425000px;}
._11_c00409{margin-left:-2.850000px;}
._12_c00409{margin-left:-1.368000px;}
._a_c00409{width:1.653000px;}
._6_c00409{width:2.736000px;}
._5_c00409{width:4.218000px;}
._c_c00409{width:5.244000px;}
._0_c00409{width:6.498000px;}
._2_c00409{width:8.037000px;}
._1_c00409{width:9.918000px;}
._3_c00409{width:11.058000px;}
._8_c00409{width:12.654000px;}
._7_c00409{width:13.794000px;}
._f_c00409{width:15.561000px;}
._9_c00409{width:18.525000px;}
._e_c00409{width:20.235000px;}
._1a_c00409{width:21.375000px;}
._10_c00409{width:22.572000px;}
._16_c00409{width:24.324000px;}
._18_c00409{width:26.277000px;}
._17_c00409{width:35.325000px;}
._19_c00409{width:39.045000px;}
._1b_c00409{width:45.258000px;}
._15_c00409{width:107.319000px;}
._d_c00409{width:176.304000px;}
.fc2_c00409{color:transparent;}
.fc1_c00409{color:rgb(128,128,128);}
.fc0_c00409{color:rgb(0,0,0);}
.fs2_c00409{font-size:48.000000px;}
.fs0_c00409{font-size:57.000000px;}
.fs1_c00409{font-size:81.000000px;}
.y0_c00409{bottom:0.000000px;}
.y25_c00409{bottom:3.105000px;}
.y24_c00409{bottom:7.228357px;}
.y23_c00409{bottom:47.580000px;}
.y22_c00409{bottom:70.230000px;}
.y21_c00409{bottom:95.280000px;}
.y20_c00409{bottom:120.180000px;}
.y1f_c00409{bottom:144.480000px;}
.y1e_c00409{bottom:169.080000px;}
.y1d_c00409{bottom:193.080000px;}
.y1c_c00409{bottom:217.380000px;}
.y1b_c00409{bottom:242.430000px;}
.y1a_c00409{bottom:266.580000px;}
.y19_c00409{bottom:291.030000px;}
.y18_c00409{bottom:315.330000px;}
.y17_c00409{bottom:339.630000px;}
.y16_c00409{bottom:363.930000px;}
.y15_c00409{bottom:388.530000px;}
.y14_c00409{bottom:413.130000px;}
.y13_c00409{bottom:437.430000px;}
.y12_c00409{bottom:461.130000px;}
.y11_c00409{bottom:485.730000px;}
.y10_c00409{bottom:509.280000px;}
.yf_c00409{bottom:532.980000px;}
.ye_c00409{bottom:556.980000px;}
.yd_c00409{bottom:581.280000px;}
.yc_c00409{bottom:605.430000px;}
.yb_c00409{bottom:629.130000px;}
.ya_c00409{bottom:653.730000px;}
.y9_c00409{bottom:677.730000px;}
.y8_c00409{bottom:701.730000px;}
.y7_c00409{bottom:725.730000px;}
.y6_c00409{bottom:750.330000px;}
.y5_c00409{bottom:774.180000px;}
.y4_c00409{bottom:798.180000px;}
.y3_c00409{bottom:821.130000px;}
.y2_c00409{bottom:846.480000px;}
.y1_c00409{bottom:870.480000px;}
.h4_c00409{height:13.200074px;}
.h5_c00409{height:43.804688px;}
.h2_c00409{height:57.445312px;}
.h3_c00409{height:79.497070px;}
.h1_c00409{height:965.250000px;}
.h0_c00409{height:965.550000px;}
.w2_c00409{width:104.875500px;}
.w1_c00409{width:653.250000px;}
.w0_c00409{width:653.400000px;}
.x0_c00409{left:0.000000px;}
.x2_c00409{left:34.050000px;}
.x4_c00409{left:122.400000px;}
.x3_c00409{left:123.750000px;}
.x1_c00409{left:124.800000px;}
.x8_c00409{left:126.150000px;}
.x7_c00409{left:127.950000px;}
.x5_c00409{left:148.500000px;}
.x6_c00409{left:152.100000px;}
.xa_c00409{left:278.514267px;}
.x9_c00409{left:587.250000px;}
@media print{
.v0_c00409{vertical-align:0.000000pt;}
.ls1_c00409{letter-spacing:0.000000pt;}
.ls0_c00409{letter-spacing:2.666667pt;}
.ws1_c00409{word-spacing:-28.000000pt;}
.ws2_c00409{word-spacing:-18.000000pt;}
.ws0_c00409{word-spacing:-16.802667pt;}
.ws3_c00409{word-spacing:0.000000pt;}
._14_c00409{margin-left:-14.845333pt;}
._13_c00409{margin-left:-6.821333pt;}
._4_c00409{margin-left:-5.674667pt;}
._b_c00409{margin-left:-3.933333pt;}
._11_c00409{margin-left:-2.533333pt;}
._12_c00409{margin-left:-1.216000pt;}
._a_c00409{width:1.469333pt;}
._6_c00409{width:2.432000pt;}
._5_c00409{width:3.749333pt;}
._c_c00409{width:4.661333pt;}
._0_c00409{width:5.776000pt;}
._2_c00409{width:7.144000pt;}
._1_c00409{width:8.816000pt;}
._3_c00409{width:9.829333pt;}
._8_c00409{width:11.248000pt;}
._7_c00409{width:12.261333pt;}
._f_c00409{width:13.832000pt;}
._9_c00409{width:16.466667pt;}
._e_c00409{width:17.986667pt;}
._1a_c00409{width:19.000000pt;}
._10_c00409{width:20.064000pt;}
._16_c00409{width:21.621333pt;}
._18_c00409{width:23.357333pt;}
._17_c00409{width:31.400000pt;}
._19_c00409{width:34.706667pt;}
._1b_c00409{width:40.229333pt;}
._15_c00409{width:95.394667pt;}
._d_c00409{width:156.714667pt;}
.fs2_c00409{font-size:42.666667pt;}
.fs0_c00409{font-size:50.666667pt;}
.fs1_c00409{font-size:72.000000pt;}
.y0_c00409{bottom:0.000000pt;}
.y25_c00409{bottom:2.760000pt;}
.y24_c00409{bottom:6.425206pt;}
.y23_c00409{bottom:42.293333pt;}
.y22_c00409{bottom:62.426667pt;}
.y21_c00409{bottom:84.693333pt;}
.y20_c00409{bottom:106.826667pt;}
.y1f_c00409{bottom:128.426667pt;}
.y1e_c00409{bottom:150.293333pt;}
.y1d_c00409{bottom:171.626667pt;}
.y1c_c00409{bottom:193.226667pt;}
.y1b_c00409{bottom:215.493333pt;}
.y1a_c00409{bottom:236.960000pt;}
.y19_c00409{bottom:258.693333pt;}
.y18_c00409{bottom:280.293333pt;}
.y17_c00409{bottom:301.893333pt;}
.y16_c00409{bottom:323.493333pt;}
.y15_c00409{bottom:345.360000pt;}
.y14_c00409{bottom:367.226667pt;}
.y13_c00409{bottom:388.826667pt;}
.y12_c00409{bottom:409.893333pt;}
.y11_c00409{bottom:431.760000pt;}
.y10_c00409{bottom:452.693333pt;}
.yf_c00409{bottom:473.760000pt;}
.ye_c00409{bottom:495.093333pt;}
.yd_c00409{bottom:516.693333pt;}
.yc_c00409{bottom:538.160000pt;}
.yb_c00409{bottom:559.226667pt;}
.ya_c00409{bottom:581.093333pt;}
.y9_c00409{bottom:602.426667pt;}
.y8_c00409{bottom:623.760000pt;}
.y7_c00409{bottom:645.093333pt;}
.y6_c00409{bottom:666.960000pt;}
.y5_c00409{bottom:688.160000pt;}
.y4_c00409{bottom:709.493333pt;}
.y3_c00409{bottom:729.893333pt;}
.y2_c00409{bottom:752.426667pt;}
.y1_c00409{bottom:773.760000pt;}
.h4_c00409{height:11.733399pt;}
.h5_c00409{height:38.937500pt;}
.h2_c00409{height:51.062500pt;}
.h3_c00409{height:70.664062pt;}
.h1_c00409{height:858.000000pt;}
.h0_c00409{height:858.266667pt;}
.w2_c00409{width:93.222667pt;}
.w1_c00409{width:580.666667pt;}
.w0_c00409{width:580.800000pt;}
.x0_c00409{left:0.000000pt;}
.x2_c00409{left:30.266667pt;}
.x4_c00409{left:108.800000pt;}
.x3_c00409{left:110.000000pt;}
.x1_c00409{left:110.933333pt;}
.x8_c00409{left:112.133333pt;}
.x7_c00409{left:113.733333pt;}
.x5_c00409{left:132.000000pt;}
.x6_c00409{left:135.200000pt;}
.xa_c00409{left:247.568237pt;}
.x9_c00409{left:522.000000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e9eba749221c3b3fd70dced8.woff2')format("woff");}.ff1_c00410{font-family:ff1_c00410;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00410;src:url('chunks/assets/font_f37bb19a9c2074bbb3ed13d7.woff2')format("woff");}.ff2_c00410{font-family:ff2_c00410;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00410;src:url('chunks/assets/font_a698703180f4bb14e952cd6f.woff2')format("woff");}.ff3_c00410{font-family:ff3_c00410;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00410;src:url('chunks/assets/font_8be5d5151d09d1874e0c92b3.woff2')format("woff");}.ff4_c00410{font-family:ff4_c00410;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00410;src:url('chunks/assets/font_a92d6d96ace52f5e59b80424.woff2')format("woff");}.ff5_c00410{font-family:ff5_c00410;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00410;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c00410{font-family:ff6_c00410;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00410{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00410{vertical-align:-84.600000px;}
.v0_c00410{vertical-align:0.000000px;}
.ls0_c00410{letter-spacing:0.000000px;}
.ls1_c00410{letter-spacing:3.000000px;}
.sc__c00410{text-shadow:none;}
.sc0_c00410{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00410{-webkit-text-stroke:0px transparent;}
.sc0_c00410{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00410{word-spacing:-59.184000px;}
.ws1_c00410{word-spacing:-20.250000px;}
.ws2_c00410{word-spacing:0.000000px;}
._1a_c00410{margin-left:-19.683000px;}
._18_c00410{margin-left:-11.664000px;}
._8_c00410{margin-left:-10.125000px;}
._14_c00410{margin-left:-8.343000px;}
._2_c00410{margin-left:-6.804000px;}
._a_c00410{margin-left:-5.751000px;}
._4_c00410{margin-left:-4.698000px;}
._16_c00410{margin-left:-3.645000px;}
._5_c00410{margin-left:-2.430000px;}
._6_c00410{margin-left:-1.215000px;}
._7_c00410{width:1.134000px;}
._0_c00410{width:2.997000px;}
._1_c00410{width:4.293000px;}
._3_c00410{width:6.318000px;}
._d_c00410{width:7.857000px;}
._c_c00410{width:9.234000px;}
._10_c00410{width:11.097000px;}
._f_c00410{width:12.150000px;}
._9_c00410{width:13.203000px;}
._11_c00410{width:15.228000px;}
._b_c00410{width:16.929000px;}
._15_c00410{width:18.144000px;}
._12_c00410{width:24.300000px;}
._e_c00410{width:26.244000px;}
._13_c00410{width:27.540000px;}
._19_c00410{width:48.180000px;}
._17_c00410{width:67.182000px;}
._1b_c00410{width:1394.334000px;}
.fc2_c00410{color:transparent;}
.fc1_c00410{color:rgb(128,128,128);}
.fc0_c00410{color:rgb(0,0,0);}
.fs4_c00410{font-size:48.000000px;}
.fs2_c00410{font-size:66.000000px;}
.fs1_c00410{font-size:72.000000px;}
.fs3_c00410{font-size:78.000000px;}
.fs0_c00410{font-size:81.000000px;}
.y0_c00410{bottom:0.000000px;}
.y24_c00410{bottom:3.105000px;}
.y23_c00410{bottom:7.228355px;}
.y22_c00410{bottom:77.835000px;}
.y21_c00410{bottom:104.235000px;}
.y20_c00410{bottom:129.285000px;}
.y1f_c00410{bottom:153.435000px;}
.y1e_c00410{bottom:177.435000px;}
.y1d_c00410{bottom:201.735000px;}
.y1c_c00410{bottom:226.335000px;}
.y1b_c00410{bottom:250.635000px;}
.y1a_c00410{bottom:275.085000px;}
.y19_c00410{bottom:299.385000px;}
.y18_c00410{bottom:323.685000px;}
.y17_c00410{bottom:347.985000px;}
.y16_c00410{bottom:372.135000px;}
.y15_c00410{bottom:396.135000px;}
.y14_c00410{bottom:420.135000px;}
.y13_c00410{bottom:444.135000px;}
.y12_c00410{bottom:468.135000px;}
.y11_c00410{bottom:492.285000px;}
.y10_c00410{bottom:516.585000px;}
.yf_c00410{bottom:540.285000px;}
.ye_c00410{bottom:563.985000px;}
.yd_c00410{bottom:587.535000px;}
.yc_c00410{bottom:611.535000px;}
.yb_c00410{bottom:635.385000px;}
.ya_c00410{bottom:659.385000px;}
.y9_c00410{bottom:683.385000px;}
.y8_c00410{bottom:707.385000px;}
.y7_c00410{bottom:732.585000px;}
.y6_c00410{bottom:755.535000px;}
.y5_c00410{bottom:779.835000px;}
.y4_c00410{bottom:803.835000px;}
.y3_c00410{bottom:828.135000px;}
.y2_c00410{bottom:852.135000px;}
.y1_c00410{bottom:876.135000px;}
.h5_c00410{height:13.200074px;}
.h6_c00410{height:43.804688px;}
.h2_c00410{height:79.497070px;}
.h3_c00410{height:91.160156px;}
.h4_c00410{height:98.756836px;}
.h0_c00410{height:977.925000px;}
.h1_c00410{height:978.000000px;}
.w2_c00410{width:104.875500px;}
.w0_c00410{width:664.200000px;}
.w1_c00410{width:664.500000px;}
.x0_c00410{left:0.000000px;}
.x5_c00410{left:25.350000px;}
.x6_c00410{left:55.050000px;}
.x4_c00410{left:56.400000px;}
.x3_c00410{left:57.450000px;}
.x1_c00410{left:58.950000px;}
.x2_c00410{left:60.000000px;}
.x7_c00410{left:283.914230px;}
@media print{
.v1_c00410{vertical-align:-75.200000pt;}
.v0_c00410{vertical-align:0.000000pt;}
.ls0_c00410{letter-spacing:0.000000pt;}
.ls1_c00410{letter-spacing:2.666667pt;}
.ws0_c00410{word-spacing:-52.608000pt;}
.ws1_c00410{word-spacing:-18.000000pt;}
.ws2_c00410{word-spacing:0.000000pt;}
._1a_c00410{margin-left:-17.496000pt;}
._18_c00410{margin-left:-10.368000pt;}
._8_c00410{margin-left:-9.000000pt;}
._14_c00410{margin-left:-7.416000pt;}
._2_c00410{margin-left:-6.048000pt;}
._a_c00410{margin-left:-5.112000pt;}
._4_c00410{margin-left:-4.176000pt;}
._16_c00410{margin-left:-3.240000pt;}
._5_c00410{margin-left:-2.160000pt;}
._6_c00410{margin-left:-1.080000pt;}
._7_c00410{width:1.008000pt;}
._0_c00410{width:2.664000pt;}
._1_c00410{width:3.816000pt;}
._3_c00410{width:5.616000pt;}
._d_c00410{width:6.984000pt;}
._c_c00410{width:8.208000pt;}
._10_c00410{width:9.864000pt;}
._f_c00410{width:10.800000pt;}
._9_c00410{width:11.736000pt;}
._11_c00410{width:13.536000pt;}
._b_c00410{width:15.048000pt;}
._15_c00410{width:16.128000pt;}
._12_c00410{width:21.600000pt;}
._e_c00410{width:23.328000pt;}
._13_c00410{width:24.480000pt;}
._19_c00410{width:42.826667pt;}
._17_c00410{width:59.717333pt;}
._1b_c00410{width:1239.408000pt;}
.fs4_c00410{font-size:42.666667pt;}
.fs2_c00410{font-size:58.666667pt;}
.fs1_c00410{font-size:64.000000pt;}
.fs3_c00410{font-size:69.333333pt;}
.fs0_c00410{font-size:72.000000pt;}
.y0_c00410{bottom:0.000000pt;}
.y24_c00410{bottom:2.760000pt;}
.y23_c00410{bottom:6.425204pt;}
.y22_c00410{bottom:69.186667pt;}
.y21_c00410{bottom:92.653333pt;}
.y20_c00410{bottom:114.920000pt;}
.y1f_c00410{bottom:136.386667pt;}
.y1e_c00410{bottom:157.720000pt;}
.y1d_c00410{bottom:179.320000pt;}
.y1c_c00410{bottom:201.186667pt;}
.y1b_c00410{bottom:222.786667pt;}
.y1a_c00410{bottom:244.520000pt;}
.y19_c00410{bottom:266.120000pt;}
.y18_c00410{bottom:287.720000pt;}
.y17_c00410{bottom:309.320000pt;}
.y16_c00410{bottom:330.786667pt;}
.y15_c00410{bottom:352.120000pt;}
.y14_c00410{bottom:373.453333pt;}
.y13_c00410{bottom:394.786667pt;}
.y12_c00410{bottom:416.120000pt;}
.y11_c00410{bottom:437.586667pt;}
.y10_c00410{bottom:459.186667pt;}
.yf_c00410{bottom:480.253333pt;}
.ye_c00410{bottom:501.320000pt;}
.yd_c00410{bottom:522.253333pt;}
.yc_c00410{bottom:543.586667pt;}
.yb_c00410{bottom:564.786667pt;}
.ya_c00410{bottom:586.120000pt;}
.y9_c00410{bottom:607.453333pt;}
.y8_c00410{bottom:628.786667pt;}
.y7_c00410{bottom:651.186667pt;}
.y6_c00410{bottom:671.586667pt;}
.y5_c00410{bottom:693.186667pt;}
.y4_c00410{bottom:714.520000pt;}
.y3_c00410{bottom:736.120000pt;}
.y2_c00410{bottom:757.453333pt;}
.y1_c00410{bottom:778.786667pt;}
.h5_c00410{height:11.733399pt;}
.h6_c00410{height:38.937500pt;}
.h2_c00410{height:70.664062pt;}
.h3_c00410{height:81.031250pt;}
.h4_c00410{height:87.783854pt;}
.h0_c00410{height:869.266667pt;}
.h1_c00410{height:869.333333pt;}
.w2_c00410{width:93.222667pt;}
.w0_c00410{width:590.400000pt;}
.w1_c00410{width:590.666667pt;}
.x0_c00410{left:0.000000pt;}
.x5_c00410{left:22.533333pt;}
.x6_c00410{left:48.933333pt;}
.x4_c00410{left:50.133333pt;}
.x3_c00410{left:51.066667pt;}
.x1_c00410{left:52.400000pt;}
.x2_c00410{left:53.333333pt;}
.x7_c00410{left:252.368205pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d9e397ec7a17c93a736043d4.woff2')format("woff");}.ff1_c00411{font-family:ff1_c00411;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00411;src:url('chunks/assets/font_b2cf3bb3bb442013fdc29359.woff2')format("woff");}.ff2_c00411{font-family:ff2_c00411;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00411;src:url('chunks/assets/font_47e04214c6cea38391a21a64.woff2')format("woff");}.ff3_c00411{font-family:ff3_c00411;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00411;src:url('chunks/assets/font_818cff4bddd38aad4b5d0932.woff2')format("woff");}.ff4_c00411{font-family:ff4_c00411;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00411;src:url('chunks/assets/font_32919d31891ddbc46861cf7a.woff2')format("woff");}.ff5_c00411{font-family:ff5_c00411;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00411;src:url('chunks/assets/font_3cd563e019854739e0d6a070.woff2')format("woff");}.ff6_c00411{font-family:ff6_c00411;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00411;src:url('chunks/assets/font_ea520a76a846cf07c7182d6e.woff2')format("woff");}.ff7_c00411{font-family:ff7_c00411;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00411;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff8_c00411{font-family:ff8_c00411;line-height:1.219238;font-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_c00411{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,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;}
.ls4_c00411{letter-spacing:0.000000px;}
.ls0_c00411{letter-spacing:3.000000px;}
.ls2_c00411{letter-spacing:3.150000px;}
.ls1_c00411{letter-spacing:10.950000px;}
.ls3_c00411{letter-spacing:16.602000px;}
.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;}
}
.ws2_c00411{word-spacing:-46.854000px;}
.ws3_c00411{word-spacing:-27.000000px;}
.ws1_c00411{word-spacing:-20.250000px;}
.ws0_c00411{word-spacing:-17.250000px;}
.ws4_c00411{word-spacing:0.000000px;}
._1b_c00411{margin-left:-22.191000px;}
._1a_c00411{margin-left:-20.898000px;}
._a_c00411{margin-left:-17.250000px;}
._12_c00411{margin-left:-14.145000px;}
._13_c00411{margin-left:-12.489000px;}
._16_c00411{margin-left:-10.377000px;}
._17_c00411{margin-left:-9.255000px;}
._21_c00411{margin-left:-7.860000px;}
._15_c00411{margin-left:-6.435000px;}
._7_c00411{margin-left:-5.244000px;}
._b_c00411{margin-left:-3.657000px;}
._14_c00411{margin-left:-1.221000px;}
._9_c00411{width:1.035000px;}
._6_c00411{width:3.036000px;}
._8_c00411{width:4.071000px;}
._10_c00411{width:5.112000px;}
._1_c00411{width:6.141000px;}
._2_c00411{width:7.659000px;}
._18_c00411{width:8.682000px;}
._4_c00411{width:9.729000px;}
._5_c00411{width:10.833000px;}
._0_c00411{width:12.006000px;}
._1e_c00411{width:13.032000px;}
._3_c00411{width:14.076000px;}
._d_c00411{width:15.354000px;}
._19_c00411{width:18.660000px;}
._11_c00411{width:19.830000px;}
._f_c00411{width:20.886000px;}
._c_c00411{width:22.572000px;}
._e_c00411{width:24.189000px;}
._20_c00411{width:26.001000px;}
._1c_c00411{width:44.232000px;}
._1d_c00411{width:48.804000px;}
._1f_c00411{width:66.825000px;}
.fc2_c00411{color:transparent;}
.fc1_c00411{color:rgb(128,128,128);}
.fc0_c00411{color:rgb(0,0,0);}
.fs5_c00411{font-size:48.000000px;}
.fs2_c00411{font-size:57.000000px;}
.fs1_c00411{font-size:69.000000px;}
.fs0_c00411{font-size:78.000000px;}
.fs3_c00411{font-size:81.000000px;}
.fs4_c00411{font-size:108.000000px;}
.y0_c00411{bottom:0.000000px;}
.y26_c00411{bottom:3.105000px;}
.y25_c00411{bottom:7.228371px;}
.y24_c00411{bottom:64.215000px;}
.y23_c00411{bottom:86.415000px;}
.y22_c00411{bottom:111.765000px;}
.y21_c00411{bottom:136.065000px;}
.y20_c00411{bottom:160.365000px;}
.y1f_c00411{bottom:184.365000px;}
.y1e_c00411{bottom:209.265000px;}
.y1d_c00411{bottom:232.965000px;}
.y1c_c00411{bottom:256.965000px;}
.y1b_c00411{bottom:281.115000px;}
.y1a_c00411{bottom:305.865000px;}
.y19_c00411{bottom:329.715000px;}
.y18_c00411{bottom:354.015000px;}
.y17_c00411{bottom:378.315000px;}
.y16_c00411{bottom:402.615000px;}
.y15_c00411{bottom:426.615000px;}
.y14_c00411{bottom:450.915000px;}
.y13_c00411{bottom:475.215000px;}
.y12_c00411{bottom:498.615000px;}
.y11_c00411{bottom:520.215000px;}
.y10_c00411{bottom:546.165000px;}
.yf_c00411{bottom:570.465000px;}
.ye_c00411{bottom:594.315000px;}
.yd_c00411{bottom:618.615000px;}
.yc_c00411{bottom:642.615000px;}
.yb_c00411{bottom:666.615000px;}
.ya_c00411{bottom:690.915000px;}
.y9_c00411{bottom:714.615000px;}
.y8_c00411{bottom:738.765000px;}
.y7_c00411{bottom:762.765000px;}
.y6_c00411{bottom:787.515000px;}
.y5_c00411{bottom:810.765000px;}
.y1_c00411{bottom:828.615000px;}
.y4_c00411{bottom:834.315000px;}
.y3_c00411{bottom:858.615000px;}
.y2_c00411{bottom:882.315000px;}
.h8_c00411{height:13.200074px;}
.h9_c00411{height:43.804688px;}
.h4_c00411{height:57.445312px;}
.h3_c00411{height:72.312000px;}
.h5_c00411{height:79.497070px;}
.h2_c00411{height:91.291992px;}
.h6_c00411{height:98.756836px;}
.h7_c00411{height:108.843750px;}
.h1_c00411{height:986.250000px;}
.h0_c00411{height:986.325000px;}
.w2_c00411{width:104.875500px;}
.w0_c00411{width:667.425000px;}
.w1_c00411{width:667.500000px;}
.x0_c00411{left:0.000000px;}
.x6_c00411{left:33.000000px;}
.x9_c00411{left:110.100000px;}
.x8_c00411{left:121.800000px;}
.x7_c00411{left:123.450000px;}
.x5_c00411{left:124.800000px;}
.x4_c00411{left:126.450000px;}
.x1_c00411{left:127.950000px;}
.x3_c00411{left:174.150000px;}
.x2_c00411{left:219.000000px;}
.xb_c00411{left:285.526749px;}
.xa_c00411{left:593.250000px;}
@media print{
.v0_c00411{vertical-align:0.000000pt;}
.ls4_c00411{letter-spacing:0.000000pt;}
.ls0_c00411{letter-spacing:2.666667pt;}
.ls2_c00411{letter-spacing:2.800000pt;}
.ls1_c00411{letter-spacing:9.733333pt;}
.ls3_c00411{letter-spacing:14.757333pt;}
.ws2_c00411{word-spacing:-41.648000pt;}
.ws3_c00411{word-spacing:-24.000000pt;}
.ws1_c00411{word-spacing:-18.000000pt;}
.ws0_c00411{word-spacing:-15.333333pt;}
.ws4_c00411{word-spacing:0.000000pt;}
._1b_c00411{margin-left:-19.725333pt;}
._1a_c00411{margin-left:-18.576000pt;}
._a_c00411{margin-left:-15.333333pt;}
._12_c00411{margin-left:-12.573333pt;}
._13_c00411{margin-left:-11.101333pt;}
._16_c00411{margin-left:-9.224000pt;}
._17_c00411{margin-left:-8.226667pt;}
._21_c00411{margin-left:-6.986667pt;}
._15_c00411{margin-left:-5.720000pt;}
._7_c00411{margin-left:-4.661333pt;}
._b_c00411{margin-left:-3.250667pt;}
._14_c00411{margin-left:-1.085333pt;}
._9_c00411{width:0.920000pt;}
._6_c00411{width:2.698667pt;}
._8_c00411{width:3.618667pt;}
._10_c00411{width:4.544000pt;}
._1_c00411{width:5.458667pt;}
._2_c00411{width:6.808000pt;}
._18_c00411{width:7.717333pt;}
._4_c00411{width:8.648000pt;}
._5_c00411{width:9.629333pt;}
._0_c00411{width:10.672000pt;}
._1e_c00411{width:11.584000pt;}
._3_c00411{width:12.512000pt;}
._d_c00411{width:13.648000pt;}
._19_c00411{width:16.586667pt;}
._11_c00411{width:17.626667pt;}
._f_c00411{width:18.565333pt;}
._c_c00411{width:20.064000pt;}
._e_c00411{width:21.501333pt;}
._20_c00411{width:23.112000pt;}
._1c_c00411{width:39.317333pt;}
._1d_c00411{width:43.381333pt;}
._1f_c00411{width:59.400000pt;}
.fs5_c00411{font-size:42.666667pt;}
.fs2_c00411{font-size:50.666667pt;}
.fs1_c00411{font-size:61.333333pt;}
.fs0_c00411{font-size:69.333333pt;}
.fs3_c00411{font-size:72.000000pt;}
.fs4_c00411{font-size:96.000000pt;}
.y0_c00411{bottom:0.000000pt;}
.y26_c00411{bottom:2.760000pt;}
.y25_c00411{bottom:6.425219pt;}
.y24_c00411{bottom:57.080000pt;}
.y23_c00411{bottom:76.813333pt;}
.y22_c00411{bottom:99.346667pt;}
.y21_c00411{bottom:120.946667pt;}
.y20_c00411{bottom:142.546667pt;}
.y1f_c00411{bottom:163.880000pt;}
.y1e_c00411{bottom:186.013333pt;}
.y1d_c00411{bottom:207.080000pt;}
.y1c_c00411{bottom:228.413333pt;}
.y1b_c00411{bottom:249.880000pt;}
.y1a_c00411{bottom:271.880000pt;}
.y19_c00411{bottom:293.080000pt;}
.y18_c00411{bottom:314.680000pt;}
.y17_c00411{bottom:336.280000pt;}
.y16_c00411{bottom:357.880000pt;}
.y15_c00411{bottom:379.213333pt;}
.y14_c00411{bottom:400.813333pt;}
.y13_c00411{bottom:422.413333pt;}
.y12_c00411{bottom:443.213333pt;}
.y11_c00411{bottom:462.413333pt;}
.y10_c00411{bottom:485.480000pt;}
.yf_c00411{bottom:507.080000pt;}
.ye_c00411{bottom:528.280000pt;}
.yd_c00411{bottom:549.880000pt;}
.yc_c00411{bottom:571.213333pt;}
.yb_c00411{bottom:592.546667pt;}
.ya_c00411{bottom:614.146667pt;}
.y9_c00411{bottom:635.213333pt;}
.y8_c00411{bottom:656.680000pt;}
.y7_c00411{bottom:678.013333pt;}
.y6_c00411{bottom:700.013333pt;}
.y5_c00411{bottom:720.680000pt;}
.y1_c00411{bottom:736.546667pt;}
.y4_c00411{bottom:741.613333pt;}
.y3_c00411{bottom:763.213333pt;}
.y2_c00411{bottom:784.280000pt;}
.h8_c00411{height:11.733399pt;}
.h9_c00411{height:38.937500pt;}
.h4_c00411{height:51.062500pt;}
.h3_c00411{height:64.277333pt;}
.h5_c00411{height:70.664062pt;}
.h2_c00411{height:81.148438pt;}
.h6_c00411{height:87.783854pt;}
.h7_c00411{height:96.750000pt;}
.h1_c00411{height:876.666667pt;}
.h0_c00411{height:876.733333pt;}
.w2_c00411{width:93.222667pt;}
.w0_c00411{width:593.266667pt;}
.w1_c00411{width:593.333333pt;}
.x0_c00411{left:0.000000pt;}
.x6_c00411{left:29.333333pt;}
.x9_c00411{left:97.866667pt;}
.x8_c00411{left:108.266667pt;}
.x7_c00411{left:109.733333pt;}
.x5_c00411{left:110.933333pt;}
.x4_c00411{left:112.400000pt;}
.x1_c00411{left:113.733333pt;}
.x3_c00411{left:154.800000pt;}
.x2_c00411{left:194.666667pt;}
.xb_c00411{left:253.801554pt;}
.xa_c00411{left:527.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_d5623cbb17232019b603ff0e.woff2')format("woff");}.ff1_c00412{font-family:ff1_c00412;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00412;src:url('chunks/assets/font_a6f1462c7518d19e447b6ff6.woff2')format("woff");}.ff2_c00412{font-family:ff2_c00412;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00412;src:url('chunks/assets/font_3add21555ff40ba52ab87ff2.woff2')format("woff");}.ff3_c00412{font-family:ff3_c00412;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00412;src:url('chunks/assets/font_64cedb5b6ef0dfd141ad1419.woff2')format("woff");}.ff4_c00412{font-family:ff4_c00412;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00412;src:url('chunks/assets/font_a7aba6b2f46f625be79325c4.woff2')format("woff");}.ff5_c00412{font-family:ff5_c00412;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00412;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c00412{font-family:ff6_c00412;line-height:1.219238;font-style: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;}
.ls3_c00412{letter-spacing:0.000000px;}
.ls0_c00412{letter-spacing:2.400000px;}
.ls1_c00412{letter-spacing:6.402000px;}
.ls2_c00412{letter-spacing:223.002000px;}
.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;}
}
.ws2_c00412{word-spacing:-67.686000px;}
.ws1_c00412{word-spacing:-33.000000px;}
.ws0_c00412{word-spacing:-17.352000px;}
.ws3_c00412{word-spacing:0.000000px;}
._10_c00412{margin-left:-18.306000px;}
._19_c00412{margin-left:-12.063000px;}
._1c_c00412{margin-left:-10.917000px;}
._12_c00412{margin-left:-9.627000px;}
._d_c00412{margin-left:-8.298000px;}
._f_c00412{margin-left:-6.669000px;}
._11_c00412{margin-left:-5.448000px;}
._7_c00412{margin-left:-4.257000px;}
._0_c00412{margin-left:-2.970000px;}
._1_c00412{margin-left:-1.782000px;}
._4_c00412{width:1.089000px;}
._5_c00412{width:2.970000px;}
._6_c00412{width:4.653000px;}
._2_c00412{width:5.841000px;}
._b_c00412{width:7.074000px;}
._3_c00412{width:8.316000px;}
._c_c00412{width:10.251000px;}
._e_c00412{width:11.754000px;}
._18_c00412{width:12.846000px;}
._9_c00412{width:13.860000px;}
._16_c00412{width:15.255000px;}
._a_c00412{width:18.315000px;}
._13_c00412{width:21.996000px;}
._1d_c00412{width:26.514000px;}
._1e_c00412{width:29.403000px;}
._1a_c00412{width:34.320000px;}
._17_c00412{width:35.757000px;}
._15_c00412{width:45.018000px;}
._8_c00412{width:162.162000px;}
._1b_c00412{width:175.203000px;}
._14_c00412{width:242.352000px;}
.fc2_c00412{color:transparent;}
.fc1_c00412{color:rgb(128,128,128);}
.fc0_c00412{color:rgb(0,0,0);}
.fs7_c00412{font-size:48.000000px;}
.fs4_c00412{font-size:57.000000px;}
.fs3_c00412{font-size:66.000000px;}
.fs2_c00412{font-size:72.000000px;}
.fs5_c00412{font-size:78.000000px;}
.fs1_c00412{font-size:81.000000px;}
.fs6_c00412{font-size:87.000000px;}
.fs0_c00412{font-size:99.000000px;}
.y0_c00412{bottom:0.000000px;}
.y23_c00412{bottom:3.105000px;}
.y22_c00412{bottom:7.228371px;}
.y21_c00412{bottom:66.165000px;}
.y20_c00412{bottom:141.465000px;}
.y1f_c00412{bottom:166.365000px;}
.y1e_c00412{bottom:190.665000px;}
.y1d_c00412{bottom:215.115000px;}
.y1c_c00412{bottom:240.315000px;}
.y1b_c00412{bottom:263.565000px;}
.y1a_c00412{bottom:288.315000px;}
.y19_c00412{bottom:312.165000px;}
.y18_c00412{bottom:336.615000px;}
.y17_c00412{bottom:360.915000px;}
.y16_c00412{bottom:386.115000px;}
.y15_c00412{bottom:409.065000px;}
.y14_c00412{bottom:434.115000px;}
.y13_c00412{bottom:457.965000px;}
.y12_c00412{bottom:481.965000px;}
.y11_c00412{bottom:506.265000px;}
.y10_c00412{bottom:530.565000px;}
.yf_c00412{bottom:554.565000px;}
.ye_c00412{bottom:578.265000px;}
.yd_c00412{bottom:602.415000px;}
.yc_c00412{bottom:625.815000px;}
.yb_c00412{bottom:650.715000px;}
.ya_c00412{bottom:675.015000px;}
.y9_c00412{bottom:699.615000px;}
.y8_c00412{bottom:724.365000px;}
.y7_c00412{bottom:747.315000px;}
.y6_c00412{bottom:771.615000px;}
.y5_c00412{bottom:796.515000px;}
.y4_c00412{bottom:820.965000px;}
.y3_c00412{bottom:845.415000px;}
.y2_c00412{bottom:869.865000px;}
.y1_c00412{bottom:904.215000px;}
.h8_c00412{height:13.200074px;}
.h9_c00412{height:43.804688px;}
.h3_c00412{height:79.497070px;}
.h4_c00412{height:84.269531px;}
.h6_c00412{height:91.160156px;}
.h7_c00412{height:91.176000px;}
.h5_c00412{height:98.756836px;}
.h2_c00412{height:115.870605px;}
.h0_c00412{height:989.025000px;}
.h1_c00412{height:989.250000px;}
.w1_c00412{width:104.875500px;}
.w0_c00412{width:672.000000px;}
.x0_c00412{left:0.000000px;}
.x8_c00412{left:36.750000px;}
.x7_c00412{left:38.850000px;}
.x6_c00412{left:40.050000px;}
.x5_c00412{left:41.850000px;}
.x4_c00412{left:42.900000px;}
.x3_c00412{left:44.250000px;}
.x2_c00412{left:45.300000px;}
.x9_c00412{left:46.950000px;}
.xa_c00412{left:75.300000px;}
.x1_c00412{left:96.450000px;}
.xb_c00412{left:168.750000px;}
.xd_c00412{left:287.814240px;}
.xc_c00412{left:445.800000px;}
@media print{
.v0_c00412{vertical-align:0.000000pt;}
.ls3_c00412{letter-spacing:0.000000pt;}
.ls0_c00412{letter-spacing:2.133333pt;}
.ls1_c00412{letter-spacing:5.690667pt;}
.ls2_c00412{letter-spacing:198.224000pt;}
.ws2_c00412{word-spacing:-60.165333pt;}
.ws1_c00412{word-spacing:-29.333333pt;}
.ws0_c00412{word-spacing:-15.424000pt;}
.ws3_c00412{word-spacing:0.000000pt;}
._10_c00412{margin-left:-16.272000pt;}
._19_c00412{margin-left:-10.722667pt;}
._1c_c00412{margin-left:-9.704000pt;}
._12_c00412{margin-left:-8.557333pt;}
._d_c00412{margin-left:-7.376000pt;}
._f_c00412{margin-left:-5.928000pt;}
._11_c00412{margin-left:-4.842667pt;}
._7_c00412{margin-left:-3.784000pt;}
._0_c00412{margin-left:-2.640000pt;}
._1_c00412{margin-left:-1.584000pt;}
._4_c00412{width:0.968000pt;}
._5_c00412{width:2.640000pt;}
._6_c00412{width:4.136000pt;}
._2_c00412{width:5.192000pt;}
._b_c00412{width:6.288000pt;}
._3_c00412{width:7.392000pt;}
._c_c00412{width:9.112000pt;}
._e_c00412{width:10.448000pt;}
._18_c00412{width:11.418667pt;}
._9_c00412{width:12.320000pt;}
._16_c00412{width:13.560000pt;}
._a_c00412{width:16.280000pt;}
._13_c00412{width:19.552000pt;}
._1d_c00412{width:23.568000pt;}
._1e_c00412{width:26.136000pt;}
._1a_c00412{width:30.506667pt;}
._17_c00412{width:31.784000pt;}
._15_c00412{width:40.016000pt;}
._8_c00412{width:144.144000pt;}
._1b_c00412{width:155.736000pt;}
._14_c00412{width:215.424000pt;}
.fs7_c00412{font-size:42.666667pt;}
.fs4_c00412{font-size:50.666667pt;}
.fs3_c00412{font-size:58.666667pt;}
.fs2_c00412{font-size:64.000000pt;}
.fs5_c00412{font-size:69.333333pt;}
.fs1_c00412{font-size:72.000000pt;}
.fs6_c00412{font-size:77.333333pt;}
.fs0_c00412{font-size:88.000000pt;}
.y0_c00412{bottom:0.000000pt;}
.y23_c00412{bottom:2.760000pt;}
.y22_c00412{bottom:6.425219pt;}
.y21_c00412{bottom:58.813333pt;}
.y20_c00412{bottom:125.746667pt;}
.y1f_c00412{bottom:147.880000pt;}
.y1e_c00412{bottom:169.480000pt;}
.y1d_c00412{bottom:191.213333pt;}
.y1c_c00412{bottom:213.613333pt;}
.y1b_c00412{bottom:234.280000pt;}
.y1a_c00412{bottom:256.280000pt;}
.y19_c00412{bottom:277.480000pt;}
.y18_c00412{bottom:299.213333pt;}
.y17_c00412{bottom:320.813333pt;}
.y16_c00412{bottom:343.213333pt;}
.y15_c00412{bottom:363.613333pt;}
.y14_c00412{bottom:385.880000pt;}
.y13_c00412{bottom:407.080000pt;}
.y12_c00412{bottom:428.413333pt;}
.y11_c00412{bottom:450.013333pt;}
.y10_c00412{bottom:471.613333pt;}
.yf_c00412{bottom:492.946667pt;}
.ye_c00412{bottom:514.013333pt;}
.yd_c00412{bottom:535.480000pt;}
.yc_c00412{bottom:556.280000pt;}
.yb_c00412{bottom:578.413333pt;}
.ya_c00412{bottom:600.013333pt;}
.y9_c00412{bottom:621.880000pt;}
.y8_c00412{bottom:643.880000pt;}
.y7_c00412{bottom:664.280000pt;}
.y6_c00412{bottom:685.880000pt;}
.y5_c00412{bottom:708.013333pt;}
.y4_c00412{bottom:729.746667pt;}
.y3_c00412{bottom:751.480000pt;}
.y2_c00412{bottom:773.213333pt;}
.y1_c00412{bottom:803.746667pt;}
.h8_c00412{height:11.733399pt;}
.h9_c00412{height:38.937500pt;}
.h3_c00412{height:70.664062pt;}
.h4_c00412{height:74.906250pt;}
.h6_c00412{height:81.031250pt;}
.h7_c00412{height:81.045333pt;}
.h5_c00412{height:87.783854pt;}
.h2_c00412{height:102.996094pt;}
.h0_c00412{height:879.133333pt;}
.h1_c00412{height:879.333333pt;}
.w1_c00412{width:93.222667pt;}
.w0_c00412{width:597.333333pt;}
.x0_c00412{left:0.000000pt;}
.x8_c00412{left:32.666667pt;}
.x7_c00412{left:34.533333pt;}
.x6_c00412{left:35.600000pt;}
.x5_c00412{left:37.200000pt;}
.x4_c00412{left:38.133333pt;}
.x3_c00412{left:39.333333pt;}
.x2_c00412{left:40.266667pt;}
.x9_c00412{left:41.733333pt;}
.xa_c00412{left:66.933333pt;}
.x1_c00412{left:85.733333pt;}
.xb_c00412{left:150.000000pt;}
.xd_c00412{left:255.834880pt;}
.xc_c00412{left:396.266667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_4bd8ccb50837d01047c36f0c.woff2')format("woff");}.ff1_c00413{font-family:ff1_c00413;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00413;src:url('chunks/assets/font_a27a46f90aaa7b6b4b39f03b.woff2')format("woff");}.ff2_c00413{font-family:ff2_c00413;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00413;src:url('chunks/assets/font_9c313e81d90e63fedefdca90.woff2')format("woff");}.ff3_c00413{font-family:ff3_c00413;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00413;src:url('chunks/assets/font_3437f307c63c46b54e57f672.woff2')format("woff");}.ff4_c00413{font-family:ff4_c00413;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00413;src:url('chunks/assets/font_3ce5fb12b506179f0e3945ed.woff2')format("woff");}.ff5_c00413{font-family:ff5_c00413;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00413;src:url('chunks/assets/font_9519df0a8eaee721bcb57034.woff2')format("woff");}.ff6_c00413{font-family:ff6_c00413;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00413;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c00413{font-family:ff7_c00413;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00413{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m0_c00413{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00413{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.v0_c00413{vertical-align:0.000000px;}
.ls5_c00413{letter-spacing:0.000000px;}
.ls4_c00413{letter-spacing:0.756000px;}
.ls2_c00413{letter-spacing:3.000000px;}
.ls3_c00413{letter-spacing:8.508000px;}
.ls1_c00413{letter-spacing:18.000000px;}
.ls0_c00413{letter-spacing:27.000000px;}
.ls7_c00413{letter-spacing:30.000000px;}
.ls6_c00413{letter-spacing:36.000000px;}
.sc__c00413{text-shadow:none;}
.sc0_c00413{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00413{-webkit-text-stroke:0px transparent;}
.sc0_c00413{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8_c00413{word-spacing:-59.184000px;}
.ws5_c00413{word-spacing:-44.154000px;}
.ws0_c00413{word-spacing:-40.104000px;}
.ws6_c00413{word-spacing:-35.923200px;}
.ws7_c00413{word-spacing:-27.756000px;}
.ws2_c00413{word-spacing:-21.000000px;}
.ws3_c00413{word-spacing:-17.250000px;}
.ws4_c00413{word-spacing:-5.679000px;}
.ws1_c00413{word-spacing:-5.175000px;}
.ws9_c00413{word-spacing:-1.620000px;}
.wsa_c00413{word-spacing:0.000000px;}
._28_c00413{margin-left:-13.338000px;}
._b_c00413{margin-left:-9.216000px;}
._25_c00413{margin-left:-7.581000px;}
._8_c00413{margin-left:-6.129000px;}
._16_c00413{margin-left:-3.999000px;}
._24_c00413{margin-left:-2.118000px;}
._1e_c00413{margin-left:-1.044000px;}
._1f_c00413{width:1.104000px;}
._1d_c00413{width:2.160000px;}
._20_c00413{width:3.852000px;}
._1c_c00413{width:5.352000px;}
._21_c00413{width:6.636000px;}
._e_c00413{width:7.920000px;}
._22_c00413{width:9.078000px;}
._c_c00413{width:10.224000px;}
._1a_c00413{width:11.301000px;}
._d_c00413{width:12.816000px;}
._9_c00413{width:13.968000px;}
._a_c00413{width:15.408000px;}
._17_c00413{width:18.426000px;}
._18_c00413{width:19.632000px;}
._f_c00413{width:21.432000px;}
._4_c00413{width:22.686000px;}
._0_c00413{width:23.688000px;}
._5_c00413{width:25.251000px;}
._6_c00413{width:27.303000px;}
._15_c00413{width:28.842000px;}
._7_c00413{width:30.816000px;}
._1_c00413{width:34.599000px;}
._2_c00413{width:36.537000px;}
._3_c00413{width:39.330000px;}
._12_c00413{width:41.781000px;}
._19_c00413{width:43.512000px;}
._13_c00413{width:44.916000px;}
._10_c00413{width:47.424000px;}
._23_c00413{width:57.024000px;}
._11_c00413{width:59.010000px;}
._14_c00413{width:61.674000px;}
._27_c00413{width:114.732600px;}
._29_c00413{width:125.286000px;}
._2a_c00413{width:126.945000px;}
._26_c00413{width:169.347000px;}
._1b_c00413{width:383.940000px;}
.fc2_c00413{color:transparent;}
.fc1_c00413{color:rgb(128,128,128);}
.fc0_c00413{color:rgb(0,0,0);}
.fs4_c00413{font-size:45.600000px;}
.fs9_c00413{font-size:48.000000px;}
.fs1_c00413{font-size:57.000000px;}
.fs5_c00413{font-size:60.000000px;}
.fs0_c00413{font-size:72.000000px;}
.fs6_c00413{font-size:78.000000px;}
.fs8_c00413{font-size:81.000000px;}
.fs3_c00413{font-size:84.000000px;}
.fs7_c00413{font-size:108.000000px;}
.fs2_c00413{font-size:144.000000px;}
.y0_c00413{bottom:0.000000px;}
.y22_c00413{bottom:3.105000px;}
.y21_c00413{bottom:7.228371px;}
.y1e_c00413{bottom:51.315000px;}
.y1d_c00413{bottom:72.615000px;}
.y20_c00413{bottom:94.215000px;}
.y1c_c00413{bottom:96.165000px;}
.y1f_c00413{bottom:120.915000px;}
.y1b_c00413{bottom:121.515000px;}
.y1a_c00413{bottom:146.265000px;}
.y19_c00413{bottom:169.515000px;}
.y18_c00413{bottom:194.115000px;}
.y17_c00413{bottom:218.115000px;}
.y16_c00413{bottom:243.015000px;}
.y15_c00413{bottom:267.615000px;}
.y14_c00413{bottom:291.915000px;}
.y13_c00413{bottom:317.265000px;}
.y12_c00413{bottom:343.215000px;}
.y11_c00413{bottom:364.965000px;}
.y10_c00413{bottom:389.565000px;}
.yf_c00413{bottom:414.915000px;}
.ye_c00413{bottom:441.165000px;}
.yd_c00413{bottom:464.415000px;}
.yc_c00413{bottom:488.715000px;}
.yb_c00413{bottom:512.715000px;}
.ya_c00413{bottom:536.415000px;}
.y9_c00413{bottom:580.515000px;}
.y8_c00413{bottom:611.265000px;}
.y7_c00413{bottom:639.615000px;}
.y6_c00413{bottom:669.015000px;}
.y5_c00413{bottom:695.715000px;}
.y4_c00413{bottom:722.265000px;}
.y3_c00413{bottom:754.365000px;}
.y2_c00413{bottom:802.215000px;}
.y1_c00413{bottom:912.315000px;}
.ha_c00413{height:13.200074px;}
.hb_c00413{height:43.804688px;}
.h3_c00413{height:57.445312px;}
.h6_c00413{height:58.886719px;}
.h9_c00413{height:79.497070px;}
.h5_c00413{height:82.400391px;}
.h2_c00413{height:84.269531px;}
.h7_c00413{height:98.756836px;}
.h8_c00413{height:108.843750px;}
.h4_c00413{height:182.320312px;}
.h1_c00413{height:986.250000px;}
.h0_c00413{height:986.325000px;}
.w2_c00413{width:104.875500px;}
.w0_c00413{width:667.425000px;}
.w1_c00413{width:667.500000px;}
.x0_c00413{left:0.000000px;}
.x13_c00413{left:51.300000px;}
.x10_c00413{left:53.400000px;}
.x14_c00413{left:56.400000px;}
.x12_c00413{left:75.000000px;}
.x1_c00413{left:134.100000px;}
.x3_c00413{left:137.400000px;}
.x7_c00413{left:139.950000px;}
.x11_c00413{left:142.200000px;}
.xf_c00413{left:143.850000px;}
.x16_c00413{left:146.100000px;}
.x15_c00413{left:163.800000px;}
.x4_c00413{left:174.750000px;}
.xc_c00413{left:191.400000px;}
.xd_c00413{left:238.350000px;}
.x5_c00413{left:242.250000px;}
.x2_c00413{left:253.500000px;}
.xe_c00413{left:268.650000px;}
.x9_c00413{left:278.700000px;}
.xa_c00413{left:284.100000px;}
.xb_c00413{left:285.900000px;}
.x8_c00413{left:312.750000px;}
.x6_c00413{left:330.450000px;}
.x17_c00413{left:607.500000px;}
@media print{
.v0_c00413{vertical-align:0.000000pt;}
.ls5_c00413{letter-spacing:0.000000pt;}
.ls4_c00413{letter-spacing:0.672000pt;}
.ls2_c00413{letter-spacing:2.666667pt;}
.ls3_c00413{letter-spacing:7.562667pt;}
.ls1_c00413{letter-spacing:16.000000pt;}
.ls0_c00413{letter-spacing:24.000000pt;}
.ls7_c00413{letter-spacing:26.666667pt;}
.ls6_c00413{letter-spacing:32.000000pt;}
.ws8_c00413{word-spacing:-52.608000pt;}
.ws5_c00413{word-spacing:-39.248000pt;}
.ws0_c00413{word-spacing:-35.648000pt;}
.ws6_c00413{word-spacing:-31.931733pt;}
.ws7_c00413{word-spacing:-24.672000pt;}
.ws2_c00413{word-spacing:-18.666667pt;}
.ws3_c00413{word-spacing:-15.333333pt;}
.ws4_c00413{word-spacing:-5.048000pt;}
.ws1_c00413{word-spacing:-4.600000pt;}
.ws9_c00413{word-spacing:-1.440000pt;}
.wsa_c00413{word-spacing:0.000000pt;}
._28_c00413{margin-left:-11.856000pt;}
._b_c00413{margin-left:-8.192000pt;}
._25_c00413{margin-left:-6.738667pt;}
._8_c00413{margin-left:-5.448000pt;}
._16_c00413{margin-left:-3.554667pt;}
._24_c00413{margin-left:-1.882667pt;}
._1e_c00413{margin-left:-0.928000pt;}
._1f_c00413{width:0.981333pt;}
._1d_c00413{width:1.920000pt;}
._20_c00413{width:3.424000pt;}
._1c_c00413{width:4.757333pt;}
._21_c00413{width:5.898667pt;}
._e_c00413{width:7.040000pt;}
._22_c00413{width:8.069333pt;}
._c_c00413{width:9.088000pt;}
._1a_c00413{width:10.045333pt;}
._d_c00413{width:11.392000pt;}
._9_c00413{width:12.416000pt;}
._a_c00413{width:13.696000pt;}
._17_c00413{width:16.378667pt;}
._18_c00413{width:17.450667pt;}
._f_c00413{width:19.050667pt;}
._4_c00413{width:20.165333pt;}
._0_c00413{width:21.056000pt;}
._5_c00413{width:22.445333pt;}
._6_c00413{width:24.269333pt;}
._15_c00413{width:25.637333pt;}
._7_c00413{width:27.392000pt;}
._1_c00413{width:30.754667pt;}
._2_c00413{width:32.477333pt;}
._3_c00413{width:34.960000pt;}
._12_c00413{width:37.138667pt;}
._19_c00413{width:38.677333pt;}
._13_c00413{width:39.925333pt;}
._10_c00413{width:42.154667pt;}
._23_c00413{width:50.688000pt;}
._11_c00413{width:52.453333pt;}
._14_c00413{width:54.821333pt;}
._27_c00413{width:101.984533pt;}
._29_c00413{width:111.365333pt;}
._2a_c00413{width:112.840000pt;}
._26_c00413{width:150.530667pt;}
._1b_c00413{width:341.280000pt;}
.fs4_c00413{font-size:40.533333pt;}
.fs9_c00413{font-size:42.666667pt;}
.fs1_c00413{font-size:50.666667pt;}
.fs5_c00413{font-size:53.333333pt;}
.fs0_c00413{font-size:64.000000pt;}
.fs6_c00413{font-size:69.333333pt;}
.fs8_c00413{font-size:72.000000pt;}
.fs3_c00413{font-size:74.666667pt;}
.fs7_c00413{font-size:96.000000pt;}
.fs2_c00413{font-size:128.000000pt;}
.y0_c00413{bottom:0.000000pt;}
.y22_c00413{bottom:2.760000pt;}
.y21_c00413{bottom:6.425219pt;}
.y1e_c00413{bottom:45.613333pt;}
.y1d_c00413{bottom:64.546667pt;}
.y20_c00413{bottom:83.746667pt;}
.y1c_c00413{bottom:85.480000pt;}
.y1f_c00413{bottom:107.480000pt;}
.y1b_c00413{bottom:108.013333pt;}
.y1a_c00413{bottom:130.013333pt;}
.y19_c00413{bottom:150.680000pt;}
.y18_c00413{bottom:172.546667pt;}
.y17_c00413{bottom:193.880000pt;}
.y16_c00413{bottom:216.013333pt;}
.y15_c00413{bottom:237.880000pt;}
.y14_c00413{bottom:259.480000pt;}
.y13_c00413{bottom:282.013333pt;}
.y12_c00413{bottom:305.080000pt;}
.y11_c00413{bottom:324.413333pt;}
.y10_c00413{bottom:346.280000pt;}
.yf_c00413{bottom:368.813333pt;}
.ye_c00413{bottom:392.146667pt;}
.yd_c00413{bottom:412.813333pt;}
.yc_c00413{bottom:434.413333pt;}
.yb_c00413{bottom:455.746667pt;}
.ya_c00413{bottom:476.813333pt;}
.y9_c00413{bottom:516.013333pt;}
.y8_c00413{bottom:543.346667pt;}
.y7_c00413{bottom:568.546667pt;}
.y6_c00413{bottom:594.680000pt;}
.y5_c00413{bottom:618.413333pt;}
.y4_c00413{bottom:642.013333pt;}
.y3_c00413{bottom:670.546667pt;}
.y2_c00413{bottom:713.080000pt;}
.y1_c00413{bottom:810.946667pt;}
.ha_c00413{height:11.733399pt;}
.hb_c00413{height:38.937500pt;}
.h3_c00413{height:51.062500pt;}
.h6_c00413{height:52.343750pt;}
.h9_c00413{height:70.664062pt;}
.h5_c00413{height:73.244792pt;}
.h2_c00413{height:74.906250pt;}
.h7_c00413{height:87.783854pt;}
.h8_c00413{height:96.750000pt;}
.h4_c00413{height:162.062500pt;}
.h1_c00413{height:876.666667pt;}
.h0_c00413{height:876.733333pt;}
.w2_c00413{width:93.222667pt;}
.w0_c00413{width:593.266667pt;}
.w1_c00413{width:593.333333pt;}
.x0_c00413{left:0.000000pt;}
.x13_c00413{left:45.600000pt;}
.x10_c00413{left:47.466667pt;}
.x14_c00413{left:50.133333pt;}
.x12_c00413{left:66.666667pt;}
.x1_c00413{left:119.200000pt;}
.x3_c00413{left:122.133333pt;}
.x7_c00413{left:124.400000pt;}
.x11_c00413{left:126.400000pt;}
.xf_c00413{left:127.866667pt;}
.x16_c00413{left:129.866667pt;}
.x15_c00413{left:145.600000pt;}
.x4_c00413{left:155.333333pt;}
.xc_c00413{left:170.133333pt;}
.xd_c00413{left:211.866667pt;}
.x5_c00413{left:215.333333pt;}
.x2_c00413{left:225.333333pt;}
.xe_c00413{left:238.800000pt;}
.x9_c00413{left:247.733333pt;}
.xa_c00413{left:252.533333pt;}
.xb_c00413{left:254.133333pt;}
.x8_c00413{left:278.000000pt;}
.x6_c00413{left:293.733333pt;}
.x17_c00413{left:540.000000pt;}
}





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

.ir_c00414:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00414{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00414;src:url('chunks/assets/font_c4aff110e7a36060ff077743.woff2')format("woff");}.ff1_c00414{font-family:ff1_c00414;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00414;src:url('chunks/assets/font_011b8513603ad9322a8759fa.woff2')format("woff");}.ff2_c00414{font-family:ff2_c00414;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00414;src:url('chunks/assets/font_26ab7b43d3b69f2fa27071fc.woff2')format("woff");}.ff3_c00414{font-family:ff3_c00414;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00414;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff4_c00414{font-family:ff4_c00414;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00414;src:url('chunks/assets/font_58ad37c7fb5858c3647a2b0e.woff2')format("woff");}.ff5_c00414{font-family:ff5_c00414;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00414;src:url('chunks/assets/font_f0c590ae712cef411c3032a6.woff2')format("woff");}.ff6_c00414{font-family:ff6_c00414;line-height:1.437000;font-style:normal;font-weight: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_c00414;src:url('chunks/assets/font_8801bd600e1663659530e5e5.woff2')format("woff");}.ff7_c00414{font-family:ff7_c00414;line-height:1.437000;font-style:normal;font-weight: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_c00414;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff8_c00414{font-family:ff8_c00414;line-height:1.219238;font-style: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;}
.ls3_c00414{letter-spacing:0.000000px;}
.ls2_c00414{letter-spacing:3.000000px;}
.ls1_c00414{letter-spacing:9.000000px;}
.ls0_c00414{letter-spacing:9.720000px;}
.sc__c00414{text-shadow:none;}
.sc0_c00414{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00414{-webkit-text-stroke:0px transparent;}
.sc0_c00414{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00414{word-spacing:-67.686000px;}
.ws0_c00414{word-spacing:-59.184000px;}
.ws1_c00414{word-spacing:-41.568000px;}
.ws3_c00414{word-spacing:-27.000000px;}
.ws4_c00414{word-spacing:0.000000px;}
._14_c00414{margin-left:-27.330000px;}
._13_c00414{margin-left:-26.136000px;}
._16_c00414{margin-left:-23.004000px;}
._15_c00414{margin-left:-15.876000px;}
._17_c00414{margin-left:-11.250000px;}
._19_c00414{margin-left:-8.313000px;}
._c_c00414{margin-left:-7.011000px;}
._e_c00414{margin-left:-5.832000px;}
._f_c00414{margin-left:-3.972000px;}
._4_c00414{margin-left:-2.652000px;}
._2_c00414{margin-left:-1.530000px;}
._6_c00414{width:1.005000px;}
._7_c00414{width:2.055000px;}
._0_c00414{width:3.774000px;}
._a_c00414{width:5.202000px;}
._1_c00414{width:6.834000px;}
._3_c00414{width:8.262000px;}
._8_c00414{width:10.029000px;}
._10_c00414{width:11.052000px;}
._11_c00414{width:12.180000px;}
._9_c00414{width:14.148000px;}
._b_c00414{width:15.582000px;}
._1e_c00414{width:16.767000px;}
._12_c00414{width:18.963000px;}
._18_c00414{width:21.441000px;}
._1a_c00414{width:29.160000px;}
._d_c00414{width:36.318000px;}
._1c_c00414{width:45.408000px;}
._1b_c00414{width:52.587000px;}
._1d_c00414{width:209.202000px;}
._5_c00414{width:254.694000px;}
.fc2_c00414{color:transparent;}
.fc1_c00414{color:rgb(128,128,128);}
.fc0_c00414{color:rgb(0,0,0);}
.fs7_c00414{font-size:48.000000px;}
.fs4_c00414{font-size:69.000000px;}
.fs2_c00414{font-size:72.000000px;}
.fs3_c00414{font-size:75.000000px;}
.fs1_c00414{font-size:81.000000px;}
.fs5_c00414{font-size:87.000000px;}
.fs6_c00414{font-size:96.000000px;}
.fs0_c00414{font-size:102.000000px;}
.y0_c00414{bottom:0.000000px;}
.y26_c00414{bottom:3.105000px;}
.y25_c00414{bottom:7.228371px;}
.y24_c00414{bottom:61.815000px;}
.y23_c00414{bottom:87.465000px;}
.y22_c00414{bottom:113.415000px;}
.y21_c00414{bottom:137.715000px;}
.y20_c00414{bottom:162.315000px;}
.y1f_c00414{bottom:186.765000px;}
.y1e_c00414{bottom:211.665000px;}
.y1d_c00414{bottom:235.965000px;}
.y1c_c00414{bottom:260.865000px;}
.y1b_c00414{bottom:285.165000px;}
.y1a_c00414{bottom:308.865000px;}
.y19_c00414{bottom:333.465000px;}
.y18_c00414{bottom:357.765000px;}
.y17_c00414{bottom:381.465000px;}
.y16_c00414{bottom:406.365000px;}
.y15_c00414{bottom:430.365000px;}
.y14_c00414{bottom:454.665000px;}
.y13_c00414{bottom:478.965000px;}
.y12_c00414{bottom:502.965000px;}
.y11_c00414{bottom:527.265000px;}
.y10_c00414{bottom:551.565000px;}
.yf_c00414{bottom:575.115000px;}
.ye_c00414{bottom:599.115000px;}
.yd_c00414{bottom:622.815000px;}
.yc_c00414{bottom:647.415000px;}
.yb_c00414{bottom:671.265000px;}
.ya_c00414{bottom:695.265000px;}
.y9_c00414{bottom:719.565000px;}
.y8_c00414{bottom:743.565000px;}
.y7_c00414{bottom:768.165000px;}
.y6_c00414{bottom:792.765000px;}
.y5_c00414{bottom:817.065000px;}
.y4_c00414{bottom:841.365000px;}
.y3_c00414{bottom:865.815000px;}
.y2_c00414{bottom:890.415000px;}
.y1_c00414{bottom:925.815000px;}
.h9_c00414{height:13.200074px;}
.ha_c00414{height:43.804688px;}
.h4_c00414{height:79.497070px;}
.h5_c00414{height:84.269531px;}
.h6_c00414{height:87.361816px;}
.h3_c00414{height:91.160156px;}
.h7_c00414{height:91.176000px;}
.h8_c00414{height:94.218750px;}
.h2_c00414{height:100.057617px;}
.h0_c00414{height:989.025000px;}
.h1_c00414{height:989.250000px;}
.w1_c00414{width:104.875500px;}
.w0_c00414{width:672.000000px;}
.x0_c00414{left:0.000000px;}
.xf_c00414{left:34.200000px;}
.x10_c00414{left:35.400000px;}
.xe_c00414{left:36.750000px;}
.xd_c00414{left:38.550000px;}
.xc_c00414{left:39.600000px;}
.xb_c00414{left:40.800000px;}
.xa_c00414{left:41.850000px;}
.x9_c00414{left:43.200000px;}
.x8_c00414{left:44.250000px;}
.x7_c00414{left:45.900000px;}
.x6_c00414{left:47.700000px;}
.x5_c00414{left:49.050000px;}
.x2_c00414{left:50.400000px;}
.x3_c00414{left:51.750000px;}
.x4_c00414{left:52.950000px;}
.x1_c00414{left:82.350000px;}
.x12_c00414{left:287.814240px;}
.x11_c00414{left:472.500000px;}
@media print{
.v0_c00414{vertical-align:0.000000pt;}
.ls3_c00414{letter-spacing:0.000000pt;}
.ls2_c00414{letter-spacing:2.666667pt;}
.ls1_c00414{letter-spacing:8.000000pt;}
.ls0_c00414{letter-spacing:8.640000pt;}
.ws2_c00414{word-spacing:-60.165333pt;}
.ws0_c00414{word-spacing:-52.608000pt;}
.ws1_c00414{word-spacing:-36.949333pt;}
.ws3_c00414{word-spacing:-24.000000pt;}
.ws4_c00414{word-spacing:0.000000pt;}
._14_c00414{margin-left:-24.293333pt;}
._13_c00414{margin-left:-23.232000pt;}
._16_c00414{margin-left:-20.448000pt;}
._15_c00414{margin-left:-14.112000pt;}
._17_c00414{margin-left:-10.000000pt;}
._19_c00414{margin-left:-7.389333pt;}
._c_c00414{margin-left:-6.232000pt;}
._e_c00414{margin-left:-5.184000pt;}
._f_c00414{margin-left:-3.530667pt;}
._4_c00414{margin-left:-2.357333pt;}
._2_c00414{margin-left:-1.360000pt;}
._6_c00414{width:0.893333pt;}
._7_c00414{width:1.826667pt;}
._0_c00414{width:3.354667pt;}
._a_c00414{width:4.624000pt;}
._1_c00414{width:6.074667pt;}
._3_c00414{width:7.344000pt;}
._8_c00414{width:8.914667pt;}
._10_c00414{width:9.824000pt;}
._11_c00414{width:10.826667pt;}
._9_c00414{width:12.576000pt;}
._b_c00414{width:13.850667pt;}
._1e_c00414{width:14.904000pt;}
._12_c00414{width:16.856000pt;}
._18_c00414{width:19.058667pt;}
._1a_c00414{width:25.920000pt;}
._d_c00414{width:32.282667pt;}
._1c_c00414{width:40.362667pt;}
._1b_c00414{width:46.744000pt;}
._1d_c00414{width:185.957333pt;}
._5_c00414{width:226.394667pt;}
.fs7_c00414{font-size:42.666667pt;}
.fs4_c00414{font-size:61.333333pt;}
.fs2_c00414{font-size:64.000000pt;}
.fs3_c00414{font-size:66.666667pt;}
.fs1_c00414{font-size:72.000000pt;}
.fs5_c00414{font-size:77.333333pt;}
.fs6_c00414{font-size:85.333333pt;}
.fs0_c00414{font-size:90.666667pt;}
.y0_c00414{bottom:0.000000pt;}
.y26_c00414{bottom:2.760000pt;}
.y25_c00414{bottom:6.425219pt;}
.y24_c00414{bottom:54.946667pt;}
.y23_c00414{bottom:77.746667pt;}
.y22_c00414{bottom:100.813333pt;}
.y21_c00414{bottom:122.413333pt;}
.y20_c00414{bottom:144.280000pt;}
.y1f_c00414{bottom:166.013333pt;}
.y1e_c00414{bottom:188.146667pt;}
.y1d_c00414{bottom:209.746667pt;}
.y1c_c00414{bottom:231.880000pt;}
.y1b_c00414{bottom:253.480000pt;}
.y1a_c00414{bottom:274.546667pt;}
.y19_c00414{bottom:296.413333pt;}
.y18_c00414{bottom:318.013333pt;}
.y17_c00414{bottom:339.080000pt;}
.y16_c00414{bottom:361.213333pt;}
.y15_c00414{bottom:382.546667pt;}
.y14_c00414{bottom:404.146667pt;}
.y13_c00414{bottom:425.746667pt;}
.y12_c00414{bottom:447.080000pt;}
.y11_c00414{bottom:468.680000pt;}
.y10_c00414{bottom:490.280000pt;}
.yf_c00414{bottom:511.213333pt;}
.ye_c00414{bottom:532.546667pt;}
.yd_c00414{bottom:553.613333pt;}
.yc_c00414{bottom:575.480000pt;}
.yb_c00414{bottom:596.680000pt;}
.ya_c00414{bottom:618.013333pt;}
.y9_c00414{bottom:639.613333pt;}
.y8_c00414{bottom:660.946667pt;}
.y7_c00414{bottom:682.813333pt;}
.y6_c00414{bottom:704.680000pt;}
.y5_c00414{bottom:726.280000pt;}
.y4_c00414{bottom:747.880000pt;}
.y3_c00414{bottom:769.613333pt;}
.y2_c00414{bottom:791.480000pt;}
.y1_c00414{bottom:822.946667pt;}
.h9_c00414{height:11.733399pt;}
.ha_c00414{height:38.937500pt;}
.h4_c00414{height:70.664062pt;}
.h5_c00414{height:74.906250pt;}
.h6_c00414{height:77.654948pt;}
.h3_c00414{height:81.031250pt;}
.h7_c00414{height:81.045333pt;}
.h8_c00414{height:83.750000pt;}
.h2_c00414{height:88.940104pt;}
.h0_c00414{height:879.133333pt;}
.h1_c00414{height:879.333333pt;}
.w1_c00414{width:93.222667pt;}
.w0_c00414{width:597.333333pt;}
.x0_c00414{left:0.000000pt;}
.xf_c00414{left:30.400000pt;}
.x10_c00414{left:31.466667pt;}
.xe_c00414{left:32.666667pt;}
.xd_c00414{left:34.266667pt;}
.xc_c00414{left:35.200000pt;}
.xb_c00414{left:36.266667pt;}
.xa_c00414{left:37.200000pt;}
.x9_c00414{left:38.400000pt;}
.x8_c00414{left:39.333333pt;}
.x7_c00414{left:40.800000pt;}
.x6_c00414{left:42.400000pt;}
.x5_c00414{left:43.600000pt;}
.x2_c00414{left:44.800000pt;}
.x3_c00414{left:46.000000pt;}
.x4_c00414{left:47.066667pt;}
.x1_c00414{left:73.200000pt;}
.x12_c00414{left:255.834880pt;}
.x11_c00414{left:420.000000pt;}
}





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

.ir_c00415:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00415{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00415;src:url('chunks/assets/font_d064a69245ea46b2ae21a2f4.woff2')format("woff");}.ff1_c00415{font-family:ff1_c00415;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00415;src:url('chunks/assets/font_33299d64cfa02cd39555a4e9.woff2')format("woff");}.ff2_c00415{font-family:ff2_c00415;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00415;src:url('chunks/assets/font_136e2fc25e6986775e354658.woff2')format("woff");}.ff3_c00415{font-family:ff3_c00415;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00415;src:url('chunks/assets/font_20b1f5fbc0e27a261e159ed4.woff2')format("woff");}.ff4_c00415{font-family:ff4_c00415;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00415;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c00415{font-family:ff5_c00415;line-height:1.219238;font-style: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;}
.ls3_c00415{letter-spacing:0.000000px;}
.ls0_c00415{letter-spacing:9.402000px;}
.ls2_c00415{letter-spacing:14.700000px;}
.ls1_c00415{letter-spacing:246.972000px;}
.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:-20.250000px;}
.ws0_c00415{word-spacing:-17.352000px;}
.ws2_c00415{word-spacing:0.000000px;}
._16_c00415{margin-left:-25.272000px;}
._20_c00415{margin-left:-23.166000px;}
._26_c00415{margin-left:-20.697000px;}
._14_c00415{margin-left:-16.224000px;}
._1e_c00415{margin-left:-14.661000px;}
._1d_c00415{margin-left:-12.111000px;}
._1b_c00415{margin-left:-10.785000px;}
._13_c00415{margin-left:-9.525000px;}
._12_c00415{margin-left:-7.890000px;}
._f_c00415{margin-left:-6.480000px;}
._1a_c00415{margin-left:-5.226000px;}
._b_c00415{margin-left:-4.212000px;}
._10_c00415{margin-left:-3.036000px;}
._5_c00415{margin-left:-1.782000px;}
._c_c00415{width:1.053000px;}
._7_c00415{width:2.268000px;}
._1_c00415{width:3.726000px;}
._3_c00415{width:4.860000px;}
._0_c00415{width:6.561000px;}
._2_c00415{width:7.857000px;}
._6_c00415{width:9.153000px;}
._e_c00415{width:11.097000px;}
._9_c00415{width:12.798000px;}
._4_c00415{width:14.256000px;}
._25_c00415{width:16.158000px;}
._d_c00415{width:17.253000px;}
._11_c00415{width:18.915000px;}
._22_c00415{width:22.842000px;}
._a_c00415{width:23.895000px;}
._21_c00415{width:26.022000px;}
._24_c00415{width:33.492000px;}
._1f_c00415{width:67.068000px;}
._8_c00415{width:69.498000px;}
._17_c00415{width:95.256000px;}
._15_c00415{width:126.561000px;}
._18_c00415{width:137.133000px;}
._1c_c00415{width:151.599000px;}
._23_c00415{width:184.680000px;}
._19_c00415{width:196.020000px;}
.fc2_c00415{color:transparent;}
.fc1_c00415{color:rgb(128,128,128);}
.fc0_c00415{color:rgb(0,0,0);}
.fs5_c00415{font-size:48.000000px;}
.fs2_c00415{font-size:57.000000px;}
.fs3_c00415{font-size:72.000000px;}
.fs1_c00415{font-size:78.000000px;}
.fs0_c00415{font-size:81.000000px;}
.fs4_c00415{font-size:87.000000px;}
.y0_c00415{bottom:0.000000px;}
.y29_c00415{bottom:3.105000px;}
.y28_c00415{bottom:7.228371px;}
.y27_c00415{bottom:65.265000px;}
.y24_c00415{bottom:86.715000px;}
.y23_c00415{bottom:112.065000px;}
.y22_c00415{bottom:136.365000px;}
.y21_c00415{bottom:160.965000px;}
.y26_c00415{bottom:169.815000px;}
.y20_c00415{bottom:185.715000px;}
.y25_c00415{bottom:192.015000px;}
.y1f_c00415{bottom:210.015000px;}
.y1e_c00415{bottom:233.865000px;}
.y1d_c00415{bottom:258.315000px;}
.y1c_c00415{bottom:282.615000px;}
.y1b_c00415{bottom:307.515000px;}
.y1a_c00415{bottom:330.165000px;}
.y19_c00415{bottom:356.115000px;}
.y18_c00415{bottom:381.015000px;}
.y17_c00415{bottom:405.015000px;}
.y16_c00415{bottom:429.315000px;}
.y15_c00415{bottom:453.915000px;}
.y14_c00415{bottom:477.915000px;}
.y13_c00415{bottom:501.615000px;}
.y12_c00415{bottom:525.165000px;}
.y11_c00415{bottom:547.815000px;}
.y10_c00415{bottom:573.165000px;}
.yf_c00415{bottom:598.065000px;}
.ye_c00415{bottom:622.065000px;}
.yd_c00415{bottom:647.715000px;}
.yc_c00415{bottom:671.265000px;}
.yb_c00415{bottom:694.965000px;}
.ya_c00415{bottom:717.615000px;}
.y9_c00415{bottom:734.715000px;}
.y7_c00415{bottom:742.515000px;}
.y6_c00415{bottom:767.265000px;}
.y8_c00415{bottom:776.265000px;}
.y5_c00415{bottom:792.165000px;}
.y4_c00415{bottom:816.465000px;}
.y3_c00415{bottom:840.015000px;}
.y2_c00415{bottom:864.465000px;}
.y1_c00415{bottom:888.765000px;}
.h8_c00415{height:13.200074px;}
.h9_c00415{height:43.804688px;}
.h4_c00415{height:72.168457px;}
.h2_c00415{height:79.497070px;}
.h5_c00415{height:84.269531px;}
.h7_c00415{height:91.160156px;}
.h6_c00415{height:91.176000px;}
.h3_c00415{height:98.756836px;}
.h1_c00415{height:986.250000px;}
.h0_c00415{height:986.325000px;}
.w2_c00415{width:104.875500px;}
.w0_c00415{width:667.425000px;}
.w1_c00415{width:667.500000px;}
.x0_c00415{left:0.000000px;}
.x6_c00415{left:36.000000px;}
.x7_c00415{left:37.800000px;}
.x9_c00415{left:38.850000px;}
.xd_c00415{left:40.200000px;}
.x10_c00415{left:41.850000px;}
.x11_c00415{left:44.250000px;}
.x14_c00415{left:56.100000px;}
.xa_c00415{left:69.600000px;}
.x5_c00415{left:78.600000px;}
.xe_c00415{left:93.600000px;}
.x1_c00415{left:121.800000px;}
.x2_c00415{left:123.450000px;}
.x3_c00415{left:125.250000px;}
.x4_c00415{left:126.600000px;}
.xb_c00415{left:127.650000px;}
.x8_c00415{left:130.200000px;}
.xf_c00415{left:131.250000px;}
.xc_c00415{left:132.750000px;}
.x13_c00415{left:134.100000px;}
.x12_c00415{left:147.900000px;}
.x16_c00415{left:285.526749px;}
.x15_c00415{left:576.450000px;}
@media print{
.v0_c00415{vertical-align:0.000000pt;}
.ls3_c00415{letter-spacing:0.000000pt;}
.ls0_c00415{letter-spacing:8.357333pt;}
.ls2_c00415{letter-spacing:13.066667pt;}
.ls1_c00415{letter-spacing:219.530667pt;}
.ws1_c00415{word-spacing:-18.000000pt;}
.ws0_c00415{word-spacing:-15.424000pt;}
.ws2_c00415{word-spacing:0.000000pt;}
._16_c00415{margin-left:-22.464000pt;}
._20_c00415{margin-left:-20.592000pt;}
._26_c00415{margin-left:-18.397333pt;}
._14_c00415{margin-left:-14.421333pt;}
._1e_c00415{margin-left:-13.032000pt;}
._1d_c00415{margin-left:-10.765333pt;}
._1b_c00415{margin-left:-9.586667pt;}
._13_c00415{margin-left:-8.466667pt;}
._12_c00415{margin-left:-7.013333pt;}
._f_c00415{margin-left:-5.760000pt;}
._1a_c00415{margin-left:-4.645333pt;}
._b_c00415{margin-left:-3.744000pt;}
._10_c00415{margin-left:-2.698667pt;}
._5_c00415{margin-left:-1.584000pt;}
._c_c00415{width:0.936000pt;}
._7_c00415{width:2.016000pt;}
._1_c00415{width:3.312000pt;}
._3_c00415{width:4.320000pt;}
._0_c00415{width:5.832000pt;}
._2_c00415{width:6.984000pt;}
._6_c00415{width:8.136000pt;}
._e_c00415{width:9.864000pt;}
._9_c00415{width:11.376000pt;}
._4_c00415{width:12.672000pt;}
._25_c00415{width:14.362667pt;}
._d_c00415{width:15.336000pt;}
._11_c00415{width:16.813333pt;}
._22_c00415{width:20.304000pt;}
._a_c00415{width:21.240000pt;}
._21_c00415{width:23.130667pt;}
._24_c00415{width:29.770667pt;}
._1f_c00415{width:59.616000pt;}
._8_c00415{width:61.776000pt;}
._17_c00415{width:84.672000pt;}
._15_c00415{width:112.498667pt;}
._18_c00415{width:121.896000pt;}
._1c_c00415{width:134.754667pt;}
._23_c00415{width:164.160000pt;}
._19_c00415{width:174.240000pt;}
.fs5_c00415{font-size:42.666667pt;}
.fs2_c00415{font-size:50.666667pt;}
.fs3_c00415{font-size:64.000000pt;}
.fs1_c00415{font-size:69.333333pt;}
.fs0_c00415{font-size:72.000000pt;}
.fs4_c00415{font-size:77.333333pt;}
.y0_c00415{bottom:0.000000pt;}
.y29_c00415{bottom:2.760000pt;}
.y28_c00415{bottom:6.425219pt;}
.y27_c00415{bottom:58.013333pt;}
.y24_c00415{bottom:77.080000pt;}
.y23_c00415{bottom:99.613333pt;}
.y22_c00415{bottom:121.213333pt;}
.y21_c00415{bottom:143.080000pt;}
.y26_c00415{bottom:150.946667pt;}
.y20_c00415{bottom:165.080000pt;}
.y25_c00415{bottom:170.680000pt;}
.y1f_c00415{bottom:186.680000pt;}
.y1e_c00415{bottom:207.880000pt;}
.y1d_c00415{bottom:229.613333pt;}
.y1c_c00415{bottom:251.213333pt;}
.y1b_c00415{bottom:273.346667pt;}
.y1a_c00415{bottom:293.480000pt;}
.y19_c00415{bottom:316.546667pt;}
.y18_c00415{bottom:338.680000pt;}
.y17_c00415{bottom:360.013333pt;}
.y16_c00415{bottom:381.613333pt;}
.y15_c00415{bottom:403.480000pt;}
.y14_c00415{bottom:424.813333pt;}
.y13_c00415{bottom:445.880000pt;}
.y12_c00415{bottom:466.813333pt;}
.y11_c00415{bottom:486.946667pt;}
.y10_c00415{bottom:509.480000pt;}
.yf_c00415{bottom:531.613333pt;}
.ye_c00415{bottom:552.946667pt;}
.yd_c00415{bottom:575.746667pt;}
.yc_c00415{bottom:596.680000pt;}
.yb_c00415{bottom:617.746667pt;}
.ya_c00415{bottom:637.880000pt;}
.y9_c00415{bottom:653.080000pt;}
.y7_c00415{bottom:660.013333pt;}
.y6_c00415{bottom:682.013333pt;}
.y8_c00415{bottom:690.013333pt;}
.y5_c00415{bottom:704.146667pt;}
.y4_c00415{bottom:725.746667pt;}
.y3_c00415{bottom:746.680000pt;}
.y2_c00415{bottom:768.413333pt;}
.y1_c00415{bottom:790.013333pt;}
.h8_c00415{height:11.733399pt;}
.h9_c00415{height:38.937500pt;}
.h4_c00415{height:64.149740pt;}
.h2_c00415{height:70.664062pt;}
.h5_c00415{height:74.906250pt;}
.h7_c00415{height:81.031250pt;}
.h6_c00415{height:81.045333pt;}
.h3_c00415{height:87.783854pt;}
.h1_c00415{height:876.666667pt;}
.h0_c00415{height:876.733333pt;}
.w2_c00415{width:93.222667pt;}
.w0_c00415{width:593.266667pt;}
.w1_c00415{width:593.333333pt;}
.x0_c00415{left:0.000000pt;}
.x6_c00415{left:32.000000pt;}
.x7_c00415{left:33.600000pt;}
.x9_c00415{left:34.533333pt;}
.xd_c00415{left:35.733333pt;}
.x10_c00415{left:37.200000pt;}
.x11_c00415{left:39.333333pt;}
.x14_c00415{left:49.866667pt;}
.xa_c00415{left:61.866667pt;}
.x5_c00415{left:69.866667pt;}
.xe_c00415{left:83.200000pt;}
.x1_c00415{left:108.266667pt;}
.x2_c00415{left:109.733333pt;}
.x3_c00415{left:111.333333pt;}
.x4_c00415{left:112.533333pt;}
.xb_c00415{left:113.466667pt;}
.x8_c00415{left:115.733333pt;}
.xf_c00415{left:116.666667pt;}
.xc_c00415{left:118.000000pt;}
.x13_c00415{left:119.200000pt;}
.x12_c00415{left:131.466667pt;}
.x16_c00415{left:253.801554pt;}
.x15_c00415{left:512.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_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_5f3640d1ca22b2597a004492.woff2')format("woff");}.ff1_c00416{font-family:ff1_c00416;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00416;src:url('chunks/assets/font_cafd48941ea077b26921fe00.woff2')format("woff");}.ff2_c00416{font-family:ff2_c00416;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00416;src:url('chunks/assets/font_7f164cebf2f6502af4878dbb.woff2')format("woff");}.ff3_c00416{font-family:ff3_c00416;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00416;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff4_c00416{font-family:ff4_c00416;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00416;src:url('chunks/assets/font_24b9ea9324f1dd40cbfddd92.woff2')format("woff");}.ff5_c00416{font-family:ff5_c00416;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00416;src:url('chunks/assets/font_7a10505ef6e46edc2e80ea61.woff2')format("woff");}.ff6_c00416{font-family:ff6_c00416;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00416;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c00416{font-family:ff7_c00416;line-height:1.219238;font-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_c00416{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m0_c00416{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00416{vertical-align:0.000000px;}
.v1_c00416{vertical-align:145.200000px;}
.ls0_c00416{letter-spacing:0.000000px;}
.sc__c00416{text-shadow:none;}
.sc0_c00416{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00416{-webkit-text-stroke:0px transparent;}
.sc0_c00416{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00416{word-spacing:-76.095000px;}
.ws0_c00416{word-spacing:-67.686000px;}
.ws1_c00416{word-spacing:-17.352000px;}
.ws3_c00416{word-spacing:0.000000px;}
._1b_c00416{margin-left:-20.805000px;}
._c_c00416{margin-left:-15.309000px;}
._15_c00416{margin-left:-13.752000px;}
._d_c00416{margin-left:-12.069000px;}
._13_c00416{margin-left:-10.854000px;}
._9_c00416{margin-left:-9.153000px;}
._11_c00416{margin-left:-7.452000px;}
._7_c00416{margin-left:-6.318000px;}
._16_c00416{margin-left:-4.860000px;}
._4_c00416{margin-left:-3.807000px;}
._5_c00416{margin-left:-2.430000px;}
._e_c00416{margin-left:-1.377000px;}
._2_c00416{width:1.377000px;}
._3_c00416{width:2.754000px;}
._1_c00416{width:4.212000px;}
._6_c00416{width:5.589000px;}
._0_c00416{width:7.209000px;}
._b_c00416{width:8.586000px;}
._8_c00416{width:9.801000px;}
._12_c00416{width:11.745000px;}
._a_c00416{width:13.041000px;}
._1f_c00416{width:14.337000px;}
._f_c00416{width:15.390000px;}
._1c_c00416{width:17.739000px;}
._1a_c00416{width:19.209000px;}
._17_c00416{width:23.247000px;}
._14_c00416{width:28.134000px;}
._18_c00416{width:40.905000px;}
._10_c00416{width:63.423000px;}
._1d_c00416{width:220.575000px;}
._1e_c00416{width:289.413000px;}
._20_c00416{width:294.786000px;}
._19_c00416{width:475.050000px;}
.fc2_c00416{color:transparent;}
.fc1_c00416{color:rgb(128,128,128);}
.fc0_c00416{color:rgb(0,0,0);}
.fs6_c00416{font-size:48.000000px;}
.fs3_c00416{font-size:57.000000px;}
.fs2_c00416{font-size:72.000000px;}
.fs0_c00416{font-size:81.000000px;}
.fs1_c00416{font-size:87.000000px;}
.fs5_c00416{font-size:108.000000px;}
.fs4_c00416{font-size:285.000000px;}
.y0_c00416{bottom:0.000000px;}
.y25_c00416{bottom:3.105000px;}
.y24_c00416{bottom:7.228371px;}
.y23_c00416{bottom:48.915000px;}
.y22_c00416{bottom:74.715000px;}
.y21_c00416{bottom:98.565000px;}
.y20_c00416{bottom:124.215000px;}
.y1f_c00416{bottom:149.265000px;}
.y1e_c00416{bottom:173.565000px;}
.y1d_c00416{bottom:198.165000px;}
.y1c_c00416{bottom:223.065000px;}
.y1b_c00416{bottom:247.365000px;}
.y1a_c00416{bottom:271.065000px;}
.y19_c00416{bottom:295.965000px;}
.y18_c00416{bottom:320.415000px;}
.y17_c00416{bottom:342.915000px;}
.y16_c00416{bottom:369.015000px;}
.y15_c00416{bottom:393.915000px;}
.y14_c00416{bottom:417.915000px;}
.y13_c00416{bottom:442.065000px;}
.y12_c00416{bottom:466.215000px;}
.y11_c00416{bottom:490.365000px;}
.y10_c00416{bottom:515.115000px;}
.ye_c00416{bottom:526.965000px;}
.yf_c00416{bottom:538.965000px;}
.yd_c00416{bottom:587.565000px;}
.yc_c00416{bottom:610.665000px;}
.yb_c00416{bottom:634.215000px;}
.ya_c00416{bottom:658.815000px;}
.y9_c00416{bottom:682.215000px;}
.y8_c00416{bottom:707.115000px;}
.y7_c00416{bottom:731.115000px;}
.y6_c00416{bottom:755.415000px;}
.y5_c00416{bottom:779.265000px;}
.y4_c00416{bottom:803.715000px;}
.y3_c00416{bottom:828.015000px;}
.y2_c00416{bottom:852.165000px;}
.y1_c00416{bottom:876.465000px;}
.h9_c00416{height:13.200074px;}
.ha_c00416{height:43.804688px;}
.h6_c00416{height:66.713379px;}
.h2_c00416{height:79.497070px;}
.h5_c00416{height:84.269531px;}
.h4_c00416{height:91.160156px;}
.h3_c00416{height:91.176000px;}
.h8_c00416{height:108.843750px;}
.h7_c00416{height:304.095000px;}
.h0_c00416{height:989.025000px;}
.h1_c00416{height:989.250000px;}
.w1_c00416{width:104.875500px;}
.w0_c00416{width:672.000000px;}
.x0_c00416{left:0.000000px;}
.x2_c00416{left:45.300000px;}
.xa_c00416{left:52.950000px;}
.x9_c00416{left:55.050000px;}
.x1_c00416{left:56.250000px;}
.x3_c00416{left:57.300000px;}
.x4_c00416{left:58.500000px;}
.x5_c00416{left:60.450000px;}
.x8_c00416{left:62.100000px;}
.x7_c00416{left:94.200000px;}
.x6_c00416{left:149.550000px;}
.xc_c00416{left:287.814240px;}
.xb_c00416{left:440.100000px;}
@media print{
.v0_c00416{vertical-align:0.000000pt;}
.v1_c00416{vertical-align:129.066667pt;}
.ls0_c00416{letter-spacing:0.000000pt;}
.ws2_c00416{word-spacing:-67.640000pt;}
.ws0_c00416{word-spacing:-60.165333pt;}
.ws1_c00416{word-spacing:-15.424000pt;}
.ws3_c00416{word-spacing:0.000000pt;}
._1b_c00416{margin-left:-18.493333pt;}
._c_c00416{margin-left:-13.608000pt;}
._15_c00416{margin-left:-12.224000pt;}
._d_c00416{margin-left:-10.728000pt;}
._13_c00416{margin-left:-9.648000pt;}
._9_c00416{margin-left:-8.136000pt;}
._11_c00416{margin-left:-6.624000pt;}
._7_c00416{margin-left:-5.616000pt;}
._16_c00416{margin-left:-4.320000pt;}
._4_c00416{margin-left:-3.384000pt;}
._5_c00416{margin-left:-2.160000pt;}
._e_c00416{margin-left:-1.224000pt;}
._2_c00416{width:1.224000pt;}
._3_c00416{width:2.448000pt;}
._1_c00416{width:3.744000pt;}
._6_c00416{width:4.968000pt;}
._0_c00416{width:6.408000pt;}
._b_c00416{width:7.632000pt;}
._8_c00416{width:8.712000pt;}
._12_c00416{width:10.440000pt;}
._a_c00416{width:11.592000pt;}
._1f_c00416{width:12.744000pt;}
._f_c00416{width:13.680000pt;}
._1c_c00416{width:15.768000pt;}
._1a_c00416{width:17.074667pt;}
._17_c00416{width:20.664000pt;}
._14_c00416{width:25.008000pt;}
._18_c00416{width:36.360000pt;}
._10_c00416{width:56.376000pt;}
._1d_c00416{width:196.066667pt;}
._1e_c00416{width:257.256000pt;}
._20_c00416{width:262.032000pt;}
._19_c00416{width:422.266667pt;}
.fs6_c00416{font-size:42.666667pt;}
.fs3_c00416{font-size:50.666667pt;}
.fs2_c00416{font-size:64.000000pt;}
.fs0_c00416{font-size:72.000000pt;}
.fs1_c00416{font-size:77.333333pt;}
.fs5_c00416{font-size:96.000000pt;}
.fs4_c00416{font-size:253.333333pt;}
.y0_c00416{bottom:0.000000pt;}
.y25_c00416{bottom:2.760000pt;}
.y24_c00416{bottom:6.425219pt;}
.y23_c00416{bottom:43.480000pt;}
.y22_c00416{bottom:66.413333pt;}
.y21_c00416{bottom:87.613333pt;}
.y20_c00416{bottom:110.413333pt;}
.y1f_c00416{bottom:132.680000pt;}
.y1e_c00416{bottom:154.280000pt;}
.y1d_c00416{bottom:176.146667pt;}
.y1c_c00416{bottom:198.280000pt;}
.y1b_c00416{bottom:219.880000pt;}
.y1a_c00416{bottom:240.946667pt;}
.y19_c00416{bottom:263.080000pt;}
.y18_c00416{bottom:284.813333pt;}
.y17_c00416{bottom:304.813333pt;}
.y16_c00416{bottom:328.013333pt;}
.y15_c00416{bottom:350.146667pt;}
.y14_c00416{bottom:371.480000pt;}
.y13_c00416{bottom:392.946667pt;}
.y12_c00416{bottom:414.413333pt;}
.y11_c00416{bottom:435.880000pt;}
.y10_c00416{bottom:457.880000pt;}
.ye_c00416{bottom:468.413333pt;}
.yf_c00416{bottom:479.080000pt;}
.yd_c00416{bottom:522.280000pt;}
.yc_c00416{bottom:542.813333pt;}
.yb_c00416{bottom:563.746667pt;}
.ya_c00416{bottom:585.613333pt;}
.y9_c00416{bottom:606.413333pt;}
.y8_c00416{bottom:628.546667pt;}
.y7_c00416{bottom:649.880000pt;}
.y6_c00416{bottom:671.480000pt;}
.y5_c00416{bottom:692.680000pt;}
.y4_c00416{bottom:714.413333pt;}
.y3_c00416{bottom:736.013333pt;}
.y2_c00416{bottom:757.480000pt;}
.y1_c00416{bottom:779.080000pt;}
.h9_c00416{height:11.733399pt;}
.ha_c00416{height:38.937500pt;}
.h6_c00416{height:59.300781pt;}
.h2_c00416{height:70.664062pt;}
.h5_c00416{height:74.906250pt;}
.h4_c00416{height:81.031250pt;}
.h3_c00416{height:81.045333pt;}
.h8_c00416{height:96.750000pt;}
.h7_c00416{height:270.306667pt;}
.h0_c00416{height:879.133333pt;}
.h1_c00416{height:879.333333pt;}
.w1_c00416{width:93.222667pt;}
.w0_c00416{width:597.333333pt;}
.x0_c00416{left:0.000000pt;}
.x2_c00416{left:40.266667pt;}
.xa_c00416{left:47.066667pt;}
.x9_c00416{left:48.933333pt;}
.x1_c00416{left:50.000000pt;}
.x3_c00416{left:50.933333pt;}
.x4_c00416{left:52.000000pt;}
.x5_c00416{left:53.733333pt;}
.x8_c00416{left:55.200000pt;}
.x7_c00416{left:83.733333pt;}
.x6_c00416{left:132.933333pt;}
.xc_c00416{left:255.834880pt;}
.xb_c00416{left:391.200000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ace757f2cbd8d8f2015b06a9.woff2')format("woff");}.ff1_c00417{font-family:ff1_c00417;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00417;src:url('chunks/assets/font_51bccd1eeaa85835b0461685.woff2')format("woff");}.ff2_c00417{font-family:ff2_c00417;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00417;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff3_c00417{font-family:ff3_c00417;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00417;src:url('chunks/assets/font_c24f21e7f69a4f204a60ed86.woff2')format("woff");}.ff4_c00417{font-family:ff4_c00417;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00417;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c00417{font-family:ff5_c00417;line-height:1.219238;font-style: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;}
.ls3_c00417{letter-spacing:0.000000px;}
.ls1_c00417{letter-spacing:7.440000px;}
.ls0_c00417{letter-spacing:13.584000px;}
.ls2_c00417{letter-spacing:19.464000px;}
.ls4_c00417{letter-spacing:123.000000px;}
.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:-67.686000px;}
.ws0_c00417{word-spacing:-17.352000px;}
.ws3_c00417{word-spacing:0.000000px;}
.ws2_c00417{word-spacing:312.456000px;}
._27_c00417{margin-left:-120.687000px;}
._26_c00417{margin-left:-119.559000px;}
._29_c00417{margin-left:-116.952000px;}
._28_c00417{margin-left:-110.403000px;}
._2a_c00417{margin-left:-32.724000px;}
._1b_c00417{margin-left:-25.659000px;}
._8_c00417{margin-left:-23.463000px;}
._23_c00417{margin-left:-18.087000px;}
._2_c00417{margin-left:-15.147000px;}
._1d_c00417{margin-left:-11.583000px;}
._a_c00417{margin-left:-9.999000px;}
._4_c00417{margin-left:-8.910000px;}
._0_c00417{margin-left:-7.821000px;}
._f_c00417{margin-left:-6.255000px;}
._1a_c00417{margin-left:-5.202000px;}
._b_c00417{margin-left:-3.564000px;}
._17_c00417{margin-left:-2.304000px;}
._1_c00417{margin-left:-1.287000px;}
._c_c00417{width:1.044000px;}
._6_c00417{width:2.574000px;}
._9_c00417{width:4.257000px;}
._10_c00417{width:5.445000px;}
._d_c00417{width:6.561000px;}
._7_c00417{width:7.920000px;}
._12_c00417{width:9.081000px;}
._11_c00417{width:10.197000px;}
._14_c00417{width:11.322000px;}
._1f_c00417{width:12.393000px;}
._13_c00417{width:13.599000px;}
._16_c00417{width:14.616000px;}
._15_c00417{width:16.740000px;}
._18_c00417{width:18.657000px;}
._19_c00417{width:23.733000px;}
._1c_c00417{width:26.325000px;}
._22_c00417{width:32.505000px;}
._25_c00417{width:35.640000px;}
._20_c00417{width:36.999000px;}
._5_c00417{width:65.835000px;}
._3_c00417{width:120.780000px;}
._e_c00417{width:145.800000px;}
._24_c00417{width:182.787000px;}
._2b_c00417{width:256.365000px;}
._1e_c00417{width:258.471000px;}
._21_c00417{width:290.466000px;}
.fc2_c00417{color:transparent;}
.fc1_c00417{color:rgb(128,128,128);}
.fc0_c00417{color:rgb(0,0,0);}
.fs4_c00417{font-size:48.000000px;}
.fs2_c00417{font-size:72.000000px;}
.fs1_c00417{font-size:81.000000px;}
.fs3_c00417{font-size:87.000000px;}
.fs0_c00417{font-size:99.000000px;}
.y0_c00417{bottom:0.000000px;}
.y24_c00417{bottom:3.105000px;}
.y23_c00417{bottom:7.228371px;}
.y20_c00417{bottom:143.565000px;}
.y22_c00417{bottom:146.865000px;}
.y1f_c00417{bottom:168.165000px;}
.y21_c00417{bottom:170.415000px;}
.y1e_c00417{bottom:196.815000px;}
.y1d_c00417{bottom:219.165000px;}
.y1c_c00417{bottom:243.765000px;}
.y1b_c00417{bottom:268.365000px;}
.y1a_c00417{bottom:292.665000px;}
.y19_c00417{bottom:316.965000px;}
.y18_c00417{bottom:343.215000px;}
.y17_c00417{bottom:363.915000px;}
.y16_c00417{bottom:390.465000px;}
.y15_c00417{bottom:414.915000px;}
.y14_c00417{bottom:439.065000px;}
.y13_c00417{bottom:463.815000px;}
.y12_c00417{bottom:487.815000px;}
.y11_c00417{bottom:511.965000px;}
.y10_c00417{bottom:535.665000px;}
.yf_c00417{bottom:558.615000px;}
.ye_c00417{bottom:584.265000px;}
.yd_c00417{bottom:608.565000px;}
.yc_c00417{bottom:632.565000px;}
.yb_c00417{bottom:656.865000px;}
.ya_c00417{bottom:680.865000px;}
.y9_c00417{bottom:705.465000px;}
.y8_c00417{bottom:729.765000px;}
.y7_c00417{bottom:753.765000px;}
.y6_c00417{bottom:777.915000px;}
.y5_c00417{bottom:802.365000px;}
.y4_c00417{bottom:826.215000px;}
.y3_c00417{bottom:850.815000px;}
.y2_c00417{bottom:876.465000px;}
.y1_c00417{bottom:909.315000px;}
.h7_c00417{height:13.200074px;}
.h8_c00417{height:43.804688px;}
.h3_c00417{height:79.497070px;}
.h4_c00417{height:84.269531px;}
.h5_c00417{height:91.160156px;}
.h6_c00417{height:91.176000px;}
.h2_c00417{height:115.870605px;}
.h1_c00417{height:986.250000px;}
.h0_c00417{height:986.325000px;}
.w2_c00417{width:104.875500px;}
.w0_c00417{width:667.425000px;}
.w1_c00417{width:667.500000px;}
.x0_c00417{left:0.000000px;}
.x2_c00417{left:27.000000px;}
.x7_c00417{left:28.650000px;}
.x9_c00417{left:29.700000px;}
.x8_c00417{left:31.350000px;}
.xc_c00417{left:51.000000px;}
.xa_c00417{left:105.750000px;}
.x5_c00417{left:120.600000px;}
.x4_c00417{left:122.250000px;}
.x3_c00417{left:123.450000px;}
.x1_c00417{left:124.800000px;}
.xb_c00417{left:127.650000px;}
.x6_c00417{left:146.250000px;}
.xd_c00417{left:198.900000px;}
.xe_c00417{left:285.526749px;}
@media print{
.v0_c00417{vertical-align:0.000000pt;}
.ls3_c00417{letter-spacing:0.000000pt;}
.ls1_c00417{letter-spacing:6.613333pt;}
.ls0_c00417{letter-spacing:12.074667pt;}
.ls2_c00417{letter-spacing:17.301333pt;}
.ls4_c00417{letter-spacing:109.333333pt;}
.ws1_c00417{word-spacing:-60.165333pt;}
.ws0_c00417{word-spacing:-15.424000pt;}
.ws3_c00417{word-spacing:0.000000pt;}
.ws2_c00417{word-spacing:277.738667pt;}
._27_c00417{margin-left:-107.277333pt;}
._26_c00417{margin-left:-106.274667pt;}
._29_c00417{margin-left:-103.957333pt;}
._28_c00417{margin-left:-98.136000pt;}
._2a_c00417{margin-left:-29.088000pt;}
._1b_c00417{margin-left:-22.808000pt;}
._8_c00417{margin-left:-20.856000pt;}
._23_c00417{margin-left:-16.077333pt;}
._2_c00417{margin-left:-13.464000pt;}
._1d_c00417{margin-left:-10.296000pt;}
._a_c00417{margin-left:-8.888000pt;}
._4_c00417{margin-left:-7.920000pt;}
._0_c00417{margin-left:-6.952000pt;}
._f_c00417{margin-left:-5.560000pt;}
._1a_c00417{margin-left:-4.624000pt;}
._b_c00417{margin-left:-3.168000pt;}
._17_c00417{margin-left:-2.048000pt;}
._1_c00417{margin-left:-1.144000pt;}
._c_c00417{width:0.928000pt;}
._6_c00417{width:2.288000pt;}
._9_c00417{width:3.784000pt;}
._10_c00417{width:4.840000pt;}
._d_c00417{width:5.832000pt;}
._7_c00417{width:7.040000pt;}
._12_c00417{width:8.072000pt;}
._11_c00417{width:9.064000pt;}
._14_c00417{width:10.064000pt;}
._1f_c00417{width:11.016000pt;}
._13_c00417{width:12.088000pt;}
._16_c00417{width:12.992000pt;}
._15_c00417{width:14.880000pt;}
._18_c00417{width:16.584000pt;}
._19_c00417{width:21.096000pt;}
._1c_c00417{width:23.400000pt;}
._22_c00417{width:28.893333pt;}
._25_c00417{width:31.680000pt;}
._20_c00417{width:32.888000pt;}
._5_c00417{width:58.520000pt;}
._3_c00417{width:107.360000pt;}
._e_c00417{width:129.600000pt;}
._24_c00417{width:162.477333pt;}
._2b_c00417{width:227.880000pt;}
._1e_c00417{width:229.752000pt;}
._21_c00417{width:258.192000pt;}
.fs4_c00417{font-size:42.666667pt;}
.fs2_c00417{font-size:64.000000pt;}
.fs1_c00417{font-size:72.000000pt;}
.fs3_c00417{font-size:77.333333pt;}
.fs0_c00417{font-size:88.000000pt;}
.y0_c00417{bottom:0.000000pt;}
.y24_c00417{bottom:2.760000pt;}
.y23_c00417{bottom:6.425219pt;}
.y20_c00417{bottom:127.613333pt;}
.y22_c00417{bottom:130.546667pt;}
.y1f_c00417{bottom:149.480000pt;}
.y21_c00417{bottom:151.480000pt;}
.y1e_c00417{bottom:174.946667pt;}
.y1d_c00417{bottom:194.813333pt;}
.y1c_c00417{bottom:216.680000pt;}
.y1b_c00417{bottom:238.546667pt;}
.y1a_c00417{bottom:260.146667pt;}
.y19_c00417{bottom:281.746667pt;}
.y18_c00417{bottom:305.080000pt;}
.y17_c00417{bottom:323.480000pt;}
.y16_c00417{bottom:347.080000pt;}
.y15_c00417{bottom:368.813333pt;}
.y14_c00417{bottom:390.280000pt;}
.y13_c00417{bottom:412.280000pt;}
.y12_c00417{bottom:433.613333pt;}
.y11_c00417{bottom:455.080000pt;}
.y10_c00417{bottom:476.146667pt;}
.yf_c00417{bottom:496.546667pt;}
.ye_c00417{bottom:519.346667pt;}
.yd_c00417{bottom:540.946667pt;}
.yc_c00417{bottom:562.280000pt;}
.yb_c00417{bottom:583.880000pt;}
.ya_c00417{bottom:605.213333pt;}
.y9_c00417{bottom:627.080000pt;}
.y8_c00417{bottom:648.680000pt;}
.y7_c00417{bottom:670.013333pt;}
.y6_c00417{bottom:691.480000pt;}
.y5_c00417{bottom:713.213333pt;}
.y4_c00417{bottom:734.413333pt;}
.y3_c00417{bottom:756.280000pt;}
.y2_c00417{bottom:779.080000pt;}
.y1_c00417{bottom:808.280000pt;}
.h7_c00417{height:11.733399pt;}
.h8_c00417{height:38.937500pt;}
.h3_c00417{height:70.664062pt;}
.h4_c00417{height:74.906250pt;}
.h5_c00417{height:81.031250pt;}
.h6_c00417{height:81.045333pt;}
.h2_c00417{height:102.996094pt;}
.h1_c00417{height:876.666667pt;}
.h0_c00417{height:876.733333pt;}
.w2_c00417{width:93.222667pt;}
.w0_c00417{width:593.266667pt;}
.w1_c00417{width:593.333333pt;}
.x0_c00417{left:0.000000pt;}
.x2_c00417{left:24.000000pt;}
.x7_c00417{left:25.466667pt;}
.x9_c00417{left:26.400000pt;}
.x8_c00417{left:27.866667pt;}
.xc_c00417{left:45.333333pt;}
.xa_c00417{left:94.000000pt;}
.x5_c00417{left:107.200000pt;}
.x4_c00417{left:108.666667pt;}
.x3_c00417{left:109.733333pt;}
.x1_c00417{left:110.933333pt;}
.xb_c00417{left:113.466667pt;}
.x6_c00417{left:130.000000pt;}
.xd_c00417{left:176.800000pt;}
.xe_c00417{left:253.801554pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_448c32f48d1208723386ce92.woff2')format("woff");}.ff1_c00418{font-family:ff1_c00418;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00418;src:url('chunks/assets/font_7228fc1f8bd5225f1f1ff6f2.woff2')format("woff");}.ff2_c00418{font-family:ff2_c00418;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00418;src:url('chunks/assets/font_22524a6f92b205015cb2aaee.woff2')format("woff");}.ff3_c00418{font-family:ff3_c00418;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00418;src:url('chunks/assets/font_2f24f0f95a0edba44f75397e.woff2')format("woff");}.ff4_c00418{font-family:ff4_c00418;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00418;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c00418{font-family:ff5_c00418;line-height:1.219238;font-style: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.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m1_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;}
.ls2_c00418{letter-spacing:0.000000px;}
.ls0_c00418{letter-spacing:3.000000px;}
.ls1_c00418{letter-spacing:22.308000px;}
.sc__c00418{text-shadow:none;}
.sc0_c00418{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00418{-webkit-text-stroke:0px transparent;}
.sc0_c00418{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00418{word-spacing:-20.250000px;}
.ws1_c00418{word-spacing:-17.250000px;}
.ws2_c00418{word-spacing:0.000000px;}
._12_c00418{margin-left:-10.056000px;}
._14_c00418{margin-left:-7.296000px;}
._f_c00418{margin-left:-5.073000px;}
._10_c00418{margin-left:-3.648000px;}
._13_c00418{margin-left:-1.995000px;}
._0_c00418{width:1.710000px;}
._7_c00418{width:3.192000px;}
._d_c00418{width:4.446000px;}
._6_c00418{width:5.586000px;}
._5_c00418{width:7.353000px;}
._3_c00418{width:9.063000px;}
._1_c00418{width:10.431000px;}
._a_c00418{width:11.742000px;}
._8_c00418{width:13.623000px;}
._2_c00418{width:14.706000px;}
._e_c00418{width:15.789000px;}
._b_c00418{width:18.831000px;}
._c_c00418{width:20.064000px;}
._15_c00418{width:21.090000px;}
._4_c00418{width:22.230000px;}
._9_c00418{width:23.598000px;}
._16_c00418{width:25.887000px;}
._19_c00418{width:29.577000px;}
._18_c00418{width:32.319000px;}
._11_c00418{width:38.232000px;}
._17_c00418{width:39.957000px;}
._1a_c00418{width:241.140000px;}
.fc2_c00418{color:transparent;}
.fc1_c00418{color:rgb(128,128,128);}
.fc0_c00418{color:rgb(0,0,0);}
.fs3_c00418{font-size:48.000000px;}
.fs1_c00418{font-size:57.000000px;}
.fs2_c00418{font-size:81.000000px;}
.fs0_c00418{font-size:138.000000px;}
.y0_c00418{bottom:0.000000px;}
.y26_c00418{bottom:3.105000px;}
.y25_c00418{bottom:7.228371px;}
.y24_c00418{bottom:67.965000px;}
.y23_c00418{bottom:92.565000px;}
.y22_c00418{bottom:118.215000px;}
.y21_c00418{bottom:142.515000px;}
.y20_c00418{bottom:166.815000px;}
.y1f_c00418{bottom:191.115000px;}
.y1e_c00418{bottom:214.965000px;}
.y1d_c00418{bottom:239.415000px;}
.y1c_c00418{bottom:264.015000px;}
.y1b_c00418{bottom:288.015000px;}
.y1a_c00418{bottom:312.315000px;}
.y19_c00418{bottom:336.165000px;}
.y18_c00418{bottom:360.165000px;}
.y17_c00418{bottom:384.165000px;}
.y16_c00418{bottom:408.465000px;}
.y15_c00418{bottom:432.465000px;}
.y14_c00418{bottom:456.765000px;}
.y13_c00418{bottom:480.315000px;}
.y12_c00418{bottom:504.015000px;}
.y11_c00418{bottom:528.315000px;}
.y10_c00418{bottom:552.165000px;}
.yf_c00418{bottom:575.865000px;}
.ye_c00418{bottom:599.865000px;}
.yd_c00418{bottom:624.165000px;}
.yc_c00418{bottom:648.315000px;}
.yb_c00418{bottom:672.765000px;}
.ya_c00418{bottom:696.615000px;}
.y9_c00418{bottom:720.615000px;}
.y8_c00418{bottom:744.615000px;}
.y7_c00418{bottom:769.215000px;}
.y1_c00418{bottom:776.265000px;}
.y6_c00418{bottom:793.215000px;}
.y5_c00418{bottom:817.215000px;}
.y4_c00418{bottom:841.365000px;}
.y3_c00418{bottom:865.665000px;}
.y2_c00418{bottom:889.365000px;}
.h6_c00418{height:13.200074px;}
.h7_c00418{height:43.804688px;}
.h3_c00418{height:57.445312px;}
.h5_c00418{height:79.497070px;}
.h4_c00418{height:81.632812px;}
.h2_c00418{height:149.592000px;}
.h0_c00418{height:989.025000px;}
.h1_c00418{height:989.250000px;}
.w1_c00418{width:104.875500px;}
.w0_c00418{width:672.000000px;}
.x0_c00418{left:0.000000px;}
.x1_c00418{left:42.900000px;}
.xc_c00418{left:48.300000px;}
.xb_c00418{left:49.350000px;}
.xa_c00418{left:51.000000px;}
.x9_c00418{left:52.050000px;}
.x8_c00418{left:53.400000px;}
.x7_c00418{left:54.750000px;}
.x6_c00418{left:56.100000px;}
.x5_c00418{left:57.150000px;}
.x4_c00418{left:58.500000px;}
.x3_c00418{left:60.000000px;}
.x2_c00418{left:61.050000px;}
.xe_c00418{left:287.814240px;}
.xd_c00418{left:400.650000px;}
@media print{
.v0_c00418{vertical-align:0.000000pt;}
.ls2_c00418{letter-spacing:0.000000pt;}
.ls0_c00418{letter-spacing:2.666667pt;}
.ls1_c00418{letter-spacing:19.829333pt;}
.ws0_c00418{word-spacing:-18.000000pt;}
.ws1_c00418{word-spacing:-15.333333pt;}
.ws2_c00418{word-spacing:0.000000pt;}
._12_c00418{margin-left:-8.938667pt;}
._14_c00418{margin-left:-6.485333pt;}
._f_c00418{margin-left:-4.509333pt;}
._10_c00418{margin-left:-3.242667pt;}
._13_c00418{margin-left:-1.773333pt;}
._0_c00418{width:1.520000pt;}
._7_c00418{width:2.837333pt;}
._d_c00418{width:3.952000pt;}
._6_c00418{width:4.965333pt;}
._5_c00418{width:6.536000pt;}
._3_c00418{width:8.056000pt;}
._1_c00418{width:9.272000pt;}
._a_c00418{width:10.437333pt;}
._8_c00418{width:12.109333pt;}
._2_c00418{width:13.072000pt;}
._e_c00418{width:14.034667pt;}
._b_c00418{width:16.738667pt;}
._c_c00418{width:17.834667pt;}
._15_c00418{width:18.746667pt;}
._4_c00418{width:19.760000pt;}
._9_c00418{width:20.976000pt;}
._16_c00418{width:23.010667pt;}
._19_c00418{width:26.290667pt;}
._18_c00418{width:28.728000pt;}
._11_c00418{width:33.984000pt;}
._17_c00418{width:35.517333pt;}
._1a_c00418{width:214.346667pt;}
.fs3_c00418{font-size:42.666667pt;}
.fs1_c00418{font-size:50.666667pt;}
.fs2_c00418{font-size:72.000000pt;}
.fs0_c00418{font-size:122.666667pt;}
.y0_c00418{bottom:0.000000pt;}
.y26_c00418{bottom:2.760000pt;}
.y25_c00418{bottom:6.425219pt;}
.y24_c00418{bottom:60.413333pt;}
.y23_c00418{bottom:82.280000pt;}
.y22_c00418{bottom:105.080000pt;}
.y21_c00418{bottom:126.680000pt;}
.y20_c00418{bottom:148.280000pt;}
.y1f_c00418{bottom:169.880000pt;}
.y1e_c00418{bottom:191.080000pt;}
.y1d_c00418{bottom:212.813333pt;}
.y1c_c00418{bottom:234.680000pt;}
.y1b_c00418{bottom:256.013333pt;}
.y1a_c00418{bottom:277.613333pt;}
.y19_c00418{bottom:298.813333pt;}
.y18_c00418{bottom:320.146667pt;}
.y17_c00418{bottom:341.480000pt;}
.y16_c00418{bottom:363.080000pt;}
.y15_c00418{bottom:384.413333pt;}
.y14_c00418{bottom:406.013333pt;}
.y13_c00418{bottom:426.946667pt;}
.y12_c00418{bottom:448.013333pt;}
.y11_c00418{bottom:469.613333pt;}
.y10_c00418{bottom:490.813333pt;}
.yf_c00418{bottom:511.880000pt;}
.ye_c00418{bottom:533.213333pt;}
.yd_c00418{bottom:554.813333pt;}
.yc_c00418{bottom:576.280000pt;}
.yb_c00418{bottom:598.013333pt;}
.ya_c00418{bottom:619.213333pt;}
.y9_c00418{bottom:640.546667pt;}
.y8_c00418{bottom:661.880000pt;}
.y7_c00418{bottom:683.746667pt;}
.y1_c00418{bottom:690.013333pt;}
.y6_c00418{bottom:705.080000pt;}
.y5_c00418{bottom:726.413333pt;}
.y4_c00418{bottom:747.880000pt;}
.y3_c00418{bottom:769.480000pt;}
.y2_c00418{bottom:790.546667pt;}
.h6_c00418{height:11.733399pt;}
.h7_c00418{height:38.937500pt;}
.h3_c00418{height:51.062500pt;}
.h5_c00418{height:70.664062pt;}
.h4_c00418{height:72.562500pt;}
.h2_c00418{height:132.970667pt;}
.h0_c00418{height:879.133333pt;}
.h1_c00418{height:879.333333pt;}
.w1_c00418{width:93.222667pt;}
.w0_c00418{width:597.333333pt;}
.x0_c00418{left:0.000000pt;}
.x1_c00418{left:38.133333pt;}
.xc_c00418{left:42.933333pt;}
.xb_c00418{left:43.866667pt;}
.xa_c00418{left:45.333333pt;}
.x9_c00418{left:46.266667pt;}
.x8_c00418{left:47.466667pt;}
.x7_c00418{left:48.666667pt;}
.x6_c00418{left:49.866667pt;}
.x5_c00418{left:50.800000pt;}
.x4_c00418{left:52.000000pt;}
.x3_c00418{left:53.333333pt;}
.x2_c00418{left:54.266667pt;}
.xe_c00418{left:255.834880pt;}
.xd_c00418{left:356.133333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_cfc985f849a64f20cb9a88db.woff2')format("woff");}.ff1_c00419{font-family:ff1_c00419;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00419;src:url('chunks/assets/font_ff79f395065b7158cc94b413.woff2')format("woff");}.ff2_c00419{font-family:ff2_c00419;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00419;src:url('chunks/assets/font_31997e06ed2ed0cade21a9e9.woff2')format("woff");}.ff3_c00419{font-family:ff3_c00419;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00419;src:url('chunks/assets/font_a87b9c6f4885cf3f8c25c950.woff2')format("woff");}.ff4_c00419{font-family:ff4_c00419;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00419;src:url('chunks/assets/font_bf19a0369dde68d999b6153d.woff2')format("woff");}.ff5_c00419{font-family:ff5_c00419;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00419;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c00419{font-family:ff6_c00419;line-height:1.219238;font-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_c00419{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,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;}
.ls3_c00419{letter-spacing:-6.000000px;}
.ls4_c00419{letter-spacing:0.000000px;}
.ls1_c00419{letter-spacing:1.500000px;}
.ls2_c00419{letter-spacing:6.000000px;}
.ls0_c00419{letter-spacing:186.750000px;}
.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:-67.686000px;}
.ws2_c00419{word-spacing:-20.250000px;}
.ws0_c00419{word-spacing:-17.352000px;}
.ws4_c00419{word-spacing:0.000000px;}
.ws3_c00419{word-spacing:4.914000px;}
._a_c00419{margin-left:-33.390000px;}
._1e_c00419{margin-left:-20.700000px;}
._9_c00419{margin-left:-16.065000px;}
._19_c00419{margin-left:-14.094000px;}
._8_c00419{margin-left:-9.555000px;}
._1a_c00419{margin-left:-8.541000px;}
._14_c00419{margin-left:-6.801000px;}
._2_c00419{margin-left:-5.544000px;}
._f_c00419{margin-left:-4.413000px;}
._7_c00419{margin-left:-3.255000px;}
._6_c00419{margin-left:-1.890000px;}
._0_c00419{width:1.386000px;}
._1_c00419{width:3.087000px;}
._3_c00419{width:4.788000px;}
._e_c00419{width:6.309000px;}
._12_c00419{width:7.731000px;}
._c_c00419{width:9.009000px;}
._4_c00419{width:10.584000px;}
._13_c00419{width:11.895000px;}
._22_c00419{width:12.927000px;}
._d_c00419{width:13.938000px;}
._11_c00419{width:15.552000px;}
._1c_c00419{width:16.803000px;}
._1d_c00419{width:18.279000px;}
._23_c00419{width:19.392000px;}
._25_c00419{width:20.958000px;}
._15_c00419{width:22.218000px;}
._10_c00419{width:24.285000px;}
._26_c00419{width:25.863000px;}
._27_c00419{width:27.636000px;}
._16_c00419{width:28.710000px;}
._17_c00419{width:30.066000px;}
._24_c00419{width:34.023000px;}
._18_c00419{width:35.529000px;}
._21_c00419{width:57.426000px;}
._20_c00419{width:78.804000px;}
._b_c00419{width:112.320000px;}
._1b_c00419{width:125.913000px;}
._1f_c00419{width:197.472000px;}
._5_c00419{width:205.683000px;}
.fc2_c00419{color:transparent;}
.fc1_c00419{color:rgb(128,128,128);}
.fc0_c00419{color:rgb(0,0,0);}
.fs5_c00419{font-size:42.000000px;}
.fs8_c00419{font-size:48.000000px;}
.fs0_c00419{font-size:63.000000px;}
.fs6_c00419{font-size:69.000000px;}
.fs3_c00419{font-size:72.000000px;}
.fs2_c00419{font-size:81.000000px;}
.fs4_c00419{font-size:87.000000px;}
.fs1_c00419{font-size:105.000000px;}
.fs7_c00419{font-size:108.000000px;}
.y0_c00419{bottom:0.000000px;}
.y23_c00419{bottom:3.105000px;}
.y22_c00419{bottom:7.228371px;}
.y21_c00419{bottom:76.365000px;}
.y20_c00419{bottom:97.515000px;}
.y1f_c00419{bottom:122.265000px;}
.y1e_c00419{bottom:146.865000px;}
.y1d_c00419{bottom:171.165000px;}
.y1c_c00419{bottom:195.165000px;}
.y1b_c00419{bottom:220.515000px;}
.y1a_c00419{bottom:245.415000px;}
.y19_c00419{bottom:268.065000px;}
.y18_c00419{bottom:293.265000px;}
.y17_c00419{bottom:316.365000px;}
.y16_c00419{bottom:340.665000px;}
.y15_c00419{bottom:365.265000px;}
.y14_c00419{bottom:389.565000px;}
.y13_c00419{bottom:413.115000px;}
.y12_c00419{bottom:437.415000px;}
.y11_c00419{bottom:509.715000px;}
.y10_c00419{bottom:534.015000px;}
.yf_c00419{bottom:559.215000px;}
.ye_c00419{bottom:580.965000px;}
.yd_c00419{bottom:605.115000px;}
.yc_c00419{bottom:630.915000px;}
.yb_c00419{bottom:653.865000px;}
.ya_c00419{bottom:678.765000px;}
.y9_c00419{bottom:702.015000px;}
.y8_c00419{bottom:726.615000px;}
.y7_c00419{bottom:750.615000px;}
.y6_c00419{bottom:773.865000px;}
.y5_c00419{bottom:798.165000px;}
.y4_c00419{bottom:822.465000px;}
.y3_c00419{bottom:846.165000px;}
.y2_c00419{bottom:868.815000px;}
.y1_c00419{bottom:892.665000px;}
.h7_c00419{height:13.200074px;}
.h8_c00419{height:43.804688px;}
.h5_c00419{height:79.497070px;}
.h3_c00419{height:84.269531px;}
.h4_c00419{height:91.176000px;}
.h2_c00419{height:105.820312px;}
.h6_c00419{height:108.843750px;}
.h1_c00419{height:986.250000px;}
.h0_c00419{height:986.325000px;}
.w2_c00419{width:104.875500px;}
.w0_c00419{width:667.425000px;}
.w1_c00419{width:667.500000px;}
.x0_c00419{left:0.000000px;}
.x1_c00419{left:25.650000px;}
.x2_c00419{left:27.300000px;}
.x6_c00419{left:31.050000px;}
.x5_c00419{left:68.850000px;}
.x7_c00419{left:87.750000px;}
.x3_c00419{left:115.800000px;}
.x4_c00419{left:117.450000px;}
.x8_c00419{left:118.500000px;}
.x9_c00419{left:120.150000px;}
.xa_c00419{left:121.200000px;}
.xb_c00419{left:126.150000px;}
.x11_c00419{left:285.526749px;}
.xc_c00419{left:297.750000px;}
.xd_c00419{left:325.950000px;}
.xe_c00419{left:451.200000px;}
.xf_c00419{left:546.300000px;}
.x10_c00419{left:587.850000px;}
@media print{
.v0_c00419{vertical-align:0.000000pt;}
.ls3_c00419{letter-spacing:-5.333333pt;}
.ls4_c00419{letter-spacing:0.000000pt;}
.ls1_c00419{letter-spacing:1.333333pt;}
.ls2_c00419{letter-spacing:5.333333pt;}
.ls0_c00419{letter-spacing:166.000000pt;}
.ws1_c00419{word-spacing:-60.165333pt;}
.ws2_c00419{word-spacing:-18.000000pt;}
.ws0_c00419{word-spacing:-15.424000pt;}
.ws4_c00419{word-spacing:0.000000pt;}
.ws3_c00419{word-spacing:4.368000pt;}
._a_c00419{margin-left:-29.680000pt;}
._1e_c00419{margin-left:-18.400000pt;}
._9_c00419{margin-left:-14.280000pt;}
._19_c00419{margin-left:-12.528000pt;}
._8_c00419{margin-left:-8.493333pt;}
._1a_c00419{margin-left:-7.592000pt;}
._14_c00419{margin-left:-6.045333pt;}
._2_c00419{margin-left:-4.928000pt;}
._f_c00419{margin-left:-3.922667pt;}
._7_c00419{margin-left:-2.893333pt;}
._6_c00419{margin-left:-1.680000pt;}
._0_c00419{width:1.232000pt;}
._1_c00419{width:2.744000pt;}
._3_c00419{width:4.256000pt;}
._e_c00419{width:5.608000pt;}
._12_c00419{width:6.872000pt;}
._c_c00419{width:8.008000pt;}
._4_c00419{width:9.408000pt;}
._13_c00419{width:10.573333pt;}
._22_c00419{width:11.490667pt;}
._d_c00419{width:12.389333pt;}
._11_c00419{width:13.824000pt;}
._1c_c00419{width:14.936000pt;}
._1d_c00419{width:16.248000pt;}
._23_c00419{width:17.237333pt;}
._25_c00419{width:18.629333pt;}
._15_c00419{width:19.749333pt;}
._10_c00419{width:21.586667pt;}
._26_c00419{width:22.989333pt;}
._27_c00419{width:24.565333pt;}
._16_c00419{width:25.520000pt;}
._17_c00419{width:26.725333pt;}
._24_c00419{width:30.242667pt;}
._18_c00419{width:31.581333pt;}
._21_c00419{width:51.045333pt;}
._20_c00419{width:70.048000pt;}
._b_c00419{width:99.840000pt;}
._1b_c00419{width:111.922667pt;}
._1f_c00419{width:175.530667pt;}
._5_c00419{width:182.829333pt;}
.fs5_c00419{font-size:37.333333pt;}
.fs8_c00419{font-size:42.666667pt;}
.fs0_c00419{font-size:56.000000pt;}
.fs6_c00419{font-size:61.333333pt;}
.fs3_c00419{font-size:64.000000pt;}
.fs2_c00419{font-size:72.000000pt;}
.fs4_c00419{font-size:77.333333pt;}
.fs1_c00419{font-size:93.333333pt;}
.fs7_c00419{font-size:96.000000pt;}
.y0_c00419{bottom:0.000000pt;}
.y23_c00419{bottom:2.760000pt;}
.y22_c00419{bottom:6.425219pt;}
.y21_c00419{bottom:67.880000pt;}
.y20_c00419{bottom:86.680000pt;}
.y1f_c00419{bottom:108.680000pt;}
.y1e_c00419{bottom:130.546667pt;}
.y1d_c00419{bottom:152.146667pt;}
.y1c_c00419{bottom:173.480000pt;}
.y1b_c00419{bottom:196.013333pt;}
.y1a_c00419{bottom:218.146667pt;}
.y19_c00419{bottom:238.280000pt;}
.y18_c00419{bottom:260.680000pt;}
.y17_c00419{bottom:281.213333pt;}
.y16_c00419{bottom:302.813333pt;}
.y15_c00419{bottom:324.680000pt;}
.y14_c00419{bottom:346.280000pt;}
.y13_c00419{bottom:367.213333pt;}
.y12_c00419{bottom:388.813333pt;}
.y11_c00419{bottom:453.080000pt;}
.y10_c00419{bottom:474.680000pt;}
.yf_c00419{bottom:497.080000pt;}
.ye_c00419{bottom:516.413333pt;}
.yd_c00419{bottom:537.880000pt;}
.yc_c00419{bottom:560.813333pt;}
.yb_c00419{bottom:581.213333pt;}
.ya_c00419{bottom:603.346667pt;}
.y9_c00419{bottom:624.013333pt;}
.y8_c00419{bottom:645.880000pt;}
.y7_c00419{bottom:667.213333pt;}
.y6_c00419{bottom:687.880000pt;}
.y5_c00419{bottom:709.480000pt;}
.y4_c00419{bottom:731.080000pt;}
.y3_c00419{bottom:752.146667pt;}
.y2_c00419{bottom:772.280000pt;}
.y1_c00419{bottom:793.480000pt;}
.h7_c00419{height:11.733399pt;}
.h8_c00419{height:38.937500pt;}
.h5_c00419{height:70.664062pt;}
.h3_c00419{height:74.906250pt;}
.h4_c00419{height:81.045333pt;}
.h2_c00419{height:94.062500pt;}
.h6_c00419{height:96.750000pt;}
.h1_c00419{height:876.666667pt;}
.h0_c00419{height:876.733333pt;}
.w2_c00419{width:93.222667pt;}
.w0_c00419{width:593.266667pt;}
.w1_c00419{width:593.333333pt;}
.x0_c00419{left:0.000000pt;}
.x1_c00419{left:22.800000pt;}
.x2_c00419{left:24.266667pt;}
.x6_c00419{left:27.600000pt;}
.x5_c00419{left:61.200000pt;}
.x7_c00419{left:78.000000pt;}
.x3_c00419{left:102.933333pt;}
.x4_c00419{left:104.400000pt;}
.x8_c00419{left:105.333333pt;}
.x9_c00419{left:106.800000pt;}
.xa_c00419{left:107.733333pt;}
.xb_c00419{left:112.133333pt;}
.x11_c00419{left:253.801554pt;}
.xc_c00419{left:264.666667pt;}
.xd_c00419{left:289.733333pt;}
.xe_c00419{left:401.066667pt;}
.xf_c00419{left:485.600000pt;}
.x10_c00419{left:522.533333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_51036ab05ff1f4437b2e1663.woff2')format("woff");}.ff1_c00420{font-family:ff1_c00420;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00420;src:url('chunks/assets/font_efe84a73ec3f2c78521c40b8.woff2')format("woff");}.ff2_c00420{font-family:ff2_c00420;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00420;src:url('chunks/assets/font_5c6e45e24020b6b4429322aa.woff2')format("woff");}.ff3_c00420{font-family:ff3_c00420;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00420;src:url('chunks/assets/font_e4740d4679ac034097b08ad4.woff2')format("woff");}.ff4_c00420{font-family:ff4_c00420;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00420;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c00420{font-family:ff5_c00420;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00420{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00420{vertical-align:0.000000px;}
.ls2_c00420{letter-spacing:0.000000px;}
.ls1_c00420{letter-spacing:6.300000px;}
.ls0_c00420{letter-spacing:15.720000px;}
.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;}
}
.ws2_c00420{word-spacing:-20.250000px;}
.ws1_c00420{word-spacing:-19.065600px;}
.ws0_c00420{word-spacing:-17.352000px;}
.ws3_c00420{word-spacing:0.000000px;}
._12_c00420{margin-left:-16.659000px;}
._19_c00420{margin-left:-14.850000px;}
._14_c00420{margin-left:-8.991000px;}
._1b_c00420{margin-left:-7.803000px;}
._13_c00420{margin-left:-4.941000px;}
._6_c00420{margin-left:-3.312000px;}
._16_c00420{margin-left:-2.250000px;}
._2_c00420{margin-left:-1.152000px;}
._a_c00420{width:1.440000px;}
._e_c00420{width:2.808000px;}
._f_c00420{width:3.915000px;}
._3_c00420{width:4.968000px;}
._11_c00420{width:6.057000px;}
._5_c00420{width:7.416000px;}
._7_c00420{width:8.568000px;}
._4_c00420{width:9.648000px;}
._c_c00420{width:11.448000px;}
._9_c00420{width:12.816000px;}
._d_c00420{width:14.040000px;}
._8_c00420{width:15.624000px;}
._10_c00420{width:18.018000px;}
._15_c00420{width:21.609000px;}
._1_c00420{width:23.328000px;}
._0_c00420{width:25.992000px;}
._18_c00420{width:27.369000px;}
._17_c00420{width:33.710400px;}
._1c_c00420{width:80.235000px;}
._b_c00420{width:135.144000px;}
._1a_c00420{width:343.188000px;}
.fc2_c00420{color:transparent;}
.fc1_c00420{color:rgb(128,128,128);}
.fc0_c00420{color:rgb(0,0,0);}
.fs4_c00420{font-size:48.000000px;}
.fs2_c00420{font-size:57.600000px;}
.fs0_c00420{font-size:72.000000px;}
.fs1_c00420{font-size:81.000000px;}
.fs3_c00420{font-size:87.000000px;}
.y0_c00420{bottom:0.000000px;}
.y22_c00420{bottom:3.105000px;}
.y21_c00420{bottom:7.228355px;}
.y20_c00420{bottom:151.185000px;}
.y1f_c00420{bottom:175.485000px;}
.y1e_c00420{bottom:200.835000px;}
.y1d_c00420{bottom:225.435000px;}
.y1c_c00420{bottom:249.435000px;}
.y1b_c00420{bottom:273.735000px;}
.y1a_c00420{bottom:298.335000px;}
.y19_c00420{bottom:321.885000px;}
.y18_c00420{bottom:346.185000px;}
.y17_c00420{bottom:370.935000px;}
.y16_c00420{bottom:394.785000px;}
.y15_c00420{bottom:419.385000px;}
.y14_c00420{bottom:443.685000px;}
.y13_c00420{bottom:467.685000px;}
.y12_c00420{bottom:491.385000px;}
.y11_c00420{bottom:515.385000px;}
.y10_c00420{bottom:539.685000px;}
.yf_c00420{bottom:563.835000px;}
.ye_c00420{bottom:588.135000px;}
.yd_c00420{bottom:611.235000px;}
.yc_c00420{bottom:636.435000px;}
.yb_c00420{bottom:660.435000px;}
.ya_c00420{bottom:684.435000px;}
.y9_c00420{bottom:708.735000px;}
.y8_c00420{bottom:732.735000px;}
.y7_c00420{bottom:757.035000px;}
.y6_c00420{bottom:781.335000px;}
.y5_c00420{bottom:805.485000px;}
.y4_c00420{bottom:829.185000px;}
.y3_c00420{bottom:853.785000px;}
.y2_c00420{bottom:879.135000px;}
.y1_c00420{bottom:917.685000px;}
.h5_c00420{height:13.200074px;}
.h6_c00420{height:43.804688px;}
.h3_c00420{height:79.497070px;}
.h2_c00420{height:84.269531px;}
.h4_c00420{height:91.176000px;}
.h0_c00420{height:977.925000px;}
.h1_c00420{height:978.000000px;}
.w2_c00420{width:104.875500px;}
.w0_c00420{width:664.200000px;}
.w1_c00420{width:664.500000px;}
.x0_c00420{left:0.000000px;}
.x6_c00420{left:25.650000px;}
.x4_c00420{left:42.450000px;}
.x7_c00420{left:44.550000px;}
.x2_c00420{left:45.600000px;}
.x3_c00420{left:46.800000px;}
.x5_c00420{left:84.300000px;}
.x1_c00420{left:137.550000px;}
.x8_c00420{left:283.914230px;}
@media print{
.v0_c00420{vertical-align:0.000000pt;}
.ls2_c00420{letter-spacing:0.000000pt;}
.ls1_c00420{letter-spacing:5.600000pt;}
.ls0_c00420{letter-spacing:13.973333pt;}
.ws2_c00420{word-spacing:-18.000000pt;}
.ws1_c00420{word-spacing:-16.947200pt;}
.ws0_c00420{word-spacing:-15.424000pt;}
.ws3_c00420{word-spacing:0.000000pt;}
._12_c00420{margin-left:-14.808000pt;}
._19_c00420{margin-left:-13.200000pt;}
._14_c00420{margin-left:-7.992000pt;}
._1b_c00420{margin-left:-6.936000pt;}
._13_c00420{margin-left:-4.392000pt;}
._6_c00420{margin-left:-2.944000pt;}
._16_c00420{margin-left:-2.000000pt;}
._2_c00420{margin-left:-1.024000pt;}
._a_c00420{width:1.280000pt;}
._e_c00420{width:2.496000pt;}
._f_c00420{width:3.480000pt;}
._3_c00420{width:4.416000pt;}
._11_c00420{width:5.384000pt;}
._5_c00420{width:6.592000pt;}
._7_c00420{width:7.616000pt;}
._4_c00420{width:8.576000pt;}
._c_c00420{width:10.176000pt;}
._9_c00420{width:11.392000pt;}
._d_c00420{width:12.480000pt;}
._8_c00420{width:13.888000pt;}
._10_c00420{width:16.016000pt;}
._15_c00420{width:19.208000pt;}
._1_c00420{width:20.736000pt;}
._0_c00420{width:23.104000pt;}
._18_c00420{width:24.328000pt;}
._17_c00420{width:29.964800pt;}
._1c_c00420{width:71.320000pt;}
._b_c00420{width:120.128000pt;}
._1a_c00420{width:305.056000pt;}
.fs4_c00420{font-size:42.666667pt;}
.fs2_c00420{font-size:51.200000pt;}
.fs0_c00420{font-size:64.000000pt;}
.fs1_c00420{font-size:72.000000pt;}
.fs3_c00420{font-size:77.333333pt;}
.y0_c00420{bottom:0.000000pt;}
.y22_c00420{bottom:2.760000pt;}
.y21_c00420{bottom:6.425204pt;}
.y20_c00420{bottom:134.386667pt;}
.y1f_c00420{bottom:155.986667pt;}
.y1e_c00420{bottom:178.520000pt;}
.y1d_c00420{bottom:200.386667pt;}
.y1c_c00420{bottom:221.720000pt;}
.y1b_c00420{bottom:243.320000pt;}
.y1a_c00420{bottom:265.186667pt;}
.y19_c00420{bottom:286.120000pt;}
.y18_c00420{bottom:307.720000pt;}
.y17_c00420{bottom:329.720000pt;}
.y16_c00420{bottom:350.920000pt;}
.y15_c00420{bottom:372.786667pt;}
.y14_c00420{bottom:394.386667pt;}
.y13_c00420{bottom:415.720000pt;}
.y12_c00420{bottom:436.786667pt;}
.y11_c00420{bottom:458.120000pt;}
.y10_c00420{bottom:479.720000pt;}
.yf_c00420{bottom:501.186667pt;}
.ye_c00420{bottom:522.786667pt;}
.yd_c00420{bottom:543.320000pt;}
.yc_c00420{bottom:565.720000pt;}
.yb_c00420{bottom:587.053333pt;}
.ya_c00420{bottom:608.386667pt;}
.y9_c00420{bottom:629.986667pt;}
.y8_c00420{bottom:651.320000pt;}
.y7_c00420{bottom:672.920000pt;}
.y6_c00420{bottom:694.520000pt;}
.y5_c00420{bottom:715.986667pt;}
.y4_c00420{bottom:737.053333pt;}
.y3_c00420{bottom:758.920000pt;}
.y2_c00420{bottom:781.453333pt;}
.y1_c00420{bottom:815.720000pt;}
.h5_c00420{height:11.733399pt;}
.h6_c00420{height:38.937500pt;}
.h3_c00420{height:70.664062pt;}
.h2_c00420{height:74.906250pt;}
.h4_c00420{height:81.045333pt;}
.h0_c00420{height:869.266667pt;}
.h1_c00420{height:869.333333pt;}
.w2_c00420{width:93.222667pt;}
.w0_c00420{width:590.400000pt;}
.w1_c00420{width:590.666667pt;}
.x0_c00420{left:0.000000pt;}
.x6_c00420{left:22.800000pt;}
.x4_c00420{left:37.733333pt;}
.x7_c00420{left:39.600000pt;}
.x2_c00420{left:40.533333pt;}
.x3_c00420{left:41.600000pt;}
.x5_c00420{left:74.933333pt;}
.x1_c00420{left:122.266667pt;}
.x8_c00420{left:252.368205pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9498f828bb9a4515eb895292.woff2')format("woff");}.ff1_c00421{font-family:ff1_c00421;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00421;src:url('chunks/assets/font_9baeb1459034433c84e2fb39.woff2')format("woff");}.ff2_c00421{font-family:ff2_c00421;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00421;src:url('chunks/assets/font_dde1bb8335f12c3887f9b438.woff2')format("woff");}.ff3_c00421{font-family:ff3_c00421;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00421;src:url('chunks/assets/font_77fdefde1368d13b23a0861c.woff2')format("woff");}.ff4_c00421{font-family:ff4_c00421;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00421;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c00421{font-family:ff5_c00421;line-height:1.219238;font-style: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;}
.ls6_c00421{letter-spacing:0.000000px;}
.ls7_c00421{letter-spacing:3.000000px;}
.ls3_c00421{letter-spacing:3.600000px;}
.ls2_c00421{letter-spacing:26.400000px;}
.ls4_c00421{letter-spacing:28.200000px;}
.ls0_c00421{letter-spacing:33.600000px;}
.ls1_c00421{letter-spacing:40.200000px;}
.ls5_c00421{letter-spacing:288.000000px;}
.sc__c00421{text-shadow:none;}
.sc0_c00421{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00421{-webkit-text-stroke:0px transparent;}
.sc0_c00421{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00421{word-spacing:-20.250000px;}
.ws1_c00421{word-spacing:-18.750000px;}
.ws0_c00421{word-spacing:-3.750000px;}
.ws4_c00421{word-spacing:0.000000px;}
.ws2_c00421{word-spacing:46.647000px;}
._1_c00421{margin-left:-304.272000px;}
._2_c00421{margin-left:-215.136000px;}
._23_c00421{margin-left:-25.107000px;}
._1a_c00421{margin-left:-18.306000px;}
._1d_c00421{margin-left:-13.851000px;}
._17_c00421{margin-left:-12.636000px;}
._16_c00421{margin-left:-10.122000px;}
._18_c00421{margin-left:-8.019000px;}
._15_c00421{margin-left:-6.156000px;}
._14_c00421{margin-left:-4.293000px;}
._e_c00421{margin-left:-2.754000px;}
._12_c00421{margin-left:-1.206000px;}
._a_c00421{width:1.944000px;}
._f_c00421{width:2.997000px;}
._9_c00421{width:4.050000px;}
._b_c00421{width:5.427000px;}
._c_c00421{width:7.281000px;}
._6_c00421{width:9.150000px;}
._11_c00421{width:10.287000px;}
._1c_c00421{width:11.673000px;}
._10_c00421{width:12.798000px;}
._13_c00421{width:14.661000px;}
._20_c00421{width:15.957000px;}
._5_c00421{width:17.100000px;}
._8_c00421{width:18.387000px;}
._19_c00421{width:21.717000px;}
._d_c00421{width:23.238000px;}
._7_c00421{width:24.450000px;}
._22_c00421{width:26.607000px;}
._21_c00421{width:34.992000px;}
._4_c00421{width:37.350000px;}
._0_c00421{width:44.136000px;}
._1f_c00421{width:69.024000px;}
._1b_c00421{width:114.555000px;}
._1e_c00421{width:165.807000px;}
._24_c00421{width:258.147000px;}
._3_c00421{width:294.888000px;}
.fc2_c00421{color:transparent;}
.fc1_c00421{color:rgb(128,128,128);}
.fc0_c00421{color:rgb(0,0,0);}
.fs3_c00421{font-size:24.000000px;}
.fs5_c00421{font-size:48.000000px;}
.fs4_c00421{font-size:60.000000px;}
.fs0_c00421{font-size:72.000000px;}
.fs1_c00421{font-size:75.000000px;}
.fs2_c00421{font-size:81.000000px;}
.y0_c00421{bottom:0.000000px;}
.y26_c00421{bottom:3.105000px;}
.y25_c00421{bottom:7.228371px;}
.y24_c00421{bottom:55.665000px;}
.y23_c00421{bottom:76.665000px;}
.y22_c00421{bottom:102.015000px;}
.y21_c00421{bottom:126.315000px;}
.y20_c00421{bottom:151.215000px;}
.y1f_c00421{bottom:175.515000px;}
.y1e_c00421{bottom:199.815000px;}
.y1d_c00421{bottom:224.415000px;}
.y1c_c00421{bottom:248.415000px;}
.y1b_c00421{bottom:273.165000px;}
.y1a_c00421{bottom:297.315000px;}
.y19_c00421{bottom:321.615000px;}
.y18_c00421{bottom:346.065000px;}
.y17_c00421{bottom:370.365000px;}
.y16_c00421{bottom:394.965000px;}
.y15_c00421{bottom:420.315000px;}
.y14_c00421{bottom:443.865000px;}
.y13_c00421{bottom:467.865000px;}
.y12_c00421{bottom:493.065000px;}
.y11_c00421{bottom:516.765000px;}
.y10_c00421{bottom:540.765000px;}
.yf_c00421{bottom:565.365000px;}
.ye_c00421{bottom:589.365000px;}
.yd_c00421{bottom:613.665000px;}
.yc_c00421{bottom:637.965000px;}
.yb_c00421{bottom:662.865000px;}
.ya_c00421{bottom:686.865000px;}
.y9_c00421{bottom:711.165000px;}
.y8_c00421{bottom:735.465000px;}
.y7_c00421{bottom:759.765000px;}
.y6_c00421{bottom:784.065000px;}
.y5_c00421{bottom:808.065000px;}
.y4_c00421{bottom:832.965000px;}
.y3_c00421{bottom:858.315000px;}
.y2_c00421{bottom:881.265000px;}
.y1_c00421{bottom:914.715000px;}
.h5_c00421{height:13.200074px;}
.h6_c00421{height:43.804688px;}
.h2_c00421{height:73.571777px;}
.h3_c00421{height:79.497070px;}
.h4_c00421{height:81.632812px;}
.h1_c00421{height:986.250000px;}
.h0_c00421{height:986.325000px;}
.w2_c00421{width:104.875500px;}
.w0_c00421{width:667.425000px;}
.w1_c00421{width:667.500000px;}
.x0_c00421{left:0.000000px;}
.xc_c00421{left:37.800000px;}
.xd_c00421{left:39.450000px;}
.x9_c00421{left:44.550000px;}
.x8_c00421{left:47.250000px;}
.x4_c00421{left:121.800000px;}
.x3_c00421{left:124.950000px;}
.x2_c00421{left:130.050000px;}
.xa_c00421{left:131.550000px;}
.x1_c00421{left:132.600000px;}
.x5_c00421{left:133.950000px;}
.x6_c00421{left:135.000000px;}
.x7_c00421{left:136.050000px;}
.xb_c00421{left:155.250000px;}
.xf_c00421{left:285.526749px;}
.xe_c00421{left:603.150000px;}
@media print{
.v0_c00421{vertical-align:0.000000pt;}
.ls6_c00421{letter-spacing:0.000000pt;}
.ls7_c00421{letter-spacing:2.666667pt;}
.ls3_c00421{letter-spacing:3.200000pt;}
.ls2_c00421{letter-spacing:23.466667pt;}
.ls4_c00421{letter-spacing:25.066667pt;}
.ls0_c00421{letter-spacing:29.866667pt;}
.ls1_c00421{letter-spacing:35.733333pt;}
.ls5_c00421{letter-spacing:256.000000pt;}
.ws3_c00421{word-spacing:-18.000000pt;}
.ws1_c00421{word-spacing:-16.666667pt;}
.ws0_c00421{word-spacing:-3.333333pt;}
.ws4_c00421{word-spacing:0.000000pt;}
.ws2_c00421{word-spacing:41.464000pt;}
._1_c00421{margin-left:-270.464000pt;}
._2_c00421{margin-left:-191.232000pt;}
._23_c00421{margin-left:-22.317333pt;}
._1a_c00421{margin-left:-16.272000pt;}
._1d_c00421{margin-left:-12.312000pt;}
._17_c00421{margin-left:-11.232000pt;}
._16_c00421{margin-left:-8.997333pt;}
._18_c00421{margin-left:-7.128000pt;}
._15_c00421{margin-left:-5.472000pt;}
._14_c00421{margin-left:-3.816000pt;}
._e_c00421{margin-left:-2.448000pt;}
._12_c00421{margin-left:-1.072000pt;}
._a_c00421{width:1.728000pt;}
._f_c00421{width:2.664000pt;}
._9_c00421{width:3.600000pt;}
._b_c00421{width:4.824000pt;}
._c_c00421{width:6.472000pt;}
._6_c00421{width:8.133333pt;}
._11_c00421{width:9.144000pt;}
._1c_c00421{width:10.376000pt;}
._10_c00421{width:11.376000pt;}
._13_c00421{width:13.032000pt;}
._20_c00421{width:14.184000pt;}
._5_c00421{width:15.200000pt;}
._8_c00421{width:16.344000pt;}
._19_c00421{width:19.304000pt;}
._d_c00421{width:20.656000pt;}
._7_c00421{width:21.733333pt;}
._22_c00421{width:23.650667pt;}
._21_c00421{width:31.104000pt;}
._4_c00421{width:33.200000pt;}
._0_c00421{width:39.232000pt;}
._1f_c00421{width:61.354667pt;}
._1b_c00421{width:101.826667pt;}
._1e_c00421{width:147.384000pt;}
._24_c00421{width:229.464000pt;}
._3_c00421{width:262.122667pt;}
.fs3_c00421{font-size:21.333333pt;}
.fs5_c00421{font-size:42.666667pt;}
.fs4_c00421{font-size:53.333333pt;}
.fs0_c00421{font-size:64.000000pt;}
.fs1_c00421{font-size:66.666667pt;}
.fs2_c00421{font-size:72.000000pt;}
.y0_c00421{bottom:0.000000pt;}
.y26_c00421{bottom:2.760000pt;}
.y25_c00421{bottom:6.425219pt;}
.y24_c00421{bottom:49.480000pt;}
.y23_c00421{bottom:68.146667pt;}
.y22_c00421{bottom:90.680000pt;}
.y21_c00421{bottom:112.280000pt;}
.y20_c00421{bottom:134.413333pt;}
.y1f_c00421{bottom:156.013333pt;}
.y1e_c00421{bottom:177.613333pt;}
.y1d_c00421{bottom:199.480000pt;}
.y1c_c00421{bottom:220.813333pt;}
.y1b_c00421{bottom:242.813333pt;}
.y1a_c00421{bottom:264.280000pt;}
.y19_c00421{bottom:285.880000pt;}
.y18_c00421{bottom:307.613333pt;}
.y17_c00421{bottom:329.213333pt;}
.y16_c00421{bottom:351.080000pt;}
.y15_c00421{bottom:373.613333pt;}
.y14_c00421{bottom:394.546667pt;}
.y13_c00421{bottom:415.880000pt;}
.y12_c00421{bottom:438.280000pt;}
.y11_c00421{bottom:459.346667pt;}
.y10_c00421{bottom:480.680000pt;}
.yf_c00421{bottom:502.546667pt;}
.ye_c00421{bottom:523.880000pt;}
.yd_c00421{bottom:545.480000pt;}
.yc_c00421{bottom:567.080000pt;}
.yb_c00421{bottom:589.213333pt;}
.ya_c00421{bottom:610.546667pt;}
.y9_c00421{bottom:632.146667pt;}
.y8_c00421{bottom:653.746667pt;}
.y7_c00421{bottom:675.346667pt;}
.y6_c00421{bottom:696.946667pt;}
.y5_c00421{bottom:718.280000pt;}
.y4_c00421{bottom:740.413333pt;}
.y3_c00421{bottom:762.946667pt;}
.y2_c00421{bottom:783.346667pt;}
.y1_c00421{bottom:813.080000pt;}
.h5_c00421{height:11.733399pt;}
.h6_c00421{height:38.937500pt;}
.h2_c00421{height:65.397135pt;}
.h3_c00421{height:70.664062pt;}
.h4_c00421{height:72.562500pt;}
.h1_c00421{height:876.666667pt;}
.h0_c00421{height:876.733333pt;}
.w2_c00421{width:93.222667pt;}
.w0_c00421{width:593.266667pt;}
.w1_c00421{width:593.333333pt;}
.x0_c00421{left:0.000000pt;}
.xc_c00421{left:33.600000pt;}
.xd_c00421{left:35.066667pt;}
.x9_c00421{left:39.600000pt;}
.x8_c00421{left:42.000000pt;}
.x4_c00421{left:108.266667pt;}
.x3_c00421{left:111.066667pt;}
.x2_c00421{left:115.600000pt;}
.xa_c00421{left:116.933333pt;}
.x1_c00421{left:117.866667pt;}
.x5_c00421{left:119.066667pt;}
.x6_c00421{left:120.000000pt;}
.x7_c00421{left:120.933333pt;}
.xb_c00421{left:138.000000pt;}
.xf_c00421{left:253.801554pt;}
.xe_c00421{left:536.133333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_c28b770cf8eec51a354596f7.woff2')format("woff");}.ff1_c00422{font-family:ff1_c00422;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00422;src:url('chunks/assets/font_a6d2eb210910d87accc48e6c.woff2')format("woff");}.ff2_c00422{font-family:ff2_c00422;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00422;src:url('chunks/assets/font_b4589237b4255db37eabf7e9.woff2')format("woff");}.ff3_c00422{font-family:ff3_c00422;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00422;src:url('chunks/assets/font_574b3b5c6d4458da2599cd12.woff2')format("woff");}.ff4_c00422{font-family:ff4_c00422;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00422;src:url('chunks/assets/font_996ec14eb083077765730d69.woff2')format("woff");}.ff5_c00422{font-family:ff5_c00422;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00422;src:url('chunks/assets/font_b5e4cd40da4750b9d5e4c1b8.woff2')format("woff");}.ff6_c00422{font-family:ff6_c00422;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00422;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c00422{font-family:ff7_c00422;line-height:1.219238;font-style: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;}
.ls2_c00422{letter-spacing:-6.000000px;}
.ls0_c00422{letter-spacing:0.000000px;}
.ls3_c00422{letter-spacing:3.000000px;}
.ls1_c00422{letter-spacing:9.000000px;}
.sc__c00422{text-shadow:none;}
.sc0_c00422{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00422{-webkit-text-stroke:0px transparent;}
.sc0_c00422{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00422{word-spacing:-76.686000px;}
.ws1_c00422{word-spacing:-17.352000px;}
.ws2_c00422{word-spacing:0.000000px;}
._11_c00422{margin-left:-46.206000px;}
._1a_c00422{margin-left:-25.500000px;}
._e_c00422{margin-left:-21.909000px;}
._1c_c00422{margin-left:-20.655000px;}
._18_c00422{margin-left:-19.359000px;}
._8_c00422{margin-left:-14.151000px;}
._14_c00422{margin-left:-13.041000px;}
._12_c00422{margin-left:-10.818000px;}
._a_c00422{margin-left:-8.181000px;}
._2_c00422{margin-left:-6.399000px;}
._b_c00422{margin-left:-4.617000px;}
._9_c00422{margin-left:-3.321000px;}
._6_c00422{margin-left:-2.025000px;}
._3_c00422{width:1.701000px;}
._1_c00422{width:3.402000px;}
._5_c00422{width:4.860000px;}
._0_c00422{width:6.561000px;}
._4_c00422{width:8.262000px;}
._d_c00422{width:9.720000px;}
._7_c00422{width:10.773000px;}
._f_c00422{width:12.960000px;}
._1e_c00422{width:14.175000px;}
._13_c00422{width:15.309000px;}
._17_c00422{width:16.443000px;}
._10_c00422{width:18.144000px;}
._15_c00422{width:21.708000px;}
._1b_c00422{width:25.515000px;}
._c_c00422{width:27.702000px;}
._1d_c00422{width:38.718000px;}
._19_c00422{width:223.725000px;}
._16_c00422{width:253.854000px;}
.fc2_c00422{color:transparent;}
.fc1_c00422{color:rgb(128,128,128);}
.fc0_c00422{color:rgb(0,0,0);}
.fs5_c00422{font-size:48.000000px;}
.fs4_c00422{font-size:60.000000px;}
.fs1_c00422{font-size:72.000000px;}
.fs0_c00422{font-size:81.000000px;}
.fs2_c00422{font-size:87.000000px;}
.fs3_c00422{font-size:102.000000px;}
.y0_c00422{bottom:0.000000px;}
.y25_c00422{bottom:3.105000px;}
.y24_c00422{bottom:7.228371px;}
.y23_c00422{bottom:56.415000px;}
.y22_c00422{bottom:80.715000px;}
.y21_c00422{bottom:106.365000px;}
.y20_c00422{bottom:130.965000px;}
.y1f_c00422{bottom:155.565000px;}
.y1e_c00422{bottom:180.015000px;}
.y1d_c00422{bottom:204.615000px;}
.y1c_c00422{bottom:229.515000px;}
.y1b_c00422{bottom:254.265000px;}
.y1a_c00422{bottom:278.565000px;}
.y19_c00422{bottom:303.165000px;}
.y18_c00422{bottom:328.065000px;}
.y17_c00422{bottom:352.065000px;}
.y16_c00422{bottom:376.665000px;}
.y15_c00422{bottom:401.265000px;}
.y14_c00422{bottom:425.265000px;}
.y13_c00422{bottom:449.865000px;}
.y12_c00422{bottom:474.165000px;}
.y11_c00422{bottom:498.465000px;}
.y10_c00422{bottom:523.215000px;}
.yf_c00422{bottom:547.065000px;}
.ye_c00422{bottom:571.365000px;}
.yd_c00422{bottom:595.665000px;}
.yc_c00422{bottom:620.115000px;}
.yb_c00422{bottom:645.615000px;}
.ya_c00422{bottom:668.565000px;}
.y9_c00422{bottom:692.865000px;}
.y8_c00422{bottom:716.865000px;}
.y7_c00422{bottom:745.515000px;}
.y6_c00422{bottom:764.415000px;}
.y5_c00422{bottom:790.215000px;}
.y4_c00422{bottom:814.065000px;}
.y3_c00422{bottom:838.365000px;}
.y2_c00422{bottom:862.665000px;}
.y1_c00422{bottom:886.965000px;}
.h8_c00422{height:13.200074px;}
.h9_c00422{height:43.804688px;}
.h6_c00422{height:72.562500px;}
.h3_c00422{height:79.497070px;}
.h7_c00422{height:84.269531px;}
.h2_c00422{height:91.160156px;}
.h4_c00422{height:91.176000px;}
.h5_c00422{height:129.143555px;}
.h0_c00422{height:989.025000px;}
.h1_c00422{height:989.250000px;}
.w1_c00422{width:104.875500px;}
.w0_c00422{width:672.000000px;}
.x0_c00422{left:0.000000px;}
.xb_c00422{left:55.650000px;}
.xa_c00422{left:56.700000px;}
.x9_c00422{left:58.050000px;}
.x6_c00422{left:59.400000px;}
.x8_c00422{left:60.750000px;}
.x7_c00422{left:62.100000px;}
.x1_c00422{left:63.450000px;}
.x5_c00422{left:94.200000px;}
.x4_c00422{left:111.000000px;}
.x3_c00422{left:150.750000px;}
.x2_c00422{left:174.450000px;}
.xd_c00422{left:287.814240px;}
.xc_c00422{left:394.500000px;}
@media print{
.v0_c00422{vertical-align:0.000000pt;}
.ls2_c00422{letter-spacing:-5.333333pt;}
.ls0_c00422{letter-spacing:0.000000pt;}
.ls3_c00422{letter-spacing:2.666667pt;}
.ls1_c00422{letter-spacing:8.000000pt;}
.ws0_c00422{word-spacing:-68.165333pt;}
.ws1_c00422{word-spacing:-15.424000pt;}
.ws2_c00422{word-spacing:0.000000pt;}
._11_c00422{margin-left:-41.072000pt;}
._1a_c00422{margin-left:-22.666667pt;}
._e_c00422{margin-left:-19.474667pt;}
._1c_c00422{margin-left:-18.360000pt;}
._18_c00422{margin-left:-17.208000pt;}
._8_c00422{margin-left:-12.578667pt;}
._14_c00422{margin-left:-11.592000pt;}
._12_c00422{margin-left:-9.616000pt;}
._a_c00422{margin-left:-7.272000pt;}
._2_c00422{margin-left:-5.688000pt;}
._b_c00422{margin-left:-4.104000pt;}
._9_c00422{margin-left:-2.952000pt;}
._6_c00422{margin-left:-1.800000pt;}
._3_c00422{width:1.512000pt;}
._1_c00422{width:3.024000pt;}
._5_c00422{width:4.320000pt;}
._0_c00422{width:5.832000pt;}
._4_c00422{width:7.344000pt;}
._d_c00422{width:8.640000pt;}
._7_c00422{width:9.576000pt;}
._f_c00422{width:11.520000pt;}
._1e_c00422{width:12.600000pt;}
._13_c00422{width:13.608000pt;}
._17_c00422{width:14.616000pt;}
._10_c00422{width:16.128000pt;}
._15_c00422{width:19.296000pt;}
._1b_c00422{width:22.680000pt;}
._c_c00422{width:24.624000pt;}
._1d_c00422{width:34.416000pt;}
._19_c00422{width:198.866667pt;}
._16_c00422{width:225.648000pt;}
.fs5_c00422{font-size:42.666667pt;}
.fs4_c00422{font-size:53.333333pt;}
.fs1_c00422{font-size:64.000000pt;}
.fs0_c00422{font-size:72.000000pt;}
.fs2_c00422{font-size:77.333333pt;}
.fs3_c00422{font-size:90.666667pt;}
.y0_c00422{bottom:0.000000pt;}
.y25_c00422{bottom:2.760000pt;}
.y24_c00422{bottom:6.425219pt;}
.y23_c00422{bottom:50.146667pt;}
.y22_c00422{bottom:71.746667pt;}
.y21_c00422{bottom:94.546667pt;}
.y20_c00422{bottom:116.413333pt;}
.y1f_c00422{bottom:138.280000pt;}
.y1e_c00422{bottom:160.013333pt;}
.y1d_c00422{bottom:181.880000pt;}
.y1c_c00422{bottom:204.013333pt;}
.y1b_c00422{bottom:226.013333pt;}
.y1a_c00422{bottom:247.613333pt;}
.y19_c00422{bottom:269.480000pt;}
.y18_c00422{bottom:291.613333pt;}
.y17_c00422{bottom:312.946667pt;}
.y16_c00422{bottom:334.813333pt;}
.y15_c00422{bottom:356.680000pt;}
.y14_c00422{bottom:378.013333pt;}
.y13_c00422{bottom:399.880000pt;}
.y12_c00422{bottom:421.480000pt;}
.y11_c00422{bottom:443.080000pt;}
.y10_c00422{bottom:465.080000pt;}
.yf_c00422{bottom:486.280000pt;}
.ye_c00422{bottom:507.880000pt;}
.yd_c00422{bottom:529.480000pt;}
.yc_c00422{bottom:551.213333pt;}
.yb_c00422{bottom:573.880000pt;}
.ya_c00422{bottom:594.280000pt;}
.y9_c00422{bottom:615.880000pt;}
.y8_c00422{bottom:637.213333pt;}
.y7_c00422{bottom:662.680000pt;}
.y6_c00422{bottom:679.480000pt;}
.y5_c00422{bottom:702.413333pt;}
.y4_c00422{bottom:723.613333pt;}
.y3_c00422{bottom:745.213333pt;}
.y2_c00422{bottom:766.813333pt;}
.y1_c00422{bottom:788.413333pt;}
.h8_c00422{height:11.733399pt;}
.h9_c00422{height:38.937500pt;}
.h6_c00422{height:64.500000pt;}
.h3_c00422{height:70.664062pt;}
.h7_c00422{height:74.906250pt;}
.h2_c00422{height:81.031250pt;}
.h4_c00422{height:81.045333pt;}
.h5_c00422{height:114.794271pt;}
.h0_c00422{height:879.133333pt;}
.h1_c00422{height:879.333333pt;}
.w1_c00422{width:93.222667pt;}
.w0_c00422{width:597.333333pt;}
.x0_c00422{left:0.000000pt;}
.xb_c00422{left:49.466667pt;}
.xa_c00422{left:50.400000pt;}
.x9_c00422{left:51.600000pt;}
.x6_c00422{left:52.800000pt;}
.x8_c00422{left:54.000000pt;}
.x7_c00422{left:55.200000pt;}
.x1_c00422{left:56.400000pt;}
.x5_c00422{left:83.733333pt;}
.x4_c00422{left:98.666667pt;}
.x3_c00422{left:134.000000pt;}
.x2_c00422{left:155.066667pt;}
.xd_c00422{left:255.834880pt;}
.xc_c00422{left:350.666667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_29d4b64a3197feb8a3b09129.woff2')format("woff");}.ff1_c00423{font-family:ff1_c00423;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00423;src:url('chunks/assets/font_690f6da5ad7e1a4ef003149e.woff2')format("woff");}.ff2_c00423{font-family:ff2_c00423;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00423;src:url('chunks/assets/font_4e344fa3f793e8090438e089.woff2')format("woff");}.ff3_c00423{font-family:ff3_c00423;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00423;src:url('chunks/assets/font_6be08344f69302f6e8bd1ba5.woff2')format("woff");}.ff4_c00423{font-family:ff4_c00423;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00423;src:url('chunks/assets/font_2e51ca8eaceca744f403c92d.woff2')format("woff");}.ff5_c00423{font-family:ff5_c00423;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00423;src:url('chunks/assets/font_4e98b931f50b8f88a10f7737.woff2')format("woff");}.ff6_c00423{font-family:ff6_c00423;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00423;src:url('chunks/assets/font_88b72a78d9be416cee46b45a.woff2')format("woff");}.ff7_c00423{font-family:ff7_c00423;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00423;src:url('chunks/assets/font_4db86dc1c31dffe6d817df72.woff2')format("woff");}.ff8_c00423{font-family:ff8_c00423;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00423;src:url('chunks/assets/font_de16d5f0c261c8b32a8596dd.woff2')format("woff");}.ff9_c00423{font-family:ff9_c00423;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00423;src:url('chunks/assets/font_adc81211063f9046c7058d1c.woff2')format("woff");}.ffa_c00423{font-family:ffa_c00423;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c00423;src:url('chunks/assets/font_f0a2575809219a7189a74871.woff2')format("woff");}.ffb_c00423{font-family:ffb_c00423;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc_c00423;src:url('chunks/assets/font_4bf60a0cbfb5a83795fea341.woff2')format("woff");}.ffc_c00423{font-family:ffc_c00423;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd_c00423;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ffd_c00423{font-family:ffd_c00423;line-height:1.219238;font-style: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;}
.ls8_c00423{letter-spacing:-6.000000px;}
.lsc_c00423{letter-spacing:-3.000000px;}
.ls7_c00423{letter-spacing:0.000000px;}
.lsa_c00423{letter-spacing:3.000000px;}
.ls2_c00423{letter-spacing:6.912000px;}
.ls9_c00423{letter-spacing:9.000000px;}
.ls4_c00423{letter-spacing:9.750000px;}
.ls0_c00423{letter-spacing:13.350000px;}
.ls3_c00423{letter-spacing:14.220000px;}
.lsb_c00423{letter-spacing:15.000000px;}
.ls1_c00423{letter-spacing:17.880000px;}
.ls5_c00423{letter-spacing:20.400000px;}
.ls6_c00423{letter-spacing:25.950000px;}
.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;}
}
.wsd_c00423{word-spacing:-38.364000px;}
.wsb_c00423{word-spacing:-35.232000px;}
.wsa_c00423{word-spacing:-30.000000px;}
.ws5_c00423{word-spacing:-24.000000px;}
.ws7_c00423{word-spacing:-21.750000px;}
.ws8_c00423{word-spacing:-20.250000px;}
.ws0_c00423{word-spacing:-17.352000px;}
.wsc_c00423{word-spacing:-17.250000px;}
.ws9_c00423{word-spacing:-16.926000px;}
.ws1_c00423{word-spacing:-15.000000px;}
.ws3_c00423{word-spacing:-14.250000px;}
.ws4_c00423{word-spacing:-12.000000px;}
.ws2_c00423{word-spacing:-0.300000px;}
.wse_c00423{word-spacing:0.000000px;}
.ws6_c00423{word-spacing:0.360000px;}
._21_c00423{margin-left:-28.221000px;}
._16_c00423{margin-left:-26.973000px;}
._2e_c00423{margin-left:-24.309000px;}
._2d_c00423{margin-left:-22.314000px;}
._32_c00423{margin-left:-21.300000px;}
._2c_c00423{margin-left:-19.821000px;}
._1e_c00423{margin-left:-17.100000px;}
._2f_c00423{margin-left:-15.210000px;}
._10_c00423{margin-left:-13.194000px;}
._11_c00423{margin-left:-12.093000px;}
._12_c00423{margin-left:-10.950000px;}
._0_c00423{margin-left:-9.480000px;}
._22_c00423{margin-left:-8.094000px;}
._d_c00423{margin-left:-6.885000px;}
._9_c00423{margin-left:-5.265000px;}
._1d_c00423{margin-left:-3.951000px;}
._b_c00423{margin-left:-2.673000px;}
._a_c00423{margin-left:-1.620000px;}
._33_c00423{width:1.020000px;}
._5_c00423{width:2.025000px;}
._7_c00423{width:3.078000px;}
._6_c00423{width:4.536000px;}
._8_c00423{width:5.670000px;}
._f_c00423{width:6.687000px;}
._4_c00423{width:8.181000px;}
._c_c00423{width:10.125000px;}
._3_c00423{width:11.988000px;}
._2_c00423{width:13.446000px;}
._15_c00423{width:15.390000px;}
._19_c00423{width:17.082000px;}
._1a_c00423{width:18.567000px;}
._1c_c00423{width:20.049000px;}
._1b_c00423{width:21.966000px;}
._24_c00423{width:23.817000px;}
._13_c00423{width:25.689000px;}
._17_c00423{width:27.891000px;}
._1f_c00423{width:30.120000px;}
._18_c00423{width:32.622000px;}
._29_c00423{width:33.903000px;}
._2a_c00423{width:35.742000px;}
._23_c00423{width:42.183000px;}
._27_c00423{width:50.628000px;}
._31_c00423{width:65.217000px;}
._25_c00423{width:74.340000px;}
._36_c00423{width:80.079000px;}
._26_c00423{width:149.925000px;}
._35_c00423{width:196.266000px;}
._34_c00423{width:217.725000px;}
._28_c00423{width:239.922000px;}
._30_c00423{width:260.265000px;}
._2b_c00423{width:285.201000px;}
._1_c00423{width:297.756000px;}
._20_c00423{width:341.619000px;}
._14_c00423{width:437.931000px;}
._e_c00423{width:494.505000px;}
.fc2_c00423{color:transparent;}
.fc1_c00423{color:rgb(128,128,128);}
.fc0_c00423{color:rgb(0,0,0);}
.fs5_c00423{font-size:24.000000px;}
.fs3_c00423{font-size:48.000000px;}
.fs2_c00423{font-size:60.000000px;}
.fs7_c00423{font-size:69.000000px;}
.fs0_c00423{font-size:72.000000px;}
.fs4_c00423{font-size:75.000000px;}
.fs6_c00423{font-size:78.000000px;}
.fs1_c00423{font-size:81.000000px;}
.fs8_c00423{font-size:87.000000px;}
.y0_c00423{bottom:0.000000px;}
.y25_c00423{bottom:3.105000px;}
.y24_c00423{bottom:7.228355px;}
.y23_c00423{bottom:63.735000px;}
.y22_c00423{bottom:85.635000px;}
.y21_c00423{bottom:113.385000px;}
.y20_c00423{bottom:135.885000px;}
.y1f_c00423{bottom:160.185000px;}
.y1e_c00423{bottom:185.535000px;}
.y1d_c00423{bottom:207.135000px;}
.y1c_c00423{bottom:233.235000px;}
.y1b_c00423{bottom:257.385000px;}
.y1a_c00423{bottom:281.385000px;}
.y19_c00423{bottom:305.985000px;}
.y18_c00423{bottom:330.735000px;}
.y17_c00423{bottom:354.735000px;}
.y16_c00423{bottom:379.335000px;}
.y15_c00423{bottom:403.635000px;}
.y14_c00423{bottom:428.235000px;}
.y13_c00423{bottom:451.935000px;}
.y12_c00423{bottom:476.235000px;}
.y11_c00423{bottom:500.535000px;}
.y10_c00423{bottom:524.685000px;}
.yf_c00423{bottom:548.985000px;}
.ye_c00423{bottom:574.635000px;}
.yd_c00423{bottom:596.685000px;}
.yc_c00423{bottom:620.535000px;}
.yb_c00423{bottom:644.835000px;}
.ya_c00423{bottom:671.535000px;}
.y9_c00423{bottom:695.235000px;}
.y8_c00423{bottom:719.085000px;}
.y7_c00423{bottom:742.785000px;}
.y6_c00423{bottom:767.385000px;}
.y5_c00423{bottom:790.335000px;}
.y4_c00423{bottom:814.635000px;}
.y3_c00423{bottom:840.735000px;}
.y2_c00423{bottom:864.585000px;}
.y1_c00423{bottom:887.985000px;}
.h7_c00423{height:13.200074px;}
.h8_c00423{height:43.804688px;}
.h3_c00423{height:79.497070px;}
.h4_c00423{height:83.226000px;}
.h2_c00423{height:84.269531px;}
.h6_c00423{height:91.176000px;}
.h5_c00423{height:98.756836px;}
.h1_c00423{height:975.000000px;}
.h0_c00423{height:975.225000px;}
.w2_c00423{width:104.875500px;}
.w0_c00423{width:659.850000px;}
.w1_c00423{width:660.000000px;}
.x0_c00423{left:0.000000px;}
.xf_c00423{left:14.400000px;}
.xa_c00423{left:15.900000px;}
.x6_c00423{left:17.250000px;}
.x7_c00423{left:18.900000px;}
.x4_c00423{left:19.950000px;}
.x2_c00423{left:21.900000px;}
.x9_c00423{left:75.900000px;}
.xb_c00423{left:84.750000px;}
.x1_c00423{left:87.450000px;}
.x3_c00423{left:105.300000px;}
.xe_c00423{left:106.350000px;}
.xd_c00423{left:108.000000px;}
.xc_c00423{left:109.350000px;}
.x8_c00423{left:110.700000px;}
.x5_c00423{left:114.450000px;}
.x10_c00423{left:132.900000px;}
.x12_c00423{left:281.739258px;}
.x11_c00423{left:570.000000px;}
@media print{
.v0_c00423{vertical-align:0.000000pt;}
.ls8_c00423{letter-spacing:-5.333333pt;}
.lsc_c00423{letter-spacing:-2.666667pt;}
.ls7_c00423{letter-spacing:0.000000pt;}
.lsa_c00423{letter-spacing:2.666667pt;}
.ls2_c00423{letter-spacing:6.144000pt;}
.ls9_c00423{letter-spacing:8.000000pt;}
.ls4_c00423{letter-spacing:8.666667pt;}
.ls0_c00423{letter-spacing:11.866667pt;}
.ls3_c00423{letter-spacing:12.640000pt;}
.lsb_c00423{letter-spacing:13.333333pt;}
.ls1_c00423{letter-spacing:15.893333pt;}
.ls5_c00423{letter-spacing:18.133333pt;}
.ls6_c00423{letter-spacing:23.066667pt;}
.wsd_c00423{word-spacing:-34.101333pt;}
.wsb_c00423{word-spacing:-31.317333pt;}
.wsa_c00423{word-spacing:-26.666667pt;}
.ws5_c00423{word-spacing:-21.333333pt;}
.ws7_c00423{word-spacing:-19.333333pt;}
.ws8_c00423{word-spacing:-18.000000pt;}
.ws0_c00423{word-spacing:-15.424000pt;}
.wsc_c00423{word-spacing:-15.333333pt;}
.ws9_c00423{word-spacing:-15.045333pt;}
.ws1_c00423{word-spacing:-13.333333pt;}
.ws3_c00423{word-spacing:-12.666667pt;}
.ws4_c00423{word-spacing:-10.666667pt;}
.ws2_c00423{word-spacing:-0.266667pt;}
.wse_c00423{word-spacing:0.000000pt;}
.ws6_c00423{word-spacing:0.320000pt;}
._21_c00423{margin-left:-25.085333pt;}
._16_c00423{margin-left:-23.976000pt;}
._2e_c00423{margin-left:-21.608000pt;}
._2d_c00423{margin-left:-19.834667pt;}
._32_c00423{margin-left:-18.933333pt;}
._2c_c00423{margin-left:-17.618667pt;}
._1e_c00423{margin-left:-15.200000pt;}
._2f_c00423{margin-left:-13.520000pt;}
._10_c00423{margin-left:-11.728000pt;}
._11_c00423{margin-left:-10.749333pt;}
._12_c00423{margin-left:-9.733333pt;}
._0_c00423{margin-left:-8.426667pt;}
._22_c00423{margin-left:-7.194667pt;}
._d_c00423{margin-left:-6.120000pt;}
._9_c00423{margin-left:-4.680000pt;}
._1d_c00423{margin-left:-3.512000pt;}
._b_c00423{margin-left:-2.376000pt;}
._a_c00423{margin-left:-1.440000pt;}
._33_c00423{width:0.906667pt;}
._5_c00423{width:1.800000pt;}
._7_c00423{width:2.736000pt;}
._6_c00423{width:4.032000pt;}
._8_c00423{width:5.040000pt;}
._f_c00423{width:5.944000pt;}
._4_c00423{width:7.272000pt;}
._c_c00423{width:9.000000pt;}
._3_c00423{width:10.656000pt;}
._2_c00423{width:11.952000pt;}
._15_c00423{width:13.680000pt;}
._19_c00423{width:15.184000pt;}
._1a_c00423{width:16.504000pt;}
._1c_c00423{width:17.821333pt;}
._1b_c00423{width:19.525333pt;}
._24_c00423{width:21.170667pt;}
._13_c00423{width:22.834667pt;}
._17_c00423{width:24.792000pt;}
._1f_c00423{width:26.773333pt;}
._18_c00423{width:28.997333pt;}
._29_c00423{width:30.136000pt;}
._2a_c00423{width:31.770667pt;}
._23_c00423{width:37.496000pt;}
._27_c00423{width:45.002667pt;}
._31_c00423{width:57.970667pt;}
._25_c00423{width:66.080000pt;}
._36_c00423{width:71.181333pt;}
._26_c00423{width:133.266667pt;}
._35_c00423{width:174.458667pt;}
._34_c00423{width:193.533333pt;}
._28_c00423{width:213.264000pt;}
._30_c00423{width:231.346667pt;}
._2b_c00423{width:253.512000pt;}
._1_c00423{width:264.672000pt;}
._20_c00423{width:303.661333pt;}
._14_c00423{width:389.272000pt;}
._e_c00423{width:439.560000pt;}
.fs5_c00423{font-size:21.333333pt;}
.fs3_c00423{font-size:42.666667pt;}
.fs2_c00423{font-size:53.333333pt;}
.fs7_c00423{font-size:61.333333pt;}
.fs0_c00423{font-size:64.000000pt;}
.fs4_c00423{font-size:66.666667pt;}
.fs6_c00423{font-size:69.333333pt;}
.fs1_c00423{font-size:72.000000pt;}
.fs8_c00423{font-size:77.333333pt;}
.y0_c00423{bottom:0.000000pt;}
.y25_c00423{bottom:2.760000pt;}
.y24_c00423{bottom:6.425204pt;}
.y23_c00423{bottom:56.653333pt;}
.y22_c00423{bottom:76.120000pt;}
.y21_c00423{bottom:100.786667pt;}
.y20_c00423{bottom:120.786667pt;}
.y1f_c00423{bottom:142.386667pt;}
.y1e_c00423{bottom:164.920000pt;}
.y1d_c00423{bottom:184.120000pt;}
.y1c_c00423{bottom:207.320000pt;}
.y1b_c00423{bottom:228.786667pt;}
.y1a_c00423{bottom:250.120000pt;}
.y19_c00423{bottom:271.986667pt;}
.y18_c00423{bottom:293.986667pt;}
.y17_c00423{bottom:315.320000pt;}
.y16_c00423{bottom:337.186667pt;}
.y15_c00423{bottom:358.786667pt;}
.y14_c00423{bottom:380.653333pt;}
.y13_c00423{bottom:401.720000pt;}
.y12_c00423{bottom:423.320000pt;}
.y11_c00423{bottom:444.920000pt;}
.y10_c00423{bottom:466.386667pt;}
.yf_c00423{bottom:487.986667pt;}
.ye_c00423{bottom:510.786667pt;}
.yd_c00423{bottom:530.386667pt;}
.yc_c00423{bottom:551.586667pt;}
.yb_c00423{bottom:573.186667pt;}
.ya_c00423{bottom:596.920000pt;}
.y9_c00423{bottom:617.986667pt;}
.y8_c00423{bottom:639.186667pt;}
.y7_c00423{bottom:660.253333pt;}
.y6_c00423{bottom:682.120000pt;}
.y5_c00423{bottom:702.520000pt;}
.y4_c00423{bottom:724.120000pt;}
.y3_c00423{bottom:747.320000pt;}
.y2_c00423{bottom:768.520000pt;}
.y1_c00423{bottom:789.320000pt;}
.h7_c00423{height:11.733399pt;}
.h8_c00423{height:38.937500pt;}
.h3_c00423{height:70.664062pt;}
.h4_c00423{height:73.978667pt;}
.h2_c00423{height:74.906250pt;}
.h6_c00423{height:81.045333pt;}
.h5_c00423{height:87.783854pt;}
.h1_c00423{height:866.666667pt;}
.h0_c00423{height:866.866667pt;}
.w2_c00423{width:93.222667pt;}
.w0_c00423{width:586.533333pt;}
.w1_c00423{width:586.666667pt;}
.x0_c00423{left:0.000000pt;}
.xf_c00423{left:12.800000pt;}
.xa_c00423{left:14.133333pt;}
.x6_c00423{left:15.333333pt;}
.x7_c00423{left:16.800000pt;}
.x4_c00423{left:17.733333pt;}
.x2_c00423{left:19.466667pt;}
.x9_c00423{left:67.466667pt;}
.xb_c00423{left:75.333333pt;}
.x1_c00423{left:77.733333pt;}
.x3_c00423{left:93.600000pt;}
.xe_c00423{left:94.533333pt;}
.xd_c00423{left:96.000000pt;}
.xc_c00423{left:97.200000pt;}
.x8_c00423{left:98.400000pt;}
.x5_c00423{left:101.733333pt;}
.x10_c00423{left:118.133333pt;}
.x12_c00423{left:250.434896pt;}
.x11_c00423{left:506.666667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_35248083c5de1d0298c9a26b.woff2')format("woff");}.ff1_c00424{font-family:ff1_c00424;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00424;src:url('chunks/assets/font_a5df1586db7e7673eee7e9a1.woff2')format("woff");}.ff2_c00424{font-family:ff2_c00424;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00424;src:url('chunks/assets/font_9a35d4e2464a3752c1313be0.woff2')format("woff");}.ff3_c00424{font-family:ff3_c00424;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00424;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff4_c00424{font-family:ff4_c00424;line-height:1.219238;font-style: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;}
.ls2_c00424{letter-spacing:0.000000px;}
.ls0_c00424{letter-spacing:20.640000px;}
.ls1_c00424{letter-spacing:27.000000px;}
.sc__c00424{text-shadow:none;}
.sc0_c00424{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00424{-webkit-text-stroke:0px transparent;}
.sc0_c00424{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00424{word-spacing:-52.500000px;}
.ws1_c00424{word-spacing:-21.000000px;}
.ws2_c00424{word-spacing:-19.065600px;}
.ws3_c00424{word-spacing:0.000000px;}
._19_c00424{margin-left:-19.440000px;}
._b_c00424{margin-left:-17.658000px;}
._18_c00424{margin-left:-13.608000px;}
._1c_c00424{margin-left:-11.892000px;}
._c_c00424{margin-left:-10.206000px;}
._16_c00424{margin-left:-8.244000px;}
._15_c00424{margin-left:-7.212000px;}
._9_c00424{margin-left:-5.670000px;}
._13_c00424{margin-left:-4.467000px;}
._0_c00424{margin-left:-2.958000px;}
._1_c00424{margin-left:-1.836000px;}
._8_c00424{width:1.446000px;}
._2_c00424{width:2.616000px;}
._4_c00424{width:4.314000px;}
._3_c00424{width:5.688000px;}
._a_c00424{width:7.452000px;}
._11_c00424{width:9.429000px;}
._6_c00424{width:10.914000px;}
._1a_c00424{width:12.243000px;}
._7_c00424{width:13.260000px;}
._14_c00424{width:14.490000px;}
._f_c00424{width:16.362000px;}
._1f_c00424{width:17.463000px;}
._1e_c00424{width:18.798000px;}
._1d_c00424{width:23.673000px;}
._d_c00424{width:26.166000px;}
._12_c00424{width:31.209000px;}
._10_c00424{width:35.208000px;}
._1b_c00424{width:38.883000px;}
._e_c00424{width:48.501000px;}
._5_c00424{width:111.000000px;}
._17_c00424{width:259.239000px;}
._20_c00424{width:369.387000px;}
.fc2_c00424{color:transparent;}
.fc1_c00424{color:rgb(128,128,128);}
.fc0_c00424{color:rgb(0,0,0);}
.fs6_c00424{font-size:48.000000px;}
.fs5_c00424{font-size:57.600000px;}
.fs4_c00424{font-size:72.000000px;}
.fs1_c00424{font-size:81.000000px;}
.fs2_c00424{font-size:84.000000px;}
.fs3_c00424{font-size:90.000000px;}
.fs0_c00424{font-size:102.000000px;}
.y0_c00424{bottom:0.000000px;}
.y24_c00424{bottom:3.105000px;}
.y23_c00424{bottom:7.228369px;}
.y22_c00424{bottom:45.570000px;}
.y21_c00424{bottom:69.120000px;}
.y20_c00424{bottom:94.770000px;}
.y1f_c00424{bottom:119.070000px;}
.y1e_c00424{bottom:143.820000px;}
.y1d_c00424{bottom:168.420000px;}
.y1c_c00424{bottom:193.620000px;}
.y1b_c00424{bottom:217.620000px;}
.y1a_c00424{bottom:242.370000px;}
.y19_c00424{bottom:266.670000px;}
.y18_c00424{bottom:290.970000px;}
.y17_c00424{bottom:314.820000px;}
.y16_c00424{bottom:339.120000px;}
.y15_c00424{bottom:363.420000px;}
.y14_c00424{bottom:388.020000px;}
.y13_c00424{bottom:412.470000px;}
.y12_c00424{bottom:436.620000px;}
.y11_c00424{bottom:460.920000px;}
.y10_c00424{bottom:485.220000px;}
.yf_c00424{bottom:509.520000px;}
.ye_c00424{bottom:544.620000px;}
.yd_c00424{bottom:573.720000px;}
.yc_c00424{bottom:604.020000px;}
.yb_c00424{bottom:649.920000px;}
.ya_c00424{bottom:677.070000px;}
.y9_c00424{bottom:701.220000px;}
.y8_c00424{bottom:725.220000px;}
.y7_c00424{bottom:749.820000px;}
.y6_c00424{bottom:773.820000px;}
.y5_c00424{bottom:798.120000px;}
.y4_c00424{bottom:822.120000px;}
.y3_c00424{bottom:846.720000px;}
.y2_c00424{bottom:871.470000px;}
.y1_c00424{bottom:905.220000px;}
.h7_c00424{height:13.200073px;}
.h8_c00424{height:43.804688px;}
.h3_c00424{height:79.497070px;}
.h5_c00424{height:82.400391px;}
.h6_c00424{height:84.269531px;}
.h4_c00424{height:88.286133px;}
.h2_c00424{height:100.057617px;}
.h0_c00424{height:970.350000px;}
.h1_c00424{height:970.500000px;}
.w2_c00424{width:104.875500px;}
.w1_c00424{width:659.250000px;}
.w0_c00424{width:659.325000px;}
.x0_c00424{left:0.000000px;}
.x10_c00424{left:55.650000px;}
.xf_c00424{left:57.150000px;}
.xe_c00424{left:58.350000px;}
.xd_c00424{left:59.850000px;}
.xc_c00424{left:61.500000px;}
.xb_c00424{left:62.550000px;}
.x5_c00424{left:64.800000px;}
.x4_c00424{left:65.850000px;}
.x3_c00424{left:67.200000px;}
.x2_c00424{left:69.300000px;}
.x1_c00424{left:102.600000px;}
.x6_c00424{left:140.700000px;}
.x8_c00424{left:192.750000px;}
.xa_c00424{left:197.400000px;}
.x9_c00424{left:205.200000px;}
.x7_c00424{left:266.700000px;}
.x12_c00424{left:281.476730px;}
.x11_c00424{left:385.200000px;}
@media print{
.v0_c00424{vertical-align:0.000000pt;}
.ls2_c00424{letter-spacing:0.000000pt;}
.ls0_c00424{letter-spacing:18.346667pt;}
.ls1_c00424{letter-spacing:24.000000pt;}
.ws0_c00424{word-spacing:-46.666667pt;}
.ws1_c00424{word-spacing:-18.666667pt;}
.ws2_c00424{word-spacing:-16.947200pt;}
.ws3_c00424{word-spacing:0.000000pt;}
._19_c00424{margin-left:-17.280000pt;}
._b_c00424{margin-left:-15.696000pt;}
._18_c00424{margin-left:-12.096000pt;}
._1c_c00424{margin-left:-10.570667pt;}
._c_c00424{margin-left:-9.072000pt;}
._16_c00424{margin-left:-7.328000pt;}
._15_c00424{margin-left:-6.410667pt;}
._9_c00424{margin-left:-5.040000pt;}
._13_c00424{margin-left:-3.970667pt;}
._0_c00424{margin-left:-2.629333pt;}
._1_c00424{margin-left:-1.632000pt;}
._8_c00424{width:1.285333pt;}
._2_c00424{width:2.325333pt;}
._4_c00424{width:3.834667pt;}
._3_c00424{width:5.056000pt;}
._a_c00424{width:6.624000pt;}
._11_c00424{width:8.381333pt;}
._6_c00424{width:9.701333pt;}
._1a_c00424{width:10.882667pt;}
._7_c00424{width:11.786667pt;}
._14_c00424{width:12.880000pt;}
._f_c00424{width:14.544000pt;}
._1f_c00424{width:15.522667pt;}
._1e_c00424{width:16.709333pt;}
._1d_c00424{width:21.042667pt;}
._d_c00424{width:23.258667pt;}
._12_c00424{width:27.741333pt;}
._10_c00424{width:31.296000pt;}
._1b_c00424{width:34.562667pt;}
._e_c00424{width:43.112000pt;}
._5_c00424{width:98.666667pt;}
._17_c00424{width:230.434667pt;}
._20_c00424{width:328.344000pt;}
.fs6_c00424{font-size:42.666667pt;}
.fs5_c00424{font-size:51.200000pt;}
.fs4_c00424{font-size:64.000000pt;}
.fs1_c00424{font-size:72.000000pt;}
.fs2_c00424{font-size:74.666667pt;}
.fs3_c00424{font-size:80.000000pt;}
.fs0_c00424{font-size:90.666667pt;}
.y0_c00424{bottom:0.000000pt;}
.y24_c00424{bottom:2.760000pt;}
.y23_c00424{bottom:6.425217pt;}
.y22_c00424{bottom:40.506667pt;}
.y21_c00424{bottom:61.440000pt;}
.y20_c00424{bottom:84.240000pt;}
.y1f_c00424{bottom:105.840000pt;}
.y1e_c00424{bottom:127.840000pt;}
.y1d_c00424{bottom:149.706667pt;}
.y1c_c00424{bottom:172.106667pt;}
.y1b_c00424{bottom:193.440000pt;}
.y1a_c00424{bottom:215.440000pt;}
.y19_c00424{bottom:237.040000pt;}
.y18_c00424{bottom:258.640000pt;}
.y17_c00424{bottom:279.840000pt;}
.y16_c00424{bottom:301.440000pt;}
.y15_c00424{bottom:323.040000pt;}
.y14_c00424{bottom:344.906667pt;}
.y13_c00424{bottom:366.640000pt;}
.y12_c00424{bottom:388.106667pt;}
.y11_c00424{bottom:409.706667pt;}
.y10_c00424{bottom:431.306667pt;}
.yf_c00424{bottom:452.906667pt;}
.ye_c00424{bottom:484.106667pt;}
.yd_c00424{bottom:509.973333pt;}
.yc_c00424{bottom:536.906667pt;}
.yb_c00424{bottom:577.706667pt;}
.ya_c00424{bottom:601.840000pt;}
.y9_c00424{bottom:623.306667pt;}
.y8_c00424{bottom:644.640000pt;}
.y7_c00424{bottom:666.506667pt;}
.y6_c00424{bottom:687.840000pt;}
.y5_c00424{bottom:709.440000pt;}
.y4_c00424{bottom:730.773333pt;}
.y3_c00424{bottom:752.640000pt;}
.y2_c00424{bottom:774.640000pt;}
.y1_c00424{bottom:804.640000pt;}
.h7_c00424{height:11.733399pt;}
.h8_c00424{height:38.937500pt;}
.h3_c00424{height:70.664062pt;}
.h5_c00424{height:73.244792pt;}
.h6_c00424{height:74.906250pt;}
.h4_c00424{height:78.476562pt;}
.h2_c00424{height:88.940104pt;}
.h0_c00424{height:862.533333pt;}
.h1_c00424{height:862.666667pt;}
.w2_c00424{width:93.222667pt;}
.w1_c00424{width:586.000000pt;}
.w0_c00424{width:586.066667pt;}
.x0_c00424{left:0.000000pt;}
.x10_c00424{left:49.466667pt;}
.xf_c00424{left:50.800000pt;}
.xe_c00424{left:51.866667pt;}
.xd_c00424{left:53.200000pt;}
.xc_c00424{left:54.666667pt;}
.xb_c00424{left:55.600000pt;}
.x5_c00424{left:57.600000pt;}
.x4_c00424{left:58.533333pt;}
.x3_c00424{left:59.733333pt;}
.x2_c00424{left:61.600000pt;}
.x1_c00424{left:91.200000pt;}
.x6_c00424{left:125.066667pt;}
.x8_c00424{left:171.333333pt;}
.xa_c00424{left:175.466667pt;}
.x9_c00424{left:182.400000pt;}
.x7_c00424{left:237.066667pt;}
.x12_c00424{left:250.201538pt;}
.x11_c00424{left:342.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_580f72731273d95e48df5fc3.woff2')format("woff");}.ff1_c00425{font-family:ff1_c00425;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00425;src:url('chunks/assets/font_c47ada573d43dcfb8702e636.woff2')format("woff");}.ff2_c00425{font-family:ff2_c00425;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00425;src:url('chunks/assets/font_b62a08da5d127f0cccabba89.woff2')format("woff");}.ff3_c00425{font-family:ff3_c00425;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00425;src:url('chunks/assets/font_6c4e1cbbf7610807a7fb642c.woff2')format("woff");}.ff4_c00425{font-family:ff4_c00425;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00425;src:url('chunks/assets/font_2d4a15df0918742d5021affa.woff2')format("woff");}.ff5_c00425{font-family:ff5_c00425;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00425;src:url('chunks/assets/font_04e36c9b49dee49895315a91.woff2')format("woff");}.ff6_c00425{font-family:ff6_c00425;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00425;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff7_c00425{font-family:ff7_c00425;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00425;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff8_c00425{font-family:ff8_c00425;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00425{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00425{vertical-align:0.000000px;}
.v1_c00425{vertical-align:154.200000px;}
.ls2_c00425{letter-spacing:0.000000px;}
.ls0_c00425{letter-spacing:1.002000px;}
.ls4_c00425{letter-spacing:6.000000px;}
.ls3_c00425{letter-spacing:9.000000px;}
.ls1_c00425{letter-spacing:304.602000px;}
.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;}
}
.ws3_c00425{word-spacing:-160.050000px;}
.ws2_c00425{word-spacing:-76.686000px;}
.ws5_c00425{word-spacing:-20.250000px;}
.ws1_c00425{word-spacing:-17.352000px;}
.ws4_c00425{word-spacing:-13.737000px;}
.ws6_c00425{word-spacing:0.000000px;}
.ws0_c00425{word-spacing:7.476000px;}
._22_c00425{margin-left:-31.836000px;}
._1b_c00425{margin-left:-28.269000px;}
._1d_c00425{margin-left:-18.018000px;}
._1a_c00425{margin-left:-16.443000px;}
._19_c00425{margin-left:-15.399000px;}
._1c_c00425{margin-left:-13.857000px;}
._12_c00425{margin-left:-12.078000px;}
._17_c00425{margin-left:-10.521000px;}
._14_c00425{margin-left:-8.076000px;}
._15_c00425{margin-left:-6.966000px;}
._16_c00425{margin-left:-4.968000px;}
._2_c00425{margin-left:-3.159000px;}
._e_c00425{margin-left:-1.620000px;}
._d_c00425{width:1.863000px;}
._c_c00425{width:2.997000px;}
._f_c00425{width:4.617000px;}
._10_c00425{width:5.904000px;}
._11_c00425{width:7.299000px;}
._a_c00425{width:8.904000px;}
._13_c00425{width:10.353000px;}
._18_c00425{width:11.421000px;}
._4_c00425{width:12.684000px;}
._7_c00425{width:13.692000px;}
._1f_c00425{width:14.703000px;}
._5_c00425{width:16.128000px;}
._1e_c00425{width:17.547000px;}
._0_c00425{width:19.152000px;}
._21_c00425{width:20.751000px;}
._8_c00425{width:22.092000px;}
._9_c00425{width:23.268000px;}
._b_c00425{width:24.444000px;}
._6_c00425{width:26.040000px;}
._25_c00425{width:28.638000px;}
._20_c00425{width:31.500000px;}
._23_c00425{width:60.036000px;}
._3_c00425{width:98.847000px;}
._1_c00425{width:112.638000px;}
._24_c00425{width:206.172000px;}
.fc2_c00425{color:transparent;}
.fc1_c00425{color:rgb(128,128,128);}
.fc0_c00425{color:rgb(0,0,0);}
.fs1_c00425{font-size:27.000000px;}
.fs9_c00425{font-size:48.000000px;}
.fs7_c00425{font-size:57.000000px;}
.fs3_c00425{font-size:72.000000px;}
.fs5_c00425{font-size:75.000000px;}
.fs8_c00425{font-size:78.000000px;}
.fs2_c00425{font-size:81.000000px;}
.fs0_c00425{font-size:84.000000px;}
.fs4_c00425{font-size:87.000000px;}
.fs6_c00425{font-size:291.000000px;}
.y0_c00425{bottom:0.000000px;}
.y26_c00425{bottom:3.105000px;}
.y25_c00425{bottom:7.228371px;}
.y24_c00425{bottom:45.915000px;}
.y23_c00425{bottom:66.615000px;}
.y22_c00425{bottom:92.265000px;}
.y21_c00425{bottom:119.265000px;}
.y20_c00425{bottom:142.215000px;}
.y1f_c00425{bottom:167.415000px;}
.y1e_c00425{bottom:190.665000px;}
.y1d_c00425{bottom:215.415000px;}
.y1c_c00425{bottom:239.715000px;}
.y1b_c00425{bottom:264.315000px;}
.y1a_c00425{bottom:288.615000px;}
.y19_c00425{bottom:314.265000px;}
.y18_c00425{bottom:337.965000px;}
.y17_c00425{bottom:363.615000px;}
.y16_c00425{bottom:386.115000px;}
.y15_c00425{bottom:410.415000px;}
.y13_c00425{bottom:420.915000px;}
.y14_c00425{bottom:435.165000px;}
.y12_c00425{bottom:483.765000px;}
.y11_c00425{bottom:507.315000px;}
.y10_c00425{bottom:531.615000px;}
.yf_c00425{bottom:556.215000px;}
.ye_c00425{bottom:580.815000px;}
.yd_c00425{bottom:604.665000px;}
.yc_c00425{bottom:629.415000px;}
.yb_c00425{bottom:654.165000px;}
.ya_c00425{bottom:678.465000px;}
.y9_c00425{bottom:703.665000px;}
.y8_c00425{bottom:726.765000px;}
.y7_c00425{bottom:751.365000px;}
.y6_c00425{bottom:775.665000px;}
.y5_c00425{bottom:799.965000px;}
.y4_c00425{bottom:824.265000px;}
.y3_c00425{bottom:848.865000px;}
.y2_c00425{bottom:873.765000px;}
.y1_c00425{bottom:910.665000px;}
.hb_c00425{height:13.200074px;}
.hc_c00425{height:43.804688px;}
.h8_c00425{height:66.713379px;}
.h6_c00425{height:73.571777px;}
.h3_c00425{height:79.497070px;}
.h9_c00425{height:82.441406px;}
.h4_c00425{height:84.269531px;}
.h2_c00425{height:91.056000px;}
.h5_c00425{height:91.176000px;}
.ha_c00425{height:98.756836px;}
.h7_c00425{height:299.102144px;}
.h1_c00425{height:986.250000px;}
.h0_c00425{height:986.325000px;}
.w2_c00425{width:104.875500px;}
.w0_c00425{width:667.425000px;}
.w1_c00425{width:667.500000px;}
.x0_c00425{left:0.000000px;}
.xc_c00425{left:42.900000px;}
.x4_c00425{left:44.550000px;}
.xb_c00425{left:105.900000px;}
.x1_c00425{left:132.600000px;}
.x2_c00425{left:134.400000px;}
.x5_c00425{left:136.050000px;}
.x3_c00425{left:138.750000px;}
.x9_c00425{left:141.750000px;}
.x8_c00425{left:175.500000px;}
.x7_c00425{left:183.150000px;}
.xa_c00425{left:187.650000px;}
.x6_c00425{left:219.750000px;}
.xe_c00425{left:285.526749px;}
.xd_c00425{left:592.950000px;}
@media print{
.v0_c00425{vertical-align:0.000000pt;}
.v1_c00425{vertical-align:137.066667pt;}
.ls2_c00425{letter-spacing:0.000000pt;}
.ls0_c00425{letter-spacing:0.890667pt;}
.ls4_c00425{letter-spacing:5.333333pt;}
.ls3_c00425{letter-spacing:8.000000pt;}
.ls1_c00425{letter-spacing:270.757333pt;}
.ws3_c00425{word-spacing:-142.266667pt;}
.ws2_c00425{word-spacing:-68.165333pt;}
.ws5_c00425{word-spacing:-18.000000pt;}
.ws1_c00425{word-spacing:-15.424000pt;}
.ws4_c00425{word-spacing:-12.210667pt;}
.ws6_c00425{word-spacing:0.000000pt;}
.ws0_c00425{word-spacing:6.645333pt;}
._22_c00425{margin-left:-28.298667pt;}
._1b_c00425{margin-left:-25.128000pt;}
._1d_c00425{margin-left:-16.016000pt;}
._1a_c00425{margin-left:-14.616000pt;}
._19_c00425{margin-left:-13.688000pt;}
._1c_c00425{margin-left:-12.317333pt;}
._12_c00425{margin-left:-10.736000pt;}
._17_c00425{margin-left:-9.352000pt;}
._14_c00425{margin-left:-7.178667pt;}
._15_c00425{margin-left:-6.192000pt;}
._16_c00425{margin-left:-4.416000pt;}
._2_c00425{margin-left:-2.808000pt;}
._e_c00425{margin-left:-1.440000pt;}
._d_c00425{width:1.656000pt;}
._c_c00425{width:2.664000pt;}
._f_c00425{width:4.104000pt;}
._10_c00425{width:5.248000pt;}
._11_c00425{width:6.488000pt;}
._a_c00425{width:7.914667pt;}
._13_c00425{width:9.202667pt;}
._18_c00425{width:10.152000pt;}
._4_c00425{width:11.274667pt;}
._7_c00425{width:12.170667pt;}
._1f_c00425{width:13.069333pt;}
._5_c00425{width:14.336000pt;}
._1e_c00425{width:15.597333pt;}
._0_c00425{width:17.024000pt;}
._21_c00425{width:18.445333pt;}
._8_c00425{width:19.637333pt;}
._9_c00425{width:20.682667pt;}
._b_c00425{width:21.728000pt;}
._6_c00425{width:23.146667pt;}
._25_c00425{width:25.456000pt;}
._20_c00425{width:28.000000pt;}
._23_c00425{width:53.365333pt;}
._3_c00425{width:87.864000pt;}
._1_c00425{width:100.122667pt;}
._24_c00425{width:183.264000pt;}
.fs1_c00425{font-size:24.000000pt;}
.fs9_c00425{font-size:42.666667pt;}
.fs7_c00425{font-size:50.666667pt;}
.fs3_c00425{font-size:64.000000pt;}
.fs5_c00425{font-size:66.666667pt;}
.fs8_c00425{font-size:69.333333pt;}
.fs2_c00425{font-size:72.000000pt;}
.fs0_c00425{font-size:74.666667pt;}
.fs4_c00425{font-size:77.333333pt;}
.fs6_c00425{font-size:258.666667pt;}
.y0_c00425{bottom:0.000000pt;}
.y26_c00425{bottom:2.760000pt;}
.y25_c00425{bottom:6.425219pt;}
.y24_c00425{bottom:40.813333pt;}
.y23_c00425{bottom:59.213333pt;}
.y22_c00425{bottom:82.013333pt;}
.y21_c00425{bottom:106.013333pt;}
.y20_c00425{bottom:126.413333pt;}
.y1f_c00425{bottom:148.813333pt;}
.y1e_c00425{bottom:169.480000pt;}
.y1d_c00425{bottom:191.480000pt;}
.y1c_c00425{bottom:213.080000pt;}
.y1b_c00425{bottom:234.946667pt;}
.y1a_c00425{bottom:256.546667pt;}
.y19_c00425{bottom:279.346667pt;}
.y18_c00425{bottom:300.413333pt;}
.y17_c00425{bottom:323.213333pt;}
.y16_c00425{bottom:343.213333pt;}
.y15_c00425{bottom:364.813333pt;}
.y13_c00425{bottom:374.146667pt;}
.y14_c00425{bottom:386.813333pt;}
.y12_c00425{bottom:430.013333pt;}
.y11_c00425{bottom:450.946667pt;}
.y10_c00425{bottom:472.546667pt;}
.yf_c00425{bottom:494.413333pt;}
.ye_c00425{bottom:516.280000pt;}
.yd_c00425{bottom:537.480000pt;}
.yc_c00425{bottom:559.480000pt;}
.yb_c00425{bottom:581.480000pt;}
.ya_c00425{bottom:603.080000pt;}
.y9_c00425{bottom:625.480000pt;}
.y8_c00425{bottom:646.013333pt;}
.y7_c00425{bottom:667.880000pt;}
.y6_c00425{bottom:689.480000pt;}
.y5_c00425{bottom:711.080000pt;}
.y4_c00425{bottom:732.680000pt;}
.y3_c00425{bottom:754.546667pt;}
.y2_c00425{bottom:776.680000pt;}
.y1_c00425{bottom:809.480000pt;}
.hb_c00425{height:11.733399pt;}
.hc_c00425{height:38.937500pt;}
.h8_c00425{height:59.300781pt;}
.h6_c00425{height:65.397135pt;}
.h3_c00425{height:70.664062pt;}
.h9_c00425{height:73.281250pt;}
.h4_c00425{height:74.906250pt;}
.h2_c00425{height:80.938667pt;}
.h5_c00425{height:81.045333pt;}
.ha_c00425{height:87.783854pt;}
.h7_c00425{height:265.868573pt;}
.h1_c00425{height:876.666667pt;}
.h0_c00425{height:876.733333pt;}
.w2_c00425{width:93.222667pt;}
.w0_c00425{width:593.266667pt;}
.w1_c00425{width:593.333333pt;}
.x0_c00425{left:0.000000pt;}
.xc_c00425{left:38.133333pt;}
.x4_c00425{left:39.600000pt;}
.xb_c00425{left:94.133333pt;}
.x1_c00425{left:117.866667pt;}
.x2_c00425{left:119.466667pt;}
.x5_c00425{left:120.933333pt;}
.x3_c00425{left:123.333333pt;}
.x9_c00425{left:126.000000pt;}
.x8_c00425{left:156.000000pt;}
.x7_c00425{left:162.800000pt;}
.xa_c00425{left:166.800000pt;}
.x6_c00425{left:195.333333pt;}
.xe_c00425{left:253.801554pt;}
.xd_c00425{left:527.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_0765c395d74f781cfcf17a44.woff2')format("woff");}.ff1_c00426{font-family:ff1_c00426;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00426;src:url('chunks/assets/font_5257a42321871e82a194190c.woff2')format("woff");}.ff2_c00426{font-family:ff2_c00426;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00426;src:url('chunks/assets/font_1b802e85b32ecafec1c938ab.woff2')format("woff");}.ff3_c00426{font-family:ff3_c00426;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00426;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff4_c00426{font-family:ff4_c00426;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00426;src:url('chunks/assets/font_1608b80e13bf8c1f079fe4da.woff2')format("woff");}.ff5_c00426{font-family:ff5_c00426;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00426;src:url('chunks/assets/font_9a0d24a181f0d63ee9e9db15.woff2')format("woff");}.ff6_c00426{font-family:ff6_c00426;line-height:1.437000;font-style:normal;font-weight: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_c00426;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c00426{font-family:ff7_c00426;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00426{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00426{vertical-align:0.000000px;}
.ls5_c00426{letter-spacing:0.000000px;}
.ls1_c00426{letter-spacing:2.436000px;}
.ls2_c00426{letter-spacing:3.300000px;}
.ls0_c00426{letter-spacing:3.600000px;}
.ls6_c00426{letter-spacing:9.000000px;}
.ls4_c00426{letter-spacing:10.500000px;}
.ls3_c00426{letter-spacing:20.400000px;}
.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:-76.686000px;}
.ws2_c00426{word-spacing:-20.250000px;}
.ws0_c00426{word-spacing:-17.352000px;}
.ws3_c00426{word-spacing:0.000000px;}
._19_c00426{margin-left:-22.473000px;}
._1a_c00426{margin-left:-19.440000px;}
._15_c00426{margin-left:-15.840000px;}
._17_c00426{margin-left:-12.699000px;}
._16_c00426{margin-left:-11.070000px;}
._12_c00426{margin-left:-9.666000px;}
._c_c00426{margin-left:-7.974000px;}
._11_c00426{margin-left:-5.904000px;}
._9_c00426{margin-left:-4.860000px;}
._8_c00426{margin-left:-3.627000px;}
._6_c00426{margin-left:-1.944000px;}
._2_c00426{width:1.875000px;}
._a_c00426{width:3.048000px;}
._1_c00426{width:4.248000px;}
._0_c00426{width:5.904000px;}
._e_c00426{width:7.854000px;}
._7_c00426{width:9.030000px;}
._1e_c00426{width:10.095000px;}
._d_c00426{width:11.097000px;}
._5_c00426{width:12.555000px;}
._3_c00426{width:13.929000px;}
._14_c00426{width:15.330000px;}
._1f_c00426{width:16.371000px;}
._4_c00426{width:18.114000px;}
._1b_c00426{width:25.515000px;}
._18_c00426{width:30.786000px;}
._1c_c00426{width:65.697000px;}
._10_c00426{width:100.278000px;}
._13_c00426{width:118.998000px;}
._1d_c00426{width:121.743000px;}
._f_c00426{width:124.167000px;}
._b_c00426{width:210.711000px;}
.fc2_c00426{color:transparent;}
.fc1_c00426{color:rgb(128,128,128);}
.fc0_c00426{color:rgb(0,0,0);}
.fs5_c00426{font-size:48.000000px;}
.fs2_c00426{font-size:51.000000px;}
.fs3_c00426{font-size:66.000000px;}
.fs0_c00426{font-size:72.000000px;}
.fs1_c00426{font-size:81.000000px;}
.fs4_c00426{font-size:87.000000px;}
.y0_c00426{bottom:0.000000px;}
.y25_c00426{bottom:3.105000px;}
.y24_c00426{bottom:7.228371px;}
.y23_c00426{bottom:62.865000px;}
.y22_c00426{bottom:86.415000px;}
.y21_c00426{bottom:111.465000px;}
.y20_c00426{bottom:136.365000px;}
.y1f_c00426{bottom:160.665000px;}
.y1e_c00426{bottom:186.015000px;}
.y1d_c00426{bottom:210.315000px;}
.y1c_c00426{bottom:234.315000px;}
.y1b_c00426{bottom:258.915000px;}
.y1a_c00426{bottom:283.815000px;}
.y19_c00426{bottom:307.215000px;}
.y18_c00426{bottom:331.815000px;}
.y17_c00426{bottom:356.115000px;}
.y16_c00426{bottom:379.815000px;}
.y15_c00426{bottom:405.465000px;}
.y14_c00426{bottom:429.015000px;}
.y13_c00426{bottom:454.065000px;}
.y12_c00426{bottom:478.215000px;}
.y11_c00426{bottom:501.315000px;}
.y10_c00426{bottom:525.465000px;}
.yf_c00426{bottom:549.765000px;}
.ye_c00426{bottom:574.215000px;}
.yd_c00426{bottom:598.365000px;}
.yc_c00426{bottom:622.065000px;}
.yb_c00426{bottom:645.615000px;}
.ya_c00426{bottom:670.065000px;}
.y9_c00426{bottom:695.265000px;}
.y8_c00426{bottom:719.265000px;}
.y7_c00426{bottom:743.565000px;}
.y6_c00426{bottom:768.165000px;}
.y5_c00426{bottom:792.165000px;}
.y4_c00426{bottom:816.765000px;}
.y3_c00426{bottom:840.765000px;}
.y2_c00426{bottom:864.465000px;}
.y1_c00426{bottom:889.965000px;}
.h5_c00426{height:13.200074px;}
.h6_c00426{height:43.804688px;}
.h2_c00426{height:79.497070px;}
.h3_c00426{height:91.160156px;}
.h4_c00426{height:91.176000px;}
.h0_c00426{height:989.025000px;}
.h1_c00426{height:989.250000px;}
.w1_c00426{width:104.875500px;}
.w0_c00426{width:672.000000px;}
.x0_c00426{left:0.000000px;}
.x8_c00426{left:38.700000px;}
.x3_c00426{left:42.300000px;}
.x4_c00426{left:50.400000px;}
.x5_c00426{left:52.050000px;}
.x7_c00426{left:54.600000px;}
.x6_c00426{left:56.250000px;}
.x1_c00426{left:57.300000px;}
.x2_c00426{left:58.350000px;}
.xa_c00426{left:287.814240px;}
.x9_c00426{left:504.600000px;}
@media print{
.v0_c00426{vertical-align:0.000000pt;}
.ls5_c00426{letter-spacing:0.000000pt;}
.ls1_c00426{letter-spacing:2.165333pt;}
.ls2_c00426{letter-spacing:2.933333pt;}
.ls0_c00426{letter-spacing:3.200000pt;}
.ls6_c00426{letter-spacing:8.000000pt;}
.ls4_c00426{letter-spacing:9.333333pt;}
.ls3_c00426{letter-spacing:18.133333pt;}
.ws1_c00426{word-spacing:-68.165333pt;}
.ws2_c00426{word-spacing:-18.000000pt;}
.ws0_c00426{word-spacing:-15.424000pt;}
.ws3_c00426{word-spacing:0.000000pt;}
._19_c00426{margin-left:-19.976000pt;}
._1a_c00426{margin-left:-17.280000pt;}
._15_c00426{margin-left:-14.080000pt;}
._17_c00426{margin-left:-11.288000pt;}
._16_c00426{margin-left:-9.840000pt;}
._12_c00426{margin-left:-8.592000pt;}
._c_c00426{margin-left:-7.088000pt;}
._11_c00426{margin-left:-5.248000pt;}
._9_c00426{margin-left:-4.320000pt;}
._8_c00426{margin-left:-3.224000pt;}
._6_c00426{margin-left:-1.728000pt;}
._2_c00426{width:1.666667pt;}
._a_c00426{width:2.709333pt;}
._1_c00426{width:3.776000pt;}
._0_c00426{width:5.248000pt;}
._e_c00426{width:6.981333pt;}
._7_c00426{width:8.026667pt;}
._1e_c00426{width:8.973333pt;}
._d_c00426{width:9.864000pt;}
._5_c00426{width:11.160000pt;}
._3_c00426{width:12.381333pt;}
._14_c00426{width:13.626667pt;}
._1f_c00426{width:14.552000pt;}
._4_c00426{width:16.101333pt;}
._1b_c00426{width:22.680000pt;}
._18_c00426{width:27.365333pt;}
._1c_c00426{width:58.397333pt;}
._10_c00426{width:89.136000pt;}
._13_c00426{width:105.776000pt;}
._1d_c00426{width:108.216000pt;}
._f_c00426{width:110.370667pt;}
._b_c00426{width:187.298667pt;}
.fs5_c00426{font-size:42.666667pt;}
.fs2_c00426{font-size:45.333333pt;}
.fs3_c00426{font-size:58.666667pt;}
.fs0_c00426{font-size:64.000000pt;}
.fs1_c00426{font-size:72.000000pt;}
.fs4_c00426{font-size:77.333333pt;}
.y0_c00426{bottom:0.000000pt;}
.y25_c00426{bottom:2.760000pt;}
.y24_c00426{bottom:6.425219pt;}
.y23_c00426{bottom:55.880000pt;}
.y22_c00426{bottom:76.813333pt;}
.y21_c00426{bottom:99.080000pt;}
.y20_c00426{bottom:121.213333pt;}
.y1f_c00426{bottom:142.813333pt;}
.y1e_c00426{bottom:165.346667pt;}
.y1d_c00426{bottom:186.946667pt;}
.y1c_c00426{bottom:208.280000pt;}
.y1b_c00426{bottom:230.146667pt;}
.y1a_c00426{bottom:252.280000pt;}
.y19_c00426{bottom:273.080000pt;}
.y18_c00426{bottom:294.946667pt;}
.y17_c00426{bottom:316.546667pt;}
.y16_c00426{bottom:337.613333pt;}
.y15_c00426{bottom:360.413333pt;}
.y14_c00426{bottom:381.346667pt;}
.y13_c00426{bottom:403.613333pt;}
.y12_c00426{bottom:425.080000pt;}
.y11_c00426{bottom:445.613333pt;}
.y10_c00426{bottom:467.080000pt;}
.yf_c00426{bottom:488.680000pt;}
.ye_c00426{bottom:510.413333pt;}
.yd_c00426{bottom:531.880000pt;}
.yc_c00426{bottom:552.946667pt;}
.yb_c00426{bottom:573.880000pt;}
.ya_c00426{bottom:595.613333pt;}
.y9_c00426{bottom:618.013333pt;}
.y8_c00426{bottom:639.346667pt;}
.y7_c00426{bottom:660.946667pt;}
.y6_c00426{bottom:682.813333pt;}
.y5_c00426{bottom:704.146667pt;}
.y4_c00426{bottom:726.013333pt;}
.y3_c00426{bottom:747.346667pt;}
.y2_c00426{bottom:768.413333pt;}
.y1_c00426{bottom:791.080000pt;}
.h5_c00426{height:11.733399pt;}
.h6_c00426{height:38.937500pt;}
.h2_c00426{height:70.664062pt;}
.h3_c00426{height:81.031250pt;}
.h4_c00426{height:81.045333pt;}
.h0_c00426{height:879.133333pt;}
.h1_c00426{height:879.333333pt;}
.w1_c00426{width:93.222667pt;}
.w0_c00426{width:597.333333pt;}
.x0_c00426{left:0.000000pt;}
.x8_c00426{left:34.400000pt;}
.x3_c00426{left:37.600000pt;}
.x4_c00426{left:44.800000pt;}
.x5_c00426{left:46.266667pt;}
.x7_c00426{left:48.533333pt;}
.x6_c00426{left:50.000000pt;}
.x1_c00426{left:50.933333pt;}
.x2_c00426{left:51.866667pt;}
.xa_c00426{left:255.834880pt;}
.x9_c00426{left:448.533333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ef1409face59d964cfb18c8e.woff2')format("woff");}.ff1_c00427{font-family:ff1_c00427;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00427;src:url('chunks/assets/font_7acd32341eef1d5e985f0710.woff2')format("woff");}.ff2_c00427{font-family:ff2_c00427;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00427;src:url('chunks/assets/font_b9ce53600096c5612ac18794.woff2')format("woff");}.ff3_c00427{font-family:ff3_c00427;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00427;src:url('chunks/assets/font_4f55ef7bf5406afd5560a0fb.woff2')format("woff");}.ff4_c00427{font-family:ff4_c00427;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00427;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff5_c00427{font-family:ff5_c00427;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00427;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c00427{font-family:ff6_c00427;line-height:1.219238;font-style: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;}
.ls2_c00427{letter-spacing:0.000000px;}
.ls1_c00427{letter-spacing:2.700000px;}
.ls3_c00427{letter-spacing:9.000000px;}
.ls0_c00427{letter-spacing:40.500000px;}
.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;}
}
.ws6_c00427{word-spacing:-20.250000px;}
.ws4_c00427{word-spacing:-18.798000px;}
.ws1_c00427{word-spacing:-17.352000px;}
.ws0_c00427{word-spacing:-2.115000px;}
.ws7_c00427{word-spacing:0.000000px;}
.ws3_c00427{word-spacing:2.835000px;}
.ws5_c00427{word-spacing:4.365000px;}
.ws2_c00427{word-spacing:7.965000px;}
._27_c00427{margin-left:-16.119000px;}
._22_c00427{margin-left:-13.101000px;}
._1d_c00427{margin-left:-10.098000px;}
._19_c00427{margin-left:-8.910000px;}
._18_c00427{margin-left:-7.695000px;}
._13_c00427{margin-left:-6.318000px;}
._b_c00427{margin-left:-5.184000px;}
._a_c00427{margin-left:-4.050000px;}
._8_c00427{margin-left:-2.835000px;}
._9_c00427{margin-left:-1.539000px;}
._7_c00427{width:1.701000px;}
._2_c00427{width:2.997000px;}
._0_c00427{width:4.212000px;}
._6_c00427{width:5.670000px;}
._1_c00427{width:6.885000px;}
._5_c00427{width:8.424000px;}
._4_c00427{width:9.882000px;}
._1c_c00427{width:11.076000px;}
._12_c00427{width:12.231000px;}
._e_c00427{width:13.680000px;}
._10_c00427{width:14.805000px;}
._14_c00427{width:15.957000px;}
._f_c00427{width:17.730000px;}
._d_c00427{width:19.080000px;}
._15_c00427{width:20.187000px;}
._25_c00427{width:21.843000px;}
._17_c00427{width:23.085000px;}
._1e_c00427{width:24.174000px;}
._3_c00427{width:25.515000px;}
._23_c00427{width:26.700000px;}
._20_c00427{width:27.702000px;}
._c_c00427{width:30.942000px;}
._1a_c00427{width:42.450000px;}
._21_c00427{width:66.825000px;}
._16_c00427{width:71.550000px;}
._28_c00427{width:79.947000px;}
._1b_c00427{width:159.084000px;}
._1f_c00427{width:281.799000px;}
._26_c00427{width:317.493000px;}
._24_c00427{width:378.594000px;}
._11_c00427{width:426.939000px;}
.fc2_c00427{color:transparent;}
.fc1_c00427{color:rgb(128,128,128);}
.fc0_c00427{color:rgb(0,0,0);}
.fs1_c00427{font-size:45.000000px;}
.fs5_c00427{font-size:48.000000px;}
.fs2_c00427{font-size:54.000000px;}
.fs3_c00427{font-size:72.000000px;}
.fs4_c00427{font-size:78.000000px;}
.fs0_c00427{font-size:81.000000px;}
.y0_c00427{bottom:0.000000px;}
.y25_c00427{bottom:3.105000px;}
.y24_c00427{bottom:7.228363px;}
.y23_c00427{bottom:51.900000px;}
.y22_c00427{bottom:75.150000px;}
.y21_c00427{bottom:100.200000px;}
.y20_c00427{bottom:124.650000px;}
.y1f_c00427{bottom:149.550000px;}
.y1e_c00427{bottom:173.700000px;}
.y1d_c00427{bottom:197.700000px;}
.y1c_c00427{bottom:222.000000px;}
.y1b_c00427{bottom:246.600000px;}
.y1a_c00427{bottom:270.900000px;}
.y19_c00427{bottom:295.200000px;}
.y18_c00427{bottom:319.650000px;}
.y17_c00427{bottom:344.550000px;}
.y16_c00427{bottom:368.850000px;}
.y15_c00427{bottom:392.850000px;}
.y14_c00427{bottom:419.550000px;}
.y13_c00427{bottom:441.450000px;}
.y12_c00427{bottom:465.450000px;}
.y11_c00427{bottom:489.750000px;}
.y10_c00427{bottom:514.050000px;}
.yf_c00427{bottom:537.300000px;}
.ye_c00427{bottom:562.050000px;}
.yd_c00427{bottom:586.500000px;}
.yc_c00427{bottom:611.100000px;}
.yb_c00427{bottom:635.550000px;}
.ya_c00427{bottom:659.400000px;}
.y9_c00427{bottom:683.400000px;}
.y8_c00427{bottom:708.300000px;}
.y7_c00427{bottom:732.300000px;}
.y6_c00427{bottom:755.250000px;}
.y5_c00427{bottom:780.900000px;}
.y4_c00427{bottom:804.900000px;}
.y3_c00427{bottom:831.000000px;}
.y2_c00427{bottom:853.800000px;}
.y1_c00427{bottom:877.500000px;}
.h8_c00427{height:13.200074px;}
.h9_c00427{height:43.804688px;}
.h5_c00427{height:44.165039px;}
.h6_c00427{height:54.421875px;}
.h2_c00427{height:79.497070px;}
.h3_c00427{height:84.269531px;}
.h7_c00427{height:91.160156px;}
.h4_c00427{height:91.291992px;}
.h1_c00427{height:977.250000px;}
.h0_c00427{height:977.400000px;}
.w1_c00427{width:104.875500px;}
.w0_c00427{width:661.500000px;}
.x0_c00427{left:0.000000px;}
.x8_c00427{left:22.050000px;}
.x2_c00427{left:24.000000px;}
.x4_c00427{left:25.950000px;}
.xb_c00427{left:30.150000px;}
.xd_c00427{left:31.350000px;}
.xc_c00427{left:74.550000px;}
.x7_c00427{left:77.250000px;}
.xe_c00427{left:85.500000px;}
.x12_c00427{left:99.900000px;}
.x11_c00427{left:102.300000px;}
.x1_c00427{left:119.700000px;}
.x3_c00427{left:121.200000px;}
.x5_c00427{left:123.150000px;}
.x6_c00427{left:124.200000px;}
.xa_c00427{left:126.600000px;}
.x9_c00427{left:128.550000px;}
.xf_c00427{left:129.900000px;}
.x10_c00427{left:154.350000px;}
.x14_c00427{left:282.564240px;}
.x13_c00427{left:579.900000px;}
@media print{
.v0_c00427{vertical-align:0.000000pt;}
.ls2_c00427{letter-spacing:0.000000pt;}
.ls1_c00427{letter-spacing:2.400000pt;}
.ls3_c00427{letter-spacing:8.000000pt;}
.ls0_c00427{letter-spacing:36.000000pt;}
.ws6_c00427{word-spacing:-18.000000pt;}
.ws4_c00427{word-spacing:-16.709333pt;}
.ws1_c00427{word-spacing:-15.424000pt;}
.ws0_c00427{word-spacing:-1.880000pt;}
.ws7_c00427{word-spacing:0.000000pt;}
.ws3_c00427{word-spacing:2.520000pt;}
.ws5_c00427{word-spacing:3.880000pt;}
.ws2_c00427{word-spacing:7.080000pt;}
._27_c00427{margin-left:-14.328000pt;}
._22_c00427{margin-left:-11.645333pt;}
._1d_c00427{margin-left:-8.976000pt;}
._19_c00427{margin-left:-7.920000pt;}
._18_c00427{margin-left:-6.840000pt;}
._13_c00427{margin-left:-5.616000pt;}
._b_c00427{margin-left:-4.608000pt;}
._a_c00427{margin-left:-3.600000pt;}
._8_c00427{margin-left:-2.520000pt;}
._9_c00427{margin-left:-1.368000pt;}
._7_c00427{width:1.512000pt;}
._2_c00427{width:2.664000pt;}
._0_c00427{width:3.744000pt;}
._6_c00427{width:5.040000pt;}
._1_c00427{width:6.120000pt;}
._5_c00427{width:7.488000pt;}
._4_c00427{width:8.784000pt;}
._1c_c00427{width:9.845333pt;}
._12_c00427{width:10.872000pt;}
._e_c00427{width:12.160000pt;}
._10_c00427{width:13.160000pt;}
._14_c00427{width:14.184000pt;}
._f_c00427{width:15.760000pt;}
._d_c00427{width:16.960000pt;}
._15_c00427{width:17.944000pt;}
._25_c00427{width:19.416000pt;}
._17_c00427{width:20.520000pt;}
._1e_c00427{width:21.488000pt;}
._3_c00427{width:22.680000pt;}
._23_c00427{width:23.733333pt;}
._20_c00427{width:24.624000pt;}
._c_c00427{width:27.504000pt;}
._1a_c00427{width:37.733333pt;}
._21_c00427{width:59.400000pt;}
._16_c00427{width:63.600000pt;}
._28_c00427{width:71.064000pt;}
._1b_c00427{width:141.408000pt;}
._1f_c00427{width:250.488000pt;}
._26_c00427{width:282.216000pt;}
._24_c00427{width:336.528000pt;}
._11_c00427{width:379.501333pt;}
.fs1_c00427{font-size:40.000000pt;}
.fs5_c00427{font-size:42.666667pt;}
.fs2_c00427{font-size:48.000000pt;}
.fs3_c00427{font-size:64.000000pt;}
.fs4_c00427{font-size:69.333333pt;}
.fs0_c00427{font-size:72.000000pt;}
.y0_c00427{bottom:0.000000pt;}
.y25_c00427{bottom:2.760000pt;}
.y24_c00427{bottom:6.425212pt;}
.y23_c00427{bottom:46.133333pt;}
.y22_c00427{bottom:66.800000pt;}
.y21_c00427{bottom:89.066667pt;}
.y20_c00427{bottom:110.800000pt;}
.y1f_c00427{bottom:132.933333pt;}
.y1e_c00427{bottom:154.400000pt;}
.y1d_c00427{bottom:175.733333pt;}
.y1c_c00427{bottom:197.333333pt;}
.y1b_c00427{bottom:219.200000pt;}
.y1a_c00427{bottom:240.800000pt;}
.y19_c00427{bottom:262.400000pt;}
.y18_c00427{bottom:284.133333pt;}
.y17_c00427{bottom:306.266667pt;}
.y16_c00427{bottom:327.866667pt;}
.y15_c00427{bottom:349.200000pt;}
.y14_c00427{bottom:372.933333pt;}
.y13_c00427{bottom:392.400000pt;}
.y12_c00427{bottom:413.733333pt;}
.y11_c00427{bottom:435.333333pt;}
.y10_c00427{bottom:456.933333pt;}
.yf_c00427{bottom:477.600000pt;}
.ye_c00427{bottom:499.600000pt;}
.yd_c00427{bottom:521.333333pt;}
.yc_c00427{bottom:543.200000pt;}
.yb_c00427{bottom:564.933333pt;}
.ya_c00427{bottom:586.133333pt;}
.y9_c00427{bottom:607.466667pt;}
.y8_c00427{bottom:629.600000pt;}
.y7_c00427{bottom:650.933333pt;}
.y6_c00427{bottom:671.333333pt;}
.y5_c00427{bottom:694.133333pt;}
.y4_c00427{bottom:715.466667pt;}
.y3_c00427{bottom:738.666667pt;}
.y2_c00427{bottom:758.933333pt;}
.y1_c00427{bottom:780.000000pt;}
.h8_c00427{height:11.733399pt;}
.h9_c00427{height:38.937500pt;}
.h5_c00427{height:39.257812pt;}
.h6_c00427{height:48.375000pt;}
.h2_c00427{height:70.664062pt;}
.h3_c00427{height:74.906250pt;}
.h7_c00427{height:81.031250pt;}
.h4_c00427{height:81.148438pt;}
.h1_c00427{height:868.666667pt;}
.h0_c00427{height:868.800000pt;}
.w1_c00427{width:93.222667pt;}
.w0_c00427{width:588.000000pt;}
.x0_c00427{left:0.000000pt;}
.x8_c00427{left:19.600000pt;}
.x2_c00427{left:21.333333pt;}
.x4_c00427{left:23.066667pt;}
.xb_c00427{left:26.800000pt;}
.xd_c00427{left:27.866667pt;}
.xc_c00427{left:66.266667pt;}
.x7_c00427{left:68.666667pt;}
.xe_c00427{left:76.000000pt;}
.x12_c00427{left:88.800000pt;}
.x11_c00427{left:90.933333pt;}
.x1_c00427{left:106.400000pt;}
.x3_c00427{left:107.733333pt;}
.x5_c00427{left:109.466667pt;}
.x6_c00427{left:110.400000pt;}
.xa_c00427{left:112.533333pt;}
.x9_c00427{left:114.266667pt;}
.xf_c00427{left:115.466667pt;}
.x10_c00427{left:137.200000pt;}
.x14_c00427{left:251.168213pt;}
.x13_c00427{left:515.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_52db9c83f51ee1d98d75342a.woff2')format("woff");}.ff1_c00428{font-family:ff1_c00428;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00428;src:url('chunks/assets/font_3557fa89a752614683544835.woff2')format("woff");}.ff2_c00428{font-family:ff2_c00428;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00428;src:url('chunks/assets/font_56a5c853637f583af7a62244.woff2')format("woff");}.ff3_c00428{font-family:ff3_c00428;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00428;src:url('chunks/assets/font_19a276d99324ef75efc35312.woff2')format("woff");}.ff4_c00428{font-family:ff4_c00428;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00428;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff5_c00428{font-family:ff5_c00428;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00428;src:url('chunks/assets/font_676a917e08f0845375bab793.woff2')format("woff");}.ff6_c00428{font-family:ff6_c00428;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00428;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c00428{font-family:ff7_c00428;line-height:1.219238;font-style: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;}
.ls5_c00428{letter-spacing:0.000000px;}
.ls2_c00428{letter-spacing:1.215000px;}
.ls1_c00428{letter-spacing:1.800000px;}
.ls6_c00428{letter-spacing:3.000000px;}
.ls4_c00428{letter-spacing:6.000000px;}
.ls3_c00428{letter-spacing:21.000000px;}
.ls0_c00428{letter-spacing:288.000000px;}
.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;}
}
.ws3_c00428{word-spacing:-41.250000px;}
.ws2_c00428{word-spacing:-20.250000px;}
.ws1_c00428{word-spacing:-18.750000px;}
.ws0_c00428{word-spacing:-17.352000px;}
.ws4_c00428{word-spacing:0.000000px;}
._1b_c00428{margin-left:-292.200000px;}
._1a_c00428{margin-left:-267.261000px;}
._a_c00428{margin-left:-20.706000px;}
._15_c00428{margin-left:-18.384000px;}
._18_c00428{margin-left:-17.136000px;}
._23_c00428{margin-left:-15.549000px;}
._2_c00428{margin-left:-14.484000px;}
._4_c00428{margin-left:-13.464000px;}
._22_c00428{margin-left:-11.994000px;}
._5_c00428{margin-left:-10.914000px;}
._3_c00428{margin-left:-9.384000px;}
._11_c00428{margin-left:-8.250000px;}
._9_c00428{margin-left:-7.038000px;}
._e_c00428{margin-left:-5.265000px;}
._7_c00428{margin-left:-3.264000px;}
._6_c00428{margin-left:-1.734000px;}
._1_c00428{width:1.836000px;}
._0_c00428{width:3.162000px;}
._c_c00428{width:4.284000px;}
._f_c00428{width:6.003000px;}
._10_c00428{width:7.533000px;}
._1f_c00428{width:8.556000px;}
._d_c00428{width:9.567000px;}
._16_c00428{width:10.710000px;}
._13_c00428{width:11.811000px;}
._1e_c00428{width:13.524000px;}
._12_c00428{width:15.045000px;}
._1c_c00428{width:16.605000px;}
._17_c00428{width:18.393000px;}
._19_c00428{width:22.029000px;}
._14_c00428{width:24.060000px;}
._1d_c00428{width:25.521000px;}
._8_c00428{width:97.002000px;}
._b_c00428{width:103.146000px;}
._21_c00428{width:138.894000px;}
._20_c00428{width:226.281000px;}
.fc2_c00428{color:transparent;}
.fc1_c00428{color:rgb(128,128,128);}
.fc0_c00428{color:rgb(0,0,0);}
.fs7_c00428{font-size:48.000000px;}
.fs6_c00428{font-size:57.000000px;}
.fs4_c00428{font-size:72.000000px;}
.fs5_c00428{font-size:75.000000px;}
.fs3_c00428{font-size:78.000000px;}
.fs2_c00428{font-size:81.000000px;}
.fs0_c00428{font-size:102.000000px;}
.fs1_c00428{font-size:120.000000px;}
.y0_c00428{bottom:0.000000px;}
.y25_c00428{bottom:3.105000px;}
.y24_c00428{bottom:7.228371px;}
.y23_c00428{bottom:87.165000px;}
.y22_c00428{bottom:113.115000px;}
.y21_c00428{bottom:138.765000px;}
.y20_c00428{bottom:162.465000px;}
.y1f_c00428{bottom:186.765000px;}
.y1e_c00428{bottom:211.065000px;}
.y1d_c00428{bottom:235.665000px;}
.y1c_c00428{bottom:260.265000px;}
.y1b_c00428{bottom:283.515000px;}
.y1a_c00428{bottom:307.215000px;}
.y19_c00428{bottom:331.515000px;}
.y18_c00428{bottom:356.115000px;}
.y17_c00428{bottom:380.115000px;}
.y16_c00428{bottom:404.115000px;}
.y15_c00428{bottom:426.915000px;}
.y14_c00428{bottom:451.965000px;}
.y13_c00428{bottom:475.665000px;}
.y12_c00428{bottom:499.815000px;}
.y11_c00428{bottom:524.115000px;}
.y10_c00428{bottom:548.115000px;}
.yf_c00428{bottom:572.415000px;}
.ye_c00428{bottom:596.115000px;}
.yd_c00428{bottom:619.965000px;}
.yc_c00428{bottom:643.965000px;}
.yb_c00428{bottom:668.565000px;}
.ya_c00428{bottom:692.565000px;}
.y9_c00428{bottom:717.165000px;}
.y8_c00428{bottom:740.865000px;}
.y7_c00428{bottom:764.865000px;}
.y6_c00428{bottom:789.165000px;}
.y5_c00428{bottom:813.165000px;}
.y4_c00428{bottom:837.315000px;}
.y3_c00428{bottom:861.765000px;}
.y2_c00428{bottom:885.915000px;}
.y1_c00428{bottom:919.665000px;}
.h9_c00428{height:13.200074px;}
.ha_c00428{height:43.804688px;}
.h8_c00428{height:57.445312px;}
.h7_c00428{height:73.571777px;}
.h5_c00428{height:73.608398px;}
.h3_c00428{height:79.497070px;}
.h6_c00428{height:84.269531px;}
.h4_c00428{height:91.160156px;}
.h2_c00428{height:120.937500px;}
.h0_c00428{height:989.025000px;}
.h1_c00428{height:989.250000px;}
.w1_c00428{width:104.875500px;}
.w0_c00428{width:672.000000px;}
.x0_c00428{left:0.000000px;}
.x6_c00428{left:62.100000px;}
.xa_c00428{left:64.500000px;}
.x5_c00428{left:65.850000px;}
.x4_c00428{left:67.800000px;}
.x3_c00428{left:68.850000px;}
.x2_c00428{left:71.100000px;}
.x9_c00428{left:94.200000px;}
.x1_c00428{left:105.600000px;}
.x8_c00428{left:112.350000px;}
.x7_c00428{left:149.850000px;}
.xb_c00428{left:287.814240px;}
@media print{
.v0_c00428{vertical-align:0.000000pt;}
.ls5_c00428{letter-spacing:0.000000pt;}
.ls2_c00428{letter-spacing:1.080000pt;}
.ls1_c00428{letter-spacing:1.600000pt;}
.ls6_c00428{letter-spacing:2.666667pt;}
.ls4_c00428{letter-spacing:5.333333pt;}
.ls3_c00428{letter-spacing:18.666667pt;}
.ls0_c00428{letter-spacing:256.000000pt;}
.ws3_c00428{word-spacing:-36.666667pt;}
.ws2_c00428{word-spacing:-18.000000pt;}
.ws1_c00428{word-spacing:-16.666667pt;}
.ws0_c00428{word-spacing:-15.424000pt;}
.ws4_c00428{word-spacing:0.000000pt;}
._1b_c00428{margin-left:-259.733333pt;}
._1a_c00428{margin-left:-237.565333pt;}
._a_c00428{margin-left:-18.405333pt;}
._15_c00428{margin-left:-16.341333pt;}
._18_c00428{margin-left:-15.232000pt;}
._23_c00428{margin-left:-13.821333pt;}
._2_c00428{margin-left:-12.874667pt;}
._4_c00428{margin-left:-11.968000pt;}
._22_c00428{margin-left:-10.661333pt;}
._5_c00428{margin-left:-9.701333pt;}
._3_c00428{margin-left:-8.341333pt;}
._11_c00428{margin-left:-7.333333pt;}
._9_c00428{margin-left:-6.256000pt;}
._e_c00428{margin-left:-4.680000pt;}
._7_c00428{margin-left:-2.901333pt;}
._6_c00428{margin-left:-1.541333pt;}
._1_c00428{width:1.632000pt;}
._0_c00428{width:2.810667pt;}
._c_c00428{width:3.808000pt;}
._f_c00428{width:5.336000pt;}
._10_c00428{width:6.696000pt;}
._1f_c00428{width:7.605333pt;}
._d_c00428{width:8.504000pt;}
._16_c00428{width:9.520000pt;}
._13_c00428{width:10.498667pt;}
._1e_c00428{width:12.021333pt;}
._12_c00428{width:13.373333pt;}
._1c_c00428{width:14.760000pt;}
._17_c00428{width:16.349333pt;}
._19_c00428{width:19.581333pt;}
._14_c00428{width:21.386667pt;}
._1d_c00428{width:22.685333pt;}
._8_c00428{width:86.224000pt;}
._b_c00428{width:91.685333pt;}
._21_c00428{width:123.461333pt;}
._20_c00428{width:201.138667pt;}
.fs7_c00428{font-size:42.666667pt;}
.fs6_c00428{font-size:50.666667pt;}
.fs4_c00428{font-size:64.000000pt;}
.fs5_c00428{font-size:66.666667pt;}
.fs3_c00428{font-size:69.333333pt;}
.fs2_c00428{font-size:72.000000pt;}
.fs0_c00428{font-size:90.666667pt;}
.fs1_c00428{font-size:106.666667pt;}
.y0_c00428{bottom:0.000000pt;}
.y25_c00428{bottom:2.760000pt;}
.y24_c00428{bottom:6.425219pt;}
.y23_c00428{bottom:77.480000pt;}
.y22_c00428{bottom:100.546667pt;}
.y21_c00428{bottom:123.346667pt;}
.y20_c00428{bottom:144.413333pt;}
.y1f_c00428{bottom:166.013333pt;}
.y1e_c00428{bottom:187.613333pt;}
.y1d_c00428{bottom:209.480000pt;}
.y1c_c00428{bottom:231.346667pt;}
.y1b_c00428{bottom:252.013333pt;}
.y1a_c00428{bottom:273.080000pt;}
.y19_c00428{bottom:294.680000pt;}
.y18_c00428{bottom:316.546667pt;}
.y17_c00428{bottom:337.880000pt;}
.y16_c00428{bottom:359.213333pt;}
.y15_c00428{bottom:379.480000pt;}
.y14_c00428{bottom:401.746667pt;}
.y13_c00428{bottom:422.813333pt;}
.y12_c00428{bottom:444.280000pt;}
.y11_c00428{bottom:465.880000pt;}
.y10_c00428{bottom:487.213333pt;}
.yf_c00428{bottom:508.813333pt;}
.ye_c00428{bottom:529.880000pt;}
.yd_c00428{bottom:551.080000pt;}
.yc_c00428{bottom:572.413333pt;}
.yb_c00428{bottom:594.280000pt;}
.ya_c00428{bottom:615.613333pt;}
.y9_c00428{bottom:637.480000pt;}
.y8_c00428{bottom:658.546667pt;}
.y7_c00428{bottom:679.880000pt;}
.y6_c00428{bottom:701.480000pt;}
.y5_c00428{bottom:722.813333pt;}
.y4_c00428{bottom:744.280000pt;}
.y3_c00428{bottom:766.013333pt;}
.y2_c00428{bottom:787.480000pt;}
.y1_c00428{bottom:817.480000pt;}
.h9_c00428{height:11.733399pt;}
.ha_c00428{height:38.937500pt;}
.h8_c00428{height:51.062500pt;}
.h7_c00428{height:65.397135pt;}
.h5_c00428{height:65.429688pt;}
.h3_c00428{height:70.664062pt;}
.h6_c00428{height:74.906250pt;}
.h4_c00428{height:81.031250pt;}
.h2_c00428{height:107.500000pt;}
.h0_c00428{height:879.133333pt;}
.h1_c00428{height:879.333333pt;}
.w1_c00428{width:93.222667pt;}
.w0_c00428{width:597.333333pt;}
.x0_c00428{left:0.000000pt;}
.x6_c00428{left:55.200000pt;}
.xa_c00428{left:57.333333pt;}
.x5_c00428{left:58.533333pt;}
.x4_c00428{left:60.266667pt;}
.x3_c00428{left:61.200000pt;}
.x2_c00428{left:63.200000pt;}
.x9_c00428{left:83.733333pt;}
.x1_c00428{left:93.866667pt;}
.x8_c00428{left:99.866667pt;}
.x7_c00428{left:133.200000pt;}
.xb_c00428{left:255.834880pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c23a2ed43e04ea0b8376f4e8.woff2')format("woff");}.ff1_c00429{font-family:ff1_c00429;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00429;src:url('chunks/assets/font_270bd9fb1bc2468e42bb12f4.woff2')format("woff");}.ff2_c00429{font-family:ff2_c00429;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00429;src:url('chunks/assets/font_fdade6a0c5fd9be882fc530c.woff2')format("woff");}.ff3_c00429{font-family:ff3_c00429;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00429;src:url('chunks/assets/font_63202667ac6042bce07622ac.woff2')format("woff");}.ff4_c00429{font-family:ff4_c00429;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00429;src:url('chunks/assets/font_ddb8332a70301d496cb250aa.woff2')format("woff");}.ff5_c00429{font-family:ff5_c00429;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00429;src:url('chunks/assets/font_0979d4c5712970d553a70fb2.woff2')format("woff");}.ff6_c00429{font-family:ff6_c00429;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00429;src:url('chunks/assets/font_e0e65ce39dddb71e0ceb858b.woff2')format("woff");}.ff7_c00429{font-family:ff7_c00429;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00429;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff8_c00429{font-family:ff8_c00429;line-height:1.219238;font-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_c00429{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,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;}
.ls6_c00429{letter-spacing:0.000000px;}
.ls0_c00429{letter-spacing:3.000000px;}
.ls3_c00429{letter-spacing:5.700000px;}
.ls4_c00429{letter-spacing:6.750000px;}
.ls2_c00429{letter-spacing:8.100000px;}
.ls1_c00429{letter-spacing:11.361000px;}
.ls5_c00429{letter-spacing:49.200000px;}
.ls7_c00429{letter-spacing:288.000000px;}
.sc__c00429{text-shadow:none;}
.sc0_c00429{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00429{-webkit-text-stroke:0px transparent;}
.sc0_c00429{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00429{word-spacing:-72.306000px;}
.ws1_c00429{word-spacing:-17.352000px;}
.ws0_c00429{word-spacing:-3.040800px;}
.ws3_c00429{word-spacing:0.000000px;}
._1d_c00429{margin-left:-287.712000px;}
._1c_c00429{margin-left:-285.495000px;}
._19_c00429{margin-left:-24.348000px;}
._18_c00429{margin-left:-18.549000px;}
._1b_c00429{margin-left:-14.580000px;}
._1a_c00429{margin-left:-13.203000px;}
._12_c00429{margin-left:-12.018000px;}
._1_c00429{margin-left:-10.611000px;}
._13_c00429{margin-left:-8.700000px;}
._f_c00429{margin-left:-7.695000px;}
._3_c00429{margin-left:-5.589000px;}
._6_c00429{margin-left:-3.807000px;}
._2_c00429{margin-left:-2.673000px;}
._d_c00429{margin-left:-1.458000px;}
._4_c00429{width:1.215000px;}
._5_c00429{width:2.835000px;}
._c_c00429{width:3.969000px;}
._a_c00429{width:5.022000px;}
._7_c00429{width:6.075000px;}
._8_c00429{width:7.533000px;}
._b_c00429{width:9.315000px;}
._14_c00429{width:11.142000px;}
._e_c00429{width:12.150000px;}
._0_c00429{width:13.203000px;}
._9_c00429{width:14.256000px;}
._10_c00429{width:15.309000px;}
._15_c00429{width:17.196000px;}
._20_c00429{width:18.522000px;}
._16_c00429{width:25.434000px;}
._1f_c00429{width:31.914000px;}
._11_c00429{width:154.953000px;}
._17_c00429{width:180.135000px;}
._1e_c00429{width:197.445000px;}
.fc2_c00429{color:transparent;}
.fc1_c00429{color:rgb(128,128,128);}
.fc0_c00429{color:rgb(0,0,0);}
.fs2_c00429{font-size:40.800000px;}
.fs3_c00429{font-size:42.000000px;}
.fs8_c00429{font-size:48.000000px;}
.fs1_c00429{font-size:51.000000px;}
.fs5_c00429{font-size:72.000000px;}
.fs6_c00429{font-size:75.000000px;}
.fs7_c00429{font-size:78.000000px;}
.fs0_c00429{font-size:81.000000px;}
.fs4_c00429{font-size:108.000000px;}
.y0_c00429{bottom:0.000000px;}
.y25_c00429{bottom:3.105000px;}
.y24_c00429{bottom:7.228363px;}
.y23_c00429{bottom:62.700000px;}
.y22_c00429{bottom:83.400000px;}
.y21_c00429{bottom:109.050000px;}
.y20_c00429{bottom:133.350000px;}
.y1f_c00429{bottom:157.200000px;}
.y1e_c00429{bottom:181.950000px;}
.y1d_c00429{bottom:206.100000px;}
.y1c_c00429{bottom:230.850000px;}
.y1b_c00429{bottom:254.400000px;}
.y1a_c00429{bottom:279.150000px;}
.y19_c00429{bottom:303.000000px;}
.y18_c00429{bottom:329.100000px;}
.y17_c00429{bottom:350.250000px;}
.y16_c00429{bottom:376.350000px;}
.y15_c00429{bottom:400.500000px;}
.y14_c00429{bottom:424.800000px;}
.y13_c00429{bottom:448.800000px;}
.y12_c00429{bottom:472.800000px;}
.y11_c00429{bottom:496.800000px;}
.y10_c00429{bottom:520.650000px;}
.yf_c00429{bottom:544.350000px;}
.ye_c00429{bottom:568.350000px;}
.yd_c00429{bottom:592.950000px;}
.yc_c00429{bottom:616.950000px;}
.yb_c00429{bottom:641.250000px;}
.ya_c00429{bottom:665.550000px;}
.y9_c00429{bottom:689.850000px;}
.y8_c00429{bottom:714.150000px;}
.y7_c00429{bottom:737.400000px;}
.y6_c00429{bottom:761.700000px;}
.y5_c00429{bottom:786.300000px;}
.y4_c00429{bottom:809.700000px;}
.y3_c00429{bottom:834.300000px;}
.y2_c00429{bottom:858.000000px;}
.y1_c00429{bottom:882.600000px;}
.h7_c00429{height:13.200074px;}
.h8_c00429{height:43.804688px;}
.h3_c00429{height:50.053711px;}
.h2_c00429{height:79.497070px;}
.h5_c00429{height:84.269531px;}
.h6_c00429{height:98.756836px;}
.h4_c00429{height:108.843750px;}
.h1_c00429{height:977.250000px;}
.h0_c00429{height:977.400000px;}
.w1_c00429{width:104.875500px;}
.w0_c00429{width:661.500000px;}
.x0_c00429{left:0.000000px;}
.xa_c00429{left:21.300000px;}
.x9_c00429{left:23.400000px;}
.x4_c00429{left:56.400000px;}
.x8_c00429{left:97.200000px;}
.x3_c00429{left:110.100000px;}
.x2_c00429{left:111.150000px;}
.x5_c00429{left:112.350000px;}
.x1_c00429{left:114.450000px;}
.x6_c00429{left:115.500000px;}
.xb_c00429{left:116.850000px;}
.xc_c00429{left:117.900000px;}
.xe_c00429{left:282.564240px;}
.xd_c00429{left:568.650000px;}
.x7_c00429{left:598.500000px;}
@media print{
.v0_c00429{vertical-align:0.000000pt;}
.ls6_c00429{letter-spacing:0.000000pt;}
.ls0_c00429{letter-spacing:2.666667pt;}
.ls3_c00429{letter-spacing:5.066667pt;}
.ls4_c00429{letter-spacing:6.000000pt;}
.ls2_c00429{letter-spacing:7.200000pt;}
.ls1_c00429{letter-spacing:10.098667pt;}
.ls5_c00429{letter-spacing:43.733333pt;}
.ls7_c00429{letter-spacing:256.000000pt;}
.ws2_c00429{word-spacing:-64.272000pt;}
.ws1_c00429{word-spacing:-15.424000pt;}
.ws0_c00429{word-spacing:-2.702933pt;}
.ws3_c00429{word-spacing:0.000000pt;}
._1d_c00429{margin-left:-255.744000pt;}
._1c_c00429{margin-left:-253.773333pt;}
._19_c00429{margin-left:-21.642667pt;}
._18_c00429{margin-left:-16.488000pt;}
._1b_c00429{margin-left:-12.960000pt;}
._1a_c00429{margin-left:-11.736000pt;}
._12_c00429{margin-left:-10.682667pt;}
._1_c00429{margin-left:-9.432000pt;}
._13_c00429{margin-left:-7.733333pt;}
._f_c00429{margin-left:-6.840000pt;}
._3_c00429{margin-left:-4.968000pt;}
._6_c00429{margin-left:-3.384000pt;}
._2_c00429{margin-left:-2.376000pt;}
._d_c00429{margin-left:-1.296000pt;}
._4_c00429{width:1.080000pt;}
._5_c00429{width:2.520000pt;}
._c_c00429{width:3.528000pt;}
._a_c00429{width:4.464000pt;}
._7_c00429{width:5.400000pt;}
._8_c00429{width:6.696000pt;}
._b_c00429{width:8.280000pt;}
._14_c00429{width:9.904000pt;}
._e_c00429{width:10.800000pt;}
._0_c00429{width:11.736000pt;}
._9_c00429{width:12.672000pt;}
._10_c00429{width:13.608000pt;}
._15_c00429{width:15.285333pt;}
._20_c00429{width:16.464000pt;}
._16_c00429{width:22.608000pt;}
._1f_c00429{width:28.368000pt;}
._11_c00429{width:137.736000pt;}
._17_c00429{width:160.120000pt;}
._1e_c00429{width:175.506667pt;}
.fs2_c00429{font-size:36.266667pt;}
.fs3_c00429{font-size:37.333333pt;}
.fs8_c00429{font-size:42.666667pt;}
.fs1_c00429{font-size:45.333333pt;}
.fs5_c00429{font-size:64.000000pt;}
.fs6_c00429{font-size:66.666667pt;}
.fs7_c00429{font-size:69.333333pt;}
.fs0_c00429{font-size:72.000000pt;}
.fs4_c00429{font-size:96.000000pt;}
.y0_c00429{bottom:0.000000pt;}
.y25_c00429{bottom:2.760000pt;}
.y24_c00429{bottom:6.425212pt;}
.y23_c00429{bottom:55.733333pt;}
.y22_c00429{bottom:74.133333pt;}
.y21_c00429{bottom:96.933333pt;}
.y20_c00429{bottom:118.533333pt;}
.y1f_c00429{bottom:139.733333pt;}
.y1e_c00429{bottom:161.733333pt;}
.y1d_c00429{bottom:183.200000pt;}
.y1c_c00429{bottom:205.200000pt;}
.y1b_c00429{bottom:226.133333pt;}
.y1a_c00429{bottom:248.133333pt;}
.y19_c00429{bottom:269.333333pt;}
.y18_c00429{bottom:292.533333pt;}
.y17_c00429{bottom:311.333333pt;}
.y16_c00429{bottom:334.533333pt;}
.y15_c00429{bottom:356.000000pt;}
.y14_c00429{bottom:377.600000pt;}
.y13_c00429{bottom:398.933333pt;}
.y12_c00429{bottom:420.266667pt;}
.y11_c00429{bottom:441.600000pt;}
.y10_c00429{bottom:462.800000pt;}
.yf_c00429{bottom:483.866667pt;}
.ye_c00429{bottom:505.200000pt;}
.yd_c00429{bottom:527.066667pt;}
.yc_c00429{bottom:548.400000pt;}
.yb_c00429{bottom:570.000000pt;}
.ya_c00429{bottom:591.600000pt;}
.y9_c00429{bottom:613.200000pt;}
.y8_c00429{bottom:634.800000pt;}
.y7_c00429{bottom:655.466667pt;}
.y6_c00429{bottom:677.066667pt;}
.y5_c00429{bottom:698.933333pt;}
.y4_c00429{bottom:719.733333pt;}
.y3_c00429{bottom:741.600000pt;}
.y2_c00429{bottom:762.666667pt;}
.y1_c00429{bottom:784.533333pt;}
.h7_c00429{height:11.733399pt;}
.h8_c00429{height:38.937500pt;}
.h3_c00429{height:44.492188pt;}
.h2_c00429{height:70.664062pt;}
.h5_c00429{height:74.906250pt;}
.h6_c00429{height:87.783854pt;}
.h4_c00429{height:96.750000pt;}
.h1_c00429{height:868.666667pt;}
.h0_c00429{height:868.800000pt;}
.w1_c00429{width:93.222667pt;}
.w0_c00429{width:588.000000pt;}
.x0_c00429{left:0.000000pt;}
.xa_c00429{left:18.933333pt;}
.x9_c00429{left:20.800000pt;}
.x4_c00429{left:50.133333pt;}
.x8_c00429{left:86.400000pt;}
.x3_c00429{left:97.866667pt;}
.x2_c00429{left:98.800000pt;}
.x5_c00429{left:99.866667pt;}
.x1_c00429{left:101.733333pt;}
.x6_c00429{left:102.666667pt;}
.xb_c00429{left:103.866667pt;}
.xc_c00429{left:104.800000pt;}
.xe_c00429{left:251.168213pt;}
.xd_c00429{left:505.466667pt;}
.x7_c00429{left:532.000000pt;}
}





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

.ir_c00430:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00430{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00430;src:url('chunks/assets/font_95d24270caa9ca977811f957.woff2')format("woff");}.ff1_c00430{font-family:ff1_c00430;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00430;src:url('chunks/assets/font_784e2dfa90d5dc9b1d5b3ea4.woff2')format("woff");}.ff2_c00430{font-family:ff2_c00430;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00430;src:url('chunks/assets/font_b91f235f845466baf29b0ddc.woff2')format("woff");}.ff3_c00430{font-family:ff3_c00430;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00430;src:url('chunks/assets/font_9638bc2c1c973fdbc2cc293e.woff2')format("woff");}.ff4_c00430{font-family:ff4_c00430;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00430;src:url('chunks/assets/font_5ddbd5a5a1a6972c874565d9.woff2')format("woff");}.ff5_c00430{font-family:ff5_c00430;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00430;src:url('chunks/assets/font_58b5b62240123d638a07a86f.woff2')format("woff");}.ff6_c00430{font-family:ff6_c00430;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00430;src:url('chunks/assets/font_f818184c2fdd0f3dd4d2b806.woff2')format("woff");}.ff7_c00430{font-family:ff7_c00430;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00430;src:url('chunks/assets/font_a7010be6d0c30281b4055647.woff2')format("woff");}.ff8_c00430{font-family:ff8_c00430;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00430;src:url('chunks/assets/font_2f5f45922e595016ce3f787d.woff2')format("woff");}.ff9_c00430{font-family:ff9_c00430;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00430;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ffa_c00430{font-family:ffa_c00430;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00430{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00430{vertical-align:-12.000000px;}
.v0_c00430{vertical-align:0.000000px;}
.ls7_c00430{letter-spacing:-9.000000px;}
.ls5_c00430{letter-spacing:0.000000px;}
.ls2_c00430{letter-spacing:3.000000px;}
.ls4_c00430{letter-spacing:3.150000px;}
.ls6_c00430{letter-spacing:6.000000px;}
.ls1_c00430{letter-spacing:6.240000px;}
.ls0_c00430{letter-spacing:19.320000px;}
.ls3_c00430{letter-spacing:22.800000px;}
.sc__c00430{text-shadow:none;}
.sc0_c00430{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00430{-webkit-text-stroke:0px transparent;}
.sc0_c00430{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00430{word-spacing:-46.320000px;}
.ws3_c00430{word-spacing:-37.656000px;}
.ws2_c00430{word-spacing:-27.624000px;}
.ws1_c00430{word-spacing:-20.250000px;}
.ws5_c00430{word-spacing:-17.352000px;}
.ws6_c00430{word-spacing:-17.250000px;}
.ws0_c00430{word-spacing:-15.750000px;}
.ws7_c00430{word-spacing:0.000000px;}
._1c_c00430{margin-left:-41.829000px;}
._13_c00430{margin-left:-22.821000px;}
._20_c00430{margin-left:-15.228000px;}
._1b_c00430{margin-left:-12.312000px;}
._6_c00430{margin-left:-10.530000px;}
._9_c00430{margin-left:-6.762000px;}
._4_c00430{margin-left:-4.698000px;}
._3_c00430{margin-left:-3.159000px;}
._2_c00430{margin-left:-1.944000px;}
._1_c00430{width:1.620000px;}
._0_c00430{width:2.997000px;}
._8_c00430{width:4.698000px;}
._b_c00430{width:6.195000px;}
._a_c00430{width:7.776000px;}
._15_c00430{width:9.024000px;}
._d_c00430{width:10.044000px;}
._17_c00430{width:11.490000px;}
._5_c00430{width:12.960000px;}
._10_c00430{width:14.142000px;}
._14_c00430{width:15.144000px;}
._e_c00430{width:16.524000px;}
._11_c00430{width:17.856000px;}
._16_c00430{width:19.143000px;}
._19_c00430{width:21.486000px;}
._1a_c00430{width:22.812000px;}
._18_c00430{width:24.198000px;}
._12_c00430{width:25.275000px;}
._f_c00430{width:29.769000px;}
._7_c00430{width:31.671000px;}
._1e_c00430{width:36.144000px;}
._21_c00430{width:47.871000px;}
._c_c00430{width:64.209000px;}
._1f_c00430{width:84.450000px;}
._1d_c00430{width:207.762000px;}
.fc2_c00430{color:transparent;}
.fc1_c00430{color:rgb(128,128,128);}
.fc0_c00430{color:rgb(0,0,0);}
.fs5_c00430{font-size:42.000000px;}
.fs4_c00430{font-size:48.000000px;}
.fs2_c00430{font-size:51.000000px;}
.fs3_c00430{font-size:60.000000px;}
.fs6_c00430{font-size:66.000000px;}
.fs1_c00430{font-size:69.000000px;}
.fs7_c00430{font-size:72.000000px;}
.fs0_c00430{font-size:81.000000px;}
.y0_c00430{bottom:0.000000px;}
.y25_c00430{bottom:3.105000px;}
.y24_c00430{bottom:7.228371px;}
.y23_c00430{bottom:55.665000px;}
.y22_c00430{bottom:75.915000px;}
.y21_c00430{bottom:99.615000px;}
.y20_c00430{bottom:124.215000px;}
.y1f_c00430{bottom:148.515000px;}
.y1e_c00430{bottom:172.815000px;}
.y1d_c00430{bottom:197.115000px;}
.y1c_c00430{bottom:223.215000px;}
.y1b_c00430{bottom:246.465000px;}
.y1a_c00430{bottom:270.765000px;}
.y19_c00430{bottom:295.065000px;}
.y18_c00430{bottom:318.765000px;}
.y17_c00430{bottom:343.365000px;}
.y16_c00430{bottom:367.965000px;}
.y15_c00430{bottom:391.965000px;}
.y14_c00430{bottom:416.565000px;}
.y13_c00430{bottom:440.415000px;}
.y12_c00430{bottom:464.865000px;}
.y11_c00430{bottom:489.015000px;}
.y10_c00430{bottom:512.715000px;}
.yf_c00430{bottom:537.315000px;}
.ye_c00430{bottom:560.265000px;}
.yd_c00430{bottom:583.965000px;}
.yc_c00430{bottom:607.815000px;}
.yb_c00430{bottom:631.815000px;}
.ya_c00430{bottom:655.815000px;}
.y9_c00430{bottom:678.765000px;}
.y8_c00430{bottom:702.765000px;}
.y7_c00430{bottom:729.465000px;}
.y6_c00430{bottom:751.665000px;}
.y5_c00430{bottom:775.215000px;}
.y4_c00430{bottom:800.865000px;}
.y3_c00430{bottom:823.515000px;}
.y2_c00430{bottom:854.565000px;}
.y1_c00430{bottom:878.565000px;}
.h9_c00430{height:13.200074px;}
.ha_c00430{height:43.804688px;}
.h5_c00430{height:50.028809px;}
.h4_c00430{height:61.670545px;}
.h7_c00430{height:72.312000px;}
.h2_c00430{height:79.497070px;}
.h8_c00430{height:84.269531px;}
.h3_c00430{height:87.361816px;}
.h6_c00430{height:91.160156px;}
.h0_c00430{height:989.025000px;}
.h1_c00430{height:989.250000px;}
.w1_c00430{width:104.875500px;}
.w0_c00430{width:672.000000px;}
.x0_c00430{left:0.000000px;}
.x2_c00430{left:29.250000px;}
.x7_c00430{left:34.500000px;}
.x1_c00430{left:45.600000px;}
.x4_c00430{left:46.950000px;}
.x3_c00430{left:48.600000px;}
.x5_c00430{left:49.650000px;}
.x9_c00430{left:52.350000px;}
.x8_c00430{left:53.400000px;}
.xb_c00430{left:57.150000px;}
.x6_c00430{left:75.900000px;}
.xa_c00430{left:81.300000px;}
.xd_c00430{left:287.814240px;}
.xc_c00430{left:514.650000px;}
@media print{
.v1_c00430{vertical-align:-10.666667pt;}
.v0_c00430{vertical-align:0.000000pt;}
.ls7_c00430{letter-spacing:-8.000000pt;}
.ls5_c00430{letter-spacing:0.000000pt;}
.ls2_c00430{letter-spacing:2.666667pt;}
.ls4_c00430{letter-spacing:2.800000pt;}
.ls6_c00430{letter-spacing:5.333333pt;}
.ls1_c00430{letter-spacing:5.546667pt;}
.ls0_c00430{letter-spacing:17.173333pt;}
.ls3_c00430{letter-spacing:20.266667pt;}
.ws4_c00430{word-spacing:-41.173333pt;}
.ws3_c00430{word-spacing:-33.472000pt;}
.ws2_c00430{word-spacing:-24.554667pt;}
.ws1_c00430{word-spacing:-18.000000pt;}
.ws5_c00430{word-spacing:-15.424000pt;}
.ws6_c00430{word-spacing:-15.333333pt;}
.ws0_c00430{word-spacing:-14.000000pt;}
.ws7_c00430{word-spacing:0.000000pt;}
._1c_c00430{margin-left:-37.181333pt;}
._13_c00430{margin-left:-20.285333pt;}
._20_c00430{margin-left:-13.536000pt;}
._1b_c00430{margin-left:-10.944000pt;}
._6_c00430{margin-left:-9.360000pt;}
._9_c00430{margin-left:-6.010667pt;}
._4_c00430{margin-left:-4.176000pt;}
._3_c00430{margin-left:-2.808000pt;}
._2_c00430{margin-left:-1.728000pt;}
._1_c00430{width:1.440000pt;}
._0_c00430{width:2.664000pt;}
._8_c00430{width:4.176000pt;}
._b_c00430{width:5.506667pt;}
._a_c00430{width:6.912000pt;}
._15_c00430{width:8.021333pt;}
._d_c00430{width:8.928000pt;}
._17_c00430{width:10.213333pt;}
._5_c00430{width:11.520000pt;}
._10_c00430{width:12.570667pt;}
._14_c00430{width:13.461333pt;}
._e_c00430{width:14.688000pt;}
._11_c00430{width:15.872000pt;}
._16_c00430{width:17.016000pt;}
._19_c00430{width:19.098667pt;}
._1a_c00430{width:20.277333pt;}
._18_c00430{width:21.509333pt;}
._12_c00430{width:22.466667pt;}
._f_c00430{width:26.461333pt;}
._7_c00430{width:28.152000pt;}
._1e_c00430{width:32.128000pt;}
._21_c00430{width:42.552000pt;}
._c_c00430{width:57.074667pt;}
._1f_c00430{width:75.066667pt;}
._1d_c00430{width:184.677333pt;}
.fs5_c00430{font-size:37.333333pt;}
.fs4_c00430{font-size:42.666667pt;}
.fs2_c00430{font-size:45.333333pt;}
.fs3_c00430{font-size:53.333333pt;}
.fs6_c00430{font-size:58.666667pt;}
.fs1_c00430{font-size:61.333333pt;}
.fs7_c00430{font-size:64.000000pt;}
.fs0_c00430{font-size:72.000000pt;}
.y0_c00430{bottom:0.000000pt;}
.y25_c00430{bottom:2.760000pt;}
.y24_c00430{bottom:6.425219pt;}
.y23_c00430{bottom:49.480000pt;}
.y22_c00430{bottom:67.480000pt;}
.y21_c00430{bottom:88.546667pt;}
.y20_c00430{bottom:110.413333pt;}
.y1f_c00430{bottom:132.013333pt;}
.y1e_c00430{bottom:153.613333pt;}
.y1d_c00430{bottom:175.213333pt;}
.y1c_c00430{bottom:198.413333pt;}
.y1b_c00430{bottom:219.080000pt;}
.y1a_c00430{bottom:240.680000pt;}
.y19_c00430{bottom:262.280000pt;}
.y18_c00430{bottom:283.346667pt;}
.y17_c00430{bottom:305.213333pt;}
.y16_c00430{bottom:327.080000pt;}
.y15_c00430{bottom:348.413333pt;}
.y14_c00430{bottom:370.280000pt;}
.y13_c00430{bottom:391.480000pt;}
.y12_c00430{bottom:413.213333pt;}
.y11_c00430{bottom:434.680000pt;}
.y10_c00430{bottom:455.746667pt;}
.yf_c00430{bottom:477.613333pt;}
.ye_c00430{bottom:498.013333pt;}
.yd_c00430{bottom:519.080000pt;}
.yc_c00430{bottom:540.280000pt;}
.yb_c00430{bottom:561.613333pt;}
.ya_c00430{bottom:582.946667pt;}
.y9_c00430{bottom:603.346667pt;}
.y8_c00430{bottom:624.680000pt;}
.y7_c00430{bottom:648.413333pt;}
.y6_c00430{bottom:668.146667pt;}
.y5_c00430{bottom:689.080000pt;}
.y4_c00430{bottom:711.880000pt;}
.y3_c00430{bottom:732.013333pt;}
.y2_c00430{bottom:759.613333pt;}
.y1_c00430{bottom:780.946667pt;}
.h9_c00430{height:11.733399pt;}
.ha_c00430{height:38.937500pt;}
.h5_c00430{height:44.470052pt;}
.h4_c00430{height:54.818262pt;}
.h7_c00430{height:64.277333pt;}
.h2_c00430{height:70.664062pt;}
.h8_c00430{height:74.906250pt;}
.h3_c00430{height:77.654948pt;}
.h6_c00430{height:81.031250pt;}
.h0_c00430{height:879.133333pt;}
.h1_c00430{height:879.333333pt;}
.w1_c00430{width:93.222667pt;}
.w0_c00430{width:597.333333pt;}
.x0_c00430{left:0.000000pt;}
.x2_c00430{left:26.000000pt;}
.x7_c00430{left:30.666667pt;}
.x1_c00430{left:40.533333pt;}
.x4_c00430{left:41.733333pt;}
.x3_c00430{left:43.200000pt;}
.x5_c00430{left:44.133333pt;}
.x9_c00430{left:46.533333pt;}
.x8_c00430{left:47.466667pt;}
.xb_c00430{left:50.800000pt;}
.x6_c00430{left:67.466667pt;}
.xa_c00430{left:72.266667pt;}
.xd_c00430{left:255.834880pt;}
.xc_c00430{left:457.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_2521beaca66259fc7d013b71.woff2')format("woff");}.ff1_c00431{font-family:ff1_c00431;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00431;src:url('chunks/assets/font_b8546a330eda5006759e09db.woff2')format("woff");}.ff2_c00431{font-family:ff2_c00431;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00431;src:url('chunks/assets/font_00a7d8295d3535913c124a9f.woff2')format("woff");}.ff3_c00431{font-family:ff3_c00431;line-height:1.437000;font-style:normal;font-weight:normal;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_e6b3f1136232e44dfe06bd2c.woff2')format("woff");}.ff4_c00431{font-family:ff4_c00431;line-height:1.437000;font-style:normal;font-weight:normal;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_76b0a3b0b1355a483cd53fa5.woff2')format("woff");}.ff5_c00431{font-family:ff5_c00431;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00431;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c00431{font-family:ff6_c00431;line-height:1.219238;font-style: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;}
.ls2_c00431{letter-spacing:0.000000px;}
.ls1_c00431{letter-spacing:21.600000px;}
.ls0_c00431{letter-spacing:39.000000px;}
.sc__c00431{text-shadow:none;}
.sc0_c00431{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00431{-webkit-text-stroke:0px transparent;}
.sc0_c00431{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00431{word-spacing:-59.184000px;}
.ws2_c00431{word-spacing:-45.000000px;}
.ws1_c00431{word-spacing:-20.250000px;}
.ws3_c00431{word-spacing:0.000000px;}
._3_c00431{margin-left:-14.742000px;}
._a_c00431{margin-left:-12.393000px;}
._1c_c00431{margin-left:-10.449000px;}
._10_c00431{margin-left:-8.586000px;}
._7_c00431{margin-left:-7.371000px;}
._11_c00431{margin-left:-5.913000px;}
._8_c00431{margin-left:-4.050000px;}
._d_c00431{margin-left:-2.592000px;}
._2_c00431{margin-left:-1.458000px;}
._5_c00431{width:1.458000px;}
._1_c00431{width:3.078000px;}
._1d_c00431{width:4.101000px;}
._0_c00431{width:5.103000px;}
._6_c00431{width:6.237000px;}
._9_c00431{width:7.290000px;}
._4_c00431{width:8.424000px;}
._18_c00431{width:9.426000px;}
._c_c00431{width:10.530000px;}
._14_c00431{width:11.664000px;}
._f_c00431{width:12.960000px;}
._12_c00431{width:14.904000px;}
._17_c00431{width:15.951000px;}
._13_c00431{width:17.334000px;}
._16_c00431{width:18.612000px;}
._19_c00431{width:23.355000px;}
._15_c00431{width:24.462000px;}
._1a_c00431{width:26.649000px;}
._e_c00431{width:108.402000px;}
._b_c00431{width:121.053000px;}
._1b_c00431{width:234.252000px;}
.fc2_c00431{color:transparent;}
.fc1_c00431{color:rgb(128,128,128);}
.fc0_c00431{color:rgb(0,0,0);}
.fs5_c00431{font-size:48.000000px;}
.fs2_c00431{font-size:57.000000px;}
.fs3_c00431{font-size:60.000000px;}
.fs1_c00431{font-size:72.000000px;}
.fs0_c00431{font-size:81.000000px;}
.fs4_c00431{font-size:90.000000px;}
.y0_c00431{bottom:0.000000px;}
.y23_c00431{bottom:3.105000px;}
.y22_c00431{bottom:7.228371px;}
.y21_c00431{bottom:35.565000px;}
.y20_c00431{bottom:107.715000px;}
.y1f_c00431{bottom:133.965000px;}
.y1e_c00431{bottom:158.265000px;}
.y1d_c00431{bottom:183.015000px;}
.y1c_c00431{bottom:206.565000px;}
.y1b_c00431{bottom:231.165000px;}
.y1a_c00431{bottom:255.615000px;}
.y19_c00431{bottom:280.215000px;}
.y18_c00431{bottom:304.815000px;}
.y17_c00431{bottom:328.515000px;}
.y16_c00431{bottom:352.815000px;}
.y15_c00431{bottom:377.115000px;}
.y14_c00431{bottom:402.315000px;}
.y13_c00431{bottom:425.715000px;}
.y12_c00431{bottom:449.565000px;}
.y11_c00431{bottom:473.865000px;}
.y10_c00431{bottom:497.565000px;}
.yf_c00431{bottom:521.565000px;}
.ye_c00431{bottom:545.415000px;}
.yd_c00431{bottom:569.715000px;}
.yc_c00431{bottom:594.015000px;}
.yb_c00431{bottom:618.315000px;}
.ya_c00431{bottom:642.315000px;}
.y9_c00431{bottom:666.615000px;}
.y8_c00431{bottom:690.315000px;}
.y7_c00431{bottom:714.465000px;}
.y6_c00431{bottom:737.865000px;}
.y5_c00431{bottom:762.765000px;}
.y4_c00431{bottom:787.065000px;}
.y3_c00431{bottom:813.165000px;}
.y2_c00431{bottom:835.665000px;}
.y1_c00431{bottom:859.365000px;}
.h5_c00431{height:13.200074px;}
.h6_c00431{height:43.804688px;}
.h2_c00431{height:79.497070px;}
.h3_c00431{height:84.269531px;}
.h4_c00431{height:88.286133px;}
.h0_c00431{height:963.375000px;}
.h1_c00431{height:963.750000px;}
.w1_c00431{width:104.875500px;}
.w0_c00431{width:651.750000px;}
.x0_c00431{left:0.000000px;}
.x3_c00431{left:26.700000px;}
.xa_c00431{left:33.450000px;}
.x9_c00431{left:34.800000px;}
.xb_c00431{left:37.200000px;}
.x2_c00431{left:95.550000px;}
.x1_c00431{left:118.500000px;}
.x4_c00431{left:120.150000px;}
.x5_c00431{left:121.800000px;}
.x6_c00431{left:123.300000px;}
.x7_c00431{left:124.500000px;}
.xc_c00431{left:125.550000px;}
.x8_c00431{left:126.900000px;}
.xd_c00431{left:127.950000px;}
.xe_c00431{left:150.600000px;}
.x10_c00431{left:277.689240px;}
.xf_c00431{left:579.450000px;}
@media print{
.v0_c00431{vertical-align:0.000000pt;}
.ls2_c00431{letter-spacing:0.000000pt;}
.ls1_c00431{letter-spacing:19.200000pt;}
.ls0_c00431{letter-spacing:34.666667pt;}
.ws0_c00431{word-spacing:-52.608000pt;}
.ws2_c00431{word-spacing:-40.000000pt;}
.ws1_c00431{word-spacing:-18.000000pt;}
.ws3_c00431{word-spacing:0.000000pt;}
._3_c00431{margin-left:-13.104000pt;}
._a_c00431{margin-left:-11.016000pt;}
._1c_c00431{margin-left:-9.288000pt;}
._10_c00431{margin-left:-7.632000pt;}
._7_c00431{margin-left:-6.552000pt;}
._11_c00431{margin-left:-5.256000pt;}
._8_c00431{margin-left:-3.600000pt;}
._d_c00431{margin-left:-2.304000pt;}
._2_c00431{margin-left:-1.296000pt;}
._5_c00431{width:1.296000pt;}
._1_c00431{width:2.736000pt;}
._1d_c00431{width:3.645333pt;}
._0_c00431{width:4.536000pt;}
._6_c00431{width:5.544000pt;}
._9_c00431{width:6.480000pt;}
._4_c00431{width:7.488000pt;}
._18_c00431{width:8.378667pt;}
._c_c00431{width:9.360000pt;}
._14_c00431{width:10.368000pt;}
._f_c00431{width:11.520000pt;}
._12_c00431{width:13.248000pt;}
._17_c00431{width:14.178667pt;}
._13_c00431{width:15.408000pt;}
._16_c00431{width:16.544000pt;}
._19_c00431{width:20.760000pt;}
._15_c00431{width:21.744000pt;}
._1a_c00431{width:23.688000pt;}
._e_c00431{width:96.357333pt;}
._b_c00431{width:107.602667pt;}
._1b_c00431{width:208.224000pt;}
.fs5_c00431{font-size:42.666667pt;}
.fs2_c00431{font-size:50.666667pt;}
.fs3_c00431{font-size:53.333333pt;}
.fs1_c00431{font-size:64.000000pt;}
.fs0_c00431{font-size:72.000000pt;}
.fs4_c00431{font-size:80.000000pt;}
.y0_c00431{bottom:0.000000pt;}
.y23_c00431{bottom:2.760000pt;}
.y22_c00431{bottom:6.425219pt;}
.y21_c00431{bottom:31.613333pt;}
.y20_c00431{bottom:95.746667pt;}
.y1f_c00431{bottom:119.080000pt;}
.y1e_c00431{bottom:140.680000pt;}
.y1d_c00431{bottom:162.680000pt;}
.y1c_c00431{bottom:183.613333pt;}
.y1b_c00431{bottom:205.480000pt;}
.y1a_c00431{bottom:227.213333pt;}
.y19_c00431{bottom:249.080000pt;}
.y18_c00431{bottom:270.946667pt;}
.y17_c00431{bottom:292.013333pt;}
.y16_c00431{bottom:313.613333pt;}
.y15_c00431{bottom:335.213333pt;}
.y14_c00431{bottom:357.613333pt;}
.y13_c00431{bottom:378.413333pt;}
.y12_c00431{bottom:399.613333pt;}
.y11_c00431{bottom:421.213333pt;}
.y10_c00431{bottom:442.280000pt;}
.yf_c00431{bottom:463.613333pt;}
.ye_c00431{bottom:484.813333pt;}
.yd_c00431{bottom:506.413333pt;}
.yc_c00431{bottom:528.013333pt;}
.yb_c00431{bottom:549.613333pt;}
.ya_c00431{bottom:570.946667pt;}
.y9_c00431{bottom:592.546667pt;}
.y8_c00431{bottom:613.613333pt;}
.y7_c00431{bottom:635.080000pt;}
.y6_c00431{bottom:655.880000pt;}
.y5_c00431{bottom:678.013333pt;}
.y4_c00431{bottom:699.613333pt;}
.y3_c00431{bottom:722.813333pt;}
.y2_c00431{bottom:742.813333pt;}
.y1_c00431{bottom:763.880000pt;}
.h5_c00431{height:11.733399pt;}
.h6_c00431{height:38.937500pt;}
.h2_c00431{height:70.664062pt;}
.h3_c00431{height:74.906250pt;}
.h4_c00431{height:78.476562pt;}
.h0_c00431{height:856.333333pt;}
.h1_c00431{height:856.666667pt;}
.w1_c00431{width:93.222667pt;}
.w0_c00431{width:579.333333pt;}
.x0_c00431{left:0.000000pt;}
.x3_c00431{left:23.733333pt;}
.xa_c00431{left:29.733333pt;}
.x9_c00431{left:30.933333pt;}
.xb_c00431{left:33.066667pt;}
.x2_c00431{left:84.933333pt;}
.x1_c00431{left:105.333333pt;}
.x4_c00431{left:106.800000pt;}
.x5_c00431{left:108.266667pt;}
.x6_c00431{left:109.600000pt;}
.x7_c00431{left:110.666667pt;}
.xc_c00431{left:111.600000pt;}
.x8_c00431{left:112.800000pt;}
.xd_c00431{left:113.733333pt;}
.xe_c00431{left:133.866667pt;}
.x10_c00431{left:246.834880pt;}
.xf_c00431{left:515.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_515d3d5096062ddbd2301fa6.woff2')format("woff");}.ff1_c00432{font-family:ff1_c00432;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00432;src:url('chunks/assets/font_c81b867c0c7abba3dcbc18a4.woff2')format("woff");}.ff2_c00432{font-family:ff2_c00432;line-height:1.437000;font-style:normal;font-weight:normal;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_93b0a1ea681a36db7b4cce5b.woff2')format("woff");}.ff3_c00432{font-family:ff3_c00432;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00432;src:url('chunks/assets/font_4af0892c35372ba25e9a705c.woff2')format("woff");}.ff4_c00432{font-family:ff4_c00432;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00432;src:url('chunks/assets/font_8bcf512bd6bfccb15f5a8749.woff2')format("woff");}.ff5_c00432{font-family:ff5_c00432;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00432;src:url('chunks/assets/font_8a327ac5ef8c2df52f4976bf.woff2')format("woff");}.ff6_c00432{font-family:ff6_c00432;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00432;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c00432{font-family:ff7_c00432;line-height:1.219238;font-style: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;}
.ls0_c00432{letter-spacing:0.000000px;}
.ls2_c00432{letter-spacing:3.000000px;}
.ls1_c00432{letter-spacing:15.000000px;}
.sc__c00432{text-shadow:none;}
.sc0_c00432{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00432{-webkit-text-stroke:0px transparent;}
.sc0_c00432{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00432{word-spacing:-94.356000px;}
.ws1_c00432{word-spacing:-36.000000px;}
.ws2_c00432{word-spacing:-17.352000px;}
.ws3_c00432{word-spacing:0.000000px;}
._1c_c00432{margin-left:-41.370000px;}
._1f_c00432{margin-left:-27.720000px;}
._19_c00432{margin-left:-25.935000px;}
._24_c00432{margin-left:-24.120000px;}
._29_c00432{margin-left:-21.690000px;}
._e_c00432{margin-left:-20.304000px;}
._2e_c00432{margin-left:-19.008000px;}
._30_c00432{margin-left:-17.856000px;}
._11_c00432{margin-left:-16.266000px;}
._21_c00432{margin-left:-14.613000px;}
._23_c00432{margin-left:-13.572000px;}
._f_c00432{margin-left:-10.944000px;}
._22_c00432{margin-left:-9.927000px;}
._3_c00432{margin-left:-8.811000px;}
._0_c00432{margin-left:-7.722000px;}
._13_c00432{margin-left:-6.459000px;}
._15_c00432{margin-left:-5.319000px;}
._2_c00432{margin-left:-4.158000px;}
._14_c00432{margin-left:-3.069000px;}
._d_c00432{margin-left:-1.944000px;}
._10_c00432{width:1.080000px;}
._6_c00432{width:2.448000px;}
._8_c00432{width:4.104000px;}
._7_c00432{width:5.400000px;}
._b_c00432{width:7.200000px;}
._9_c00432{width:8.496000px;}
._c_c00432{width:10.368000px;}
._a_c00432{width:11.592000px;}
._16_c00432{width:13.482000px;}
._18_c00432{width:14.814000px;}
._17_c00432{width:16.848000px;}
._27_c00432{width:18.279000px;}
._12_c00432{width:20.448000px;}
._1_c00432{width:21.483000px;}
._2c_c00432{width:23.877000px;}
._4_c00432{width:27.027000px;}
._2f_c00432{width:32.193000px;}
._28_c00432{width:33.741000px;}
._25_c00432{width:35.856000px;}
._1e_c00432{width:40.674000px;}
._2d_c00432{width:43.143000px;}
._32_c00432{width:45.201000px;}
._1b_c00432{width:97.044000px;}
._31_c00432{width:126.240000px;}
._1d_c00432{width:129.465000px;}
._26_c00432{width:132.249000px;}
._2a_c00432{width:198.459000px;}
._2b_c00432{width:268.170000px;}
._33_c00432{width:290.727000px;}
._5_c00432{width:293.589000px;}
._1a_c00432{width:460.320000px;}
._20_c00432{width:473.865000px;}
.fc2_c00432{color:transparent;}
.fc1_c00432{color:rgb(128,128,128);}
.fc0_c00432{color:rgb(0,0,0);}
.fs7_c00432{font-size:48.000000px;}
.fs3_c00432{font-size:66.000000px;}
.fs2_c00432{font-size:72.000000px;}
.fs6_c00432{font-size:78.000000px;}
.fs4_c00432{font-size:81.000000px;}
.fs0_c00432{font-size:99.000000px;}
.fs1_c00432{font-size:102.000000px;}
.fs5_c00432{font-size:105.000000px;}
.y0_c00432{bottom:0.000000px;}
.y26_c00432{bottom:3.105000px;}
.y25_c00432{bottom:7.228363px;}
.y24_c00432{bottom:48.900000px;}
.y23_c00432{bottom:73.200000px;}
.y22_c00432{bottom:98.850000px;}
.y21_c00432{bottom:123.600000px;}
.y20_c00432{bottom:148.500000px;}
.y1f_c00432{bottom:173.400000px;}
.y1e_c00432{bottom:198.150000px;}
.y1d_c00432{bottom:223.350000px;}
.y1c_c00432{bottom:247.350000px;}
.y1b_c00432{bottom:272.100000px;}
.y1a_c00432{bottom:297.000000px;}
.y19_c00432{bottom:321.300000px;}
.y18_c00432{bottom:345.600000px;}
.y17_c00432{bottom:370.350000px;}
.y16_c00432{bottom:394.200000px;}
.y15_c00432{bottom:418.500000px;}
.y14_c00432{bottom:443.550000px;}
.y13_c00432{bottom:467.100000px;}
.y12_c00432{bottom:492.450000px;}
.y11_c00432{bottom:516.150000px;}
.y10_c00432{bottom:540.450000px;}
.yf_c00432{bottom:565.950000px;}
.ye_c00432{bottom:588.000000px;}
.yd_c00432{bottom:612.300000px;}
.yc_c00432{bottom:636.600000px;}
.yb_c00432{bottom:664.650000px;}
.ya_c00432{bottom:686.550000px;}
.y9_c00432{bottom:696.900000px;}
.y8_c00432{bottom:710.850000px;}
.y7_c00432{bottom:737.100000px;}
.y6_c00432{bottom:760.050000px;}
.y5_c00432{bottom:784.650000px;}
.y4_c00432{bottom:818.400000px;}
.y3_c00432{bottom:848.850000px;}
.y2_c00432{bottom:877.200000px;}
.y1_c00432{bottom:912.600000px;}
.h8_c00432{height:13.200074px;}
.h9_c00432{height:43.804688px;}
.h5_c00432{height:79.497070px;}
.h4_c00432{height:84.269531px;}
.h3_c00432{height:91.160156px;}
.h7_c00432{height:98.756836px;}
.h6_c00432{height:105.820312px;}
.h2_c00432{height:115.870605px;}
.h0_c00432{height:980.100000px;}
.h1_c00432{height:980.250000px;}
.w2_c00432{width:104.875500px;}
.w0_c00432{width:665.850000px;}
.w1_c00432{width:666.000000px;}
.x0_c00432{left:0.000000px;}
.xb_c00432{left:31.800000px;}
.x2_c00432{left:47.250000px;}
.xd_c00432{left:49.350000px;}
.xa_c00432{left:52.350000px;}
.xc_c00432{left:53.400000px;}
.x3_c00432{left:122.250000px;}
.x9_c00432{left:183.900000px;}
.x8_c00432{left:185.400000px;}
.x6_c00432{left:187.050000px;}
.x5_c00432{left:189.300000px;}
.x7_c00432{left:196.050000px;}
.x1_c00432{left:223.650000px;}
.x4_c00432{left:235.350000px;}
.xf_c00432{left:284.739258px;}
.xe_c00432{left:384.450000px;}
@media print{
.v0_c00432{vertical-align:0.000000pt;}
.ls0_c00432{letter-spacing:0.000000pt;}
.ls2_c00432{letter-spacing:2.666667pt;}
.ls1_c00432{letter-spacing:13.333333pt;}
.ws0_c00432{word-spacing:-83.872000pt;}
.ws1_c00432{word-spacing:-32.000000pt;}
.ws2_c00432{word-spacing:-15.424000pt;}
.ws3_c00432{word-spacing:0.000000pt;}
._1c_c00432{margin-left:-36.773333pt;}
._1f_c00432{margin-left:-24.640000pt;}
._19_c00432{margin-left:-23.053333pt;}
._24_c00432{margin-left:-21.440000pt;}
._29_c00432{margin-left:-19.280000pt;}
._e_c00432{margin-left:-18.048000pt;}
._2e_c00432{margin-left:-16.896000pt;}
._30_c00432{margin-left:-15.872000pt;}
._11_c00432{margin-left:-14.458667pt;}
._21_c00432{margin-left:-12.989333pt;}
._23_c00432{margin-left:-12.064000pt;}
._f_c00432{margin-left:-9.728000pt;}
._22_c00432{margin-left:-8.824000pt;}
._3_c00432{margin-left:-7.832000pt;}
._0_c00432{margin-left:-6.864000pt;}
._13_c00432{margin-left:-5.741333pt;}
._15_c00432{margin-left:-4.728000pt;}
._2_c00432{margin-left:-3.696000pt;}
._14_c00432{margin-left:-2.728000pt;}
._d_c00432{margin-left:-1.728000pt;}
._10_c00432{width:0.960000pt;}
._6_c00432{width:2.176000pt;}
._8_c00432{width:3.648000pt;}
._7_c00432{width:4.800000pt;}
._b_c00432{width:6.400000pt;}
._9_c00432{width:7.552000pt;}
._c_c00432{width:9.216000pt;}
._a_c00432{width:10.304000pt;}
._16_c00432{width:11.984000pt;}
._18_c00432{width:13.168000pt;}
._17_c00432{width:14.976000pt;}
._27_c00432{width:16.248000pt;}
._12_c00432{width:18.176000pt;}
._1_c00432{width:19.096000pt;}
._2c_c00432{width:21.224000pt;}
._4_c00432{width:24.024000pt;}
._2f_c00432{width:28.616000pt;}
._28_c00432{width:29.992000pt;}
._25_c00432{width:31.872000pt;}
._1e_c00432{width:36.154667pt;}
._2d_c00432{width:38.349333pt;}
._32_c00432{width:40.178667pt;}
._1b_c00432{width:86.261333pt;}
._31_c00432{width:112.213333pt;}
._1d_c00432{width:115.080000pt;}
._26_c00432{width:117.554667pt;}
._2a_c00432{width:176.408000pt;}
._2b_c00432{width:238.373333pt;}
._33_c00432{width:258.424000pt;}
._5_c00432{width:260.968000pt;}
._1a_c00432{width:409.173333pt;}
._20_c00432{width:421.213333pt;}
.fs7_c00432{font-size:42.666667pt;}
.fs3_c00432{font-size:58.666667pt;}
.fs2_c00432{font-size:64.000000pt;}
.fs6_c00432{font-size:69.333333pt;}
.fs4_c00432{font-size:72.000000pt;}
.fs0_c00432{font-size:88.000000pt;}
.fs1_c00432{font-size:90.666667pt;}
.fs5_c00432{font-size:93.333333pt;}
.y0_c00432{bottom:0.000000pt;}
.y26_c00432{bottom:2.760000pt;}
.y25_c00432{bottom:6.425212pt;}
.y24_c00432{bottom:43.466667pt;}
.y23_c00432{bottom:65.066667pt;}
.y22_c00432{bottom:87.866667pt;}
.y21_c00432{bottom:109.866667pt;}
.y20_c00432{bottom:132.000000pt;}
.y1f_c00432{bottom:154.133333pt;}
.y1e_c00432{bottom:176.133333pt;}
.y1d_c00432{bottom:198.533333pt;}
.y1c_c00432{bottom:219.866667pt;}
.y1b_c00432{bottom:241.866667pt;}
.y1a_c00432{bottom:264.000000pt;}
.y19_c00432{bottom:285.600000pt;}
.y18_c00432{bottom:307.200000pt;}
.y17_c00432{bottom:329.200000pt;}
.y16_c00432{bottom:350.400000pt;}
.y15_c00432{bottom:372.000000pt;}
.y14_c00432{bottom:394.266667pt;}
.y13_c00432{bottom:415.200000pt;}
.y12_c00432{bottom:437.733333pt;}
.y11_c00432{bottom:458.800000pt;}
.y10_c00432{bottom:480.400000pt;}
.yf_c00432{bottom:503.066667pt;}
.ye_c00432{bottom:522.666667pt;}
.yd_c00432{bottom:544.266667pt;}
.yc_c00432{bottom:565.866667pt;}
.yb_c00432{bottom:590.800000pt;}
.ya_c00432{bottom:610.266667pt;}
.y9_c00432{bottom:619.466667pt;}
.y8_c00432{bottom:631.866667pt;}
.y7_c00432{bottom:655.200000pt;}
.y6_c00432{bottom:675.600000pt;}
.y5_c00432{bottom:697.466667pt;}
.y4_c00432{bottom:727.466667pt;}
.y3_c00432{bottom:754.533333pt;}
.y2_c00432{bottom:779.733333pt;}
.y1_c00432{bottom:811.200000pt;}
.h8_c00432{height:11.733399pt;}
.h9_c00432{height:38.937500pt;}
.h5_c00432{height:70.664062pt;}
.h4_c00432{height:74.906250pt;}
.h3_c00432{height:81.031250pt;}
.h7_c00432{height:87.783854pt;}
.h6_c00432{height:94.062500pt;}
.h2_c00432{height:102.996094pt;}
.h0_c00432{height:871.200000pt;}
.h1_c00432{height:871.333333pt;}
.w2_c00432{width:93.222667pt;}
.w0_c00432{width:591.866667pt;}
.w1_c00432{width:592.000000pt;}
.x0_c00432{left:0.000000pt;}
.xb_c00432{left:28.266667pt;}
.x2_c00432{left:42.000000pt;}
.xd_c00432{left:43.866667pt;}
.xa_c00432{left:46.533333pt;}
.xc_c00432{left:47.466667pt;}
.x3_c00432{left:108.666667pt;}
.x9_c00432{left:163.466667pt;}
.x8_c00432{left:164.800000pt;}
.x6_c00432{left:166.266667pt;}
.x5_c00432{left:168.266667pt;}
.x7_c00432{left:174.266667pt;}
.x1_c00432{left:198.800000pt;}
.x4_c00432{left:209.200000pt;}
.xf_c00432{left:253.101563pt;}
.xe_c00432{left:341.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_9a3bc7f204928f625886d448.woff2')format("woff");}.ff1_c00433{font-family:ff1_c00433;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00433;src:url('chunks/assets/font_8c856f36c5ac3189d8227032.woff2')format("woff");}.ff2_c00433{font-family:ff2_c00433;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00433;src:url('chunks/assets/font_cb1d4371c89aa4d880d40948.woff2')format("woff");}.ff3_c00433{font-family:ff3_c00433;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00433;src:url('chunks/assets/font_9e71f414d5034bc8aaeb0220.woff2')format("woff");}.ff4_c00433{font-family:ff4_c00433;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00433;src:url('chunks/assets/font_d407ac3f22f8de8f28c79ff4.woff2')format("woff");}.ff5_c00433{font-family:ff5_c00433;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00433;src:url('chunks/assets/font_36dc446d310f5bae23299c5e.woff2')format("woff");}.ff6_c00433{font-family:ff6_c00433;line-height:1.401855;font-style:normal;font-weight: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_c00433;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c00433{font-family:ff7_c00433;line-height:1.219238;font-style: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;}
.ls2_c00433{letter-spacing:0.000000px;}
.ls4_c00433{letter-spacing:3.000000px;}
.ls0_c00433{letter-spacing:5.100000px;}
.ls3_c00433{letter-spacing:9.000000px;}
.ls1_c00433{letter-spacing:387.186000px;}
.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:-76.686000px;}
.ws3_c00433{word-spacing:-29.700000px;}
.ws1_c00433{word-spacing:-20.250000px;}
.ws0_c00433{word-spacing:-17.352000px;}
.ws4_c00433{word-spacing:0.000000px;}
._22_c00433{margin-left:-43.092000px;}
._1c_c00433{margin-left:-24.219000px;}
._d_c00433{margin-left:-21.951000px;}
._15_c00433{margin-left:-18.873000px;}
._18_c00433{margin-left:-17.739000px;}
._1b_c00433{margin-left:-15.633000px;}
._11_c00433{margin-left:-14.337000px;}
._1e_c00433{margin-left:-13.113000px;}
._14_c00433{margin-left:-11.025000px;}
._f_c00433{margin-left:-9.558000px;}
._12_c00433{margin-left:-7.452000px;}
._3_c00433{margin-left:-6.318000px;}
._16_c00433{margin-left:-4.860000px;}
._7_c00433{margin-left:-3.402000px;}
._1_c00433{margin-left:-1.377000px;}
._2_c00433{width:1.539000px;}
._4_c00433{width:3.483000px;}
._8_c00433{width:5.184000px;}
._0_c00433{width:6.318000px;}
._6_c00433{width:8.181000px;}
._9_c00433{width:10.206000px;}
._c_c00433{width:11.745000px;}
._5_c00433{width:12.879000px;}
._17_c00433{width:14.256000px;}
._a_c00433{width:15.633000px;}
._b_c00433{width:17.415000px;}
._13_c00433{width:18.549000px;}
._10_c00433{width:22.437000px;}
._1f_c00433{width:23.535000px;}
._21_c00433{width:25.389000px;}
._e_c00433{width:43.011000px;}
._25_c00433{width:44.769000px;}
._1a_c00433{width:138.222000px;}
._23_c00433{width:163.968000px;}
._20_c00433{width:167.994000px;}
._19_c00433{width:185.940000px;}
._1d_c00433{width:199.074000px;}
._26_c00433{width:234.900000px;}
._24_c00433{width:283.950000px;}
._27_c00433{width:1633.275000px;}
.fc2_c00433{color:transparent;}
.fc1_c00433{color:rgb(128,128,128);}
.fc0_c00433{color:rgb(0,0,0);}
.fs5_c00433{font-size:48.000000px;}
.fs4_c00433{font-size:54.000000px;}
.fs1_c00433{font-size:72.000000px;}
.fs0_c00433{font-size:81.000000px;}
.fs2_c00433{font-size:84.000000px;}
.fs3_c00433{font-size:87.000000px;}
.y0_c00433{bottom:0.000000px;}
.y25_c00433{bottom:3.105000px;}
.y24_c00433{bottom:7.228371px;}
.y23_c00433{bottom:48.015000px;}
.y22_c00433{bottom:71.565000px;}
.y21_c00433{bottom:96.315000px;}
.y20_c00433{bottom:122.565000px;}
.y1f_c00433{bottom:146.565000px;}
.y1e_c00433{bottom:171.915000px;}
.y1d_c00433{bottom:196.815000px;}
.y1c_c00433{bottom:221.715000px;}
.y1b_c00433{bottom:246.465000px;}
.y1a_c00433{bottom:270.765000px;}
.y19_c00433{bottom:295.365000px;}
.y18_c00433{bottom:320.265000px;}
.y17_c00433{bottom:344.565000px;}
.y16_c00433{bottom:367.965000px;}
.y15_c00433{bottom:393.615000px;}
.y14_c00433{bottom:418.215000px;}
.y13_c00433{bottom:442.815000px;}
.y12_c00433{bottom:467.415000px;}
.y11_c00433{bottom:492.165000px;}
.y10_c00433{bottom:515.715000px;}
.yf_c00433{bottom:539.715000px;}
.ye_c00433{bottom:564.015000px;}
.yd_c00433{bottom:588.615000px;}
.yc_c00433{bottom:612.315000px;}
.yb_c00433{bottom:637.515000px;}
.ya_c00433{bottom:662.265000px;}
.y9_c00433{bottom:686.565000px;}
.y8_c00433{bottom:710.865000px;}
.y7_c00433{bottom:735.465000px;}
.y6_c00433{bottom:760.065000px;}
.y5_c00433{bottom:784.365000px;}
.y4_c00433{bottom:808.665000px;}
.y3_c00433{bottom:832.965000px;}
.y2_c00433{bottom:857.565000px;}
.y1_c00433{bottom:882.015000px;}
.h6_c00433{height:13.200074px;}
.h7_c00433{height:43.804688px;}
.h2_c00433{height:79.497070px;}
.h3_c00433{height:84.269531px;}
.h4_c00433{height:91.160156px;}
.h5_c00433{height:91.176000px;}
.h1_c00433{height:986.250000px;}
.h0_c00433{height:986.325000px;}
.w2_c00433{width:104.875500px;}
.w0_c00433{width:667.425000px;}
.w1_c00433{width:667.500000px;}
.x0_c00433{left:0.000000px;}
.xe_c00433{left:15.450000px;}
.xf_c00433{left:17.250000px;}
.x8_c00433{left:33.000000px;}
.xd_c00433{left:37.350000px;}
.x10_c00433{left:48.300000px;}
.x7_c00433{left:54.000000px;}
.xa_c00433{left:61.800000px;}
.xc_c00433{left:108.300000px;}
.x9_c00433{left:112.050000px;}
.x6_c00433{left:114.450000px;}
.x4_c00433{left:116.400000px;}
.x5_c00433{left:117.450000px;}
.x11_c00433{left:123.150000px;}
.x1_c00433{left:124.500000px;}
.x2_c00433{left:125.850000px;}
.x3_c00433{left:127.350000px;}
.xb_c00433{left:137.700000px;}
.x12_c00433{left:285.526749px;}
@media print{
.v0_c00433{vertical-align:0.000000pt;}
.ls2_c00433{letter-spacing:0.000000pt;}
.ls4_c00433{letter-spacing:2.666667pt;}
.ls0_c00433{letter-spacing:4.533333pt;}
.ls3_c00433{letter-spacing:8.000000pt;}
.ls1_c00433{letter-spacing:344.165333pt;}
.ws2_c00433{word-spacing:-68.165333pt;}
.ws3_c00433{word-spacing:-26.400000pt;}
.ws1_c00433{word-spacing:-18.000000pt;}
.ws0_c00433{word-spacing:-15.424000pt;}
.ws4_c00433{word-spacing:0.000000pt;}
._22_c00433{margin-left:-38.304000pt;}
._1c_c00433{margin-left:-21.528000pt;}
._d_c00433{margin-left:-19.512000pt;}
._15_c00433{margin-left:-16.776000pt;}
._18_c00433{margin-left:-15.768000pt;}
._1b_c00433{margin-left:-13.896000pt;}
._11_c00433{margin-left:-12.744000pt;}
._1e_c00433{margin-left:-11.656000pt;}
._14_c00433{margin-left:-9.800000pt;}
._f_c00433{margin-left:-8.496000pt;}
._12_c00433{margin-left:-6.624000pt;}
._3_c00433{margin-left:-5.616000pt;}
._16_c00433{margin-left:-4.320000pt;}
._7_c00433{margin-left:-3.024000pt;}
._1_c00433{margin-left:-1.224000pt;}
._2_c00433{width:1.368000pt;}
._4_c00433{width:3.096000pt;}
._8_c00433{width:4.608000pt;}
._0_c00433{width:5.616000pt;}
._6_c00433{width:7.272000pt;}
._9_c00433{width:9.072000pt;}
._c_c00433{width:10.440000pt;}
._5_c00433{width:11.448000pt;}
._17_c00433{width:12.672000pt;}
._a_c00433{width:13.896000pt;}
._b_c00433{width:15.480000pt;}
._13_c00433{width:16.488000pt;}
._10_c00433{width:19.944000pt;}
._1f_c00433{width:20.920000pt;}
._21_c00433{width:22.568000pt;}
._e_c00433{width:38.232000pt;}
._25_c00433{width:39.794667pt;}
._1a_c00433{width:122.864000pt;}
._23_c00433{width:145.749333pt;}
._20_c00433{width:149.328000pt;}
._19_c00433{width:165.280000pt;}
._1d_c00433{width:176.954667pt;}
._26_c00433{width:208.800000pt;}
._24_c00433{width:252.400000pt;}
._27_c00433{width:1451.800000pt;}
.fs5_c00433{font-size:42.666667pt;}
.fs4_c00433{font-size:48.000000pt;}
.fs1_c00433{font-size:64.000000pt;}
.fs0_c00433{font-size:72.000000pt;}
.fs2_c00433{font-size:74.666667pt;}
.fs3_c00433{font-size:77.333333pt;}
.y0_c00433{bottom:0.000000pt;}
.y25_c00433{bottom:2.760000pt;}
.y24_c00433{bottom:6.425219pt;}
.y23_c00433{bottom:42.680000pt;}
.y22_c00433{bottom:63.613333pt;}
.y21_c00433{bottom:85.613333pt;}
.y20_c00433{bottom:108.946667pt;}
.y1f_c00433{bottom:130.280000pt;}
.y1e_c00433{bottom:152.813333pt;}
.y1d_c00433{bottom:174.946667pt;}
.y1c_c00433{bottom:197.080000pt;}
.y1b_c00433{bottom:219.080000pt;}
.y1a_c00433{bottom:240.680000pt;}
.y19_c00433{bottom:262.546667pt;}
.y18_c00433{bottom:284.680000pt;}
.y17_c00433{bottom:306.280000pt;}
.y16_c00433{bottom:327.080000pt;}
.y15_c00433{bottom:349.880000pt;}
.y14_c00433{bottom:371.746667pt;}
.y13_c00433{bottom:393.613333pt;}
.y12_c00433{bottom:415.480000pt;}
.y11_c00433{bottom:437.480000pt;}
.y10_c00433{bottom:458.413333pt;}
.yf_c00433{bottom:479.746667pt;}
.ye_c00433{bottom:501.346667pt;}
.yd_c00433{bottom:523.213333pt;}
.yc_c00433{bottom:544.280000pt;}
.yb_c00433{bottom:566.680000pt;}
.ya_c00433{bottom:588.680000pt;}
.y9_c00433{bottom:610.280000pt;}
.y8_c00433{bottom:631.880000pt;}
.y7_c00433{bottom:653.746667pt;}
.y6_c00433{bottom:675.613333pt;}
.y5_c00433{bottom:697.213333pt;}
.y4_c00433{bottom:718.813333pt;}
.y3_c00433{bottom:740.413333pt;}
.y2_c00433{bottom:762.280000pt;}
.y1_c00433{bottom:784.013333pt;}
.h6_c00433{height:11.733399pt;}
.h7_c00433{height:38.937500pt;}
.h2_c00433{height:70.664062pt;}
.h3_c00433{height:74.906250pt;}
.h4_c00433{height:81.031250pt;}
.h5_c00433{height:81.045333pt;}
.h1_c00433{height:876.666667pt;}
.h0_c00433{height:876.733333pt;}
.w2_c00433{width:93.222667pt;}
.w0_c00433{width:593.266667pt;}
.w1_c00433{width:593.333333pt;}
.x0_c00433{left:0.000000pt;}
.xe_c00433{left:13.733333pt;}
.xf_c00433{left:15.333333pt;}
.x8_c00433{left:29.333333pt;}
.xd_c00433{left:33.200000pt;}
.x10_c00433{left:42.933333pt;}
.x7_c00433{left:48.000000pt;}
.xa_c00433{left:54.933333pt;}
.xc_c00433{left:96.266667pt;}
.x9_c00433{left:99.600000pt;}
.x6_c00433{left:101.733333pt;}
.x4_c00433{left:103.466667pt;}
.x5_c00433{left:104.400000pt;}
.x11_c00433{left:109.466667pt;}
.x1_c00433{left:110.666667pt;}
.x2_c00433{left:111.866667pt;}
.x3_c00433{left:113.200000pt;}
.xb_c00433{left:122.400000pt;}
.x12_c00433{left:253.801554pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7a31917938019c3fb068d933.woff2')format("woff");}.ff1_c00434{font-family:ff1_c00434;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00434;src:url('chunks/assets/font_0a4d764ec50b4aa9c5e2bdb6.woff2')format("woff");}.ff2_c00434{font-family:ff2_c00434;line-height:1.437000;font-style:normal;font-weight:normal;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_22d69441d32ee3a12d9cdde0.woff2')format("woff");}.ff3_c00434{font-family:ff3_c00434;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00434;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff4_c00434{font-family:ff4_c00434;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00434;src:url('chunks/assets/font_70e3a564e71cde5a99d0ee42.woff2')format("woff");}.ff5_c00434{font-family:ff5_c00434;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00434;src:url('chunks/assets/font_42bc5a86c7f11b2d86d1cccb.woff2')format("woff");}.ff6_c00434{font-family:ff6_c00434;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00434;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c00434{font-family:ff7_c00434;line-height:1.219238;font-style: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;}
.ls5_c00434{letter-spacing:-3.000000px;}
.ls3_c00434{letter-spacing:0.000000px;}
.ls2_c00434{letter-spacing:4.632000px;}
.ls4_c00434{letter-spacing:9.000000px;}
.ls0_c00434{letter-spacing:12.186000px;}
.ls1_c00434{letter-spacing:20.586000px;}
.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;}
}
.ws1_c00434{word-spacing:-30.750000px;}
.ws0_c00434{word-spacing:-20.250000px;}
.ws2_c00434{word-spacing:0.000000px;}
._f_c00434{margin-left:-30.534000px;}
._12_c00434{margin-left:-23.004000px;}
._13_c00434{margin-left:-21.789000px;}
._18_c00434{margin-left:-14.733000px;}
._16_c00434{margin-left:-12.675000px;}
._e_c00434{margin-left:-10.287000px;}
._19_c00434{margin-left:-8.853000px;}
._11_c00434{margin-left:-7.452000px;}
._1b_c00434{margin-left:-6.318000px;}
._4_c00434{margin-left:-5.265000px;}
._1_c00434{margin-left:-3.321000px;}
._6_c00434{margin-left:-1.944000px;}
._0_c00434{width:1.782000px;}
._2_c00434{width:2.997000px;}
._3_c00434{width:4.536000px;}
._5_c00434{width:5.751000px;}
._8_c00434{width:6.885000px;}
._7_c00434{width:8.019000px;}
._9_c00434{width:9.639000px;}
._b_c00434{width:10.854000px;}
._14_c00434{width:11.988000px;}
._d_c00434{width:13.041000px;}
._c_c00434{width:15.147000px;}
._1a_c00434{width:16.200000px;}
._15_c00434{width:17.739000px;}
._a_c00434{width:32.562000px;}
._1c_c00434{width:35.382000px;}
._17_c00434{width:52.176000px;}
._10_c00434{width:61.671000px;}
._1d_c00434{width:291.762000px;}
.fc2_c00434{color:transparent;}
.fc1_c00434{color:rgb(128,128,128);}
.fc0_c00434{color:rgb(0,0,0);}
.fs5_c00434{font-size:48.000000px;}
.fs3_c00434{font-size:54.000000px;}
.fs2_c00434{font-size:60.000000px;}
.fs4_c00434{font-size:72.000000px;}
.fs0_c00434{font-size:81.000000px;}
.fs1_c00434{font-size:87.000000px;}
.y0_c00434{bottom:0.000000px;}
.y25_c00434{bottom:3.105000px;}
.y24_c00434{bottom:7.228371px;}
.y23_c00434{bottom:49.365000px;}
.y22_c00434{bottom:75.315000px;}
.y21_c00434{bottom:100.665000px;}
.y20_c00434{bottom:124.515000px;}
.y1f_c00434{bottom:150.315000px;}
.y1e_c00434{bottom:174.915000px;}
.y1d_c00434{bottom:200.115000px;}
.y1c_c00434{bottom:224.865000px;}
.y1b_c00434{bottom:248.715000px;}
.y1a_c00434{bottom:273.465000px;}
.y19_c00434{bottom:298.365000px;}
.y18_c00434{bottom:323.115000px;}
.y17_c00434{bottom:347.415000px;}
.y16_c00434{bottom:372.315000px;}
.y15_c00434{bottom:396.315000px;}
.y14_c00434{bottom:421.215000px;}
.y13_c00434{bottom:445.515000px;}
.y12_c00434{bottom:469.215000px;}
.y11_c00434{bottom:494.565000px;}
.y10_c00434{bottom:518.715000px;}
.yf_c00434{bottom:543.165000px;}
.ye_c00434{bottom:567.015000px;}
.yd_c00434{bottom:591.315000px;}
.yc_c00434{bottom:616.065000px;}
.yb_c00434{bottom:639.915000px;}
.ya_c00434{bottom:666.015000px;}
.y9_c00434{bottom:689.865000px;}
.y8_c00434{bottom:714.165000px;}
.y7_c00434{bottom:739.215000px;}
.y6_c00434{bottom:763.065000px;}
.y5_c00434{bottom:787.815000px;}
.y4_c00434{bottom:813.015000px;}
.y3_c00434{bottom:837.015000px;}
.y2_c00434{bottom:861.015000px;}
.y1_c00434{bottom:885.615000px;}
.h7_c00434{height:13.200074px;}
.h8_c00434{height:43.804688px;}
.h5_c00434{height:65.040000px;}
.h2_c00434{height:79.497070px;}
.h6_c00434{height:84.269531px;}
.h4_c00434{height:91.160156px;}
.h3_c00434{height:91.176000px;}
.h0_c00434{height:989.025000px;}
.h1_c00434{height:989.250000px;}
.w1_c00434{width:104.875500px;}
.w0_c00434{width:672.000000px;}
.x0_c00434{left:0.000000px;}
.x7_c00434{left:55.650000px;}
.x5_c00434{left:61.050000px;}
.xa_c00434{left:65.850000px;}
.x8_c00434{left:67.950000px;}
.x9_c00434{left:69.600000px;}
.x6_c00434{left:71.850000px;}
.x4_c00434{left:73.650000px;}
.x3_c00434{left:75.000000px;}
.x2_c00434{left:76.050000px;}
.x1_c00434{left:77.550000px;}
.xb_c00434{left:100.200000px;}
.xd_c00434{left:287.814240px;}
.xc_c00434{left:364.500000px;}
@media print{
.v0_c00434{vertical-align:0.000000pt;}
.ls5_c00434{letter-spacing:-2.666667pt;}
.ls3_c00434{letter-spacing:0.000000pt;}
.ls2_c00434{letter-spacing:4.117333pt;}
.ls4_c00434{letter-spacing:8.000000pt;}
.ls0_c00434{letter-spacing:10.832000pt;}
.ls1_c00434{letter-spacing:18.298667pt;}
.ws1_c00434{word-spacing:-27.333333pt;}
.ws0_c00434{word-spacing:-18.000000pt;}
.ws2_c00434{word-spacing:0.000000pt;}
._f_c00434{margin-left:-27.141333pt;}
._12_c00434{margin-left:-20.448000pt;}
._13_c00434{margin-left:-19.368000pt;}
._18_c00434{margin-left:-13.096000pt;}
._16_c00434{margin-left:-11.266667pt;}
._e_c00434{margin-left:-9.144000pt;}
._19_c00434{margin-left:-7.869333pt;}
._11_c00434{margin-left:-6.624000pt;}
._1b_c00434{margin-left:-5.616000pt;}
._4_c00434{margin-left:-4.680000pt;}
._1_c00434{margin-left:-2.952000pt;}
._6_c00434{margin-left:-1.728000pt;}
._0_c00434{width:1.584000pt;}
._2_c00434{width:2.664000pt;}
._3_c00434{width:4.032000pt;}
._5_c00434{width:5.112000pt;}
._8_c00434{width:6.120000pt;}
._7_c00434{width:7.128000pt;}
._9_c00434{width:8.568000pt;}
._b_c00434{width:9.648000pt;}
._14_c00434{width:10.656000pt;}
._d_c00434{width:11.592000pt;}
._c_c00434{width:13.464000pt;}
._1a_c00434{width:14.400000pt;}
._15_c00434{width:15.768000pt;}
._a_c00434{width:28.944000pt;}
._1c_c00434{width:31.450667pt;}
._17_c00434{width:46.378667pt;}
._10_c00434{width:54.818667pt;}
._1d_c00434{width:259.344000pt;}
.fs5_c00434{font-size:42.666667pt;}
.fs3_c00434{font-size:48.000000pt;}
.fs2_c00434{font-size:53.333333pt;}
.fs4_c00434{font-size:64.000000pt;}
.fs0_c00434{font-size:72.000000pt;}
.fs1_c00434{font-size:77.333333pt;}
.y0_c00434{bottom:0.000000pt;}
.y25_c00434{bottom:2.760000pt;}
.y24_c00434{bottom:6.425219pt;}
.y23_c00434{bottom:43.880000pt;}
.y22_c00434{bottom:66.946667pt;}
.y21_c00434{bottom:89.480000pt;}
.y20_c00434{bottom:110.680000pt;}
.y1f_c00434{bottom:133.613333pt;}
.y1e_c00434{bottom:155.480000pt;}
.y1d_c00434{bottom:177.880000pt;}
.y1c_c00434{bottom:199.880000pt;}
.y1b_c00434{bottom:221.080000pt;}
.y1a_c00434{bottom:243.080000pt;}
.y19_c00434{bottom:265.213333pt;}
.y18_c00434{bottom:287.213333pt;}
.y17_c00434{bottom:308.813333pt;}
.y16_c00434{bottom:330.946667pt;}
.y15_c00434{bottom:352.280000pt;}
.y14_c00434{bottom:374.413333pt;}
.y13_c00434{bottom:396.013333pt;}
.y12_c00434{bottom:417.080000pt;}
.y11_c00434{bottom:439.613333pt;}
.y10_c00434{bottom:461.080000pt;}
.yf_c00434{bottom:482.813333pt;}
.ye_c00434{bottom:504.013333pt;}
.yd_c00434{bottom:525.613333pt;}
.yc_c00434{bottom:547.613333pt;}
.yb_c00434{bottom:568.813333pt;}
.ya_c00434{bottom:592.013333pt;}
.y9_c00434{bottom:613.213333pt;}
.y8_c00434{bottom:634.813333pt;}
.y7_c00434{bottom:657.080000pt;}
.y6_c00434{bottom:678.280000pt;}
.y5_c00434{bottom:700.280000pt;}
.y4_c00434{bottom:722.680000pt;}
.y3_c00434{bottom:744.013333pt;}
.y2_c00434{bottom:765.346667pt;}
.y1_c00434{bottom:787.213333pt;}
.h7_c00434{height:11.733399pt;}
.h8_c00434{height:38.937500pt;}
.h5_c00434{height:57.813333pt;}
.h2_c00434{height:70.664062pt;}
.h6_c00434{height:74.906250pt;}
.h4_c00434{height:81.031250pt;}
.h3_c00434{height:81.045333pt;}
.h0_c00434{height:879.133333pt;}
.h1_c00434{height:879.333333pt;}
.w1_c00434{width:93.222667pt;}
.w0_c00434{width:597.333333pt;}
.x0_c00434{left:0.000000pt;}
.x7_c00434{left:49.466667pt;}
.x5_c00434{left:54.266667pt;}
.xa_c00434{left:58.533333pt;}
.x8_c00434{left:60.400000pt;}
.x9_c00434{left:61.866667pt;}
.x6_c00434{left:63.866667pt;}
.x4_c00434{left:65.466667pt;}
.x3_c00434{left:66.666667pt;}
.x2_c00434{left:67.600000pt;}
.x1_c00434{left:68.933333pt;}
.xb_c00434{left:89.066667pt;}
.xd_c00434{left:255.834880pt;}
.xc_c00434{left:324.000000pt;}
}





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

.ir_c00435:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00435{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00435;src:url('chunks/assets/font_44a3939ff7453d1a8adadec2.woff2')format("woff");}.ff1_c00435{font-family:ff1_c00435;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00435;src:url('chunks/assets/font_61f0d33a684283b7fcf26a28.woff2')format("woff");}.ff2_c00435{font-family:ff2_c00435;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00435;src:url('chunks/assets/font_8fff49b2f458311495ffad0e.woff2')format("woff");}.ff3_c00435{font-family:ff3_c00435;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00435;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff4_c00435{font-family:ff4_c00435;line-height:1.219238;font-style: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;}
.ls0_c00435{letter-spacing:0.000000px;}
.sc__c00435{text-shadow:none;}
.sc0_c00435{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00435{-webkit-text-stroke:0px transparent;}
.sc0_c00435{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00435{word-spacing:-17.352000px;}
.ws1_c00435{word-spacing:0.000000px;}
._2a_c00435{margin-left:-26.406000px;}
._16_c00435{margin-left:-25.110000px;}
._14_c00435{margin-left:-19.440000px;}
._2d_c00435{margin-left:-16.605000px;}
._10_c00435{margin-left:-13.329000px;}
._d_c00435{margin-left:-11.979000px;}
._18_c00435{margin-left:-10.764000px;}
._1e_c00435{margin-left:-9.576000px;}
._1f_c00435{margin-left:-7.335000px;}
._e_c00435{margin-left:-6.294000px;}
._c_c00435{margin-left:-5.226000px;}
._4_c00435{margin-left:-4.083000px;}
._f_c00435{margin-left:-3.042000px;}
._3_c00435{margin-left:-2.028000px;}
._26_c00435{margin-left:-1.023000px;}
._0_c00435{width:1.248000px;}
._1_c00435{width:2.262000px;}
._2_c00435{width:3.855000px;}
._5_c00435{width:5.103000px;}
._9_c00435{width:6.348000px;}
._8_c00435{width:8.181000px;}
._7_c00435{width:9.234000px;}
._6_c00435{width:10.239000px;}
._a_c00435{width:11.367000px;}
._b_c00435{width:12.636000px;}
._12_c00435{width:14.082000px;}
._13_c00435{width:16.113000px;}
._11_c00435{width:18.723000px;}
._23_c00435{width:22.602000px;}
._1c_c00435{width:28.806000px;}
._1b_c00435{width:31.236000px;}
._24_c00435{width:35.985000px;}
._20_c00435{width:44.070000px;}
._19_c00435{width:46.656000px;}
._15_c00435{width:59.535000px;}
._27_c00435{width:77.820000px;}
._29_c00435{width:103.968000px;}
._21_c00435{width:185.301000px;}
._2c_c00435{width:211.968000px;}
._2b_c00435{width:220.320000px;}
._1a_c00435{width:232.215000px;}
._1d_c00435{width:240.681000px;}
._25_c00435{width:256.893000px;}
._17_c00435{width:282.447000px;}
._2e_c00435{width:330.075000px;}
._22_c00435{width:337.545000px;}
._28_c00435{width:1031.190000px;}
.fc2_c00435{color:transparent;}
.fc1_c00435{color:rgb(128,128,128);}
.fc0_c00435{color:rgb(0,0,0);}
.fs3_c00435{font-size:48.000000px;}
.fs2_c00435{font-size:72.000000px;}
.fs0_c00435{font-size:78.000000px;}
.fs1_c00435{font-size:81.000000px;}
.y0_c00435{bottom:0.000000px;}
.y25_c00435{bottom:3.105000px;}
.y24_c00435{bottom:7.228371px;}
.y23_c00435{bottom:55.065000px;}
.y22_c00435{bottom:78.015000px;}
.y21_c00435{bottom:103.365000px;}
.y20_c00435{bottom:129.315000px;}
.y1f_c00435{bottom:153.015000px;}
.y1e_c00435{bottom:179.565000px;}
.y1d_c00435{bottom:203.265000px;}
.y1c_c00435{bottom:227.565000px;}
.y1b_c00435{bottom:251.115000px;}
.y1a_c00435{bottom:276.765000px;}
.y19_c00435{bottom:301.065000px;}
.y18_c00435{bottom:327.165000px;}
.y17_c00435{bottom:350.715000px;}
.y16_c00435{bottom:375.315000px;}
.y15_c00435{bottom:399.615000px;}
.y14_c00435{bottom:424.215000px;}
.y13_c00435{bottom:448.665000px;}
.y12_c00435{bottom:472.815000px;}
.y11_c00435{bottom:497.265000px;}
.y10_c00435{bottom:521.415000px;}
.yf_c00435{bottom:545.715000px;}
.ye_c00435{bottom:569.715000px;}
.yd_c00435{bottom:594.015000px;}
.yc_c00435{bottom:618.765000px;}
.yb_c00435{bottom:643.065000px;}
.ya_c00435{bottom:667.665000px;}
.y9_c00435{bottom:692.865000px;}
.y8_c00435{bottom:716.565000px;}
.y7_c00435{bottom:740.565000px;}
.y6_c00435{bottom:765.165000px;}
.y5_c00435{bottom:789.465000px;}
.y4_c00435{bottom:814.065000px;}
.y3_c00435{bottom:838.065000px;}
.y2_c00435{bottom:862.665000px;}
.y1_c00435{bottom:887.265000px;}
.h5_c00435{height:13.200074px;}
.h6_c00435{height:43.804688px;}
.h3_c00435{height:79.497070px;}
.h4_c00435{height:84.269531px;}
.h2_c00435{height:98.756836px;}
.h1_c00435{height:986.250000px;}
.h0_c00435{height:986.325000px;}
.w2_c00435{width:104.875500px;}
.w0_c00435{width:667.425000px;}
.w1_c00435{width:667.500000px;}
.x0_c00435{left:0.000000px;}
.x10_c00435{left:15.900000px;}
.xb_c00435{left:16.950000px;}
.x9_c00435{left:27.300000px;}
.xc_c00435{left:35.550000px;}
.xf_c00435{left:37.500000px;}
.xd_c00435{left:100.350000px;}
.x1_c00435{left:119.100000px;}
.x2_c00435{left:120.150000px;}
.x3_c00435{left:121.800000px;}
.x4_c00435{left:123.150000px;}
.x5_c00435{left:124.650000px;}
.x6_c00435{left:125.850000px;}
.x8_c00435{left:127.200000px;}
.xa_c00435{left:129.300000px;}
.xe_c00435{left:131.250000px;}
.x7_c00435{left:151.950000px;}
.x12_c00435{left:285.526749px;}
.x11_c00435{left:351.750000px;}
@media print{
.v0_c00435{vertical-align:0.000000pt;}
.ls0_c00435{letter-spacing:0.000000pt;}
.ws0_c00435{word-spacing:-15.424000pt;}
.ws1_c00435{word-spacing:0.000000pt;}
._2a_c00435{margin-left:-23.472000pt;}
._16_c00435{margin-left:-22.320000pt;}
._14_c00435{margin-left:-17.280000pt;}
._2d_c00435{margin-left:-14.760000pt;}
._10_c00435{margin-left:-11.848000pt;}
._d_c00435{margin-left:-10.648000pt;}
._18_c00435{margin-left:-9.568000pt;}
._1e_c00435{margin-left:-8.512000pt;}
._1f_c00435{margin-left:-6.520000pt;}
._e_c00435{margin-left:-5.594667pt;}
._c_c00435{margin-left:-4.645333pt;}
._4_c00435{margin-left:-3.629333pt;}
._f_c00435{margin-left:-2.704000pt;}
._3_c00435{margin-left:-1.802667pt;}
._26_c00435{margin-left:-0.909333pt;}
._0_c00435{width:1.109333pt;}
._1_c00435{width:2.010667pt;}
._2_c00435{width:3.426667pt;}
._5_c00435{width:4.536000pt;}
._9_c00435{width:5.642667pt;}
._8_c00435{width:7.272000pt;}
._7_c00435{width:8.208000pt;}
._6_c00435{width:9.101333pt;}
._a_c00435{width:10.104000pt;}
._b_c00435{width:11.232000pt;}
._12_c00435{width:12.517333pt;}
._13_c00435{width:14.322667pt;}
._11_c00435{width:16.642667pt;}
._23_c00435{width:20.090667pt;}
._1c_c00435{width:25.605333pt;}
._1b_c00435{width:27.765333pt;}
._24_c00435{width:31.986667pt;}
._20_c00435{width:39.173333pt;}
._19_c00435{width:41.472000pt;}
._15_c00435{width:52.920000pt;}
._27_c00435{width:69.173333pt;}
._29_c00435{width:92.416000pt;}
._21_c00435{width:164.712000pt;}
._2c_c00435{width:188.416000pt;}
._2b_c00435{width:195.840000pt;}
._1a_c00435{width:206.413333pt;}
._1d_c00435{width:213.938667pt;}
._25_c00435{width:228.349333pt;}
._17_c00435{width:251.064000pt;}
._2e_c00435{width:293.400000pt;}
._22_c00435{width:300.040000pt;}
._28_c00435{width:916.613333pt;}
.fs3_c00435{font-size:42.666667pt;}
.fs2_c00435{font-size:64.000000pt;}
.fs0_c00435{font-size:69.333333pt;}
.fs1_c00435{font-size:72.000000pt;}
.y0_c00435{bottom:0.000000pt;}
.y25_c00435{bottom:2.760000pt;}
.y24_c00435{bottom:6.425219pt;}
.y23_c00435{bottom:48.946667pt;}
.y22_c00435{bottom:69.346667pt;}
.y21_c00435{bottom:91.880000pt;}
.y20_c00435{bottom:114.946667pt;}
.y1f_c00435{bottom:136.013333pt;}
.y1e_c00435{bottom:159.613333pt;}
.y1d_c00435{bottom:180.680000pt;}
.y1c_c00435{bottom:202.280000pt;}
.y1b_c00435{bottom:223.213333pt;}
.y1a_c00435{bottom:246.013333pt;}
.y19_c00435{bottom:267.613333pt;}
.y18_c00435{bottom:290.813333pt;}
.y17_c00435{bottom:311.746667pt;}
.y16_c00435{bottom:333.613333pt;}
.y15_c00435{bottom:355.213333pt;}
.y14_c00435{bottom:377.080000pt;}
.y13_c00435{bottom:398.813333pt;}
.y12_c00435{bottom:420.280000pt;}
.y11_c00435{bottom:442.013333pt;}
.y10_c00435{bottom:463.480000pt;}
.yf_c00435{bottom:485.080000pt;}
.ye_c00435{bottom:506.413333pt;}
.yd_c00435{bottom:528.013333pt;}
.yc_c00435{bottom:550.013333pt;}
.yb_c00435{bottom:571.613333pt;}
.ya_c00435{bottom:593.480000pt;}
.y9_c00435{bottom:615.880000pt;}
.y8_c00435{bottom:636.946667pt;}
.y7_c00435{bottom:658.280000pt;}
.y6_c00435{bottom:680.146667pt;}
.y5_c00435{bottom:701.746667pt;}
.y4_c00435{bottom:723.613333pt;}
.y3_c00435{bottom:744.946667pt;}
.y2_c00435{bottom:766.813333pt;}
.y1_c00435{bottom:788.680000pt;}
.h5_c00435{height:11.733399pt;}
.h6_c00435{height:38.937500pt;}
.h3_c00435{height:70.664062pt;}
.h4_c00435{height:74.906250pt;}
.h2_c00435{height:87.783854pt;}
.h1_c00435{height:876.666667pt;}
.h0_c00435{height:876.733333pt;}
.w2_c00435{width:93.222667pt;}
.w0_c00435{width:593.266667pt;}
.w1_c00435{width:593.333333pt;}
.x0_c00435{left:0.000000pt;}
.x10_c00435{left:14.133333pt;}
.xb_c00435{left:15.066667pt;}
.x9_c00435{left:24.266667pt;}
.xc_c00435{left:31.600000pt;}
.xf_c00435{left:33.333333pt;}
.xd_c00435{left:89.200000pt;}
.x1_c00435{left:105.866667pt;}
.x2_c00435{left:106.800000pt;}
.x3_c00435{left:108.266667pt;}
.x4_c00435{left:109.466667pt;}
.x5_c00435{left:110.800000pt;}
.x6_c00435{left:111.866667pt;}
.x8_c00435{left:113.066667pt;}
.xa_c00435{left:114.933333pt;}
.xe_c00435{left:116.666667pt;}
.x7_c00435{left:135.066667pt;}
.x12_c00435{left:253.801554pt;}
.x11_c00435{left:312.666667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_42df07680f6fa1a1c2b7d1c5.woff2')format("woff");}.ff1_c00436{font-family:ff1_c00436;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00436;src:url('chunks/assets/font_728b0308b5431b5d3dc28b6b.woff2')format("woff");}.ff2_c00436{font-family:ff2_c00436;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00436;src:url('chunks/assets/font_964a7a3928e6d003913df7ea.woff2')format("woff");}.ff3_c00436{font-family:ff3_c00436;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00436;src:url('chunks/assets/font_95d6bb4cc3da5e5333fa7864.woff2')format("woff");}.ff4_c00436{font-family:ff4_c00436;line-height:1.437000;font-style:normal;font-weight:normal;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_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c00436{font-family:ff5_c00436;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00436{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00436{vertical-align:-15.000000px;}
.v0_c00436{vertical-align:0.000000px;}
.ls1_c00436{letter-spacing:0.000000px;}
.ls2_c00436{letter-spacing:9.000000px;}
.ls0_c00436{letter-spacing:112.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;}
}
.ws1_c00436{word-spacing:-76.686000px;}
.ws0_c00436{word-spacing:-17.352000px;}
.ws2_c00436{word-spacing:0.000000px;}
._15_c00436{margin-left:-22.434000px;}
._11_c00436{margin-left:-14.418000px;}
._12_c00436{margin-left:-12.798000px;}
._13_c00436{margin-left:-9.963000px;}
._16_c00436{margin-left:-7.695000px;}
._8_c00436{margin-left:-6.075000px;}
._f_c00436{margin-left:-4.788000px;}
._6_c00436{margin-left:-3.564000px;}
._5_c00436{margin-left:-1.620000px;}
._7_c00436{width:1.296000px;}
._1_c00436{width:3.240000px;}
._4_c00436{width:4.536000px;}
._2_c00436{width:5.751000px;}
._0_c00436{width:6.885000px;}
._3_c00436{width:8.343000px;}
._a_c00436{width:10.287000px;}
._c_c00436{width:11.502000px;}
._b_c00436{width:12.879000px;}
._9_c00436{width:15.471000px;}
._19_c00436{width:17.010000px;}
._1a_c00436{width:18.063000px;}
._18_c00436{width:19.116000px;}
._e_c00436{width:26.829000px;}
._17_c00436{width:28.482000px;}
._14_c00436{width:33.681000px;}
._1b_c00436{width:37.422000px;}
._10_c00436{width:39.141000px;}
._1c_c00436{width:276.453000px;}
._d_c00436{width:325.539000px;}
.fc2_c00436{color:transparent;}
.fc1_c00436{color:rgb(128,128,128);}
.fc0_c00436{color:rgb(0,0,0);}
.fs5_c00436{font-size:48.000000px;}
.fs3_c00436{font-size:60.000000px;}
.fs1_c00436{font-size:72.000000px;}
.fs4_c00436{font-size:78.000000px;}
.fs0_c00436{font-size:81.000000px;}
.fs2_c00436{font-size:87.000000px;}
.y0_c00436{bottom:0.000000px;}
.y23_c00436{bottom:3.105000px;}
.y22_c00436{bottom:7.228371px;}
.y21_c00436{bottom:72.015000px;}
.y20_c00436{bottom:95.565000px;}
.y1f_c00436{bottom:121.215000px;}
.y1e_c00436{bottom:144.915000px;}
.y1d_c00436{bottom:169.215000px;}
.y1c_c00436{bottom:193.515000px;}
.y1b_c00436{bottom:217.815000px;}
.y1a_c00436{bottom:241.965000px;}
.y19_c00436{bottom:266.265000px;}
.y18_c00436{bottom:290.265000px;}
.y17_c00436{bottom:314.265000px;}
.y16_c00436{bottom:338.265000px;}
.y15_c00436{bottom:362.265000px;}
.y14_c00436{bottom:386.115000px;}
.y13_c00436{bottom:409.815000px;}
.y12_c00436{bottom:433.815000px;}
.y11_c00436{bottom:457.365000px;}
.y10_c00436{bottom:481.065000px;}
.yf_c00436{bottom:505.365000px;}
.ye_c00436{bottom:533.265000px;}
.yd_c00436{bottom:577.515000px;}
.yc_c00436{bottom:623.715000px;}
.yb_c00436{bottom:648.015000px;}
.ya_c00436{bottom:672.315000px;}
.y9_c00436{bottom:696.315000px;}
.y8_c00436{bottom:720.615000px;}
.y7_c00436{bottom:744.915000px;}
.y6_c00436{bottom:768.915000px;}
.y5_c00436{bottom:793.215000px;}
.y4_c00436{bottom:817.815000px;}
.y3_c00436{bottom:841.815000px;}
.y2_c00436{bottom:866.115000px;}
.y1_c00436{bottom:890.415000px;}
.h8_c00436{height:13.200074px;}
.h9_c00436{height:43.804688px;}
.h6_c00436{height:75.966797px;}
.h2_c00436{height:79.497070px;}
.h5_c00436{height:84.269531px;}
.h3_c00436{height:91.160156px;}
.h4_c00436{height:91.176000px;}
.h7_c00436{height:98.756836px;}
.h0_c00436{height:989.025000px;}
.h1_c00436{height:989.250000px;}
.w1_c00436{width:104.875500px;}
.w0_c00436{width:672.000000px;}
.x0_c00436{left:0.000000px;}
.x2_c00436{left:53.250000px;}
.x3_c00436{left:54.300000px;}
.x4_c00436{left:55.350000px;}
.x7_c00436{left:56.700000px;}
.x8_c00436{left:58.350000px;}
.xa_c00436{left:60.300000px;}
.x1_c00436{left:77.700000px;}
.x9_c00436{left:85.650000px;}
.x6_c00436{left:94.500000px;}
.x5_c00436{left:112.350000px;}
.xc_c00436{left:287.814240px;}
.xb_c00436{left:367.200000px;}
@media print{
.v1_c00436{vertical-align:-13.333333pt;}
.v0_c00436{vertical-align:0.000000pt;}
.ls1_c00436{letter-spacing:0.000000pt;}
.ls2_c00436{letter-spacing:8.000000pt;}
.ls0_c00436{letter-spacing:100.266667pt;}
.ws1_c00436{word-spacing:-68.165333pt;}
.ws0_c00436{word-spacing:-15.424000pt;}
.ws2_c00436{word-spacing:0.000000pt;}
._15_c00436{margin-left:-19.941333pt;}
._11_c00436{margin-left:-12.816000pt;}
._12_c00436{margin-left:-11.376000pt;}
._13_c00436{margin-left:-8.856000pt;}
._16_c00436{margin-left:-6.840000pt;}
._8_c00436{margin-left:-5.400000pt;}
._f_c00436{margin-left:-4.256000pt;}
._6_c00436{margin-left:-3.168000pt;}
._5_c00436{margin-left:-1.440000pt;}
._7_c00436{width:1.152000pt;}
._1_c00436{width:2.880000pt;}
._4_c00436{width:4.032000pt;}
._2_c00436{width:5.112000pt;}
._0_c00436{width:6.120000pt;}
._3_c00436{width:7.416000pt;}
._a_c00436{width:9.144000pt;}
._c_c00436{width:10.224000pt;}
._b_c00436{width:11.448000pt;}
._9_c00436{width:13.752000pt;}
._19_c00436{width:15.120000pt;}
._1a_c00436{width:16.056000pt;}
._18_c00436{width:16.992000pt;}
._e_c00436{width:23.848000pt;}
._17_c00436{width:25.317333pt;}
._14_c00436{width:29.938667pt;}
._1b_c00436{width:33.264000pt;}
._10_c00436{width:34.792000pt;}
._1c_c00436{width:245.736000pt;}
._d_c00436{width:289.368000pt;}
.fs5_c00436{font-size:42.666667pt;}
.fs3_c00436{font-size:53.333333pt;}
.fs1_c00436{font-size:64.000000pt;}
.fs4_c00436{font-size:69.333333pt;}
.fs0_c00436{font-size:72.000000pt;}
.fs2_c00436{font-size:77.333333pt;}
.y0_c00436{bottom:0.000000pt;}
.y23_c00436{bottom:2.760000pt;}
.y22_c00436{bottom:6.425219pt;}
.y21_c00436{bottom:64.013333pt;}
.y20_c00436{bottom:84.946667pt;}
.y1f_c00436{bottom:107.746667pt;}
.y1e_c00436{bottom:128.813333pt;}
.y1d_c00436{bottom:150.413333pt;}
.y1c_c00436{bottom:172.013333pt;}
.y1b_c00436{bottom:193.613333pt;}
.y1a_c00436{bottom:215.080000pt;}
.y19_c00436{bottom:236.680000pt;}
.y18_c00436{bottom:258.013333pt;}
.y17_c00436{bottom:279.346667pt;}
.y16_c00436{bottom:300.680000pt;}
.y15_c00436{bottom:322.013333pt;}
.y14_c00436{bottom:343.213333pt;}
.y13_c00436{bottom:364.280000pt;}
.y12_c00436{bottom:385.613333pt;}
.y11_c00436{bottom:406.546667pt;}
.y10_c00436{bottom:427.613333pt;}
.yf_c00436{bottom:449.213333pt;}
.ye_c00436{bottom:474.013333pt;}
.yd_c00436{bottom:513.346667pt;}
.yc_c00436{bottom:554.413333pt;}
.yb_c00436{bottom:576.013333pt;}
.ya_c00436{bottom:597.613333pt;}
.y9_c00436{bottom:618.946667pt;}
.y8_c00436{bottom:640.546667pt;}
.y7_c00436{bottom:662.146667pt;}
.y6_c00436{bottom:683.480000pt;}
.y5_c00436{bottom:705.080000pt;}
.y4_c00436{bottom:726.946667pt;}
.y3_c00436{bottom:748.280000pt;}
.y2_c00436{bottom:769.880000pt;}
.y1_c00436{bottom:791.480000pt;}
.h8_c00436{height:11.733399pt;}
.h9_c00436{height:38.937500pt;}
.h6_c00436{height:67.526042pt;}
.h2_c00436{height:70.664062pt;}
.h5_c00436{height:74.906250pt;}
.h3_c00436{height:81.031250pt;}
.h4_c00436{height:81.045333pt;}
.h7_c00436{height:87.783854pt;}
.h0_c00436{height:879.133333pt;}
.h1_c00436{height:879.333333pt;}
.w1_c00436{width:93.222667pt;}
.w0_c00436{width:597.333333pt;}
.x0_c00436{left:0.000000pt;}
.x2_c00436{left:47.333333pt;}
.x3_c00436{left:48.266667pt;}
.x4_c00436{left:49.200000pt;}
.x7_c00436{left:50.400000pt;}
.x8_c00436{left:51.866667pt;}
.xa_c00436{left:53.600000pt;}
.x1_c00436{left:69.066667pt;}
.x9_c00436{left:76.133333pt;}
.x6_c00436{left:84.000000pt;}
.x5_c00436{left:99.866667pt;}
.xc_c00436{left:255.834880pt;}
.xb_c00436{left:326.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_7a561eef2dcc5d8fdddd85a4.woff2')format("woff");}.ff1_c00437{font-family:ff1_c00437;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00437;src:url('chunks/assets/font_2d4e556f8b7d759d4176455a.woff2')format("woff");}.ff2_c00437{font-family:ff2_c00437;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00437;src:url('chunks/assets/font_9e71f414d5034bc8aaeb0220.woff2')format("woff");}.ff3_c00437{font-family:ff3_c00437;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00437;src:url('chunks/assets/font_4214745f94a355659272a904.woff2')format("woff");}.ff4_c00437{font-family:ff4_c00437;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00437;src:url('chunks/assets/font_19dde77b2a8e8929cd08dce2.woff2')format("woff");}.ff5_c00437{font-family:ff5_c00437;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00437;src:url('chunks/assets/font_c57e48fb3cb0f25b402cbd2d.woff2')format("woff");}.ff6_c00437{font-family:ff6_c00437;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00437;src:url('chunks/assets/font_e1a986385211b45959abb63e.woff2')format("woff");}.ff7_c00437{font-family:ff7_c00437;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00437;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff8_c00437{font-family:ff8_c00437;line-height:1.219238;font-style: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);}
.m2_c00437{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m1_c00437{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.v0_c00437{vertical-align:0.000000px;}
.ls8_c00437{letter-spacing:-6.000000px;}
.ls6_c00437{letter-spacing:0.000000px;}
.ls5_c00437{letter-spacing:2.250000px;}
.ls1_c00437{letter-spacing:3.000000px;}
.ls7_c00437{letter-spacing:6.000000px;}
.ls0_c00437{letter-spacing:22.446000px;}
.ls4_c00437{letter-spacing:27.246000px;}
.ls2_c00437{letter-spacing:37.050000px;}
.ls3_c00437{letter-spacing:223.650000px;}
.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:-59.184000px;}
.ws2_c00437{word-spacing:-26.904000px;}
.ws4_c00437{word-spacing:-20.250000px;}
.ws1_c00437{word-spacing:-15.750000px;}
.ws3_c00437{word-spacing:-13.200000px;}
.ws5_c00437{word-spacing:0.000000px;}
._30_c00437{margin-left:-33.291000px;}
._2f_c00437{margin-left:-28.077000px;}
._d_c00437{margin-left:-24.150000px;}
._12_c00437{margin-left:-22.890000px;}
._e_c00437{margin-left:-20.475000px;}
._26_c00437{margin-left:-19.278000px;}
._28_c00437{margin-left:-15.504000px;}
._10_c00437{margin-left:-14.280000px;}
._f_c00437{margin-left:-11.550000px;}
._b_c00437{margin-left:-9.345000px;}
._a_c00437{margin-left:-7.245000px;}
._3_c00437{margin-left:-5.985000px;}
._11_c00437{margin-left:-4.620000px;}
._2_c00437{margin-left:-3.465000px;}
._19_c00437{margin-left:-1.911000px;}
._6_c00437{width:1.155000px;}
._5_c00437{width:2.205000px;}
._14_c00437{width:3.888000px;}
._16_c00437{width:5.103000px;}
._13_c00437{width:6.318000px;}
._15_c00437{width:7.335000px;}
._17_c00437{width:8.622000px;}
._2b_c00437{width:9.693000px;}
._8_c00437{width:10.710000px;}
._9_c00437{width:11.760000px;}
._18_c00437{width:12.798000px;}
._7_c00437{width:14.280000px;}
._1b_c00437{width:15.597000px;}
._0_c00437{width:18.060000px;}
._1c_c00437{width:19.941000px;}
._1_c00437{width:21.000000px;}
._c_c00437{width:22.155000px;}
._2a_c00437{width:24.960000px;}
._2c_c00437{width:35.232000px;}
._2e_c00437{width:52.326000px;}
._20_c00437{width:75.759000px;}
._25_c00437{width:77.709000px;}
._1e_c00437{width:85.002000px;}
._4_c00437{width:109.725000px;}
._23_c00437{width:145.755000px;}
._21_c00437{width:146.904000px;}
._1a_c00437{width:169.047000px;}
._2d_c00437{width:192.483000px;}
._1d_c00437{width:197.481000px;}
._29_c00437{width:220.518000px;}
._22_c00437{width:226.341000px;}
._1f_c00437{width:233.718000px;}
._24_c00437{width:312.735000px;}
._27_c00437{width:346.290000px;}
.fc2_c00437{color:transparent;}
.fc1_c00437{color:rgb(128,128,128);}
.fc0_c00437{color:rgb(0,0,0);}
.fs8_c00437{font-size:48.000000px;}
.fs2_c00437{font-size:57.000000px;}
.fs5_c00437{font-size:60.000000px;}
.fs4_c00437{font-size:63.000000px;}
.fs3_c00437{font-size:72.000000px;}
.fs6_c00437{font-size:75.000000px;}
.fs1_c00437{font-size:81.000000px;}
.fs7_c00437{font-size:102.000000px;}
.fs0_c00437{font-size:105.000000px;}
.y0_c00437{bottom:0.000000px;}
.y27_c00437{bottom:3.105000px;}
.y26_c00437{bottom:7.228363px;}
.y25_c00437{bottom:58.050000px;}
.y24_c00437{bottom:83.100000px;}
.y23_c00437{bottom:109.050000px;}
.y22_c00437{bottom:134.700000px;}
.y21_c00437{bottom:157.650000px;}
.y20_c00437{bottom:181.950000px;}
.y1f_c00437{bottom:207.150000px;}
.y1e_c00437{bottom:231.150000px;}
.y1d_c00437{bottom:255.450000px;}
.y1c_c00437{bottom:280.050000px;}
.y1b_c00437{bottom:304.800000px;}
.y1a_c00437{bottom:328.050000px;}
.y19_c00437{bottom:353.250000px;}
.y18_c00437{bottom:377.550000px;}
.y17_c00437{bottom:402.150000px;}
.y16_c00437{bottom:426.150000px;}
.y15_c00437{bottom:450.150000px;}
.y14_c00437{bottom:474.450000px;}
.y13_c00437{bottom:497.850000px;}
.y12_c00437{bottom:522.150000px;}
.y11_c00437{bottom:545.400000px;}
.y10_c00437{bottom:558.900000px;}
.yf_c00437{bottom:570.000000px;}
.ye_c00437{bottom:594.600000px;}
.yd_c00437{bottom:618.750000px;}
.yc_c00437{bottom:643.200000px;}
.yb_c00437{bottom:668.550000px;}
.ya_c00437{bottom:692.250000px;}
.y9_c00437{bottom:716.400000px;}
.y8_c00437{bottom:740.100000px;}
.y7_c00437{bottom:763.800000px;}
.y6_c00437{bottom:788.100000px;}
.y5_c00437{bottom:812.400000px;}
.y4_c00437{bottom:837.000000px;}
.y3_c00437{bottom:861.600000px;}
.y2_c00437{bottom:885.600000px;}
.y1_c00437{bottom:919.050000px;}
.h8_c00437{height:13.200074px;}
.h9_c00437{height:43.804688px;}
.h5_c00437{height:61.831055px;}
.h6_c00437{height:66.713379px;}
.h3_c00437{height:79.497070px;}
.h4_c00437{height:84.269531px;}
.h2_c00437{height:103.000488px;}
.h7_c00437{height:129.143555px;}
.h1_c00437{height:977.250000px;}
.h0_c00437{height:977.400000px;}
.w1_c00437{width:104.875500px;}
.w0_c00437{width:661.500000px;}
.x0_c00437{left:0.000000px;}
.x3_c00437{left:32.400000px;}
.x4_c00437{left:34.800000px;}
.xc_c00437{left:36.150000px;}
.x8_c00437{left:37.500000px;}
.x9_c00437{left:68.850000px;}
.x5_c00437{left:74.850000px;}
.x7_c00437{left:99.150000px;}
.x1_c00437{left:123.150000px;}
.xa_c00437{left:125.850000px;}
.x2_c00437{left:126.900000px;}
.x6_c00437{left:127.950000px;}
.xb_c00437{left:151.650000px;}
.x11_c00437{left:282.564240px;}
.xd_c00437{left:409.800000px;}
.xe_c00437{left:529.950000px;}
.xf_c00437{left:536.250000px;}
.x10_c00437{left:565.350000px;}
@media print{
.v0_c00437{vertical-align:0.000000pt;}
.ls8_c00437{letter-spacing:-5.333333pt;}
.ls6_c00437{letter-spacing:0.000000pt;}
.ls5_c00437{letter-spacing:2.000000pt;}
.ls1_c00437{letter-spacing:2.666667pt;}
.ls7_c00437{letter-spacing:5.333333pt;}
.ls0_c00437{letter-spacing:19.952000pt;}
.ls4_c00437{letter-spacing:24.218667pt;}
.ls2_c00437{letter-spacing:32.933333pt;}
.ls3_c00437{letter-spacing:198.800000pt;}
.ws0_c00437{word-spacing:-52.608000pt;}
.ws2_c00437{word-spacing:-23.914667pt;}
.ws4_c00437{word-spacing:-18.000000pt;}
.ws1_c00437{word-spacing:-14.000000pt;}
.ws3_c00437{word-spacing:-11.733333pt;}
.ws5_c00437{word-spacing:0.000000pt;}
._30_c00437{margin-left:-29.592000pt;}
._2f_c00437{margin-left:-24.957333pt;}
._d_c00437{margin-left:-21.466667pt;}
._12_c00437{margin-left:-20.346667pt;}
._e_c00437{margin-left:-18.200000pt;}
._26_c00437{margin-left:-17.136000pt;}
._28_c00437{margin-left:-13.781333pt;}
._10_c00437{margin-left:-12.693333pt;}
._f_c00437{margin-left:-10.266667pt;}
._b_c00437{margin-left:-8.306667pt;}
._a_c00437{margin-left:-6.440000pt;}
._3_c00437{margin-left:-5.320000pt;}
._11_c00437{margin-left:-4.106667pt;}
._2_c00437{margin-left:-3.080000pt;}
._19_c00437{margin-left:-1.698667pt;}
._6_c00437{width:1.026667pt;}
._5_c00437{width:1.960000pt;}
._14_c00437{width:3.456000pt;}
._16_c00437{width:4.536000pt;}
._13_c00437{width:5.616000pt;}
._15_c00437{width:6.520000pt;}
._17_c00437{width:7.664000pt;}
._2b_c00437{width:8.616000pt;}
._8_c00437{width:9.520000pt;}
._9_c00437{width:10.453333pt;}
._18_c00437{width:11.376000pt;}
._7_c00437{width:12.693333pt;}
._1b_c00437{width:13.864000pt;}
._0_c00437{width:16.053333pt;}
._1c_c00437{width:17.725333pt;}
._1_c00437{width:18.666667pt;}
._c_c00437{width:19.693333pt;}
._2a_c00437{width:22.186667pt;}
._2c_c00437{width:31.317333pt;}
._2e_c00437{width:46.512000pt;}
._20_c00437{width:67.341333pt;}
._25_c00437{width:69.074667pt;}
._1e_c00437{width:75.557333pt;}
._4_c00437{width:97.533333pt;}
._23_c00437{width:129.560000pt;}
._21_c00437{width:130.581333pt;}
._1a_c00437{width:150.264000pt;}
._2d_c00437{width:171.096000pt;}
._1d_c00437{width:175.538667pt;}
._29_c00437{width:196.016000pt;}
._22_c00437{width:201.192000pt;}
._1f_c00437{width:207.749333pt;}
._24_c00437{width:277.986667pt;}
._27_c00437{width:307.813333pt;}
.fs8_c00437{font-size:42.666667pt;}
.fs2_c00437{font-size:50.666667pt;}
.fs5_c00437{font-size:53.333333pt;}
.fs4_c00437{font-size:56.000000pt;}
.fs3_c00437{font-size:64.000000pt;}
.fs6_c00437{font-size:66.666667pt;}
.fs1_c00437{font-size:72.000000pt;}
.fs7_c00437{font-size:90.666667pt;}
.fs0_c00437{font-size:93.333333pt;}
.y0_c00437{bottom:0.000000pt;}
.y27_c00437{bottom:2.760000pt;}
.y26_c00437{bottom:6.425212pt;}
.y25_c00437{bottom:51.600000pt;}
.y24_c00437{bottom:73.866667pt;}
.y23_c00437{bottom:96.933333pt;}
.y22_c00437{bottom:119.733333pt;}
.y21_c00437{bottom:140.133333pt;}
.y20_c00437{bottom:161.733333pt;}
.y1f_c00437{bottom:184.133333pt;}
.y1e_c00437{bottom:205.466667pt;}
.y1d_c00437{bottom:227.066667pt;}
.y1c_c00437{bottom:248.933333pt;}
.y1b_c00437{bottom:270.933333pt;}
.y1a_c00437{bottom:291.600000pt;}
.y19_c00437{bottom:314.000000pt;}
.y18_c00437{bottom:335.600000pt;}
.y17_c00437{bottom:357.466667pt;}
.y16_c00437{bottom:378.800000pt;}
.y15_c00437{bottom:400.133333pt;}
.y14_c00437{bottom:421.733333pt;}
.y13_c00437{bottom:442.533333pt;}
.y12_c00437{bottom:464.133333pt;}
.y11_c00437{bottom:484.800000pt;}
.y10_c00437{bottom:496.800000pt;}
.yf_c00437{bottom:506.666667pt;}
.ye_c00437{bottom:528.533333pt;}
.yd_c00437{bottom:550.000000pt;}
.yc_c00437{bottom:571.733333pt;}
.yb_c00437{bottom:594.266667pt;}
.ya_c00437{bottom:615.333333pt;}
.y9_c00437{bottom:636.800000pt;}
.y8_c00437{bottom:657.866667pt;}
.y7_c00437{bottom:678.933333pt;}
.y6_c00437{bottom:700.533333pt;}
.y5_c00437{bottom:722.133333pt;}
.y4_c00437{bottom:744.000000pt;}
.y3_c00437{bottom:765.866667pt;}
.y2_c00437{bottom:787.200000pt;}
.y1_c00437{bottom:816.933333pt;}
.h8_c00437{height:11.733399pt;}
.h9_c00437{height:38.937500pt;}
.h5_c00437{height:54.960938pt;}
.h6_c00437{height:59.300781pt;}
.h3_c00437{height:70.664062pt;}
.h4_c00437{height:74.906250pt;}
.h2_c00437{height:91.555990pt;}
.h7_c00437{height:114.794271pt;}
.h1_c00437{height:868.666667pt;}
.h0_c00437{height:868.800000pt;}
.w1_c00437{width:93.222667pt;}
.w0_c00437{width:588.000000pt;}
.x0_c00437{left:0.000000pt;}
.x3_c00437{left:28.800000pt;}
.x4_c00437{left:30.933333pt;}
.xc_c00437{left:32.133333pt;}
.x8_c00437{left:33.333333pt;}
.x9_c00437{left:61.200000pt;}
.x5_c00437{left:66.533333pt;}
.x7_c00437{left:88.133333pt;}
.x1_c00437{left:109.466667pt;}
.xa_c00437{left:111.866667pt;}
.x2_c00437{left:112.800000pt;}
.x6_c00437{left:113.733333pt;}
.xb_c00437{left:134.800000pt;}
.x11_c00437{left:251.168213pt;}
.xd_c00437{left:364.266667pt;}
.xe_c00437{left:471.066667pt;}
.xf_c00437{left:476.666667pt;}
.x10_c00437{left:502.533333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_dc1772110ff03437d4892e23.woff2')format("woff");}.ff1_c00438{font-family:ff1_c00438;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00438;src:url('chunks/assets/font_56e5cb02b3d4bd07b89595f9.woff2')format("woff");}.ff2_c00438{font-family:ff2_c00438;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00438;src:url('chunks/assets/font_382cd9860eb0e38281180878.woff2')format("woff");}.ff3_c00438{font-family:ff3_c00438;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00438;src:url('chunks/assets/font_f17db00455df516ba027f74b.woff2')format("woff");}.ff4_c00438{font-family:ff4_c00438;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00438;src:url('chunks/assets/font_cba6233c1268bc4fb121f840.woff2')format("woff");}.ff5_c00438{font-family:ff5_c00438;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00438;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c00438{font-family:ff6_c00438;line-height:1.219238;font-style: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;}
.ls2_c00438{letter-spacing:0.000000px;}
.ls1_c00438{letter-spacing:0.402000px;}
.ls0_c00438{letter-spacing:14.100000px;}
.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:-20.250000px;}
.ws0_c00438{word-spacing:-18.000000px;}
.ws2_c00438{word-spacing:-17.352000px;}
.ws3_c00438{word-spacing:0.000000px;}
._10_c00438{margin-left:-15.687000px;}
._12_c00438{margin-left:-14.004000px;}
._17_c00438{margin-left:-11.406000px;}
._e_c00438{margin-left:-9.633000px;}
._f_c00438{margin-left:-8.610000px;}
._d_c00438{margin-left:-6.879000px;}
._c_c00438{margin-left:-5.541000px;}
._4_c00438{margin-left:-3.813000px;}
._1b_c00438{margin-left:-2.778000px;}
._2_c00438{margin-left:-1.776000px;}
._5_c00438{width:1.524000px;}
._1_c00438{width:3.096000px;}
._19_c00438{width:4.104000px;}
._0_c00438{width:5.112000px;}
._3_c00438{width:6.534000px;}
._7_c00438{width:7.623000px;}
._9_c00438{width:9.591000px;}
._8_c00438{width:10.764000px;}
._a_c00438{width:12.633000px;}
._6_c00438{width:13.734000px;}
._15_c00438{width:15.027000px;}
._18_c00438{width:16.077000px;}
._16_c00438{width:17.367000px;}
._1f_c00438{width:19.380000px;}
._1d_c00438{width:27.132000px;}
._14_c00438{width:32.946000px;}
._13_c00438{width:34.332000px;}
._1c_c00438{width:35.496000px;}
._11_c00438{width:42.324000px;}
._1a_c00438{width:45.402000px;}
._b_c00438{width:105.138000px;}
._1e_c00438{width:275.604000px;}
.fc2_c00438{color:transparent;}
.fc1_c00438{color:rgb(128,128,128);}
.fc0_c00438{color:rgb(0,0,0);}
.fs7_c00438{font-size:48.000000px;}
.fs6_c00438{font-size:51.000000px;}
.fs5_c00438{font-size:57.000000px;}
.fs4_c00438{font-size:66.000000px;}
.fs0_c00438{font-size:72.000000px;}
.fs2_c00438{font-size:78.000000px;}
.fs1_c00438{font-size:81.000000px;}
.fs3_c00438{font-size:87.000000px;}
.y0_c00438{bottom:0.000000px;}
.y25_c00438{bottom:3.105000px;}
.y24_c00438{bottom:7.228371px;}
.y23_c00438{bottom:61.815000px;}
.y22_c00438{bottom:86.715000px;}
.y21_c00438{bottom:111.765000px;}
.y20_c00438{bottom:136.365000px;}
.y1f_c00438{bottom:160.665000px;}
.y1e_c00438{bottom:185.265000px;}
.y1d_c00438{bottom:209.565000px;}
.y1c_c00438{bottom:235.215000px;}
.y1b_c00438{bottom:258.615000px;}
.y1a_c00438{bottom:282.915000px;}
.y19_c00438{bottom:307.215000px;}
.y18_c00438{bottom:331.515000px;}
.y17_c00438{bottom:356.115000px;}
.y16_c00438{bottom:379.365000px;}
.y15_c00438{bottom:403.965000px;}
.y14_c00438{bottom:427.965000px;}
.y13_c00438{bottom:451.665000px;}
.y12_c00438{bottom:475.965000px;}
.y11_c00438{bottom:499.965000px;}
.y10_c00438{bottom:524.265000px;}
.yf_c00438{bottom:548.415000px;}
.ye_c00438{bottom:572.865000px;}
.yd_c00438{bottom:596.415000px;}
.yc_c00438{bottom:619.665000px;}
.yb_c00438{bottom:644.415000px;}
.ya_c00438{bottom:668.565000px;}
.y9_c00438{bottom:693.315000px;}
.y8_c00438{bottom:717.315000px;}
.y7_c00438{bottom:741.465000px;}
.y6_c00438{bottom:765.765000px;}
.y5_c00438{bottom:786.765000px;}
.y4_c00438{bottom:814.065000px;}
.y3_c00438{bottom:838.065000px;}
.y2_c00438{bottom:862.365000px;}
.y1_c00438{bottom:887.265000px;}
.h9_c00438{height:13.200074px;}
.ha_c00438{height:43.804688px;}
.h8_c00438{height:51.398438px;}
.h7_c00438{height:72.168457px;}
.h2_c00438{height:79.497070px;}
.h4_c00438{height:84.269531px;}
.h5_c00438{height:91.160156px;}
.h6_c00438{height:91.176000px;}
.h3_c00438{height:98.756836px;}
.h0_c00438{height:989.025000px;}
.h1_c00438{height:989.250000px;}
.w1_c00438{width:104.875500px;}
.w0_c00438{width:672.000000px;}
.x0_c00438{left:0.000000px;}
.x2_c00438{left:26.550000px;}
.x9_c00438{left:39.900000px;}
.x8_c00438{left:41.250000px;}
.x7_c00438{left:42.450000px;}
.x6_c00438{left:43.500000px;}
.x5_c00438{left:44.850000px;}
.x4_c00438{left:46.200000px;}
.x3_c00438{left:47.250000px;}
.x1_c00438{left:48.300000px;}
.xb_c00438{left:287.814240px;}
.xa_c00438{left:343.350000px;}
@media print{
.v0_c00438{vertical-align:0.000000pt;}
.ls2_c00438{letter-spacing:0.000000pt;}
.ls1_c00438{letter-spacing:0.357333pt;}
.ls0_c00438{letter-spacing:12.533333pt;}
.ws1_c00438{word-spacing:-18.000000pt;}
.ws0_c00438{word-spacing:-16.000000pt;}
.ws2_c00438{word-spacing:-15.424000pt;}
.ws3_c00438{word-spacing:0.000000pt;}
._10_c00438{margin-left:-13.944000pt;}
._12_c00438{margin-left:-12.448000pt;}
._17_c00438{margin-left:-10.138667pt;}
._e_c00438{margin-left:-8.562667pt;}
._f_c00438{margin-left:-7.653333pt;}
._d_c00438{margin-left:-6.114667pt;}
._c_c00438{margin-left:-4.925333pt;}
._4_c00438{margin-left:-3.389333pt;}
._1b_c00438{margin-left:-2.469333pt;}
._2_c00438{margin-left:-1.578667pt;}
._5_c00438{width:1.354667pt;}
._1_c00438{width:2.752000pt;}
._19_c00438{width:3.648000pt;}
._0_c00438{width:4.544000pt;}
._3_c00438{width:5.808000pt;}
._7_c00438{width:6.776000pt;}
._9_c00438{width:8.525333pt;}
._8_c00438{width:9.568000pt;}
._a_c00438{width:11.229333pt;}
._6_c00438{width:12.208000pt;}
._15_c00438{width:13.357333pt;}
._18_c00438{width:14.290667pt;}
._16_c00438{width:15.437333pt;}
._1f_c00438{width:17.226667pt;}
._1d_c00438{width:24.117333pt;}
._14_c00438{width:29.285333pt;}
._13_c00438{width:30.517333pt;}
._1c_c00438{width:31.552000pt;}
._11_c00438{width:37.621333pt;}
._1a_c00438{width:40.357333pt;}
._b_c00438{width:93.456000pt;}
._1e_c00438{width:244.981333pt;}
.fs7_c00438{font-size:42.666667pt;}
.fs6_c00438{font-size:45.333333pt;}
.fs5_c00438{font-size:50.666667pt;}
.fs4_c00438{font-size:58.666667pt;}
.fs0_c00438{font-size:64.000000pt;}
.fs2_c00438{font-size:69.333333pt;}
.fs1_c00438{font-size:72.000000pt;}
.fs3_c00438{font-size:77.333333pt;}
.y0_c00438{bottom:0.000000pt;}
.y25_c00438{bottom:2.760000pt;}
.y24_c00438{bottom:6.425219pt;}
.y23_c00438{bottom:54.946667pt;}
.y22_c00438{bottom:77.080000pt;}
.y21_c00438{bottom:99.346667pt;}
.y20_c00438{bottom:121.213333pt;}
.y1f_c00438{bottom:142.813333pt;}
.y1e_c00438{bottom:164.680000pt;}
.y1d_c00438{bottom:186.280000pt;}
.y1c_c00438{bottom:209.080000pt;}
.y1b_c00438{bottom:229.880000pt;}
.y1a_c00438{bottom:251.480000pt;}
.y19_c00438{bottom:273.080000pt;}
.y18_c00438{bottom:294.680000pt;}
.y17_c00438{bottom:316.546667pt;}
.y16_c00438{bottom:337.213333pt;}
.y15_c00438{bottom:359.080000pt;}
.y14_c00438{bottom:380.413333pt;}
.y13_c00438{bottom:401.480000pt;}
.y12_c00438{bottom:423.080000pt;}
.y11_c00438{bottom:444.413333pt;}
.y10_c00438{bottom:466.013333pt;}
.yf_c00438{bottom:487.480000pt;}
.ye_c00438{bottom:509.213333pt;}
.yd_c00438{bottom:530.146667pt;}
.yc_c00438{bottom:550.813333pt;}
.yb_c00438{bottom:572.813333pt;}
.ya_c00438{bottom:594.280000pt;}
.y9_c00438{bottom:616.280000pt;}
.y8_c00438{bottom:637.613333pt;}
.y7_c00438{bottom:659.080000pt;}
.y6_c00438{bottom:680.680000pt;}
.y5_c00438{bottom:699.346667pt;}
.y4_c00438{bottom:723.613333pt;}
.y3_c00438{bottom:744.946667pt;}
.y2_c00438{bottom:766.546667pt;}
.y1_c00438{bottom:788.680000pt;}
.h9_c00438{height:11.733399pt;}
.ha_c00438{height:38.937500pt;}
.h8_c00438{height:45.687500pt;}
.h7_c00438{height:64.149740pt;}
.h2_c00438{height:70.664062pt;}
.h4_c00438{height:74.906250pt;}
.h5_c00438{height:81.031250pt;}
.h6_c00438{height:81.045333pt;}
.h3_c00438{height:87.783854pt;}
.h0_c00438{height:879.133333pt;}
.h1_c00438{height:879.333333pt;}
.w1_c00438{width:93.222667pt;}
.w0_c00438{width:597.333333pt;}
.x0_c00438{left:0.000000pt;}
.x2_c00438{left:23.600000pt;}
.x9_c00438{left:35.466667pt;}
.x8_c00438{left:36.666667pt;}
.x7_c00438{left:37.733333pt;}
.x6_c00438{left:38.666667pt;}
.x5_c00438{left:39.866667pt;}
.x4_c00438{left:41.066667pt;}
.x3_c00438{left:42.000000pt;}
.x1_c00438{left:42.933333pt;}
.xb_c00438{left:255.834880pt;}
.xa_c00438{left:305.200000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_396ac4d2233326aafcf65e71.woff2')format("woff");}.ff1_c00439{font-family:ff1_c00439;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00439;src:url('chunks/assets/font_f8e956731d77dbaca4649c1b.woff2')format("woff");}.ff2_c00439{font-family:ff2_c00439;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00439;src:url('chunks/assets/font_aefda7acb95fb687c860e9cd.woff2')format("woff");}.ff3_c00439{font-family:ff3_c00439;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00439;src:url('chunks/assets/font_55569477e2abd31d888fe069.woff2')format("woff");}.ff4_c00439{font-family:ff4_c00439;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00439;src:url('chunks/assets/font_4a43b535011f3b98db4b3962.woff2')format("woff");}.ff5_c00439{font-family:ff5_c00439;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00439;src:url('chunks/assets/font_86e13853323dc38dd95e3dbf.woff2')format("woff");}.ff6_c00439{font-family:ff6_c00439;line-height:1.437000;font-style:normal;font-weight: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_c00439;src:url('chunks/assets/font_53a4705050f7cb539bbadf33.woff2')format("woff");}.ff7_c00439{font-family:ff7_c00439;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00439;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff8_c00439{font-family:ff8_c00439;line-height:1.219238;font-style: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);}
.m1_c00439{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.v0_c00439{vertical-align:0.000000px;}
.v1_c00439{vertical-align:176.400000px;}
.ls4_c00439{letter-spacing:0.000000px;}
.ls0_c00439{letter-spacing:3.000000px;}
.ls1_c00439{letter-spacing:6.300000px;}
.ls2_c00439{letter-spacing:17.085000px;}
.ls3_c00439{letter-spacing:33.000000px;}
.sc__c00439{text-shadow:none;}
.sc0_c00439{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00439{-webkit-text-stroke:0px transparent;}
.sc0_c00439{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00439{word-spacing:0.000000px;}
._2_c00439{margin-left:-60.324000px;}
._0_c00439{margin-left:-54.252000px;}
._1_c00439{margin-left:-50.688000px;}
._3_c00439{margin-left:-39.864000px;}
._13_c00439{margin-left:-23.166000px;}
._8_c00439{margin-left:-20.889000px;}
._11_c00439{margin-left:-19.602000px;}
._1f_c00439{margin-left:-14.763000px;}
._23_c00439{margin-left:-10.527000px;}
._f_c00439{margin-left:-9.504000px;}
._e_c00439{margin-left:-7.623000px;}
._21_c00439{margin-left:-6.156000px;}
._9_c00439{margin-left:-5.049000px;}
._10_c00439{margin-left:-3.663000px;}
._19_c00439{margin-left:-1.794000px;}
._a_c00439{width:1.782000px;}
._12_c00439{width:3.168000px;}
._22_c00439{width:4.188000px;}
._16_c00439{width:5.211000px;}
._b_c00439{width:6.930000px;}
._15_c00439{width:8.238000px;}
._17_c00439{width:9.540000px;}
._d_c00439{width:11.484000px;}
._c_c00439{width:13.167000px;}
._14_c00439{width:15.105000px;}
._7_c00439{width:16.335000px;}
._1b_c00439{width:18.552000px;}
._1e_c00439{width:20.700000px;}
._25_c00439{width:22.791000px;}
._20_c00439{width:23.961000px;}
._1d_c00439{width:25.131000px;}
._6_c00439{width:26.730000px;}
._1a_c00439{width:28.686000px;}
._5_c00439{width:30.195000px;}
._1c_c00439{width:32.901000px;}
._24_c00439{width:37.455000px;}
._18_c00439{width:41.244000px;}
._26_c00439{width:86.343000px;}
._4_c00439{width:100.536000px;}
._27_c00439{width:552.744000px;}
.fc2_c00439{color:transparent;}
.fc1_c00439{color:rgb(128,128,128);}
.fc0_c00439{color:rgb(0,0,0);}
.fs9_c00439{font-size:48.000000px;}
.fs2_c00439{font-size:57.000000px;}
.fs7_c00439{font-size:60.000000px;}
.fs6_c00439{font-size:63.000000px;}
.fs5_c00439{font-size:66.000000px;}
.fs4_c00439{font-size:69.000000px;}
.fs3_c00439{font-size:81.000000px;}
.fs1_c00439{font-size:99.000000px;}
.fs0_c00439{font-size:132.000000px;}
.fs8_c00439{font-size:303.000000px;}
.y0_c00439{bottom:0.000000px;}
.y24_c00439{bottom:3.105000px;}
.y23_c00439{bottom:7.228363px;}
.y22_c00439{bottom:54.600000px;}
.y21_c00439{bottom:83.400000px;}
.y1f_c00439{bottom:89.100000px;}
.y20_c00439{bottom:108.300000px;}
.y1e_c00439{bottom:157.500000px;}
.y1d_c00439{bottom:181.950000px;}
.y1c_c00439{bottom:205.800000px;}
.y1b_c00439{bottom:230.400000px;}
.y1a_c00439{bottom:254.850000px;}
.y19_c00439{bottom:279.450000px;}
.y18_c00439{bottom:304.050000px;}
.y17_c00439{bottom:328.050000px;}
.y16_c00439{bottom:352.950000px;}
.y15_c00439{bottom:376.950000px;}
.y14_c00439{bottom:401.550000px;}
.y13_c00439{bottom:425.550000px;}
.y12_c00439{bottom:449.850000px;}
.y11_c00439{bottom:473.400000px;}
.y10_c00439{bottom:497.100000px;}
.yf_c00439{bottom:521.400000px;}
.ye_c00439{bottom:544.950000px;}
.yd_c00439{bottom:617.550000px;}
.yc_c00439{bottom:641.850000px;}
.yb_c00439{bottom:666.150000px;}
.ya_c00439{bottom:690.150000px;}
.y9_c00439{bottom:714.150000px;}
.y8_c00439{bottom:738.150000px;}
.y7_c00439{bottom:762.300000px;}
.y6_c00439{bottom:786.300000px;}
.y5_c00439{bottom:810.300000px;}
.y4_c00439{bottom:834.600000px;}
.y3_c00439{bottom:858.600000px;}
.y2_c00439{bottom:882.600000px;}
.y1_c00439{bottom:916.650000px;}
.h8_c00439{height:13.200074px;}
.h9_c00439{height:43.804688px;}
.h4_c00439{height:57.445312px;}
.h6_c00439{height:70.224609px;}
.h3_c00439{height:79.497070px;}
.h5_c00439{height:87.361816px;}
.h2_c00439{height:167.126953px;}
.h7_c00439{height:323.301000px;}
.h0_c00439{height:980.100000px;}
.h1_c00439{height:980.250000px;}
.w2_c00439{width:104.875500px;}
.w1_c00439{width:663.000000px;}
.w0_c00439{width:663.150000px;}
.x0_c00439{left:0.000000px;}
.x1_c00439{left:116.400000px;}
.x2_c00439{left:117.450000px;}
.x3_c00439{left:118.500000px;}
.x4_c00439{left:121.050000px;}
.x5_c00439{left:122.400000px;}
.x6_c00439{left:123.900000px;}
.x7_c00439{left:125.250000px;}
.x8_c00439{left:126.450000px;}
.x9_c00439{left:129.900000px;}
.xa_c00439{left:130.950000px;}
.xb_c00439{left:132.000000px;}
.xd_c00439{left:134.550000px;}
.xe_c00439{left:184.650000px;}
.xc_c00439{left:223.350000px;}
.x12_c00439{left:283.389267px;}
.xf_c00439{left:299.700000px;}
.x10_c00439{left:436.950000px;}
.x11_c00439{left:442.350000px;}
@media print{
.v0_c00439{vertical-align:0.000000pt;}
.v1_c00439{vertical-align:156.800000pt;}
.ls4_c00439{letter-spacing:0.000000pt;}
.ls0_c00439{letter-spacing:2.666667pt;}
.ls1_c00439{letter-spacing:5.600000pt;}
.ls2_c00439{letter-spacing:15.186667pt;}
.ls3_c00439{letter-spacing:29.333333pt;}
.ws0_c00439{word-spacing:0.000000pt;}
._2_c00439{margin-left:-53.621333pt;}
._0_c00439{margin-left:-48.224000pt;}
._1_c00439{margin-left:-45.056000pt;}
._3_c00439{margin-left:-35.434667pt;}
._13_c00439{margin-left:-20.592000pt;}
._8_c00439{margin-left:-18.568000pt;}
._11_c00439{margin-left:-17.424000pt;}
._1f_c00439{margin-left:-13.122667pt;}
._23_c00439{margin-left:-9.357333pt;}
._f_c00439{margin-left:-8.448000pt;}
._e_c00439{margin-left:-6.776000pt;}
._21_c00439{margin-left:-5.472000pt;}
._9_c00439{margin-left:-4.488000pt;}
._10_c00439{margin-left:-3.256000pt;}
._19_c00439{margin-left:-1.594667pt;}
._a_c00439{width:1.584000pt;}
._12_c00439{width:2.816000pt;}
._22_c00439{width:3.722667pt;}
._16_c00439{width:4.632000pt;}
._b_c00439{width:6.160000pt;}
._15_c00439{width:7.322667pt;}
._17_c00439{width:8.480000pt;}
._d_c00439{width:10.208000pt;}
._c_c00439{width:11.704000pt;}
._14_c00439{width:13.426667pt;}
._7_c00439{width:14.520000pt;}
._1b_c00439{width:16.490667pt;}
._1e_c00439{width:18.400000pt;}
._25_c00439{width:20.258667pt;}
._20_c00439{width:21.298667pt;}
._1d_c00439{width:22.338667pt;}
._6_c00439{width:23.760000pt;}
._1a_c00439{width:25.498667pt;}
._5_c00439{width:26.840000pt;}
._1c_c00439{width:29.245333pt;}
._24_c00439{width:33.293333pt;}
._18_c00439{width:36.661333pt;}
._26_c00439{width:76.749333pt;}
._4_c00439{width:89.365333pt;}
._27_c00439{width:491.328000pt;}
.fs9_c00439{font-size:42.666667pt;}
.fs2_c00439{font-size:50.666667pt;}
.fs7_c00439{font-size:53.333333pt;}
.fs6_c00439{font-size:56.000000pt;}
.fs5_c00439{font-size:58.666667pt;}
.fs4_c00439{font-size:61.333333pt;}
.fs3_c00439{font-size:72.000000pt;}
.fs1_c00439{font-size:88.000000pt;}
.fs0_c00439{font-size:117.333333pt;}
.fs8_c00439{font-size:269.333333pt;}
.y0_c00439{bottom:0.000000pt;}
.y24_c00439{bottom:2.760000pt;}
.y23_c00439{bottom:6.425212pt;}
.y22_c00439{bottom:48.533333pt;}
.y21_c00439{bottom:74.133333pt;}
.y1f_c00439{bottom:79.200000pt;}
.y20_c00439{bottom:96.266667pt;}
.y1e_c00439{bottom:140.000000pt;}
.y1d_c00439{bottom:161.733333pt;}
.y1c_c00439{bottom:182.933333pt;}
.y1b_c00439{bottom:204.800000pt;}
.y1a_c00439{bottom:226.533333pt;}
.y19_c00439{bottom:248.400000pt;}
.y18_c00439{bottom:270.266667pt;}
.y17_c00439{bottom:291.600000pt;}
.y16_c00439{bottom:313.733333pt;}
.y15_c00439{bottom:335.066667pt;}
.y14_c00439{bottom:356.933333pt;}
.y13_c00439{bottom:378.266667pt;}
.y12_c00439{bottom:399.866667pt;}
.y11_c00439{bottom:420.800000pt;}
.y10_c00439{bottom:441.866667pt;}
.yf_c00439{bottom:463.466667pt;}
.ye_c00439{bottom:484.400000pt;}
.yd_c00439{bottom:548.933333pt;}
.yc_c00439{bottom:570.533333pt;}
.yb_c00439{bottom:592.133333pt;}
.ya_c00439{bottom:613.466667pt;}
.y9_c00439{bottom:634.800000pt;}
.y8_c00439{bottom:656.133333pt;}
.y7_c00439{bottom:677.600000pt;}
.y6_c00439{bottom:698.933333pt;}
.y5_c00439{bottom:720.266667pt;}
.y4_c00439{bottom:741.866667pt;}
.y3_c00439{bottom:763.200000pt;}
.y2_c00439{bottom:784.533333pt;}
.y1_c00439{bottom:814.800000pt;}
.h8_c00439{height:11.733399pt;}
.h9_c00439{height:38.937500pt;}
.h4_c00439{height:51.062500pt;}
.h6_c00439{height:62.421875pt;}
.h3_c00439{height:70.664062pt;}
.h5_c00439{height:77.654948pt;}
.h2_c00439{height:148.557292pt;}
.h7_c00439{height:287.378667pt;}
.h0_c00439{height:871.200000pt;}
.h1_c00439{height:871.333333pt;}
.w2_c00439{width:93.222667pt;}
.w1_c00439{width:589.333333pt;}
.w0_c00439{width:589.466667pt;}
.x0_c00439{left:0.000000pt;}
.x1_c00439{left:103.466667pt;}
.x2_c00439{left:104.400000pt;}
.x3_c00439{left:105.333333pt;}
.x4_c00439{left:107.600000pt;}
.x5_c00439{left:108.800000pt;}
.x6_c00439{left:110.133333pt;}
.x7_c00439{left:111.333333pt;}
.x8_c00439{left:112.400000pt;}
.x9_c00439{left:115.466667pt;}
.xa_c00439{left:116.400000pt;}
.xb_c00439{left:117.333333pt;}
.xd_c00439{left:119.600000pt;}
.xe_c00439{left:164.133333pt;}
.xc_c00439{left:198.533333pt;}
.x12_c00439{left:251.901571pt;}
.xf_c00439{left:266.400000pt;}
.x10_c00439{left:388.400000pt;}
.x11_c00439{left:393.200000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_46ecc8476f1d184efa1c7983.woff2')format("woff");}.ff1_c00440{font-family:ff1_c00440;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00440;src:url('chunks/assets/font_f1bb3f1520e6aed378348241.woff2')format("woff");}.ff2_c00440{font-family:ff2_c00440;line-height:1.437000;font-style:normal;font-weight:normal;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_0e8dfb2add2dbb18c91cabf6.woff2')format("woff");}.ff3_c00440{font-family:ff3_c00440;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00440;src:url('chunks/assets/font_b094a46392a986064033c542.woff2')format("woff");}.ff4_c00440{font-family:ff4_c00440;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00440;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff5_c00440{font-family:ff5_c00440;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00440;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c00440{font-family:ff6_c00440;line-height:1.219238;font-style: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);}
.m1_c00440{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.v0_c00440{vertical-align:0.000000px;}
.ls0_c00440{letter-spacing:0.000000px;}
.ls2_c00440{letter-spacing:9.000000px;}
.ls1_c00440{letter-spacing:15.000000px;}
.sc__c00440{text-shadow:none;}
.sc0_c00440{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00440{-webkit-text-stroke:0px transparent;}
.sc0_c00440{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00440{word-spacing:-94.356000px;}
.ws2_c00440{word-spacing:-76.686000px;}
.ws1_c00440{word-spacing:-23.859000px;}
.ws4_c00440{word-spacing:-20.250000px;}
.ws3_c00440{word-spacing:-17.352000px;}
.ws5_c00440{word-spacing:0.000000px;}
._18_c00440{margin-left:-34.164000px;}
._23_c00440{margin-left:-29.241000px;}
._1a_c00440{margin-left:-27.459000px;}
._19_c00440{margin-left:-26.082000px;}
._d_c00440{margin-left:-23.100000px;}
._11_c00440{margin-left:-17.352000px;}
._8_c00440{margin-left:-16.200000px;}
._15_c00440{margin-left:-12.168000px;}
._24_c00440{margin-left:-10.818000px;}
._f_c00440{margin-left:-9.513000px;}
._6_c00440{margin-left:-8.415000px;}
._12_c00440{margin-left:-6.741000px;}
._5_c00440{margin-left:-5.544000px;}
._2_c00440{margin-left:-3.861000px;}
._4_c00440{margin-left:-2.574000px;}
._3_c00440{margin-left:-1.485000px;}
._e_c00440{width:1.494000px;}
._9_c00440{width:2.529000px;}
._1_c00440{width:3.663000px;}
._0_c00440{width:5.148000px;}
._a_c00440{width:6.579000px;}
._b_c00440{width:8.037000px;}
._c_c00440{width:9.783000px;}
._1b_c00440{width:11.025000px;}
._17_c00440{width:12.762000px;}
._20_c00440{width:13.869000px;}
._1e_c00440{width:15.123000px;}
._1d_c00440{width:16.668000px;}
._21_c00440{width:18.144000px;}
._1c_c00440{width:23.154000px;}
._10_c00440{width:25.848000px;}
._25_c00440{width:28.899000px;}
._22_c00440{width:32.400000px;}
._1f_c00440{width:33.498000px;}
._14_c00440{width:35.037000px;}
._13_c00440{width:36.099000px;}
._7_c00440{width:45.477000px;}
._16_c00440{width:159.378000px;}
._26_c00440{width:276.786000px;}
.fc2_c00440{color:transparent;}
.fc1_c00440{color:rgb(128,128,128);}
.fc0_c00440{color:rgb(0,0,0);}
.fs5_c00440{font-size:48.000000px;}
.fs4_c00440{font-size:72.000000px;}
.fs2_c00440{font-size:81.000000px;}
.fs3_c00440{font-size:87.000000px;}
.fs0_c00440{font-size:99.000000px;}
.fs1_c00440{font-size:102.000000px;}
.y0_c00440{bottom:0.000000px;}
.y26_c00440{bottom:3.105000px;}
.y25_c00440{bottom:7.228371px;}
.y24_c00440{bottom:54.765000px;}
.y23_c00440{bottom:82.665000px;}
.y22_c00440{bottom:108.015000px;}
.y21_c00440{bottom:132.765000px;}
.y20_c00440{bottom:157.365000px;}
.y1f_c00440{bottom:181.365000px;}
.y1e_c00440{bottom:205.665000px;}
.y1d_c00440{bottom:230.265000px;}
.y1c_c00440{bottom:254.565000px;}
.y1b_c00440{bottom:278.865000px;}
.y1a_c00440{bottom:302.865000px;}
.y19_c00440{bottom:327.315000px;}
.y18_c00440{bottom:351.315000px;}
.y17_c00440{bottom:375.315000px;}
.y16_c00440{bottom:399.315000px;}
.y15_c00440{bottom:423.315000px;}
.y14_c00440{bottom:447.615000px;}
.y13_c00440{bottom:471.465000px;}
.y12_c00440{bottom:495.165000px;}
.y11_c00440{bottom:519.765000px;}
.y10_c00440{bottom:543.465000px;}
.yf_c00440{bottom:567.465000px;}
.ye_c00440{bottom:591.315000px;}
.yd_c00440{bottom:615.015000px;}
.yc_c00440{bottom:639.315000px;}
.yb_c00440{bottom:663.315000px;}
.ya_c00440{bottom:687.165000px;}
.y9_c00440{bottom:711.165000px;}
.y8_c00440{bottom:737.415000px;}
.y7_c00440{bottom:759.465000px;}
.y6_c00440{bottom:783.765000px;}
.y5_c00440{bottom:808.365000px;}
.y4_c00440{bottom:832.065000px;}
.y3_c00440{bottom:856.965000px;}
.y2_c00440{bottom:880.515000px;}
.y1_c00440{bottom:915.615000px;}
.h6_c00440{height:13.200074px;}
.h7_c00440{height:43.804688px;}
.h3_c00440{height:79.497070px;}
.h5_c00440{height:84.269531px;}
.h4_c00440{height:91.176000px;}
.h2_c00440{height:115.870605px;}
.h0_c00440{height:989.025000px;}
.h1_c00440{height:989.250000px;}
.w1_c00440{width:104.875500px;}
.w0_c00440{width:672.000000px;}
.x0_c00440{left:0.000000px;}
.x5_c00440{left:45.600000px;}
.x9_c00440{left:48.300000px;}
.xc_c00440{left:49.950000px;}
.x10_c00440{left:55.050000px;}
.x2_c00440{left:58.050000px;}
.x3_c00440{left:60.450000px;}
.x4_c00440{left:62.550000px;}
.x6_c00440{left:64.800000px;}
.x7_c00440{left:66.150000px;}
.x8_c00440{left:67.950000px;}
.xa_c00440{left:69.300000px;}
.xb_c00440{left:71.250000px;}
.xd_c00440{left:72.600000px;}
.xe_c00440{left:73.800000px;}
.xf_c00440{left:76.500000px;}
.x11_c00440{left:78.000000px;}
.x12_c00440{left:139.650000px;}
.x13_c00440{left:177.450000px;}
.x1_c00440{left:184.950000px;}
.x15_c00440{left:287.814240px;}
.x14_c00440{left:351.900000px;}
@media print{
.v0_c00440{vertical-align:0.000000pt;}
.ls0_c00440{letter-spacing:0.000000pt;}
.ls2_c00440{letter-spacing:8.000000pt;}
.ls1_c00440{letter-spacing:13.333333pt;}
.ws0_c00440{word-spacing:-83.872000pt;}
.ws2_c00440{word-spacing:-68.165333pt;}
.ws1_c00440{word-spacing:-21.208000pt;}
.ws4_c00440{word-spacing:-18.000000pt;}
.ws3_c00440{word-spacing:-15.424000pt;}
.ws5_c00440{word-spacing:0.000000pt;}
._18_c00440{margin-left:-30.368000pt;}
._23_c00440{margin-left:-25.992000pt;}
._1a_c00440{margin-left:-24.408000pt;}
._19_c00440{margin-left:-23.184000pt;}
._d_c00440{margin-left:-20.533333pt;}
._11_c00440{margin-left:-15.424000pt;}
._8_c00440{margin-left:-14.400000pt;}
._15_c00440{margin-left:-10.816000pt;}
._24_c00440{margin-left:-9.616000pt;}
._f_c00440{margin-left:-8.456000pt;}
._6_c00440{margin-left:-7.480000pt;}
._12_c00440{margin-left:-5.992000pt;}
._5_c00440{margin-left:-4.928000pt;}
._2_c00440{margin-left:-3.432000pt;}
._4_c00440{margin-left:-2.288000pt;}
._3_c00440{margin-left:-1.320000pt;}
._e_c00440{width:1.328000pt;}
._9_c00440{width:2.248000pt;}
._1_c00440{width:3.256000pt;}
._0_c00440{width:4.576000pt;}
._a_c00440{width:5.848000pt;}
._b_c00440{width:7.144000pt;}
._c_c00440{width:8.696000pt;}
._1b_c00440{width:9.800000pt;}
._17_c00440{width:11.344000pt;}
._20_c00440{width:12.328000pt;}
._1e_c00440{width:13.442667pt;}
._1d_c00440{width:14.816000pt;}
._21_c00440{width:16.128000pt;}
._1c_c00440{width:20.581333pt;}
._10_c00440{width:22.976000pt;}
._25_c00440{width:25.688000pt;}
._22_c00440{width:28.800000pt;}
._1f_c00440{width:29.776000pt;}
._14_c00440{width:31.144000pt;}
._13_c00440{width:32.088000pt;}
._7_c00440{width:40.424000pt;}
._16_c00440{width:141.669333pt;}
._26_c00440{width:246.032000pt;}
.fs5_c00440{font-size:42.666667pt;}
.fs4_c00440{font-size:64.000000pt;}
.fs2_c00440{font-size:72.000000pt;}
.fs3_c00440{font-size:77.333333pt;}
.fs0_c00440{font-size:88.000000pt;}
.fs1_c00440{font-size:90.666667pt;}
.y0_c00440{bottom:0.000000pt;}
.y26_c00440{bottom:2.760000pt;}
.y25_c00440{bottom:6.425219pt;}
.y24_c00440{bottom:48.680000pt;}
.y23_c00440{bottom:73.480000pt;}
.y22_c00440{bottom:96.013333pt;}
.y21_c00440{bottom:118.013333pt;}
.y20_c00440{bottom:139.880000pt;}
.y1f_c00440{bottom:161.213333pt;}
.y1e_c00440{bottom:182.813333pt;}
.y1d_c00440{bottom:204.680000pt;}
.y1c_c00440{bottom:226.280000pt;}
.y1b_c00440{bottom:247.880000pt;}
.y1a_c00440{bottom:269.213333pt;}
.y19_c00440{bottom:290.946667pt;}
.y18_c00440{bottom:312.280000pt;}
.y17_c00440{bottom:333.613333pt;}
.y16_c00440{bottom:354.946667pt;}
.y15_c00440{bottom:376.280000pt;}
.y14_c00440{bottom:397.880000pt;}
.y13_c00440{bottom:419.080000pt;}
.y12_c00440{bottom:440.146667pt;}
.y11_c00440{bottom:462.013333pt;}
.y10_c00440{bottom:483.080000pt;}
.yf_c00440{bottom:504.413333pt;}
.ye_c00440{bottom:525.613333pt;}
.yd_c00440{bottom:546.680000pt;}
.yc_c00440{bottom:568.280000pt;}
.yb_c00440{bottom:589.613333pt;}
.ya_c00440{bottom:610.813333pt;}
.y9_c00440{bottom:632.146667pt;}
.y8_c00440{bottom:655.480000pt;}
.y7_c00440{bottom:675.080000pt;}
.y6_c00440{bottom:696.680000pt;}
.y5_c00440{bottom:718.546667pt;}
.y4_c00440{bottom:739.613333pt;}
.y3_c00440{bottom:761.746667pt;}
.y2_c00440{bottom:782.680000pt;}
.y1_c00440{bottom:813.880000pt;}
.h6_c00440{height:11.733399pt;}
.h7_c00440{height:38.937500pt;}
.h3_c00440{height:70.664062pt;}
.h5_c00440{height:74.906250pt;}
.h4_c00440{height:81.045333pt;}
.h2_c00440{height:102.996094pt;}
.h0_c00440{height:879.133333pt;}
.h1_c00440{height:879.333333pt;}
.w1_c00440{width:93.222667pt;}
.w0_c00440{width:597.333333pt;}
.x0_c00440{left:0.000000pt;}
.x5_c00440{left:40.533333pt;}
.x9_c00440{left:42.933333pt;}
.xc_c00440{left:44.400000pt;}
.x10_c00440{left:48.933333pt;}
.x2_c00440{left:51.600000pt;}
.x3_c00440{left:53.733333pt;}
.x4_c00440{left:55.600000pt;}
.x6_c00440{left:57.600000pt;}
.x7_c00440{left:58.800000pt;}
.x8_c00440{left:60.400000pt;}
.xa_c00440{left:61.600000pt;}
.xb_c00440{left:63.333333pt;}
.xd_c00440{left:64.533333pt;}
.xe_c00440{left:65.600000pt;}
.xf_c00440{left:68.000000pt;}
.x11_c00440{left:69.333333pt;}
.x12_c00440{left:124.133333pt;}
.x13_c00440{left:157.733333pt;}
.x1_c00440{left:164.400000pt;}
.x15_c00440{left:255.834880pt;}
.x14_c00440{left:312.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ae9ac9898818756ed21aa6f5.woff2')format("woff");}.ff1_c00441{font-family:ff1_c00441;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00441;src:url('chunks/assets/font_efef8edd2c385ae72e4177f5.woff2')format("woff");}.ff2_c00441{font-family:ff2_c00441;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00441;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff3_c00441{font-family:ff3_c00441;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00441;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff4_c00441{font-family:ff4_c00441;line-height:1.219238;font-style: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;}
.ls2_c00441{letter-spacing:0.000000px;}
.ls0_c00441{letter-spacing:2.802000px;}
.ls3_c00441{letter-spacing:9.000000px;}
.ls1_c00441{letter-spacing:17.016000px;}
.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;}
}
.ws3_c00441{word-spacing:-20.250000px;}
.ws0_c00441{word-spacing:-17.352000px;}
.ws2_c00441{word-spacing:-0.570000px;}
.ws4_c00441{word-spacing:0.000000px;}
.ws1_c00441{word-spacing:89.952000px;}
._18_c00441{margin-left:-23.976000px;}
._13_c00441{margin-left:-15.192000px;}
._b_c00441{margin-left:-11.826000px;}
._14_c00441{margin-left:-10.254000px;}
._12_c00441{margin-left:-9.000000px;}
._f_c00441{margin-left:-7.614000px;}
._6_c00441{margin-left:-5.913000px;}
._8_c00441{margin-left:-4.536000px;}
._17_c00441{margin-left:-3.411000px;}
._3_c00441{margin-left:-2.349000px;}
._9_c00441{margin-left:-1.296000px;}
._2_c00441{width:1.944000px;}
._1_c00441{width:3.645000px;}
._5_c00441{width:4.860000px;}
._0_c00441{width:5.994000px;}
._7_c00441{width:8.019000px;}
._4_c00441{width:9.315000px;}
._16_c00441{width:10.458000px;}
._a_c00441{width:11.583000px;}
._d_c00441{width:12.879000px;}
._e_c00441{width:14.175000px;}
._11_c00441{width:15.228000px;}
._10_c00441{width:17.172000px;}
._19_c00441{width:18.306000px;}
._15_c00441{width:37.098000px;}
._c_c00441{width:45.765000px;}
.fc2_c00441{color:transparent;}
.fc1_c00441{color:rgb(128,128,128);}
.fc0_c00441{color:rgb(0,0,0);}
.fs5_c00441{font-size:48.000000px;}
.fs3_c00441{font-size:57.000000px;}
.fs1_c00441{font-size:72.000000px;}
.fs4_c00441{font-size:78.000000px;}
.fs0_c00441{font-size:81.000000px;}
.fs2_c00441{font-size:96.000000px;}
.y0_c00441{bottom:0.000000px;}
.y25_c00441{bottom:3.105000px;}
.y24_c00441{bottom:7.228371px;}
.y23_c00441{bottom:54.315000px;}
.y22_c00441{bottom:77.715000px;}
.y21_c00441{bottom:103.365000px;}
.y20_c00441{bottom:127.365000px;}
.y1f_c00441{bottom:151.965000px;}
.y1e_c00441{bottom:176.565000px;}
.y1d_c00441{bottom:201.165000px;}
.y1c_c00441{bottom:225.165000px;}
.y1b_c00441{bottom:250.065000px;}
.y1a_c00441{bottom:274.365000px;}
.y19_c00441{bottom:298.365000px;}
.y18_c00441{bottom:322.665000px;}
.y17_c00441{bottom:346.965000px;}
.y16_c00441{bottom:371.265000px;}
.y15_c00441{bottom:395.565000px;}
.y14_c00441{bottom:420.165000px;}
.y13_c00441{bottom:444.165000px;}
.y12_c00441{bottom:467.115000px;}
.y11_c00441{bottom:491.115000px;}
.y10_c00441{bottom:515.715000px;}
.yf_c00441{bottom:539.415000px;}
.ye_c00441{bottom:563.415000px;}
.yd_c00441{bottom:588.015000px;}
.yc_c00441{bottom:612.015000px;}
.yb_c00441{bottom:637.515000px;}
.ya_c00441{bottom:660.465000px;}
.y9_c00441{bottom:684.465000px;}
.y8_c00441{bottom:708.765000px;}
.y7_c00441{bottom:732.765000px;}
.y6_c00441{bottom:757.065000px;}
.y5_c00441{bottom:781.065000px;}
.y4_c00441{bottom:805.365000px;}
.y3_c00441{bottom:829.965000px;}
.y2_c00441{bottom:853.965000px;}
.y1_c00441{bottom:877.965000px;}
.h7_c00441{height:13.200074px;}
.h8_c00441{height:43.804688px;}
.h2_c00441{height:79.497070px;}
.h3_c00441{height:84.269531px;}
.h6_c00441{height:91.160156px;}
.h4_c00441{height:94.218750px;}
.h5_c00441{height:98.756836px;}
.h1_c00441{height:986.250000px;}
.h0_c00441{height:986.325000px;}
.w2_c00441{width:104.875500px;}
.w0_c00441{width:667.425000px;}
.w1_c00441{width:667.500000px;}
.x0_c00441{left:0.000000px;}
.x6_c00441{left:25.650000px;}
.x2_c00441{left:102.900000px;}
.xf_c00441{left:108.450000px;}
.xe_c00441{left:109.800000px;}
.xb_c00441{left:112.650000px;}
.xa_c00441{left:113.700000px;}
.x9_c00441{left:114.750000px;}
.x8_c00441{left:115.800000px;}
.x5_c00441{left:118.200000px;}
.x4_c00441{left:119.550000px;}
.x3_c00441{left:120.600000px;}
.x1_c00441{left:122.850000px;}
.xc_c00441{left:136.950000px;}
.x7_c00441{left:141.450000px;}
.xd_c00441{left:268.050000px;}
.x11_c00441{left:285.526749px;}
.x10_c00441{left:535.650000px;}
@media print{
.v0_c00441{vertical-align:0.000000pt;}
.ls2_c00441{letter-spacing:0.000000pt;}
.ls0_c00441{letter-spacing:2.490667pt;}
.ls3_c00441{letter-spacing:8.000000pt;}
.ls1_c00441{letter-spacing:15.125333pt;}
.ws3_c00441{word-spacing:-18.000000pt;}
.ws0_c00441{word-spacing:-15.424000pt;}
.ws2_c00441{word-spacing:-0.506667pt;}
.ws4_c00441{word-spacing:0.000000pt;}
.ws1_c00441{word-spacing:79.957333pt;}
._18_c00441{margin-left:-21.312000pt;}
._13_c00441{margin-left:-13.504000pt;}
._b_c00441{margin-left:-10.512000pt;}
._14_c00441{margin-left:-9.114667pt;}
._12_c00441{margin-left:-8.000000pt;}
._f_c00441{margin-left:-6.768000pt;}
._6_c00441{margin-left:-5.256000pt;}
._8_c00441{margin-left:-4.032000pt;}
._17_c00441{margin-left:-3.032000pt;}
._3_c00441{margin-left:-2.088000pt;}
._9_c00441{margin-left:-1.152000pt;}
._2_c00441{width:1.728000pt;}
._1_c00441{width:3.240000pt;}
._5_c00441{width:4.320000pt;}
._0_c00441{width:5.328000pt;}
._7_c00441{width:7.128000pt;}
._4_c00441{width:8.280000pt;}
._16_c00441{width:9.296000pt;}
._a_c00441{width:10.296000pt;}
._d_c00441{width:11.448000pt;}
._e_c00441{width:12.600000pt;}
._11_c00441{width:13.536000pt;}
._10_c00441{width:15.264000pt;}
._19_c00441{width:16.272000pt;}
._15_c00441{width:32.976000pt;}
._c_c00441{width:40.680000pt;}
.fs5_c00441{font-size:42.666667pt;}
.fs3_c00441{font-size:50.666667pt;}
.fs1_c00441{font-size:64.000000pt;}
.fs4_c00441{font-size:69.333333pt;}
.fs0_c00441{font-size:72.000000pt;}
.fs2_c00441{font-size:85.333333pt;}
.y0_c00441{bottom:0.000000pt;}
.y25_c00441{bottom:2.760000pt;}
.y24_c00441{bottom:6.425219pt;}
.y23_c00441{bottom:48.280000pt;}
.y22_c00441{bottom:69.080000pt;}
.y21_c00441{bottom:91.880000pt;}
.y20_c00441{bottom:113.213333pt;}
.y1f_c00441{bottom:135.080000pt;}
.y1e_c00441{bottom:156.946667pt;}
.y1d_c00441{bottom:178.813333pt;}
.y1c_c00441{bottom:200.146667pt;}
.y1b_c00441{bottom:222.280000pt;}
.y1a_c00441{bottom:243.880000pt;}
.y19_c00441{bottom:265.213333pt;}
.y18_c00441{bottom:286.813333pt;}
.y17_c00441{bottom:308.413333pt;}
.y16_c00441{bottom:330.013333pt;}
.y15_c00441{bottom:351.613333pt;}
.y14_c00441{bottom:373.480000pt;}
.y13_c00441{bottom:394.813333pt;}
.y12_c00441{bottom:415.213333pt;}
.y11_c00441{bottom:436.546667pt;}
.y10_c00441{bottom:458.413333pt;}
.yf_c00441{bottom:479.480000pt;}
.ye_c00441{bottom:500.813333pt;}
.yd_c00441{bottom:522.680000pt;}
.yc_c00441{bottom:544.013333pt;}
.yb_c00441{bottom:566.680000pt;}
.ya_c00441{bottom:587.080000pt;}
.y9_c00441{bottom:608.413333pt;}
.y8_c00441{bottom:630.013333pt;}
.y7_c00441{bottom:651.346667pt;}
.y6_c00441{bottom:672.946667pt;}
.y5_c00441{bottom:694.280000pt;}
.y4_c00441{bottom:715.880000pt;}
.y3_c00441{bottom:737.746667pt;}
.y2_c00441{bottom:759.080000pt;}
.y1_c00441{bottom:780.413333pt;}
.h7_c00441{height:11.733399pt;}
.h8_c00441{height:38.937500pt;}
.h2_c00441{height:70.664062pt;}
.h3_c00441{height:74.906250pt;}
.h6_c00441{height:81.031250pt;}
.h4_c00441{height:83.750000pt;}
.h5_c00441{height:87.783854pt;}
.h1_c00441{height:876.666667pt;}
.h0_c00441{height:876.733333pt;}
.w2_c00441{width:93.222667pt;}
.w0_c00441{width:593.266667pt;}
.w1_c00441{width:593.333333pt;}
.x0_c00441{left:0.000000pt;}
.x6_c00441{left:22.800000pt;}
.x2_c00441{left:91.466667pt;}
.xf_c00441{left:96.400000pt;}
.xe_c00441{left:97.600000pt;}
.xb_c00441{left:100.133333pt;}
.xa_c00441{left:101.066667pt;}
.x9_c00441{left:102.000000pt;}
.x8_c00441{left:102.933333pt;}
.x5_c00441{left:105.066667pt;}
.x4_c00441{left:106.266667pt;}
.x3_c00441{left:107.200000pt;}
.x1_c00441{left:109.200000pt;}
.xc_c00441{left:121.733333pt;}
.x7_c00441{left:125.733333pt;}
.xd_c00441{left:238.266667pt;}
.x11_c00441{left:253.801554pt;}
.x10_c00441{left:476.133333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_99581a3b1c32334225110ba8.woff2')format("woff");}.ff1_c00442{font-family:ff1_c00442;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00442;src:url('chunks/assets/font_e8e98fe33378734768b4ed4d.woff2')format("woff");}.ff2_c00442{font-family:ff2_c00442;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00442;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff3_c00442{font-family:ff3_c00442;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00442{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00442{vertical-align:0.000000px;}
.ls0_c00442{letter-spacing:0.000000px;}
.sc__c00442{text-shadow:none;}
.sc0_c00442{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00442{-webkit-text-stroke:0px transparent;}
.sc0_c00442{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00442{word-spacing:-20.250000px;}
.ws0_c00442{word-spacing:-17.352000px;}
.ws2_c00442{word-spacing:0.000000px;}
._16_c00442{margin-left:-23.409000px;}
._7_c00442{margin-left:-20.979000px;}
._e_c00442{margin-left:-18.873000px;}
._20_c00442{margin-left:-17.016000px;}
._1b_c00442{margin-left:-15.876000px;}
._1c_c00442{margin-left:-13.410000px;}
._1e_c00442{margin-left:-11.403000px;}
._f_c00442{margin-left:-8.991000px;}
._12_c00442{margin-left:-7.428000px;}
._17_c00442{margin-left:-5.652000px;}
._8_c00442{margin-left:-4.374000px;}
._18_c00442{margin-left:-3.276000px;}
._2_c00442{margin-left:-2.268000px;}
._a_c00442{margin-left:-1.215000px;}
._11_c00442{width:1.008000px;}
._0_c00442{width:2.106000px;}
._b_c00442{width:3.159000px;}
._3_c00442{width:4.212000px;}
._1_c00442{width:5.265000px;}
._4_c00442{width:6.804000px;}
._5_c00442{width:8.343000px;}
._6_c00442{width:10.044000px;}
._9_c00442{width:12.474000px;}
._1d_c00442{width:13.887000px;}
._c_c00442{width:14.985000px;}
._d_c00442{width:17.496000px;}
._1f_c00442{width:19.242000px;}
._15_c00442{width:36.297000px;}
._10_c00442{width:44.259000px;}
._13_c00442{width:52.974000px;}
._19_c00442{width:146.700000px;}
._14_c00442{width:304.740000px;}
._1a_c00442{width:379.533000px;}
.fc2_c00442{color:transparent;}
.fc1_c00442{color:rgb(128,128,128);}
.fc0_c00442{color:rgb(0,0,0);}
.fs2_c00442{font-size:48.000000px;}
.fs1_c00442{font-size:72.000000px;}
.fs0_c00442{font-size:81.000000px;}
.y0_c00442{bottom:0.000000px;}
.y25_c00442{bottom:3.105000px;}
.y24_c00442{bottom:7.228371px;}
.y23_c00442{bottom:68.865000px;}
.y22_c00442{bottom:91.515000px;}
.y21_c00442{bottom:117.465000px;}
.y20_c00442{bottom:141.465000px;}
.y1f_c00442{bottom:166.065000px;}
.y1e_c00442{bottom:190.665000px;}
.y1d_c00442{bottom:214.665000px;}
.y1c_c00442{bottom:238.965000px;}
.y1b_c00442{bottom:263.265000px;}
.y1a_c00442{bottom:287.265000px;}
.y19_c00442{bottom:311.565000px;}
.y18_c00442{bottom:335.565000px;}
.y17_c00442{bottom:359.865000px;}
.y16_c00442{bottom:383.865000px;}
.y15_c00442{bottom:408.015000px;}
.y14_c00442{bottom:432.465000px;}
.y13_c00442{bottom:456.015000px;}
.y12_c00442{bottom:480.015000px;}
.y11_c00442{bottom:504.315000px;}
.y10_c00442{bottom:528.165000px;}
.yf_c00442{bottom:553.815000px;}
.ye_c00442{bottom:576.165000px;}
.yd_c00442{bottom:599.715000px;}
.yc_c00442{bottom:623.415000px;}
.yb_c00442{bottom:647.715000px;}
.ya_c00442{bottom:672.615000px;}
.y9_c00442{bottom:696.015000px;}
.y8_c00442{bottom:720.615000px;}
.y7_c00442{bottom:744.615000px;}
.y6_c00442{bottom:768.615000px;}
.y5_c00442{bottom:792.915000px;}
.y4_c00442{bottom:818.565000px;}
.y3_c00442{bottom:842.415000px;}
.y2_c00442{bottom:866.115000px;}
.y1_c00442{bottom:891.465000px;}
.h4_c00442{height:13.200074px;}
.h5_c00442{height:43.804688px;}
.h2_c00442{height:79.497070px;}
.h3_c00442{height:84.269531px;}
.h0_c00442{height:989.025000px;}
.h1_c00442{height:989.250000px;}
.w1_c00442{width:104.875500px;}
.w0_c00442{width:672.000000px;}
.x0_c00442{left:0.000000px;}
.x5_c00442{left:36.450000px;}
.x2_c00442{left:49.650000px;}
.x4_c00442{left:51.000000px;}
.x3_c00442{left:52.650000px;}
.x6_c00442{left:54.000000px;}
.x7_c00442{left:55.650000px;}
.x8_c00442{left:57.000000px;}
.x1_c00442{left:85.950000px;}
.xa_c00442{left:287.814240px;}
.x9_c00442{left:467.700000px;}
@media print{
.v0_c00442{vertical-align:0.000000pt;}
.ls0_c00442{letter-spacing:0.000000pt;}
.ws1_c00442{word-spacing:-18.000000pt;}
.ws0_c00442{word-spacing:-15.424000pt;}
.ws2_c00442{word-spacing:0.000000pt;}
._16_c00442{margin-left:-20.808000pt;}
._7_c00442{margin-left:-18.648000pt;}
._e_c00442{margin-left:-16.776000pt;}
._20_c00442{margin-left:-15.125333pt;}
._1b_c00442{margin-left:-14.112000pt;}
._1c_c00442{margin-left:-11.920000pt;}
._1e_c00442{margin-left:-10.136000pt;}
._f_c00442{margin-left:-7.992000pt;}
._12_c00442{margin-left:-6.602667pt;}
._17_c00442{margin-left:-5.024000pt;}
._8_c00442{margin-left:-3.888000pt;}
._18_c00442{margin-left:-2.912000pt;}
._2_c00442{margin-left:-2.016000pt;}
._a_c00442{margin-left:-1.080000pt;}
._11_c00442{width:0.896000pt;}
._0_c00442{width:1.872000pt;}
._b_c00442{width:2.808000pt;}
._3_c00442{width:3.744000pt;}
._1_c00442{width:4.680000pt;}
._4_c00442{width:6.048000pt;}
._5_c00442{width:7.416000pt;}
._6_c00442{width:8.928000pt;}
._9_c00442{width:11.088000pt;}
._1d_c00442{width:12.344000pt;}
._c_c00442{width:13.320000pt;}
._d_c00442{width:15.552000pt;}
._1f_c00442{width:17.104000pt;}
._15_c00442{width:32.264000pt;}
._10_c00442{width:39.341333pt;}
._13_c00442{width:47.088000pt;}
._19_c00442{width:130.400000pt;}
._14_c00442{width:270.880000pt;}
._1a_c00442{width:337.362667pt;}
.fs2_c00442{font-size:42.666667pt;}
.fs1_c00442{font-size:64.000000pt;}
.fs0_c00442{font-size:72.000000pt;}
.y0_c00442{bottom:0.000000pt;}
.y25_c00442{bottom:2.760000pt;}
.y24_c00442{bottom:6.425219pt;}
.y23_c00442{bottom:61.213333pt;}
.y22_c00442{bottom:81.346667pt;}
.y21_c00442{bottom:104.413333pt;}
.y20_c00442{bottom:125.746667pt;}
.y1f_c00442{bottom:147.613333pt;}
.y1e_c00442{bottom:169.480000pt;}
.y1d_c00442{bottom:190.813333pt;}
.y1c_c00442{bottom:212.413333pt;}
.y1b_c00442{bottom:234.013333pt;}
.y1a_c00442{bottom:255.346667pt;}
.y19_c00442{bottom:276.946667pt;}
.y18_c00442{bottom:298.280000pt;}
.y17_c00442{bottom:319.880000pt;}
.y16_c00442{bottom:341.213333pt;}
.y15_c00442{bottom:362.680000pt;}
.y14_c00442{bottom:384.413333pt;}
.y13_c00442{bottom:405.346667pt;}
.y12_c00442{bottom:426.680000pt;}
.y11_c00442{bottom:448.280000pt;}
.y10_c00442{bottom:469.480000pt;}
.yf_c00442{bottom:492.280000pt;}
.ye_c00442{bottom:512.146667pt;}
.yd_c00442{bottom:533.080000pt;}
.yc_c00442{bottom:554.146667pt;}
.yb_c00442{bottom:575.746667pt;}
.ya_c00442{bottom:597.880000pt;}
.y9_c00442{bottom:618.680000pt;}
.y8_c00442{bottom:640.546667pt;}
.y7_c00442{bottom:661.880000pt;}
.y6_c00442{bottom:683.213333pt;}
.y5_c00442{bottom:704.813333pt;}
.y4_c00442{bottom:727.613333pt;}
.y3_c00442{bottom:748.813333pt;}
.y2_c00442{bottom:769.880000pt;}
.y1_c00442{bottom:792.413333pt;}
.h4_c00442{height:11.733399pt;}
.h5_c00442{height:38.937500pt;}
.h2_c00442{height:70.664062pt;}
.h3_c00442{height:74.906250pt;}
.h0_c00442{height:879.133333pt;}
.h1_c00442{height:879.333333pt;}
.w1_c00442{width:93.222667pt;}
.w0_c00442{width:597.333333pt;}
.x0_c00442{left:0.000000pt;}
.x5_c00442{left:32.400000pt;}
.x2_c00442{left:44.133333pt;}
.x4_c00442{left:45.333333pt;}
.x3_c00442{left:46.800000pt;}
.x6_c00442{left:48.000000pt;}
.x7_c00442{left:49.466667pt;}
.x8_c00442{left:50.666667pt;}
.x1_c00442{left:76.400000pt;}
.xa_c00442{left:255.834880pt;}
.x9_c00442{left:415.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_2615bcaca2948767d035b909.woff2')format("woff");}.ff1_c00443{font-family:ff1_c00443;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00443;src:url('chunks/assets/font_4ca59fc7e3d8682f7834efa7.woff2')format("woff");}.ff2_c00443{font-family:ff2_c00443;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00443;src:url('chunks/assets/font_d4345940d888abc48aabbe46.woff2')format("woff");}.ff3_c00443{font-family:ff3_c00443;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00443;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff4_c00443{font-family:ff4_c00443;line-height:1.219238;font-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_c00443{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,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;}
.ls1_c00443{letter-spacing:0.000000px;}
.ls0_c00443{letter-spacing:1.080000px;}
.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;}
}
.ws1_c00443{word-spacing:-60.048000px;}
.ws0_c00443{word-spacing:-17.352000px;}
.ws2_c00443{word-spacing:0.000000px;}
._10_c00443{margin-left:-24.057000px;}
._11_c00443{margin-left:-21.303000px;}
._9_c00443{margin-left:-18.873000px;}
._17_c00443{margin-left:-17.739000px;}
._f_c00443{margin-left:-15.876000px;}
._1a_c00443{margin-left:-12.666000px;}
._12_c00443{margin-left:-9.477000px;}
._16_c00443{margin-left:-8.262000px;}
._d_c00443{margin-left:-6.966000px;}
._c_c00443{margin-left:-5.427000px;}
._a_c00443{margin-left:-3.807000px;}
._5_c00443{margin-left:-2.673000px;}
._b_c00443{margin-left:-1.053000px;}
._6_c00443{width:1.296000px;}
._4_c00443{width:2.673000px;}
._0_c00443{width:3.888000px;}
._1_c00443{width:5.103000px;}
._7_c00443{width:6.723000px;}
._3_c00443{width:7.776000px;}
._2_c00443{width:8.991000px;}
._8_c00443{width:10.854000px;}
._18_c00443{width:11.988000px;}
._e_c00443{width:13.365000px;}
._13_c00443{width:15.471000px;}
._19_c00443{width:17.253000px;}
._1b_c00443{width:22.710000px;}
._15_c00443{width:34.749000px;}
._14_c00443{width:89.175000px;}
.fc2_c00443{color:transparent;}
.fc1_c00443{color:rgb(128,128,128);}
.fc0_c00443{color:rgb(0,0,0);}
.fs3_c00443{font-size:48.000000px;}
.fs1_c00443{font-size:72.000000px;}
.fs0_c00443{font-size:81.000000px;}
.fs2_c00443{font-size:108.000000px;}
.y0_c00443{bottom:0.000000px;}
.y25_c00443{bottom:3.105000px;}
.y24_c00443{bottom:7.228371px;}
.y23_c00443{bottom:64.515000px;}
.y22_c00443{bottom:88.515000px;}
.y21_c00443{bottom:113.865000px;}
.y20_c00443{bottom:139.065000px;}
.y1f_c00443{bottom:163.365000px;}
.y1e_c00443{bottom:187.665000px;}
.y1d_c00443{bottom:211.965000px;}
.y1c_c00443{bottom:236.565000px;}
.y1b_c00443{bottom:260.565000px;}
.y1a_c00443{bottom:285.165000px;}
.y19_c00443{bottom:309.465000px;}
.y18_c00443{bottom:333.765000px;}
.y17_c00443{bottom:358.215000px;}
.y16_c00443{bottom:382.515000px;}
.y15_c00443{bottom:406.815000px;}
.y14_c00443{bottom:430.965000px;}
.y13_c00443{bottom:454.965000px;}
.y12_c00443{bottom:478.965000px;}
.y11_c00443{bottom:503.265000px;}
.y10_c00443{bottom:528.165000px;}
.yf_c00443{bottom:551.115000px;}
.ye_c00443{bottom:575.415000px;}
.yd_c00443{bottom:600.165000px;}
.yc_c00443{bottom:624.465000px;}
.yb_c00443{bottom:648.765000px;}
.ya_c00443{bottom:672.765000px;}
.y9_c00443{bottom:697.065000px;}
.y8_c00443{bottom:721.665000px;}
.y7_c00443{bottom:745.665000px;}
.y6_c00443{bottom:769.815000px;}
.y5_c00443{bottom:793.815000px;}
.y4_c00443{bottom:818.415000px;}
.y3_c00443{bottom:842.415000px;}
.y2_c00443{bottom:866.715000px;}
.y1_c00443{bottom:890.715000px;}
.h5_c00443{height:13.200074px;}
.h6_c00443{height:43.804688px;}
.h2_c00443{height:79.497070px;}
.h3_c00443{height:84.269531px;}
.h4_c00443{height:108.843750px;}
.h1_c00443{height:986.250000px;}
.h0_c00443{height:986.325000px;}
.w2_c00443{width:104.875500px;}
.w0_c00443{width:667.425000px;}
.w1_c00443{width:667.500000px;}
.x0_c00443{left:0.000000px;}
.x8_c00443{left:113.100000px;}
.x7_c00443{left:114.450000px;}
.x6_c00443{left:115.500000px;}
.x5_c00443{left:116.850000px;}
.x1_c00443{left:118.200000px;}
.x2_c00443{left:119.550000px;}
.x3_c00443{left:121.800000px;}
.x4_c00443{left:130.350000px;}
.xa_c00443{left:285.526749px;}
.x9_c00443{left:549.150000px;}
@media print{
.v0_c00443{vertical-align:0.000000pt;}
.ls1_c00443{letter-spacing:0.000000pt;}
.ls0_c00443{letter-spacing:0.960000pt;}
.ws1_c00443{word-spacing:-53.376000pt;}
.ws0_c00443{word-spacing:-15.424000pt;}
.ws2_c00443{word-spacing:0.000000pt;}
._10_c00443{margin-left:-21.384000pt;}
._11_c00443{margin-left:-18.936000pt;}
._9_c00443{margin-left:-16.776000pt;}
._17_c00443{margin-left:-15.768000pt;}
._f_c00443{margin-left:-14.112000pt;}
._1a_c00443{margin-left:-11.258667pt;}
._12_c00443{margin-left:-8.424000pt;}
._16_c00443{margin-left:-7.344000pt;}
._d_c00443{margin-left:-6.192000pt;}
._c_c00443{margin-left:-4.824000pt;}
._a_c00443{margin-left:-3.384000pt;}
._5_c00443{margin-left:-2.376000pt;}
._b_c00443{margin-left:-0.936000pt;}
._6_c00443{width:1.152000pt;}
._4_c00443{width:2.376000pt;}
._0_c00443{width:3.456000pt;}
._1_c00443{width:4.536000pt;}
._7_c00443{width:5.976000pt;}
._3_c00443{width:6.912000pt;}
._2_c00443{width:7.992000pt;}
._8_c00443{width:9.648000pt;}
._18_c00443{width:10.656000pt;}
._e_c00443{width:11.880000pt;}
._13_c00443{width:13.752000pt;}
._19_c00443{width:15.336000pt;}
._1b_c00443{width:20.186667pt;}
._15_c00443{width:30.888000pt;}
._14_c00443{width:79.266667pt;}
.fs3_c00443{font-size:42.666667pt;}
.fs1_c00443{font-size:64.000000pt;}
.fs0_c00443{font-size:72.000000pt;}
.fs2_c00443{font-size:96.000000pt;}
.y0_c00443{bottom:0.000000pt;}
.y25_c00443{bottom:2.760000pt;}
.y24_c00443{bottom:6.425219pt;}
.y23_c00443{bottom:57.346667pt;}
.y22_c00443{bottom:78.680000pt;}
.y21_c00443{bottom:101.213333pt;}
.y20_c00443{bottom:123.613333pt;}
.y1f_c00443{bottom:145.213333pt;}
.y1e_c00443{bottom:166.813333pt;}
.y1d_c00443{bottom:188.413333pt;}
.y1c_c00443{bottom:210.280000pt;}
.y1b_c00443{bottom:231.613333pt;}
.y1a_c00443{bottom:253.480000pt;}
.y19_c00443{bottom:275.080000pt;}
.y18_c00443{bottom:296.680000pt;}
.y17_c00443{bottom:318.413333pt;}
.y16_c00443{bottom:340.013333pt;}
.y15_c00443{bottom:361.613333pt;}
.y14_c00443{bottom:383.080000pt;}
.y13_c00443{bottom:404.413333pt;}
.y12_c00443{bottom:425.746667pt;}
.y11_c00443{bottom:447.346667pt;}
.y10_c00443{bottom:469.480000pt;}
.yf_c00443{bottom:489.880000pt;}
.ye_c00443{bottom:511.480000pt;}
.yd_c00443{bottom:533.480000pt;}
.yc_c00443{bottom:555.080000pt;}
.yb_c00443{bottom:576.680000pt;}
.ya_c00443{bottom:598.013333pt;}
.y9_c00443{bottom:619.613333pt;}
.y8_c00443{bottom:641.480000pt;}
.y7_c00443{bottom:662.813333pt;}
.y6_c00443{bottom:684.280000pt;}
.y5_c00443{bottom:705.613333pt;}
.y4_c00443{bottom:727.480000pt;}
.y3_c00443{bottom:748.813333pt;}
.y2_c00443{bottom:770.413333pt;}
.y1_c00443{bottom:791.746667pt;}
.h5_c00443{height:11.733399pt;}
.h6_c00443{height:38.937500pt;}
.h2_c00443{height:70.664062pt;}
.h3_c00443{height:74.906250pt;}
.h4_c00443{height:96.750000pt;}
.h1_c00443{height:876.666667pt;}
.h0_c00443{height:876.733333pt;}
.w2_c00443{width:93.222667pt;}
.w0_c00443{width:593.266667pt;}
.w1_c00443{width:593.333333pt;}
.x0_c00443{left:0.000000pt;}
.x8_c00443{left:100.533333pt;}
.x7_c00443{left:101.733333pt;}
.x6_c00443{left:102.666667pt;}
.x5_c00443{left:103.866667pt;}
.x1_c00443{left:105.066667pt;}
.x2_c00443{left:106.266667pt;}
.x3_c00443{left:108.266667pt;}
.x4_c00443{left:115.866667pt;}
.xa_c00443{left:253.801554pt;}
.x9_c00443{left:488.133333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_9237183391b8ebb3e9b0725c.woff2')format("woff");}.ff1_c00444{font-family:ff1_c00444;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00444;src:url('chunks/assets/font_bd00f0cd4ba493b19e646d6a.woff2')format("woff");}.ff2_c00444{font-family:ff2_c00444;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00444;src:url('chunks/assets/font_688e945ae01cdb67ed22700d.woff2')format("woff");}.ff3_c00444{font-family:ff3_c00444;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00444;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff4_c00444{font-family:ff4_c00444;line-height:1.219238;font-style: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;}
.ls0_c00444{letter-spacing:0.000000px;}
.ls1_c00444{letter-spacing:9.000000px;}
.sc__c00444{text-shadow:none;}
.sc0_c00444{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00444{-webkit-text-stroke:0px transparent;}
.sc0_c00444{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00444{word-spacing:-76.686000px;}
.ws1_c00444{word-spacing:0.000000px;}
._19_c00444{margin-left:-24.207000px;}
._f_c00444{margin-left:-21.303000px;}
._c_c00444{margin-left:-19.764000px;}
._15_c00444{margin-left:-18.387000px;}
._10_c00444{margin-left:-13.902000px;}
._14_c00444{margin-left:-12.591000px;}
._11_c00444{margin-left:-10.974000px;}
._13_c00444{margin-left:-9.819000px;}
._12_c00444{margin-left:-8.472000px;}
._d_c00444{margin-left:-6.966000px;}
._b_c00444{margin-left:-5.346000px;}
._e_c00444{margin-left:-3.807000px;}
._3_c00444{margin-left:-2.430000px;}
._a_c00444{margin-left:-1.134000px;}
._7_c00444{width:1.296000px;}
._1_c00444{width:2.349000px;}
._0_c00444{width:4.212000px;}
._2_c00444{width:5.265000px;}
._5_c00444{width:7.128000px;}
._4_c00444{width:8.748000px;}
._6_c00444{width:9.801000px;}
._8_c00444{width:11.826000px;}
._16_c00444{width:13.122000px;}
._9_c00444{width:14.580000px;}
._1b_c00444{width:16.038000px;}
._1a_c00444{width:19.197000px;}
._1d_c00444{width:28.512000px;}
._18_c00444{width:42.174000px;}
._1e_c00444{width:132.192000px;}
._1c_c00444{width:209.385000px;}
._17_c00444{width:301.806000px;}
.fc2_c00444{color:transparent;}
.fc1_c00444{color:rgb(128,128,128);}
.fc0_c00444{color:rgb(0,0,0);}
.fs2_c00444{font-size:48.000000px;}
.fs0_c00444{font-size:81.000000px;}
.fs1_c00444{font-size:87.000000px;}
.y0_c00444{bottom:0.000000px;}
.y23_c00444{bottom:3.105000px;}
.y22_c00444{bottom:7.228371px;}
.y21_c00444{bottom:102.615000px;}
.y20_c00444{bottom:128.265000px;}
.y1f_c00444{bottom:153.315000px;}
.y1e_c00444{bottom:177.915000px;}
.y1d_c00444{bottom:202.815000px;}
.y1c_c00444{bottom:227.265000px;}
.y1b_c00444{bottom:251.865000px;}
.y1a_c00444{bottom:276.765000px;}
.y19_c00444{bottom:301.515000px;}
.y18_c00444{bottom:326.115000px;}
.y17_c00444{bottom:351.015000px;}
.y16_c00444{bottom:376.365000px;}
.y15_c00444{bottom:399.315000px;}
.y14_c00444{bottom:424.215000px;}
.y13_c00444{bottom:448.215000px;}
.y12_c00444{bottom:472.815000px;}
.y11_c00444{bottom:497.265000px;}
.y10_c00444{bottom:521.715000px;}
.yf_c00444{bottom:545.715000px;}
.ye_c00444{bottom:569.715000px;}
.yd_c00444{bottom:593.715000px;}
.yc_c00444{bottom:617.715000px;}
.yb_c00444{bottom:642.015000px;}
.ya_c00444{bottom:668.265000px;}
.y9_c00444{bottom:690.915000px;}
.y8_c00444{bottom:715.215000px;}
.y7_c00444{bottom:740.115000px;}
.y6_c00444{bottom:764.415000px;}
.y5_c00444{bottom:788.415000px;}
.y4_c00444{bottom:813.015000px;}
.y3_c00444{bottom:837.765000px;}
.y2_c00444{bottom:862.665000px;}
.y1_c00444{bottom:888.015000px;}
.h5_c00444{height:13.200074px;}
.h6_c00444{height:43.804688px;}
.h2_c00444{height:79.497070px;}
.h4_c00444{height:91.176000px;}
.h3_c00444{height:110.151855px;}
.h0_c00444{height:989.025000px;}
.h1_c00444{height:989.250000px;}
.w1_c00444{width:104.875500px;}
.w0_c00444{width:672.000000px;}
.x0_c00444{left:0.000000px;}
.x1_c00444{left:38.700000px;}
.x2_c00444{left:39.750000px;}
.x3_c00444{left:40.800000px;}
.x4_c00444{left:42.300000px;}
.x5_c00444{left:43.500000px;}
.x6_c00444{left:44.550000px;}
.x7_c00444{left:45.900000px;}
.x8_c00444{left:46.950000px;}
.x9_c00444{left:48.300000px;}
.xa_c00444{left:49.500000px;}
.xb_c00444{left:50.550000px;}
.xc_c00444{left:51.900000px;}
.xd_c00444{left:53.700000px;}
.xe_c00444{left:54.900000px;}
.xf_c00444{left:56.700000px;}
.x10_c00444{left:287.814240px;}
@media print{
.v0_c00444{vertical-align:0.000000pt;}
.ls0_c00444{letter-spacing:0.000000pt;}
.ls1_c00444{letter-spacing:8.000000pt;}
.ws0_c00444{word-spacing:-68.165333pt;}
.ws1_c00444{word-spacing:0.000000pt;}
._19_c00444{margin-left:-21.517333pt;}
._f_c00444{margin-left:-18.936000pt;}
._c_c00444{margin-left:-17.568000pt;}
._15_c00444{margin-left:-16.344000pt;}
._10_c00444{margin-left:-12.357333pt;}
._14_c00444{margin-left:-11.192000pt;}
._11_c00444{margin-left:-9.754667pt;}
._13_c00444{margin-left:-8.728000pt;}
._12_c00444{margin-left:-7.530667pt;}
._d_c00444{margin-left:-6.192000pt;}
._b_c00444{margin-left:-4.752000pt;}
._e_c00444{margin-left:-3.384000pt;}
._3_c00444{margin-left:-2.160000pt;}
._a_c00444{margin-left:-1.008000pt;}
._7_c00444{width:1.152000pt;}
._1_c00444{width:2.088000pt;}
._0_c00444{width:3.744000pt;}
._2_c00444{width:4.680000pt;}
._5_c00444{width:6.336000pt;}
._4_c00444{width:7.776000pt;}
._6_c00444{width:8.712000pt;}
._8_c00444{width:10.512000pt;}
._16_c00444{width:11.664000pt;}
._9_c00444{width:12.960000pt;}
._1b_c00444{width:14.256000pt;}
._1a_c00444{width:17.064000pt;}
._1d_c00444{width:25.344000pt;}
._18_c00444{width:37.488000pt;}
._1e_c00444{width:117.504000pt;}
._1c_c00444{width:186.120000pt;}
._17_c00444{width:268.272000pt;}
.fs2_c00444{font-size:42.666667pt;}
.fs0_c00444{font-size:72.000000pt;}
.fs1_c00444{font-size:77.333333pt;}
.y0_c00444{bottom:0.000000pt;}
.y23_c00444{bottom:2.760000pt;}
.y22_c00444{bottom:6.425219pt;}
.y21_c00444{bottom:91.213333pt;}
.y20_c00444{bottom:114.013333pt;}
.y1f_c00444{bottom:136.280000pt;}
.y1e_c00444{bottom:158.146667pt;}
.y1d_c00444{bottom:180.280000pt;}
.y1c_c00444{bottom:202.013333pt;}
.y1b_c00444{bottom:223.880000pt;}
.y1a_c00444{bottom:246.013333pt;}
.y19_c00444{bottom:268.013333pt;}
.y18_c00444{bottom:289.880000pt;}
.y17_c00444{bottom:312.013333pt;}
.y16_c00444{bottom:334.546667pt;}
.y15_c00444{bottom:354.946667pt;}
.y14_c00444{bottom:377.080000pt;}
.y13_c00444{bottom:398.413333pt;}
.y12_c00444{bottom:420.280000pt;}
.y11_c00444{bottom:442.013333pt;}
.y10_c00444{bottom:463.746667pt;}
.yf_c00444{bottom:485.080000pt;}
.ye_c00444{bottom:506.413333pt;}
.yd_c00444{bottom:527.746667pt;}
.yc_c00444{bottom:549.080000pt;}
.yb_c00444{bottom:570.680000pt;}
.ya_c00444{bottom:594.013333pt;}
.y9_c00444{bottom:614.146667pt;}
.y8_c00444{bottom:635.746667pt;}
.y7_c00444{bottom:657.880000pt;}
.y6_c00444{bottom:679.480000pt;}
.y5_c00444{bottom:700.813333pt;}
.y4_c00444{bottom:722.680000pt;}
.y3_c00444{bottom:744.680000pt;}
.y2_c00444{bottom:766.813333pt;}
.y1_c00444{bottom:789.346667pt;}
.h5_c00444{height:11.733399pt;}
.h6_c00444{height:38.937500pt;}
.h2_c00444{height:70.664062pt;}
.h4_c00444{height:81.045333pt;}
.h3_c00444{height:97.912760pt;}
.h0_c00444{height:879.133333pt;}
.h1_c00444{height:879.333333pt;}
.w1_c00444{width:93.222667pt;}
.w0_c00444{width:597.333333pt;}
.x0_c00444{left:0.000000pt;}
.x1_c00444{left:34.400000pt;}
.x2_c00444{left:35.333333pt;}
.x3_c00444{left:36.266667pt;}
.x4_c00444{left:37.600000pt;}
.x5_c00444{left:38.666667pt;}
.x6_c00444{left:39.600000pt;}
.x7_c00444{left:40.800000pt;}
.x8_c00444{left:41.733333pt;}
.x9_c00444{left:42.933333pt;}
.xa_c00444{left:44.000000pt;}
.xb_c00444{left:44.933333pt;}
.xc_c00444{left:46.133333pt;}
.xd_c00444{left:47.733333pt;}
.xe_c00444{left:48.800000pt;}
.xf_c00444{left:50.400000pt;}
.x10_c00444{left:255.834880pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f8ae7bd8bf88a57cc79d0958.woff2')format("woff");}.ff1_c00445{font-family:ff1_c00445;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00445;src:url('chunks/assets/font_aab280f1dc1c12b4cea66a61.woff2')format("woff");}.ff2_c00445{font-family:ff2_c00445;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00445;src:url('chunks/assets/font_3f97587eb14fb6c1162e21f6.woff2')format("woff");}.ff3_c00445{font-family:ff3_c00445;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00445;src:url('chunks/assets/font_a9c6f7bf8c93f80faed9b3b5.woff2')format("woff");}.ff4_c00445{font-family:ff4_c00445;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00445;src:url('chunks/assets/font_7efbaf538271928b58d87a04.woff2')format("woff");}.ff5_c00445{font-family:ff5_c00445;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00445;src:url('chunks/assets/font_33f146edcd83fabae6e0e6e2.woff2')format("woff");}.ff6_c00445{font-family:ff6_c00445;line-height:1.437000;font-style:normal;font-weight: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_c00445;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c00445{font-family:ff7_c00445;line-height:1.219238;font-style: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;}
.ls0_c00445{letter-spacing:0.000000px;}
.ls1_c00445{letter-spacing:3.000000px;}
.ls2_c00445{letter-spacing:9.000000px;}
.sc__c00445{text-shadow:none;}
.sc0_c00445{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00445{-webkit-text-stroke:0px transparent;}
.sc0_c00445{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00445{word-spacing:-76.686000px;}
.ws2_c00445{word-spacing:-21.750000px;}
.ws0_c00445{word-spacing:-20.250000px;}
.ws3_c00445{word-spacing:0.000000px;}
._2b_c00445{margin-left:-28.836000px;}
._2d_c00445{margin-left:-26.001000px;}
._17_c00445{margin-left:-20.547000px;}
._32_c00445{margin-left:-19.143000px;}
._2f_c00445{margin-left:-17.658000px;}
._19_c00445{margin-left:-15.708000px;}
._33_c00445{margin-left:-14.103000px;}
._1f_c00445{margin-left:-12.600000px;}
._1c_c00445{margin-left:-11.535000px;}
._4_c00445{margin-left:-10.260000px;}
._f_c00445{margin-left:-8.835000px;}
._1a_c00445{margin-left:-7.305000px;}
._a_c00445{margin-left:-6.099000px;}
._13_c00445{margin-left:-5.043000px;}
._15_c00445{margin-left:-3.699000px;}
._d_c00445{margin-left:-1.995000px;}
._14_c00445{width:1.806000px;}
._9_c00445{width:2.850000px;}
._e_c00445{width:4.503000px;}
._12_c00445{width:5.529000px;}
._b_c00445{width:6.669000px;}
._11_c00445{width:7.752000px;}
._c_c00445{width:8.892000px;}
._3_c00445{width:10.887000px;}
._2_c00445{width:12.711000px;}
._16_c00445{width:13.857000px;}
._10_c00445{width:15.504000px;}
._6_c00445{width:16.872000px;}
._0_c00445{width:18.867000px;}
._5_c00445{width:20.292000px;}
._1_c00445{width:22.458000px;}
._25_c00445{width:26.676000px;}
._18_c00445{width:28.620000px;}
._8_c00445{width:30.324000px;}
._1b_c00445{width:31.620000px;}
._7_c00445{width:36.879000px;}
._28_c00445{width:47.574000px;}
._26_c00445{width:49.890000px;}
._24_c00445{width:52.032000px;}
._1e_c00445{width:62.847000px;}
._2e_c00445{width:71.958000px;}
._29_c00445{width:80.568000px;}
._2c_c00445{width:89.586000px;}
._1d_c00445{width:94.500000px;}
._21_c00445{width:148.635000px;}
._22_c00445{width:161.457000px;}
._23_c00445{width:190.092000px;}
._20_c00445{width:200.436000px;}
._31_c00445{width:217.749000px;}
._34_c00445{width:255.849000px;}
._30_c00445{width:343.602000px;}
._27_c00445{width:469.584000px;}
._2a_c00445{width:651.216000px;}
.fc2_c00445{color:transparent;}
.fc1_c00445{color:rgb(128,128,128);}
.fc0_c00445{color:rgb(0,0,0);}
.fs3_c00445{font-size:42.000000px;}
.fs7_c00445{font-size:48.000000px;}
.fs2_c00445{font-size:51.000000px;}
.fs0_c00445{font-size:57.000000px;}
.fs5_c00445{font-size:66.000000px;}
.fs4_c00445{font-size:72.000000px;}
.fs1_c00445{font-size:81.000000px;}
.fs6_c00445{font-size:87.000000px;}
.y0_c00445{bottom:0.000000px;}
.y23_c00445{bottom:3.105000px;}
.y22_c00445{bottom:7.228371px;}
.y21_c00445{bottom:48.615000px;}
.y20_c00445{bottom:72.315000px;}
.y1f_c00445{bottom:98.265000px;}
.y1e_c00445{bottom:123.615000px;}
.y1d_c00445{bottom:148.815000px;}
.y1c_c00445{bottom:173.265000px;}
.y1b_c00445{bottom:198.765000px;}
.y1a_c00445{bottom:223.065000px;}
.y19_c00445{bottom:247.515000px;}
.y18_c00445{bottom:272.715000px;}
.y17_c00445{bottom:297.465000px;}
.y16_c00445{bottom:322.365000px;}
.y15_c00445{bottom:347.265000px;}
.y14_c00445{bottom:370.215000px;}
.y13_c00445{bottom:394.965000px;}
.y12_c00445{bottom:421.215000px;}
.y11_c00445{bottom:445.515000px;}
.y10_c00445{bottom:473.265000px;}
.yf_c00445{bottom:492.165000px;}
.ye_c00445{bottom:517.515000px;}
.yd_c00445{bottom:541.815000px;}
.yc_c00445{bottom:566.415000px;}
.yb_c00445{bottom:591.315000px;}
.ya_c00445{bottom:615.315000px;}
.y9_c00445{bottom:640.365000px;}
.y8_c00445{bottom:664.215000px;}
.y7_c00445{bottom:689.265000px;}
.y6_c00445{bottom:714.165000px;}
.y5_c00445{bottom:738.465000px;}
.y4_c00445{bottom:795.165000px;}
.y3_c00445{bottom:823.965000px;}
.y2_c00445{bottom:853.515000px;}
.y1_c00445{bottom:883.215000px;}
.ha_c00445{height:13.200074px;}
.hb_c00445{height:43.804688px;}
.h5_c00445{height:50.028809px;}
.h3_c00445{height:55.914551px;}
.h2_c00445{height:55.942383px;}
.h6_c00445{height:57.445312px;}
.h4_c00445{height:79.497070px;}
.h7_c00445{height:84.269531px;}
.h9_c00445{height:87.679688px;}
.h8_c00445{height:91.176000px;}
.h1_c00445{height:986.250000px;}
.h0_c00445{height:986.325000px;}
.w2_c00445{width:104.875500px;}
.w0_c00445{width:667.425000px;}
.w1_c00445{width:667.500000px;}
.x0_c00445{left:0.000000px;}
.x17_c00445{left:26.100000px;}
.x15_c00445{left:29.400000px;}
.xe_c00445{left:31.650000px;}
.xd_c00445{left:37.350000px;}
.x10_c00445{left:84.750000px;}
.x16_c00445{left:98.550000px;}
.xf_c00445{left:107.250000px;}
.x14_c00445{left:111.300000px;}
.x13_c00445{left:112.950000px;}
.x12_c00445{left:114.000000px;}
.xc_c00445{left:117.000000px;}
.xb_c00445{left:118.050000px;}
.x11_c00445{left:120.150000px;}
.xa_c00445{left:125.250000px;}
.x9_c00445{left:126.600000px;}
.x1_c00445{left:136.950000px;}
.x2_c00445{left:165.150000px;}
.x3_c00445{left:225.450000px;}
.x7_c00445{left:254.400000px;}
.x8_c00445{left:264.300000px;}
.x6_c00445{left:265.950000px;}
.x5_c00445{left:267.000000px;}
.x19_c00445{left:285.526749px;}
.x4_c00445{left:305.700000px;}
.x18_c00445{left:557.550000px;}
@media print{
.v0_c00445{vertical-align:0.000000pt;}
.ls0_c00445{letter-spacing:0.000000pt;}
.ls1_c00445{letter-spacing:2.666667pt;}
.ls2_c00445{letter-spacing:8.000000pt;}
.ws1_c00445{word-spacing:-68.165333pt;}
.ws2_c00445{word-spacing:-19.333333pt;}
.ws0_c00445{word-spacing:-18.000000pt;}
.ws3_c00445{word-spacing:0.000000pt;}
._2b_c00445{margin-left:-25.632000pt;}
._2d_c00445{margin-left:-23.112000pt;}
._17_c00445{margin-left:-18.264000pt;}
._32_c00445{margin-left:-17.016000pt;}
._2f_c00445{margin-left:-15.696000pt;}
._19_c00445{margin-left:-13.962667pt;}
._33_c00445{margin-left:-12.536000pt;}
._1f_c00445{margin-left:-11.200000pt;}
._1c_c00445{margin-left:-10.253333pt;}
._4_c00445{margin-left:-9.120000pt;}
._f_c00445{margin-left:-7.853333pt;}
._1a_c00445{margin-left:-6.493333pt;}
._a_c00445{margin-left:-5.421333pt;}
._13_c00445{margin-left:-4.482667pt;}
._15_c00445{margin-left:-3.288000pt;}
._d_c00445{margin-left:-1.773333pt;}
._14_c00445{width:1.605333pt;}
._9_c00445{width:2.533333pt;}
._e_c00445{width:4.002667pt;}
._12_c00445{width:4.914667pt;}
._b_c00445{width:5.928000pt;}
._11_c00445{width:6.890667pt;}
._c_c00445{width:7.904000pt;}
._3_c00445{width:9.677333pt;}
._2_c00445{width:11.298667pt;}
._16_c00445{width:12.317333pt;}
._10_c00445{width:13.781333pt;}
._6_c00445{width:14.997333pt;}
._0_c00445{width:16.770667pt;}
._5_c00445{width:18.037333pt;}
._1_c00445{width:19.962667pt;}
._25_c00445{width:23.712000pt;}
._18_c00445{width:25.440000pt;}
._8_c00445{width:26.954667pt;}
._1b_c00445{width:28.106667pt;}
._7_c00445{width:32.781333pt;}
._28_c00445{width:42.288000pt;}
._26_c00445{width:44.346667pt;}
._24_c00445{width:46.250667pt;}
._1e_c00445{width:55.864000pt;}
._2e_c00445{width:63.962667pt;}
._29_c00445{width:71.616000pt;}
._2c_c00445{width:79.632000pt;}
._1d_c00445{width:84.000000pt;}
._21_c00445{width:132.120000pt;}
._22_c00445{width:143.517333pt;}
._23_c00445{width:168.970667pt;}
._20_c00445{width:178.165333pt;}
._31_c00445{width:193.554667pt;}
._34_c00445{width:227.421333pt;}
._30_c00445{width:305.424000pt;}
._27_c00445{width:417.408000pt;}
._2a_c00445{width:578.858667pt;}
.fs3_c00445{font-size:37.333333pt;}
.fs7_c00445{font-size:42.666667pt;}
.fs2_c00445{font-size:45.333333pt;}
.fs0_c00445{font-size:50.666667pt;}
.fs5_c00445{font-size:58.666667pt;}
.fs4_c00445{font-size:64.000000pt;}
.fs1_c00445{font-size:72.000000pt;}
.fs6_c00445{font-size:77.333333pt;}
.y0_c00445{bottom:0.000000pt;}
.y23_c00445{bottom:2.760000pt;}
.y22_c00445{bottom:6.425219pt;}
.y21_c00445{bottom:43.213333pt;}
.y20_c00445{bottom:64.280000pt;}
.y1f_c00445{bottom:87.346667pt;}
.y1e_c00445{bottom:109.880000pt;}
.y1d_c00445{bottom:132.280000pt;}
.y1c_c00445{bottom:154.013333pt;}
.y1b_c00445{bottom:176.680000pt;}
.y1a_c00445{bottom:198.280000pt;}
.y19_c00445{bottom:220.013333pt;}
.y18_c00445{bottom:242.413333pt;}
.y17_c00445{bottom:264.413333pt;}
.y16_c00445{bottom:286.546667pt;}
.y15_c00445{bottom:308.680000pt;}
.y14_c00445{bottom:329.080000pt;}
.y13_c00445{bottom:351.080000pt;}
.y12_c00445{bottom:374.413333pt;}
.y11_c00445{bottom:396.013333pt;}
.y10_c00445{bottom:420.680000pt;}
.yf_c00445{bottom:437.480000pt;}
.ye_c00445{bottom:460.013333pt;}
.yd_c00445{bottom:481.613333pt;}
.yc_c00445{bottom:503.480000pt;}
.yb_c00445{bottom:525.613333pt;}
.ya_c00445{bottom:546.946667pt;}
.y9_c00445{bottom:569.213333pt;}
.y8_c00445{bottom:590.413333pt;}
.y7_c00445{bottom:612.680000pt;}
.y6_c00445{bottom:634.813333pt;}
.y5_c00445{bottom:656.413333pt;}
.y4_c00445{bottom:706.813333pt;}
.y3_c00445{bottom:732.413333pt;}
.y2_c00445{bottom:758.680000pt;}
.y1_c00445{bottom:785.080000pt;}
.ha_c00445{height:11.733399pt;}
.hb_c00445{height:38.937500pt;}
.h5_c00445{height:44.470052pt;}
.h3_c00445{height:49.701823pt;}
.h2_c00445{height:49.726562pt;}
.h6_c00445{height:51.062500pt;}
.h4_c00445{height:70.664062pt;}
.h7_c00445{height:74.906250pt;}
.h9_c00445{height:77.937500pt;}
.h8_c00445{height:81.045333pt;}
.h1_c00445{height:876.666667pt;}
.h0_c00445{height:876.733333pt;}
.w2_c00445{width:93.222667pt;}
.w0_c00445{width:593.266667pt;}
.w1_c00445{width:593.333333pt;}
.x0_c00445{left:0.000000pt;}
.x17_c00445{left:23.200000pt;}
.x15_c00445{left:26.133333pt;}
.xe_c00445{left:28.133333pt;}
.xd_c00445{left:33.200000pt;}
.x10_c00445{left:75.333333pt;}
.x16_c00445{left:87.600000pt;}
.xf_c00445{left:95.333333pt;}
.x14_c00445{left:98.933333pt;}
.x13_c00445{left:100.400000pt;}
.x12_c00445{left:101.333333pt;}
.xc_c00445{left:104.000000pt;}
.xb_c00445{left:104.933333pt;}
.x11_c00445{left:106.800000pt;}
.xa_c00445{left:111.333333pt;}
.x9_c00445{left:112.533333pt;}
.x1_c00445{left:121.733333pt;}
.x2_c00445{left:146.800000pt;}
.x3_c00445{left:200.400000pt;}
.x7_c00445{left:226.133333pt;}
.x8_c00445{left:234.933333pt;}
.x6_c00445{left:236.400000pt;}
.x5_c00445{left:237.333333pt;}
.x19_c00445{left:253.801554pt;}
.x4_c00445{left:271.733333pt;}
.x18_c00445{left:495.600000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_769679c0ab576e52315c4522.woff2')format("woff");}.ff1_c00446{font-family:ff1_c00446;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00446;src:url('chunks/assets/font_392fe5074cc8826042221d10.woff2')format("woff");}.ff2_c00446{font-family:ff2_c00446;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00446;src:url('chunks/assets/font_7bf0a9c57c157123d820ddb6.woff2')format("woff");}.ff3_c00446{font-family:ff3_c00446;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00446;src:url('chunks/assets/font_07a9e347b621afa76982ffeb.woff2')format("woff");}.ff4_c00446{font-family:ff4_c00446;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00446;src:url('chunks/assets/font_0ea94f92b502946862bad888.woff2')format("woff");}.ff5_c00446{font-family:ff5_c00446;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00446;src:url('chunks/assets/font_c75166187d02d09f83d372d2.woff2')format("woff");}.ff6_c00446{font-family:ff6_c00446;line-height:1.338867;font-style:normal;font-weight: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_c00446;src:url('chunks/assets/font_86786aa8b8931a26f211ee15.woff2')format("woff");}.ff7_c00446{font-family:ff7_c00446;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00446;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff8_c00446{font-family:ff8_c00446;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00446{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00446{vertical-align:-62.400000px;}
.v0_c00446{vertical-align:0.000000px;}
.ls4_c00446{letter-spacing:0.000000px;}
.ls0_c00446{letter-spacing:3.000000px;}
.ls5_c00446{letter-spacing:6.000000px;}
.ls2_c00446{letter-spacing:31.227000px;}
.ls3_c00446{letter-spacing:37.500000px;}
.ls1_c00446{letter-spacing:41.646000px;}
.sc__c00446{text-shadow:none;}
.sc0_c00446{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00446{-webkit-text-stroke:0px transparent;}
.sc0_c00446{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00446{word-spacing:-44.364000px;}
.ws0_c00446{word-spacing:-17.352000px;}
.ws2_c00446{word-spacing:-17.250000px;}
.ws4_c00446{word-spacing:0.000000px;}
.ws3_c00446{word-spacing:15.300000px;}
._18_c00446{margin-left:-31.299000px;}
._2d_c00446{margin-left:-26.208000px;}
._17_c00446{margin-left:-20.412000px;}
._28_c00446{margin-left:-18.366000px;}
._1a_c00446{margin-left:-16.362000px;}
._12_c00446{margin-left:-13.953000px;}
._22_c00446{margin-left:-12.411000px;}
._30_c00446{margin-left:-11.187000px;}
._11_c00446{margin-left:-9.018000px;}
._21_c00446{margin-left:-7.686000px;}
._2_c00446{margin-left:-6.237000px;}
._0_c00446{margin-left:-4.455000px;}
._3_c00446{margin-left:-3.168000px;}
._1_c00446{margin-left:-2.079000px;}
._14_c00446{margin-left:-1.035000px;}
._8_c00446{width:1.296000px;}
._7_c00446{width:3.159000px;}
._5_c00446{width:4.860000px;}
._6_c00446{width:6.075000px;}
._4_c00446{width:7.452000px;}
._15_c00446{width:8.595000px;}
._c_c00446{width:9.639000px;}
._9_c00446{width:10.692000px;}
._e_c00446{width:12.231000px;}
._d_c00446{width:13.302000px;}
._b_c00446{width:14.337000px;}
._a_c00446{width:16.038000px;}
._2e_c00446{width:19.248000px;}
._2a_c00446{width:20.523000px;}
._31_c00446{width:22.116000px;}
._29_c00446{width:23.226000px;}
._13_c00446{width:24.597000px;}
._20_c00446{width:26.649000px;}
._2b_c00446{width:29.085000px;}
._10_c00446{width:30.240000px;}
._1d_c00446{width:31.266000px;}
._16_c00446{width:35.118000px;}
._26_c00446{width:40.581000px;}
._2c_c00446{width:55.011000px;}
._25_c00446{width:65.448000px;}
._1c_c00446{width:83.997000px;}
._2f_c00446{width:86.289000px;}
._1b_c00446{width:115.587000px;}
._f_c00446{width:119.961000px;}
._19_c00446{width:195.777000px;}
._27_c00446{width:253.500000px;}
._1f_c00446{width:266.850000px;}
._23_c00446{width:307.620000px;}
._24_c00446{width:374.868000px;}
._1e_c00446{width:382.842000px;}
._32_c00446{width:403.098000px;}
.fc2_c00446{color:transparent;}
.fc1_c00446{color:rgb(128,128,128);}
.fc0_c00446{color:rgb(0,0,0);}
.fs7_c00446{font-size:48.000000px;}
.fs5_c00446{font-size:57.000000px;}
.fs6_c00446{font-size:60.000000px;}
.fs3_c00446{font-size:69.000000px;}
.fs2_c00446{font-size:72.000000px;}
.fs1_c00446{font-size:81.000000px;}
.fs0_c00446{font-size:99.000000px;}
.fs4_c00446{font-size:282.000000px;}
.y0_c00446{bottom:0.000000px;}
.y25_c00446{bottom:3.105000px;}
.y24_c00446{bottom:7.228371px;}
.y23_c00446{bottom:41.565000px;}
.y22_c00446{bottom:67.965000px;}
.y21_c00446{bottom:92.865000px;}
.y20_c00446{bottom:118.515000px;}
.y1f_c00446{bottom:143.865000px;}
.y1e_c00446{bottom:167.865000px;}
.y1d_c00446{bottom:192.765000px;}
.y1c_c00446{bottom:217.815000px;}
.y1b_c00446{bottom:242.115000px;}
.y1a_c00446{bottom:267.315000px;}
.y19_c00446{bottom:291.315000px;}
.y18_c00446{bottom:365.565000px;}
.y16_c00446{bottom:384.165000px;}
.y17_c00446{bottom:389.565000px;}
.y15_c00446{bottom:414.165000px;}
.y14_c00446{bottom:437.865000px;}
.y13_c00446{bottom:463.515000px;}
.y12_c00446{bottom:487.065000px;}
.y11_c00446{bottom:512.115000px;}
.y10_c00446{bottom:536.715000px;}
.yf_c00446{bottom:560.715000px;}
.ye_c00446{bottom:585.165000px;}
.yd_c00446{bottom:609.165000px;}
.yc_c00446{bottom:633.165000px;}
.yb_c00446{bottom:657.765000px;}
.ya_c00446{bottom:683.415000px;}
.y9_c00446{bottom:706.515000px;}
.y8_c00446{bottom:732.465000px;}
.y7_c00446{bottom:755.415000px;}
.y6_c00446{bottom:780.015000px;}
.y5_c00446{bottom:804.915000px;}
.y4_c00446{bottom:829.965000px;}
.y3_c00446{bottom:854.865000px;}
.y2_c00446{bottom:878.865000px;}
.y1_c00446{bottom:914.715000px;}
.ha_c00446{height:13.200074px;}
.hb_c00446{height:43.804688px;}
.h8_c00446{height:57.445312px;}
.h6_c00446{height:67.686035px;}
.h9_c00446{height:75.966797px;}
.h3_c00446{height:79.497070px;}
.h5_c00446{height:84.269531px;}
.h4_c00446{height:91.160156px;}
.h2_c00446{height:115.870605px;}
.h7_c00446{height:297.008789px;}
.h0_c00446{height:989.025000px;}
.h1_c00446{height:989.250000px;}
.w1_c00446{width:104.875500px;}
.w0_c00446{width:672.000000px;}
.x0_c00446{left:0.000000px;}
.x3_c00446{left:31.350000px;}
.x4_c00446{left:32.700000px;}
.x2_c00446{left:34.200000px;}
.x5_c00446{left:36.150000px;}
.x6_c00446{left:38.400000px;}
.x7_c00446{left:56.250000px;}
.x1_c00446{left:79.350000px;}
.x9_c00446{left:287.814240px;}
.x8_c00446{left:325.950000px;}
@media print{
.v1_c00446{vertical-align:-55.466667pt;}
.v0_c00446{vertical-align:0.000000pt;}
.ls4_c00446{letter-spacing:0.000000pt;}
.ls0_c00446{letter-spacing:2.666667pt;}
.ls5_c00446{letter-spacing:5.333333pt;}
.ls2_c00446{letter-spacing:27.757333pt;}
.ls3_c00446{letter-spacing:33.333333pt;}
.ls1_c00446{letter-spacing:37.018667pt;}
.ws1_c00446{word-spacing:-39.434667pt;}
.ws0_c00446{word-spacing:-15.424000pt;}
.ws2_c00446{word-spacing:-15.333333pt;}
.ws4_c00446{word-spacing:0.000000pt;}
.ws3_c00446{word-spacing:13.600000pt;}
._18_c00446{margin-left:-27.821333pt;}
._2d_c00446{margin-left:-23.296000pt;}
._17_c00446{margin-left:-18.144000pt;}
._28_c00446{margin-left:-16.325333pt;}
._1a_c00446{margin-left:-14.544000pt;}
._12_c00446{margin-left:-12.402667pt;}
._22_c00446{margin-left:-11.032000pt;}
._30_c00446{margin-left:-9.944000pt;}
._11_c00446{margin-left:-8.016000pt;}
._21_c00446{margin-left:-6.832000pt;}
._2_c00446{margin-left:-5.544000pt;}
._0_c00446{margin-left:-3.960000pt;}
._3_c00446{margin-left:-2.816000pt;}
._1_c00446{margin-left:-1.848000pt;}
._14_c00446{margin-left:-0.920000pt;}
._8_c00446{width:1.152000pt;}
._7_c00446{width:2.808000pt;}
._5_c00446{width:4.320000pt;}
._6_c00446{width:5.400000pt;}
._4_c00446{width:6.624000pt;}
._15_c00446{width:7.640000pt;}
._c_c00446{width:8.568000pt;}
._9_c00446{width:9.504000pt;}
._e_c00446{width:10.872000pt;}
._d_c00446{width:11.824000pt;}
._b_c00446{width:12.744000pt;}
._a_c00446{width:14.256000pt;}
._2e_c00446{width:17.109333pt;}
._2a_c00446{width:18.242667pt;}
._31_c00446{width:19.658667pt;}
._29_c00446{width:20.645333pt;}
._13_c00446{width:21.864000pt;}
._20_c00446{width:23.688000pt;}
._2b_c00446{width:25.853333pt;}
._10_c00446{width:26.880000pt;}
._1d_c00446{width:27.792000pt;}
._16_c00446{width:31.216000pt;}
._26_c00446{width:36.072000pt;}
._2c_c00446{width:48.898667pt;}
._25_c00446{width:58.176000pt;}
._1c_c00446{width:74.664000pt;}
._2f_c00446{width:76.701333pt;}
._1b_c00446{width:102.744000pt;}
._f_c00446{width:106.632000pt;}
._19_c00446{width:174.024000pt;}
._27_c00446{width:225.333333pt;}
._1f_c00446{width:237.200000pt;}
._23_c00446{width:273.440000pt;}
._24_c00446{width:333.216000pt;}
._1e_c00446{width:340.304000pt;}
._32_c00446{width:358.309333pt;}
.fs7_c00446{font-size:42.666667pt;}
.fs5_c00446{font-size:50.666667pt;}
.fs6_c00446{font-size:53.333333pt;}
.fs3_c00446{font-size:61.333333pt;}
.fs2_c00446{font-size:64.000000pt;}
.fs1_c00446{font-size:72.000000pt;}
.fs0_c00446{font-size:88.000000pt;}
.fs4_c00446{font-size:250.666667pt;}
.y0_c00446{bottom:0.000000pt;}
.y25_c00446{bottom:2.760000pt;}
.y24_c00446{bottom:6.425219pt;}
.y23_c00446{bottom:36.946667pt;}
.y22_c00446{bottom:60.413333pt;}
.y21_c00446{bottom:82.546667pt;}
.y20_c00446{bottom:105.346667pt;}
.y1f_c00446{bottom:127.880000pt;}
.y1e_c00446{bottom:149.213333pt;}
.y1d_c00446{bottom:171.346667pt;}
.y1c_c00446{bottom:193.613333pt;}
.y1b_c00446{bottom:215.213333pt;}
.y1a_c00446{bottom:237.613333pt;}
.y19_c00446{bottom:258.946667pt;}
.y18_c00446{bottom:324.946667pt;}
.y16_c00446{bottom:341.480000pt;}
.y17_c00446{bottom:346.280000pt;}
.y15_c00446{bottom:368.146667pt;}
.y14_c00446{bottom:389.213333pt;}
.y13_c00446{bottom:412.013333pt;}
.y12_c00446{bottom:432.946667pt;}
.y11_c00446{bottom:455.213333pt;}
.y10_c00446{bottom:477.080000pt;}
.yf_c00446{bottom:498.413333pt;}
.ye_c00446{bottom:520.146667pt;}
.yd_c00446{bottom:541.480000pt;}
.yc_c00446{bottom:562.813333pt;}
.yb_c00446{bottom:584.680000pt;}
.ya_c00446{bottom:607.480000pt;}
.y9_c00446{bottom:628.013333pt;}
.y8_c00446{bottom:651.080000pt;}
.y7_c00446{bottom:671.480000pt;}
.y6_c00446{bottom:693.346667pt;}
.y5_c00446{bottom:715.480000pt;}
.y4_c00446{bottom:737.746667pt;}
.y3_c00446{bottom:759.880000pt;}
.y2_c00446{bottom:781.213333pt;}
.y1_c00446{bottom:813.080000pt;}
.ha_c00446{height:11.733399pt;}
.hb_c00446{height:38.937500pt;}
.h8_c00446{height:51.062500pt;}
.h6_c00446{height:60.165365pt;}
.h9_c00446{height:67.526042pt;}
.h3_c00446{height:70.664062pt;}
.h5_c00446{height:74.906250pt;}
.h4_c00446{height:81.031250pt;}
.h2_c00446{height:102.996094pt;}
.h7_c00446{height:264.007812pt;}
.h0_c00446{height:879.133333pt;}
.h1_c00446{height:879.333333pt;}
.w1_c00446{width:93.222667pt;}
.w0_c00446{width:597.333333pt;}
.x0_c00446{left:0.000000pt;}
.x3_c00446{left:27.866667pt;}
.x4_c00446{left:29.066667pt;}
.x2_c00446{left:30.400000pt;}
.x5_c00446{left:32.133333pt;}
.x6_c00446{left:34.133333pt;}
.x7_c00446{left:50.000000pt;}
.x1_c00446{left:70.533333pt;}
.x9_c00446{left:255.834880pt;}
.x8_c00446{left:289.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_901d8f76cbf83868faed1535.woff2')format("woff");}.ff1_c00447{font-family:ff1_c00447;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00447;src:url('chunks/assets/font_5fced9572daec897d6ce9aff.woff2')format("woff");}.ff2_c00447{font-family:ff2_c00447;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00447;src:url('chunks/assets/font_7d2fa4c8ddc90ccf19d16f4a.woff2')format("woff");}.ff3_c00447{font-family:ff3_c00447;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00447;src:url('chunks/assets/font_2434fcf650b37e8ea651c46c.woff2')format("woff");}.ff4_c00447{font-family:ff4_c00447;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00447;src:url('chunks/assets/font_8f7be77bdf20556f6186950a.woff2')format("woff");}.ff5_c00447{font-family:ff5_c00447;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00447;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c00447{font-family:ff6_c00447;line-height:1.219238;font-style: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;}
.ls2_c00447{letter-spacing:-9.000000px;}
.ls1_c00447{letter-spacing:0.000000px;}
.ls0_c00447{letter-spacing:8.520000px;}
.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:-47.100000px;}
.ws1_c00447{word-spacing:-23.832000px;}
.ws0_c00447{word-spacing:-19.065600px;}
.ws2_c00447{word-spacing:-17.352000px;}
.ws4_c00447{word-spacing:0.000000px;}
._28_c00447{margin-left:-34.872000px;}
._25_c00447{margin-left:-33.042000px;}
._1f_c00447{margin-left:-31.368000px;}
._27_c00447{margin-left:-29.418000px;}
._f_c00447{margin-left:-26.082000px;}
._23_c00447{margin-left:-24.381000px;}
._26_c00447{margin-left:-23.037000px;}
._17_c00447{margin-left:-15.204000px;}
._1c_c00447{margin-left:-13.689000px;}
._14_c00447{margin-left:-11.871000px;}
._a_c00447{margin-left:-9.801000px;}
._12_c00447{margin-left:-7.776000px;}
._7_c00447{margin-left:-6.156000px;}
._9_c00447{margin-left:-4.455000px;}
._11_c00447{margin-left:-3.402000px;}
._4_c00447{margin-left:-1.944000px;}
._8_c00447{width:1.539000px;}
._c_c00447{width:2.592000px;}
._6_c00447{width:3.726000px;}
._1_c00447{width:4.860000px;}
._3_c00447{width:6.561000px;}
._5_c00447{width:7.614000px;}
._2_c00447{width:8.667000px;}
._b_c00447{width:10.611000px;}
._20_c00447{width:11.772000px;}
._0_c00447{width:12.879000px;}
._15_c00447{width:14.583000px;}
._13_c00447{width:15.957000px;}
._d_c00447{width:21.870000px;}
._24_c00447{width:26.487000px;}
._1e_c00447{width:32.436000px;}
._21_c00447{width:36.648000px;}
._e_c00447{width:58.725000px;}
._19_c00447{width:66.177000px;}
._18_c00447{width:89.262000px;}
._16_c00447{width:94.599600px;}
._22_c00447{width:107.796000px;}
._10_c00447{width:179.577000px;}
._1b_c00447{width:196.506000px;}
._1d_c00447{width:217.971000px;}
._1a_c00447{width:264.627000px;}
.fc2_c00447{color:transparent;}
.fc1_c00447{color:rgb(128,128,128);}
.fc0_c00447{color:rgb(0,0,0);}
.fs5_c00447{font-size:48.000000px;}
.fs2_c00447{font-size:57.600000px;}
.fs1_c00447{font-size:72.000000px;}
.fs4_c00447{font-size:78.000000px;}
.fs0_c00447{font-size:81.000000px;}
.fs3_c00447{font-size:102.000000px;}
.y0_c00447{bottom:0.000000px;}
.y25_c00447{bottom:3.105000px;}
.y24_c00447{bottom:7.228355px;}
.y23_c00447{bottom:43.485000px;}
.y22_c00447{bottom:65.385000px;}
.y21_c00447{bottom:91.485000px;}
.y20_c00447{bottom:118.035000px;}
.y1f_c00447{bottom:142.635000px;}
.y1e_c00447{bottom:166.335000px;}
.y1d_c00447{bottom:191.235000px;}
.y1c_c00447{bottom:215.535000px;}
.y1b_c00447{bottom:240.285000px;}
.y1a_c00447{bottom:265.485000px;}
.y19_c00447{bottom:289.935000px;}
.y18_c00447{bottom:314.835000px;}
.y17_c00447{bottom:339.885000px;}
.y16_c00447{bottom:363.135000px;}
.y15_c00447{bottom:388.785000px;}
.y14_c00447{bottom:413.085000px;}
.y13_c00447{bottom:437.985000px;}
.y12_c00447{bottom:462.285000px;}
.y11_c00447{bottom:485.985000px;}
.y10_c00447{bottom:510.585000px;}
.yf_c00447{bottom:534.585000px;}
.ye_c00447{bottom:558.585000px;}
.yd_c00447{bottom:583.185000px;}
.yc_c00447{bottom:606.735000px;}
.yb_c00447{bottom:632.685000px;}
.ya_c00447{bottom:656.685000px;}
.y9_c00447{bottom:682.335000px;}
.y8_c00447{bottom:706.035000px;}
.y7_c00447{bottom:730.935000px;}
.y6_c00447{bottom:755.235000px;}
.y5_c00447{bottom:779.835000px;}
.y4_c00447{bottom:803.535000px;}
.y3_c00447{bottom:828.435000px;}
.y2_c00447{bottom:852.885000px;}
.y1_c00447{bottom:877.485000px;}
.h6_c00447{height:13.200074px;}
.h7_c00447{height:43.804688px;}
.h2_c00447{height:79.497070px;}
.h3_c00447{height:84.269531px;}
.h5_c00447{height:98.756836px;}
.h4_c00447{height:104.839927px;}
.h1_c00447{height:975.000000px;}
.h0_c00447{height:975.225000px;}
.w2_c00447{width:104.875500px;}
.w0_c00447{width:659.850000px;}
.w1_c00447{width:660.000000px;}
.x0_c00447{left:0.000000px;}
.x10_c00447{left:22.350000px;}
.xc_c00447{left:30.150000px;}
.x4_c00447{left:34.800000px;}
.x3_c00447{left:41.250000px;}
.x9_c00447{left:43.500000px;}
.x5_c00447{left:84.000000px;}
.x6_c00447{left:102.600000px;}
.x11_c00447{left:117.750000px;}
.xf_c00447{left:119.850000px;}
.xe_c00447{left:121.500000px;}
.xb_c00447{left:123.900000px;}
.xa_c00447{left:125.250000px;}
.x8_c00447{left:126.300000px;}
.x7_c00447{left:127.650000px;}
.x2_c00447{left:129.300000px;}
.x1_c00447{left:130.350000px;}
.xd_c00447{left:167.850000px;}
.x13_c00447{left:281.739258px;}
.x12_c00447{left:565.950000px;}
@media print{
.v0_c00447{vertical-align:0.000000pt;}
.ls2_c00447{letter-spacing:-8.000000pt;}
.ls1_c00447{letter-spacing:0.000000pt;}
.ls0_c00447{letter-spacing:7.573333pt;}
.ws3_c00447{word-spacing:-41.866667pt;}
.ws1_c00447{word-spacing:-21.184000pt;}
.ws0_c00447{word-spacing:-16.947200pt;}
.ws2_c00447{word-spacing:-15.424000pt;}
.ws4_c00447{word-spacing:0.000000pt;}
._28_c00447{margin-left:-30.997333pt;}
._25_c00447{margin-left:-29.370667pt;}
._1f_c00447{margin-left:-27.882667pt;}
._27_c00447{margin-left:-26.149333pt;}
._f_c00447{margin-left:-23.184000pt;}
._23_c00447{margin-left:-21.672000pt;}
._26_c00447{margin-left:-20.477333pt;}
._17_c00447{margin-left:-13.514667pt;}
._1c_c00447{margin-left:-12.168000pt;}
._14_c00447{margin-left:-10.552000pt;}
._a_c00447{margin-left:-8.712000pt;}
._12_c00447{margin-left:-6.912000pt;}
._7_c00447{margin-left:-5.472000pt;}
._9_c00447{margin-left:-3.960000pt;}
._11_c00447{margin-left:-3.024000pt;}
._4_c00447{margin-left:-1.728000pt;}
._8_c00447{width:1.368000pt;}
._c_c00447{width:2.304000pt;}
._6_c00447{width:3.312000pt;}
._1_c00447{width:4.320000pt;}
._3_c00447{width:5.832000pt;}
._5_c00447{width:6.768000pt;}
._2_c00447{width:7.704000pt;}
._b_c00447{width:9.432000pt;}
._20_c00447{width:10.464000pt;}
._0_c00447{width:11.448000pt;}
._15_c00447{width:12.962667pt;}
._13_c00447{width:14.184000pt;}
._d_c00447{width:19.440000pt;}
._24_c00447{width:23.544000pt;}
._1e_c00447{width:28.832000pt;}
._21_c00447{width:32.576000pt;}
._e_c00447{width:52.200000pt;}
._19_c00447{width:58.824000pt;}
._18_c00447{width:79.344000pt;}
._16_c00447{width:84.088533pt;}
._22_c00447{width:95.818667pt;}
._10_c00447{width:159.624000pt;}
._1b_c00447{width:174.672000pt;}
._1d_c00447{width:193.752000pt;}
._1a_c00447{width:235.224000pt;}
.fs5_c00447{font-size:42.666667pt;}
.fs2_c00447{font-size:51.200000pt;}
.fs1_c00447{font-size:64.000000pt;}
.fs4_c00447{font-size:69.333333pt;}
.fs0_c00447{font-size:72.000000pt;}
.fs3_c00447{font-size:90.666667pt;}
.y0_c00447{bottom:0.000000pt;}
.y25_c00447{bottom:2.760000pt;}
.y24_c00447{bottom:6.425204pt;}
.y23_c00447{bottom:38.653333pt;}
.y22_c00447{bottom:58.120000pt;}
.y21_c00447{bottom:81.320000pt;}
.y20_c00447{bottom:104.920000pt;}
.y1f_c00447{bottom:126.786667pt;}
.y1e_c00447{bottom:147.853333pt;}
.y1d_c00447{bottom:169.986667pt;}
.y1c_c00447{bottom:191.586667pt;}
.y1b_c00447{bottom:213.586667pt;}
.y1a_c00447{bottom:235.986667pt;}
.y19_c00447{bottom:257.720000pt;}
.y18_c00447{bottom:279.853333pt;}
.y17_c00447{bottom:302.120000pt;}
.y16_c00447{bottom:322.786667pt;}
.y15_c00447{bottom:345.586667pt;}
.y14_c00447{bottom:367.186667pt;}
.y13_c00447{bottom:389.320000pt;}
.y12_c00447{bottom:410.920000pt;}
.y11_c00447{bottom:431.986667pt;}
.y10_c00447{bottom:453.853333pt;}
.yf_c00447{bottom:475.186667pt;}
.ye_c00447{bottom:496.520000pt;}
.yd_c00447{bottom:518.386667pt;}
.yc_c00447{bottom:539.320000pt;}
.yb_c00447{bottom:562.386667pt;}
.ya_c00447{bottom:583.720000pt;}
.y9_c00447{bottom:606.520000pt;}
.y8_c00447{bottom:627.586667pt;}
.y7_c00447{bottom:649.720000pt;}
.y6_c00447{bottom:671.320000pt;}
.y5_c00447{bottom:693.186667pt;}
.y4_c00447{bottom:714.253333pt;}
.y3_c00447{bottom:736.386667pt;}
.y2_c00447{bottom:758.120000pt;}
.y1_c00447{bottom:779.986667pt;}
.h6_c00447{height:11.733399pt;}
.h7_c00447{height:38.937500pt;}
.h2_c00447{height:70.664062pt;}
.h3_c00447{height:74.906250pt;}
.h5_c00447{height:87.783854pt;}
.h4_c00447{height:93.191046pt;}
.h1_c00447{height:866.666667pt;}
.h0_c00447{height:866.866667pt;}
.w2_c00447{width:93.222667pt;}
.w0_c00447{width:586.533333pt;}
.w1_c00447{width:586.666667pt;}
.x0_c00447{left:0.000000pt;}
.x10_c00447{left:19.866667pt;}
.xc_c00447{left:26.800000pt;}
.x4_c00447{left:30.933333pt;}
.x3_c00447{left:36.666667pt;}
.x9_c00447{left:38.666667pt;}
.x5_c00447{left:74.666667pt;}
.x6_c00447{left:91.200000pt;}
.x11_c00447{left:104.666667pt;}
.xf_c00447{left:106.533333pt;}
.xe_c00447{left:108.000000pt;}
.xb_c00447{left:110.133333pt;}
.xa_c00447{left:111.333333pt;}
.x8_c00447{left:112.266667pt;}
.x7_c00447{left:113.466667pt;}
.x2_c00447{left:114.933333pt;}
.x1_c00447{left:115.866667pt;}
.xd_c00447{left:149.200000pt;}
.x13_c00447{left:250.434896pt;}
.x12_c00447{left:503.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_984644083a883a0056e5bd0e.woff2')format("woff");}.ff1_c00448{font-family:ff1_c00448;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00448;src:url('chunks/assets/font_f2af69b0d49e7b35899fe20c.woff2')format("woff");}.ff2_c00448{font-family:ff2_c00448;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00448;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff3_c00448{font-family:ff3_c00448;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00448;src:url('chunks/assets/font_4cae163fd3606f4c4830d61e.woff2')format("woff");}.ff4_c00448{font-family:ff4_c00448;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00448;src:url('chunks/assets/font_cae4431fdc59dd7e8a025402.woff2')format("woff");}.ff5_c00448{font-family:ff5_c00448;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00448;src:url('chunks/assets/font_13ba25df88ce274ea8e055be.woff2')format("woff");}.ff6_c00448{font-family:ff6_c00448;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00448;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c00448{font-family:ff7_c00448;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00448{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00448{vertical-align:0.000000px;}
.v1_c00448{vertical-align:162.600000px;}
.ls2_c00448{letter-spacing:-9.000000px;}
.ls1_c00448{letter-spacing:0.000000px;}
.ls3_c00448{letter-spacing:6.000000px;}
.ls0_c00448{letter-spacing:41.100000px;}
.sc__c00448{text-shadow:none;}
.sc0_c00448{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00448{-webkit-text-stroke:0px transparent;}
.sc0_c00448{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00448{word-spacing:-17.352000px;}
.ws1_c00448{word-spacing:0.000000px;}
._8_c00448{margin-left:-21.951000px;}
._16_c00448{margin-left:-19.521000px;}
._17_c00448{margin-left:-17.415000px;}
._19_c00448{margin-left:-14.499000px;}
._14_c00448{margin-left:-10.206000px;}
._9_c00448{margin-left:-8.991000px;}
._f_c00448{margin-left:-7.197000px;}
._7_c00448{margin-left:-5.589000px;}
._1_c00448{margin-left:-3.564000px;}
._2_c00448{margin-left:-1.782000px;}
._0_c00448{width:1.863000px;}
._3_c00448{width:3.726000px;}
._4_c00448{width:4.860000px;}
._6_c00448{width:6.561000px;}
._5_c00448{width:7.776000px;}
._d_c00448{width:9.153000px;}
._b_c00448{width:10.206000px;}
._c_c00448{width:11.745000px;}
._10_c00448{width:12.879000px;}
._e_c00448{width:15.633000px;}
._a_c00448{width:17.253000px;}
._12_c00448{width:21.117000px;}
._11_c00448{width:22.194000px;}
._1a_c00448{width:31.428000px;}
._13_c00448{width:111.507000px;}
._15_c00448{width:222.588000px;}
._1b_c00448{width:269.892000px;}
._18_c00448{width:317.439000px;}
.fc2_c00448{color:transparent;}
.fc1_c00448{color:rgb(128,128,128);}
.fc0_c00448{color:rgb(0,0,0);}
.fs5_c00448{font-size:48.000000px;}
.fs2_c00448{font-size:60.000000px;}
.fs3_c00448{font-size:66.000000px;}
.fs1_c00448{font-size:72.000000px;}
.fs0_c00448{font-size:81.000000px;}
.fs4_c00448{font-size:261.000000px;}
.y0_c00448{bottom:0.000000px;}
.y24_c00448{bottom:3.105000px;}
.y23_c00448{bottom:7.228371px;}
.y22_c00448{bottom:64.815000px;}
.y21_c00448{bottom:89.115000px;}
.y20_c00448{bottom:114.465000px;}
.y1f_c00448{bottom:139.065000px;}
.y1e_c00448{bottom:163.365000px;}
.y1d_c00448{bottom:187.815000px;}
.y1c_c00448{bottom:212.265000px;}
.y1b_c00448{bottom:236.715000px;}
.y1a_c00448{bottom:261.015000px;}
.y19_c00448{bottom:284.865000px;}
.y18_c00448{bottom:309.465000px;}
.y17_c00448{bottom:333.165000px;}
.y16_c00448{bottom:357.765000px;}
.y15_c00448{bottom:381.765000px;}
.y14_c00448{bottom:405.765000px;}
.y13_c00448{bottom:430.365000px;}
.y12_c00448{bottom:454.065000px;}
.y11_c00448{bottom:478.215000px;}
.y10_c00448{bottom:502.515000px;}
.ye_c00448{bottom:509.115000px;}
.yf_c00448{bottom:526.515000px;}
.yd_c00448{bottom:574.215000px;}
.yc_c00448{bottom:597.765000px;}
.yb_c00448{bottom:645.315000px;}
.ya_c00448{bottom:669.915000px;}
.y9_c00448{bottom:693.615000px;}
.y8_c00448{bottom:717.915000px;}
.y7_c00448{bottom:741.615000px;}
.y6_c00448{bottom:766.215000px;}
.y5_c00448{bottom:790.515000px;}
.y4_c00448{bottom:814.815000px;}
.y3_c00448{bottom:838.815000px;}
.y2_c00448{bottom:863.115000px;}
.y1_c00448{bottom:887.265000px;}
.h8_c00448{height:13.200074px;}
.h9_c00448{height:43.804688px;}
.h5_c00448{height:70.224609px;}
.h4_c00448{height:75.966797px;}
.h2_c00448{height:79.497070px;}
.h7_c00448{height:84.269531px;}
.h3_c00448{height:91.160156px;}
.h6_c00448{height:271.705078px;}
.h0_c00448{height:989.025000px;}
.h1_c00448{height:989.250000px;}
.w1_c00448{width:104.875500px;}
.w0_c00448{width:672.000000px;}
.x0_c00448{left:0.000000px;}
.x9_c00448{left:57.000000px;}
.x7_c00448{left:58.350000px;}
.x2_c00448{left:59.700000px;}
.x1_c00448{left:61.200000px;}
.x5_c00448{left:63.450000px;}
.x8_c00448{left:84.000000px;}
.x3_c00448{left:97.500000px;}
.x6_c00448{left:106.350000px;}
.x4_c00448{left:173.850000px;}
.xb_c00448{left:287.814240px;}
.xa_c00448{left:382.500000px;}
@media print{
.v0_c00448{vertical-align:0.000000pt;}
.v1_c00448{vertical-align:144.533333pt;}
.ls2_c00448{letter-spacing:-8.000000pt;}
.ls1_c00448{letter-spacing:0.000000pt;}
.ls3_c00448{letter-spacing:5.333333pt;}
.ls0_c00448{letter-spacing:36.533333pt;}
.ws0_c00448{word-spacing:-15.424000pt;}
.ws1_c00448{word-spacing:0.000000pt;}
._8_c00448{margin-left:-19.512000pt;}
._16_c00448{margin-left:-17.352000pt;}
._17_c00448{margin-left:-15.480000pt;}
._19_c00448{margin-left:-12.888000pt;}
._14_c00448{margin-left:-9.072000pt;}
._9_c00448{margin-left:-7.992000pt;}
._f_c00448{margin-left:-6.397333pt;}
._7_c00448{margin-left:-4.968000pt;}
._1_c00448{margin-left:-3.168000pt;}
._2_c00448{margin-left:-1.584000pt;}
._0_c00448{width:1.656000pt;}
._3_c00448{width:3.312000pt;}
._4_c00448{width:4.320000pt;}
._6_c00448{width:5.832000pt;}
._5_c00448{width:6.912000pt;}
._d_c00448{width:8.136000pt;}
._b_c00448{width:9.072000pt;}
._c_c00448{width:10.440000pt;}
._10_c00448{width:11.448000pt;}
._e_c00448{width:13.896000pt;}
._a_c00448{width:15.336000pt;}
._12_c00448{width:18.770667pt;}
._11_c00448{width:19.728000pt;}
._1a_c00448{width:27.936000pt;}
._13_c00448{width:99.117333pt;}
._15_c00448{width:197.856000pt;}
._1b_c00448{width:239.904000pt;}
._18_c00448{width:282.168000pt;}
.fs5_c00448{font-size:42.666667pt;}
.fs2_c00448{font-size:53.333333pt;}
.fs3_c00448{font-size:58.666667pt;}
.fs1_c00448{font-size:64.000000pt;}
.fs0_c00448{font-size:72.000000pt;}
.fs4_c00448{font-size:232.000000pt;}
.y0_c00448{bottom:0.000000pt;}
.y24_c00448{bottom:2.760000pt;}
.y23_c00448{bottom:6.425219pt;}
.y22_c00448{bottom:57.613333pt;}
.y21_c00448{bottom:79.213333pt;}
.y20_c00448{bottom:101.746667pt;}
.y1f_c00448{bottom:123.613333pt;}
.y1e_c00448{bottom:145.213333pt;}
.y1d_c00448{bottom:166.946667pt;}
.y1c_c00448{bottom:188.680000pt;}
.y1b_c00448{bottom:210.413333pt;}
.y1a_c00448{bottom:232.013333pt;}
.y19_c00448{bottom:253.213333pt;}
.y18_c00448{bottom:275.080000pt;}
.y17_c00448{bottom:296.146667pt;}
.y16_c00448{bottom:318.013333pt;}
.y15_c00448{bottom:339.346667pt;}
.y14_c00448{bottom:360.680000pt;}
.y13_c00448{bottom:382.546667pt;}
.y12_c00448{bottom:403.613333pt;}
.y11_c00448{bottom:425.080000pt;}
.y10_c00448{bottom:446.680000pt;}
.ye_c00448{bottom:452.546667pt;}
.yf_c00448{bottom:468.013333pt;}
.yd_c00448{bottom:510.413333pt;}
.yc_c00448{bottom:531.346667pt;}
.yb_c00448{bottom:573.613333pt;}
.ya_c00448{bottom:595.480000pt;}
.y9_c00448{bottom:616.546667pt;}
.y8_c00448{bottom:638.146667pt;}
.y7_c00448{bottom:659.213333pt;}
.y6_c00448{bottom:681.080000pt;}
.y5_c00448{bottom:702.680000pt;}
.y4_c00448{bottom:724.280000pt;}
.y3_c00448{bottom:745.613333pt;}
.y2_c00448{bottom:767.213333pt;}
.y1_c00448{bottom:788.680000pt;}
.h8_c00448{height:11.733399pt;}
.h9_c00448{height:38.937500pt;}
.h5_c00448{height:62.421875pt;}
.h4_c00448{height:67.526042pt;}
.h2_c00448{height:70.664062pt;}
.h7_c00448{height:74.906250pt;}
.h3_c00448{height:81.031250pt;}
.h6_c00448{height:241.515625pt;}
.h0_c00448{height:879.133333pt;}
.h1_c00448{height:879.333333pt;}
.w1_c00448{width:93.222667pt;}
.w0_c00448{width:597.333333pt;}
.x0_c00448{left:0.000000pt;}
.x9_c00448{left:50.666667pt;}
.x7_c00448{left:51.866667pt;}
.x2_c00448{left:53.066667pt;}
.x1_c00448{left:54.400000pt;}
.x5_c00448{left:56.400000pt;}
.x8_c00448{left:74.666667pt;}
.x3_c00448{left:86.666667pt;}
.x6_c00448{left:94.533333pt;}
.x4_c00448{left:154.533333pt;}
.xb_c00448{left:255.834880pt;}
.xa_c00448{left:340.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_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_c5a8132e29fc5b49b440977e.woff2')format("woff");}.ff1_c00449{font-family:ff1_c00449;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00449;src:url('chunks/assets/font_373b49eecdca9f8eeba3381d.woff2')format("woff");}.ff2_c00449{font-family:ff2_c00449;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00449;src:url('chunks/assets/font_dc8ddf0110e3bfed48d12078.woff2')format("woff");}.ff3_c00449{font-family:ff3_c00449;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00449;src:url('chunks/assets/font_92477b8f44a8a3c68a6c69c8.woff2')format("woff");}.ff4_c00449{font-family:ff4_c00449;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00449;src:url('chunks/assets/font_94bd2d3f7da447e92ee943ef.woff2')format("woff");}.ff5_c00449{font-family:ff5_c00449;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00449;src:url('chunks/assets/font_d75bd117d679855d0f82736d.woff2')format("woff");}.ff6_c00449{font-family:ff6_c00449;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00449;src:url('chunks/assets/font_418c495546745548ec1daae9.woff2')format("woff");}.ff7_c00449{font-family:ff7_c00449;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00449;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff8_c00449{font-family:ff8_c00449;line-height:1.219238;font-style: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;}
.ls4_c00449{letter-spacing:-9.000000px;}
.ls3_c00449{letter-spacing:0.000000px;}
.ls2_c00449{letter-spacing:0.936000px;}
.ls7_c00449{letter-spacing:3.000000px;}
.ls6_c00449{letter-spacing:9.000000px;}
.ls5_c00449{letter-spacing:12.000000px;}
.ls1_c00449{letter-spacing:249.900000px;}
.ls0_c00449{letter-spacing:264.300000px;}
.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;}
}
.ws1_c00449{word-spacing:-76.686000px;}
.ws0_c00449{word-spacing:-71.184000px;}
.ws5_c00449{word-spacing:-47.100000px;}
.ws2_c00449{word-spacing:-20.250000px;}
.ws4_c00449{word-spacing:-16.926000px;}
.ws3_c00449{word-spacing:-15.750000px;}
.ws6_c00449{word-spacing:0.000000px;}
._24_c00449{margin-left:-24.489000px;}
._12_c00449{margin-left:-21.609000px;}
._8_c00449{margin-left:-18.216000px;}
._14_c00449{margin-left:-15.309000px;}
._a_c00449{margin-left:-12.384000px;}
._9_c00449{margin-left:-11.376000px;}
._7_c00449{margin-left:-8.784000px;}
._13_c00449{margin-left:-7.209000px;}
._c_c00449{margin-left:-5.994000px;}
._4_c00449{margin-left:-4.860000px;}
._6_c00449{margin-left:-3.423000px;}
._16_c00449{margin-left:-2.307000px;}
._3_c00449{margin-left:-1.134000px;}
._5_c00449{width:1.539000px;}
._2_c00449{width:3.321000px;}
._0_c00449{width:4.536000px;}
._1_c00449{width:5.670000px;}
._17_c00449{width:6.720000px;}
._f_c00449{width:7.857000px;}
._11_c00449{width:8.910000px;}
._e_c00449{width:10.491000px;}
._19_c00449{width:11.499000px;}
._10_c00449{width:12.960000px;}
._b_c00449{width:14.316000px;}
._1a_c00449{width:17.172000px;}
._22_c00449{width:20.106000px;}
._1e_c00449{width:29.727000px;}
._1f_c00449{width:31.671000px;}
._23_c00449{width:37.356000px;}
._21_c00449{width:44.352000px;}
._20_c00449{width:51.810000px;}
._1d_c00449{width:79.683000px;}
._15_c00449{width:105.009000px;}
._18_c00449{width:217.890000px;}
._1b_c00449{width:235.098000px;}
._1c_c00449{width:249.819000px;}
._d_c00449{width:327.843000px;}
._25_c00449{width:1670.808000px;}
.fc2_c00449{color:transparent;}
.fc1_c00449{color:rgb(128,128,128);}
.fc0_c00449{color:rgb(0,0,0);}
.fs5_c00449{font-size:42.000000px;}
.fs8_c00449{font-size:48.000000px;}
.fs4_c00449{font-size:51.000000px;}
.fs7_c00449{font-size:66.000000px;}
.fs2_c00449{font-size:72.000000px;}
.fs6_c00449{font-size:78.000000px;}
.fs0_c00449{font-size:81.000000px;}
.fs3_c00449{font-size:87.000000px;}
.fs1_c00449{font-size:102.000000px;}
.y0_c00449{bottom:0.000000px;}
.y25_c00449{bottom:3.105000px;}
.y24_c00449{bottom:7.228363px;}
.y23_c00449{bottom:63.750000px;}
.y22_c00449{bottom:87.300000px;}
.y21_c00449{bottom:113.700000px;}
.y20_c00449{bottom:136.650000px;}
.y1f_c00449{bottom:161.700000px;}
.y1e_c00449{bottom:185.850000px;}
.y1d_c00449{bottom:210.150000px;}
.y1c_c00449{bottom:234.600000px;}
.y1b_c00449{bottom:259.650000px;}
.y1a_c00449{bottom:284.100000px;}
.y19_c00449{bottom:308.100000px;}
.y18_c00449{bottom:332.100000px;}
.y17_c00449{bottom:357.750000px;}
.y16_c00449{bottom:383.100000px;}
.y15_c00449{bottom:407.700000px;}
.y14_c00449{bottom:432.000000px;}
.y13_c00449{bottom:456.000000px;}
.y12_c00449{bottom:480.000000px;}
.y11_c00449{bottom:504.000000px;}
.y10_c00449{bottom:528.150000px;}
.yf_c00449{bottom:552.150000px;}
.ye_c00449{bottom:576.750000px;}
.yd_c00449{bottom:600.450000px;}
.yc_c00449{bottom:625.050000px;}
.yb_c00449{bottom:649.350000px;}
.ya_c00449{bottom:673.950000px;}
.y9_c00449{bottom:697.950000px;}
.y8_c00449{bottom:721.950000px;}
.y7_c00449{bottom:746.850000px;}
.y6_c00449{bottom:770.250000px;}
.y5_c00449{bottom:794.250000px;}
.y4_c00449{bottom:818.550000px;}
.y3_c00449{bottom:842.400000px;}
.y2_c00449{bottom:865.350000px;}
.y1_c00449{bottom:892.050000px;}
.h6_c00449{height:13.200074px;}
.h7_c00449{height:43.804688px;}
.h4_c00449{height:79.497070px;}
.h5_c00449{height:83.226000px;}
.h3_c00449{height:91.176000px;}
.h2_c00449{height:104.839927px;}
.h0_c00449{height:980.100000px;}
.h1_c00449{height:980.250000px;}
.w2_c00449{width:104.875500px;}
.w1_c00449{width:663.000000px;}
.w0_c00449{width:663.150000px;}
.x0_c00449{left:0.000000px;}
.x2_c00449{left:12.150000px;}
.x5_c00449{left:13.800000px;}
.x7_c00449{left:35.700000px;}
.x8_c00449{left:86.700000px;}
.x1_c00449{left:105.000000px;}
.x3_c00449{left:106.950000px;}
.x6_c00449{left:108.900000px;}
.x9_c00449{left:115.050000px;}
.x4_c00449{left:156.900000px;}
.xa_c00449{left:283.389267px;}
@media print{
.v0_c00449{vertical-align:0.000000pt;}
.ls4_c00449{letter-spacing:-8.000000pt;}
.ls3_c00449{letter-spacing:0.000000pt;}
.ls2_c00449{letter-spacing:0.832000pt;}
.ls7_c00449{letter-spacing:2.666667pt;}
.ls6_c00449{letter-spacing:8.000000pt;}
.ls5_c00449{letter-spacing:10.666667pt;}
.ls1_c00449{letter-spacing:222.133333pt;}
.ls0_c00449{letter-spacing:234.933333pt;}
.ws1_c00449{word-spacing:-68.165333pt;}
.ws0_c00449{word-spacing:-63.274667pt;}
.ws5_c00449{word-spacing:-41.866667pt;}
.ws2_c00449{word-spacing:-18.000000pt;}
.ws4_c00449{word-spacing:-15.045333pt;}
.ws3_c00449{word-spacing:-14.000000pt;}
.ws6_c00449{word-spacing:0.000000pt;}
._24_c00449{margin-left:-21.768000pt;}
._12_c00449{margin-left:-19.208000pt;}
._8_c00449{margin-left:-16.192000pt;}
._14_c00449{margin-left:-13.608000pt;}
._a_c00449{margin-left:-11.008000pt;}
._9_c00449{margin-left:-10.112000pt;}
._7_c00449{margin-left:-7.808000pt;}
._13_c00449{margin-left:-6.408000pt;}
._c_c00449{margin-left:-5.328000pt;}
._4_c00449{margin-left:-4.320000pt;}
._6_c00449{margin-left:-3.042667pt;}
._16_c00449{margin-left:-2.050667pt;}
._3_c00449{margin-left:-1.008000pt;}
._5_c00449{width:1.368000pt;}
._2_c00449{width:2.952000pt;}
._0_c00449{width:4.032000pt;}
._1_c00449{width:5.040000pt;}
._17_c00449{width:5.973333pt;}
._f_c00449{width:6.984000pt;}
._11_c00449{width:7.920000pt;}
._e_c00449{width:9.325333pt;}
._19_c00449{width:10.221333pt;}
._10_c00449{width:11.520000pt;}
._b_c00449{width:12.725333pt;}
._1a_c00449{width:15.264000pt;}
._22_c00449{width:17.872000pt;}
._1e_c00449{width:26.424000pt;}
._1f_c00449{width:28.152000pt;}
._23_c00449{width:33.205333pt;}
._21_c00449{width:39.424000pt;}
._20_c00449{width:46.053333pt;}
._1d_c00449{width:70.829333pt;}
._15_c00449{width:93.341333pt;}
._18_c00449{width:193.680000pt;}
._1b_c00449{width:208.976000pt;}
._1c_c00449{width:222.061333pt;}
._d_c00449{width:291.416000pt;}
._25_c00449{width:1485.162667pt;}
.fs5_c00449{font-size:37.333333pt;}
.fs8_c00449{font-size:42.666667pt;}
.fs4_c00449{font-size:45.333333pt;}
.fs7_c00449{font-size:58.666667pt;}
.fs2_c00449{font-size:64.000000pt;}
.fs6_c00449{font-size:69.333333pt;}
.fs0_c00449{font-size:72.000000pt;}
.fs3_c00449{font-size:77.333333pt;}
.fs1_c00449{font-size:90.666667pt;}
.y0_c00449{bottom:0.000000pt;}
.y25_c00449{bottom:2.760000pt;}
.y24_c00449{bottom:6.425212pt;}
.y23_c00449{bottom:56.666667pt;}
.y22_c00449{bottom:77.600000pt;}
.y21_c00449{bottom:101.066667pt;}
.y20_c00449{bottom:121.466667pt;}
.y1f_c00449{bottom:143.733333pt;}
.y1e_c00449{bottom:165.200000pt;}
.y1d_c00449{bottom:186.800000pt;}
.y1c_c00449{bottom:208.533333pt;}
.y1b_c00449{bottom:230.800000pt;}
.y1a_c00449{bottom:252.533333pt;}
.y19_c00449{bottom:273.866667pt;}
.y18_c00449{bottom:295.200000pt;}
.y17_c00449{bottom:318.000000pt;}
.y16_c00449{bottom:340.533333pt;}
.y15_c00449{bottom:362.400000pt;}
.y14_c00449{bottom:384.000000pt;}
.y13_c00449{bottom:405.333333pt;}
.y12_c00449{bottom:426.666667pt;}
.y11_c00449{bottom:448.000000pt;}
.y10_c00449{bottom:469.466667pt;}
.yf_c00449{bottom:490.800000pt;}
.ye_c00449{bottom:512.666667pt;}
.yd_c00449{bottom:533.733333pt;}
.yc_c00449{bottom:555.600000pt;}
.yb_c00449{bottom:577.200000pt;}
.ya_c00449{bottom:599.066667pt;}
.y9_c00449{bottom:620.400000pt;}
.y8_c00449{bottom:641.733333pt;}
.y7_c00449{bottom:663.866667pt;}
.y6_c00449{bottom:684.666667pt;}
.y5_c00449{bottom:706.000000pt;}
.y4_c00449{bottom:727.600000pt;}
.y3_c00449{bottom:748.800000pt;}
.y2_c00449{bottom:769.200000pt;}
.y1_c00449{bottom:792.933333pt;}
.h6_c00449{height:11.733399pt;}
.h7_c00449{height:38.937500pt;}
.h4_c00449{height:70.664062pt;}
.h5_c00449{height:73.978667pt;}
.h3_c00449{height:81.045333pt;}
.h2_c00449{height:93.191046pt;}
.h0_c00449{height:871.200000pt;}
.h1_c00449{height:871.333333pt;}
.w2_c00449{width:93.222667pt;}
.w1_c00449{width:589.333333pt;}
.w0_c00449{width:589.466667pt;}
.x0_c00449{left:0.000000pt;}
.x2_c00449{left:10.800000pt;}
.x5_c00449{left:12.266667pt;}
.x7_c00449{left:31.733333pt;}
.x8_c00449{left:77.066667pt;}
.x1_c00449{left:93.333333pt;}
.x3_c00449{left:95.066667pt;}
.x6_c00449{left:96.800000pt;}
.x9_c00449{left:102.266667pt;}
.x4_c00449{left:139.466667pt;}
.xa_c00449{left:251.901571pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1039dd77ab6fcde9f8d50827.woff2')format("woff");}.ff1_c00450{font-family:ff1_c00450;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00450;src:url('chunks/assets/font_27767ea15d78fc3d19f3e53d.woff2')format("woff");}.ff2_c00450{font-family:ff2_c00450;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00450;src:url('chunks/assets/font_94b1d3fc89d3348a41970177.woff2')format("woff");}.ff3_c00450{font-family:ff3_c00450;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00450;src:url('chunks/assets/font_0b07b95ae12fca6b5606cd9f.woff2')format("woff");}.ff4_c00450{font-family:ff4_c00450;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00450;src:url('chunks/assets/font_cbc770f6af8dc8c4d2a466ed.woff2')format("woff");}.ff5_c00450{font-family:ff5_c00450;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00450;src:url('chunks/assets/font_44b7a7c0d88568c38f0ce195.woff2')format("woff");}.ff6_c00450{font-family:ff6_c00450;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00450;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c00450{font-family:ff7_c00450;line-height:1.219238;font-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_c00450{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,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;}
.v1_c00450{vertical-align:2.400000px;}
.ls5_c00450{letter-spacing:-3.000000px;}
.ls3_c00450{letter-spacing:0.000000px;}
.ls0_c00450{letter-spacing:3.000000px;}
.ls1_c00450{letter-spacing:5.754000px;}
.ls4_c00450{letter-spacing:33.000000px;}
.ls2_c00450{letter-spacing:131.940000px;}
.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;}
}
.ws1_c00450{word-spacing:-27.000000px;}
.ws0_c00450{word-spacing:-23.859000px;}
.ws2_c00450{word-spacing:0.000000px;}
._3_c00450{margin-left:-44.352000px;}
._4_c00450{margin-left:-39.864000px;}
._16_c00450{margin-left:-27.132000px;}
._14_c00450{margin-left:-23.127000px;}
._1f_c00450{margin-left:-12.522000px;}
._18_c00450{margin-left:-11.040000px;}
._a_c00450{margin-left:-6.864000px;}
._1b_c00450{margin-left:-4.233000px;}
._e_c00450{margin-left:-2.160000px;}
._19_c00450{margin-left:-1.056000px;}
._1_c00450{width:1.980000px;}
._0_c00450{width:3.366000px;}
._9_c00450{width:4.854000px;}
._7_c00450{width:6.042000px;}
._2_c00450{width:7.317000px;}
._8_c00450{width:8.379000px;}
._5_c00450{width:9.954000px;}
._6_c00450{width:11.514000px;}
._c_c00450{width:13.317000px;}
._d_c00450{width:15.105000px;}
._b_c00450{width:16.131000px;}
._1c_c00450{width:18.489000px;}
._f_c00450{width:19.563000px;}
._15_c00450{width:20.991000px;}
._12_c00450{width:22.542000px;}
._10_c00450{width:24.618000px;}
._20_c00450{width:27.882000px;}
._17_c00450{width:30.153000px;}
._1e_c00450{width:33.765000px;}
._11_c00450{width:37.098000px;}
._1a_c00450{width:72.315000px;}
._13_c00450{width:78.414000px;}
._1d_c00450{width:290.631000px;}
._21_c00450{width:333.756000px;}
.fc2_c00450{color:transparent;}
.fc1_c00450{color:rgb(128,128,128);}
.fc0_c00450{color:rgb(0,0,0);}
.fs7_c00450{font-size:48.000000px;}
.fs6_c00450{font-size:54.000000px;}
.fs2_c00450{font-size:57.000000px;}
.fs5_c00450{font-size:60.000000px;}
.fs4_c00450{font-size:78.000000px;}
.fs0_c00450{font-size:99.000000px;}
.fs3_c00450{font-size:108.000000px;}
.fs1_c00450{font-size:132.000000px;}
.y0_c00450{bottom:0.000000px;}
.y25_c00450{bottom:3.105000px;}
.y24_c00450{bottom:7.228371px;}
.y23_c00450{bottom:60.165000px;}
.y22_c00450{bottom:85.515000px;}
.y21_c00450{bottom:110.715000px;}
.y20_c00450{bottom:135.465000px;}
.y1f_c00450{bottom:160.065000px;}
.y1e_c00450{bottom:184.365000px;}
.y1d_c00450{bottom:208.965000px;}
.y1c_c00450{bottom:232.965000px;}
.y1b_c00450{bottom:257.565000px;}
.y1a_c00450{bottom:281.565000px;}
.y19_c00450{bottom:305.565000px;}
.y18_c00450{bottom:329.115000px;}
.y17_c00450{bottom:353.715000px;}
.y16_c00450{bottom:377.415000px;}
.y15_c00450{bottom:402.015000px;}
.y14_c00450{bottom:426.015000px;}
.y13_c00450{bottom:450.015000px;}
.y12_c00450{bottom:474.165000px;}
.y11_c00450{bottom:498.165000px;}
.y10_c00450{bottom:521.565000px;}
.yf_c00450{bottom:546.465000px;}
.ye_c00450{bottom:569.715000px;}
.yd_c00450{bottom:615.615000px;}
.yc_c00450{bottom:640.365000px;}
.yb_c00450{bottom:664.515000px;}
.ya_c00450{bottom:689.565000px;}
.y9_c00450{bottom:713.265000px;}
.y8_c00450{bottom:737.565000px;}
.y7_c00450{bottom:761.115000px;}
.y6_c00450{bottom:785.115000px;}
.y5_c00450{bottom:809.415000px;}
.y4_c00450{bottom:834.015000px;}
.y3_c00450{bottom:858.015000px;}
.y2_c00450{bottom:882.015000px;}
.y1_c00450{bottom:916.965000px;}
.ha_c00450{height:13.200074px;}
.hb_c00450{height:43.804688px;}
.h3_c00450{height:57.445312px;}
.h8_c00450{height:59.845312px;}
.h7_c00450{height:66.713379px;}
.h9_c00450{height:68.370117px;}
.h6_c00450{height:72.168457px;}
.h5_c00450{height:98.756836px;}
.h4_c00450{height:108.843750px;}
.h2_c00450{height:167.126953px;}
.h0_c00450{height:989.025000px;}
.h1_c00450{height:989.250000px;}
.w1_c00450{width:104.875500px;}
.w0_c00450{width:672.000000px;}
.x0_c00450{left:0.000000px;}
.x6_c00450{left:58.500000px;}
.x11_c00450{left:61.050000px;}
.x10_c00450{left:62.100000px;}
.xf_c00450{left:63.750000px;}
.xe_c00450{left:64.800000px;}
.xd_c00450{left:66.450000px;}
.xc_c00450{left:67.500000px;}
.xb_c00450{left:68.850000px;}
.xa_c00450{left:69.900000px;}
.x2_c00450{left:72.000000px;}
.x5_c00450{left:73.200000px;}
.x9_c00450{left:99.900000px;}
.x7_c00450{left:108.450000px;}
.x1_c00450{left:125.550000px;}
.x8_c00450{left:183.000000px;}
.x13_c00450{left:287.814240px;}
.x12_c00450{left:377.400000px;}
.x3_c00450{left:430.650000px;}
.x4_c00450{left:449.550000px;}
@media print{
.v0_c00450{vertical-align:0.000000pt;}
.v1_c00450{vertical-align:2.133333pt;}
.ls5_c00450{letter-spacing:-2.666667pt;}
.ls3_c00450{letter-spacing:0.000000pt;}
.ls0_c00450{letter-spacing:2.666667pt;}
.ls1_c00450{letter-spacing:5.114667pt;}
.ls4_c00450{letter-spacing:29.333333pt;}
.ls2_c00450{letter-spacing:117.280000pt;}
.ws1_c00450{word-spacing:-24.000000pt;}
.ws0_c00450{word-spacing:-21.208000pt;}
.ws2_c00450{word-spacing:0.000000pt;}
._3_c00450{margin-left:-39.424000pt;}
._4_c00450{margin-left:-35.434667pt;}
._16_c00450{margin-left:-24.117333pt;}
._14_c00450{margin-left:-20.557333pt;}
._1f_c00450{margin-left:-11.130667pt;}
._18_c00450{margin-left:-9.813333pt;}
._a_c00450{margin-left:-6.101333pt;}
._1b_c00450{margin-left:-3.762667pt;}
._e_c00450{margin-left:-1.920000pt;}
._19_c00450{margin-left:-0.938667pt;}
._1_c00450{width:1.760000pt;}
._0_c00450{width:2.992000pt;}
._9_c00450{width:4.314667pt;}
._7_c00450{width:5.370667pt;}
._2_c00450{width:6.504000pt;}
._8_c00450{width:7.448000pt;}
._5_c00450{width:8.848000pt;}
._6_c00450{width:10.234667pt;}
._c_c00450{width:11.837333pt;}
._d_c00450{width:13.426667pt;}
._b_c00450{width:14.338667pt;}
._1c_c00450{width:16.434667pt;}
._f_c00450{width:17.389333pt;}
._15_c00450{width:18.658667pt;}
._12_c00450{width:20.037333pt;}
._10_c00450{width:21.882667pt;}
._20_c00450{width:24.784000pt;}
._17_c00450{width:26.802667pt;}
._1e_c00450{width:30.013333pt;}
._11_c00450{width:32.976000pt;}
._1a_c00450{width:64.280000pt;}
._13_c00450{width:69.701333pt;}
._1d_c00450{width:258.338667pt;}
._21_c00450{width:296.672000pt;}
.fs7_c00450{font-size:42.666667pt;}
.fs6_c00450{font-size:48.000000pt;}
.fs2_c00450{font-size:50.666667pt;}
.fs5_c00450{font-size:53.333333pt;}
.fs4_c00450{font-size:69.333333pt;}
.fs0_c00450{font-size:88.000000pt;}
.fs3_c00450{font-size:96.000000pt;}
.fs1_c00450{font-size:117.333333pt;}
.y0_c00450{bottom:0.000000pt;}
.y25_c00450{bottom:2.760000pt;}
.y24_c00450{bottom:6.425219pt;}
.y23_c00450{bottom:53.480000pt;}
.y22_c00450{bottom:76.013333pt;}
.y21_c00450{bottom:98.413333pt;}
.y20_c00450{bottom:120.413333pt;}
.y1f_c00450{bottom:142.280000pt;}
.y1e_c00450{bottom:163.880000pt;}
.y1d_c00450{bottom:185.746667pt;}
.y1c_c00450{bottom:207.080000pt;}
.y1b_c00450{bottom:228.946667pt;}
.y1a_c00450{bottom:250.280000pt;}
.y19_c00450{bottom:271.613333pt;}
.y18_c00450{bottom:292.546667pt;}
.y17_c00450{bottom:314.413333pt;}
.y16_c00450{bottom:335.480000pt;}
.y15_c00450{bottom:357.346667pt;}
.y14_c00450{bottom:378.680000pt;}
.y13_c00450{bottom:400.013333pt;}
.y12_c00450{bottom:421.480000pt;}
.y11_c00450{bottom:442.813333pt;}
.y10_c00450{bottom:463.613333pt;}
.yf_c00450{bottom:485.746667pt;}
.ye_c00450{bottom:506.413333pt;}
.yd_c00450{bottom:547.213333pt;}
.yc_c00450{bottom:569.213333pt;}
.yb_c00450{bottom:590.680000pt;}
.ya_c00450{bottom:612.946667pt;}
.y9_c00450{bottom:634.013333pt;}
.y8_c00450{bottom:655.613333pt;}
.y7_c00450{bottom:676.546667pt;}
.y6_c00450{bottom:697.880000pt;}
.y5_c00450{bottom:719.480000pt;}
.y4_c00450{bottom:741.346667pt;}
.y3_c00450{bottom:762.680000pt;}
.y2_c00450{bottom:784.013333pt;}
.y1_c00450{bottom:815.080000pt;}
.ha_c00450{height:11.733399pt;}
.hb_c00450{height:38.937500pt;}
.h3_c00450{height:51.062500pt;}
.h8_c00450{height:53.195833pt;}
.h7_c00450{height:59.300781pt;}
.h9_c00450{height:60.773438pt;}
.h6_c00450{height:64.149740pt;}
.h5_c00450{height:87.783854pt;}
.h4_c00450{height:96.750000pt;}
.h2_c00450{height:148.557292pt;}
.h0_c00450{height:879.133333pt;}
.h1_c00450{height:879.333333pt;}
.w1_c00450{width:93.222667pt;}
.w0_c00450{width:597.333333pt;}
.x0_c00450{left:0.000000pt;}
.x6_c00450{left:52.000000pt;}
.x11_c00450{left:54.266667pt;}
.x10_c00450{left:55.200000pt;}
.xf_c00450{left:56.666667pt;}
.xe_c00450{left:57.600000pt;}
.xd_c00450{left:59.066667pt;}
.xc_c00450{left:60.000000pt;}
.xb_c00450{left:61.200000pt;}
.xa_c00450{left:62.133333pt;}
.x2_c00450{left:64.000000pt;}
.x5_c00450{left:65.066667pt;}
.x9_c00450{left:88.800000pt;}
.x7_c00450{left:96.400000pt;}
.x1_c00450{left:111.600000pt;}
.x8_c00450{left:162.666667pt;}
.x13_c00450{left:255.834880pt;}
.x12_c00450{left:335.466667pt;}
.x3_c00450{left:382.800000pt;}
.x4_c00450{left:399.600000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_9b49294fa4302c2beb997913.woff2')format("woff");}.ff1_c00451{font-family:ff1_c00451;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00451;src:url('chunks/assets/font_1d84badec2d2aecf233ecf00.woff2')format("woff");}.ff2_c00451{font-family:ff2_c00451;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00451;src:url('chunks/assets/font_cdaf112a98957f215de13166.woff2')format("woff");}.ff3_c00451{font-family:ff3_c00451;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00451;src:url('chunks/assets/font_4e5cdf187655406ca558d948.woff2')format("woff");}.ff4_c00451{font-family:ff4_c00451;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00451;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c00451{font-family:ff5_c00451;line-height:1.219238;font-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_c00451{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,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;}
.ls2_c00451{letter-spacing:0.000000px;}
.ls0_c00451{letter-spacing:19.248000px;}
.ls1_c00451{letter-spacing:33.000000px;}
.sc__c00451{text-shadow:none;}
.sc0_c00451{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00451{-webkit-text-stroke:0px transparent;}
.sc0_c00451{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00451{word-spacing:-20.250000px;}
.ws1_c00451{word-spacing:0.000000px;}
._4_c00451{margin-left:-77.352000px;}
._2_c00451{margin-left:-32.736000px;}
._0_c00451{margin-left:-29.832000px;}
._1_c00451{margin-left:-20.064000px;}
._1b_c00451{margin-left:-15.120000px;}
._19_c00451{margin-left:-11.790000px;}
._e_c00451{margin-left:-9.828000px;}
._1d_c00451{margin-left:-7.902000px;}
._d_c00451{margin-left:-6.309000px;}
._f_c00451{margin-left:-4.995000px;}
._a_c00451{margin-left:-3.663000px;}
._b_c00451{margin-left:-2.376000px;}
._c_c00451{margin-left:-1.287000px;}
._3_c00451{width:1.188000px;}
._6_c00451{width:2.574000px;}
._9_c00451{width:4.257000px;}
._7_c00451{width:6.039000px;}
._8_c00451{width:7.920000px;}
._17_c00451{width:9.900000px;}
._1a_c00451{width:11.907000px;}
._10_c00451{width:12.960000px;}
._12_c00451{width:14.013000px;}
._11_c00451{width:15.570000px;}
._14_c00451{width:17.496000px;}
._16_c00451{width:18.567000px;}
._15_c00451{width:22.761000px;}
._20_c00451{width:41.538000px;}
._1e_c00451{width:52.623000px;}
._5_c00451{width:57.564000px;}
._13_c00451{width:63.765000px;}
._18_c00451{width:65.511000px;}
._1f_c00451{width:78.795000px;}
._1c_c00451{width:383.937000px;}
.fc2_c00451{color:transparent;}
.fc1_c00451{color:rgb(128,128,128);}
.fc0_c00451{color:rgb(0,0,0);}
.fs5_c00451{font-size:48.000000px;}
.fs4_c00451{font-size:72.000000px;}
.fs3_c00451{font-size:81.000000px;}
.fs1_c00451{font-size:99.000000px;}
.fs2_c00451{font-size:108.000000px;}
.fs0_c00451{font-size:132.000000px;}
.y0_c00451{bottom:0.000000px;}
.y26_c00451{bottom:3.105000px;}
.y25_c00451{bottom:7.228355px;}
.y24_c00451{bottom:54.285000px;}
.y23_c00451{bottom:80.235000px;}
.y22_c00451{bottom:104.535000px;}
.y21_c00451{bottom:129.135000px;}
.y20_c00451{bottom:153.885000px;}
.y1f_c00451{bottom:177.735000px;}
.y1e_c00451{bottom:202.185000px;}
.y1d_c00451{bottom:226.335000px;}
.y1c_c00451{bottom:251.085000px;}
.y1b_c00451{bottom:275.385000px;}
.y1a_c00451{bottom:299.985000px;}
.y19_c00451{bottom:324.285000px;}
.y18_c00451{bottom:349.185000px;}
.y17_c00451{bottom:373.185000px;}
.y16_c00451{bottom:397.185000px;}
.y15_c00451{bottom:421.785000px;}
.y14_c00451{bottom:445.785000px;}
.y13_c00451{bottom:469.785000px;}
.y12_c00451{bottom:494.685000px;}
.y11_c00451{bottom:517.335000px;}
.y10_c00451{bottom:541.035000px;}
.yf_c00451{bottom:565.335000px;}
.ye_c00451{bottom:589.485000px;}
.yd_c00451{bottom:613.785000px;}
.yc_c00451{bottom:637.785000px;}
.yb_c00451{bottom:662.085000px;}
.ya_c00451{bottom:686.085000px;}
.y9_c00451{bottom:709.785000px;}
.y8_c00451{bottom:734.085000px;}
.y7_c00451{bottom:758.385000px;}
.y6_c00451{bottom:782.235000px;}
.y5_c00451{bottom:806.235000px;}
.y4_c00451{bottom:830.535000px;}
.y3_c00451{bottom:854.085000px;}
.y2_c00451{bottom:878.385000px;}
.y1_c00451{bottom:913.485000px;}
.h6_c00451{height:13.200074px;}
.h7_c00451{height:43.804688px;}
.h4_c00451{height:79.497070px;}
.h5_c00451{height:84.269531px;}
.h3_c00451{height:108.843750px;}
.h2_c00451{height:167.126953px;}
.h1_c00451{height:975.000000px;}
.h0_c00451{height:975.225000px;}
.w2_c00451{width:104.875500px;}
.w0_c00451{width:659.850000px;}
.w1_c00451{width:660.000000px;}
.x0_c00451{left:0.000000px;}
.x4_c00451{left:31.050000px;}
.x9_c00451{left:32.700000px;}
.xc_c00451{left:39.450000px;}
.x1_c00451{left:114.300000px;}
.x2_c00451{left:119.100000px;}
.x3_c00451{left:121.500000px;}
.x6_c00451{left:123.300000px;}
.x7_c00451{left:125.100000px;}
.x8_c00451{left:126.450000px;}
.x5_c00451{left:128.250000px;}
.xa_c00451{left:129.300000px;}
.xb_c00451{left:130.350000px;}
.xe_c00451{left:131.400000px;}
.xd_c00451{left:137.400000px;}
.x10_c00451{left:281.739258px;}
.xf_c00451{left:594.300000px;}
@media print{
.v0_c00451{vertical-align:0.000000pt;}
.ls2_c00451{letter-spacing:0.000000pt;}
.ls0_c00451{letter-spacing:17.109333pt;}
.ls1_c00451{letter-spacing:29.333333pt;}
.ws0_c00451{word-spacing:-18.000000pt;}
.ws1_c00451{word-spacing:0.000000pt;}
._4_c00451{margin-left:-68.757333pt;}
._2_c00451{margin-left:-29.098667pt;}
._0_c00451{margin-left:-26.517333pt;}
._1_c00451{margin-left:-17.834667pt;}
._1b_c00451{margin-left:-13.440000pt;}
._19_c00451{margin-left:-10.480000pt;}
._e_c00451{margin-left:-8.736000pt;}
._1d_c00451{margin-left:-7.024000pt;}
._d_c00451{margin-left:-5.608000pt;}
._f_c00451{margin-left:-4.440000pt;}
._a_c00451{margin-left:-3.256000pt;}
._b_c00451{margin-left:-2.112000pt;}
._c_c00451{margin-left:-1.144000pt;}
._3_c00451{width:1.056000pt;}
._6_c00451{width:2.288000pt;}
._9_c00451{width:3.784000pt;}
._7_c00451{width:5.368000pt;}
._8_c00451{width:7.040000pt;}
._17_c00451{width:8.800000pt;}
._1a_c00451{width:10.584000pt;}
._10_c00451{width:11.520000pt;}
._12_c00451{width:12.456000pt;}
._11_c00451{width:13.840000pt;}
._14_c00451{width:15.552000pt;}
._16_c00451{width:16.504000pt;}
._15_c00451{width:20.232000pt;}
._20_c00451{width:36.922667pt;}
._1e_c00451{width:46.776000pt;}
._5_c00451{width:51.168000pt;}
._13_c00451{width:56.680000pt;}
._18_c00451{width:58.232000pt;}
._1f_c00451{width:70.040000pt;}
._1c_c00451{width:341.277333pt;}
.fs5_c00451{font-size:42.666667pt;}
.fs4_c00451{font-size:64.000000pt;}
.fs3_c00451{font-size:72.000000pt;}
.fs1_c00451{font-size:88.000000pt;}
.fs2_c00451{font-size:96.000000pt;}
.fs0_c00451{font-size:117.333333pt;}
.y0_c00451{bottom:0.000000pt;}
.y26_c00451{bottom:2.760000pt;}
.y25_c00451{bottom:6.425204pt;}
.y24_c00451{bottom:48.253333pt;}
.y23_c00451{bottom:71.320000pt;}
.y22_c00451{bottom:92.920000pt;}
.y21_c00451{bottom:114.786667pt;}
.y20_c00451{bottom:136.786667pt;}
.y1f_c00451{bottom:157.986667pt;}
.y1e_c00451{bottom:179.720000pt;}
.y1d_c00451{bottom:201.186667pt;}
.y1c_c00451{bottom:223.186667pt;}
.y1b_c00451{bottom:244.786667pt;}
.y1a_c00451{bottom:266.653333pt;}
.y19_c00451{bottom:288.253333pt;}
.y18_c00451{bottom:310.386667pt;}
.y17_c00451{bottom:331.720000pt;}
.y16_c00451{bottom:353.053333pt;}
.y15_c00451{bottom:374.920000pt;}
.y14_c00451{bottom:396.253333pt;}
.y13_c00451{bottom:417.586667pt;}
.y12_c00451{bottom:439.720000pt;}
.y11_c00451{bottom:459.853333pt;}
.y10_c00451{bottom:480.920000pt;}
.yf_c00451{bottom:502.520000pt;}
.ye_c00451{bottom:523.986667pt;}
.yd_c00451{bottom:545.586667pt;}
.yc_c00451{bottom:566.920000pt;}
.yb_c00451{bottom:588.520000pt;}
.ya_c00451{bottom:609.853333pt;}
.y9_c00451{bottom:630.920000pt;}
.y8_c00451{bottom:652.520000pt;}
.y7_c00451{bottom:674.120000pt;}
.y6_c00451{bottom:695.320000pt;}
.y5_c00451{bottom:716.653333pt;}
.y4_c00451{bottom:738.253333pt;}
.y3_c00451{bottom:759.186667pt;}
.y2_c00451{bottom:780.786667pt;}
.y1_c00451{bottom:811.986667pt;}
.h6_c00451{height:11.733399pt;}
.h7_c00451{height:38.937500pt;}
.h4_c00451{height:70.664062pt;}
.h5_c00451{height:74.906250pt;}
.h3_c00451{height:96.750000pt;}
.h2_c00451{height:148.557292pt;}
.h1_c00451{height:866.666667pt;}
.h0_c00451{height:866.866667pt;}
.w2_c00451{width:93.222667pt;}
.w0_c00451{width:586.533333pt;}
.w1_c00451{width:586.666667pt;}
.x0_c00451{left:0.000000pt;}
.x4_c00451{left:27.600000pt;}
.x9_c00451{left:29.066667pt;}
.xc_c00451{left:35.066667pt;}
.x1_c00451{left:101.600000pt;}
.x2_c00451{left:105.866667pt;}
.x3_c00451{left:108.000000pt;}
.x6_c00451{left:109.600000pt;}
.x7_c00451{left:111.200000pt;}
.x8_c00451{left:112.400000pt;}
.x5_c00451{left:114.000000pt;}
.xa_c00451{left:114.933333pt;}
.xb_c00451{left:115.866667pt;}
.xe_c00451{left:116.800000pt;}
.xd_c00451{left:122.133333pt;}
.x10_c00451{left:250.434896pt;}
.xf_c00451{left:528.266667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_c6ee7eb90332dcac4dd4def9.woff2')format("woff");}.ff1_c00452{font-family:ff1_c00452;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00452;src:url('chunks/assets/font_23a762e22c7d193400cf139a.woff2')format("woff");}.ff2_c00452{font-family:ff2_c00452;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00452;src:url('chunks/assets/font_299a98b358e10dc6729d53e5.woff2')format("woff");}.ff3_c00452{font-family:ff3_c00452;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00452;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff4_c00452{font-family:ff4_c00452;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00452{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00452{vertical-align:-15.000000px;}
.v0_c00452{vertical-align:0.000000px;}
.ls4_c00452{letter-spacing:0.000000px;}
.ls1_c00452{letter-spacing:2.280000px;}
.ls5_c00452{letter-spacing:9.000000px;}
.ls0_c00452{letter-spacing:20.802000px;}
.ls3_c00452{letter-spacing:37.512000px;}
.ls2_c00452{letter-spacing:137.160000px;}
.sc__c00452{text-shadow:none;}
.sc0_c00452{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00452{-webkit-text-stroke:0px transparent;}
.sc0_c00452{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00452{word-spacing:-17.352000px;}
.ws1_c00452{word-spacing:0.000000px;}
._14_c00452{margin-left:-28.188000px;}
._18_c00452{margin-left:-15.072000px;}
._a_c00452{margin-left:-13.932000px;}
._22_c00452{margin-left:-12.909000px;}
._1e_c00452{margin-left:-8.667000px;}
._b_c00452{margin-left:-7.614000px;}
._10_c00452{margin-left:-6.561000px;}
._3_c00452{margin-left:-4.860000px;}
._7_c00452{margin-left:-3.726000px;}
._2_c00452{margin-left:-2.268000px;}
._6_c00452{margin-left:-1.053000px;}
._1_c00452{width:1.539000px;}
._0_c00452{width:2.673000px;}
._5_c00452{width:3.807000px;}
._4_c00452{width:4.860000px;}
._8_c00452{width:6.156000px;}
._f_c00452{width:7.209000px;}
._9_c00452{width:8.343000px;}
._c_c00452{width:10.125000px;}
._13_c00452{width:11.826000px;}
._e_c00452{width:13.284000px;}
._1d_c00452{width:14.337000px;}
._12_c00452{width:15.957000px;}
._11_c00452{width:17.901000px;}
._1b_c00452{width:19.338000px;}
._19_c00452{width:20.562000px;}
._1f_c00452{width:23.589000px;}
._1c_c00452{width:24.735000px;}
._1a_c00452{width:26.064000px;}
._16_c00452{width:28.431000px;}
._d_c00452{width:30.051000px;}
._17_c00452{width:41.904000px;}
._21_c00452{width:148.488000px;}
._15_c00452{width:181.440000px;}
._20_c00452{width:1182.564000px;}
.fc2_c00452{color:transparent;}
.fc1_c00452{color:rgb(128,128,128);}
.fc0_c00452{color:rgb(0,0,0);}
.fs5_c00452{font-size:48.000000px;}
.fs2_c00452{font-size:57.000000px;}
.fs4_c00452{font-size:60.000000px;}
.fs1_c00452{font-size:72.000000px;}
.fs3_c00452{font-size:78.000000px;}
.fs0_c00452{font-size:81.000000px;}
.y0_c00452{bottom:0.000000px;}
.y24_c00452{bottom:3.105000px;}
.y23_c00452{bottom:7.228371px;}
.y22_c00452{bottom:50.415000px;}
.y21_c00452{bottom:79.365000px;}
.y20_c00452{bottom:104.415000px;}
.y1f_c00452{bottom:129.615000px;}
.y1e_c00452{bottom:158.415000px;}
.y1d_c00452{bottom:177.165000px;}
.y1c_c00452{bottom:202.815000px;}
.y1b_c00452{bottom:227.265000px;}
.y1a_c00452{bottom:273.465000px;}
.y19_c00452{bottom:297.765000px;}
.y18_c00452{bottom:322.665000px;}
.y17_c00452{bottom:346.065000px;}
.y16_c00452{bottom:370.965000px;}
.y15_c00452{bottom:394.965000px;}
.y14_c00452{bottom:419.265000px;}
.y13_c00452{bottom:443.265000px;}
.y12_c00452{bottom:467.415000px;}
.y11_c00452{bottom:491.715000px;}
.y10_c00452{bottom:515.715000px;}
.yf_c00452{bottom:539.415000px;}
.ye_c00452{bottom:563.565000px;}
.yd_c00452{bottom:587.265000px;}
.yc_c00452{bottom:610.965000px;}
.yb_c00452{bottom:635.265000px;}
.ya_c00452{bottom:659.265000px;}
.y9_c00452{bottom:683.565000px;}
.y8_c00452{bottom:707.865000px;}
.y7_c00452{bottom:731.715000px;}
.y6_c00452{bottom:756.315000px;}
.y5_c00452{bottom:780.765000px;}
.y4_c00452{bottom:804.315000px;}
.y3_c00452{bottom:829.065000px;}
.y2_c00452{bottom:853.515000px;}
.y1_c00452{bottom:877.965000px;}
.h9_c00452{height:13.200074px;}
.ha_c00452{height:43.804688px;}
.h7_c00452{height:66.713379px;}
.h6_c00452{height:72.168457px;}
.h8_c00452{height:76.160156px;}
.h2_c00452{height:79.497070px;}
.h5_c00452{height:84.269531px;}
.h3_c00452{height:91.160156px;}
.h4_c00452{height:98.756836px;}
.h1_c00452{height:966.000000px;}
.h0_c00452{height:966.075000px;}
.w2_c00452{width:104.875500px;}
.w0_c00452{width:656.100000px;}
.w1_c00452{width:656.250000px;}
.x0_c00452{left:0.000000px;}
.x7_c00452{left:46.200000px;}
.x1_c00452{left:49.500000px;}
.x2_c00452{left:50.550000px;}
.x6_c00452{left:73.950000px;}
.x3_c00452{left:85.050000px;}
.x4_c00452{left:177.300000px;}
.x5_c00452{left:264.000000px;}
.x9_c00452{left:279.864258px;}
.x8_c00452{left:353.400000px;}
@media print{
.v1_c00452{vertical-align:-13.333333pt;}
.v0_c00452{vertical-align:0.000000pt;}
.ls4_c00452{letter-spacing:0.000000pt;}
.ls1_c00452{letter-spacing:2.026667pt;}
.ls5_c00452{letter-spacing:8.000000pt;}
.ls0_c00452{letter-spacing:18.490667pt;}
.ls3_c00452{letter-spacing:33.344000pt;}
.ls2_c00452{letter-spacing:121.920000pt;}
.ws0_c00452{word-spacing:-15.424000pt;}
.ws1_c00452{word-spacing:0.000000pt;}
._14_c00452{margin-left:-25.056000pt;}
._18_c00452{margin-left:-13.397333pt;}
._a_c00452{margin-left:-12.384000pt;}
._22_c00452{margin-left:-11.474667pt;}
._1e_c00452{margin-left:-7.704000pt;}
._b_c00452{margin-left:-6.768000pt;}
._10_c00452{margin-left:-5.832000pt;}
._3_c00452{margin-left:-4.320000pt;}
._7_c00452{margin-left:-3.312000pt;}
._2_c00452{margin-left:-2.016000pt;}
._6_c00452{margin-left:-0.936000pt;}
._1_c00452{width:1.368000pt;}
._0_c00452{width:2.376000pt;}
._5_c00452{width:3.384000pt;}
._4_c00452{width:4.320000pt;}
._8_c00452{width:5.472000pt;}
._f_c00452{width:6.408000pt;}
._9_c00452{width:7.416000pt;}
._c_c00452{width:9.000000pt;}
._13_c00452{width:10.512000pt;}
._e_c00452{width:11.808000pt;}
._1d_c00452{width:12.744000pt;}
._12_c00452{width:14.184000pt;}
._11_c00452{width:15.912000pt;}
._1b_c00452{width:17.189333pt;}
._19_c00452{width:18.277333pt;}
._1f_c00452{width:20.968000pt;}
._1c_c00452{width:21.986667pt;}
._1a_c00452{width:23.168000pt;}
._16_c00452{width:25.272000pt;}
._d_c00452{width:26.712000pt;}
._17_c00452{width:37.248000pt;}
._21_c00452{width:131.989333pt;}
._15_c00452{width:161.280000pt;}
._20_c00452{width:1051.168000pt;}
.fs5_c00452{font-size:42.666667pt;}
.fs2_c00452{font-size:50.666667pt;}
.fs4_c00452{font-size:53.333333pt;}
.fs1_c00452{font-size:64.000000pt;}
.fs3_c00452{font-size:69.333333pt;}
.fs0_c00452{font-size:72.000000pt;}
.y0_c00452{bottom:0.000000pt;}
.y24_c00452{bottom:2.760000pt;}
.y23_c00452{bottom:6.425219pt;}
.y22_c00452{bottom:44.813333pt;}
.y21_c00452{bottom:70.546667pt;}
.y20_c00452{bottom:92.813333pt;}
.y1f_c00452{bottom:115.213333pt;}
.y1e_c00452{bottom:140.813333pt;}
.y1d_c00452{bottom:157.480000pt;}
.y1c_c00452{bottom:180.280000pt;}
.y1b_c00452{bottom:202.013333pt;}
.y1a_c00452{bottom:243.080000pt;}
.y19_c00452{bottom:264.680000pt;}
.y18_c00452{bottom:286.813333pt;}
.y17_c00452{bottom:307.613333pt;}
.y16_c00452{bottom:329.746667pt;}
.y15_c00452{bottom:351.080000pt;}
.y14_c00452{bottom:372.680000pt;}
.y13_c00452{bottom:394.013333pt;}
.y12_c00452{bottom:415.480000pt;}
.y11_c00452{bottom:437.080000pt;}
.y10_c00452{bottom:458.413333pt;}
.yf_c00452{bottom:479.480000pt;}
.ye_c00452{bottom:500.946667pt;}
.yd_c00452{bottom:522.013333pt;}
.yc_c00452{bottom:543.080000pt;}
.yb_c00452{bottom:564.680000pt;}
.ya_c00452{bottom:586.013333pt;}
.y9_c00452{bottom:607.613333pt;}
.y8_c00452{bottom:629.213333pt;}
.y7_c00452{bottom:650.413333pt;}
.y6_c00452{bottom:672.280000pt;}
.y5_c00452{bottom:694.013333pt;}
.y4_c00452{bottom:714.946667pt;}
.y3_c00452{bottom:736.946667pt;}
.y2_c00452{bottom:758.680000pt;}
.y1_c00452{bottom:780.413333pt;}
.h9_c00452{height:11.733399pt;}
.ha_c00452{height:38.937500pt;}
.h7_c00452{height:59.300781pt;}
.h6_c00452{height:64.149740pt;}
.h8_c00452{height:67.697917pt;}
.h2_c00452{height:70.664062pt;}
.h5_c00452{height:74.906250pt;}
.h3_c00452{height:81.031250pt;}
.h4_c00452{height:87.783854pt;}
.h1_c00452{height:858.666667pt;}
.h0_c00452{height:858.733333pt;}
.w2_c00452{width:93.222667pt;}
.w0_c00452{width:583.200000pt;}
.w1_c00452{width:583.333333pt;}
.x0_c00452{left:0.000000pt;}
.x7_c00452{left:41.066667pt;}
.x1_c00452{left:44.000000pt;}
.x2_c00452{left:44.933333pt;}
.x6_c00452{left:65.733333pt;}
.x3_c00452{left:75.600000pt;}
.x4_c00452{left:157.600000pt;}
.x5_c00452{left:234.666667pt;}
.x9_c00452{left:248.768229pt;}
.x8_c00452{left:314.133333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_482a99a5b2b98c5150a27cff.woff2')format("woff");}.ff1_c00453{font-family:ff1_c00453;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00453;src:url('chunks/assets/font_e2488def1b66956698dda211.woff2')format("woff");}.ff2_c00453{font-family:ff2_c00453;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00453;src:url('chunks/assets/font_a7ccbbb95570088836b0ade8.woff2')format("woff");}.ff3_c00453{font-family:ff3_c00453;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00453;src:url('chunks/assets/font_b9f6390e08d6e0b437bc2cb1.woff2')format("woff");}.ff4_c00453{font-family:ff4_c00453;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00453;src:url('chunks/assets/font_4242a947298bd618bf4bdef0.woff2')format("woff");}.ff5_c00453{font-family:ff5_c00453;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00453;src:url('chunks/assets/font_b1409c915f06b6949aa5980c.woff2')format("woff");}.ff6_c00453{font-family:ff6_c00453;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00453;src:url('chunks/assets/font_c3e41df3751f7d67e0b23476.woff2')format("woff");}.ff7_c00453{font-family:ff7_c00453;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00453;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff8_c00453{font-family:ff8_c00453;line-height:1.219238;font-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_c00453{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,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;}
.ls3_c00453{letter-spacing:0.000000px;}
.ls1_c00453{letter-spacing:0.120000px;}
.ls4_c00453{letter-spacing:3.000000px;}
.ls0_c00453{letter-spacing:21.264000px;}
.ls2_c00453{letter-spacing:33.000000px;}
.sc__c00453{text-shadow:none;}
.sc0_c00453{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00453{-webkit-text-stroke:0px transparent;}
.sc0_c00453{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00453{word-spacing:-60.048000px;}
.ws1_c00453{word-spacing:-36.000000px;}
.ws3_c00453{word-spacing:-23.832000px;}
.ws5_c00453{word-spacing:-22.518000px;}
.ws2_c00453{word-spacing:-19.065600px;}
.ws4_c00453{word-spacing:-18.014400px;}
.ws0_c00453{word-spacing:-17.352000px;}
.ws7_c00453{word-spacing:0.000000px;}
._3_c00453{margin-left:-62.964000px;}
._2_c00453{margin-left:-42.108000px;}
._0_c00453{margin-left:-30.492000px;}
._16_c00453{margin-left:-27.459000px;}
._24_c00453{margin-left:-25.515000px;}
._1_c00453{margin-left:-20.328000px;}
._1a_c00453{margin-left:-17.388000px;}
._1e_c00453{margin-left:-15.696000px;}
._4_c00453{margin-left:-14.580000px;}
._8_c00453{margin-left:-12.870000px;}
._26_c00453{margin-left:-11.421000px;}
._1d_c00453{margin-left:-10.152000px;}
._22_c00453{margin-left:-8.802000px;}
._a_c00453{margin-left:-7.623000px;}
._d_c00453{margin-left:-6.435000px;}
._b_c00453{margin-left:-5.346000px;}
._c_c00453{margin-left:-3.861000px;}
._5_c00453{margin-left:-2.475000px;}
._10_c00453{margin-left:-1.134000px;}
._9_c00453{width:1.512000px;}
._11_c00453{width:2.637000px;}
._e_c00453{width:3.870000px;}
._f_c00453{width:5.769000px;}
._13_c00453{width:7.353000px;}
._7_c00453{width:9.009000px;}
._6_c00453{width:10.296000px;}
._17_c00453{width:12.150000px;}
._12_c00453{width:13.230000px;}
._15_c00453{width:14.373000px;}
._14_c00453{width:15.453000px;}
._18_c00453{width:24.462000px;}
._1c_c00453{width:26.016000px;}
._27_c00453{width:27.135000px;}
._23_c00453{width:32.667000px;}
._2a_c00453{width:34.077000px;}
._2d_c00453{width:36.558000px;}
._29_c00453{width:39.105000px;}
._2c_c00453{width:40.749000px;}
._2e_c00453{width:67.149000px;}
._1b_c00453{width:74.448000px;}
._19_c00453{width:82.458000px;}
._25_c00453{width:124.335000px;}
._1f_c00453{width:138.024000px;}
._20_c00453{width:152.034000px;}
._2b_c00453{width:247.149000px;}
._28_c00453{width:251.109000px;}
._21_c00453{width:396.846000px;}
.fc2_c00453{color:transparent;}
.fc1_c00453{color:rgb(128,128,128);}
.fc0_c00453{color:rgb(0,0,0);}
.fs8_c00453{font-size:48.000000px;}
.fs5_c00453{font-size:57.600000px;}
.fs6_c00453{font-size:64.800000px;}
.fs4_c00453{font-size:66.000000px;}
.fs3_c00453{font-size:72.000000px;}
.fs2_c00453{font-size:81.000000px;}
.fs1_c00453{font-size:99.000000px;}
.fs7_c00453{font-size:108.000000px;}
.fs0_c00453{font-size:132.000000px;}
.y0_c00453{bottom:0.000000px;}
.y26_c00453{bottom:3.105000px;}
.y25_c00453{bottom:7.228371px;}
.y24_c00453{bottom:65.115000px;}
.y23_c00453{bottom:87.465000px;}
.y22_c00453{bottom:113.715000px;}
.y21_c00453{bottom:136.065000px;}
.y20_c00453{bottom:163.665000px;}
.y1f_c00453{bottom:184.665000px;}
.y1e_c00453{bottom:210.315000px;}
.y1d_c00453{bottom:234.915000px;}
.y1c_c00453{bottom:259.515000px;}
.y1b_c00453{bottom:283.215000px;}
.y1a_c00453{bottom:308.115000px;}
.y19_c00453{bottom:333.915000px;}
.y18_c00453{bottom:357.165000px;}
.y17_c00453{bottom:380.415000px;}
.y16_c00453{bottom:406.365000px;}
.y15_c00453{bottom:429.765000px;}
.y14_c00453{bottom:454.665000px;}
.y13_c00453{bottom:477.615000px;}
.y12_c00453{bottom:505.365000px;}
.y11_c00453{bottom:523.815000px;}
.y10_c00453{bottom:549.465000px;}
.yf_c00453{bottom:573.765000px;}
.ye_c00453{bottom:597.465000px;}
.yd_c00453{bottom:622.665000px;}
.yc_c00453{bottom:646.965000px;}
.yb_c00453{bottom:670.665000px;}
.ya_c00453{bottom:695.265000px;}
.y9_c00453{bottom:719.265000px;}
.y8_c00453{bottom:743.265000px;}
.y7_c00453{bottom:767.865000px;}
.y6_c00453{bottom:792.465000px;}
.y5_c00453{bottom:815.865000px;}
.y4_c00453{bottom:840.165000px;}
.y3_c00453{bottom:864.765000px;}
.y2_c00453{bottom:888.765000px;}
.y1_c00453{bottom:922.365000px;}
.h6_c00453{height:13.200074px;}
.h7_c00453{height:43.804688px;}
.h4_c00453{height:79.497070px;}
.h3_c00453{height:84.269531px;}
.h5_c00453{height:108.843750px;}
.h2_c00453{height:167.126953px;}
.h1_c00453{height:986.250000px;}
.h0_c00453{height:986.325000px;}
.w2_c00453{width:104.875500px;}
.w0_c00453{width:667.425000px;}
.w1_c00453{width:667.500000px;}
.x0_c00453{left:0.000000px;}
.x9_c00453{left:29.250000px;}
.x5_c00453{left:30.300000px;}
.xb_c00453{left:31.350000px;}
.x8_c00453{left:35.100000px;}
.xa_c00453{left:82.650000px;}
.x6_c00453{left:94.050000px;}
.xd_c00453{left:98.250000px;}
.x1_c00453{left:119.100000px;}
.x2_c00453{left:120.150000px;}
.x3_c00453{left:121.200000px;}
.x4_c00453{left:122.400000px;}
.x7_c00453{left:123.900000px;}
.xc_c00453{left:125.100000px;}
.xe_c00453{left:148.950000px;}
.x10_c00453{left:285.526749px;}
.xf_c00453{left:578.700000px;}
@media print{
.v0_c00453{vertical-align:0.000000pt;}
.ls3_c00453{letter-spacing:0.000000pt;}
.ls1_c00453{letter-spacing:0.106667pt;}
.ls4_c00453{letter-spacing:2.666667pt;}
.ls0_c00453{letter-spacing:18.901333pt;}
.ls2_c00453{letter-spacing:29.333333pt;}
.ws6_c00453{word-spacing:-53.376000pt;}
.ws1_c00453{word-spacing:-32.000000pt;}
.ws3_c00453{word-spacing:-21.184000pt;}
.ws5_c00453{word-spacing:-20.016000pt;}
.ws2_c00453{word-spacing:-16.947200pt;}
.ws4_c00453{word-spacing:-16.012800pt;}
.ws0_c00453{word-spacing:-15.424000pt;}
.ws7_c00453{word-spacing:0.000000pt;}
._3_c00453{margin-left:-55.968000pt;}
._2_c00453{margin-left:-37.429333pt;}
._0_c00453{margin-left:-27.104000pt;}
._16_c00453{margin-left:-24.408000pt;}
._24_c00453{margin-left:-22.680000pt;}
._1_c00453{margin-left:-18.069333pt;}
._1a_c00453{margin-left:-15.456000pt;}
._1e_c00453{margin-left:-13.952000pt;}
._4_c00453{margin-left:-12.960000pt;}
._8_c00453{margin-left:-11.440000pt;}
._26_c00453{margin-left:-10.152000pt;}
._1d_c00453{margin-left:-9.024000pt;}
._22_c00453{margin-left:-7.824000pt;}
._a_c00453{margin-left:-6.776000pt;}
._d_c00453{margin-left:-5.720000pt;}
._b_c00453{margin-left:-4.752000pt;}
._c_c00453{margin-left:-3.432000pt;}
._5_c00453{margin-left:-2.200000pt;}
._10_c00453{margin-left:-1.008000pt;}
._9_c00453{width:1.344000pt;}
._11_c00453{width:2.344000pt;}
._e_c00453{width:3.440000pt;}
._f_c00453{width:5.128000pt;}
._13_c00453{width:6.536000pt;}
._7_c00453{width:8.008000pt;}
._6_c00453{width:9.152000pt;}
._17_c00453{width:10.800000pt;}
._12_c00453{width:11.760000pt;}
._15_c00453{width:12.776000pt;}
._14_c00453{width:13.736000pt;}
._18_c00453{width:21.744000pt;}
._1c_c00453{width:23.125333pt;}
._27_c00453{width:24.120000pt;}
._23_c00453{width:29.037333pt;}
._2a_c00453{width:30.290667pt;}
._2d_c00453{width:32.496000pt;}
._29_c00453{width:34.760000pt;}
._2c_c00453{width:36.221333pt;}
._2e_c00453{width:59.688000pt;}
._1b_c00453{width:66.176000pt;}
._19_c00453{width:73.296000pt;}
._25_c00453{width:110.520000pt;}
._1f_c00453{width:122.688000pt;}
._20_c00453{width:135.141333pt;}
._2b_c00453{width:219.688000pt;}
._28_c00453{width:223.208000pt;}
._21_c00453{width:352.752000pt;}
.fs8_c00453{font-size:42.666667pt;}
.fs5_c00453{font-size:51.200000pt;}
.fs6_c00453{font-size:57.600000pt;}
.fs4_c00453{font-size:58.666667pt;}
.fs3_c00453{font-size:64.000000pt;}
.fs2_c00453{font-size:72.000000pt;}
.fs1_c00453{font-size:88.000000pt;}
.fs7_c00453{font-size:96.000000pt;}
.fs0_c00453{font-size:117.333333pt;}
.y0_c00453{bottom:0.000000pt;}
.y26_c00453{bottom:2.760000pt;}
.y25_c00453{bottom:6.425219pt;}
.y24_c00453{bottom:57.880000pt;}
.y23_c00453{bottom:77.746667pt;}
.y22_c00453{bottom:101.080000pt;}
.y21_c00453{bottom:120.946667pt;}
.y20_c00453{bottom:145.480000pt;}
.y1f_c00453{bottom:164.146667pt;}
.y1e_c00453{bottom:186.946667pt;}
.y1d_c00453{bottom:208.813333pt;}
.y1c_c00453{bottom:230.680000pt;}
.y1b_c00453{bottom:251.746667pt;}
.y1a_c00453{bottom:273.880000pt;}
.y19_c00453{bottom:296.813333pt;}
.y18_c00453{bottom:317.480000pt;}
.y17_c00453{bottom:338.146667pt;}
.y16_c00453{bottom:361.213333pt;}
.y15_c00453{bottom:382.013333pt;}
.y14_c00453{bottom:404.146667pt;}
.y13_c00453{bottom:424.546667pt;}
.y12_c00453{bottom:449.213333pt;}
.y11_c00453{bottom:465.613333pt;}
.y10_c00453{bottom:488.413333pt;}
.yf_c00453{bottom:510.013333pt;}
.ye_c00453{bottom:531.080000pt;}
.yd_c00453{bottom:553.480000pt;}
.yc_c00453{bottom:575.080000pt;}
.yb_c00453{bottom:596.146667pt;}
.ya_c00453{bottom:618.013333pt;}
.y9_c00453{bottom:639.346667pt;}
.y8_c00453{bottom:660.680000pt;}
.y7_c00453{bottom:682.546667pt;}
.y6_c00453{bottom:704.413333pt;}
.y5_c00453{bottom:725.213333pt;}
.y4_c00453{bottom:746.813333pt;}
.y3_c00453{bottom:768.680000pt;}
.y2_c00453{bottom:790.013333pt;}
.y1_c00453{bottom:819.880000pt;}
.h6_c00453{height:11.733399pt;}
.h7_c00453{height:38.937500pt;}
.h4_c00453{height:70.664062pt;}
.h3_c00453{height:74.906250pt;}
.h5_c00453{height:96.750000pt;}
.h2_c00453{height:148.557292pt;}
.h1_c00453{height:876.666667pt;}
.h0_c00453{height:876.733333pt;}
.w2_c00453{width:93.222667pt;}
.w0_c00453{width:593.266667pt;}
.w1_c00453{width:593.333333pt;}
.x0_c00453{left:0.000000pt;}
.x9_c00453{left:26.000000pt;}
.x5_c00453{left:26.933333pt;}
.xb_c00453{left:27.866667pt;}
.x8_c00453{left:31.200000pt;}
.xa_c00453{left:73.466667pt;}
.x6_c00453{left:83.600000pt;}
.xd_c00453{left:87.333333pt;}
.x1_c00453{left:105.866667pt;}
.x2_c00453{left:106.800000pt;}
.x3_c00453{left:107.733333pt;}
.x4_c00453{left:108.800000pt;}
.x7_c00453{left:110.133333pt;}
.xc_c00453{left:111.200000pt;}
.xe_c00453{left:132.400000pt;}
.x10_c00453{left:253.801554pt;}
.xf_c00453{left:514.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_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_ff1e3af152aa2b1573305a9f.woff2')format("woff");}.ff1_c00454{font-family:ff1_c00454;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00454;src:url('chunks/assets/font_157ae81dea119456ec61f8ec.woff2')format("woff");}.ff2_c00454{font-family:ff2_c00454;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00454;src:url('chunks/assets/font_1a2df30cbc87e8bdc495e159.woff2')format("woff");}.ff3_c00454{font-family:ff3_c00454;line-height:1.437000;font-style:normal;font-weight:normal;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_b4589237b4255db37eabf7e9.woff2')format("woff");}.ff4_c00454{font-family:ff4_c00454;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00454;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c00454{font-family:ff5_c00454;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00454{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00454{vertical-align:-15.000000px;}
.v0_c00454{vertical-align:0.000000px;}
.ls1_c00454{letter-spacing:0.000000px;}
.ls3_c00454{letter-spacing:6.000000px;}
.ls2_c00454{letter-spacing:9.000000px;}
.ls0_c00454{letter-spacing:137.940000px;}
.sc__c00454{text-shadow:none;}
.sc0_c00454{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00454{-webkit-text-stroke:0px transparent;}
.sc0_c00454{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00454{word-spacing:-76.686000px;}
.ws1_c00454{word-spacing:-17.352000px;}
.ws2_c00454{word-spacing:0.000000px;}
._20_c00454{margin-left:-41.391000px;}
._13_c00454{margin-left:-27.540000px;}
._1b_c00454{margin-left:-25.191000px;}
._1e_c00454{margin-left:-22.194000px;}
._1a_c00454{margin-left:-15.900000px;}
._17_c00454{margin-left:-14.427000px;}
._12_c00454{margin-left:-12.717000px;}
._23_c00454{margin-left:-11.526000px;}
._1f_c00454{margin-left:-10.176000px;}
._8_c00454{margin-left:-8.505000px;}
._b_c00454{margin-left:-7.047000px;}
._d_c00454{margin-left:-5.265000px;}
._4_c00454{margin-left:-3.483000px;}
._2_c00454{margin-left:-2.025000px;}
._1_c00454{width:1.782000px;}
._0_c00454{width:3.321000px;}
._5_c00454{width:4.779000px;}
._3_c00454{width:6.642000px;}
._7_c00454{width:7.938000px;}
._a_c00454{width:8.991000px;}
._f_c00454{width:10.125000px;}
._c_c00454{width:11.907000px;}
._6_c00454{width:13.608000px;}
._e_c00454{width:15.390000px;}
._10_c00454{width:16.929000px;}
._15_c00454{width:18.423000px;}
._14_c00454{width:22.152000px;}
._24_c00454{width:24.867000px;}
._26_c00454{width:27.135000px;}
._21_c00454{width:29.241000px;}
._11_c00454{width:31.509000px;}
._22_c00454{width:34.116000px;}
._19_c00454{width:37.842000px;}
._18_c00454{width:39.741000px;}
._27_c00454{width:41.148000px;}
._28_c00454{width:45.360000px;}
._1d_c00454{width:50.553000px;}
._29_c00454{width:110.808000px;}
._1c_c00454{width:144.828000px;}
._2a_c00454{width:251.829000px;}
._16_c00454{width:259.704000px;}
._9_c00454{width:289.008000px;}
._25_c00454{width:437.319000px;}
.fc2_c00454{color:transparent;}
.fc1_c00454{color:rgb(128,128,128);}
.fc0_c00454{color:rgb(0,0,0);}
.fs5_c00454{font-size:48.000000px;}
.fs3_c00454{font-size:60.000000px;}
.fs1_c00454{font-size:72.000000px;}
.fs0_c00454{font-size:81.000000px;}
.fs4_c00454{font-size:84.000000px;}
.fs2_c00454{font-size:87.000000px;}
.y0_c00454{bottom:0.000000px;}
.y25_c00454{bottom:3.105000px;}
.y24_c00454{bottom:7.228363px;}
.y23_c00454{bottom:52.950000px;}
.y22_c00454{bottom:77.250000px;}
.y21_c00454{bottom:101.550000px;}
.y20_c00454{bottom:126.600000px;}
.y1f_c00454{bottom:150.900000px;}
.y1e_c00454{bottom:175.500000px;}
.y1d_c00454{bottom:199.500000px;}
.y1c_c00454{bottom:228.150000px;}
.y1b_c00454{bottom:249.000000px;}
.y1a_c00454{bottom:272.700000px;}
.y19_c00454{bottom:297.300000px;}
.y18_c00454{bottom:321.900000px;}
.y17_c00454{bottom:345.900000px;}
.y16_c00454{bottom:370.500000px;}
.y15_c00454{bottom:395.250000px;}
.y14_c00454{bottom:419.550000px;}
.y13_c00454{bottom:444.150000px;}
.y12_c00454{bottom:468.450000px;}
.y11_c00454{bottom:492.450000px;}
.y10_c00454{bottom:516.750000px;}
.yf_c00454{bottom:541.050000px;}
.ye_c00454{bottom:565.350000px;}
.yd_c00454{bottom:589.650000px;}
.yc_c00454{bottom:613.650000px;}
.yb_c00454{bottom:637.950000px;}
.ya_c00454{bottom:662.550000px;}
.y9_c00454{bottom:686.850000px;}
.y8_c00454{bottom:710.550000px;}
.y7_c00454{bottom:734.700000px;}
.y6_c00454{bottom:759.150000px;}
.y5_c00454{bottom:783.300000px;}
.y4_c00454{bottom:807.000000px;}
.y3_c00454{bottom:831.900000px;}
.y2_c00454{bottom:855.000000px;}
.y1_c00454{bottom:879.450000px;}
.h8_c00454{height:13.200074px;}
.h9_c00454{height:43.804688px;}
.h6_c00454{height:75.966797px;}
.h2_c00454{height:79.497070px;}
.h7_c00454{height:82.441406px;}
.h3_c00454{height:84.269531px;}
.h5_c00454{height:91.160156px;}
.h4_c00454{height:91.176000px;}
.h0_c00454{height:980.100000px;}
.h1_c00454{height:980.250000px;}
.w2_c00454{width:104.875500px;}
.w0_c00454{width:665.850000px;}
.w1_c00454{width:666.000000px;}
.x0_c00454{left:0.000000px;}
.x9_c00454{left:35.100000px;}
.x8_c00454{left:36.150000px;}
.x5_c00454{left:38.700000px;}
.x4_c00454{left:39.750000px;}
.x6_c00454{left:40.800000px;}
.x3_c00454{left:42.150000px;}
.x2_c00454{left:43.200000px;}
.x1_c00454{left:44.250000px;}
.x7_c00454{left:85.950000px;}
.xb_c00454{left:284.739258px;}
.xa_c00454{left:374.850000px;}
@media print{
.v1_c00454{vertical-align:-13.333333pt;}
.v0_c00454{vertical-align:0.000000pt;}
.ls1_c00454{letter-spacing:0.000000pt;}
.ls3_c00454{letter-spacing:5.333333pt;}
.ls2_c00454{letter-spacing:8.000000pt;}
.ls0_c00454{letter-spacing:122.613333pt;}
.ws0_c00454{word-spacing:-68.165333pt;}
.ws1_c00454{word-spacing:-15.424000pt;}
.ws2_c00454{word-spacing:0.000000pt;}
._20_c00454{margin-left:-36.792000pt;}
._13_c00454{margin-left:-24.480000pt;}
._1b_c00454{margin-left:-22.392000pt;}
._1e_c00454{margin-left:-19.728000pt;}
._1a_c00454{margin-left:-14.133333pt;}
._17_c00454{margin-left:-12.824000pt;}
._12_c00454{margin-left:-11.304000pt;}
._23_c00454{margin-left:-10.245333pt;}
._1f_c00454{margin-left:-9.045333pt;}
._8_c00454{margin-left:-7.560000pt;}
._b_c00454{margin-left:-6.264000pt;}
._d_c00454{margin-left:-4.680000pt;}
._4_c00454{margin-left:-3.096000pt;}
._2_c00454{margin-left:-1.800000pt;}
._1_c00454{width:1.584000pt;}
._0_c00454{width:2.952000pt;}
._5_c00454{width:4.248000pt;}
._3_c00454{width:5.904000pt;}
._7_c00454{width:7.056000pt;}
._a_c00454{width:7.992000pt;}
._f_c00454{width:9.000000pt;}
._c_c00454{width:10.584000pt;}
._6_c00454{width:12.096000pt;}
._e_c00454{width:13.680000pt;}
._10_c00454{width:15.048000pt;}
._15_c00454{width:16.376000pt;}
._14_c00454{width:19.690667pt;}
._24_c00454{width:22.104000pt;}
._26_c00454{width:24.120000pt;}
._21_c00454{width:25.992000pt;}
._11_c00454{width:28.008000pt;}
._22_c00454{width:30.325333pt;}
._19_c00454{width:33.637333pt;}
._18_c00454{width:35.325333pt;}
._27_c00454{width:36.576000pt;}
._28_c00454{width:40.320000pt;}
._1d_c00454{width:44.936000pt;}
._29_c00454{width:98.496000pt;}
._1c_c00454{width:128.736000pt;}
._2a_c00454{width:223.848000pt;}
._16_c00454{width:230.848000pt;}
._9_c00454{width:256.896000pt;}
._25_c00454{width:388.728000pt;}
.fs5_c00454{font-size:42.666667pt;}
.fs3_c00454{font-size:53.333333pt;}
.fs1_c00454{font-size:64.000000pt;}
.fs0_c00454{font-size:72.000000pt;}
.fs4_c00454{font-size:74.666667pt;}
.fs2_c00454{font-size:77.333333pt;}
.y0_c00454{bottom:0.000000pt;}
.y25_c00454{bottom:2.760000pt;}
.y24_c00454{bottom:6.425212pt;}
.y23_c00454{bottom:47.066667pt;}
.y22_c00454{bottom:68.666667pt;}
.y21_c00454{bottom:90.266667pt;}
.y20_c00454{bottom:112.533333pt;}
.y1f_c00454{bottom:134.133333pt;}
.y1e_c00454{bottom:156.000000pt;}
.y1d_c00454{bottom:177.333333pt;}
.y1c_c00454{bottom:202.800000pt;}
.y1b_c00454{bottom:221.333333pt;}
.y1a_c00454{bottom:242.400000pt;}
.y19_c00454{bottom:264.266667pt;}
.y18_c00454{bottom:286.133333pt;}
.y17_c00454{bottom:307.466667pt;}
.y16_c00454{bottom:329.333333pt;}
.y15_c00454{bottom:351.333333pt;}
.y14_c00454{bottom:372.933333pt;}
.y13_c00454{bottom:394.800000pt;}
.y12_c00454{bottom:416.400000pt;}
.y11_c00454{bottom:437.733333pt;}
.y10_c00454{bottom:459.333333pt;}
.yf_c00454{bottom:480.933333pt;}
.ye_c00454{bottom:502.533333pt;}
.yd_c00454{bottom:524.133333pt;}
.yc_c00454{bottom:545.466667pt;}
.yb_c00454{bottom:567.066667pt;}
.ya_c00454{bottom:588.933333pt;}
.y9_c00454{bottom:610.533333pt;}
.y8_c00454{bottom:631.600000pt;}
.y7_c00454{bottom:653.066667pt;}
.y6_c00454{bottom:674.800000pt;}
.y5_c00454{bottom:696.266667pt;}
.y4_c00454{bottom:717.333333pt;}
.y3_c00454{bottom:739.466667pt;}
.y2_c00454{bottom:760.000000pt;}
.y1_c00454{bottom:781.733333pt;}
.h8_c00454{height:11.733399pt;}
.h9_c00454{height:38.937500pt;}
.h6_c00454{height:67.526042pt;}
.h2_c00454{height:70.664062pt;}
.h7_c00454{height:73.281250pt;}
.h3_c00454{height:74.906250pt;}
.h5_c00454{height:81.031250pt;}
.h4_c00454{height:81.045333pt;}
.h0_c00454{height:871.200000pt;}
.h1_c00454{height:871.333333pt;}
.w2_c00454{width:93.222667pt;}
.w0_c00454{width:591.866667pt;}
.w1_c00454{width:592.000000pt;}
.x0_c00454{left:0.000000pt;}
.x9_c00454{left:31.200000pt;}
.x8_c00454{left:32.133333pt;}
.x5_c00454{left:34.400000pt;}
.x4_c00454{left:35.333333pt;}
.x6_c00454{left:36.266667pt;}
.x3_c00454{left:37.466667pt;}
.x2_c00454{left:38.400000pt;}
.x1_c00454{left:39.333333pt;}
.x7_c00454{left:76.400000pt;}
.xb_c00454{left:253.101563pt;}
.xa_c00454{left:333.200000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f933c8453d849e38bbde98e2.woff2')format("woff");}.ff1_c00455{font-family:ff1_c00455;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00455;src:url('chunks/assets/font_6706d3cfa81825ff356a4a9a.woff2')format("woff");}.ff2_c00455{font-family:ff2_c00455;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00455;src:url('chunks/assets/font_c8e041e468c683eea43923ad.woff2')format("woff");}.ff3_c00455{font-family:ff3_c00455;line-height:1.437000;font-style:normal;font-weight:normal;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_96791c33c06ea9d438f70351.woff2')format("woff");}.ff4_c00455{font-family:ff4_c00455;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00455;src:url('chunks/assets/font_f6689151a439bb7826dd2b43.woff2')format("woff");}.ff5_c00455{font-family:ff5_c00455;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00455;src:url('chunks/assets/font_5be00bb9ecaeed30ec6851d9.woff2')format("woff");}.ff6_c00455{font-family:ff6_c00455;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00455;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c00455{font-family:ff7_c00455;line-height:1.219238;font-style: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;}
.lsa_c00455{letter-spacing:-9.000000px;}
.ls8_c00455{letter-spacing:0.000000px;}
.ls6_c00455{letter-spacing:0.402000px;}
.ls2_c00455{letter-spacing:2.145600px;}
.ls1_c00455{letter-spacing:2.616000px;}
.ls5_c00455{letter-spacing:3.480000px;}
.ls0_c00455{letter-spacing:5.616000px;}
.ls9_c00455{letter-spacing:15.000000px;}
.ls4_c00455{letter-spacing:15.048000px;}
.ls3_c00455{letter-spacing:21.168000px;}
.ls7_c00455{letter-spacing:33.000000px;}
.sc__c00455{text-shadow:none;}
.sc0_c00455{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00455{-webkit-text-stroke:0px transparent;}
.sc0_c00455{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00455{word-spacing:-94.356000px;}
.ws1_c00455{word-spacing:-13.737000px;}
.ws2_c00455{word-spacing:0.000000px;}
._3_c00455{margin-left:-80.124000px;}
._6_c00455{margin-left:-73.392000px;}
._2_c00455{margin-left:-49.764000px;}
._0_c00455{margin-left:-44.616000px;}
._7_c00455{margin-left:-42.036000px;}
._1_c00455{margin-left:-40.788000px;}
._d_c00455{margin-left:-25.200000px;}
._e_c00455{margin-left:-20.592000px;}
._10_c00455{margin-left:-15.543000px;}
._28_c00455{margin-left:-12.951000px;}
._1f_c00455{margin-left:-11.673000px;}
._20_c00455{margin-left:-9.639000px;}
._18_c00455{margin-left:-7.848000px;}
._17_c00455{margin-left:-6.174000px;}
._9_c00455{margin-left:-5.148000px;}
._b_c00455{margin-left:-3.960000px;}
._a_c00455{margin-left:-2.079000px;}
._c_c00455{margin-left:-1.035000px;}
._16_c00455{width:1.188000px;}
._f_c00455{width:2.673000px;}
._15_c00455{width:4.410000px;}
._12_c00455{width:5.670000px;}
._13_c00455{width:7.011000px;}
._11_c00455{width:8.424000px;}
._2d_c00455{width:9.441000px;}
._14_c00455{width:10.449000px;}
._8_c00455{width:12.276000px;}
._1d_c00455{width:13.293000px;}
._1a_c00455{width:15.174000px;}
._19_c00455{width:16.218000px;}
._1b_c00455{width:17.541000px;}
._24_c00455{width:18.900000px;}
._26_c00455{width:23.154000px;}
._2c_c00455{width:24.597000px;}
._2e_c00455{width:26.010000px;}
._2b_c00455{width:27.858000px;}
._1c_c00455{width:33.228000px;}
._2a_c00455{width:36.090000px;}
._1e_c00455{width:53.217000px;}
._25_c00455{width:55.488000px;}
._23_c00455{width:83.130000px;}
._4_c00455{width:123.288000px;}
._22_c00455{width:164.772000px;}
._5_c00455{width:291.324000px;}
._21_c00455{width:311.526000px;}
._29_c00455{width:317.457000px;}
._27_c00455{width:403.014000px;}
.fc2_c00455{color:transparent;}
.fc1_c00455{color:rgb(128,128,128);}
.fc0_c00455{color:rgb(0,0,0);}
.fs8_c00455{font-size:48.000000px;}
.fs6_c00455{font-size:57.000000px;}
.fs5_c00455{font-size:57.600000px;}
.fs4_c00455{font-size:72.000000px;}
.fs7_c00455{font-size:78.000000px;}
.fs3_c00455{font-size:81.000000px;}
.fs1_c00455{font-size:99.000000px;}
.fs2_c00455{font-size:102.000000px;}
.fs0_c00455{font-size:132.000000px;}
.y0_c00455{bottom:0.000000px;}
.y24_c00455{bottom:3.105000px;}
.y23_c00455{bottom:7.228371px;}
.y22_c00455{bottom:81.765000px;}
.y21_c00455{bottom:106.665000px;}
.y20_c00455{bottom:131.715000px;}
.y1f_c00455{bottom:156.615000px;}
.y1e_c00455{bottom:180.615000px;}
.y1d_c00455{bottom:205.665000px;}
.y1c_c00455{bottom:230.265000px;}
.y1b_c00455{bottom:254.865000px;}
.y1a_c00455{bottom:279.465000px;}
.y19_c00455{bottom:304.065000px;}
.y18_c00455{bottom:328.365000px;}
.y17_c00455{bottom:352.815000px;}
.y16_c00455{bottom:378.015000px;}
.y15_c00455{bottom:402.615000px;}
.y14_c00455{bottom:426.615000px;}
.y13_c00455{bottom:449.265000px;}
.y12_c00455{bottom:474.165000px;}
.y11_c00455{bottom:498.465000px;}
.y10_c00455{bottom:545.865000px;}
.yf_c00455{bottom:569.415000px;}
.ye_c00455{bottom:592.965000px;}
.yd_c00455{bottom:618.765000px;}
.yc_c00455{bottom:643.065000px;}
.yb_c00455{bottom:667.365000px;}
.ya_c00455{bottom:691.665000px;}
.y9_c00455{bottom:715.965000px;}
.y8_c00455{bottom:740.115000px;}
.y7_c00455{bottom:764.565000px;}
.y6_c00455{bottom:788.715000px;}
.y5_c00455{bottom:813.165000px;}
.y4_c00455{bottom:837.015000px;}
.y3_c00455{bottom:861.615000px;}
.y2_c00455{bottom:885.915000px;}
.y1_c00455{bottom:920.415000px;}
.h9_c00455{height:13.200074px;}
.ha_c00455{height:43.804688px;}
.h5_c00455{height:72.168457px;}
.h3_c00455{height:79.497070px;}
.h4_c00455{height:84.269531px;}
.h7_c00455{height:91.160156px;}
.h8_c00455{height:98.756836px;}
.h6_c00455{height:104.839927px;}
.h2_c00455{height:167.126953px;}
.h1_c00455{height:986.250000px;}
.h0_c00455{height:986.325000px;}
.w2_c00455{width:104.875500px;}
.w0_c00455{width:667.425000px;}
.w1_c00455{width:667.500000px;}
.x0_c00455{left:0.000000px;}
.xa_c00455{left:39.150000px;}
.xe_c00455{left:46.650000px;}
.x16_c00455{left:49.950000px;}
.x15_c00455{left:54.300000px;}
.x1_c00455{left:119.700000px;}
.x2_c00455{left:121.800000px;}
.x3_c00455{left:123.150000px;}
.x4_c00455{left:124.200000px;}
.x5_c00455{left:125.850000px;}
.x6_c00455{left:127.200000px;}
.x7_c00455{left:128.250000px;}
.x8_c00455{left:129.600000px;}
.x9_c00455{left:131.250000px;}
.xb_c00455{left:135.600000px;}
.x10_c00455{left:139.050000px;}
.x11_c00455{left:140.100000px;}
.x12_c00455{left:141.450000px;}
.x13_c00455{left:142.800000px;}
.x14_c00455{left:143.850000px;}
.xf_c00455{left:144.900000px;}
.xc_c00455{left:173.850000px;}
.xd_c00455{left:269.700000px;}
.x17_c00455{left:285.526749px;}
@media print{
.v0_c00455{vertical-align:0.000000pt;}
.lsa_c00455{letter-spacing:-8.000000pt;}
.ls8_c00455{letter-spacing:0.000000pt;}
.ls6_c00455{letter-spacing:0.357333pt;}
.ls2_c00455{letter-spacing:1.907200pt;}
.ls1_c00455{letter-spacing:2.325333pt;}
.ls5_c00455{letter-spacing:3.093333pt;}
.ls0_c00455{letter-spacing:4.992000pt;}
.ls9_c00455{letter-spacing:13.333333pt;}
.ls4_c00455{letter-spacing:13.376000pt;}
.ls3_c00455{letter-spacing:18.816000pt;}
.ls7_c00455{letter-spacing:29.333333pt;}
.ws0_c00455{word-spacing:-83.872000pt;}
.ws1_c00455{word-spacing:-12.210667pt;}
.ws2_c00455{word-spacing:0.000000pt;}
._3_c00455{margin-left:-71.221333pt;}
._6_c00455{margin-left:-65.237333pt;}
._2_c00455{margin-left:-44.234667pt;}
._0_c00455{margin-left:-39.658667pt;}
._7_c00455{margin-left:-37.365333pt;}
._1_c00455{margin-left:-36.256000pt;}
._d_c00455{margin-left:-22.400000pt;}
._e_c00455{margin-left:-18.304000pt;}
._10_c00455{margin-left:-13.816000pt;}
._28_c00455{margin-left:-11.512000pt;}
._1f_c00455{margin-left:-10.376000pt;}
._20_c00455{margin-left:-8.568000pt;}
._18_c00455{margin-left:-6.976000pt;}
._17_c00455{margin-left:-5.488000pt;}
._9_c00455{margin-left:-4.576000pt;}
._b_c00455{margin-left:-3.520000pt;}
._a_c00455{margin-left:-1.848000pt;}
._c_c00455{margin-left:-0.920000pt;}
._16_c00455{width:1.056000pt;}
._f_c00455{width:2.376000pt;}
._15_c00455{width:3.920000pt;}
._12_c00455{width:5.040000pt;}
._13_c00455{width:6.232000pt;}
._11_c00455{width:7.488000pt;}
._2d_c00455{width:8.392000pt;}
._14_c00455{width:9.288000pt;}
._8_c00455{width:10.912000pt;}
._1d_c00455{width:11.816000pt;}
._1a_c00455{width:13.488000pt;}
._19_c00455{width:14.416000pt;}
._1b_c00455{width:15.592000pt;}
._24_c00455{width:16.800000pt;}
._26_c00455{width:20.581333pt;}
._2c_c00455{width:21.864000pt;}
._2e_c00455{width:23.120000pt;}
._2b_c00455{width:24.762667pt;}
._1c_c00455{width:29.536000pt;}
._2a_c00455{width:32.080000pt;}
._1e_c00455{width:47.304000pt;}
._25_c00455{width:49.322667pt;}
._23_c00455{width:73.893333pt;}
._4_c00455{width:109.589333pt;}
._22_c00455{width:146.464000pt;}
._5_c00455{width:258.954667pt;}
._21_c00455{width:276.912000pt;}
._29_c00455{width:282.184000pt;}
._27_c00455{width:358.234667pt;}
.fs8_c00455{font-size:42.666667pt;}
.fs6_c00455{font-size:50.666667pt;}
.fs5_c00455{font-size:51.200000pt;}
.fs4_c00455{font-size:64.000000pt;}
.fs7_c00455{font-size:69.333333pt;}
.fs3_c00455{font-size:72.000000pt;}
.fs1_c00455{font-size:88.000000pt;}
.fs2_c00455{font-size:90.666667pt;}
.fs0_c00455{font-size:117.333333pt;}
.y0_c00455{bottom:0.000000pt;}
.y24_c00455{bottom:2.760000pt;}
.y23_c00455{bottom:6.425219pt;}
.y22_c00455{bottom:72.680000pt;}
.y21_c00455{bottom:94.813333pt;}
.y20_c00455{bottom:117.080000pt;}
.y1f_c00455{bottom:139.213333pt;}
.y1e_c00455{bottom:160.546667pt;}
.y1d_c00455{bottom:182.813333pt;}
.y1c_c00455{bottom:204.680000pt;}
.y1b_c00455{bottom:226.546667pt;}
.y1a_c00455{bottom:248.413333pt;}
.y19_c00455{bottom:270.280000pt;}
.y18_c00455{bottom:291.880000pt;}
.y17_c00455{bottom:313.613333pt;}
.y16_c00455{bottom:336.013333pt;}
.y15_c00455{bottom:357.880000pt;}
.y14_c00455{bottom:379.213333pt;}
.y13_c00455{bottom:399.346667pt;}
.y12_c00455{bottom:421.480000pt;}
.y11_c00455{bottom:443.080000pt;}
.y10_c00455{bottom:485.213333pt;}
.yf_c00455{bottom:506.146667pt;}
.ye_c00455{bottom:527.080000pt;}
.yd_c00455{bottom:550.013333pt;}
.yc_c00455{bottom:571.613333pt;}
.yb_c00455{bottom:593.213333pt;}
.ya_c00455{bottom:614.813333pt;}
.y9_c00455{bottom:636.413333pt;}
.y8_c00455{bottom:657.880000pt;}
.y7_c00455{bottom:679.613333pt;}
.y6_c00455{bottom:701.080000pt;}
.y5_c00455{bottom:722.813333pt;}
.y4_c00455{bottom:744.013333pt;}
.y3_c00455{bottom:765.880000pt;}
.y2_c00455{bottom:787.480000pt;}
.y1_c00455{bottom:818.146667pt;}
.h9_c00455{height:11.733399pt;}
.ha_c00455{height:38.937500pt;}
.h5_c00455{height:64.149740pt;}
.h3_c00455{height:70.664062pt;}
.h4_c00455{height:74.906250pt;}
.h7_c00455{height:81.031250pt;}
.h8_c00455{height:87.783854pt;}
.h6_c00455{height:93.191046pt;}
.h2_c00455{height:148.557292pt;}
.h1_c00455{height:876.666667pt;}
.h0_c00455{height:876.733333pt;}
.w2_c00455{width:93.222667pt;}
.w0_c00455{width:593.266667pt;}
.w1_c00455{width:593.333333pt;}
.x0_c00455{left:0.000000pt;}
.xa_c00455{left:34.800000pt;}
.xe_c00455{left:41.466667pt;}
.x16_c00455{left:44.400000pt;}
.x15_c00455{left:48.266667pt;}
.x1_c00455{left:106.400000pt;}
.x2_c00455{left:108.266667pt;}
.x3_c00455{left:109.466667pt;}
.x4_c00455{left:110.400000pt;}
.x5_c00455{left:111.866667pt;}
.x6_c00455{left:113.066667pt;}
.x7_c00455{left:114.000000pt;}
.x8_c00455{left:115.200000pt;}
.x9_c00455{left:116.666667pt;}
.xb_c00455{left:120.533333pt;}
.x10_c00455{left:123.600000pt;}
.x11_c00455{left:124.533333pt;}
.x12_c00455{left:125.733333pt;}
.x13_c00455{left:126.933333pt;}
.x14_c00455{left:127.866667pt;}
.xf_c00455{left:128.800000pt;}
.xc_c00455{left:154.533333pt;}
.xd_c00455{left:239.733333pt;}
.x17_c00455{left:253.801554pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c1511e82b6d8a4bd54df0454.woff2')format("woff");}.ff1_c00456{font-family:ff1_c00456;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00456;src:url('chunks/assets/font_aa9f3dd3fe33d069b33a793a.woff2')format("woff");}.ff2_c00456{font-family:ff2_c00456;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00456;src:url('chunks/assets/font_6162b8d6829d0af1e2365935.woff2')format("woff");}.ff3_c00456{font-family:ff3_c00456;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00456;src:url('chunks/assets/font_c2ef9ed989fc66c54a1bd8dc.woff2')format("woff");}.ff4_c00456{font-family:ff4_c00456;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00456;src:url('chunks/assets/font_f02abfddfa3cba44a9aeb797.woff2')format("woff");}.ff5_c00456{font-family:ff5_c00456;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00456;src:url('chunks/assets/font_cbd75948cad724c954957526.woff2')format("woff");}.ff6_c00456{font-family:ff6_c00456;line-height:1.437000;font-style:normal;font-weight: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_c00456;src:url('chunks/assets/font_1fc4daf11b18e45ec004354a.woff2')format("woff");}.ff7_c00456{font-family:ff7_c00456;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00456;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff8_c00456{font-family:ff8_c00456;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00456{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00456{vertical-align:0.000000px;}
.v1_c00456{vertical-align:20.400000px;}
.ls5_c00456{letter-spacing:0.000000px;}
.ls0_c00456{letter-spacing:2.280000px;}
.ls6_c00456{letter-spacing:3.000000px;}
.ls3_c00456{letter-spacing:4.200000px;}
.ls2_c00456{letter-spacing:9.000000px;}
.ls1_c00456{letter-spacing:34.350000px;}
.ls4_c00456{letter-spacing:145.200000px;}
.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;}
}
.ws1_c00456{word-spacing:-76.686000px;}
.ws0_c00456{word-spacing:-18.798000px;}
.ws2_c00456{word-spacing:-17.352000px;}
.ws3_c00456{word-spacing:0.000000px;}
._1b_c00456{margin-left:-27.030000px;}
._1c_c00456{margin-left:-20.748000px;}
._1a_c00456{margin-left:-18.486000px;}
._24_c00456{margin-left:-16.782000px;}
._27_c00456{margin-left:-14.844000px;}
._22_c00456{margin-left:-12.849000px;}
._15_c00456{margin-left:-11.736000px;}
._23_c00456{margin-left:-10.668000px;}
._9_c00456{margin-left:-8.772000px;}
._18_c00456{margin-left:-6.765000px;}
._8_c00456{margin-left:-5.580000px;}
._4_c00456{margin-left:-4.134000px;}
._3_c00456{margin-left:-2.496000px;}
._c_c00456{margin-left:-1.374000px;}
._0_c00456{width:1.539000px;}
._2_c00456{width:2.673000px;}
._5_c00456{width:4.614000px;}
._b_c00456{width:5.871000px;}
._7_c00456{width:7.122000px;}
._6_c00456{width:8.511000px;}
._12_c00456{width:9.651000px;}
._f_c00456{width:10.944000px;}
._a_c00456{width:12.951000px;}
._1_c00456{width:14.580000px;}
._16_c00456{width:15.798000px;}
._10_c00456{width:17.622000px;}
._e_c00456{width:19.197000px;}
._13_c00456{width:20.955000px;}
._19_c00456{width:23.778000px;}
._1d_c00456{width:25.254000px;}
._17_c00456{width:26.622000px;}
._1f_c00456{width:27.849000px;}
._d_c00456{width:29.280000px;}
._11_c00456{width:30.879000px;}
._1e_c00456{width:32.049000px;}
._14_c00456{width:33.432000px;}
._25_c00456{width:39.375000px;}
._21_c00456{width:48.576000px;}
._28_c00456{width:56.148000px;}
._20_c00456{width:130.296000px;}
._26_c00456{width:218.817000px;}
._29_c00456{width:476.529000px;}
._2a_c00456{width:504.939000px;}
.fc2_c00456{color:transparent;}
.fc1_c00456{color:rgb(128,128,128);}
.fc0_c00456{color:rgb(0,0,0);}
.fs2_c00456{font-size:42.000000px;}
.fs8_c00456{font-size:48.000000px;}
.fs6_c00456{font-size:60.000000px;}
.fs5_c00456{font-size:66.000000px;}
.fs3_c00456{font-size:72.000000px;}
.fs1_c00456{font-size:78.000000px;}
.fs0_c00456{font-size:81.000000px;}
.fs4_c00456{font-size:87.000000px;}
.fs7_c00456{font-size:93.000000px;}
.y0_c00456{bottom:0.000000px;}
.y25_c00456{bottom:3.105000px;}
.y24_c00456{bottom:7.228363px;}
.y23_c00456{bottom:44.250000px;}
.y22_c00456{bottom:73.800000px;}
.y21_c00456{bottom:98.550000px;}
.y20_c00456{bottom:123.150000px;}
.y1f_c00456{bottom:147.750000px;}
.y1e_c00456{bottom:171.750000px;}
.y1d_c00456{bottom:195.450000px;}
.y1c_c00456{bottom:221.400000px;}
.y1b_c00456{bottom:245.700000px;}
.y1a_c00456{bottom:269.700000px;}
.y19_c00456{bottom:289.200000px;}
.y18_c00456{bottom:318.900000px;}
.y17_c00456{bottom:343.950000px;}
.y16_c00456{bottom:368.850000px;}
.y15_c00456{bottom:392.850000px;}
.y14_c00456{bottom:417.450000px;}
.y13_c00456{bottom:442.050000px;}
.y12_c00456{bottom:466.050000px;}
.y11_c00456{bottom:491.100000px;}
.y10_c00456{bottom:515.700000px;}
.yf_c00456{bottom:540.000000px;}
.ye_c00456{bottom:564.600000px;}
.yd_c00456{bottom:589.200000px;}
.yc_c00456{bottom:613.200000px;}
.yb_c00456{bottom:637.500000px;}
.ya_c00456{bottom:662.100000px;}
.y9_c00456{bottom:686.700000px;}
.y8_c00456{bottom:711.000000px;}
.y7_c00456{bottom:735.450000px;}
.y6_c00456{bottom:759.300000px;}
.y5_c00456{bottom:784.350000px;}
.y4_c00456{bottom:807.900000px;}
.y3_c00456{bottom:831.900000px;}
.y2_c00456{bottom:855.900000px;}
.y1_c00456{bottom:880.200000px;}
.h8_c00456{height:13.200074px;}
.h9_c00456{height:43.804688px;}
.h3_c00456{height:79.497070px;}
.h4_c00456{height:84.269531px;}
.h5_c00456{height:91.176000px;}
.h7_c00456{height:93.726562px;}
.h2_c00456{height:98.756836px;}
.h6_c00456{height:99.897070px;}
.h0_c00456{height:980.100000px;}
.h1_c00456{height:980.250000px;}
.w2_c00456{width:104.875500px;}
.w0_c00456{width:665.850000px;}
.w1_c00456{width:666.000000px;}
.x0_c00456{left:0.000000px;}
.x2_c00456{left:36.150000px;}
.x1_c00456{left:52.200000px;}
.x3_c00456{left:54.000000px;}
.x4_c00456{left:55.050000px;}
.x5_c00456{left:57.000000px;}
.x6_c00456{left:58.050000px;}
.x7_c00456{left:59.700000px;}
.x8_c00456{left:61.800000px;}
.x9_c00456{left:65.550000px;}
.xb_c00456{left:67.950000px;}
.xc_c00456{left:73.650000px;}
.xa_c00456{left:82.800000px;}
.xd_c00456{left:284.739258px;}
@media print{
.v0_c00456{vertical-align:0.000000pt;}
.v1_c00456{vertical-align:18.133333pt;}
.ls5_c00456{letter-spacing:0.000000pt;}
.ls0_c00456{letter-spacing:2.026667pt;}
.ls6_c00456{letter-spacing:2.666667pt;}
.ls3_c00456{letter-spacing:3.733333pt;}
.ls2_c00456{letter-spacing:8.000000pt;}
.ls1_c00456{letter-spacing:30.533333pt;}
.ls4_c00456{letter-spacing:129.066667pt;}
.ws1_c00456{word-spacing:-68.165333pt;}
.ws0_c00456{word-spacing:-16.709333pt;}
.ws2_c00456{word-spacing:-15.424000pt;}
.ws3_c00456{word-spacing:0.000000pt;}
._1b_c00456{margin-left:-24.026667pt;}
._1c_c00456{margin-left:-18.442667pt;}
._1a_c00456{margin-left:-16.432000pt;}
._24_c00456{margin-left:-14.917333pt;}
._27_c00456{margin-left:-13.194667pt;}
._22_c00456{margin-left:-11.421333pt;}
._15_c00456{margin-left:-10.432000pt;}
._23_c00456{margin-left:-9.482667pt;}
._9_c00456{margin-left:-7.797333pt;}
._18_c00456{margin-left:-6.013333pt;}
._8_c00456{margin-left:-4.960000pt;}
._4_c00456{margin-left:-3.674667pt;}
._3_c00456{margin-left:-2.218667pt;}
._c_c00456{margin-left:-1.221333pt;}
._0_c00456{width:1.368000pt;}
._2_c00456{width:2.376000pt;}
._5_c00456{width:4.101333pt;}
._b_c00456{width:5.218667pt;}
._7_c00456{width:6.330667pt;}
._6_c00456{width:7.565333pt;}
._12_c00456{width:8.578667pt;}
._f_c00456{width:9.728000pt;}
._a_c00456{width:11.512000pt;}
._1_c00456{width:12.960000pt;}
._16_c00456{width:14.042667pt;}
._10_c00456{width:15.664000pt;}
._e_c00456{width:17.064000pt;}
._13_c00456{width:18.626667pt;}
._19_c00456{width:21.136000pt;}
._1d_c00456{width:22.448000pt;}
._17_c00456{width:23.664000pt;}
._1f_c00456{width:24.754667pt;}
._d_c00456{width:26.026667pt;}
._11_c00456{width:27.448000pt;}
._1e_c00456{width:28.488000pt;}
._14_c00456{width:29.717333pt;}
._25_c00456{width:35.000000pt;}
._21_c00456{width:43.178667pt;}
._28_c00456{width:49.909333pt;}
._20_c00456{width:115.818667pt;}
._26_c00456{width:194.504000pt;}
._29_c00456{width:423.581333pt;}
._2a_c00456{width:448.834667pt;}
.fs2_c00456{font-size:37.333333pt;}
.fs8_c00456{font-size:42.666667pt;}
.fs6_c00456{font-size:53.333333pt;}
.fs5_c00456{font-size:58.666667pt;}
.fs3_c00456{font-size:64.000000pt;}
.fs1_c00456{font-size:69.333333pt;}
.fs0_c00456{font-size:72.000000pt;}
.fs4_c00456{font-size:77.333333pt;}
.fs7_c00456{font-size:82.666667pt;}
.y0_c00456{bottom:0.000000pt;}
.y25_c00456{bottom:2.760000pt;}
.y24_c00456{bottom:6.425212pt;}
.y23_c00456{bottom:39.333333pt;}
.y22_c00456{bottom:65.600000pt;}
.y21_c00456{bottom:87.600000pt;}
.y20_c00456{bottom:109.466667pt;}
.y1f_c00456{bottom:131.333333pt;}
.y1e_c00456{bottom:152.666667pt;}
.y1d_c00456{bottom:173.733333pt;}
.y1c_c00456{bottom:196.800000pt;}
.y1b_c00456{bottom:218.400000pt;}
.y1a_c00456{bottom:239.733333pt;}
.y19_c00456{bottom:257.066667pt;}
.y18_c00456{bottom:283.466667pt;}
.y17_c00456{bottom:305.733333pt;}
.y16_c00456{bottom:327.866667pt;}
.y15_c00456{bottom:349.200000pt;}
.y14_c00456{bottom:371.066667pt;}
.y13_c00456{bottom:392.933333pt;}
.y12_c00456{bottom:414.266667pt;}
.y11_c00456{bottom:436.533333pt;}
.y10_c00456{bottom:458.400000pt;}
.yf_c00456{bottom:480.000000pt;}
.ye_c00456{bottom:501.866667pt;}
.yd_c00456{bottom:523.733333pt;}
.yc_c00456{bottom:545.066667pt;}
.yb_c00456{bottom:566.666667pt;}
.ya_c00456{bottom:588.533333pt;}
.y9_c00456{bottom:610.400000pt;}
.y8_c00456{bottom:632.000000pt;}
.y7_c00456{bottom:653.733333pt;}
.y6_c00456{bottom:674.933333pt;}
.y5_c00456{bottom:697.200000pt;}
.y4_c00456{bottom:718.133333pt;}
.y3_c00456{bottom:739.466667pt;}
.y2_c00456{bottom:760.800000pt;}
.y1_c00456{bottom:782.400000pt;}
.h8_c00456{height:11.733399pt;}
.h9_c00456{height:38.937500pt;}
.h3_c00456{height:70.664062pt;}
.h4_c00456{height:74.906250pt;}
.h5_c00456{height:81.045333pt;}
.h7_c00456{height:83.312500pt;}
.h2_c00456{height:87.783854pt;}
.h6_c00456{height:88.797396pt;}
.h0_c00456{height:871.200000pt;}
.h1_c00456{height:871.333333pt;}
.w2_c00456{width:93.222667pt;}
.w0_c00456{width:591.866667pt;}
.w1_c00456{width:592.000000pt;}
.x0_c00456{left:0.000000pt;}
.x2_c00456{left:32.133333pt;}
.x1_c00456{left:46.400000pt;}
.x3_c00456{left:48.000000pt;}
.x4_c00456{left:48.933333pt;}
.x5_c00456{left:50.666667pt;}
.x6_c00456{left:51.600000pt;}
.x7_c00456{left:53.066667pt;}
.x8_c00456{left:54.933333pt;}
.x9_c00456{left:58.266667pt;}
.xb_c00456{left:60.400000pt;}
.xc_c00456{left:65.466667pt;}
.xa_c00456{left:73.600000pt;}
.xd_c00456{left:253.101563pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_633051ac0a40e4f0c2d6edce.woff2')format("woff");}.ff1_c00457{font-family:ff1_c00457;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00457;src:url('chunks/assets/font_09f6094894e73e0b6fe5b003.woff2')format("woff");}.ff2_c00457{font-family:ff2_c00457;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00457;src:url('chunks/assets/font_7d02849a05685b6f62fd93f3.woff2')format("woff");}.ff3_c00457{font-family:ff3_c00457;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00457;src:url('chunks/assets/font_1ff370cd1c75e6abb76876e7.woff2')format("woff");}.ff4_c00457{font-family:ff4_c00457;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00457;src:url('chunks/assets/font_edf172208fd42de2c22d1124.woff2')format("woff");}.ff5_c00457{font-family:ff5_c00457;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00457;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c00457{font-family:ff6_c00457;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00457{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00457{vertical-align:0.000000px;}
.ls4_c00457{letter-spacing:0.000000px;}
.ls0_c00457{letter-spacing:3.000000px;}
.ls5_c00457{letter-spacing:9.000000px;}
.ls1_c00457{letter-spacing:16.554000px;}
.ls2_c00457{letter-spacing:33.246000px;}
.ls3_c00457{letter-spacing:36.888000px;}
.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:-42.000000px;}
.ws4_c00457{word-spacing:-36.000000px;}
.ws2_c00457{word-spacing:-20.250000px;}
.ws3_c00457{word-spacing:-17.352000px;}
.ws0_c00457{word-spacing:-6.021000px;}
.ws5_c00457{word-spacing:0.000000px;}
._1d_c00457{margin-left:-21.129000px;}
._22_c00457{margin-left:-19.389000px;}
._1b_c00457{margin-left:-15.282000px;}
._21_c00457{margin-left:-12.336000px;}
._1c_c00457{margin-left:-10.290000px;}
._11_c00457{margin-left:-9.042000px;}
._1e_c00457{margin-left:-7.746000px;}
._e_c00457{margin-left:-5.928000px;}
._a_c00457{margin-left:-4.047000px;}
._6_c00457{margin-left:-2.223000px;}
._10_c00457{margin-left:-1.140000px;}
._9_c00457{width:1.368000px;}
._8_c00457{width:2.907000px;}
._c_c00457{width:4.161000px;}
._b_c00457{width:5.814000px;}
._2_c00457{width:6.954000px;}
._4_c00457{width:8.322000px;}
._5_c00457{width:9.918000px;}
._3_c00457{width:11.229000px;}
._1_c00457{width:12.312000px;}
._0_c00457{width:13.623000px;}
._f_c00457{width:14.706000px;}
._7_c00457{width:15.846000px;}
._19_c00457{width:17.748000px;}
._d_c00457{width:19.323000px;}
._15_c00457{width:20.634000px;}
._12_c00457{width:21.816000px;}
._14_c00457{width:23.028000px;}
._16_c00457{width:24.393000px;}
._13_c00457{width:26.562000px;}
._1a_c00457{width:29.037000px;}
._17_c00457{width:30.210000px;}
._18_c00457{width:33.993000px;}
._1f_c00457{width:39.879000px;}
._20_c00457{width:49.707000px;}
.fc2_c00457{color:transparent;}
.fc1_c00457{color:rgb(128,128,128);}
.fc0_c00457{color:rgb(0,0,0);}
.fs7_c00457{font-size:48.000000px;}
.fs3_c00457{font-size:51.000000px;}
.fs0_c00457{font-size:57.000000px;}
.fs6_c00457{font-size:66.000000px;}
.fs5_c00457{font-size:72.000000px;}
.fs4_c00457{font-size:78.000000px;}
.fs1_c00457{font-size:81.000000px;}
.fs2_c00457{font-size:84.000000px;}
.y0_c00457{bottom:0.000000px;}
.y24_c00457{bottom:3.105000px;}
.y23_c00457{bottom:7.228369px;}
.y22_c00457{bottom:71.220000px;}
.y21_c00457{bottom:97.770000px;}
.y20_c00457{bottom:122.520000px;}
.y1f_c00457{bottom:147.870000px;}
.y1e_c00457{bottom:172.170000px;}
.y1d_c00457{bottom:196.470000px;}
.y1c_c00457{bottom:221.070000px;}
.y1b_c00457{bottom:246.270000px;}
.y1a_c00457{bottom:270.570000px;}
.y19_c00457{bottom:295.020000px;}
.y18_c00457{bottom:320.220000px;}
.y17_c00457{bottom:343.620000px;}
.y16_c00457{bottom:369.120000px;}
.y15_c00457{bottom:394.170000px;}
.y14_c00457{bottom:417.870000px;}
.y13_c00457{bottom:442.470000px;}
.y12_c00457{bottom:466.320000px;}
.y11_c00457{bottom:489.720000px;}
.y10_c00457{bottom:514.920000px;}
.yf_c00457{bottom:538.620000px;}
.ye_c00457{bottom:562.920000px;}
.yd_c00457{bottom:586.920000px;}
.yc_c00457{bottom:611.820000px;}
.yb_c00457{bottom:635.820000px;}
.ya_c00457{bottom:660.120000px;}
.y9_c00457{bottom:684.120000px;}
.y8_c00457{bottom:708.720000px;}
.y7_c00457{bottom:733.020000px;}
.y6_c00457{bottom:757.320000px;}
.y5_c00457{bottom:781.020000px;}
.y4_c00457{bottom:805.620000px;}
.y3_c00457{bottom:829.920000px;}
.y2_c00457{bottom:854.520000px;}
.y1_c00457{bottom:878.820000px;}
.h7_c00457{height:13.200073px;}
.h8_c00457{height:43.804688px;}
.h2_c00457{height:57.445312px;}
.h3_c00457{height:79.497070px;}
.h4_c00457{height:82.400391px;}
.h5_c00457{height:84.269531px;}
.h6_c00457{height:98.756836px;}
.h1_c00457{height:972.750000px;}
.h0_c00457{height:973.050000px;}
.w2_c00457{width:104.875500px;}
.w0_c00457{width:658.275000px;}
.w1_c00457{width:658.500000px;}
.x0_c00457{left:0.000000px;}
.x10_c00457{left:8.700000px;}
.xb_c00457{left:47.850000px;}
.x11_c00457{left:100.800000px;}
.xf_c00457{left:102.900000px;}
.xe_c00457{left:104.850000px;}
.xd_c00457{left:106.650000px;}
.xc_c00457{left:108.000000px;}
.x9_c00457{left:110.250000px;}
.x8_c00457{left:111.750000px;}
.x7_c00457{left:112.950000px;}
.x6_c00457{left:114.450000px;}
.x5_c00457{left:116.400000px;}
.x4_c00457{left:117.900000px;}
.x3_c00457{left:119.100000px;}
.x2_c00457{left:120.600000px;}
.x1_c00457{left:122.850000px;}
.xa_c00457{left:134.250000px;}
.x12_c00457{left:280.951767px;}
@media print{
.v0_c00457{vertical-align:0.000000pt;}
.ls4_c00457{letter-spacing:0.000000pt;}
.ls0_c00457{letter-spacing:2.666667pt;}
.ls5_c00457{letter-spacing:8.000000pt;}
.ls1_c00457{letter-spacing:14.714667pt;}
.ls2_c00457{letter-spacing:29.552000pt;}
.ls3_c00457{letter-spacing:32.789333pt;}
.ws1_c00457{word-spacing:-37.333333pt;}
.ws4_c00457{word-spacing:-32.000000pt;}
.ws2_c00457{word-spacing:-18.000000pt;}
.ws3_c00457{word-spacing:-15.424000pt;}
.ws0_c00457{word-spacing:-5.352000pt;}
.ws5_c00457{word-spacing:0.000000pt;}
._1d_c00457{margin-left:-18.781333pt;}
._22_c00457{margin-left:-17.234667pt;}
._1b_c00457{margin-left:-13.584000pt;}
._21_c00457{margin-left:-10.965333pt;}
._1c_c00457{margin-left:-9.146667pt;}
._11_c00457{margin-left:-8.037333pt;}
._1e_c00457{margin-left:-6.885333pt;}
._e_c00457{margin-left:-5.269333pt;}
._a_c00457{margin-left:-3.597333pt;}
._6_c00457{margin-left:-1.976000pt;}
._10_c00457{margin-left:-1.013333pt;}
._9_c00457{width:1.216000pt;}
._8_c00457{width:2.584000pt;}
._c_c00457{width:3.698667pt;}
._b_c00457{width:5.168000pt;}
._2_c00457{width:6.181333pt;}
._4_c00457{width:7.397333pt;}
._5_c00457{width:8.816000pt;}
._3_c00457{width:9.981333pt;}
._1_c00457{width:10.944000pt;}
._0_c00457{width:12.109333pt;}
._f_c00457{width:13.072000pt;}
._7_c00457{width:14.085333pt;}
._19_c00457{width:15.776000pt;}
._d_c00457{width:17.176000pt;}
._15_c00457{width:18.341333pt;}
._12_c00457{width:19.392000pt;}
._14_c00457{width:20.469333pt;}
._16_c00457{width:21.682667pt;}
._13_c00457{width:23.610667pt;}
._1a_c00457{width:25.810667pt;}
._17_c00457{width:26.853333pt;}
._18_c00457{width:30.216000pt;}
._1f_c00457{width:35.448000pt;}
._20_c00457{width:44.184000pt;}
.fs7_c00457{font-size:42.666667pt;}
.fs3_c00457{font-size:45.333333pt;}
.fs0_c00457{font-size:50.666667pt;}
.fs6_c00457{font-size:58.666667pt;}
.fs5_c00457{font-size:64.000000pt;}
.fs4_c00457{font-size:69.333333pt;}
.fs1_c00457{font-size:72.000000pt;}
.fs2_c00457{font-size:74.666667pt;}
.y0_c00457{bottom:0.000000pt;}
.y24_c00457{bottom:2.760000pt;}
.y23_c00457{bottom:6.425217pt;}
.y22_c00457{bottom:63.306667pt;}
.y21_c00457{bottom:86.906667pt;}
.y20_c00457{bottom:108.906667pt;}
.y1f_c00457{bottom:131.440000pt;}
.y1e_c00457{bottom:153.040000pt;}
.y1d_c00457{bottom:174.640000pt;}
.y1c_c00457{bottom:196.506667pt;}
.y1b_c00457{bottom:218.906667pt;}
.y1a_c00457{bottom:240.506667pt;}
.y19_c00457{bottom:262.240000pt;}
.y18_c00457{bottom:284.640000pt;}
.y17_c00457{bottom:305.440000pt;}
.y16_c00457{bottom:328.106667pt;}
.y15_c00457{bottom:350.373333pt;}
.y14_c00457{bottom:371.440000pt;}
.y13_c00457{bottom:393.306667pt;}
.y12_c00457{bottom:414.506667pt;}
.y11_c00457{bottom:435.306667pt;}
.y10_c00457{bottom:457.706667pt;}
.yf_c00457{bottom:478.773333pt;}
.ye_c00457{bottom:500.373333pt;}
.yd_c00457{bottom:521.706667pt;}
.yc_c00457{bottom:543.840000pt;}
.yb_c00457{bottom:565.173333pt;}
.ya_c00457{bottom:586.773333pt;}
.y9_c00457{bottom:608.106667pt;}
.y8_c00457{bottom:629.973333pt;}
.y7_c00457{bottom:651.573333pt;}
.y6_c00457{bottom:673.173333pt;}
.y5_c00457{bottom:694.240000pt;}
.y4_c00457{bottom:716.106667pt;}
.y3_c00457{bottom:737.706667pt;}
.y2_c00457{bottom:759.573333pt;}
.y1_c00457{bottom:781.173333pt;}
.h7_c00457{height:11.733399pt;}
.h8_c00457{height:38.937500pt;}
.h2_c00457{height:51.062500pt;}
.h3_c00457{height:70.664062pt;}
.h4_c00457{height:73.244792pt;}
.h5_c00457{height:74.906250pt;}
.h6_c00457{height:87.783854pt;}
.h1_c00457{height:864.666667pt;}
.h0_c00457{height:864.933333pt;}
.w2_c00457{width:93.222667pt;}
.w0_c00457{width:585.133333pt;}
.w1_c00457{width:585.333333pt;}
.x0_c00457{left:0.000000pt;}
.x10_c00457{left:7.733333pt;}
.xb_c00457{left:42.533333pt;}
.x11_c00457{left:89.600000pt;}
.xf_c00457{left:91.466667pt;}
.xe_c00457{left:93.200000pt;}
.xd_c00457{left:94.800000pt;}
.xc_c00457{left:96.000000pt;}
.x9_c00457{left:98.000000pt;}
.x8_c00457{left:99.333333pt;}
.x7_c00457{left:100.400000pt;}
.x6_c00457{left:101.733333pt;}
.x5_c00457{left:103.466667pt;}
.x4_c00457{left:104.800000pt;}
.x3_c00457{left:105.866667pt;}
.x2_c00457{left:107.200000pt;}
.x1_c00457{left:109.200000pt;}
.xa_c00457{left:119.333333pt;}
.x12_c00457{left:249.734904pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ed8419ba5e6d4e751c1a7343.woff2')format("woff");}.ff1_c00458{font-family:ff1_c00458;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00458;src:url('chunks/assets/font_93e2cbb057e468010848655a.woff2')format("woff");}.ff2_c00458{font-family:ff2_c00458;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00458;src:url('chunks/assets/font_8b51de2085a331ee3c84b515.woff2')format("woff");}.ff3_c00458{font-family:ff3_c00458;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00458;src:url('chunks/assets/font_9e5cce49da76d03cdc538526.woff2')format("woff");}.ff4_c00458{font-family:ff4_c00458;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00458;src:url('chunks/assets/font_00d420deeeaa72c8c9102179.woff2')format("woff");}.ff5_c00458{font-family:ff5_c00458;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00458;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c00458{font-family:ff6_c00458;line-height:1.219238;font-style: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;}
.ls2_c00458{letter-spacing:-9.000000px;}
.ls1_c00458{letter-spacing:0.000000px;}
.ls0_c00458{letter-spacing:3.000000px;}
.ls3_c00458{letter-spacing:12.000000px;}
.sc__c00458{text-shadow:none;}
.sc0_c00458{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00458{-webkit-text-stroke:0px transparent;}
.sc0_c00458{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00458{word-spacing:-59.184000px;}
.ws4_c00458{word-spacing:-20.250000px;}
.ws3_c00458{word-spacing:-14.250000px;}
.ws5_c00458{word-spacing:-14.223000px;}
.ws6_c00458{word-spacing:0.000000px;}
.ws0_c00458{word-spacing:2.850000px;}
.ws2_c00458{word-spacing:5.808000px;}
._20_c00458{margin-left:-43.332000px;}
._10_c00458{margin-left:-30.495000px;}
._23_c00458{margin-left:-24.678000px;}
._18_c00458{margin-left:-22.059000px;}
._2f_c00458{margin-left:-17.421000px;}
._1c_c00458{margin-left:-15.696000px;}
._f_c00458{margin-left:-14.250000px;}
._d_c00458{margin-left:-12.084000px;}
._2c_c00458{margin-left:-10.896000px;}
._16_c00458{margin-left:-9.462000px;}
._24_c00458{margin-left:-7.620000px;}
._22_c00458{margin-left:-5.913000px;}
._1f_c00458{margin-left:-4.215000px;}
._13_c00458{margin-left:-3.048000px;}
._12_c00458{margin-left:-1.728000px;}
._8_c00458{width:1.446000px;}
._9_c00458{width:2.679000px;}
._2_c00458{width:4.332000px;}
._4_c00458{width:6.213000px;}
._3_c00458{width:7.410000px;}
._7_c00458{width:8.721000px;}
._5_c00458{width:9.975000px;}
._1_c00458{width:11.856000px;}
._0_c00458{width:13.224000px;}
._b_c00458{width:14.514000px;}
._6_c00458{width:15.675000px;}
._29_c00458{width:16.689000px;}
._1e_c00458{width:18.213000px;}
._a_c00458{width:19.794000px;}
._25_c00458{width:21.453000px;}
._14_c00458{width:22.941000px;}
._2a_c00458{width:24.141000px;}
._34_c00458{width:25.308000px;}
._27_c00458{width:26.757000px;}
._32_c00458{width:27.954000px;}
._28_c00458{width:29.295000px;}
._2b_c00458{width:31.329000px;}
._35_c00458{width:32.709000px;}
._1d_c00458{width:35.883000px;}
._31_c00458{width:37.455000px;}
._1b_c00458{width:40.404000px;}
._2e_c00458{width:42.219000px;}
._30_c00458{width:43.929000px;}
._c_c00458{width:51.756000px;}
._11_c00458{width:63.726000px;}
._15_c00458{width:100.377000px;}
._e_c00458{width:129.447000px;}
._17_c00458{width:156.465000px;}
._21_c00458{width:220.641000px;}
._19_c00458{width:333.792000px;}
._2d_c00458{width:335.616000px;}
._26_c00458{width:339.630000px;}
._33_c00458{width:459.393000px;}
._1a_c00458{width:563.937000px;}
.fc2_c00458{color:transparent;}
.fc1_c00458{color:rgb(128,128,128);}
.fc0_c00458{color:rgb(0,0,0);}
.fs4_c00458{font-size:48.000000px;}
.fs0_c00458{font-size:57.000000px;}
.fs3_c00458{font-size:69.000000px;}
.fs2_c00458{font-size:72.000000px;}
.fs1_c00458{font-size:81.000000px;}
.y0_c00458{bottom:0.000000px;}
.y24_c00458{bottom:3.105000px;}
.y23_c00458{bottom:7.228371px;}
.y22_c00458{bottom:87.465000px;}
.y21_c00458{bottom:113.415000px;}
.y20_c00458{bottom:136.665000px;}
.y1f_c00458{bottom:161.115000px;}
.y1e_c00458{bottom:185.715000px;}
.y1d_c00458{bottom:210.315000px;}
.y1c_c00458{bottom:233.565000px;}
.y1b_c00458{bottom:258.615000px;}
.y1a_c00458{bottom:283.515000px;}
.y19_c00458{bottom:307.515000px;}
.y18_c00458{bottom:332.565000px;}
.y17_c00458{bottom:355.815000px;}
.y16_c00458{bottom:380.715000px;}
.y15_c00458{bottom:405.465000px;}
.y14_c00458{bottom:430.065000px;}
.y13_c00458{bottom:454.065000px;}
.y12_c00458{bottom:478.665000px;}
.y11_c00458{bottom:502.215000px;}
.y10_c00458{bottom:526.965000px;}
.yf_c00458{bottom:551.565000px;}
.ye_c00458{bottom:575.865000px;}
.yd_c00458{bottom:599.865000px;}
.yc_c00458{bottom:624.465000px;}
.yb_c00458{bottom:648.765000px;}
.ya_c00458{bottom:672.615000px;}
.y9_c00458{bottom:696.915000px;}
.y8_c00458{bottom:720.315000px;}
.y7_c00458{bottom:745.215000px;}
.y6_c00458{bottom:768.465000px;}
.y5_c00458{bottom:794.115000px;}
.y4_c00458{bottom:818.415000px;}
.y3_c00458{bottom:841.515000px;}
.y2_c00458{bottom:866.415000px;}
.y1_c00458{bottom:890.715000px;}
.h8_c00458{height:13.200074px;}
.h9_c00458{height:43.804688px;}
.h6_c00458{height:55.914551px;}
.h5_c00458{height:55.942383px;}
.h2_c00458{height:57.445312px;}
.h3_c00458{height:79.497070px;}
.h4_c00458{height:84.269531px;}
.h7_c00458{height:87.361816px;}
.h0_c00458{height:989.025000px;}
.h1_c00458{height:989.250000px;}
.w1_c00458{width:104.875500px;}
.w0_c00458{width:672.000000px;}
.x0_c00458{left:0.000000px;}
.x3_c00458{left:28.800000px;}
.x1_c00458{left:44.850000px;}
.x2_c00458{left:45.900000px;}
.x5_c00458{left:46.950000px;}
.x4_c00458{left:48.000000px;}
.x6_c00458{left:49.050000px;}
.x7_c00458{left:287.814240px;}
@media print{
.v0_c00458{vertical-align:0.000000pt;}
.ls2_c00458{letter-spacing:-8.000000pt;}
.ls1_c00458{letter-spacing:0.000000pt;}
.ls0_c00458{letter-spacing:2.666667pt;}
.ls3_c00458{letter-spacing:10.666667pt;}
.ws1_c00458{word-spacing:-52.608000pt;}
.ws4_c00458{word-spacing:-18.000000pt;}
.ws3_c00458{word-spacing:-12.666667pt;}
.ws5_c00458{word-spacing:-12.642667pt;}
.ws6_c00458{word-spacing:0.000000pt;}
.ws0_c00458{word-spacing:2.533333pt;}
.ws2_c00458{word-spacing:5.162667pt;}
._20_c00458{margin-left:-38.517333pt;}
._10_c00458{margin-left:-27.106667pt;}
._23_c00458{margin-left:-21.936000pt;}
._18_c00458{margin-left:-19.608000pt;}
._2f_c00458{margin-left:-15.485333pt;}
._1c_c00458{margin-left:-13.952000pt;}
._f_c00458{margin-left:-12.666667pt;}
._d_c00458{margin-left:-10.741333pt;}
._2c_c00458{margin-left:-9.685333pt;}
._16_c00458{margin-left:-8.410667pt;}
._24_c00458{margin-left:-6.773333pt;}
._22_c00458{margin-left:-5.256000pt;}
._1f_c00458{margin-left:-3.746667pt;}
._13_c00458{margin-left:-2.709333pt;}
._12_c00458{margin-left:-1.536000pt;}
._8_c00458{width:1.285333pt;}
._9_c00458{width:2.381333pt;}
._2_c00458{width:3.850667pt;}
._4_c00458{width:5.522667pt;}
._3_c00458{width:6.586667pt;}
._7_c00458{width:7.752000pt;}
._5_c00458{width:8.866667pt;}
._1_c00458{width:10.538667pt;}
._0_c00458{width:11.754667pt;}
._b_c00458{width:12.901333pt;}
._6_c00458{width:13.933333pt;}
._29_c00458{width:14.834667pt;}
._1e_c00458{width:16.189333pt;}
._a_c00458{width:17.594667pt;}
._25_c00458{width:19.069333pt;}
._14_c00458{width:20.392000pt;}
._2a_c00458{width:21.458667pt;}
._34_c00458{width:22.496000pt;}
._27_c00458{width:23.784000pt;}
._32_c00458{width:24.848000pt;}
._28_c00458{width:26.040000pt;}
._2b_c00458{width:27.848000pt;}
._35_c00458{width:29.074667pt;}
._1d_c00458{width:31.896000pt;}
._31_c00458{width:33.293333pt;}
._1b_c00458{width:35.914667pt;}
._2e_c00458{width:37.528000pt;}
._30_c00458{width:39.048000pt;}
._c_c00458{width:46.005333pt;}
._11_c00458{width:56.645333pt;}
._15_c00458{width:89.224000pt;}
._e_c00458{width:115.064000pt;}
._17_c00458{width:139.080000pt;}
._21_c00458{width:196.125333pt;}
._19_c00458{width:296.704000pt;}
._2d_c00458{width:298.325333pt;}
._26_c00458{width:301.893333pt;}
._33_c00458{width:408.349333pt;}
._1a_c00458{width:501.277333pt;}
.fs4_c00458{font-size:42.666667pt;}
.fs0_c00458{font-size:50.666667pt;}
.fs3_c00458{font-size:61.333333pt;}
.fs2_c00458{font-size:64.000000pt;}
.fs1_c00458{font-size:72.000000pt;}
.y0_c00458{bottom:0.000000pt;}
.y24_c00458{bottom:2.760000pt;}
.y23_c00458{bottom:6.425219pt;}
.y22_c00458{bottom:77.746667pt;}
.y21_c00458{bottom:100.813333pt;}
.y20_c00458{bottom:121.480000pt;}
.y1f_c00458{bottom:143.213333pt;}
.y1e_c00458{bottom:165.080000pt;}
.y1d_c00458{bottom:186.946667pt;}
.y1c_c00458{bottom:207.613333pt;}
.y1b_c00458{bottom:229.880000pt;}
.y1a_c00458{bottom:252.013333pt;}
.y19_c00458{bottom:273.346667pt;}
.y18_c00458{bottom:295.613333pt;}
.y17_c00458{bottom:316.280000pt;}
.y16_c00458{bottom:338.413333pt;}
.y15_c00458{bottom:360.413333pt;}
.y14_c00458{bottom:382.280000pt;}
.y13_c00458{bottom:403.613333pt;}
.y12_c00458{bottom:425.480000pt;}
.y11_c00458{bottom:446.413333pt;}
.y10_c00458{bottom:468.413333pt;}
.yf_c00458{bottom:490.280000pt;}
.ye_c00458{bottom:511.880000pt;}
.yd_c00458{bottom:533.213333pt;}
.yc_c00458{bottom:555.080000pt;}
.yb_c00458{bottom:576.680000pt;}
.ya_c00458{bottom:597.880000pt;}
.y9_c00458{bottom:619.480000pt;}
.y8_c00458{bottom:640.280000pt;}
.y7_c00458{bottom:662.413333pt;}
.y6_c00458{bottom:683.080000pt;}
.y5_c00458{bottom:705.880000pt;}
.y4_c00458{bottom:727.480000pt;}
.y3_c00458{bottom:748.013333pt;}
.y2_c00458{bottom:770.146667pt;}
.y1_c00458{bottom:791.746667pt;}
.h8_c00458{height:11.733399pt;}
.h9_c00458{height:38.937500pt;}
.h6_c00458{height:49.701823pt;}
.h5_c00458{height:49.726562pt;}
.h2_c00458{height:51.062500pt;}
.h3_c00458{height:70.664062pt;}
.h4_c00458{height:74.906250pt;}
.h7_c00458{height:77.654948pt;}
.h0_c00458{height:879.133333pt;}
.h1_c00458{height:879.333333pt;}
.w1_c00458{width:93.222667pt;}
.w0_c00458{width:597.333333pt;}
.x0_c00458{left:0.000000pt;}
.x3_c00458{left:25.600000pt;}
.x1_c00458{left:39.866667pt;}
.x2_c00458{left:40.800000pt;}
.x5_c00458{left:41.733333pt;}
.x4_c00458{left:42.666667pt;}
.x6_c00458{left:43.600000pt;}
.x7_c00458{left:255.834880pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_59925fa958646234050c91e6.woff2')format("woff");}.ff1_c00459{font-family:ff1_c00459;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00459;src:url('chunks/assets/font_84303fd2f37d9700481d2092.woff2')format("woff");}.ff2_c00459{font-family:ff2_c00459;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00459;src:url('chunks/assets/font_4a96ab3afb0ef395f794a650.woff2')format("woff");}.ff3_c00459{font-family:ff3_c00459;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00459;src:url('chunks/assets/font_0ac2020157a0f2776a2eac68.woff2')format("woff");}.ff4_c00459{font-family:ff4_c00459;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00459;src:url('chunks/assets/font_90f071c07d12405b170b6194.woff2')format("woff");}.ff5_c00459{font-family:ff5_c00459;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00459;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c00459{font-family:ff6_c00459;line-height:1.219238;font-style: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;}
.ls2_c00459{letter-spacing:0.000000px;}
.ls3_c00459{letter-spacing:3.000000px;}
.ls0_c00459{letter-spacing:3.300000px;}
.ls1_c00459{letter-spacing:7.416000px;}
.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;}
}
.ws2_c00459{word-spacing:-36.000000px;}
.ws3_c00459{word-spacing:-20.250000px;}
.ws0_c00459{word-spacing:-17.352000px;}
.ws1_c00459{word-spacing:-13.737000px;}
.ws4_c00459{word-spacing:0.000000px;}
._d_c00459{margin-left:-18.243000px;}
._13_c00459{margin-left:-13.968000px;}
._c_c00459{margin-left:-11.421000px;}
._18_c00459{margin-left:-9.567000px;}
._1c_c00459{margin-left:-8.184000px;}
._b_c00459{margin-left:-6.624000px;}
._2_c00459{margin-left:-5.040000px;}
._4_c00459{margin-left:-3.528000px;}
._5_c00459{margin-left:-2.448000px;}
._8_c00459{margin-left:-1.152000px;}
._a_c00459{width:1.728000px;}
._0_c00459{width:3.384000px;}
._15_c00459{width:4.536000px;}
._e_c00459{width:5.670000px;}
._11_c00459{width:6.696000px;}
._16_c00459{width:7.743000px;}
._10_c00459{width:8.790000px;}
._9_c00459{width:10.278000px;}
._3_c00459{width:12.024000px;}
._1_c00459{width:13.464000px;}
._12_c00459{width:14.526000px;}
._7_c00459{width:15.840000px;}
._1e_c00459{width:17.091000px;}
._17_c00459{width:18.480000px;}
._21_c00459{width:24.288000px;}
._14_c00459{width:25.443000px;}
._6_c00459{width:27.216000px;}
._22_c00459{width:33.276000px;}
._20_c00459{width:38.934000px;}
._19_c00459{width:43.023000px;}
._1a_c00459{width:51.771000px;}
._1b_c00459{width:73.134000px;}
._1d_c00459{width:206.559000px;}
._1f_c00459{width:212.379000px;}
._f_c00459{width:238.257000px;}
.fc2_c00459{color:transparent;}
.fc1_c00459{color:rgb(128,128,128);}
.fc0_c00459{color:rgb(0,0,0);}
.fs8_c00459{font-size:48.000000px;}
.fs2_c00459{font-size:57.000000px;}
.fs3_c00459{font-size:63.000000px;}
.fs7_c00459{font-size:66.000000px;}
.fs0_c00459{font-size:72.000000px;}
.fs4_c00459{font-size:78.000000px;}
.fs1_c00459{font-size:81.000000px;}
.fs5_c00459{font-size:84.000000px;}
.fs6_c00459{font-size:87.000000px;}
.y0_c00459{bottom:0.000000px;}
.y24_c00459{bottom:3.105000px;}
.y23_c00459{bottom:7.228355px;}
.y22_c00459{bottom:52.335000px;}
.y21_c00459{bottom:76.485000px;}
.y20_c00459{bottom:102.585000px;}
.y1f_c00459{bottom:127.785000px;}
.y1e_c00459{bottom:152.235000px;}
.y1d_c00459{bottom:176.535000px;}
.y1c_c00459{bottom:200.835000px;}
.y1b_c00459{bottom:225.435000px;}
.y1a_c00459{bottom:250.035000px;}
.y19_c00459{bottom:274.635000px;}
.y18_c00459{bottom:299.235000px;}
.y17_c00459{bottom:323.685000px;}
.y16_c00459{bottom:347.985000px;}
.y15_c00459{bottom:372.885000px;}
.y14_c00459{bottom:397.185000px;}
.y13_c00459{bottom:422.535000px;}
.y12_c00459{bottom:446.085000px;}
.y11_c00459{bottom:470.385000px;}
.y10_c00459{bottom:494.085000px;}
.yf_c00459{bottom:519.435000px;}
.ye_c00459{bottom:542.385000px;}
.yd_c00459{bottom:565.935000px;}
.yc_c00459{bottom:589.635000px;}
.yb_c00459{bottom:614.835000px;}
.ya_c00459{bottom:638.835000px;}
.y9_c00459{bottom:687.135000px;}
.y8_c00459{bottom:712.335000px;}
.y7_c00459{bottom:735.735000px;}
.y6_c00459{bottom:760.335000px;}
.y5_c00459{bottom:784.335000px;}
.y4_c00459{bottom:808.635000px;}
.y3_c00459{bottom:833.535000px;}
.y2_c00459{bottom:857.535000px;}
.y1_c00459{bottom:881.835000px;}
.h9_c00459{height:13.200074px;}
.ha_c00459{height:43.804688px;}
.h5_c00459{height:72.168457px;}
.h4_c00459{height:79.497070px;}
.h3_c00459{height:84.269531px;}
.h7_c00459{height:84.656250px;}
.h8_c00459{height:87.679688px;}
.h2_c00459{height:91.160156px;}
.h6_c00459{height:98.756836px;}
.h1_c00459{height:975.000000px;}
.h0_c00459{height:975.225000px;}
.w2_c00459{width:104.875500px;}
.w0_c00459{width:659.850000px;}
.w1_c00459{width:660.000000px;}
.x0_c00459{left:0.000000px;}
.xc_c00459{left:34.050000px;}
.x2_c00459{left:36.450000px;}
.x8_c00459{left:58.800000px;}
.xf_c00459{left:116.550000px;}
.x11_c00459{left:119.250000px;}
.x10_c00459{left:120.450000px;}
.xe_c00459{left:122.550000px;}
.xd_c00459{left:123.900000px;}
.xb_c00459{left:125.250000px;}
.x1_c00459{left:126.600000px;}
.xa_c00459{left:127.650000px;}
.x5_c00459{left:129.000000px;}
.x4_c00459{left:130.050000px;}
.x3_c00459{left:131.250000px;}
.x9_c00459{left:133.050000px;}
.x6_c00459{left:157.350000px;}
.x7_c00459{left:230.550000px;}
.x13_c00459{left:281.739258px;}
.x12_c00459{left:544.350000px;}
@media print{
.v0_c00459{vertical-align:0.000000pt;}
.ls2_c00459{letter-spacing:0.000000pt;}
.ls3_c00459{letter-spacing:2.666667pt;}
.ls0_c00459{letter-spacing:2.933333pt;}
.ls1_c00459{letter-spacing:6.592000pt;}
.ws2_c00459{word-spacing:-32.000000pt;}
.ws3_c00459{word-spacing:-18.000000pt;}
.ws0_c00459{word-spacing:-15.424000pt;}
.ws1_c00459{word-spacing:-12.210667pt;}
.ws4_c00459{word-spacing:0.000000pt;}
._d_c00459{margin-left:-16.216000pt;}
._13_c00459{margin-left:-12.416000pt;}
._c_c00459{margin-left:-10.152000pt;}
._18_c00459{margin-left:-8.504000pt;}
._1c_c00459{margin-left:-7.274667pt;}
._b_c00459{margin-left:-5.888000pt;}
._2_c00459{margin-left:-4.480000pt;}
._4_c00459{margin-left:-3.136000pt;}
._5_c00459{margin-left:-2.176000pt;}
._8_c00459{margin-left:-1.024000pt;}
._a_c00459{width:1.536000pt;}
._0_c00459{width:3.008000pt;}
._15_c00459{width:4.032000pt;}
._e_c00459{width:5.040000pt;}
._11_c00459{width:5.952000pt;}
._16_c00459{width:6.882667pt;}
._10_c00459{width:7.813333pt;}
._9_c00459{width:9.136000pt;}
._3_c00459{width:10.688000pt;}
._1_c00459{width:11.968000pt;}
._12_c00459{width:12.912000pt;}
._7_c00459{width:14.080000pt;}
._1e_c00459{width:15.192000pt;}
._17_c00459{width:16.426667pt;}
._21_c00459{width:21.589333pt;}
._14_c00459{width:22.616000pt;}
._6_c00459{width:24.192000pt;}
._22_c00459{width:29.578667pt;}
._20_c00459{width:34.608000pt;}
._19_c00459{width:38.242667pt;}
._1a_c00459{width:46.018667pt;}
._1b_c00459{width:65.008000pt;}
._1d_c00459{width:183.608000pt;}
._1f_c00459{width:188.781333pt;}
._f_c00459{width:211.784000pt;}
.fs8_c00459{font-size:42.666667pt;}
.fs2_c00459{font-size:50.666667pt;}
.fs3_c00459{font-size:56.000000pt;}
.fs7_c00459{font-size:58.666667pt;}
.fs0_c00459{font-size:64.000000pt;}
.fs4_c00459{font-size:69.333333pt;}
.fs1_c00459{font-size:72.000000pt;}
.fs5_c00459{font-size:74.666667pt;}
.fs6_c00459{font-size:77.333333pt;}
.y0_c00459{bottom:0.000000pt;}
.y24_c00459{bottom:2.760000pt;}
.y23_c00459{bottom:6.425204pt;}
.y22_c00459{bottom:46.520000pt;}
.y21_c00459{bottom:67.986667pt;}
.y20_c00459{bottom:91.186667pt;}
.y1f_c00459{bottom:113.586667pt;}
.y1e_c00459{bottom:135.320000pt;}
.y1d_c00459{bottom:156.920000pt;}
.y1c_c00459{bottom:178.520000pt;}
.y1b_c00459{bottom:200.386667pt;}
.y1a_c00459{bottom:222.253333pt;}
.y19_c00459{bottom:244.120000pt;}
.y18_c00459{bottom:265.986667pt;}
.y17_c00459{bottom:287.720000pt;}
.y16_c00459{bottom:309.320000pt;}
.y15_c00459{bottom:331.453333pt;}
.y14_c00459{bottom:353.053333pt;}
.y13_c00459{bottom:375.586667pt;}
.y12_c00459{bottom:396.520000pt;}
.y11_c00459{bottom:418.120000pt;}
.y10_c00459{bottom:439.186667pt;}
.yf_c00459{bottom:461.720000pt;}
.ye_c00459{bottom:482.120000pt;}
.yd_c00459{bottom:503.053333pt;}
.yc_c00459{bottom:524.120000pt;}
.yb_c00459{bottom:546.520000pt;}
.ya_c00459{bottom:567.853333pt;}
.y9_c00459{bottom:610.786667pt;}
.y8_c00459{bottom:633.186667pt;}
.y7_c00459{bottom:653.986667pt;}
.y6_c00459{bottom:675.853333pt;}
.y5_c00459{bottom:697.186667pt;}
.y4_c00459{bottom:718.786667pt;}
.y3_c00459{bottom:740.920000pt;}
.y2_c00459{bottom:762.253333pt;}
.y1_c00459{bottom:783.853333pt;}
.h9_c00459{height:11.733399pt;}
.ha_c00459{height:38.937500pt;}
.h5_c00459{height:64.149740pt;}
.h4_c00459{height:70.664062pt;}
.h3_c00459{height:74.906250pt;}
.h7_c00459{height:75.250000pt;}
.h8_c00459{height:77.937500pt;}
.h2_c00459{height:81.031250pt;}
.h6_c00459{height:87.783854pt;}
.h1_c00459{height:866.666667pt;}
.h0_c00459{height:866.866667pt;}
.w2_c00459{width:93.222667pt;}
.w0_c00459{width:586.533333pt;}
.w1_c00459{width:586.666667pt;}
.x0_c00459{left:0.000000pt;}
.xc_c00459{left:30.266667pt;}
.x2_c00459{left:32.400000pt;}
.x8_c00459{left:52.266667pt;}
.xf_c00459{left:103.600000pt;}
.x11_c00459{left:106.000000pt;}
.x10_c00459{left:107.066667pt;}
.xe_c00459{left:108.933333pt;}
.xd_c00459{left:110.133333pt;}
.xb_c00459{left:111.333333pt;}
.x1_c00459{left:112.533333pt;}
.xa_c00459{left:113.466667pt;}
.x5_c00459{left:114.666667pt;}
.x4_c00459{left:115.600000pt;}
.x3_c00459{left:116.666667pt;}
.x9_c00459{left:118.266667pt;}
.x6_c00459{left:139.866667pt;}
.x7_c00459{left:204.933333pt;}
.x13_c00459{left:250.434896pt;}
.x12_c00459{left:483.866667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_345a3c352c5e0a97ceca7ebc.woff2')format("woff");}.ff1_c00460{font-family:ff1_c00460;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00460;src:url('chunks/assets/font_de7bffaab790bead37a0fc56.woff2')format("woff");}.ff2_c00460{font-family:ff2_c00460;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00460;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff3_c00460{font-family:ff3_c00460;line-height:1.219238;font-style: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;}
.ls1_c00460{letter-spacing:0.000000px;}
.ls0_c00460{letter-spacing:9.000000px;}
.sc__c00460{text-shadow:none;}
.sc0_c00460{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00460{-webkit-text-stroke:0px transparent;}
.sc0_c00460{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00460{word-spacing:-20.250000px;}
.ws1_c00460{word-spacing:0.000000px;}
._17_c00460{margin-left:-25.983000px;}
._1c_c00460{margin-left:-20.313000px;}
._15_c00460{margin-left:-13.137000px;}
._c_c00460{margin-left:-10.626000px;}
._16_c00460{margin-left:-8.733000px;}
._e_c00460{margin-left:-7.035000px;}
._d_c00460{margin-left:-5.901000px;}
._12_c00460{margin-left:-4.548000px;}
._0_c00460{margin-left:-3.009000px;}
._f_c00460{margin-left:-1.458000px;}
._b_c00460{width:1.053000px;}
._8_c00460{width:2.592000px;}
._9_c00460{width:3.669000px;}
._2_c00460{width:4.779000px;}
._6_c00460{width:5.994000px;}
._7_c00460{width:7.776000px;}
._3_c00460{width:8.991000px;}
._5_c00460{width:10.206000px;}
._10_c00460{width:11.559000px;}
._11_c00460{width:13.098000px;}
._13_c00460{width:14.580000px;}
._a_c00460{width:16.128000px;}
._1b_c00460{width:17.157000px;}
._1_c00460{width:18.159000px;}
._19_c00460{width:23.568000px;}
._18_c00460{width:32.583000px;}
._14_c00460{width:34.170000px;}
._4_c00460{width:35.721000px;}
._1a_c00460{width:40.818000px;}
.fc2_c00460{color:transparent;}
.fc1_c00460{color:rgb(128,128,128);}
.fc0_c00460{color:rgb(0,0,0);}
.fs3_c00460{font-size:48.000000px;}
.fs0_c00460{font-size:51.000000px;}
.fs2_c00460{font-size:54.000000px;}
.fs1_c00460{font-size:81.000000px;}
.y0_c00460{bottom:0.000000px;}
.y25_c00460{bottom:3.105000px;}
.y24_c00460{bottom:7.228371px;}
.y23_c00460{bottom:62.865000px;}
.y22_c00460{bottom:85.065000px;}
.y21_c00460{bottom:109.665000px;}
.y20_c00460{bottom:133.965000px;}
.y1f_c00460{bottom:158.265000px;}
.y1e_c00460{bottom:182.265000px;}
.y1d_c00460{bottom:206.565000px;}
.y1c_c00460{bottom:230.865000px;}
.y1b_c00460{bottom:255.165000px;}
.y1a_c00460{bottom:279.465000px;}
.y19_c00460{bottom:303.465000px;}
.y18_c00460{bottom:327.465000px;}
.y17_c00460{bottom:352.365000px;}
.y16_c00460{bottom:376.365000px;}
.y15_c00460{bottom:400.665000px;}
.y14_c00460{bottom:424.965000px;}
.y13_c00460{bottom:449.265000px;}
.y12_c00460{bottom:473.265000px;}
.y11_c00460{bottom:497.565000px;}
.y10_c00460{bottom:521.865000px;}
.yf_c00460{bottom:546.165000px;}
.ye_c00460{bottom:570.165000px;}
.yd_c00460{bottom:594.765000px;}
.yc_c00460{bottom:618.765000px;}
.yb_c00460{bottom:642.615000px;}
.ya_c00460{bottom:666.615000px;}
.y9_c00460{bottom:690.915000px;}
.y8_c00460{bottom:714.915000px;}
.y7_c00460{bottom:738.915000px;}
.y6_c00460{bottom:763.065000px;}
.y5_c00460{bottom:787.365000px;}
.y4_c00460{bottom:810.765000px;}
.y3_c00460{bottom:834.315000px;}
.y2_c00460{bottom:858.315000px;}
.y1_c00460{bottom:881.865000px;}
.h3_c00460{height:13.200074px;}
.h4_c00460{height:43.804688px;}
.h2_c00460{height:79.497070px;}
.h0_c00460{height:989.025000px;}
.h1_c00460{height:989.250000px;}
.w1_c00460{width:104.875500px;}
.w0_c00460{width:672.000000px;}
.x0_c00460{left:0.000000px;}
.x1_c00460{left:39.900000px;}
.x6_c00460{left:42.750000px;}
.x9_c00460{left:49.650000px;}
.xd_c00460{left:53.250000px;}
.x2_c00460{left:59.400000px;}
.x3_c00460{left:61.200000px;}
.x4_c00460{left:62.400000px;}
.x5_c00460{left:63.450000px;}
.x7_c00460{left:65.250000px;}
.x8_c00460{left:67.050000px;}
.xa_c00460{left:68.400000px;}
.xb_c00460{left:69.900000px;}
.xc_c00460{left:71.250000px;}
.xe_c00460{left:72.600000px;}
.xf_c00460{left:74.250000px;}
.x11_c00460{left:287.814240px;}
.x10_c00460{left:507.600000px;}
@media print{
.v0_c00460{vertical-align:0.000000pt;}
.ls1_c00460{letter-spacing:0.000000pt;}
.ls0_c00460{letter-spacing:8.000000pt;}
.ws0_c00460{word-spacing:-18.000000pt;}
.ws1_c00460{word-spacing:0.000000pt;}
._17_c00460{margin-left:-23.096000pt;}
._1c_c00460{margin-left:-18.056000pt;}
._15_c00460{margin-left:-11.677333pt;}
._c_c00460{margin-left:-9.445333pt;}
._16_c00460{margin-left:-7.762667pt;}
._e_c00460{margin-left:-6.253333pt;}
._d_c00460{margin-left:-5.245333pt;}
._12_c00460{margin-left:-4.042667pt;}
._0_c00460{margin-left:-2.674667pt;}
._f_c00460{margin-left:-1.296000pt;}
._b_c00460{width:0.936000pt;}
._8_c00460{width:2.304000pt;}
._9_c00460{width:3.261333pt;}
._2_c00460{width:4.248000pt;}
._6_c00460{width:5.328000pt;}
._7_c00460{width:6.912000pt;}
._3_c00460{width:7.992000pt;}
._5_c00460{width:9.072000pt;}
._10_c00460{width:10.274667pt;}
._11_c00460{width:11.642667pt;}
._13_c00460{width:12.960000pt;}
._a_c00460{width:14.336000pt;}
._1b_c00460{width:15.250667pt;}
._1_c00460{width:16.141333pt;}
._19_c00460{width:20.949333pt;}
._18_c00460{width:28.962667pt;}
._14_c00460{width:30.373333pt;}
._4_c00460{width:31.752000pt;}
._1a_c00460{width:36.282667pt;}
.fs3_c00460{font-size:42.666667pt;}
.fs0_c00460{font-size:45.333333pt;}
.fs2_c00460{font-size:48.000000pt;}
.fs1_c00460{font-size:72.000000pt;}
.y0_c00460{bottom:0.000000pt;}
.y25_c00460{bottom:2.760000pt;}
.y24_c00460{bottom:6.425219pt;}
.y23_c00460{bottom:55.880000pt;}
.y22_c00460{bottom:75.613333pt;}
.y21_c00460{bottom:97.480000pt;}
.y20_c00460{bottom:119.080000pt;}
.y1f_c00460{bottom:140.680000pt;}
.y1e_c00460{bottom:162.013333pt;}
.y1d_c00460{bottom:183.613333pt;}
.y1c_c00460{bottom:205.213333pt;}
.y1b_c00460{bottom:226.813333pt;}
.y1a_c00460{bottom:248.413333pt;}
.y19_c00460{bottom:269.746667pt;}
.y18_c00460{bottom:291.080000pt;}
.y17_c00460{bottom:313.213333pt;}
.y16_c00460{bottom:334.546667pt;}
.y15_c00460{bottom:356.146667pt;}
.y14_c00460{bottom:377.746667pt;}
.y13_c00460{bottom:399.346667pt;}
.y12_c00460{bottom:420.680000pt;}
.y11_c00460{bottom:442.280000pt;}
.y10_c00460{bottom:463.880000pt;}
.yf_c00460{bottom:485.480000pt;}
.ye_c00460{bottom:506.813333pt;}
.yd_c00460{bottom:528.680000pt;}
.yc_c00460{bottom:550.013333pt;}
.yb_c00460{bottom:571.213333pt;}
.ya_c00460{bottom:592.546667pt;}
.y9_c00460{bottom:614.146667pt;}
.y8_c00460{bottom:635.480000pt;}
.y7_c00460{bottom:656.813333pt;}
.y6_c00460{bottom:678.280000pt;}
.y5_c00460{bottom:699.880000pt;}
.y4_c00460{bottom:720.680000pt;}
.y3_c00460{bottom:741.613333pt;}
.y2_c00460{bottom:762.946667pt;}
.y1_c00460{bottom:783.880000pt;}
.h3_c00460{height:11.733399pt;}
.h4_c00460{height:38.937500pt;}
.h2_c00460{height:70.664062pt;}
.h0_c00460{height:879.133333pt;}
.h1_c00460{height:879.333333pt;}
.w1_c00460{width:93.222667pt;}
.w0_c00460{width:597.333333pt;}
.x0_c00460{left:0.000000pt;}
.x1_c00460{left:35.466667pt;}
.x6_c00460{left:38.000000pt;}
.x9_c00460{left:44.133333pt;}
.xd_c00460{left:47.333333pt;}
.x2_c00460{left:52.800000pt;}
.x3_c00460{left:54.400000pt;}
.x4_c00460{left:55.466667pt;}
.x5_c00460{left:56.400000pt;}
.x7_c00460{left:58.000000pt;}
.x8_c00460{left:59.600000pt;}
.xa_c00460{left:60.800000pt;}
.xb_c00460{left:62.133333pt;}
.xc_c00460{left:63.333333pt;}
.xe_c00460{left:64.533333pt;}
.xf_c00460{left:66.000000pt;}
.x11_c00460{left:255.834880pt;}
.x10_c00460{left:451.200000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_0f74ca72a62c00a04217a64c.woff2')format("woff");}.ff1_c00461{font-family:ff1_c00461;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00461;src:url('chunks/assets/font_46125667b74225024c5f8a43.woff2')format("woff");}.ff2_c00461{font-family:ff2_c00461;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00461;src:url('chunks/assets/font_b2b354a88cc32495b5dffbe8.woff2')format("woff");}.ff3_c00461{font-family:ff3_c00461;line-height:1.338867;font-style:normal;font-weight:normal;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_11059a926872f68e23fde10b.woff2')format("woff");}.ff4_c00461{font-family:ff4_c00461;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00461;src:url('chunks/assets/font_ddf137ddf0c26431a3d41091.woff2')format("woff");}.ff5_c00461{font-family:ff5_c00461;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00461;src:url('chunks/assets/font_f7659995fccfa1cc1bbb71d9.woff2')format("woff");}.ff6_c00461{font-family:ff6_c00461;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00461;src:url('chunks/assets/font_692736096ec40a77d4060e0a.woff2')format("woff");}.ff7_c00461{font-family:ff7_c00461;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00461;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff8_c00461{font-family:ff8_c00461;line-height:1.219238;font-style: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;}
.ls1_c00461{letter-spacing:-9.000000px;}
.ls0_c00461{letter-spacing:0.000000px;}
.sc__c00461{text-shadow:none;}
.sc0_c00461{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00461{-webkit-text-stroke:0px transparent;}
.sc0_c00461{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00461{word-spacing:-20.250000px;}
.ws0_c00461{word-spacing:-17.352000px;}
.ws2_c00461{word-spacing:-16.926000px;}
.ws3_c00461{word-spacing:0.000000px;}
._25_c00461{margin-left:-25.755000px;}
._11_c00461{margin-left:-13.464000px;}
._1d_c00461{margin-left:-11.583000px;}
._16_c00461{margin-left:-10.530000px;}
._1e_c00461{margin-left:-8.106000px;}
._8_c00461{margin-left:-6.318000px;}
._f_c00461{margin-left:-4.941000px;}
._1f_c00461{margin-left:-3.897000px;}
._c_c00461{margin-left:-2.835000px;}
._e_c00461{margin-left:-1.539000px;}
._1_c00461{width:1.863000px;}
._9_c00461{width:3.321000px;}
._2_c00461{width:4.455000px;}
._0_c00461{width:5.994000px;}
._6_c00461{width:7.776000px;}
._5_c00461{width:9.234000px;}
._4_c00461{width:10.449000px;}
._10_c00461{width:11.664000px;}
._7_c00461{width:13.608000px;}
._3_c00461{width:15.147000px;}
._1b_c00461{width:16.443000px;}
._13_c00461{width:17.748000px;}
._1a_c00461{width:19.116000px;}
._18_c00461{width:21.384000px;}
._b_c00461{width:22.761000px;}
._15_c00461{width:24.378000px;}
._19_c00461{width:26.568000px;}
._17_c00461{width:28.581000px;}
._a_c00461{width:29.970000px;}
._12_c00461{width:33.942000px;}
._20_c00461{width:37.242000px;}
._21_c00461{width:38.313000px;}
._d_c00461{width:39.771000px;}
._23_c00461{width:43.380000px;}
._24_c00461{width:46.707000px;}
._14_c00461{width:53.346000px;}
._22_c00461{width:55.830000px;}
._1c_c00461{width:254.907000px;}
._26_c00461{width:265.668000px;}
.fc2_c00461{color:transparent;}
.fc1_c00461{color:rgb(128,128,128);}
.fc0_c00461{color:rgb(0,0,0);}
.fs5_c00461{font-size:48.000000px;}
.fs3_c00461{font-size:72.000000px;}
.fs4_c00461{font-size:78.000000px;}
.fs0_c00461{font-size:81.000000px;}
.fs1_c00461{font-size:102.000000px;}
.fs2_c00461{font-size:141.000000px;}
.y0_c00461{bottom:0.000000px;}
.y25_c00461{bottom:3.105000px;}
.y24_c00461{bottom:7.228371px;}
.y23_c00461{bottom:68.865000px;}
.y22_c00461{bottom:92.265000px;}
.y21_c00461{bottom:117.465000px;}
.y20_c00461{bottom:142.065000px;}
.y1f_c00461{bottom:164.715000px;}
.y1e_c00461{bottom:191.415000px;}
.y1d_c00461{bottom:215.415000px;}
.y1c_c00461{bottom:239.265000px;}
.y1b_c00461{bottom:263.565000px;}
.y1a_c00461{bottom:288.015000px;}
.y19_c00461{bottom:312.315000px;}
.y18_c00461{bottom:335.565000px;}
.y17_c00461{bottom:362.265000px;}
.y16_c00461{bottom:385.815000px;}
.y15_c00461{bottom:410.415000px;}
.y14_c00461{bottom:434.415000px;}
.y13_c00461{bottom:458.115000px;}
.y12_c00461{bottom:482.715000px;}
.y11_c00461{bottom:505.965000px;}
.y10_c00461{bottom:530.265000px;}
.yf_c00461{bottom:554.265000px;}
.ye_c00461{bottom:577.815000px;}
.yd_c00461{bottom:601.815000px;}
.yc_c00461{bottom:626.415000px;}
.yb_c00461{bottom:650.415000px;}
.ya_c00461{bottom:674.565000px;}
.y9_c00461{bottom:698.415000px;}
.y8_c00461{bottom:722.265000px;}
.y7_c00461{bottom:745.215000px;}
.y6_c00461{bottom:769.215000px;}
.y5_c00461{bottom:794.115000px;}
.y4_c00461{bottom:818.565000px;}
.y3_c00461{bottom:842.115000px;}
.y2_c00461{bottom:866.115000px;}
.y1_c00461{bottom:890.115000px;}
.h8_c00461{height:13.200074px;}
.h9_c00461{height:43.804688px;}
.h2_c00461{height:79.497070px;}
.h6_c00461{height:83.226000px;}
.h5_c00461{height:84.269531px;}
.h7_c00461{height:98.756836px;}
.h3_c00461{height:104.839927px;}
.h4_c00461{height:148.504395px;}
.h1_c00461{height:986.250000px;}
.h0_c00461{height:986.325000px;}
.w2_c00461{width:104.875500px;}
.w0_c00461{width:667.425000px;}
.w1_c00461{width:667.500000px;}
.x0_c00461{left:0.000000px;}
.xf_c00461{left:25.950000px;}
.xe_c00461{left:27.750000px;}
.xb_c00461{left:30.000000px;}
.xc_c00461{left:31.800000px;}
.x3_c00461{left:37.500000px;}
.x10_c00461{left:118.800000px;}
.x8_c00461{left:120.150000px;}
.xa_c00461{left:123.150000px;}
.x9_c00461{left:124.950000px;}
.x7_c00461{left:126.300000px;}
.x6_c00461{left:127.350000px;}
.x5_c00461{left:129.000000px;}
.x2_c00461{left:131.250000px;}
.x1_c00461{left:132.900000px;}
.x4_c00461{left:135.900000px;}
.x11_c00461{left:146.250000px;}
.xd_c00461{left:198.450000px;}
.x13_c00461{left:285.526749px;}
.x12_c00461{left:556.950000px;}
@media print{
.v0_c00461{vertical-align:0.000000pt;}
.ls1_c00461{letter-spacing:-8.000000pt;}
.ls0_c00461{letter-spacing:0.000000pt;}
.ws1_c00461{word-spacing:-18.000000pt;}
.ws0_c00461{word-spacing:-15.424000pt;}
.ws2_c00461{word-spacing:-15.045333pt;}
.ws3_c00461{word-spacing:0.000000pt;}
._25_c00461{margin-left:-22.893333pt;}
._11_c00461{margin-left:-11.968000pt;}
._1d_c00461{margin-left:-10.296000pt;}
._16_c00461{margin-left:-9.360000pt;}
._1e_c00461{margin-left:-7.205333pt;}
._8_c00461{margin-left:-5.616000pt;}
._f_c00461{margin-left:-4.392000pt;}
._1f_c00461{margin-left:-3.464000pt;}
._c_c00461{margin-left:-2.520000pt;}
._e_c00461{margin-left:-1.368000pt;}
._1_c00461{width:1.656000pt;}
._9_c00461{width:2.952000pt;}
._2_c00461{width:3.960000pt;}
._0_c00461{width:5.328000pt;}
._6_c00461{width:6.912000pt;}
._5_c00461{width:8.208000pt;}
._4_c00461{width:9.288000pt;}
._10_c00461{width:10.368000pt;}
._7_c00461{width:12.096000pt;}
._3_c00461{width:13.464000pt;}
._1b_c00461{width:14.616000pt;}
._13_c00461{width:15.776000pt;}
._1a_c00461{width:16.992000pt;}
._18_c00461{width:19.008000pt;}
._b_c00461{width:20.232000pt;}
._15_c00461{width:21.669333pt;}
._19_c00461{width:23.616000pt;}
._17_c00461{width:25.405333pt;}
._a_c00461{width:26.640000pt;}
._12_c00461{width:30.170667pt;}
._20_c00461{width:33.104000pt;}
._21_c00461{width:34.056000pt;}
._d_c00461{width:35.352000pt;}
._23_c00461{width:38.560000pt;}
._24_c00461{width:41.517333pt;}
._14_c00461{width:47.418667pt;}
._22_c00461{width:49.626667pt;}
._1c_c00461{width:226.584000pt;}
._26_c00461{width:236.149333pt;}
.fs5_c00461{font-size:42.666667pt;}
.fs3_c00461{font-size:64.000000pt;}
.fs4_c00461{font-size:69.333333pt;}
.fs0_c00461{font-size:72.000000pt;}
.fs1_c00461{font-size:90.666667pt;}
.fs2_c00461{font-size:125.333333pt;}
.y0_c00461{bottom:0.000000pt;}
.y25_c00461{bottom:2.760000pt;}
.y24_c00461{bottom:6.425219pt;}
.y23_c00461{bottom:61.213333pt;}
.y22_c00461{bottom:82.013333pt;}
.y21_c00461{bottom:104.413333pt;}
.y20_c00461{bottom:126.280000pt;}
.y1f_c00461{bottom:146.413333pt;}
.y1e_c00461{bottom:170.146667pt;}
.y1d_c00461{bottom:191.480000pt;}
.y1c_c00461{bottom:212.680000pt;}
.y1b_c00461{bottom:234.280000pt;}
.y1a_c00461{bottom:256.013333pt;}
.y19_c00461{bottom:277.613333pt;}
.y18_c00461{bottom:298.280000pt;}
.y17_c00461{bottom:322.013333pt;}
.y16_c00461{bottom:342.946667pt;}
.y15_c00461{bottom:364.813333pt;}
.y14_c00461{bottom:386.146667pt;}
.y13_c00461{bottom:407.213333pt;}
.y12_c00461{bottom:429.080000pt;}
.y11_c00461{bottom:449.746667pt;}
.y10_c00461{bottom:471.346667pt;}
.yf_c00461{bottom:492.680000pt;}
.ye_c00461{bottom:513.613333pt;}
.yd_c00461{bottom:534.946667pt;}
.yc_c00461{bottom:556.813333pt;}
.yb_c00461{bottom:578.146667pt;}
.ya_c00461{bottom:599.613333pt;}
.y9_c00461{bottom:620.813333pt;}
.y8_c00461{bottom:642.013333pt;}
.y7_c00461{bottom:662.413333pt;}
.y6_c00461{bottom:683.746667pt;}
.y5_c00461{bottom:705.880000pt;}
.y4_c00461{bottom:727.613333pt;}
.y3_c00461{bottom:748.546667pt;}
.y2_c00461{bottom:769.880000pt;}
.y1_c00461{bottom:791.213333pt;}
.h8_c00461{height:11.733399pt;}
.h9_c00461{height:38.937500pt;}
.h2_c00461{height:70.664062pt;}
.h6_c00461{height:73.978667pt;}
.h5_c00461{height:74.906250pt;}
.h7_c00461{height:87.783854pt;}
.h3_c00461{height:93.191046pt;}
.h4_c00461{height:132.003906pt;}
.h1_c00461{height:876.666667pt;}
.h0_c00461{height:876.733333pt;}
.w2_c00461{width:93.222667pt;}
.w0_c00461{width:593.266667pt;}
.w1_c00461{width:593.333333pt;}
.x0_c00461{left:0.000000pt;}
.xf_c00461{left:23.066667pt;}
.xe_c00461{left:24.666667pt;}
.xb_c00461{left:26.666667pt;}
.xc_c00461{left:28.266667pt;}
.x3_c00461{left:33.333333pt;}
.x10_c00461{left:105.600000pt;}
.x8_c00461{left:106.800000pt;}
.xa_c00461{left:109.466667pt;}
.x9_c00461{left:111.066667pt;}
.x7_c00461{left:112.266667pt;}
.x6_c00461{left:113.200000pt;}
.x5_c00461{left:114.666667pt;}
.x2_c00461{left:116.666667pt;}
.x1_c00461{left:118.133333pt;}
.x4_c00461{left:120.800000pt;}
.x11_c00461{left:130.000000pt;}
.xd_c00461{left:176.400000pt;}
.x13_c00461{left:253.801554pt;}
.x12_c00461{left:495.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_d21d22d38b5901f0b0ab6647.woff2')format("woff");}.ff1_c00462{font-family:ff1_c00462;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00462;src:url('chunks/assets/font_0edead5d825caa74771f6079.woff2')format("woff");}.ff2_c00462{font-family:ff2_c00462;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00462;src:url('chunks/assets/font_498a97eb3706c27091a83fa4.woff2')format("woff");}.ff3_c00462{font-family:ff3_c00462;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00462;src:url('chunks/assets/font_900825a7ff5fc7065c37843f.woff2')format("woff");}.ff4_c00462{font-family:ff4_c00462;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00462;src:url('chunks/assets/font_959baacb2dbb8b72a09af021.woff2')format("woff");}.ff5_c00462{font-family:ff5_c00462;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00462;src:url('chunks/assets/font_cbf7f3fd06bf8b936f20fb38.woff2')format("woff");}.ff6_c00462{font-family:ff6_c00462;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00462;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c00462{font-family:ff7_c00462;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00462{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00462{vertical-align:0.000000px;}
.v1_c00462{vertical-align:17.400000px;}
.ls1_c00462{letter-spacing:0.000000px;}
.ls0_c00462{letter-spacing:125.100000px;}
.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;}
}
.ws1_c00462{word-spacing:-20.250000px;}
.ws0_c00462{word-spacing:-19.065600px;}
.ws2_c00462{word-spacing:0.000000px;}
._22_c00462{margin-left:-26.406000px;}
._17_c00462{margin-left:-24.768000px;}
._1a_c00462{margin-left:-22.845000px;}
._19_c00462{margin-left:-18.144000px;}
._25_c00462{margin-left:-16.476000px;}
._11_c00462{margin-left:-14.094000px;}
._18_c00462{margin-left:-12.600000px;}
._7_c00462{margin-left:-11.118000px;}
._1b_c00462{margin-left:-9.555000px;}
._26_c00462{margin-left:-8.166000px;}
._1d_c00462{margin-left:-6.609000px;}
._d_c00462{margin-left:-4.860000px;}
._c_c00462{margin-left:-3.240000px;}
._13_c00462{margin-left:-1.461000px;}
._6_c00462{width:1.530000px;}
._5_c00462{width:3.162000px;}
._2_c00462{width:4.386000px;}
._e_c00462{width:5.748000px;}
._3_c00462{width:7.344000px;}
._1_c00462{width:8.772000px;}
._b_c00462{width:10.197000px;}
._0_c00462{width:11.730000px;}
._a_c00462{width:13.290000px;}
._4_c00462{width:14.382000px;}
._10_c00462{width:15.768000px;}
._f_c00462{width:16.941000px;}
._12_c00462{width:18.468000px;}
._16_c00462{width:21.474000px;}
._15_c00462{width:22.599000px;}
._9_c00462{width:23.664000px;}
._23_c00462{width:25.566000px;}
._20_c00462{width:27.336000px;}
._1e_c00462{width:28.836000px;}
._1c_c00462{width:30.717000px;}
._21_c00462{width:31.908000px;}
._14_c00462{width:40.065000px;}
._24_c00462{width:41.127000px;}
._1f_c00462{width:59.256000px;}
._8_c00462{width:70.074000px;}
._27_c00462{width:173.605800px;}
.fc2_c00462{color:transparent;}
.fc1_c00462{color:rgb(128,128,128);}
.fc0_c00462{color:rgb(0,0,0);}
.fs6_c00462{font-size:24.000000px;}
.fs7_c00462{font-size:48.000000px;}
.fs5_c00462{font-size:57.600000px;}
.fs3_c00462{font-size:60.000000px;}
.fs4_c00462{font-size:72.000000px;}
.fs2_c00462{font-size:81.000000px;}
.fs1_c00462{font-size:87.000000px;}
.fs0_c00462{font-size:102.000000px;}
.y0_c00462{bottom:0.000000px;}
.y26_c00462{bottom:3.105000px;}
.y25_c00462{bottom:7.228371px;}
.y24_c00462{bottom:68.265000px;}
.y23_c00462{bottom:93.465000px;}
.y22_c00462{bottom:118.815000px;}
.y21_c00462{bottom:143.115000px;}
.y20_c00462{bottom:167.865000px;}
.y1f_c00462{bottom:192.165000px;}
.y1e_c00462{bottom:216.465000px;}
.y1d_c00462{bottom:240.765000px;}
.y1c_c00462{bottom:265.065000px;}
.y1b_c00462{bottom:289.365000px;}
.y1a_c00462{bottom:313.665000px;}
.y19_c00462{bottom:337.515000px;}
.y18_c00462{bottom:361.815000px;}
.y17_c00462{bottom:385.515000px;}
.y16_c00462{bottom:409.815000px;}
.y15_c00462{bottom:434.115000px;}
.y14_c00462{bottom:453.615000px;}
.y13_c00462{bottom:480.915000px;}
.y12_c00462{bottom:505.665000px;}
.y11_c00462{bottom:530.265000px;}
.y10_c00462{bottom:554.865000px;}
.yf_c00462{bottom:578.865000px;}
.ye_c00462{bottom:603.165000px;}
.yd_c00462{bottom:627.165000px;}
.yc_c00462{bottom:651.465000px;}
.yb_c00462{bottom:675.765000px;}
.ya_c00462{bottom:699.615000px;}
.y9_c00462{bottom:723.615000px;}
.y8_c00462{bottom:747.915000px;}
.y7_c00462{bottom:772.215000px;}
.y6_c00462{bottom:796.215000px;}
.y5_c00462{bottom:820.215000px;}
.y4_c00462{bottom:844.215000px;}
.y3_c00462{bottom:868.815000px;}
.y2_c00462{bottom:892.665000px;}
.y1_c00462{bottom:928.215000px;}
.h7_c00462{height:13.200074px;}
.h8_c00462{height:43.804688px;}
.h3_c00462{height:79.497070px;}
.h6_c00462{height:84.269531px;}
.h5_c00462{height:91.160156px;}
.h4_c00462{height:96.897070px;}
.h2_c00462{height:100.057617px;}
.h0_c00462{height:989.025000px;}
.h1_c00462{height:989.250000px;}
.w1_c00462{width:104.875500px;}
.w0_c00462{width:672.000000px;}
.x0_c00462{left:0.000000px;}
.x3_c00462{left:30.150000px;}
.x2_c00462{left:45.600000px;}
.x4_c00462{left:46.650000px;}
.x5_c00462{left:47.700000px;}
.x6_c00462{left:48.900000px;}
.x7_c00462{left:49.950000px;}
.xa_c00462{left:51.300000px;}
.x8_c00462{left:52.350000px;}
.xb_c00462{left:53.700000px;}
.x9_c00462{left:76.050000px;}
.x1_c00462{left:105.600000px;}
.xd_c00462{left:287.814240px;}
.xc_c00462{left:499.500000px;}
@media print{
.v0_c00462{vertical-align:0.000000pt;}
.v1_c00462{vertical-align:15.466667pt;}
.ls1_c00462{letter-spacing:0.000000pt;}
.ls0_c00462{letter-spacing:111.200000pt;}
.ws1_c00462{word-spacing:-18.000000pt;}
.ws0_c00462{word-spacing:-16.947200pt;}
.ws2_c00462{word-spacing:0.000000pt;}
._22_c00462{margin-left:-23.472000pt;}
._17_c00462{margin-left:-22.016000pt;}
._1a_c00462{margin-left:-20.306667pt;}
._19_c00462{margin-left:-16.128000pt;}
._25_c00462{margin-left:-14.645333pt;}
._11_c00462{margin-left:-12.528000pt;}
._18_c00462{margin-left:-11.200000pt;}
._7_c00462{margin-left:-9.882667pt;}
._1b_c00462{margin-left:-8.493333pt;}
._26_c00462{margin-left:-7.258667pt;}
._1d_c00462{margin-left:-5.874667pt;}
._d_c00462{margin-left:-4.320000pt;}
._c_c00462{margin-left:-2.880000pt;}
._13_c00462{margin-left:-1.298667pt;}
._6_c00462{width:1.360000pt;}
._5_c00462{width:2.810667pt;}
._2_c00462{width:3.898667pt;}
._e_c00462{width:5.109333pt;}
._3_c00462{width:6.528000pt;}
._1_c00462{width:7.797333pt;}
._b_c00462{width:9.064000pt;}
._0_c00462{width:10.426667pt;}
._a_c00462{width:11.813333pt;}
._4_c00462{width:12.784000pt;}
._10_c00462{width:14.016000pt;}
._f_c00462{width:15.058667pt;}
._12_c00462{width:16.416000pt;}
._16_c00462{width:19.088000pt;}
._15_c00462{width:20.088000pt;}
._9_c00462{width:21.034667pt;}
._23_c00462{width:22.725333pt;}
._20_c00462{width:24.298667pt;}
._1e_c00462{width:25.632000pt;}
._1c_c00462{width:27.304000pt;}
._21_c00462{width:28.362667pt;}
._14_c00462{width:35.613333pt;}
._24_c00462{width:36.557333pt;}
._1f_c00462{width:52.672000pt;}
._8_c00462{width:62.288000pt;}
._27_c00462{width:154.316267pt;}
.fs6_c00462{font-size:21.333333pt;}
.fs7_c00462{font-size:42.666667pt;}
.fs5_c00462{font-size:51.200000pt;}
.fs3_c00462{font-size:53.333333pt;}
.fs4_c00462{font-size:64.000000pt;}
.fs2_c00462{font-size:72.000000pt;}
.fs1_c00462{font-size:77.333333pt;}
.fs0_c00462{font-size:90.666667pt;}
.y0_c00462{bottom:0.000000pt;}
.y26_c00462{bottom:2.760000pt;}
.y25_c00462{bottom:6.425219pt;}
.y24_c00462{bottom:60.680000pt;}
.y23_c00462{bottom:83.080000pt;}
.y22_c00462{bottom:105.613333pt;}
.y21_c00462{bottom:127.213333pt;}
.y20_c00462{bottom:149.213333pt;}
.y1f_c00462{bottom:170.813333pt;}
.y1e_c00462{bottom:192.413333pt;}
.y1d_c00462{bottom:214.013333pt;}
.y1c_c00462{bottom:235.613333pt;}
.y1b_c00462{bottom:257.213333pt;}
.y1a_c00462{bottom:278.813333pt;}
.y19_c00462{bottom:300.013333pt;}
.y18_c00462{bottom:321.613333pt;}
.y17_c00462{bottom:342.680000pt;}
.y16_c00462{bottom:364.280000pt;}
.y15_c00462{bottom:385.880000pt;}
.y14_c00462{bottom:403.213333pt;}
.y13_c00462{bottom:427.480000pt;}
.y12_c00462{bottom:449.480000pt;}
.y11_c00462{bottom:471.346667pt;}
.y10_c00462{bottom:493.213333pt;}
.yf_c00462{bottom:514.546667pt;}
.ye_c00462{bottom:536.146667pt;}
.yd_c00462{bottom:557.480000pt;}
.yc_c00462{bottom:579.080000pt;}
.yb_c00462{bottom:600.680000pt;}
.ya_c00462{bottom:621.880000pt;}
.y9_c00462{bottom:643.213333pt;}
.y8_c00462{bottom:664.813333pt;}
.y7_c00462{bottom:686.413333pt;}
.y6_c00462{bottom:707.746667pt;}
.y5_c00462{bottom:729.080000pt;}
.y4_c00462{bottom:750.413333pt;}
.y3_c00462{bottom:772.280000pt;}
.y2_c00462{bottom:793.480000pt;}
.y1_c00462{bottom:825.080000pt;}
.h7_c00462{height:11.733399pt;}
.h8_c00462{height:38.937500pt;}
.h3_c00462{height:70.664062pt;}
.h6_c00462{height:74.906250pt;}
.h5_c00462{height:81.031250pt;}
.h4_c00462{height:86.130729pt;}
.h2_c00462{height:88.940104pt;}
.h0_c00462{height:879.133333pt;}
.h1_c00462{height:879.333333pt;}
.w1_c00462{width:93.222667pt;}
.w0_c00462{width:597.333333pt;}
.x0_c00462{left:0.000000pt;}
.x3_c00462{left:26.800000pt;}
.x2_c00462{left:40.533333pt;}
.x4_c00462{left:41.466667pt;}
.x5_c00462{left:42.400000pt;}
.x6_c00462{left:43.466667pt;}
.x7_c00462{left:44.400000pt;}
.xa_c00462{left:45.600000pt;}
.x8_c00462{left:46.533333pt;}
.xb_c00462{left:47.733333pt;}
.x9_c00462{left:67.600000pt;}
.x1_c00462{left:93.866667pt;}
.xd_c00462{left:255.834880pt;}
.xc_c00462{left:444.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_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_c794dc4475c788314670baf2.woff2')format("woff");}.ff1_c00463{font-family:ff1_c00463;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00463;src:url('chunks/assets/font_b916b61151db81797107eb21.woff2')format("woff");}.ff2_c00463{font-family:ff2_c00463;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00463;src:url('chunks/assets/font_6ad43900ec9c8a584e5411d4.woff2')format("woff");}.ff3_c00463{font-family:ff3_c00463;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00463;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff4_c00463{font-family:ff4_c00463;line-height:1.219238;font-style: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;}
.ls1_c00463{letter-spacing:0.000000px;}
.ls0_c00463{letter-spacing:2.712000px;}
.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:-20.250000px;}
.ws1_c00463{word-spacing:-17.352000px;}
.ws2_c00463{word-spacing:0.000000px;}
._1c_c00463{margin-left:-29.106000px;}
._1b_c00463{margin-left:-27.540000px;}
._16_c00463{margin-left:-20.250000px;}
._19_c00463{margin-left:-16.524000px;}
._1a_c00463{margin-left:-14.067000px;}
._d_c00463{margin-left:-12.069000px;}
._e_c00463{margin-left:-10.773000px;}
._10_c00463{margin-left:-9.459000px;}
._2_c00463{margin-left:-7.452000px;}
._c_c00463{margin-left:-5.427000px;}
._7_c00463{margin-left:-3.645000px;}
._11_c00463{margin-left:-1.674000px;}
._3_c00463{width:2.025000px;}
._0_c00463{width:3.564000px;}
._6_c00463{width:5.346000px;}
._5_c00463{width:6.480000px;}
._1_c00463{width:8.343000px;}
._4_c00463{width:10.044000px;}
._9_c00463{width:11.907000px;}
._a_c00463{width:13.689000px;}
._13_c00463{width:14.742000px;}
._f_c00463{width:16.017000px;}
._8_c00463{width:17.577000px;}
._12_c00463{width:23.004000px;}
._17_c00463{width:24.543000px;}
._18_c00463{width:25.677000px;}
._15_c00463{width:28.026000px;}
._14_c00463{width:29.403000px;}
._b_c00463{width:33.372000px;}
.fc2_c00463{color:transparent;}
.fc1_c00463{color:rgb(128,128,128);}
.fc0_c00463{color:rgb(0,0,0);}
.fs3_c00463{font-size:48.000000px;}
.fs1_c00463{font-size:72.000000px;}
.fs2_c00463{font-size:78.000000px;}
.fs0_c00463{font-size:81.000000px;}
.y0_c00463{bottom:0.000000px;}
.y25_c00463{bottom:3.105000px;}
.y24_c00463{bottom:7.228355px;}
.y23_c00463{bottom:62.085000px;}
.y22_c00463{bottom:85.335000px;}
.y21_c00463{bottom:110.985000px;}
.y20_c00463{bottom:135.885000px;}
.y1f_c00463{bottom:161.235000px;}
.y1e_c00463{bottom:184.635000px;}
.y1d_c00463{bottom:209.535000px;}
.y1c_c00463{bottom:233.835000px;}
.y1b_c00463{bottom:258.135000px;}
.y1a_c00463{bottom:283.035000px;}
.y19_c00463{bottom:306.435000px;}
.y18_c00463{bottom:330.735000px;}
.y17_c00463{bottom:356.085000px;}
.y16_c00463{bottom:379.935000px;}
.y15_c00463{bottom:404.685000px;}
.y14_c00463{bottom:428.235000px;}
.y13_c00463{bottom:452.385000px;}
.y12_c00463{bottom:476.085000px;}
.y11_c00463{bottom:499.785000px;}
.y10_c00463{bottom:524.085000px;}
.yf_c00463{bottom:547.635000px;}
.ye_c00463{bottom:571.935000px;}
.yd_c00463{bottom:595.935000px;}
.yc_c00463{bottom:619.935000px;}
.yb_c00463{bottom:643.935000px;}
.ya_c00463{bottom:668.235000px;}
.y9_c00463{bottom:692.235000px;}
.y8_c00463{bottom:716.535000px;}
.y7_c00463{bottom:740.085000px;}
.y6_c00463{bottom:764.385000px;}
.y5_c00463{bottom:788.685000px;}
.y4_c00463{bottom:812.985000px;}
.y3_c00463{bottom:836.985000px;}
.y2_c00463{bottom:861.285000px;}
.y1_c00463{bottom:885.135000px;}
.h6_c00463{height:13.200074px;}
.h7_c00463{height:43.804688px;}
.h2_c00463{height:79.497070px;}
.h4_c00463{height:84.269531px;}
.h3_c00463{height:91.160156px;}
.h5_c00463{height:98.756836px;}
.h1_c00463{height:975.000000px;}
.h0_c00463{height:975.225000px;}
.w2_c00463{width:104.875500px;}
.w0_c00463{width:659.850000px;}
.w1_c00463{width:660.000000px;}
.x0_c00463{left:0.000000px;}
.x9_c00463{left:123.300000px;}
.x8_c00463{left:125.250000px;}
.x7_c00463{left:126.450000px;}
.x6_c00463{left:127.800000px;}
.x5_c00463{left:129.900000px;}
.x3_c00463{left:131.550000px;}
.x2_c00463{left:132.600000px;}
.x1_c00463{left:133.650000px;}
.xa_c00463{left:149.850000px;}
.x4_c00463{left:157.500000px;}
.xc_c00463{left:281.739258px;}
.xb_c00463{left:554.850000px;}
@media print{
.v0_c00463{vertical-align:0.000000pt;}
.ls1_c00463{letter-spacing:0.000000pt;}
.ls0_c00463{letter-spacing:2.410667pt;}
.ws0_c00463{word-spacing:-18.000000pt;}
.ws1_c00463{word-spacing:-15.424000pt;}
.ws2_c00463{word-spacing:0.000000pt;}
._1c_c00463{margin-left:-25.872000pt;}
._1b_c00463{margin-left:-24.480000pt;}
._16_c00463{margin-left:-18.000000pt;}
._19_c00463{margin-left:-14.688000pt;}
._1a_c00463{margin-left:-12.504000pt;}
._d_c00463{margin-left:-10.728000pt;}
._e_c00463{margin-left:-9.576000pt;}
._10_c00463{margin-left:-8.408000pt;}
._2_c00463{margin-left:-6.624000pt;}
._c_c00463{margin-left:-4.824000pt;}
._7_c00463{margin-left:-3.240000pt;}
._11_c00463{margin-left:-1.488000pt;}
._3_c00463{width:1.800000pt;}
._0_c00463{width:3.168000pt;}
._6_c00463{width:4.752000pt;}
._5_c00463{width:5.760000pt;}
._1_c00463{width:7.416000pt;}
._4_c00463{width:8.928000pt;}
._9_c00463{width:10.584000pt;}
._a_c00463{width:12.168000pt;}
._13_c00463{width:13.104000pt;}
._f_c00463{width:14.237333pt;}
._8_c00463{width:15.624000pt;}
._12_c00463{width:20.448000pt;}
._17_c00463{width:21.816000pt;}
._18_c00463{width:22.824000pt;}
._15_c00463{width:24.912000pt;}
._14_c00463{width:26.136000pt;}
._b_c00463{width:29.664000pt;}
.fs3_c00463{font-size:42.666667pt;}
.fs1_c00463{font-size:64.000000pt;}
.fs2_c00463{font-size:69.333333pt;}
.fs0_c00463{font-size:72.000000pt;}
.y0_c00463{bottom:0.000000pt;}
.y25_c00463{bottom:2.760000pt;}
.y24_c00463{bottom:6.425204pt;}
.y23_c00463{bottom:55.186667pt;}
.y22_c00463{bottom:75.853333pt;}
.y21_c00463{bottom:98.653333pt;}
.y20_c00463{bottom:120.786667pt;}
.y1f_c00463{bottom:143.320000pt;}
.y1e_c00463{bottom:164.120000pt;}
.y1d_c00463{bottom:186.253333pt;}
.y1c_c00463{bottom:207.853333pt;}
.y1b_c00463{bottom:229.453333pt;}
.y1a_c00463{bottom:251.586667pt;}
.y19_c00463{bottom:272.386667pt;}
.y18_c00463{bottom:293.986667pt;}
.y17_c00463{bottom:316.520000pt;}
.y16_c00463{bottom:337.720000pt;}
.y15_c00463{bottom:359.720000pt;}
.y14_c00463{bottom:380.653333pt;}
.y13_c00463{bottom:402.120000pt;}
.y12_c00463{bottom:423.186667pt;}
.y11_c00463{bottom:444.253333pt;}
.y10_c00463{bottom:465.853333pt;}
.yf_c00463{bottom:486.786667pt;}
.ye_c00463{bottom:508.386667pt;}
.yd_c00463{bottom:529.720000pt;}
.yc_c00463{bottom:551.053333pt;}
.yb_c00463{bottom:572.386667pt;}
.ya_c00463{bottom:593.986667pt;}
.y9_c00463{bottom:615.320000pt;}
.y8_c00463{bottom:636.920000pt;}
.y7_c00463{bottom:657.853333pt;}
.y6_c00463{bottom:679.453333pt;}
.y5_c00463{bottom:701.053333pt;}
.y4_c00463{bottom:722.653333pt;}
.y3_c00463{bottom:743.986667pt;}
.y2_c00463{bottom:765.586667pt;}
.y1_c00463{bottom:786.786667pt;}
.h6_c00463{height:11.733399pt;}
.h7_c00463{height:38.937500pt;}
.h2_c00463{height:70.664062pt;}
.h4_c00463{height:74.906250pt;}
.h3_c00463{height:81.031250pt;}
.h5_c00463{height:87.783854pt;}
.h1_c00463{height:866.666667pt;}
.h0_c00463{height:866.866667pt;}
.w2_c00463{width:93.222667pt;}
.w0_c00463{width:586.533333pt;}
.w1_c00463{width:586.666667pt;}
.x0_c00463{left:0.000000pt;}
.x9_c00463{left:109.600000pt;}
.x8_c00463{left:111.333333pt;}
.x7_c00463{left:112.400000pt;}
.x6_c00463{left:113.600000pt;}
.x5_c00463{left:115.466667pt;}
.x3_c00463{left:116.933333pt;}
.x2_c00463{left:117.866667pt;}
.x1_c00463{left:118.800000pt;}
.xa_c00463{left:133.200000pt;}
.x4_c00463{left:140.000000pt;}
.xc_c00463{left:250.434896pt;}
.xb_c00463{left:493.200000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_48c92c9dd9537f84c8ba833d.woff2')format("woff");}.ff1_c00464{font-family:ff1_c00464;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00464;src:url('chunks/assets/font_7a69a6cf30333e532ff475bf.woff2')format("woff");}.ff2_c00464{font-family:ff2_c00464;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00464;src:url('chunks/assets/font_ce41e9e32cf412fa0505a080.woff2')format("woff");}.ff3_c00464{font-family:ff3_c00464;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00464;src:url('chunks/assets/font_c1e5485827967e82ad92f25b.woff2')format("woff");}.ff4_c00464{font-family:ff4_c00464;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00464;src:url('chunks/assets/font_e979e88b1ad5b98363f9cd34.woff2')format("woff");}.ff5_c00464{font-family:ff5_c00464;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00464;src:url('chunks/assets/font_4c104469fa4636cf5472f007.woff2')format("woff");}.ff6_c00464{font-family:ff6_c00464;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00464;src:url('chunks/assets/font_11f9001d50ec76b190bf1c07.woff2')format("woff");}.ff7_c00464{font-family:ff7_c00464;line-height:1.437000;font-style:normal;font-weight: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_c00464;src:url('chunks/assets/font_ae17d930c9a1936dd21a906a.woff2')format("woff");}.ff8_c00464{font-family:ff8_c00464;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00464;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff9_c00464{font-family:ff9_c00464;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00464{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00464{vertical-align:0.000000px;}
.v1_c00464{vertical-align:20.400000px;}
.ls6_c00464{letter-spacing:-9.000000px;}
.ls3_c00464{letter-spacing:0.000000px;}
.ls2_c00464{letter-spacing:2.700000px;}
.ls0_c00464{letter-spacing:3.600000px;}
.ls5_c00464{letter-spacing:9.000000px;}
.ls4_c00464{letter-spacing:33.000000px;}
.ls1_c00464{letter-spacing:143.100000px;}
.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;}
}
.ws2_c00464{word-spacing:-76.686000px;}
.ws0_c00464{word-spacing:-23.859000px;}
.ws3_c00464{word-spacing:-20.430000px;}
.ws1_c00464{word-spacing:-17.352000px;}
.ws4_c00464{word-spacing:0.000000px;}
._4_c00464{margin-left:-48.369000px;}
._5_c00464{margin-left:-44.220000px;}
._28_c00464{margin-left:-33.354000px;}
._29_c00464{margin-left:-31.311000px;}
._23_c00464{margin-left:-30.294000px;}
._22_c00464{margin-left:-28.497000px;}
._1e_c00464{margin-left:-26.172000px;}
._20_c00464{margin-left:-22.680000px;}
._25_c00464{margin-left:-21.000000px;}
._18_c00464{margin-left:-19.521000px;}
._26_c00464{margin-left:-17.400000px;}
._16_c00464{margin-left:-15.807000px;}
._27_c00464{margin-left:-14.181000px;}
._19_c00464{margin-left:-13.164000px;}
._e_c00464{margin-left:-11.292000px;}
._f_c00464{margin-left:-9.153000px;}
._11_c00464{margin-left:-7.911000px;}
._10_c00464{margin-left:-6.081000px;}
._2_c00464{margin-left:-4.950000px;}
._3_c00464{margin-left:-3.762000px;}
._a_c00464{margin-left:-2.592000px;}
._9_c00464{margin-left:-1.089000px;}
._1_c00464{width:1.287000px;}
._0_c00464{width:2.475000px;}
._6_c00464{width:4.122000px;}
._7_c00464{width:5.346000px;}
._8_c00464{width:7.047000px;}
._12_c00464{width:8.136000px;}
._b_c00464{width:9.792000px;}
._15_c00464{width:11.448000px;}
._21_c00464{width:12.696000px;}
._c_c00464{width:15.504000px;}
._d_c00464{width:17.424000px;}
._1c_c00464{width:34.182000px;}
._1d_c00464{width:53.568000px;}
._14_c00464{width:55.482000px;}
._1a_c00464{width:114.075000px;}
._13_c00464{width:168.090000px;}
._1f_c00464{width:223.551000px;}
._2a_c00464{width:258.366000px;}
._17_c00464{width:272.871000px;}
._24_c00464{width:301.761000px;}
._1b_c00464{width:325.260000px;}
.fc2_c00464{color:transparent;}
.fc1_c00464{color:rgb(128,128,128);}
.fc0_c00464{color:rgb(0,0,0);}
.fs3_c00464{font-size:48.000000px;}
.fs8_c00464{font-size:57.000000px;}
.fs9_c00464{font-size:60.000000px;}
.fs7_c00464{font-size:66.000000px;}
.fs6_c00464{font-size:72.000000px;}
.fs4_c00464{font-size:78.000000px;}
.fs2_c00464{font-size:81.000000px;}
.fs5_c00464{font-size:87.000000px;}
.fsc_c00464{font-size:90.000000px;}
.fs0_c00464{font-size:99.000000px;}
.fsa_c00464{font-size:102.000000px;}
.fsb_c00464{font-size:120.000000px;}
.fs1_c00464{font-size:132.000000px;}
.y0_c00464{bottom:0.000000px;}
.y25_c00464{bottom:3.105000px;}
.y24_c00464{bottom:7.228363px;}
.y23_c00464{bottom:63.450000px;}
.y22_c00464{bottom:88.500000px;}
.y21_c00464{bottom:113.850000px;}
.y20_c00464{bottom:138.150000px;}
.y1f_c00464{bottom:163.050000px;}
.y1e_c00464{bottom:186.600000px;}
.y1d_c00464{bottom:211.350000px;}
.y1c_c00464{bottom:235.650000px;}
.y1b_c00464{bottom:259.950000px;}
.y1a_c00464{bottom:283.200000px;}
.y19_c00464{bottom:307.500000px;}
.y18_c00464{bottom:326.100000px;}
.y17_c00464{bottom:355.800000px;}
.y16_c00464{bottom:379.650000px;}
.y15_c00464{bottom:427.050000px;}
.y14_c00464{bottom:450.300000px;}
.y13_c00464{bottom:474.150000px;}
.y12_c00464{bottom:498.150000px;}
.y11_c00464{bottom:522.750000px;}
.y10_c00464{bottom:546.450000px;}
.yf_c00464{bottom:570.600000px;}
.ye_c00464{bottom:594.450000px;}
.yd_c00464{bottom:618.300000px;}
.yc_c00464{bottom:642.600000px;}
.yb_c00464{bottom:666.300000px;}
.ya_c00464{bottom:690.750000px;}
.y9_c00464{bottom:714.150000px;}
.y8_c00464{bottom:738.150000px;}
.y7_c00464{bottom:762.150000px;}
.y6_c00464{bottom:787.050000px;}
.y5_c00464{bottom:810.300000px;}
.y4_c00464{bottom:834.300000px;}
.y3_c00464{bottom:858.300000px;}
.y2_c00464{bottom:882.900000px;}
.y1_c00464{bottom:915.300000px;}
.hd_c00464{height:13.200074px;}
.he_c00464{height:43.804688px;}
.h9_c00464{height:66.713379px;}
.h8_c00464{height:72.168457px;}
.h3_c00464{height:79.497070px;}
.h6_c00464{height:91.160156px;}
.h7_c00464{height:91.176000px;}
.h4_c00464{height:98.756836px;}
.hb_c00464{height:104.839927px;}
.h5_c00464{height:110.151855px;}
.hc_c00464{height:120.937500px;}
.ha_c00464{height:125.239927px;}
.h2_c00464{height:167.126953px;}
.h1_c00464{height:982.500000px;}
.h0_c00464{height:982.800000px;}
.w2_c00464{width:104.875500px;}
.w0_c00464{width:667.425000px;}
.w1_c00464{width:667.500000px;}
.x0_c00464{left:0.000000px;}
.x2_c00464{left:54.000000px;}
.x3_c00464{left:56.400000px;}
.x4_c00464{left:58.050000px;}
.x5_c00464{left:59.100000px;}
.x6_c00464{left:60.450000px;}
.x7_c00464{left:61.650000px;}
.x8_c00464{left:63.150000px;}
.x9_c00464{left:66.150000px;}
.xa_c00464{left:68.550000px;}
.xe_c00464{left:71.250000px;}
.xc_c00464{left:73.200000px;}
.xf_c00464{left:74.250000px;}
.x10_c00464{left:75.300000px;}
.xd_c00464{left:97.500000px;}
.x1_c00464{left:105.300000px;}
.xb_c00464{left:117.900000px;}
.x12_c00464{left:285.526749px;}
.x11_c00464{left:418.200000px;}
@media print{
.v0_c00464{vertical-align:0.000000pt;}
.v1_c00464{vertical-align:18.133333pt;}
.ls6_c00464{letter-spacing:-8.000000pt;}
.ls3_c00464{letter-spacing:0.000000pt;}
.ls2_c00464{letter-spacing:2.400000pt;}
.ls0_c00464{letter-spacing:3.200000pt;}
.ls5_c00464{letter-spacing:8.000000pt;}
.ls4_c00464{letter-spacing:29.333333pt;}
.ls1_c00464{letter-spacing:127.200000pt;}
.ws2_c00464{word-spacing:-68.165333pt;}
.ws0_c00464{word-spacing:-21.208000pt;}
.ws3_c00464{word-spacing:-18.160000pt;}
.ws1_c00464{word-spacing:-15.424000pt;}
.ws4_c00464{word-spacing:0.000000pt;}
._4_c00464{margin-left:-42.994667pt;}
._5_c00464{margin-left:-39.306667pt;}
._28_c00464{margin-left:-29.648000pt;}
._29_c00464{margin-left:-27.832000pt;}
._23_c00464{margin-left:-26.928000pt;}
._22_c00464{margin-left:-25.330667pt;}
._1e_c00464{margin-left:-23.264000pt;}
._20_c00464{margin-left:-20.160000pt;}
._25_c00464{margin-left:-18.666667pt;}
._18_c00464{margin-left:-17.352000pt;}
._26_c00464{margin-left:-15.466667pt;}
._16_c00464{margin-left:-14.050667pt;}
._27_c00464{margin-left:-12.605333pt;}
._19_c00464{margin-left:-11.701333pt;}
._e_c00464{margin-left:-10.037333pt;}
._f_c00464{margin-left:-8.136000pt;}
._11_c00464{margin-left:-7.032000pt;}
._10_c00464{margin-left:-5.405333pt;}
._2_c00464{margin-left:-4.400000pt;}
._3_c00464{margin-left:-3.344000pt;}
._a_c00464{margin-left:-2.304000pt;}
._9_c00464{margin-left:-0.968000pt;}
._1_c00464{width:1.144000pt;}
._0_c00464{width:2.200000pt;}
._6_c00464{width:3.664000pt;}
._7_c00464{width:4.752000pt;}
._8_c00464{width:6.264000pt;}
._12_c00464{width:7.232000pt;}
._b_c00464{width:8.704000pt;}
._15_c00464{width:10.176000pt;}
._21_c00464{width:11.285333pt;}
._c_c00464{width:13.781333pt;}
._d_c00464{width:15.488000pt;}
._1c_c00464{width:30.384000pt;}
._1d_c00464{width:47.616000pt;}
._14_c00464{width:49.317333pt;}
._1a_c00464{width:101.400000pt;}
._13_c00464{width:149.413333pt;}
._1f_c00464{width:198.712000pt;}
._2a_c00464{width:229.658667pt;}
._17_c00464{width:242.552000pt;}
._24_c00464{width:268.232000pt;}
._1b_c00464{width:289.120000pt;}
.fs3_c00464{font-size:42.666667pt;}
.fs8_c00464{font-size:50.666667pt;}
.fs9_c00464{font-size:53.333333pt;}
.fs7_c00464{font-size:58.666667pt;}
.fs6_c00464{font-size:64.000000pt;}
.fs4_c00464{font-size:69.333333pt;}
.fs2_c00464{font-size:72.000000pt;}
.fs5_c00464{font-size:77.333333pt;}
.fsc_c00464{font-size:80.000000pt;}
.fs0_c00464{font-size:88.000000pt;}
.fsa_c00464{font-size:90.666667pt;}
.fsb_c00464{font-size:106.666667pt;}
.fs1_c00464{font-size:117.333333pt;}
.y0_c00464{bottom:0.000000pt;}
.y25_c00464{bottom:2.760000pt;}
.y24_c00464{bottom:6.425212pt;}
.y23_c00464{bottom:56.400000pt;}
.y22_c00464{bottom:78.666667pt;}
.y21_c00464{bottom:101.200000pt;}
.y20_c00464{bottom:122.800000pt;}
.y1f_c00464{bottom:144.933333pt;}
.y1e_c00464{bottom:165.866667pt;}
.y1d_c00464{bottom:187.866667pt;}
.y1c_c00464{bottom:209.466667pt;}
.y1b_c00464{bottom:231.066667pt;}
.y1a_c00464{bottom:251.733333pt;}
.y19_c00464{bottom:273.333333pt;}
.y18_c00464{bottom:289.866667pt;}
.y17_c00464{bottom:316.266667pt;}
.y16_c00464{bottom:337.466667pt;}
.y15_c00464{bottom:379.600000pt;}
.y14_c00464{bottom:400.266667pt;}
.y13_c00464{bottom:421.466667pt;}
.y12_c00464{bottom:442.800000pt;}
.y11_c00464{bottom:464.666667pt;}
.y10_c00464{bottom:485.733333pt;}
.yf_c00464{bottom:507.200000pt;}
.ye_c00464{bottom:528.400000pt;}
.yd_c00464{bottom:549.600000pt;}
.yc_c00464{bottom:571.200000pt;}
.yb_c00464{bottom:592.266667pt;}
.ya_c00464{bottom:614.000000pt;}
.y9_c00464{bottom:634.800000pt;}
.y8_c00464{bottom:656.133333pt;}
.y7_c00464{bottom:677.466667pt;}
.y6_c00464{bottom:699.600000pt;}
.y5_c00464{bottom:720.266667pt;}
.y4_c00464{bottom:741.600000pt;}
.y3_c00464{bottom:762.933333pt;}
.y2_c00464{bottom:784.800000pt;}
.y1_c00464{bottom:813.600000pt;}
.hd_c00464{height:11.733399pt;}
.he_c00464{height:38.937500pt;}
.h9_c00464{height:59.300781pt;}
.h8_c00464{height:64.149740pt;}
.h3_c00464{height:70.664062pt;}
.h6_c00464{height:81.031250pt;}
.h7_c00464{height:81.045333pt;}
.h4_c00464{height:87.783854pt;}
.hb_c00464{height:93.191046pt;}
.h5_c00464{height:97.912760pt;}
.hc_c00464{height:107.500000pt;}
.ha_c00464{height:111.324379pt;}
.h2_c00464{height:148.557292pt;}
.h1_c00464{height:873.333333pt;}
.h0_c00464{height:873.600000pt;}
.w2_c00464{width:93.222667pt;}
.w0_c00464{width:593.266667pt;}
.w1_c00464{width:593.333333pt;}
.x0_c00464{left:0.000000pt;}
.x2_c00464{left:48.000000pt;}
.x3_c00464{left:50.133333pt;}
.x4_c00464{left:51.600000pt;}
.x5_c00464{left:52.533333pt;}
.x6_c00464{left:53.733333pt;}
.x7_c00464{left:54.800000pt;}
.x8_c00464{left:56.133333pt;}
.x9_c00464{left:58.800000pt;}
.xa_c00464{left:60.933333pt;}
.xe_c00464{left:63.333333pt;}
.xc_c00464{left:65.066667pt;}
.xf_c00464{left:66.000000pt;}
.x10_c00464{left:66.933333pt;}
.xd_c00464{left:86.666667pt;}
.x1_c00464{left:93.600000pt;}
.xb_c00464{left:104.800000pt;}
.x12_c00464{left:253.801554pt;}
.x11_c00464{left:371.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ffefb695935554fb11d06171.woff2')format("woff");}.ff1_c00465{font-family:ff1_c00465;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00465;src:url('chunks/assets/font_bcc85ec29066496fc8ad3779.woff2')format("woff");}.ff2_c00465{font-family:ff2_c00465;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00465;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff3_c00465{font-family:ff3_c00465;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00465;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff4_c00465{font-family:ff4_c00465;line-height:1.219238;font-style: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;}
.ls0_c00465{letter-spacing:0.000000px;}
.sc__c00465{text-shadow:none;}
.sc0_c00465{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00465{-webkit-text-stroke:0px transparent;}
.sc0_c00465{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00465{word-spacing:-17.352000px;}
.ws1_c00465{word-spacing:0.000000px;}
._11_c00465{margin-left:-12.231000px;}
._b_c00465{margin-left:-8.991000px;}
._f_c00465{margin-left:-7.290000px;}
._6_c00465{margin-left:-5.589000px;}
._2_c00465{margin-left:-4.212000px;}
._1_c00465{margin-left:-2.997000px;}
._5_c00465{margin-left:-1.296000px;}
._0_c00465{width:1.701000px;}
._3_c00465{width:3.078000px;}
._4_c00465{width:4.617000px;}
._a_c00465{width:5.913000px;}
._9_c00465{width:7.290000px;}
._8_c00465{width:8.748000px;}
._7_c00465{width:10.125000px;}
._d_c00465{width:11.421000px;}
._16_c00465{width:12.474000px;}
._c_c00465{width:14.337000px;}
._e_c00465{width:16.281000px;}
._10_c00465{width:17.496000px;}
._14_c00465{width:19.557000px;}
._17_c00465{width:24.867000px;}
._13_c00465{width:32.088000px;}
._12_c00465{width:217.323000px;}
._15_c00465{width:246.564000px;}
._18_c00465{width:367.659000px;}
.fc2_c00465{color:transparent;}
.fc1_c00465{color:rgb(128,128,128);}
.fc0_c00465{color:rgb(0,0,0);}
.fs3_c00465{font-size:48.000000px;}
.fs2_c00465{font-size:57.000000px;}
.fs1_c00465{font-size:72.000000px;}
.fs0_c00465{font-size:81.000000px;}
.y0_c00465{bottom:0.000000px;}
.y25_c00465{bottom:3.105000px;}
.y24_c00465{bottom:7.228371px;}
.y23_c00465{bottom:61.515000px;}
.y22_c00465{bottom:84.765000px;}
.y21_c00465{bottom:110.115000px;}
.y20_c00465{bottom:134.415000px;}
.y1f_c00465{bottom:158.715000px;}
.y1e_c00465{bottom:182.265000px;}
.y1d_c00465{bottom:207.615000px;}
.y1c_c00465{bottom:231.915000px;}
.y1b_c00465{bottom:257.265000px;}
.y1a_c00465{bottom:280.215000px;}
.y19_c00465{bottom:304.515000px;}
.y18_c00465{bottom:328.815000px;}
.y17_c00465{bottom:353.115000px;}
.y16_c00465{bottom:376.965000px;}
.y15_c00465{bottom:400.965000px;}
.y14_c00465{bottom:425.265000px;}
.y13_c00465{bottom:449.565000px;}
.y12_c00465{bottom:472.515000px;}
.y11_c00465{bottom:497.115000px;}
.y10_c00465{bottom:520.065000px;}
.yf_c00465{bottom:543.465000px;}
.ye_c00465{bottom:567.915000px;}
.yd_c00465{bottom:591.765000px;}
.yc_c00465{bottom:615.615000px;}
.yb_c00465{bottom:639.915000px;}
.ya_c00465{bottom:663.915000px;}
.y9_c00465{bottom:687.915000px;}
.y8_c00465{bottom:711.765000px;}
.y7_c00465{bottom:735.765000px;}
.y6_c00465{bottom:759.165000px;}
.y5_c00465{bottom:783.765000px;}
.y4_c00465{bottom:807.615000px;}
.y3_c00465{bottom:831.615000px;}
.y2_c00465{bottom:855.315000px;}
.y1_c00465{bottom:879.165000px;}
.h6_c00465{height:13.200074px;}
.h7_c00465{height:43.804688px;}
.h5_c00465{height:66.713379px;}
.h2_c00465{height:79.497070px;}
.h3_c00465{height:84.269531px;}
.h4_c00465{height:91.160156px;}
.h1_c00465{height:986.250000px;}
.h0_c00465{height:986.325000px;}
.w2_c00465{width:104.875500px;}
.w0_c00465{width:667.425000px;}
.w1_c00465{width:667.500000px;}
.x0_c00465{left:0.000000px;}
.xa_c00465{left:36.450000px;}
.x6_c00465{left:43.200000px;}
.xb_c00465{left:58.050000px;}
.x9_c00465{left:126.450000px;}
.x8_c00465{left:127.500000px;}
.x5_c00465{left:130.500000px;}
.x4_c00465{left:132.000000px;}
.x1_c00465{left:134.100000px;}
.x2_c00465{left:135.450000px;}
.x3_c00465{left:136.950000px;}
.x7_c00465{left:177.450000px;}
.xd_c00465{left:285.526749px;}
.xc_c00465{left:464.400000px;}
@media print{
.v0_c00465{vertical-align:0.000000pt;}
.ls0_c00465{letter-spacing:0.000000pt;}
.ws0_c00465{word-spacing:-15.424000pt;}
.ws1_c00465{word-spacing:0.000000pt;}
._11_c00465{margin-left:-10.872000pt;}
._b_c00465{margin-left:-7.992000pt;}
._f_c00465{margin-left:-6.480000pt;}
._6_c00465{margin-left:-4.968000pt;}
._2_c00465{margin-left:-3.744000pt;}
._1_c00465{margin-left:-2.664000pt;}
._5_c00465{margin-left:-1.152000pt;}
._0_c00465{width:1.512000pt;}
._3_c00465{width:2.736000pt;}
._4_c00465{width:4.104000pt;}
._a_c00465{width:5.256000pt;}
._9_c00465{width:6.480000pt;}
._8_c00465{width:7.776000pt;}
._7_c00465{width:9.000000pt;}
._d_c00465{width:10.152000pt;}
._16_c00465{width:11.088000pt;}
._c_c00465{width:12.744000pt;}
._e_c00465{width:14.472000pt;}
._10_c00465{width:15.552000pt;}
._14_c00465{width:17.384000pt;}
._17_c00465{width:22.104000pt;}
._13_c00465{width:28.522667pt;}
._12_c00465{width:193.176000pt;}
._15_c00465{width:219.168000pt;}
._18_c00465{width:326.808000pt;}
.fs3_c00465{font-size:42.666667pt;}
.fs2_c00465{font-size:50.666667pt;}
.fs1_c00465{font-size:64.000000pt;}
.fs0_c00465{font-size:72.000000pt;}
.y0_c00465{bottom:0.000000pt;}
.y25_c00465{bottom:2.760000pt;}
.y24_c00465{bottom:6.425219pt;}
.y23_c00465{bottom:54.680000pt;}
.y22_c00465{bottom:75.346667pt;}
.y21_c00465{bottom:97.880000pt;}
.y20_c00465{bottom:119.480000pt;}
.y1f_c00465{bottom:141.080000pt;}
.y1e_c00465{bottom:162.013333pt;}
.y1d_c00465{bottom:184.546667pt;}
.y1c_c00465{bottom:206.146667pt;}
.y1b_c00465{bottom:228.680000pt;}
.y1a_c00465{bottom:249.080000pt;}
.y19_c00465{bottom:270.680000pt;}
.y18_c00465{bottom:292.280000pt;}
.y17_c00465{bottom:313.880000pt;}
.y16_c00465{bottom:335.080000pt;}
.y15_c00465{bottom:356.413333pt;}
.y14_c00465{bottom:378.013333pt;}
.y13_c00465{bottom:399.613333pt;}
.y12_c00465{bottom:420.013333pt;}
.y11_c00465{bottom:441.880000pt;}
.y10_c00465{bottom:462.280000pt;}
.yf_c00465{bottom:483.080000pt;}
.ye_c00465{bottom:504.813333pt;}
.yd_c00465{bottom:526.013333pt;}
.yc_c00465{bottom:547.213333pt;}
.yb_c00465{bottom:568.813333pt;}
.ya_c00465{bottom:590.146667pt;}
.y9_c00465{bottom:611.480000pt;}
.y8_c00465{bottom:632.680000pt;}
.y7_c00465{bottom:654.013333pt;}
.y6_c00465{bottom:674.813333pt;}
.y5_c00465{bottom:696.680000pt;}
.y4_c00465{bottom:717.880000pt;}
.y3_c00465{bottom:739.213333pt;}
.y2_c00465{bottom:760.280000pt;}
.y1_c00465{bottom:781.480000pt;}
.h6_c00465{height:11.733399pt;}
.h7_c00465{height:38.937500pt;}
.h5_c00465{height:59.300781pt;}
.h2_c00465{height:70.664062pt;}
.h3_c00465{height:74.906250pt;}
.h4_c00465{height:81.031250pt;}
.h1_c00465{height:876.666667pt;}
.h0_c00465{height:876.733333pt;}
.w2_c00465{width:93.222667pt;}
.w0_c00465{width:593.266667pt;}
.w1_c00465{width:593.333333pt;}
.x0_c00465{left:0.000000pt;}
.xa_c00465{left:32.400000pt;}
.x6_c00465{left:38.400000pt;}
.xb_c00465{left:51.600000pt;}
.x9_c00465{left:112.400000pt;}
.x8_c00465{left:113.333333pt;}
.x5_c00465{left:116.000000pt;}
.x4_c00465{left:117.333333pt;}
.x1_c00465{left:119.200000pt;}
.x2_c00465{left:120.400000pt;}
.x3_c00465{left:121.733333pt;}
.x7_c00465{left:157.733333pt;}
.xd_c00465{left:253.801554pt;}
.xc_c00465{left:412.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_93674205e5c18b53b76ccf22.woff2')format("woff");}.ff1_c00466{font-family:ff1_c00466;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00466;src:url('chunks/assets/font_00a449fa0c0b89157d666501.woff2')format("woff");}.ff2_c00466{font-family:ff2_c00466;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00466;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff3_c00466{font-family:ff3_c00466;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00466;src:url('chunks/assets/font_bbe3d438149e3eaaefd0d340.woff2')format("woff");}.ff4_c00466{font-family:ff4_c00466;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00466;src:url('chunks/assets/font_06628e820d3a4ab0c35006b1.woff2')format("woff");}.ff5_c00466{font-family:ff5_c00466;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00466;src:url('chunks/assets/font_cb200dae40e733048a155bb6.woff2')format("woff");}.ff6_c00466{font-family:ff6_c00466;line-height:1.435059;font-style:normal;font-weight: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_c00466;src:url('chunks/assets/font_471c9a4c09c20102808ffa36.woff2')format("woff");}.ff7_c00466{font-family:ff7_c00466;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00466;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff8_c00466{font-family:ff8_c00466;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00466{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m0_c00466{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00466{vertical-align:0.000000px;}
.v1_c00466{vertical-align:162.600000px;}
.ls2_c00466{letter-spacing:0.000000px;}
.ls3_c00466{letter-spacing:6.000000px;}
.ls0_c00466{letter-spacing:9.000000px;}
.ls1_c00466{letter-spacing:21.900000px;}
.sc__c00466{text-shadow:none;}
.sc0_c00466{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00466{-webkit-text-stroke:0px transparent;}
.sc0_c00466{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00466{word-spacing:-76.686000px;}
.ws0_c00466{word-spacing:-59.184000px;}
.ws2_c00466{word-spacing:0.000000px;}
._12_c00466{margin-left:-24.300000px;}
._10_c00466{margin-left:-17.658000px;}
._15_c00466{margin-left:-14.823000px;}
._e_c00466{margin-left:-9.720000px;}
._11_c00466{margin-left:-8.589000px;}
._c_c00466{margin-left:-7.533000px;}
._d_c00466{margin-left:-6.399000px;}
._9_c00466{margin-left:-4.536000px;}
._6_c00466{margin-left:-3.483000px;}
._0_c00466{margin-left:-1.539000px;}
._3_c00466{width:1.701000px;}
._2_c00466{width:3.078000px;}
._1_c00466{width:4.131000px;}
._4_c00466{width:5.589000px;}
._5_c00466{width:6.642000px;}
._7_c00466{width:8.667000px;}
._8_c00466{width:10.044000px;}
._a_c00466{width:11.340000px;}
._13_c00466{width:13.446000px;}
._16_c00466{width:14.985000px;}
._14_c00466{width:16.524000px;}
._19_c00466{width:18.387000px;}
._b_c00466{width:40.182000px;}
._17_c00466{width:42.231000px;}
._f_c00466{width:47.547000px;}
._1b_c00466{width:308.205000px;}
._18_c00466{width:312.498000px;}
._1a_c00466{width:323.190000px;}
.fc2_c00466{color:transparent;}
.fc1_c00466{color:rgb(128,128,128);}
.fc0_c00466{color:rgb(0,0,0);}
.fs6_c00466{font-size:48.000000px;}
.fs4_c00466{font-size:60.000000px;}
.fs1_c00466{font-size:72.000000px;}
.fs0_c00466{font-size:81.000000px;}
.fs2_c00466{font-size:87.000000px;}
.fs5_c00466{font-size:108.000000px;}
.fs3_c00466{font-size:261.000000px;}
.y0_c00466{bottom:0.000000px;}
.y25_c00466{bottom:3.105000px;}
.y24_c00466{bottom:7.228369px;}
.y23_c00466{bottom:65.370000px;}
.y22_c00466{bottom:90.420000px;}
.y21_c00466{bottom:116.070000px;}
.y20_c00466{bottom:140.670000px;}
.y1f_c00466{bottom:164.970000px;}
.y1e_c00466{bottom:190.020000px;}
.y1d_c00466{bottom:213.570000px;}
.y1c_c00466{bottom:238.170000px;}
.y1b_c00466{bottom:261.870000px;}
.y1a_c00466{bottom:286.170000px;}
.y19_c00466{bottom:310.470000px;}
.y18_c00466{bottom:334.170000px;}
.y17_c00466{bottom:358.020000px;}
.y16_c00466{bottom:381.870000px;}
.y15_c00466{bottom:405.870000px;}
.y14_c00466{bottom:429.870000px;}
.y13_c00466{bottom:453.870000px;}
.y12_c00466{bottom:477.120000px;}
.y11_c00466{bottom:501.420000px;}
.y10_c00466{bottom:525.420000px;}
.yf_c00466{bottom:548.820000px;}
.yd_c00466{bottom:554.970000px;}
.ye_c00466{bottom:572.370000px;}
.yc_c00466{bottom:620.220000px;}
.yb_c00466{bottom:643.920000px;}
.ya_c00466{bottom:667.620000px;}
.y9_c00466{bottom:691.770000px;}
.y8_c00466{bottom:715.770000px;}
.y7_c00466{bottom:739.020000px;}
.y6_c00466{bottom:763.320000px;}
.y5_c00466{bottom:787.620000px;}
.y4_c00466{bottom:811.620000px;}
.y3_c00466{bottom:835.320000px;}
.y2_c00466{bottom:860.220000px;}
.y1_c00466{bottom:883.920000px;}
.h7_c00466{height:13.200073px;}
.h8_c00466{height:43.804688px;}
.h2_c00466{height:79.497070px;}
.h3_c00466{height:91.160156px;}
.h4_c00466{height:91.176000px;}
.h6_c00466{height:108.843750px;}
.h5_c00466{height:271.705078px;}
.h0_c00466{height:970.350000px;}
.h1_c00466{height:970.500000px;}
.w2_c00466{width:104.875500px;}
.w1_c00466{width:659.250000px;}
.w0_c00466{width:659.325000px;}
.x0_c00466{left:0.000000px;}
.x5_c00466{left:40.500000px;}
.x9_c00466{left:43.500000px;}
.x7_c00466{left:44.850000px;}
.x6_c00466{left:46.200000px;}
.x4_c00466{left:47.700000px;}
.x1_c00466{left:49.500000px;}
.x2_c00466{left:51.300000px;}
.x8_c00466{left:70.200000px;}
.x3_c00466{left:89.400000px;}
.xc_c00466{left:281.476730px;}
.xa_c00466{left:327.750000px;}
.xb_c00466{left:353.100000px;}
@media print{
.v0_c00466{vertical-align:0.000000pt;}
.v1_c00466{vertical-align:144.533333pt;}
.ls2_c00466{letter-spacing:0.000000pt;}
.ls3_c00466{letter-spacing:5.333333pt;}
.ls0_c00466{letter-spacing:8.000000pt;}
.ls1_c00466{letter-spacing:19.466667pt;}
.ws1_c00466{word-spacing:-68.165333pt;}
.ws0_c00466{word-spacing:-52.608000pt;}
.ws2_c00466{word-spacing:0.000000pt;}
._12_c00466{margin-left:-21.600000pt;}
._10_c00466{margin-left:-15.696000pt;}
._15_c00466{margin-left:-13.176000pt;}
._e_c00466{margin-left:-8.640000pt;}
._11_c00466{margin-left:-7.634667pt;}
._c_c00466{margin-left:-6.696000pt;}
._d_c00466{margin-left:-5.688000pt;}
._9_c00466{margin-left:-4.032000pt;}
._6_c00466{margin-left:-3.096000pt;}
._0_c00466{margin-left:-1.368000pt;}
._3_c00466{width:1.512000pt;}
._2_c00466{width:2.736000pt;}
._1_c00466{width:3.672000pt;}
._4_c00466{width:4.968000pt;}
._5_c00466{width:5.904000pt;}
._7_c00466{width:7.704000pt;}
._8_c00466{width:8.928000pt;}
._a_c00466{width:10.080000pt;}
._13_c00466{width:11.952000pt;}
._16_c00466{width:13.320000pt;}
._14_c00466{width:14.688000pt;}
._19_c00466{width:16.344000pt;}
._b_c00466{width:35.717333pt;}
._17_c00466{width:37.538667pt;}
._f_c00466{width:42.264000pt;}
._1b_c00466{width:273.960000pt;}
._18_c00466{width:277.776000pt;}
._1a_c00466{width:287.280000pt;}
.fs6_c00466{font-size:42.666667pt;}
.fs4_c00466{font-size:53.333333pt;}
.fs1_c00466{font-size:64.000000pt;}
.fs0_c00466{font-size:72.000000pt;}
.fs2_c00466{font-size:77.333333pt;}
.fs5_c00466{font-size:96.000000pt;}
.fs3_c00466{font-size:232.000000pt;}
.y0_c00466{bottom:0.000000pt;}
.y25_c00466{bottom:2.760000pt;}
.y24_c00466{bottom:6.425217pt;}
.y23_c00466{bottom:58.106667pt;}
.y22_c00466{bottom:80.373333pt;}
.y21_c00466{bottom:103.173333pt;}
.y20_c00466{bottom:125.040000pt;}
.y1f_c00466{bottom:146.640000pt;}
.y1e_c00466{bottom:168.906667pt;}
.y1d_c00466{bottom:189.840000pt;}
.y1c_c00466{bottom:211.706667pt;}
.y1b_c00466{bottom:232.773333pt;}
.y1a_c00466{bottom:254.373333pt;}
.y19_c00466{bottom:275.973333pt;}
.y18_c00466{bottom:297.040000pt;}
.y17_c00466{bottom:318.240000pt;}
.y16_c00466{bottom:339.440000pt;}
.y15_c00466{bottom:360.773333pt;}
.y14_c00466{bottom:382.106667pt;}
.y13_c00466{bottom:403.440000pt;}
.y12_c00466{bottom:424.106667pt;}
.y11_c00466{bottom:445.706667pt;}
.y10_c00466{bottom:467.040000pt;}
.yf_c00466{bottom:487.840000pt;}
.yd_c00466{bottom:493.306667pt;}
.ye_c00466{bottom:508.773333pt;}
.yc_c00466{bottom:551.306667pt;}
.yb_c00466{bottom:572.373333pt;}
.ya_c00466{bottom:593.440000pt;}
.y9_c00466{bottom:614.906667pt;}
.y8_c00466{bottom:636.240000pt;}
.y7_c00466{bottom:656.906667pt;}
.y6_c00466{bottom:678.506667pt;}
.y5_c00466{bottom:700.106667pt;}
.y4_c00466{bottom:721.440000pt;}
.y3_c00466{bottom:742.506667pt;}
.y2_c00466{bottom:764.640000pt;}
.y1_c00466{bottom:785.706667pt;}
.h7_c00466{height:11.733399pt;}
.h8_c00466{height:38.937500pt;}
.h2_c00466{height:70.664062pt;}
.h3_c00466{height:81.031250pt;}
.h4_c00466{height:81.045333pt;}
.h6_c00466{height:96.750000pt;}
.h5_c00466{height:241.515625pt;}
.h0_c00466{height:862.533333pt;}
.h1_c00466{height:862.666667pt;}
.w2_c00466{width:93.222667pt;}
.w1_c00466{width:586.000000pt;}
.w0_c00466{width:586.066667pt;}
.x0_c00466{left:0.000000pt;}
.x5_c00466{left:36.000000pt;}
.x9_c00466{left:38.666667pt;}
.x7_c00466{left:39.866667pt;}
.x6_c00466{left:41.066667pt;}
.x4_c00466{left:42.400000pt;}
.x1_c00466{left:44.000000pt;}
.x2_c00466{left:45.600000pt;}
.x8_c00466{left:62.400000pt;}
.x3_c00466{left:79.466667pt;}
.xc_c00466{left:250.201538pt;}
.xa_c00466{left:291.333333pt;}
.xb_c00466{left:313.866667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_855c0ea4a682182f87d9c25b.woff2')format("woff");}.ff1_c00467{font-family:ff1_c00467;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00467;src:url('chunks/assets/font_75a904ef5a4c188c70d83f2e.woff2')format("woff");}.ff2_c00467{font-family:ff2_c00467;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00467;src:url('chunks/assets/font_375aafe83d0c18936d2b0618.woff2')format("woff");}.ff3_c00467{font-family:ff3_c00467;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00467;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff4_c00467{font-family:ff4_c00467;line-height:1.219238;font-style: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;}
.ls2_c00467{letter-spacing:0.000000px;}
.ls1_c00467{letter-spacing:1.002000px;}
.ls3_c00467{letter-spacing:3.000000px;}
.ls0_c00467{letter-spacing:40.104000px;}
.sc__c00467{text-shadow:none;}
.sc0_c00467{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00467{-webkit-text-stroke:0px transparent;}
.sc0_c00467{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00467{word-spacing:-20.250000px;}
.ws1_c00467{word-spacing:0.000000px;}
._19_c00467{margin-left:-24.219000px;}
._10_c00467{margin-left:-22.491000px;}
._16_c00467{margin-left:-16.161000px;}
._1d_c00467{margin-left:-12.429000px;}
._f_c00467{margin-left:-11.259000px;}
._18_c00467{margin-left:-9.963000px;}
._1a_c00467{margin-left:-8.910000px;}
._8_c00467{margin-left:-7.857000px;}
._1b_c00467{margin-left:-6.399000px;}
._6_c00467{margin-left:-4.941000px;}
._1_c00467{margin-left:-2.916000px;}
._3_c00467{margin-left:-1.053000px;}
._7_c00467{width:1.053000px;}
._0_c00467{width:2.106000px;}
._4_c00467{width:3.402000px;}
._2_c00467{width:5.427000px;}
._5_c00467{width:7.371000px;}
._b_c00467{width:8.586000px;}
._11_c00467{width:9.720000px;}
._c_c00467{width:10.773000px;}
._a_c00467{width:12.393000px;}
._9_c00467{width:14.256000px;}
._e_c00467{width:16.038000px;}
._d_c00467{width:17.091000px;}
._14_c00467{width:18.477000px;}
._12_c00467{width:19.515000px;}
._13_c00467{width:21.306000px;}
._20_c00467{width:23.766000px;}
._15_c00467{width:26.391000px;}
._17_c00467{width:27.459000px;}
._1f_c00467{width:93.423000px;}
._1e_c00467{width:245.577000px;}
._1c_c00467{width:551.610000px;}
.fc2_c00467{color:transparent;}
.fc1_c00467{color:rgb(128,128,128);}
.fc0_c00467{color:rgb(0,0,0);}
.fs5_c00467{font-size:48.000000px;}
.fs1_c00467{font-size:54.000000px;}
.fs2_c00467{font-size:57.000000px;}
.fs3_c00467{font-size:72.000000px;}
.fs4_c00467{font-size:78.000000px;}
.fs0_c00467{font-size:81.000000px;}
.y0_c00467{bottom:0.000000px;}
.y22_c00467{bottom:3.105000px;}
.y21_c00467{bottom:7.228371px;}
.y20_c00467{bottom:66.465000px;}
.y1f_c00467{bottom:90.765000px;}
.y1e_c00467{bottom:115.065000px;}
.y1d_c00467{bottom:140.115000px;}
.y1c_c00467{bottom:164.715000px;}
.y1b_c00467{bottom:189.465000px;}
.y1a_c00467{bottom:212.415000px;}
.y19_c00467{bottom:236.565000px;}
.y18_c00467{bottom:260.565000px;}
.y17_c00467{bottom:285.165000px;}
.y16_c00467{bottom:309.615000px;}
.y15_c00467{bottom:365.265000px;}
.y14_c00467{bottom:394.665000px;}
.y13_c00467{bottom:424.215000px;}
.y12_c00467{bottom:477.915000px;}
.y11_c00467{bottom:502.515000px;}
.y10_c00467{bottom:526.515000px;}
.yf_c00467{bottom:549.915000px;}
.ye_c00467{bottom:573.165000px;}
.yd_c00467{bottom:597.465000px;}
.yc_c00467{bottom:621.315000px;}
.yb_c00467{bottom:645.315000px;}
.ya_c00467{bottom:669.315000px;}
.y9_c00467{bottom:693.015000px;}
.y8_c00467{bottom:716.865000px;}
.y7_c00467{bottom:740.865000px;}
.y6_c00467{bottom:764.565000px;}
.y5_c00467{bottom:787.365000px;}
.y4_c00467{bottom:812.115000px;}
.y3_c00467{bottom:836.715000px;}
.y2_c00467{bottom:860.415000px;}
.y1_c00467{bottom:884.265000px;}
.h7_c00467{height:13.200074px;}
.h8_c00467{height:43.804688px;}
.h4_c00467{height:66.713379px;}
.h3_c00467{height:72.168457px;}
.h2_c00467{height:79.497070px;}
.h5_c00467{height:84.269531px;}
.h6_c00467{height:98.756836px;}
.h1_c00467{height:986.250000px;}
.h0_c00467{height:986.325000px;}
.w2_c00467{width:104.875500px;}
.w0_c00467{width:667.425000px;}
.w1_c00467{width:667.500000px;}
.x0_c00467{left:0.000000px;}
.x12_c00467{left:45.600000px;}
.x13_c00467{left:67.800000px;}
.x1_c00467{left:122.400000px;}
.x2_c00467{left:123.450000px;}
.x3_c00467{left:124.800000px;}
.x4_c00467{left:125.850000px;}
.x6_c00467{left:127.950000px;}
.x7_c00467{left:129.150000px;}
.x8_c00467{left:130.200000px;}
.x9_c00467{left:132.600000px;}
.xa_c00467{left:135.300000px;}
.xb_c00467{left:136.950000px;}
.x15_c00467{left:139.050000px;}
.x5_c00467{left:151.500000px;}
.xc_c00467{left:161.400000px;}
.x14_c00467{left:211.350000px;}
.xe_c00467{left:239.700000px;}
.xf_c00467{left:263.550000px;}
.x11_c00467{left:270.450000px;}
.x10_c00467{left:272.100000px;}
.xd_c00467{left:283.950000px;}
.x17_c00467{left:285.526749px;}
.x16_c00467{left:589.350000px;}
@media print{
.v0_c00467{vertical-align:0.000000pt;}
.ls2_c00467{letter-spacing:0.000000pt;}
.ls1_c00467{letter-spacing:0.890667pt;}
.ls3_c00467{letter-spacing:2.666667pt;}
.ls0_c00467{letter-spacing:35.648000pt;}
.ws0_c00467{word-spacing:-18.000000pt;}
.ws1_c00467{word-spacing:0.000000pt;}
._19_c00467{margin-left:-21.528000pt;}
._10_c00467{margin-left:-19.992000pt;}
._16_c00467{margin-left:-14.365333pt;}
._1d_c00467{margin-left:-11.048000pt;}
._f_c00467{margin-left:-10.008000pt;}
._18_c00467{margin-left:-8.856000pt;}
._1a_c00467{margin-left:-7.920000pt;}
._8_c00467{margin-left:-6.984000pt;}
._1b_c00467{margin-left:-5.688000pt;}
._6_c00467{margin-left:-4.392000pt;}
._1_c00467{margin-left:-2.592000pt;}
._3_c00467{margin-left:-0.936000pt;}
._7_c00467{width:0.936000pt;}
._0_c00467{width:1.872000pt;}
._4_c00467{width:3.024000pt;}
._2_c00467{width:4.824000pt;}
._5_c00467{width:6.552000pt;}
._b_c00467{width:7.632000pt;}
._11_c00467{width:8.640000pt;}
._c_c00467{width:9.576000pt;}
._a_c00467{width:11.016000pt;}
._9_c00467{width:12.672000pt;}
._e_c00467{width:14.256000pt;}
._d_c00467{width:15.192000pt;}
._14_c00467{width:16.424000pt;}
._12_c00467{width:17.346667pt;}
._13_c00467{width:18.938667pt;}
._20_c00467{width:21.125333pt;}
._15_c00467{width:23.458667pt;}
._17_c00467{width:24.408000pt;}
._1f_c00467{width:83.042667pt;}
._1e_c00467{width:218.290667pt;}
._1c_c00467{width:490.320000pt;}
.fs5_c00467{font-size:42.666667pt;}
.fs1_c00467{font-size:48.000000pt;}
.fs2_c00467{font-size:50.666667pt;}
.fs3_c00467{font-size:64.000000pt;}
.fs4_c00467{font-size:69.333333pt;}
.fs0_c00467{font-size:72.000000pt;}
.y0_c00467{bottom:0.000000pt;}
.y22_c00467{bottom:2.760000pt;}
.y21_c00467{bottom:6.425219pt;}
.y20_c00467{bottom:59.080000pt;}
.y1f_c00467{bottom:80.680000pt;}
.y1e_c00467{bottom:102.280000pt;}
.y1d_c00467{bottom:124.546667pt;}
.y1c_c00467{bottom:146.413333pt;}
.y1b_c00467{bottom:168.413333pt;}
.y1a_c00467{bottom:188.813333pt;}
.y19_c00467{bottom:210.280000pt;}
.y18_c00467{bottom:231.613333pt;}
.y17_c00467{bottom:253.480000pt;}
.y16_c00467{bottom:275.213333pt;}
.y15_c00467{bottom:324.680000pt;}
.y14_c00467{bottom:350.813333pt;}
.y13_c00467{bottom:377.080000pt;}
.y12_c00467{bottom:424.813333pt;}
.y11_c00467{bottom:446.680000pt;}
.y10_c00467{bottom:468.013333pt;}
.yf_c00467{bottom:488.813333pt;}
.ye_c00467{bottom:509.480000pt;}
.yd_c00467{bottom:531.080000pt;}
.yc_c00467{bottom:552.280000pt;}
.yb_c00467{bottom:573.613333pt;}
.ya_c00467{bottom:594.946667pt;}
.y9_c00467{bottom:616.013333pt;}
.y8_c00467{bottom:637.213333pt;}
.y7_c00467{bottom:658.546667pt;}
.y6_c00467{bottom:679.613333pt;}
.y5_c00467{bottom:699.880000pt;}
.y4_c00467{bottom:721.880000pt;}
.y3_c00467{bottom:743.746667pt;}
.y2_c00467{bottom:764.813333pt;}
.y1_c00467{bottom:786.013333pt;}
.h7_c00467{height:11.733399pt;}
.h8_c00467{height:38.937500pt;}
.h4_c00467{height:59.300781pt;}
.h3_c00467{height:64.149740pt;}
.h2_c00467{height:70.664062pt;}
.h5_c00467{height:74.906250pt;}
.h6_c00467{height:87.783854pt;}
.h1_c00467{height:876.666667pt;}
.h0_c00467{height:876.733333pt;}
.w2_c00467{width:93.222667pt;}
.w0_c00467{width:593.266667pt;}
.w1_c00467{width:593.333333pt;}
.x0_c00467{left:0.000000pt;}
.x12_c00467{left:40.533333pt;}
.x13_c00467{left:60.266667pt;}
.x1_c00467{left:108.800000pt;}
.x2_c00467{left:109.733333pt;}
.x3_c00467{left:110.933333pt;}
.x4_c00467{left:111.866667pt;}
.x6_c00467{left:113.733333pt;}
.x7_c00467{left:114.800000pt;}
.x8_c00467{left:115.733333pt;}
.x9_c00467{left:117.866667pt;}
.xa_c00467{left:120.266667pt;}
.xb_c00467{left:121.733333pt;}
.x15_c00467{left:123.600000pt;}
.x5_c00467{left:134.666667pt;}
.xc_c00467{left:143.466667pt;}
.x14_c00467{left:187.866667pt;}
.xe_c00467{left:213.066667pt;}
.xf_c00467{left:234.266667pt;}
.x11_c00467{left:240.400000pt;}
.x10_c00467{left:241.866667pt;}
.xd_c00467{left:252.400000pt;}
.x17_c00467{left:253.801554pt;}
.x16_c00467{left:523.866667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_745f0f4fb0d2be074ac956ce.woff2')format("woff");}.ff1_c00468{font-family:ff1_c00468;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00468;src:url('chunks/assets/font_a2551c08bc0409666ce1a278.woff2')format("woff");}.ff2_c00468{font-family:ff2_c00468;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00468;src:url('chunks/assets/font_b7fe2b2b3dc8fcd6a0deb770.woff2')format("woff");}.ff3_c00468{font-family:ff3_c00468;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00468;src:url('chunks/assets/font_a4104e346761ff076fd41d7f.woff2')format("woff");}.ff4_c00468{font-family:ff4_c00468;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00468;src:url('chunks/assets/font_7021ca6f733fa0df5f244183.woff2')format("woff");}.ff5_c00468{font-family:ff5_c00468;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00468;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c00468{font-family:ff6_c00468;line-height:1.219238;font-style: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;}
.ls0_c00468{letter-spacing:0.000000px;}
.ls1_c00468{letter-spacing:9.000000px;}
.sc__c00468{text-shadow:none;}
.sc0_c00468{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00468{-webkit-text-stroke:0px transparent;}
.sc0_c00468{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00468{word-spacing:-76.686000px;}
.ws0_c00468{word-spacing:-20.250000px;}
.ws2_c00468{word-spacing:-17.352000px;}
.ws3_c00468{word-spacing:0.000000px;}
._1f_c00468{margin-left:-46.818000px;}
._d_c00468{margin-left:-30.858000px;}
._21_c00468{margin-left:-29.646000px;}
._0_c00468{margin-left:-18.792000px;}
._25_c00468{margin-left:-15.471000px;}
._18_c00468{margin-left:-13.446000px;}
._b_c00468{margin-left:-10.881000px;}
._12_c00468{margin-left:-8.529000px;}
._19_c00468{margin-left:-6.489000px;}
._c_c00468{margin-left:-5.241000px;}
._14_c00468{margin-left:-4.020000px;}
._3_c00468{margin-left:-2.856000px;}
._a_c00468{margin-left:-1.725000px;}
._2_c00468{width:1.224000px;}
._6_c00468{width:3.060000px;}
._4_c00468{width:4.182000px;}
._5_c00468{width:5.406000px;}
._f_c00468{width:7.305000px;}
._15_c00468{width:8.316000px;}
._8_c00468{width:9.546000px;}
._11_c00468{width:11.313000px;}
._1a_c00468{width:13.128000px;}
._9_c00468{width:14.238000px;}
._2c_c00468{width:15.876000px;}
._e_c00468{width:17.658000px;}
._1c_c00468{width:33.879000px;}
._10_c00468{width:37.161000px;}
._13_c00468{width:39.489000px;}
._1d_c00468{width:41.436000px;}
._1e_c00468{width:43.356000px;}
._23_c00468{width:48.900000px;}
._27_c00468{width:57.618000px;}
._2a_c00468{width:71.235000px;}
._29_c00468{width:74.763000px;}
._1_c00468{width:86.271000px;}
._26_c00468{width:91.044000px;}
._22_c00468{width:102.708000px;}
._2b_c00468{width:103.953000px;}
._17_c00468{width:159.315000px;}
._20_c00468{width:170.829000px;}
._24_c00468{width:199.119000px;}
._7_c00468{width:274.224000px;}
._1b_c00468{width:295.404000px;}
._16_c00468{width:334.863000px;}
._28_c00468{width:347.247000px;}
._2d_c00468{width:413.031000px;}
.fc2_c00468{color:transparent;}
.fc1_c00468{color:rgb(128,128,128);}
.fc0_c00468{color:rgb(0,0,0);}
.fs4_c00468{font-size:48.000000px;}
.fs3_c00468{font-size:72.000000px;}
.fs2_c00468{font-size:81.000000px;}
.fs0_c00468{font-size:87.000000px;}
.fs1_c00468{font-size:102.000000px;}
.y0_c00468{bottom:0.000000px;}
.y27_c00468{bottom:3.105000px;}
.y26_c00468{bottom:7.228371px;}
.y25_c00468{bottom:73.215000px;}
.y24_c00468{bottom:97.215000px;}
.y23_c00468{bottom:122.565000px;}
.y22_c00468{bottom:146.565000px;}
.y21_c00468{bottom:170.565000px;}
.y20_c00468{bottom:195.165000px;}
.y1f_c00468{bottom:219.465000px;}
.y1e_c00468{bottom:243.465000px;}
.y1d_c00468{bottom:267.615000px;}
.y1c_c00468{bottom:291.615000px;}
.y1b_c00468{bottom:315.915000px;}
.y1a_c00468{bottom:339.915000px;}
.y19_c00468{bottom:363.615000px;}
.y18_c00468{bottom:387.465000px;}
.y17_c00468{bottom:410.115000px;}
.y16_c00468{bottom:435.165000px;}
.y15_c00468{bottom:459.315000px;}
.y14_c00468{bottom:482.715000px;}
.y13_c00468{bottom:506.715000px;}
.y12_c00468{bottom:519.465000px;}
.y11_c00468{bottom:531.015000px;}
.y10_c00468{bottom:556.665000px;}
.yf_c00468{bottom:579.165000px;}
.ye_c00468{bottom:602.565000px;}
.yd_c00468{bottom:626.865000px;}
.yc_c00468{bottom:650.415000px;}
.yb_c00468{bottom:674.115000px;}
.ya_c00468{bottom:697.965000px;}
.y9_c00468{bottom:721.965000px;}
.y8_c00468{bottom:746.565000px;}
.y7_c00468{bottom:769.965000px;}
.y6_c00468{bottom:793.815000px;}
.y5_c00468{bottom:818.115000px;}
.y4_c00468{bottom:842.715000px;}
.y3_c00468{bottom:866.115000px;}
.y2_c00468{bottom:891.315000px;}
.y1_c00468{bottom:924.765000px;}
.h6_c00468{height:13.200074px;}
.h7_c00468{height:43.804688px;}
.h3_c00468{height:79.497070px;}
.h5_c00468{height:84.269531px;}
.h4_c00468{height:91.176000px;}
.h2_c00468{height:100.057617px;}
.h0_c00468{height:989.025000px;}
.h1_c00468{height:989.250000px;}
.w1_c00468{width:104.875500px;}
.w0_c00468{width:672.000000px;}
.x0_c00468{left:0.000000px;}
.x2_c00468{left:51.900000px;}
.x3_c00468{left:52.950000px;}
.x5_c00468{left:54.300000px;}
.x4_c00468{left:58.050000px;}
.x6_c00468{left:78.750000px;}
.x1_c00468{left:148.950000px;}
.x8_c00468{left:287.814240px;}
.x7_c00468{left:388.200000px;}
@media print{
.v0_c00468{vertical-align:0.000000pt;}
.ls0_c00468{letter-spacing:0.000000pt;}
.ls1_c00468{letter-spacing:8.000000pt;}
.ws1_c00468{word-spacing:-68.165333pt;}
.ws0_c00468{word-spacing:-18.000000pt;}
.ws2_c00468{word-spacing:-15.424000pt;}
.ws3_c00468{word-spacing:0.000000pt;}
._1f_c00468{margin-left:-41.616000pt;}
._d_c00468{margin-left:-27.429333pt;}
._21_c00468{margin-left:-26.352000pt;}
._0_c00468{margin-left:-16.704000pt;}
._25_c00468{margin-left:-13.752000pt;}
._18_c00468{margin-left:-11.952000pt;}
._b_c00468{margin-left:-9.672000pt;}
._12_c00468{margin-left:-7.581333pt;}
._19_c00468{margin-left:-5.768000pt;}
._c_c00468{margin-left:-4.658667pt;}
._14_c00468{margin-left:-3.573333pt;}
._3_c00468{margin-left:-2.538667pt;}
._a_c00468{margin-left:-1.533333pt;}
._2_c00468{width:1.088000pt;}
._6_c00468{width:2.720000pt;}
._4_c00468{width:3.717333pt;}
._5_c00468{width:4.805333pt;}
._f_c00468{width:6.493333pt;}
._15_c00468{width:7.392000pt;}
._8_c00468{width:8.485333pt;}
._11_c00468{width:10.056000pt;}
._1a_c00468{width:11.669333pt;}
._9_c00468{width:12.656000pt;}
._2c_c00468{width:14.112000pt;}
._e_c00468{width:15.696000pt;}
._1c_c00468{width:30.114667pt;}
._10_c00468{width:33.032000pt;}
._13_c00468{width:35.101333pt;}
._1d_c00468{width:36.832000pt;}
._1e_c00468{width:38.538667pt;}
._23_c00468{width:43.466667pt;}
._27_c00468{width:51.216000pt;}
._2a_c00468{width:63.320000pt;}
._29_c00468{width:66.456000pt;}
._1_c00468{width:76.685333pt;}
._26_c00468{width:80.928000pt;}
._22_c00468{width:91.296000pt;}
._2b_c00468{width:92.402667pt;}
._17_c00468{width:141.613333pt;}
._20_c00468{width:151.848000pt;}
._24_c00468{width:176.994667pt;}
._7_c00468{width:243.754667pt;}
._1b_c00468{width:262.581333pt;}
._16_c00468{width:297.656000pt;}
._28_c00468{width:308.664000pt;}
._2d_c00468{width:367.138667pt;}
.fs4_c00468{font-size:42.666667pt;}
.fs3_c00468{font-size:64.000000pt;}
.fs2_c00468{font-size:72.000000pt;}
.fs0_c00468{font-size:77.333333pt;}
.fs1_c00468{font-size:90.666667pt;}
.y0_c00468{bottom:0.000000pt;}
.y27_c00468{bottom:2.760000pt;}
.y26_c00468{bottom:6.425219pt;}
.y25_c00468{bottom:65.080000pt;}
.y24_c00468{bottom:86.413333pt;}
.y23_c00468{bottom:108.946667pt;}
.y22_c00468{bottom:130.280000pt;}
.y21_c00468{bottom:151.613333pt;}
.y20_c00468{bottom:173.480000pt;}
.y1f_c00468{bottom:195.080000pt;}
.y1e_c00468{bottom:216.413333pt;}
.y1d_c00468{bottom:237.880000pt;}
.y1c_c00468{bottom:259.213333pt;}
.y1b_c00468{bottom:280.813333pt;}
.y1a_c00468{bottom:302.146667pt;}
.y19_c00468{bottom:323.213333pt;}
.y18_c00468{bottom:344.413333pt;}
.y17_c00468{bottom:364.546667pt;}
.y16_c00468{bottom:386.813333pt;}
.y15_c00468{bottom:408.280000pt;}
.y14_c00468{bottom:429.080000pt;}
.y13_c00468{bottom:450.413333pt;}
.y12_c00468{bottom:461.746667pt;}
.y11_c00468{bottom:472.013333pt;}
.y10_c00468{bottom:494.813333pt;}
.yf_c00468{bottom:514.813333pt;}
.ye_c00468{bottom:535.613333pt;}
.yd_c00468{bottom:557.213333pt;}
.yc_c00468{bottom:578.146667pt;}
.yb_c00468{bottom:599.213333pt;}
.ya_c00468{bottom:620.413333pt;}
.y9_c00468{bottom:641.746667pt;}
.y8_c00468{bottom:663.613333pt;}
.y7_c00468{bottom:684.413333pt;}
.y6_c00468{bottom:705.613333pt;}
.y5_c00468{bottom:727.213333pt;}
.y4_c00468{bottom:749.080000pt;}
.y3_c00468{bottom:769.880000pt;}
.y2_c00468{bottom:792.280000pt;}
.y1_c00468{bottom:822.013333pt;}
.h6_c00468{height:11.733399pt;}
.h7_c00468{height:38.937500pt;}
.h3_c00468{height:70.664062pt;}
.h5_c00468{height:74.906250pt;}
.h4_c00468{height:81.045333pt;}
.h2_c00468{height:88.940104pt;}
.h0_c00468{height:879.133333pt;}
.h1_c00468{height:879.333333pt;}
.w1_c00468{width:93.222667pt;}
.w0_c00468{width:597.333333pt;}
.x0_c00468{left:0.000000pt;}
.x2_c00468{left:46.133333pt;}
.x3_c00468{left:47.066667pt;}
.x5_c00468{left:48.266667pt;}
.x4_c00468{left:51.600000pt;}
.x6_c00468{left:70.000000pt;}
.x1_c00468{left:132.400000pt;}
.x8_c00468{left:255.834880pt;}
.x7_c00468{left:345.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_538109d7a5220712fbaf7a50.woff2')format("woff");}.ff1_c00469{font-family:ff1_c00469;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00469;src:url('chunks/assets/font_cef298666aaab8ceba91c102.woff2')format("woff");}.ff2_c00469{font-family:ff2_c00469;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00469;src:url('chunks/assets/font_7b3845c727e64e9e6e9f0c2a.woff2')format("woff");}.ff3_c00469{font-family:ff3_c00469;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00469;src:url('chunks/assets/font_040da8b5d026d81dc9ce07a4.woff2')format("woff");}.ff4_c00469{font-family:ff4_c00469;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00469;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c00469{font-family:ff5_c00469;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00469{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m0_c00469{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00469{vertical-align:0.000000px;}
.v1_c00469{vertical-align:127.800000px;}
.ls1_c00469{letter-spacing:0.000000px;}
.ls0_c00469{letter-spacing:11.010000px;}
.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:-20.250000px;}
.ws0_c00469{word-spacing:-17.352000px;}
.ws2_c00469{word-spacing:0.000000px;}
._17_c00469{margin-left:-27.135000px;}
._15_c00469{margin-left:-17.577000px;}
._1d_c00469{margin-left:-14.040000px;}
._14_c00469{margin-left:-12.483000px;}
._12_c00469{margin-left:-10.044000px;}
._1b_c00469{margin-left:-8.289000px;}
._10_c00469{margin-left:-6.885000px;}
._9_c00469{margin-left:-5.022000px;}
._7_c00469{margin-left:-3.969000px;}
._a_c00469{margin-left:-2.673000px;}
._5_c00469{margin-left:-1.458000px;}
._8_c00469{width:1.053000px;}
._13_c00469{width:2.067000px;}
._2_c00469{width:3.078000px;}
._3_c00469{width:4.374000px;}
._0_c00469{width:5.751000px;}
._20_c00469{width:6.753000px;}
._1_c00469{width:7.776000px;}
._d_c00469{width:9.315000px;}
._6_c00469{width:11.178000px;}
._1f_c00469{width:12.231000px;}
._4_c00469{width:13.527000px;}
._c_c00469{width:15.147000px;}
._b_c00469{width:16.443000px;}
._e_c00469{width:17.496000px;}
._18_c00469{width:21.822000px;}
._19_c00469{width:24.132000px;}
._1a_c00469{width:25.452000px;}
._16_c00469{width:28.011000px;}
._1e_c00469{width:32.025000px;}
._1c_c00469{width:38.397000px;}
._f_c00469{width:43.392000px;}
._21_c00469{width:113.427000px;}
._11_c00469{width:127.494000px;}
._22_c00469{width:420.279000px;}
.fc2_c00469{color:transparent;}
.fc1_c00469{color:rgb(128,128,128);}
.fc0_c00469{color:rgb(0,0,0);}
.fs4_c00469{font-size:48.000000px;}
.fs1_c00469{font-size:72.000000px;}
.fs0_c00469{font-size:81.000000px;}
.fs2_c00469{font-size:108.000000px;}
.fs3_c00469{font-size:255.000000px;}
.y0_c00469{bottom:0.000000px;}
.y25_c00469{bottom:3.105000px;}
.y24_c00469{bottom:7.228371px;}
.y23_c00469{bottom:65.565000px;}
.y22_c00469{bottom:87.765000px;}
.y21_c00469{bottom:112.815000px;}
.y20_c00469{bottom:139.365000px;}
.y1f_c00469{bottom:162.765000px;}
.y1e_c00469{bottom:186.015000px;}
.y1d_c00469{bottom:210.315000px;}
.y1c_c00469{bottom:234.315000px;}
.y1b_c00469{bottom:259.665000px;}
.y1a_c00469{bottom:283.515000px;}
.y18_c00469{bottom:300.465000px;}
.y19_c00469{bottom:308.265000px;}
.y17_c00469{bottom:356.715000px;}
.y16_c00469{bottom:378.765000px;}
.y15_c00469{bottom:403.365000px;}
.y14_c00469{bottom:427.965000px;}
.y13_c00469{bottom:453.615000px;}
.y12_c00469{bottom:476.265000px;}
.y11_c00469{bottom:501.915000px;}
.y10_c00469{bottom:523.515000px;}
.yf_c00469{bottom:547.215000px;}
.ye_c00469{bottom:572.115000px;}
.yd_c00469{bottom:595.665000px;}
.yc_c00469{bottom:619.665000px;}
.yb_c00469{bottom:643.965000px;}
.ya_c00469{bottom:667.965000px;}
.y9_c00469{bottom:690.315000px;}
.y8_c00469{bottom:715.965000px;}
.y7_c00469{bottom:740.115000px;}
.y6_c00469{bottom:763.515000px;}
.y5_c00469{bottom:787.515000px;}
.y4_c00469{bottom:811.365000px;}
.y3_c00469{bottom:835.665000px;}
.y2_c00469{bottom:859.965000px;}
.y1_c00469{bottom:883.665000px;}
.h6_c00469{height:13.200074px;}
.h7_c00469{height:43.804688px;}
.h2_c00469{height:79.497070px;}
.h3_c00469{height:84.269531px;}
.h4_c00469{height:108.843750px;}
.h5_c00469{height:267.240000px;}
.h1_c00469{height:986.250000px;}
.h0_c00469{height:986.325000px;}
.w2_c00469{width:104.875500px;}
.w0_c00469{width:667.425000px;}
.w1_c00469{width:667.500000px;}
.x0_c00469{left:0.000000px;}
.xf_c00469{left:36.150000px;}
.x3_c00469{left:40.500000px;}
.xc_c00469{left:128.250000px;}
.xe_c00469{left:133.350000px;}
.x1_c00469{left:134.700000px;}
.x2_c00469{left:135.900000px;}
.x4_c00469{left:137.100000px;}
.x8_c00469{left:138.600000px;}
.x5_c00469{left:162.000000px;}
.xb_c00469{left:172.800000px;}
.xd_c00469{left:187.200000px;}
.x11_c00469{left:285.526749px;}
.x6_c00469{left:374.250000px;}
.x7_c00469{left:389.250000px;}
.x9_c00469{left:394.800000px;}
.xa_c00469{left:412.050000px;}
.x10_c00469{left:557.250000px;}
@media print{
.v0_c00469{vertical-align:0.000000pt;}
.v1_c00469{vertical-align:113.600000pt;}
.ls1_c00469{letter-spacing:0.000000pt;}
.ls0_c00469{letter-spacing:9.786667pt;}
.ws1_c00469{word-spacing:-18.000000pt;}
.ws0_c00469{word-spacing:-15.424000pt;}
.ws2_c00469{word-spacing:0.000000pt;}
._17_c00469{margin-left:-24.120000pt;}
._15_c00469{margin-left:-15.624000pt;}
._1d_c00469{margin-left:-12.480000pt;}
._14_c00469{margin-left:-11.096000pt;}
._12_c00469{margin-left:-8.928000pt;}
._1b_c00469{margin-left:-7.368000pt;}
._10_c00469{margin-left:-6.120000pt;}
._9_c00469{margin-left:-4.464000pt;}
._7_c00469{margin-left:-3.528000pt;}
._a_c00469{margin-left:-2.376000pt;}
._5_c00469{margin-left:-1.296000pt;}
._8_c00469{width:0.936000pt;}
._13_c00469{width:1.837333pt;}
._2_c00469{width:2.736000pt;}
._3_c00469{width:3.888000pt;}
._0_c00469{width:5.112000pt;}
._20_c00469{width:6.002667pt;}
._1_c00469{width:6.912000pt;}
._d_c00469{width:8.280000pt;}
._6_c00469{width:9.936000pt;}
._1f_c00469{width:10.872000pt;}
._4_c00469{width:12.024000pt;}
._c_c00469{width:13.464000pt;}
._b_c00469{width:14.616000pt;}
._e_c00469{width:15.552000pt;}
._18_c00469{width:19.397333pt;}
._19_c00469{width:21.450667pt;}
._1a_c00469{width:22.624000pt;}
._16_c00469{width:24.898667pt;}
._1e_c00469{width:28.466667pt;}
._1c_c00469{width:34.130667pt;}
._f_c00469{width:38.570667pt;}
._21_c00469{width:100.824000pt;}
._11_c00469{width:113.328000pt;}
._22_c00469{width:373.581333pt;}
.fs4_c00469{font-size:42.666667pt;}
.fs1_c00469{font-size:64.000000pt;}
.fs0_c00469{font-size:72.000000pt;}
.fs2_c00469{font-size:96.000000pt;}
.fs3_c00469{font-size:226.666667pt;}
.y0_c00469{bottom:0.000000pt;}
.y25_c00469{bottom:2.760000pt;}
.y24_c00469{bottom:6.425219pt;}
.y23_c00469{bottom:58.280000pt;}
.y22_c00469{bottom:78.013333pt;}
.y21_c00469{bottom:100.280000pt;}
.y20_c00469{bottom:123.880000pt;}
.y1f_c00469{bottom:144.680000pt;}
.y1e_c00469{bottom:165.346667pt;}
.y1d_c00469{bottom:186.946667pt;}
.y1c_c00469{bottom:208.280000pt;}
.y1b_c00469{bottom:230.813333pt;}
.y1a_c00469{bottom:252.013333pt;}
.y18_c00469{bottom:267.080000pt;}
.y19_c00469{bottom:274.013333pt;}
.y17_c00469{bottom:317.080000pt;}
.y16_c00469{bottom:336.680000pt;}
.y15_c00469{bottom:358.546667pt;}
.y14_c00469{bottom:380.413333pt;}
.y13_c00469{bottom:403.213333pt;}
.y12_c00469{bottom:423.346667pt;}
.y11_c00469{bottom:446.146667pt;}
.y10_c00469{bottom:465.346667pt;}
.yf_c00469{bottom:486.413333pt;}
.ye_c00469{bottom:508.546667pt;}
.yd_c00469{bottom:529.480000pt;}
.yc_c00469{bottom:550.813333pt;}
.yb_c00469{bottom:572.413333pt;}
.ya_c00469{bottom:593.746667pt;}
.y9_c00469{bottom:613.613333pt;}
.y8_c00469{bottom:636.413333pt;}
.y7_c00469{bottom:657.880000pt;}
.y6_c00469{bottom:678.680000pt;}
.y5_c00469{bottom:700.013333pt;}
.y4_c00469{bottom:721.213333pt;}
.y3_c00469{bottom:742.813333pt;}
.y2_c00469{bottom:764.413333pt;}
.y1_c00469{bottom:785.480000pt;}
.h6_c00469{height:11.733399pt;}
.h7_c00469{height:38.937500pt;}
.h2_c00469{height:70.664062pt;}
.h3_c00469{height:74.906250pt;}
.h4_c00469{height:96.750000pt;}
.h5_c00469{height:237.546667pt;}
.h1_c00469{height:876.666667pt;}
.h0_c00469{height:876.733333pt;}
.w2_c00469{width:93.222667pt;}
.w0_c00469{width:593.266667pt;}
.w1_c00469{width:593.333333pt;}
.x0_c00469{left:0.000000pt;}
.xf_c00469{left:32.133333pt;}
.x3_c00469{left:36.000000pt;}
.xc_c00469{left:114.000000pt;}
.xe_c00469{left:118.533333pt;}
.x1_c00469{left:119.733333pt;}
.x2_c00469{left:120.800000pt;}
.x4_c00469{left:121.866667pt;}
.x8_c00469{left:123.200000pt;}
.x5_c00469{left:144.000000pt;}
.xb_c00469{left:153.600000pt;}
.xd_c00469{left:166.400000pt;}
.x11_c00469{left:253.801554pt;}
.x6_c00469{left:332.666667pt;}
.x7_c00469{left:346.000000pt;}
.x9_c00469{left:350.933333pt;}
.xa_c00469{left:366.266667pt;}
.x10_c00469{left:495.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_137c7c2ec8d283138fc64638.woff2')format("woff");}.ff1_c00470{font-family:ff1_c00470;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00470;src:url('chunks/assets/font_427948d4294a615ba3c5d28b.woff2')format("woff");}.ff2_c00470{font-family:ff2_c00470;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00470;src:url('chunks/assets/font_5c8d0ab98616b0092ad83ec4.woff2')format("woff");}.ff3_c00470{font-family:ff3_c00470;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00470;src:url('chunks/assets/font_6476d6751df7b5537d9a039c.woff2')format("woff");}.ff4_c00470{font-family:ff4_c00470;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00470;src:url('chunks/assets/font_6598f5622b04d84d602a5623.woff2')format("woff");}.ff5_c00470{font-family:ff5_c00470;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00470;src:url('chunks/assets/font_df412b2ff7d1c633a8a02087.woff2')format("woff");}.ff6_c00470{font-family:ff6_c00470;line-height:1.437000;font-style:normal;font-weight: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_c00470;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff7_c00470{font-family:ff7_c00470;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00470;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff8_c00470{font-family:ff8_c00470;line-height:1.219238;font-style: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;}
.ls2_c00470{letter-spacing:0.000000px;}
.ls0_c00470{letter-spacing:0.456000px;}
.ls3_c00470{letter-spacing:3.000000px;}
.ls5_c00470{letter-spacing:6.000000px;}
.ls1_c00470{letter-spacing:8.280000px;}
.ls6_c00470{letter-spacing:9.000000px;}
.ls4_c00470{letter-spacing:117.000000px;}
.sc__c00470{text-shadow:none;}
.sc0_c00470{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00470{-webkit-text-stroke:0px transparent;}
.sc0_c00470{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00470{word-spacing:-37.500000px;}
.ws2_c00470{word-spacing:-36.000000px;}
.ws4_c00470{word-spacing:-20.250000px;}
.ws0_c00470{word-spacing:-17.352000px;}
.ws5_c00470{word-spacing:-15.750000px;}
.ws1_c00470{word-spacing:-4.050000px;}
.ws6_c00470{word-spacing:0.000000px;}
._16_c00470{margin-left:-133.221000px;}
._15_c00470{margin-left:-122.592000px;}
._17_c00470{margin-left:-106.416000px;}
._1a_c00470{margin-left:-102.651000px;}
._1c_c00470{margin-left:-29.727000px;}
._13_c00470{margin-left:-28.632000px;}
._14_c00470{margin-left:-25.704000px;}
._0_c00470{margin-left:-24.381000px;}
._21_c00470{margin-left:-20.088000px;}
._1d_c00470{margin-left:-18.873000px;}
._1f_c00470{margin-left:-15.096000px;}
._24_c00470{margin-left:-12.150000px;}
._e_c00470{margin-left:-9.198000px;}
._23_c00470{margin-left:-8.166000px;}
._9_c00470{margin-left:-6.960000px;}
._1_c00470{margin-left:-5.265000px;}
._3_c00470{margin-left:-3.969000px;}
._7_c00470{margin-left:-2.916000px;}
._5_c00470{margin-left:-1.539000px;}
._19_c00470{width:1.005000px;}
._4_c00470{width:2.025000px;}
._2_c00470{width:3.321000px;}
._b_c00470{width:4.461000px;}
._a_c00470{width:5.583000px;}
._8_c00470{width:7.209000px;}
._c_c00470{width:8.985000px;}
._f_c00470{width:10.491000px;}
._6_c00470{width:11.988000px;}
._d_c00470{width:13.770000px;}
._20_c00470{width:15.483000px;}
._11_c00470{width:16.806000px;}
._10_c00470{width:19.098000px;}
._12_c00470{width:31.956000px;}
._18_c00470{width:33.420000px;}
._1b_c00470{width:151.164000px;}
._22_c00470{width:167.538000px;}
._1e_c00470{width:201.279000px;}
._25_c00470{width:273.450000px;}
.fc2_c00470{color:transparent;}
.fc1_c00470{color:rgb(128,128,128);}
.fc0_c00470{color:rgb(0,0,0);}
.fs8_c00470{font-size:48.000000px;}
.fs7_c00470{font-size:51.000000px;}
.fs2_c00470{font-size:63.000000px;}
.fs3_c00470{font-size:66.000000px;}
.fs5_c00470{font-size:69.000000px;}
.fs1_c00470{font-size:72.000000px;}
.fs4_c00470{font-size:75.000000px;}
.fs0_c00470{font-size:81.000000px;}
.fs6_c00470{font-size:84.000000px;}
.y0_c00470{bottom:0.000000px;}
.y25_c00470{bottom:3.105000px;}
.y24_c00470{bottom:7.228371px;}
.y23_c00470{bottom:77.715000px;}
.y22_c00470{bottom:102.915000px;}
.y21_c00470{bottom:126.915000px;}
.y20_c00470{bottom:151.515000px;}
.y1f_c00470{bottom:176.565000px;}
.y1e_c00470{bottom:201.165000px;}
.y1d_c00470{bottom:224.415000px;}
.y1c_c00470{bottom:248.115000px;}
.y1b_c00470{bottom:272.415000px;}
.y1a_c00470{bottom:296.715000px;}
.y19_c00470{bottom:320.715000px;}
.y18_c00470{bottom:344.565000px;}
.y17_c00470{bottom:368.265000px;}
.y16_c00470{bottom:393.315000px;}
.y15_c00470{bottom:416.115000px;}
.y14_c00470{bottom:440.115000px;}
.y13_c00470{bottom:463.815000px;}
.y12_c00470{bottom:487.815000px;}
.y11_c00470{bottom:510.015000px;}
.y10_c00470{bottom:535.815000px;}
.yf_c00470{bottom:559.665000px;}
.ye_c00470{bottom:583.515000px;}
.yd_c00470{bottom:607.965000px;}
.yc_c00470{bottom:630.465000px;}
.yb_c00470{bottom:655.065000px;}
.ya_c00470{bottom:678.015000px;}
.y9_c00470{bottom:702.315000px;}
.y8_c00470{bottom:726.015000px;}
.y7_c00470{bottom:749.715000px;}
.y6_c00470{bottom:773.865000px;}
.y5_c00470{bottom:797.865000px;}
.y4_c00470{bottom:821.865000px;}
.y3_c00470{bottom:847.215000px;}
.y2_c00470{bottom:869.865000px;}
.y1_c00470{bottom:894.015000px;}
.h5_c00470{height:13.200074px;}
.h6_c00470{height:43.804688px;}
.h3_c00470{height:79.497070px;}
.h2_c00470{height:84.269531px;}
.h4_c00470{height:91.160156px;}
.h1_c00470{height:984.750000px;}
.h0_c00470{height:984.975000px;}
.w2_c00470{width:104.875500px;}
.w1_c00470{width:669.000000px;}
.w0_c00470{width:669.075000px;}
.x0_c00470{left:0.000000px;}
.x1_c00470{left:47.850000px;}
.x2_c00470{left:49.500000px;}
.x3_c00470{left:50.550000px;}
.x4_c00470{left:52.200000px;}
.x6_c00470{left:53.250000px;}
.x7_c00470{left:59.700000px;}
.x5_c00470{left:74.550000px;}
.x9_c00470{left:286.351730px;}
.x8_c00470{left:369.900000px;}
@media print{
.v0_c00470{vertical-align:0.000000pt;}
.ls2_c00470{letter-spacing:0.000000pt;}
.ls0_c00470{letter-spacing:0.405333pt;}
.ls3_c00470{letter-spacing:2.666667pt;}
.ls5_c00470{letter-spacing:5.333333pt;}
.ls1_c00470{letter-spacing:7.360000pt;}
.ls6_c00470{letter-spacing:8.000000pt;}
.ls4_c00470{letter-spacing:104.000000pt;}
.ws3_c00470{word-spacing:-33.333333pt;}
.ws2_c00470{word-spacing:-32.000000pt;}
.ws4_c00470{word-spacing:-18.000000pt;}
.ws0_c00470{word-spacing:-15.424000pt;}
.ws5_c00470{word-spacing:-14.000000pt;}
.ws1_c00470{word-spacing:-3.600000pt;}
.ws6_c00470{word-spacing:0.000000pt;}
._16_c00470{margin-left:-118.418667pt;}
._15_c00470{margin-left:-108.970667pt;}
._17_c00470{margin-left:-94.592000pt;}
._1a_c00470{margin-left:-91.245333pt;}
._1c_c00470{margin-left:-26.424000pt;}
._13_c00470{margin-left:-25.450667pt;}
._14_c00470{margin-left:-22.848000pt;}
._0_c00470{margin-left:-21.672000pt;}
._21_c00470{margin-left:-17.856000pt;}
._1d_c00470{margin-left:-16.776000pt;}
._1f_c00470{margin-left:-13.418667pt;}
._24_c00470{margin-left:-10.800000pt;}
._e_c00470{margin-left:-8.176000pt;}
._23_c00470{margin-left:-7.258667pt;}
._9_c00470{margin-left:-6.186667pt;}
._1_c00470{margin-left:-4.680000pt;}
._3_c00470{margin-left:-3.528000pt;}
._7_c00470{margin-left:-2.592000pt;}
._5_c00470{margin-left:-1.368000pt;}
._19_c00470{width:0.893333pt;}
._4_c00470{width:1.800000pt;}
._2_c00470{width:2.952000pt;}
._b_c00470{width:3.965333pt;}
._a_c00470{width:4.962667pt;}
._8_c00470{width:6.408000pt;}
._c_c00470{width:7.986667pt;}
._f_c00470{width:9.325333pt;}
._6_c00470{width:10.656000pt;}
._d_c00470{width:12.240000pt;}
._20_c00470{width:13.762667pt;}
._11_c00470{width:14.938667pt;}
._10_c00470{width:16.976000pt;}
._12_c00470{width:28.405333pt;}
._18_c00470{width:29.706667pt;}
._1b_c00470{width:134.368000pt;}
._22_c00470{width:148.922667pt;}
._1e_c00470{width:178.914667pt;}
._25_c00470{width:243.066667pt;}
.fs8_c00470{font-size:42.666667pt;}
.fs7_c00470{font-size:45.333333pt;}
.fs2_c00470{font-size:56.000000pt;}
.fs3_c00470{font-size:58.666667pt;}
.fs5_c00470{font-size:61.333333pt;}
.fs1_c00470{font-size:64.000000pt;}
.fs4_c00470{font-size:66.666667pt;}
.fs0_c00470{font-size:72.000000pt;}
.fs6_c00470{font-size:74.666667pt;}
.y0_c00470{bottom:0.000000pt;}
.y25_c00470{bottom:2.760000pt;}
.y24_c00470{bottom:6.425219pt;}
.y23_c00470{bottom:69.080000pt;}
.y22_c00470{bottom:91.480000pt;}
.y21_c00470{bottom:112.813333pt;}
.y20_c00470{bottom:134.680000pt;}
.y1f_c00470{bottom:156.946667pt;}
.y1e_c00470{bottom:178.813333pt;}
.y1d_c00470{bottom:199.480000pt;}
.y1c_c00470{bottom:220.546667pt;}
.y1b_c00470{bottom:242.146667pt;}
.y1a_c00470{bottom:263.746667pt;}
.y19_c00470{bottom:285.080000pt;}
.y18_c00470{bottom:306.280000pt;}
.y17_c00470{bottom:327.346667pt;}
.y16_c00470{bottom:349.613333pt;}
.y15_c00470{bottom:369.880000pt;}
.y14_c00470{bottom:391.213333pt;}
.y13_c00470{bottom:412.280000pt;}
.y12_c00470{bottom:433.613333pt;}
.y11_c00470{bottom:453.346667pt;}
.y10_c00470{bottom:476.280000pt;}
.yf_c00470{bottom:497.480000pt;}
.ye_c00470{bottom:518.680000pt;}
.yd_c00470{bottom:540.413333pt;}
.yc_c00470{bottom:560.413333pt;}
.yb_c00470{bottom:582.280000pt;}
.ya_c00470{bottom:602.680000pt;}
.y9_c00470{bottom:624.280000pt;}
.y8_c00470{bottom:645.346667pt;}
.y7_c00470{bottom:666.413333pt;}
.y6_c00470{bottom:687.880000pt;}
.y5_c00470{bottom:709.213333pt;}
.y4_c00470{bottom:730.546667pt;}
.y3_c00470{bottom:753.080000pt;}
.y2_c00470{bottom:773.213333pt;}
.y1_c00470{bottom:794.680000pt;}
.h5_c00470{height:11.733399pt;}
.h6_c00470{height:38.937500pt;}
.h3_c00470{height:70.664062pt;}
.h2_c00470{height:74.906250pt;}
.h4_c00470{height:81.031250pt;}
.h1_c00470{height:875.333333pt;}
.h0_c00470{height:875.533333pt;}
.w2_c00470{width:93.222667pt;}
.w1_c00470{width:594.666667pt;}
.w0_c00470{width:594.733333pt;}
.x0_c00470{left:0.000000pt;}
.x1_c00470{left:42.533333pt;}
.x2_c00470{left:44.000000pt;}
.x3_c00470{left:44.933333pt;}
.x4_c00470{left:46.400000pt;}
.x6_c00470{left:47.333333pt;}
.x7_c00470{left:53.066667pt;}
.x5_c00470{left:66.266667pt;}
.x9_c00470{left:254.534871pt;}
.x8_c00470{left:328.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ab3f0470467c6d0b20808d48.woff2')format("woff");}.ff1_c00471{font-family:ff1_c00471;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00471;src:url('chunks/assets/font_e2f8d7571855519f06a8eb02.woff2')format("woff");}.ff2_c00471{font-family:ff2_c00471;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00471;src:url('chunks/assets/font_c3143212c90ff9f5fdff249d.woff2')format("woff");}.ff3_c00471{font-family:ff3_c00471;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00471;src:url('chunks/assets/font_f6590a96676ff58311eb4924.woff2')format("woff");}.ff4_c00471{font-family:ff4_c00471;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00471;src:url('chunks/assets/font_4d6215db2d23e7cbad9d9744.woff2')format("woff");}.ff5_c00471{font-family:ff5_c00471;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00471;src:url('chunks/assets/font_5fd6abbca2cdfe0cce377892.woff2')format("woff");}.ff6_c00471{font-family:ff6_c00471;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00471;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c00471{font-family:ff7_c00471;line-height:1.219238;font-style: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;}
.ls2_c00471{letter-spacing:-6.000000px;}
.ls1_c00471{letter-spacing:0.000000px;}
.ls0_c00471{letter-spacing:6.000000px;}
.ls3_c00471{letter-spacing:9.000000px;}
.sc__c00471{text-shadow:none;}
.sc0_c00471{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00471{-webkit-text-stroke:0px transparent;}
.sc0_c00471{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00471{word-spacing:-41.568000px;}
.ws0_c00471{word-spacing:-26.250000px;}
.ws3_c00471{word-spacing:-20.250000px;}
.ws1_c00471{word-spacing:-17.352000px;}
.ws4_c00471{word-spacing:0.000000px;}
._1e_c00471{margin-left:-44.712000px;}
._1a_c00471{margin-left:-28.662000px;}
._20_c00471{margin-left:-23.250000px;}
._e_c00471{margin-left:-20.736000px;}
._19_c00471{margin-left:-19.197000px;}
._2_c00471{margin-left:-17.391000px;}
._a_c00471{margin-left:-15.345000px;}
._7_c00471{margin-left:-13.620000px;}
._1b_c00471{margin-left:-11.835000px;}
._3_c00471{margin-left:-10.323000px;}
._18_c00471{margin-left:-8.328000px;}
._1_c00471{margin-left:-6.789000px;}
._4_c00471{margin-left:-4.929000px;}
._b_c00471{margin-left:-3.303000px;}
._f_c00471{margin-left:-2.208000px;}
._14_c00471{margin-left:-1.095000px;}
._8_c00471{width:1.680000px;}
._d_c00471{width:3.348000px;}
._11_c00471{width:4.536000px;}
._c_c00471{width:5.577000px;}
._12_c00471{width:6.885000px;}
._10_c00471{width:8.589000px;}
._1d_c00471{width:9.756000px;}
._13_c00471{width:10.764000px;}
._9_c00471{width:12.747000px;}
._17_c00471{width:14.766000px;}
._21_c00471{width:15.876000px;}
._16_c00471{width:16.938000px;}
._1c_c00471{width:22.818000px;}
._0_c00471{width:24.645000px;}
._6_c00471{width:29.760000px;}
._5_c00471{width:128.805000px;}
._15_c00471{width:141.408000px;}
._1f_c00471{width:447.444000px;}
.fc2_c00471{color:transparent;}
.fc1_c00471{color:rgb(128,128,128);}
.fc0_c00471{color:rgb(0,0,0);}
.fs7_c00471{font-size:48.000000px;}
.fs4_c00471{font-size:66.000000px;}
.fs6_c00471{font-size:69.000000px;}
.fs3_c00471{font-size:72.000000px;}
.fs2_c00471{font-size:81.000000px;}
.fs0_c00471{font-size:93.000000px;}
.fs5_c00471{font-size:102.000000px;}
.fs1_c00471{font-size:105.000000px;}
.y0_c00471{bottom:0.000000px;}
.y26_c00471{bottom:3.105000px;}
.y25_c00471{bottom:7.228363px;}
.y24_c00471{bottom:64.800000px;}
.y23_c00471{bottom:89.850000px;}
.y22_c00471{bottom:114.150000px;}
.y21_c00471{bottom:138.750000px;}
.y20_c00471{bottom:163.050000px;}
.y1f_c00471{bottom:187.650000px;}
.y1e_c00471{bottom:211.950000px;}
.y1d_c00471{bottom:235.950000px;}
.y1c_c00471{bottom:259.650000px;}
.y1b_c00471{bottom:284.550000px;}
.y1a_c00471{bottom:308.550000px;}
.y19_c00471{bottom:333.150000px;}
.y18_c00471{bottom:357.150000px;}
.y17_c00471{bottom:381.000000px;}
.y16_c00471{bottom:406.050000px;}
.y15_c00471{bottom:429.300000px;}
.y14_c00471{bottom:453.000000px;}
.y13_c00471{bottom:477.000000px;}
.y12_c00471{bottom:501.150000px;}
.y11_c00471{bottom:524.850000px;}
.y10_c00471{bottom:548.850000px;}
.yf_c00471{bottom:573.150000px;}
.ye_c00471{bottom:597.150000px;}
.yd_c00471{bottom:621.000000px;}
.yc_c00471{bottom:644.700000px;}
.yb_c00471{bottom:669.000000px;}
.ya_c00471{bottom:693.000000px;}
.y9_c00471{bottom:717.150000px;}
.y8_c00471{bottom:741.150000px;}
.y7_c00471{bottom:765.750000px;}
.y6_c00471{bottom:789.150000px;}
.y5_c00471{bottom:812.400000px;}
.y4_c00471{bottom:836.550000px;}
.y3_c00471{bottom:860.700000px;}
.y2_c00471{bottom:884.250000px;}
.y1_c00471{bottom:919.950000px;}
.h7_c00471{height:13.200074px;}
.h8_c00471{height:43.804688px;}
.h3_c00471{height:79.497070px;}
.h4_c00471{height:84.269531px;}
.h6_c00471{height:91.160156px;}
.h2_c00471{height:103.000488px;}
.h5_c00471{height:129.143555px;}
.h1_c00471{height:977.250000px;}
.h0_c00471{height:977.400000px;}
.w1_c00471{width:104.875500px;}
.w0_c00471{width:661.500000px;}
.x0_c00471{left:0.000000px;}
.xe_c00471{left:14.400000px;}
.x9_c00471{left:46.350000px;}
.x1_c00471{left:120.450000px;}
.x2_c00471{left:122.250000px;}
.x3_c00471{left:123.900000px;}
.x4_c00471{left:125.550000px;}
.x5_c00471{left:127.500000px;}
.x6_c00471{left:129.150000px;}
.x7_c00471{left:130.500000px;}
.x8_c00471{left:131.850000px;}
.xc_c00471{left:133.950000px;}
.xd_c00471{left:135.000000px;}
.xb_c00471{left:157.050000px;}
.xa_c00471{left:170.400000px;}
.x10_c00471{left:282.564240px;}
.xf_c00471{left:572.100000px;}
@media print{
.v0_c00471{vertical-align:0.000000pt;}
.ls2_c00471{letter-spacing:-5.333333pt;}
.ls1_c00471{letter-spacing:0.000000pt;}
.ls0_c00471{letter-spacing:5.333333pt;}
.ls3_c00471{letter-spacing:8.000000pt;}
.ws2_c00471{word-spacing:-36.949333pt;}
.ws0_c00471{word-spacing:-23.333333pt;}
.ws3_c00471{word-spacing:-18.000000pt;}
.ws1_c00471{word-spacing:-15.424000pt;}
.ws4_c00471{word-spacing:0.000000pt;}
._1e_c00471{margin-left:-39.744000pt;}
._1a_c00471{margin-left:-25.477333pt;}
._20_c00471{margin-left:-20.666667pt;}
._e_c00471{margin-left:-18.432000pt;}
._19_c00471{margin-left:-17.064000pt;}
._2_c00471{margin-left:-15.458667pt;}
._a_c00471{margin-left:-13.640000pt;}
._7_c00471{margin-left:-12.106667pt;}
._1b_c00471{margin-left:-10.520000pt;}
._3_c00471{margin-left:-9.176000pt;}
._18_c00471{margin-left:-7.402667pt;}
._1_c00471{margin-left:-6.034667pt;}
._4_c00471{margin-left:-4.381333pt;}
._b_c00471{margin-left:-2.936000pt;}
._f_c00471{margin-left:-1.962667pt;}
._14_c00471{margin-left:-0.973333pt;}
._8_c00471{width:1.493333pt;}
._d_c00471{width:2.976000pt;}
._11_c00471{width:4.032000pt;}
._c_c00471{width:4.957333pt;}
._12_c00471{width:6.120000pt;}
._10_c00471{width:7.634667pt;}
._1d_c00471{width:8.672000pt;}
._13_c00471{width:9.568000pt;}
._9_c00471{width:11.330667pt;}
._17_c00471{width:13.125333pt;}
._21_c00471{width:14.112000pt;}
._16_c00471{width:15.056000pt;}
._1c_c00471{width:20.282667pt;}
._0_c00471{width:21.906667pt;}
._6_c00471{width:26.453333pt;}
._5_c00471{width:114.493333pt;}
._15_c00471{width:125.696000pt;}
._1f_c00471{width:397.728000pt;}
.fs7_c00471{font-size:42.666667pt;}
.fs4_c00471{font-size:58.666667pt;}
.fs6_c00471{font-size:61.333333pt;}
.fs3_c00471{font-size:64.000000pt;}
.fs2_c00471{font-size:72.000000pt;}
.fs0_c00471{font-size:82.666667pt;}
.fs5_c00471{font-size:90.666667pt;}
.fs1_c00471{font-size:93.333333pt;}
.y0_c00471{bottom:0.000000pt;}
.y26_c00471{bottom:2.760000pt;}
.y25_c00471{bottom:6.425212pt;}
.y24_c00471{bottom:57.600000pt;}
.y23_c00471{bottom:79.866667pt;}
.y22_c00471{bottom:101.466667pt;}
.y21_c00471{bottom:123.333333pt;}
.y20_c00471{bottom:144.933333pt;}
.y1f_c00471{bottom:166.800000pt;}
.y1e_c00471{bottom:188.400000pt;}
.y1d_c00471{bottom:209.733333pt;}
.y1c_c00471{bottom:230.800000pt;}
.y1b_c00471{bottom:252.933333pt;}
.y1a_c00471{bottom:274.266667pt;}
.y19_c00471{bottom:296.133333pt;}
.y18_c00471{bottom:317.466667pt;}
.y17_c00471{bottom:338.666667pt;}
.y16_c00471{bottom:360.933333pt;}
.y15_c00471{bottom:381.600000pt;}
.y14_c00471{bottom:402.666667pt;}
.y13_c00471{bottom:424.000000pt;}
.y12_c00471{bottom:445.466667pt;}
.y11_c00471{bottom:466.533333pt;}
.y10_c00471{bottom:487.866667pt;}
.yf_c00471{bottom:509.466667pt;}
.ye_c00471{bottom:530.800000pt;}
.yd_c00471{bottom:552.000000pt;}
.yc_c00471{bottom:573.066667pt;}
.yb_c00471{bottom:594.666667pt;}
.ya_c00471{bottom:616.000000pt;}
.y9_c00471{bottom:637.466667pt;}
.y8_c00471{bottom:658.800000pt;}
.y7_c00471{bottom:680.666667pt;}
.y6_c00471{bottom:701.466667pt;}
.y5_c00471{bottom:722.133333pt;}
.y4_c00471{bottom:743.600000pt;}
.y3_c00471{bottom:765.066667pt;}
.y2_c00471{bottom:786.000000pt;}
.y1_c00471{bottom:817.733333pt;}
.h7_c00471{height:11.733399pt;}
.h8_c00471{height:38.937500pt;}
.h3_c00471{height:70.664062pt;}
.h4_c00471{height:74.906250pt;}
.h6_c00471{height:81.031250pt;}
.h2_c00471{height:91.555990pt;}
.h5_c00471{height:114.794271pt;}
.h1_c00471{height:868.666667pt;}
.h0_c00471{height:868.800000pt;}
.w1_c00471{width:93.222667pt;}
.w0_c00471{width:588.000000pt;}
.x0_c00471{left:0.000000pt;}
.xe_c00471{left:12.800000pt;}
.x9_c00471{left:41.200000pt;}
.x1_c00471{left:107.066667pt;}
.x2_c00471{left:108.666667pt;}
.x3_c00471{left:110.133333pt;}
.x4_c00471{left:111.600000pt;}
.x5_c00471{left:113.333333pt;}
.x6_c00471{left:114.800000pt;}
.x7_c00471{left:116.000000pt;}
.x8_c00471{left:117.200000pt;}
.xc_c00471{left:119.066667pt;}
.xd_c00471{left:120.000000pt;}
.xb_c00471{left:139.600000pt;}
.xa_c00471{left:151.466667pt;}
.x10_c00471{left:251.168213pt;}
.xf_c00471{left:508.533333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_9b67bfda0ed0a29858bf0453.woff2')format("woff");}.ff1_c00472{font-family:ff1_c00472;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00472;src:url('chunks/assets/font_cf016182288d692916d8c8e2.woff2')format("woff");}.ff2_c00472{font-family:ff2_c00472;line-height:1.437000;font-style:normal;font-weight:normal;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_cb143b0ddfea07951c7ed999.woff2')format("woff");}.ff3_c00472{font-family:ff3_c00472;line-height:1.437000;font-style:normal;font-weight:normal;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_8abb2299f40730dabe8fc5f2.woff2')format("woff");}.ff4_c00472{font-family:ff4_c00472;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00472;src:url('chunks/assets/font_7aa357ed37ff0160c1a64029.woff2')format("woff");}.ff5_c00472{font-family:ff5_c00472;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00472;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff6_c00472{font-family:ff6_c00472;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00472;src:url('chunks/assets/font_595c5cce01fd06d76ea4f328.woff2')format("woff");}.ff7_c00472{font-family:ff7_c00472;line-height:1.437000;font-style:normal;font-weight: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_c00472;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff8_c00472{font-family:ff8_c00472;line-height:1.219238;font-style: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;}
.ls3_c00472{letter-spacing:0.000000px;}
.ls2_c00472{letter-spacing:2.700000px;}
.ls4_c00472{letter-spacing:9.000000px;}
.ls1_c00472{letter-spacing:16.509000px;}
.ls0_c00472{letter-spacing:35.550000px;}
.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;}
}
.ws2_c00472{word-spacing:-76.686000px;}
.ws1_c00472{word-spacing:-17.352000px;}
.ws0_c00472{word-spacing:-17.250000px;}
.ws3_c00472{word-spacing:0.000000px;}
._19_c00472{margin-left:-42.534000px;}
._14_c00472{margin-left:-32.937000px;}
._1f_c00472{margin-left:-25.356000px;}
._25_c00472{margin-left:-21.753000px;}
._16_c00472{margin-left:-19.254000px;}
._1e_c00472{margin-left:-18.012000px;}
._20_c00472{margin-left:-15.198000px;}
._d_c00472{margin-left:-13.782000px;}
._1b_c00472{margin-left:-12.303000px;}
._11_c00472{margin-left:-10.956000px;}
._22_c00472{margin-left:-9.315000px;}
._e_c00472{margin-left:-8.262000px;}
._5_c00472{margin-left:-6.318000px;}
._6_c00472{margin-left:-4.941000px;}
._7_c00472{margin-left:-3.402000px;}
._1_c00472{margin-left:-1.944000px;}
._3_c00472{width:1.053000px;}
._2_c00472{width:2.430000px;}
._4_c00472{width:3.807000px;}
._8_c00472{width:5.103000px;}
._0_c00472{width:6.318000px;}
._9_c00472{width:7.422000px;}
._10_c00472{width:9.402000px;}
._b_c00472{width:11.211000px;}
._1c_c00472{width:12.282000px;}
._f_c00472{width:13.284000px;}
._13_c00472{width:14.823000px;}
._c_c00472{width:16.575000px;}
._1d_c00472{width:19.527000px;}
._27_c00472{width:21.627000px;}
._24_c00472{width:25.095000px;}
._15_c00472{width:31.104000px;}
._18_c00472{width:34.542000px;}
._21_c00472{width:36.606000px;}
._26_c00472{width:39.285000px;}
._23_c00472{width:87.651000px;}
._a_c00472{width:106.068000px;}
._12_c00472{width:144.717000px;}
._1a_c00472{width:165.141000px;}
._17_c00472{width:174.105000px;}
._28_c00472{width:240.975000px;}
.fc2_c00472{color:transparent;}
.fc1_c00472{color:rgb(128,128,128);}
.fc0_c00472{color:rgb(0,0,0);}
.fs4_c00472{font-size:48.000000px;}
.fs1_c00472{font-size:69.000000px;}
.fs2_c00472{font-size:72.000000px;}
.fs0_c00472{font-size:81.000000px;}
.fs3_c00472{font-size:87.000000px;}
.y0_c00472{bottom:0.000000px;}
.y25_c00472{bottom:3.105000px;}
.y24_c00472{bottom:7.228371px;}
.y23_c00472{bottom:75.015000px;}
.y22_c00472{bottom:101.565000px;}
.y21_c00472{bottom:126.015000px;}
.y20_c00472{bottom:150.915000px;}
.y1f_c00472{bottom:175.215000px;}
.y1e_c00472{bottom:198.915000px;}
.y1d_c00472{bottom:223.365000px;}
.y1c_c00472{bottom:247.515000px;}
.y1b_c00472{bottom:271.665000px;}
.y1a_c00472{bottom:295.665000px;}
.y19_c00472{bottom:319.665000px;}
.y18_c00472{bottom:343.365000px;}
.y17_c00472{bottom:367.665000px;}
.y16_c00472{bottom:391.515000px;}
.y15_c00472{bottom:415.515000px;}
.y14_c00472{bottom:439.215000px;}
.y13_c00472{bottom:463.515000px;}
.y12_c00472{bottom:487.665000px;}
.y11_c00472{bottom:511.065000px;}
.y10_c00472{bottom:535.365000px;}
.yf_c00472{bottom:559.215000px;}
.ye_c00472{bottom:582.615000px;}
.yd_c00472{bottom:606.465000px;}
.yc_c00472{bottom:630.165000px;}
.yb_c00472{bottom:654.165000px;}
.ya_c00472{bottom:678.015000px;}
.y9_c00472{bottom:701.715000px;}
.y8_c00472{bottom:725.415000px;}
.y7_c00472{bottom:749.715000px;}
.y6_c00472{bottom:774.015000px;}
.y5_c00472{bottom:797.565000px;}
.y4_c00472{bottom:821.565000px;}
.y3_c00472{bottom:845.865000px;}
.y2_c00472{bottom:869.715000px;}
.y1_c00472{bottom:893.715000px;}
.h6_c00472{height:13.200074px;}
.h7_c00472{height:43.804688px;}
.h2_c00472{height:79.497070px;}
.h5_c00472{height:84.269531px;}
.h3_c00472{height:91.160156px;}
.h4_c00472{height:91.176000px;}
.h0_c00472{height:989.025000px;}
.h1_c00472{height:989.250000px;}
.w1_c00472{width:104.875500px;}
.w0_c00472{width:672.000000px;}
.x0_c00472{left:0.000000px;}
.x6_c00472{left:42.150000px;}
.x1_c00472{left:46.650000px;}
.x2_c00472{left:48.600000px;}
.x3_c00472{left:50.250000px;}
.x4_c00472{left:51.300000px;}
.x5_c00472{left:52.950000px;}
.x7_c00472{left:54.000000px;}
.x8_c00472{left:55.050000px;}
.x9_c00472{left:56.250000px;}
.xb_c00472{left:287.814240px;}
.xa_c00472{left:378.300000px;}
@media print{
.v0_c00472{vertical-align:0.000000pt;}
.ls3_c00472{letter-spacing:0.000000pt;}
.ls2_c00472{letter-spacing:2.400000pt;}
.ls4_c00472{letter-spacing:8.000000pt;}
.ls1_c00472{letter-spacing:14.674667pt;}
.ls0_c00472{letter-spacing:31.600000pt;}
.ws2_c00472{word-spacing:-68.165333pt;}
.ws1_c00472{word-spacing:-15.424000pt;}
.ws0_c00472{word-spacing:-15.333333pt;}
.ws3_c00472{word-spacing:0.000000pt;}
._19_c00472{margin-left:-37.808000pt;}
._14_c00472{margin-left:-29.277333pt;}
._1f_c00472{margin-left:-22.538667pt;}
._25_c00472{margin-left:-19.336000pt;}
._16_c00472{margin-left:-17.114667pt;}
._1e_c00472{margin-left:-16.010667pt;}
._20_c00472{margin-left:-13.509333pt;}
._d_c00472{margin-left:-12.250667pt;}
._1b_c00472{margin-left:-10.936000pt;}
._11_c00472{margin-left:-9.738667pt;}
._22_c00472{margin-left:-8.280000pt;}
._e_c00472{margin-left:-7.344000pt;}
._5_c00472{margin-left:-5.616000pt;}
._6_c00472{margin-left:-4.392000pt;}
._7_c00472{margin-left:-3.024000pt;}
._1_c00472{margin-left:-1.728000pt;}
._3_c00472{width:0.936000pt;}
._2_c00472{width:2.160000pt;}
._4_c00472{width:3.384000pt;}
._8_c00472{width:4.536000pt;}
._0_c00472{width:5.616000pt;}
._9_c00472{width:6.597333pt;}
._10_c00472{width:8.357333pt;}
._b_c00472{width:9.965333pt;}
._1c_c00472{width:10.917333pt;}
._f_c00472{width:11.808000pt;}
._13_c00472{width:13.176000pt;}
._c_c00472{width:14.733333pt;}
._1d_c00472{width:17.357333pt;}
._27_c00472{width:19.224000pt;}
._24_c00472{width:22.306667pt;}
._15_c00472{width:27.648000pt;}
._18_c00472{width:30.704000pt;}
._21_c00472{width:32.538667pt;}
._26_c00472{width:34.920000pt;}
._23_c00472{width:77.912000pt;}
._a_c00472{width:94.282667pt;}
._12_c00472{width:128.637333pt;}
._1a_c00472{width:146.792000pt;}
._17_c00472{width:154.760000pt;}
._28_c00472{width:214.200000pt;}
.fs4_c00472{font-size:42.666667pt;}
.fs1_c00472{font-size:61.333333pt;}
.fs2_c00472{font-size:64.000000pt;}
.fs0_c00472{font-size:72.000000pt;}
.fs3_c00472{font-size:77.333333pt;}
.y0_c00472{bottom:0.000000pt;}
.y25_c00472{bottom:2.760000pt;}
.y24_c00472{bottom:6.425219pt;}
.y23_c00472{bottom:66.680000pt;}
.y22_c00472{bottom:90.280000pt;}
.y21_c00472{bottom:112.013333pt;}
.y20_c00472{bottom:134.146667pt;}
.y1f_c00472{bottom:155.746667pt;}
.y1e_c00472{bottom:176.813333pt;}
.y1d_c00472{bottom:198.546667pt;}
.y1c_c00472{bottom:220.013333pt;}
.y1b_c00472{bottom:241.480000pt;}
.y1a_c00472{bottom:262.813333pt;}
.y19_c00472{bottom:284.146667pt;}
.y18_c00472{bottom:305.213333pt;}
.y17_c00472{bottom:326.813333pt;}
.y16_c00472{bottom:348.013333pt;}
.y15_c00472{bottom:369.346667pt;}
.y14_c00472{bottom:390.413333pt;}
.y13_c00472{bottom:412.013333pt;}
.y12_c00472{bottom:433.480000pt;}
.y11_c00472{bottom:454.280000pt;}
.y10_c00472{bottom:475.880000pt;}
.yf_c00472{bottom:497.080000pt;}
.ye_c00472{bottom:517.880000pt;}
.yd_c00472{bottom:539.080000pt;}
.yc_c00472{bottom:560.146667pt;}
.yb_c00472{bottom:581.480000pt;}
.ya_c00472{bottom:602.680000pt;}
.y9_c00472{bottom:623.746667pt;}
.y8_c00472{bottom:644.813333pt;}
.y7_c00472{bottom:666.413333pt;}
.y6_c00472{bottom:688.013333pt;}
.y5_c00472{bottom:708.946667pt;}
.y4_c00472{bottom:730.280000pt;}
.y3_c00472{bottom:751.880000pt;}
.y2_c00472{bottom:773.080000pt;}
.y1_c00472{bottom:794.413333pt;}
.h6_c00472{height:11.733399pt;}
.h7_c00472{height:38.937500pt;}
.h2_c00472{height:70.664062pt;}
.h5_c00472{height:74.906250pt;}
.h3_c00472{height:81.031250pt;}
.h4_c00472{height:81.045333pt;}
.h0_c00472{height:879.133333pt;}
.h1_c00472{height:879.333333pt;}
.w1_c00472{width:93.222667pt;}
.w0_c00472{width:597.333333pt;}
.x0_c00472{left:0.000000pt;}
.x6_c00472{left:37.466667pt;}
.x1_c00472{left:41.466667pt;}
.x2_c00472{left:43.200000pt;}
.x3_c00472{left:44.666667pt;}
.x4_c00472{left:45.600000pt;}
.x5_c00472{left:47.066667pt;}
.x7_c00472{left:48.000000pt;}
.x8_c00472{left:48.933333pt;}
.x9_c00472{left:50.000000pt;}
.xb_c00472{left:255.834880pt;}
.xa_c00472{left:336.266667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a6f2ba5fad50a36f9a00c8a7.woff2')format("woff");}.ff1_c00473{font-family:ff1_c00473;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00473;src:url('chunks/assets/font_22144e29f5c465cecb96a245.woff2')format("woff");}.ff2_c00473{font-family:ff2_c00473;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00473;src:url('chunks/assets/font_ceb646b7eabcb4d9c1873142.woff2')format("woff");}.ff3_c00473{font-family:ff3_c00473;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00473;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff4_c00473{font-family:ff4_c00473;line-height:1.219238;font-style: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;}
.ls0_c00473{letter-spacing:0.000000px;}
.sc__c00473{text-shadow:none;}
.sc0_c00473{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00473{-webkit-text-stroke:0px transparent;}
.sc0_c00473{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00473{word-spacing:-17.352000px;}
.ws1_c00473{word-spacing:0.000000px;}
._1a_c00473{margin-left:-22.923000px;}
._1b_c00473{margin-left:-21.222000px;}
._19_c00473{margin-left:-18.873000px;}
._16_c00473{margin-left:-16.929000px;}
._e_c00473{margin-left:-14.418000px;}
._15_c00473{margin-left:-12.312000px;}
._12_c00473{margin-left:-9.315000px;}
._17_c00473{margin-left:-7.977000px;}
._f_c00473{margin-left:-6.318000px;}
._6_c00473{margin-left:-5.265000px;}
._14_c00473{margin-left:-4.092000px;}
._4_c00473{margin-left:-3.078000px;}
._1_c00473{margin-left:-1.377000px;}
._c_c00473{width:1.296000px;}
._0_c00473{width:2.430000px;}
._3_c00473{width:3.483000px;}
._2_c00473{width:4.617000px;}
._b_c00473{width:6.399000px;}
._5_c00473{width:7.533000px;}
._a_c00473{width:8.667000px;}
._18_c00473{width:9.963000px;}
._7_c00473{width:11.178000px;}
._9_c00473{width:12.960000px;}
._8_c00473{width:14.013000px;}
._10_c00473{width:16.281000px;}
._1d_c00473{width:17.781000px;}
._1e_c00473{width:18.792000px;}
._d_c00473{width:24.543000px;}
._11_c00473{width:25.710000px;}
._1c_c00473{width:40.746000px;}
._1f_c00473{width:63.384000px;}
._13_c00473{width:129.195000px;}
.fc2_c00473{color:transparent;}
.fc1_c00473{color:rgb(128,128,128);}
.fc0_c00473{color:rgb(0,0,0);}
.fs3_c00473{font-size:48.000000px;}
.fs2_c00473{font-size:72.000000px;}
.fs1_c00473{font-size:78.000000px;}
.fs0_c00473{font-size:81.000000px;}
.y0_c00473{bottom:0.000000px;}
.y24_c00473{bottom:3.105000px;}
.y23_c00473{bottom:7.228371px;}
.y22_c00473{bottom:98.865000px;}
.y21_c00473{bottom:122.865000px;}
.y20_c00473{bottom:147.465000px;}
.y1f_c00473{bottom:171.915000px;}
.y1e_c00473{bottom:196.815000px;}
.y1d_c00473{bottom:220.815000px;}
.y1c_c00473{bottom:244.815000px;}
.y1b_c00473{bottom:269.115000px;}
.y1a_c00473{bottom:293.715000px;}
.y19_c00473{bottom:317.565000px;}
.y18_c00473{bottom:341.565000px;}
.y17_c00473{bottom:365.865000px;}
.y16_c00473{bottom:389.865000px;}
.y15_c00473{bottom:413.565000px;}
.y14_c00473{bottom:439.065000px;}
.y13_c00473{bottom:462.765000px;}
.y12_c00473{bottom:488.715000px;}
.y11_c00473{bottom:510.615000px;}
.y10_c00473{bottom:534.315000px;}
.yf_c00473{bottom:558.915000px;}
.ye_c00473{bottom:582.615000px;}
.yd_c00473{bottom:607.965000px;}
.yc_c00473{bottom:629.865000px;}
.yb_c00473{bottom:655.515000px;}
.ya_c00473{bottom:678.765000px;}
.y9_c00473{bottom:702.615000px;}
.y8_c00473{bottom:726.615000px;}
.y7_c00473{bottom:750.615000px;}
.y6_c00473{bottom:774.615000px;}
.y5_c00473{bottom:798.315000px;}
.y4_c00473{bottom:822.465000px;}
.y3_c00473{bottom:846.465000px;}
.y2_c00473{bottom:870.165000px;}
.y1_c00473{bottom:894.465000px;}
.h6_c00473{height:13.200074px;}
.h7_c00473{height:43.804688px;}
.h2_c00473{height:79.497070px;}
.h5_c00473{height:84.269531px;}
.h4_c00473{height:91.160156px;}
.h3_c00473{height:98.756836px;}
.h1_c00473{height:986.250000px;}
.h0_c00473{height:986.325000px;}
.w2_c00473{width:104.875500px;}
.w0_c00473{width:667.425000px;}
.w1_c00473{width:667.500000px;}
.x0_c00473{left:0.000000px;}
.x4_c00473{left:16.500000px;}
.x7_c00473{left:47.850000px;}
.x5_c00473{left:103.950000px;}
.x8_c00473{left:105.000000px;}
.x3_c00473{left:106.050000px;}
.x6_c00473{left:107.100000px;}
.x2_c00473{left:108.300000px;}
.x1_c00473{left:109.650000px;}
.x9_c00473{left:115.800000px;}
.xa_c00473{left:285.526749px;}
@media print{
.v0_c00473{vertical-align:0.000000pt;}
.ls0_c00473{letter-spacing:0.000000pt;}
.ws0_c00473{word-spacing:-15.424000pt;}
.ws1_c00473{word-spacing:0.000000pt;}
._1a_c00473{margin-left:-20.376000pt;}
._1b_c00473{margin-left:-18.864000pt;}
._19_c00473{margin-left:-16.776000pt;}
._16_c00473{margin-left:-15.048000pt;}
._e_c00473{margin-left:-12.816000pt;}
._15_c00473{margin-left:-10.944000pt;}
._12_c00473{margin-left:-8.280000pt;}
._17_c00473{margin-left:-7.090667pt;}
._f_c00473{margin-left:-5.616000pt;}
._6_c00473{margin-left:-4.680000pt;}
._14_c00473{margin-left:-3.637333pt;}
._4_c00473{margin-left:-2.736000pt;}
._1_c00473{margin-left:-1.224000pt;}
._c_c00473{width:1.152000pt;}
._0_c00473{width:2.160000pt;}
._3_c00473{width:3.096000pt;}
._2_c00473{width:4.104000pt;}
._b_c00473{width:5.688000pt;}
._5_c00473{width:6.696000pt;}
._a_c00473{width:7.704000pt;}
._18_c00473{width:8.856000pt;}
._7_c00473{width:9.936000pt;}
._9_c00473{width:11.520000pt;}
._8_c00473{width:12.456000pt;}
._10_c00473{width:14.472000pt;}
._1d_c00473{width:15.805333pt;}
._1e_c00473{width:16.704000pt;}
._d_c00473{width:21.816000pt;}
._11_c00473{width:22.853333pt;}
._1c_c00473{width:36.218667pt;}
._1f_c00473{width:56.341333pt;}
._13_c00473{width:114.840000pt;}
.fs3_c00473{font-size:42.666667pt;}
.fs2_c00473{font-size:64.000000pt;}
.fs1_c00473{font-size:69.333333pt;}
.fs0_c00473{font-size:72.000000pt;}
.y0_c00473{bottom:0.000000pt;}
.y24_c00473{bottom:2.760000pt;}
.y23_c00473{bottom:6.425219pt;}
.y22_c00473{bottom:87.880000pt;}
.y21_c00473{bottom:109.213333pt;}
.y20_c00473{bottom:131.080000pt;}
.y1f_c00473{bottom:152.813333pt;}
.y1e_c00473{bottom:174.946667pt;}
.y1d_c00473{bottom:196.280000pt;}
.y1c_c00473{bottom:217.613333pt;}
.y1b_c00473{bottom:239.213333pt;}
.y1a_c00473{bottom:261.080000pt;}
.y19_c00473{bottom:282.280000pt;}
.y18_c00473{bottom:303.613333pt;}
.y17_c00473{bottom:325.213333pt;}
.y16_c00473{bottom:346.546667pt;}
.y15_c00473{bottom:367.613333pt;}
.y14_c00473{bottom:390.280000pt;}
.y13_c00473{bottom:411.346667pt;}
.y12_c00473{bottom:434.413333pt;}
.y11_c00473{bottom:453.880000pt;}
.y10_c00473{bottom:474.946667pt;}
.yf_c00473{bottom:496.813333pt;}
.ye_c00473{bottom:517.880000pt;}
.yd_c00473{bottom:540.413333pt;}
.yc_c00473{bottom:559.880000pt;}
.yb_c00473{bottom:582.680000pt;}
.ya_c00473{bottom:603.346667pt;}
.y9_c00473{bottom:624.546667pt;}
.y8_c00473{bottom:645.880000pt;}
.y7_c00473{bottom:667.213333pt;}
.y6_c00473{bottom:688.546667pt;}
.y5_c00473{bottom:709.613333pt;}
.y4_c00473{bottom:731.080000pt;}
.y3_c00473{bottom:752.413333pt;}
.y2_c00473{bottom:773.480000pt;}
.y1_c00473{bottom:795.080000pt;}
.h6_c00473{height:11.733399pt;}
.h7_c00473{height:38.937500pt;}
.h2_c00473{height:70.664062pt;}
.h5_c00473{height:74.906250pt;}
.h4_c00473{height:81.031250pt;}
.h3_c00473{height:87.783854pt;}
.h1_c00473{height:876.666667pt;}
.h0_c00473{height:876.733333pt;}
.w2_c00473{width:93.222667pt;}
.w0_c00473{width:593.266667pt;}
.w1_c00473{width:593.333333pt;}
.x0_c00473{left:0.000000pt;}
.x4_c00473{left:14.666667pt;}
.x7_c00473{left:42.533333pt;}
.x5_c00473{left:92.400000pt;}
.x8_c00473{left:93.333333pt;}
.x3_c00473{left:94.266667pt;}
.x6_c00473{left:95.200000pt;}
.x2_c00473{left:96.266667pt;}
.x1_c00473{left:97.466667pt;}
.x9_c00473{left:102.933333pt;}
.xa_c00473{left:253.801554pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7899d32fd2ca14c92e819cfb.woff2')format("woff");}.ff1_c00474{font-family:ff1_c00474;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00474;src:url('chunks/assets/font_a681f6be3a4156458415772f.woff2')format("woff");}.ff2_c00474{font-family:ff2_c00474;line-height:1.437000;font-style:normal;font-weight:normal;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_f9989b39b4318d2f530f03c2.woff2')format("woff");}.ff3_c00474{font-family:ff3_c00474;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00474;src:url('chunks/assets/font_f16dc6106747fddd8db6c714.woff2')format("woff");}.ff4_c00474{font-family:ff4_c00474;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00474;src:url('chunks/assets/font_25fe0f539904da41bffedf15.woff2')format("woff");}.ff5_c00474{font-family:ff5_c00474;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00474;src:url('chunks/assets/font_aea84ac3ea4548e88e5396de.woff2')format("woff");}.ff6_c00474{font-family:ff6_c00474;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00474;src:url('chunks/assets/font_ef3fe528d70918bda0fb928a.woff2')format("woff");}.ff7_c00474{font-family:ff7_c00474;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00474;src:url('chunks/assets/font_67b4b90f3a39c3d6188d0057.woff2')format("woff");}.ff8_c00474{font-family:ff8_c00474;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00474;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff9_c00474{font-family:ff9_c00474;line-height:1.219238;font-style: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;}
.ls6_c00474{letter-spacing:-9.000000px;}
.ls3_c00474{letter-spacing:0.000000px;}
.ls5_c00474{letter-spacing:9.000000px;}
.ls2_c00474{letter-spacing:11.088000px;}
.ls1_c00474{letter-spacing:11.661000px;}
.ls4_c00474{letter-spacing:15.000000px;}
.ls0_c00474{letter-spacing:19.800000px;}
.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:-76.686000px;}
.ws2_c00474{word-spacing:-45.000000px;}
.ws3_c00474{word-spacing:-20.250000px;}
.ws0_c00474{word-spacing:-13.737000px;}
.ws4_c00474{word-spacing:0.000000px;}
._17_c00474{margin-left:-34.020000px;}
._25_c00474{margin-left:-31.017000px;}
._22_c00474{margin-left:-27.135000px;}
._23_c00474{margin-left:-23.970000px;}
._13_c00474{margin-left:-22.275000px;}
._20_c00474{margin-left:-20.148000px;}
._1f_c00474{margin-left:-17.100000px;}
._1d_c00474{margin-left:-15.633000px;}
._27_c00474{margin-left:-14.034000px;}
._1b_c00474{margin-left:-12.783000px;}
._26_c00474{margin-left:-11.730000px;}
._18_c00474{margin-left:-10.530000px;}
._1a_c00474{margin-left:-8.442000px;}
._14_c00474{margin-left:-7.335000px;}
._c_c00474{margin-left:-6.021000px;}
._a_c00474{margin-left:-4.446000px;}
._9_c00474{margin-left:-3.411000px;}
._e_c00474{margin-left:-2.346000px;}
._5_c00474{margin-left:-1.161000px;}
._19_c00474{width:1.020000px;}
._2_c00474{width:2.079000px;}
._1_c00474{width:3.564000px;}
._0_c00474{width:5.445000px;}
._3_c00474{width:6.732000px;}
._6_c00474{width:8.091000px;}
._7_c00474{width:9.315000px;}
._d_c00474{width:10.416000px;}
._b_c00474{width:12.438000px;}
._11_c00474{width:13.527000px;}
._8_c00474{width:14.814000px;}
._f_c00474{width:16.284000px;}
._12_c00474{width:18.315000px;}
._15_c00474{width:21.465000px;}
._10_c00474{width:23.139000px;}
._16_c00474{width:27.183000px;}
._21_c00474{width:36.207000px;}
._1e_c00474{width:39.123000px;}
._24_c00474{width:84.558000px;}
._1c_c00474{width:170.829000px;}
._4_c00474{width:295.248000px;}
.fc2_c00474{color:transparent;}
.fc1_c00474{color:rgb(128,128,128);}
.fc0_c00474{color:rgb(0,0,0);}
.fs9_c00474{font-size:48.000000px;}
.fs4_c00474{font-size:57.000000px;}
.fs6_c00474{font-size:72.000000px;}
.fs3_c00474{font-size:78.000000px;}
.fs2_c00474{font-size:81.000000px;}
.fs5_c00474{font-size:87.000000px;}
.fs7_c00474{font-size:90.000000px;}
.fs8_c00474{font-size:93.000000px;}
.fs0_c00474{font-size:99.000000px;}
.fs1_c00474{font-size:102.000000px;}
.y0_c00474{bottom:0.000000px;}
.y27_c00474{bottom:3.105000px;}
.y26_c00474{bottom:7.228371px;}
.y24_c00474{bottom:52.065000px;}
.y23_c00474{bottom:76.665000px;}
.y22_c00474{bottom:102.915000px;}
.y21_c00474{bottom:124.665000px;}
.y20_c00474{bottom:150.615000px;}
.y1f_c00474{bottom:174.465000px;}
.y1e_c00474{bottom:198.915000px;}
.y1d_c00474{bottom:223.065000px;}
.y25_c00474{bottom:232.215000px;}
.y1c_c00474{bottom:246.465000px;}
.y1b_c00474{bottom:269.715000px;}
.y1a_c00474{bottom:294.015000px;}
.y19_c00474{bottom:318.915000px;}
.y18_c00474{bottom:342.315000px;}
.y17_c00474{bottom:366.615000px;}
.y16_c00474{bottom:390.165000px;}
.y15_c00474{bottom:414.765000px;}
.y14_c00474{bottom:438.165000px;}
.y13_c00474{bottom:461.115000px;}
.y12_c00474{bottom:485.415000px;}
.y11_c00474{bottom:510.015000px;}
.y10_c00474{bottom:534.615000px;}
.yf_c00474{bottom:558.315000px;}
.ye_c00474{bottom:582.315000px;}
.yd_c00474{bottom:606.465000px;}
.yc_c00474{bottom:630.765000px;}
.yb_c00474{bottom:654.165000px;}
.ya_c00474{bottom:678.015000px;}
.y9_c00474{bottom:702.315000px;}
.y8_c00474{bottom:726.015000px;}
.y7_c00474{bottom:750.015000px;}
.y6_c00474{bottom:773.865000px;}
.y5_c00474{bottom:797.865000px;}
.y4_c00474{bottom:821.865000px;}
.y3_c00474{bottom:845.865000px;}
.y2_c00474{bottom:869.865000px;}
.y1_c00474{bottom:901.815000px;}
.h9_c00474{height:13.200074px;}
.ha_c00474{height:43.804688px;}
.h3_c00474{height:79.497070px;}
.h6_c00474{height:84.269531px;}
.h5_c00474{height:91.176000px;}
.h8_c00474{height:93.726562px;}
.h4_c00474{height:98.756836px;}
.h7_c00474{height:104.839927px;}
.h2_c00474{height:115.870605px;}
.h1_c00474{height:966.000000px;}
.h0_c00474{height:966.075000px;}
.w2_c00474{width:104.875500px;}
.w0_c00474{width:656.100000px;}
.w1_c00474{width:656.250000px;}
.x0_c00474{left:0.000000px;}
.x6_c00474{left:36.150000px;}
.x3_c00474{left:53.550000px;}
.x2_c00474{left:54.600000px;}
.x4_c00474{left:55.650000px;}
.x5_c00474{left:57.000000px;}
.x1_c00474{left:172.050000px;}
.x9_c00474{left:279.864258px;}
.x7_c00474{left:483.000000px;}
.x8_c00474{left:579.450000px;}
@media print{
.v0_c00474{vertical-align:0.000000pt;}
.ls6_c00474{letter-spacing:-8.000000pt;}
.ls3_c00474{letter-spacing:0.000000pt;}
.ls5_c00474{letter-spacing:8.000000pt;}
.ls2_c00474{letter-spacing:9.856000pt;}
.ls1_c00474{letter-spacing:10.365333pt;}
.ls4_c00474{letter-spacing:13.333333pt;}
.ls0_c00474{letter-spacing:17.600000pt;}
.ws1_c00474{word-spacing:-68.165333pt;}
.ws2_c00474{word-spacing:-40.000000pt;}
.ws3_c00474{word-spacing:-18.000000pt;}
.ws0_c00474{word-spacing:-12.210667pt;}
.ws4_c00474{word-spacing:0.000000pt;}
._17_c00474{margin-left:-30.240000pt;}
._25_c00474{margin-left:-27.570667pt;}
._22_c00474{margin-left:-24.120000pt;}
._23_c00474{margin-left:-21.306667pt;}
._13_c00474{margin-left:-19.800000pt;}
._20_c00474{margin-left:-17.909333pt;}
._1f_c00474{margin-left:-15.200000pt;}
._1d_c00474{margin-left:-13.896000pt;}
._27_c00474{margin-left:-12.474667pt;}
._1b_c00474{margin-left:-11.362667pt;}
._26_c00474{margin-left:-10.426667pt;}
._18_c00474{margin-left:-9.360000pt;}
._1a_c00474{margin-left:-7.504000pt;}
._14_c00474{margin-left:-6.520000pt;}
._c_c00474{margin-left:-5.352000pt;}
._a_c00474{margin-left:-3.952000pt;}
._9_c00474{margin-left:-3.032000pt;}
._e_c00474{margin-left:-2.085333pt;}
._5_c00474{margin-left:-1.032000pt;}
._19_c00474{width:0.906667pt;}
._2_c00474{width:1.848000pt;}
._1_c00474{width:3.168000pt;}
._0_c00474{width:4.840000pt;}
._3_c00474{width:5.984000pt;}
._6_c00474{width:7.192000pt;}
._7_c00474{width:8.280000pt;}
._d_c00474{width:9.258667pt;}
._b_c00474{width:11.056000pt;}
._11_c00474{width:12.024000pt;}
._8_c00474{width:13.168000pt;}
._f_c00474{width:14.474667pt;}
._12_c00474{width:16.280000pt;}
._15_c00474{width:19.080000pt;}
._10_c00474{width:20.568000pt;}
._16_c00474{width:24.162667pt;}
._21_c00474{width:32.184000pt;}
._1e_c00474{width:34.776000pt;}
._24_c00474{width:75.162667pt;}
._1c_c00474{width:151.848000pt;}
._4_c00474{width:262.442667pt;}
.fs9_c00474{font-size:42.666667pt;}
.fs4_c00474{font-size:50.666667pt;}
.fs6_c00474{font-size:64.000000pt;}
.fs3_c00474{font-size:69.333333pt;}
.fs2_c00474{font-size:72.000000pt;}
.fs5_c00474{font-size:77.333333pt;}
.fs7_c00474{font-size:80.000000pt;}
.fs8_c00474{font-size:82.666667pt;}
.fs0_c00474{font-size:88.000000pt;}
.fs1_c00474{font-size:90.666667pt;}
.y0_c00474{bottom:0.000000pt;}
.y27_c00474{bottom:2.760000pt;}
.y26_c00474{bottom:6.425219pt;}
.y24_c00474{bottom:46.280000pt;}
.y23_c00474{bottom:68.146667pt;}
.y22_c00474{bottom:91.480000pt;}
.y21_c00474{bottom:110.813333pt;}
.y20_c00474{bottom:133.880000pt;}
.y1f_c00474{bottom:155.080000pt;}
.y1e_c00474{bottom:176.813333pt;}
.y1d_c00474{bottom:198.280000pt;}
.y25_c00474{bottom:206.413333pt;}
.y1c_c00474{bottom:219.080000pt;}
.y1b_c00474{bottom:239.746667pt;}
.y1a_c00474{bottom:261.346667pt;}
.y19_c00474{bottom:283.480000pt;}
.y18_c00474{bottom:304.280000pt;}
.y17_c00474{bottom:325.880000pt;}
.y16_c00474{bottom:346.813333pt;}
.y15_c00474{bottom:368.680000pt;}
.y14_c00474{bottom:389.480000pt;}
.y13_c00474{bottom:409.880000pt;}
.y12_c00474{bottom:431.480000pt;}
.y11_c00474{bottom:453.346667pt;}
.y10_c00474{bottom:475.213333pt;}
.yf_c00474{bottom:496.280000pt;}
.ye_c00474{bottom:517.613333pt;}
.yd_c00474{bottom:539.080000pt;}
.yc_c00474{bottom:560.680000pt;}
.yb_c00474{bottom:581.480000pt;}
.ya_c00474{bottom:602.680000pt;}
.y9_c00474{bottom:624.280000pt;}
.y8_c00474{bottom:645.346667pt;}
.y7_c00474{bottom:666.680000pt;}
.y6_c00474{bottom:687.880000pt;}
.y5_c00474{bottom:709.213333pt;}
.y4_c00474{bottom:730.546667pt;}
.y3_c00474{bottom:751.880000pt;}
.y2_c00474{bottom:773.213333pt;}
.y1_c00474{bottom:801.613333pt;}
.h9_c00474{height:11.733399pt;}
.ha_c00474{height:38.937500pt;}
.h3_c00474{height:70.664062pt;}
.h6_c00474{height:74.906250pt;}
.h5_c00474{height:81.045333pt;}
.h8_c00474{height:83.312500pt;}
.h4_c00474{height:87.783854pt;}
.h7_c00474{height:93.191046pt;}
.h2_c00474{height:102.996094pt;}
.h1_c00474{height:858.666667pt;}
.h0_c00474{height:858.733333pt;}
.w2_c00474{width:93.222667pt;}
.w0_c00474{width:583.200000pt;}
.w1_c00474{width:583.333333pt;}
.x0_c00474{left:0.000000pt;}
.x6_c00474{left:32.133333pt;}
.x3_c00474{left:47.600000pt;}
.x2_c00474{left:48.533333pt;}
.x4_c00474{left:49.466667pt;}
.x5_c00474{left:50.666667pt;}
.x1_c00474{left:152.933333pt;}
.x9_c00474{left:248.768229pt;}
.x7_c00474{left:429.333333pt;}
.x8_c00474{left:515.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_c815aa664cf818eada837826.woff2')format("woff");}.ff1_c00475{font-family:ff1_c00475;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00475;src:url('chunks/assets/font_1a58759715d0011114c15bf7.woff2')format("woff");}.ff2_c00475{font-family:ff2_c00475;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00475;src:url('chunks/assets/font_0774463ea87ab7741c88ac71.woff2')format("woff");}.ff3_c00475{font-family:ff3_c00475;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00475;src:url('chunks/assets/font_7d3a4ad110bb17d5651f295c.woff2')format("woff");}.ff4_c00475{font-family:ff4_c00475;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00475;src:url('chunks/assets/font_6447bff6776b1b2c84ac8ea4.woff2')format("woff");}.ff5_c00475{font-family:ff5_c00475;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00475;src:url('chunks/assets/font_65035f043e8f0e4bb2f2e328.woff2')format("woff");}.ff6_c00475{font-family:ff6_c00475;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00475;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c00475{font-family:ff7_c00475;line-height:1.219238;font-style: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;}
.ls6_c00475{letter-spacing:-12.000000px;}
.ls4_c00475{letter-spacing:0.000000px;}
.ls3_c00475{letter-spacing:1.539000px;}
.ls5_c00475{letter-spacing:3.000000px;}
.ls0_c00475{letter-spacing:11.100000px;}
.ls2_c00475{letter-spacing:43.500000px;}
.ls1_c00475{letter-spacing:48.300000px;}
.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;}
}
.ws5_c00475{word-spacing:-73.824000px;}
.ws0_c00475{word-spacing:-59.184000px;}
.ws4_c00475{word-spacing:-21.789000px;}
.ws2_c00475{word-spacing:-15.750000px;}
.ws1_c00475{word-spacing:-4.632000px;}
.ws3_c00475{word-spacing:-3.612000px;}
.ws6_c00475{word-spacing:0.000000px;}
._1c_c00475{margin-left:-17.820000px;}
._19_c00475{margin-left:-14.544000px;}
._d_c00475{margin-left:-12.888000px;}
._1d_c00475{margin-left:-11.331000px;}
._c_c00475{margin-left:-8.892000px;}
._13_c00475{margin-left:-7.209000px;}
._5_c00475{margin-left:-5.994000px;}
._10_c00475{margin-left:-4.797000px;}
._6_c00475{margin-left:-3.240000px;}
._2_c00475{margin-left:-1.944000px;}
._3_c00475{width:1.296000px;}
._0_c00475{width:2.997000px;}
._9_c00475{width:4.050000px;}
._1_c00475{width:5.103000px;}
._7_c00475{width:6.318000px;}
._4_c00475{width:7.371000px;}
._a_c00475{width:8.505000px;}
._11_c00475{width:10.188000px;}
._18_c00475{width:11.319000px;}
._f_c00475{width:12.879000px;}
._b_c00475{width:15.066000px;}
._17_c00475{width:17.064000px;}
._1f_c00475{width:18.444000px;}
._16_c00475{width:21.588000px;}
._12_c00475{width:32.499000px;}
._1e_c00475{width:36.285000px;}
._20_c00475{width:79.461000px;}
._1b_c00475{width:147.582000px;}
._e_c00475{width:182.241000px;}
._8_c00475{width:232.809000px;}
._1a_c00475{width:257.211000px;}
._14_c00475{width:284.409000px;}
._15_c00475{width:570.900000px;}
.fc2_c00475{color:transparent;}
.fc1_c00475{color:rgb(128,128,128);}
.fc0_c00475{color:rgb(0,0,0);}
.fs3_c00475{font-size:42.000000px;}
.fs6_c00475{font-size:48.000000px;}
.fs2_c00475{font-size:51.000000px;}
.fs1_c00475{font-size:72.000000px;}
.fs4_c00475{font-size:75.000000px;}
.fs0_c00475{font-size:81.000000px;}
.fs5_c00475{font-size:144.000000px;}
.y0_c00475{bottom:0.000000px;}
.y27_c00475{bottom:3.105000px;}
.y26_c00475{bottom:7.228371px;}
.y23_c00475{bottom:61.215000px;}
.y22_c00475{bottom:85.365000px;}
.y25_c00475{bottom:101.715000px;}
.y21_c00475{bottom:111.015000px;}
.y20_c00475{bottom:136.065000px;}
.y24_c00475{bottom:156.315000px;}
.y1f_c00475{bottom:160.365000px;}
.y1e_c00475{bottom:183.615000px;}
.y1d_c00475{bottom:208.215000px;}
.y1c_c00475{bottom:232.665000px;}
.y1b_c00475{bottom:256.965000px;}
.y1a_c00475{bottom:281.115000px;}
.y19_c00475{bottom:305.415000px;}
.y18_c00475{bottom:329.865000px;}
.y17_c00475{bottom:353.715000px;}
.y16_c00475{bottom:378.015000px;}
.y15_c00475{bottom:402.015000px;}
.y14_c00475{bottom:426.315000px;}
.y13_c00475{bottom:450.315000px;}
.y12_c00475{bottom:474.315000px;}
.y11_c00475{bottom:497.565000px;}
.y10_c00475{bottom:521.115000px;}
.yf_c00475{bottom:544.815000px;}
.ye_c00475{bottom:569.715000px;}
.yd_c00475{bottom:593.115000px;}
.yc_c00475{bottom:616.965000px;}
.yb_c00475{bottom:641.715000px;}
.ya_c00475{bottom:663.315000px;}
.y9_c00475{bottom:689.865000px;}
.y8_c00475{bottom:714.465000px;}
.y7_c00475{bottom:736.815000px;}
.y6_c00475{bottom:761.115000px;}
.y5_c00475{bottom:785.415000px;}
.y4_c00475{bottom:808.965000px;}
.y3_c00475{bottom:835.665000px;}
.y2_c00475{bottom:858.315000px;}
.y1_c00475{bottom:880.665000px;}
.h7_c00475{height:13.200074px;}
.h8_c00475{height:43.804688px;}
.h4_c00475{height:50.028809px;}
.h5_c00475{height:73.571777px;}
.h2_c00475{height:79.497070px;}
.h3_c00475{height:84.269531px;}
.h6_c00475{height:182.320312px;}
.h1_c00475{height:986.250000px;}
.h0_c00475{height:986.325000px;}
.w2_c00475{width:104.875500px;}
.w0_c00475{width:667.425000px;}
.w1_c00475{width:667.500000px;}
.x0_c00475{left:0.000000px;}
.x7_c00475{left:40.500000px;}
.x2_c00475{left:41.850000px;}
.x8_c00475{left:88.500000px;}
.x6_c00475{left:106.200000px;}
.x5_c00475{left:114.750000px;}
.xa_c00475{left:129.300000px;}
.x9_c00475{left:130.350000px;}
.x4_c00475{left:131.850000px;}
.x3_c00475{left:133.200000px;}
.x1_c00475{left:134.550000px;}
.xc_c00475{left:156.600000px;}
.xb_c00475{left:158.250000px;}
.xe_c00475{left:285.526749px;}
.xd_c00475{left:592.350000px;}
@media print{
.v0_c00475{vertical-align:0.000000pt;}
.ls6_c00475{letter-spacing:-10.666667pt;}
.ls4_c00475{letter-spacing:0.000000pt;}
.ls3_c00475{letter-spacing:1.368000pt;}
.ls5_c00475{letter-spacing:2.666667pt;}
.ls0_c00475{letter-spacing:9.866667pt;}
.ls2_c00475{letter-spacing:38.666667pt;}
.ls1_c00475{letter-spacing:42.933333pt;}
.ws5_c00475{word-spacing:-65.621333pt;}
.ws0_c00475{word-spacing:-52.608000pt;}
.ws4_c00475{word-spacing:-19.368000pt;}
.ws2_c00475{word-spacing:-14.000000pt;}
.ws1_c00475{word-spacing:-4.117333pt;}
.ws3_c00475{word-spacing:-3.210667pt;}
.ws6_c00475{word-spacing:0.000000pt;}
._1c_c00475{margin-left:-15.840000pt;}
._19_c00475{margin-left:-12.928000pt;}
._d_c00475{margin-left:-11.456000pt;}
._1d_c00475{margin-left:-10.072000pt;}
._c_c00475{margin-left:-7.904000pt;}
._13_c00475{margin-left:-6.408000pt;}
._5_c00475{margin-left:-5.328000pt;}
._10_c00475{margin-left:-4.264000pt;}
._6_c00475{margin-left:-2.880000pt;}
._2_c00475{margin-left:-1.728000pt;}
._3_c00475{width:1.152000pt;}
._0_c00475{width:2.664000pt;}
._9_c00475{width:3.600000pt;}
._1_c00475{width:4.536000pt;}
._7_c00475{width:5.616000pt;}
._4_c00475{width:6.552000pt;}
._a_c00475{width:7.560000pt;}
._11_c00475{width:9.056000pt;}
._18_c00475{width:10.061333pt;}
._f_c00475{width:11.448000pt;}
._b_c00475{width:13.392000pt;}
._17_c00475{width:15.168000pt;}
._1f_c00475{width:16.394667pt;}
._16_c00475{width:19.189333pt;}
._12_c00475{width:28.888000pt;}
._1e_c00475{width:32.253333pt;}
._20_c00475{width:70.632000pt;}
._1b_c00475{width:131.184000pt;}
._e_c00475{width:161.992000pt;}
._8_c00475{width:206.941333pt;}
._1a_c00475{width:228.632000pt;}
._14_c00475{width:252.808000pt;}
._15_c00475{width:507.466667pt;}
.fs3_c00475{font-size:37.333333pt;}
.fs6_c00475{font-size:42.666667pt;}
.fs2_c00475{font-size:45.333333pt;}
.fs1_c00475{font-size:64.000000pt;}
.fs4_c00475{font-size:66.666667pt;}
.fs0_c00475{font-size:72.000000pt;}
.fs5_c00475{font-size:128.000000pt;}
.y0_c00475{bottom:0.000000pt;}
.y27_c00475{bottom:2.760000pt;}
.y26_c00475{bottom:6.425219pt;}
.y23_c00475{bottom:54.413333pt;}
.y22_c00475{bottom:75.880000pt;}
.y25_c00475{bottom:90.413333pt;}
.y21_c00475{bottom:98.680000pt;}
.y20_c00475{bottom:120.946667pt;}
.y24_c00475{bottom:138.946667pt;}
.y1f_c00475{bottom:142.546667pt;}
.y1e_c00475{bottom:163.213333pt;}
.y1d_c00475{bottom:185.080000pt;}
.y1c_c00475{bottom:206.813333pt;}
.y1b_c00475{bottom:228.413333pt;}
.y1a_c00475{bottom:249.880000pt;}
.y19_c00475{bottom:271.480000pt;}
.y18_c00475{bottom:293.213333pt;}
.y17_c00475{bottom:314.413333pt;}
.y16_c00475{bottom:336.013333pt;}
.y15_c00475{bottom:357.346667pt;}
.y14_c00475{bottom:378.946667pt;}
.y13_c00475{bottom:400.280000pt;}
.y12_c00475{bottom:421.613333pt;}
.y11_c00475{bottom:442.280000pt;}
.y10_c00475{bottom:463.213333pt;}
.yf_c00475{bottom:484.280000pt;}
.ye_c00475{bottom:506.413333pt;}
.yd_c00475{bottom:527.213333pt;}
.yc_c00475{bottom:548.413333pt;}
.yb_c00475{bottom:570.413333pt;}
.ya_c00475{bottom:589.613333pt;}
.y9_c00475{bottom:613.213333pt;}
.y8_c00475{bottom:635.080000pt;}
.y7_c00475{bottom:654.946667pt;}
.y6_c00475{bottom:676.546667pt;}
.y5_c00475{bottom:698.146667pt;}
.y4_c00475{bottom:719.080000pt;}
.y3_c00475{bottom:742.813333pt;}
.y2_c00475{bottom:762.946667pt;}
.y1_c00475{bottom:782.813333pt;}
.h7_c00475{height:11.733399pt;}
.h8_c00475{height:38.937500pt;}
.h4_c00475{height:44.470052pt;}
.h5_c00475{height:65.397135pt;}
.h2_c00475{height:70.664062pt;}
.h3_c00475{height:74.906250pt;}
.h6_c00475{height:162.062500pt;}
.h1_c00475{height:876.666667pt;}
.h0_c00475{height:876.733333pt;}
.w2_c00475{width:93.222667pt;}
.w0_c00475{width:593.266667pt;}
.w1_c00475{width:593.333333pt;}
.x0_c00475{left:0.000000pt;}
.x7_c00475{left:36.000000pt;}
.x2_c00475{left:37.200000pt;}
.x8_c00475{left:78.666667pt;}
.x6_c00475{left:94.400000pt;}
.x5_c00475{left:102.000000pt;}
.xa_c00475{left:114.933333pt;}
.x9_c00475{left:115.866667pt;}
.x4_c00475{left:117.200000pt;}
.x3_c00475{left:118.400000pt;}
.x1_c00475{left:119.600000pt;}
.xc_c00475{left:139.200000pt;}
.xb_c00475{left:140.666667pt;}
.xe_c00475{left:253.801554pt;}
.xd_c00475{left:526.533333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_291663ccb37f6cba0f000bd9.woff2')format("woff");}.ff1_c00476{font-family:ff1_c00476;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00476;src:url('chunks/assets/font_31884e970d78f63653c68f3c.woff2')format("woff");}.ff2_c00476{font-family:ff2_c00476;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00476;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff3_c00476{font-family:ff3_c00476;line-height:1.219238;font-style: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;}
.ls0_c00476{letter-spacing:0.000000px;}
.sc__c00476{text-shadow:none;}
.sc0_c00476{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00476{-webkit-text-stroke:0px transparent;}
.sc0_c00476{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00476{word-spacing:-59.184000px;}
.ws1_c00476{word-spacing:0.000000px;}
._15_c00476{margin-left:-26.649000px;}
._1b_c00476{margin-left:-23.274000px;}
._7_c00476{margin-left:-21.465000px;}
._8_c00476{margin-left:-17.982000px;}
._1_c00476{margin-left:-13.527000px;}
._2_c00476{margin-left:-11.178000px;}
._0_c00476{margin-left:-9.882000px;}
._17_c00476{margin-left:-8.748000px;}
._16_c00476{margin-left:-7.614000px;}
._f_c00476{margin-left:-5.589000px;}
._a_c00476{margin-left:-4.293000px;}
._c_c00476{margin-left:-2.511000px;}
._6_c00476{margin-left:-1.134000px;}
._5_c00476{width:1.782000px;}
._4_c00476{width:2.997000px;}
._3_c00476{width:4.374000px;}
._9_c00476{width:5.427000px;}
._b_c00476{width:6.480000px;}
._e_c00476{width:8.019000px;}
._d_c00476{width:9.558000px;}
._19_c00476{width:10.611000px;}
._10_c00476{width:11.664000px;}
._12_c00476{width:13.527000px;}
._14_c00476{width:14.661000px;}
._1a_c00476{width:15.876000px;}
._11_c00476{width:16.929000px;}
._13_c00476{width:18.063000px;}
._1d_c00476{width:24.786000px;}
._18_c00476{width:25.839000px;}
._1e_c00476{width:29.403000px;}
._1c_c00476{width:125.712000px;}
.fc2_c00476{color:transparent;}
.fc1_c00476{color:rgb(128,128,128);}
.fc0_c00476{color:rgb(0,0,0);}
.fs2_c00476{font-size:48.000000px;}
.fs1_c00476{font-size:72.000000px;}
.fs0_c00476{font-size:81.000000px;}
.y0_c00476{bottom:0.000000px;}
.y24_c00476{bottom:3.105000px;}
.y23_c00476{bottom:7.228371px;}
.y22_c00476{bottom:94.215000px;}
.y21_c00476{bottom:118.515000px;}
.y20_c00476{bottom:143.115000px;}
.y1f_c00476{bottom:168.465000px;}
.y1e_c00476{bottom:193.065000px;}
.y1d_c00476{bottom:216.765000px;}
.y1c_c00476{bottom:240.315000px;}
.y1b_c00476{bottom:265.965000px;}
.y1a_c00476{bottom:289.365000px;}
.y19_c00476{bottom:313.515000px;}
.y18_c00476{bottom:337.815000px;}
.y17_c00476{bottom:361.515000px;}
.y16_c00476{bottom:385.215000px;}
.y15_c00476{bottom:409.365000px;}
.y14_c00476{bottom:433.065000px;}
.y13_c00476{bottom:456.765000px;}
.y12_c00476{bottom:480.915000px;}
.y11_c00476{bottom:504.915000px;}
.y10_c00476{bottom:528.615000px;}
.yf_c00476{bottom:552.465000px;}
.ye_c00476{bottom:576.165000px;}
.yd_c00476{bottom:599.715000px;}
.yc_c00476{bottom:623.415000px;}
.yb_c00476{bottom:647.415000px;}
.ya_c00476{bottom:671.415000px;}
.y9_c00476{bottom:694.965000px;}
.y8_c00476{bottom:718.965000px;}
.y7_c00476{bottom:742.515000px;}
.y6_c00476{bottom:766.515000px;}
.y5_c00476{bottom:790.215000px;}
.y4_c00476{bottom:814.515000px;}
.y3_c00476{bottom:838.365000px;}
.y2_c00476{bottom:862.065000px;}
.y1_c00476{bottom:886.065000px;}
.h4_c00476{height:13.200074px;}
.h5_c00476{height:43.804688px;}
.h2_c00476{height:79.497070px;}
.h3_c00476{height:84.269531px;}
.h0_c00476{height:989.025000px;}
.h1_c00476{height:989.250000px;}
.w1_c00476{width:104.875500px;}
.w0_c00476{width:672.000000px;}
.x0_c00476{left:0.000000px;}
.x1_c00476{left:51.000000px;}
.x2_c00476{left:52.950000px;}
.x3_c00476{left:55.350000px;}
.x4_c00476{left:56.400000px;}
.x5_c00476{left:57.750000px;}
.x6_c00476{left:59.700000px;}
.x7_c00476{left:61.050000px;}
.x8_c00476{left:62.100000px;}
.x9_c00476{left:63.150000px;}
.xa_c00476{left:64.350000px;}
.xb_c00476{left:65.700000px;}
.xc_c00476{left:287.814240px;}
@media print{
.v0_c00476{vertical-align:0.000000pt;}
.ls0_c00476{letter-spacing:0.000000pt;}
.ws0_c00476{word-spacing:-52.608000pt;}
.ws1_c00476{word-spacing:0.000000pt;}
._15_c00476{margin-left:-23.688000pt;}
._1b_c00476{margin-left:-20.688000pt;}
._7_c00476{margin-left:-19.080000pt;}
._8_c00476{margin-left:-15.984000pt;}
._1_c00476{margin-left:-12.024000pt;}
._2_c00476{margin-left:-9.936000pt;}
._0_c00476{margin-left:-8.784000pt;}
._17_c00476{margin-left:-7.776000pt;}
._16_c00476{margin-left:-6.768000pt;}
._f_c00476{margin-left:-4.968000pt;}
._a_c00476{margin-left:-3.816000pt;}
._c_c00476{margin-left:-2.232000pt;}
._6_c00476{margin-left:-1.008000pt;}
._5_c00476{width:1.584000pt;}
._4_c00476{width:2.664000pt;}
._3_c00476{width:3.888000pt;}
._9_c00476{width:4.824000pt;}
._b_c00476{width:5.760000pt;}
._e_c00476{width:7.128000pt;}
._d_c00476{width:8.496000pt;}
._19_c00476{width:9.432000pt;}
._10_c00476{width:10.368000pt;}
._12_c00476{width:12.024000pt;}
._14_c00476{width:13.032000pt;}
._1a_c00476{width:14.112000pt;}
._11_c00476{width:15.048000pt;}
._13_c00476{width:16.056000pt;}
._1d_c00476{width:22.032000pt;}
._18_c00476{width:22.968000pt;}
._1e_c00476{width:26.136000pt;}
._1c_c00476{width:111.744000pt;}
.fs2_c00476{font-size:42.666667pt;}
.fs1_c00476{font-size:64.000000pt;}
.fs0_c00476{font-size:72.000000pt;}
.y0_c00476{bottom:0.000000pt;}
.y24_c00476{bottom:2.760000pt;}
.y23_c00476{bottom:6.425219pt;}
.y22_c00476{bottom:83.746667pt;}
.y21_c00476{bottom:105.346667pt;}
.y20_c00476{bottom:127.213333pt;}
.y1f_c00476{bottom:149.746667pt;}
.y1e_c00476{bottom:171.613333pt;}
.y1d_c00476{bottom:192.680000pt;}
.y1c_c00476{bottom:213.613333pt;}
.y1b_c00476{bottom:236.413333pt;}
.y1a_c00476{bottom:257.213333pt;}
.y19_c00476{bottom:278.680000pt;}
.y18_c00476{bottom:300.280000pt;}
.y17_c00476{bottom:321.346667pt;}
.y16_c00476{bottom:342.413333pt;}
.y15_c00476{bottom:363.880000pt;}
.y14_c00476{bottom:384.946667pt;}
.y13_c00476{bottom:406.013333pt;}
.y12_c00476{bottom:427.480000pt;}
.y11_c00476{bottom:448.813333pt;}
.y10_c00476{bottom:469.880000pt;}
.yf_c00476{bottom:491.080000pt;}
.ye_c00476{bottom:512.146667pt;}
.yd_c00476{bottom:533.080000pt;}
.yc_c00476{bottom:554.146667pt;}
.yb_c00476{bottom:575.480000pt;}
.ya_c00476{bottom:596.813333pt;}
.y9_c00476{bottom:617.746667pt;}
.y8_c00476{bottom:639.080000pt;}
.y7_c00476{bottom:660.013333pt;}
.y6_c00476{bottom:681.346667pt;}
.y5_c00476{bottom:702.413333pt;}
.y4_c00476{bottom:724.013333pt;}
.y3_c00476{bottom:745.213333pt;}
.y2_c00476{bottom:766.280000pt;}
.y1_c00476{bottom:787.613333pt;}
.h4_c00476{height:11.733399pt;}
.h5_c00476{height:38.937500pt;}
.h2_c00476{height:70.664062pt;}
.h3_c00476{height:74.906250pt;}
.h0_c00476{height:879.133333pt;}
.h1_c00476{height:879.333333pt;}
.w1_c00476{width:93.222667pt;}
.w0_c00476{width:597.333333pt;}
.x0_c00476{left:0.000000pt;}
.x1_c00476{left:45.333333pt;}
.x2_c00476{left:47.066667pt;}
.x3_c00476{left:49.200000pt;}
.x4_c00476{left:50.133333pt;}
.x5_c00476{left:51.333333pt;}
.x6_c00476{left:53.066667pt;}
.x7_c00476{left:54.266667pt;}
.x8_c00476{left:55.200000pt;}
.x9_c00476{left:56.133333pt;}
.xa_c00476{left:57.200000pt;}
.xb_c00476{left:58.400000pt;}
.xc_c00476{left:255.834880pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e0d6f1a7c4db1248f6ac3e69.woff2')format("woff");}.ff1_c00477{font-family:ff1_c00477;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00477;src:url('chunks/assets/font_6f37555107fbe40acf89303b.woff2')format("woff");}.ff2_c00477{font-family:ff2_c00477;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00477;src:url('chunks/assets/font_c9b7e689a4471b7d24147f53.woff2')format("woff");}.ff3_c00477{font-family:ff3_c00477;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00477;src:url('chunks/assets/font_5f7414fdadbf946e9cab9672.woff2')format("woff");}.ff4_c00477{font-family:ff4_c00477;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00477;src:url('chunks/assets/font_1fc4daf11b18e45ec004354a.woff2')format("woff");}.ff5_c00477{font-family:ff5_c00477;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00477;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c00477{font-family:ff6_c00477;line-height:1.219238;font-style: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;}
.ls4_c00477{letter-spacing:0.000000px;}
.ls2_c00477{letter-spacing:0.600000px;}
.ls5_c00477{letter-spacing:3.000000px;}
.ls1_c00477{letter-spacing:4.800000px;}
.ls0_c00477{letter-spacing:24.750000px;}
.ls3_c00477{letter-spacing:311.550000px;}
.sc__c00477{text-shadow:none;}
.sc0_c00477{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00477{-webkit-text-stroke:0px transparent;}
.sc0_c00477{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00477{word-spacing:-17.352000px;}
.ws2_c00477{word-spacing:0.000000px;}
.ws1_c00477{word-spacing:6.030000px;}
._24_c00477{margin-left:-29.322000px;}
._2a_c00477{margin-left:-24.915000px;}
._22_c00477{margin-left:-19.683000px;}
._18_c00477{margin-left:-16.503000px;}
._17_c00477{margin-left:-13.581000px;}
._12_c00477{margin-left:-12.150000px;}
._c_c00477{margin-left:-10.611000px;}
._a_c00477{margin-left:-7.905000px;}
._7_c00477{margin-left:-5.832000px;}
._10_c00477{margin-left:-4.779000px;}
._8_c00477{margin-left:-3.600000px;}
._2_c00477{margin-left:-1.944000px;}
._3_c00477{width:1.782000px;}
._1_c00477{width:2.997000px;}
._5_c00477{width:4.131000px;}
._0_c00477{width:5.427000px;}
._4_c00477{width:7.209000px;}
._e_c00477{width:8.262000px;}
._d_c00477{width:9.315000px;}
._6_c00477{width:10.530000px;}
._1d_c00477{width:11.826000px;}
._13_c00477{width:13.158000px;}
._11_c00477{width:14.292000px;}
._14_c00477{width:16.677000px;}
._1f_c00477{width:19.260000px;}
._1e_c00477{width:20.412000px;}
._21_c00477{width:22.488000px;}
._1a_c00477{width:24.462000px;}
._15_c00477{width:25.548000px;}
._19_c00477{width:28.074000px;}
._20_c00477{width:32.463000px;}
._1b_c00477{width:38.769000px;}
._29_c00477{width:52.650000px;}
._26_c00477{width:82.911000px;}
._28_c00477{width:95.142000px;}
._1c_c00477{width:134.640000px;}
._9_c00477{width:151.503000px;}
._b_c00477{width:166.617000px;}
._27_c00477{width:190.803000px;}
._23_c00477{width:197.676000px;}
._25_c00477{width:204.444000px;}
._f_c00477{width:310.752000px;}
._16_c00477{width:359.364000px;}
._2b_c00477{width:1629.954000px;}
.fc2_c00477{color:transparent;}
.fc1_c00477{color:rgb(128,128,128);}
.fc0_c00477{color:rgb(0,0,0);}
.fs4_c00477{font-size:42.000000px;}
.fs6_c00477{font-size:48.000000px;}
.fs3_c00477{font-size:66.000000px;}
.fs2_c00477{font-size:69.000000px;}
.fs1_c00477{font-size:72.000000px;}
.fs0_c00477{font-size:81.000000px;}
.fs5_c00477{font-size:87.000000px;}
.y0_c00477{bottom:0.000000px;}
.y25_c00477{bottom:3.105000px;}
.y24_c00477{bottom:7.228371px;}
.y23_c00477{bottom:70.665000px;}
.y22_c00477{bottom:95.865000px;}
.y21_c00477{bottom:120.165000px;}
.y20_c00477{bottom:143.865000px;}
.y1f_c00477{bottom:168.465000px;}
.y1e_c00477{bottom:192.765000px;}
.y1d_c00477{bottom:217.065000px;}
.y1c_c00477{bottom:241.365000px;}
.y1b_c00477{bottom:265.665000px;}
.y1a_c00477{bottom:289.965000px;}
.y19_c00477{bottom:314.565000px;}
.y18_c00477{bottom:338.565000px;}
.y17_c00477{bottom:362.865000px;}
.y16_c00477{bottom:387.915000px;}
.y15_c00477{bottom:412.515000px;}
.y14_c00477{bottom:435.015000px;}
.y13_c00477{bottom:460.665000px;}
.y12_c00477{bottom:483.015000px;}
.y11_c00477{bottom:506.265000px;}
.y10_c00477{bottom:529.965000px;}
.yf_c00477{bottom:553.965000px;}
.ye_c00477{bottom:577.815000px;}
.yd_c00477{bottom:601.815000px;}
.yc_c00477{bottom:625.815000px;}
.yb_c00477{bottom:649.665000px;}
.ya_c00477{bottom:673.665000px;}
.y9_c00477{bottom:697.665000px;}
.y8_c00477{bottom:721.365000px;}
.y7_c00477{bottom:745.515000px;}
.y6_c00477{bottom:769.215000px;}
.y5_c00477{bottom:793.515000px;}
.y4_c00477{bottom:817.515000px;}
.y3_c00477{bottom:841.065000px;}
.y2_c00477{bottom:867.765000px;}
.y1_c00477{bottom:889.065000px;}
.h5_c00477{height:13.200074px;}
.h6_c00477{height:43.804688px;}
.h2_c00477{height:79.497070px;}
.h3_c00477{height:84.269531px;}
.h4_c00477{height:87.679688px;}
.h1_c00477{height:986.250000px;}
.h0_c00477{height:986.325000px;}
.w2_c00477{width:104.875500px;}
.w0_c00477{width:667.425000px;}
.w1_c00477{width:667.500000px;}
.x0_c00477{left:0.000000px;}
.xe_c00477{left:21.600000px;}
.x9_c00477{left:23.250000px;}
.x8_c00477{left:24.750000px;}
.x2_c00477{left:25.950000px;}
.xf_c00477{left:37.800000px;}
.xc_c00477{left:55.650000px;}
.xa_c00477{left:99.300000px;}
.xd_c00477{left:111.450000px;}
.xb_c00477{left:113.700000px;}
.x7_c00477{left:115.050000px;}
.x5_c00477{left:116.400000px;}
.x4_c00477{left:117.750000px;}
.x3_c00477{left:118.800000px;}
.x1_c00477{left:119.850000px;}
.x6_c00477{left:121.500000px;}
.x10_c00477{left:131.250000px;}
.x11_c00477{left:285.526749px;}
@media print{
.v0_c00477{vertical-align:0.000000pt;}
.ls4_c00477{letter-spacing:0.000000pt;}
.ls2_c00477{letter-spacing:0.533333pt;}
.ls5_c00477{letter-spacing:2.666667pt;}
.ls1_c00477{letter-spacing:4.266667pt;}
.ls0_c00477{letter-spacing:22.000000pt;}
.ls3_c00477{letter-spacing:276.933333pt;}
.ws0_c00477{word-spacing:-15.424000pt;}
.ws2_c00477{word-spacing:0.000000pt;}
.ws1_c00477{word-spacing:5.360000pt;}
._24_c00477{margin-left:-26.064000pt;}
._2a_c00477{margin-left:-22.146667pt;}
._22_c00477{margin-left:-17.496000pt;}
._18_c00477{margin-left:-14.669333pt;}
._17_c00477{margin-left:-12.072000pt;}
._12_c00477{margin-left:-10.800000pt;}
._c_c00477{margin-left:-9.432000pt;}
._a_c00477{margin-left:-7.026667pt;}
._7_c00477{margin-left:-5.184000pt;}
._10_c00477{margin-left:-4.248000pt;}
._8_c00477{margin-left:-3.200000pt;}
._2_c00477{margin-left:-1.728000pt;}
._3_c00477{width:1.584000pt;}
._1_c00477{width:2.664000pt;}
._5_c00477{width:3.672000pt;}
._0_c00477{width:4.824000pt;}
._4_c00477{width:6.408000pt;}
._e_c00477{width:7.344000pt;}
._d_c00477{width:8.280000pt;}
._6_c00477{width:9.360000pt;}
._1d_c00477{width:10.512000pt;}
._13_c00477{width:11.696000pt;}
._11_c00477{width:12.704000pt;}
._14_c00477{width:14.824000pt;}
._1f_c00477{width:17.120000pt;}
._1e_c00477{width:18.144000pt;}
._21_c00477{width:19.989333pt;}
._1a_c00477{width:21.744000pt;}
._15_c00477{width:22.709333pt;}
._19_c00477{width:24.954667pt;}
._20_c00477{width:28.856000pt;}
._1b_c00477{width:34.461333pt;}
._29_c00477{width:46.800000pt;}
._26_c00477{width:73.698667pt;}
._28_c00477{width:84.570667pt;}
._1c_c00477{width:119.680000pt;}
._9_c00477{width:134.669333pt;}
._b_c00477{width:148.104000pt;}
._27_c00477{width:169.602667pt;}
._23_c00477{width:175.712000pt;}
._25_c00477{width:181.728000pt;}
._f_c00477{width:276.224000pt;}
._16_c00477{width:319.434667pt;}
._2b_c00477{width:1448.848000pt;}
.fs4_c00477{font-size:37.333333pt;}
.fs6_c00477{font-size:42.666667pt;}
.fs3_c00477{font-size:58.666667pt;}
.fs2_c00477{font-size:61.333333pt;}
.fs1_c00477{font-size:64.000000pt;}
.fs0_c00477{font-size:72.000000pt;}
.fs5_c00477{font-size:77.333333pt;}
.y0_c00477{bottom:0.000000pt;}
.y25_c00477{bottom:2.760000pt;}
.y24_c00477{bottom:6.425219pt;}
.y23_c00477{bottom:62.813333pt;}
.y22_c00477{bottom:85.213333pt;}
.y21_c00477{bottom:106.813333pt;}
.y20_c00477{bottom:127.880000pt;}
.y1f_c00477{bottom:149.746667pt;}
.y1e_c00477{bottom:171.346667pt;}
.y1d_c00477{bottom:192.946667pt;}
.y1c_c00477{bottom:214.546667pt;}
.y1b_c00477{bottom:236.146667pt;}
.y1a_c00477{bottom:257.746667pt;}
.y19_c00477{bottom:279.613333pt;}
.y18_c00477{bottom:300.946667pt;}
.y17_c00477{bottom:322.546667pt;}
.y16_c00477{bottom:344.813333pt;}
.y15_c00477{bottom:366.680000pt;}
.y14_c00477{bottom:386.680000pt;}
.y13_c00477{bottom:409.480000pt;}
.y12_c00477{bottom:429.346667pt;}
.y11_c00477{bottom:450.013333pt;}
.y10_c00477{bottom:471.080000pt;}
.yf_c00477{bottom:492.413333pt;}
.ye_c00477{bottom:513.613333pt;}
.yd_c00477{bottom:534.946667pt;}
.yc_c00477{bottom:556.280000pt;}
.yb_c00477{bottom:577.480000pt;}
.ya_c00477{bottom:598.813333pt;}
.y9_c00477{bottom:620.146667pt;}
.y8_c00477{bottom:641.213333pt;}
.y7_c00477{bottom:662.680000pt;}
.y6_c00477{bottom:683.746667pt;}
.y5_c00477{bottom:705.346667pt;}
.y4_c00477{bottom:726.680000pt;}
.y3_c00477{bottom:747.613333pt;}
.y2_c00477{bottom:771.346667pt;}
.y1_c00477{bottom:790.280000pt;}
.h5_c00477{height:11.733399pt;}
.h6_c00477{height:38.937500pt;}
.h2_c00477{height:70.664062pt;}
.h3_c00477{height:74.906250pt;}
.h4_c00477{height:77.937500pt;}
.h1_c00477{height:876.666667pt;}
.h0_c00477{height:876.733333pt;}
.w2_c00477{width:93.222667pt;}
.w0_c00477{width:593.266667pt;}
.w1_c00477{width:593.333333pt;}
.x0_c00477{left:0.000000pt;}
.xe_c00477{left:19.200000pt;}
.x9_c00477{left:20.666667pt;}
.x8_c00477{left:22.000000pt;}
.x2_c00477{left:23.066667pt;}
.xf_c00477{left:33.600000pt;}
.xc_c00477{left:49.466667pt;}
.xa_c00477{left:88.266667pt;}
.xd_c00477{left:99.066667pt;}
.xb_c00477{left:101.066667pt;}
.x7_c00477{left:102.266667pt;}
.x5_c00477{left:103.466667pt;}
.x4_c00477{left:104.666667pt;}
.x3_c00477{left:105.600000pt;}
.x1_c00477{left:106.533333pt;}
.x6_c00477{left:108.000000pt;}
.x10_c00477{left:116.666667pt;}
.x11_c00477{left:253.801554pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e43c4f5bd44c56b305d986bd.woff2')format("woff");}.ff1_c00478{font-family:ff1_c00478;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00478;src:url('chunks/assets/font_7e12e81033c26c0074cc8f2d.woff2')format("woff");}.ff2_c00478{font-family:ff2_c00478;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00478;src:url('chunks/assets/font_5b13aeb56f3902e5f384a426.woff2')format("woff");}.ff3_c00478{font-family:ff3_c00478;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00478;src:url('chunks/assets/font_82604d17128c2826b681a8ec.woff2')format("woff");}.ff4_c00478{font-family:ff4_c00478;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00478;src:url('chunks/assets/font_8de590a37183de180906d1d1.woff2')format("woff");}.ff5_c00478{font-family:ff5_c00478;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00478;src:url('chunks/assets/font_4feb931ba823d3d58a7e108e.woff2')format("woff");}.ff6_c00478{font-family:ff6_c00478;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00478;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c00478{font-family:ff7_c00478;line-height:1.219238;font-style: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;}
.ls0_c00478{letter-spacing:0.000000px;}
.ls1_c00478{letter-spacing:9.000000px;}
.sc__c00478{text-shadow:none;}
.sc0_c00478{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00478{-webkit-text-stroke:0px transparent;}
.sc0_c00478{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00478{word-spacing:-76.686000px;}
.ws1_c00478{word-spacing:-48.518400px;}
.ws2_c00478{word-spacing:0.000000px;}
._1f_c00478{margin-left:-17.956200px;}
._20_c00478{margin-left:-16.014000px;}
._14_c00478{margin-left:-13.392000px;}
._15_c00478{margin-left:-11.280000px;}
._0_c00478{margin-left:-8.118000px;}
._e_c00478{margin-left:-7.101000px;}
._2_c00478{margin-left:-5.940000px;}
._6_c00478{margin-left:-4.158000px;}
._1_c00478{margin-left:-2.970000px;}
._5_c00478{margin-left:-1.584000px;}
._9_c00478{width:1.215000px;}
._7_c00478{width:2.268000px;}
._8_c00478{width:3.564000px;}
._3_c00478{width:5.346000px;}
._a_c00478{width:6.705000px;}
._d_c00478{width:7.875000px;}
._c_c00478{width:9.279000px;}
._f_c00478{width:10.287000px;}
._12_c00478{width:11.358000px;}
._4_c00478{width:12.375000px;}
._11_c00478{width:13.689000px;}
._10_c00478{width:15.147000px;}
._b_c00478{width:22.095000px;}
._13_c00478{width:24.165000px;}
._1e_c00478{width:27.207000px;}
._19_c00478{width:28.512000px;}
._17_c00478{width:32.568000px;}
._1d_c00478{width:33.741000px;}
._1a_c00478{width:47.511000px;}
._1c_c00478{width:50.652000px;}
._1b_c00478{width:93.492000px;}
._18_c00478{width:110.337000px;}
._16_c00478{width:405.468000px;}
.fc2_c00478{color:transparent;}
.fc1_c00478{color:rgb(128,128,128);}
.fc0_c00478{color:rgb(0,0,0);}
.fs7_c00478{font-size:48.000000px;}
.fs4_c00478{font-size:51.000000px;}
.fs6_c00478{font-size:67.200000px;}
.fs2_c00478{font-size:78.000000px;}
.fs1_c00478{font-size:81.000000px;}
.fs3_c00478{font-size:84.000000px;}
.fs5_c00478{font-size:87.000000px;}
.fs0_c00478{font-size:99.000000px;}
.y0_c00478{bottom:0.000000px;}
.y22_c00478{bottom:3.105000px;}
.y21_c00478{bottom:7.228371px;}
.y20_c00478{bottom:87.765000px;}
.y1f_c00478{bottom:112.815000px;}
.y1e_c00478{bottom:136.365000px;}
.y1d_c00478{bottom:159.765000px;}
.y1c_c00478{bottom:185.265000px;}
.y1b_c00478{bottom:208.965000px;}
.y1a_c00478{bottom:233.565000px;}
.y19_c00478{bottom:257.565000px;}
.y18_c00478{bottom:307.515000px;}
.y17_c00478{bottom:335.565000px;}
.y16_c00478{bottom:364.965000px;}
.y15_c00478{bottom:392.865000px;}
.y14_c00478{bottom:447.915000px;}
.y13_c00478{bottom:471.465000px;}
.y12_c00478{bottom:494.565000px;}
.y11_c00478{bottom:519.465000px;}
.y10_c00478{bottom:543.465000px;}
.yf_c00478{bottom:566.715000px;}
.ye_c00478{bottom:590.415000px;}
.yd_c00478{bottom:614.265000px;}
.yc_c00478{bottom:637.965000px;}
.yb_c00478{bottom:661.515000px;}
.ya_c00478{bottom:685.515000px;}
.y9_c00478{bottom:709.215000px;}
.y8_c00478{bottom:733.065000px;}
.y7_c00478{bottom:757.215000px;}
.y6_c00478{bottom:781.065000px;}
.y5_c00478{bottom:804.915000px;}
.y4_c00478{bottom:828.615000px;}
.y3_c00478{bottom:852.915000px;}
.y2_c00478{bottom:876.615000px;}
.y1_c00478{bottom:911.565000px;}
.h8_c00478{height:13.200074px;}
.h9_c00478{height:43.804688px;}
.h3_c00478{height:79.497070px;}
.h6_c00478{height:82.400391px;}
.h5_c00478{height:82.441406px;}
.h7_c00478{height:91.176000px;}
.h4_c00478{height:98.756836px;}
.h2_c00478{height:115.870605px;}
.h0_c00478{height:989.025000px;}
.h1_c00478{height:989.250000px;}
.w1_c00478{width:104.875500px;}
.w0_c00478{width:672.000000px;}
.x0_c00478{left:0.000000px;}
.xb_c00478{left:42.450000px;}
.x3_c00478{left:43.650000px;}
.x2_c00478{left:44.850000px;}
.x4_c00478{left:45.900000px;}
.x5_c00478{left:72.600000px;}
.x1_c00478{left:113.700000px;}
.x6_c00478{left:140.100000px;}
.x8_c00478{left:158.250000px;}
.x9_c00478{left:171.150000px;}
.xa_c00478{left:172.350000px;}
.x7_c00478{left:226.350000px;}
.xc_c00478{left:287.814240px;}
@media print{
.v0_c00478{vertical-align:0.000000pt;}
.ls0_c00478{letter-spacing:0.000000pt;}
.ls1_c00478{letter-spacing:8.000000pt;}
.ws0_c00478{word-spacing:-68.165333pt;}
.ws1_c00478{word-spacing:-43.127467pt;}
.ws2_c00478{word-spacing:0.000000pt;}
._1f_c00478{margin-left:-15.961067pt;}
._20_c00478{margin-left:-14.234667pt;}
._14_c00478{margin-left:-11.904000pt;}
._15_c00478{margin-left:-10.026667pt;}
._0_c00478{margin-left:-7.216000pt;}
._e_c00478{margin-left:-6.312000pt;}
._2_c00478{margin-left:-5.280000pt;}
._6_c00478{margin-left:-3.696000pt;}
._1_c00478{margin-left:-2.640000pt;}
._5_c00478{margin-left:-1.408000pt;}
._9_c00478{width:1.080000pt;}
._7_c00478{width:2.016000pt;}
._8_c00478{width:3.168000pt;}
._3_c00478{width:4.752000pt;}
._a_c00478{width:5.960000pt;}
._d_c00478{width:7.000000pt;}
._c_c00478{width:8.248000pt;}
._f_c00478{width:9.144000pt;}
._12_c00478{width:10.096000pt;}
._4_c00478{width:11.000000pt;}
._11_c00478{width:12.168000pt;}
._10_c00478{width:13.464000pt;}
._b_c00478{width:19.640000pt;}
._13_c00478{width:21.480000pt;}
._1e_c00478{width:24.184000pt;}
._19_c00478{width:25.344000pt;}
._17_c00478{width:28.949333pt;}
._1d_c00478{width:29.992000pt;}
._1a_c00478{width:42.232000pt;}
._1c_c00478{width:45.024000pt;}
._1b_c00478{width:83.104000pt;}
._18_c00478{width:98.077333pt;}
._16_c00478{width:360.416000pt;}
.fs7_c00478{font-size:42.666667pt;}
.fs4_c00478{font-size:45.333333pt;}
.fs6_c00478{font-size:59.733333pt;}
.fs2_c00478{font-size:69.333333pt;}
.fs1_c00478{font-size:72.000000pt;}
.fs3_c00478{font-size:74.666667pt;}
.fs5_c00478{font-size:77.333333pt;}
.fs0_c00478{font-size:88.000000pt;}
.y0_c00478{bottom:0.000000pt;}
.y22_c00478{bottom:2.760000pt;}
.y21_c00478{bottom:6.425219pt;}
.y20_c00478{bottom:78.013333pt;}
.y1f_c00478{bottom:100.280000pt;}
.y1e_c00478{bottom:121.213333pt;}
.y1d_c00478{bottom:142.013333pt;}
.y1c_c00478{bottom:164.680000pt;}
.y1b_c00478{bottom:185.746667pt;}
.y1a_c00478{bottom:207.613333pt;}
.y19_c00478{bottom:228.946667pt;}
.y18_c00478{bottom:273.346667pt;}
.y17_c00478{bottom:298.280000pt;}
.y16_c00478{bottom:324.413333pt;}
.y15_c00478{bottom:349.213333pt;}
.y14_c00478{bottom:398.146667pt;}
.y13_c00478{bottom:419.080000pt;}
.y12_c00478{bottom:439.613333pt;}
.y11_c00478{bottom:461.746667pt;}
.y10_c00478{bottom:483.080000pt;}
.yf_c00478{bottom:503.746667pt;}
.ye_c00478{bottom:524.813333pt;}
.yd_c00478{bottom:546.013333pt;}
.yc_c00478{bottom:567.080000pt;}
.yb_c00478{bottom:588.013333pt;}
.ya_c00478{bottom:609.346667pt;}
.y9_c00478{bottom:630.413333pt;}
.y8_c00478{bottom:651.613333pt;}
.y7_c00478{bottom:673.080000pt;}
.y6_c00478{bottom:694.280000pt;}
.y5_c00478{bottom:715.480000pt;}
.y4_c00478{bottom:736.546667pt;}
.y3_c00478{bottom:758.146667pt;}
.y2_c00478{bottom:779.213333pt;}
.y1_c00478{bottom:810.280000pt;}
.h8_c00478{height:11.733399pt;}
.h9_c00478{height:38.937500pt;}
.h3_c00478{height:70.664062pt;}
.h6_c00478{height:73.244792pt;}
.h5_c00478{height:73.281250pt;}
.h7_c00478{height:81.045333pt;}
.h4_c00478{height:87.783854pt;}
.h2_c00478{height:102.996094pt;}
.h0_c00478{height:879.133333pt;}
.h1_c00478{height:879.333333pt;}
.w1_c00478{width:93.222667pt;}
.w0_c00478{width:597.333333pt;}
.x0_c00478{left:0.000000pt;}
.xb_c00478{left:37.733333pt;}
.x3_c00478{left:38.800000pt;}
.x2_c00478{left:39.866667pt;}
.x4_c00478{left:40.800000pt;}
.x5_c00478{left:64.533333pt;}
.x1_c00478{left:101.066667pt;}
.x6_c00478{left:124.533333pt;}
.x8_c00478{left:140.666667pt;}
.x9_c00478{left:152.133333pt;}
.xa_c00478{left:153.200000pt;}
.x7_c00478{left:201.200000pt;}
.xc_c00478{left:255.834880pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_551c9fc4b69b9c4142531378.woff2')format("woff");}.ff1_c00479{font-family:ff1_c00479;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00479;src:url('chunks/assets/font_7d96af2c561d184949965753.woff2')format("woff");}.ff2_c00479{font-family:ff2_c00479;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00479;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff3_c00479{font-family:ff3_c00479;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00479;src:url('chunks/assets/font_dbfb3469288db147e9e2a84b.woff2')format("woff");}.ff4_c00479{font-family:ff4_c00479;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00479;src:url('chunks/assets/font_5074ca7b8380a99032598e13.woff2')format("woff");}.ff5_c00479{font-family:ff5_c00479;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00479;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c00479{font-family:ff6_c00479;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00479{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,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;}
.ls3_c00479{letter-spacing:0.000000px;}
.ls2_c00479{letter-spacing:2.802000px;}
.ls4_c00479{letter-spacing:9.000000px;}
.ls0_c00479{letter-spacing:10.002000px;}
.ls1_c00479{letter-spacing:26.802000px;}
.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;}
}
.ws3_c00479{word-spacing:-76.686000px;}
.ws4_c00479{word-spacing:-27.000000px;}
.ws0_c00479{word-spacing:-17.352000px;}
.ws1_c00479{word-spacing:-13.737000px;}
.ws5_c00479{word-spacing:0.000000px;}
.ws2_c00479{word-spacing:0.570000px;}
._14_c00479{margin-left:-13.353000px;}
._9_c00479{margin-left:-12.006000px;}
._f_c00479{margin-left:-10.020000px;}
._11_c00479{margin-left:-8.523000px;}
._e_c00479{margin-left:-7.182000px;}
._c_c00479{margin-left:-6.111000px;}
._d_c00479{margin-left:-4.671000px;}
._b_c00479{margin-left:-3.510000px;}
._6_c00479{margin-left:-2.409000px;}
._a_c00479{margin-left:-1.341000px;}
._10_c00479{width:1.029000px;}
._4_c00479{width:2.052000px;}
._3_c00479{width:3.249000px;}
._0_c00479{width:4.275000px;}
._1_c00479{width:5.415000px;}
._5_c00479{width:7.182000px;}
._2_c00479{width:8.721000px;}
._7_c00479{width:9.723000px;}
._12_c00479{width:11.424000px;}
._8_c00479{width:13.638000px;}
._13_c00479{width:15.741000px;}
._15_c00479{width:17.496000px;}
._18_c00479{width:25.023000px;}
._1a_c00479{width:29.553000px;}
._19_c00479{width:85.521000px;}
._1b_c00479{width:244.419000px;}
._16_c00479{width:324.675000px;}
._17_c00479{width:366.684000px;}
._1c_c00479{width:1137.270000px;}
.fc2_c00479{color:transparent;}
.fc1_c00479{color:rgb(128,128,128);}
.fc0_c00479{color:rgb(0,0,0);}
.fs6_c00479{font-size:48.000000px;}
.fs0_c00479{font-size:57.000000px;}
.fs1_c00479{font-size:72.000000px;}
.fs3_c00479{font-size:78.000000px;}
.fs2_c00479{font-size:81.000000px;}
.fs4_c00479{font-size:87.000000px;}
.fs5_c00479{font-size:108.000000px;}
.y0_c00479{bottom:0.000000px;}
.y25_c00479{bottom:3.105000px;}
.y24_c00479{bottom:7.228363px;}
.y23_c00479{bottom:67.200000px;}
.y22_c00479{bottom:90.150000px;}
.y21_c00479{bottom:115.500000px;}
.y20_c00479{bottom:138.450000px;}
.y1f_c00479{bottom:164.700000px;}
.y1e_c00479{bottom:189.300000px;}
.y1d_c00479{bottom:214.050000px;}
.y1c_c00479{bottom:237.600000px;}
.y1b_c00479{bottom:261.300000px;}
.y1a_c00479{bottom:285.900000px;}
.y19_c00479{bottom:310.200000px;}
.y18_c00479{bottom:333.450000px;}
.y17_c00479{bottom:358.500000px;}
.y16_c00479{bottom:382.500000px;}
.y15_c00479{bottom:405.750000px;}
.y14_c00479{bottom:430.350000px;}
.y13_c00479{bottom:454.350000px;}
.y12_c00479{bottom:477.900000px;}
.y11_c00479{bottom:501.600000px;}
.y10_c00479{bottom:525.450000px;}
.yf_c00479{bottom:548.850000px;}
.ye_c00479{bottom:572.700000px;}
.yd_c00479{bottom:597.000000px;}
.yc_c00479{bottom:621.000000px;}
.yb_c00479{bottom:645.000000px;}
.ya_c00479{bottom:669.000000px;}
.y9_c00479{bottom:692.250000px;}
.y8_c00479{bottom:716.250000px;}
.y7_c00479{bottom:740.250000px;}
.y6_c00479{bottom:764.400000px;}
.y5_c00479{bottom:788.400000px;}
.y4_c00479{bottom:812.100000px;}
.y3_c00479{bottom:836.100000px;}
.y2_c00479{bottom:859.650000px;}
.y1_c00479{bottom:883.800000px;}
.h8_c00479{height:13.200074px;}
.h9_c00479{height:43.804688px;}
.h4_c00479{height:72.168457px;}
.h3_c00479{height:79.497070px;}
.h2_c00479{height:84.269531px;}
.h6_c00479{height:91.176000px;}
.h5_c00479{height:98.756836px;}
.h7_c00479{height:108.843750px;}
.h1_c00479{height:977.250000px;}
.h0_c00479{height:977.400000px;}
.w1_c00479{width:104.875500px;}
.w0_c00479{width:661.500000px;}
.x0_c00479{left:0.000000px;}
.x2_c00479{left:33.450000px;}
.x7_c00479{left:36.450000px;}
.xa_c00479{left:38.100000px;}
.xd_c00479{left:40.950000px;}
.x1_c00479{left:121.500000px;}
.x3_c00479{left:122.850000px;}
.x4_c00479{left:123.900000px;}
.x5_c00479{left:124.950000px;}
.x6_c00479{left:127.350000px;}
.x8_c00479{left:128.700000px;}
.x9_c00479{left:129.900000px;}
.xb_c00479{left:131.700000px;}
.xc_c00479{left:132.750000px;}
.xe_c00479{left:266.700000px;}
.x11_c00479{left:282.564240px;}
.xf_c00479{left:302.850000px;}
.x10_c00479{left:575.850000px;}
@media print{
.v0_c00479{vertical-align:0.000000pt;}
.ls3_c00479{letter-spacing:0.000000pt;}
.ls2_c00479{letter-spacing:2.490667pt;}
.ls4_c00479{letter-spacing:8.000000pt;}
.ls0_c00479{letter-spacing:8.890667pt;}
.ls1_c00479{letter-spacing:23.824000pt;}
.ws3_c00479{word-spacing:-68.165333pt;}
.ws4_c00479{word-spacing:-24.000000pt;}
.ws0_c00479{word-spacing:-15.424000pt;}
.ws1_c00479{word-spacing:-12.210667pt;}
.ws5_c00479{word-spacing:0.000000pt;}
.ws2_c00479{word-spacing:0.506667pt;}
._14_c00479{margin-left:-11.869333pt;}
._9_c00479{margin-left:-10.672000pt;}
._f_c00479{margin-left:-8.906667pt;}
._11_c00479{margin-left:-7.576000pt;}
._e_c00479{margin-left:-6.384000pt;}
._c_c00479{margin-left:-5.432000pt;}
._d_c00479{margin-left:-4.152000pt;}
._b_c00479{margin-left:-3.120000pt;}
._6_c00479{margin-left:-2.141333pt;}
._a_c00479{margin-left:-1.192000pt;}
._10_c00479{width:0.914667pt;}
._4_c00479{width:1.824000pt;}
._3_c00479{width:2.888000pt;}
._0_c00479{width:3.800000pt;}
._1_c00479{width:4.813333pt;}
._5_c00479{width:6.384000pt;}
._2_c00479{width:7.752000pt;}
._7_c00479{width:8.642667pt;}
._12_c00479{width:10.154667pt;}
._8_c00479{width:12.122667pt;}
._13_c00479{width:13.992000pt;}
._15_c00479{width:15.552000pt;}
._18_c00479{width:22.242667pt;}
._1a_c00479{width:26.269333pt;}
._19_c00479{width:76.018667pt;}
._1b_c00479{width:217.261333pt;}
._16_c00479{width:288.600000pt;}
._17_c00479{width:325.941333pt;}
._1c_c00479{width:1010.906667pt;}
.fs6_c00479{font-size:42.666667pt;}
.fs0_c00479{font-size:50.666667pt;}
.fs1_c00479{font-size:64.000000pt;}
.fs3_c00479{font-size:69.333333pt;}
.fs2_c00479{font-size:72.000000pt;}
.fs4_c00479{font-size:77.333333pt;}
.fs5_c00479{font-size:96.000000pt;}
.y0_c00479{bottom:0.000000pt;}
.y25_c00479{bottom:2.760000pt;}
.y24_c00479{bottom:6.425212pt;}
.y23_c00479{bottom:59.733333pt;}
.y22_c00479{bottom:80.133333pt;}
.y21_c00479{bottom:102.666667pt;}
.y20_c00479{bottom:123.066667pt;}
.y1f_c00479{bottom:146.400000pt;}
.y1e_c00479{bottom:168.266667pt;}
.y1d_c00479{bottom:190.266667pt;}
.y1c_c00479{bottom:211.200000pt;}
.y1b_c00479{bottom:232.266667pt;}
.y1a_c00479{bottom:254.133333pt;}
.y19_c00479{bottom:275.733333pt;}
.y18_c00479{bottom:296.400000pt;}
.y17_c00479{bottom:318.666667pt;}
.y16_c00479{bottom:340.000000pt;}
.y15_c00479{bottom:360.666667pt;}
.y14_c00479{bottom:382.533333pt;}
.y13_c00479{bottom:403.866667pt;}
.y12_c00479{bottom:424.800000pt;}
.y11_c00479{bottom:445.866667pt;}
.y10_c00479{bottom:467.066667pt;}
.yf_c00479{bottom:487.866667pt;}
.ye_c00479{bottom:509.066667pt;}
.yd_c00479{bottom:530.666667pt;}
.yc_c00479{bottom:552.000000pt;}
.yb_c00479{bottom:573.333333pt;}
.ya_c00479{bottom:594.666667pt;}
.y9_c00479{bottom:615.333333pt;}
.y8_c00479{bottom:636.666667pt;}
.y7_c00479{bottom:658.000000pt;}
.y6_c00479{bottom:679.466667pt;}
.y5_c00479{bottom:700.800000pt;}
.y4_c00479{bottom:721.866667pt;}
.y3_c00479{bottom:743.200000pt;}
.y2_c00479{bottom:764.133333pt;}
.y1_c00479{bottom:785.600000pt;}
.h8_c00479{height:11.733399pt;}
.h9_c00479{height:38.937500pt;}
.h4_c00479{height:64.149740pt;}
.h3_c00479{height:70.664062pt;}
.h2_c00479{height:74.906250pt;}
.h6_c00479{height:81.045333pt;}
.h5_c00479{height:87.783854pt;}
.h7_c00479{height:96.750000pt;}
.h1_c00479{height:868.666667pt;}
.h0_c00479{height:868.800000pt;}
.w1_c00479{width:93.222667pt;}
.w0_c00479{width:588.000000pt;}
.x0_c00479{left:0.000000pt;}
.x2_c00479{left:29.733333pt;}
.x7_c00479{left:32.400000pt;}
.xa_c00479{left:33.866667pt;}
.xd_c00479{left:36.400000pt;}
.x1_c00479{left:108.000000pt;}
.x3_c00479{left:109.200000pt;}
.x4_c00479{left:110.133333pt;}
.x5_c00479{left:111.066667pt;}
.x6_c00479{left:113.200000pt;}
.x8_c00479{left:114.400000pt;}
.x9_c00479{left:115.466667pt;}
.xb_c00479{left:117.066667pt;}
.xc_c00479{left:118.000000pt;}
.xe_c00479{left:237.066667pt;}
.x11_c00479{left:251.168213pt;}
.xf_c00479{left:269.200000pt;}
.x10_c00479{left:511.866667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_3ca21ed3200f41e863201c12.woff2')format("woff");}.ff1_c00480{font-family:ff1_c00480;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00480;src:url('chunks/assets/font_d1fadf9afd183593b5afc791.woff2')format("woff");}.ff2_c00480{font-family:ff2_c00480;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00480;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff3_c00480{font-family:ff3_c00480;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00480;src:url('chunks/assets/font_24d1a3f5d54585738e4a5e2d.woff2')format("woff");}.ff4_c00480{font-family:ff4_c00480;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00480;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c00480{font-family:ff5_c00480;line-height:1.219238;font-style: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;}
.ls0_c00480{letter-spacing:0.000000px;}
.sc__c00480{text-shadow:none;}
.sc0_c00480{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00480{-webkit-text-stroke:0px transparent;}
.sc0_c00480{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00480{word-spacing:-17.352000px;}
.ws1_c00480{word-spacing:0.000000px;}
._18_c00480{margin-left:-22.833000px;}
._e_c00480{margin-left:-17.577000px;}
._d_c00480{margin-left:-11.484000px;}
._10_c00480{margin-left:-10.479000px;}
._f_c00480{margin-left:-9.315000px;}
._c_c00480{margin-left:-8.148000px;}
._16_c00480{margin-left:-7.095000px;}
._0_c00480{margin-left:-5.880000px;}
._1_c00480{margin-left:-4.050000px;}
._b_c00480{margin-left:-2.706000px;}
._7_c00480{margin-left:-1.134000px;}
._5_c00480{width:1.863000px;}
._6_c00480{width:2.997000px;}
._4_c00480{width:4.536000px;}
._3_c00480{width:6.318000px;}
._2_c00480{width:7.695000px;}
._a_c00480{width:9.396000px;}
._12_c00480{width:10.467000px;}
._11_c00480{width:12.603000px;}
._8_c00480{width:14.013000px;}
._9_c00480{width:15.552000px;}
._1d_c00480{width:16.848000px;}
._19_c00480{width:18.015000px;}
._1b_c00480{width:19.200000px;}
._13_c00480{width:23.556000px;}
._15_c00480{width:25.758000px;}
._17_c00480{width:31.527000px;}
._1c_c00480{width:35.994000px;}
._1a_c00480{width:78.816000px;}
._14_c00480{width:231.660000px;}
._1e_c00480{width:327.498000px;}
.fc2_c00480{color:transparent;}
.fc1_c00480{color:rgb(128,128,128);}
.fc0_c00480{color:rgb(0,0,0);}
.fs4_c00480{font-size:42.000000px;}
.fs5_c00480{font-size:48.000000px;}
.fs3_c00480{font-size:69.000000px;}
.fs0_c00480{font-size:72.000000px;}
.fs2_c00480{font-size:75.000000px;}
.fs1_c00480{font-size:81.000000px;}
.y0_c00480{bottom:0.000000px;}
.y25_c00480{bottom:3.105000px;}
.y24_c00480{bottom:7.228355px;}
.y23_c00480{bottom:57.735000px;}
.y22_c00480{bottom:82.035000px;}
.y21_c00480{bottom:107.535000px;}
.y20_c00480{bottom:131.985000px;}
.y1f_c00480{bottom:156.285000px;}
.y1e_c00480{bottom:181.185000px;}
.y1d_c00480{bottom:205.185000px;}
.y1c_c00480{bottom:229.485000px;}
.y1b_c00480{bottom:253.785000px;}
.y1a_c00480{bottom:277.335000px;}
.y19_c00480{bottom:301.635000px;}
.y18_c00480{bottom:325.335000px;}
.y17_c00480{bottom:349.935000px;}
.y16_c00480{bottom:373.635000px;}
.y15_c00480{bottom:397.785000px;}
.y14_c00480{bottom:421.785000px;}
.y13_c00480{bottom:445.485000px;}
.y12_c00480{bottom:470.085000px;}
.y11_c00480{bottom:493.035000px;}
.y10_c00480{bottom:517.635000px;}
.yf_c00480{bottom:541.035000px;}
.ye_c00480{bottom:564.885000px;}
.yd_c00480{bottom:588.585000px;}
.yc_c00480{bottom:612.435000px;}
.yb_c00480{bottom:636.135000px;}
.ya_c00480{bottom:660.135000px;}
.y9_c00480{bottom:684.135000px;}
.y8_c00480{bottom:708.285000px;}
.y7_c00480{bottom:732.285000px;}
.y6_c00480{bottom:756.585000px;}
.y5_c00480{bottom:780.585000px;}
.y4_c00480{bottom:804.885000px;}
.y3_c00480{bottom:828.885000px;}
.y2_c00480{bottom:852.885000px;}
.y1_c00480{bottom:875.835000px;}
.h6_c00480{height:13.200074px;}
.h7_c00480{height:43.804688px;}
.h5_c00480{height:67.686035px;}
.h3_c00480{height:79.497070px;}
.h2_c00480{height:84.269531px;}
.h4_c00480{height:91.160156px;}
.h0_c00480{height:977.925000px;}
.h1_c00480{height:978.000000px;}
.w2_c00480{width:104.875500px;}
.w0_c00480{width:664.200000px;}
.w1_c00480{width:664.500000px;}
.x0_c00480{left:0.000000px;}
.x1_c00480{left:39.900000px;}
.xb_c00480{left:40.950000px;}
.x2_c00480{left:42.150000px;}
.x3_c00480{left:44.100000px;}
.x4_c00480{left:45.450000px;}
.x5_c00480{left:46.800000px;}
.x6_c00480{left:47.850000px;}
.x7_c00480{left:48.900000px;}
.x8_c00480{left:50.550000px;}
.x9_c00480{left:51.600000px;}
.xa_c00480{left:53.700000px;}
.xd_c00480{left:283.914230px;}
.xc_c00480{left:399.600000px;}
@media print{
.v0_c00480{vertical-align:0.000000pt;}
.ls0_c00480{letter-spacing:0.000000pt;}
.ws0_c00480{word-spacing:-15.424000pt;}
.ws1_c00480{word-spacing:0.000000pt;}
._18_c00480{margin-left:-20.296000pt;}
._e_c00480{margin-left:-15.624000pt;}
._d_c00480{margin-left:-10.208000pt;}
._10_c00480{margin-left:-9.314667pt;}
._f_c00480{margin-left:-8.280000pt;}
._c_c00480{margin-left:-7.242667pt;}
._16_c00480{margin-left:-6.306667pt;}
._0_c00480{margin-left:-5.226667pt;}
._1_c00480{margin-left:-3.600000pt;}
._b_c00480{margin-left:-2.405333pt;}
._7_c00480{margin-left:-1.008000pt;}
._5_c00480{width:1.656000pt;}
._6_c00480{width:2.664000pt;}
._4_c00480{width:4.032000pt;}
._3_c00480{width:5.616000pt;}
._2_c00480{width:6.840000pt;}
._a_c00480{width:8.352000pt;}
._12_c00480{width:9.304000pt;}
._11_c00480{width:11.202667pt;}
._8_c00480{width:12.456000pt;}
._9_c00480{width:13.824000pt;}
._1d_c00480{width:14.976000pt;}
._19_c00480{width:16.013333pt;}
._1b_c00480{width:17.066667pt;}
._13_c00480{width:20.938667pt;}
._15_c00480{width:22.896000pt;}
._17_c00480{width:28.024000pt;}
._1c_c00480{width:31.994667pt;}
._1a_c00480{width:70.058667pt;}
._14_c00480{width:205.920000pt;}
._1e_c00480{width:291.109333pt;}
.fs4_c00480{font-size:37.333333pt;}
.fs5_c00480{font-size:42.666667pt;}
.fs3_c00480{font-size:61.333333pt;}
.fs0_c00480{font-size:64.000000pt;}
.fs2_c00480{font-size:66.666667pt;}
.fs1_c00480{font-size:72.000000pt;}
.y0_c00480{bottom:0.000000pt;}
.y25_c00480{bottom:2.760000pt;}
.y24_c00480{bottom:6.425204pt;}
.y23_c00480{bottom:51.320000pt;}
.y22_c00480{bottom:72.920000pt;}
.y21_c00480{bottom:95.586667pt;}
.y20_c00480{bottom:117.320000pt;}
.y1f_c00480{bottom:138.920000pt;}
.y1e_c00480{bottom:161.053333pt;}
.y1d_c00480{bottom:182.386667pt;}
.y1c_c00480{bottom:203.986667pt;}
.y1b_c00480{bottom:225.586667pt;}
.y1a_c00480{bottom:246.520000pt;}
.y19_c00480{bottom:268.120000pt;}
.y18_c00480{bottom:289.186667pt;}
.y17_c00480{bottom:311.053333pt;}
.y16_c00480{bottom:332.120000pt;}
.y15_c00480{bottom:353.586667pt;}
.y14_c00480{bottom:374.920000pt;}
.y13_c00480{bottom:395.986667pt;}
.y12_c00480{bottom:417.853333pt;}
.y11_c00480{bottom:438.253333pt;}
.y10_c00480{bottom:460.120000pt;}
.yf_c00480{bottom:480.920000pt;}
.ye_c00480{bottom:502.120000pt;}
.yd_c00480{bottom:523.186667pt;}
.yc_c00480{bottom:544.386667pt;}
.yb_c00480{bottom:565.453333pt;}
.ya_c00480{bottom:586.786667pt;}
.y9_c00480{bottom:608.120000pt;}
.y8_c00480{bottom:629.586667pt;}
.y7_c00480{bottom:650.920000pt;}
.y6_c00480{bottom:672.520000pt;}
.y5_c00480{bottom:693.853333pt;}
.y4_c00480{bottom:715.453333pt;}
.y3_c00480{bottom:736.786667pt;}
.y2_c00480{bottom:758.120000pt;}
.y1_c00480{bottom:778.520000pt;}
.h6_c00480{height:11.733399pt;}
.h7_c00480{height:38.937500pt;}
.h5_c00480{height:60.165365pt;}
.h3_c00480{height:70.664062pt;}
.h2_c00480{height:74.906250pt;}
.h4_c00480{height:81.031250pt;}
.h0_c00480{height:869.266667pt;}
.h1_c00480{height:869.333333pt;}
.w2_c00480{width:93.222667pt;}
.w0_c00480{width:590.400000pt;}
.w1_c00480{width:590.666667pt;}
.x0_c00480{left:0.000000pt;}
.x1_c00480{left:35.466667pt;}
.xb_c00480{left:36.400000pt;}
.x2_c00480{left:37.466667pt;}
.x3_c00480{left:39.200000pt;}
.x4_c00480{left:40.400000pt;}
.x5_c00480{left:41.600000pt;}
.x6_c00480{left:42.533333pt;}
.x7_c00480{left:43.466667pt;}
.x8_c00480{left:44.933333pt;}
.x9_c00480{left:45.866667pt;}
.xa_c00480{left:47.733333pt;}
.xd_c00480{left:252.368205pt;}
.xc_c00480{left:355.200000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_5947baf9cbea7b902843d3c5.woff2')format("woff");}.ff1_c00481{font-family:ff1_c00481;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00481;src:url('chunks/assets/font_4bb0a70c1ee9b2e8c8df7542.woff2')format("woff");}.ff2_c00481{font-family:ff2_c00481;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00481;src:url('chunks/assets/font_f72e596731b360dbe894d1cd.woff2')format("woff");}.ff3_c00481{font-family:ff3_c00481;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00481;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff4_c00481{font-family:ff4_c00481;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00481{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,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;}
.ls0_c00481{letter-spacing:0.000000px;}
.ls1_c00481{letter-spacing:3.000000px;}
.sc__c00481{text-shadow:none;}
.sc0_c00481{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00481{-webkit-text-stroke:0px transparent;}
.sc0_c00481{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00481{word-spacing:-27.000000px;}
.ws0_c00481{word-spacing:-20.250000px;}
.ws2_c00481{word-spacing:0.000000px;}
._1a_c00481{margin-left:-24.012000px;}
._17_c00481{margin-left:-22.275000px;}
._1b_c00481{margin-left:-21.252000px;}
._1c_c00481{margin-left:-17.892000px;}
._18_c00481{margin-left:-9.768000px;}
._11_c00481{margin-left:-8.262000px;}
._f_c00481{margin-left:-6.075000px;}
._5_c00481{margin-left:-4.698000px;}
._1_c00481{margin-left:-3.159000px;}
._10_c00481{margin-left:-2.106000px;}
._6_c00481{margin-left:-1.053000px;}
._0_c00481{width:1.863000px;}
._2_c00481{width:3.888000px;}
._7_c00481{width:5.022000px;}
._8_c00481{width:6.156000px;}
._4_c00481{width:7.533000px;}
._c_c00481{width:8.748000px;}
._d_c00481{width:10.206000px;}
._3_c00481{width:11.907000px;}
._9_c00481{width:14.175000px;}
._b_c00481{width:15.390000px;}
._e_c00481{width:17.091000px;}
._a_c00481{width:18.954000px;}
._16_c00481{width:21.708000px;}
._15_c00481{width:23.085000px;}
._14_c00481{width:25.758000px;}
._12_c00481{width:35.397000px;}
._19_c00481{width:224.778000px;}
._13_c00481{width:271.674000px;}
.fc2_c00481{color:transparent;}
.fc1_c00481{color:rgb(128,128,128);}
.fc0_c00481{color:rgb(0,0,0);}
.fs4_c00481{font-size:48.000000px;}
.fs2_c00481{font-size:69.000000px;}
.fs0_c00481{font-size:81.000000px;}
.fs3_c00481{font-size:84.000000px;}
.fs1_c00481{font-size:108.000000px;}
.y0_c00481{bottom:0.000000px;}
.y25_c00481{bottom:3.105000px;}
.y24_c00481{bottom:7.228371px;}
.y23_c00481{bottom:44.565000px;}
.y22_c00481{bottom:67.215000px;}
.y21_c00481{bottom:92.865000px;}
.y20_c00481{bottom:117.165000px;}
.y1f_c00481{bottom:141.765000px;}
.y1e_c00481{bottom:166.065000px;}
.y1d_c00481{bottom:189.465000px;}
.y1c_c00481{bottom:214.665000px;}
.y1b_c00481{bottom:239.415000px;}
.y1a_c00481{bottom:263.715000px;}
.y19_c00481{bottom:288.615000px;}
.y18_c00481{bottom:312.165000px;}
.y17_c00481{bottom:336.615000px;}
.y16_c00481{bottom:361.215000px;}
.y15_c00481{bottom:385.065000px;}
.y14_c00481{bottom:409.815000px;}
.y13_c00481{bottom:435.015000px;}
.y12_c00481{bottom:459.765000px;}
.y11_c00481{bottom:481.665000px;}
.y10_c00481{bottom:505.365000px;}
.yf_c00481{bottom:529.515000px;}
.ye_c00481{bottom:553.815000px;}
.yd_c00481{bottom:577.515000px;}
.yc_c00481{bottom:602.415000px;}
.yb_c00481{bottom:626.415000px;}
.ya_c00481{bottom:650.415000px;}
.y9_c00481{bottom:674.715000px;}
.y8_c00481{bottom:698.715000px;}
.y7_c00481{bottom:723.015000px;}
.y6_c00481{bottom:746.865000px;}
.y5_c00481{bottom:771.315000px;}
.y4_c00481{bottom:795.465000px;}
.y3_c00481{bottom:819.465000px;}
.y2_c00481{bottom:844.515000px;}
.y1_c00481{bottom:867.465000px;}
.h5_c00481{height:13.200074px;}
.h6_c00481{height:43.804688px;}
.h2_c00481{height:79.497070px;}
.h4_c00481{height:82.441406px;}
.h3_c00481{height:108.843750px;}
.h0_c00481{height:963.375000px;}
.h1_c00481{height:963.750000px;}
.w1_c00481{width:104.875500px;}
.w0_c00481{width:651.750000px;}
.x0_c00481{left:0.000000px;}
.x4_c00481{left:42.150000px;}
.x9_c00481{left:114.450000px;}
.x6_c00481{left:115.800000px;}
.x1_c00481{left:117.150000px;}
.x2_c00481{left:118.350000px;}
.x3_c00481{left:120.450000px;}
.xa_c00481{left:141.300000px;}
.xb_c00481{left:217.050000px;}
.xc_c00481{left:242.550000px;}
.xe_c00481{left:277.689240px;}
.x5_c00481{left:282.150000px;}
.x7_c00481{left:421.650000px;}
.x8_c00481{left:449.850000px;}
.xd_c00481{left:559.500000px;}
@media print{
.v0_c00481{vertical-align:0.000000pt;}
.ls0_c00481{letter-spacing:0.000000pt;}
.ls1_c00481{letter-spacing:2.666667pt;}
.ws1_c00481{word-spacing:-24.000000pt;}
.ws0_c00481{word-spacing:-18.000000pt;}
.ws2_c00481{word-spacing:0.000000pt;}
._1a_c00481{margin-left:-21.344000pt;}
._17_c00481{margin-left:-19.800000pt;}
._1b_c00481{margin-left:-18.890667pt;}
._1c_c00481{margin-left:-15.904000pt;}
._18_c00481{margin-left:-8.682667pt;}
._11_c00481{margin-left:-7.344000pt;}
._f_c00481{margin-left:-5.400000pt;}
._5_c00481{margin-left:-4.176000pt;}
._1_c00481{margin-left:-2.808000pt;}
._10_c00481{margin-left:-1.872000pt;}
._6_c00481{margin-left:-0.936000pt;}
._0_c00481{width:1.656000pt;}
._2_c00481{width:3.456000pt;}
._7_c00481{width:4.464000pt;}
._8_c00481{width:5.472000pt;}
._4_c00481{width:6.696000pt;}
._c_c00481{width:7.776000pt;}
._d_c00481{width:9.072000pt;}
._3_c00481{width:10.584000pt;}
._9_c00481{width:12.600000pt;}
._b_c00481{width:13.680000pt;}
._e_c00481{width:15.192000pt;}
._a_c00481{width:16.848000pt;}
._16_c00481{width:19.296000pt;}
._15_c00481{width:20.520000pt;}
._14_c00481{width:22.896000pt;}
._12_c00481{width:31.464000pt;}
._19_c00481{width:199.802667pt;}
._13_c00481{width:241.488000pt;}
.fs4_c00481{font-size:42.666667pt;}
.fs2_c00481{font-size:61.333333pt;}
.fs0_c00481{font-size:72.000000pt;}
.fs3_c00481{font-size:74.666667pt;}
.fs1_c00481{font-size:96.000000pt;}
.y0_c00481{bottom:0.000000pt;}
.y25_c00481{bottom:2.760000pt;}
.y24_c00481{bottom:6.425219pt;}
.y23_c00481{bottom:39.613333pt;}
.y22_c00481{bottom:59.746667pt;}
.y21_c00481{bottom:82.546667pt;}
.y20_c00481{bottom:104.146667pt;}
.y1f_c00481{bottom:126.013333pt;}
.y1e_c00481{bottom:147.613333pt;}
.y1d_c00481{bottom:168.413333pt;}
.y1c_c00481{bottom:190.813333pt;}
.y1b_c00481{bottom:212.813333pt;}
.y1a_c00481{bottom:234.413333pt;}
.y19_c00481{bottom:256.546667pt;}
.y18_c00481{bottom:277.480000pt;}
.y17_c00481{bottom:299.213333pt;}
.y16_c00481{bottom:321.080000pt;}
.y15_c00481{bottom:342.280000pt;}
.y14_c00481{bottom:364.280000pt;}
.y13_c00481{bottom:386.680000pt;}
.y12_c00481{bottom:408.680000pt;}
.y11_c00481{bottom:428.146667pt;}
.y10_c00481{bottom:449.213333pt;}
.yf_c00481{bottom:470.680000pt;}
.ye_c00481{bottom:492.280000pt;}
.yd_c00481{bottom:513.346667pt;}
.yc_c00481{bottom:535.480000pt;}
.yb_c00481{bottom:556.813333pt;}
.ya_c00481{bottom:578.146667pt;}
.y9_c00481{bottom:599.746667pt;}
.y8_c00481{bottom:621.080000pt;}
.y7_c00481{bottom:642.680000pt;}
.y6_c00481{bottom:663.880000pt;}
.y5_c00481{bottom:685.613333pt;}
.y4_c00481{bottom:707.080000pt;}
.y3_c00481{bottom:728.413333pt;}
.y2_c00481{bottom:750.680000pt;}
.y1_c00481{bottom:771.080000pt;}
.h5_c00481{height:11.733399pt;}
.h6_c00481{height:38.937500pt;}
.h2_c00481{height:70.664062pt;}
.h4_c00481{height:73.281250pt;}
.h3_c00481{height:96.750000pt;}
.h0_c00481{height:856.333333pt;}
.h1_c00481{height:856.666667pt;}
.w1_c00481{width:93.222667pt;}
.w0_c00481{width:579.333333pt;}
.x0_c00481{left:0.000000pt;}
.x4_c00481{left:37.466667pt;}
.x9_c00481{left:101.733333pt;}
.x6_c00481{left:102.933333pt;}
.x1_c00481{left:104.133333pt;}
.x2_c00481{left:105.200000pt;}
.x3_c00481{left:107.066667pt;}
.xa_c00481{left:125.600000pt;}
.xb_c00481{left:192.933333pt;}
.xc_c00481{left:215.600000pt;}
.xe_c00481{left:246.834880pt;}
.x5_c00481{left:250.800000pt;}
.x7_c00481{left:374.800000pt;}
.x8_c00481{left:399.866667pt;}
.xd_c00481{left:497.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f8a7636b072e57ada0b52074.woff2')format("woff");}.ff1_c00482{font-family:ff1_c00482;line-height:1.437000;font-style:normal;font-weight:normal;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_503008b3b8bc674e4d197030.woff2')format("woff");}.ff2_c00482{font-family:ff2_c00482;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00482;src:url('chunks/assets/font_372e1a47c2191d60186072ac.woff2')format("woff");}.ff3_c00482{font-family:ff3_c00482;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00482;src:url('chunks/assets/font_806494766371eea5d0d35704.woff2')format("woff");}.ff4_c00482{font-family:ff4_c00482;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00482;src:url('chunks/assets/font_8dac11f968d92dc68293a91e.woff2')format("woff");}.ff5_c00482{font-family:ff5_c00482;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00482;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c00482{font-family:ff6_c00482;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00482{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00482{vertical-align:0.000000px;}
.ls2_c00482{letter-spacing:0.000000px;}
.ls0_c00482{letter-spacing:3.000000px;}
.ls1_c00482{letter-spacing:13.800000px;}
.sc__c00482{text-shadow:none;}
.sc0_c00482{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00482{-webkit-text-stroke:0px transparent;}
.sc0_c00482{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00482{word-spacing:-59.184000px;}
.ws1_c00482{word-spacing:-20.250000px;}
.ws2_c00482{word-spacing:-17.250000px;}
.ws3_c00482{word-spacing:0.000000px;}
._21_c00482{margin-left:-21.762000px;}
._22_c00482{margin-left:-13.593000px;}
._14_c00482{margin-left:-10.611000px;}
._1b_c00482{margin-left:-7.776000px;}
._1d_c00482{margin-left:-5.964000px;}
._19_c00482{margin-left:-4.617000px;}
._12_c00482{margin-left:-3.483000px;}
._10_c00482{margin-left:-1.944000px;}
._11_c00482{width:1.215000px;}
._13_c00482{width:2.349000px;}
._15_c00482{width:3.402000px;}
._e_c00482{width:4.536000px;}
._16_c00482{width:6.156000px;}
._f_c00482{width:7.209000px;}
._d_c00482{width:8.991000px;}
._a_c00482{width:10.419000px;}
._1c_c00482{width:12.231000px;}
._4_c00482{width:13.386000px;}
._2_c00482{width:14.697000px;}
._1f_c00482{width:15.714000px;}
._1e_c00482{width:16.767000px;}
._9_c00482{width:19.182000px;}
._6_c00482{width:20.562000px;}
._1_c00482{width:23.115000px;}
._5_c00482{width:26.082000px;}
._8_c00482{width:28.497000px;}
._c_c00482{width:30.291000px;}
._20_c00482{width:32.643000px;}
._0_c00482{width:35.259000px;}
._3_c00482{width:37.743000px;}
._7_c00482{width:41.538000px;}
._17_c00482{width:50.301000px;}
._1a_c00482{width:55.920000px;}
._b_c00482{width:74.520000px;}
._24_c00482{width:93.594000px;}
._23_c00482{width:103.635000px;}
._18_c00482{width:151.308000px;}
._25_c00482{width:289.170000px;}
.fc2_c00482{color:transparent;}
.fc1_c00482{color:rgb(128,128,128);}
.fc0_c00482{color:rgb(0,0,0);}
.fs4_c00482{font-size:48.000000px;}
.fs3_c00482{font-size:66.000000px;}
.fs0_c00482{font-size:69.000000px;}
.fs2_c00482{font-size:72.000000px;}
.fs1_c00482{font-size:81.000000px;}
.y0_c00482{bottom:0.000000px;}
.y26_c00482{bottom:3.105000px;}
.y25_c00482{bottom:7.228355px;}
.y24_c00482{bottom:62.985000px;}
.y23_c00482{bottom:86.685000px;}
.y22_c00482{bottom:112.935000px;}
.y21_c00482{bottom:136.635000px;}
.y20_c00482{bottom:162.285000px;}
.y1f_c00482{bottom:186.585000px;}
.y1e_c00482{bottom:211.185000px;}
.y1d_c00482{bottom:234.885000px;}
.y1c_c00482{bottom:259.785000px;}
.y1b_c00482{bottom:283.785000px;}
.y1a_c00482{bottom:308.085000px;}
.y19_c00482{bottom:331.785000px;}
.y18_c00482{bottom:355.935000px;}
.y17_c00482{bottom:379.935000px;}
.y16_c00482{bottom:404.535000px;}
.y15_c00482{bottom:428.235000px;}
.y14_c00482{bottom:451.935000px;}
.y13_c00482{bottom:476.085000px;}
.y12_c00482{bottom:500.385000px;}
.y11_c00482{bottom:524.385000px;}
.y10_c00482{bottom:548.685000px;}
.yf_c00482{bottom:568.635000px;}
.ye_c00482{bottom:595.635000px;}
.yd_c00482{bottom:619.635000px;}
.yc_c00482{bottom:643.485000px;}
.yb_c00482{bottom:667.485000px;}
.ya_c00482{bottom:691.485000px;}
.y9_c00482{bottom:715.185000px;}
.y8_c00482{bottom:739.485000px;}
.y7_c00482{bottom:763.785000px;}
.y6_c00482{bottom:788.085000px;}
.y5_c00482{bottom:811.935000px;}
.y4_c00482{bottom:835.935000px;}
.y3_c00482{bottom:860.535000px;}
.y2_c00482{bottom:884.235000px;}
.y1_c00482{bottom:919.035000px;}
.h5_c00482{height:13.200074px;}
.h6_c00482{height:43.804688px;}
.h2_c00482{height:72.312000px;}
.h3_c00482{height:79.497070px;}
.h4_c00482{height:84.269531px;}
.h0_c00482{height:972.525000px;}
.h1_c00482{height:972.750000px;}
.w2_c00482{width:104.875500px;}
.w0_c00482{width:660.450000px;}
.w1_c00482{width:660.750000px;}
.x0_c00482{left:0.000000px;}
.x8_c00482{left:43.500000px;}
.x7_c00482{left:44.850000px;}
.x3_c00482{left:46.200000px;}
.x2_c00482{left:47.250000px;}
.x5_c00482{left:50.700000px;}
.x6_c00482{left:52.950000px;}
.x4_c00482{left:73.500000px;}
.x1_c00482{left:116.850000px;}
.xa_c00482{left:282.039230px;}
.x9_c00482{left:349.650000px;}
@media print{
.v0_c00482{vertical-align:0.000000pt;}
.ls2_c00482{letter-spacing:0.000000pt;}
.ls0_c00482{letter-spacing:2.666667pt;}
.ls1_c00482{letter-spacing:12.266667pt;}
.ws0_c00482{word-spacing:-52.608000pt;}
.ws1_c00482{word-spacing:-18.000000pt;}
.ws2_c00482{word-spacing:-15.333333pt;}
.ws3_c00482{word-spacing:0.000000pt;}
._21_c00482{margin-left:-19.344000pt;}
._22_c00482{margin-left:-12.082667pt;}
._14_c00482{margin-left:-9.432000pt;}
._1b_c00482{margin-left:-6.912000pt;}
._1d_c00482{margin-left:-5.301333pt;}
._19_c00482{margin-left:-4.104000pt;}
._12_c00482{margin-left:-3.096000pt;}
._10_c00482{margin-left:-1.728000pt;}
._11_c00482{width:1.080000pt;}
._13_c00482{width:2.088000pt;}
._15_c00482{width:3.024000pt;}
._e_c00482{width:4.032000pt;}
._16_c00482{width:5.472000pt;}
._f_c00482{width:6.408000pt;}
._d_c00482{width:7.992000pt;}
._a_c00482{width:9.261333pt;}
._1c_c00482{width:10.872000pt;}
._4_c00482{width:11.898667pt;}
._2_c00482{width:13.064000pt;}
._1f_c00482{width:13.968000pt;}
._1e_c00482{width:14.904000pt;}
._9_c00482{width:17.050667pt;}
._6_c00482{width:18.277333pt;}
._1_c00482{width:20.546667pt;}
._5_c00482{width:23.184000pt;}
._8_c00482{width:25.330667pt;}
._c_c00482{width:26.925333pt;}
._20_c00482{width:29.016000pt;}
._0_c00482{width:31.341333pt;}
._3_c00482{width:33.549333pt;}
._7_c00482{width:36.922667pt;}
._17_c00482{width:44.712000pt;}
._1a_c00482{width:49.706667pt;}
._b_c00482{width:66.240000pt;}
._24_c00482{width:83.194667pt;}
._23_c00482{width:92.120000pt;}
._18_c00482{width:134.496000pt;}
._25_c00482{width:257.040000pt;}
.fs4_c00482{font-size:42.666667pt;}
.fs3_c00482{font-size:58.666667pt;}
.fs0_c00482{font-size:61.333333pt;}
.fs2_c00482{font-size:64.000000pt;}
.fs1_c00482{font-size:72.000000pt;}
.y0_c00482{bottom:0.000000pt;}
.y26_c00482{bottom:2.760000pt;}
.y25_c00482{bottom:6.425204pt;}
.y24_c00482{bottom:55.986667pt;}
.y23_c00482{bottom:77.053333pt;}
.y22_c00482{bottom:100.386667pt;}
.y21_c00482{bottom:121.453333pt;}
.y20_c00482{bottom:144.253333pt;}
.y1f_c00482{bottom:165.853333pt;}
.y1e_c00482{bottom:187.720000pt;}
.y1d_c00482{bottom:208.786667pt;}
.y1c_c00482{bottom:230.920000pt;}
.y1b_c00482{bottom:252.253333pt;}
.y1a_c00482{bottom:273.853333pt;}
.y19_c00482{bottom:294.920000pt;}
.y18_c00482{bottom:316.386667pt;}
.y17_c00482{bottom:337.720000pt;}
.y16_c00482{bottom:359.586667pt;}
.y15_c00482{bottom:380.653333pt;}
.y14_c00482{bottom:401.720000pt;}
.y13_c00482{bottom:423.186667pt;}
.y12_c00482{bottom:444.786667pt;}
.y11_c00482{bottom:466.120000pt;}
.y10_c00482{bottom:487.720000pt;}
.yf_c00482{bottom:505.453333pt;}
.ye_c00482{bottom:529.453333pt;}
.yd_c00482{bottom:550.786667pt;}
.yc_c00482{bottom:571.986667pt;}
.yb_c00482{bottom:593.320000pt;}
.ya_c00482{bottom:614.653333pt;}
.y9_c00482{bottom:635.720000pt;}
.y8_c00482{bottom:657.320000pt;}
.y7_c00482{bottom:678.920000pt;}
.y6_c00482{bottom:700.520000pt;}
.y5_c00482{bottom:721.720000pt;}
.y4_c00482{bottom:743.053333pt;}
.y3_c00482{bottom:764.920000pt;}
.y2_c00482{bottom:785.986667pt;}
.y1_c00482{bottom:816.920000pt;}
.h5_c00482{height:11.733399pt;}
.h6_c00482{height:38.937500pt;}
.h2_c00482{height:64.277333pt;}
.h3_c00482{height:70.664062pt;}
.h4_c00482{height:74.906250pt;}
.h0_c00482{height:864.466667pt;}
.h1_c00482{height:864.666667pt;}
.w2_c00482{width:93.222667pt;}
.w0_c00482{width:587.066667pt;}
.w1_c00482{width:587.333333pt;}
.x0_c00482{left:0.000000pt;}
.x8_c00482{left:38.666667pt;}
.x7_c00482{left:39.866667pt;}
.x3_c00482{left:41.066667pt;}
.x2_c00482{left:42.000000pt;}
.x5_c00482{left:45.066667pt;}
.x6_c00482{left:47.066667pt;}
.x4_c00482{left:65.333333pt;}
.x1_c00482{left:103.866667pt;}
.xa_c00482{left:250.701538pt;}
.x9_c00482{left:310.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e86a5d681ac8a31f6fcb9df1.woff2')format("woff");}.ff1_c00483{font-family:ff1_c00483;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00483;src:url('chunks/assets/font_c8efd85c9c7ea1a37f8a4563.woff2')format("woff");}.ff2_c00483{font-family:ff2_c00483;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00483;src:url('chunks/assets/font_4b185ada4c76b5f1e5a114e6.woff2')format("woff");}.ff3_c00483{font-family:ff3_c00483;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00483;src:url('chunks/assets/font_012227e88a0575b896487403.woff2')format("woff");}.ff4_c00483{font-family:ff4_c00483;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00483;src:url('chunks/assets/font_ae6a0b50fc2a016f88c1758a.woff2')format("woff");}.ff5_c00483{font-family:ff5_c00483;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00483;src:url('chunks/assets/font_45c01577b3d65ffe2fde5778.woff2')format("woff");}.ff6_c00483{font-family:ff6_c00483;line-height:1.437000;font-style:normal;font-weight: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_c00483;src:url('chunks/assets/font_09f0085d8b422895e9567c93.woff2')format("woff");}.ff7_c00483{font-family:ff7_c00483;line-height:1.437000;font-style:normal;font-weight: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_c00483;src:url('chunks/assets/font_6d53cefb3118a74041071bd5.woff2')format("woff");}.ff8_c00483{font-family:ff8_c00483;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00483;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff9_c00483{font-family:ff9_c00483;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00483{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00483{vertical-align:0.000000px;}
.v1_c00483{vertical-align:20.400000px;}
.ls1_c00483{letter-spacing:-6.000000px;}
.ls2_c00483{letter-spacing:0.000000px;}
.ls3_c00483{letter-spacing:3.000000px;}
.ls0_c00483{letter-spacing:147.600000px;}
.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;}
}
.ws3_c00483{word-spacing:-20.250000px;}
.ws1_c00483{word-spacing:-17.250000px;}
.ws0_c00483{word-spacing:-11.250000px;}
.ws2_c00483{word-spacing:-3.621000px;}
.ws4_c00483{word-spacing:0.000000px;}
._1f_c00483{margin-left:-32.253000px;}
._9_c00483{margin-left:-25.410000px;}
._1b_c00483{margin-left:-22.170000px;}
._c_c00483{margin-left:-18.795000px;}
._1c_c00483{margin-left:-14.970000px;}
._8_c00483{margin-left:-13.965000px;}
._7_c00483{margin-left:-11.826000px;}
._1a_c00483{margin-left:-10.320000px;}
._f_c00483{margin-left:-9.033000px;}
._10_c00483{margin-left:-7.980000px;}
._18_c00483{margin-left:-6.747000px;}
._d_c00483{margin-left:-5.019000px;}
._3_c00483{margin-left:-3.906000px;}
._16_c00483{margin-left:-2.646000px;}
._2_c00483{margin-left:-1.023000px;}
._b_c00483{width:1.365000px;}
._a_c00483{width:3.045000px;}
._1_c00483{width:4.278000px;}
._17_c00483{width:5.460000px;}
._15_c00483{width:6.780000px;}
._4_c00483{width:8.091000px;}
._1e_c00483{width:9.120000px;}
._0_c00483{width:10.230000px;}
._13_c00483{width:12.255000px;}
._e_c00483{width:13.965000px;}
._1d_c00483{width:15.147000px;}
._20_c00483{width:16.263000px;}
._11_c00483{width:21.021000px;}
._6_c00483{width:35.712000px;}
._19_c00483{width:38.571000px;}
._5_c00483{width:113.553000px;}
._12_c00483{width:581.022000px;}
._14_c00483{width:682.860000px;}
.fc2_c00483{color:transparent;}
.fc1_c00483{color:rgb(128,128,128);}
.fc0_c00483{color:rgb(0,0,0);}
.fs8_c00483{font-size:48.000000px;}
.fs3_c00483{font-size:57.000000px;}
.fs7_c00483{font-size:60.000000px;}
.fs5_c00483{font-size:69.000000px;}
.fs2_c00483{font-size:78.000000px;}
.fs4_c00483{font-size:81.000000px;}
.fs6_c00483{font-size:87.000000px;}
.fs0_c00483{font-size:93.000000px;}
.fs1_c00483{font-size:105.000000px;}
.y0_c00483{bottom:0.000000px;}
.y26_c00483{bottom:3.105000px;}
.y25_c00483{bottom:7.228371px;}
.y24_c00483{bottom:75.315000px;}
.y23_c00483{bottom:98.865000px;}
.y22_c00483{bottom:124.215000px;}
.y21_c00483{bottom:148.815000px;}
.y20_c00483{bottom:172.515000px;}
.y1f_c00483{bottom:196.515000px;}
.y1e_c00483{bottom:216.015000px;}
.y1d_c00483{bottom:245.715000px;}
.y1c_c00483{bottom:269.715000px;}
.y1b_c00483{bottom:293.715000px;}
.y1a_c00483{bottom:318.615000px;}
.y19_c00483{bottom:342.915000px;}
.y18_c00483{bottom:367.515000px;}
.y17_c00483{bottom:391.515000px;}
.y16_c00483{bottom:416.115000px;}
.y15_c00483{bottom:440.415000px;}
.y14_c00483{bottom:465.765000px;}
.y13_c00483{bottom:488.115000px;}
.y12_c00483{bottom:512.715000px;}
.y11_c00483{bottom:536.715000px;}
.y10_c00483{bottom:561.315000px;}
.yf_c00483{bottom:584.265000px;}
.ye_c00483{bottom:609.615000px;}
.yd_c00483{bottom:633.165000px;}
.yc_c00483{bottom:657.165000px;}
.yb_c00483{bottom:681.465000px;}
.ya_c00483{bottom:705.165000px;}
.y9_c00483{bottom:729.015000px;}
.y8_c00483{bottom:753.315000px;}
.y7_c00483{bottom:799.665000px;}
.y6_c00483{bottom:825.165000px;}
.y5_c00483{bottom:849.465000px;}
.y4_c00483{bottom:873.465000px;}
.y3_c00483{bottom:897.465000px;}
.y2_c00483{bottom:922.065000px;}
.y1_c00483{bottom:930.465000px;}
.h8_c00483{height:13.200074px;}
.h9_c00483{height:43.804688px;}
.h5_c00483{height:72.312000px;}
.h4_c00483{height:79.497070px;}
.h3_c00483{height:98.756836px;}
.h7_c00483{height:99.897070px;}
.h2_c00483{height:103.000488px;}
.h6_c00483{height:110.151855px;}
.h1_c00483{height:986.250000px;}
.h0_c00483{height:986.325000px;}
.w2_c00483{width:104.875500px;}
.w0_c00483{width:667.425000px;}
.w1_c00483{width:667.500000px;}
.x0_c00483{left:0.000000px;}
.x1_c00483{left:105.600000px;}
.x3_c00483{left:107.400000px;}
.x4_c00483{left:109.050000px;}
.x5_c00483{left:111.450000px;}
.x2_c00483{left:115.050000px;}
.x9_c00483{left:116.100000px;}
.xa_c00483{left:117.900000px;}
.xb_c00483{left:119.100000px;}
.xc_c00483{left:120.150000px;}
.xd_c00483{left:121.200000px;}
.xe_c00483{left:122.550000px;}
.xf_c00483{left:124.200000px;}
.x13_c00483{left:125.850000px;}
.x11_c00483{left:127.650000px;}
.x8_c00483{left:153.900000px;}
.x12_c00483{left:171.150000px;}
.x6_c00483{left:216.000000px;}
.x7_c00483{left:265.950000px;}
.x10_c00483{left:271.350000px;}
.x15_c00483{left:285.526749px;}
.x14_c00483{left:550.500000px;}
@media print{
.v0_c00483{vertical-align:0.000000pt;}
.v1_c00483{vertical-align:18.133333pt;}
.ls1_c00483{letter-spacing:-5.333333pt;}
.ls2_c00483{letter-spacing:0.000000pt;}
.ls3_c00483{letter-spacing:2.666667pt;}
.ls0_c00483{letter-spacing:131.200000pt;}
.ws3_c00483{word-spacing:-18.000000pt;}
.ws1_c00483{word-spacing:-15.333333pt;}
.ws0_c00483{word-spacing:-10.000000pt;}
.ws2_c00483{word-spacing:-3.218667pt;}
.ws4_c00483{word-spacing:0.000000pt;}
._1f_c00483{margin-left:-28.669333pt;}
._9_c00483{margin-left:-22.586667pt;}
._1b_c00483{margin-left:-19.706667pt;}
._c_c00483{margin-left:-16.706667pt;}
._1c_c00483{margin-left:-13.306667pt;}
._8_c00483{margin-left:-12.413333pt;}
._7_c00483{margin-left:-10.512000pt;}
._1a_c00483{margin-left:-9.173333pt;}
._f_c00483{margin-left:-8.029333pt;}
._10_c00483{margin-left:-7.093333pt;}
._18_c00483{margin-left:-5.997333pt;}
._d_c00483{margin-left:-4.461333pt;}
._3_c00483{margin-left:-3.472000pt;}
._16_c00483{margin-left:-2.352000pt;}
._2_c00483{margin-left:-0.909333pt;}
._b_c00483{width:1.213333pt;}
._a_c00483{width:2.706667pt;}
._1_c00483{width:3.802667pt;}
._17_c00483{width:4.853333pt;}
._15_c00483{width:6.026667pt;}
._4_c00483{width:7.192000pt;}
._1e_c00483{width:8.106667pt;}
._0_c00483{width:9.093333pt;}
._13_c00483{width:10.893333pt;}
._e_c00483{width:12.413333pt;}
._1d_c00483{width:13.464000pt;}
._20_c00483{width:14.456000pt;}
._11_c00483{width:18.685333pt;}
._6_c00483{width:31.744000pt;}
._19_c00483{width:34.285333pt;}
._5_c00483{width:100.936000pt;}
._12_c00483{width:516.464000pt;}
._14_c00483{width:606.986667pt;}
.fs8_c00483{font-size:42.666667pt;}
.fs3_c00483{font-size:50.666667pt;}
.fs7_c00483{font-size:53.333333pt;}
.fs5_c00483{font-size:61.333333pt;}
.fs2_c00483{font-size:69.333333pt;}
.fs4_c00483{font-size:72.000000pt;}
.fs6_c00483{font-size:77.333333pt;}
.fs0_c00483{font-size:82.666667pt;}
.fs1_c00483{font-size:93.333333pt;}
.y0_c00483{bottom:0.000000pt;}
.y26_c00483{bottom:2.760000pt;}
.y25_c00483{bottom:6.425219pt;}
.y24_c00483{bottom:66.946667pt;}
.y23_c00483{bottom:87.880000pt;}
.y22_c00483{bottom:110.413333pt;}
.y21_c00483{bottom:132.280000pt;}
.y20_c00483{bottom:153.346667pt;}
.y1f_c00483{bottom:174.680000pt;}
.y1e_c00483{bottom:192.013333pt;}
.y1d_c00483{bottom:218.413333pt;}
.y1c_c00483{bottom:239.746667pt;}
.y1b_c00483{bottom:261.080000pt;}
.y1a_c00483{bottom:283.213333pt;}
.y19_c00483{bottom:304.813333pt;}
.y18_c00483{bottom:326.680000pt;}
.y17_c00483{bottom:348.013333pt;}
.y16_c00483{bottom:369.880000pt;}
.y15_c00483{bottom:391.480000pt;}
.y14_c00483{bottom:414.013333pt;}
.y13_c00483{bottom:433.880000pt;}
.y12_c00483{bottom:455.746667pt;}
.y11_c00483{bottom:477.080000pt;}
.y10_c00483{bottom:498.946667pt;}
.yf_c00483{bottom:519.346667pt;}
.ye_c00483{bottom:541.880000pt;}
.yd_c00483{bottom:562.813333pt;}
.yc_c00483{bottom:584.146667pt;}
.yb_c00483{bottom:605.746667pt;}
.ya_c00483{bottom:626.813333pt;}
.y9_c00483{bottom:648.013333pt;}
.y8_c00483{bottom:669.613333pt;}
.y7_c00483{bottom:710.813333pt;}
.y6_c00483{bottom:733.480000pt;}
.y5_c00483{bottom:755.080000pt;}
.y4_c00483{bottom:776.413333pt;}
.y3_c00483{bottom:797.746667pt;}
.y2_c00483{bottom:819.613333pt;}
.y1_c00483{bottom:827.080000pt;}
.h8_c00483{height:11.733399pt;}
.h9_c00483{height:38.937500pt;}
.h5_c00483{height:64.277333pt;}
.h4_c00483{height:70.664062pt;}
.h3_c00483{height:87.783854pt;}
.h7_c00483{height:88.797396pt;}
.h2_c00483{height:91.555990pt;}
.h6_c00483{height:97.912760pt;}
.h1_c00483{height:876.666667pt;}
.h0_c00483{height:876.733333pt;}
.w2_c00483{width:93.222667pt;}
.w0_c00483{width:593.266667pt;}
.w1_c00483{width:593.333333pt;}
.x0_c00483{left:0.000000pt;}
.x1_c00483{left:93.866667pt;}
.x3_c00483{left:95.466667pt;}
.x4_c00483{left:96.933333pt;}
.x5_c00483{left:99.066667pt;}
.x2_c00483{left:102.266667pt;}
.x9_c00483{left:103.200000pt;}
.xa_c00483{left:104.800000pt;}
.xb_c00483{left:105.866667pt;}
.xc_c00483{left:106.800000pt;}
.xd_c00483{left:107.733333pt;}
.xe_c00483{left:108.933333pt;}
.xf_c00483{left:110.400000pt;}
.x13_c00483{left:111.866667pt;}
.x11_c00483{left:113.466667pt;}
.x8_c00483{left:136.800000pt;}
.x12_c00483{left:152.133333pt;}
.x6_c00483{left:192.000000pt;}
.x7_c00483{left:236.400000pt;}
.x10_c00483{left:241.200000pt;}
.x15_c00483{left:253.801554pt;}
.x14_c00483{left:489.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a6c6e5ca0ed244a411b74810.woff2')format("woff");}.ff1_c00484{font-family:ff1_c00484;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00484;src:url('chunks/assets/font_c1039437621f2ddc1fa1e33d.woff2')format("woff");}.ff2_c00484{font-family:ff2_c00484;line-height:1.437000;font-style:normal;font-weight:normal;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_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff3_c00484{font-family:ff3_c00484;line-height:1.219238;font-style: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;}
.ls0_c00484{letter-spacing:0.000000px;}
.sc__c00484{text-shadow:none;}
.sc0_c00484{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00484{-webkit-text-stroke:0px transparent;}
.sc0_c00484{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00484{word-spacing:-67.686000px;}
.ws1_c00484{word-spacing:0.000000px;}
._e_c00484{margin-left:-15.471000px;}
._d_c00484{margin-left:-10.530000px;}
._5_c00484{margin-left:-7.047000px;}
._16_c00484{margin-left:-5.589000px;}
._8_c00484{margin-left:-4.374000px;}
._2_c00484{margin-left:-2.430000px;}
._c_c00484{margin-left:-1.377000px;}
._6_c00484{width:1.134000px;}
._1_c00484{width:2.592000px;}
._0_c00484{width:3.645000px;}
._9_c00484{width:4.698000px;}
._7_c00484{width:5.913000px;}
._4_c00484{width:7.209000px;}
._3_c00484{width:8.343000px;}
._a_c00484{width:9.558000px;}
._b_c00484{width:11.340000px;}
._12_c00484{width:12.555000px;}
._10_c00484{width:13.608000px;}
._17_c00484{width:15.138000px;}
._11_c00484{width:16.200000px;}
._f_c00484{width:17.820000px;}
._13_c00484{width:19.116000px;}
._15_c00484{width:27.306000px;}
._18_c00484{width:32.652000px;}
._14_c00484{width:67.797000px;}
.fc2_c00484{color:transparent;}
.fc1_c00484{color:rgb(128,128,128);}
.fc0_c00484{color:rgb(0,0,0);}
.fs2_c00484{font-size:48.000000px;}
.fs0_c00484{font-size:81.000000px;}
.fs1_c00484{font-size:87.000000px;}
.y0_c00484{bottom:0.000000px;}
.y24_c00484{bottom:3.105000px;}
.y23_c00484{bottom:7.228371px;}
.y22_c00484{bottom:85.815000px;}
.y21_c00484{bottom:111.165000px;}
.y20_c00484{bottom:135.765000px;}
.y1f_c00484{bottom:160.365000px;}
.y1e_c00484{bottom:184.965000px;}
.y1d_c00484{bottom:209.265000px;}
.y1c_c00484{bottom:232.515000px;}
.y1b_c00484{bottom:257.865000px;}
.y1a_c00484{bottom:282.465000px;}
.y19_c00484{bottom:305.865000px;}
.y18_c00484{bottom:330.765000px;}
.y17_c00484{bottom:354.465000px;}
.y16_c00484{bottom:378.315000px;}
.y15_c00484{bottom:402.765000px;}
.y14_c00484{bottom:427.065000px;}
.y13_c00484{bottom:450.915000px;}
.y12_c00484{bottom:474.915000px;}
.y11_c00484{bottom:499.215000px;}
.y10_c00484{bottom:523.215000px;}
.yf_c00484{bottom:547.515000px;}
.ye_c00484{bottom:571.365000px;}
.yd_c00484{bottom:595.365000px;}
.yc_c00484{bottom:619.365000px;}
.yb_c00484{bottom:643.215000px;}
.ya_c00484{bottom:667.215000px;}
.y9_c00484{bottom:691.215000px;}
.y8_c00484{bottom:715.515000px;}
.y7_c00484{bottom:739.515000px;}
.y6_c00484{bottom:764.115000px;}
.y5_c00484{bottom:788.115000px;}
.y4_c00484{bottom:812.715000px;}
.y3_c00484{bottom:837.015000px;}
.y2_c00484{bottom:861.615000px;}
.y1_c00484{bottom:885.915000px;}
.h4_c00484{height:13.200074px;}
.h5_c00484{height:43.804688px;}
.h2_c00484{height:79.497070px;}
.h3_c00484{height:91.176000px;}
.h0_c00484{height:989.025000px;}
.h1_c00484{height:989.250000px;}
.w1_c00484{width:104.875500px;}
.w0_c00484{width:672.000000px;}
.x0_c00484{left:0.000000px;}
.x5_c00484{left:43.650000px;}
.xc_c00484{left:51.000000px;}
.x1_c00484{left:57.000000px;}
.x2_c00484{left:58.050000px;}
.x3_c00484{left:59.100000px;}
.x4_c00484{left:60.750000px;}
.x6_c00484{left:61.800000px;}
.x7_c00484{left:63.000000px;}
.x8_c00484{left:64.050000px;}
.x9_c00484{left:65.850000px;}
.xa_c00484{left:67.200000px;}
.xb_c00484{left:68.250000px;}
.xd_c00484{left:69.900000px;}
.xe_c00484{left:70.950000px;}
.x10_c00484{left:72.600000px;}
.xf_c00484{left:73.950000px;}
.x11_c00484{left:287.814240px;}
@media print{
.v0_c00484{vertical-align:0.000000pt;}
.ls0_c00484{letter-spacing:0.000000pt;}
.ws0_c00484{word-spacing:-60.165333pt;}
.ws1_c00484{word-spacing:0.000000pt;}
._e_c00484{margin-left:-13.752000pt;}
._d_c00484{margin-left:-9.360000pt;}
._5_c00484{margin-left:-6.264000pt;}
._16_c00484{margin-left:-4.968000pt;}
._8_c00484{margin-left:-3.888000pt;}
._2_c00484{margin-left:-2.160000pt;}
._c_c00484{margin-left:-1.224000pt;}
._6_c00484{width:1.008000pt;}
._1_c00484{width:2.304000pt;}
._0_c00484{width:3.240000pt;}
._9_c00484{width:4.176000pt;}
._7_c00484{width:5.256000pt;}
._4_c00484{width:6.408000pt;}
._3_c00484{width:7.416000pt;}
._a_c00484{width:8.496000pt;}
._b_c00484{width:10.080000pt;}
._12_c00484{width:11.160000pt;}
._10_c00484{width:12.096000pt;}
._17_c00484{width:13.456000pt;}
._11_c00484{width:14.400000pt;}
._f_c00484{width:15.840000pt;}
._13_c00484{width:16.992000pt;}
._15_c00484{width:24.272000pt;}
._18_c00484{width:29.024000pt;}
._14_c00484{width:60.264000pt;}
.fs2_c00484{font-size:42.666667pt;}
.fs0_c00484{font-size:72.000000pt;}
.fs1_c00484{font-size:77.333333pt;}
.y0_c00484{bottom:0.000000pt;}
.y24_c00484{bottom:2.760000pt;}
.y23_c00484{bottom:6.425219pt;}
.y22_c00484{bottom:76.280000pt;}
.y21_c00484{bottom:98.813333pt;}
.y20_c00484{bottom:120.680000pt;}
.y1f_c00484{bottom:142.546667pt;}
.y1e_c00484{bottom:164.413333pt;}
.y1d_c00484{bottom:186.013333pt;}
.y1c_c00484{bottom:206.680000pt;}
.y1b_c00484{bottom:229.213333pt;}
.y1a_c00484{bottom:251.080000pt;}
.y19_c00484{bottom:271.880000pt;}
.y18_c00484{bottom:294.013333pt;}
.y17_c00484{bottom:315.080000pt;}
.y16_c00484{bottom:336.280000pt;}
.y15_c00484{bottom:358.013333pt;}
.y14_c00484{bottom:379.613333pt;}
.y13_c00484{bottom:400.813333pt;}
.y12_c00484{bottom:422.146667pt;}
.y11_c00484{bottom:443.746667pt;}
.y10_c00484{bottom:465.080000pt;}
.yf_c00484{bottom:486.680000pt;}
.ye_c00484{bottom:507.880000pt;}
.yd_c00484{bottom:529.213333pt;}
.yc_c00484{bottom:550.546667pt;}
.yb_c00484{bottom:571.746667pt;}
.ya_c00484{bottom:593.080000pt;}
.y9_c00484{bottom:614.413333pt;}
.y8_c00484{bottom:636.013333pt;}
.y7_c00484{bottom:657.346667pt;}
.y6_c00484{bottom:679.213333pt;}
.y5_c00484{bottom:700.546667pt;}
.y4_c00484{bottom:722.413333pt;}
.y3_c00484{bottom:744.013333pt;}
.y2_c00484{bottom:765.880000pt;}
.y1_c00484{bottom:787.480000pt;}
.h4_c00484{height:11.733399pt;}
.h5_c00484{height:38.937500pt;}
.h2_c00484{height:70.664062pt;}
.h3_c00484{height:81.045333pt;}
.h0_c00484{height:879.133333pt;}
.h1_c00484{height:879.333333pt;}
.w1_c00484{width:93.222667pt;}
.w0_c00484{width:597.333333pt;}
.x0_c00484{left:0.000000pt;}
.x5_c00484{left:38.800000pt;}
.xc_c00484{left:45.333333pt;}
.x1_c00484{left:50.666667pt;}
.x2_c00484{left:51.600000pt;}
.x3_c00484{left:52.533333pt;}
.x4_c00484{left:54.000000pt;}
.x6_c00484{left:54.933333pt;}
.x7_c00484{left:56.000000pt;}
.x8_c00484{left:56.933333pt;}
.x9_c00484{left:58.533333pt;}
.xa_c00484{left:59.733333pt;}
.xb_c00484{left:60.666667pt;}
.xd_c00484{left:62.133333pt;}
.xe_c00484{left:63.066667pt;}
.x10_c00484{left:64.533333pt;}
.xf_c00484{left:65.733333pt;}
.x11_c00484{left:255.834880pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_281f727125aff41840dd5077.woff2')format("woff");}.ff1_c00485{font-family:ff1_c00485;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00485;src:url('chunks/assets/font_01bf2e0f55a75e34437c5636.woff2')format("woff");}.ff2_c00485{font-family:ff2_c00485;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00485;src:url('chunks/assets/font_48c2c24e8225607b22f4d386.woff2')format("woff");}.ff3_c00485{font-family:ff3_c00485;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00485;src:url('chunks/assets/font_1d01d79151adef6eb2b3fc74.woff2')format("woff");}.ff4_c00485{font-family:ff4_c00485;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00485;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c00485{font-family:ff5_c00485;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00485{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00485{vertical-align:-15.000000px;}
.v0_c00485{vertical-align:0.000000px;}
.ls2_c00485{letter-spacing:0.000000px;}
.ls1_c00485{letter-spacing:7.200000px;}
.ls0_c00485{letter-spacing:146.400000px;}
.sc__c00485{text-shadow:none;}
.sc0_c00485{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00485{-webkit-text-stroke:0px transparent;}
.sc0_c00485{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00485{word-spacing:0.000000px;}
._13_c00485{margin-left:-20.088000px;}
._1b_c00485{margin-left:-18.873000px;}
._1e_c00485{margin-left:-16.443000px;}
._1f_c00485{margin-left:-10.611000px;}
._17_c00485{margin-left:-9.558000px;}
._b_c00485{margin-left:-7.857000px;}
._f_c00485{margin-left:-5.751000px;}
._4_c00485{margin-left:-4.050000px;}
._a_c00485{margin-left:-2.835000px;}
._7_c00485{margin-left:-1.296000px;}
._6_c00485{width:1.134000px;}
._5_c00485{width:2.835000px;}
._0_c00485{width:3.888000px;}
._9_c00485{width:4.941000px;}
._1_c00485{width:5.994000px;}
._2_c00485{width:7.047000px;}
._3_c00485{width:8.424000px;}
._11_c00485{width:9.639000px;}
._8_c00485{width:10.773000px;}
._c_c00485{width:11.988000px;}
._15_c00485{width:13.203000px;}
._19_c00485{width:14.256000px;}
._e_c00485{width:15.714000px;}
._10_c00485{width:16.767000px;}
._16_c00485{width:19.035000px;}
._d_c00485{width:21.384000px;}
._12_c00485{width:22.761000px;}
._1c_c00485{width:24.138000px;}
._1d_c00485{width:25.353000px;}
._1a_c00485{width:28.431000px;}
._14_c00485{width:29.727000px;}
._18_c00485{width:44.280000px;}
._20_c00485{width:1109.538000px;}
.fc2_c00485{color:transparent;}
.fc1_c00485{color:rgb(128,128,128);}
.fc0_c00485{color:rgb(0,0,0);}
.fs6_c00485{font-size:48.000000px;}
.fs2_c00485{font-size:60.000000px;}
.fs1_c00485{font-size:63.000000px;}
.fs4_c00485{font-size:66.000000px;}
.fs3_c00485{font-size:72.000000px;}
.fs0_c00485{font-size:81.000000px;}
.fs5_c00485{font-size:84.000000px;}
.y0_c00485{bottom:0.000000px;}
.y23_c00485{bottom:3.105000px;}
.y22_c00485{bottom:7.228355px;}
.y21_c00485{bottom:50.835000px;}
.y20_c00485{bottom:73.785000px;}
.y1f_c00485{bottom:99.435000px;}
.y1e_c00485{bottom:123.435000px;}
.y1d_c00485{bottom:148.185000px;}
.y1c_c00485{bottom:172.485000px;}
.y1b_c00485{bottom:197.685000px;}
.y1a_c00485{bottom:221.985000px;}
.y19_c00485{bottom:246.585000px;}
.y18_c00485{bottom:270.885000px;}
.y17_c00485{bottom:294.885000px;}
.y16_c00485{bottom:319.635000px;}
.y15_c00485{bottom:343.935000px;}
.y14_c00485{bottom:368.535000px;}
.y13_c00485{bottom:392.835000px;}
.y12_c00485{bottom:418.185000px;}
.y11_c00485{bottom:445.785000px;}
.y10_c00485{bottom:489.585000px;}
.yf_c00485{bottom:536.985000px;}
.ye_c00485{bottom:562.485000px;}
.yd_c00485{bottom:586.785000px;}
.yc_c00485{bottom:611.235000px;}
.yb_c00485{bottom:635.835000px;}
.ya_c00485{bottom:660.135000px;}
.y9_c00485{bottom:684.135000px;}
.y8_c00485{bottom:708.735000px;}
.y7_c00485{bottom:733.035000px;}
.y6_c00485{bottom:757.035000px;}
.y5_c00485{bottom:781.335000px;}
.y4_c00485{bottom:805.935000px;}
.y3_c00485{bottom:830.535000px;}
.y2_c00485{bottom:854.235000px;}
.y1_c00485{bottom:879.135000px;}
.h6_c00485{height:13.200074px;}
.h7_c00485{height:43.804688px;}
.h3_c00485{height:61.800293px;}
.h4_c00485{height:75.966797px;}
.h2_c00485{height:79.497070px;}
.h5_c00485{height:84.269531px;}
.h1_c00485{height:975.000000px;}
.h0_c00485{height:975.225000px;}
.w2_c00485{width:104.875500px;}
.w0_c00485{width:659.850000px;}
.w1_c00485{width:660.000000px;}
.x0_c00485{left:0.000000px;}
.xc_c00485{left:92.850000px;}
.xa_c00485{left:94.200000px;}
.x9_c00485{left:96.300000px;}
.x8_c00485{left:97.500000px;}
.xb_c00485{left:98.850000px;}
.x5_c00485{left:100.800000px;}
.x4_c00485{left:101.850000px;}
.x3_c00485{left:103.500000px;}
.x2_c00485{left:104.700000px;}
.x1_c00485{left:106.350000px;}
.x7_c00485{left:118.050000px;}
.x6_c00485{left:243.000000px;}
.xd_c00485{left:250.050000px;}
.xe_c00485{left:281.739258px;}
@media print{
.v1_c00485{vertical-align:-13.333333pt;}
.v0_c00485{vertical-align:0.000000pt;}
.ls2_c00485{letter-spacing:0.000000pt;}
.ls1_c00485{letter-spacing:6.400000pt;}
.ls0_c00485{letter-spacing:130.133333pt;}
.ws0_c00485{word-spacing:0.000000pt;}
._13_c00485{margin-left:-17.856000pt;}
._1b_c00485{margin-left:-16.776000pt;}
._1e_c00485{margin-left:-14.616000pt;}
._1f_c00485{margin-left:-9.432000pt;}
._17_c00485{margin-left:-8.496000pt;}
._b_c00485{margin-left:-6.984000pt;}
._f_c00485{margin-left:-5.112000pt;}
._4_c00485{margin-left:-3.600000pt;}
._a_c00485{margin-left:-2.520000pt;}
._7_c00485{margin-left:-1.152000pt;}
._6_c00485{width:1.008000pt;}
._5_c00485{width:2.520000pt;}
._0_c00485{width:3.456000pt;}
._9_c00485{width:4.392000pt;}
._1_c00485{width:5.328000pt;}
._2_c00485{width:6.264000pt;}
._3_c00485{width:7.488000pt;}
._11_c00485{width:8.568000pt;}
._8_c00485{width:9.576000pt;}
._c_c00485{width:10.656000pt;}
._15_c00485{width:11.736000pt;}
._19_c00485{width:12.672000pt;}
._e_c00485{width:13.968000pt;}
._10_c00485{width:14.904000pt;}
._16_c00485{width:16.920000pt;}
._d_c00485{width:19.008000pt;}
._12_c00485{width:20.232000pt;}
._1c_c00485{width:21.456000pt;}
._1d_c00485{width:22.536000pt;}
._1a_c00485{width:25.272000pt;}
._14_c00485{width:26.424000pt;}
._18_c00485{width:39.360000pt;}
._20_c00485{width:986.256000pt;}
.fs6_c00485{font-size:42.666667pt;}
.fs2_c00485{font-size:53.333333pt;}
.fs1_c00485{font-size:56.000000pt;}
.fs4_c00485{font-size:58.666667pt;}
.fs3_c00485{font-size:64.000000pt;}
.fs0_c00485{font-size:72.000000pt;}
.fs5_c00485{font-size:74.666667pt;}
.y0_c00485{bottom:0.000000pt;}
.y23_c00485{bottom:2.760000pt;}
.y22_c00485{bottom:6.425204pt;}
.y21_c00485{bottom:45.186667pt;}
.y20_c00485{bottom:65.586667pt;}
.y1f_c00485{bottom:88.386667pt;}
.y1e_c00485{bottom:109.720000pt;}
.y1d_c00485{bottom:131.720000pt;}
.y1c_c00485{bottom:153.320000pt;}
.y1b_c00485{bottom:175.720000pt;}
.y1a_c00485{bottom:197.320000pt;}
.y19_c00485{bottom:219.186667pt;}
.y18_c00485{bottom:240.786667pt;}
.y17_c00485{bottom:262.120000pt;}
.y16_c00485{bottom:284.120000pt;}
.y15_c00485{bottom:305.720000pt;}
.y14_c00485{bottom:327.586667pt;}
.y13_c00485{bottom:349.186667pt;}
.y12_c00485{bottom:371.720000pt;}
.y11_c00485{bottom:396.253333pt;}
.y10_c00485{bottom:435.186667pt;}
.yf_c00485{bottom:477.320000pt;}
.ye_c00485{bottom:499.986667pt;}
.yd_c00485{bottom:521.586667pt;}
.yc_c00485{bottom:543.320000pt;}
.yb_c00485{bottom:565.186667pt;}
.ya_c00485{bottom:586.786667pt;}
.y9_c00485{bottom:608.120000pt;}
.y8_c00485{bottom:629.986667pt;}
.y7_c00485{bottom:651.586667pt;}
.y6_c00485{bottom:672.920000pt;}
.y5_c00485{bottom:694.520000pt;}
.y4_c00485{bottom:716.386667pt;}
.y3_c00485{bottom:738.253333pt;}
.y2_c00485{bottom:759.320000pt;}
.y1_c00485{bottom:781.453333pt;}
.h6_c00485{height:11.733399pt;}
.h7_c00485{height:38.937500pt;}
.h3_c00485{height:54.933594pt;}
.h4_c00485{height:67.526042pt;}
.h2_c00485{height:70.664062pt;}
.h5_c00485{height:74.906250pt;}
.h1_c00485{height:866.666667pt;}
.h0_c00485{height:866.866667pt;}
.w2_c00485{width:93.222667pt;}
.w0_c00485{width:586.533333pt;}
.w1_c00485{width:586.666667pt;}
.x0_c00485{left:0.000000pt;}
.xc_c00485{left:82.533333pt;}
.xa_c00485{left:83.733333pt;}
.x9_c00485{left:85.600000pt;}
.x8_c00485{left:86.666667pt;}
.xb_c00485{left:87.866667pt;}
.x5_c00485{left:89.600000pt;}
.x4_c00485{left:90.533333pt;}
.x3_c00485{left:92.000000pt;}
.x2_c00485{left:93.066667pt;}
.x1_c00485{left:94.533333pt;}
.x7_c00485{left:104.933333pt;}
.x6_c00485{left:216.000000pt;}
.xd_c00485{left:222.266667pt;}
.xe_c00485{left:250.434896pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f6dc28a6de28882c3b5f07c0.woff2')format("woff");}.ff1_c00486{font-family:ff1_c00486;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00486;src:url('chunks/assets/font_d7e985b349bd429119073697.woff2')format("woff");}.ff2_c00486{font-family:ff2_c00486;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00486;src:url('chunks/assets/font_6d760bc5acc312066c2796c9.woff2')format("woff");}.ff3_c00486{font-family:ff3_c00486;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00486;src:url('chunks/assets/font_d1b7ad6989d51bd1628abd2c.woff2')format("woff");}.ff4_c00486{font-family:ff4_c00486;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00486;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c00486{font-family:ff5_c00486;line-height:1.219238;font-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_c00486{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,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;}
.ls1_c00486{letter-spacing:0.000000px;}
.ls0_c00486{letter-spacing:3.936000px;}
.sc__c00486{text-shadow:none;}
.sc0_c00486{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00486{-webkit-text-stroke:0px transparent;}
.sc0_c00486{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00486{word-spacing:-59.184000px;}
.ws1_c00486{word-spacing:0.000000px;}
._1a_c00486{margin-left:-22.599000px;}
._6_c00486{margin-left:-14.337000px;}
._16_c00486{margin-left:-12.312000px;}
._17_c00486{margin-left:-8.100000px;}
._d_c00486{margin-left:-6.480000px;}
._8_c00486{margin-left:-4.941000px;}
._4_c00486{margin-left:-3.240000px;}
._c_c00486{margin-left:-1.539000px;}
._3_c00486{width:1.458000px;}
._2_c00486{width:2.511000px;}
._0_c00486{width:4.212000px;}
._5_c00486{width:5.427000px;}
._1_c00486{width:7.209000px;}
._9_c00486{width:8.424000px;}
._10_c00486{width:9.474000px;}
._7_c00486{width:10.692000px;}
._f_c00486{width:12.330000px;}
._b_c00486{width:14.337000px;}
._e_c00486{width:16.104000px;}
._15_c00486{width:17.172000px;}
._13_c00486{width:18.954000px;}
._19_c00486{width:23.409000px;}
._18_c00486{width:25.353000px;}
._a_c00486{width:29.970000px;}
._14_c00486{width:32.625000px;}
._11_c00486{width:38.880000px;}
._12_c00486{width:84.483000px;}
._1b_c00486{width:276.114000px;}
.fc2_c00486{color:transparent;}
.fc1_c00486{color:rgb(128,128,128);}
.fc0_c00486{color:rgb(0,0,0);}
.fs6_c00486{font-size:48.000000px;}
.fs3_c00486{font-size:57.000000px;}
.fs2_c00486{font-size:72.000000px;}
.fs0_c00486{font-size:81.000000px;}
.fs1_c00486{font-size:84.000000px;}
.fs5_c00486{font-size:96.000000px;}
.fs4_c00486{font-size:159.000000px;}
.y0_c00486{bottom:0.000000px;}
.y23_c00486{bottom:3.105000px;}
.y22_c00486{bottom:7.228369px;}
.y21_c00486{bottom:58.620000px;}
.y20_c00486{bottom:83.970000px;}
.y1f_c00486{bottom:109.320000px;}
.y1e_c00486{bottom:134.220000px;}
.y1d_c00486{bottom:158.670000px;}
.y1c_c00486{bottom:183.570000px;}
.y1b_c00486{bottom:207.870000px;}
.y1a_c00486{bottom:232.920000px;}
.y19_c00486{bottom:257.220000px;}
.y18_c00486{bottom:281.520000px;}
.y17_c00486{bottom:305.670000px;}
.y16_c00486{bottom:330.120000px;}
.y15_c00486{bottom:354.270000px;}
.y14_c00486{bottom:378.720000px;}
.y13_c00486{bottom:402.270000px;}
.y12_c00486{bottom:426.870000px;}
.y11_c00486{bottom:451.170000px;}
.y10_c00486{bottom:474.870000px;}
.yf_c00486{bottom:499.470000px;}
.ye_c00486{bottom:523.770000px;}
.yd_c00486{bottom:547.470000px;}
.yc_c00486{bottom:571.620000px;}
.yb_c00486{bottom:596.370000px;}
.ya_c00486{bottom:619.620000px;}
.y9_c00486{bottom:643.620000px;}
.y8_c00486{bottom:667.620000px;}
.y7_c00486{bottom:716.070000px;}
.y6_c00486{bottom:763.470000px;}
.y5_c00486{bottom:788.370000px;}
.y4_c00486{bottom:813.270000px;}
.y3_c00486{bottom:837.570000px;}
.y2_c00486{bottom:861.870000px;}
.y1_c00486{bottom:886.170000px;}
.h8_c00486{height:13.200073px;}
.h9_c00486{height:43.804688px;}
.h5_c00486{height:55.914551px;}
.h2_c00486{height:79.497070px;}
.h3_c00486{height:82.441406px;}
.h4_c00486{height:84.269531px;}
.h7_c00486{height:94.218750px;}
.h6_c00486{height:160.242188px;}
.h0_c00486{height:970.350000px;}
.h1_c00486{height:970.500000px;}
.w2_c00486{width:104.875500px;}
.w1_c00486{width:659.250000px;}
.w0_c00486{width:659.325000px;}
.x0_c00486{left:0.000000px;}
.x11_c00486{left:55.650000px;}
.xc_c00486{left:63.150000px;}
.x7_c00486{left:68.100000px;}
.x4_c00486{left:72.150000px;}
.x10_c00486{left:75.900000px;}
.xf_c00486{left:76.950000px;}
.xe_c00486{left:78.300000px;}
.xd_c00486{left:79.950000px;}
.xb_c00486{left:81.450000px;}
.xa_c00486{left:82.650000px;}
.x9_c00486{left:83.700000px;}
.x8_c00486{left:85.350000px;}
.x2_c00486{left:88.200000px;}
.x1_c00486{left:90.450000px;}
.x5_c00486{left:96.150000px;}
.x6_c00486{left:120.150000px;}
.x3_c00486{left:236.550000px;}
.x13_c00486{left:281.476730px;}
.x12_c00486{left:395.250000px;}
@media print{
.v0_c00486{vertical-align:0.000000pt;}
.ls1_c00486{letter-spacing:0.000000pt;}
.ls0_c00486{letter-spacing:3.498667pt;}
.ws0_c00486{word-spacing:-52.608000pt;}
.ws1_c00486{word-spacing:0.000000pt;}
._1a_c00486{margin-left:-20.088000pt;}
._6_c00486{margin-left:-12.744000pt;}
._16_c00486{margin-left:-10.944000pt;}
._17_c00486{margin-left:-7.200000pt;}
._d_c00486{margin-left:-5.760000pt;}
._8_c00486{margin-left:-4.392000pt;}
._4_c00486{margin-left:-2.880000pt;}
._c_c00486{margin-left:-1.368000pt;}
._3_c00486{width:1.296000pt;}
._2_c00486{width:2.232000pt;}
._0_c00486{width:3.744000pt;}
._5_c00486{width:4.824000pt;}
._1_c00486{width:6.408000pt;}
._9_c00486{width:7.488000pt;}
._10_c00486{width:8.421333pt;}
._7_c00486{width:9.504000pt;}
._f_c00486{width:10.960000pt;}
._b_c00486{width:12.744000pt;}
._e_c00486{width:14.314667pt;}
._15_c00486{width:15.264000pt;}
._13_c00486{width:16.848000pt;}
._19_c00486{width:20.808000pt;}
._18_c00486{width:22.536000pt;}
._a_c00486{width:26.640000pt;}
._14_c00486{width:29.000000pt;}
._11_c00486{width:34.560000pt;}
._12_c00486{width:75.096000pt;}
._1b_c00486{width:245.434667pt;}
.fs6_c00486{font-size:42.666667pt;}
.fs3_c00486{font-size:50.666667pt;}
.fs2_c00486{font-size:64.000000pt;}
.fs0_c00486{font-size:72.000000pt;}
.fs1_c00486{font-size:74.666667pt;}
.fs5_c00486{font-size:85.333333pt;}
.fs4_c00486{font-size:141.333333pt;}
.y0_c00486{bottom:0.000000pt;}
.y23_c00486{bottom:2.760000pt;}
.y22_c00486{bottom:6.425217pt;}
.y21_c00486{bottom:52.106667pt;}
.y20_c00486{bottom:74.640000pt;}
.y1f_c00486{bottom:97.173333pt;}
.y1e_c00486{bottom:119.306667pt;}
.y1d_c00486{bottom:141.040000pt;}
.y1c_c00486{bottom:163.173333pt;}
.y1b_c00486{bottom:184.773333pt;}
.y1a_c00486{bottom:207.040000pt;}
.y19_c00486{bottom:228.640000pt;}
.y18_c00486{bottom:250.240000pt;}
.y17_c00486{bottom:271.706667pt;}
.y16_c00486{bottom:293.440000pt;}
.y15_c00486{bottom:314.906667pt;}
.y14_c00486{bottom:336.640000pt;}
.y13_c00486{bottom:357.573333pt;}
.y12_c00486{bottom:379.440000pt;}
.y11_c00486{bottom:401.040000pt;}
.y10_c00486{bottom:422.106667pt;}
.yf_c00486{bottom:443.973333pt;}
.ye_c00486{bottom:465.573333pt;}
.yd_c00486{bottom:486.640000pt;}
.yc_c00486{bottom:508.106667pt;}
.yb_c00486{bottom:530.106667pt;}
.ya_c00486{bottom:550.773333pt;}
.y9_c00486{bottom:572.106667pt;}
.y8_c00486{bottom:593.440000pt;}
.y7_c00486{bottom:636.506667pt;}
.y6_c00486{bottom:678.640000pt;}
.y5_c00486{bottom:700.773333pt;}
.y4_c00486{bottom:722.906667pt;}
.y3_c00486{bottom:744.506667pt;}
.y2_c00486{bottom:766.106667pt;}
.y1_c00486{bottom:787.706667pt;}
.h8_c00486{height:11.733399pt;}
.h9_c00486{height:38.937500pt;}
.h5_c00486{height:49.701823pt;}
.h2_c00486{height:70.664062pt;}
.h3_c00486{height:73.281250pt;}
.h4_c00486{height:74.906250pt;}
.h7_c00486{height:83.750000pt;}
.h6_c00486{height:142.437500pt;}
.h0_c00486{height:862.533333pt;}
.h1_c00486{height:862.666667pt;}
.w2_c00486{width:93.222667pt;}
.w1_c00486{width:586.000000pt;}
.w0_c00486{width:586.066667pt;}
.x0_c00486{left:0.000000pt;}
.x11_c00486{left:49.466667pt;}
.xc_c00486{left:56.133333pt;}
.x7_c00486{left:60.533333pt;}
.x4_c00486{left:64.133333pt;}
.x10_c00486{left:67.466667pt;}
.xf_c00486{left:68.400000pt;}
.xe_c00486{left:69.600000pt;}
.xd_c00486{left:71.066667pt;}
.xb_c00486{left:72.400000pt;}
.xa_c00486{left:73.466667pt;}
.x9_c00486{left:74.400000pt;}
.x8_c00486{left:75.866667pt;}
.x2_c00486{left:78.400000pt;}
.x1_c00486{left:80.400000pt;}
.x5_c00486{left:85.466667pt;}
.x6_c00486{left:106.800000pt;}
.x3_c00486{left:210.266667pt;}
.x13_c00486{left:250.201538pt;}
.x12_c00486{left:351.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_5e56494cf8797c58b57d4ebe.woff2')format("woff");}.ff1_c00487{font-family:ff1_c00487;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00487;src:url('chunks/assets/font_b9dbf6b1bc52177c7933d50b.woff2')format("woff");}.ff2_c00487{font-family:ff2_c00487;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00487;src:url('chunks/assets/font_0cf1afdf30f021f3e42ffc29.woff2')format("woff");}.ff3_c00487{font-family:ff3_c00487;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00487;src:url('chunks/assets/font_67cc6a30c67151d0e48875cd.woff2')format("woff");}.ff4_c00487{font-family:ff4_c00487;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00487;src:url('chunks/assets/font_10c97bfbcc08c6a5f1c91dc0.woff2')format("woff");}.ff5_c00487{font-family:ff5_c00487;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00487;src:url('chunks/assets/font_14f2d68d58add9bc12e2d8bf.woff2')format("woff");}.ff6_c00487{font-family:ff6_c00487;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00487;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c00487{font-family:ff7_c00487;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00487{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m0_c00487{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00487{vertical-align:-15.000000px;}
.v0_c00487{vertical-align:0.000000px;}
.ls3_c00487{letter-spacing:-6.000000px;}
.ls2_c00487{letter-spacing:0.000000px;}
.ls1_c00487{letter-spacing:15.600000px;}
.ls0_c00487{letter-spacing:55.800000px;}
.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;}
}
.ws2_c00487{word-spacing:-50.100000px;}
.ws1_c00487{word-spacing:-27.000000px;}
.ws0_c00487{word-spacing:-17.352000px;}
.ws3_c00487{word-spacing:0.000000px;}
._17_c00487{margin-left:-23.733000px;}
._1a_c00487{margin-left:-21.870000px;}
._18_c00487{margin-left:-16.443000px;}
._19_c00487{margin-left:-11.232000px;}
._a_c00487{margin-left:-9.234000px;}
._b_c00487{margin-left:-6.480000px;}
._7_c00487{margin-left:-5.265000px;}
._8_c00487{margin-left:-3.645000px;}
._1_c00487{margin-left:-2.430000px;}
._9_c00487{margin-left:-1.296000px;}
._5_c00487{width:1.215000px;}
._2_c00487{width:2.268000px;}
._3_c00487{width:3.483000px;}
._0_c00487{width:5.103000px;}
._4_c00487{width:6.318000px;}
._6_c00487{width:7.857000px;}
._f_c00487{width:9.720000px;}
._c_c00487{width:11.097000px;}
._e_c00487{width:13.122000px;}
._10_c00487{width:14.823000px;}
._16_c00487{width:16.038000px;}
._11_c00487{width:17.334000px;}
._13_c00487{width:21.330000px;}
._d_c00487{width:23.652000px;}
._12_c00487{width:26.619000px;}
._15_c00487{width:76.626000px;}
._14_c00487{width:608.685000px;}
.fc2_c00487{color:transparent;}
.fc1_c00487{color:rgb(128,128,128);}
.fc0_c00487{color:rgb(0,0,0);}
.fs8_c00487{font-size:48.000000px;}
.fs1_c00487{font-size:57.000000px;}
.fs3_c00487{font-size:60.000000px;}
.fs4_c00487{font-size:66.000000px;}
.fs6_c00487{font-size:72.000000px;}
.fs2_c00487{font-size:78.000000px;}
.fs0_c00487{font-size:81.000000px;}
.fs7_c00487{font-size:102.000000px;}
.fs5_c00487{font-size:108.000000px;}
.y0_c00487{bottom:0.000000px;}
.y24_c00487{bottom:3.105000px;}
.y23_c00487{bottom:7.228369px;}
.y22_c00487{bottom:54.270000px;}
.y21_c00487{bottom:79.320000px;}
.y20_c00487{bottom:105.270000px;}
.y1f_c00487{bottom:130.170000px;}
.y1e_c00487{bottom:154.170000px;}
.y1d_c00487{bottom:178.470000px;}
.y1c_c00487{bottom:202.470000px;}
.y1b_c00487{bottom:226.770000px;}
.y1a_c00487{bottom:250.770000px;}
.y19_c00487{bottom:276.720000px;}
.y18_c00487{bottom:301.320000px;}
.y17_c00487{bottom:325.620000px;}
.y16_c00487{bottom:350.670000px;}
.y15_c00487{bottom:374.670000px;}
.y14_c00487{bottom:399.270000px;}
.y13_c00487{bottom:423.870000px;}
.y12_c00487{bottom:448.170000px;}
.y11_c00487{bottom:472.170000px;}
.y10_c00487{bottom:496.470000px;}
.yf_c00487{bottom:520.320000px;}
.ye_c00487{bottom:548.070000px;}
.yd_c00487{bottom:567.720000px;}
.yc_c00487{bottom:618.270000px;}
.yb_c00487{bottom:643.620000px;}
.ya_c00487{bottom:667.920000px;}
.y9_c00487{bottom:691.920000px;}
.y8_c00487{bottom:716.220000px;}
.y7_c00487{bottom:741.120000px;}
.y6_c00487{bottom:764.670000px;}
.y5_c00487{bottom:788.970000px;}
.y4_c00487{bottom:813.270000px;}
.y3_c00487{bottom:836.970000px;}
.y2_c00487{bottom:861.570000px;}
.y1_c00487{bottom:885.570000px;}
.h8_c00487{height:13.200073px;}
.h9_c00487{height:43.804688px;}
.h4_c00487{height:75.966797px;}
.h2_c00487{height:79.497070px;}
.h6_c00487{height:84.269531px;}
.h3_c00487{height:98.756836px;}
.h7_c00487{height:104.839927px;}
.h5_c00487{height:108.843750px;}
.h1_c00487{height:972.750000px;}
.h0_c00487{height:973.050000px;}
.w2_c00487{width:104.875500px;}
.w0_c00487{width:658.275000px;}
.w1_c00487{width:658.500000px;}
.x0_c00487{left:0.000000px;}
.x1_c00487{left:97.950000px;}
.x2_c00487{left:100.200000px;}
.x3_c00487{left:101.550000px;}
.x4_c00487{left:102.600000px;}
.x8_c00487{left:103.950000px;}
.x6_c00487{left:105.000000px;}
.x9_c00487{left:106.200000px;}
.x7_c00487{left:124.500000px;}
.xb_c00487{left:127.950000px;}
.xa_c00487{left:154.800000px;}
.x5_c00487{left:245.100000px;}
.x12_c00487{left:280.951767px;}
.xc_c00487{left:366.150000px;}
.xd_c00487{left:413.550000px;}
.xe_c00487{left:450.000000px;}
.xf_c00487{left:488.400000px;}
.x11_c00487{left:540.450000px;}
.x10_c00487{left:575.400000px;}
@media print{
.v1_c00487{vertical-align:-13.333333pt;}
.v0_c00487{vertical-align:0.000000pt;}
.ls3_c00487{letter-spacing:-5.333333pt;}
.ls2_c00487{letter-spacing:0.000000pt;}
.ls1_c00487{letter-spacing:13.866667pt;}
.ls0_c00487{letter-spacing:49.600000pt;}
.ws2_c00487{word-spacing:-44.533333pt;}
.ws1_c00487{word-spacing:-24.000000pt;}
.ws0_c00487{word-spacing:-15.424000pt;}
.ws3_c00487{word-spacing:0.000000pt;}
._17_c00487{margin-left:-21.096000pt;}
._1a_c00487{margin-left:-19.440000pt;}
._18_c00487{margin-left:-14.616000pt;}
._19_c00487{margin-left:-9.984000pt;}
._a_c00487{margin-left:-8.208000pt;}
._b_c00487{margin-left:-5.760000pt;}
._7_c00487{margin-left:-4.680000pt;}
._8_c00487{margin-left:-3.240000pt;}
._1_c00487{margin-left:-2.160000pt;}
._9_c00487{margin-left:-1.152000pt;}
._5_c00487{width:1.080000pt;}
._2_c00487{width:2.016000pt;}
._3_c00487{width:3.096000pt;}
._0_c00487{width:4.536000pt;}
._4_c00487{width:5.616000pt;}
._6_c00487{width:6.984000pt;}
._f_c00487{width:8.640000pt;}
._c_c00487{width:9.864000pt;}
._e_c00487{width:11.664000pt;}
._10_c00487{width:13.176000pt;}
._16_c00487{width:14.256000pt;}
._11_c00487{width:15.408000pt;}
._13_c00487{width:18.960000pt;}
._d_c00487{width:21.024000pt;}
._12_c00487{width:23.661333pt;}
._15_c00487{width:68.112000pt;}
._14_c00487{width:541.053333pt;}
.fs8_c00487{font-size:42.666667pt;}
.fs1_c00487{font-size:50.666667pt;}
.fs3_c00487{font-size:53.333333pt;}
.fs4_c00487{font-size:58.666667pt;}
.fs6_c00487{font-size:64.000000pt;}
.fs2_c00487{font-size:69.333333pt;}
.fs0_c00487{font-size:72.000000pt;}
.fs7_c00487{font-size:90.666667pt;}
.fs5_c00487{font-size:96.000000pt;}
.y0_c00487{bottom:0.000000pt;}
.y24_c00487{bottom:2.760000pt;}
.y23_c00487{bottom:6.425217pt;}
.y22_c00487{bottom:48.240000pt;}
.y21_c00487{bottom:70.506667pt;}
.y20_c00487{bottom:93.573333pt;}
.y1f_c00487{bottom:115.706667pt;}
.y1e_c00487{bottom:137.040000pt;}
.y1d_c00487{bottom:158.640000pt;}
.y1c_c00487{bottom:179.973333pt;}
.y1b_c00487{bottom:201.573333pt;}
.y1a_c00487{bottom:222.906667pt;}
.y19_c00487{bottom:245.973333pt;}
.y18_c00487{bottom:267.840000pt;}
.y17_c00487{bottom:289.440000pt;}
.y16_c00487{bottom:311.706667pt;}
.y15_c00487{bottom:333.040000pt;}
.y14_c00487{bottom:354.906667pt;}
.y13_c00487{bottom:376.773333pt;}
.y12_c00487{bottom:398.373333pt;}
.y11_c00487{bottom:419.706667pt;}
.y10_c00487{bottom:441.306667pt;}
.yf_c00487{bottom:462.506667pt;}
.ye_c00487{bottom:487.173333pt;}
.yd_c00487{bottom:504.640000pt;}
.yc_c00487{bottom:549.573333pt;}
.yb_c00487{bottom:572.106667pt;}
.ya_c00487{bottom:593.706667pt;}
.y9_c00487{bottom:615.040000pt;}
.y8_c00487{bottom:636.640000pt;}
.y7_c00487{bottom:658.773333pt;}
.y6_c00487{bottom:679.706667pt;}
.y5_c00487{bottom:701.306667pt;}
.y4_c00487{bottom:722.906667pt;}
.y3_c00487{bottom:743.973333pt;}
.y2_c00487{bottom:765.840000pt;}
.y1_c00487{bottom:787.173333pt;}
.h8_c00487{height:11.733399pt;}
.h9_c00487{height:38.937500pt;}
.h4_c00487{height:67.526042pt;}
.h2_c00487{height:70.664062pt;}
.h6_c00487{height:74.906250pt;}
.h3_c00487{height:87.783854pt;}
.h7_c00487{height:93.191046pt;}
.h5_c00487{height:96.750000pt;}
.h1_c00487{height:864.666667pt;}
.h0_c00487{height:864.933333pt;}
.w2_c00487{width:93.222667pt;}
.w0_c00487{width:585.133333pt;}
.w1_c00487{width:585.333333pt;}
.x0_c00487{left:0.000000pt;}
.x1_c00487{left:87.066667pt;}
.x2_c00487{left:89.066667pt;}
.x3_c00487{left:90.266667pt;}
.x4_c00487{left:91.200000pt;}
.x8_c00487{left:92.400000pt;}
.x6_c00487{left:93.333333pt;}
.x9_c00487{left:94.400000pt;}
.x7_c00487{left:110.666667pt;}
.xb_c00487{left:113.733333pt;}
.xa_c00487{left:137.600000pt;}
.x5_c00487{left:217.866667pt;}
.x12_c00487{left:249.734904pt;}
.xc_c00487{left:325.466667pt;}
.xd_c00487{left:367.600000pt;}
.xe_c00487{left:400.000000pt;}
.xf_c00487{left:434.133333pt;}
.x11_c00487{left:480.400000pt;}
.x10_c00487{left:511.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_44c1127ba1ab9616f14b994d.woff2')format("woff");}.ff1_c00488{font-family:ff1_c00488;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00488;src:url('chunks/assets/font_4ca391493590b488c535ad62.woff2')format("woff");}.ff2_c00488{font-family:ff2_c00488;line-height:1.437000;font-style:normal;font-weight:normal;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_4e8eb4ffd953ff43556cf063.woff2')format("woff");}.ff3_c00488{font-family:ff3_c00488;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00488;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff4_c00488{font-family:ff4_c00488;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00488{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00488{vertical-align:0.000000px;}
.ls2_c00488{letter-spacing:0.000000px;}
.ls1_c00488{letter-spacing:0.900000px;}
.ls0_c00488{letter-spacing:5.100000px;}
.sc__c00488{text-shadow:none;}
.sc0_c00488{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00488{-webkit-text-stroke:0px transparent;}
.sc0_c00488{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00488{word-spacing:-20.250000px;}
.ws1_c00488{word-spacing:0.000000px;}
._19_c00488{margin-left:-14.742000px;}
._a_c00488{margin-left:-12.312000px;}
._9_c00488{margin-left:-10.611000px;}
._15_c00488{margin-left:-9.558000px;}
._b_c00488{margin-left:-8.424000px;}
._8_c00488{margin-left:-7.209000px;}
._5_c00488{margin-left:-5.265000px;}
._2_c00488{margin-left:-3.402000px;}
._1_c00488{margin-left:-2.349000px;}
._7_c00488{margin-left:-1.053000px;}
._3_c00488{width:1.134000px;}
._4_c00488{width:2.754000px;}
._6_c00488{width:3.807000px;}
._0_c00488{width:5.670000px;}
._10_c00488{width:6.723000px;}
._e_c00488{width:8.181000px;}
._12_c00488{width:9.558000px;}
._f_c00488{width:10.854000px;}
._d_c00488{width:12.393000px;}
._c_c00488{width:13.527000px;}
._13_c00488{width:14.580000px;}
._11_c00488{width:16.038000px;}
._17_c00488{width:17.739000px;}
._14_c00488{width:24.705000px;}
._18_c00488{width:76.950000px;}
._1a_c00488{width:269.325000px;}
._16_c00488{width:532.809000px;}
.fc2_c00488{color:transparent;}
.fc1_c00488{color:rgb(128,128,128);}
.fc0_c00488{color:rgb(0,0,0);}
.fs3_c00488{font-size:48.000000px;}
.fs2_c00488{font-size:72.000000px;}
.fs0_c00488{font-size:81.000000px;}
.fs1_c00488{font-size:87.000000px;}
.y0_c00488{bottom:0.000000px;}
.y25_c00488{bottom:3.105000px;}
.y24_c00488{bottom:7.228371px;}
.y23_c00488{bottom:62.115000px;}
.y22_c00488{bottom:87.465000px;}
.y21_c00488{bottom:112.815000px;}
.y20_c00488{bottom:137.715000px;}
.y1f_c00488{bottom:162.465000px;}
.y1e_c00488{bottom:186.765000px;}
.y1d_c00488{bottom:211.365000px;}
.y1c_c00488{bottom:235.965000px;}
.y1b_c00488{bottom:260.265000px;}
.y1a_c00488{bottom:284.265000px;}
.y19_c00488{bottom:309.165000px;}
.y18_c00488{bottom:332.565000px;}
.y17_c00488{bottom:357.165000px;}
.y16_c00488{bottom:381.015000px;}
.y15_c00488{bottom:405.465000px;}
.y14_c00488{bottom:429.615000px;}
.y13_c00488{bottom:453.615000px;}
.y12_c00488{bottom:477.315000px;}
.y11_c00488{bottom:502.215000px;}
.y10_c00488{bottom:525.915000px;}
.yf_c00488{bottom:549.915000px;}
.ye_c00488{bottom:573.465000px;}
.yd_c00488{bottom:597.465000px;}
.yc_c00488{bottom:621.765000px;}
.yb_c00488{bottom:645.615000px;}
.ya_c00488{bottom:669.915000px;}
.y9_c00488{bottom:694.215000px;}
.y8_c00488{bottom:718.215000px;}
.y7_c00488{bottom:742.515000px;}
.y6_c00488{bottom:766.815000px;}
.y5_c00488{bottom:790.815000px;}
.y4_c00488{bottom:815.115000px;}
.y3_c00488{bottom:839.715000px;}
.y2_c00488{bottom:863.415000px;}
.y1_c00488{bottom:887.415000px;}
.h5_c00488{height:13.200074px;}
.h6_c00488{height:43.804688px;}
.h2_c00488{height:79.497070px;}
.h4_c00488{height:84.269531px;}
.h3_c00488{height:91.176000px;}
.h0_c00488{height:989.025000px;}
.h1_c00488{height:989.250000px;}
.w1_c00488{width:104.875500px;}
.w0_c00488{width:672.000000px;}
.x0_c00488{left:0.000000px;}
.x6_c00488{left:19.200000px;}
.x4_c00488{left:20.550000px;}
.x1_c00488{left:34.800000px;}
.x2_c00488{left:36.000000px;}
.x3_c00488{left:37.050000px;}
.x5_c00488{left:38.850000px;}
.x7_c00488{left:40.050000px;}
.xc_c00488{left:41.100000px;}
.xb_c00488{left:42.150000px;}
.x9_c00488{left:44.250000px;}
.xa_c00488{left:84.600000px;}
.x8_c00488{left:186.300000px;}
.xe_c00488{left:287.814240px;}
.xd_c00488{left:399.450000px;}
@media print{
.v0_c00488{vertical-align:0.000000pt;}
.ls2_c00488{letter-spacing:0.000000pt;}
.ls1_c00488{letter-spacing:0.800000pt;}
.ls0_c00488{letter-spacing:4.533333pt;}
.ws0_c00488{word-spacing:-18.000000pt;}
.ws1_c00488{word-spacing:0.000000pt;}
._19_c00488{margin-left:-13.104000pt;}
._a_c00488{margin-left:-10.944000pt;}
._9_c00488{margin-left:-9.432000pt;}
._15_c00488{margin-left:-8.496000pt;}
._b_c00488{margin-left:-7.488000pt;}
._8_c00488{margin-left:-6.408000pt;}
._5_c00488{margin-left:-4.680000pt;}
._2_c00488{margin-left:-3.024000pt;}
._1_c00488{margin-left:-2.088000pt;}
._7_c00488{margin-left:-0.936000pt;}
._3_c00488{width:1.008000pt;}
._4_c00488{width:2.448000pt;}
._6_c00488{width:3.384000pt;}
._0_c00488{width:5.040000pt;}
._10_c00488{width:5.976000pt;}
._e_c00488{width:7.272000pt;}
._12_c00488{width:8.496000pt;}
._f_c00488{width:9.648000pt;}
._d_c00488{width:11.016000pt;}
._c_c00488{width:12.024000pt;}
._13_c00488{width:12.960000pt;}
._11_c00488{width:14.256000pt;}
._17_c00488{width:15.768000pt;}
._14_c00488{width:21.960000pt;}
._18_c00488{width:68.400000pt;}
._1a_c00488{width:239.400000pt;}
._16_c00488{width:473.608000pt;}
.fs3_c00488{font-size:42.666667pt;}
.fs2_c00488{font-size:64.000000pt;}
.fs0_c00488{font-size:72.000000pt;}
.fs1_c00488{font-size:77.333333pt;}
.y0_c00488{bottom:0.000000pt;}
.y25_c00488{bottom:2.760000pt;}
.y24_c00488{bottom:6.425219pt;}
.y23_c00488{bottom:55.213333pt;}
.y22_c00488{bottom:77.746667pt;}
.y21_c00488{bottom:100.280000pt;}
.y20_c00488{bottom:122.413333pt;}
.y1f_c00488{bottom:144.413333pt;}
.y1e_c00488{bottom:166.013333pt;}
.y1d_c00488{bottom:187.880000pt;}
.y1c_c00488{bottom:209.746667pt;}
.y1b_c00488{bottom:231.346667pt;}
.y1a_c00488{bottom:252.680000pt;}
.y19_c00488{bottom:274.813333pt;}
.y18_c00488{bottom:295.613333pt;}
.y17_c00488{bottom:317.480000pt;}
.y16_c00488{bottom:338.680000pt;}
.y15_c00488{bottom:360.413333pt;}
.y14_c00488{bottom:381.880000pt;}
.y13_c00488{bottom:403.213333pt;}
.y12_c00488{bottom:424.280000pt;}
.y11_c00488{bottom:446.413333pt;}
.y10_c00488{bottom:467.480000pt;}
.yf_c00488{bottom:488.813333pt;}
.ye_c00488{bottom:509.746667pt;}
.yd_c00488{bottom:531.080000pt;}
.yc_c00488{bottom:552.680000pt;}
.yb_c00488{bottom:573.880000pt;}
.ya_c00488{bottom:595.480000pt;}
.y9_c00488{bottom:617.080000pt;}
.y8_c00488{bottom:638.413333pt;}
.y7_c00488{bottom:660.013333pt;}
.y6_c00488{bottom:681.613333pt;}
.y5_c00488{bottom:702.946667pt;}
.y4_c00488{bottom:724.546667pt;}
.y3_c00488{bottom:746.413333pt;}
.y2_c00488{bottom:767.480000pt;}
.y1_c00488{bottom:788.813333pt;}
.h5_c00488{height:11.733399pt;}
.h6_c00488{height:38.937500pt;}
.h2_c00488{height:70.664062pt;}
.h4_c00488{height:74.906250pt;}
.h3_c00488{height:81.045333pt;}
.h0_c00488{height:879.133333pt;}
.h1_c00488{height:879.333333pt;}
.w1_c00488{width:93.222667pt;}
.w0_c00488{width:597.333333pt;}
.x0_c00488{left:0.000000pt;}
.x6_c00488{left:17.066667pt;}
.x4_c00488{left:18.266667pt;}
.x1_c00488{left:30.933333pt;}
.x2_c00488{left:32.000000pt;}
.x3_c00488{left:32.933333pt;}
.x5_c00488{left:34.533333pt;}
.x7_c00488{left:35.600000pt;}
.xc_c00488{left:36.533333pt;}
.xb_c00488{left:37.466667pt;}
.x9_c00488{left:39.333333pt;}
.xa_c00488{left:75.200000pt;}
.x8_c00488{left:165.600000pt;}
.xe_c00488{left:255.834880pt;}
.xd_c00488{left:355.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_3ebafcc8a740f9767fe9cd68.woff2')format("woff");}.ff1_c00489{font-family:ff1_c00489;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00489;src:url('chunks/assets/font_d0723731c0322ee3befc2a74.woff2')format("woff");}.ff2_c00489{font-family:ff2_c00489;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00489;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff3_c00489{font-family:ff3_c00489;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00489;src:url('chunks/assets/font_fd290c89ee98a6743f13d40a.woff2')format("woff");}.ff4_c00489{font-family:ff4_c00489;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00489;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c00489{font-family:ff5_c00489;line-height:1.219238;font-style: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;}
.ls1_c00489{letter-spacing:0.000000px;}
.ls2_c00489{letter-spacing:3.000000px;}
.ls0_c00489{letter-spacing:4.080000px;}
.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:-67.686000px;}
.ws0_c00489{word-spacing:-59.184000px;}
.ws2_c00489{word-spacing:0.000000px;}
._17_c00489{margin-left:-23.976000px;}
._1b_c00489{margin-left:-20.655000px;}
._16_c00489{margin-left:-16.848000px;}
._12_c00489{margin-left:-13.770000px;}
._14_c00489{margin-left:-10.287000px;}
._13_c00489{margin-left:-8.181000px;}
._e_c00489{margin-left:-5.751000px;}
._2_c00489{margin-left:-4.050000px;}
._3_c00489{margin-left:-2.430000px;}
._8_c00489{margin-left:-1.134000px;}
._9_c00489{width:1.296000px;}
._1_c00489{width:2.511000px;}
._0_c00489{width:3.564000px;}
._7_c00489{width:4.698000px;}
._5_c00489{width:5.751000px;}
._6_c00489{width:7.128000px;}
._4_c00489{width:8.667000px;}
._d_c00489{width:10.692000px;}
._b_c00489{width:12.150000px;}
._a_c00489{width:13.446000px;}
._18_c00489{width:14.823000px;}
._11_c00489{width:16.038000px;}
._c_c00489{width:18.144000px;}
._10_c00489{width:24.045000px;}
._1a_c00489{width:26.568000px;}
._1c_c00489{width:29.808000px;}
._19_c00489{width:31.209000px;}
._15_c00489{width:33.291000px;}
._f_c00489{width:52.053000px;}
._1d_c00489{width:1606.068000px;}
.fc2_c00489{color:transparent;}
.fc1_c00489{color:rgb(128,128,128);}
.fc0_c00489{color:rgb(0,0,0);}
.fs4_c00489{font-size:48.000000px;}
.fs1_c00489{font-size:69.000000px;}
.fs2_c00489{font-size:72.000000px;}
.fs0_c00489{font-size:81.000000px;}
.fs3_c00489{font-size:87.000000px;}
.y0_c00489{bottom:0.000000px;}
.y25_c00489{bottom:3.105000px;}
.y24_c00489{bottom:7.228371px;}
.y23_c00489{bottom:64.215000px;}
.y22_c00489{bottom:87.765000px;}
.y21_c00489{bottom:113.715000px;}
.y20_c00489{bottom:137.415000px;}
.y1f_c00489{bottom:162.315000px;}
.y1e_c00489{bottom:186.765000px;}
.y1d_c00489{bottom:211.965000px;}
.y1c_c00489{bottom:235.665000px;}
.y1b_c00489{bottom:260.565000px;}
.y1a_c00489{bottom:284.565000px;}
.y19_c00489{bottom:309.915000px;}
.y18_c00489{bottom:333.765000px;}
.y17_c00489{bottom:358.815000px;}
.y16_c00489{bottom:382.815000px;}
.y15_c00489{bottom:409.065000px;}
.y14_c00489{bottom:433.665000px;}
.y13_c00489{bottom:456.765000px;}
.y12_c00489{bottom:480.615000px;}
.y11_c00489{bottom:504.915000px;}
.y10_c00489{bottom:528.165000px;}
.yf_c00489{bottom:552.465000px;}
.ye_c00489{bottom:576.765000px;}
.yd_c00489{bottom:600.765000px;}
.yc_c00489{bottom:625.065000px;}
.yb_c00489{bottom:649.365000px;}
.ya_c00489{bottom:675.315000px;}
.y9_c00489{bottom:698.265000px;}
.y8_c00489{bottom:723.015000px;}
.y7_c00489{bottom:747.615000px;}
.y6_c00489{bottom:771.615000px;}
.y5_c00489{bottom:794.865000px;}
.y4_c00489{bottom:821.265000px;}
.y3_c00489{bottom:843.465000px;}
.y2_c00489{bottom:867.465000px;}
.y1_c00489{bottom:892.365000px;}
.h6_c00489{height:13.200074px;}
.h7_c00489{height:43.804688px;}
.h2_c00489{height:79.497070px;}
.h4_c00489{height:84.269531px;}
.h3_c00489{height:91.160156px;}
.h5_c00489{height:91.176000px;}
.h1_c00489{height:986.250000px;}
.h0_c00489{height:986.325000px;}
.w2_c00489{width:104.875500px;}
.w0_c00489{width:667.425000px;}
.w1_c00489{width:667.500000px;}
.x0_c00489{left:0.000000px;}
.xa_c00489{left:132.600000px;}
.x9_c00489{left:133.650000px;}
.x8_c00489{left:135.300000px;}
.x7_c00489{left:136.350000px;}
.x6_c00489{left:138.450000px;}
.x5_c00489{left:140.100000px;}
.x4_c00489{left:141.150000px;}
.x3_c00489{left:142.350000px;}
.x2_c00489{left:144.900000px;}
.x1_c00489{left:146.100000px;}
.xb_c00489{left:285.526749px;}
@media print{
.v0_c00489{vertical-align:0.000000pt;}
.ls1_c00489{letter-spacing:0.000000pt;}
.ls2_c00489{letter-spacing:2.666667pt;}
.ls0_c00489{letter-spacing:3.626667pt;}
.ws1_c00489{word-spacing:-60.165333pt;}
.ws0_c00489{word-spacing:-52.608000pt;}
.ws2_c00489{word-spacing:0.000000pt;}
._17_c00489{margin-left:-21.312000pt;}
._1b_c00489{margin-left:-18.360000pt;}
._16_c00489{margin-left:-14.976000pt;}
._12_c00489{margin-left:-12.240000pt;}
._14_c00489{margin-left:-9.144000pt;}
._13_c00489{margin-left:-7.272000pt;}
._e_c00489{margin-left:-5.112000pt;}
._2_c00489{margin-left:-3.600000pt;}
._3_c00489{margin-left:-2.160000pt;}
._8_c00489{margin-left:-1.008000pt;}
._9_c00489{width:1.152000pt;}
._1_c00489{width:2.232000pt;}
._0_c00489{width:3.168000pt;}
._7_c00489{width:4.176000pt;}
._5_c00489{width:5.112000pt;}
._6_c00489{width:6.336000pt;}
._4_c00489{width:7.704000pt;}
._d_c00489{width:9.504000pt;}
._b_c00489{width:10.800000pt;}
._a_c00489{width:11.952000pt;}
._18_c00489{width:13.176000pt;}
._11_c00489{width:14.256000pt;}
._c_c00489{width:16.128000pt;}
._10_c00489{width:21.373333pt;}
._1a_c00489{width:23.616000pt;}
._1c_c00489{width:26.496000pt;}
._19_c00489{width:27.741333pt;}
._15_c00489{width:29.592000pt;}
._f_c00489{width:46.269333pt;}
._1d_c00489{width:1427.616000pt;}
.fs4_c00489{font-size:42.666667pt;}
.fs1_c00489{font-size:61.333333pt;}
.fs2_c00489{font-size:64.000000pt;}
.fs0_c00489{font-size:72.000000pt;}
.fs3_c00489{font-size:77.333333pt;}
.y0_c00489{bottom:0.000000pt;}
.y25_c00489{bottom:2.760000pt;}
.y24_c00489{bottom:6.425219pt;}
.y23_c00489{bottom:57.080000pt;}
.y22_c00489{bottom:78.013333pt;}
.y21_c00489{bottom:101.080000pt;}
.y20_c00489{bottom:122.146667pt;}
.y1f_c00489{bottom:144.280000pt;}
.y1e_c00489{bottom:166.013333pt;}
.y1d_c00489{bottom:188.413333pt;}
.y1c_c00489{bottom:209.480000pt;}
.y1b_c00489{bottom:231.613333pt;}
.y1a_c00489{bottom:252.946667pt;}
.y19_c00489{bottom:275.480000pt;}
.y18_c00489{bottom:296.680000pt;}
.y17_c00489{bottom:318.946667pt;}
.y16_c00489{bottom:340.280000pt;}
.y15_c00489{bottom:363.613333pt;}
.y14_c00489{bottom:385.480000pt;}
.y13_c00489{bottom:406.013333pt;}
.y12_c00489{bottom:427.213333pt;}
.y11_c00489{bottom:448.813333pt;}
.y10_c00489{bottom:469.480000pt;}
.yf_c00489{bottom:491.080000pt;}
.ye_c00489{bottom:512.680000pt;}
.yd_c00489{bottom:534.013333pt;}
.yc_c00489{bottom:555.613333pt;}
.yb_c00489{bottom:577.213333pt;}
.ya_c00489{bottom:600.280000pt;}
.y9_c00489{bottom:620.680000pt;}
.y8_c00489{bottom:642.680000pt;}
.y7_c00489{bottom:664.546667pt;}
.y6_c00489{bottom:685.880000pt;}
.y5_c00489{bottom:706.546667pt;}
.y4_c00489{bottom:730.013333pt;}
.y3_c00489{bottom:749.746667pt;}
.y2_c00489{bottom:771.080000pt;}
.y1_c00489{bottom:793.213333pt;}
.h6_c00489{height:11.733399pt;}
.h7_c00489{height:38.937500pt;}
.h2_c00489{height:70.664062pt;}
.h4_c00489{height:74.906250pt;}
.h3_c00489{height:81.031250pt;}
.h5_c00489{height:81.045333pt;}
.h1_c00489{height:876.666667pt;}
.h0_c00489{height:876.733333pt;}
.w2_c00489{width:93.222667pt;}
.w0_c00489{width:593.266667pt;}
.w1_c00489{width:593.333333pt;}
.x0_c00489{left:0.000000pt;}
.xa_c00489{left:117.866667pt;}
.x9_c00489{left:118.800000pt;}
.x8_c00489{left:120.266667pt;}
.x7_c00489{left:121.200000pt;}
.x6_c00489{left:123.066667pt;}
.x5_c00489{left:124.533333pt;}
.x4_c00489{left:125.466667pt;}
.x3_c00489{left:126.533333pt;}
.x2_c00489{left:128.800000pt;}
.x1_c00489{left:129.866667pt;}
.xb_c00489{left:253.801554pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ec1ce525e89b65940dbfc236.woff2')format("woff");}.ff1_c00490{font-family:ff1_c00490;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00490;src:url('chunks/assets/font_ea1f0caf409aeaaf2a8b824b.woff2')format("woff");}.ff2_c00490{font-family:ff2_c00490;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00490;src:url('chunks/assets/font_6137794ce032b2e5aebaf614.woff2')format("woff");}.ff3_c00490{font-family:ff3_c00490;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00490;src:url('chunks/assets/font_48793a38b6358b0f953b8b2b.woff2')format("woff");}.ff4_c00490{font-family:ff4_c00490;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00490;src:url('chunks/assets/font_d6a661595363264ec41a1741.woff2')format("woff");}.ff5_c00490{font-family:ff5_c00490;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00490;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c00490{font-family:ff6_c00490;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00490{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,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;}
.ls0_c00490{letter-spacing:0.000000px;}
.ls1_c00490{letter-spacing:12.000000px;}
.sc__c00490{text-shadow:none;}
.sc0_c00490{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00490{-webkit-text-stroke:0px transparent;}
.sc0_c00490{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00490{word-spacing:-67.686000px;}
.ws0_c00490{word-spacing:-27.000000px;}
.ws3_c00490{word-spacing:-20.250000px;}
.ws1_c00490{word-spacing:-4.374000px;}
.ws4_c00490{word-spacing:0.000000px;}
._16_c00490{margin-left:-17.361000px;}
._14_c00490{margin-left:-13.956000px;}
._10_c00490{margin-left:-10.689000px;}
._15_c00490{margin-left:-9.639000px;}
._b_c00490{margin-left:-8.502000px;}
._e_c00490{margin-left:-7.158000px;}
._f_c00490{margin-left:-5.817000px;}
._4_c00490{margin-left:-4.368000px;}
._3_c00490{margin-left:-2.418000px;}
._8_c00490{margin-left:-1.341000px;}
._2_c00490{width:1.404000px;}
._1_c00490{width:2.652000px;}
._0_c00490{width:4.212000px;}
._6_c00490{width:5.460000px;}
._5_c00490{width:6.552000px;}
._9_c00490{width:8.346000px;}
._a_c00490{width:10.329000px;}
._7_c00490{width:11.376000px;}
._c_c00490{width:12.462000px;}
._17_c00490{width:13.485000px;}
._11_c00490{width:15.066000px;}
._d_c00490{width:24.294000px;}
._12_c00490{width:28.350000px;}
._13_c00490{width:78.084000px;}
.fc2_c00490{color:transparent;}
.fc1_c00490{color:rgb(128,128,128);}
.fc0_c00490{color:rgb(0,0,0);}
.fs5_c00490{font-size:48.000000px;}
.fs3_c00490{font-size:75.000000px;}
.fs0_c00490{font-size:78.000000px;}
.fs2_c00490{font-size:81.000000px;}
.fs4_c00490{font-size:87.000000px;}
.fs1_c00490{font-size:108.000000px;}
.y0_c00490{bottom:0.000000px;}
.y24_c00490{bottom:3.105000px;}
.y23_c00490{bottom:7.228369px;}
.y22_c00490{bottom:56.070000px;}
.y21_c00490{bottom:80.370000px;}
.y20_c00490{bottom:105.570000px;}
.y1f_c00490{bottom:130.320000px;}
.y1e_c00490{bottom:154.620000px;}
.y1d_c00490{bottom:178.770000px;}
.y1c_c00490{bottom:203.520000px;}
.y1b_c00490{bottom:227.520000px;}
.y1a_c00490{bottom:251.970000px;}
.y19_c00490{bottom:276.120000px;}
.y18_c00490{bottom:300.270000px;}
.y17_c00490{bottom:324.270000px;}
.y16_c00490{bottom:348.870000px;}
.y15_c00490{bottom:372.570000px;}
.y14_c00490{bottom:396.870000px;}
.y13_c00490{bottom:421.170000px;}
.y12_c00490{bottom:445.170000px;}
.y11_c00490{bottom:469.020000px;}
.y10_c00490{bottom:493.020000px;}
.yf_c00490{bottom:540.720000px;}
.ye_c00490{bottom:565.020000px;}
.yd_c00490{bottom:589.170000px;}
.yc_c00490{bottom:613.170000px;}
.yb_c00490{bottom:637.170000px;}
.ya_c00490{bottom:661.470000px;}
.y9_c00490{bottom:685.770000px;}
.y8_c00490{bottom:709.770000px;}
.y7_c00490{bottom:734.070000px;}
.y6_c00490{bottom:758.670000px;}
.y5_c00490{bottom:782.670000px;}
.y4_c00490{bottom:806.970000px;}
.y3_c00490{bottom:831.570000px;}
.y2_c00490{bottom:855.870000px;}
.y1_c00490{bottom:879.870000px;}
.h7_c00490{height:13.200073px;}
.h8_c00490{height:43.804688px;}
.h5_c00490{height:73.608398px;}
.h4_c00490{height:79.497070px;}
.h6_c00490{height:91.176000px;}
.h2_c00490{height:98.756836px;}
.h3_c00490{height:108.843750px;}
.h0_c00490{height:970.350000px;}
.h1_c00490{height:970.500000px;}
.w2_c00490{width:104.875500px;}
.w1_c00490{width:659.250000px;}
.w0_c00490{width:659.325000px;}
.x0_c00490{left:0.000000px;}
.x6_c00490{left:10.350000px;}
.x9_c00490{left:11.400000px;}
.x1_c00490{left:28.350000px;}
.x4_c00490{left:29.700000px;}
.x7_c00490{left:30.750000px;}
.xa_c00490{left:33.750000px;}
.x2_c00490{left:66.750000px;}
.x8_c00490{left:189.600000px;}
.xc_c00490{left:281.476730px;}
.xb_c00490{left:466.650000px;}
.x5_c00490{left:484.650000px;}
.x3_c00490{left:505.950000px;}
@media print{
.v0_c00490{vertical-align:0.000000pt;}
.ls0_c00490{letter-spacing:0.000000pt;}
.ls1_c00490{letter-spacing:10.666667pt;}
.ws2_c00490{word-spacing:-60.165333pt;}
.ws0_c00490{word-spacing:-24.000000pt;}
.ws3_c00490{word-spacing:-18.000000pt;}
.ws1_c00490{word-spacing:-3.888000pt;}
.ws4_c00490{word-spacing:0.000000pt;}
._16_c00490{margin-left:-15.432000pt;}
._14_c00490{margin-left:-12.405333pt;}
._10_c00490{margin-left:-9.501333pt;}
._15_c00490{margin-left:-8.568000pt;}
._b_c00490{margin-left:-7.557333pt;}
._e_c00490{margin-left:-6.362667pt;}
._f_c00490{margin-left:-5.170667pt;}
._4_c00490{margin-left:-3.882667pt;}
._3_c00490{margin-left:-2.149333pt;}
._8_c00490{margin-left:-1.192000pt;}
._2_c00490{width:1.248000pt;}
._1_c00490{width:2.357333pt;}
._0_c00490{width:3.744000pt;}
._6_c00490{width:4.853333pt;}
._5_c00490{width:5.824000pt;}
._9_c00490{width:7.418667pt;}
._a_c00490{width:9.181333pt;}
._7_c00490{width:10.112000pt;}
._c_c00490{width:11.077333pt;}
._17_c00490{width:11.986667pt;}
._11_c00490{width:13.392000pt;}
._d_c00490{width:21.594667pt;}
._12_c00490{width:25.200000pt;}
._13_c00490{width:69.408000pt;}
.fs5_c00490{font-size:42.666667pt;}
.fs3_c00490{font-size:66.666667pt;}
.fs0_c00490{font-size:69.333333pt;}
.fs2_c00490{font-size:72.000000pt;}
.fs4_c00490{font-size:77.333333pt;}
.fs1_c00490{font-size:96.000000pt;}
.y0_c00490{bottom:0.000000pt;}
.y24_c00490{bottom:2.760000pt;}
.y23_c00490{bottom:6.425217pt;}
.y22_c00490{bottom:49.840000pt;}
.y21_c00490{bottom:71.440000pt;}
.y20_c00490{bottom:93.840000pt;}
.y1f_c00490{bottom:115.840000pt;}
.y1e_c00490{bottom:137.440000pt;}
.y1d_c00490{bottom:158.906667pt;}
.y1c_c00490{bottom:180.906667pt;}
.y1b_c00490{bottom:202.240000pt;}
.y1a_c00490{bottom:223.973333pt;}
.y19_c00490{bottom:245.440000pt;}
.y18_c00490{bottom:266.906667pt;}
.y17_c00490{bottom:288.240000pt;}
.y16_c00490{bottom:310.106667pt;}
.y15_c00490{bottom:331.173333pt;}
.y14_c00490{bottom:352.773333pt;}
.y13_c00490{bottom:374.373333pt;}
.y12_c00490{bottom:395.706667pt;}
.y11_c00490{bottom:416.906667pt;}
.y10_c00490{bottom:438.240000pt;}
.yf_c00490{bottom:480.640000pt;}
.ye_c00490{bottom:502.240000pt;}
.yd_c00490{bottom:523.706667pt;}
.yc_c00490{bottom:545.040000pt;}
.yb_c00490{bottom:566.373333pt;}
.ya_c00490{bottom:587.973333pt;}
.y9_c00490{bottom:609.573333pt;}
.y8_c00490{bottom:630.906667pt;}
.y7_c00490{bottom:652.506667pt;}
.y6_c00490{bottom:674.373333pt;}
.y5_c00490{bottom:695.706667pt;}
.y4_c00490{bottom:717.306667pt;}
.y3_c00490{bottom:739.173333pt;}
.y2_c00490{bottom:760.773333pt;}
.y1_c00490{bottom:782.106667pt;}
.h7_c00490{height:11.733399pt;}
.h8_c00490{height:38.937500pt;}
.h5_c00490{height:65.429688pt;}
.h4_c00490{height:70.664062pt;}
.h6_c00490{height:81.045333pt;}
.h2_c00490{height:87.783854pt;}
.h3_c00490{height:96.750000pt;}
.h0_c00490{height:862.533333pt;}
.h1_c00490{height:862.666667pt;}
.w2_c00490{width:93.222667pt;}
.w1_c00490{width:586.000000pt;}
.w0_c00490{width:586.066667pt;}
.x0_c00490{left:0.000000pt;}
.x6_c00490{left:9.200000pt;}
.x9_c00490{left:10.133333pt;}
.x1_c00490{left:25.200000pt;}
.x4_c00490{left:26.400000pt;}
.x7_c00490{left:27.333333pt;}
.xa_c00490{left:30.000000pt;}
.x2_c00490{left:59.333333pt;}
.x8_c00490{left:168.533333pt;}
.xc_c00490{left:250.201538pt;}
.xb_c00490{left:414.800000pt;}
.x5_c00490{left:430.800000pt;}
.x3_c00490{left:449.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_6fef634d7d67a0b2fcdc4be6.woff2')format("woff");}.ff1_c00491{font-family:ff1_c00491;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00491;src:url('chunks/assets/font_3c3f83e571dfd196fa273113.woff2')format("woff");}.ff2_c00491{font-family:ff2_c00491;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00491;src:url('chunks/assets/font_6d1924bceb5e1c80385a2a3f.woff2')format("woff");}.ff3_c00491{font-family:ff3_c00491;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00491;src:url('chunks/assets/font_e26fd5d00d79ae1d9eb6a4c1.woff2')format("woff");}.ff4_c00491{font-family:ff4_c00491;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00491;src:url('chunks/assets/font_7b149d362dee583d54abbcd4.woff2')format("woff");}.ff5_c00491{font-family:ff5_c00491;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00491;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c00491{font-family:ff6_c00491;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00491{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m0_c00491{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00491{vertical-align:-15.000000px;}
.v0_c00491{vertical-align:0.000000px;}
.ls2_c00491{letter-spacing:0.000000px;}
.ls0_c00491{letter-spacing:4.704000px;}
.ls1_c00491{letter-spacing:118.800000px;}
.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:-60.048000px;}
.ws0_c00491{word-spacing:-59.184000px;}
.ws2_c00491{word-spacing:0.000000px;}
._12_c00491{margin-left:-11.574000px;}
._d_c00491{margin-left:-7.452000px;}
._14_c00491{margin-left:-5.427000px;}
._9_c00491{margin-left:-4.212000px;}
._5_c00491{margin-left:-3.159000px;}
._b_c00491{margin-left:-1.458000px;}
._8_c00491{width:1.215000px;}
._c_c00491{width:2.430000px;}
._a_c00491{width:3.483000px;}
._4_c00491{width:4.779000px;}
._6_c00491{width:6.480000px;}
._1_c00491{width:7.857000px;}
._3_c00491{width:8.991000px;}
._0_c00491{width:10.773000px;}
._7_c00491{width:12.717000px;}
._2_c00491{width:13.770000px;}
._f_c00491{width:15.147000px;}
._10_c00491{width:16.281000px;}
._e_c00491{width:19.197000px;}
._13_c00491{width:29.727000px;}
._11_c00491{width:66.375000px;}
.fc2_c00491{color:transparent;}
.fc1_c00491{color:rgb(128,128,128);}
.fc0_c00491{color:rgb(0,0,0);}
.fs5_c00491{font-size:48.000000px;}
.fs3_c00491{font-size:60.000000px;}
.fs1_c00491{font-size:72.000000px;}
.fs2_c00491{font-size:75.000000px;}
.fs0_c00491{font-size:81.000000px;}
.fs4_c00491{font-size:108.000000px;}
.y0_c00491{bottom:0.000000px;}
.y25_c00491{bottom:3.105000px;}
.y24_c00491{bottom:7.228371px;}
.y23_c00491{bottom:68.865000px;}
.y22_c00491{bottom:92.865000px;}
.y21_c00491{bottom:117.165000px;}
.y20_c00491{bottom:141.765000px;}
.y1f_c00491{bottom:166.815000px;}
.y1e_c00491{bottom:191.115000px;}
.y1d_c00491{bottom:215.415000px;}
.y1c_c00491{bottom:239.715000px;}
.y1b_c00491{bottom:264.615000px;}
.y1a_c00491{bottom:288.915000px;}
.y19_c00491{bottom:313.515000px;}
.y18_c00491{bottom:337.815000px;}
.y17_c00491{bottom:362.265000px;}
.y16_c00491{bottom:386.415000px;}
.y15_c00491{bottom:410.715000px;}
.y14_c00491{bottom:435.015000px;}
.y13_c00491{bottom:459.315000px;}
.y12_c00491{bottom:487.515000px;}
.y11_c00491{bottom:506.265000px;}
.y10_c00491{bottom:529.515000px;}
.yf_c00491{bottom:554.265000px;}
.ye_c00491{bottom:578.265000px;}
.yd_c00491{bottom:602.865000px;}
.yc_c00491{bottom:626.865000px;}
.yb_c00491{bottom:652.365000px;}
.ya_c00491{bottom:676.665000px;}
.y9_c00491{bottom:699.765000px;}
.y8_c00491{bottom:724.365000px;}
.y7_c00491{bottom:748.665000px;}
.y6_c00491{bottom:772.965000px;}
.y5_c00491{bottom:796.815000px;}
.y4_c00491{bottom:821.115000px;}
.y3_c00491{bottom:846.165000px;}
.y2_c00491{bottom:869.715000px;}
.y1_c00491{bottom:894.165000px;}
.h7_c00491{height:13.200074px;}
.h8_c00491{height:43.804688px;}
.h4_c00491{height:73.571777px;}
.h5_c00491{height:75.966797px;}
.h2_c00491{height:79.497070px;}
.h3_c00491{height:91.160156px;}
.h6_c00491{height:108.843750px;}
.h1_c00491{height:986.250000px;}
.h0_c00491{height:986.325000px;}
.w2_c00491{width:104.875500px;}
.w0_c00491{width:667.425000px;}
.w1_c00491{width:667.500000px;}
.x0_c00491{left:0.000000px;}
.x1_c00491{left:135.300000px;}
.x2_c00491{left:136.950000px;}
.x3_c00491{left:138.000000px;}
.x4_c00491{left:139.500000px;}
.x5_c00491{left:141.750000px;}
.x6_c00491{left:142.800000px;}
.x7_c00491{left:144.750000px;}
.x9_c00491{left:146.400000px;}
.xa_c00491{left:160.650000px;}
.xc_c00491{left:285.526749px;}
.x8_c00491{left:293.550000px;}
.xb_c00491{left:592.950000px;}
@media print{
.v1_c00491{vertical-align:-13.333333pt;}
.v0_c00491{vertical-align:0.000000pt;}
.ls2_c00491{letter-spacing:0.000000pt;}
.ls0_c00491{letter-spacing:4.181333pt;}
.ls1_c00491{letter-spacing:105.600000pt;}
.ws1_c00491{word-spacing:-53.376000pt;}
.ws0_c00491{word-spacing:-52.608000pt;}
.ws2_c00491{word-spacing:0.000000pt;}
._12_c00491{margin-left:-10.288000pt;}
._d_c00491{margin-left:-6.624000pt;}
._14_c00491{margin-left:-4.824000pt;}
._9_c00491{margin-left:-3.744000pt;}
._5_c00491{margin-left:-2.808000pt;}
._b_c00491{margin-left:-1.296000pt;}
._8_c00491{width:1.080000pt;}
._c_c00491{width:2.160000pt;}
._a_c00491{width:3.096000pt;}
._4_c00491{width:4.248000pt;}
._6_c00491{width:5.760000pt;}
._1_c00491{width:6.984000pt;}
._3_c00491{width:7.992000pt;}
._0_c00491{width:9.576000pt;}
._7_c00491{width:11.304000pt;}
._2_c00491{width:12.240000pt;}
._f_c00491{width:13.464000pt;}
._10_c00491{width:14.472000pt;}
._e_c00491{width:17.064000pt;}
._13_c00491{width:26.424000pt;}
._11_c00491{width:59.000000pt;}
.fs5_c00491{font-size:42.666667pt;}
.fs3_c00491{font-size:53.333333pt;}
.fs1_c00491{font-size:64.000000pt;}
.fs2_c00491{font-size:66.666667pt;}
.fs0_c00491{font-size:72.000000pt;}
.fs4_c00491{font-size:96.000000pt;}
.y0_c00491{bottom:0.000000pt;}
.y25_c00491{bottom:2.760000pt;}
.y24_c00491{bottom:6.425219pt;}
.y23_c00491{bottom:61.213333pt;}
.y22_c00491{bottom:82.546667pt;}
.y21_c00491{bottom:104.146667pt;}
.y20_c00491{bottom:126.013333pt;}
.y1f_c00491{bottom:148.280000pt;}
.y1e_c00491{bottom:169.880000pt;}
.y1d_c00491{bottom:191.480000pt;}
.y1c_c00491{bottom:213.080000pt;}
.y1b_c00491{bottom:235.213333pt;}
.y1a_c00491{bottom:256.813333pt;}
.y19_c00491{bottom:278.680000pt;}
.y18_c00491{bottom:300.280000pt;}
.y17_c00491{bottom:322.013333pt;}
.y16_c00491{bottom:343.480000pt;}
.y15_c00491{bottom:365.080000pt;}
.y14_c00491{bottom:386.680000pt;}
.y13_c00491{bottom:408.280000pt;}
.y12_c00491{bottom:433.346667pt;}
.y11_c00491{bottom:450.013333pt;}
.y10_c00491{bottom:470.680000pt;}
.yf_c00491{bottom:492.680000pt;}
.ye_c00491{bottom:514.013333pt;}
.yd_c00491{bottom:535.880000pt;}
.yc_c00491{bottom:557.213333pt;}
.yb_c00491{bottom:579.880000pt;}
.ya_c00491{bottom:601.480000pt;}
.y9_c00491{bottom:622.013333pt;}
.y8_c00491{bottom:643.880000pt;}
.y7_c00491{bottom:665.480000pt;}
.y6_c00491{bottom:687.080000pt;}
.y5_c00491{bottom:708.280000pt;}
.y4_c00491{bottom:729.880000pt;}
.y3_c00491{bottom:752.146667pt;}
.y2_c00491{bottom:773.080000pt;}
.y1_c00491{bottom:794.813333pt;}
.h7_c00491{height:11.733399pt;}
.h8_c00491{height:38.937500pt;}
.h4_c00491{height:65.397135pt;}
.h5_c00491{height:67.526042pt;}
.h2_c00491{height:70.664062pt;}
.h3_c00491{height:81.031250pt;}
.h6_c00491{height:96.750000pt;}
.h1_c00491{height:876.666667pt;}
.h0_c00491{height:876.733333pt;}
.w2_c00491{width:93.222667pt;}
.w0_c00491{width:593.266667pt;}
.w1_c00491{width:593.333333pt;}
.x0_c00491{left:0.000000pt;}
.x1_c00491{left:120.266667pt;}
.x2_c00491{left:121.733333pt;}
.x3_c00491{left:122.666667pt;}
.x4_c00491{left:124.000000pt;}
.x5_c00491{left:126.000000pt;}
.x6_c00491{left:126.933333pt;}
.x7_c00491{left:128.666667pt;}
.x9_c00491{left:130.133333pt;}
.xa_c00491{left:142.800000pt;}
.xc_c00491{left:253.801554pt;}
.x8_c00491{left:260.933333pt;}
.xb_c00491{left:527.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_aac8bc9b31fb0b2f3422fb69.woff2')format("woff");}.ff1_c00492{font-family:ff1_c00492;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00492;src:url('chunks/assets/font_6b3a1eb15e2299b1f610136a.woff2')format("woff");}.ff2_c00492{font-family:ff2_c00492;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00492;src:url('chunks/assets/font_a05511fa06869da0cb59206b.woff2')format("woff");}.ff3_c00492{font-family:ff3_c00492;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00492;src:url('chunks/assets/font_dfa190531fff7a8e3e659dbe.woff2')format("woff");}.ff4_c00492{font-family:ff4_c00492;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00492;src:url('chunks/assets/font_fe909109959a85f5c73584c5.woff2')format("woff");}.ff5_c00492{font-family:ff5_c00492;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00492;src:url('chunks/assets/font_1f00b590eaaeda9dec1dfb8d.woff2')format("woff");}.ff6_c00492{font-family:ff6_c00492;line-height:1.437000;font-style:normal;font-weight: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_c00492;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c00492{font-family:ff7_c00492;line-height:1.219238;font-style: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;}
.ls3_c00492{letter-spacing:0.000000px;}
.ls1_c00492{letter-spacing:0.900000px;}
.ls0_c00492{letter-spacing:2.100000px;}
.ls2_c00492{letter-spacing:3.000000px;}
.sc__c00492{text-shadow:none;}
.sc0_c00492{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00492{-webkit-text-stroke:0px transparent;}
.sc0_c00492{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00492{word-spacing:-17.352000px;}
.ws1_c00492{word-spacing:0.000000px;}
._11_c00492{margin-left:-21.546000px;}
._10_c00492{margin-left:-20.322000px;}
._15_c00492{margin-left:-18.225000px;}
._c_c00492{margin-left:-11.679000px;}
._1b_c00492{margin-left:-10.560000px;}
._6_c00492{margin-left:-9.384000px;}
._17_c00492{margin-left:-7.851000px;}
._d_c00492{margin-left:-6.318000px;}
._2_c00492{margin-left:-4.794000px;}
._0_c00492{margin-left:-3.264000px;}
._12_c00492{margin-left:-2.196000px;}
._1_c00492{margin-left:-1.122000px;}
._7_c00492{width:1.530000px;}
._4_c00492{width:2.550000px;}
._b_c00492{width:3.789000px;}
._3_c00492{width:5.406000px;}
._5_c00492{width:7.344000px;}
._f_c00492{width:9.153000px;}
._13_c00492{width:10.263000px;}
._1a_c00492{width:11.463000px;}
._9_c00492{width:12.615000px;}
._a_c00492{width:14.580000px;}
._18_c00492{width:16.110000px;}
._19_c00492{width:18.024000px;}
._e_c00492{width:24.969000px;}
._14_c00492{width:27.174000px;}
._16_c00492{width:43.416000px;}
._8_c00492{width:66.189000px;}
._1d_c00492{width:85.311000px;}
._1c_c00492{width:146.226000px;}
.fc2_c00492{color:transparent;}
.fc1_c00492{color:rgb(128,128,128);}
.fc0_c00492{color:rgb(0,0,0);}
.fs5_c00492{font-size:48.000000px;}
.fs3_c00492{font-size:72.000000px;}
.fs4_c00492{font-size:78.000000px;}
.fs2_c00492{font-size:81.000000px;}
.fs1_c00492{font-size:87.000000px;}
.fs0_c00492{font-size:102.000000px;}
.y0_c00492{bottom:0.000000px;}
.y25_c00492{bottom:3.105000px;}
.y24_c00492{bottom:7.228371px;}
.y23_c00492{bottom:93.615000px;}
.y22_c00492{bottom:117.465000px;}
.y21_c00492{bottom:143.115000px;}
.y20_c00492{bottom:167.715000px;}
.y1f_c00492{bottom:192.465000px;}
.y1e_c00492{bottom:215.715000px;}
.y1d_c00492{bottom:239.715000px;}
.y1c_c00492{bottom:264.015000px;}
.y1b_c00492{bottom:288.315000px;}
.y1a_c00492{bottom:310.965000px;}
.y19_c00492{bottom:336.465000px;}
.y18_c00492{bottom:360.465000px;}
.y17_c00492{bottom:384.465000px;}
.y16_c00492{bottom:409.065000px;}
.y15_c00492{bottom:432.015000px;}
.y14_c00492{bottom:455.715000px;}
.y13_c00492{bottom:480.315000px;}
.y12_c00492{bottom:504.915000px;}
.y11_c00492{bottom:529.215000px;}
.y10_c00492{bottom:552.615000px;}
.yf_c00492{bottom:576.165000px;}
.ye_c00492{bottom:600.165000px;}
.yd_c00492{bottom:624.015000px;}
.yc_c00492{bottom:648.315000px;}
.yb_c00492{bottom:672.015000px;}
.ya_c00492{bottom:696.315000px;}
.y9_c00492{bottom:720.015000px;}
.y8_c00492{bottom:744.165000px;}
.y7_c00492{bottom:768.165000px;}
.y6_c00492{bottom:792.765000px;}
.y5_c00492{bottom:817.065000px;}
.y4_c00492{bottom:841.065000px;}
.y3_c00492{bottom:865.365000px;}
.y2_c00492{bottom:889.365000px;}
.y1_c00492{bottom:924.765000px;}
.h7_c00492{height:13.200074px;}
.h8_c00492{height:43.804688px;}
.h3_c00492{height:79.497070px;}
.h4_c00492{height:84.269531px;}
.h5_c00492{height:91.176000px;}
.h6_c00492{height:91.291992px;}
.h2_c00492{height:100.057617px;}
.h0_c00492{height:989.025000px;}
.h1_c00492{height:989.250000px;}
.w1_c00492{width:104.875500px;}
.w0_c00492{width:672.000000px;}
.x0_c00492{left:0.000000px;}
.x5_c00492{left:22.650000px;}
.x2_c00492{left:36.900000px;}
.x3_c00492{left:39.150000px;}
.x4_c00492{left:40.800000px;}
.x6_c00492{left:42.600000px;}
.x7_c00492{left:43.650000px;}
.x8_c00492{left:45.600000px;}
.x9_c00492{left:46.800000px;}
.xa_c00492{left:47.850000px;}
.xb_c00492{left:49.500000px;}
.xc_c00492{left:51.000000px;}
.xf_c00492{left:58.350000px;}
.xe_c00492{left:81.300000px;}
.x1_c00492{left:96.450000px;}
.xd_c00492{left:203.550000px;}
.x10_c00492{left:287.814240px;}
@media print{
.v0_c00492{vertical-align:0.000000pt;}
.ls3_c00492{letter-spacing:0.000000pt;}
.ls1_c00492{letter-spacing:0.800000pt;}
.ls0_c00492{letter-spacing:1.866667pt;}
.ls2_c00492{letter-spacing:2.666667pt;}
.ws0_c00492{word-spacing:-15.424000pt;}
.ws1_c00492{word-spacing:0.000000pt;}
._11_c00492{margin-left:-19.152000pt;}
._10_c00492{margin-left:-18.064000pt;}
._15_c00492{margin-left:-16.200000pt;}
._c_c00492{margin-left:-10.381333pt;}
._1b_c00492{margin-left:-9.386667pt;}
._6_c00492{margin-left:-8.341333pt;}
._17_c00492{margin-left:-6.978667pt;}
._d_c00492{margin-left:-5.616000pt;}
._2_c00492{margin-left:-4.261333pt;}
._0_c00492{margin-left:-2.901333pt;}
._12_c00492{margin-left:-1.952000pt;}
._1_c00492{margin-left:-0.997333pt;}
._7_c00492{width:1.360000pt;}
._4_c00492{width:2.266667pt;}
._b_c00492{width:3.368000pt;}
._3_c00492{width:4.805333pt;}
._5_c00492{width:6.528000pt;}
._f_c00492{width:8.136000pt;}
._13_c00492{width:9.122667pt;}
._1a_c00492{width:10.189333pt;}
._9_c00492{width:11.213333pt;}
._a_c00492{width:12.960000pt;}
._18_c00492{width:14.320000pt;}
._19_c00492{width:16.021333pt;}
._e_c00492{width:22.194667pt;}
._14_c00492{width:24.154667pt;}
._16_c00492{width:38.592000pt;}
._8_c00492{width:58.834667pt;}
._1d_c00492{width:75.832000pt;}
._1c_c00492{width:129.978667pt;}
.fs5_c00492{font-size:42.666667pt;}
.fs3_c00492{font-size:64.000000pt;}
.fs4_c00492{font-size:69.333333pt;}
.fs2_c00492{font-size:72.000000pt;}
.fs1_c00492{font-size:77.333333pt;}
.fs0_c00492{font-size:90.666667pt;}
.y0_c00492{bottom:0.000000pt;}
.y25_c00492{bottom:2.760000pt;}
.y24_c00492{bottom:6.425219pt;}
.y23_c00492{bottom:83.213333pt;}
.y22_c00492{bottom:104.413333pt;}
.y21_c00492{bottom:127.213333pt;}
.y20_c00492{bottom:149.080000pt;}
.y1f_c00492{bottom:171.080000pt;}
.y1e_c00492{bottom:191.746667pt;}
.y1d_c00492{bottom:213.080000pt;}
.y1c_c00492{bottom:234.680000pt;}
.y1b_c00492{bottom:256.280000pt;}
.y1a_c00492{bottom:276.413333pt;}
.y19_c00492{bottom:299.080000pt;}
.y18_c00492{bottom:320.413333pt;}
.y17_c00492{bottom:341.746667pt;}
.y16_c00492{bottom:363.613333pt;}
.y15_c00492{bottom:384.013333pt;}
.y14_c00492{bottom:405.080000pt;}
.y13_c00492{bottom:426.946667pt;}
.y12_c00492{bottom:448.813333pt;}
.y11_c00492{bottom:470.413333pt;}
.y10_c00492{bottom:491.213333pt;}
.yf_c00492{bottom:512.146667pt;}
.ye_c00492{bottom:533.480000pt;}
.yd_c00492{bottom:554.680000pt;}
.yc_c00492{bottom:576.280000pt;}
.yb_c00492{bottom:597.346667pt;}
.ya_c00492{bottom:618.946667pt;}
.y9_c00492{bottom:640.013333pt;}
.y8_c00492{bottom:661.480000pt;}
.y7_c00492{bottom:682.813333pt;}
.y6_c00492{bottom:704.680000pt;}
.y5_c00492{bottom:726.280000pt;}
.y4_c00492{bottom:747.613333pt;}
.y3_c00492{bottom:769.213333pt;}
.y2_c00492{bottom:790.546667pt;}
.y1_c00492{bottom:822.013333pt;}
.h7_c00492{height:11.733399pt;}
.h8_c00492{height:38.937500pt;}
.h3_c00492{height:70.664062pt;}
.h4_c00492{height:74.906250pt;}
.h5_c00492{height:81.045333pt;}
.h6_c00492{height:81.148438pt;}
.h2_c00492{height:88.940104pt;}
.h0_c00492{height:879.133333pt;}
.h1_c00492{height:879.333333pt;}
.w1_c00492{width:93.222667pt;}
.w0_c00492{width:597.333333pt;}
.x0_c00492{left:0.000000pt;}
.x5_c00492{left:20.133333pt;}
.x2_c00492{left:32.800000pt;}
.x3_c00492{left:34.800000pt;}
.x4_c00492{left:36.266667pt;}
.x6_c00492{left:37.866667pt;}
.x7_c00492{left:38.800000pt;}
.x8_c00492{left:40.533333pt;}
.x9_c00492{left:41.600000pt;}
.xa_c00492{left:42.533333pt;}
.xb_c00492{left:44.000000pt;}
.xc_c00492{left:45.333333pt;}
.xf_c00492{left:51.866667pt;}
.xe_c00492{left:72.266667pt;}
.x1_c00492{left:85.733333pt;}
.xd_c00492{left:180.933333pt;}
.x10_c00492{left:255.834880pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_750f7e371768c71df8c270f0.woff2')format("woff");}.ff1_c00493{font-family:ff1_c00493;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00493;src:url('chunks/assets/font_656468d5e8ea5c8e13b82884.woff2')format("woff");}.ff2_c00493{font-family:ff2_c00493;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00493;src:url('chunks/assets/font_d7bd77a0c89b71c0aea1ece3.woff2')format("woff");}.ff3_c00493{font-family:ff3_c00493;line-height:1.437000;font-style:normal;font-weight:normal;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_499c95df41d5627e287dbf69.woff2')format("woff");}.ff4_c00493{font-family:ff4_c00493;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00493;src:url('chunks/assets/font_d0fcd8a3d97ef225f8ee553d.woff2')format("woff");}.ff5_c00493{font-family:ff5_c00493;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00493;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c00493{font-family:ff6_c00493;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00493{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00493{vertical-align:0.000000px;}
.v1_c00493{vertical-align:22.200000px;}
.ls4_c00493{letter-spacing:-6.000000px;}
.ls2_c00493{letter-spacing:0.000000px;}
.ls0_c00493{letter-spacing:6.000000px;}
.ls3_c00493{letter-spacing:9.000000px;}
.ls1_c00493{letter-spacing:120.420000px;}
.sc__c00493{text-shadow:none;}
.sc0_c00493{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00493{-webkit-text-stroke:0px transparent;}
.sc0_c00493{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00493{word-spacing:-67.686000px;}
.ws2_c00493{word-spacing:-59.184000px;}
.ws0_c00493{word-spacing:-18.798000px;}
.ws3_c00493{word-spacing:0.000000px;}
._13_c00493{margin-left:-29.322000px;}
._10_c00493{margin-left:-19.587000px;}
._b_c00493{margin-left:-17.091000px;}
._15_c00493{margin-left:-15.786000px;}
._19_c00493{margin-left:-14.742000px;}
._11_c00493{margin-left:-11.499000px;}
._16_c00493{margin-left:-9.153000px;}
._d_c00493{margin-left:-7.938000px;}
._e_c00493{margin-left:-6.360000px;}
._c_c00493{margin-left:-5.268000px;}
._7_c00493{margin-left:-3.888000px;}
._4_c00493{margin-left:-2.835000px;}
._9_c00493{margin-left:-1.092000px;}
._2_c00493{width:1.296000px;}
._0_c00493{width:2.997000px;}
._1_c00493{width:4.536000px;}
._3_c00493{width:6.480000px;}
._5_c00493{width:7.776000px;}
._f_c00493{width:8.991000px;}
._8_c00493{width:10.368000px;}
._6_c00493{width:12.231000px;}
._18_c00493{width:14.853000px;}
._12_c00493{width:16.158000px;}
._14_c00493{width:17.577000px;}
._17_c00493{width:22.500000px;}
._a_c00493{width:23.892000px;}
._1a_c00493{width:25.515000px;}
._1c_c00493{width:72.531000px;}
._1b_c00493{width:339.201000px;}
.fc2_c00493{color:transparent;}
.fc1_c00493{color:rgb(128,128,128);}
.fc0_c00493{color:rgb(0,0,0);}
.fs7_c00493{font-size:48.000000px;}
.fs1_c00493{font-size:54.000000px;}
.fs5_c00493{font-size:60.000000px;}
.fs4_c00493{font-size:69.000000px;}
.fs6_c00493{font-size:72.000000px;}
.fs2_c00493{font-size:78.000000px;}
.fs0_c00493{font-size:81.000000px;}
.fs3_c00493{font-size:87.000000px;}
.y0_c00493{bottom:0.000000px;}
.y25_c00493{bottom:3.105000px;}
.y24_c00493{bottom:7.228371px;}
.y23_c00493{bottom:65.115000px;}
.y22_c00493{bottom:88.815000px;}
.y21_c00493{bottom:114.165000px;}
.y20_c00493{bottom:138.765000px;}
.y1f_c00493{bottom:163.365000px;}
.y1e_c00493{bottom:187.365000px;}
.y1d_c00493{bottom:211.665000px;}
.y1c_c00493{bottom:237.015000px;}
.y1b_c00493{bottom:256.065000px;}
.y1a_c00493{bottom:286.215000px;}
.y19_c00493{bottom:309.465000px;}
.y18_c00493{bottom:334.215000px;}
.y17_c00493{bottom:358.815000px;}
.y16_c00493{bottom:383.415000px;}
.y15_c00493{bottom:407.715000px;}
.y14_c00493{bottom:431.415000px;}
.y13_c00493{bottom:455.715000px;}
.y12_c00493{bottom:479.565000px;}
.y11_c00493{bottom:503.565000px;}
.y10_c00493{bottom:527.265000px;}
.yf_c00493{bottom:551.265000px;}
.ye_c00493{bottom:575.415000px;}
.yd_c00493{bottom:599.865000px;}
.yc_c00493{bottom:624.165000px;}
.yb_c00493{bottom:648.465000px;}
.ya_c00493{bottom:672.615000px;}
.y9_c00493{bottom:696.915000px;}
.y8_c00493{bottom:720.615000px;}
.y7_c00493{bottom:745.215000px;}
.y6_c00493{bottom:768.915000px;}
.y5_c00493{bottom:793.515000px;}
.y4_c00493{bottom:817.815000px;}
.y3_c00493{bottom:842.115000px;}
.y2_c00493{bottom:866.115000px;}
.y1_c00493{bottom:889.665000px;}
.h9_c00493{height:13.200074px;}
.ha_c00493{height:43.804688px;}
.h6_c00493{height:65.040000px;}
.h2_c00493{height:79.497070px;}
.h8_c00493{height:84.269531px;}
.h5_c00493{height:87.361816px;}
.h4_c00493{height:91.176000px;}
.h3_c00493{height:98.756836px;}
.h7_c00493{height:101.697070px;}
.h1_c00493{height:986.250000px;}
.h0_c00493{height:986.325000px;}
.w2_c00493{width:104.875500px;}
.w0_c00493{width:667.425000px;}
.w1_c00493{width:667.500000px;}
.x0_c00493{left:0.000000px;}
.xe_c00493{left:34.800000px;}
.xa_c00493{left:114.450000px;}
.x10_c00493{left:119.850000px;}
.xf_c00493{left:121.800000px;}
.xb_c00493{left:124.800000px;}
.x9_c00493{left:126.150000px;}
.x8_c00493{left:127.200000px;}
.x7_c00493{left:128.550000px;}
.x6_c00493{left:129.600000px;}
.x5_c00493{left:132.600000px;}
.x4_c00493{left:133.650000px;}
.x3_c00493{left:134.700000px;}
.x2_c00493{left:136.650000px;}
.x1_c00493{left:138.450000px;}
.xd_c00493{left:161.700000px;}
.xc_c00493{left:236.850000px;}
.x12_c00493{left:285.526749px;}
.x11_c00493{left:546.000000px;}
@media print{
.v0_c00493{vertical-align:0.000000pt;}
.v1_c00493{vertical-align:19.733333pt;}
.ls4_c00493{letter-spacing:-5.333333pt;}
.ls2_c00493{letter-spacing:0.000000pt;}
.ls0_c00493{letter-spacing:5.333333pt;}
.ls3_c00493{letter-spacing:8.000000pt;}
.ls1_c00493{letter-spacing:107.040000pt;}
.ws1_c00493{word-spacing:-60.165333pt;}
.ws2_c00493{word-spacing:-52.608000pt;}
.ws0_c00493{word-spacing:-16.709333pt;}
.ws3_c00493{word-spacing:0.000000pt;}
._13_c00493{margin-left:-26.064000pt;}
._10_c00493{margin-left:-17.410667pt;}
._b_c00493{margin-left:-15.192000pt;}
._15_c00493{margin-left:-14.032000pt;}
._19_c00493{margin-left:-13.104000pt;}
._11_c00493{margin-left:-10.221333pt;}
._16_c00493{margin-left:-8.136000pt;}
._d_c00493{margin-left:-7.056000pt;}
._e_c00493{margin-left:-5.653333pt;}
._c_c00493{margin-left:-4.682667pt;}
._7_c00493{margin-left:-3.456000pt;}
._4_c00493{margin-left:-2.520000pt;}
._9_c00493{margin-left:-0.970667pt;}
._2_c00493{width:1.152000pt;}
._0_c00493{width:2.664000pt;}
._1_c00493{width:4.032000pt;}
._3_c00493{width:5.760000pt;}
._5_c00493{width:6.912000pt;}
._f_c00493{width:7.992000pt;}
._8_c00493{width:9.216000pt;}
._6_c00493{width:10.872000pt;}
._18_c00493{width:13.202667pt;}
._12_c00493{width:14.362667pt;}
._14_c00493{width:15.624000pt;}
._17_c00493{width:20.000000pt;}
._a_c00493{width:21.237333pt;}
._1a_c00493{width:22.680000pt;}
._1c_c00493{width:64.472000pt;}
._1b_c00493{width:301.512000pt;}
.fs7_c00493{font-size:42.666667pt;}
.fs1_c00493{font-size:48.000000pt;}
.fs5_c00493{font-size:53.333333pt;}
.fs4_c00493{font-size:61.333333pt;}
.fs6_c00493{font-size:64.000000pt;}
.fs2_c00493{font-size:69.333333pt;}
.fs0_c00493{font-size:72.000000pt;}
.fs3_c00493{font-size:77.333333pt;}
.y0_c00493{bottom:0.000000pt;}
.y25_c00493{bottom:2.760000pt;}
.y24_c00493{bottom:6.425219pt;}
.y23_c00493{bottom:57.880000pt;}
.y22_c00493{bottom:78.946667pt;}
.y21_c00493{bottom:101.480000pt;}
.y20_c00493{bottom:123.346667pt;}
.y1f_c00493{bottom:145.213333pt;}
.y1e_c00493{bottom:166.546667pt;}
.y1d_c00493{bottom:188.146667pt;}
.y1c_c00493{bottom:210.680000pt;}
.y1b_c00493{bottom:227.613333pt;}
.y1a_c00493{bottom:254.413333pt;}
.y19_c00493{bottom:275.080000pt;}
.y18_c00493{bottom:297.080000pt;}
.y17_c00493{bottom:318.946667pt;}
.y16_c00493{bottom:340.813333pt;}
.y15_c00493{bottom:362.413333pt;}
.y14_c00493{bottom:383.480000pt;}
.y13_c00493{bottom:405.080000pt;}
.y12_c00493{bottom:426.280000pt;}
.y11_c00493{bottom:447.613333pt;}
.y10_c00493{bottom:468.680000pt;}
.yf_c00493{bottom:490.013333pt;}
.ye_c00493{bottom:511.480000pt;}
.yd_c00493{bottom:533.213333pt;}
.yc_c00493{bottom:554.813333pt;}
.yb_c00493{bottom:576.413333pt;}
.ya_c00493{bottom:597.880000pt;}
.y9_c00493{bottom:619.480000pt;}
.y8_c00493{bottom:640.546667pt;}
.y7_c00493{bottom:662.413333pt;}
.y6_c00493{bottom:683.480000pt;}
.y5_c00493{bottom:705.346667pt;}
.y4_c00493{bottom:726.946667pt;}
.y3_c00493{bottom:748.546667pt;}
.y2_c00493{bottom:769.880000pt;}
.y1_c00493{bottom:790.813333pt;}
.h9_c00493{height:11.733399pt;}
.ha_c00493{height:38.937500pt;}
.h6_c00493{height:57.813333pt;}
.h2_c00493{height:70.664062pt;}
.h8_c00493{height:74.906250pt;}
.h5_c00493{height:77.654948pt;}
.h4_c00493{height:81.045333pt;}
.h3_c00493{height:87.783854pt;}
.h7_c00493{height:90.397396pt;}
.h1_c00493{height:876.666667pt;}
.h0_c00493{height:876.733333pt;}
.w2_c00493{width:93.222667pt;}
.w0_c00493{width:593.266667pt;}
.w1_c00493{width:593.333333pt;}
.x0_c00493{left:0.000000pt;}
.xe_c00493{left:30.933333pt;}
.xa_c00493{left:101.733333pt;}
.x10_c00493{left:106.533333pt;}
.xf_c00493{left:108.266667pt;}
.xb_c00493{left:110.933333pt;}
.x9_c00493{left:112.133333pt;}
.x8_c00493{left:113.066667pt;}
.x7_c00493{left:114.266667pt;}
.x6_c00493{left:115.200000pt;}
.x5_c00493{left:117.866667pt;}
.x4_c00493{left:118.800000pt;}
.x3_c00493{left:119.733333pt;}
.x2_c00493{left:121.466667pt;}
.x1_c00493{left:123.066667pt;}
.xd_c00493{left:143.733333pt;}
.xc_c00493{left:210.533333pt;}
.x12_c00493{left:253.801554pt;}
.x11_c00493{left:485.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ffba10537967819a77431f1d.woff2')format("woff");}.ff1_c00494{font-family:ff1_c00494;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00494;src:url('chunks/assets/font_8bffc0d11c38a53bef663262.woff2')format("woff");}.ff2_c00494{font-family:ff2_c00494;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00494;src:url('chunks/assets/font_a9e55fdcfaa63554d861ea81.woff2')format("woff");}.ff3_c00494{font-family:ff3_c00494;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00494;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff4_c00494{font-family:ff4_c00494;line-height:1.219238;font-style: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;}
.ls1_c00494{letter-spacing:0.000000px;}
.ls0_c00494{letter-spacing:3.000000px;}
.ls2_c00494{letter-spacing:6.000000px;}
.sc__c00494{text-shadow:none;}
.sc0_c00494{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00494{-webkit-text-stroke:0px transparent;}
.sc0_c00494{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00494{word-spacing:-59.184000px;}
.ws1_c00494{word-spacing:-18.750000px;}
.ws2_c00494{word-spacing:-3.006000px;}
.ws3_c00494{word-spacing:0.000000px;}
._1b_c00494{margin-left:-42.363000px;}
._c_c00494{margin-left:-21.708000px;}
._12_c00494{margin-left:-14.418000px;}
._17_c00494{margin-left:-12.312000px;}
._1e_c00494{margin-left:-9.954000px;}
._14_c00494{margin-left:-8.376000px;}
._e_c00494{margin-left:-7.251000px;}
._9_c00494{margin-left:-5.589000px;}
._a_c00494{margin-left:-4.536000px;}
._7_c00494{margin-left:-3.483000px;}
._5_c00494{margin-left:-2.025000px;}
._10_c00494{margin-left:-1.005000px;}
._0_c00494{width:1.539000px;}
._2_c00494{width:3.321000px;}
._4_c00494{width:4.536000px;}
._3_c00494{width:5.670000px;}
._6_c00494{width:6.804000px;}
._11_c00494{width:7.857000px;}
._1_c00494{width:9.072000px;}
._15_c00494{width:10.140000px;}
._8_c00494{width:11.421000px;}
._f_c00494{width:12.474000px;}
._18_c00494{width:13.917000px;}
._16_c00494{width:15.147000px;}
._13_c00494{width:17.202000px;}
._d_c00494{width:22.386000px;}
._1d_c00494{width:23.913000px;}
._19_c00494{width:30.294000px;}
._b_c00494{width:31.347000px;}
._20_c00494{width:41.673000px;}
._1a_c00494{width:52.911000px;}
._1c_c00494{width:135.888000px;}
._1f_c00494{width:1609.278000px;}
.fc2_c00494{color:transparent;}
.fc1_c00494{color:rgb(128,128,128);}
.fc0_c00494{color:rgb(0,0,0);}
.fs5_c00494{font-size:36.000000px;}
.fs6_c00494{font-size:48.000000px;}
.fs4_c00494{font-size:51.000000px;}
.fs3_c00494{font-size:57.000000px;}
.fs1_c00494{font-size:72.000000px;}
.fs2_c00494{font-size:75.000000px;}
.fs0_c00494{font-size:81.000000px;}
.y0_c00494{bottom:0.000000px;}
.y25_c00494{bottom:3.105000px;}
.y24_c00494{bottom:7.228371px;}
.y23_c00494{bottom:58.365000px;}
.y22_c00494{bottom:84.465000px;}
.y21_c00494{bottom:109.665000px;}
.y20_c00494{bottom:134.115000px;}
.y1f_c00494{bottom:158.715000px;}
.y1e_c00494{bottom:183.315000px;}
.y1d_c00494{bottom:207.615000px;}
.y1c_c00494{bottom:232.215000px;}
.y1b_c00494{bottom:256.515000px;}
.y1a_c00494{bottom:280.815000px;}
.y19_c00494{bottom:304.815000px;}
.y18_c00494{bottom:329.115000px;}
.y17_c00494{bottom:353.715000px;}
.y16_c00494{bottom:377.415000px;}
.y15_c00494{bottom:401.415000px;}
.y14_c00494{bottom:425.715000px;}
.y13_c00494{bottom:449.865000px;}
.y12_c00494{bottom:473.865000px;}
.y11_c00494{bottom:498.165000px;}
.y10_c00494{bottom:522.465000px;}
.yf_c00494{bottom:546.465000px;}
.ye_c00494{bottom:570.165000px;}
.yd_c00494{bottom:595.065000px;}
.yc_c00494{bottom:618.015000px;}
.yb_c00494{bottom:642.315000px;}
.ya_c00494{bottom:666.015000px;}
.y9_c00494{bottom:690.315000px;}
.y8_c00494{bottom:715.215000px;}
.y7_c00494{bottom:738.915000px;}
.y6_c00494{bottom:763.215000px;}
.y5_c00494{bottom:787.515000px;}
.y4_c00494{bottom:811.665000px;}
.y3_c00494{bottom:836.115000px;}
.y2_c00494{bottom:860.715000px;}
.y1_c00494{bottom:884.715000px;}
.h4_c00494{height:13.200074px;}
.h5_c00494{height:43.804688px;}
.h2_c00494{height:79.497070px;}
.h3_c00494{height:84.269531px;}
.h0_c00494{height:989.025000px;}
.h1_c00494{height:989.250000px;}
.w1_c00494{width:104.875500px;}
.w0_c00494{width:672.000000px;}
.x0_c00494{left:0.000000px;}
.x2_c00494{left:27.300000px;}
.x4_c00494{left:29.100000px;}
.x6_c00494{left:43.200000px;}
.x1_c00494{left:45.000000px;}
.x3_c00494{left:46.200000px;}
.x5_c00494{left:47.850000px;}
.x7_c00494{left:84.300000px;}
.x8_c00494{left:287.814240px;}
@media print{
.v0_c00494{vertical-align:0.000000pt;}
.ls1_c00494{letter-spacing:0.000000pt;}
.ls0_c00494{letter-spacing:2.666667pt;}
.ls2_c00494{letter-spacing:5.333333pt;}
.ws0_c00494{word-spacing:-52.608000pt;}
.ws1_c00494{word-spacing:-16.666667pt;}
.ws2_c00494{word-spacing:-2.672000pt;}
.ws3_c00494{word-spacing:0.000000pt;}
._1b_c00494{margin-left:-37.656000pt;}
._c_c00494{margin-left:-19.296000pt;}
._12_c00494{margin-left:-12.816000pt;}
._17_c00494{margin-left:-10.944000pt;}
._1e_c00494{margin-left:-8.848000pt;}
._14_c00494{margin-left:-7.445333pt;}
._e_c00494{margin-left:-6.445333pt;}
._9_c00494{margin-left:-4.968000pt;}
._a_c00494{margin-left:-4.032000pt;}
._7_c00494{margin-left:-3.096000pt;}
._5_c00494{margin-left:-1.800000pt;}
._10_c00494{margin-left:-0.893333pt;}
._0_c00494{width:1.368000pt;}
._2_c00494{width:2.952000pt;}
._4_c00494{width:4.032000pt;}
._3_c00494{width:5.040000pt;}
._6_c00494{width:6.048000pt;}
._11_c00494{width:6.984000pt;}
._1_c00494{width:8.064000pt;}
._15_c00494{width:9.013333pt;}
._8_c00494{width:10.152000pt;}
._f_c00494{width:11.088000pt;}
._18_c00494{width:12.370667pt;}
._16_c00494{width:13.464000pt;}
._13_c00494{width:15.290667pt;}
._d_c00494{width:19.898667pt;}
._1d_c00494{width:21.256000pt;}
._19_c00494{width:26.928000pt;}
._b_c00494{width:27.864000pt;}
._20_c00494{width:37.042667pt;}
._1a_c00494{width:47.032000pt;}
._1c_c00494{width:120.789333pt;}
._1f_c00494{width:1430.469333pt;}
.fs5_c00494{font-size:32.000000pt;}
.fs6_c00494{font-size:42.666667pt;}
.fs4_c00494{font-size:45.333333pt;}
.fs3_c00494{font-size:50.666667pt;}
.fs1_c00494{font-size:64.000000pt;}
.fs2_c00494{font-size:66.666667pt;}
.fs0_c00494{font-size:72.000000pt;}
.y0_c00494{bottom:0.000000pt;}
.y25_c00494{bottom:2.760000pt;}
.y24_c00494{bottom:6.425219pt;}
.y23_c00494{bottom:51.880000pt;}
.y22_c00494{bottom:75.080000pt;}
.y21_c00494{bottom:97.480000pt;}
.y20_c00494{bottom:119.213333pt;}
.y1f_c00494{bottom:141.080000pt;}
.y1e_c00494{bottom:162.946667pt;}
.y1d_c00494{bottom:184.546667pt;}
.y1c_c00494{bottom:206.413333pt;}
.y1b_c00494{bottom:228.013333pt;}
.y1a_c00494{bottom:249.613333pt;}
.y19_c00494{bottom:270.946667pt;}
.y18_c00494{bottom:292.546667pt;}
.y17_c00494{bottom:314.413333pt;}
.y16_c00494{bottom:335.480000pt;}
.y15_c00494{bottom:356.813333pt;}
.y14_c00494{bottom:378.413333pt;}
.y13_c00494{bottom:399.880000pt;}
.y12_c00494{bottom:421.213333pt;}
.y11_c00494{bottom:442.813333pt;}
.y10_c00494{bottom:464.413333pt;}
.yf_c00494{bottom:485.746667pt;}
.ye_c00494{bottom:506.813333pt;}
.yd_c00494{bottom:528.946667pt;}
.yc_c00494{bottom:549.346667pt;}
.yb_c00494{bottom:570.946667pt;}
.ya_c00494{bottom:592.013333pt;}
.y9_c00494{bottom:613.613333pt;}
.y8_c00494{bottom:635.746667pt;}
.y7_c00494{bottom:656.813333pt;}
.y6_c00494{bottom:678.413333pt;}
.y5_c00494{bottom:700.013333pt;}
.y4_c00494{bottom:721.480000pt;}
.y3_c00494{bottom:743.213333pt;}
.y2_c00494{bottom:765.080000pt;}
.y1_c00494{bottom:786.413333pt;}
.h4_c00494{height:11.733399pt;}
.h5_c00494{height:38.937500pt;}
.h2_c00494{height:70.664062pt;}
.h3_c00494{height:74.906250pt;}
.h0_c00494{height:879.133333pt;}
.h1_c00494{height:879.333333pt;}
.w1_c00494{width:93.222667pt;}
.w0_c00494{width:597.333333pt;}
.x0_c00494{left:0.000000pt;}
.x2_c00494{left:24.266667pt;}
.x4_c00494{left:25.866667pt;}
.x6_c00494{left:38.400000pt;}
.x1_c00494{left:40.000000pt;}
.x3_c00494{left:41.066667pt;}
.x5_c00494{left:42.533333pt;}
.x7_c00494{left:74.933333pt;}
.x8_c00494{left:255.834880pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0ec67e662adc388594817073.woff2')format("woff");}.ff1_c00495{font-family:ff1_c00495;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00495;src:url('chunks/assets/font_f3d56ed40e7ef4d68ed7da3e.woff2')format("woff");}.ff2_c00495{font-family:ff2_c00495;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00495;src:url('chunks/assets/font_584e91ac6628279174c637a8.woff2')format("woff");}.ff3_c00495{font-family:ff3_c00495;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00495;src:url('chunks/assets/font_69f3030edfca6e43bf49abea.woff2')format("woff");}.ff4_c00495{font-family:ff4_c00495;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00495;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c00495{font-family:ff5_c00495;line-height:1.219238;font-style: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;}
.ls1_c00495{letter-spacing:0.000000px;}
.ls0_c00495{letter-spacing:6.000000px;}
.sc__c00495{text-shadow:none;}
.sc0_c00495{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00495{-webkit-text-stroke:0px transparent;}
.sc0_c00495{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00495{word-spacing:-53.376000px;}
.ws3_c00495{word-spacing:-20.250000px;}
.ws2_c00495{word-spacing:-9.300000px;}
.ws4_c00495{word-spacing:0.000000px;}
.ws0_c00495{word-spacing:4.800000px;}
._1a_c00495{margin-left:-20.979000px;}
._1b_c00495{margin-left:-11.178000px;}
._14_c00495{margin-left:-10.161000px;}
._2_c00495{margin-left:-7.128000px;}
._b_c00495{margin-left:-5.832000px;}
._4_c00495{margin-left:-4.779000px;}
._a_c00495{margin-left:-2.835000px;}
._9_c00495{margin-left:-1.296000px;}
._0_c00495{width:1.215000px;}
._7_c00495{width:2.268000px;}
._1_c00495{width:3.726000px;}
._3_c00495{width:4.779000px;}
._8_c00495{width:5.832000px;}
._5_c00495{width:7.290000px;}
._13_c00495{width:8.364000px;}
._6_c00495{width:9.558000px;}
._c_c00495{width:11.259000px;}
._12_c00495{width:12.390000px;}
._11_c00495{width:13.626000px;}
._18_c00495{width:14.985000px;}
._15_c00495{width:16.410000px;}
._16_c00495{width:18.369000px;}
._10_c00495{width:19.776000px;}
._d_c00495{width:22.194000px;}
._f_c00495{width:24.303000px;}
._e_c00495{width:25.980000px;}
._17_c00495{width:28.245000px;}
._1c_c00495{width:31.656000px;}
._19_c00495{width:33.006000px;}
.fc2_c00495{color:transparent;}
.fc1_c00495{color:rgb(128,128,128);}
.fc0_c00495{color:rgb(0,0,0);}
.fs4_c00495{font-size:48.000000px;}
.fs1_c00495{font-size:57.000000px;}
.fs2_c00495{font-size:60.000000px;}
.fs0_c00495{font-size:81.000000px;}
.fs3_c00495{font-size:96.000000px;}
.y0_c00495{bottom:0.000000px;}
.y23_c00495{bottom:3.105000px;}
.y22_c00495{bottom:7.228371px;}
.y21_c00495{bottom:67.215000px;}
.y20_c00495{bottom:90.765000px;}
.y1f_c00495{bottom:116.415000px;}
.y1e_c00495{bottom:141.165000px;}
.y1d_c00495{bottom:165.765000px;}
.y1c_c00495{bottom:190.665000px;}
.y1b_c00495{bottom:214.965000px;}
.y1a_c00495{bottom:239.415000px;}
.y19_c00495{bottom:264.015000px;}
.y18_c00495{bottom:288.615000px;}
.y17_c00495{bottom:313.515000px;}
.y16_c00495{bottom:337.515000px;}
.y15_c00495{bottom:362.265000px;}
.y14_c00495{bottom:386.415000px;}
.y13_c00495{bottom:410.415000px;}
.y12_c00495{bottom:434.715000px;}
.y11_c00495{bottom:458.715000px;}
.y10_c00495{bottom:483.015000px;}
.yf_c00495{bottom:507.615000px;}
.ye_c00495{bottom:529.965000px;}
.yd_c00495{bottom:553.515000px;}
.yc_c00495{bottom:578.115000px;}
.yb_c00495{bottom:602.115000px;}
.ya_c00495{bottom:652.365000px;}
.y9_c00495{bottom:681.465000px;}
.y8_c00495{bottom:710.865000px;}
.y7_c00495{bottom:740.115000px;}
.y6_c00495{bottom:768.165000px;}
.y5_c00495{bottom:794.865000px;}
.y4_c00495{bottom:819.165000px;}
.y3_c00495{bottom:843.465000px;}
.y2_c00495{bottom:867.765000px;}
.y1_c00495{bottom:891.765000px;}
.h7_c00495{height:13.200074px;}
.h8_c00495{height:43.804688px;}
.h6_c00495{height:58.857422px;}
.h5_c00495{height:58.886719px;}
.h3_c00495{height:66.713379px;}
.h2_c00495{height:79.497070px;}
.h4_c00495{height:94.171875px;}
.h1_c00495{height:986.250000px;}
.h0_c00495{height:986.325000px;}
.w2_c00495{width:104.875500px;}
.w0_c00495{width:667.425000px;}
.w1_c00495{width:667.500000px;}
.x0_c00495{left:0.000000px;}
.x3_c00495{left:146.250000px;}
.x1_c00495{left:148.200000px;}
.x2_c00495{left:149.550000px;}
.xa_c00495{left:150.750000px;}
.x4_c00495{left:179.550000px;}
.x5_c00495{left:219.000000px;}
.x8_c00495{left:281.400000px;}
.x7_c00495{left:282.450000px;}
.xc_c00495{left:285.526749px;}
.x6_c00495{left:291.150000px;}
.x9_c00495{left:317.250000px;}
.xb_c00495{left:583.800000px;}
@media print{
.v0_c00495{vertical-align:0.000000pt;}
.ls1_c00495{letter-spacing:0.000000pt;}
.ls0_c00495{letter-spacing:5.333333pt;}
.ws1_c00495{word-spacing:-47.445333pt;}
.ws3_c00495{word-spacing:-18.000000pt;}
.ws2_c00495{word-spacing:-8.266667pt;}
.ws4_c00495{word-spacing:0.000000pt;}
.ws0_c00495{word-spacing:4.266667pt;}
._1a_c00495{margin-left:-18.648000pt;}
._1b_c00495{margin-left:-9.936000pt;}
._14_c00495{margin-left:-9.032000pt;}
._2_c00495{margin-left:-6.336000pt;}
._b_c00495{margin-left:-5.184000pt;}
._4_c00495{margin-left:-4.248000pt;}
._a_c00495{margin-left:-2.520000pt;}
._9_c00495{margin-left:-1.152000pt;}
._0_c00495{width:1.080000pt;}
._7_c00495{width:2.016000pt;}
._1_c00495{width:3.312000pt;}
._3_c00495{width:4.248000pt;}
._8_c00495{width:5.184000pt;}
._5_c00495{width:6.480000pt;}
._13_c00495{width:7.434667pt;}
._6_c00495{width:8.496000pt;}
._c_c00495{width:10.008000pt;}
._12_c00495{width:11.013333pt;}
._11_c00495{width:12.112000pt;}
._18_c00495{width:13.320000pt;}
._15_c00495{width:14.586667pt;}
._16_c00495{width:16.328000pt;}
._10_c00495{width:17.578667pt;}
._d_c00495{width:19.728000pt;}
._f_c00495{width:21.602667pt;}
._e_c00495{width:23.093333pt;}
._17_c00495{width:25.106667pt;}
._1c_c00495{width:28.138667pt;}
._19_c00495{width:29.338667pt;}
.fs4_c00495{font-size:42.666667pt;}
.fs1_c00495{font-size:50.666667pt;}
.fs2_c00495{font-size:53.333333pt;}
.fs0_c00495{font-size:72.000000pt;}
.fs3_c00495{font-size:85.333333pt;}
.y0_c00495{bottom:0.000000pt;}
.y23_c00495{bottom:2.760000pt;}
.y22_c00495{bottom:6.425219pt;}
.y21_c00495{bottom:59.746667pt;}
.y20_c00495{bottom:80.680000pt;}
.y1f_c00495{bottom:103.480000pt;}
.y1e_c00495{bottom:125.480000pt;}
.y1d_c00495{bottom:147.346667pt;}
.y1c_c00495{bottom:169.480000pt;}
.y1b_c00495{bottom:191.080000pt;}
.y1a_c00495{bottom:212.813333pt;}
.y19_c00495{bottom:234.680000pt;}
.y18_c00495{bottom:256.546667pt;}
.y17_c00495{bottom:278.680000pt;}
.y16_c00495{bottom:300.013333pt;}
.y15_c00495{bottom:322.013333pt;}
.y14_c00495{bottom:343.480000pt;}
.y13_c00495{bottom:364.813333pt;}
.y12_c00495{bottom:386.413333pt;}
.y11_c00495{bottom:407.746667pt;}
.y10_c00495{bottom:429.346667pt;}
.yf_c00495{bottom:451.213333pt;}
.ye_c00495{bottom:471.080000pt;}
.yd_c00495{bottom:492.013333pt;}
.yc_c00495{bottom:513.880000pt;}
.yb_c00495{bottom:535.213333pt;}
.ya_c00495{bottom:579.880000pt;}
.y9_c00495{bottom:605.746667pt;}
.y8_c00495{bottom:631.880000pt;}
.y7_c00495{bottom:657.880000pt;}
.y6_c00495{bottom:682.813333pt;}
.y5_c00495{bottom:706.546667pt;}
.y4_c00495{bottom:728.146667pt;}
.y3_c00495{bottom:749.746667pt;}
.y2_c00495{bottom:771.346667pt;}
.y1_c00495{bottom:792.680000pt;}
.h7_c00495{height:11.733399pt;}
.h8_c00495{height:38.937500pt;}
.h6_c00495{height:52.317708pt;}
.h5_c00495{height:52.343750pt;}
.h3_c00495{height:59.300781pt;}
.h2_c00495{height:70.664062pt;}
.h4_c00495{height:83.708333pt;}
.h1_c00495{height:876.666667pt;}
.h0_c00495{height:876.733333pt;}
.w2_c00495{width:93.222667pt;}
.w0_c00495{width:593.266667pt;}
.w1_c00495{width:593.333333pt;}
.x0_c00495{left:0.000000pt;}
.x3_c00495{left:130.000000pt;}
.x1_c00495{left:131.733333pt;}
.x2_c00495{left:132.933333pt;}
.xa_c00495{left:134.000000pt;}
.x4_c00495{left:159.600000pt;}
.x5_c00495{left:194.666667pt;}
.x8_c00495{left:250.133333pt;}
.x7_c00495{left:251.066667pt;}
.xc_c00495{left:253.801554pt;}
.x6_c00495{left:258.800000pt;}
.x9_c00495{left:282.000000pt;}
.xb_c00495{left:518.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_c13082a09b2ee673d6f85308.woff2')format("woff");}.ff1_c00496{font-family:ff1_c00496;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00496;src:url('chunks/assets/font_2334176fb49c78b1ef4a6e88.woff2')format("woff");}.ff2_c00496{font-family:ff2_c00496;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00496;src:url('chunks/assets/font_5d72be699980877e21d80809.woff2')format("woff");}.ff3_c00496{font-family:ff3_c00496;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00496;src:url('chunks/assets/font_c570bb3cfd0a1ecdc376d063.woff2')format("woff");}.ff4_c00496{font-family:ff4_c00496;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00496;src:url('chunks/assets/font_63a9e8a93f76867e76a6523a.woff2')format("woff");}.ff5_c00496{font-family:ff5_c00496;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00496;src:url('chunks/assets/font_1dd015b77298f725d5a95e6a.woff2')format("woff");}.ff6_c00496{font-family:ff6_c00496;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00496;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c00496{font-family:ff7_c00496;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00496{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,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;}
.ls1_c00496{letter-spacing:0.000000px;}
.ls0_c00496{letter-spacing:2.700000px;}
.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:-60.048000px;}
.ws0_c00496{word-spacing:-17.352000px;}
.ws2_c00496{word-spacing:0.000000px;}
._1d_c00496{margin-left:-23.478000px;}
._12_c00496{margin-left:-11.016000px;}
._14_c00496{margin-left:-9.882000px;}
._e_c00496{margin-left:-7.938000px;}
._d_c00496{margin-left:-5.913000px;}
._a_c00496{margin-left:-4.617000px;}
._4_c00496{margin-left:-3.240000px;}
._6_c00496{margin-left:-2.106000px;}
._5_c00496{margin-left:-1.053000px;}
._3_c00496{width:1.863000px;}
._1_c00496{width:2.916000px;}
._0_c00496{width:4.536000px;}
._7_c00496{width:5.589000px;}
._2_c00496{width:6.723000px;}
._c_c00496{width:8.667000px;}
._15_c00496{width:9.801000px;}
._b_c00496{width:10.935000px;}
._9_c00496{width:12.474000px;}
._8_c00496{width:13.767000px;}
._10_c00496{width:15.552000px;}
._11_c00496{width:17.091000px;}
._13_c00496{width:19.116000px;}
._1a_c00496{width:21.546000px;}
._1f_c00496{width:23.088000px;}
._18_c00496{width:24.462000px;}
._19_c00496{width:25.515000px;}
._1e_c00496{width:27.216000px;}
._17_c00496{width:29.322000px;}
._f_c00496{width:31.752000px;}
._16_c00496{width:35.559000px;}
._20_c00496{width:42.036000px;}
._1c_c00496{width:61.551000px;}
._1b_c00496{width:582.477000px;}
.fc2_c00496{color:transparent;}
.fc1_c00496{color:rgb(128,128,128);}
.fc0_c00496{color:rgb(0,0,0);}
.fs6_c00496{font-size:48.000000px;}
.fs2_c00496{font-size:51.000000px;}
.fs3_c00496{font-size:72.000000px;}
.fs1_c00496{font-size:78.000000px;}
.fs0_c00496{font-size:81.000000px;}
.fs4_c00496{font-size:87.000000px;}
.fs5_c00496{font-size:108.000000px;}
.y0_c00496{bottom:0.000000px;}
.y25_c00496{bottom:3.105000px;}
.y24_c00496{bottom:7.228363px;}
.y23_c00496{bottom:56.250000px;}
.y22_c00496{bottom:81.300000px;}
.y21_c00496{bottom:106.650000px;}
.y20_c00496{bottom:131.550000px;}
.y1f_c00496{bottom:155.850000px;}
.y1e_c00496{bottom:180.450000px;}
.y1d_c00496{bottom:204.900000px;}
.y1c_c00496{bottom:229.050000px;}
.y1b_c00496{bottom:253.500000px;}
.y1a_c00496{bottom:277.650000px;}
.y19_c00496{bottom:301.800000px;}
.y18_c00496{bottom:326.250000px;}
.y17_c00496{bottom:350.250000px;}
.y16_c00496{bottom:373.650000px;}
.y15_c00496{bottom:397.950000px;}
.y14_c00496{bottom:422.250000px;}
.y13_c00496{bottom:446.100000px;}
.y12_c00496{bottom:470.100000px;}
.y11_c00496{bottom:494.100000px;}
.y10_c00496{bottom:518.700000px;}
.yf_c00496{bottom:542.400000px;}
.ye_c00496{bottom:566.850000px;}
.yd_c00496{bottom:591.000000px;}
.yc_c00496{bottom:615.150000px;}
.yb_c00496{bottom:638.100000px;}
.ya_c00496{bottom:662.850000px;}
.y9_c00496{bottom:687.450000px;}
.y8_c00496{bottom:711.450000px;}
.y7_c00496{bottom:736.050000px;}
.y6_c00496{bottom:760.050000px;}
.y5_c00496{bottom:784.350000px;}
.y4_c00496{bottom:808.650000px;}
.y3_c00496{bottom:832.950000px;}
.y2_c00496{bottom:856.950000px;}
.y1_c00496{bottom:881.250000px;}
.h6_c00496{height:13.200074px;}
.h7_c00496{height:43.804688px;}
.h2_c00496{height:79.497070px;}
.h4_c00496{height:91.176000px;}
.h3_c00496{height:98.756836px;}
.h5_c00496{height:108.843750px;}
.h1_c00496{height:982.500000px;}
.h0_c00496{height:982.800000px;}
.w2_c00496{width:104.875500px;}
.w0_c00496{width:667.425000px;}
.w1_c00496{width:667.500000px;}
.x0_c00496{left:0.000000px;}
.xa_c00496{left:56.100000px;}
.x2_c00496{left:59.400000px;}
.x7_c00496{left:62.100000px;}
.x3_c00496{left:67.200000px;}
.x4_c00496{left:68.400000px;}
.x6_c00496{left:69.750000px;}
.x8_c00496{left:71.100000px;}
.x9_c00496{left:72.900000px;}
.xb_c00496{left:73.950000px;}
.x5_c00496{left:94.200000px;}
.x1_c00496{left:95.850000px;}
.xe_c00496{left:285.526749px;}
.xc_c00496{left:401.250000px;}
.xd_c00496{left:515.700000px;}
@media print{
.v0_c00496{vertical-align:0.000000pt;}
.ls1_c00496{letter-spacing:0.000000pt;}
.ls0_c00496{letter-spacing:2.400000pt;}
.ws1_c00496{word-spacing:-53.376000pt;}
.ws0_c00496{word-spacing:-15.424000pt;}
.ws2_c00496{word-spacing:0.000000pt;}
._1d_c00496{margin-left:-20.869333pt;}
._12_c00496{margin-left:-9.792000pt;}
._14_c00496{margin-left:-8.784000pt;}
._e_c00496{margin-left:-7.056000pt;}
._d_c00496{margin-left:-5.256000pt;}
._a_c00496{margin-left:-4.104000pt;}
._4_c00496{margin-left:-2.880000pt;}
._6_c00496{margin-left:-1.872000pt;}
._5_c00496{margin-left:-0.936000pt;}
._3_c00496{width:1.656000pt;}
._1_c00496{width:2.592000pt;}
._0_c00496{width:4.032000pt;}
._7_c00496{width:4.968000pt;}
._2_c00496{width:5.976000pt;}
._c_c00496{width:7.704000pt;}
._15_c00496{width:8.712000pt;}
._b_c00496{width:9.720000pt;}
._9_c00496{width:11.088000pt;}
._8_c00496{width:12.237333pt;}
._10_c00496{width:13.824000pt;}
._11_c00496{width:15.192000pt;}
._13_c00496{width:16.992000pt;}
._1a_c00496{width:19.152000pt;}
._1f_c00496{width:20.522667pt;}
._18_c00496{width:21.744000pt;}
._19_c00496{width:22.680000pt;}
._1e_c00496{width:24.192000pt;}
._17_c00496{width:26.064000pt;}
._f_c00496{width:28.224000pt;}
._16_c00496{width:31.608000pt;}
._20_c00496{width:37.365333pt;}
._1c_c00496{width:54.712000pt;}
._1b_c00496{width:517.757333pt;}
.fs6_c00496{font-size:42.666667pt;}
.fs2_c00496{font-size:45.333333pt;}
.fs3_c00496{font-size:64.000000pt;}
.fs1_c00496{font-size:69.333333pt;}
.fs0_c00496{font-size:72.000000pt;}
.fs4_c00496{font-size:77.333333pt;}
.fs5_c00496{font-size:96.000000pt;}
.y0_c00496{bottom:0.000000pt;}
.y25_c00496{bottom:2.760000pt;}
.y24_c00496{bottom:6.425212pt;}
.y23_c00496{bottom:50.000000pt;}
.y22_c00496{bottom:72.266667pt;}
.y21_c00496{bottom:94.800000pt;}
.y20_c00496{bottom:116.933333pt;}
.y1f_c00496{bottom:138.533333pt;}
.y1e_c00496{bottom:160.400000pt;}
.y1d_c00496{bottom:182.133333pt;}
.y1c_c00496{bottom:203.600000pt;}
.y1b_c00496{bottom:225.333333pt;}
.y1a_c00496{bottom:246.800000pt;}
.y19_c00496{bottom:268.266667pt;}
.y18_c00496{bottom:290.000000pt;}
.y17_c00496{bottom:311.333333pt;}
.y16_c00496{bottom:332.133333pt;}
.y15_c00496{bottom:353.733333pt;}
.y14_c00496{bottom:375.333333pt;}
.y13_c00496{bottom:396.533333pt;}
.y12_c00496{bottom:417.866667pt;}
.y11_c00496{bottom:439.200000pt;}
.y10_c00496{bottom:461.066667pt;}
.yf_c00496{bottom:482.133333pt;}
.ye_c00496{bottom:503.866667pt;}
.yd_c00496{bottom:525.333333pt;}
.yc_c00496{bottom:546.800000pt;}
.yb_c00496{bottom:567.200000pt;}
.ya_c00496{bottom:589.200000pt;}
.y9_c00496{bottom:611.066667pt;}
.y8_c00496{bottom:632.400000pt;}
.y7_c00496{bottom:654.266667pt;}
.y6_c00496{bottom:675.600000pt;}
.y5_c00496{bottom:697.200000pt;}
.y4_c00496{bottom:718.800000pt;}
.y3_c00496{bottom:740.400000pt;}
.y2_c00496{bottom:761.733333pt;}
.y1_c00496{bottom:783.333333pt;}
.h6_c00496{height:11.733399pt;}
.h7_c00496{height:38.937500pt;}
.h2_c00496{height:70.664062pt;}
.h4_c00496{height:81.045333pt;}
.h3_c00496{height:87.783854pt;}
.h5_c00496{height:96.750000pt;}
.h1_c00496{height:873.333333pt;}
.h0_c00496{height:873.600000pt;}
.w2_c00496{width:93.222667pt;}
.w0_c00496{width:593.266667pt;}
.w1_c00496{width:593.333333pt;}
.x0_c00496{left:0.000000pt;}
.xa_c00496{left:49.866667pt;}
.x2_c00496{left:52.800000pt;}
.x7_c00496{left:55.200000pt;}
.x3_c00496{left:59.733333pt;}
.x4_c00496{left:60.800000pt;}
.x6_c00496{left:62.000000pt;}
.x8_c00496{left:63.200000pt;}
.x9_c00496{left:64.800000pt;}
.xb_c00496{left:65.733333pt;}
.x5_c00496{left:83.733333pt;}
.x1_c00496{left:85.200000pt;}
.xe_c00496{left:253.801554pt;}
.xc_c00496{left:356.666667pt;}
.xd_c00496{left:458.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_a970c503af04f92dcf06cec1.woff2')format("woff");}.ff1_c00497{font-family:ff1_c00497;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00497;src:url('chunks/assets/font_b196702ef695c685256b6e83.woff2')format("woff");}.ff2_c00497{font-family:ff2_c00497;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00497;src:url('chunks/assets/font_23ae2f5afa31f4909eae3c97.woff2')format("woff");}.ff3_c00497{font-family:ff3_c00497;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00497;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff4_c00497{font-family:ff4_c00497;line-height:1.219238;font-style: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;}
.ls0_c00497{letter-spacing:-6.000000px;}
.ls1_c00497{letter-spacing:0.000000px;}
.sc__c00497{text-shadow:none;}
.sc0_c00497{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00497{-webkit-text-stroke:0px transparent;}
.sc0_c00497{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00497{word-spacing:-116.364000px;}
.ws1_c00497{word-spacing:-20.250000px;}
.ws2_c00497{word-spacing:0.000000px;}
._1e_c00497{margin-left:-24.459000px;}
._1d_c00497{margin-left:-21.966000px;}
._b_c00497{margin-left:-20.097000px;}
._19_c00497{margin-left:-14.808000px;}
._1c_c00497{margin-left:-11.955000px;}
._9_c00497{margin-left:-10.890000px;}
._8_c00497{margin-left:-9.801000px;}
._a_c00497{margin-left:-8.019000px;}
._3_c00497{margin-left:-6.336000px;}
._11_c00497{margin-left:-5.265000px;}
._4_c00497{margin-left:-4.257000px;}
._5_c00497{margin-left:-2.871000px;}
._0_c00497{margin-left:-1.452000px;}
._c_c00497{width:1.782000px;}
._1_c00497{width:2.928000px;}
._6_c00497{width:4.299000px;}
._7_c00497{width:5.346000px;}
._10_c00497{width:6.354000px;}
._12_c00497{width:8.082000px;}
._13_c00497{width:9.822000px;}
._17_c00497{width:11.310000px;}
._d_c00497{width:12.555000px;}
._15_c00497{width:13.596000px;}
._e_c00497{width:15.066000px;}
._21_c00497{width:16.104000px;}
._14_c00497{width:17.235000px;}
._20_c00497{width:18.705000px;}
._f_c00497{width:22.761000px;}
._1b_c00497{width:27.633000px;}
._1a_c00497{width:32.688000px;}
._1f_c00497{width:34.923000px;}
._18_c00497{width:38.907000px;}
._16_c00497{width:129.195000px;}
._2_c00497{width:153.351000px;}
.fc2_c00497{color:transparent;}
.fc1_c00497{color:rgb(128,128,128);}
.fc0_c00497{color:rgb(0,0,0);}
.fs3_c00497{font-size:24.000000px;}
.fs4_c00497{font-size:48.000000px;}
.fs2_c00497{font-size:81.000000px;}
.fs1_c00497{font-size:99.000000px;}
.fs0_c00497{font-size:132.000000px;}
.y0_c00497{bottom:0.000000px;}
.y26_c00497{bottom:3.105000px;}
.y25_c00497{bottom:7.228371px;}
.y24_c00497{bottom:59.115000px;}
.y23_c00497{bottom:82.065000px;}
.y22_c00497{bottom:108.015000px;}
.y21_c00497{bottom:132.315000px;}
.y20_c00497{bottom:157.365000px;}
.y1f_c00497{bottom:181.365000px;}
.y1e_c00497{bottom:205.965000px;}
.y1d_c00497{bottom:230.565000px;}
.y1c_c00497{bottom:255.615000px;}
.y1b_c00497{bottom:279.465000px;}
.y1a_c00497{bottom:304.215000px;}
.y19_c00497{bottom:329.115000px;}
.y18_c00497{bottom:352.815000px;}
.y17_c00497{bottom:377.415000px;}
.y16_c00497{bottom:402.015000px;}
.y15_c00497{bottom:426.915000px;}
.y14_c00497{bottom:450.615000px;}
.y13_c00497{bottom:474.165000px;}
.y12_c00497{bottom:497.865000px;}
.y11_c00497{bottom:521.865000px;}
.y10_c00497{bottom:545.865000px;}
.yf_c00497{bottom:570.165000px;}
.ye_c00497{bottom:593.715000px;}
.yd_c00497{bottom:618.765000px;}
.yc_c00497{bottom:643.365000px;}
.yb_c00497{bottom:667.665000px;}
.ya_c00497{bottom:691.665000px;}
.y9_c00497{bottom:715.965000px;}
.y8_c00497{bottom:740.265000px;}
.y7_c00497{bottom:764.865000px;}
.y6_c00497{bottom:788.715000px;}
.y5_c00497{bottom:813.015000px;}
.y4_c00497{bottom:837.015000px;}
.y3_c00497{bottom:860.715000px;}
.y2_c00497{bottom:885.315000px;}
.y1_c00497{bottom:921.015000px;}
.h4_c00497{height:13.200074px;}
.h5_c00497{height:43.804688px;}
.h3_c00497{height:79.497070px;}
.h2_c00497{height:167.126953px;}
.h1_c00497{height:986.250000px;}
.h0_c00497{height:986.325000px;}
.w2_c00497{width:104.875500px;}
.w0_c00497{width:667.425000px;}
.w1_c00497{width:667.500000px;}
.x0_c00497{left:0.000000px;}
.x7_c00497{left:125.550000px;}
.x6_c00497{left:127.200000px;}
.x5_c00497{left:128.250000px;}
.x3_c00497{left:130.050000px;}
.x1_c00497{left:131.550000px;}
.x2_c00497{left:132.600000px;}
.x4_c00497{left:155.850000px;}
.x9_c00497{left:285.526749px;}
.x8_c00497{left:571.350000px;}
@media print{
.v0_c00497{vertical-align:0.000000pt;}
.ls0_c00497{letter-spacing:-5.333333pt;}
.ls1_c00497{letter-spacing:0.000000pt;}
.ws0_c00497{word-spacing:-103.434667pt;}
.ws1_c00497{word-spacing:-18.000000pt;}
.ws2_c00497{word-spacing:0.000000pt;}
._1e_c00497{margin-left:-21.741333pt;}
._1d_c00497{margin-left:-19.525333pt;}
._b_c00497{margin-left:-17.864000pt;}
._19_c00497{margin-left:-13.162667pt;}
._1c_c00497{margin-left:-10.626667pt;}
._9_c00497{margin-left:-9.680000pt;}
._8_c00497{margin-left:-8.712000pt;}
._a_c00497{margin-left:-7.128000pt;}
._3_c00497{margin-left:-5.632000pt;}
._11_c00497{margin-left:-4.680000pt;}
._4_c00497{margin-left:-3.784000pt;}
._5_c00497{margin-left:-2.552000pt;}
._0_c00497{margin-left:-1.290667pt;}
._c_c00497{width:1.584000pt;}
._1_c00497{width:2.602667pt;}
._6_c00497{width:3.821333pt;}
._7_c00497{width:4.752000pt;}
._10_c00497{width:5.648000pt;}
._12_c00497{width:7.184000pt;}
._13_c00497{width:8.730667pt;}
._17_c00497{width:10.053333pt;}
._d_c00497{width:11.160000pt;}
._15_c00497{width:12.085333pt;}
._e_c00497{width:13.392000pt;}
._21_c00497{width:14.314667pt;}
._14_c00497{width:15.320000pt;}
._20_c00497{width:16.626667pt;}
._f_c00497{width:20.232000pt;}
._1b_c00497{width:24.562667pt;}
._1a_c00497{width:29.056000pt;}
._1f_c00497{width:31.042667pt;}
._18_c00497{width:34.584000pt;}
._16_c00497{width:114.840000pt;}
._2_c00497{width:136.312000pt;}
.fs3_c00497{font-size:21.333333pt;}
.fs4_c00497{font-size:42.666667pt;}
.fs2_c00497{font-size:72.000000pt;}
.fs1_c00497{font-size:88.000000pt;}
.fs0_c00497{font-size:117.333333pt;}
.y0_c00497{bottom:0.000000pt;}
.y26_c00497{bottom:2.760000pt;}
.y25_c00497{bottom:6.425219pt;}
.y24_c00497{bottom:52.546667pt;}
.y23_c00497{bottom:72.946667pt;}
.y22_c00497{bottom:96.013333pt;}
.y21_c00497{bottom:117.613333pt;}
.y20_c00497{bottom:139.880000pt;}
.y1f_c00497{bottom:161.213333pt;}
.y1e_c00497{bottom:183.080000pt;}
.y1d_c00497{bottom:204.946667pt;}
.y1c_c00497{bottom:227.213333pt;}
.y1b_c00497{bottom:248.413333pt;}
.y1a_c00497{bottom:270.413333pt;}
.y19_c00497{bottom:292.546667pt;}
.y18_c00497{bottom:313.613333pt;}
.y17_c00497{bottom:335.480000pt;}
.y16_c00497{bottom:357.346667pt;}
.y15_c00497{bottom:379.480000pt;}
.y14_c00497{bottom:400.546667pt;}
.y13_c00497{bottom:421.480000pt;}
.y12_c00497{bottom:442.546667pt;}
.y11_c00497{bottom:463.880000pt;}
.y10_c00497{bottom:485.213333pt;}
.yf_c00497{bottom:506.813333pt;}
.ye_c00497{bottom:527.746667pt;}
.yd_c00497{bottom:550.013333pt;}
.yc_c00497{bottom:571.880000pt;}
.yb_c00497{bottom:593.480000pt;}
.ya_c00497{bottom:614.813333pt;}
.y9_c00497{bottom:636.413333pt;}
.y8_c00497{bottom:658.013333pt;}
.y7_c00497{bottom:679.880000pt;}
.y6_c00497{bottom:701.080000pt;}
.y5_c00497{bottom:722.680000pt;}
.y4_c00497{bottom:744.013333pt;}
.y3_c00497{bottom:765.080000pt;}
.y2_c00497{bottom:786.946667pt;}
.y1_c00497{bottom:818.680000pt;}
.h4_c00497{height:11.733399pt;}
.h5_c00497{height:38.937500pt;}
.h3_c00497{height:70.664062pt;}
.h2_c00497{height:148.557292pt;}
.h1_c00497{height:876.666667pt;}
.h0_c00497{height:876.733333pt;}
.w2_c00497{width:93.222667pt;}
.w0_c00497{width:593.266667pt;}
.w1_c00497{width:593.333333pt;}
.x0_c00497{left:0.000000pt;}
.x7_c00497{left:111.600000pt;}
.x6_c00497{left:113.066667pt;}
.x5_c00497{left:114.000000pt;}
.x3_c00497{left:115.600000pt;}
.x1_c00497{left:116.933333pt;}
.x2_c00497{left:117.866667pt;}
.x4_c00497{left:138.533333pt;}
.x9_c00497{left:253.801554pt;}
.x8_c00497{left:507.866667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ea899dd95b0ca72837487ed8.woff2')format("woff");}.ff1_c00498{font-family:ff1_c00498;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00498;src:url('chunks/assets/font_7b3ee07bb7ae1df32c236f19.woff2')format("woff");}.ff2_c00498{font-family:ff2_c00498;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00498;src:url('chunks/assets/font_6b1f2bc910962258d13677f5.woff2')format("woff");}.ff3_c00498{font-family:ff3_c00498;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00498;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff4_c00498{font-family:ff4_c00498;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00498;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c00498{font-family:ff5_c00498;line-height:1.219238;font-style: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;}
.ls0_c00498{letter-spacing:0.000000px;}
.ls1_c00498{letter-spacing:3.000000px;}
.sc__c00498{text-shadow:none;}
.sc0_c00498{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00498{-webkit-text-stroke:0px transparent;}
.sc0_c00498{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00498{word-spacing:-17.352000px;}
.ws1_c00498{word-spacing:0.000000px;}
._1d_c00498{margin-left:-25.191000px;}
._1e_c00498{margin-left:-18.822000px;}
._a_c00498{margin-left:-13.932000px;}
._f_c00498{margin-left:-12.636000px;}
._17_c00498{margin-left:-10.875000px;}
._1b_c00498{margin-left:-9.117000px;}
._16_c00498{margin-left:-8.061000px;}
._e_c00498{margin-left:-6.048000px;}
._b_c00498{margin-left:-4.506000px;}
._3_c00498{margin-left:-2.916000px;}
._11_c00498{margin-left:-1.539000px;}
._6_c00498{width:1.215000px;}
._2_c00498{width:2.835000px;}
._0_c00498{width:3.888000px;}
._1_c00498{width:5.751000px;}
._d_c00498{width:6.885000px;}
._4_c00498{width:8.262000px;}
._7_c00498{width:9.396000px;}
._5_c00498{width:10.692000px;}
._9_c00498{width:12.555000px;}
._12_c00498{width:14.256000px;}
._c_c00498{width:15.471000px;}
._8_c00498{width:16.524000px;}
._1a_c00498{width:18.189000px;}
._15_c00498{width:20.889000px;}
._10_c00498{width:22.113000px;}
._19_c00498{width:27.801000px;}
._18_c00498{width:30.003000px;}
._1c_c00498{width:31.872000px;}
._13_c00498{width:256.056000px;}
._14_c00498{width:379.452000px;}
._1f_c00498{width:388.680000px;}
.fc2_c00498{color:transparent;}
.fc1_c00498{color:rgb(128,128,128);}
.fc0_c00498{color:rgb(0,0,0);}
.fs1_c00498{font-size:48.000000px;}
.fs3_c00498{font-size:66.000000px;}
.fs2_c00498{font-size:72.000000px;}
.fs0_c00498{font-size:81.000000px;}
.y0_c00498{bottom:0.000000px;}
.y25_c00498{bottom:3.105000px;}
.y24_c00498{bottom:7.228371px;}
.y23_c00498{bottom:77.265000px;}
.y22_c00498{bottom:100.665000px;}
.y21_c00498{bottom:125.865000px;}
.y20_c00498{bottom:150.315000px;}
.y1f_c00498{bottom:175.215000px;}
.y1e_c00498{bottom:199.515000px;}
.y1d_c00498{bottom:224.415000px;}
.y1c_c00498{bottom:248.715000px;}
.y1b_c00498{bottom:273.015000px;}
.y1a_c00498{bottom:297.765000px;}
.y19_c00498{bottom:322.065000px;}
.y18_c00498{bottom:346.065000px;}
.y17_c00498{bottom:371.265000px;}
.y16_c00498{bottom:394.515000px;}
.y15_c00498{bottom:417.165000px;}
.y14_c00498{bottom:442.515000px;}
.y13_c00498{bottom:466.515000px;}
.y12_c00498{bottom:490.065000px;}
.y11_c00498{bottom:514.065000px;}
.y10_c00498{bottom:538.365000px;}
.yf_c00498{bottom:562.365000px;}
.ye_c00498{bottom:586.665000px;}
.yd_c00498{bottom:609.915000px;}
.yc_c00498{bottom:633.915000px;}
.yb_c00498{bottom:658.215000px;}
.ya_c00498{bottom:682.065000px;}
.y9_c00498{bottom:707.715000px;}
.y8_c00498{bottom:729.765000px;}
.y7_c00498{bottom:754.365000px;}
.y6_c00498{bottom:778.665000px;}
.y5_c00498{bottom:804.615000px;}
.y4_c00498{bottom:827.265000px;}
.y3_c00498{bottom:852.315000px;}
.y2_c00498{bottom:876.615000px;}
.y1_c00498{bottom:900.165000px;}
.h5_c00498{height:13.200074px;}
.h6_c00498{height:43.804688px;}
.h2_c00498{height:79.497070px;}
.h4_c00498{height:84.269531px;}
.h3_c00498{height:91.160156px;}
.h0_c00498{height:989.025000px;}
.h1_c00498{height:989.250000px;}
.w1_c00498{width:104.875500px;}
.w0_c00498{width:672.000000px;}
.x0_c00498{left:0.000000px;}
.x4_c00498{left:32.700000px;}
.x2_c00498{left:47.550000px;}
.x1_c00498{left:49.200000px;}
.x3_c00498{left:50.250000px;}
.x5_c00498{left:51.300000px;}
.x6_c00498{left:53.100000px;}
.x8_c00498{left:54.450000px;}
.x7_c00498{left:77.400000px;}
.xa_c00498{left:287.814240px;}
.x9_c00498{left:340.650000px;}
@media print{
.v0_c00498{vertical-align:0.000000pt;}
.ls0_c00498{letter-spacing:0.000000pt;}
.ls1_c00498{letter-spacing:2.666667pt;}
.ws0_c00498{word-spacing:-15.424000pt;}
.ws1_c00498{word-spacing:0.000000pt;}
._1d_c00498{margin-left:-22.392000pt;}
._1e_c00498{margin-left:-16.730667pt;}
._a_c00498{margin-left:-12.384000pt;}
._f_c00498{margin-left:-11.232000pt;}
._17_c00498{margin-left:-9.666667pt;}
._1b_c00498{margin-left:-8.104000pt;}
._16_c00498{margin-left:-7.165333pt;}
._e_c00498{margin-left:-5.376000pt;}
._b_c00498{margin-left:-4.005333pt;}
._3_c00498{margin-left:-2.592000pt;}
._11_c00498{margin-left:-1.368000pt;}
._6_c00498{width:1.080000pt;}
._2_c00498{width:2.520000pt;}
._0_c00498{width:3.456000pt;}
._1_c00498{width:5.112000pt;}
._d_c00498{width:6.120000pt;}
._4_c00498{width:7.344000pt;}
._7_c00498{width:8.352000pt;}
._5_c00498{width:9.504000pt;}
._9_c00498{width:11.160000pt;}
._12_c00498{width:12.672000pt;}
._c_c00498{width:13.752000pt;}
._8_c00498{width:14.688000pt;}
._1a_c00498{width:16.168000pt;}
._15_c00498{width:18.568000pt;}
._10_c00498{width:19.656000pt;}
._19_c00498{width:24.712000pt;}
._18_c00498{width:26.669333pt;}
._1c_c00498{width:28.330667pt;}
._13_c00498{width:227.605333pt;}
._14_c00498{width:337.290667pt;}
._1f_c00498{width:345.493333pt;}
.fs1_c00498{font-size:42.666667pt;}
.fs3_c00498{font-size:58.666667pt;}
.fs2_c00498{font-size:64.000000pt;}
.fs0_c00498{font-size:72.000000pt;}
.y0_c00498{bottom:0.000000pt;}
.y25_c00498{bottom:2.760000pt;}
.y24_c00498{bottom:6.425219pt;}
.y23_c00498{bottom:68.680000pt;}
.y22_c00498{bottom:89.480000pt;}
.y21_c00498{bottom:111.880000pt;}
.y20_c00498{bottom:133.613333pt;}
.y1f_c00498{bottom:155.746667pt;}
.y1e_c00498{bottom:177.346667pt;}
.y1d_c00498{bottom:199.480000pt;}
.y1c_c00498{bottom:221.080000pt;}
.y1b_c00498{bottom:242.680000pt;}
.y1a_c00498{bottom:264.680000pt;}
.y19_c00498{bottom:286.280000pt;}
.y18_c00498{bottom:307.613333pt;}
.y17_c00498{bottom:330.013333pt;}
.y16_c00498{bottom:350.680000pt;}
.y15_c00498{bottom:370.813333pt;}
.y14_c00498{bottom:393.346667pt;}
.y13_c00498{bottom:414.680000pt;}
.y12_c00498{bottom:435.613333pt;}
.y11_c00498{bottom:456.946667pt;}
.y10_c00498{bottom:478.546667pt;}
.yf_c00498{bottom:499.880000pt;}
.ye_c00498{bottom:521.480000pt;}
.yd_c00498{bottom:542.146667pt;}
.yc_c00498{bottom:563.480000pt;}
.yb_c00498{bottom:585.080000pt;}
.ya_c00498{bottom:606.280000pt;}
.y9_c00498{bottom:629.080000pt;}
.y8_c00498{bottom:648.680000pt;}
.y7_c00498{bottom:670.546667pt;}
.y6_c00498{bottom:692.146667pt;}
.y5_c00498{bottom:715.213333pt;}
.y4_c00498{bottom:735.346667pt;}
.y3_c00498{bottom:757.613333pt;}
.y2_c00498{bottom:779.213333pt;}
.y1_c00498{bottom:800.146667pt;}
.h5_c00498{height:11.733399pt;}
.h6_c00498{height:38.937500pt;}
.h2_c00498{height:70.664062pt;}
.h4_c00498{height:74.906250pt;}
.h3_c00498{height:81.031250pt;}
.h0_c00498{height:879.133333pt;}
.h1_c00498{height:879.333333pt;}
.w1_c00498{width:93.222667pt;}
.w0_c00498{width:597.333333pt;}
.x0_c00498{left:0.000000pt;}
.x4_c00498{left:29.066667pt;}
.x2_c00498{left:42.266667pt;}
.x1_c00498{left:43.733333pt;}
.x3_c00498{left:44.666667pt;}
.x5_c00498{left:45.600000pt;}
.x6_c00498{left:47.200000pt;}
.x8_c00498{left:48.400000pt;}
.x7_c00498{left:68.800000pt;}
.xa_c00498{left:255.834880pt;}
.x9_c00498{left:302.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_d3cd7d16ff000b6adc24e20c.woff2')format("woff");}.ff1_c00499{font-family:ff1_c00499;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00499;src:url('chunks/assets/font_27ec86e9551e67eed1cefa2d.woff2')format("woff");}.ff2_c00499{font-family:ff2_c00499;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00499;src:url('chunks/assets/font_3736d0230e31bc76646644bd.woff2')format("woff");}.ff3_c00499{font-family:ff3_c00499;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00499;src:url('chunks/assets/font_8b71379868da8c27c34d2600.woff2')format("woff");}.ff4_c00499{font-family:ff4_c00499;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00499;src:url('chunks/assets/font_672d1db4b0730462ad933650.woff2')format("woff");}.ff5_c00499{font-family:ff5_c00499;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00499;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c00499{font-family:ff6_c00499;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00499{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00499{vertical-align:0.000000px;}
.v1_c00499{vertical-align:146.400000px;}
.ls1_c00499{letter-spacing:0.000000px;}
.ls2_c00499{letter-spacing:3.000000px;}
.ls0_c00499{letter-spacing:12.294000px;}
.sc__c00499{text-shadow:none;}
.sc0_c00499{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00499{-webkit-text-stroke:0px transparent;}
.sc0_c00499{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00499{word-spacing:-59.184000px;}
.ws1_c00499{word-spacing:-19.422000px;}
.ws2_c00499{word-spacing:0.000000px;}
._1c_c00499{margin-left:-28.188000px;}
._18_c00499{margin-left:-20.778000px;}
._1d_c00499{margin-left:-15.630000px;}
._1b_c00499{margin-left:-13.413000px;}
._12_c00499{margin-left:-10.611000px;}
._16_c00499{margin-left:-8.916000px;}
._c_c00499{margin-left:-7.779000px;}
._1e_c00499{margin-left:-6.480000px;}
._17_c00499{margin-left:-5.409000px;}
._3_c00499{margin-left:-4.386000px;}
._d_c00499{margin-left:-2.718000px;}
._2_c00499{margin-left:-1.530000px;}
._8_c00499{width:1.734000px;}
._4_c00499{width:3.468000px;}
._5_c00499{width:5.202000px;}
._6_c00499{width:6.222000px;}
._a_c00499{width:7.434000px;}
._b_c00499{width:8.853000px;}
._9_c00499{width:10.770000px;}
._10_c00499{width:11.979000px;}
._7_c00499{width:13.158000px;}
._19_c00499{width:15.129000px;}
._11_c00499{width:17.496000px;}
._0_c00499{width:25.230000px;}
._1a_c00499{width:27.198000px;}
._f_c00499{width:34.725000px;}
._14_c00499{width:46.425000px;}
._e_c00499{width:54.723000px;}
._13_c00499{width:180.711000px;}
._1_c00499{width:186.660000px;}
._15_c00499{width:895.827000px;}
.fc2_c00499{color:transparent;}
.fc1_c00499{color:rgb(128,128,128);}
.fc0_c00499{color:rgb(0,0,0);}
.fs9_c00499{font-size:48.000000px;}
.fs7_c00499{font-size:60.000000px;}
.fs3_c00499{font-size:72.000000px;}
.fs5_c00499{font-size:75.000000px;}
.fs8_c00499{font-size:78.000000px;}
.fs2_c00499{font-size:81.000000px;}
.fs4_c00499{font-size:84.000000px;}
.fs0_c00499{font-size:87.000000px;}
.fs1_c00499{font-size:102.000000px;}
.fs6_c00499{font-size:273.000000px;}
.y0_c00499{bottom:0.000000px;}
.y25_c00499{bottom:3.105000px;}
.y24_c00499{bottom:7.228371px;}
.y23_c00499{bottom:56.715000px;}
.y22_c00499{bottom:79.665000px;}
.y21_c00499{bottom:104.715000px;}
.y20_c00499{bottom:128.715000px;}
.y1e_c00499{bottom:141.915000px;}
.y1f_c00499{bottom:154.215000px;}
.y1d_c00499{bottom:203.265000px;}
.y1c_c00499{bottom:251.865000px;}
.y1b_c00499{bottom:276.465000px;}
.y1a_c00499{bottom:301.365000px;}
.y19_c00499{bottom:326.415000px;}
.y18_c00499{bottom:350.415000px;}
.y17_c00499{bottom:375.315000px;}
.y16_c00499{bottom:399.315000px;}
.y15_c00499{bottom:423.615000px;}
.y14_c00499{bottom:447.615000px;}
.y13_c00499{bottom:471.615000px;}
.y12_c00499{bottom:495.765000px;}
.y11_c00499{bottom:519.465000px;}
.y10_c00499{bottom:544.065000px;}
.yf_c00499{bottom:568.665000px;}
.ye_c00499{bottom:592.065000px;}
.yd_c00499{bottom:616.365000px;}
.yc_c00499{bottom:641.565000px;}
.yb_c00499{bottom:665.865000px;}
.ya_c00499{bottom:689.865000px;}
.y9_c00499{bottom:714.615000px;}
.y8_c00499{bottom:738.465000px;}
.y7_c00499{bottom:763.065000px;}
.y6_c00499{bottom:786.765000px;}
.y5_c00499{bottom:810.765000px;}
.y4_c00499{bottom:835.065000px;}
.y3_c00499{bottom:859.065000px;}
.y2_c00499{bottom:883.365000px;}
.y1_c00499{bottom:917.115000px;}
.h7_c00499{height:13.200074px;}
.h8_c00499{height:43.804688px;}
.h3_c00499{height:79.497070px;}
.h6_c00499{height:83.226000px;}
.h4_c00499{height:84.269531px;}
.h2_c00499{height:100.057617px;}
.h5_c00499{height:267.934570px;}
.h1_c00499{height:986.250000px;}
.h0_c00499{height:986.325000px;}
.w2_c00499{width:104.875500px;}
.w0_c00499{width:667.425000px;}
.w1_c00499{width:667.500000px;}
.x0_c00499{left:0.000000px;}
.x4_c00499{left:9.150000px;}
.x8_c00499{left:42.300000px;}
.xa_c00499{left:89.550000px;}
.x1_c00499{left:99.150000px;}
.x2_c00499{left:101.550000px;}
.x3_c00499{left:103.500000px;}
.x5_c00499{left:105.000000px;}
.x6_c00499{left:106.350000px;}
.x7_c00499{left:107.700000px;}
.x9_c00499{left:109.800000px;}
.xc_c00499{left:111.150000px;}
.xd_c00499{left:112.350000px;}
.xe_c00499{left:113.400000px;}
.xf_c00499{left:115.050000px;}
.x11_c00499{left:116.700000px;}
.xb_c00499{left:135.450000px;}
.x12_c00499{left:169.050000px;}
.x10_c00499{left:218.250000px;}
.x14_c00499{left:285.526749px;}
.x13_c00499{left:552.750000px;}
@media print{
.v0_c00499{vertical-align:0.000000pt;}
.v1_c00499{vertical-align:130.133333pt;}
.ls1_c00499{letter-spacing:0.000000pt;}
.ls2_c00499{letter-spacing:2.666667pt;}
.ls0_c00499{letter-spacing:10.928000pt;}
.ws0_c00499{word-spacing:-52.608000pt;}
.ws1_c00499{word-spacing:-17.264000pt;}
.ws2_c00499{word-spacing:0.000000pt;}
._1c_c00499{margin-left:-25.056000pt;}
._18_c00499{margin-left:-18.469333pt;}
._1d_c00499{margin-left:-13.893333pt;}
._1b_c00499{margin-left:-11.922667pt;}
._12_c00499{margin-left:-9.432000pt;}
._16_c00499{margin-left:-7.925333pt;}
._c_c00499{margin-left:-6.914667pt;}
._1e_c00499{margin-left:-5.760000pt;}
._17_c00499{margin-left:-4.808000pt;}
._3_c00499{margin-left:-3.898667pt;}
._d_c00499{margin-left:-2.416000pt;}
._2_c00499{margin-left:-1.360000pt;}
._8_c00499{width:1.541333pt;}
._4_c00499{width:3.082667pt;}
._5_c00499{width:4.624000pt;}
._6_c00499{width:5.530667pt;}
._a_c00499{width:6.608000pt;}
._b_c00499{width:7.869333pt;}
._9_c00499{width:9.573333pt;}
._10_c00499{width:10.648000pt;}
._7_c00499{width:11.696000pt;}
._19_c00499{width:13.448000pt;}
._11_c00499{width:15.552000pt;}
._0_c00499{width:22.426667pt;}
._1a_c00499{width:24.176000pt;}
._f_c00499{width:30.866667pt;}
._14_c00499{width:41.266667pt;}
._e_c00499{width:48.642667pt;}
._13_c00499{width:160.632000pt;}
._1_c00499{width:165.920000pt;}
._15_c00499{width:796.290667pt;}
.fs9_c00499{font-size:42.666667pt;}
.fs7_c00499{font-size:53.333333pt;}
.fs3_c00499{font-size:64.000000pt;}
.fs5_c00499{font-size:66.666667pt;}
.fs8_c00499{font-size:69.333333pt;}
.fs2_c00499{font-size:72.000000pt;}
.fs4_c00499{font-size:74.666667pt;}
.fs0_c00499{font-size:77.333333pt;}
.fs1_c00499{font-size:90.666667pt;}
.fs6_c00499{font-size:242.666667pt;}
.y0_c00499{bottom:0.000000pt;}
.y25_c00499{bottom:2.760000pt;}
.y24_c00499{bottom:6.425219pt;}
.y23_c00499{bottom:50.413333pt;}
.y22_c00499{bottom:70.813333pt;}
.y21_c00499{bottom:93.080000pt;}
.y20_c00499{bottom:114.413333pt;}
.y1e_c00499{bottom:126.146667pt;}
.y1f_c00499{bottom:137.080000pt;}
.y1d_c00499{bottom:180.680000pt;}
.y1c_c00499{bottom:223.880000pt;}
.y1b_c00499{bottom:245.746667pt;}
.y1a_c00499{bottom:267.880000pt;}
.y19_c00499{bottom:290.146667pt;}
.y18_c00499{bottom:311.480000pt;}
.y17_c00499{bottom:333.613333pt;}
.y16_c00499{bottom:354.946667pt;}
.y15_c00499{bottom:376.546667pt;}
.y14_c00499{bottom:397.880000pt;}
.y13_c00499{bottom:419.213333pt;}
.y12_c00499{bottom:440.680000pt;}
.y11_c00499{bottom:461.746667pt;}
.y10_c00499{bottom:483.613333pt;}
.yf_c00499{bottom:505.480000pt;}
.ye_c00499{bottom:526.280000pt;}
.yd_c00499{bottom:547.880000pt;}
.yc_c00499{bottom:570.280000pt;}
.yb_c00499{bottom:591.880000pt;}
.ya_c00499{bottom:613.213333pt;}
.y9_c00499{bottom:635.213333pt;}
.y8_c00499{bottom:656.413333pt;}
.y7_c00499{bottom:678.280000pt;}
.y6_c00499{bottom:699.346667pt;}
.y5_c00499{bottom:720.680000pt;}
.y4_c00499{bottom:742.280000pt;}
.y3_c00499{bottom:763.613333pt;}
.y2_c00499{bottom:785.213333pt;}
.y1_c00499{bottom:815.213333pt;}
.h7_c00499{height:11.733399pt;}
.h8_c00499{height:38.937500pt;}
.h3_c00499{height:70.664062pt;}
.h6_c00499{height:73.978667pt;}
.h4_c00499{height:74.906250pt;}
.h2_c00499{height:88.940104pt;}
.h5_c00499{height:238.164062pt;}
.h1_c00499{height:876.666667pt;}
.h0_c00499{height:876.733333pt;}
.w2_c00499{width:93.222667pt;}
.w0_c00499{width:593.266667pt;}
.w1_c00499{width:593.333333pt;}
.x0_c00499{left:0.000000pt;}
.x4_c00499{left:8.133333pt;}
.x8_c00499{left:37.600000pt;}
.xa_c00499{left:79.600000pt;}
.x1_c00499{left:88.133333pt;}
.x2_c00499{left:90.266667pt;}
.x3_c00499{left:92.000000pt;}
.x5_c00499{left:93.333333pt;}
.x6_c00499{left:94.533333pt;}
.x7_c00499{left:95.733333pt;}
.x9_c00499{left:97.600000pt;}
.xc_c00499{left:98.800000pt;}
.xd_c00499{left:99.866667pt;}
.xe_c00499{left:100.800000pt;}
.xf_c00499{left:102.266667pt;}
.x11_c00499{left:103.733333pt;}
.xb_c00499{left:120.400000pt;}
.x12_c00499{left:150.266667pt;}
.x10_c00499{left:194.000000pt;}
.x14_c00499{left:253.801554pt;}
.x13_c00499{left:491.333333pt;}
}





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

.ir_c01000:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01000{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01000;src:url('chunks/assets/font_cfd4257eac2dca7f00a2d20b.woff2')format("woff");}.ff1_c01000{font-family:ff1_c01000;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01000;src:url('chunks/assets/font_cbc5dbad2a89e7bfece2b21c.woff2')format("woff");}.ff2_c01000{font-family:ff2_c01000;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01000;src:url('chunks/assets/font_15115e78d5c7321dc37e38db.woff2')format("woff");}.ff3_c01000{font-family:ff3_c01000;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01000;src:url('chunks/assets/font_7225dbb94afaf0c9b41d5c68.woff2')format("woff");}.ff4_c01000{font-family:ff4_c01000;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01000;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff5_c01000{font-family:ff5_c01000;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01000;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c01000{font-family:ff6_c01000;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01000{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01000{vertical-align:0.000000px;}
.ls4_c01000{letter-spacing:0.000000px;}
.ls3_c01000{letter-spacing:6.000000px;}
.ls1_c01000{letter-spacing:10.142400px;}
.ls2_c01000{letter-spacing:18.120000px;}
.ls0_c01000{letter-spacing:39.156000px;}
.sc__c01000{text-shadow:none;}
.sc0_c01000{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01000{-webkit-text-stroke:0px transparent;}
.sc0_c01000{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01000{word-spacing:-6.102000px;}
.ws1_c01000{word-spacing:0.000000px;}
._1_c01000{margin-left:-26.112000px;}
._0_c01000{margin-left:-21.366000px;}
._f_c01000{margin-left:-13.530000px;}
._14_c01000{margin-left:-10.773000px;}
._18_c01000{margin-left:-9.579000px;}
._b_c01000{margin-left:-7.536000px;}
._12_c01000{margin-left:-6.510000px;}
._5_c01000{margin-left:-5.406000px;}
._9_c01000{margin-left:-3.945000px;}
._3_c01000{margin-left:-2.754000px;}
._2_c01000{margin-left:-1.326000px;}
._15_c01000{width:1.056000px;}
._6_c01000{width:2.106000px;}
._e_c01000{width:3.210000px;}
._7_c01000{width:4.212000px;}
._8_c01000{width:5.568000px;}
._d_c01000{width:6.885000px;}
._a_c01000{width:8.595000px;}
._10_c01000{width:10.515000px;}
._c_c01000{width:11.604000px;}
._17_c01000{width:13.173000px;}
._16_c01000{width:15.210000px;}
._4_c01000{width:36.618000px;}
._13_c01000{width:154.488000px;}
._11_c01000{width:260.499000px;}
._1a_c01000{width:271.917000px;}
._19_c01000{width:1280.043000px;}
.fc2_c01000{color:transparent;}
.fc1_c01000{color:rgb(128,128,128);}
.fc0_c01000{color:rgb(0,0,0);}
.fs5_c01000{font-size:48.000000px;}
.fs3_c01000{font-size:72.000000px;}
.fs2_c01000{font-size:81.000000px;}
.fs1_c01000{font-size:81.600000px;}
.fs4_c01000{font-size:93.000000px;}
.fs0_c01000{font-size:102.000000px;}
.y0_c01000{bottom:0.000000px;}
.y26_c01000{bottom:3.105000px;}
.y25_c01000{bottom:7.228371px;}
.y24_c01000{bottom:68.565000px;}
.y23_c01000{bottom:93.465000px;}
.y22_c01000{bottom:118.515000px;}
.y21_c01000{bottom:142.815000px;}
.y20_c01000{bottom:167.415000px;}
.y1f_c01000{bottom:190.815000px;}
.y1e_c01000{bottom:215.115000px;}
.y1d_c01000{bottom:239.265000px;}
.y1c_c01000{bottom:263.265000px;}
.y1b_c01000{bottom:287.265000px;}
.y1a_c01000{bottom:311.265000px;}
.y19_c01000{bottom:335.565000px;}
.y18_c01000{bottom:359.415000px;}
.y17_c01000{bottom:383.115000px;}
.y16_c01000{bottom:407.115000px;}
.y15_c01000{bottom:431.115000px;}
.y14_c01000{bottom:455.265000px;}
.y13_c01000{bottom:478.965000px;}
.y12_c01000{bottom:502.665000px;}
.y11_c01000{bottom:526.965000px;}
.y10_c01000{bottom:550.515000px;}
.yf_c01000{bottom:574.215000px;}
.ye_c01000{bottom:598.065000px;}
.yd_c01000{bottom:621.465000px;}
.yc_c01000{bottom:645.615000px;}
.yb_c01000{bottom:669.915000px;}
.ya_c01000{bottom:693.015000px;}
.y9_c01000{bottom:717.165000px;}
.y8_c01000{bottom:741.165000px;}
.y7_c01000{bottom:765.165000px;}
.y6_c01000{bottom:790.065000px;}
.y5_c01000{bottom:813.465000px;}
.y4_c01000{bottom:838.365000px;}
.y3_c01000{bottom:862.065000px;}
.y2_c01000{bottom:886.365000px;}
.y1_c01000{bottom:920.115000px;}
.h7_c01000{height:13.200074px;}
.h8_c01000{height:43.804688px;}
.h3_c01000{height:79.497070px;}
.h4_c01000{height:84.269531px;}
.h5_c01000{height:91.160156px;}
.h6_c01000{height:91.274414px;}
.h2_c01000{height:100.057617px;}
.h0_c01000{height:989.025000px;}
.h1_c01000{height:989.250000px;}
.w1_c01000{width:104.875500px;}
.w0_c01000{width:672.000000px;}
.x0_c01000{left:0.000000px;}
.x2_c01000{left:49.650000px;}
.x3_c01000{left:51.900000px;}
.x4_c01000{left:53.700000px;}
.x5_c01000{left:54.750000px;}
.x6_c01000{left:55.800000px;}
.x8_c01000{left:57.150000px;}
.x9_c01000{left:58.350000px;}
.xa_c01000{left:59.400000px;}
.xb_c01000{left:60.450000px;}
.xd_c01000{left:61.500000px;}
.xe_c01000{left:75.000000px;}
.x7_c01000{left:79.950000px;}
.xc_c01000{left:86.400000px;}
.x1_c01000{left:117.150000px;}
.xf_c01000{left:287.814240px;}
@media print{
.v0_c01000{vertical-align:0.000000pt;}
.ls4_c01000{letter-spacing:0.000000pt;}
.ls3_c01000{letter-spacing:5.333333pt;}
.ls1_c01000{letter-spacing:9.015467pt;}
.ls2_c01000{letter-spacing:16.106667pt;}
.ls0_c01000{letter-spacing:34.805333pt;}
.ws0_c01000{word-spacing:-5.424000pt;}
.ws1_c01000{word-spacing:0.000000pt;}
._1_c01000{margin-left:-23.210667pt;}
._0_c01000{margin-left:-18.992000pt;}
._f_c01000{margin-left:-12.026667pt;}
._14_c01000{margin-left:-9.576000pt;}
._18_c01000{margin-left:-8.514667pt;}
._b_c01000{margin-left:-6.698667pt;}
._12_c01000{margin-left:-5.786667pt;}
._5_c01000{margin-left:-4.805333pt;}
._9_c01000{margin-left:-3.506667pt;}
._3_c01000{margin-left:-2.448000pt;}
._2_c01000{margin-left:-1.178667pt;}
._15_c01000{width:0.938667pt;}
._6_c01000{width:1.872000pt;}
._e_c01000{width:2.853333pt;}
._7_c01000{width:3.744000pt;}
._8_c01000{width:4.949333pt;}
._d_c01000{width:6.120000pt;}
._a_c01000{width:7.640000pt;}
._10_c01000{width:9.346667pt;}
._c_c01000{width:10.314667pt;}
._17_c01000{width:11.709333pt;}
._16_c01000{width:13.520000pt;}
._4_c01000{width:32.549333pt;}
._13_c01000{width:137.322667pt;}
._11_c01000{width:231.554667pt;}
._1a_c01000{width:241.704000pt;}
._19_c01000{width:1137.816000pt;}
.fs5_c01000{font-size:42.666667pt;}
.fs3_c01000{font-size:64.000000pt;}
.fs2_c01000{font-size:72.000000pt;}
.fs1_c01000{font-size:72.533333pt;}
.fs4_c01000{font-size:82.666667pt;}
.fs0_c01000{font-size:90.666667pt;}
.y0_c01000{bottom:0.000000pt;}
.y26_c01000{bottom:2.760000pt;}
.y25_c01000{bottom:6.425219pt;}
.y24_c01000{bottom:60.946667pt;}
.y23_c01000{bottom:83.080000pt;}
.y22_c01000{bottom:105.346667pt;}
.y21_c01000{bottom:126.946667pt;}
.y20_c01000{bottom:148.813333pt;}
.y1f_c01000{bottom:169.613333pt;}
.y1e_c01000{bottom:191.213333pt;}
.y1d_c01000{bottom:212.680000pt;}
.y1c_c01000{bottom:234.013333pt;}
.y1b_c01000{bottom:255.346667pt;}
.y1a_c01000{bottom:276.680000pt;}
.y19_c01000{bottom:298.280000pt;}
.y18_c01000{bottom:319.480000pt;}
.y17_c01000{bottom:340.546667pt;}
.y16_c01000{bottom:361.880000pt;}
.y15_c01000{bottom:383.213333pt;}
.y14_c01000{bottom:404.680000pt;}
.y13_c01000{bottom:425.746667pt;}
.y12_c01000{bottom:446.813333pt;}
.y11_c01000{bottom:468.413333pt;}
.y10_c01000{bottom:489.346667pt;}
.yf_c01000{bottom:510.413333pt;}
.ye_c01000{bottom:531.613333pt;}
.yd_c01000{bottom:552.413333pt;}
.yc_c01000{bottom:573.880000pt;}
.yb_c01000{bottom:595.480000pt;}
.ya_c01000{bottom:616.013333pt;}
.y9_c01000{bottom:637.480000pt;}
.y8_c01000{bottom:658.813333pt;}
.y7_c01000{bottom:680.146667pt;}
.y6_c01000{bottom:702.280000pt;}
.y5_c01000{bottom:723.080000pt;}
.y4_c01000{bottom:745.213333pt;}
.y3_c01000{bottom:766.280000pt;}
.y2_c01000{bottom:787.880000pt;}
.y1_c01000{bottom:817.880000pt;}
.h7_c01000{height:11.733399pt;}
.h8_c01000{height:38.937500pt;}
.h3_c01000{height:70.664062pt;}
.h4_c01000{height:74.906250pt;}
.h5_c01000{height:81.031250pt;}
.h6_c01000{height:81.132812pt;}
.h2_c01000{height:88.940104pt;}
.h0_c01000{height:879.133333pt;}
.h1_c01000{height:879.333333pt;}
.w1_c01000{width:93.222667pt;}
.w0_c01000{width:597.333333pt;}
.x0_c01000{left:0.000000pt;}
.x2_c01000{left:44.133333pt;}
.x3_c01000{left:46.133333pt;}
.x4_c01000{left:47.733333pt;}
.x5_c01000{left:48.666667pt;}
.x6_c01000{left:49.600000pt;}
.x8_c01000{left:50.800000pt;}
.x9_c01000{left:51.866667pt;}
.xa_c01000{left:52.800000pt;}
.xb_c01000{left:53.733333pt;}
.xd_c01000{left:54.666667pt;}
.xe_c01000{left:66.666667pt;}
.x7_c01000{left:71.066667pt;}
.xc_c01000{left:76.800000pt;}
.x1_c01000{left:104.133333pt;}
.xf_c01000{left:255.834880pt;}
}





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

.ir_c01001:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01001{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01001;src:url('chunks/assets/font_838456a0b7d97431588064bb.woff2')format("woff");}.ff1_c01001{font-family:ff1_c01001;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01001;src:url('chunks/assets/font_0d65500788bd9e63e0da4629.woff2')format("woff");}.ff2_c01001{font-family:ff2_c01001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01001;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff3_c01001{font-family:ff3_c01001;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01001;src:url('chunks/assets/font_bd4568fbc02aaf4048ae335a.woff2')format("woff");}.ff4_c01001{font-family:ff4_c01001;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01001;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c01001{font-family:ff5_c01001;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01001{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01001{vertical-align:0.000000px;}
.ls1_c01001{letter-spacing:0.000000px;}
.ls0_c01001{letter-spacing:6.000000px;}
.sc__c01001{text-shadow:none;}
.sc0_c01001{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01001{-webkit-text-stroke:0px transparent;}
.sc0_c01001{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01001{word-spacing:-17.352000px;}
.ws2_c01001{word-spacing:0.000000px;}
.ws1_c01001{word-spacing:3.024000px;}
._19_c01001{margin-left:-23.085000px;}
._23_c01001{margin-left:-21.939000px;}
._d_c01001{margin-left:-19.773000px;}
._1e_c01001{margin-left:-17.061000px;}
._18_c01001{margin-left:-13.989000px;}
._1c_c01001{margin-left:-12.888000px;}
._1b_c01001{margin-left:-11.808000px;}
._14_c01001{margin-left:-8.910000px;}
._c_c01001{margin-left:-7.533000px;}
._0_c01001{margin-left:-5.328000px;}
._1_c01001{margin-left:-3.600000px;}
._2_c01001{margin-left:-2.160000px;}
._a_c01001{margin-left:-1.053000px;}
._5_c01001{width:1.863000px;}
._6_c01001{width:2.916000px;}
._8_c01001{width:4.536000px;}
._9_c01001{width:5.643000px;}
._b_c01001{width:6.894000px;}
._7_c01001{width:8.343000px;}
._11_c01001{width:9.639000px;}
._f_c01001{width:11.241000px;}
._15_c01001{width:12.888000px;}
._13_c01001{width:14.805000px;}
._12_c01001{width:16.272000px;}
._3_c01001{width:24.258000px;}
._22_c01001{width:33.696000px;}
._20_c01001{width:35.190000px;}
._1f_c01001{width:37.431000px;}
._4_c01001{width:41.499000px;}
._16_c01001{width:46.881000px;}
._10_c01001{width:48.087000px;}
._17_c01001{width:66.942000px;}
._1d_c01001{width:92.010000px;}
._e_c01001{width:166.428000px;}
._21_c01001{width:188.313000px;}
._25_c01001{width:199.341000px;}
._27_c01001{width:215.541000px;}
._1a_c01001{width:267.705000px;}
._24_c01001{width:330.804000px;}
._26_c01001{width:513.702000px;}
.fc2_c01001{color:transparent;}
.fc1_c01001{color:rgb(128,128,128);}
.fc0_c01001{color:rgb(0,0,0);}
.fs3_c01001{font-size:48.000000px;}
.fs2_c01001{font-size:66.000000px;}
.fs0_c01001{font-size:72.000000px;}
.fs1_c01001{font-size:81.000000px;}
.y0_c01001{bottom:0.000000px;}
.y25_c01001{bottom:3.105000px;}
.y24_c01001{bottom:7.228371px;}
.y23_c01001{bottom:63.915000px;}
.y22_c01001{bottom:84.165000px;}
.y21_c01001{bottom:109.815000px;}
.y20_c01001{bottom:133.665000px;}
.y1f_c01001{bottom:159.015000px;}
.y1e_c01001{bottom:184.365000px;}
.y1d_c01001{bottom:207.315000px;}
.y1c_c01001{bottom:232.515000px;}
.y1b_c01001{bottom:256.515000px;}
.y1a_c01001{bottom:281.265000px;}
.y19_c01001{bottom:304.815000px;}
.y18_c01001{bottom:329.415000px;}
.y17_c01001{bottom:353.415000px;}
.y16_c01001{bottom:378.765000px;}
.y15_c01001{bottom:402.765000px;}
.y14_c01001{bottom:426.915000px;}
.y13_c01001{bottom:451.215000px;}
.y12_c01001{bottom:474.615000px;}
.y11_c01001{bottom:498.615000px;}
.y10_c01001{bottom:523.815000px;}
.yf_c01001{bottom:546.465000px;}
.ye_c01001{bottom:570.165000px;}
.yd_c01001{bottom:594.465000px;}
.yc_c01001{bottom:618.765000px;}
.yb_c01001{bottom:641.265000px;}
.ya_c01001{bottom:666.915000px;}
.y9_c01001{bottom:690.915000px;}
.y8_c01001{bottom:715.215000px;}
.y7_c01001{bottom:739.215000px;}
.y6_c01001{bottom:761.865000px;}
.y5_c01001{bottom:787.065000px;}
.y4_c01001{bottom:811.065000px;}
.y3_c01001{bottom:836.715000px;}
.y2_c01001{bottom:859.365000px;}
.y1_c01001{bottom:883.365000px;}
.h5_c01001{height:13.200074px;}
.h6_c01001{height:43.804688px;}
.h3_c01001{height:79.497070px;}
.h2_c01001{height:84.269531px;}
.h4_c01001{height:91.160156px;}
.h1_c01001{height:986.250000px;}
.h0_c01001{height:986.325000px;}
.w2_c01001{width:104.875500px;}
.w0_c01001{width:667.425000px;}
.w1_c01001{width:667.500000px;}
.x0_c01001{left:0.000000px;}
.x15_c01001{left:30.450000px;}
.x12_c01001{left:31.800000px;}
.xa_c01001{left:38.700000px;}
.x7_c01001{left:40.800000px;}
.x2_c01001{left:43.200000px;}
.x1_c01001{left:45.600000px;}
.x8_c01001{left:75.300000px;}
.x13_c01001{left:96.300000px;}
.x14_c01001{left:123.600000px;}
.x11_c01001{left:125.250000px;}
.x10_c01001{left:126.900000px;}
.xe_c01001{left:128.250000px;}
.xd_c01001{left:129.300000px;}
.xc_c01001{left:130.650000px;}
.xb_c01001{left:132.000000px;}
.x9_c01001{left:133.650000px;}
.x6_c01001{left:134.700000px;}
.x5_c01001{left:136.050000px;}
.x4_c01001{left:137.250000px;}
.x3_c01001{left:138.300000px;}
.x16_c01001{left:143.400000px;}
.xf_c01001{left:151.650000px;}
.x17_c01001{left:285.526749px;}
@media print{
.v0_c01001{vertical-align:0.000000pt;}
.ls1_c01001{letter-spacing:0.000000pt;}
.ls0_c01001{letter-spacing:5.333333pt;}
.ws0_c01001{word-spacing:-15.424000pt;}
.ws2_c01001{word-spacing:0.000000pt;}
.ws1_c01001{word-spacing:2.688000pt;}
._19_c01001{margin-left:-20.520000pt;}
._23_c01001{margin-left:-19.501333pt;}
._d_c01001{margin-left:-17.576000pt;}
._1e_c01001{margin-left:-15.165333pt;}
._18_c01001{margin-left:-12.434667pt;}
._1c_c01001{margin-left:-11.456000pt;}
._1b_c01001{margin-left:-10.496000pt;}
._14_c01001{margin-left:-7.920000pt;}
._c_c01001{margin-left:-6.696000pt;}
._0_c01001{margin-left:-4.736000pt;}
._1_c01001{margin-left:-3.200000pt;}
._2_c01001{margin-left:-1.920000pt;}
._a_c01001{margin-left:-0.936000pt;}
._5_c01001{width:1.656000pt;}
._6_c01001{width:2.592000pt;}
._8_c01001{width:4.032000pt;}
._9_c01001{width:5.016000pt;}
._b_c01001{width:6.128000pt;}
._7_c01001{width:7.416000pt;}
._11_c01001{width:8.568000pt;}
._f_c01001{width:9.992000pt;}
._15_c01001{width:11.456000pt;}
._13_c01001{width:13.160000pt;}
._12_c01001{width:14.464000pt;}
._3_c01001{width:21.562667pt;}
._22_c01001{width:29.952000pt;}
._20_c01001{width:31.280000pt;}
._1f_c01001{width:33.272000pt;}
._4_c01001{width:36.888000pt;}
._16_c01001{width:41.672000pt;}
._10_c01001{width:42.744000pt;}
._17_c01001{width:59.504000pt;}
._1d_c01001{width:81.786667pt;}
._e_c01001{width:147.936000pt;}
._21_c01001{width:167.389333pt;}
._25_c01001{width:177.192000pt;}
._27_c01001{width:191.592000pt;}
._1a_c01001{width:237.960000pt;}
._24_c01001{width:294.048000pt;}
._26_c01001{width:456.624000pt;}
.fs3_c01001{font-size:42.666667pt;}
.fs2_c01001{font-size:58.666667pt;}
.fs0_c01001{font-size:64.000000pt;}
.fs1_c01001{font-size:72.000000pt;}
.y0_c01001{bottom:0.000000pt;}
.y25_c01001{bottom:2.760000pt;}
.y24_c01001{bottom:6.425219pt;}
.y23_c01001{bottom:56.813333pt;}
.y22_c01001{bottom:74.813333pt;}
.y21_c01001{bottom:97.613333pt;}
.y20_c01001{bottom:118.813333pt;}
.y1f_c01001{bottom:141.346667pt;}
.y1e_c01001{bottom:163.880000pt;}
.y1d_c01001{bottom:184.280000pt;}
.y1c_c01001{bottom:206.680000pt;}
.y1b_c01001{bottom:228.013333pt;}
.y1a_c01001{bottom:250.013333pt;}
.y19_c01001{bottom:270.946667pt;}
.y18_c01001{bottom:292.813333pt;}
.y17_c01001{bottom:314.146667pt;}
.y16_c01001{bottom:336.680000pt;}
.y15_c01001{bottom:358.013333pt;}
.y14_c01001{bottom:379.480000pt;}
.y13_c01001{bottom:401.080000pt;}
.y12_c01001{bottom:421.880000pt;}
.y11_c01001{bottom:443.213333pt;}
.y10_c01001{bottom:465.613333pt;}
.yf_c01001{bottom:485.746667pt;}
.ye_c01001{bottom:506.813333pt;}
.yd_c01001{bottom:528.413333pt;}
.yc_c01001{bottom:550.013333pt;}
.yb_c01001{bottom:570.013333pt;}
.ya_c01001{bottom:592.813333pt;}
.y9_c01001{bottom:614.146667pt;}
.y8_c01001{bottom:635.746667pt;}
.y7_c01001{bottom:657.080000pt;}
.y6_c01001{bottom:677.213333pt;}
.y5_c01001{bottom:699.613333pt;}
.y4_c01001{bottom:720.946667pt;}
.y3_c01001{bottom:743.746667pt;}
.y2_c01001{bottom:763.880000pt;}
.y1_c01001{bottom:785.213333pt;}
.h5_c01001{height:11.733399pt;}
.h6_c01001{height:38.937500pt;}
.h3_c01001{height:70.664062pt;}
.h2_c01001{height:74.906250pt;}
.h4_c01001{height:81.031250pt;}
.h1_c01001{height:876.666667pt;}
.h0_c01001{height:876.733333pt;}
.w2_c01001{width:93.222667pt;}
.w0_c01001{width:593.266667pt;}
.w1_c01001{width:593.333333pt;}
.x0_c01001{left:0.000000pt;}
.x15_c01001{left:27.066667pt;}
.x12_c01001{left:28.266667pt;}
.xa_c01001{left:34.400000pt;}
.x7_c01001{left:36.266667pt;}
.x2_c01001{left:38.400000pt;}
.x1_c01001{left:40.533333pt;}
.x8_c01001{left:66.933333pt;}
.x13_c01001{left:85.600000pt;}
.x14_c01001{left:109.866667pt;}
.x11_c01001{left:111.333333pt;}
.x10_c01001{left:112.800000pt;}
.xe_c01001{left:114.000000pt;}
.xd_c01001{left:114.933333pt;}
.xc_c01001{left:116.133333pt;}
.xb_c01001{left:117.333333pt;}
.x9_c01001{left:118.800000pt;}
.x6_c01001{left:119.733333pt;}
.x5_c01001{left:120.933333pt;}
.x4_c01001{left:122.000000pt;}
.x3_c01001{left:122.933333pt;}
.x16_c01001{left:127.466667pt;}
.xf_c01001{left:134.800000pt;}
.x17_c01001{left:253.801554pt;}
}





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

.ir_c01002:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01002{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01002;src:url('chunks/assets/font_a3ad37e82b1cbcb585579071.woff2')format("woff");}.ff1_c01002{font-family:ff1_c01002;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01002;src:url('chunks/assets/font_717ad60eb78bf353eb53198b.woff2')format("woff");}.ff2_c01002{font-family:ff2_c01002;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01002;src:url('chunks/assets/font_288dab6424b402ac91f04f89.woff2')format("woff");}.ff3_c01002{font-family:ff3_c01002;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01002;src:url('chunks/assets/font_dd5abba7ce65eeb0c522c75e.woff2')format("woff");}.ff4_c01002{font-family:ff4_c01002;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01002;src:url('chunks/assets/font_954346f2ab155a0f31d2b08f.woff2')format("woff");}.ff5_c01002{font-family:ff5_c01002;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01002;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c01002{font-family:ff6_c01002;line-height:1.219238;font-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_c01002{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m0_c01002{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01002{vertical-align:0.000000px;}
.v1_c01002{vertical-align:146.400000px;}
.ls3_c01002{letter-spacing:0.000000px;}
.ls2_c01002{letter-spacing:4.032000px;}
.ls0_c01002{letter-spacing:12.597000px;}
.ls1_c01002{letter-spacing:33.750000px;}
.sc__c01002{text-shadow:none;}
.sc0_c01002{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01002{-webkit-text-stroke:0px transparent;}
.sc0_c01002{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01002{word-spacing:-59.184000px;}
.ws1_c01002{word-spacing:0.000000px;}
._15_c01002{margin-left:-30.213000px;}
._10_c01002{margin-left:-13.041000px;}
._f_c01002{margin-left:-11.259000px;}
._d_c01002{margin-left:-9.396000px;}
._11_c01002{margin-left:-7.695000px;}
._4_c01002{margin-left:-5.508000px;}
._5_c01002{margin-left:-3.807000px;}
._c_c01002{margin-left:-2.511000px;}
._6_c01002{margin-left:-1.458000px;}
._3_c01002{width:1.458000px;}
._7_c01002{width:2.916000px;}
._8_c01002{width:4.374000px;}
._2_c01002{width:5.589000px;}
._9_c01002{width:6.642000px;}
._1_c01002{width:7.857000px;}
._0_c01002{width:8.991000px;}
._13_c01002{width:10.125000px;}
._b_c01002{width:11.340000px;}
._e_c01002{width:12.960000px;}
._a_c01002{width:14.742000px;}
._19_c01002{width:15.855000px;}
._12_c01002{width:16.929000px;}
._17_c01002{width:21.951000px;}
._16_c01002{width:27.459000px;}
._14_c01002{width:33.348000px;}
._1a_c01002{width:36.018000px;}
._18_c01002{width:57.915000px;}
._1b_c01002{width:406.539000px;}
.fc2_c01002{color:transparent;}
.fc1_c01002{color:rgb(128,128,128);}
.fc0_c01002{color:rgb(0,0,0);}
.fs6_c01002{font-size:48.000000px;}
.fs1_c01002{font-size:72.000000px;}
.fs2_c01002{font-size:75.000000px;}
.fs4_c01002{font-size:78.000000px;}
.fs0_c01002{font-size:81.000000px;}
.fs5_c01002{font-size:108.000000px;}
.fs3_c01002{font-size:273.000000px;}
.y0_c01002{bottom:0.000000px;}
.y25_c01002{bottom:3.105000px;}
.y24_c01002{bottom:7.228363px;}
.y23_c01002{bottom:73.200000px;}
.y22_c01002{bottom:99.600000px;}
.y21_c01002{bottom:124.500000px;}
.y20_c01002{bottom:148.500000px;}
.y1f_c01002{bottom:173.550000px;}
.y1e_c01002{bottom:197.400000px;}
.y1d_c01002{bottom:221.700000px;}
.y1c_c01002{bottom:245.700000px;}
.y1b_c01002{bottom:270.300000px;}
.y1a_c01002{bottom:294.300000px;}
.y19_c01002{bottom:318.600000px;}
.y18_c01002{bottom:342.600000px;}
.y17_c01002{bottom:366.750000px;}
.y16_c01002{bottom:391.050000px;}
.y15_c01002{bottom:415.050000px;}
.y14_c01002{bottom:439.350000px;}
.y13_c01002{bottom:463.350000px;}
.y12_c01002{bottom:487.650000px;}
.y11_c01002{bottom:511.350000px;}
.y10_c01002{bottom:535.200000px;}
.ye_c01002{bottom:545.550000px;}
.yf_c01002{bottom:558.900000px;}
.yd_c01002{bottom:606.450000px;}
.yc_c01002{bottom:628.350000px;}
.yb_c01002{bottom:652.950000px;}
.ya_c01002{bottom:677.400000px;}
.y9_c01002{bottom:701.250000px;}
.y8_c01002{bottom:724.650000px;}
.y7_c01002{bottom:748.950000px;}
.y6_c01002{bottom:772.950000px;}
.y5_c01002{bottom:797.250000px;}
.y4_c01002{bottom:820.800000px;}
.y3_c01002{bottom:845.400000px;}
.y2_c01002{bottom:868.800000px;}
.y1_c01002{bottom:894.000000px;}
.h8_c01002{height:13.200074px;}
.h9_c01002{height:43.804688px;}
.h3_c01002{height:73.571777px;}
.h2_c01002{height:79.497070px;}
.h5_c01002{height:91.160156px;}
.h6_c01002{height:98.756836px;}
.h7_c01002{height:108.843750px;}
.h4_c01002{height:267.801270px;}
.h1_c01002{height:982.500000px;}
.h0_c01002{height:982.800000px;}
.w2_c01002{width:104.875500px;}
.w0_c01002{width:667.425000px;}
.w1_c01002{width:667.500000px;}
.x0_c01002{left:0.000000px;}
.x8_c01002{left:51.750000px;}
.x4_c01002{left:54.750000px;}
.xd_c01002{left:58.050000px;}
.xc_c01002{left:60.000000px;}
.xb_c01002{left:61.050000px;}
.xa_c01002{left:62.100000px;}
.x9_c01002{left:63.450000px;}
.x7_c01002{left:64.800000px;}
.x1_c01002{left:67.200000px;}
.x2_c01002{left:69.150000px;}
.x6_c01002{left:99.600000px;}
.x5_c01002{left:106.950000px;}
.x3_c01002{left:154.350000px;}
.xf_c01002{left:285.526749px;}
.xe_c01002{left:374.550000px;}
@media print{
.v0_c01002{vertical-align:0.000000pt;}
.v1_c01002{vertical-align:130.133333pt;}
.ls3_c01002{letter-spacing:0.000000pt;}
.ls2_c01002{letter-spacing:3.584000pt;}
.ls0_c01002{letter-spacing:11.197333pt;}
.ls1_c01002{letter-spacing:30.000000pt;}
.ws0_c01002{word-spacing:-52.608000pt;}
.ws1_c01002{word-spacing:0.000000pt;}
._15_c01002{margin-left:-26.856000pt;}
._10_c01002{margin-left:-11.592000pt;}
._f_c01002{margin-left:-10.008000pt;}
._d_c01002{margin-left:-8.352000pt;}
._11_c01002{margin-left:-6.840000pt;}
._4_c01002{margin-left:-4.896000pt;}
._5_c01002{margin-left:-3.384000pt;}
._c_c01002{margin-left:-2.232000pt;}
._6_c01002{margin-left:-1.296000pt;}
._3_c01002{width:1.296000pt;}
._7_c01002{width:2.592000pt;}
._8_c01002{width:3.888000pt;}
._2_c01002{width:4.968000pt;}
._9_c01002{width:5.904000pt;}
._1_c01002{width:6.984000pt;}
._0_c01002{width:7.992000pt;}
._13_c01002{width:9.000000pt;}
._b_c01002{width:10.080000pt;}
._e_c01002{width:11.520000pt;}
._a_c01002{width:13.104000pt;}
._19_c01002{width:14.093333pt;}
._12_c01002{width:15.048000pt;}
._17_c01002{width:19.512000pt;}
._16_c01002{width:24.408000pt;}
._14_c01002{width:29.642667pt;}
._1a_c01002{width:32.016000pt;}
._18_c01002{width:51.480000pt;}
._1b_c01002{width:361.368000pt;}
.fs6_c01002{font-size:42.666667pt;}
.fs1_c01002{font-size:64.000000pt;}
.fs2_c01002{font-size:66.666667pt;}
.fs4_c01002{font-size:69.333333pt;}
.fs0_c01002{font-size:72.000000pt;}
.fs5_c01002{font-size:96.000000pt;}
.fs3_c01002{font-size:242.666667pt;}
.y0_c01002{bottom:0.000000pt;}
.y25_c01002{bottom:2.760000pt;}
.y24_c01002{bottom:6.425212pt;}
.y23_c01002{bottom:65.066667pt;}
.y22_c01002{bottom:88.533333pt;}
.y21_c01002{bottom:110.666667pt;}
.y20_c01002{bottom:132.000000pt;}
.y1f_c01002{bottom:154.266667pt;}
.y1e_c01002{bottom:175.466667pt;}
.y1d_c01002{bottom:197.066667pt;}
.y1c_c01002{bottom:218.400000pt;}
.y1b_c01002{bottom:240.266667pt;}
.y1a_c01002{bottom:261.600000pt;}
.y19_c01002{bottom:283.200000pt;}
.y18_c01002{bottom:304.533333pt;}
.y17_c01002{bottom:326.000000pt;}
.y16_c01002{bottom:347.600000pt;}
.y15_c01002{bottom:368.933333pt;}
.y14_c01002{bottom:390.533333pt;}
.y13_c01002{bottom:411.866667pt;}
.y12_c01002{bottom:433.466667pt;}
.y11_c01002{bottom:454.533333pt;}
.y10_c01002{bottom:475.733333pt;}
.ye_c01002{bottom:484.933333pt;}
.yf_c01002{bottom:496.800000pt;}
.yd_c01002{bottom:539.066667pt;}
.yc_c01002{bottom:558.533333pt;}
.yb_c01002{bottom:580.400000pt;}
.ya_c01002{bottom:602.133333pt;}
.y9_c01002{bottom:623.333333pt;}
.y8_c01002{bottom:644.133333pt;}
.y7_c01002{bottom:665.733333pt;}
.y6_c01002{bottom:687.066667pt;}
.y5_c01002{bottom:708.666667pt;}
.y4_c01002{bottom:729.600000pt;}
.y3_c01002{bottom:751.466667pt;}
.y2_c01002{bottom:772.266667pt;}
.y1_c01002{bottom:794.666667pt;}
.h8_c01002{height:11.733399pt;}
.h9_c01002{height:38.937500pt;}
.h3_c01002{height:65.397135pt;}
.h2_c01002{height:70.664062pt;}
.h5_c01002{height:81.031250pt;}
.h6_c01002{height:87.783854pt;}
.h7_c01002{height:96.750000pt;}
.h4_c01002{height:238.045573pt;}
.h1_c01002{height:873.333333pt;}
.h0_c01002{height:873.600000pt;}
.w2_c01002{width:93.222667pt;}
.w0_c01002{width:593.266667pt;}
.w1_c01002{width:593.333333pt;}
.x0_c01002{left:0.000000pt;}
.x8_c01002{left:46.000000pt;}
.x4_c01002{left:48.666667pt;}
.xd_c01002{left:51.600000pt;}
.xc_c01002{left:53.333333pt;}
.xb_c01002{left:54.266667pt;}
.xa_c01002{left:55.200000pt;}
.x9_c01002{left:56.400000pt;}
.x7_c01002{left:57.600000pt;}
.x1_c01002{left:59.733333pt;}
.x2_c01002{left:61.466667pt;}
.x6_c01002{left:88.533333pt;}
.x5_c01002{left:95.066667pt;}
.x3_c01002{left:137.200000pt;}
.xf_c01002{left:253.801554pt;}
.xe_c01002{left:332.933333pt;}
}





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

.ir_c01003:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01003{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01003;src:url('chunks/assets/font_bb9b0a3973d7adaf866d65fe.woff2')format("woff");}.ff1_c01003{font-family:ff1_c01003;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01003;src:url('chunks/assets/font_413d2071e1ecaeeef264c9e0.woff2')format("woff");}.ff2_c01003{font-family:ff2_c01003;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01003;src:url('chunks/assets/font_60f542f20085a8b50f4dc231.woff2')format("woff");}.ff3_c01003{font-family:ff3_c01003;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01003;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff4_c01003{font-family:ff4_c01003;line-height:1.219238;font-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_c01003{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m0_c01003{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01003{vertical-align:0.000000px;}
.ls1_c01003{letter-spacing:-6.000000px;}
.ls0_c01003{letter-spacing:0.000000px;}
.sc__c01003{text-shadow:none;}
.sc0_c01003{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01003{-webkit-text-stroke:0px transparent;}
.sc0_c01003{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01003{word-spacing:-80.310000px;}
.ws1_c01003{word-spacing:-20.250000px;}
.ws2_c01003{word-spacing:0.000000px;}
._23_c01003{margin-left:-26.670000px;}
._13_c01003{margin-left:-22.113000px;}
._14_c01003{margin-left:-20.817000px;}
._22_c01003{margin-left:-17.208000px;}
._21_c01003{margin-left:-15.552000px;}
._11_c01003{margin-left:-14.337000px;}
._18_c01003{margin-left:-13.203000px;}
._1b_c01003{margin-left:-11.826000px;}
._17_c01003{margin-left:-9.801000px;}
._1c_c01003{margin-left:-8.100000px;}
._16_c01003{margin-left:-6.399000px;}
._6_c01003{margin-left:-5.265000px;}
._4_c01003{margin-left:-3.483000px;}
._9_c01003{margin-left:-2.349000px;}
._1_c01003{margin-left:-1.296000px;}
._2_c01003{width:1.782000px;}
._3_c01003{width:2.835000px;}
._0_c01003{width:3.888000px;}
._7_c01003{width:5.022000px;}
._8_c01003{width:6.156000px;}
._5_c01003{width:7.209000px;}
._b_c01003{width:8.748000px;}
._a_c01003{width:10.206000px;}
._10_c01003{width:11.340000px;}
._f_c01003{width:12.474000px;}
._c_c01003{width:14.094000px;}
._1a_c01003{width:15.147000px;}
._d_c01003{width:16.362000px;}
._e_c01003{width:17.658000px;}
._20_c01003{width:236.844000px;}
._1f_c01003{width:312.174000px;}
._19_c01003{width:363.528000px;}
._1e_c01003{width:374.787000px;}
._12_c01003{width:395.523000px;}
._15_c01003{width:405.405000px;}
._1d_c01003{width:419.256000px;}
.fc2_c01003{color:transparent;}
.fc1_c01003{color:rgb(128,128,128);}
.fc0_c01003{color:rgb(0,0,0);}
.fs3_c01003{font-size:48.000000px;}
.fs0_c01003{font-size:81.000000px;}
.fs1_c01003{font-size:105.000000px;}
.fs2_c01003{font-size:108.000000px;}
.y0_c01003{bottom:0.000000px;}
.y25_c01003{bottom:3.105000px;}
.y24_c01003{bottom:7.228371px;}
.y23_c01003{bottom:78.615000px;}
.y22_c01003{bottom:100.665000px;}
.y21_c01003{bottom:126.615000px;}
.y20_c01003{bottom:151.215000px;}
.y1f_c01003{bottom:175.515000px;}
.y1e_c01003{bottom:199.815000px;}
.y1d_c01003{bottom:224.415000px;}
.y1c_c01003{bottom:249.165000px;}
.y1b_c01003{bottom:273.165000px;}
.y1a_c01003{bottom:298.365000px;}
.y19_c01003{bottom:322.065000px;}
.y18_c01003{bottom:346.665000px;}
.y17_c01003{bottom:370.965000px;}
.y16_c01003{bottom:395.265000px;}
.y15_c01003{bottom:419.865000px;}
.y14_c01003{bottom:443.865000px;}
.y13_c01003{bottom:467.415000px;}
.y12_c01003{bottom:490.815000px;}
.y11_c01003{bottom:514.665000px;}
.y10_c01003{bottom:538.365000px;}
.yf_c01003{bottom:562.665000px;}
.ye_c01003{bottom:585.915000px;}
.yd_c01003{bottom:610.665000px;}
.yc_c01003{bottom:634.965000px;}
.yb_c01003{bottom:659.115000px;}
.ya_c01003{bottom:682.815000px;}
.y9_c01003{bottom:706.815000px;}
.y8_c01003{bottom:731.415000px;}
.y7_c01003{bottom:754.965000px;}
.y6_c01003{bottom:778.965000px;}
.y5_c01003{bottom:802.665000px;}
.y4_c01003{bottom:826.665000px;}
.y3_c01003{bottom:850.515000px;}
.y2_c01003{bottom:874.515000px;}
.y1_c01003{bottom:898.515000px;}
.h5_c01003{height:13.200074px;}
.h6_c01003{height:43.804688px;}
.h2_c01003{height:79.497070px;}
.h4_c01003{height:108.843750px;}
.h3_c01003{height:122.893066px;}
.h1_c01003{height:986.250000px;}
.h0_c01003{height:986.325000px;}
.w2_c01003{width:104.875500px;}
.w0_c01003{width:667.425000px;}
.w1_c01003{width:667.500000px;}
.x0_c01003{left:0.000000px;}
.x3_c01003{left:12.450000px;}
.x4_c01003{left:13.800000px;}
.x9_c01003{left:26.100000px;}
.xa_c01003{left:34.800000px;}
.x10_c01003{left:38.850000px;}
.xb_c01003{left:61.200000px;}
.x1_c01003{left:119.400000px;}
.x2_c01003{left:121.200000px;}
.x5_c01003{left:122.850000px;}
.x6_c01003{left:124.500000px;}
.x7_c01003{left:126.300000px;}
.xc_c01003{left:127.950000px;}
.xd_c01003{left:129.000000px;}
.xe_c01003{left:130.050000px;}
.x8_c01003{left:151.650000px;}
.xf_c01003{left:188.100000px;}
.x12_c01003{left:285.526749px;}
.x11_c01003{left:595.650000px;}
@media print{
.v0_c01003{vertical-align:0.000000pt;}
.ls1_c01003{letter-spacing:-5.333333pt;}
.ls0_c01003{letter-spacing:0.000000pt;}
.ws0_c01003{word-spacing:-71.386667pt;}
.ws1_c01003{word-spacing:-18.000000pt;}
.ws2_c01003{word-spacing:0.000000pt;}
._23_c01003{margin-left:-23.706667pt;}
._13_c01003{margin-left:-19.656000pt;}
._14_c01003{margin-left:-18.504000pt;}
._22_c01003{margin-left:-15.296000pt;}
._21_c01003{margin-left:-13.824000pt;}
._11_c01003{margin-left:-12.744000pt;}
._18_c01003{margin-left:-11.736000pt;}
._1b_c01003{margin-left:-10.512000pt;}
._17_c01003{margin-left:-8.712000pt;}
._1c_c01003{margin-left:-7.200000pt;}
._16_c01003{margin-left:-5.688000pt;}
._6_c01003{margin-left:-4.680000pt;}
._4_c01003{margin-left:-3.096000pt;}
._9_c01003{margin-left:-2.088000pt;}
._1_c01003{margin-left:-1.152000pt;}
._2_c01003{width:1.584000pt;}
._3_c01003{width:2.520000pt;}
._0_c01003{width:3.456000pt;}
._7_c01003{width:4.464000pt;}
._8_c01003{width:5.472000pt;}
._5_c01003{width:6.408000pt;}
._b_c01003{width:7.776000pt;}
._a_c01003{width:9.072000pt;}
._10_c01003{width:10.080000pt;}
._f_c01003{width:11.088000pt;}
._c_c01003{width:12.528000pt;}
._1a_c01003{width:13.464000pt;}
._d_c01003{width:14.544000pt;}
._e_c01003{width:15.696000pt;}
._20_c01003{width:210.528000pt;}
._1f_c01003{width:277.488000pt;}
._19_c01003{width:323.136000pt;}
._1e_c01003{width:333.144000pt;}
._12_c01003{width:351.576000pt;}
._15_c01003{width:360.360000pt;}
._1d_c01003{width:372.672000pt;}
.fs3_c01003{font-size:42.666667pt;}
.fs0_c01003{font-size:72.000000pt;}
.fs1_c01003{font-size:93.333333pt;}
.fs2_c01003{font-size:96.000000pt;}
.y0_c01003{bottom:0.000000pt;}
.y25_c01003{bottom:2.760000pt;}
.y24_c01003{bottom:6.425219pt;}
.y23_c01003{bottom:69.880000pt;}
.y22_c01003{bottom:89.480000pt;}
.y21_c01003{bottom:112.546667pt;}
.y20_c01003{bottom:134.413333pt;}
.y1f_c01003{bottom:156.013333pt;}
.y1e_c01003{bottom:177.613333pt;}
.y1d_c01003{bottom:199.480000pt;}
.y1c_c01003{bottom:221.480000pt;}
.y1b_c01003{bottom:242.813333pt;}
.y1a_c01003{bottom:265.213333pt;}
.y19_c01003{bottom:286.280000pt;}
.y18_c01003{bottom:308.146667pt;}
.y17_c01003{bottom:329.746667pt;}
.y16_c01003{bottom:351.346667pt;}
.y15_c01003{bottom:373.213333pt;}
.y14_c01003{bottom:394.546667pt;}
.y13_c01003{bottom:415.480000pt;}
.y12_c01003{bottom:436.280000pt;}
.y11_c01003{bottom:457.480000pt;}
.y10_c01003{bottom:478.546667pt;}
.yf_c01003{bottom:500.146667pt;}
.ye_c01003{bottom:520.813333pt;}
.yd_c01003{bottom:542.813333pt;}
.yc_c01003{bottom:564.413333pt;}
.yb_c01003{bottom:585.880000pt;}
.ya_c01003{bottom:606.946667pt;}
.y9_c01003{bottom:628.280000pt;}
.y8_c01003{bottom:650.146667pt;}
.y7_c01003{bottom:671.080000pt;}
.y6_c01003{bottom:692.413333pt;}
.y5_c01003{bottom:713.480000pt;}
.y4_c01003{bottom:734.813333pt;}
.y3_c01003{bottom:756.013333pt;}
.y2_c01003{bottom:777.346667pt;}
.y1_c01003{bottom:798.680000pt;}
.h5_c01003{height:11.733399pt;}
.h6_c01003{height:38.937500pt;}
.h2_c01003{height:70.664062pt;}
.h4_c01003{height:96.750000pt;}
.h3_c01003{height:109.238281pt;}
.h1_c01003{height:876.666667pt;}
.h0_c01003{height:876.733333pt;}
.w2_c01003{width:93.222667pt;}
.w0_c01003{width:593.266667pt;}
.w1_c01003{width:593.333333pt;}
.x0_c01003{left:0.000000pt;}
.x3_c01003{left:11.066667pt;}
.x4_c01003{left:12.266667pt;}
.x9_c01003{left:23.200000pt;}
.xa_c01003{left:30.933333pt;}
.x10_c01003{left:34.533333pt;}
.xb_c01003{left:54.400000pt;}
.x1_c01003{left:106.133333pt;}
.x2_c01003{left:107.733333pt;}
.x5_c01003{left:109.200000pt;}
.x6_c01003{left:110.666667pt;}
.x7_c01003{left:112.266667pt;}
.xc_c01003{left:113.733333pt;}
.xd_c01003{left:114.666667pt;}
.xe_c01003{left:115.600000pt;}
.x8_c01003{left:134.800000pt;}
.xf_c01003{left:167.200000pt;}
.x12_c01003{left:253.801554pt;}
.x11_c01003{left:529.466667pt;}
}





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

.ir_c01004:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01004{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01004;src:url('chunks/assets/font_da6935e1727aa71d76da9488.woff2')format("woff");}.ff1_c01004{font-family:ff1_c01004;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01004;src:url('chunks/assets/font_2f9ad89d610e6dfa27722d35.woff2')format("woff");}.ff2_c01004{font-family:ff2_c01004;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01004;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff3_c01004{font-family:ff3_c01004;line-height:1.219238;font-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_c01004{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m0_c01004{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01004{vertical-align:0.000000px;}
.ls0_c01004{letter-spacing:0.000000px;}
.ls1_c01004{letter-spacing:3.000000px;}
.sc__c01004{text-shadow:none;}
.sc0_c01004{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01004{-webkit-text-stroke:0px transparent;}
.sc0_c01004{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01004{word-spacing:0.000000px;}
._14_c01004{margin-left:-16.767000px;}
._f_c01004{margin-left:-12.960000px;}
._e_c01004{margin-left:-11.340000px;}
._9_c01004{margin-left:-9.477000px;}
._15_c01004{margin-left:-7.695000px;}
._b_c01004{margin-left:-6.399000px;}
._6_c01004{margin-left:-5.022000px;}
._7_c01004{margin-left:-3.969000px;}
._d_c01004{margin-left:-2.835000px;}
._2_c01004{margin-left:-1.377000px;}
._3_c01004{width:1.215000px;}
._0_c01004{width:2.673000px;}
._1_c01004{width:4.455000px;}
._4_c01004{width:5.751000px;}
._a_c01004{width:6.804000px;}
._5_c01004{width:7.857000px;}
._10_c01004{width:9.801000px;}
._13_c01004{width:10.854000px;}
._8_c01004{width:12.636000px;}
._12_c01004{width:14.418000px;}
._11_c01004{width:15.714000px;}
._1a_c01004{width:18.003000px;}
._17_c01004{width:22.032000px;}
._18_c01004{width:26.616000px;}
._16_c01004{width:29.631000px;}
._c_c01004{width:48.681000px;}
._19_c01004{width:307.944000px;}
.fc2_c01004{color:transparent;}
.fc1_c01004{color:rgb(128,128,128);}
.fc0_c01004{color:rgb(0,0,0);}
.fs3_c01004{font-size:48.000000px;}
.fs2_c01004{font-size:51.000000px;}
.fs0_c01004{font-size:81.000000px;}
.fs1_c01004{font-size:108.000000px;}
.y0_c01004{bottom:0.000000px;}
.y25_c01004{bottom:3.105000px;}
.y24_c01004{bottom:7.228371px;}
.y23_c01004{bottom:75.615000px;}
.y22_c01004{bottom:102.315000px;}
.y21_c01004{bottom:127.365000px;}
.y20_c01004{bottom:151.665000px;}
.y1f_c01004{bottom:176.265000px;}
.y1e_c01004{bottom:200.565000px;}
.y1d_c01004{bottom:225.165000px;}
.y1c_c01004{bottom:248.865000px;}
.y1b_c01004{bottom:273.465000px;}
.y1a_c01004{bottom:297.765000px;}
.y19_c01004{bottom:321.615000px;}
.y18_c01004{bottom:346.065000px;}
.y17_c01004{bottom:370.215000px;}
.y16_c01004{bottom:393.915000px;}
.y15_c01004{bottom:417.915000px;}
.y14_c01004{bottom:442.215000px;}
.y13_c01004{bottom:465.765000px;}
.y12_c01004{bottom:489.465000px;}
.y11_c01004{bottom:513.465000px;}
.y10_c01004{bottom:537.615000px;}
.yf_c01004{bottom:561.315000px;}
.ye_c01004{bottom:584.865000px;}
.yd_c01004{bottom:607.965000px;}
.yc_c01004{bottom:631.815000px;}
.yb_c01004{bottom:655.515000px;}
.ya_c01004{bottom:679.065000px;}
.y9_c01004{bottom:703.365000px;}
.y8_c01004{bottom:726.765000px;}
.y7_c01004{bottom:750.915000px;}
.y6_c01004{bottom:774.615000px;}
.y5_c01004{bottom:799.215000px;}
.y4_c01004{bottom:822.615000px;}
.y3_c01004{bottom:846.165000px;}
.y2_c01004{bottom:870.165000px;}
.y1_c01004{bottom:893.715000px;}
.h5_c01004{height:13.200074px;}
.h6_c01004{height:43.804688px;}
.h4_c01004{height:51.398438px;}
.h2_c01004{height:79.497070px;}
.h3_c01004{height:108.843750px;}
.h0_c01004{height:989.025000px;}
.h1_c01004{height:989.250000px;}
.w1_c01004{width:104.875500px;}
.w0_c01004{width:672.000000px;}
.x0_c01004{left:0.000000px;}
.x4_c01004{left:26.400000px;}
.x8_c01004{left:32.700000px;}
.x5_c01004{left:43.650000px;}
.x6_c01004{left:45.000000px;}
.x1_c01004{left:46.200000px;}
.x2_c01004{left:48.300000px;}
.x7_c01004{left:51.000000px;}
.x9_c01004{left:52.200000px;}
.xa_c01004{left:53.250000px;}
.xb_c01004{left:54.300000px;}
.x3_c01004{left:73.200000px;}
.xc_c01004{left:107.550000px;}
.xd_c01004{left:156.900000px;}
.xf_c01004{left:287.814240px;}
.xe_c01004{left:374.400000px;}
@media print{
.v0_c01004{vertical-align:0.000000pt;}
.ls0_c01004{letter-spacing:0.000000pt;}
.ls1_c01004{letter-spacing:2.666667pt;}
.ws0_c01004{word-spacing:0.000000pt;}
._14_c01004{margin-left:-14.904000pt;}
._f_c01004{margin-left:-11.520000pt;}
._e_c01004{margin-left:-10.080000pt;}
._9_c01004{margin-left:-8.424000pt;}
._15_c01004{margin-left:-6.840000pt;}
._b_c01004{margin-left:-5.688000pt;}
._6_c01004{margin-left:-4.464000pt;}
._7_c01004{margin-left:-3.528000pt;}
._d_c01004{margin-left:-2.520000pt;}
._2_c01004{margin-left:-1.224000pt;}
._3_c01004{width:1.080000pt;}
._0_c01004{width:2.376000pt;}
._1_c01004{width:3.960000pt;}
._4_c01004{width:5.112000pt;}
._a_c01004{width:6.048000pt;}
._5_c01004{width:6.984000pt;}
._10_c01004{width:8.712000pt;}
._13_c01004{width:9.648000pt;}
._8_c01004{width:11.232000pt;}
._12_c01004{width:12.816000pt;}
._11_c01004{width:13.968000pt;}
._1a_c01004{width:16.002667pt;}
._17_c01004{width:19.584000pt;}
._18_c01004{width:23.658667pt;}
._16_c01004{width:26.338667pt;}
._c_c01004{width:43.272000pt;}
._19_c01004{width:273.728000pt;}
.fs3_c01004{font-size:42.666667pt;}
.fs2_c01004{font-size:45.333333pt;}
.fs0_c01004{font-size:72.000000pt;}
.fs1_c01004{font-size:96.000000pt;}
.y0_c01004{bottom:0.000000pt;}
.y25_c01004{bottom:2.760000pt;}
.y24_c01004{bottom:6.425219pt;}
.y23_c01004{bottom:67.213333pt;}
.y22_c01004{bottom:90.946667pt;}
.y21_c01004{bottom:113.213333pt;}
.y20_c01004{bottom:134.813333pt;}
.y1f_c01004{bottom:156.680000pt;}
.y1e_c01004{bottom:178.280000pt;}
.y1d_c01004{bottom:200.146667pt;}
.y1c_c01004{bottom:221.213333pt;}
.y1b_c01004{bottom:243.080000pt;}
.y1a_c01004{bottom:264.680000pt;}
.y19_c01004{bottom:285.880000pt;}
.y18_c01004{bottom:307.613333pt;}
.y17_c01004{bottom:329.080000pt;}
.y16_c01004{bottom:350.146667pt;}
.y15_c01004{bottom:371.480000pt;}
.y14_c01004{bottom:393.080000pt;}
.y13_c01004{bottom:414.013333pt;}
.y12_c01004{bottom:435.080000pt;}
.y11_c01004{bottom:456.413333pt;}
.y10_c01004{bottom:477.880000pt;}
.yf_c01004{bottom:498.946667pt;}
.ye_c01004{bottom:519.880000pt;}
.yd_c01004{bottom:540.413333pt;}
.yc_c01004{bottom:561.613333pt;}
.yb_c01004{bottom:582.680000pt;}
.ya_c01004{bottom:603.613333pt;}
.y9_c01004{bottom:625.213333pt;}
.y8_c01004{bottom:646.013333pt;}
.y7_c01004{bottom:667.480000pt;}
.y6_c01004{bottom:688.546667pt;}
.y5_c01004{bottom:710.413333pt;}
.y4_c01004{bottom:731.213333pt;}
.y3_c01004{bottom:752.146667pt;}
.y2_c01004{bottom:773.480000pt;}
.y1_c01004{bottom:794.413333pt;}
.h5_c01004{height:11.733399pt;}
.h6_c01004{height:38.937500pt;}
.h4_c01004{height:45.687500pt;}
.h2_c01004{height:70.664062pt;}
.h3_c01004{height:96.750000pt;}
.h0_c01004{height:879.133333pt;}
.h1_c01004{height:879.333333pt;}
.w1_c01004{width:93.222667pt;}
.w0_c01004{width:597.333333pt;}
.x0_c01004{left:0.000000pt;}
.x4_c01004{left:23.466667pt;}
.x8_c01004{left:29.066667pt;}
.x5_c01004{left:38.800000pt;}
.x6_c01004{left:40.000000pt;}
.x1_c01004{left:41.066667pt;}
.x2_c01004{left:42.933333pt;}
.x7_c01004{left:45.333333pt;}
.x9_c01004{left:46.400000pt;}
.xa_c01004{left:47.333333pt;}
.xb_c01004{left:48.266667pt;}
.x3_c01004{left:65.066667pt;}
.xc_c01004{left:95.600000pt;}
.xd_c01004{left:139.466667pt;}
.xf_c01004{left:255.834880pt;}
.xe_c01004{left:332.800000pt;}
}





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

.ir_c01005:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01005{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01005;src:url('chunks/assets/font_43914b18f0825bc94667413e.woff2')format("woff");}.ff1_c01005{font-family:ff1_c01005;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01005;src:url('chunks/assets/font_3ff251e806c979ba2e787bbf.woff2')format("woff");}.ff2_c01005{font-family:ff2_c01005;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01005;src:url('chunks/assets/font_95a819e4450d101aa6f01bad.woff2')format("woff");}.ff3_c01005{font-family:ff3_c01005;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01005;src:url('chunks/assets/font_fdd49878f532e580445f0a12.woff2')format("woff");}.ff4_c01005{font-family:ff4_c01005;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01005;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c01005{font-family:ff5_c01005;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01005{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01005{vertical-align:0.000000px;}
.ls2_c01005{letter-spacing:0.000000px;}
.ls1_c01005{letter-spacing:3.000000px;}
.ls0_c01005{letter-spacing:3.900000px;}
.sc__c01005{text-shadow:none;}
.sc0_c01005{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01005{-webkit-text-stroke:0px transparent;}
.sc0_c01005{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01005{word-spacing:-67.686000px;}
.ws1_c01005{word-spacing:-33.000000px;}
.ws0_c01005{word-spacing:-20.250000px;}
.ws3_c01005{word-spacing:0.000000px;}
._17_c01005{margin-left:-27.096000px;}
._13_c01005{margin-left:-18.873000px;}
._0_c01005{margin-left:-16.215000px;}
._16_c01005{margin-left:-13.851000px;}
._1a_c01005{margin-left:-8.991000px;}
._18_c01005{margin-left:-7.047000px;}
._b_c01005{margin-left:-5.508000px;}
._2_c01005{margin-left:-4.050000px;}
._4_c01005{margin-left:-2.268000px;}
._d_c01005{margin-left:-1.134000px;}
._3_c01005{width:1.296000px;}
._6_c01005{width:2.430000px;}
._5_c01005{width:4.212000px;}
._1_c01005{width:5.670000px;}
._7_c01005{width:7.614000px;}
._9_c01005{width:8.748000px;}
._e_c01005{width:10.206000px;}
._a_c01005{width:11.340000px;}
._8_c01005{width:13.041000px;}
._c_c01005{width:14.094000px;}
._10_c01005{width:15.309000px;}
._11_c01005{width:16.848000px;}
._f_c01005{width:17.982000px;}
._12_c01005{width:52.488000px;}
._15_c01005{width:378.633000px;}
._14_c01005{width:399.735000px;}
._19_c01005{width:583.119000px;}
._1b_c01005{width:1087.992000px;}
.fc2_c01005{color:transparent;}
.fc1_c01005{color:rgb(128,128,128);}
.fc0_c01005{color:rgb(0,0,0);}
.fs5_c01005{font-size:48.000000px;}
.fs3_c01005{font-size:66.000000px;}
.fs0_c01005{font-size:69.000000px;}
.fs4_c01005{font-size:72.000000px;}
.fs1_c01005{font-size:81.000000px;}
.fs2_c01005{font-size:87.000000px;}
.y0_c01005{bottom:0.000000px;}
.y26_c01005{bottom:3.105000px;}
.y25_c01005{bottom:7.228371px;}
.y24_c01005{bottom:74.265000px;}
.y23_c01005{bottom:97.515000px;}
.y22_c01005{bottom:122.265000px;}
.y21_c01005{bottom:147.465000px;}
.y20_c01005{bottom:171.765000px;}
.y1f_c01005{bottom:196.215000px;}
.y1e_c01005{bottom:221.115000px;}
.y1d_c01005{bottom:245.115000px;}
.y1c_c01005{bottom:269.115000px;}
.y1b_c01005{bottom:293.715000px;}
.y1a_c01005{bottom:318.015000px;}
.y19_c01005{bottom:342.615000px;}
.y18_c01005{bottom:366.615000px;}
.y17_c01005{bottom:390.915000px;}
.y16_c01005{bottom:414.915000px;}
.y15_c01005{bottom:440.115000px;}
.y14_c01005{bottom:463.365000px;}
.y13_c01005{bottom:486.765000px;}
.y12_c01005{bottom:510.315000px;}
.y11_c01005{bottom:534.315000px;}
.y10_c01005{bottom:558.615000px;}
.yf_c01005{bottom:582.315000px;}
.ye_c01005{bottom:608.865000px;}
.yd_c01005{bottom:631.215000px;}
.yc_c01005{bottom:654.765000px;}
.yb_c01005{bottom:679.365000px;}
.ya_c01005{bottom:702.465000px;}
.y9_c01005{bottom:726.615000px;}
.y8_c01005{bottom:750.315000px;}
.y7_c01005{bottom:774.315000px;}
.y6_c01005{bottom:798.165000px;}
.y5_c01005{bottom:821.865000px;}
.y4_c01005{bottom:845.865000px;}
.y3_c01005{bottom:870.465000px;}
.y2_c01005{bottom:894.165000px;}
.y1_c01005{bottom:913.965000px;}
.h6_c01005{height:13.200074px;}
.h7_c01005{height:43.804688px;}
.h2_c01005{height:67.719727px;}
.h3_c01005{height:79.497070px;}
.h5_c01005{height:84.269531px;}
.h4_c01005{height:91.176000px;}
.h1_c01005{height:986.250000px;}
.h0_c01005{height:986.325000px;}
.w2_c01005{width:104.875500px;}
.w0_c01005{width:667.425000px;}
.w1_c01005{width:667.500000px;}
.x0_c01005{left:0.000000px;}
.x6_c01005{left:34.650000px;}
.x4_c01005{left:76.650000px;}
.xd_c01005{left:122.400000px;}
.xc_c01005{left:123.750000px;}
.xb_c01005{left:125.250000px;}
.xa_c01005{left:126.450000px;}
.x9_c01005{left:127.500000px;}
.x8_c01005{left:128.850000px;}
.x7_c01005{left:130.950000px;}
.x5_c01005{left:132.300000px;}
.x3_c01005{left:133.650000px;}
.x2_c01005{left:135.600000px;}
.xe_c01005{left:285.526749px;}
.x1_c01005{left:617.850000px;}
@media print{
.v0_c01005{vertical-align:0.000000pt;}
.ls2_c01005{letter-spacing:0.000000pt;}
.ls1_c01005{letter-spacing:2.666667pt;}
.ls0_c01005{letter-spacing:3.466667pt;}
.ws2_c01005{word-spacing:-60.165333pt;}
.ws1_c01005{word-spacing:-29.333333pt;}
.ws0_c01005{word-spacing:-18.000000pt;}
.ws3_c01005{word-spacing:0.000000pt;}
._17_c01005{margin-left:-24.085333pt;}
._13_c01005{margin-left:-16.776000pt;}
._0_c01005{margin-left:-14.413333pt;}
._16_c01005{margin-left:-12.312000pt;}
._1a_c01005{margin-left:-7.992000pt;}
._18_c01005{margin-left:-6.264000pt;}
._b_c01005{margin-left:-4.896000pt;}
._2_c01005{margin-left:-3.600000pt;}
._4_c01005{margin-left:-2.016000pt;}
._d_c01005{margin-left:-1.008000pt;}
._3_c01005{width:1.152000pt;}
._6_c01005{width:2.160000pt;}
._5_c01005{width:3.744000pt;}
._1_c01005{width:5.040000pt;}
._7_c01005{width:6.768000pt;}
._9_c01005{width:7.776000pt;}
._e_c01005{width:9.072000pt;}
._a_c01005{width:10.080000pt;}
._8_c01005{width:11.592000pt;}
._c_c01005{width:12.528000pt;}
._10_c01005{width:13.608000pt;}
._11_c01005{width:14.976000pt;}
._f_c01005{width:15.984000pt;}
._12_c01005{width:46.656000pt;}
._15_c01005{width:336.562667pt;}
._14_c01005{width:355.320000pt;}
._19_c01005{width:518.328000pt;}
._1b_c01005{width:967.104000pt;}
.fs5_c01005{font-size:42.666667pt;}
.fs3_c01005{font-size:58.666667pt;}
.fs0_c01005{font-size:61.333333pt;}
.fs4_c01005{font-size:64.000000pt;}
.fs1_c01005{font-size:72.000000pt;}
.fs2_c01005{font-size:77.333333pt;}
.y0_c01005{bottom:0.000000pt;}
.y26_c01005{bottom:2.760000pt;}
.y25_c01005{bottom:6.425219pt;}
.y24_c01005{bottom:66.013333pt;}
.y23_c01005{bottom:86.680000pt;}
.y22_c01005{bottom:108.680000pt;}
.y21_c01005{bottom:131.080000pt;}
.y20_c01005{bottom:152.680000pt;}
.y1f_c01005{bottom:174.413333pt;}
.y1e_c01005{bottom:196.546667pt;}
.y1d_c01005{bottom:217.880000pt;}
.y1c_c01005{bottom:239.213333pt;}
.y1b_c01005{bottom:261.080000pt;}
.y1a_c01005{bottom:282.680000pt;}
.y19_c01005{bottom:304.546667pt;}
.y18_c01005{bottom:325.880000pt;}
.y17_c01005{bottom:347.480000pt;}
.y16_c01005{bottom:368.813333pt;}
.y15_c01005{bottom:391.213333pt;}
.y14_c01005{bottom:411.880000pt;}
.y13_c01005{bottom:432.680000pt;}
.y12_c01005{bottom:453.613333pt;}
.y11_c01005{bottom:474.946667pt;}
.y10_c01005{bottom:496.546667pt;}
.yf_c01005{bottom:517.613333pt;}
.ye_c01005{bottom:541.213333pt;}
.yd_c01005{bottom:561.080000pt;}
.yc_c01005{bottom:582.013333pt;}
.yb_c01005{bottom:603.880000pt;}
.ya_c01005{bottom:624.413333pt;}
.y9_c01005{bottom:645.880000pt;}
.y8_c01005{bottom:666.946667pt;}
.y7_c01005{bottom:688.280000pt;}
.y6_c01005{bottom:709.480000pt;}
.y5_c01005{bottom:730.546667pt;}
.y4_c01005{bottom:751.880000pt;}
.y3_c01005{bottom:773.746667pt;}
.y2_c01005{bottom:794.813333pt;}
.y1_c01005{bottom:812.413333pt;}
.h6_c01005{height:11.733399pt;}
.h7_c01005{height:38.937500pt;}
.h2_c01005{height:60.195312pt;}
.h3_c01005{height:70.664062pt;}
.h5_c01005{height:74.906250pt;}
.h4_c01005{height:81.045333pt;}
.h1_c01005{height:876.666667pt;}
.h0_c01005{height:876.733333pt;}
.w2_c01005{width:93.222667pt;}
.w0_c01005{width:593.266667pt;}
.w1_c01005{width:593.333333pt;}
.x0_c01005{left:0.000000pt;}
.x6_c01005{left:30.800000pt;}
.x4_c01005{left:68.133333pt;}
.xd_c01005{left:108.800000pt;}
.xc_c01005{left:110.000000pt;}
.xb_c01005{left:111.333333pt;}
.xa_c01005{left:112.400000pt;}
.x9_c01005{left:113.333333pt;}
.x8_c01005{left:114.533333pt;}
.x7_c01005{left:116.400000pt;}
.x5_c01005{left:117.600000pt;}
.x3_c01005{left:118.800000pt;}
.x2_c01005{left:120.533333pt;}
.xe_c01005{left:253.801554pt;}
.x1_c01005{left:549.200000pt;}
}





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

.ir_c01006:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01006{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01006;src:url('chunks/assets/font_e95e70ad2d18fc268d60707b.woff2')format("woff");}.ff1_c01006{font-family:ff1_c01006;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01006;src:url('chunks/assets/font_c449df0f73305c8163ad8af3.woff2')format("woff");}.ff2_c01006{font-family:ff2_c01006;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01006;src:url('chunks/assets/font_8a1fa44dc7575a4eb55eba5e.woff2')format("woff");}.ff3_c01006{font-family:ff3_c01006;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01006;src:url('chunks/assets/font_57a3f7e5fe666340208bfac8.woff2')format("woff");}.ff4_c01006{font-family:ff4_c01006;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01006;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c01006{font-family:ff5_c01006;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01006{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01006{vertical-align:0.000000px;}
.ls3_c01006{letter-spacing:0.000000px;}
.ls2_c01006{letter-spacing:3.000000px;}
.ls0_c01006{letter-spacing:19.173000px;}
.ls1_c01006{letter-spacing:23.815200px;}
.sc__c01006{text-shadow:none;}
.sc0_c01006{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01006{-webkit-text-stroke:0px transparent;}
.sc0_c01006{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01006{word-spacing:-23.250000px;}
.ws1_c01006{word-spacing:0.000000px;}
._1a_c01006{margin-left:-14.352000px;}
._d_c01006{margin-left:-13.128000px;}
._20_c01006{margin-left:-10.908000px;}
._2_c01006{margin-left:-9.384000px;}
._1f_c01006{margin-left:-7.893000px;}
._c_c01006{margin-left:-6.741000px;}
._1c_c01006{margin-left:-5.595000px;}
._1_c01006{margin-left:-4.488000px;}
._4_c01006{margin-left:-2.652000px;}
._3_c01006{margin-left:-1.632000px;}
._1d_c01006{width:1.041000px;}
._a_c01006{width:2.118000px;}
._7_c01006{width:3.468000px;}
._1b_c01006{width:4.500000px;}
._9_c01006{width:5.568000px;}
._8_c01006{width:7.305000px;}
._b_c01006{width:9.081000px;}
._0_c01006{width:10.302000px;}
._13_c01006{width:11.550000px;}
._18_c01006{width:12.960000px;}
._e_c01006{width:15.066000px;}
._f_c01006{width:16.119000px;}
._10_c01006{width:17.979000px;}
._16_c01006{width:19.209000px;}
._6_c01006{width:20.400000px;}
._19_c01006{width:22.047000px;}
._15_c01006{width:24.225000px;}
._17_c01006{width:26.520000px;}
._11_c01006{width:29.241000px;}
._14_c01006{width:35.955000px;}
._12_c01006{width:37.734000px;}
._1e_c01006{width:57.186000px;}
._5_c01006{width:266.220000px;}
.fc2_c01006{color:transparent;}
.fc1_c01006{color:rgb(128,128,128);}
.fc0_c01006{color:rgb(0,0,0);}
.fs4_c01006{font-size:45.600000px;}
.fs6_c01006{font-size:48.000000px;}
.fs3_c01006{font-size:57.000000px;}
.fs2_c01006{font-size:81.000000px;}
.fs1_c01006{font-size:87.000000px;}
.fs5_c01006{font-size:93.000000px;}
.fs0_c01006{font-size:102.000000px;}
.y0_c01006{bottom:0.000000px;}
.y23_c01006{bottom:3.105000px;}
.y22_c01006{bottom:7.228371px;}
.y21_c01006{bottom:82.665000px;}
.y20_c01006{bottom:107.115000px;}
.y1f_c01006{bottom:131.265000px;}
.y1e_c01006{bottom:155.565000px;}
.y1d_c01006{bottom:180.015000px;}
.y1c_c01006{bottom:203.565000px;}
.y1b_c01006{bottom:228.465000px;}
.y1a_c01006{bottom:252.765000px;}
.y19_c01006{bottom:276.765000px;}
.y18_c01006{bottom:301.065000px;}
.y17_c01006{bottom:325.065000px;}
.y16_c01006{bottom:349.365000px;}
.y15_c01006{bottom:373.365000px;}
.y14_c01006{bottom:397.665000px;}
.y13_c01006{bottom:421.665000px;}
.y12_c01006{bottom:445.515000px;}
.y11_c01006{bottom:469.515000px;}
.y10_c01006{bottom:493.215000px;}
.yf_c01006{bottom:517.515000px;}
.ye_c01006{bottom:542.715000px;}
.yd_c01006{bottom:566.415000px;}
.yc_c01006{bottom:590.415000px;}
.yb_c01006{bottom:613.965000px;}
.ya_c01006{bottom:637.665000px;}
.y9_c01006{bottom:661.515000px;}
.y8_c01006{bottom:709.815000px;}
.y7_c01006{bottom:739.215000px;}
.y6_c01006{bottom:768.615000px;}
.y5_c01006{bottom:796.965000px;}
.y4_c01006{bottom:851.865000px;}
.y3_c01006{bottom:876.465000px;}
.y2_c01006{bottom:900.165000px;}
.y1_c01006{bottom:933.315000px;}
.h7_c01006{height:13.200074px;}
.h8_c01006{height:43.804688px;}
.h5_c01006{height:55.914551px;}
.h4_c01006{height:55.942383px;}
.h3_c01006{height:79.497070px;}
.h6_c01006{height:91.274414px;}
.h2_c01006{height:100.057617px;}
.h0_c01006{height:989.025000px;}
.h1_c01006{height:989.250000px;}
.w1_c01006{width:104.875500px;}
.w0_c01006{width:672.000000px;}
.x0_c01006{left:0.000000px;}
.xb_c01006{left:30.750000px;}
.x2_c01006{left:45.600000px;}
.x3_c01006{left:46.800000px;}
.xa_c01006{left:47.850000px;}
.xc_c01006{left:49.200000px;}
.x4_c01006{left:74.550000px;}
.x5_c01006{left:106.050000px;}
.x9_c01006{left:142.350000px;}
.x6_c01006{left:169.050000px;}
.x1_c01006{left:172.500000px;}
.x8_c01006{left:175.500000px;}
.x7_c01006{left:176.550000px;}
.xe_c01006{left:287.814240px;}
.xd_c01006{left:501.150000px;}
@media print{
.v0_c01006{vertical-align:0.000000pt;}
.ls3_c01006{letter-spacing:0.000000pt;}
.ls2_c01006{letter-spacing:2.666667pt;}
.ls0_c01006{letter-spacing:17.042667pt;}
.ls1_c01006{letter-spacing:21.169067pt;}
.ws0_c01006{word-spacing:-20.666667pt;}
.ws1_c01006{word-spacing:0.000000pt;}
._1a_c01006{margin-left:-12.757333pt;}
._d_c01006{margin-left:-11.669333pt;}
._20_c01006{margin-left:-9.696000pt;}
._2_c01006{margin-left:-8.341333pt;}
._1f_c01006{margin-left:-7.016000pt;}
._c_c01006{margin-left:-5.992000pt;}
._1c_c01006{margin-left:-4.973333pt;}
._1_c01006{margin-left:-3.989333pt;}
._4_c01006{margin-left:-2.357333pt;}
._3_c01006{margin-left:-1.450667pt;}
._1d_c01006{width:0.925333pt;}
._a_c01006{width:1.882667pt;}
._7_c01006{width:3.082667pt;}
._1b_c01006{width:4.000000pt;}
._9_c01006{width:4.949333pt;}
._8_c01006{width:6.493333pt;}
._b_c01006{width:8.072000pt;}
._0_c01006{width:9.157333pt;}
._13_c01006{width:10.266667pt;}
._18_c01006{width:11.520000pt;}
._e_c01006{width:13.392000pt;}
._f_c01006{width:14.328000pt;}
._10_c01006{width:15.981333pt;}
._16_c01006{width:17.074667pt;}
._6_c01006{width:18.133333pt;}
._19_c01006{width:19.597333pt;}
._15_c01006{width:21.533333pt;}
._17_c01006{width:23.573333pt;}
._11_c01006{width:25.992000pt;}
._14_c01006{width:31.960000pt;}
._12_c01006{width:33.541333pt;}
._1e_c01006{width:50.832000pt;}
._5_c01006{width:236.640000pt;}
.fs4_c01006{font-size:40.533333pt;}
.fs6_c01006{font-size:42.666667pt;}
.fs3_c01006{font-size:50.666667pt;}
.fs2_c01006{font-size:72.000000pt;}
.fs1_c01006{font-size:77.333333pt;}
.fs5_c01006{font-size:82.666667pt;}
.fs0_c01006{font-size:90.666667pt;}
.y0_c01006{bottom:0.000000pt;}
.y23_c01006{bottom:2.760000pt;}
.y22_c01006{bottom:6.425219pt;}
.y21_c01006{bottom:73.480000pt;}
.y20_c01006{bottom:95.213333pt;}
.y1f_c01006{bottom:116.680000pt;}
.y1e_c01006{bottom:138.280000pt;}
.y1d_c01006{bottom:160.013333pt;}
.y1c_c01006{bottom:180.946667pt;}
.y1b_c01006{bottom:203.080000pt;}
.y1a_c01006{bottom:224.680000pt;}
.y19_c01006{bottom:246.013333pt;}
.y18_c01006{bottom:267.613333pt;}
.y17_c01006{bottom:288.946667pt;}
.y16_c01006{bottom:310.546667pt;}
.y15_c01006{bottom:331.880000pt;}
.y14_c01006{bottom:353.480000pt;}
.y13_c01006{bottom:374.813333pt;}
.y12_c01006{bottom:396.013333pt;}
.y11_c01006{bottom:417.346667pt;}
.y10_c01006{bottom:438.413333pt;}
.yf_c01006{bottom:460.013333pt;}
.ye_c01006{bottom:482.413333pt;}
.yd_c01006{bottom:503.480000pt;}
.yc_c01006{bottom:524.813333pt;}
.yb_c01006{bottom:545.746667pt;}
.ya_c01006{bottom:566.813333pt;}
.y9_c01006{bottom:588.013333pt;}
.y8_c01006{bottom:630.946667pt;}
.y7_c01006{bottom:657.080000pt;}
.y6_c01006{bottom:683.213333pt;}
.y5_c01006{bottom:708.413333pt;}
.y4_c01006{bottom:757.213333pt;}
.y3_c01006{bottom:779.080000pt;}
.y2_c01006{bottom:800.146667pt;}
.y1_c01006{bottom:829.613333pt;}
.h7_c01006{height:11.733399pt;}
.h8_c01006{height:38.937500pt;}
.h5_c01006{height:49.701823pt;}
.h4_c01006{height:49.726562pt;}
.h3_c01006{height:70.664062pt;}
.h6_c01006{height:81.132812pt;}
.h2_c01006{height:88.940104pt;}
.h0_c01006{height:879.133333pt;}
.h1_c01006{height:879.333333pt;}
.w1_c01006{width:93.222667pt;}
.w0_c01006{width:597.333333pt;}
.x0_c01006{left:0.000000pt;}
.xb_c01006{left:27.333333pt;}
.x2_c01006{left:40.533333pt;}
.x3_c01006{left:41.600000pt;}
.xa_c01006{left:42.533333pt;}
.xc_c01006{left:43.733333pt;}
.x4_c01006{left:66.266667pt;}
.x5_c01006{left:94.266667pt;}
.x9_c01006{left:126.533333pt;}
.x6_c01006{left:150.266667pt;}
.x1_c01006{left:153.333333pt;}
.x8_c01006{left:156.000000pt;}
.x7_c01006{left:156.933333pt;}
.xe_c01006{left:255.834880pt;}
.xd_c01006{left:445.466667pt;}
}





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

.ir_c01007:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01007{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01007;src:url('chunks/assets/font_0d0aa0f600061db8e5ad4f05.woff2')format("woff");}.ff1_c01007{font-family:ff1_c01007;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01007;src:url('chunks/assets/font_d77ad034cdab68669465a8cc.woff2')format("woff");}.ff2_c01007{font-family:ff2_c01007;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01007;src:url('chunks/assets/font_c1817de87d28ea2a55c838ff.woff2')format("woff");}.ff3_c01007{font-family:ff3_c01007;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01007;src:url('chunks/assets/font_77b67e7a5442521d1d131f63.woff2')format("woff");}.ff4_c01007{font-family:ff4_c01007;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01007;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c01007{font-family:ff5_c01007;line-height:1.219238;font-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_c01007{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m0_c01007{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01007{vertical-align:0.000000px;}
.ls1_c01007{letter-spacing:0.000000px;}
.ls0_c01007{letter-spacing:12.900000px;}
.ls2_c01007{letter-spacing:27.000000px;}
.sc__c01007{text-shadow:none;}
.sc0_c01007{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01007{-webkit-text-stroke:0px transparent;}
.sc0_c01007{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01007{word-spacing:-59.184000px;}
.ws1_c01007{word-spacing:-47.250000px;}
.ws2_c01007{word-spacing:0.000000px;}
._f_c01007{margin-left:-42.606000px;}
._17_c01007{margin-left:-23.166000px;}
._1a_c01007{margin-left:-19.296000px;}
._13_c01007{margin-left:-17.577000px;}
._a_c01007{margin-left:-14.769000px;}
._c_c01007{margin-left:-11.907000px;}
._b_c01007{margin-left:-9.750000px;}
._1d_c01007{margin-left:-8.748000px;}
._14_c01007{margin-left:-7.614000px;}
._7_c01007{margin-left:-6.399000px;}
._16_c01007{margin-left:-5.346000px;}
._3_c01007{margin-left:-4.050000px;}
._6_c01007{margin-left:-2.916000px;}
._4_c01007{margin-left:-1.296000px;}
._11_c01007{width:1.053000px;}
._5_c01007{width:2.106000px;}
._0_c01007{width:3.321000px;}
._2_c01007{width:4.779000px;}
._1_c01007{width:6.561000px;}
._8_c01007{width:8.505000px;}
._9_c01007{width:10.287000px;}
._12_c01007{width:12.393000px;}
._15_c01007{width:14.094000px;}
._18_c01007{width:18.162000px;}
._1b_c01007{width:24.786000px;}
._d_c01007{width:41.541000px;}
._10_c01007{width:49.977000px;}
._e_c01007{width:127.035000px;}
._19_c01007{width:176.961000px;}
._1c_c01007{width:258.813000px;}
._1e_c01007{width:2054.781000px;}
.fc2_c01007{color:transparent;}
.fc1_c01007{color:rgb(128,128,128);}
.fc0_c01007{color:rgb(0,0,0);}
.fs5_c01007{font-size:48.000000px;}
.fs2_c01007{font-size:72.000000px;}
.fs0_c01007{font-size:81.000000px;}
.fs3_c01007{font-size:87.000000px;}
.fs4_c01007{font-size:93.000000px;}
.fs1_c01007{font-size:108.000000px;}
.y0_c01007{bottom:0.000000px;}
.y25_c01007{bottom:3.105000px;}
.y24_c01007{bottom:7.228371px;}
.y23_c01007{bottom:75.615000px;}
.y22_c01007{bottom:98.415000px;}
.y21_c01007{bottom:123.315000px;}
.y20_c01007{bottom:148.215000px;}
.y1f_c01007{bottom:171.915000px;}
.y1e_c01007{bottom:199.215000px;}
.y1d_c01007{bottom:220.815000px;}
.y1c_c01007{bottom:245.415000px;}
.y1b_c01007{bottom:269.715000px;}
.y1a_c01007{bottom:294.015000px;}
.y19_c01007{bottom:318.615000px;}
.y18_c01007{bottom:342.915000px;}
.y17_c01007{bottom:366.915000px;}
.y16_c01007{bottom:391.215000px;}
.y15_c01007{bottom:415.215000px;}
.y14_c01007{bottom:439.515000px;}
.y13_c01007{bottom:463.365000px;}
.y12_c01007{bottom:486.315000px;}
.y11_c01007{bottom:511.065000px;}
.y10_c01007{bottom:535.665000px;}
.yf_c01007{bottom:559.215000px;}
.ye_c01007{bottom:583.215000px;}
.yd_c01007{bottom:607.215000px;}
.yc_c01007{bottom:631.515000px;}
.yb_c01007{bottom:656.565000px;}
.ya_c01007{bottom:679.515000px;}
.y9_c01007{bottom:705.015000px;}
.y8_c01007{bottom:727.965000px;}
.y7_c01007{bottom:751.965000px;}
.y6_c01007{bottom:775.965000px;}
.y5_c01007{bottom:799.665000px;}
.y4_c01007{bottom:823.965000px;}
.y3_c01007{bottom:847.815000px;}
.y2_c01007{bottom:871.815000px;}
.y1_c01007{bottom:895.815000px;}
.h7_c01007{height:13.200074px;}
.h8_c01007{height:43.804688px;}
.h2_c01007{height:79.497070px;}
.h4_c01007{height:84.269531px;}
.h6_c01007{height:90.674414px;}
.h5_c01007{height:91.176000px;}
.h3_c01007{height:108.843750px;}
.h1_c01007{height:986.250000px;}
.h0_c01007{height:986.325000px;}
.w2_c01007{width:104.875500px;}
.w0_c01007{width:667.425000px;}
.w1_c01007{width:667.500000px;}
.x0_c01007{left:0.000000px;}
.x3_c01007{left:29.400000px;}
.xc_c01007{left:30.600000px;}
.x4_c01007{left:65.550000px;}
.x9_c01007{left:122.550000px;}
.x6_c01007{left:123.600000px;}
.x5_c01007{left:125.550000px;}
.x1_c01007{left:126.600000px;}
.xa_c01007{left:127.950000px;}
.x7_c01007{left:148.800000px;}
.xd_c01007{left:168.450000px;}
.xe_c01007{left:285.526749px;}
.x2_c01007{left:593.250000px;}
.x8_c01007{left:594.300000px;}
.xb_c01007{left:604.800000px;}
@media print{
.v0_c01007{vertical-align:0.000000pt;}
.ls1_c01007{letter-spacing:0.000000pt;}
.ls0_c01007{letter-spacing:11.466667pt;}
.ls2_c01007{letter-spacing:24.000000pt;}
.ws0_c01007{word-spacing:-52.608000pt;}
.ws1_c01007{word-spacing:-42.000000pt;}
.ws2_c01007{word-spacing:0.000000pt;}
._f_c01007{margin-left:-37.872000pt;}
._17_c01007{margin-left:-20.592000pt;}
._1a_c01007{margin-left:-17.152000pt;}
._13_c01007{margin-left:-15.624000pt;}
._a_c01007{margin-left:-13.128000pt;}
._c_c01007{margin-left:-10.584000pt;}
._b_c01007{margin-left:-8.666667pt;}
._1d_c01007{margin-left:-7.776000pt;}
._14_c01007{margin-left:-6.768000pt;}
._7_c01007{margin-left:-5.688000pt;}
._16_c01007{margin-left:-4.752000pt;}
._3_c01007{margin-left:-3.600000pt;}
._6_c01007{margin-left:-2.592000pt;}
._4_c01007{margin-left:-1.152000pt;}
._11_c01007{width:0.936000pt;}
._5_c01007{width:1.872000pt;}
._0_c01007{width:2.952000pt;}
._2_c01007{width:4.248000pt;}
._1_c01007{width:5.832000pt;}
._8_c01007{width:7.560000pt;}
._9_c01007{width:9.144000pt;}
._12_c01007{width:11.016000pt;}
._15_c01007{width:12.528000pt;}
._18_c01007{width:16.144000pt;}
._1b_c01007{width:22.032000pt;}
._d_c01007{width:36.925333pt;}
._10_c01007{width:44.424000pt;}
._e_c01007{width:112.920000pt;}
._19_c01007{width:157.298667pt;}
._1c_c01007{width:230.056000pt;}
._1e_c01007{width:1826.472000pt;}
.fs5_c01007{font-size:42.666667pt;}
.fs2_c01007{font-size:64.000000pt;}
.fs0_c01007{font-size:72.000000pt;}
.fs3_c01007{font-size:77.333333pt;}
.fs4_c01007{font-size:82.666667pt;}
.fs1_c01007{font-size:96.000000pt;}
.y0_c01007{bottom:0.000000pt;}
.y25_c01007{bottom:2.760000pt;}
.y24_c01007{bottom:6.425219pt;}
.y23_c01007{bottom:67.213333pt;}
.y22_c01007{bottom:87.480000pt;}
.y21_c01007{bottom:109.613333pt;}
.y20_c01007{bottom:131.746667pt;}
.y1f_c01007{bottom:152.813333pt;}
.y1e_c01007{bottom:177.080000pt;}
.y1d_c01007{bottom:196.280000pt;}
.y1c_c01007{bottom:218.146667pt;}
.y1b_c01007{bottom:239.746667pt;}
.y1a_c01007{bottom:261.346667pt;}
.y19_c01007{bottom:283.213333pt;}
.y18_c01007{bottom:304.813333pt;}
.y17_c01007{bottom:326.146667pt;}
.y16_c01007{bottom:347.746667pt;}
.y15_c01007{bottom:369.080000pt;}
.y14_c01007{bottom:390.680000pt;}
.y13_c01007{bottom:411.880000pt;}
.y12_c01007{bottom:432.280000pt;}
.y11_c01007{bottom:454.280000pt;}
.y10_c01007{bottom:476.146667pt;}
.yf_c01007{bottom:497.080000pt;}
.ye_c01007{bottom:518.413333pt;}
.yd_c01007{bottom:539.746667pt;}
.yc_c01007{bottom:561.346667pt;}
.yb_c01007{bottom:583.613333pt;}
.ya_c01007{bottom:604.013333pt;}
.y9_c01007{bottom:626.680000pt;}
.y8_c01007{bottom:647.080000pt;}
.y7_c01007{bottom:668.413333pt;}
.y6_c01007{bottom:689.746667pt;}
.y5_c01007{bottom:710.813333pt;}
.y4_c01007{bottom:732.413333pt;}
.y3_c01007{bottom:753.613333pt;}
.y2_c01007{bottom:774.946667pt;}
.y1_c01007{bottom:796.280000pt;}
.h7_c01007{height:11.733399pt;}
.h8_c01007{height:38.937500pt;}
.h2_c01007{height:70.664062pt;}
.h4_c01007{height:74.906250pt;}
.h6_c01007{height:80.599479pt;}
.h5_c01007{height:81.045333pt;}
.h3_c01007{height:96.750000pt;}
.h1_c01007{height:876.666667pt;}
.h0_c01007{height:876.733333pt;}
.w2_c01007{width:93.222667pt;}
.w0_c01007{width:593.266667pt;}
.w1_c01007{width:593.333333pt;}
.x0_c01007{left:0.000000pt;}
.x3_c01007{left:26.133333pt;}
.xc_c01007{left:27.200000pt;}
.x4_c01007{left:58.266667pt;}
.x9_c01007{left:108.933333pt;}
.x6_c01007{left:109.866667pt;}
.x5_c01007{left:111.600000pt;}
.x1_c01007{left:112.533333pt;}
.xa_c01007{left:113.733333pt;}
.x7_c01007{left:132.266667pt;}
.xd_c01007{left:149.733333pt;}
.xe_c01007{left:253.801554pt;}
.x2_c01007{left:527.333333pt;}
.x8_c01007{left:528.266667pt;}
.xb_c01007{left:537.600000pt;}
}





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

.ir_c01008:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01008{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01008;src:url('chunks/assets/font_af2ad1a81d80c4a1f0e6aac7.woff2')format("woff");}.ff1_c01008{font-family:ff1_c01008;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01008;src:url('chunks/assets/font_cdc99e3b8f6f9e12d569ea67.woff2')format("woff");}.ff2_c01008{font-family:ff2_c01008;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01008;src:url('chunks/assets/font_b6394900f7b54f87a739446d.woff2')format("woff");}.ff3_c01008{font-family:ff3_c01008;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01008;src:url('chunks/assets/font_9e7dc60342048cfbf11f28bc.woff2')format("woff");}.ff4_c01008{font-family:ff4_c01008;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01008;src:url('chunks/assets/font_dad9475379f41ba728867c7d.woff2')format("woff");}.ff5_c01008{font-family:ff5_c01008;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01008;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c01008{font-family:ff6_c01008;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01008{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01008{vertical-align:0.000000px;}
.ls2_c01008{letter-spacing:0.000000px;}
.ls0_c01008{letter-spacing:3.000000px;}
.ls1_c01008{letter-spacing:15.000000px;}
.sc__c01008{text-shadow:none;}
.sc0_c01008{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01008{-webkit-text-stroke:0px transparent;}
.sc0_c01008{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01008{word-spacing:-19.386000px;}
.ws1_c01008{word-spacing:0.000000px;}
._15_c01008{margin-left:-34.020000px;}
._23_c01008{margin-left:-26.406000px;}
._21_c01008{margin-left:-21.408000px;}
._1d_c01008{margin-left:-19.968000px;}
._7_c01008{margin-left:-18.060000px;}
._6_c01008{margin-left:-13.566000px;}
._4_c01008{margin-left:-12.546000px;}
._5_c01008{margin-left:-11.424000px;}
._13_c01008{margin-left:-8.757000px;}
._1f_c01008{margin-left:-6.918000px;}
._11_c01008{margin-left:-5.883000px;}
._17_c01008{margin-left:-4.503000px;}
._f_c01008{margin-left:-3.330000px;}
._0_c01008{margin-left:-1.428000px;}
._8_c01008{width:1.734000px;}
._9_c01008{width:3.162000px;}
._a_c01008{width:4.182000px;}
._c_c01008{width:6.000000px;}
._d_c01008{width:7.881000px;}
._e_c01008{width:9.750000px;}
._10_c01008{width:11.427000px;}
._16_c01008{width:12.954000px;}
._1a_c01008{width:14.337000px;}
._1b_c01008{width:15.537000px;}
._19_c01008{width:17.037000px;}
._1_c01008{width:19.338000px;}
._1e_c01008{width:22.485000px;}
._20_c01008{width:23.919000px;}
._12_c01008{width:25.026000px;}
._1c_c01008{width:27.945000px;}
._3_c01008{width:29.682000px;}
._2_c01008{width:32.436000px;}
._18_c01008{width:37.854000px;}
._14_c01008{width:45.183000px;}
._22_c01008{width:182.520000px;}
._b_c01008{width:305.676000px;}
.fc2_c01008{color:transparent;}
.fc1_c01008{color:rgb(128,128,128);}
.fc0_c01008{color:rgb(0,0,0);}
.fs5_c01008{font-size:48.000000px;}
.fs4_c01008{font-size:72.000000px;}
.fs3_c01008{font-size:78.000000px;}
.fs2_c01008{font-size:81.000000px;}
.fs1_c01008{font-size:87.000000px;}
.fs0_c01008{font-size:102.000000px;}
.y0_c01008{bottom:0.000000px;}
.y25_c01008{bottom:3.105000px;}
.y24_c01008{bottom:7.228369px;}
.y23_c01008{bottom:86.070000px;}
.y22_c01008{bottom:110.970000px;}
.y21_c01008{bottom:136.620000px;}
.y20_c01008{bottom:161.220000px;}
.y1f_c01008{bottom:185.970000px;}
.y1e_c01008{bottom:210.570000px;}
.y1d_c01008{bottom:235.170000px;}
.y1c_c01008{bottom:259.770000px;}
.y1b_c01008{bottom:284.070000px;}
.y1a_c01008{bottom:308.370000px;}
.y19_c01008{bottom:332.820000px;}
.y18_c01008{bottom:357.120000px;}
.y17_c01008{bottom:381.420000px;}
.y16_c01008{bottom:405.720000px;}
.y15_c01008{bottom:429.870000px;}
.y14_c01008{bottom:454.320000px;}
.y13_c01008{bottom:478.920000px;}
.y12_c01008{bottom:502.920000px;}
.y11_c01008{bottom:527.070000px;}
.y10_c01008{bottom:551.370000px;}
.yf_c01008{bottom:575.070000px;}
.ye_c01008{bottom:599.070000px;}
.yd_c01008{bottom:622.920000px;}
.yc_c01008{bottom:646.920000px;}
.yb_c01008{bottom:670.620000px;}
.ya_c01008{bottom:694.620000px;}
.y9_c01008{bottom:719.220000px;}
.y8_c01008{bottom:743.520000px;}
.y7_c01008{bottom:767.370000px;}
.y6_c01008{bottom:791.670000px;}
.y5_c01008{bottom:815.970000px;}
.y4_c01008{bottom:840.270000px;}
.y3_c01008{bottom:863.970000px;}
.y2_c01008{bottom:887.970000px;}
.y1_c01008{bottom:923.670000px;}
.h6_c01008{height:13.200073px;}
.h7_c01008{height:43.804688px;}
.h2_c01008{height:79.497070px;}
.h5_c01008{height:84.269531px;}
.h4_c01008{height:91.160156px;}
.h3_c01008{height:98.756836px;}
.h1_c01008{height:100.057617px;}
.h0_c01008{height:975.750000px;}
.w2_c01008{width:104.875500px;}
.w0_c01008{width:664.200000px;}
.w1_c01008{width:664.500000px;}
.x0_c01008{left:0.000000px;}
.x1_c01008{left:27.300000px;}
.x2_c01008{left:28.650000px;}
.x3_c01008{left:30.150000px;}
.x4_c01008{left:31.350000px;}
.x5_c01008{left:32.700000px;}
.x6_c01008{left:34.200000px;}
.x7_c01008{left:35.400000px;}
.x8_c01008{left:36.750000px;}
.x9_c01008{left:38.250000px;}
.xa_c01008{left:40.200000px;}
.xb_c01008{left:41.250000px;}
.xc_c01008{left:42.300000px;}
.xd_c01008{left:43.500000px;}
.xe_c01008{left:44.550000px;}
.xf_c01008{left:46.200000px;}
.x10_c01008{left:283.914230px;}
@media print{
.v0_c01008{vertical-align:0.000000pt;}
.ls2_c01008{letter-spacing:0.000000pt;}
.ls0_c01008{letter-spacing:2.666667pt;}
.ls1_c01008{letter-spacing:13.333333pt;}
.ws0_c01008{word-spacing:-17.232000pt;}
.ws1_c01008{word-spacing:0.000000pt;}
._15_c01008{margin-left:-30.240000pt;}
._23_c01008{margin-left:-23.472000pt;}
._21_c01008{margin-left:-19.029333pt;}
._1d_c01008{margin-left:-17.749333pt;}
._7_c01008{margin-left:-16.053333pt;}
._6_c01008{margin-left:-12.058667pt;}
._4_c01008{margin-left:-11.152000pt;}
._5_c01008{margin-left:-10.154667pt;}
._13_c01008{margin-left:-7.784000pt;}
._1f_c01008{margin-left:-6.149333pt;}
._11_c01008{margin-left:-5.229333pt;}
._17_c01008{margin-left:-4.002667pt;}
._f_c01008{margin-left:-2.960000pt;}
._0_c01008{margin-left:-1.269333pt;}
._8_c01008{width:1.541333pt;}
._9_c01008{width:2.810667pt;}
._a_c01008{width:3.717333pt;}
._c_c01008{width:5.333333pt;}
._d_c01008{width:7.005333pt;}
._e_c01008{width:8.666667pt;}
._10_c01008{width:10.157333pt;}
._16_c01008{width:11.514667pt;}
._1a_c01008{width:12.744000pt;}
._1b_c01008{width:13.810667pt;}
._19_c01008{width:15.144000pt;}
._1_c01008{width:17.189333pt;}
._1e_c01008{width:19.986667pt;}
._20_c01008{width:21.261333pt;}
._12_c01008{width:22.245333pt;}
._1c_c01008{width:24.840000pt;}
._3_c01008{width:26.384000pt;}
._2_c01008{width:28.832000pt;}
._18_c01008{width:33.648000pt;}
._14_c01008{width:40.162667pt;}
._22_c01008{width:162.240000pt;}
._b_c01008{width:271.712000pt;}
.fs5_c01008{font-size:42.666667pt;}
.fs4_c01008{font-size:64.000000pt;}
.fs3_c01008{font-size:69.333333pt;}
.fs2_c01008{font-size:72.000000pt;}
.fs1_c01008{font-size:77.333333pt;}
.fs0_c01008{font-size:90.666667pt;}
.y0_c01008{bottom:0.000000pt;}
.y25_c01008{bottom:2.760000pt;}
.y24_c01008{bottom:6.425217pt;}
.y23_c01008{bottom:76.506667pt;}
.y22_c01008{bottom:98.640000pt;}
.y21_c01008{bottom:121.440000pt;}
.y20_c01008{bottom:143.306667pt;}
.y1f_c01008{bottom:165.306667pt;}
.y1e_c01008{bottom:187.173333pt;}
.y1d_c01008{bottom:209.040000pt;}
.y1c_c01008{bottom:230.906667pt;}
.y1b_c01008{bottom:252.506667pt;}
.y1a_c01008{bottom:274.106667pt;}
.y19_c01008{bottom:295.840000pt;}
.y18_c01008{bottom:317.440000pt;}
.y17_c01008{bottom:339.040000pt;}
.y16_c01008{bottom:360.640000pt;}
.y15_c01008{bottom:382.106667pt;}
.y14_c01008{bottom:403.840000pt;}
.y13_c01008{bottom:425.706667pt;}
.y12_c01008{bottom:447.040000pt;}
.y11_c01008{bottom:468.506667pt;}
.y10_c01008{bottom:490.106667pt;}
.yf_c01008{bottom:511.173333pt;}
.ye_c01008{bottom:532.506667pt;}
.yd_c01008{bottom:553.706667pt;}
.yc_c01008{bottom:575.040000pt;}
.yb_c01008{bottom:596.106667pt;}
.ya_c01008{bottom:617.440000pt;}
.y9_c01008{bottom:639.306667pt;}
.y8_c01008{bottom:660.906667pt;}
.y7_c01008{bottom:682.106667pt;}
.y6_c01008{bottom:703.706667pt;}
.y5_c01008{bottom:725.306667pt;}
.y4_c01008{bottom:746.906667pt;}
.y3_c01008{bottom:767.973333pt;}
.y2_c01008{bottom:789.306667pt;}
.y1_c01008{bottom:821.040000pt;}
.h6_c01008{height:11.733399pt;}
.h7_c01008{height:38.937500pt;}
.h2_c01008{height:70.664062pt;}
.h5_c01008{height:74.906250pt;}
.h4_c01008{height:81.031250pt;}
.h3_c01008{height:87.783854pt;}
.h1_c01008{height:88.940104pt;}
.h0_c01008{height:867.333333pt;}
.w2_c01008{width:93.222667pt;}
.w0_c01008{width:590.400000pt;}
.w1_c01008{width:590.666667pt;}
.x0_c01008{left:0.000000pt;}
.x1_c01008{left:24.266667pt;}
.x2_c01008{left:25.466667pt;}
.x3_c01008{left:26.800000pt;}
.x4_c01008{left:27.866667pt;}
.x5_c01008{left:29.066667pt;}
.x6_c01008{left:30.400000pt;}
.x7_c01008{left:31.466667pt;}
.x8_c01008{left:32.666667pt;}
.x9_c01008{left:34.000000pt;}
.xa_c01008{left:35.733333pt;}
.xb_c01008{left:36.666667pt;}
.xc_c01008{left:37.600000pt;}
.xd_c01008{left:38.666667pt;}
.xe_c01008{left:39.600000pt;}
.xf_c01008{left:41.066667pt;}
.x10_c01008{left:252.368205pt;}
}





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

.ir_c01009:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01009{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01009;src:url('chunks/assets/font_ae7712c27730f736a7de0206.woff2')format("woff");}.ff1_c01009{font-family:ff1_c01009;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01009;src:url('chunks/assets/font_35d1fc0a11a98ea715dae077.woff2')format("woff");}.ff2_c01009{font-family:ff2_c01009;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01009;src:url('chunks/assets/font_8168c8af3b4771ae6e854b6a.woff2')format("woff");}.ff3_c01009{font-family:ff3_c01009;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01009;src:url('chunks/assets/font_9940e5e53928aced8b7a85ee.woff2')format("woff");}.ff4_c01009{font-family:ff4_c01009;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01009;src:url('chunks/assets/font_d1140d85931b1de7de91a8af.woff2')format("woff");}.ff5_c01009{font-family:ff5_c01009;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01009;src:url('chunks/assets/font_1d947a67629c1b75ab8fff2c.woff2')format("woff");}.ff6_c01009{font-family:ff6_c01009;line-height:1.437000;font-style:normal;font-weight: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_c01009;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c01009{font-family:ff7_c01009;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01009{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01009{vertical-align:0.000000px;}
.ls0_c01009{letter-spacing:0.000000px;}
.sc__c01009{text-shadow:none;}
.sc0_c01009{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01009{-webkit-text-stroke:0px transparent;}
.sc0_c01009{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01009{word-spacing:-67.686000px;}
.ws0_c01009{word-spacing:-17.352000px;}
.ws2_c01009{word-spacing:-0.720000px;}
.ws3_c01009{word-spacing:0.000000px;}
._1a_c01009{margin-left:-24.300000px;}
._1_c01009{margin-left:-14.661000px;}
._26_c01009{margin-left:-12.315000px;}
._1c_c01009{margin-left:-10.890000px;}
._12_c01009{margin-left:-9.450000px;}
._1e_c01009{margin-left:-8.262000px;}
._0_c01009{margin-left:-7.209000px;}
._2_c01009{margin-left:-5.913000px;}
._f_c01009{margin-left:-4.368000px;}
._b_c01009{margin-left:-3.357000px;}
._6_c01009{margin-left:-1.800000px;}
._10_c01009{width:1.155000px;}
._9_c01009{width:2.175000px;}
._13_c01009{width:3.186000px;}
._a_c01009{width:4.212000px;}
._e_c01009{width:5.361000px;}
._4_c01009{width:6.561000px;}
._8_c01009{width:7.632000px;}
._14_c01009{width:8.796000px;}
._7_c01009{width:10.800000px;}
._11_c01009{width:12.651000px;}
._15_c01009{width:14.589000px;}
._20_c01009{width:15.666000px;}
._5_c01009{width:16.866000px;}
._3_c01009{width:18.468000px;}
._c_c01009{width:21.708000px;}
._d_c01009{width:23.409000px;}
._17_c01009{width:26.730000px;}
._18_c01009{width:29.229000px;}
._27_c01009{width:33.117000px;}
._16_c01009{width:38.592000px;}
._1d_c01009{width:47.610000px;}
._19_c01009{width:57.969000px;}
._24_c01009{width:74.982000px;}
._23_c01009{width:81.027000px;}
._25_c01009{width:82.857000px;}
._1f_c01009{width:86.589000px;}
._1b_c01009{width:125.550000px;}
._21_c01009{width:202.053000px;}
._28_c01009{width:208.659000px;}
._22_c01009{width:291.768000px;}
.fc2_c01009{color:transparent;}
.fc1_c01009{color:rgb(128,128,128);}
.fc0_c01009{color:rgb(0,0,0);}
.fs4_c01009{font-size:48.000000px;}
.fs2_c01009{font-size:72.000000px;}
.fs1_c01009{font-size:81.000000px;}
.fs3_c01009{font-size:87.000000px;}
.fs0_c01009{font-size:144.000000px;}
.y0_c01009{bottom:0.000000px;}
.y25_c01009{bottom:3.105000px;}
.y24_c01009{bottom:7.228371px;}
.y23_c01009{bottom:72.615000px;}
.y22_c01009{bottom:98.265000px;}
.y21_c01009{bottom:122.565000px;}
.y20_c01009{bottom:148.815000px;}
.y1f_c01009{bottom:172.515000px;}
.y1e_c01009{bottom:197.115000px;}
.y1d_c01009{bottom:221.865000px;}
.y1c_c01009{bottom:245.115000px;}
.y1b_c01009{bottom:271.065000px;}
.y1a_c01009{bottom:296.715000px;}
.y19_c01009{bottom:319.965000px;}
.y18_c01009{bottom:344.715000px;}
.y17_c01009{bottom:369.015000px;}
.y16_c01009{bottom:392.265000px;}
.y15_c01009{bottom:417.915000px;}
.y14_c01009{bottom:441.915000px;}
.y13_c01009{bottom:466.065000px;}
.y12_c01009{bottom:490.515000px;}
.y11_c01009{bottom:514.365000px;}
.y10_c01009{bottom:538.665000px;}
.yf_c01009{bottom:563.265000px;}
.ye_c01009{bottom:587.265000px;}
.yd_c01009{bottom:611.865000px;}
.yc_c01009{bottom:636.165000px;}
.yb_c01009{bottom:660.165000px;}
.ya_c01009{bottom:684.465000px;}
.y9_c01009{bottom:709.215000px;}
.y8_c01009{bottom:733.365000px;}
.y7_c01009{bottom:757.665000px;}
.y6_c01009{bottom:781.365000px;}
.y5_c01009{bottom:806.265000px;}
.y1_c01009{bottom:822.165000px;}
.y4_c01009{bottom:829.665000px;}
.y3_c01009{bottom:854.565000px;}
.y2_c01009{bottom:878.265000px;}
.h7_c01009{height:13.200074px;}
.h8_c01009{height:43.804688px;}
.h4_c01009{height:79.497070px;}
.h6_c01009{height:84.269531px;}
.h3_c01009{height:91.160156px;}
.h5_c01009{height:91.176000px;}
.h2_c01009{height:182.320312px;}
.h1_c01009{height:986.250000px;}
.h0_c01009{height:986.325000px;}
.w2_c01009{width:104.875500px;}
.w0_c01009{width:667.425000px;}
.w1_c01009{width:667.500000px;}
.x0_c01009{left:0.000000px;}
.xf_c01009{left:32.400000px;}
.xe_c01009{left:34.650000px;}
.xb_c01009{left:37.800000px;}
.x9_c01009{left:40.050000px;}
.xa_c01009{left:43.800000px;}
.xc_c01009{left:102.600000px;}
.x11_c01009{left:128.550000px;}
.x10_c01009{left:130.500000px;}
.xd_c01009{left:131.850000px;}
.x8_c01009{left:134.100000px;}
.x7_c01009{left:135.750000px;}
.x6_c01009{left:137.700000px;}
.x5_c01009{left:139.350000px;}
.x1_c01009{left:143.100000px;}
.x4_c01009{left:150.300000px;}
.x3_c01009{left:196.800000px;}
.x2_c01009{left:212.850000px;}
.x12_c01009{left:285.526749px;}
@media print{
.v0_c01009{vertical-align:0.000000pt;}
.ls0_c01009{letter-spacing:0.000000pt;}
.ws1_c01009{word-spacing:-60.165333pt;}
.ws0_c01009{word-spacing:-15.424000pt;}
.ws2_c01009{word-spacing:-0.640000pt;}
.ws3_c01009{word-spacing:0.000000pt;}
._1a_c01009{margin-left:-21.600000pt;}
._1_c01009{margin-left:-13.032000pt;}
._26_c01009{margin-left:-10.946667pt;}
._1c_c01009{margin-left:-9.680000pt;}
._12_c01009{margin-left:-8.400000pt;}
._1e_c01009{margin-left:-7.344000pt;}
._0_c01009{margin-left:-6.408000pt;}
._2_c01009{margin-left:-5.256000pt;}
._f_c01009{margin-left:-3.882667pt;}
._b_c01009{margin-left:-2.984000pt;}
._6_c01009{margin-left:-1.600000pt;}
._10_c01009{width:1.026667pt;}
._9_c01009{width:1.933333pt;}
._13_c01009{width:2.832000pt;}
._a_c01009{width:3.744000pt;}
._e_c01009{width:4.765333pt;}
._4_c01009{width:5.832000pt;}
._8_c01009{width:6.784000pt;}
._14_c01009{width:7.818667pt;}
._7_c01009{width:9.600000pt;}
._11_c01009{width:11.245333pt;}
._15_c01009{width:12.968000pt;}
._20_c01009{width:13.925333pt;}
._5_c01009{width:14.992000pt;}
._3_c01009{width:16.416000pt;}
._c_c01009{width:19.296000pt;}
._d_c01009{width:20.808000pt;}
._17_c01009{width:23.760000pt;}
._18_c01009{width:25.981333pt;}
._27_c01009{width:29.437333pt;}
._16_c01009{width:34.304000pt;}
._1d_c01009{width:42.320000pt;}
._19_c01009{width:51.528000pt;}
._24_c01009{width:66.650667pt;}
._23_c01009{width:72.024000pt;}
._25_c01009{width:73.650667pt;}
._1f_c01009{width:76.968000pt;}
._1b_c01009{width:111.600000pt;}
._21_c01009{width:179.602667pt;}
._28_c01009{width:185.474667pt;}
._22_c01009{width:259.349333pt;}
.fs4_c01009{font-size:42.666667pt;}
.fs2_c01009{font-size:64.000000pt;}
.fs1_c01009{font-size:72.000000pt;}
.fs3_c01009{font-size:77.333333pt;}
.fs0_c01009{font-size:128.000000pt;}
.y0_c01009{bottom:0.000000pt;}
.y25_c01009{bottom:2.760000pt;}
.y24_c01009{bottom:6.425219pt;}
.y23_c01009{bottom:64.546667pt;}
.y22_c01009{bottom:87.346667pt;}
.y21_c01009{bottom:108.946667pt;}
.y20_c01009{bottom:132.280000pt;}
.y1f_c01009{bottom:153.346667pt;}
.y1e_c01009{bottom:175.213333pt;}
.y1d_c01009{bottom:197.213333pt;}
.y1c_c01009{bottom:217.880000pt;}
.y1b_c01009{bottom:240.946667pt;}
.y1a_c01009{bottom:263.746667pt;}
.y19_c01009{bottom:284.413333pt;}
.y18_c01009{bottom:306.413333pt;}
.y17_c01009{bottom:328.013333pt;}
.y16_c01009{bottom:348.680000pt;}
.y15_c01009{bottom:371.480000pt;}
.y14_c01009{bottom:392.813333pt;}
.y13_c01009{bottom:414.280000pt;}
.y12_c01009{bottom:436.013333pt;}
.y11_c01009{bottom:457.213333pt;}
.y10_c01009{bottom:478.813333pt;}
.yf_c01009{bottom:500.680000pt;}
.ye_c01009{bottom:522.013333pt;}
.yd_c01009{bottom:543.880000pt;}
.yc_c01009{bottom:565.480000pt;}
.yb_c01009{bottom:586.813333pt;}
.ya_c01009{bottom:608.413333pt;}
.y9_c01009{bottom:630.413333pt;}
.y8_c01009{bottom:651.880000pt;}
.y7_c01009{bottom:673.480000pt;}
.y6_c01009{bottom:694.546667pt;}
.y5_c01009{bottom:716.680000pt;}
.y1_c01009{bottom:730.813333pt;}
.y4_c01009{bottom:737.480000pt;}
.y3_c01009{bottom:759.613333pt;}
.y2_c01009{bottom:780.680000pt;}
.h7_c01009{height:11.733399pt;}
.h8_c01009{height:38.937500pt;}
.h4_c01009{height:70.664062pt;}
.h6_c01009{height:74.906250pt;}
.h3_c01009{height:81.031250pt;}
.h5_c01009{height:81.045333pt;}
.h2_c01009{height:162.062500pt;}
.h1_c01009{height:876.666667pt;}
.h0_c01009{height:876.733333pt;}
.w2_c01009{width:93.222667pt;}
.w0_c01009{width:593.266667pt;}
.w1_c01009{width:593.333333pt;}
.x0_c01009{left:0.000000pt;}
.xf_c01009{left:28.800000pt;}
.xe_c01009{left:30.800000pt;}
.xb_c01009{left:33.600000pt;}
.x9_c01009{left:35.600000pt;}
.xa_c01009{left:38.933333pt;}
.xc_c01009{left:91.200000pt;}
.x11_c01009{left:114.266667pt;}
.x10_c01009{left:116.000000pt;}
.xd_c01009{left:117.200000pt;}
.x8_c01009{left:119.200000pt;}
.x7_c01009{left:120.666667pt;}
.x6_c01009{left:122.400000pt;}
.x5_c01009{left:123.866667pt;}
.x1_c01009{left:127.200000pt;}
.x4_c01009{left:133.600000pt;}
.x3_c01009{left:174.933333pt;}
.x2_c01009{left:189.200000pt;}
.x12_c01009{left:253.801554pt;}
}





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

.ir_c01010:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01010{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01010;src:url('chunks/assets/font_e8ff957a01a28c1dc5a33c21.woff2')format("woff");}.ff1_c01010{font-family:ff1_c01010;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01010;src:url('chunks/assets/font_a80e75e6c5c0172027243ead.woff2')format("woff");}.ff2_c01010{font-family:ff2_c01010;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01010;src:url('chunks/assets/font_acf3fd6dd65cf627f8517b52.woff2')format("woff");}.ff3_c01010{font-family:ff3_c01010;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01010;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff4_c01010{font-family:ff4_c01010;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01010;src:url('chunks/assets/font_a4b36dd3d241dbefc52ede95.woff2')format("woff");}.ff5_c01010{font-family:ff5_c01010;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01010;src:url('chunks/assets/font_eebd34e5cff7c42e27c4013c.woff2')format("woff");}.ff6_c01010{font-family:ff6_c01010;line-height:1.284180;font-style:normal;font-weight: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_c01010;src:url('chunks/assets/font_30a2ed055c0c380945ecdf6a.woff2')format("woff");}.ff7_c01010{font-family:ff7_c01010;line-height:1.437000;font-style:normal;font-weight: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_c01010;src:url('chunks/assets/font_db5a4c6c28f545c62301d337.woff2')format("woff");}.ff8_c01010{font-family:ff8_c01010;line-height:1.437000;font-style:normal;font-weight: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_c01010;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff9_c01010{font-family:ff9_c01010;line-height:1.219238;font-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_c01010{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m0_c01010{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01010{vertical-align:0.000000px;}
.ls4_c01010{letter-spacing:0.000000px;}
.ls3_c01010{letter-spacing:0.900000px;}
.ls1_c01010{letter-spacing:3.000000px;}
.ls0_c01010{letter-spacing:10.584000px;}
.ls5_c01010{letter-spacing:27.000000px;}
.ls2_c01010{letter-spacing:341.100000px;}
.sc__c01010{text-shadow:none;}
.sc0_c01010{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01010{-webkit-text-stroke:0px transparent;}
.sc0_c01010{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c01010{word-spacing:-27.000000px;}
.ws0_c01010{word-spacing:-26.334000px;}
.ws1_c01010{word-spacing:-17.352000px;}
.ws2_c01010{word-spacing:-4.350000px;}
.ws4_c01010{word-spacing:-0.648000px;}
.ws5_c01010{word-spacing:0.000000px;}
._1a_c01010{margin-left:-57.768000px;}
._1d_c01010{margin-left:-23.904000px;}
._17_c01010{margin-left:-14.544000px;}
._14_c01010{margin-left:-12.615000px;}
._13_c01010{margin-left:-11.310000px;}
._6_c01010{margin-left:-10.206000px;}
._1b_c01010{margin-left:-8.928000px;}
._12_c01010{margin-left:-7.488000px;}
._11_c01010{margin-left:-6.354000px;}
._2_c01010{margin-left:-4.698000px;}
._10_c01010{margin-left:-3.384000px;}
._4_c01010{margin-left:-1.944000px;}
._3_c01010{width:1.215000px;}
._1_c01010{width:2.349000px;}
._b_c01010{width:3.402000px;}
._0_c01010{width:4.536000px;}
._5_c01010{width:5.751000px;}
._a_c01010{width:6.804000px;}
._7_c01010{width:7.857000px;}
._8_c01010{width:9.801000px;}
._9_c01010{width:11.745000px;}
._15_c01010{width:12.798000px;}
._18_c01010{width:14.427000px;}
._16_c01010{width:16.884000px;}
._c_c01010{width:18.792000px;}
._e_c01010{width:21.789000px;}
._f_c01010{width:22.938000px;}
._19_c01010{width:32.481000px;}
._1c_c01010{width:101.250000px;}
._d_c01010{width:277.356000px;}
.fc2_c01010{color:transparent;}
.fc1_c01010{color:rgb(128,128,128);}
.fc0_c01010{color:rgb(0,0,0);}
.fs4_c01010{font-size:45.000000px;}
.fs7_c01010{font-size:48.000000px;}
.fs5_c01010{font-size:54.000000px;}
.fs1_c01010{font-size:63.000000px;}
.fs2_c01010{font-size:72.000000px;}
.fs0_c01010{font-size:81.000000px;}
.fs3_c01010{font-size:87.000000px;}
.fs6_c01010{font-size:108.000000px;}
.y0_c01010{bottom:0.000000px;}
.y25_c01010{bottom:3.105000px;}
.y24_c01010{bottom:7.228369px;}
.y23_c01010{bottom:62.370000px;}
.y22_c01010{bottom:86.370000px;}
.y21_c01010{bottom:111.720000px;}
.y20_c01010{bottom:136.020000px;}
.y1f_c01010{bottom:160.620000px;}
.y1e_c01010{bottom:185.220000px;}
.y1d_c01010{bottom:209.520000px;}
.y1c_c01010{bottom:234.120000px;}
.y1b_c01010{bottom:258.120000px;}
.y1a_c01010{bottom:282.720000px;}
.y19_c01010{bottom:307.020000px;}
.y18_c01010{bottom:331.320000px;}
.y17_c01010{bottom:355.320000px;}
.y16_c01010{bottom:379.920000px;}
.y15_c01010{bottom:403.920000px;}
.y14_c01010{bottom:428.220000px;}
.y13_c01010{bottom:452.220000px;}
.y12_c01010{bottom:476.520000px;}
.y11_c01010{bottom:500.520000px;}
.y10_c01010{bottom:524.820000px;}
.yf_c01010{bottom:548.670000px;}
.ye_c01010{bottom:572.970000px;}
.yd_c01010{bottom:596.970000px;}
.yc_c01010{bottom:620.670000px;}
.yb_c01010{bottom:644.670000px;}
.ya_c01010{bottom:668.970000px;}
.y9_c01010{bottom:692.820000px;}
.y8_c01010{bottom:717.420000px;}
.y7_c01010{bottom:741.120000px;}
.y6_c01010{bottom:766.770000px;}
.y5_c01010{bottom:790.320000px;}
.y4_c01010{bottom:814.770000px;}
.y3_c01010{bottom:837.720000px;}
.y2_c01010{bottom:862.620000px;}
.y1_c01010{bottom:886.170000px;}
.h7_c01010{height:13.200073px;}
.h8_c01010{height:43.804688px;}
.h1_c01010{height:79.497070px;}
.h2_c01010{height:84.269531px;}
.h3_c01010{height:91.160156px;}
.h5_c01010{height:91.176000px;}
.h6_c01010{height:108.843750px;}
.h4_c01010{height:110.151855px;}
.h0_c01010{height:975.750000px;}
.w2_c01010{width:104.875500px;}
.w0_c01010{width:664.200000px;}
.w1_c01010{width:664.500000px;}
.x0_c01010{left:0.000000px;}
.x1_c01010{left:38.250000px;}
.x2_c01010{left:39.450000px;}
.x3_c01010{left:40.800000px;}
.x5_c01010{left:42.450000px;}
.x6_c01010{left:67.200000px;}
.x8_c01010{left:283.914230px;}
.x7_c01010{left:474.150000px;}
.x4_c01010{left:510.300000px;}
@media print{
.v0_c01010{vertical-align:0.000000pt;}
.ls4_c01010{letter-spacing:0.000000pt;}
.ls3_c01010{letter-spacing:0.800000pt;}
.ls1_c01010{letter-spacing:2.666667pt;}
.ls0_c01010{letter-spacing:9.408000pt;}
.ls5_c01010{letter-spacing:24.000000pt;}
.ls2_c01010{letter-spacing:303.200000pt;}
.ws3_c01010{word-spacing:-24.000000pt;}
.ws0_c01010{word-spacing:-23.408000pt;}
.ws1_c01010{word-spacing:-15.424000pt;}
.ws2_c01010{word-spacing:-3.866667pt;}
.ws4_c01010{word-spacing:-0.576000pt;}
.ws5_c01010{word-spacing:0.000000pt;}
._1a_c01010{margin-left:-51.349333pt;}
._1d_c01010{margin-left:-21.248000pt;}
._17_c01010{margin-left:-12.928000pt;}
._14_c01010{margin-left:-11.213333pt;}
._13_c01010{margin-left:-10.053333pt;}
._6_c01010{margin-left:-9.072000pt;}
._1b_c01010{margin-left:-7.936000pt;}
._12_c01010{margin-left:-6.656000pt;}
._11_c01010{margin-left:-5.648000pt;}
._2_c01010{margin-left:-4.176000pt;}
._10_c01010{margin-left:-3.008000pt;}
._4_c01010{margin-left:-1.728000pt;}
._3_c01010{width:1.080000pt;}
._1_c01010{width:2.088000pt;}
._b_c01010{width:3.024000pt;}
._0_c01010{width:4.032000pt;}
._5_c01010{width:5.112000pt;}
._a_c01010{width:6.048000pt;}
._7_c01010{width:6.984000pt;}
._8_c01010{width:8.712000pt;}
._9_c01010{width:10.440000pt;}
._15_c01010{width:11.376000pt;}
._18_c01010{width:12.824000pt;}
._16_c01010{width:15.008000pt;}
._c_c01010{width:16.704000pt;}
._e_c01010{width:19.368000pt;}
._f_c01010{width:20.389333pt;}
._19_c01010{width:28.872000pt;}
._1c_c01010{width:90.000000pt;}
._d_c01010{width:246.538667pt;}
.fs4_c01010{font-size:40.000000pt;}
.fs7_c01010{font-size:42.666667pt;}
.fs5_c01010{font-size:48.000000pt;}
.fs1_c01010{font-size:56.000000pt;}
.fs2_c01010{font-size:64.000000pt;}
.fs0_c01010{font-size:72.000000pt;}
.fs3_c01010{font-size:77.333333pt;}
.fs6_c01010{font-size:96.000000pt;}
.y0_c01010{bottom:0.000000pt;}
.y25_c01010{bottom:2.760000pt;}
.y24_c01010{bottom:6.425217pt;}
.y23_c01010{bottom:55.440000pt;}
.y22_c01010{bottom:76.773333pt;}
.y21_c01010{bottom:99.306667pt;}
.y20_c01010{bottom:120.906667pt;}
.y1f_c01010{bottom:142.773333pt;}
.y1e_c01010{bottom:164.640000pt;}
.y1d_c01010{bottom:186.240000pt;}
.y1c_c01010{bottom:208.106667pt;}
.y1b_c01010{bottom:229.440000pt;}
.y1a_c01010{bottom:251.306667pt;}
.y19_c01010{bottom:272.906667pt;}
.y18_c01010{bottom:294.506667pt;}
.y17_c01010{bottom:315.840000pt;}
.y16_c01010{bottom:337.706667pt;}
.y15_c01010{bottom:359.040000pt;}
.y14_c01010{bottom:380.640000pt;}
.y13_c01010{bottom:401.973333pt;}
.y12_c01010{bottom:423.573333pt;}
.y11_c01010{bottom:444.906667pt;}
.y10_c01010{bottom:466.506667pt;}
.yf_c01010{bottom:487.706667pt;}
.ye_c01010{bottom:509.306667pt;}
.yd_c01010{bottom:530.640000pt;}
.yc_c01010{bottom:551.706667pt;}
.yb_c01010{bottom:573.040000pt;}
.ya_c01010{bottom:594.640000pt;}
.y9_c01010{bottom:615.840000pt;}
.y8_c01010{bottom:637.706667pt;}
.y7_c01010{bottom:658.773333pt;}
.y6_c01010{bottom:681.573333pt;}
.y5_c01010{bottom:702.506667pt;}
.y4_c01010{bottom:724.240000pt;}
.y3_c01010{bottom:744.640000pt;}
.y2_c01010{bottom:766.773333pt;}
.y1_c01010{bottom:787.706667pt;}
.h7_c01010{height:11.733399pt;}
.h8_c01010{height:38.937500pt;}
.h1_c01010{height:70.664062pt;}
.h2_c01010{height:74.906250pt;}
.h3_c01010{height:81.031250pt;}
.h5_c01010{height:81.045333pt;}
.h6_c01010{height:96.750000pt;}
.h4_c01010{height:97.912760pt;}
.h0_c01010{height:867.333333pt;}
.w2_c01010{width:93.222667pt;}
.w0_c01010{width:590.400000pt;}
.w1_c01010{width:590.666667pt;}
.x0_c01010{left:0.000000pt;}
.x1_c01010{left:34.000000pt;}
.x2_c01010{left:35.066667pt;}
.x3_c01010{left:36.266667pt;}
.x5_c01010{left:37.733333pt;}
.x6_c01010{left:59.733333pt;}
.x8_c01010{left:252.368205pt;}
.x7_c01010{left:421.466667pt;}
.x4_c01010{left:453.600000pt;}
}





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

.ir_c01011:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01011{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01011;src:url('chunks/assets/font_d4aa08985297aee68cab0987.woff2')format("woff");}.ff1_c01011{font-family:ff1_c01011;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01011;src:url('chunks/assets/font_575f0ee7543e15a954b1a8ba.woff2')format("woff");}.ff2_c01011{font-family:ff2_c01011;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01011;src:url('chunks/assets/font_6bbdd5bc3eac0b79ef65f66e.woff2')format("woff");}.ff3_c01011{font-family:ff3_c01011;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01011;src:url('chunks/assets/font_d4ead92f52fa202f3b9b0a55.woff2')format("woff");}.ff4_c01011{font-family:ff4_c01011;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01011;src:url('chunks/assets/font_a109dc8b08d76dd889b284c1.woff2')format("woff");}.ff5_c01011{font-family:ff5_c01011;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01011;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c01011{font-family:ff6_c01011;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01011{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01011{vertical-align:0.000000px;}
.ls0_c01011{letter-spacing:-6.000000px;}
.ls1_c01011{letter-spacing:-3.000000px;}
.ls2_c01011{letter-spacing:0.000000px;}
.sc__c01011{text-shadow:none;}
.sc0_c01011{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01011{-webkit-text-stroke:0px transparent;}
.sc0_c01011{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01011{word-spacing:-22.098000px;}
.ws0_c01011{word-spacing:-17.352000px;}
.ws2_c01011{word-spacing:0.000000px;}
._20_c01011{margin-left:-37.215000px;}
._22_c01011{margin-left:-35.766000px;}
._24_c01011{margin-left:-26.082000px;}
._28_c01011{margin-left:-22.629000px;}
._2b_c01011{margin-left:-18.063000px;}
._10_c01011{margin-left:-15.990000px;}
._8_c01011{margin-left:-14.418000px;}
._1e_c01011{margin-left:-12.672000px;}
._1f_c01011{margin-left:-11.310000px;}
._2c_c01011{margin-left:-10.068000px;}
._14_c01011{margin-left:-8.934000px;}
._2_c01011{margin-left:-7.056000px;}
._b_c01011{margin-left:-5.832000px;}
._3_c01011{margin-left:-4.824000px;}
._0_c01011{margin-left:-3.480000px;}
._4_c01011{margin-left:-2.160000px;}
._12_c01011{margin-left:-1.029000px;}
._a_c01011{width:1.620000px;}
._c_c01011{width:2.727000px;}
._6_c01011{width:3.969000px;}
._7_c01011{width:5.670000px;}
._d_c01011{width:7.071000px;}
._9_c01011{width:8.910000px;}
._e_c01011{width:10.155000px;}
._13_c01011{width:11.682000px;}
._21_c01011{width:12.879000px;}
._16_c01011{width:13.923000px;}
._17_c01011{width:15.594000px;}
._1a_c01011{width:17.145000px;}
._2d_c01011{width:18.165000px;}
._27_c01011{width:19.368000px;}
._2a_c01011{width:22.683000px;}
._5_c01011{width:25.920000px;}
._15_c01011{width:28.602000px;}
._1b_c01011{width:33.741000px;}
._25_c01011{width:46.656000px;}
._26_c01011{width:88.422000px;}
._f_c01011{width:195.492000px;}
._29_c01011{width:206.397000px;}
._1_c01011{width:225.720000px;}
._1c_c01011{width:288.468000px;}
._19_c01011{width:295.800000px;}
._23_c01011{width:307.071000px;}
._11_c01011{width:330.156000px;}
._18_c01011{width:349.533000px;}
._1d_c01011{width:373.068000px;}
._2e_c01011{width:1616.472000px;}
.fc2_c01011{color:transparent;}
.fc1_c01011{color:rgb(128,128,128);}
.fc0_c01011{color:rgb(0,0,0);}
.fs6_c01011{font-size:48.000000px;}
.fs3_c01011{font-size:54.000000px;}
.fs0_c01011{font-size:60.000000px;}
.fs1_c01011{font-size:72.000000px;}
.fs5_c01011{font-size:78.000000px;}
.fs2_c01011{font-size:81.000000px;}
.fs4_c01011{font-size:87.000000px;}
.y0_c01011{bottom:0.000000px;}
.y26_c01011{bottom:3.105000px;}
.y25_c01011{bottom:7.228371px;}
.y24_c01011{bottom:55.665000px;}
.y23_c01011{bottom:76.065000px;}
.y22_c01011{bottom:101.565000px;}
.y21_c01011{bottom:126.015000px;}
.y20_c01011{bottom:150.915000px;}
.y1f_c01011{bottom:175.815000px;}
.y1e_c01011{bottom:199.815000px;}
.y1d_c01011{bottom:223.815000px;}
.y1c_c01011{bottom:249.165000px;}
.y1b_c01011{bottom:273.465000px;}
.y1a_c01011{bottom:298.065000px;}
.y19_c01011{bottom:322.965000px;}
.y18_c01011{bottom:346.965000px;}
.y17_c01011{bottom:371.265000px;}
.y16_c01011{bottom:395.565000px;}
.y15_c01011{bottom:420.165000px;}
.y14_c01011{bottom:444.165000px;}
.y13_c01011{bottom:468.765000px;}
.y12_c01011{bottom:493.515000px;}
.y11_c01011{bottom:516.765000px;}
.y10_c01011{bottom:540.765000px;}
.yf_c01011{bottom:565.665000px;}
.ye_c01011{bottom:589.365000px;}
.yd_c01011{bottom:613.665000px;}
.yc_c01011{bottom:637.665000px;}
.yb_c01011{bottom:662.865000px;}
.ya_c01011{bottom:688.815000px;}
.y9_c01011{bottom:711.165000px;}
.y8_c01011{bottom:736.515000px;}
.y7_c01011{bottom:759.765000px;}
.y6_c01011{bottom:787.065000px;}
.y5_c01011{bottom:808.665000px;}
.y4_c01011{bottom:832.665000px;}
.y3_c01011{bottom:856.665000px;}
.y2_c01011{bottom:880.965000px;}
.y1_c01011{bottom:943.065000px;}
.h7_c01011{height:13.200074px;}
.h8_c01011{height:43.804688px;}
.h2_c01011{height:58.886719px;}
.h4_c01011{height:79.497070px;}
.h3_c01011{height:84.269531px;}
.h6_c01011{height:98.756836px;}
.h5_c01011{height:110.151855px;}
.h1_c01011{height:986.250000px;}
.h0_c01011{height:986.325000px;}
.w2_c01011{width:104.875500px;}
.w0_c01011{width:667.425000px;}
.w1_c01011{width:667.500000px;}
.x0_c01011{left:0.000000px;}
.x3_c01011{left:34.050000px;}
.x2_c01011{left:39.600000px;}
.xa_c01011{left:40.950000px;}
.x8_c01011{left:42.150000px;}
.xe_c01011{left:44.550000px;}
.xd_c01011{left:73.650000px;}
.x9_c01011{left:95.250000px;}
.x7_c01011{left:122.550000px;}
.xc_c01011{left:132.300000px;}
.xb_c01011{left:133.650000px;}
.x4_c01011{left:136.050000px;}
.x5_c01011{left:137.700000px;}
.xf_c01011{left:160.950000px;}
.x6_c01011{left:169.050000px;}
.x10_c01011{left:175.500000px;}
.x1_c01011{left:252.750000px;}
.x11_c01011{left:285.526749px;}
@media print{
.v0_c01011{vertical-align:0.000000pt;}
.ls0_c01011{letter-spacing:-5.333333pt;}
.ls1_c01011{letter-spacing:-2.666667pt;}
.ls2_c01011{letter-spacing:0.000000pt;}
.ws1_c01011{word-spacing:-19.642667pt;}
.ws0_c01011{word-spacing:-15.424000pt;}
.ws2_c01011{word-spacing:0.000000pt;}
._20_c01011{margin-left:-33.080000pt;}
._22_c01011{margin-left:-31.792000pt;}
._24_c01011{margin-left:-23.184000pt;}
._28_c01011{margin-left:-20.114667pt;}
._2b_c01011{margin-left:-16.056000pt;}
._10_c01011{margin-left:-14.213333pt;}
._8_c01011{margin-left:-12.816000pt;}
._1e_c01011{margin-left:-11.264000pt;}
._1f_c01011{margin-left:-10.053333pt;}
._2c_c01011{margin-left:-8.949333pt;}
._14_c01011{margin-left:-7.941333pt;}
._2_c01011{margin-left:-6.272000pt;}
._b_c01011{margin-left:-5.184000pt;}
._3_c01011{margin-left:-4.288000pt;}
._0_c01011{margin-left:-3.093333pt;}
._4_c01011{margin-left:-1.920000pt;}
._12_c01011{margin-left:-0.914667pt;}
._a_c01011{width:1.440000pt;}
._c_c01011{width:2.424000pt;}
._6_c01011{width:3.528000pt;}
._7_c01011{width:5.040000pt;}
._d_c01011{width:6.285333pt;}
._9_c01011{width:7.920000pt;}
._e_c01011{width:9.026667pt;}
._13_c01011{width:10.384000pt;}
._21_c01011{width:11.448000pt;}
._16_c01011{width:12.376000pt;}
._17_c01011{width:13.861333pt;}
._1a_c01011{width:15.240000pt;}
._2d_c01011{width:16.146667pt;}
._27_c01011{width:17.216000pt;}
._2a_c01011{width:20.162667pt;}
._5_c01011{width:23.040000pt;}
._15_c01011{width:25.424000pt;}
._1b_c01011{width:29.992000pt;}
._25_c01011{width:41.472000pt;}
._26_c01011{width:78.597333pt;}
._f_c01011{width:173.770667pt;}
._29_c01011{width:183.464000pt;}
._1_c01011{width:200.640000pt;}
._1c_c01011{width:256.416000pt;}
._19_c01011{width:262.933333pt;}
._23_c01011{width:272.952000pt;}
._11_c01011{width:293.472000pt;}
._18_c01011{width:310.696000pt;}
._1d_c01011{width:331.616000pt;}
._2e_c01011{width:1436.864000pt;}
.fs6_c01011{font-size:42.666667pt;}
.fs3_c01011{font-size:48.000000pt;}
.fs0_c01011{font-size:53.333333pt;}
.fs1_c01011{font-size:64.000000pt;}
.fs5_c01011{font-size:69.333333pt;}
.fs2_c01011{font-size:72.000000pt;}
.fs4_c01011{font-size:77.333333pt;}
.y0_c01011{bottom:0.000000pt;}
.y26_c01011{bottom:2.760000pt;}
.y25_c01011{bottom:6.425219pt;}
.y24_c01011{bottom:49.480000pt;}
.y23_c01011{bottom:67.613333pt;}
.y22_c01011{bottom:90.280000pt;}
.y21_c01011{bottom:112.013333pt;}
.y20_c01011{bottom:134.146667pt;}
.y1f_c01011{bottom:156.280000pt;}
.y1e_c01011{bottom:177.613333pt;}
.y1d_c01011{bottom:198.946667pt;}
.y1c_c01011{bottom:221.480000pt;}
.y1b_c01011{bottom:243.080000pt;}
.y1a_c01011{bottom:264.946667pt;}
.y19_c01011{bottom:287.080000pt;}
.y18_c01011{bottom:308.413333pt;}
.y17_c01011{bottom:330.013333pt;}
.y16_c01011{bottom:351.613333pt;}
.y15_c01011{bottom:373.480000pt;}
.y14_c01011{bottom:394.813333pt;}
.y13_c01011{bottom:416.680000pt;}
.y12_c01011{bottom:438.680000pt;}
.y11_c01011{bottom:459.346667pt;}
.y10_c01011{bottom:480.680000pt;}
.yf_c01011{bottom:502.813333pt;}
.ye_c01011{bottom:523.880000pt;}
.yd_c01011{bottom:545.480000pt;}
.yc_c01011{bottom:566.813333pt;}
.yb_c01011{bottom:589.213333pt;}
.ya_c01011{bottom:612.280000pt;}
.y9_c01011{bottom:632.146667pt;}
.y8_c01011{bottom:654.680000pt;}
.y7_c01011{bottom:675.346667pt;}
.y6_c01011{bottom:699.613333pt;}
.y5_c01011{bottom:718.813333pt;}
.y4_c01011{bottom:740.146667pt;}
.y3_c01011{bottom:761.480000pt;}
.y2_c01011{bottom:783.080000pt;}
.y1_c01011{bottom:838.280000pt;}
.h7_c01011{height:11.733399pt;}
.h8_c01011{height:38.937500pt;}
.h2_c01011{height:52.343750pt;}
.h4_c01011{height:70.664062pt;}
.h3_c01011{height:74.906250pt;}
.h6_c01011{height:87.783854pt;}
.h5_c01011{height:97.912760pt;}
.h1_c01011{height:876.666667pt;}
.h0_c01011{height:876.733333pt;}
.w2_c01011{width:93.222667pt;}
.w0_c01011{width:593.266667pt;}
.w1_c01011{width:593.333333pt;}
.x0_c01011{left:0.000000pt;}
.x3_c01011{left:30.266667pt;}
.x2_c01011{left:35.200000pt;}
.xa_c01011{left:36.400000pt;}
.x8_c01011{left:37.466667pt;}
.xe_c01011{left:39.600000pt;}
.xd_c01011{left:65.466667pt;}
.x9_c01011{left:84.666667pt;}
.x7_c01011{left:108.933333pt;}
.xc_c01011{left:117.600000pt;}
.xb_c01011{left:118.800000pt;}
.x4_c01011{left:120.933333pt;}
.x5_c01011{left:122.400000pt;}
.xf_c01011{left:143.066667pt;}
.x6_c01011{left:150.266667pt;}
.x10_c01011{left:156.000000pt;}
.x1_c01011{left:224.666667pt;}
.x11_c01011{left:253.801554pt;}
}





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

.ir_c01012:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01012{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01012;src:url('chunks/assets/font_971a4eb34534f4aa59daf0df.woff2')format("woff");}.ff1_c01012{font-family:ff1_c01012;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01012;src:url('chunks/assets/font_e22777723610a53ca3ee9050.woff2')format("woff");}.ff2_c01012{font-family:ff2_c01012;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01012;src:url('chunks/assets/font_467f697319f806d072641e09.woff2')format("woff");}.ff3_c01012{font-family:ff3_c01012;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01012;src:url('chunks/assets/font_b9f6390e08d6e0b437bc2cb1.woff2')format("woff");}.ff4_c01012{font-family:ff4_c01012;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01012;src:url('chunks/assets/font_e50957457bac7571d26b868d.woff2')format("woff");}.ff5_c01012{font-family:ff5_c01012;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01012;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c01012{font-family:ff6_c01012;line-height:1.219238;font-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_c01012{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m0_c01012{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01012{vertical-align:0.000000px;}
.ls0_c01012{letter-spacing:0.000000px;}
.ls1_c01012{letter-spacing:9.000000px;}
.sc__c01012{text-shadow:none;}
.sc0_c01012{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01012{-webkit-text-stroke:0px transparent;}
.sc0_c01012{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01012{word-spacing:-31.500000px;}
.ws0_c01012{word-spacing:-22.737000px;}
.ws2_c01012{word-spacing:-20.250000px;}
.ws3_c01012{word-spacing:0.000000px;}
._19_c01012{margin-left:-26.730000px;}
._22_c01012{margin-left:-21.222000px;}
._23_c01012{margin-left:-18.243000px;}
._18_c01012{margin-left:-13.260000px;}
._f_c01012{margin-left:-10.746000px;}
._c_c01012{margin-left:-9.186000px;}
._11_c01012{margin-left:-8.034000px;}
._1a_c01012{margin-left:-6.900000px;}
._8_c01012{margin-left:-5.184000px;}
._12_c01012{margin-left:-3.996000px;}
._a_c01012{margin-left:-2.424000px;}
._14_c01012{margin-left:-1.161000px;}
._9_c01012{width:1.347000px;}
._3_c01012{width:2.349000px;}
._1_c01012{width:3.645000px;}
._0_c01012{width:5.427000px;}
._2_c01012{width:6.561000px;}
._6_c01012{width:8.505000px;}
._4_c01012{width:9.882000px;}
._5_c01012{width:11.664000px;}
._15_c01012{width:13.425000px;}
._7_c01012{width:14.661000px;}
._16_c01012{width:16.464000px;}
._d_c01012{width:17.517000px;}
._17_c01012{width:18.579000px;}
._b_c01012{width:21.087000px;}
._24_c01012{width:22.506000px;}
._13_c01012{width:23.658000px;}
._21_c01012{width:24.705000px;}
._1d_c01012{width:27.216000px;}
._1b_c01012{width:28.434000px;}
._20_c01012{width:29.940000px;}
._1e_c01012{width:32.589000px;}
._1c_c01012{width:34.614000px;}
._10_c01012{width:59.883000px;}
._e_c01012{width:92.754000px;}
._1f_c01012{width:271.269000px;}
._25_c01012{width:504.279000px;}
.fc2_c01012{color:transparent;}
.fc1_c01012{color:rgb(128,128,128);}
.fc0_c01012{color:rgb(0,0,0);}
.fs5_c01012{font-size:48.000000px;}
.fs1_c01012{font-size:57.000000px;}
.fs2_c01012{font-size:63.000000px;}
.fs3_c01012{font-size:78.000000px;}
.fs0_c01012{font-size:81.000000px;}
.fs4_c01012{font-size:108.000000px;}
.y0_c01012{bottom:0.000000px;}
.y25_c01012{bottom:3.105000px;}
.y24_c01012{bottom:7.228369px;}
.y23_c01012{bottom:64.020000px;}
.y22_c01012{bottom:89.070000px;}
.y21_c01012{bottom:114.120000px;}
.y20_c01012{bottom:139.020000px;}
.y1f_c01012{bottom:163.620000px;}
.y1e_c01012{bottom:188.070000px;}
.y1d_c01012{bottom:212.670000px;}
.y1c_c01012{bottom:237.270000px;}
.y1b_c01012{bottom:261.870000px;}
.y1a_c01012{bottom:286.170000px;}
.y19_c01012{bottom:310.470000px;}
.y18_c01012{bottom:335.370000px;}
.y17_c01012{bottom:359.370000px;}
.y16_c01012{bottom:383.670000px;}
.y15_c01012{bottom:407.970000px;}
.y14_c01012{bottom:432.270000px;}
.y13_c01012{bottom:456.570000px;}
.y12_c01012{bottom:480.870000px;}
.y11_c01012{bottom:505.170000px;}
.y10_c01012{bottom:529.770000px;}
.yf_c01012{bottom:553.470000px;}
.ye_c01012{bottom:577.170000px;}
.yd_c01012{bottom:601.020000px;}
.yc_c01012{bottom:625.320000px;}
.yb_c01012{bottom:649.020000px;}
.ya_c01012{bottom:673.020000px;}
.y9_c01012{bottom:697.920000px;}
.y8_c01012{bottom:721.470000px;}
.y7_c01012{bottom:745.770000px;}
.y6_c01012{bottom:769.770000px;}
.y5_c01012{bottom:794.070000px;}
.y4_c01012{bottom:818.670000px;}
.y3_c01012{bottom:842.670000px;}
.y2_c01012{bottom:866.670000px;}
.y1_c01012{bottom:890.970000px;}
.h6_c01012{height:13.200073px;}
.h7_c01012{height:43.804688px;}
.h3_c01012{height:72.168457px;}
.h2_c01012{height:79.497070px;}
.h4_c01012{height:98.756836px;}
.h5_c01012{height:108.843750px;}
.h1_c01012{height:986.250000px;}
.h0_c01012{height:986.550000px;}
.w1_c01012{width:104.875500px;}
.w0_c01012{width:672.000000px;}
.x0_c01012{left:0.000000px;}
.xa_c01012{left:34.500000px;}
.x9_c01012{left:46.200000px;}
.x8_c01012{left:47.250000px;}
.x7_c01012{left:49.050000px;}
.x6_c01012{left:50.700000px;}
.x5_c01012{left:51.750000px;}
.x2_c01012{left:53.250000px;}
.x4_c01012{left:54.750000px;}
.x1_c01012{left:56.250000px;}
.x3_c01012{left:58.500000px;}
.xe_c01012{left:287.814240px;}
.xd_c01012{left:365.850000px;}
.xb_c01012{left:434.700000px;}
.xc_c01012{left:458.700000px;}
@media print{
.v0_c01012{vertical-align:0.000000pt;}
.ls0_c01012{letter-spacing:0.000000pt;}
.ls1_c01012{letter-spacing:8.000000pt;}
.ws1_c01012{word-spacing:-28.000000pt;}
.ws0_c01012{word-spacing:-20.210667pt;}
.ws2_c01012{word-spacing:-18.000000pt;}
.ws3_c01012{word-spacing:0.000000pt;}
._19_c01012{margin-left:-23.760000pt;}
._22_c01012{margin-left:-18.864000pt;}
._23_c01012{margin-left:-16.216000pt;}
._18_c01012{margin-left:-11.786667pt;}
._f_c01012{margin-left:-9.552000pt;}
._c_c01012{margin-left:-8.165333pt;}
._11_c01012{margin-left:-7.141333pt;}
._1a_c01012{margin-left:-6.133333pt;}
._8_c01012{margin-left:-4.608000pt;}
._12_c01012{margin-left:-3.552000pt;}
._a_c01012{margin-left:-2.154667pt;}
._14_c01012{margin-left:-1.032000pt;}
._9_c01012{width:1.197333pt;}
._3_c01012{width:2.088000pt;}
._1_c01012{width:3.240000pt;}
._0_c01012{width:4.824000pt;}
._2_c01012{width:5.832000pt;}
._6_c01012{width:7.560000pt;}
._4_c01012{width:8.784000pt;}
._5_c01012{width:10.368000pt;}
._15_c01012{width:11.933333pt;}
._7_c01012{width:13.032000pt;}
._16_c01012{width:14.634667pt;}
._d_c01012{width:15.570667pt;}
._17_c01012{width:16.514667pt;}
._b_c01012{width:18.744000pt;}
._24_c01012{width:20.005333pt;}
._13_c01012{width:21.029333pt;}
._21_c01012{width:21.960000pt;}
._1d_c01012{width:24.192000pt;}
._1b_c01012{width:25.274667pt;}
._20_c01012{width:26.613333pt;}
._1e_c01012{width:28.968000pt;}
._1c_c01012{width:30.768000pt;}
._10_c01012{width:53.229333pt;}
._e_c01012{width:82.448000pt;}
._1f_c01012{width:241.128000pt;}
._25_c01012{width:448.248000pt;}
.fs5_c01012{font-size:42.666667pt;}
.fs1_c01012{font-size:50.666667pt;}
.fs2_c01012{font-size:56.000000pt;}
.fs3_c01012{font-size:69.333333pt;}
.fs0_c01012{font-size:72.000000pt;}
.fs4_c01012{font-size:96.000000pt;}
.y0_c01012{bottom:0.000000pt;}
.y25_c01012{bottom:2.760000pt;}
.y24_c01012{bottom:6.425217pt;}
.y23_c01012{bottom:56.906667pt;}
.y22_c01012{bottom:79.173333pt;}
.y21_c01012{bottom:101.440000pt;}
.y20_c01012{bottom:123.573333pt;}
.y1f_c01012{bottom:145.440000pt;}
.y1e_c01012{bottom:167.173333pt;}
.y1d_c01012{bottom:189.040000pt;}
.y1c_c01012{bottom:210.906667pt;}
.y1b_c01012{bottom:232.773333pt;}
.y1a_c01012{bottom:254.373333pt;}
.y19_c01012{bottom:275.973333pt;}
.y18_c01012{bottom:298.106667pt;}
.y17_c01012{bottom:319.440000pt;}
.y16_c01012{bottom:341.040000pt;}
.y15_c01012{bottom:362.640000pt;}
.y14_c01012{bottom:384.240000pt;}
.y13_c01012{bottom:405.840000pt;}
.y12_c01012{bottom:427.440000pt;}
.y11_c01012{bottom:449.040000pt;}
.y10_c01012{bottom:470.906667pt;}
.yf_c01012{bottom:491.973333pt;}
.ye_c01012{bottom:513.040000pt;}
.yd_c01012{bottom:534.240000pt;}
.yc_c01012{bottom:555.840000pt;}
.yb_c01012{bottom:576.906667pt;}
.ya_c01012{bottom:598.240000pt;}
.y9_c01012{bottom:620.373333pt;}
.y8_c01012{bottom:641.306667pt;}
.y7_c01012{bottom:662.906667pt;}
.y6_c01012{bottom:684.240000pt;}
.y5_c01012{bottom:705.840000pt;}
.y4_c01012{bottom:727.706667pt;}
.y3_c01012{bottom:749.040000pt;}
.y2_c01012{bottom:770.373333pt;}
.y1_c01012{bottom:791.973333pt;}
.h6_c01012{height:11.733399pt;}
.h7_c01012{height:38.937500pt;}
.h3_c01012{height:64.149740pt;}
.h2_c01012{height:70.664062pt;}
.h4_c01012{height:87.783854pt;}
.h5_c01012{height:96.750000pt;}
.h1_c01012{height:876.666667pt;}
.h0_c01012{height:876.933333pt;}
.w1_c01012{width:93.222667pt;}
.w0_c01012{width:597.333333pt;}
.x0_c01012{left:0.000000pt;}
.xa_c01012{left:30.666667pt;}
.x9_c01012{left:41.066667pt;}
.x8_c01012{left:42.000000pt;}
.x7_c01012{left:43.600000pt;}
.x6_c01012{left:45.066667pt;}
.x5_c01012{left:46.000000pt;}
.x2_c01012{left:47.333333pt;}
.x4_c01012{left:48.666667pt;}
.x1_c01012{left:50.000000pt;}
.x3_c01012{left:52.000000pt;}
.xe_c01012{left:255.834880pt;}
.xd_c01012{left:325.200000pt;}
.xb_c01012{left:386.400000pt;}
.xc_c01012{left:407.733333pt;}
}





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

.ir_c01013:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01013{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01013;src:url('chunks/assets/font_985b37f7966ed821a3bfa638.woff2')format("woff");}.ff1_c01013{font-family:ff1_c01013;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01013;src:url('chunks/assets/font_288f7ab648d1ad07c9f091c3.woff2')format("woff");}.ff2_c01013{font-family:ff2_c01013;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01013;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff3_c01013{font-family:ff3_c01013;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01013;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff4_c01013{font-family:ff4_c01013;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01013{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01013{vertical-align:0.000000px;}
.ls1_c01013{letter-spacing:-3.000000px;}
.ls0_c01013{letter-spacing:0.000000px;}
.sc__c01013{text-shadow:none;}
.sc0_c01013{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01013{-webkit-text-stroke:0px transparent;}
.sc0_c01013{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01013{word-spacing:0.000000px;}
.ws0_c01013{word-spacing:4.824000px;}
._20_c01013{margin-left:-23.640000px;}
._17_c01013{margin-left:-21.132000px;}
._1c_c01013{margin-left:-19.764000px;}
._1b_c01013{margin-left:-11.502000px;}
._f_c01013{margin-left:-9.963000px;}
._5_c01013{margin-left:-8.019000px;}
._15_c01013{margin-left:-6.642000px;}
._3_c01013{margin-left:-5.265000px;}
._7_c01013{margin-left:-3.159000px;}
._6_c01013{margin-left:-2.106000px;}
._12_c01013{margin-left:-1.053000px;}
._4_c01013{width:1.215000px;}
._0_c01013{width:2.673000px;}
._2_c01013{width:4.131000px;}
._1_c01013{width:5.427000px;}
._8_c01013{width:7.209000px;}
._9_c01013{width:8.343000px;}
._a_c01013{width:9.720000px;}
._b_c01013{width:11.016000px;}
._c_c01013{width:12.717000px;}
._10_c01013{width:13.770000px;}
._d_c01013{width:14.823000px;}
._13_c01013{width:15.957000px;}
._e_c01013{width:17.010000px;}
._1f_c01013{width:18.711000px;}
._1d_c01013{width:21.384000px;}
._11_c01013{width:25.434000px;}
._1a_c01013{width:27.135000px;}
._16_c01013{width:30.591000px;}
._19_c01013{width:33.237000px;}
._18_c01013{width:37.017000px;}
._14_c01013{width:40.095000px;}
._21_c01013{width:60.000000px;}
._1e_c01013{width:348.615000px;}
._22_c01013{width:1424.790000px;}
.fc2_c01013{color:transparent;}
.fc1_c01013{color:rgb(128,128,128);}
.fc0_c01013{color:rgb(0,0,0);}
.fs3_c01013{font-size:48.000000px;}
.fs2_c01013{font-size:60.000000px;}
.fs1_c01013{font-size:72.000000px;}
.fs0_c01013{font-size:81.000000px;}
.y0_c01013{bottom:0.000000px;}
.y25_c01013{bottom:3.105000px;}
.y24_c01013{bottom:7.228369px;}
.y23_c01013{bottom:39.870000px;}
.y22_c01013{bottom:64.170000px;}
.y21_c01013{bottom:90.420000px;}
.y20_c01013{bottom:115.320000px;}
.y1f_c01013{bottom:140.070000px;}
.y1e_c01013{bottom:164.070000px;}
.y1d_c01013{bottom:188.370000px;}
.y1c_c01013{bottom:213.270000px;}
.y1b_c01013{bottom:237.570000px;}
.y1a_c01013{bottom:262.470000px;}
.y19_c01013{bottom:286.620000px;}
.y18_c01013{bottom:311.220000px;}
.y17_c01013{bottom:335.820000px;}
.y16_c01013{bottom:360.120000px;}
.y15_c01013{bottom:384.420000px;}
.y14_c01013{bottom:408.720000px;}
.y13_c01013{bottom:432.720000px;}
.y12_c01013{bottom:457.620000px;}
.y11_c01013{bottom:481.320000px;}
.y10_c01013{bottom:505.470000px;}
.yf_c01013{bottom:529.470000px;}
.ye_c01013{bottom:553.770000px;}
.yd_c01013{bottom:578.070000px;}
.yc_c01013{bottom:602.370000px;}
.yb_c01013{bottom:626.070000px;}
.ya_c01013{bottom:650.670000px;}
.y9_c01013{bottom:674.670000px;}
.y8_c01013{bottom:698.670000px;}
.y7_c01013{bottom:723.270000px;}
.y6_c01013{bottom:747.270000px;}
.y5_c01013{bottom:771.120000px;}
.y4_c01013{bottom:795.120000px;}
.y3_c01013{bottom:819.420000px;}
.y2_c01013{bottom:843.420000px;}
.y1_c01013{bottom:867.720000px;}
.h5_c01013{height:13.200073px;}
.h6_c01013{height:43.804688px;}
.h2_c01013{height:79.497070px;}
.h3_c01013{height:84.269531px;}
.h4_c01013{height:91.160156px;}
.h1_c01013{height:972.750000px;}
.h0_c01013{height:973.050000px;}
.w2_c01013{width:104.875500px;}
.w0_c01013{width:658.275000px;}
.w1_c01013{width:658.500000px;}
.x0_c01013{left:0.000000px;}
.x9_c01013{left:15.900000px;}
.x6_c01013{left:17.550000px;}
.x5_c01013{left:30.300000px;}
.x7_c01013{left:109.950000px;}
.x1_c01013{left:111.000000px;}
.x4_c01013{left:112.050000px;}
.x2_c01013{left:114.300000px;}
.x3_c01013{left:136.350000px;}
.x8_c01013{left:138.600000px;}
.xa_c01013{left:167.100000px;}
.xb_c01013{left:280.951767px;}
@media print{
.v0_c01013{vertical-align:0.000000pt;}
.ls1_c01013{letter-spacing:-2.666667pt;}
.ls0_c01013{letter-spacing:0.000000pt;}
.ws1_c01013{word-spacing:0.000000pt;}
.ws0_c01013{word-spacing:4.288000pt;}
._20_c01013{margin-left:-21.013333pt;}
._17_c01013{margin-left:-18.784000pt;}
._1c_c01013{margin-left:-17.568000pt;}
._1b_c01013{margin-left:-10.224000pt;}
._f_c01013{margin-left:-8.856000pt;}
._5_c01013{margin-left:-7.128000pt;}
._15_c01013{margin-left:-5.904000pt;}
._3_c01013{margin-left:-4.680000pt;}
._7_c01013{margin-left:-2.808000pt;}
._6_c01013{margin-left:-1.872000pt;}
._12_c01013{margin-left:-0.936000pt;}
._4_c01013{width:1.080000pt;}
._0_c01013{width:2.376000pt;}
._2_c01013{width:3.672000pt;}
._1_c01013{width:4.824000pt;}
._8_c01013{width:6.408000pt;}
._9_c01013{width:7.416000pt;}
._a_c01013{width:8.640000pt;}
._b_c01013{width:9.792000pt;}
._c_c01013{width:11.304000pt;}
._10_c01013{width:12.240000pt;}
._d_c01013{width:13.176000pt;}
._13_c01013{width:14.184000pt;}
._e_c01013{width:15.120000pt;}
._1f_c01013{width:16.632000pt;}
._1d_c01013{width:19.008000pt;}
._11_c01013{width:22.608000pt;}
._1a_c01013{width:24.120000pt;}
._16_c01013{width:27.192000pt;}
._19_c01013{width:29.544000pt;}
._18_c01013{width:32.904000pt;}
._14_c01013{width:35.640000pt;}
._21_c01013{width:53.333333pt;}
._1e_c01013{width:309.880000pt;}
._22_c01013{width:1266.480000pt;}
.fs3_c01013{font-size:42.666667pt;}
.fs2_c01013{font-size:53.333333pt;}
.fs1_c01013{font-size:64.000000pt;}
.fs0_c01013{font-size:72.000000pt;}
.y0_c01013{bottom:0.000000pt;}
.y25_c01013{bottom:2.760000pt;}
.y24_c01013{bottom:6.425217pt;}
.y23_c01013{bottom:35.440000pt;}
.y22_c01013{bottom:57.040000pt;}
.y21_c01013{bottom:80.373333pt;}
.y20_c01013{bottom:102.506667pt;}
.y1f_c01013{bottom:124.506667pt;}
.y1e_c01013{bottom:145.840000pt;}
.y1d_c01013{bottom:167.440000pt;}
.y1c_c01013{bottom:189.573333pt;}
.y1b_c01013{bottom:211.173333pt;}
.y1a_c01013{bottom:233.306667pt;}
.y19_c01013{bottom:254.773333pt;}
.y18_c01013{bottom:276.640000pt;}
.y17_c01013{bottom:298.506667pt;}
.y16_c01013{bottom:320.106667pt;}
.y15_c01013{bottom:341.706667pt;}
.y14_c01013{bottom:363.306667pt;}
.y13_c01013{bottom:384.640000pt;}
.y12_c01013{bottom:406.773333pt;}
.y11_c01013{bottom:427.840000pt;}
.y10_c01013{bottom:449.306667pt;}
.yf_c01013{bottom:470.640000pt;}
.ye_c01013{bottom:492.240000pt;}
.yd_c01013{bottom:513.840000pt;}
.yc_c01013{bottom:535.440000pt;}
.yb_c01013{bottom:556.506667pt;}
.ya_c01013{bottom:578.373333pt;}
.y9_c01013{bottom:599.706667pt;}
.y8_c01013{bottom:621.040000pt;}
.y7_c01013{bottom:642.906667pt;}
.y6_c01013{bottom:664.240000pt;}
.y5_c01013{bottom:685.440000pt;}
.y4_c01013{bottom:706.773333pt;}
.y3_c01013{bottom:728.373333pt;}
.y2_c01013{bottom:749.706667pt;}
.y1_c01013{bottom:771.306667pt;}
.h5_c01013{height:11.733399pt;}
.h6_c01013{height:38.937500pt;}
.h2_c01013{height:70.664062pt;}
.h3_c01013{height:74.906250pt;}
.h4_c01013{height:81.031250pt;}
.h1_c01013{height:864.666667pt;}
.h0_c01013{height:864.933333pt;}
.w2_c01013{width:93.222667pt;}
.w0_c01013{width:585.133333pt;}
.w1_c01013{width:585.333333pt;}
.x0_c01013{left:0.000000pt;}
.x9_c01013{left:14.133333pt;}
.x6_c01013{left:15.600000pt;}
.x5_c01013{left:26.933333pt;}
.x7_c01013{left:97.733333pt;}
.x1_c01013{left:98.666667pt;}
.x4_c01013{left:99.600000pt;}
.x2_c01013{left:101.600000pt;}
.x3_c01013{left:121.200000pt;}
.x8_c01013{left:123.200000pt;}
.xa_c01013{left:148.533333pt;}
.xb_c01013{left:249.734904pt;}
}





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

.ir_c01014:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01014{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01014;src:url('chunks/assets/font_7c5b8b538667802aa70ec62c.woff2')format("woff");}.ff1_c01014{font-family:ff1_c01014;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01014;src:url('chunks/assets/font_fd24c552df64241f52aa99a1.woff2')format("woff");}.ff2_c01014{font-family:ff2_c01014;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01014;src:url('chunks/assets/font_33672f5c715dde0e700b428f.woff2')format("woff");}.ff3_c01014{font-family:ff3_c01014;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01014;src:url('chunks/assets/font_ad5da8d99408aa436c4e04f8.woff2')format("woff");}.ff4_c01014{font-family:ff4_c01014;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01014;src:url('chunks/assets/font_62711eb6244cf500c7a4b472.woff2')format("woff");}.ff5_c01014{font-family:ff5_c01014;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01014;src:url('chunks/assets/font_93a2339c23fa3b7e924c0fa7.woff2')format("woff");}.ff6_c01014{font-family:ff6_c01014;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01014;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c01014{font-family:ff7_c01014;line-height:1.219238;font-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_c01014{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m0_c01014{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01014{vertical-align:0.000000px;}
.v1_c01014{vertical-align:158.400000px;}
.ls4_c01014{letter-spacing:-6.000000px;}
.ls2_c01014{letter-spacing:0.000000px;}
.ls3_c01014{letter-spacing:3.000000px;}
.ls0_c01014{letter-spacing:11.786400px;}
.ls1_c01014{letter-spacing:32.583000px;}
.sc__c01014{text-shadow:none;}
.sc0_c01014{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01014{-webkit-text-stroke:0px transparent;}
.sc0_c01014{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c01014{word-spacing:-72.000000px;}
.ws3_c01014{word-spacing:-1.683000px;}
.ws0_c01014{word-spacing:-0.306000px;}
.ws5_c01014{word-spacing:0.000000px;}
.ws2_c01014{word-spacing:1.326000px;}
.ws1_c01014{word-spacing:239.176800px;}
._1f_c01014{margin-left:-20.736000px;}
._1e_c01014{margin-left:-17.091000px;}
._c_c01014{margin-left:-14.094000px;}
._d_c01014{margin-left:-11.421000px;}
._1c_c01014{margin-left:-10.206000px;}
._1a_c01014{margin-left:-8.505000px;}
._3_c01014{margin-left:-7.371000px;}
._b_c01014{margin-left:-5.265000px;}
._11_c01014{margin-left:-3.402000px;}
._8_c01014{margin-left:-2.187000px;}
._10_c01014{margin-left:-1.053000px;}
._1_c01014{width:1.377000px;}
._0_c01014{width:2.673000px;}
._5_c01014{width:3.807000px;}
._4_c01014{width:4.860000px;}
._2_c01014{width:6.318000px;}
._6_c01014{width:7.776000px;}
._a_c01014{width:9.315000px;}
._7_c01014{width:11.016000px;}
._f_c01014{width:12.474000px;}
._13_c01014{width:14.202000px;}
._9_c01014{width:15.633000px;}
._16_c01014{width:17.049000px;}
._17_c01014{width:18.156000px;}
._14_c01014{width:19.962000px;}
._12_c01014{width:21.870000px;}
._18_c01014{width:23.901000px;}
._e_c01014{width:31.752000px;}
._1d_c01014{width:65.205000px;}
._19_c01014{width:82.914000px;}
._1b_c01014{width:275.625000px;}
._15_c01014{width:308.304000px;}
._20_c01014{width:482.976000px;}
.fc2_c01014{color:transparent;}
.fc1_c01014{color:rgb(128,128,128);}
.fc0_c01014{color:rgb(0,0,0);}
.fs2_c01014{font-size:40.800000px;}
.fs3_c01014{font-size:42.000000px;}
.fs8_c01014{font-size:48.000000px;}
.fs1_c01014{font-size:51.000000px;}
.fs0_c01014{font-size:81.000000px;}
.fs6_c01014{font-size:105.000000px;}
.fs5_c01014{font-size:108.000000px;}
.fs7_c01014{font-size:207.000000px;}
.fs4_c01014{font-size:288.000000px;}
.y0_c01014{bottom:0.000000px;}
.y25_c01014{bottom:3.105000px;}
.y24_c01014{bottom:7.228369px;}
.y23_c01014{bottom:10.170000px;}
.y22_c01014{bottom:61.020000px;}
.y21_c01014{bottom:86.970000px;}
.y20_c01014{bottom:112.320000px;}
.y1f_c01014{bottom:136.320000px;}
.y1e_c01014{bottom:160.620000px;}
.y1d_c01014{bottom:184.920000px;}
.y1c_c01014{bottom:209.220000px;}
.y1b_c01014{bottom:233.820000px;}
.y1a_c01014{bottom:257.820000px;}
.y19_c01014{bottom:282.120000px;}
.y18_c01014{bottom:305.820000px;}
.y17_c01014{bottom:330.120000px;}
.y16_c01014{bottom:354.420000px;}
.y15_c01014{bottom:378.570000px;}
.y13_c01014{bottom:387.270000px;}
.y14_c01014{bottom:402.870000px;}
.y12_c01014{bottom:451.170000px;}
.y11_c01014{bottom:498.420000px;}
.y10_c01014{bottom:522.420000px;}
.yf_c01014{bottom:546.720000px;}
.ye_c01014{bottom:570.420000px;}
.yd_c01014{bottom:594.570000px;}
.yc_c01014{bottom:618.270000px;}
.yb_c01014{bottom:642.870000px;}
.ya_c01014{bottom:666.270000px;}
.y9_c01014{bottom:689.820000px;}
.y8_c01014{bottom:715.470000px;}
.y7_c01014{bottom:738.720000px;}
.y6_c01014{bottom:762.120000px;}
.y5_c01014{bottom:786.420000px;}
.y4_c01014{bottom:810.570000px;}
.y3_c01014{bottom:834.870000px;}
.y2_c01014{bottom:858.570000px;}
.y1_c01014{bottom:883.470000px;}
.h9_c01014{height:13.200073px;}
.ha_c01014{height:43.804688px;}
.h3_c01014{height:50.028809px;}
.h4_c01014{height:50.053711px;}
.h2_c01014{height:79.497070px;}
.h6_c01014{height:108.843750px;}
.h7_c01014{height:122.893066px;}
.h8_c01014{height:212.763381px;}
.h5_c01014{height:282.656250px;}
.h1_c01014{height:986.250000px;}
.h0_c01014{height:986.550000px;}
.w1_c01014{width:104.875500px;}
.w0_c01014{width:672.000000px;}
.x0_c01014{left:0.000000px;}
.x1_c01014{left:54.450000px;}
.x2_c01014{left:56.400000px;}
.x4_c01014{left:57.750000px;}
.x5_c01014{left:59.400000px;}
.x9_c01014{left:60.750000px;}
.x7_c01014{left:61.800000px;}
.xa_c01014{left:63.000000px;}
.x8_c01014{left:100.950000px;}
.x3_c01014{left:113.400000px;}
.x6_c01014{left:187.200000px;}
.xf_c01014{left:287.814240px;}
.xe_c01014{left:328.950000px;}
.xb_c01014{left:358.650000px;}
.xc_c01014{left:383.400000px;}
.xd_c01014{left:395.100000px;}
@media print{
.v0_c01014{vertical-align:0.000000pt;}
.v1_c01014{vertical-align:140.800000pt;}
.ls4_c01014{letter-spacing:-5.333333pt;}
.ls2_c01014{letter-spacing:0.000000pt;}
.ls3_c01014{letter-spacing:2.666667pt;}
.ls0_c01014{letter-spacing:10.476800pt;}
.ls1_c01014{letter-spacing:28.962667pt;}
.ws4_c01014{word-spacing:-64.000000pt;}
.ws3_c01014{word-spacing:-1.496000pt;}
.ws0_c01014{word-spacing:-0.272000pt;}
.ws5_c01014{word-spacing:0.000000pt;}
.ws2_c01014{word-spacing:1.178667pt;}
.ws1_c01014{word-spacing:212.601600pt;}
._1f_c01014{margin-left:-18.432000pt;}
._1e_c01014{margin-left:-15.192000pt;}
._c_c01014{margin-left:-12.528000pt;}
._d_c01014{margin-left:-10.152000pt;}
._1c_c01014{margin-left:-9.072000pt;}
._1a_c01014{margin-left:-7.560000pt;}
._3_c01014{margin-left:-6.552000pt;}
._b_c01014{margin-left:-4.680000pt;}
._11_c01014{margin-left:-3.024000pt;}
._8_c01014{margin-left:-1.944000pt;}
._10_c01014{margin-left:-0.936000pt;}
._1_c01014{width:1.224000pt;}
._0_c01014{width:2.376000pt;}
._5_c01014{width:3.384000pt;}
._4_c01014{width:4.320000pt;}
._2_c01014{width:5.616000pt;}
._6_c01014{width:6.912000pt;}
._a_c01014{width:8.280000pt;}
._7_c01014{width:9.792000pt;}
._f_c01014{width:11.088000pt;}
._13_c01014{width:12.624000pt;}
._9_c01014{width:13.896000pt;}
._16_c01014{width:15.154667pt;}
._17_c01014{width:16.138667pt;}
._14_c01014{width:17.744000pt;}
._12_c01014{width:19.440000pt;}
._18_c01014{width:21.245333pt;}
._e_c01014{width:28.224000pt;}
._1d_c01014{width:57.960000pt;}
._19_c01014{width:73.701333pt;}
._1b_c01014{width:245.000000pt;}
._15_c01014{width:274.048000pt;}
._20_c01014{width:429.312000pt;}
.fs2_c01014{font-size:36.266667pt;}
.fs3_c01014{font-size:37.333333pt;}
.fs8_c01014{font-size:42.666667pt;}
.fs1_c01014{font-size:45.333333pt;}
.fs0_c01014{font-size:72.000000pt;}
.fs6_c01014{font-size:93.333333pt;}
.fs5_c01014{font-size:96.000000pt;}
.fs7_c01014{font-size:184.000000pt;}
.fs4_c01014{font-size:256.000000pt;}
.y0_c01014{bottom:0.000000pt;}
.y25_c01014{bottom:2.760000pt;}
.y24_c01014{bottom:6.425217pt;}
.y23_c01014{bottom:9.040000pt;}
.y22_c01014{bottom:54.240000pt;}
.y21_c01014{bottom:77.306667pt;}
.y20_c01014{bottom:99.840000pt;}
.y1f_c01014{bottom:121.173333pt;}
.y1e_c01014{bottom:142.773333pt;}
.y1d_c01014{bottom:164.373333pt;}
.y1c_c01014{bottom:185.973333pt;}
.y1b_c01014{bottom:207.840000pt;}
.y1a_c01014{bottom:229.173333pt;}
.y19_c01014{bottom:250.773333pt;}
.y18_c01014{bottom:271.840000pt;}
.y17_c01014{bottom:293.440000pt;}
.y16_c01014{bottom:315.040000pt;}
.y15_c01014{bottom:336.506667pt;}
.y13_c01014{bottom:344.240000pt;}
.y14_c01014{bottom:358.106667pt;}
.y12_c01014{bottom:401.040000pt;}
.y11_c01014{bottom:443.040000pt;}
.y10_c01014{bottom:464.373333pt;}
.yf_c01014{bottom:485.973333pt;}
.ye_c01014{bottom:507.040000pt;}
.yd_c01014{bottom:528.506667pt;}
.yc_c01014{bottom:549.573333pt;}
.yb_c01014{bottom:571.440000pt;}
.ya_c01014{bottom:592.240000pt;}
.y9_c01014{bottom:613.173333pt;}
.y8_c01014{bottom:635.973333pt;}
.y7_c01014{bottom:656.640000pt;}
.y6_c01014{bottom:677.440000pt;}
.y5_c01014{bottom:699.040000pt;}
.y4_c01014{bottom:720.506667pt;}
.y3_c01014{bottom:742.106667pt;}
.y2_c01014{bottom:763.173333pt;}
.y1_c01014{bottom:785.306667pt;}
.h9_c01014{height:11.733399pt;}
.ha_c01014{height:38.937500pt;}
.h3_c01014{height:44.470052pt;}
.h4_c01014{height:44.492188pt;}
.h2_c01014{height:70.664062pt;}
.h6_c01014{height:96.750000pt;}
.h7_c01014{height:109.238281pt;}
.h8_c01014{height:189.123005pt;}
.h5_c01014{height:251.250000pt;}
.h1_c01014{height:876.666667pt;}
.h0_c01014{height:876.933333pt;}
.w1_c01014{width:93.222667pt;}
.w0_c01014{width:597.333333pt;}
.x0_c01014{left:0.000000pt;}
.x1_c01014{left:48.400000pt;}
.x2_c01014{left:50.133333pt;}
.x4_c01014{left:51.333333pt;}
.x5_c01014{left:52.800000pt;}
.x9_c01014{left:54.000000pt;}
.x7_c01014{left:54.933333pt;}
.xa_c01014{left:56.000000pt;}
.x8_c01014{left:89.733333pt;}
.x3_c01014{left:100.800000pt;}
.x6_c01014{left:166.400000pt;}
.xf_c01014{left:255.834880pt;}
.xe_c01014{left:292.400000pt;}
.xb_c01014{left:318.800000pt;}
.xc_c01014{left:340.800000pt;}
.xd_c01014{left:351.200000pt;}
}





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

.ir_c01015:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01015{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01015;src:url('chunks/assets/font_2cfefca105dc871fa9a628ff.woff2')format("woff");}.ff1_c01015{font-family:ff1_c01015;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01015;src:url('chunks/assets/font_974310224e045e586517922a.woff2')format("woff");}.ff2_c01015{font-family:ff2_c01015;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01015;src:url('chunks/assets/font_b36f346726698063a1b14f1f.woff2')format("woff");}.ff3_c01015{font-family:ff3_c01015;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01015;src:url('chunks/assets/font_e0a75636ac170d38d2def670.woff2')format("woff");}.ff4_c01015{font-family:ff4_c01015;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01015;src:url('chunks/assets/font_a4cd6091cc1fe028dce890cb.woff2')format("woff");}.ff5_c01015{font-family:ff5_c01015;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01015;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c01015{font-family:ff6_c01015;line-height:1.219238;font-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_c01015{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m0_c01015{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01015{vertical-align:0.000000px;}
.ls3_c01015{letter-spacing:0.000000px;}
.ls2_c01015{letter-spacing:4.896000px;}
.ls4_c01015{letter-spacing:12.000000px;}
.ls1_c01015{letter-spacing:22.800000px;}
.ls0_c01015{letter-spacing:314.400000px;}
.sc__c01015{text-shadow:none;}
.sc0_c01015{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01015{-webkit-text-stroke:0px transparent;}
.sc0_c01015{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01015{word-spacing:-30.000000px;}
.ws4_c01015{word-spacing:-27.000000px;}
.ws3_c01015{word-spacing:-20.250000px;}
.ws1_c01015{word-spacing:-19.500000px;}
.ws0_c01015{word-spacing:-18.000000px;}
.ws5_c01015{word-spacing:0.000000px;}
._26_c01015{margin-left:-24.345000px;}
._1a_c01015{margin-left:-22.599000px;}
._11_c01015{margin-left:-20.007000px;}
._20_c01015{margin-left:-16.776000px;}
._24_c01015{margin-left:-15.120000px;}
._1c_c01015{margin-left:-13.365000px;}
._25_c01015{margin-left:-11.376000px;}
._1b_c01015{margin-left:-10.368000px;}
._27_c01015{margin-left:-8.979000px;}
._b_c01015{margin-left:-7.047000px;}
._e_c01015{margin-left:-5.670000px;}
._19_c01015{margin-left:-4.617000px;}
._4_c01015{margin-left:-3.564000px;}
._0_c01015{margin-left:-1.539000px;}
._9_c01015{width:1.215000px;}
._6_c01015{width:2.268000px;}
._1_c01015{width:3.402000px;}
._21_c01015{width:4.422000px;}
._2_c01015{width:5.427000px;}
._3_c01015{width:7.452000px;}
._5_c01015{width:8.586000px;}
._8_c01015{width:9.882000px;}
._c_c01015{width:11.097000px;}
._d_c01015{width:12.231000px;}
._a_c01015{width:13.608000px;}
._7_c01015{width:15.228000px;}
._18_c01015{width:16.362000px;}
._16_c01015{width:17.982000px;}
._14_c01015{width:19.197000px;}
._28_c01015{width:20.655000px;}
._15_c01015{width:21.708000px;}
._10_c01015{width:23.733000px;}
._13_c01015{width:25.758000px;}
._f_c01015{width:27.135000px;}
._17_c01015{width:28.755000px;}
._2a_c01015{width:30.462000px;}
._22_c01015{width:33.198000px;}
._12_c01015{width:34.506000px;}
._1e_c01015{width:60.912000px;}
._23_c01015{width:65.667000px;}
._1d_c01015{width:87.723000px;}
._1f_c01015{width:127.332000px;}
._29_c01015{width:130.896000px;}
.fc2_c01015{color:transparent;}
.fc1_c01015{color:rgb(128,128,128);}
.fc0_c01015{color:rgb(0,0,0);}
.fs4_c01015{font-size:48.000000px;}
.fs1_c01015{font-size:72.000000px;}
.fs2_c01015{font-size:78.000000px;}
.fs0_c01015{font-size:81.000000px;}
.fs3_c01015{font-size:108.000000px;}
.y0_c01015{bottom:0.000000px;}
.y24_c01015{bottom:3.105000px;}
.y23_c01015{bottom:7.228371px;}
.y22_c01015{bottom:50.415000px;}
.y21_c01015{bottom:72.615000px;}
.y20_c01015{bottom:97.965000px;}
.y1f_c01015{bottom:121.965000px;}
.y1e_c01015{bottom:145.815000px;}
.y1d_c01015{bottom:170.115000px;}
.y1c_c01015{bottom:219.465000px;}
.y1b_c01015{bottom:243.765000px;}
.y1a_c01015{bottom:269.415000px;}
.y19_c01015{bottom:292.665000px;}
.y18_c01015{bottom:317.265000px;}
.y17_c01015{bottom:341.565000px;}
.y16_c01015{bottom:365.865000px;}
.y15_c01015{bottom:390.615000px;}
.y14_c01015{bottom:414.765000px;}
.y13_c01015{bottom:439.065000px;}
.y12_c01015{bottom:463.365000px;}
.y11_c01015{bottom:487.065000px;}
.y10_c01015{bottom:511.065000px;}
.yf_c01015{bottom:534.915000px;}
.ye_c01015{bottom:558.915000px;}
.yd_c01015{bottom:583.665000px;}
.yc_c01015{bottom:607.515000px;}
.yb_c01015{bottom:632.265000px;}
.ya_c01015{bottom:656.415000px;}
.y9_c01015{bottom:680.715000px;}
.y8_c01015{bottom:704.715000px;}
.y7_c01015{bottom:729.315000px;}
.y6_c01015{bottom:752.715000px;}
.y5_c01015{bottom:777.315000px;}
.y4_c01015{bottom:801.315000px;}
.y3_c01015{bottom:825.315000px;}
.y2_c01015{bottom:849.615000px;}
.y1_c01015{bottom:873.765000px;}
.h7_c01015{height:13.200074px;}
.h8_c01015{height:43.804688px;}
.h4_c01015{height:72.562500px;}
.h5_c01015{height:76.552734px;}
.h2_c01015{height:79.497070px;}
.h3_c01015{height:84.269531px;}
.h6_c01015{height:108.843750px;}
.h1_c01015{height:986.250000px;}
.h0_c01015{height:986.325000px;}
.w2_c01015{width:104.875500px;}
.w0_c01015{width:667.425000px;}
.w1_c01015{width:667.500000px;}
.x0_c01015{left:0.000000px;}
.xa_c01015{left:32.700000px;}
.x7_c01015{left:94.050000px;}
.x9_c01015{left:100.800000px;}
.xb_c01015{left:121.500000px;}
.xc_c01015{left:122.850000px;}
.x8_c01015{left:125.100000px;}
.x6_c01015{left:127.950000px;}
.x5_c01015{left:129.150000px;}
.x1_c01015{left:130.200000px;}
.x3_c01015{left:131.700000px;}
.x2_c01015{left:133.350000px;}
.x4_c01015{left:156.600000px;}
.xe_c01015{left:285.526749px;}
.xd_c01015{left:573.150000px;}
@media print{
.v0_c01015{vertical-align:0.000000pt;}
.ls3_c01015{letter-spacing:0.000000pt;}
.ls2_c01015{letter-spacing:4.352000pt;}
.ls4_c01015{letter-spacing:10.666667pt;}
.ls1_c01015{letter-spacing:20.266667pt;}
.ls0_c01015{letter-spacing:279.466667pt;}
.ws2_c01015{word-spacing:-26.666667pt;}
.ws4_c01015{word-spacing:-24.000000pt;}
.ws3_c01015{word-spacing:-18.000000pt;}
.ws1_c01015{word-spacing:-17.333333pt;}
.ws0_c01015{word-spacing:-16.000000pt;}
.ws5_c01015{word-spacing:0.000000pt;}
._26_c01015{margin-left:-21.640000pt;}
._1a_c01015{margin-left:-20.088000pt;}
._11_c01015{margin-left:-17.784000pt;}
._20_c01015{margin-left:-14.912000pt;}
._24_c01015{margin-left:-13.440000pt;}
._1c_c01015{margin-left:-11.880000pt;}
._25_c01015{margin-left:-10.112000pt;}
._1b_c01015{margin-left:-9.216000pt;}
._27_c01015{margin-left:-7.981333pt;}
._b_c01015{margin-left:-6.264000pt;}
._e_c01015{margin-left:-5.040000pt;}
._19_c01015{margin-left:-4.104000pt;}
._4_c01015{margin-left:-3.168000pt;}
._0_c01015{margin-left:-1.368000pt;}
._9_c01015{width:1.080000pt;}
._6_c01015{width:2.016000pt;}
._1_c01015{width:3.024000pt;}
._21_c01015{width:3.930667pt;}
._2_c01015{width:4.824000pt;}
._3_c01015{width:6.624000pt;}
._5_c01015{width:7.632000pt;}
._8_c01015{width:8.784000pt;}
._c_c01015{width:9.864000pt;}
._d_c01015{width:10.872000pt;}
._a_c01015{width:12.096000pt;}
._7_c01015{width:13.536000pt;}
._18_c01015{width:14.544000pt;}
._16_c01015{width:15.984000pt;}
._14_c01015{width:17.064000pt;}
._28_c01015{width:18.360000pt;}
._15_c01015{width:19.296000pt;}
._10_c01015{width:21.096000pt;}
._13_c01015{width:22.896000pt;}
._f_c01015{width:24.120000pt;}
._17_c01015{width:25.560000pt;}
._2a_c01015{width:27.077333pt;}
._22_c01015{width:29.509333pt;}
._12_c01015{width:30.672000pt;}
._1e_c01015{width:54.144000pt;}
._23_c01015{width:58.370667pt;}
._1d_c01015{width:77.976000pt;}
._1f_c01015{width:113.184000pt;}
._29_c01015{width:116.352000pt;}
.fs4_c01015{font-size:42.666667pt;}
.fs1_c01015{font-size:64.000000pt;}
.fs2_c01015{font-size:69.333333pt;}
.fs0_c01015{font-size:72.000000pt;}
.fs3_c01015{font-size:96.000000pt;}
.y0_c01015{bottom:0.000000pt;}
.y24_c01015{bottom:2.760000pt;}
.y23_c01015{bottom:6.425219pt;}
.y22_c01015{bottom:44.813333pt;}
.y21_c01015{bottom:64.546667pt;}
.y20_c01015{bottom:87.080000pt;}
.y1f_c01015{bottom:108.413333pt;}
.y1e_c01015{bottom:129.613333pt;}
.y1d_c01015{bottom:151.213333pt;}
.y1c_c01015{bottom:195.080000pt;}
.y1b_c01015{bottom:216.680000pt;}
.y1a_c01015{bottom:239.480000pt;}
.y19_c01015{bottom:260.146667pt;}
.y18_c01015{bottom:282.013333pt;}
.y17_c01015{bottom:303.613333pt;}
.y16_c01015{bottom:325.213333pt;}
.y15_c01015{bottom:347.213333pt;}
.y14_c01015{bottom:368.680000pt;}
.y13_c01015{bottom:390.280000pt;}
.y12_c01015{bottom:411.880000pt;}
.y11_c01015{bottom:432.946667pt;}
.y10_c01015{bottom:454.280000pt;}
.yf_c01015{bottom:475.480000pt;}
.ye_c01015{bottom:496.813333pt;}
.yd_c01015{bottom:518.813333pt;}
.yc_c01015{bottom:540.013333pt;}
.yb_c01015{bottom:562.013333pt;}
.ya_c01015{bottom:583.480000pt;}
.y9_c01015{bottom:605.080000pt;}
.y8_c01015{bottom:626.413333pt;}
.y7_c01015{bottom:648.280000pt;}
.y6_c01015{bottom:669.080000pt;}
.y5_c01015{bottom:690.946667pt;}
.y4_c01015{bottom:712.280000pt;}
.y3_c01015{bottom:733.613333pt;}
.y2_c01015{bottom:755.213333pt;}
.y1_c01015{bottom:776.680000pt;}
.h7_c01015{height:11.733399pt;}
.h8_c01015{height:38.937500pt;}
.h4_c01015{height:64.500000pt;}
.h5_c01015{height:68.046875pt;}
.h2_c01015{height:70.664062pt;}
.h3_c01015{height:74.906250pt;}
.h6_c01015{height:96.750000pt;}
.h1_c01015{height:876.666667pt;}
.h0_c01015{height:876.733333pt;}
.w2_c01015{width:93.222667pt;}
.w0_c01015{width:593.266667pt;}
.w1_c01015{width:593.333333pt;}
.x0_c01015{left:0.000000pt;}
.xa_c01015{left:29.066667pt;}
.x7_c01015{left:83.600000pt;}
.x9_c01015{left:89.600000pt;}
.xb_c01015{left:108.000000pt;}
.xc_c01015{left:109.200000pt;}
.x8_c01015{left:111.200000pt;}
.x6_c01015{left:113.733333pt;}
.x5_c01015{left:114.800000pt;}
.x1_c01015{left:115.733333pt;}
.x3_c01015{left:117.066667pt;}
.x2_c01015{left:118.533333pt;}
.x4_c01015{left:139.200000pt;}
.xe_c01015{left:253.801554pt;}
.xd_c01015{left:509.466667pt;}
}





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

.ir_c01016:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01016{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01016;src:url('chunks/assets/font_95728c811abb99c75002a666.woff2')format("woff");}.ff1_c01016{font-family:ff1_c01016;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01016;src:url('chunks/assets/font_d5d0f7fbab07985189201c95.woff2')format("woff");}.ff2_c01016{font-family:ff2_c01016;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01016;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff3_c01016{font-family:ff3_c01016;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01016;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff4_c01016{font-family:ff4_c01016;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01016{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01016{vertical-align:0.000000px;}
.ls0_c01016{letter-spacing:0.000000px;}
.sc__c01016{text-shadow:none;}
.sc0_c01016{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01016{-webkit-text-stroke:0px transparent;}
.sc0_c01016{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01016{word-spacing:-17.352000px;}
.ws1_c01016{word-spacing:0.000000px;}
._14_c01016{margin-left:-26.001000px;}
._13_c01016{margin-left:-20.898000px;}
._1a_c01016{margin-left:-16.551000px;}
._12_c01016{margin-left:-14.985000px;}
._16_c01016{margin-left:-11.826000px;}
._17_c01016{margin-left:-10.449000px;}
._19_c01016{margin-left:-8.298000px;}
._e_c01016{margin-left:-7.290000px;}
._b_c01016{margin-left:-5.832000px;}
._10_c01016{margin-left:-4.617000px;}
._8_c01016{margin-left:-3.483000px;}
._3_c01016{margin-left:-1.620000px;}
._1_c01016{width:1.215000px;}
._0_c01016{width:2.997000px;}
._2_c01016{width:4.212000px;}
._4_c01016{width:5.427000px;}
._9_c01016{width:6.966000px;}
._7_c01016{width:8.100000px;}
._6_c01016{width:9.315000px;}
._d_c01016{width:10.692000px;}
._c_c01016{width:11.745000px;}
._1b_c01016{width:12.960000px;}
._5_c01016{width:14.337000px;}
._a_c01016{width:16.200000px;}
._f_c01016{width:29.970000px;}
._15_c01016{width:32.241000px;}
._1f_c01016{width:33.291000px;}
._11_c01016{width:35.235000px;}
._1e_c01016{width:44.550000px;}
._18_c01016{width:69.525000px;}
._20_c01016{width:104.652000px;}
._21_c01016{width:236.277000px;}
._1d_c01016{width:298.395000px;}
._1c_c01016{width:319.707000px;}
.fc2_c01016{color:transparent;}
.fc1_c01016{color:rgb(128,128,128);}
.fc0_c01016{color:rgb(0,0,0);}
.fs2_c01016{font-size:48.000000px;}
.fs1_c01016{font-size:72.000000px;}
.fs0_c01016{font-size:81.000000px;}
.y0_c01016{bottom:0.000000px;}
.y25_c01016{bottom:3.105000px;}
.y24_c01016{bottom:7.228369px;}
.y23_c01016{bottom:49.170000px;}
.y22_c01016{bottom:74.820000px;}
.y21_c01016{bottom:99.870000px;}
.y20_c01016{bottom:124.470000px;}
.y1f_c01016{bottom:149.220000px;}
.y1e_c01016{bottom:173.520000px;}
.y1d_c01016{bottom:197.820000px;}
.y1c_c01016{bottom:222.420000px;}
.y1b_c01016{bottom:247.020000px;}
.y1a_c01016{bottom:271.020000px;}
.y19_c01016{bottom:295.620000px;}
.y18_c01016{bottom:319.620000px;}
.y17_c01016{bottom:343.470000px;}
.y16_c01016{bottom:367.770000px;}
.y15_c01016{bottom:391.770000px;}
.y14_c01016{bottom:416.370000px;}
.y13_c01016{bottom:440.370000px;}
.y12_c01016{bottom:464.670000px;}
.y11_c01016{bottom:488.670000px;}
.y10_c01016{bottom:512.970000px;}
.yf_c01016{bottom:536.970000px;}
.ye_c01016{bottom:561.270000px;}
.yd_c01016{bottom:584.220000px;}
.yc_c01016{bottom:609.120000px;}
.yb_c01016{bottom:632.520000px;}
.ya_c01016{bottom:658.770000px;}
.y9_c01016{bottom:682.770000px;}
.y8_c01016{bottom:706.020000px;}
.y7_c01016{bottom:729.720000px;}
.y6_c01016{bottom:753.270000px;}
.y5_c01016{bottom:777.570000px;}
.y4_c01016{bottom:802.170000px;}
.y3_c01016{bottom:826.170000px;}
.y2_c01016{bottom:850.470000px;}
.y1_c01016{bottom:875.370000px;}
.h5_c01016{height:13.200073px;}
.h6_c01016{height:43.804688px;}
.h2_c01016{height:79.497070px;}
.h4_c01016{height:84.269531px;}
.h3_c01016{height:91.160156px;}
.h1_c01016{height:986.250000px;}
.h0_c01016{height:986.550000px;}
.w1_c01016{width:104.875500px;}
.w0_c01016{width:672.000000px;}
.x0_c01016{left:0.000000px;}
.x1_c01016{left:57.750000px;}
.x2_c01016{left:58.800000px;}
.x3_c01016{left:60.750000px;}
.x4_c01016{left:62.400000px;}
.x5_c01016{left:63.450000px;}
.x6_c01016{left:64.500000px;}
.x8_c01016{left:65.550000px;}
.x9_c01016{left:66.900000px;}
.xa_c01016{left:68.250000px;}
.x7_c01016{left:70.800000px;}
.xc_c01016{left:287.814240px;}
.xb_c01016{left:429.000000px;}
@media print{
.v0_c01016{vertical-align:0.000000pt;}
.ls0_c01016{letter-spacing:0.000000pt;}
.ws0_c01016{word-spacing:-15.424000pt;}
.ws1_c01016{word-spacing:0.000000pt;}
._14_c01016{margin-left:-23.112000pt;}
._13_c01016{margin-left:-18.576000pt;}
._1a_c01016{margin-left:-14.712000pt;}
._12_c01016{margin-left:-13.320000pt;}
._16_c01016{margin-left:-10.512000pt;}
._17_c01016{margin-left:-9.288000pt;}
._19_c01016{margin-left:-7.376000pt;}
._e_c01016{margin-left:-6.480000pt;}
._b_c01016{margin-left:-5.184000pt;}
._10_c01016{margin-left:-4.104000pt;}
._8_c01016{margin-left:-3.096000pt;}
._3_c01016{margin-left:-1.440000pt;}
._1_c01016{width:1.080000pt;}
._0_c01016{width:2.664000pt;}
._2_c01016{width:3.744000pt;}
._4_c01016{width:4.824000pt;}
._9_c01016{width:6.192000pt;}
._7_c01016{width:7.200000pt;}
._6_c01016{width:8.280000pt;}
._d_c01016{width:9.504000pt;}
._c_c01016{width:10.440000pt;}
._1b_c01016{width:11.520000pt;}
._5_c01016{width:12.744000pt;}
._a_c01016{width:14.400000pt;}
._f_c01016{width:26.640000pt;}
._15_c01016{width:28.658667pt;}
._1f_c01016{width:29.592000pt;}
._11_c01016{width:31.320000pt;}
._1e_c01016{width:39.600000pt;}
._18_c01016{width:61.800000pt;}
._20_c01016{width:93.024000pt;}
._21_c01016{width:210.024000pt;}
._1d_c01016{width:265.240000pt;}
._1c_c01016{width:284.184000pt;}
.fs2_c01016{font-size:42.666667pt;}
.fs1_c01016{font-size:64.000000pt;}
.fs0_c01016{font-size:72.000000pt;}
.y0_c01016{bottom:0.000000pt;}
.y25_c01016{bottom:2.760000pt;}
.y24_c01016{bottom:6.425217pt;}
.y23_c01016{bottom:43.706667pt;}
.y22_c01016{bottom:66.506667pt;}
.y21_c01016{bottom:88.773333pt;}
.y20_c01016{bottom:110.640000pt;}
.y1f_c01016{bottom:132.640000pt;}
.y1e_c01016{bottom:154.240000pt;}
.y1d_c01016{bottom:175.840000pt;}
.y1c_c01016{bottom:197.706667pt;}
.y1b_c01016{bottom:219.573333pt;}
.y1a_c01016{bottom:240.906667pt;}
.y19_c01016{bottom:262.773333pt;}
.y18_c01016{bottom:284.106667pt;}
.y17_c01016{bottom:305.306667pt;}
.y16_c01016{bottom:326.906667pt;}
.y15_c01016{bottom:348.240000pt;}
.y14_c01016{bottom:370.106667pt;}
.y13_c01016{bottom:391.440000pt;}
.y12_c01016{bottom:413.040000pt;}
.y11_c01016{bottom:434.373333pt;}
.y10_c01016{bottom:455.973333pt;}
.yf_c01016{bottom:477.306667pt;}
.ye_c01016{bottom:498.906667pt;}
.yd_c01016{bottom:519.306667pt;}
.yc_c01016{bottom:541.440000pt;}
.yb_c01016{bottom:562.240000pt;}
.ya_c01016{bottom:585.573333pt;}
.y9_c01016{bottom:606.906667pt;}
.y8_c01016{bottom:627.573333pt;}
.y7_c01016{bottom:648.640000pt;}
.y6_c01016{bottom:669.573333pt;}
.y5_c01016{bottom:691.173333pt;}
.y4_c01016{bottom:713.040000pt;}
.y3_c01016{bottom:734.373333pt;}
.y2_c01016{bottom:755.973333pt;}
.y1_c01016{bottom:778.106667pt;}
.h5_c01016{height:11.733399pt;}
.h6_c01016{height:38.937500pt;}
.h2_c01016{height:70.664062pt;}
.h4_c01016{height:74.906250pt;}
.h3_c01016{height:81.031250pt;}
.h1_c01016{height:876.666667pt;}
.h0_c01016{height:876.933333pt;}
.w1_c01016{width:93.222667pt;}
.w0_c01016{width:597.333333pt;}
.x0_c01016{left:0.000000pt;}
.x1_c01016{left:51.333333pt;}
.x2_c01016{left:52.266667pt;}
.x3_c01016{left:54.000000pt;}
.x4_c01016{left:55.466667pt;}
.x5_c01016{left:56.400000pt;}
.x6_c01016{left:57.333333pt;}
.x8_c01016{left:58.266667pt;}
.x9_c01016{left:59.466667pt;}
.xa_c01016{left:60.666667pt;}
.x7_c01016{left:62.933333pt;}
.xc_c01016{left:255.834880pt;}
.xb_c01016{left:381.333333pt;}
}





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

.ir_c01017:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01017{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01017;src:url('chunks/assets/font_5cd0bddc0b344149ef70962b.woff2')format("woff");}.ff1_c01017{font-family:ff1_c01017;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01017;src:url('chunks/assets/font_3f6a02f43b5948b012888602.woff2')format("woff");}.ff2_c01017{font-family:ff2_c01017;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01017;src:url('chunks/assets/font_0d82a277de84c912700781a8.woff2')format("woff");}.ff3_c01017{font-family:ff3_c01017;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01017;src:url('chunks/assets/font_67cc6a30c67151d0e48875cd.woff2')format("woff");}.ff4_c01017{font-family:ff4_c01017;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01017;src:url('chunks/assets/font_9f7ef18c035c3ce49fd5afb9.woff2')format("woff");}.ff5_c01017{font-family:ff5_c01017;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01017;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c01017{font-family:ff6_c01017;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01017{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01017{vertical-align:0.000000px;}
.ls2_c01017{letter-spacing:0.000000px;}
.ls1_c01017{letter-spacing:5.400000px;}
.ls0_c01017{letter-spacing:33.402000px;}
.sc__c01017{text-shadow:none;}
.sc0_c01017{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01017{-webkit-text-stroke:0px transparent;}
.sc0_c01017{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01017{word-spacing:-67.686000px;}
.ws0_c01017{word-spacing:-20.250000px;}
.ws1_c01017{word-spacing:-17.352000px;}
.ws3_c01017{word-spacing:0.000000px;}
._14_c01017{margin-left:-42.759000px;}
._12_c01017{margin-left:-16.767000px;}
._15_c01017{margin-left:-12.960000px;}
._18_c01017{margin-left:-11.583000px;}
._6_c01017{margin-left:-9.396000px;}
._b_c01017{margin-left:-6.828000px;}
._17_c01017{margin-left:-5.727000px;}
._8_c01017{margin-left:-4.374000px;}
._1_c01017{margin-left:-3.321000px;}
._3_c01017{margin-left:-1.620000px;}
._0_c01017{width:1.296000px;}
._4_c01017{width:2.349000px;}
._2_c01017{width:3.888000px;}
._7_c01017{width:5.184000px;}
._5_c01017{width:6.642000px;}
._a_c01017{width:8.424000px;}
._9_c01017{width:9.639000px;}
._f_c01017{width:10.728000px;}
._d_c01017{width:12.312000px;}
._10_c01017{width:13.770000px;}
._13_c01017{width:15.111000px;}
._16_c01017{width:16.524000px;}
._e_c01017{width:17.613000px;}
._11_c01017{width:26.730000px;}
._c_c01017{width:31.008000px;}
._19_c01017{width:36.972000px;}
._1a_c01017{width:239.496000px;}
.fc2_c01017{color:transparent;}
.fc1_c01017{color:rgb(128,128,128);}
.fc0_c01017{color:rgb(0,0,0);}
.fs6_c01017{font-size:48.000000px;}
.fs2_c01017{font-size:57.000000px;}
.fs4_c01017{font-size:66.000000px;}
.fs3_c01017{font-size:72.000000px;}
.fs1_c01017{font-size:78.000000px;}
.fs0_c01017{font-size:81.000000px;}
.fs5_c01017{font-size:87.000000px;}
.y0_c01017{bottom:0.000000px;}
.y25_c01017{bottom:3.105000px;}
.y24_c01017{bottom:7.228371px;}
.y23_c01017{bottom:60.765000px;}
.y22_c01017{bottom:82.665000px;}
.y21_c01017{bottom:108.315000px;}
.y20_c01017{bottom:132.315000px;}
.y1f_c01017{bottom:156.915000px;}
.y1e_c01017{bottom:181.965000px;}
.y1d_c01017{bottom:205.965000px;}
.y1c_c01017{bottom:231.165000px;}
.y1b_c01017{bottom:255.165000px;}
.y1a_c01017{bottom:280.515000px;}
.y19_c01017{bottom:305.865000px;}
.y18_c01017{bottom:329.715000px;}
.y17_c01017{bottom:353.715000px;}
.y16_c01017{bottom:378.015000px;}
.y15_c01017{bottom:402.615000px;}
.y14_c01017{bottom:426.915000px;}
.y13_c01017{bottom:451.215000px;}
.y12_c01017{bottom:475.665000px;}
.y11_c01017{bottom:498.915000px;}
.y10_c01017{bottom:522.915000px;}
.yf_c01017{bottom:547.065000px;}
.ye_c01017{bottom:571.515000px;}
.yd_c01017{bottom:595.815000px;}
.yc_c01017{bottom:619.365000px;}
.yb_c01017{bottom:644.715000px;}
.ya_c01017{bottom:669.015000px;}
.y9_c01017{bottom:693.315000px;}
.y8_c01017{bottom:718.215000px;}
.y7_c01017{bottom:742.215000px;}
.y6_c01017{bottom:766.515000px;}
.y5_c01017{bottom:790.515000px;}
.y4_c01017{bottom:815.115000px;}
.y3_c01017{bottom:839.115000px;}
.y2_c01017{bottom:863.415000px;}
.y1_c01017{bottom:887.715000px;}
.h6_c01017{height:13.200074px;}
.h7_c01017{height:43.804688px;}
.h2_c01017{height:79.497070px;}
.h4_c01017{height:84.269531px;}
.h5_c01017{height:91.176000px;}
.h3_c01017{height:98.756836px;}
.h1_c01017{height:986.250000px;}
.h0_c01017{height:986.325000px;}
.w2_c01017{width:104.875500px;}
.w0_c01017{width:667.425000px;}
.w1_c01017{width:667.500000px;}
.x0_c01017{left:0.000000px;}
.x8_c01017{left:23.250000px;}
.x4_c01017{left:104.250000px;}
.x1_c01017{left:109.050000px;}
.x7_c01017{left:110.400000px;}
.x2_c01017{left:111.600000px;}
.x6_c01017{left:112.650000px;}
.x3_c01017{left:114.300000px;}
.x5_c01017{left:135.900000px;}
.xa_c01017{left:285.526749px;}
.x9_c01017{left:559.950000px;}
@media print{
.v0_c01017{vertical-align:0.000000pt;}
.ls2_c01017{letter-spacing:0.000000pt;}
.ls1_c01017{letter-spacing:4.800000pt;}
.ls0_c01017{letter-spacing:29.690667pt;}
.ws2_c01017{word-spacing:-60.165333pt;}
.ws0_c01017{word-spacing:-18.000000pt;}
.ws1_c01017{word-spacing:-15.424000pt;}
.ws3_c01017{word-spacing:0.000000pt;}
._14_c01017{margin-left:-38.008000pt;}
._12_c01017{margin-left:-14.904000pt;}
._15_c01017{margin-left:-11.520000pt;}
._18_c01017{margin-left:-10.296000pt;}
._6_c01017{margin-left:-8.352000pt;}
._b_c01017{margin-left:-6.069333pt;}
._17_c01017{margin-left:-5.090667pt;}
._8_c01017{margin-left:-3.888000pt;}
._1_c01017{margin-left:-2.952000pt;}
._3_c01017{margin-left:-1.440000pt;}
._0_c01017{width:1.152000pt;}
._4_c01017{width:2.088000pt;}
._2_c01017{width:3.456000pt;}
._7_c01017{width:4.608000pt;}
._5_c01017{width:5.904000pt;}
._a_c01017{width:7.488000pt;}
._9_c01017{width:8.568000pt;}
._f_c01017{width:9.536000pt;}
._d_c01017{width:10.944000pt;}
._10_c01017{width:12.240000pt;}
._13_c01017{width:13.432000pt;}
._16_c01017{width:14.688000pt;}
._e_c01017{width:15.656000pt;}
._11_c01017{width:23.760000pt;}
._c_c01017{width:27.562667pt;}
._19_c01017{width:32.864000pt;}
._1a_c01017{width:212.885333pt;}
.fs6_c01017{font-size:42.666667pt;}
.fs2_c01017{font-size:50.666667pt;}
.fs4_c01017{font-size:58.666667pt;}
.fs3_c01017{font-size:64.000000pt;}
.fs1_c01017{font-size:69.333333pt;}
.fs0_c01017{font-size:72.000000pt;}
.fs5_c01017{font-size:77.333333pt;}
.y0_c01017{bottom:0.000000pt;}
.y25_c01017{bottom:2.760000pt;}
.y24_c01017{bottom:6.425219pt;}
.y23_c01017{bottom:54.013333pt;}
.y22_c01017{bottom:73.480000pt;}
.y21_c01017{bottom:96.280000pt;}
.y20_c01017{bottom:117.613333pt;}
.y1f_c01017{bottom:139.480000pt;}
.y1e_c01017{bottom:161.746667pt;}
.y1d_c01017{bottom:183.080000pt;}
.y1c_c01017{bottom:205.480000pt;}
.y1b_c01017{bottom:226.813333pt;}
.y1a_c01017{bottom:249.346667pt;}
.y19_c01017{bottom:271.880000pt;}
.y18_c01017{bottom:293.080000pt;}
.y17_c01017{bottom:314.413333pt;}
.y16_c01017{bottom:336.013333pt;}
.y15_c01017{bottom:357.880000pt;}
.y14_c01017{bottom:379.480000pt;}
.y13_c01017{bottom:401.080000pt;}
.y12_c01017{bottom:422.813333pt;}
.y11_c01017{bottom:443.480000pt;}
.y10_c01017{bottom:464.813333pt;}
.yf_c01017{bottom:486.280000pt;}
.ye_c01017{bottom:508.013333pt;}
.yd_c01017{bottom:529.613333pt;}
.yc_c01017{bottom:550.546667pt;}
.yb_c01017{bottom:573.080000pt;}
.ya_c01017{bottom:594.680000pt;}
.y9_c01017{bottom:616.280000pt;}
.y8_c01017{bottom:638.413333pt;}
.y7_c01017{bottom:659.746667pt;}
.y6_c01017{bottom:681.346667pt;}
.y5_c01017{bottom:702.680000pt;}
.y4_c01017{bottom:724.546667pt;}
.y3_c01017{bottom:745.880000pt;}
.y2_c01017{bottom:767.480000pt;}
.y1_c01017{bottom:789.080000pt;}
.h6_c01017{height:11.733399pt;}
.h7_c01017{height:38.937500pt;}
.h2_c01017{height:70.664062pt;}
.h4_c01017{height:74.906250pt;}
.h5_c01017{height:81.045333pt;}
.h3_c01017{height:87.783854pt;}
.h1_c01017{height:876.666667pt;}
.h0_c01017{height:876.733333pt;}
.w2_c01017{width:93.222667pt;}
.w0_c01017{width:593.266667pt;}
.w1_c01017{width:593.333333pt;}
.x0_c01017{left:0.000000pt;}
.x8_c01017{left:20.666667pt;}
.x4_c01017{left:92.666667pt;}
.x1_c01017{left:96.933333pt;}
.x7_c01017{left:98.133333pt;}
.x2_c01017{left:99.200000pt;}
.x6_c01017{left:100.133333pt;}
.x3_c01017{left:101.600000pt;}
.x5_c01017{left:120.800000pt;}
.xa_c01017{left:253.801554pt;}
.x9_c01017{left:497.733333pt;}
}





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

.ir_c01018:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01018{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01018;src:url('chunks/assets/font_09e4ed417275641e7d009028.woff2')format("woff");}.ff1_c01018{font-family:ff1_c01018;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01018;src:url('chunks/assets/font_552d3e64c047c8bbff6709fc.woff2')format("woff");}.ff2_c01018{font-family:ff2_c01018;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01018;src:url('chunks/assets/font_34985ced5a4ead78f9e4ed16.woff2')format("woff");}.ff3_c01018{font-family:ff3_c01018;line-height:1.401855;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01018;src:url('chunks/assets/font_1a3cff2127a7502046951cf5.woff2')format("woff");}.ff4_c01018{font-family:ff4_c01018;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01018;src:url('chunks/assets/font_7a3cf813c1f08814f475281d.woff2')format("woff");}.ff5_c01018{font-family:ff5_c01018;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01018;src:url('chunks/assets/font_4aae8f3e652d2627e454eec0.woff2')format("woff");}.ff6_c01018{font-family:ff6_c01018;line-height:1.437000;font-style:normal;font-weight: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_c01018;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c01018{font-family:ff7_c01018;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01018{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01018{vertical-align:-5.400000px;}
.v0_c01018{vertical-align:0.000000px;}
.ls4_c01018{letter-spacing:-6.000000px;}
.ls3_c01018{letter-spacing:0.000000px;}
.ls0_c01018{letter-spacing:3.000000px;}
.ls2_c01018{letter-spacing:3.120000px;}
.ls1_c01018{letter-spacing:12.000000px;}
.sc__c01018{text-shadow:none;}
.sc0_c01018{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01018{-webkit-text-stroke:0px transparent;}
.sc0_c01018{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01018{word-spacing:-29.700000px;}
.ws2_c01018{word-spacing:-23.574000px;}
.ws0_c01018{word-spacing:-14.574000px;}
.ws3_c01018{word-spacing:0.000000px;}
._27_c01018{margin-left:-29.961000px;}
._1d_c01018{margin-left:-27.252000px;}
._2a_c01018{margin-left:-25.272000px;}
._18_c01018{margin-left:-22.680000px;}
._19_c01018{margin-left:-21.303000px;}
._1c_c01018{margin-left:-19.764000px;}
._1b_c01018{margin-left:-18.564000px;}
._16_c01018{margin-left:-17.334000px;}
._17_c01018{margin-left:-14.904000px;}
._1a_c01018{margin-left:-13.041000px;}
._11_c01018{margin-left:-10.998000px;}
._12_c01018{margin-left:-9.984000px;}
._f_c01018{margin-left:-8.970000px;}
._22_c01018{margin-left:-7.716000px;}
._c_c01018{margin-left:-5.538000px;}
._d_c01018{margin-left:-4.524000px;}
._8_c01018{margin-left:-2.808000px;}
._9_c01018{margin-left:-1.794000px;}
._7_c01018{width:1.560000px;}
._0_c01018{width:3.354000px;}
._1_c01018{width:4.368000px;}
._2_c01018{width:5.772000px;}
._b_c01018{width:7.020000px;}
._4_c01018{width:8.034000px;}
._1f_c01018{width:9.126000px;}
._10_c01018{width:10.140000px;}
._5_c01018{width:11.466000px;}
._15_c01018{width:13.164000px;}
._3_c01018{width:14.664000px;}
._6_c01018{width:15.990000px;}
._e_c01018{width:17.628000px;}
._14_c01018{width:21.138000px;}
._24_c01018{width:22.308000px;}
._13_c01018{width:23.400000px;}
._2b_c01018{width:26.052000px;}
._2c_c01018{width:27.690000px;}
._25_c01018{width:29.952000px;}
._21_c01018{width:37.728000px;}
._1e_c01018{width:51.144000px;}
._28_c01018{width:53.898000px;}
._23_c01018{width:130.794000px;}
._29_c01018{width:178.968000px;}
._26_c01018{width:232.206000px;}
._2d_c01018{width:245.310000px;}
._20_c01018{width:876.798000px;}
._a_c01018{width:1028.976000px;}
.fc2_c01018{color:transparent;}
.fc1_c01018{color:rgb(128,128,128);}
.fc0_c01018{color:rgb(0,0,0);}
.fs7_c01018{font-size:48.000000px;}
.fs2_c01018{font-size:54.000000px;}
.fs5_c01018{font-size:57.000000px;}
.fs6_c01018{font-size:60.000000px;}
.fs3_c01018{font-size:69.000000px;}
.fs0_c01018{font-size:78.000000px;}
.fs1_c01018{font-size:81.000000px;}
.fs4_c01018{font-size:93.000000px;}
.y0_c01018{bottom:0.000000px;}
.y25_c01018{bottom:3.105000px;}
.y24_c01018{bottom:7.228369px;}
.y23_c01018{bottom:61.770000px;}
.y22_c01018{bottom:86.670000px;}
.y21_c01018{bottom:112.020000px;}
.y20_c01018{bottom:136.620000px;}
.y1f_c01018{bottom:161.370000px;}
.y1e_c01018{bottom:185.670000px;}
.y1d_c01018{bottom:210.270000px;}
.y1c_c01018{bottom:234.570000px;}
.y1b_c01018{bottom:259.170000px;}
.y1a_c01018{bottom:283.470000px;}
.y19_c01018{bottom:307.770000px;}
.y18_c01018{bottom:332.070000px;}
.y17_c01018{bottom:356.070000px;}
.y16_c01018{bottom:380.370000px;}
.y15_c01018{bottom:404.670000px;}
.y14_c01018{bottom:428.970000px;}
.y13_c01018{bottom:452.970000px;}
.y12_c01018{bottom:477.120000px;}
.y11_c01018{bottom:501.570000px;}
.y10_c01018{bottom:525.120000px;}
.yf_c01018{bottom:550.020000px;}
.ye_c01018{bottom:574.020000px;}
.yd_c01018{bottom:597.720000px;}
.yc_c01018{bottom:622.020000px;}
.yb_c01018{bottom:647.220000px;}
.ya_c01018{bottom:669.870000px;}
.y9_c01018{bottom:693.870000px;}
.y8_c01018{bottom:720.120000px;}
.y7_c01018{bottom:741.870000px;}
.y6_c01018{bottom:768.120000px;}
.y5_c01018{bottom:791.070000px;}
.y4_c01018{bottom:816.120000px;}
.y3_c01018{bottom:839.670000px;}
.y2_c01018{bottom:861.270000px;}
.y1_c01018{bottom:887.520000px;}
.h4_c01018{height:13.200073px;}
.h5_c01018{height:43.804688px;}
.h2_c01018{height:98.756836px;}
.h3_c01018{height:102.555176px;}
.h1_c01018{height:986.250000px;}
.h0_c01018{height:986.550000px;}
.w1_c01018{width:104.875500px;}
.w0_c01018{width:672.000000px;}
.x0_c01018{left:0.000000px;}
.x5_c01018{left:57.600000px;}
.x1_c01018{left:59.100000px;}
.x2_c01018{left:60.750000px;}
.x4_c01018{left:61.800000px;}
.x6_c01018{left:63.000000px;}
.x7_c01018{left:64.350000px;}
.x3_c01018{left:84.450000px;}
.x9_c01018{left:287.814240px;}
.x8_c01018{left:419.100000px;}
@media print{
.v1_c01018{vertical-align:-4.800000pt;}
.v0_c01018{vertical-align:0.000000pt;}
.ls4_c01018{letter-spacing:-5.333333pt;}
.ls3_c01018{letter-spacing:0.000000pt;}
.ls0_c01018{letter-spacing:2.666667pt;}
.ls2_c01018{letter-spacing:2.773333pt;}
.ls1_c01018{letter-spacing:10.666667pt;}
.ws1_c01018{word-spacing:-26.400000pt;}
.ws2_c01018{word-spacing:-20.954667pt;}
.ws0_c01018{word-spacing:-12.954667pt;}
.ws3_c01018{word-spacing:0.000000pt;}
._27_c01018{margin-left:-26.632000pt;}
._1d_c01018{margin-left:-24.224000pt;}
._2a_c01018{margin-left:-22.464000pt;}
._18_c01018{margin-left:-20.160000pt;}
._19_c01018{margin-left:-18.936000pt;}
._1c_c01018{margin-left:-17.568000pt;}
._1b_c01018{margin-left:-16.501333pt;}
._16_c01018{margin-left:-15.408000pt;}
._17_c01018{margin-left:-13.248000pt;}
._1a_c01018{margin-left:-11.592000pt;}
._11_c01018{margin-left:-9.776000pt;}
._12_c01018{margin-left:-8.874667pt;}
._f_c01018{margin-left:-7.973333pt;}
._22_c01018{margin-left:-6.858667pt;}
._c_c01018{margin-left:-4.922667pt;}
._d_c01018{margin-left:-4.021333pt;}
._8_c01018{margin-left:-2.496000pt;}
._9_c01018{margin-left:-1.594667pt;}
._7_c01018{width:1.386667pt;}
._0_c01018{width:2.981333pt;}
._1_c01018{width:3.882667pt;}
._2_c01018{width:5.130667pt;}
._b_c01018{width:6.240000pt;}
._4_c01018{width:7.141333pt;}
._1f_c01018{width:8.112000pt;}
._10_c01018{width:9.013333pt;}
._5_c01018{width:10.192000pt;}
._15_c01018{width:11.701333pt;}
._3_c01018{width:13.034667pt;}
._6_c01018{width:14.213333pt;}
._e_c01018{width:15.669333pt;}
._14_c01018{width:18.789333pt;}
._24_c01018{width:19.829333pt;}
._13_c01018{width:20.800000pt;}
._2b_c01018{width:23.157333pt;}
._2c_c01018{width:24.613333pt;}
._25_c01018{width:26.624000pt;}
._21_c01018{width:33.536000pt;}
._1e_c01018{width:45.461333pt;}
._28_c01018{width:47.909333pt;}
._23_c01018{width:116.261333pt;}
._29_c01018{width:159.082667pt;}
._26_c01018{width:206.405333pt;}
._2d_c01018{width:218.053333pt;}
._20_c01018{width:779.376000pt;}
._a_c01018{width:914.645333pt;}
.fs7_c01018{font-size:42.666667pt;}
.fs2_c01018{font-size:48.000000pt;}
.fs5_c01018{font-size:50.666667pt;}
.fs6_c01018{font-size:53.333333pt;}
.fs3_c01018{font-size:61.333333pt;}
.fs0_c01018{font-size:69.333333pt;}
.fs1_c01018{font-size:72.000000pt;}
.fs4_c01018{font-size:82.666667pt;}
.y0_c01018{bottom:0.000000pt;}
.y25_c01018{bottom:2.760000pt;}
.y24_c01018{bottom:6.425217pt;}
.y23_c01018{bottom:54.906667pt;}
.y22_c01018{bottom:77.040000pt;}
.y21_c01018{bottom:99.573333pt;}
.y20_c01018{bottom:121.440000pt;}
.y1f_c01018{bottom:143.440000pt;}
.y1e_c01018{bottom:165.040000pt;}
.y1d_c01018{bottom:186.906667pt;}
.y1c_c01018{bottom:208.506667pt;}
.y1b_c01018{bottom:230.373333pt;}
.y1a_c01018{bottom:251.973333pt;}
.y19_c01018{bottom:273.573333pt;}
.y18_c01018{bottom:295.173333pt;}
.y17_c01018{bottom:316.506667pt;}
.y16_c01018{bottom:338.106667pt;}
.y15_c01018{bottom:359.706667pt;}
.y14_c01018{bottom:381.306667pt;}
.y13_c01018{bottom:402.640000pt;}
.y12_c01018{bottom:424.106667pt;}
.y11_c01018{bottom:445.840000pt;}
.y10_c01018{bottom:466.773333pt;}
.yf_c01018{bottom:488.906667pt;}
.ye_c01018{bottom:510.240000pt;}
.yd_c01018{bottom:531.306667pt;}
.yc_c01018{bottom:552.906667pt;}
.yb_c01018{bottom:575.306667pt;}
.ya_c01018{bottom:595.440000pt;}
.y9_c01018{bottom:616.773333pt;}
.y8_c01018{bottom:640.106667pt;}
.y7_c01018{bottom:659.440000pt;}
.y6_c01018{bottom:682.773333pt;}
.y5_c01018{bottom:703.173333pt;}
.y4_c01018{bottom:725.440000pt;}
.y3_c01018{bottom:746.373333pt;}
.y2_c01018{bottom:765.573333pt;}
.y1_c01018{bottom:788.906667pt;}
.h4_c01018{height:11.733399pt;}
.h5_c01018{height:38.937500pt;}
.h2_c01018{height:87.783854pt;}
.h3_c01018{height:91.160156pt;}
.h1_c01018{height:876.666667pt;}
.h0_c01018{height:876.933333pt;}
.w1_c01018{width:93.222667pt;}
.w0_c01018{width:597.333333pt;}
.x0_c01018{left:0.000000pt;}
.x5_c01018{left:51.200000pt;}
.x1_c01018{left:52.533333pt;}
.x2_c01018{left:54.000000pt;}
.x4_c01018{left:54.933333pt;}
.x6_c01018{left:56.000000pt;}
.x7_c01018{left:57.200000pt;}
.x3_c01018{left:75.066667pt;}
.x9_c01018{left:255.834880pt;}
.x8_c01018{left:372.533333pt;}
}





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

.ir_c01019:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01019{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01019;src:url('chunks/assets/font_bd4568fbc02aaf4048ae335a.woff2')format("woff");}.ff1_c01019{font-family:ff1_c01019;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01019;src:url('chunks/assets/font_e5dd80529d488ce4cb3590a9.woff2')format("woff");}.ff2_c01019{font-family:ff2_c01019;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01019;src:url('chunks/assets/font_7df3bfe8938d62d89898032d.woff2')format("woff");}.ff3_c01019{font-family:ff3_c01019;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01019;src:url('chunks/assets/font_4c2fd3304b4614fe0bff03a9.woff2')format("woff");}.ff4_c01019{font-family:ff4_c01019;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01019;src:url('chunks/assets/font_a6fc18665162c1914dab1f81.woff2')format("woff");}.ff5_c01019{font-family:ff5_c01019;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01019;src:url('chunks/assets/font_4348a451bfd1346ed2206698.woff2')format("woff");}.ff6_c01019{font-family:ff6_c01019;line-height:1.437000;font-style:normal;font-weight: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_c01019;src:url('chunks/assets/font_27f2055afb0567953df09bbd.woff2')format("woff");}.ff7_c01019{font-family:ff7_c01019;line-height:1.437000;font-style:normal;font-weight: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_c01019;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff8_c01019{font-family:ff8_c01019;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01019{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2_c01019{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m1_c01019{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.v0_c01019{vertical-align:0.000000px;}
.ls2_c01019{letter-spacing:-6.000000px;}
.ls5_c01019{letter-spacing:-3.000000px;}
.ls3_c01019{letter-spacing:0.000000px;}
.ls1_c01019{letter-spacing:6.216000px;}
.ls4_c01019{letter-spacing:12.000000px;}
.ls0_c01019{letter-spacing:16.800000px;}
.sc__c01019{text-shadow:none;}
.sc0_c01019{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01019{-webkit-text-stroke:0px transparent;}
.sc0_c01019{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01019{word-spacing:-35.859000px;}
.ws1_c01019{word-spacing:-20.250000px;}
.ws2_c01019{word-spacing:-17.352000px;}
.ws3_c01019{word-spacing:0.000000px;}
._3_c01019{margin-left:-107.712000px;}
._1c_c01019{margin-left:-25.515000px;}
._20_c01019{margin-left:-21.627000px;}
._1_c01019{margin-left:-19.140000px;}
._0_c01019{margin-left:-17.292000px;}
._21_c01019{margin-left:-15.714000px;}
._22_c01019{margin-left:-12.906000px;}
._c_c01019{margin-left:-11.502000px;}
._a_c01019{margin-left:-9.768000px;}
._23_c01019{margin-left:-8.745000px;}
._b_c01019{margin-left:-7.656000px;}
._8_c01019{margin-left:-6.534000px;}
._9_c01019{margin-left:-5.346000px;}
._16_c01019{margin-left:-4.257000px;}
._5_c01019{margin-left:-2.475000px;}
._6_c01019{margin-left:-1.188000px;}
._12_c01019{width:1.377000px;}
._d_c01019{width:2.430000px;}
._e_c01019{width:3.564000px;}
._10_c01019{width:5.382000px;}
._17_c01019{width:6.804000px;}
._f_c01019{width:8.226000px;}
._15_c01019{width:9.315000px;}
._14_c01019{width:10.530000px;}
._11_c01019{width:12.069000px;}
._19_c01019{width:13.905000px;}
._13_c01019{width:15.012000px;}
._1d_c01019{width:17.307000px;}
._18_c01019{width:18.477000px;}
._4_c01019{width:55.140000px;}
._1b_c01019{width:59.292000px;}
._1f_c01019{width:86.346000px;}
._7_c01019{width:98.208000px;}
._1a_c01019{width:115.188000px;}
._2_c01019{width:130.812000px;}
._1e_c01019{width:180.468000px;}
.fc2_c01019{color:transparent;}
.fc1_c01019{color:rgb(128,128,128);}
.fc0_c01019{color:rgb(0,0,0);}
.fs7_c01019{font-size:48.000000px;}
.fs6_c01019{font-size:60.000000px;}
.fs4_c01019{font-size:72.000000px;}
.fs3_c01019{font-size:81.000000px;}
.fs0_c01019{font-size:84.000000px;}
.fs5_c01019{font-size:93.000000px;}
.fs2_c01019{font-size:99.000000px;}
.fs1_c01019{font-size:132.000000px;}
.y0_c01019{bottom:0.000000px;}
.y23_c01019{bottom:3.105000px;}
.y22_c01019{bottom:7.228369px;}
.y21_c01019{bottom:57.270000px;}
.y20_c01019{bottom:79.620000px;}
.y1f_c01019{bottom:104.970000px;}
.y1e_c01019{bottom:130.170000px;}
.y1d_c01019{bottom:154.470000px;}
.y1c_c01019{bottom:179.220000px;}
.y1b_c01019{bottom:203.520000px;}
.y1a_c01019{bottom:228.120000px;}
.y19_c01019{bottom:253.020000px;}
.y18_c01019{bottom:277.020000px;}
.y17_c01019{bottom:301.770000px;}
.y16_c01019{bottom:326.370000px;}
.y15_c01019{bottom:351.270000px;}
.y14_c01019{bottom:374.970000px;}
.y13_c01019{bottom:399.570000px;}
.y12_c01019{bottom:423.870000px;}
.y11_c01019{bottom:448.920000px;}
.y10_c01019{bottom:472.170000px;}
.yf_c01019{bottom:496.020000px;}
.ye_c01019{bottom:520.320000px;}
.yd_c01019{bottom:571.020000px;}
.yc_c01019{bottom:591.270000px;}
.yb_c01019{bottom:600.420000px;}
.ya_c01019{bottom:629.070000px;}
.y9_c01019{bottom:658.470000px;}
.y8_c01019{bottom:733.320000px;}
.y7_c01019{bottom:757.020000px;}
.y6_c01019{bottom:780.870000px;}
.y5_c01019{bottom:805.170000px;}
.y4_c01019{bottom:829.620000px;}
.y3_c01019{bottom:853.770000px;}
.y2_c01019{bottom:878.220000px;}
.y1_c01019{bottom:917.670000px;}
.h8_c01019{height:13.200073px;}
.h9_c01019{height:43.804688px;}
.h4_c01019{height:79.497070px;}
.h3_c01019{height:84.269531px;}
.h6_c01019{height:84.888000px;}
.h7_c01019{height:91.160156px;}
.h5_c01019{height:97.464000px;}
.h2_c01019{height:167.126953px;}
.h1_c01019{height:972.750000px;}
.h0_c01019{height:973.050000px;}
.w2_c01019{width:104.875500px;}
.w0_c01019{width:658.275000px;}
.w1_c01019{width:658.500000px;}
.x0_c01019{left:0.000000px;}
.x3_c01019{left:107.700000px;}
.x2_c01019{left:110.400000px;}
.x1_c01019{left:111.450000px;}
.xf_c01019{left:113.400000px;}
.xc_c01019{left:115.200000px;}
.xd_c01019{left:124.200000px;}
.x4_c01019{left:138.750000px;}
.xe_c01019{left:200.700000px;}
.x5_c01019{left:232.500000px;}
.xa_c01019{left:237.000000px;}
.x8_c01019{left:238.050000px;}
.xb_c01019{left:248.100000px;}
.x9_c01019{left:250.200000px;}
.x11_c01019{left:280.951767px;}
.x7_c01019{left:299.400000px;}
.x6_c01019{left:365.550000px;}
.x10_c01019{left:567.750000px;}
@media print{
.v0_c01019{vertical-align:0.000000pt;}
.ls2_c01019{letter-spacing:-5.333333pt;}
.ls5_c01019{letter-spacing:-2.666667pt;}
.ls3_c01019{letter-spacing:0.000000pt;}
.ls1_c01019{letter-spacing:5.525333pt;}
.ls4_c01019{letter-spacing:10.666667pt;}
.ls0_c01019{letter-spacing:14.933333pt;}
.ws0_c01019{word-spacing:-31.874667pt;}
.ws1_c01019{word-spacing:-18.000000pt;}
.ws2_c01019{word-spacing:-15.424000pt;}
.ws3_c01019{word-spacing:0.000000pt;}
._3_c01019{margin-left:-95.744000pt;}
._1c_c01019{margin-left:-22.680000pt;}
._20_c01019{margin-left:-19.224000pt;}
._1_c01019{margin-left:-17.013333pt;}
._0_c01019{margin-left:-15.370667pt;}
._21_c01019{margin-left:-13.968000pt;}
._22_c01019{margin-left:-11.472000pt;}
._c_c01019{margin-left:-10.224000pt;}
._a_c01019{margin-left:-8.682667pt;}
._23_c01019{margin-left:-7.773333pt;}
._b_c01019{margin-left:-6.805333pt;}
._8_c01019{margin-left:-5.808000pt;}
._9_c01019{margin-left:-4.752000pt;}
._16_c01019{margin-left:-3.784000pt;}
._5_c01019{margin-left:-2.200000pt;}
._6_c01019{margin-left:-1.056000pt;}
._12_c01019{width:1.224000pt;}
._d_c01019{width:2.160000pt;}
._e_c01019{width:3.168000pt;}
._10_c01019{width:4.784000pt;}
._17_c01019{width:6.048000pt;}
._f_c01019{width:7.312000pt;}
._15_c01019{width:8.280000pt;}
._14_c01019{width:9.360000pt;}
._11_c01019{width:10.728000pt;}
._19_c01019{width:12.360000pt;}
._13_c01019{width:13.344000pt;}
._1d_c01019{width:15.384000pt;}
._18_c01019{width:16.424000pt;}
._4_c01019{width:49.013333pt;}
._1b_c01019{width:52.704000pt;}
._1f_c01019{width:76.752000pt;}
._7_c01019{width:87.296000pt;}
._1a_c01019{width:102.389333pt;}
._2_c01019{width:116.277333pt;}
._1e_c01019{width:160.416000pt;}
.fs7_c01019{font-size:42.666667pt;}
.fs6_c01019{font-size:53.333333pt;}
.fs4_c01019{font-size:64.000000pt;}
.fs3_c01019{font-size:72.000000pt;}
.fs0_c01019{font-size:74.666667pt;}
.fs5_c01019{font-size:82.666667pt;}
.fs2_c01019{font-size:88.000000pt;}
.fs1_c01019{font-size:117.333333pt;}
.y0_c01019{bottom:0.000000pt;}
.y23_c01019{bottom:2.760000pt;}
.y22_c01019{bottom:6.425217pt;}
.y21_c01019{bottom:50.906667pt;}
.y20_c01019{bottom:70.773333pt;}
.y1f_c01019{bottom:93.306667pt;}
.y1e_c01019{bottom:115.706667pt;}
.y1d_c01019{bottom:137.306667pt;}
.y1c_c01019{bottom:159.306667pt;}
.y1b_c01019{bottom:180.906667pt;}
.y1a_c01019{bottom:202.773333pt;}
.y19_c01019{bottom:224.906667pt;}
.y18_c01019{bottom:246.240000pt;}
.y17_c01019{bottom:268.240000pt;}
.y16_c01019{bottom:290.106667pt;}
.y15_c01019{bottom:312.240000pt;}
.y14_c01019{bottom:333.306667pt;}
.y13_c01019{bottom:355.173333pt;}
.y12_c01019{bottom:376.773333pt;}
.y11_c01019{bottom:399.040000pt;}
.y10_c01019{bottom:419.706667pt;}
.yf_c01019{bottom:440.906667pt;}
.ye_c01019{bottom:462.506667pt;}
.yd_c01019{bottom:507.573333pt;}
.yc_c01019{bottom:525.573333pt;}
.yb_c01019{bottom:533.706667pt;}
.ya_c01019{bottom:559.173333pt;}
.y9_c01019{bottom:585.306667pt;}
.y8_c01019{bottom:651.840000pt;}
.y7_c01019{bottom:672.906667pt;}
.y6_c01019{bottom:694.106667pt;}
.y5_c01019{bottom:715.706667pt;}
.y4_c01019{bottom:737.440000pt;}
.y3_c01019{bottom:758.906667pt;}
.y2_c01019{bottom:780.640000pt;}
.y1_c01019{bottom:815.706667pt;}
.h8_c01019{height:11.733399pt;}
.h9_c01019{height:38.937500pt;}
.h4_c01019{height:70.664062pt;}
.h3_c01019{height:74.906250pt;}
.h6_c01019{height:75.456000pt;}
.h7_c01019{height:81.031250pt;}
.h5_c01019{height:86.634667pt;}
.h2_c01019{height:148.557292pt;}
.h1_c01019{height:864.666667pt;}
.h0_c01019{height:864.933333pt;}
.w2_c01019{width:93.222667pt;}
.w0_c01019{width:585.133333pt;}
.w1_c01019{width:585.333333pt;}
.x0_c01019{left:0.000000pt;}
.x3_c01019{left:95.733333pt;}
.x2_c01019{left:98.133333pt;}
.x1_c01019{left:99.066667pt;}
.xf_c01019{left:100.800000pt;}
.xc_c01019{left:102.400000pt;}
.xd_c01019{left:110.400000pt;}
.x4_c01019{left:123.333333pt;}
.xe_c01019{left:178.400000pt;}
.x5_c01019{left:206.666667pt;}
.xa_c01019{left:210.666667pt;}
.x8_c01019{left:211.600000pt;}
.xb_c01019{left:220.533333pt;}
.x9_c01019{left:222.400000pt;}
.x11_c01019{left:249.734904pt;}
.x7_c01019{left:266.133333pt;}
.x6_c01019{left:324.933333pt;}
.x10_c01019{left:504.666667pt;}
}





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

.ir_c01020:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01020{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01020;src:url('chunks/assets/font_171de6915d43d06cec95da60.woff2')format("woff");}.ff1_c01020{font-family:ff1_c01020;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01020;src:url('chunks/assets/font_73130e45179b6551ec0c0246.woff2')format("woff");}.ff2_c01020{font-family:ff2_c01020;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01020;src:url('chunks/assets/font_af300de5c8b43d1d8aa288ae.woff2')format("woff");}.ff3_c01020{font-family:ff3_c01020;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01020;src:url('chunks/assets/font_4521b04827e300c1ac36612b.woff2')format("woff");}.ff4_c01020{font-family:ff4_c01020;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01020;src:url('chunks/assets/font_5b85b381f601a5d1ec3f6fa4.woff2')format("woff");}.ff5_c01020{font-family:ff5_c01020;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01020;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c01020{font-family:ff6_c01020;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01020{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01020{vertical-align:0.000000px;}
.ls1_c01020{letter-spacing:0.000000px;}
.ls3_c01020{letter-spacing:3.000000px;}
.ls2_c01020{letter-spacing:6.000000px;}
.ls0_c01020{letter-spacing:9.000000px;}
.sc__c01020{text-shadow:none;}
.sc0_c01020{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01020{-webkit-text-stroke:0px transparent;}
.sc0_c01020{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01020{word-spacing:-42.000000px;}
.ws0_c01020{word-spacing:-20.250000px;}
.ws1_c01020{word-spacing:-17.352000px;}
.ws3_c01020{word-spacing:0.000000px;}
._20_c01020{margin-left:-25.848000px;}
._1e_c01020{margin-left:-22.932000px;}
._11_c01020{margin-left:-16.857000px;}
._1c_c01020{margin-left:-14.499000px;}
._14_c01020{margin-left:-13.374000px;}
._10_c01020{margin-left:-11.952000px;}
._13_c01020{margin-left:-10.314000px;}
._c_c01020{margin-left:-9.018000px;}
._d_c01020{margin-left:-7.497000px;}
._b_c01020{margin-left:-5.517000px;}
._9_c01020{margin-left:-4.374000px;}
._a_c01020{margin-left:-3.240000px;}
._e_c01020{margin-left:-2.178000px;}
._8_c01020{margin-left:-1.053000px;}
._2_c01020{width:1.377000px;}
._1_c01020{width:3.240000px;}
._5_c01020{width:4.293000px;}
._3_c01020{width:5.427000px;}
._0_c01020{width:6.885000px;}
._16_c01020{width:8.181000px;}
._7_c01020{width:9.315000px;}
._f_c01020{width:10.368000px;}
._17_c01020{width:12.384000px;}
._4_c01020{width:14.094000px;}
._6_c01020{width:16.038000px;}
._18_c01020{width:17.253000px;}
._15_c01020{width:18.468000px;}
._1d_c01020{width:20.187000px;}
._1b_c01020{width:21.528000px;}
._22_c01020{width:22.581000px;}
._1f_c01020{width:28.413000px;}
._1a_c01020{width:29.421000px;}
._12_c01020{width:38.646000px;}
._21_c01020{width:46.917000px;}
._19_c01020{width:265.095000px;}
._23_c01020{width:333.720000px;}
.fc2_c01020{color:transparent;}
.fc1_c01020{color:rgb(128,128,128);}
.fc0_c01020{color:rgb(0,0,0);}
.fs3_c01020{font-size:42.000000px;}
.fs6_c01020{font-size:48.000000px;}
.fs2_c01020{font-size:57.000000px;}
.fs4_c01020{font-size:66.000000px;}
.fs1_c01020{font-size:72.000000px;}
.fs5_c01020{font-size:78.000000px;}
.fs0_c01020{font-size:81.000000px;}
.y0_c01020{bottom:0.000000px;}
.y25_c01020{bottom:3.105000px;}
.y24_c01020{bottom:7.228369px;}
.y23_c01020{bottom:52.920000px;}
.y22_c01020{bottom:77.220000px;}
.y21_c01020{bottom:103.170000px;}
.y20_c01020{bottom:127.470000px;}
.y1f_c01020{bottom:151.920000px;}
.y1e_c01020{bottom:177.870000px;}
.y1d_c01020{bottom:200.820000px;}
.y1c_c01020{bottom:225.120000px;}
.y1b_c01020{bottom:249.120000px;}
.y1a_c01020{bottom:274.020000px;}
.y19_c01020{bottom:298.020000px;}
.y18_c01020{bottom:322.920000px;}
.y17_c01020{bottom:347.520000px;}
.y16_c01020{bottom:370.470000px;}
.y15_c01020{bottom:395.820000px;}
.y14_c01020{bottom:420.570000px;}
.y13_c01020{bottom:442.920000px;}
.y12_c01020{bottom:467.670000px;}
.y11_c01020{bottom:492.420000px;}
.y10_c01020{bottom:516.270000px;}
.yf_c01020{bottom:539.970000px;}
.ye_c01020{bottom:564.870000px;}
.yd_c01020{bottom:587.970000px;}
.yc_c01020{bottom:612.870000px;}
.yb_c01020{bottom:636.870000px;}
.ya_c01020{bottom:660.120000px;}
.y9_c01020{bottom:683.670000px;}
.y8_c01020{bottom:707.970000px;}
.y7_c01020{bottom:733.020000px;}
.y6_c01020{bottom:757.020000px;}
.y5_c01020{bottom:781.320000px;}
.y4_c01020{bottom:805.320000px;}
.y3_c01020{bottom:829.470000px;}
.y2_c01020{bottom:853.470000px;}
.y1_c01020{bottom:877.770000px;}
.h6_c01020{height:13.200073px;}
.h7_c01020{height:43.804688px;}
.h2_c01020{height:79.497070px;}
.h4_c01020{height:84.269531px;}
.h3_c01020{height:91.160156px;}
.h5_c01020{height:98.756836px;}
.h0_c01020{height:970.350000px;}
.h1_c01020{height:970.500000px;}
.w2_c01020{width:104.875500px;}
.w0_c01020{width:660.450000px;}
.w1_c01020{width:660.750000px;}
.x0_c01020{left:0.000000px;}
.x6_c01020{left:51.600000px;}
.x2_c01020{left:52.950000px;}
.x4_c01020{left:54.300000px;}
.x3_c01020{left:55.350000px;}
.x1_c01020{left:56.400000px;}
.x5_c01020{left:79.650000px;}
.x8_c01020{left:282.039230px;}
.x7_c01020{left:421.650000px;}
@media print{
.v0_c01020{vertical-align:0.000000pt;}
.ls1_c01020{letter-spacing:0.000000pt;}
.ls3_c01020{letter-spacing:2.666667pt;}
.ls2_c01020{letter-spacing:5.333333pt;}
.ls0_c01020{letter-spacing:8.000000pt;}
.ws2_c01020{word-spacing:-37.333333pt;}
.ws0_c01020{word-spacing:-18.000000pt;}
.ws1_c01020{word-spacing:-15.424000pt;}
.ws3_c01020{word-spacing:0.000000pt;}
._20_c01020{margin-left:-22.976000pt;}
._1e_c01020{margin-left:-20.384000pt;}
._11_c01020{margin-left:-14.984000pt;}
._1c_c01020{margin-left:-12.888000pt;}
._14_c01020{margin-left:-11.888000pt;}
._10_c01020{margin-left:-10.624000pt;}
._13_c01020{margin-left:-9.168000pt;}
._c_c01020{margin-left:-8.016000pt;}
._d_c01020{margin-left:-6.664000pt;}
._b_c01020{margin-left:-4.904000pt;}
._9_c01020{margin-left:-3.888000pt;}
._a_c01020{margin-left:-2.880000pt;}
._e_c01020{margin-left:-1.936000pt;}
._8_c01020{margin-left:-0.936000pt;}
._2_c01020{width:1.224000pt;}
._1_c01020{width:2.880000pt;}
._5_c01020{width:3.816000pt;}
._3_c01020{width:4.824000pt;}
._0_c01020{width:6.120000pt;}
._16_c01020{width:7.272000pt;}
._7_c01020{width:8.280000pt;}
._f_c01020{width:9.216000pt;}
._17_c01020{width:11.008000pt;}
._4_c01020{width:12.528000pt;}
._6_c01020{width:14.256000pt;}
._18_c01020{width:15.336000pt;}
._15_c01020{width:16.416000pt;}
._1d_c01020{width:17.944000pt;}
._1b_c01020{width:19.136000pt;}
._22_c01020{width:20.072000pt;}
._1f_c01020{width:25.256000pt;}
._1a_c01020{width:26.152000pt;}
._12_c01020{width:34.352000pt;}
._21_c01020{width:41.704000pt;}
._19_c01020{width:235.640000pt;}
._23_c01020{width:296.640000pt;}
.fs3_c01020{font-size:37.333333pt;}
.fs6_c01020{font-size:42.666667pt;}
.fs2_c01020{font-size:50.666667pt;}
.fs4_c01020{font-size:58.666667pt;}
.fs1_c01020{font-size:64.000000pt;}
.fs5_c01020{font-size:69.333333pt;}
.fs0_c01020{font-size:72.000000pt;}
.y0_c01020{bottom:0.000000pt;}
.y25_c01020{bottom:2.760000pt;}
.y24_c01020{bottom:6.425217pt;}
.y23_c01020{bottom:47.040000pt;}
.y22_c01020{bottom:68.640000pt;}
.y21_c01020{bottom:91.706667pt;}
.y20_c01020{bottom:113.306667pt;}
.y1f_c01020{bottom:135.040000pt;}
.y1e_c01020{bottom:158.106667pt;}
.y1d_c01020{bottom:178.506667pt;}
.y1c_c01020{bottom:200.106667pt;}
.y1b_c01020{bottom:221.440000pt;}
.y1a_c01020{bottom:243.573333pt;}
.y19_c01020{bottom:264.906667pt;}
.y18_c01020{bottom:287.040000pt;}
.y17_c01020{bottom:308.906667pt;}
.y16_c01020{bottom:329.306667pt;}
.y15_c01020{bottom:351.840000pt;}
.y14_c01020{bottom:373.840000pt;}
.y13_c01020{bottom:393.706667pt;}
.y12_c01020{bottom:415.706667pt;}
.y11_c01020{bottom:437.706667pt;}
.y10_c01020{bottom:458.906667pt;}
.yf_c01020{bottom:479.973333pt;}
.ye_c01020{bottom:502.106667pt;}
.yd_c01020{bottom:522.640000pt;}
.yc_c01020{bottom:544.773333pt;}
.yb_c01020{bottom:566.106667pt;}
.ya_c01020{bottom:586.773333pt;}
.y9_c01020{bottom:607.706667pt;}
.y8_c01020{bottom:629.306667pt;}
.y7_c01020{bottom:651.573333pt;}
.y6_c01020{bottom:672.906667pt;}
.y5_c01020{bottom:694.506667pt;}
.y4_c01020{bottom:715.840000pt;}
.y3_c01020{bottom:737.306667pt;}
.y2_c01020{bottom:758.640000pt;}
.y1_c01020{bottom:780.240000pt;}
.h6_c01020{height:11.733399pt;}
.h7_c01020{height:38.937500pt;}
.h2_c01020{height:70.664062pt;}
.h4_c01020{height:74.906250pt;}
.h3_c01020{height:81.031250pt;}
.h5_c01020{height:87.783854pt;}
.h0_c01020{height:862.533333pt;}
.h1_c01020{height:862.666667pt;}
.w2_c01020{width:93.222667pt;}
.w0_c01020{width:587.066667pt;}
.w1_c01020{width:587.333333pt;}
.x0_c01020{left:0.000000pt;}
.x6_c01020{left:45.866667pt;}
.x2_c01020{left:47.066667pt;}
.x4_c01020{left:48.266667pt;}
.x3_c01020{left:49.200000pt;}
.x1_c01020{left:50.133333pt;}
.x5_c01020{left:70.800000pt;}
.x8_c01020{left:250.701538pt;}
.x7_c01020{left:374.800000pt;}
}





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

.ir_c01021:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01021{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01021;src:url('chunks/assets/font_fdd001c34d707c5a46c1e1e9.woff2')format("woff");}.ff1_c01021{font-family:ff1_c01021;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01021;src:url('chunks/assets/font_4da375317fbb2a1525591054.woff2')format("woff");}.ff2_c01021{font-family:ff2_c01021;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01021;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff3_c01021{font-family:ff3_c01021;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01021;src:url('chunks/assets/font_c866e1613f96164b6278e9f0.woff2')format("woff");}.ff4_c01021{font-family:ff4_c01021;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01021;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff5_c01021{font-family:ff5_c01021;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01021;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c01021{font-family:ff6_c01021;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01021{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01021{vertical-align:0.000000px;}
.ls1_c01021{letter-spacing:0.000000px;}
.ls0_c01021{letter-spacing:6.000000px;}
.sc__c01021{text-shadow:none;}
.sc0_c01021{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01021{-webkit-text-stroke:0px transparent;}
.sc0_c01021{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01021{word-spacing:-37.500000px;}
.ws2_c01021{word-spacing:-20.250000px;}
.ws0_c01021{word-spacing:-17.352000px;}
.ws3_c01021{word-spacing:0.000000px;}
._8_c01021{margin-left:-14.175000px;}
._16_c01021{margin-left:-13.122000px;}
._d_c01021{margin-left:-8.850000px;}
._c_c01021{margin-left:-7.614000px;}
._b_c01021{margin-left:-6.480000px;}
._e_c01021{margin-left:-4.857000px;}
._9_c01021{margin-left:-3.645000px;}
._3_c01021{margin-left:-1.944000px;}
._2_c01021{width:1.944000px;}
._0_c01021{width:3.726000px;}
._1_c01021{width:5.427000px;}
._6_c01021{width:7.209000px;}
._4_c01021{width:8.667000px;}
._5_c01021{width:10.611000px;}
._a_c01021{width:11.907000px;}
._7_c01021{width:13.770000px;}
._13_c01021{width:17.145000px;}
._17_c01021{width:18.630000px;}
._10_c01021{width:21.954000px;}
._f_c01021{width:23.571000px;}
._14_c01021{width:36.612000px;}
._12_c01021{width:213.396000px;}
._11_c01021{width:219.105000px;}
._15_c01021{width:333.174000px;}
.fc2_c01021{color:transparent;}
.fc1_c01021{color:rgb(128,128,128);}
.fc0_c01021{color:rgb(0,0,0);}
.fs3_c01021{font-size:48.000000px;}
.fs1_c01021{font-size:72.000000px;}
.fs2_c01021{font-size:75.000000px;}
.fs0_c01021{font-size:81.000000px;}
.y0_c01021{bottom:0.000000px;}
.y25_c01021{bottom:3.105000px;}
.y24_c01021{bottom:7.228371px;}
.y23_c01021{bottom:65.265000px;}
.y22_c01021{bottom:86.115000px;}
.y21_c01021{bottom:111.165000px;}
.y20_c01021{bottom:135.465000px;}
.y1f_c01021{bottom:160.365000px;}
.y1e_c01021{bottom:184.665000px;}
.y1d_c01021{bottom:209.265000px;}
.y1c_c01021{bottom:233.865000px;}
.y1b_c01021{bottom:258.615000px;}
.y1a_c01021{bottom:282.915000px;}
.y19_c01021{bottom:307.815000px;}
.y18_c01021{bottom:332.865000px;}
.y17_c01021{bottom:356.865000px;}
.y16_c01021{bottom:381.465000px;}
.y15_c01021{bottom:406.665000px;}
.y14_c01021{bottom:430.365000px;}
.y13_c01021{bottom:456.615000px;}
.y12_c01021{bottom:479.565000px;}
.y11_c01021{bottom:504.015000px;}
.y10_c01021{bottom:529.215000px;}
.yf_c01021{bottom:553.965000px;}
.ye_c01021{bottom:576.915000px;}
.yd_c01021{bottom:601.515000px;}
.yc_c01021{bottom:626.115000px;}
.yb_c01021{bottom:649.065000px;}
.ya_c01021{bottom:674.415000px;}
.y9_c01021{bottom:699.015000px;}
.y8_c01021{bottom:724.665000px;}
.y7_c01021{bottom:748.365000px;}
.y6_c01021{bottom:772.515000px;}
.y5_c01021{bottom:796.815000px;}
.y4_c01021{bottom:820.215000px;}
.y3_c01021{bottom:844.815000px;}
.y2_c01021{bottom:868.815000px;}
.y1_c01021{bottom:893.115000px;}
.h5_c01021{height:13.200074px;}
.h6_c01021{height:43.804688px;}
.h2_c01021{height:79.497070px;}
.h4_c01021{height:84.269531px;}
.h3_c01021{height:91.160156px;}
.h1_c01021{height:986.250000px;}
.h0_c01021{height:986.325000px;}
.w2_c01021{width:104.875500px;}
.w0_c01021{width:667.425000px;}
.w1_c01021{width:667.500000px;}
.x0_c01021{left:0.000000px;}
.x8_c01021{left:26.250000px;}
.x4_c01021{left:27.300000px;}
.x3_c01021{left:61.800000px;}
.x1_c01021{left:113.100000px;}
.xa_c01021{left:115.050000px;}
.x5_c01021{left:116.100000px;}
.x9_c01021{left:118.500000px;}
.x6_c01021{left:120.150000px;}
.x2_c01021{left:122.400000px;}
.x7_c01021{left:145.350000px;}
.xc_c01021{left:285.526749px;}
.xb_c01021{left:586.950000px;}
@media print{
.v0_c01021{vertical-align:0.000000pt;}
.ls1_c01021{letter-spacing:0.000000pt;}
.ls0_c01021{letter-spacing:5.333333pt;}
.ws1_c01021{word-spacing:-33.333333pt;}
.ws2_c01021{word-spacing:-18.000000pt;}
.ws0_c01021{word-spacing:-15.424000pt;}
.ws3_c01021{word-spacing:0.000000pt;}
._8_c01021{margin-left:-12.600000pt;}
._16_c01021{margin-left:-11.664000pt;}
._d_c01021{margin-left:-7.866667pt;}
._c_c01021{margin-left:-6.768000pt;}
._b_c01021{margin-left:-5.760000pt;}
._e_c01021{margin-left:-4.317333pt;}
._9_c01021{margin-left:-3.240000pt;}
._3_c01021{margin-left:-1.728000pt;}
._2_c01021{width:1.728000pt;}
._0_c01021{width:3.312000pt;}
._1_c01021{width:4.824000pt;}
._6_c01021{width:6.408000pt;}
._4_c01021{width:7.704000pt;}
._5_c01021{width:9.432000pt;}
._a_c01021{width:10.584000pt;}
._7_c01021{width:12.240000pt;}
._13_c01021{width:15.240000pt;}
._17_c01021{width:16.560000pt;}
._10_c01021{width:19.514667pt;}
._f_c01021{width:20.952000pt;}
._14_c01021{width:32.544000pt;}
._12_c01021{width:189.685333pt;}
._11_c01021{width:194.760000pt;}
._15_c01021{width:296.154667pt;}
.fs3_c01021{font-size:42.666667pt;}
.fs1_c01021{font-size:64.000000pt;}
.fs2_c01021{font-size:66.666667pt;}
.fs0_c01021{font-size:72.000000pt;}
.y0_c01021{bottom:0.000000pt;}
.y25_c01021{bottom:2.760000pt;}
.y24_c01021{bottom:6.425219pt;}
.y23_c01021{bottom:58.013333pt;}
.y22_c01021{bottom:76.546667pt;}
.y21_c01021{bottom:98.813333pt;}
.y20_c01021{bottom:120.413333pt;}
.y1f_c01021{bottom:142.546667pt;}
.y1e_c01021{bottom:164.146667pt;}
.y1d_c01021{bottom:186.013333pt;}
.y1c_c01021{bottom:207.880000pt;}
.y1b_c01021{bottom:229.880000pt;}
.y1a_c01021{bottom:251.480000pt;}
.y19_c01021{bottom:273.613333pt;}
.y18_c01021{bottom:295.880000pt;}
.y17_c01021{bottom:317.213333pt;}
.y16_c01021{bottom:339.080000pt;}
.y15_c01021{bottom:361.480000pt;}
.y14_c01021{bottom:382.546667pt;}
.y13_c01021{bottom:405.880000pt;}
.y12_c01021{bottom:426.280000pt;}
.y11_c01021{bottom:448.013333pt;}
.y10_c01021{bottom:470.413333pt;}
.yf_c01021{bottom:492.413333pt;}
.ye_c01021{bottom:512.813333pt;}
.yd_c01021{bottom:534.680000pt;}
.yc_c01021{bottom:556.546667pt;}
.yb_c01021{bottom:576.946667pt;}
.ya_c01021{bottom:599.480000pt;}
.y9_c01021{bottom:621.346667pt;}
.y8_c01021{bottom:644.146667pt;}
.y7_c01021{bottom:665.213333pt;}
.y6_c01021{bottom:686.680000pt;}
.y5_c01021{bottom:708.280000pt;}
.y4_c01021{bottom:729.080000pt;}
.y3_c01021{bottom:750.946667pt;}
.y2_c01021{bottom:772.280000pt;}
.y1_c01021{bottom:793.880000pt;}
.h5_c01021{height:11.733399pt;}
.h6_c01021{height:38.937500pt;}
.h2_c01021{height:70.664062pt;}
.h4_c01021{height:74.906250pt;}
.h3_c01021{height:81.031250pt;}
.h1_c01021{height:876.666667pt;}
.h0_c01021{height:876.733333pt;}
.w2_c01021{width:93.222667pt;}
.w0_c01021{width:593.266667pt;}
.w1_c01021{width:593.333333pt;}
.x0_c01021{left:0.000000pt;}
.x8_c01021{left:23.333333pt;}
.x4_c01021{left:24.266667pt;}
.x3_c01021{left:54.933333pt;}
.x1_c01021{left:100.533333pt;}
.xa_c01021{left:102.266667pt;}
.x5_c01021{left:103.200000pt;}
.x9_c01021{left:105.333333pt;}
.x6_c01021{left:106.800000pt;}
.x2_c01021{left:108.800000pt;}
.x7_c01021{left:129.200000pt;}
.xc_c01021{left:253.801554pt;}
.xb_c01021{left:521.733333pt;}
}





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

.ir_c01022:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01022{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01022;src:url('chunks/assets/font_c6ada36bf9c408310e0269c3.woff2')format("woff");}.ff1_c01022{font-family:ff1_c01022;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01022;src:url('chunks/assets/font_03fa35b1a49d85c6c09bf405.woff2')format("woff");}.ff2_c01022{font-family:ff2_c01022;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01022;src:url('chunks/assets/font_3f8a7b0048b149c01b27cf07.woff2')format("woff");}.ff3_c01022{font-family:ff3_c01022;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01022;src:url('chunks/assets/font_250a5c03cfe15c14138bda8c.woff2')format("woff");}.ff4_c01022{font-family:ff4_c01022;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01022;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff5_c01022{font-family:ff5_c01022;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01022;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c01022{font-family:ff6_c01022;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01022{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01022{vertical-align:0.000000px;}
.ls1_c01022{letter-spacing:0.000000px;}
.ls0_c01022{letter-spacing:3.600000px;}
.sc__c01022{text-shadow:none;}
.sc0_c01022{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01022{-webkit-text-stroke:0px transparent;}
.sc0_c01022{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01022{word-spacing:-59.184000px;}
.ws1_c01022{word-spacing:0.000000px;}
._15_c01022{margin-left:-11.712000px;}
._12_c01022{margin-left:-7.872000px;}
._11_c01022{margin-left:-6.561000px;}
._3_c01022{margin-left:-4.536000px;}
._9_c01022{margin-left:-3.402000px;}
._7_c01022{margin-left:-2.268000px;}
._2_c01022{margin-left:-1.053000px;}
._4_c01022{width:1.134000px;}
._0_c01022{width:2.430000px;}
._1_c01022{width:3.645000px;}
._8_c01022{width:4.779000px;}
._5_c01022{width:5.832000px;}
._6_c01022{width:7.047000px;}
._c_c01022{width:8.181000px;}
._b_c01022{width:9.558000px;}
._e_c01022{width:11.112000px;}
._10_c01022{width:12.798000px;}
._f_c01022{width:13.851000px;}
._d_c01022{width:15.228000px;}
._a_c01022{width:16.848000px;}
._13_c01022{width:18.873000px;}
._16_c01022{width:38.961000px;}
._14_c01022{width:101.235000px;}
._17_c01022{width:747.873000px;}
.fc2_c01022{color:transparent;}
.fc1_c01022{color:rgb(128,128,128);}
.fc0_c01022{color:rgb(0,0,0);}
.fs4_c01022{font-size:48.000000px;}
.fs3_c01022{font-size:72.000000px;}
.fs2_c01022{font-size:75.000000px;}
.fs1_c01022{font-size:78.000000px;}
.fs0_c01022{font-size:81.000000px;}
.y0_c01022{bottom:0.000000px;}
.y25_c01022{bottom:3.105000px;}
.y24_c01022{bottom:7.228369px;}
.y23_c01022{bottom:61.470000px;}
.y22_c01022{bottom:85.320000px;}
.y21_c01022{bottom:110.370000px;}
.y20_c01022{bottom:135.570000px;}
.y1f_c01022{bottom:159.570000px;}
.y1e_c01022{bottom:183.570000px;}
.y1d_c01022{bottom:208.170000px;}
.y1c_c01022{bottom:232.470000px;}
.y1b_c01022{bottom:256.770000px;}
.y1a_c01022{bottom:281.370000px;}
.y19_c01022{bottom:305.370000px;}
.y18_c01022{bottom:329.970000px;}
.y17_c01022{bottom:354.270000px;}
.y16_c01022{bottom:377.670000px;}
.y15_c01022{bottom:401.670000px;}
.y14_c01022{bottom:426.270000px;}
.y13_c01022{bottom:450.120000px;}
.y12_c01022{bottom:474.120000px;}
.y11_c01022{bottom:497.070000px;}
.y10_c01022{bottom:522.120000px;}
.yf_c01022{bottom:547.470000px;}
.ye_c01022{bottom:570.720000px;}
.yd_c01022{bottom:593.670000px;}
.yc_c01022{bottom:617.520000px;}
.yb_c01022{bottom:641.520000px;}
.ya_c01022{bottom:665.520000px;}
.y9_c01022{bottom:688.770000px;}
.y8_c01022{bottom:713.820000px;}
.y7_c01022{bottom:737.370000px;}
.y6_c01022{bottom:761.370000px;}
.y5_c01022{bottom:785.670000px;}
.y4_c01022{bottom:810.570000px;}
.y3_c01022{bottom:833.220000px;}
.y2_c01022{bottom:857.970000px;}
.y1_c01022{bottom:882.870000px;}
.h6_c01022{height:13.200073px;}
.h7_c01022{height:43.804688px;}
.h4_c01022{height:73.608398px;}
.h2_c01022{height:79.497070px;}
.h5_c01022{height:91.160156px;}
.h3_c01022{height:98.756836px;}
.h1_c01022{height:986.250000px;}
.h0_c01022{height:986.550000px;}
.w1_c01022{width:104.875500px;}
.w0_c01022{width:672.000000px;}
.x0_c01022{left:0.000000px;}
.x2_c01022{left:44.550000px;}
.x1_c01022{left:46.500000px;}
.x3_c01022{left:64.050000px;}
.x4_c01022{left:70.500000px;}
.x6_c01022{left:287.814240px;}
.x5_c01022{left:320.250000px;}
@media print{
.v0_c01022{vertical-align:0.000000pt;}
.ls1_c01022{letter-spacing:0.000000pt;}
.ls0_c01022{letter-spacing:3.200000pt;}
.ws0_c01022{word-spacing:-52.608000pt;}
.ws1_c01022{word-spacing:0.000000pt;}
._15_c01022{margin-left:-10.410667pt;}
._12_c01022{margin-left:-6.997333pt;}
._11_c01022{margin-left:-5.832000pt;}
._3_c01022{margin-left:-4.032000pt;}
._9_c01022{margin-left:-3.024000pt;}
._7_c01022{margin-left:-2.016000pt;}
._2_c01022{margin-left:-0.936000pt;}
._4_c01022{width:1.008000pt;}
._0_c01022{width:2.160000pt;}
._1_c01022{width:3.240000pt;}
._8_c01022{width:4.248000pt;}
._5_c01022{width:5.184000pt;}
._6_c01022{width:6.264000pt;}
._c_c01022{width:7.272000pt;}
._b_c01022{width:8.496000pt;}
._e_c01022{width:9.877333pt;}
._10_c01022{width:11.376000pt;}
._f_c01022{width:12.312000pt;}
._d_c01022{width:13.536000pt;}
._a_c01022{width:14.976000pt;}
._13_c01022{width:16.776000pt;}
._16_c01022{width:34.632000pt;}
._14_c01022{width:89.986667pt;}
._17_c01022{width:664.776000pt;}
.fs4_c01022{font-size:42.666667pt;}
.fs3_c01022{font-size:64.000000pt;}
.fs2_c01022{font-size:66.666667pt;}
.fs1_c01022{font-size:69.333333pt;}
.fs0_c01022{font-size:72.000000pt;}
.y0_c01022{bottom:0.000000pt;}
.y25_c01022{bottom:2.760000pt;}
.y24_c01022{bottom:6.425217pt;}
.y23_c01022{bottom:54.640000pt;}
.y22_c01022{bottom:75.840000pt;}
.y21_c01022{bottom:98.106667pt;}
.y20_c01022{bottom:120.506667pt;}
.y1f_c01022{bottom:141.840000pt;}
.y1e_c01022{bottom:163.173333pt;}
.y1d_c01022{bottom:185.040000pt;}
.y1c_c01022{bottom:206.640000pt;}
.y1b_c01022{bottom:228.240000pt;}
.y1a_c01022{bottom:250.106667pt;}
.y19_c01022{bottom:271.440000pt;}
.y18_c01022{bottom:293.306667pt;}
.y17_c01022{bottom:314.906667pt;}
.y16_c01022{bottom:335.706667pt;}
.y15_c01022{bottom:357.040000pt;}
.y14_c01022{bottom:378.906667pt;}
.y13_c01022{bottom:400.106667pt;}
.y12_c01022{bottom:421.440000pt;}
.y11_c01022{bottom:441.840000pt;}
.y10_c01022{bottom:464.106667pt;}
.yf_c01022{bottom:486.640000pt;}
.ye_c01022{bottom:507.306667pt;}
.yd_c01022{bottom:527.706667pt;}
.yc_c01022{bottom:548.906667pt;}
.yb_c01022{bottom:570.240000pt;}
.ya_c01022{bottom:591.573333pt;}
.y9_c01022{bottom:612.240000pt;}
.y8_c01022{bottom:634.506667pt;}
.y7_c01022{bottom:655.440000pt;}
.y6_c01022{bottom:676.773333pt;}
.y5_c01022{bottom:698.373333pt;}
.y4_c01022{bottom:720.506667pt;}
.y3_c01022{bottom:740.640000pt;}
.y2_c01022{bottom:762.640000pt;}
.y1_c01022{bottom:784.773333pt;}
.h6_c01022{height:11.733399pt;}
.h7_c01022{height:38.937500pt;}
.h4_c01022{height:65.429688pt;}
.h2_c01022{height:70.664062pt;}
.h5_c01022{height:81.031250pt;}
.h3_c01022{height:87.783854pt;}
.h1_c01022{height:876.666667pt;}
.h0_c01022{height:876.933333pt;}
.w1_c01022{width:93.222667pt;}
.w0_c01022{width:597.333333pt;}
.x0_c01022{left:0.000000pt;}
.x2_c01022{left:39.600000pt;}
.x1_c01022{left:41.333333pt;}
.x3_c01022{left:56.933333pt;}
.x4_c01022{left:62.666667pt;}
.x6_c01022{left:255.834880pt;}
.x5_c01022{left:284.666667pt;}
}





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

.ir_c01023:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01023{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01023;src:url('chunks/assets/font_68ebc6c91e5278e15db85dd1.woff2')format("woff");}.ff1_c01023{font-family:ff1_c01023;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01023;src:url('chunks/assets/font_95c7d8a5b4f16024329312d8.woff2')format("woff");}.ff2_c01023{font-family:ff2_c01023;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01023;src:url('chunks/assets/font_8bf9e5b916b345554b35b145.woff2')format("woff");}.ff3_c01023{font-family:ff3_c01023;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01023;src:url('chunks/assets/font_4af0892c35372ba25e9a705c.woff2')format("woff");}.ff4_c01023{font-family:ff4_c01023;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01023;src:url('chunks/assets/font_178e289d8d9566264fa310d6.woff2')format("woff");}.ff5_c01023{font-family:ff5_c01023;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01023;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c01023{font-family:ff6_c01023;line-height:1.219238;font-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_c01023{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m0_c01023{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01023{vertical-align:0.000000px;}
.v1_c01023{vertical-align:24.600000px;}
.ls1_c01023{letter-spacing:0.000000px;}
.ls2_c01023{letter-spacing:9.000000px;}
.ls0_c01023{letter-spacing:77.280000px;}
.sc__c01023{text-shadow:none;}
.sc0_c01023{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01023{-webkit-text-stroke:0px transparent;}
.sc0_c01023{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01023{word-spacing:-42.000000px;}
.ws2_c01023{word-spacing:-20.250000px;}
.ws0_c01023{word-spacing:-17.352000px;}
.ws3_c01023{word-spacing:0.000000px;}
._17_c01023{margin-left:-21.300000px;}
._19_c01023{margin-left:-18.462000px;}
._12_c01023{margin-left:-15.264000px;}
._15_c01023{margin-left:-12.000000px;}
._13_c01023{margin-left:-10.344000px;}
._11_c01023{margin-left:-9.234000px;}
._f_c01023{margin-left:-8.172000px;}
._e_c01023{margin-left:-6.363000px;}
._7_c01023{margin-left:-5.022000px;}
._9_c01023{margin-left:-3.807000px;}
._6_c01023{margin-left:-1.944000px;}
._0_c01023{width:1.215000px;}
._1_c01023{width:2.592000px;}
._2_c01023{width:4.536000px;}
._4_c01023{width:5.589000px;}
._3_c01023{width:6.885000px;}
._5_c01023{width:8.100000px;}
._b_c01023{width:9.882000px;}
._8_c01023{width:11.502000px;}
._a_c01023{width:13.041000px;}
._d_c01023{width:14.823000px;}
._c_c01023{width:16.767000px;}
._10_c01023{width:17.901000px;}
._1a_c01023{width:49.248000px;}
._1b_c01023{width:96.390000px;}
._16_c01023{width:102.411000px;}
._1d_c01023{width:167.751000px;}
._14_c01023{width:196.218000px;}
._1c_c01023{width:553.938000px;}
._18_c01023{width:829.998000px;}
.fc2_c01023{color:transparent;}
.fc1_c01023{color:rgb(128,128,128);}
.fc0_c01023{color:rgb(0,0,0);}
.fs5_c01023{font-size:48.000000px;}
.fs2_c01023{font-size:60.000000px;}
.fs3_c01023{font-size:66.000000px;}
.fs1_c01023{font-size:72.000000px;}
.fs0_c01023{font-size:81.000000px;}
.fs4_c01023{font-size:108.000000px;}
.y0_c01023{bottom:0.000000px;}
.y24_c01023{bottom:3.105000px;}
.y23_c01023{bottom:7.228369px;}
.y22_c01023{bottom:48.570000px;}
.y21_c01023{bottom:72.120000px;}
.y20_c01023{bottom:95.820000px;}
.y1f_c01023{bottom:119.520000px;}
.y1e_c01023{bottom:144.120000px;}
.y1d_c01023{bottom:168.420000px;}
.y1c_c01023{bottom:194.970000px;}
.y1b_c01023{bottom:217.620000px;}
.y1a_c01023{bottom:241.020000px;}
.y19_c01023{bottom:266.520000px;}
.y18_c01023{bottom:290.820000px;}
.y17_c01023{bottom:315.270000px;}
.y16_c01023{bottom:339.570000px;}
.y15_c01023{bottom:363.720000px;}
.y14_c01023{bottom:388.170000px;}
.y13_c01023{bottom:412.320000px;}
.y12_c01023{bottom:437.370000px;}
.y11_c01023{bottom:461.970000px;}
.y10_c01023{bottom:484.020000px;}
.yf_c01023{bottom:510.270000px;}
.ye_c01023{bottom:532.620000px;}
.yd_c01023{bottom:559.920000px;}
.yc_c01023{bottom:583.170000px;}
.yb_c01023{bottom:605.520000px;}
.ya_c01023{bottom:629.820000px;}
.y9_c01023{bottom:654.120000px;}
.y8_c01023{bottom:678.270000px;}
.y7_c01023{bottom:696.870000px;}
.y6_c01023{bottom:726.870000px;}
.y5_c01023{bottom:773.670000px;}
.y4_c01023{bottom:798.570000px;}
.y3_c01023{bottom:823.470000px;}
.y2_c01023{bottom:847.770000px;}
.y1_c01023{bottom:872.370000px;}
.h7_c01023{height:13.200073px;}
.h8_c01023{height:43.804688px;}
.h2_c01023{height:79.497070px;}
.h3_c01023{height:84.269531px;}
.h5_c01023{height:91.160156px;}
.h4_c01023{height:104.097070px;}
.h6_c01023{height:108.843750px;}
.h1_c01023{height:972.750000px;}
.h0_c01023{height:973.050000px;}
.w2_c01023{width:104.875500px;}
.w0_c01023{width:658.275000px;}
.w1_c01023{width:658.500000px;}
.x0_c01023{left:0.000000px;}
.x6_c01023{left:25.650000px;}
.x9_c01023{left:27.450000px;}
.xe_c01023{left:30.000000px;}
.x10_c01023{left:32.400000px;}
.xb_c01023{left:57.000000px;}
.xa_c01023{left:73.950000px;}
.x1_c01023{left:110.700000px;}
.x2_c01023{left:112.350000px;}
.x4_c01023{left:114.450000px;}
.x8_c01023{left:116.400000px;}
.xc_c01023{left:118.800000px;}
.xf_c01023{left:120.600000px;}
.x3_c01023{left:126.600000px;}
.x5_c01023{left:143.400000px;}
.xd_c01023{left:144.450000px;}
.x12_c01023{left:280.951767px;}
.x11_c01023{left:548.850000px;}
.x7_c01023{left:593.700000px;}
@media print{
.v0_c01023{vertical-align:0.000000pt;}
.v1_c01023{vertical-align:21.866667pt;}
.ls1_c01023{letter-spacing:0.000000pt;}
.ls2_c01023{letter-spacing:8.000000pt;}
.ls0_c01023{letter-spacing:68.693333pt;}
.ws1_c01023{word-spacing:-37.333333pt;}
.ws2_c01023{word-spacing:-18.000000pt;}
.ws0_c01023{word-spacing:-15.424000pt;}
.ws3_c01023{word-spacing:0.000000pt;}
._17_c01023{margin-left:-18.933333pt;}
._19_c01023{margin-left:-16.410667pt;}
._12_c01023{margin-left:-13.568000pt;}
._15_c01023{margin-left:-10.666667pt;}
._13_c01023{margin-left:-9.194667pt;}
._11_c01023{margin-left:-8.208000pt;}
._f_c01023{margin-left:-7.264000pt;}
._e_c01023{margin-left:-5.656000pt;}
._7_c01023{margin-left:-4.464000pt;}
._9_c01023{margin-left:-3.384000pt;}
._6_c01023{margin-left:-1.728000pt;}
._0_c01023{width:1.080000pt;}
._1_c01023{width:2.304000pt;}
._2_c01023{width:4.032000pt;}
._4_c01023{width:4.968000pt;}
._3_c01023{width:6.120000pt;}
._5_c01023{width:7.200000pt;}
._b_c01023{width:8.784000pt;}
._8_c01023{width:10.224000pt;}
._a_c01023{width:11.592000pt;}
._d_c01023{width:13.176000pt;}
._c_c01023{width:14.904000pt;}
._10_c01023{width:15.912000pt;}
._1a_c01023{width:43.776000pt;}
._1b_c01023{width:85.680000pt;}
._16_c01023{width:91.032000pt;}
._1d_c01023{width:149.112000pt;}
._14_c01023{width:174.416000pt;}
._1c_c01023{width:492.389333pt;}
._18_c01023{width:737.776000pt;}
.fs5_c01023{font-size:42.666667pt;}
.fs2_c01023{font-size:53.333333pt;}
.fs3_c01023{font-size:58.666667pt;}
.fs1_c01023{font-size:64.000000pt;}
.fs0_c01023{font-size:72.000000pt;}
.fs4_c01023{font-size:96.000000pt;}
.y0_c01023{bottom:0.000000pt;}
.y24_c01023{bottom:2.760000pt;}
.y23_c01023{bottom:6.425217pt;}
.y22_c01023{bottom:43.173333pt;}
.y21_c01023{bottom:64.106667pt;}
.y20_c01023{bottom:85.173333pt;}
.y1f_c01023{bottom:106.240000pt;}
.y1e_c01023{bottom:128.106667pt;}
.y1d_c01023{bottom:149.706667pt;}
.y1c_c01023{bottom:173.306667pt;}
.y1b_c01023{bottom:193.440000pt;}
.y1a_c01023{bottom:214.240000pt;}
.y19_c01023{bottom:236.906667pt;}
.y18_c01023{bottom:258.506667pt;}
.y17_c01023{bottom:280.240000pt;}
.y16_c01023{bottom:301.840000pt;}
.y15_c01023{bottom:323.306667pt;}
.y14_c01023{bottom:345.040000pt;}
.y13_c01023{bottom:366.506667pt;}
.y12_c01023{bottom:388.773333pt;}
.y11_c01023{bottom:410.640000pt;}
.y10_c01023{bottom:430.240000pt;}
.yf_c01023{bottom:453.573333pt;}
.ye_c01023{bottom:473.440000pt;}
.yd_c01023{bottom:497.706667pt;}
.yc_c01023{bottom:518.373333pt;}
.yb_c01023{bottom:538.240000pt;}
.ya_c01023{bottom:559.840000pt;}
.y9_c01023{bottom:581.440000pt;}
.y8_c01023{bottom:602.906667pt;}
.y7_c01023{bottom:619.440000pt;}
.y6_c01023{bottom:646.106667pt;}
.y5_c01023{bottom:687.706667pt;}
.y4_c01023{bottom:709.840000pt;}
.y3_c01023{bottom:731.973333pt;}
.y2_c01023{bottom:753.573333pt;}
.y1_c01023{bottom:775.440000pt;}
.h7_c01023{height:11.733399pt;}
.h8_c01023{height:38.937500pt;}
.h2_c01023{height:70.664062pt;}
.h3_c01023{height:74.906250pt;}
.h5_c01023{height:81.031250pt;}
.h4_c01023{height:92.530729pt;}
.h6_c01023{height:96.750000pt;}
.h1_c01023{height:864.666667pt;}
.h0_c01023{height:864.933333pt;}
.w2_c01023{width:93.222667pt;}
.w0_c01023{width:585.133333pt;}
.w1_c01023{width:585.333333pt;}
.x0_c01023{left:0.000000pt;}
.x6_c01023{left:22.800000pt;}
.x9_c01023{left:24.400000pt;}
.xe_c01023{left:26.666667pt;}
.x10_c01023{left:28.800000pt;}
.xb_c01023{left:50.666667pt;}
.xa_c01023{left:65.733333pt;}
.x1_c01023{left:98.400000pt;}
.x2_c01023{left:99.866667pt;}
.x4_c01023{left:101.733333pt;}
.x8_c01023{left:103.466667pt;}
.xc_c01023{left:105.600000pt;}
.xf_c01023{left:107.200000pt;}
.x3_c01023{left:112.533333pt;}
.x5_c01023{left:127.466667pt;}
.xd_c01023{left:128.400000pt;}
.x12_c01023{left:249.734904pt;}
.x11_c01023{left:487.866667pt;}
.x7_c01023{left:527.733333pt;}
}





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

.ir_c01024:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01024{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01024;src:url('chunks/assets/font_634405ef38ad8b2f2f65859e.woff2')format("woff");}.ff1_c01024{font-family:ff1_c01024;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01024;src:url('chunks/assets/font_32d5ea4e64437a2f52029063.woff2')format("woff");}.ff2_c01024{font-family:ff2_c01024;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01024;src:url('chunks/assets/font_3fd72de0becdd49eb2227b82.woff2')format("woff");}.ff3_c01024{font-family:ff3_c01024;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01024;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff4_c01024{font-family:ff4_c01024;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01024;src:url('chunks/assets/font_056896587db286c2ba5e0c21.woff2')format("woff");}.ff5_c01024{font-family:ff5_c01024;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01024;src:url('chunks/assets/font_04f3d097ffc95b87a2909228.woff2')format("woff");}.ff6_c01024{font-family:ff6_c01024;line-height:1.284180;font-style:normal;font-weight: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_c01024;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c01024{font-family:ff7_c01024;line-height:1.219238;font-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_c01024{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m2_c01024{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m0_c01024{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01024{vertical-align:0.000000px;}
.ls1_c01024{letter-spacing:0.000000px;}
.ls0_c01024{letter-spacing:3.636000px;}
.ls2_c01024{letter-spacing:6.000000px;}
.sc__c01024{text-shadow:none;}
.sc0_c01024{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01024{-webkit-text-stroke:0px transparent;}
.sc0_c01024{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01024{word-spacing:-45.854400px;}
.ws0_c01024{word-spacing:-22.098000px;}
.ws3_c01024{word-spacing:-20.250000px;}
.ws1_c01024{word-spacing:-17.352000px;}
.ws4_c01024{word-spacing:0.000000px;}
._14_c01024{margin-left:-26.163000px;}
._16_c01024{margin-left:-13.735200px;}
._17_c01024{margin-left:-12.477600px;}
._19_c01024{margin-left:-11.421000px;}
._12_c01024{margin-left:-10.278000px;}
._a_c01024{margin-left:-8.991000px;}
._10_c01024{margin-left:-7.221000px;}
._9_c01024{margin-left:-5.751000px;}
._3_c01024{margin-left:-3.807000px;}
._e_c01024{margin-left:-2.673000px;}
._5_c01024{margin-left:-1.134000px;}
._0_c01024{width:1.620000px;}
._4_c01024{width:2.673000px;}
._1_c01024{width:3.969000px;}
._2_c01024{width:5.184000px;}
._6_c01024{width:6.237000px;}
._7_c01024{width:7.614000px;}
._d_c01024{width:8.667000px;}
._8_c01024{width:10.773000px;}
._11_c01024{width:12.393000px;}
._c_c01024{width:13.446000px;}
._f_c01024{width:14.985000px;}
._b_c01024{width:17.172000px;}
._1a_c01024{width:18.468000px;}
._18_c01024{width:24.948000px;}
._15_c01024{width:39.123000px;}
._1c_c01024{width:60.831000px;}
._13_c01024{width:118.017000px;}
._1b_c01024{width:167.832000px;}
._1d_c01024{width:367.551000px;}
.fc2_c01024{color:transparent;}
.fc1_c01024{color:rgb(128,128,128);}
.fc0_c01024{color:rgb(0,0,0);}
.fs8_c01024{font-size:48.000000px;}
.fs5_c01024{font-size:55.200000px;}
.fs2_c01024{font-size:57.000000px;}
.fs6_c01024{font-size:69.000000px;}
.fs3_c01024{font-size:72.000000px;}
.fs0_c01024{font-size:81.000000px;}
.fs1_c01024{font-size:87.000000px;}
.fs7_c01024{font-size:108.000000px;}
.fs4_c01024{font-size:195.000000px;}
.y0_c01024{bottom:0.000000px;}
.y26_c01024{bottom:3.105000px;}
.y25_c01024{bottom:7.228369px;}
.y24_c01024{bottom:56.070000px;}
.y23_c01024{bottom:80.220000px;}
.y22_c01024{bottom:105.720000px;}
.y21_c01024{bottom:130.320000px;}
.y20_c01024{bottom:154.920000px;}
.y1f_c01024{bottom:179.820000px;}
.y1e_c01024{bottom:203.820000px;}
.y1d_c01024{bottom:227.520000px;}
.y1c_c01024{bottom:252.420000px;}
.y1b_c01024{bottom:277.320000px;}
.y1a_c01024{bottom:301.020000px;}
.y19_c01024{bottom:325.320000px;}
.y18_c01024{bottom:349.320000px;}
.y17_c01024{bottom:373.620000px;}
.y16_c01024{bottom:397.920000px;}
.y15_c01024{bottom:422.220000px;}
.y14_c01024{bottom:446.220000px;}
.y13_c01024{bottom:470.520000px;}
.y11_c01024{bottom:473.670000px;}
.y12_c01024{bottom:495.120000px;}
.y10_c01024{bottom:518.670000px;}
.yf_c01024{bottom:544.320000px;}
.ye_c01024{bottom:567.270000px;}
.yd_c01024{bottom:591.270000px;}
.yc_c01024{bottom:614.820000px;}
.yb_c01024{bottom:639.120000px;}
.ya_c01024{bottom:664.920000px;}
.y9_c01024{bottom:686.820000px;}
.y8_c01024{bottom:712.020000px;}
.y7_c01024{bottom:736.320000px;}
.y6_c01024{bottom:761.070000px;}
.y5_c01024{bottom:784.920000px;}
.y4_c01024{bottom:808.920000px;}
.y3_c01024{bottom:832.920000px;}
.y2_c01024{bottom:857.820000px;}
.y1_c01024{bottom:881.520000px;}
.h8_c01024{height:13.200073px;}
.h9_c01024{height:43.804688px;}
.h4_c01024{height:72.168457px;}
.h2_c01024{height:79.497070px;}
.h5_c01024{height:84.269531px;}
.h7_c01024{height:108.843750px;}
.h3_c01024{height:110.151855px;}
.h6_c01024{height:196.523438px;}
.h1_c01024{height:986.250000px;}
.h0_c01024{height:986.550000px;}
.w1_c01024{width:104.875500px;}
.w0_c01024{width:672.000000px;}
.x0_c01024{left:0.000000px;}
.x8_c01024{left:24.300000px;}
.x7_c01024{left:40.800000px;}
.x6_c01024{left:41.850000px;}
.x4_c01024{left:43.200000px;}
.x1_c01024{left:45.450000px;}
.x3_c01024{left:47.250000px;}
.x2_c01024{left:48.300000px;}
.x5_c01024{left:56.400000px;}
.xa_c01024{left:287.814240px;}
.x9_c01024{left:490.050000px;}
@media print{
.v0_c01024{vertical-align:0.000000pt;}
.ls1_c01024{letter-spacing:0.000000pt;}
.ls0_c01024{letter-spacing:3.232000pt;}
.ls2_c01024{letter-spacing:5.333333pt;}
.ws2_c01024{word-spacing:-40.759467pt;}
.ws0_c01024{word-spacing:-19.642667pt;}
.ws3_c01024{word-spacing:-18.000000pt;}
.ws1_c01024{word-spacing:-15.424000pt;}
.ws4_c01024{word-spacing:0.000000pt;}
._14_c01024{margin-left:-23.256000pt;}
._16_c01024{margin-left:-12.209067pt;}
._17_c01024{margin-left:-11.091200pt;}
._19_c01024{margin-left:-10.152000pt;}
._12_c01024{margin-left:-9.136000pt;}
._a_c01024{margin-left:-7.992000pt;}
._10_c01024{margin-left:-6.418667pt;}
._9_c01024{margin-left:-5.112000pt;}
._3_c01024{margin-left:-3.384000pt;}
._e_c01024{margin-left:-2.376000pt;}
._5_c01024{margin-left:-1.008000pt;}
._0_c01024{width:1.440000pt;}
._4_c01024{width:2.376000pt;}
._1_c01024{width:3.528000pt;}
._2_c01024{width:4.608000pt;}
._6_c01024{width:5.544000pt;}
._7_c01024{width:6.768000pt;}
._d_c01024{width:7.704000pt;}
._8_c01024{width:9.576000pt;}
._11_c01024{width:11.016000pt;}
._c_c01024{width:11.952000pt;}
._f_c01024{width:13.320000pt;}
._b_c01024{width:15.264000pt;}
._1a_c01024{width:16.416000pt;}
._18_c01024{width:22.176000pt;}
._15_c01024{width:34.776000pt;}
._1c_c01024{width:54.072000pt;}
._13_c01024{width:104.904000pt;}
._1b_c01024{width:149.184000pt;}
._1d_c01024{width:326.712000pt;}
.fs8_c01024{font-size:42.666667pt;}
.fs5_c01024{font-size:49.066667pt;}
.fs2_c01024{font-size:50.666667pt;}
.fs6_c01024{font-size:61.333333pt;}
.fs3_c01024{font-size:64.000000pt;}
.fs0_c01024{font-size:72.000000pt;}
.fs1_c01024{font-size:77.333333pt;}
.fs7_c01024{font-size:96.000000pt;}
.fs4_c01024{font-size:173.333333pt;}
.y0_c01024{bottom:0.000000pt;}
.y26_c01024{bottom:2.760000pt;}
.y25_c01024{bottom:6.425217pt;}
.y24_c01024{bottom:49.840000pt;}
.y23_c01024{bottom:71.306667pt;}
.y22_c01024{bottom:93.973333pt;}
.y21_c01024{bottom:115.840000pt;}
.y20_c01024{bottom:137.706667pt;}
.y1f_c01024{bottom:159.840000pt;}
.y1e_c01024{bottom:181.173333pt;}
.y1d_c01024{bottom:202.240000pt;}
.y1c_c01024{bottom:224.373333pt;}
.y1b_c01024{bottom:246.506667pt;}
.y1a_c01024{bottom:267.573333pt;}
.y19_c01024{bottom:289.173333pt;}
.y18_c01024{bottom:310.506667pt;}
.y17_c01024{bottom:332.106667pt;}
.y16_c01024{bottom:353.706667pt;}
.y15_c01024{bottom:375.306667pt;}
.y14_c01024{bottom:396.640000pt;}
.y13_c01024{bottom:418.240000pt;}
.y11_c01024{bottom:421.040000pt;}
.y12_c01024{bottom:440.106667pt;}
.y10_c01024{bottom:461.040000pt;}
.yf_c01024{bottom:483.840000pt;}
.ye_c01024{bottom:504.240000pt;}
.yd_c01024{bottom:525.573333pt;}
.yc_c01024{bottom:546.506667pt;}
.yb_c01024{bottom:568.106667pt;}
.ya_c01024{bottom:591.040000pt;}
.y9_c01024{bottom:610.506667pt;}
.y8_c01024{bottom:632.906667pt;}
.y7_c01024{bottom:654.506667pt;}
.y6_c01024{bottom:676.506667pt;}
.y5_c01024{bottom:697.706667pt;}
.y4_c01024{bottom:719.040000pt;}
.y3_c01024{bottom:740.373333pt;}
.y2_c01024{bottom:762.506667pt;}
.y1_c01024{bottom:783.573333pt;}
.h8_c01024{height:11.733399pt;}
.h9_c01024{height:38.937500pt;}
.h4_c01024{height:64.149740pt;}
.h2_c01024{height:70.664062pt;}
.h5_c01024{height:74.906250pt;}
.h7_c01024{height:96.750000pt;}
.h3_c01024{height:97.912760pt;}
.h6_c01024{height:174.687500pt;}
.h1_c01024{height:876.666667pt;}
.h0_c01024{height:876.933333pt;}
.w1_c01024{width:93.222667pt;}
.w0_c01024{width:597.333333pt;}
.x0_c01024{left:0.000000pt;}
.x8_c01024{left:21.600000pt;}
.x7_c01024{left:36.266667pt;}
.x6_c01024{left:37.200000pt;}
.x4_c01024{left:38.400000pt;}
.x1_c01024{left:40.400000pt;}
.x3_c01024{left:42.000000pt;}
.x2_c01024{left:42.933333pt;}
.x5_c01024{left:50.133333pt;}
.xa_c01024{left:255.834880pt;}
.x9_c01024{left:435.600000pt;}
}





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

.ir_c01025:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01025{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01025;src:url('chunks/assets/font_f02e5709dd8e390ee5fcd00a.woff2')format("woff");}.ff1_c01025{font-family:ff1_c01025;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01025;src:url('chunks/assets/font_205ffe16ffd41b8c360be551.woff2')format("woff");}.ff2_c01025{font-family:ff2_c01025;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01025;src:url('chunks/assets/font_d4edd73d7a3b0527bb57d0b5.woff2')format("woff");}.ff3_c01025{font-family:ff3_c01025;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01025;src:url('chunks/assets/font_fa8d4172b007c8ca67f56254.woff2')format("woff");}.ff4_c01025{font-family:ff4_c01025;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01025;src:url('chunks/assets/font_a503f0edf35a2a1747ac285d.woff2')format("woff");}.ff5_c01025{font-family:ff5_c01025;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01025;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c01025{font-family:ff6_c01025;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c01025{transform:matrix(0.087500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087500,0.000000,0.000000,0.250000,0,0);}
.m3_c01025{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m0_c01025{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01025{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.v0_c01025{vertical-align:0.000000px;}
.ls2_c01025{letter-spacing:0.000000px;}
.ls1_c01025{letter-spacing:17.700000px;}
.ls0_c01025{letter-spacing:19.092000px;}
.sc__c01025{text-shadow:none;}
.sc0_c01025{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01025{-webkit-text-stroke:0px transparent;}
.sc0_c01025{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c01025{word-spacing:-20.250000px;}
.ws3_c01025{word-spacing:-18.798000px;}
.ws1_c01025{word-spacing:-14.250000px;}
.ws5_c01025{word-spacing:-2.907000px;}
.ws6_c01025{word-spacing:-2.280000px;}
.ws7_c01025{word-spacing:-0.855000px;}
.ws0_c01025{word-spacing:-0.840000px;}
.ws8_c01025{word-spacing:-0.570000px;}
.ws9_c01025{word-spacing:0.000000px;}
.ws2_c01025{word-spacing:0.399000px;}
._30_c01025{margin-left:-34.452000px;}
._2a_c01025{margin-left:-25.272000px;}
._27_c01025{margin-left:-21.636000px;}
._22_c01025{margin-left:-19.968000px;}
._23_c01025{margin-left:-17.856000px;}
._25_c01025{margin-left:-14.184000px;}
._1b_c01025{margin-left:-10.431000px;}
._9_c01025{margin-left:-8.265000px;}
._14_c01025{margin-left:-6.219000px;}
._21_c01025{margin-left:-4.917000px;}
._19_c01025{margin-left:-3.078000px;}
._f_c01025{margin-left:-1.140000px;}
._a_c01025{width:2.043000px;}
._6_c01025{width:3.225000px;}
._1_c01025{width:4.845000px;}
._0_c01025{width:5.928000px;}
._3_c01025{width:7.353000px;}
._2_c01025{width:8.379000px;}
._8_c01025{width:10.089000px;}
._4_c01025{width:11.343000px;}
._5_c01025{width:13.224000px;}
._2e_c01025{width:14.592000px;}
._7_c01025{width:15.846000px;}
._13_c01025{width:16.929000px;}
._b_c01025{width:18.639000px;}
._1e_c01025{width:19.746000px;}
._c_c01025{width:20.805000px;}
._e_c01025{width:22.368000px;}
._d_c01025{width:24.177000px;}
._11_c01025{width:25.398000px;}
._12_c01025{width:27.246000px;}
._20_c01025{width:28.866000px;}
._15_c01025{width:30.174000px;}
._2f_c01025{width:40.857000px;}
._2c_c01025{width:48.024000px;}
._1f_c01025{width:52.359000px;}
._1c_c01025{width:55.644000px;}
._17_c01025{width:69.483000px;}
._26_c01025{width:91.512000px;}
._1d_c01025{width:101.826000px;}
._2b_c01025{width:163.107000px;}
._2d_c01025{width:176.985000px;}
._24_c01025{width:186.192000px;}
._18_c01025{width:201.894000px;}
._1a_c01025{width:238.647000px;}
._10_c01025{width:281.670000px;}
._28_c01025{width:404.271000px;}
._29_c01025{width:500.481000px;}
._16_c01025{width:1382.148000px;}
._31_c01025{width:1877.580000px;}
.fc2_c01025{color:transparent;}
.fc1_c01025{color:rgb(128,128,128);}
.fc0_c01025{color:rgb(0,0,0);}
.fs5_c01025{font-size:48.000000px;}
.fs0_c01025{font-size:57.000000px;}
.fs2_c01025{font-size:72.000000px;}
.fs1_c01025{font-size:78.000000px;}
.fs3_c01025{font-size:81.000000px;}
.fs4_c01025{font-size:108.000000px;}
.y0_c01025{bottom:0.000000px;}
.y26_c01025{bottom:3.105000px;}
.y25_c01025{bottom:7.228371px;}
.y24_c01025{bottom:60.765000px;}
.y23_c01025{bottom:85.065000px;}
.y22_c01025{bottom:106.965000px;}
.y21_c01025{bottom:132.615000px;}
.y20_c01025{bottom:157.065000px;}
.y1f_c01025{bottom:183.315000px;}
.y1e_c01025{bottom:206.265000px;}
.y1d_c01025{bottom:230.865000px;}
.y1c_c01025{bottom:256.815000px;}
.y1b_c01025{bottom:278.565000px;}
.y1a_c01025{bottom:302.415000px;}
.y19_c01025{bottom:316.665000px;}
.y18_c01025{bottom:330.165000px;}
.y17_c01025{bottom:356.415000px;}
.y16_c01025{bottom:378.015000px;}
.y15_c01025{bottom:403.365000px;}
.y14_c01025{bottom:428.265000px;}
.y13_c01025{bottom:450.915000px;}
.y12_c01025{bottom:474.615000px;}
.y11_c01025{bottom:497.865000px;}
.y10_c01025{bottom:523.215000px;}
.yf_c01025{bottom:547.065000px;}
.ye_c01025{bottom:571.365000px;}
.yd_c01025{bottom:595.665000px;}
.yc_c01025{bottom:620.115000px;}
.yb_c01025{bottom:649.815000px;}
.ya_c01025{bottom:669.015000px;}
.y9_c01025{bottom:693.015000px;}
.y8_c01025{bottom:717.615000px;}
.y7_c01025{bottom:741.615000px;}
.y6_c01025{bottom:765.915000px;}
.y5_c01025{bottom:790.215000px;}
.y4_c01025{bottom:814.815000px;}
.y3_c01025{bottom:840.165000px;}
.y2_c01025{bottom:863.415000px;}
.y1_c01025{bottom:887.415000px;}
.h7_c01025{height:13.200074px;}
.h8_c01025{height:43.804688px;}
.h2_c01025{height:57.445312px;}
.h5_c01025{height:79.497070px;}
.h4_c01025{height:84.269531px;}
.h3_c01025{height:98.756836px;}
.h6_c01025{height:108.843750px;}
.h1_c01025{height:986.250000px;}
.h0_c01025{height:986.325000px;}
.w2_c01025{width:104.875500px;}
.w0_c01025{width:667.425000px;}
.w1_c01025{width:667.500000px;}
.x0_c01025{left:0.000000px;}
.x8_c01025{left:37.800000px;}
.xc_c01025{left:41.100000px;}
.x9_c01025{left:42.750000px;}
.x11_c01025{left:44.850000px;}
.xb_c01025{left:62.700000px;}
.xd_c01025{left:97.200000px;}
.x5_c01025{left:100.800000px;}
.x2_c01025{left:119.400000px;}
.x1_c01025{left:120.600000px;}
.x3_c01025{left:122.550000px;}
.x4_c01025{left:123.900000px;}
.x6_c01025{left:126.900000px;}
.x7_c01025{left:128.550000px;}
.xa_c01025{left:131.250000px;}
.x10_c01025{left:136.800000px;}
.x12_c01025{left:192.450000px;}
.x13_c01025{left:285.526749px;}
.xe_c01025{left:580.650000px;}
.xf_c01025{left:622.050000px;}
@media print{
.v0_c01025{vertical-align:0.000000pt;}
.ls2_c01025{letter-spacing:0.000000pt;}
.ls1_c01025{letter-spacing:15.733333pt;}
.ls0_c01025{letter-spacing:16.970667pt;}
.ws4_c01025{word-spacing:-18.000000pt;}
.ws3_c01025{word-spacing:-16.709333pt;}
.ws1_c01025{word-spacing:-12.666667pt;}
.ws5_c01025{word-spacing:-2.584000pt;}
.ws6_c01025{word-spacing:-2.026667pt;}
.ws7_c01025{word-spacing:-0.760000pt;}
.ws0_c01025{word-spacing:-0.746667pt;}
.ws8_c01025{word-spacing:-0.506667pt;}
.ws9_c01025{word-spacing:0.000000pt;}
.ws2_c01025{word-spacing:0.354667pt;}
._30_c01025{margin-left:-30.624000pt;}
._2a_c01025{margin-left:-22.464000pt;}
._27_c01025{margin-left:-19.232000pt;}
._22_c01025{margin-left:-17.749333pt;}
._23_c01025{margin-left:-15.872000pt;}
._25_c01025{margin-left:-12.608000pt;}
._1b_c01025{margin-left:-9.272000pt;}
._9_c01025{margin-left:-7.346667pt;}
._14_c01025{margin-left:-5.528000pt;}
._21_c01025{margin-left:-4.370667pt;}
._19_c01025{margin-left:-2.736000pt;}
._f_c01025{margin-left:-1.013333pt;}
._a_c01025{width:1.816000pt;}
._6_c01025{width:2.866667pt;}
._1_c01025{width:4.306667pt;}
._0_c01025{width:5.269333pt;}
._3_c01025{width:6.536000pt;}
._2_c01025{width:7.448000pt;}
._8_c01025{width:8.968000pt;}
._4_c01025{width:10.082667pt;}
._5_c01025{width:11.754667pt;}
._2e_c01025{width:12.970667pt;}
._7_c01025{width:14.085333pt;}
._13_c01025{width:15.048000pt;}
._b_c01025{width:16.568000pt;}
._1e_c01025{width:17.552000pt;}
._c_c01025{width:18.493333pt;}
._e_c01025{width:19.882667pt;}
._d_c01025{width:21.490667pt;}
._11_c01025{width:22.576000pt;}
._12_c01025{width:24.218667pt;}
._20_c01025{width:25.658667pt;}
._15_c01025{width:26.821333pt;}
._2f_c01025{width:36.317333pt;}
._2c_c01025{width:42.688000pt;}
._1f_c01025{width:46.541333pt;}
._1c_c01025{width:49.461333pt;}
._17_c01025{width:61.762667pt;}
._26_c01025{width:81.344000pt;}
._1d_c01025{width:90.512000pt;}
._2b_c01025{width:144.984000pt;}
._2d_c01025{width:157.320000pt;}
._24_c01025{width:165.504000pt;}
._18_c01025{width:179.461333pt;}
._1a_c01025{width:212.130667pt;}
._10_c01025{width:250.373333pt;}
._28_c01025{width:359.352000pt;}
._29_c01025{width:444.872000pt;}
._16_c01025{width:1228.576000pt;}
._31_c01025{width:1668.960000pt;}
.fs5_c01025{font-size:42.666667pt;}
.fs0_c01025{font-size:50.666667pt;}
.fs2_c01025{font-size:64.000000pt;}
.fs1_c01025{font-size:69.333333pt;}
.fs3_c01025{font-size:72.000000pt;}
.fs4_c01025{font-size:96.000000pt;}
.y0_c01025{bottom:0.000000pt;}
.y26_c01025{bottom:2.760000pt;}
.y25_c01025{bottom:6.425219pt;}
.y24_c01025{bottom:54.013333pt;}
.y23_c01025{bottom:75.613333pt;}
.y22_c01025{bottom:95.080000pt;}
.y21_c01025{bottom:117.880000pt;}
.y20_c01025{bottom:139.613333pt;}
.y1f_c01025{bottom:162.946667pt;}
.y1e_c01025{bottom:183.346667pt;}
.y1d_c01025{bottom:205.213333pt;}
.y1c_c01025{bottom:228.280000pt;}
.y1b_c01025{bottom:247.613333pt;}
.y1a_c01025{bottom:268.813333pt;}
.y19_c01025{bottom:281.480000pt;}
.y18_c01025{bottom:293.480000pt;}
.y17_c01025{bottom:316.813333pt;}
.y16_c01025{bottom:336.013333pt;}
.y15_c01025{bottom:358.546667pt;}
.y14_c01025{bottom:380.680000pt;}
.y13_c01025{bottom:400.813333pt;}
.y12_c01025{bottom:421.880000pt;}
.y11_c01025{bottom:442.546667pt;}
.y10_c01025{bottom:465.080000pt;}
.yf_c01025{bottom:486.280000pt;}
.ye_c01025{bottom:507.880000pt;}
.yd_c01025{bottom:529.480000pt;}
.yc_c01025{bottom:551.213333pt;}
.yb_c01025{bottom:577.613333pt;}
.ya_c01025{bottom:594.680000pt;}
.y9_c01025{bottom:616.013333pt;}
.y8_c01025{bottom:637.880000pt;}
.y7_c01025{bottom:659.213333pt;}
.y6_c01025{bottom:680.813333pt;}
.y5_c01025{bottom:702.413333pt;}
.y4_c01025{bottom:724.280000pt;}
.y3_c01025{bottom:746.813333pt;}
.y2_c01025{bottom:767.480000pt;}
.y1_c01025{bottom:788.813333pt;}
.h7_c01025{height:11.733399pt;}
.h8_c01025{height:38.937500pt;}
.h2_c01025{height:51.062500pt;}
.h5_c01025{height:70.664062pt;}
.h4_c01025{height:74.906250pt;}
.h3_c01025{height:87.783854pt;}
.h6_c01025{height:96.750000pt;}
.h1_c01025{height:876.666667pt;}
.h0_c01025{height:876.733333pt;}
.w2_c01025{width:93.222667pt;}
.w0_c01025{width:593.266667pt;}
.w1_c01025{width:593.333333pt;}
.x0_c01025{left:0.000000pt;}
.x8_c01025{left:33.600000pt;}
.xc_c01025{left:36.533333pt;}
.x9_c01025{left:38.000000pt;}
.x11_c01025{left:39.866667pt;}
.xb_c01025{left:55.733333pt;}
.xd_c01025{left:86.400000pt;}
.x5_c01025{left:89.600000pt;}
.x2_c01025{left:106.133333pt;}
.x1_c01025{left:107.200000pt;}
.x3_c01025{left:108.933333pt;}
.x4_c01025{left:110.133333pt;}
.x6_c01025{left:112.800000pt;}
.x7_c01025{left:114.266667pt;}
.xa_c01025{left:116.666667pt;}
.x10_c01025{left:121.600000pt;}
.x12_c01025{left:171.066667pt;}
.x13_c01025{left:253.801554pt;}
.xe_c01025{left:516.133333pt;}
.xf_c01025{left:552.933333pt;}
}





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

.ir_c01026:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01026{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01026;src:url('chunks/assets/font_c3773798feb707d601c210ec.woff2')format("woff");}.ff1_c01026{font-family:ff1_c01026;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01026;src:url('chunks/assets/font_7d355eb3a9c4e5905cb4713f.woff2')format("woff");}.ff2_c01026{font-family:ff2_c01026;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01026;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff3_c01026{font-family:ff3_c01026;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01026;src:url('chunks/assets/font_337e7375a41673b4a55d81a3.woff2')format("woff");}.ff4_c01026{font-family:ff4_c01026;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01026;src:url('chunks/assets/font_8371493092588623a92dc408.woff2')format("woff");}.ff5_c01026{font-family:ff5_c01026;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01026;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c01026{font-family:ff6_c01026;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01026{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01026{vertical-align:0.000000px;}
.ls2_c01026{letter-spacing:0.000000px;}
.ls0_c01026{letter-spacing:2.700000px;}
.ls1_c01026{letter-spacing:6.840000px;}
.sc__c01026{text-shadow:none;}
.sc0_c01026{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01026{-webkit-text-stroke:0px transparent;}
.sc0_c01026{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01026{word-spacing:-40.032000px;}
.ws1_c01026{word-spacing:-17.352000px;}
.ws2_c01026{word-spacing:0.000000px;}
._c_c01026{margin-left:-23.895000px;}
._20_c01026{margin-left:-22.095000px;}
._17_c01026{margin-left:-19.542000px;}
._25_c01026{margin-left:-16.200000px;}
._12_c01026{margin-left:-13.626000px;}
._13_c01026{margin-left:-12.150000px;}
._14_c01026{margin-left:-10.116000px;}
._15_c01026{margin-left:-9.000000px;}
._10_c01026{margin-left:-7.713000px;}
._11_c01026{margin-left:-6.120000px;}
._3_c01026{margin-left:-4.950000px;}
._2_c01026{margin-left:-3.366000px;}
._1_c01026{margin-left:-1.782000px;}
._0_c01026{width:1.584000px;}
._9_c01026{width:3.402000px;}
._6_c01026{width:5.103000px;}
._e_c01026{width:6.183000px;}
._a_c01026{width:7.524000px;}
._8_c01026{width:8.748000px;}
._7_c01026{width:10.125000px;}
._16_c01026{width:11.640000px;}
._18_c01026{width:13.359000px;}
._d_c01026{width:14.643000px;}
._f_c01026{width:16.884000px;}
._21_c01026{width:17.991000px;}
._19_c01026{width:21.705000px;}
._1e_c01026{width:26.910000px;}
._b_c01026{width:28.125000px;}
._5_c01026{width:36.036000px;}
._1b_c01026{width:66.663000px;}
._23_c01026{width:76.455000px;}
._4_c01026{width:81.378000px;}
._26_c01026{width:92.259000px;}
._27_c01026{width:96.003000px;}
._1c_c01026{width:129.186000px;}
._1d_c01026{width:146.304000px;}
._1a_c01026{width:206.121000px;}
._1f_c01026{width:244.122000px;}
._22_c01026{width:339.993000px;}
._28_c01026{width:455.868000px;}
._24_c01026{width:506.331000px;}
.fc2_c01026{color:transparent;}
.fc1_c01026{color:rgb(128,128,128);}
.fc0_c01026{color:rgb(0,0,0);}
.fs5_c01026{font-size:48.000000px;}
.fs0_c01026{font-size:51.000000px;}
.fs3_c01026{font-size:72.000000px;}
.fs2_c01026{font-size:81.000000px;}
.fs4_c01026{font-size:87.000000px;}
.fs1_c01026{font-size:99.000000px;}
.y0_c01026{bottom:0.000000px;}
.y27_c01026{bottom:3.105000px;}
.y26_c01026{bottom:7.228369px;}
.y25_c01026{bottom:66.870000px;}
.y24_c01026{bottom:89.820000px;}
.y23_c01026{bottom:116.820000px;}
.y22_c01026{bottom:141.720000px;}
.y21_c01026{bottom:165.270000px;}
.y20_c01026{bottom:188.970000px;}
.y1f_c01026{bottom:215.220000px;}
.y1_c01026{bottom:227.820000px;}
.y1e_c01026{bottom:238.170000px;}
.y1d_c01026{bottom:262.470000px;}
.y1c_c01026{bottom:286.920000px;}
.y1b_c01026{bottom:310.770000px;}
.y1a_c01026{bottom:336.420000px;}
.y19_c01026{bottom:360.420000px;}
.y18_c01026{bottom:384.120000px;}
.y17_c01026{bottom:408.270000px;}
.y16_c01026{bottom:432.570000px;}
.y15_c01026{bottom:457.020000px;}
.y14_c01026{bottom:482.670000px;}
.y13_c01026{bottom:505.920000px;}
.y12_c01026{bottom:529.770000px;}
.y11_c01026{bottom:555.120000px;}
.y10_c01026{bottom:577.470000px;}
.yf_c01026{bottom:601.470000px;}
.ye_c01026{bottom:625.320000px;}
.yd_c01026{bottom:648.720000px;}
.yc_c01026{bottom:672.870000px;}
.yb_c01026{bottom:697.920000px;}
.ya_c01026{bottom:722.520000px;}
.y9_c01026{bottom:745.170000px;}
.y8_c01026{bottom:769.170000px;}
.y7_c01026{bottom:793.770000px;}
.y6_c01026{bottom:817.470000px;}
.y5_c01026{bottom:841.770000px;}
.y4_c01026{bottom:865.620000px;}
.y3_c01026{bottom:889.920000px;}
.y2_c01026{bottom:924.120000px;}
.h8_c01026{height:13.200073px;}
.h9_c01026{height:43.804688px;}
.h2_c01026{height:50.053711px;}
.h4_c01026{height:79.497070px;}
.h6_c01026{height:84.269531px;}
.h5_c01026{height:91.160156px;}
.h7_c01026{height:91.176000px;}
.h3_c01026{height:115.870605px;}
.h1_c01026{height:986.250000px;}
.h0_c01026{height:986.550000px;}
.w1_c01026{width:104.875500px;}
.w0_c01026{width:672.000000px;}
.x0_c01026{left:0.000000px;}
.x1_c01026{left:23.400000px;}
.x4_c01026{left:39.750000px;}
.x3_c01026{left:42.150000px;}
.x5_c01026{left:43.500000px;}
.x6_c01026{left:45.000000px;}
.x7_c01026{left:46.200000px;}
.x8_c01026{left:47.250000px;}
.xa_c01026{left:48.300000px;}
.x9_c01026{left:49.650000px;}
.xb_c01026{left:50.850000px;}
.x2_c01026{left:158.550000px;}
.xc_c01026{left:180.450000px;}
.xd_c01026{left:287.814240px;}
@media print{
.v0_c01026{vertical-align:0.000000pt;}
.ls2_c01026{letter-spacing:0.000000pt;}
.ls0_c01026{letter-spacing:2.400000pt;}
.ls1_c01026{letter-spacing:6.080000pt;}
.ws0_c01026{word-spacing:-35.584000pt;}
.ws1_c01026{word-spacing:-15.424000pt;}
.ws2_c01026{word-spacing:0.000000pt;}
._c_c01026{margin-left:-21.240000pt;}
._20_c01026{margin-left:-19.640000pt;}
._17_c01026{margin-left:-17.370667pt;}
._25_c01026{margin-left:-14.400000pt;}
._12_c01026{margin-left:-12.112000pt;}
._13_c01026{margin-left:-10.800000pt;}
._14_c01026{margin-left:-8.992000pt;}
._15_c01026{margin-left:-8.000000pt;}
._10_c01026{margin-left:-6.856000pt;}
._11_c01026{margin-left:-5.440000pt;}
._3_c01026{margin-left:-4.400000pt;}
._2_c01026{margin-left:-2.992000pt;}
._1_c01026{margin-left:-1.584000pt;}
._0_c01026{width:1.408000pt;}
._9_c01026{width:3.024000pt;}
._6_c01026{width:4.536000pt;}
._e_c01026{width:5.496000pt;}
._a_c01026{width:6.688000pt;}
._8_c01026{width:7.776000pt;}
._7_c01026{width:9.000000pt;}
._16_c01026{width:10.346667pt;}
._18_c01026{width:11.874667pt;}
._d_c01026{width:13.016000pt;}
._f_c01026{width:15.008000pt;}
._21_c01026{width:15.992000pt;}
._19_c01026{width:19.293333pt;}
._1e_c01026{width:23.920000pt;}
._b_c01026{width:25.000000pt;}
._5_c01026{width:32.032000pt;}
._1b_c01026{width:59.256000pt;}
._23_c01026{width:67.960000pt;}
._4_c01026{width:72.336000pt;}
._26_c01026{width:82.008000pt;}
._27_c01026{width:85.336000pt;}
._1c_c01026{width:114.832000pt;}
._1d_c01026{width:130.048000pt;}
._1a_c01026{width:183.218667pt;}
._1f_c01026{width:216.997333pt;}
._22_c01026{width:302.216000pt;}
._28_c01026{width:405.216000pt;}
._24_c01026{width:450.072000pt;}
.fs5_c01026{font-size:42.666667pt;}
.fs0_c01026{font-size:45.333333pt;}
.fs3_c01026{font-size:64.000000pt;}
.fs2_c01026{font-size:72.000000pt;}
.fs4_c01026{font-size:77.333333pt;}
.fs1_c01026{font-size:88.000000pt;}
.y0_c01026{bottom:0.000000pt;}
.y27_c01026{bottom:2.760000pt;}
.y26_c01026{bottom:6.425217pt;}
.y25_c01026{bottom:59.440000pt;}
.y24_c01026{bottom:79.840000pt;}
.y23_c01026{bottom:103.840000pt;}
.y22_c01026{bottom:125.973333pt;}
.y21_c01026{bottom:146.906667pt;}
.y20_c01026{bottom:167.973333pt;}
.y1f_c01026{bottom:191.306667pt;}
.y1_c01026{bottom:202.506667pt;}
.y1e_c01026{bottom:211.706667pt;}
.y1d_c01026{bottom:233.306667pt;}
.y1c_c01026{bottom:255.040000pt;}
.y1b_c01026{bottom:276.240000pt;}
.y1a_c01026{bottom:299.040000pt;}
.y19_c01026{bottom:320.373333pt;}
.y18_c01026{bottom:341.440000pt;}
.y17_c01026{bottom:362.906667pt;}
.y16_c01026{bottom:384.506667pt;}
.y15_c01026{bottom:406.240000pt;}
.y14_c01026{bottom:429.040000pt;}
.y13_c01026{bottom:449.706667pt;}
.y12_c01026{bottom:470.906667pt;}
.y11_c01026{bottom:493.440000pt;}
.y10_c01026{bottom:513.306667pt;}
.yf_c01026{bottom:534.640000pt;}
.ye_c01026{bottom:555.840000pt;}
.yd_c01026{bottom:576.640000pt;}
.yc_c01026{bottom:598.106667pt;}
.yb_c01026{bottom:620.373333pt;}
.ya_c01026{bottom:642.240000pt;}
.y9_c01026{bottom:662.373333pt;}
.y8_c01026{bottom:683.706667pt;}
.y7_c01026{bottom:705.573333pt;}
.y6_c01026{bottom:726.640000pt;}
.y5_c01026{bottom:748.240000pt;}
.y4_c01026{bottom:769.440000pt;}
.y3_c01026{bottom:791.040000pt;}
.y2_c01026{bottom:821.440000pt;}
.h8_c01026{height:11.733399pt;}
.h9_c01026{height:38.937500pt;}
.h2_c01026{height:44.492188pt;}
.h4_c01026{height:70.664062pt;}
.h6_c01026{height:74.906250pt;}
.h5_c01026{height:81.031250pt;}
.h7_c01026{height:81.045333pt;}
.h3_c01026{height:102.996094pt;}
.h1_c01026{height:876.666667pt;}
.h0_c01026{height:876.933333pt;}
.w1_c01026{width:93.222667pt;}
.w0_c01026{width:597.333333pt;}
.x0_c01026{left:0.000000pt;}
.x1_c01026{left:20.800000pt;}
.x4_c01026{left:35.333333pt;}
.x3_c01026{left:37.466667pt;}
.x5_c01026{left:38.666667pt;}
.x6_c01026{left:40.000000pt;}
.x7_c01026{left:41.066667pt;}
.x8_c01026{left:42.000000pt;}
.xa_c01026{left:42.933333pt;}
.x9_c01026{left:44.133333pt;}
.xb_c01026{left:45.200000pt;}
.x2_c01026{left:140.933333pt;}
.xc_c01026{left:160.400000pt;}
.xd_c01026{left:255.834880pt;}
}





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

.ir_c01027:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01027{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01027;src:url('chunks/assets/font_379479763f6ecd93ebc00781.woff2')format("woff");}.ff1_c01027{font-family:ff1_c01027;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01027;src:url('chunks/assets/font_b39e80bdff90a11677744a19.woff2')format("woff");}.ff2_c01027{font-family:ff2_c01027;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01027;src:url('chunks/assets/font_d5713a7520ba81565395888e.woff2')format("woff");}.ff3_c01027{font-family:ff3_c01027;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01027;src:url('chunks/assets/font_99ad977fe1395eb5d3d077d8.woff2')format("woff");}.ff4_c01027{font-family:ff4_c01027;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01027;src:url('chunks/assets/font_ab0eaab5e86f867cfc4c74a8.woff2')format("woff");}.ff5_c01027{font-family:ff5_c01027;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01027;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c01027{font-family:ff6_c01027;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01027{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01027{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.v0_c01027{vertical-align:0.000000px;}
.ls0_c01027{letter-spacing:0.000000px;}
.ls2_c01027{letter-spacing:3.000000px;}
.ls1_c01027{letter-spacing:6.000000px;}
.sc__c01027{text-shadow:none;}
.sc0_c01027{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01027{-webkit-text-stroke:0px transparent;}
.sc0_c01027{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01027{word-spacing:-67.686000px;}
.ws0_c01027{word-spacing:-20.250000px;}
.ws1_c01027{word-spacing:-17.352000px;}
.ws3_c01027{word-spacing:0.000000px;}
._24_c01027{margin-left:-35.619000px;}
._23_c01027{margin-left:-25.389000px;}
._13_c01027{margin-left:-21.870000px;}
._1f_c01027{margin-left:-19.683000px;}
._1b_c01027{margin-left:-16.200000px;}
._1a_c01027{margin-left:-10.593000px;}
._1c_c01027{margin-left:-8.544000px;}
._17_c01027{margin-left:-7.533000px;}
._12_c01027{margin-left:-5.724000px;}
._c_c01027{margin-left:-4.536000px;}
._4_c01027{margin-left:-3.159000px;}
._b_c01027{margin-left:-1.701000px;}
._2_c01027{width:1.620000px;}
._0_c01027{width:2.997000px;}
._1_c01027{width:4.860000px;}
._8_c01027{width:5.994000px;}
._a_c01027{width:7.614000px;}
._d_c01027{width:8.667000px;}
._5_c01027{width:10.044000px;}
._3_c01027{width:11.907000px;}
._9_c01027{width:13.041000px;}
._10_c01027{width:14.256000px;}
._e_c01027{width:15.390000px;}
._6_c01027{width:17.253000px;}
._11_c01027{width:21.789000px;}
._7_c01027{width:23.409000px;}
._f_c01027{width:33.210000px;}
._18_c01027{width:34.650000px;}
._25_c01027{width:66.402000px;}
._22_c01027{width:72.414000px;}
._14_c01027{width:91.044000px;}
._1e_c01027{width:153.759000px;}
._21_c01027{width:182.169000px;}
._1d_c01027{width:231.741000px;}
._20_c01027{width:277.911000px;}
._15_c01027{width:286.983000px;}
._19_c01027{width:386.025000px;}
._16_c01027{width:485.838000px;}
.fc2_c01027{color:transparent;}
.fc1_c01027{color:rgb(128,128,128);}
.fc0_c01027{color:rgb(0,0,0);}
.fs6_c01027{font-size:48.000000px;}
.fs1_c01027{font-size:60.000000px;}
.fs4_c01027{font-size:66.000000px;}
.fs2_c01027{font-size:72.000000px;}
.fs0_c01027{font-size:81.000000px;}
.fs3_c01027{font-size:87.000000px;}
.fs5_c01027{font-size:93.000000px;}
.y0_c01027{bottom:0.000000px;}
.y25_c01027{bottom:3.105000px;}
.y24_c01027{bottom:7.228371px;}
.y23_c01027{bottom:62.115000px;}
.y22_c01027{bottom:85.515000px;}
.y21_c01027{bottom:111.015000px;}
.y20_c01027{bottom:135.315000px;}
.y1f_c01027{bottom:159.765000px;}
.y1e_c01027{bottom:184.365000px;}
.y1d_c01027{bottom:209.265000px;}
.y1c_c01027{bottom:233.865000px;}
.y1b_c01027{bottom:258.165000px;}
.y1a_c01027{bottom:283.965000px;}
.y19_c01027{bottom:307.215000px;}
.y18_c01027{bottom:331.815000px;}
.y17_c01027{bottom:355.815000px;}
.y16_c01027{bottom:381.015000px;}
.y15_c01027{bottom:405.315000px;}
.y14_c01027{bottom:429.765000px;}
.y13_c01027{bottom:454.065000px;}
.y12_c01027{bottom:478.215000px;}
.y11_c01027{bottom:502.215000px;}
.y10_c01027{bottom:525.165000px;}
.yf_c01027{bottom:549.915000px;}
.ye_c01027{bottom:576.465000px;}
.yd_c01027{bottom:599.865000px;}
.yc_c01027{bottom:623.115000px;}
.yb_c01027{bottom:647.115000px;}
.ya_c01027{bottom:671.715000px;}
.y9_c01027{bottom:695.715000px;}
.y8_c01027{bottom:720.315000px;}
.y7_c01027{bottom:743.265000px;}
.y6_c01027{bottom:768.465000px;}
.y5_c01027{bottom:792.465000px;}
.y4_c01027{bottom:817.065000px;}
.y3_c01027{bottom:841.065000px;}
.y2_c01027{bottom:865.365000px;}
.y1_c01027{bottom:889.665000px;}
.h7_c01027{height:13.200074px;}
.h8_c01027{height:43.804688px;}
.h3_c01027{height:75.966797px;}
.h2_c01027{height:79.497070px;}
.h4_c01027{height:84.269531px;}
.h5_c01027{height:91.176000px;}
.h6_c01027{height:91.274414px;}
.h1_c01027{height:986.250000px;}
.h0_c01027{height:986.325000px;}
.w2_c01027{width:104.875500px;}
.w0_c01027{width:667.425000px;}
.w1_c01027{width:667.500000px;}
.x0_c01027{left:0.000000px;}
.xc_c01027{left:17.850000px;}
.x8_c01027{left:19.500000px;}
.x5_c01027{left:21.300000px;}
.x3_c01027{left:22.350000px;}
.xb_c01027{left:36.450000px;}
.x4_c01027{left:80.400000px;}
.xe_c01027{left:109.950000px;}
.xd_c01027{left:111.600000px;}
.x1_c01027{left:112.950000px;}
.x2_c01027{left:114.300000px;}
.x9_c01027{left:115.350000px;}
.xa_c01027{left:116.400000px;}
.x7_c01027{left:117.450000px;}
.x6_c01027{left:138.600000px;}
.x10_c01027{left:285.526749px;}
.xf_c01027{left:562.500000px;}
@media print{
.v0_c01027{vertical-align:0.000000pt;}
.ls0_c01027{letter-spacing:0.000000pt;}
.ls2_c01027{letter-spacing:2.666667pt;}
.ls1_c01027{letter-spacing:5.333333pt;}
.ws2_c01027{word-spacing:-60.165333pt;}
.ws0_c01027{word-spacing:-18.000000pt;}
.ws1_c01027{word-spacing:-15.424000pt;}
.ws3_c01027{word-spacing:0.000000pt;}
._24_c01027{margin-left:-31.661333pt;}
._23_c01027{margin-left:-22.568000pt;}
._13_c01027{margin-left:-19.440000pt;}
._1f_c01027{margin-left:-17.496000pt;}
._1b_c01027{margin-left:-14.400000pt;}
._1a_c01027{margin-left:-9.416000pt;}
._1c_c01027{margin-left:-7.594667pt;}
._17_c01027{margin-left:-6.696000pt;}
._12_c01027{margin-left:-5.088000pt;}
._c_c01027{margin-left:-4.032000pt;}
._4_c01027{margin-left:-2.808000pt;}
._b_c01027{margin-left:-1.512000pt;}
._2_c01027{width:1.440000pt;}
._0_c01027{width:2.664000pt;}
._1_c01027{width:4.320000pt;}
._8_c01027{width:5.328000pt;}
._a_c01027{width:6.768000pt;}
._d_c01027{width:7.704000pt;}
._5_c01027{width:8.928000pt;}
._3_c01027{width:10.584000pt;}
._9_c01027{width:11.592000pt;}
._10_c01027{width:12.672000pt;}
._e_c01027{width:13.680000pt;}
._6_c01027{width:15.336000pt;}
._11_c01027{width:19.368000pt;}
._7_c01027{width:20.808000pt;}
._f_c01027{width:29.520000pt;}
._18_c01027{width:30.800000pt;}
._25_c01027{width:59.024000pt;}
._22_c01027{width:64.368000pt;}
._14_c01027{width:80.928000pt;}
._1e_c01027{width:136.674667pt;}
._21_c01027{width:161.928000pt;}
._1d_c01027{width:205.992000pt;}
._20_c01027{width:247.032000pt;}
._15_c01027{width:255.096000pt;}
._19_c01027{width:343.133333pt;}
._16_c01027{width:431.856000pt;}
.fs6_c01027{font-size:42.666667pt;}
.fs1_c01027{font-size:53.333333pt;}
.fs4_c01027{font-size:58.666667pt;}
.fs2_c01027{font-size:64.000000pt;}
.fs0_c01027{font-size:72.000000pt;}
.fs3_c01027{font-size:77.333333pt;}
.fs5_c01027{font-size:82.666667pt;}
.y0_c01027{bottom:0.000000pt;}
.y25_c01027{bottom:2.760000pt;}
.y24_c01027{bottom:6.425219pt;}
.y23_c01027{bottom:55.213333pt;}
.y22_c01027{bottom:76.013333pt;}
.y21_c01027{bottom:98.680000pt;}
.y20_c01027{bottom:120.280000pt;}
.y1f_c01027{bottom:142.013333pt;}
.y1e_c01027{bottom:163.880000pt;}
.y1d_c01027{bottom:186.013333pt;}
.y1c_c01027{bottom:207.880000pt;}
.y1b_c01027{bottom:229.480000pt;}
.y1a_c01027{bottom:252.413333pt;}
.y19_c01027{bottom:273.080000pt;}
.y18_c01027{bottom:294.946667pt;}
.y17_c01027{bottom:316.280000pt;}
.y16_c01027{bottom:338.680000pt;}
.y15_c01027{bottom:360.280000pt;}
.y14_c01027{bottom:382.013333pt;}
.y13_c01027{bottom:403.613333pt;}
.y12_c01027{bottom:425.080000pt;}
.y11_c01027{bottom:446.413333pt;}
.y10_c01027{bottom:466.813333pt;}
.yf_c01027{bottom:488.813333pt;}
.ye_c01027{bottom:512.413333pt;}
.yd_c01027{bottom:533.213333pt;}
.yc_c01027{bottom:553.880000pt;}
.yb_c01027{bottom:575.213333pt;}
.ya_c01027{bottom:597.080000pt;}
.y9_c01027{bottom:618.413333pt;}
.y8_c01027{bottom:640.280000pt;}
.y7_c01027{bottom:660.680000pt;}
.y6_c01027{bottom:683.080000pt;}
.y5_c01027{bottom:704.413333pt;}
.y4_c01027{bottom:726.280000pt;}
.y3_c01027{bottom:747.613333pt;}
.y2_c01027{bottom:769.213333pt;}
.y1_c01027{bottom:790.813333pt;}
.h7_c01027{height:11.733399pt;}
.h8_c01027{height:38.937500pt;}
.h3_c01027{height:67.526042pt;}
.h2_c01027{height:70.664062pt;}
.h4_c01027{height:74.906250pt;}
.h5_c01027{height:81.045333pt;}
.h6_c01027{height:81.132812pt;}
.h1_c01027{height:876.666667pt;}
.h0_c01027{height:876.733333pt;}
.w2_c01027{width:93.222667pt;}
.w0_c01027{width:593.266667pt;}
.w1_c01027{width:593.333333pt;}
.x0_c01027{left:0.000000pt;}
.xc_c01027{left:15.866667pt;}
.x8_c01027{left:17.333333pt;}
.x5_c01027{left:18.933333pt;}
.x3_c01027{left:19.866667pt;}
.xb_c01027{left:32.400000pt;}
.x4_c01027{left:71.466667pt;}
.xe_c01027{left:97.733333pt;}
.xd_c01027{left:99.200000pt;}
.x1_c01027{left:100.400000pt;}
.x2_c01027{left:101.600000pt;}
.x9_c01027{left:102.533333pt;}
.xa_c01027{left:103.466667pt;}
.x7_c01027{left:104.400000pt;}
.x6_c01027{left:123.200000pt;}
.x10_c01027{left:253.801554pt;}
.xf_c01027{left:500.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_c01028 {
    display:none;
  }
  .loading-indicator_c01028.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01028 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01028 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01028" -> "#page-container .classname_c01028")
 */
.pf_c01028 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01028 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01028.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01028 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01028 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01028 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01028 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01028 {overflow:visible;}
  }
}
.c_c01028 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01028 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01028:after { /* webkit #35443 */
  content: '';
}
.t_c01028:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01028 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01028 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01028 { /* info for Javascript */
  display:none;
}
.l_c01028 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01028 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01028 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01028:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01028{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01028;src:url('chunks/assets/font_81bb4a1d46bab944d466acd8.woff2')format("woff");}.ff1_c01028{font-family:ff1_c01028;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01028;src:url('chunks/assets/font_69c980ecad9d8f6e294fdcc9.woff2')format("woff");}.ff2_c01028{font-family:ff2_c01028;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01028;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff3_c01028{font-family:ff3_c01028;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01028;src:url('chunks/assets/font_6e0d43ba1fd878b1157c680a.woff2')format("woff");}.ff4_c01028{font-family:ff4_c01028;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01028;src:url('chunks/assets/font_3ab9528f507124a99ae165ea.woff2')format("woff");}.ff5_c01028{font-family:ff5_c01028;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01028;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c01028{font-family:ff6_c01028;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01028{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01028{vertical-align:0.000000px;}
.v1_c01028{vertical-align:148.800000px;}
.ls0_c01028{letter-spacing:0.000000px;}
.sc__c01028{text-shadow:none;}
.sc0_c01028{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01028{-webkit-text-stroke:0px transparent;}
.sc0_c01028{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01028{word-spacing:-69.000000px;}
.ws2_c01028{word-spacing:-67.686000px;}
.ws0_c01028{word-spacing:-17.352000px;}
.ws3_c01028{word-spacing:0.000000px;}
._14_c01028{margin-left:-60.453000px;}
._5_c01028{margin-left:-23.463000px;}
._16_c01028{margin-left:-21.789000px;}
._25_c01028{margin-left:-18.954000px;}
._26_c01028{margin-left:-15.777000px;}
._17_c01028{margin-left:-14.697000px;}
._18_c01028{margin-left:-12.438000px;}
._12_c01028{margin-left:-10.152000px;}
._f_c01028{margin-left:-8.613000px;}
._19_c01028{margin-left:-7.002000px;}
._d_c01028{margin-left:-5.922000px;}
._8_c01028{margin-left:-4.752000px;}
._1b_c01028{margin-left:-3.681000px;}
._7_c01028{margin-left:-2.673000px;}
._9_c01028{margin-left:-1.287000px;}
._4_c01028{width:1.683000px;}
._6_c01028{width:2.772000px;}
._2_c01028{width:4.158000px;}
._e_c01028{width:5.202000px;}
._10_c01028{width:6.912000px;}
._1_c01028{width:7.920000px;}
._0_c01028{width:9.603000px;}
._11_c01028{width:11.133000px;}
._1d_c01028{width:12.690000px;}
._3_c01028{width:14.355000px;}
._24_c01028{width:15.414000px;}
._c_c01028{width:16.533000px;}
._1c_c01028{width:17.850000px;}
._22_c01028{width:19.119000px;}
._21_c01028{width:23.409000px;}
._27_c01028{width:25.953000px;}
._15_c01028{width:28.350000px;}
._28_c01028{width:33.039000px;}
._b_c01028{width:35.640000px;}
._1a_c01028{width:42.822000px;}
._a_c01028{width:63.459000px;}
._13_c01028{width:133.128000px;}
._20_c01028{width:154.827000px;}
._1e_c01028{width:205.587000px;}
._23_c01028{width:228.387000px;}
._29_c01028{width:389.421000px;}
._1f_c01028{width:1851.993000px;}
.fc2_c01028{color:transparent;}
.fc1_c01028{color:rgb(128,128,128);}
.fc0_c01028{color:rgb(0,0,0);}
.fs5_c01028{font-size:48.000000px;}
.fs2_c01028{font-size:72.000000px;}
.fs1_c01028{font-size:81.000000px;}
.fs4_c01028{font-size:87.000000px;}
.fs0_c01028{font-size:99.000000px;}
.fs3_c01028{font-size:276.000000px;}
.y0_c01028{bottom:0.000000px;}
.y26_c01028{bottom:3.105000px;}
.y25_c01028{bottom:7.228369px;}
.y24_c01028{bottom:55.620000px;}
.y23_c01028{bottom:80.670000px;}
.y22_c01028{bottom:106.020000px;}
.y21_c01028{bottom:130.320000px;}
.y20_c01028{bottom:154.620000px;}
.y1f_c01028{bottom:178.920000px;}
.y1e_c01028{bottom:203.220000px;}
.y1d_c01028{bottom:227.520000px;}
.y1c_c01028{bottom:251.820000px;}
.y1b_c01028{bottom:276.120000px;}
.y1a_c01028{bottom:299.970000px;}
.y19_c01028{bottom:324.270000px;}
.y18_c01028{bottom:348.270000px;}
.y17_c01028{bottom:371.520000px;}
.y16_c01028{bottom:395.520000px;}
.y15_c01028{bottom:420.420000px;}
.y14_c01028{bottom:444.120000px;}
.y13_c01028{bottom:467.820000px;}
.y12_c01028{bottom:491.970000px;}
.y11_c01028{bottom:516.270000px;}
.y10_c01028{bottom:539.670000px;}
.yf_c01028{bottom:564.270000px;}
.ye_c01028{bottom:586.920000px;}
.yc_c01028{bottom:597.270000px;}
.yd_c01028{bottom:610.470000px;}
.yb_c01028{bottom:658.020000px;}
.ya_c01028{bottom:681.720000px;}
.y9_c01028{bottom:704.670000px;}
.y8_c01028{bottom:729.570000px;}
.y7_c01028{bottom:754.320000px;}
.y6_c01028{bottom:778.170000px;}
.y5_c01028{bottom:802.170000px;}
.y4_c01028{bottom:825.870000px;}
.y3_c01028{bottom:849.870000px;}
.y2_c01028{bottom:875.070000px;}
.y1_c01028{bottom:913.170000px;}
.h8_c01028{height:13.200073px;}
.h9_c01028{height:43.804688px;}
.h3_c01028{height:79.497070px;}
.h4_c01028{height:84.269531px;}
.h5_c01028{height:91.160156px;}
.h7_c01028{height:91.176000px;}
.h2_c01028{height:115.870605px;}
.h6_c01028{height:270.878906px;}
.h1_c01028{height:986.250000px;}
.h0_c01028{height:986.550000px;}
.w1_c01028{width:104.875500px;}
.w0_c01028{width:672.000000px;}
.x0_c01028{left:0.000000px;}
.x4_c01028{left:56.700000px;}
.x3_c01028{left:58.050000px;}
.x2_c01028{left:60.300000px;}
.x8_c01028{left:62.100000px;}
.x5_c01028{left:63.150000px;}
.x7_c01028{left:96.150000px;}
.x1_c01028{left:101.250000px;}
.x6_c01028{left:115.050000px;}
.xa_c01028{left:287.814240px;}
.x9_c01028{left:389.850000px;}
@media print{
.v0_c01028{vertical-align:0.000000pt;}
.v1_c01028{vertical-align:132.266667pt;}
.ls0_c01028{letter-spacing:0.000000pt;}
.ws1_c01028{word-spacing:-61.333333pt;}
.ws2_c01028{word-spacing:-60.165333pt;}
.ws0_c01028{word-spacing:-15.424000pt;}
.ws3_c01028{word-spacing:0.000000pt;}
._14_c01028{margin-left:-53.736000pt;}
._5_c01028{margin-left:-20.856000pt;}
._16_c01028{margin-left:-19.368000pt;}
._25_c01028{margin-left:-16.848000pt;}
._26_c01028{margin-left:-14.024000pt;}
._17_c01028{margin-left:-13.064000pt;}
._18_c01028{margin-left:-11.056000pt;}
._12_c01028{margin-left:-9.024000pt;}
._f_c01028{margin-left:-7.656000pt;}
._19_c01028{margin-left:-6.224000pt;}
._d_c01028{margin-left:-5.264000pt;}
._8_c01028{margin-left:-4.224000pt;}
._1b_c01028{margin-left:-3.272000pt;}
._7_c01028{margin-left:-2.376000pt;}
._9_c01028{margin-left:-1.144000pt;}
._4_c01028{width:1.496000pt;}
._6_c01028{width:2.464000pt;}
._2_c01028{width:3.696000pt;}
._e_c01028{width:4.624000pt;}
._10_c01028{width:6.144000pt;}
._1_c01028{width:7.040000pt;}
._0_c01028{width:8.536000pt;}
._11_c01028{width:9.896000pt;}
._1d_c01028{width:11.280000pt;}
._3_c01028{width:12.760000pt;}
._24_c01028{width:13.701333pt;}
._c_c01028{width:14.696000pt;}
._1c_c01028{width:15.866667pt;}
._22_c01028{width:16.994667pt;}
._21_c01028{width:20.808000pt;}
._27_c01028{width:23.069333pt;}
._15_c01028{width:25.200000pt;}
._28_c01028{width:29.368000pt;}
._b_c01028{width:31.680000pt;}
._1a_c01028{width:38.064000pt;}
._a_c01028{width:56.408000pt;}
._13_c01028{width:118.336000pt;}
._20_c01028{width:137.624000pt;}
._1e_c01028{width:182.744000pt;}
._23_c01028{width:203.010667pt;}
._29_c01028{width:346.152000pt;}
._1f_c01028{width:1646.216000pt;}
.fs5_c01028{font-size:42.666667pt;}
.fs2_c01028{font-size:64.000000pt;}
.fs1_c01028{font-size:72.000000pt;}
.fs4_c01028{font-size:77.333333pt;}
.fs0_c01028{font-size:88.000000pt;}
.fs3_c01028{font-size:245.333333pt;}
.y0_c01028{bottom:0.000000pt;}
.y26_c01028{bottom:2.760000pt;}
.y25_c01028{bottom:6.425217pt;}
.y24_c01028{bottom:49.440000pt;}
.y23_c01028{bottom:71.706667pt;}
.y22_c01028{bottom:94.240000pt;}
.y21_c01028{bottom:115.840000pt;}
.y20_c01028{bottom:137.440000pt;}
.y1f_c01028{bottom:159.040000pt;}
.y1e_c01028{bottom:180.640000pt;}
.y1d_c01028{bottom:202.240000pt;}
.y1c_c01028{bottom:223.840000pt;}
.y1b_c01028{bottom:245.440000pt;}
.y1a_c01028{bottom:266.640000pt;}
.y19_c01028{bottom:288.240000pt;}
.y18_c01028{bottom:309.573333pt;}
.y17_c01028{bottom:330.240000pt;}
.y16_c01028{bottom:351.573333pt;}
.y15_c01028{bottom:373.706667pt;}
.y14_c01028{bottom:394.773333pt;}
.y13_c01028{bottom:415.840000pt;}
.y12_c01028{bottom:437.306667pt;}
.y11_c01028{bottom:458.906667pt;}
.y10_c01028{bottom:479.706667pt;}
.yf_c01028{bottom:501.573333pt;}
.ye_c01028{bottom:521.706667pt;}
.yc_c01028{bottom:530.906667pt;}
.yd_c01028{bottom:542.640000pt;}
.yb_c01028{bottom:584.906667pt;}
.ya_c01028{bottom:605.973333pt;}
.y9_c01028{bottom:626.373333pt;}
.y8_c01028{bottom:648.506667pt;}
.y7_c01028{bottom:670.506667pt;}
.y6_c01028{bottom:691.706667pt;}
.y5_c01028{bottom:713.040000pt;}
.y4_c01028{bottom:734.106667pt;}
.y3_c01028{bottom:755.440000pt;}
.y2_c01028{bottom:777.840000pt;}
.y1_c01028{bottom:811.706667pt;}
.h8_c01028{height:11.733399pt;}
.h9_c01028{height:38.937500pt;}
.h3_c01028{height:70.664062pt;}
.h4_c01028{height:74.906250pt;}
.h5_c01028{height:81.031250pt;}
.h7_c01028{height:81.045333pt;}
.h2_c01028{height:102.996094pt;}
.h6_c01028{height:240.781250pt;}
.h1_c01028{height:876.666667pt;}
.h0_c01028{height:876.933333pt;}
.w1_c01028{width:93.222667pt;}
.w0_c01028{width:597.333333pt;}
.x0_c01028{left:0.000000pt;}
.x4_c01028{left:50.400000pt;}
.x3_c01028{left:51.600000pt;}
.x2_c01028{left:53.600000pt;}
.x8_c01028{left:55.200000pt;}
.x5_c01028{left:56.133333pt;}
.x7_c01028{left:85.466667pt;}
.x1_c01028{left:90.000000pt;}
.x6_c01028{left:102.266667pt;}
.xa_c01028{left:255.834880pt;}
.x9_c01028{left:346.533333pt;}
}





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

.ir_c01029:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01029{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01029;src:url('chunks/assets/font_bf276c2f38d03973436b0cb6.woff2')format("woff");}.ff1_c01029{font-family:ff1_c01029;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01029;src:url('chunks/assets/font_49a69765190ac6de12792f77.woff2')format("woff");}.ff2_c01029{font-family:ff2_c01029;line-height:1.401855;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01029;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff3_c01029{font-family:ff3_c01029;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01029;src:url('chunks/assets/font_33143257b54a999a4c6ec1a3.woff2')format("woff");}.ff4_c01029{font-family:ff4_c01029;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01029;src:url('chunks/assets/font_fb23eb800e8e92b32437840d.woff2')format("woff");}.ff5_c01029{font-family:ff5_c01029;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01029;src:url('chunks/assets/font_509adfb402e467331d11c8f6.woff2')format("woff");}.ff6_c01029{font-family:ff6_c01029;line-height:1.311035;font-style:normal;font-weight: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_c01029;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c01029{font-family:ff7_c01029;line-height:1.219238;font-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_c01029{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m0_c01029{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01029{vertical-align:0.000000px;}
.ls3_c01029{letter-spacing:0.000000px;}
.ls2_c01029{letter-spacing:3.750000px;}
.ls4_c01029{letter-spacing:6.000000px;}
.ls0_c01029{letter-spacing:37.986000px;}
.ls1_c01029{letter-spacing:197.586000px;}
.sc__c01029{text-shadow:none;}
.sc0_c01029{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01029{-webkit-text-stroke:0px transparent;}
.sc0_c01029{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01029{word-spacing:-29.700000px;}
.ws2_c01029{word-spacing:-27.000000px;}
.ws1_c01029{word-spacing:-17.352000px;}
.ws3_c01029{word-spacing:0.000000px;}
._23_c01029{margin-left:-26.082000px;}
._13_c01029{margin-left:-16.524000px;}
._12_c01029{margin-left:-15.471000px;}
._1e_c01029{margin-left:-14.043000px;}
._10_c01029{margin-left:-12.624000px;}
._1b_c01029{margin-left:-10.698000px;}
._e_c01029{margin-left:-9.288000px;}
._f_c01029{margin-left:-8.064000px;}
._d_c01029{margin-left:-6.624000px;}
._16_c01029{margin-left:-5.037000px;}
._15_c01029{margin-left:-3.483000px;}
._0_c01029{margin-left:-2.106000px;}
._a_c01029{margin-left:-1.053000px;}
._1_c01029{width:1.701000px;}
._4_c01029{width:2.916000px;}
._2_c01029{width:3.969000px;}
._3_c01029{width:5.751000px;}
._6_c01029{width:6.885000px;}
._7_c01029{width:8.505000px;}
._b_c01029{width:9.639000px;}
._5_c01029{width:10.773000px;}
._8_c01029{width:12.555000px;}
._20_c01029{width:13.623000px;}
._c_c01029{width:14.634000px;}
._14_c01029{width:16.269000px;}
._17_c01029{width:18.360000px;}
._26_c01029{width:24.522000px;}
._1f_c01029{width:28.146000px;}
._1a_c01029{width:33.939000px;}
._1c_c01029{width:44.973000px;}
._21_c01029{width:49.734000px;}
._24_c01029{width:53.043000px;}
._9_c01029{width:75.411000px;}
._11_c01029{width:109.350000px;}
._27_c01029{width:152.283000px;}
._22_c01029{width:215.055000px;}
._28_c01029{width:219.702000px;}
._25_c01029{width:265.680000px;}
._1d_c01029{width:278.640000px;}
._19_c01029{width:435.831000px;}
._18_c01029{width:550.404000px;}
.fc2_c01029{color:transparent;}
.fc1_c01029{color:rgb(128,128,128);}
.fc0_c01029{color:rgb(0,0,0);}
.fs5_c01029{font-size:48.000000px;}
.fs1_c01029{font-size:54.000000px;}
.fs3_c01029{font-size:69.000000px;}
.fs2_c01029{font-size:72.000000px;}
.fs0_c01029{font-size:81.000000px;}
.fs4_c01029{font-size:108.000000px;}
.y0_c01029{bottom:0.000000px;}
.y25_c01029{bottom:3.105000px;}
.y24_c01029{bottom:7.228371px;}
.y23_c01029{bottom:43.665000px;}
.y22_c01029{bottom:66.915000px;}
.y21_c01029{bottom:93.165000px;}
.y20_c01029{bottom:116.565000px;}
.y1f_c01029{bottom:140.865000px;}
.y1e_c01029{bottom:165.015000px;}
.y1d_c01029{bottom:189.465000px;}
.y1c_c01029{bottom:214.065000px;}
.y1b_c01029{bottom:237.615000px;}
.y1a_c01029{bottom:262.215000px;}
.y19_c01029{bottom:286.665000px;}
.y18_c01029{bottom:310.965000px;}
.y17_c01029{bottom:335.265000px;}
.y16_c01029{bottom:357.765000px;}
.y15_c01029{bottom:383.415000px;}
.y14_c01029{bottom:407.415000px;}
.y13_c01029{bottom:433.665000px;}
.y12_c01029{bottom:455.265000px;}
.y11_c01029{bottom:479.265000px;}
.y10_c01029{bottom:502.215000px;}
.yf_c01029{bottom:525.615000px;}
.ye_c01029{bottom:549.915000px;}
.yd_c01029{bottom:574.215000px;}
.yc_c01029{bottom:598.065000px;}
.yb_c01029{bottom:620.715000px;}
.ya_c01029{bottom:646.365000px;}
.y9_c01029{bottom:669.915000px;}
.y8_c01029{bottom:694.665000px;}
.y7_c01029{bottom:718.515000px;}
.y6_c01029{bottom:742.815000px;}
.y5_c01029{bottom:768.465000px;}
.y4_c01029{bottom:791.865000px;}
.y3_c01029{bottom:815.115000px;}
.y2_c01029{bottom:838.815000px;}
.y1_c01029{bottom:862.965000px;}
.h6_c01029{height:13.200074px;}
.h7_c01029{height:43.804688px;}
.h2_c01029{height:79.497070px;}
.h3_c01029{height:84.269531px;}
.h4_c01029{height:91.160156px;}
.h5_c01029{height:108.843750px;}
.h0_c01029{height:963.375000px;}
.h1_c01029{height:963.750000px;}
.w1_c01029{width:104.875500px;}
.w0_c01029{width:651.750000px;}
.x0_c01029{left:0.000000px;}
.xe_c01029{left:30.750000px;}
.x8_c01029{left:32.850000px;}
.x6_c01029{left:35.100000px;}
.x2_c01029{left:36.150000px;}
.x4_c01029{left:37.200000px;}
.xc_c01029{left:43.650000px;}
.xa_c01029{left:61.500000px;}
.x5_c01029{left:113.700000px;}
.xd_c01029{left:125.550000px;}
.x7_c01029{left:127.350000px;}
.x1_c01029{left:129.600000px;}
.x3_c01029{left:130.650000px;}
.xf_c01029{left:144.900000px;}
.x10_c01029{left:270.600000px;}
.x15_c01029{left:277.689240px;}
.x11_c01029{left:352.050000px;}
.x12_c01029{left:446.850000px;}
.x13_c01029{left:517.350000px;}
.xb_c01029{left:550.200000px;}
.x14_c01029{left:575.550000px;}
.x9_c01029{left:607.200000px;}
@media print{
.v0_c01029{vertical-align:0.000000pt;}
.ls3_c01029{letter-spacing:0.000000pt;}
.ls2_c01029{letter-spacing:3.333333pt;}
.ls4_c01029{letter-spacing:5.333333pt;}
.ls0_c01029{letter-spacing:33.765333pt;}
.ls1_c01029{letter-spacing:175.632000pt;}
.ws0_c01029{word-spacing:-26.400000pt;}
.ws2_c01029{word-spacing:-24.000000pt;}
.ws1_c01029{word-spacing:-15.424000pt;}
.ws3_c01029{word-spacing:0.000000pt;}
._23_c01029{margin-left:-23.184000pt;}
._13_c01029{margin-left:-14.688000pt;}
._12_c01029{margin-left:-13.752000pt;}
._1e_c01029{margin-left:-12.482667pt;}
._10_c01029{margin-left:-11.221333pt;}
._1b_c01029{margin-left:-9.509333pt;}
._e_c01029{margin-left:-8.256000pt;}
._f_c01029{margin-left:-7.168000pt;}
._d_c01029{margin-left:-5.888000pt;}
._16_c01029{margin-left:-4.477333pt;}
._15_c01029{margin-left:-3.096000pt;}
._0_c01029{margin-left:-1.872000pt;}
._a_c01029{margin-left:-0.936000pt;}
._1_c01029{width:1.512000pt;}
._4_c01029{width:2.592000pt;}
._2_c01029{width:3.528000pt;}
._3_c01029{width:5.112000pt;}
._6_c01029{width:6.120000pt;}
._7_c01029{width:7.560000pt;}
._b_c01029{width:8.568000pt;}
._5_c01029{width:9.576000pt;}
._8_c01029{width:11.160000pt;}
._20_c01029{width:12.109333pt;}
._c_c01029{width:13.008000pt;}
._14_c01029{width:14.461333pt;}
._17_c01029{width:16.320000pt;}
._26_c01029{width:21.797333pt;}
._1f_c01029{width:25.018667pt;}
._1a_c01029{width:30.168000pt;}
._1c_c01029{width:39.976000pt;}
._21_c01029{width:44.208000pt;}
._24_c01029{width:47.149333pt;}
._9_c01029{width:67.032000pt;}
._11_c01029{width:97.200000pt;}
._27_c01029{width:135.362667pt;}
._22_c01029{width:191.160000pt;}
._28_c01029{width:195.290667pt;}
._25_c01029{width:236.160000pt;}
._1d_c01029{width:247.680000pt;}
._19_c01029{width:387.405333pt;}
._18_c01029{width:489.248000pt;}
.fs5_c01029{font-size:42.666667pt;}
.fs1_c01029{font-size:48.000000pt;}
.fs3_c01029{font-size:61.333333pt;}
.fs2_c01029{font-size:64.000000pt;}
.fs0_c01029{font-size:72.000000pt;}
.fs4_c01029{font-size:96.000000pt;}
.y0_c01029{bottom:0.000000pt;}
.y25_c01029{bottom:2.760000pt;}
.y24_c01029{bottom:6.425219pt;}
.y23_c01029{bottom:38.813333pt;}
.y22_c01029{bottom:59.480000pt;}
.y21_c01029{bottom:82.813333pt;}
.y20_c01029{bottom:103.613333pt;}
.y1f_c01029{bottom:125.213333pt;}
.y1e_c01029{bottom:146.680000pt;}
.y1d_c01029{bottom:168.413333pt;}
.y1c_c01029{bottom:190.280000pt;}
.y1b_c01029{bottom:211.213333pt;}
.y1a_c01029{bottom:233.080000pt;}
.y19_c01029{bottom:254.813333pt;}
.y18_c01029{bottom:276.413333pt;}
.y17_c01029{bottom:298.013333pt;}
.y16_c01029{bottom:318.013333pt;}
.y15_c01029{bottom:340.813333pt;}
.y14_c01029{bottom:362.146667pt;}
.y13_c01029{bottom:385.480000pt;}
.y12_c01029{bottom:404.680000pt;}
.y11_c01029{bottom:426.013333pt;}
.y10_c01029{bottom:446.413333pt;}
.yf_c01029{bottom:467.213333pt;}
.ye_c01029{bottom:488.813333pt;}
.yd_c01029{bottom:510.413333pt;}
.yc_c01029{bottom:531.613333pt;}
.yb_c01029{bottom:551.746667pt;}
.ya_c01029{bottom:574.546667pt;}
.y9_c01029{bottom:595.480000pt;}
.y8_c01029{bottom:617.480000pt;}
.y7_c01029{bottom:638.680000pt;}
.y6_c01029{bottom:660.280000pt;}
.y5_c01029{bottom:683.080000pt;}
.y4_c01029{bottom:703.880000pt;}
.y3_c01029{bottom:724.546667pt;}
.y2_c01029{bottom:745.613333pt;}
.y1_c01029{bottom:767.080000pt;}
.h6_c01029{height:11.733399pt;}
.h7_c01029{height:38.937500pt;}
.h2_c01029{height:70.664062pt;}
.h3_c01029{height:74.906250pt;}
.h4_c01029{height:81.031250pt;}
.h5_c01029{height:96.750000pt;}
.h0_c01029{height:856.333333pt;}
.h1_c01029{height:856.666667pt;}
.w1_c01029{width:93.222667pt;}
.w0_c01029{width:579.333333pt;}
.x0_c01029{left:0.000000pt;}
.xe_c01029{left:27.333333pt;}
.x8_c01029{left:29.200000pt;}
.x6_c01029{left:31.200000pt;}
.x2_c01029{left:32.133333pt;}
.x4_c01029{left:33.066667pt;}
.xc_c01029{left:38.800000pt;}
.xa_c01029{left:54.666667pt;}
.x5_c01029{left:101.066667pt;}
.xd_c01029{left:111.600000pt;}
.x7_c01029{left:113.200000pt;}
.x1_c01029{left:115.200000pt;}
.x3_c01029{left:116.133333pt;}
.xf_c01029{left:128.800000pt;}
.x10_c01029{left:240.533333pt;}
.x15_c01029{left:246.834880pt;}
.x11_c01029{left:312.933333pt;}
.x12_c01029{left:397.200000pt;}
.x13_c01029{left:459.866667pt;}
.xb_c01029{left:489.066667pt;}
.x14_c01029{left:511.600000pt;}
.x9_c01029{left:539.733333pt;}
}





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

.ir_c01030:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01030{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01030;src:url('chunks/assets/font_67d89a0bba7321512ca3e32c.woff2')format("woff");}.ff1_c01030{font-family:ff1_c01030;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01030;src:url('chunks/assets/font_c89d6475df1ca7e796a20811.woff2')format("woff");}.ff2_c01030{font-family:ff2_c01030;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01030;src:url('chunks/assets/font_7945a4a786d5547b666bf19c.woff2')format("woff");}.ff3_c01030{font-family:ff3_c01030;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01030;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff4_c01030{font-family:ff4_c01030;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01030{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01030{vertical-align:0.000000px;}
.ls1_c01030{letter-spacing:0.000000px;}
.ls0_c01030{letter-spacing:0.402000px;}
.sc__c01030{text-shadow:none;}
.sc0_c01030{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01030{-webkit-text-stroke:0px transparent;}
.sc0_c01030{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01030{word-spacing:-17.352000px;}
.ws1_c01030{word-spacing:0.000000px;}
._18_c01030{margin-left:-10.974000px;}
._1a_c01030{margin-left:-9.639000px;}
._d_c01030{margin-left:-8.100000px;}
._b_c01030{margin-left:-6.723000px;}
._14_c01030{margin-left:-5.712000px;}
._9_c01030{margin-left:-4.455000px;}
._5_c01030{margin-left:-2.754000px;}
._a_c01030{margin-left:-1.539000px;}
._10_c01030{width:1.014000px;}
._1_c01030{width:2.106000px;}
._0_c01030{width:3.564000px;}
._4_c01030{width:4.779000px;}
._2_c01030{width:6.075000px;}
._11_c01030{width:7.086000px;}
._3_c01030{width:8.100000px;}
._6_c01030{width:9.639000px;}
._8_c01030{width:10.692000px;}
._13_c01030{width:12.516000px;}
._7_c01030{width:13.608000px;}
._f_c01030{width:15.633000px;}
._e_c01030{width:17.577000px;}
._12_c01030{width:18.873000px;}
._16_c01030{width:20.805000px;}
._19_c01030{width:22.506000px;}
._17_c01030{width:27.045000px;}
._15_c01030{width:32.541000px;}
._1b_c01030{width:37.542000px;}
._c_c01030{width:244.215000px;}
._1c_c01030{width:301.401000px;}
.fc2_c01030{color:transparent;}
.fc1_c01030{color:rgb(128,128,128);}
.fc0_c01030{color:rgb(0,0,0);}
.fs4_c01030{font-size:48.000000px;}
.fs2_c01030{font-size:57.000000px;}
.fs3_c01030{font-size:72.000000px;}
.fs1_c01030{font-size:78.000000px;}
.fs0_c01030{font-size:81.000000px;}
.y0_c01030{bottom:0.000000px;}
.y25_c01030{bottom:3.105000px;}
.y24_c01030{bottom:7.228369px;}
.y23_c01030{bottom:80.670000px;}
.y22_c01030{bottom:103.920000px;}
.y21_c01030{bottom:128.520000px;}
.y20_c01030{bottom:153.270000px;}
.y1f_c01030{bottom:176.820000px;}
.y1e_c01030{bottom:200.820000px;}
.y1d_c01030{bottom:224.820000px;}
.y1c_c01030{bottom:250.020000px;}
.y1b_c01030{bottom:273.420000px;}
.y1a_c01030{bottom:297.270000px;}
.y19_c01030{bottom:321.270000px;}
.y18_c01030{bottom:345.570000px;}
.y17_c01030{bottom:368.820000px;}
.y16_c01030{bottom:392.820000px;}
.y15_c01030{bottom:416.520000px;}
.y14_c01030{bottom:440.820000px;}
.y13_c01030{bottom:463.770000px;}
.y12_c01030{bottom:487.620000px;}
.y11_c01030{bottom:511.920000px;}
.y10_c01030{bottom:535.320000px;}
.yf_c01030{bottom:558.870000px;}
.ye_c01030{bottom:583.170000px;}
.yd_c01030{bottom:606.120000px;}
.yc_c01030{bottom:629.820000px;}
.yb_c01030{bottom:653.370000px;}
.ya_c01030{bottom:677.070000px;}
.y9_c01030{bottom:701.220000px;}
.y8_c01030{bottom:724.920000px;}
.y7_c01030{bottom:748.620000px;}
.y6_c01030{bottom:772.920000px;}
.y5_c01030{bottom:796.770000px;}
.y4_c01030{bottom:820.470000px;}
.y3_c01030{bottom:845.070000px;}
.y2_c01030{bottom:867.720000px;}
.y1_c01030{bottom:892.020000px;}
.h6_c01030{height:13.200073px;}
.h7_c01030{height:43.804688px;}
.h2_c01030{height:79.497070px;}
.h5_c01030{height:84.269531px;}
.h4_c01030{height:91.160156px;}
.h3_c01030{height:98.756836px;}
.h1_c01030{height:986.250000px;}
.h0_c01030{height:986.550000px;}
.w1_c01030{width:104.875500px;}
.w0_c01030{width:672.000000px;}
.x0_c01030{left:0.000000px;}
.x8_c01030{left:61.200000px;}
.x2_c01030{left:62.400000px;}
.x7_c01030{left:64.500000px;}
.x5_c01030{left:65.550000px;}
.x4_c01030{left:67.050000px;}
.x3_c01030{left:68.100000px;}
.x1_c01030{left:69.150000px;}
.x6_c01030{left:89.100000px;}
.xa_c01030{left:287.814240px;}
.x9_c01030{left:378.750000px;}
@media print{
.v0_c01030{vertical-align:0.000000pt;}
.ls1_c01030{letter-spacing:0.000000pt;}
.ls0_c01030{letter-spacing:0.357333pt;}
.ws0_c01030{word-spacing:-15.424000pt;}
.ws1_c01030{word-spacing:0.000000pt;}
._18_c01030{margin-left:-9.754667pt;}
._1a_c01030{margin-left:-8.568000pt;}
._d_c01030{margin-left:-7.200000pt;}
._b_c01030{margin-left:-5.976000pt;}
._14_c01030{margin-left:-5.077333pt;}
._9_c01030{margin-left:-3.960000pt;}
._5_c01030{margin-left:-2.448000pt;}
._a_c01030{margin-left:-1.368000pt;}
._10_c01030{width:0.901333pt;}
._1_c01030{width:1.872000pt;}
._0_c01030{width:3.168000pt;}
._4_c01030{width:4.248000pt;}
._2_c01030{width:5.400000pt;}
._11_c01030{width:6.298667pt;}
._3_c01030{width:7.200000pt;}
._6_c01030{width:8.568000pt;}
._8_c01030{width:9.504000pt;}
._13_c01030{width:11.125333pt;}
._7_c01030{width:12.096000pt;}
._f_c01030{width:13.896000pt;}
._e_c01030{width:15.624000pt;}
._12_c01030{width:16.776000pt;}
._16_c01030{width:18.493333pt;}
._19_c01030{width:20.005333pt;}
._17_c01030{width:24.040000pt;}
._15_c01030{width:28.925333pt;}
._1b_c01030{width:33.370667pt;}
._c_c01030{width:217.080000pt;}
._1c_c01030{width:267.912000pt;}
.fs4_c01030{font-size:42.666667pt;}
.fs2_c01030{font-size:50.666667pt;}
.fs3_c01030{font-size:64.000000pt;}
.fs1_c01030{font-size:69.333333pt;}
.fs0_c01030{font-size:72.000000pt;}
.y0_c01030{bottom:0.000000pt;}
.y25_c01030{bottom:2.760000pt;}
.y24_c01030{bottom:6.425217pt;}
.y23_c01030{bottom:71.706667pt;}
.y22_c01030{bottom:92.373333pt;}
.y21_c01030{bottom:114.240000pt;}
.y20_c01030{bottom:136.240000pt;}
.y1f_c01030{bottom:157.173333pt;}
.y1e_c01030{bottom:178.506667pt;}
.y1d_c01030{bottom:199.840000pt;}
.y1c_c01030{bottom:222.240000pt;}
.y1b_c01030{bottom:243.040000pt;}
.y1a_c01030{bottom:264.240000pt;}
.y19_c01030{bottom:285.573333pt;}
.y18_c01030{bottom:307.173333pt;}
.y17_c01030{bottom:327.840000pt;}
.y16_c01030{bottom:349.173333pt;}
.y15_c01030{bottom:370.240000pt;}
.y14_c01030{bottom:391.840000pt;}
.y13_c01030{bottom:412.240000pt;}
.y12_c01030{bottom:433.440000pt;}
.y11_c01030{bottom:455.040000pt;}
.y10_c01030{bottom:475.840000pt;}
.yf_c01030{bottom:496.773333pt;}
.ye_c01030{bottom:518.373333pt;}
.yd_c01030{bottom:538.773333pt;}
.yc_c01030{bottom:559.840000pt;}
.yb_c01030{bottom:580.773333pt;}
.ya_c01030{bottom:601.840000pt;}
.y9_c01030{bottom:623.306667pt;}
.y8_c01030{bottom:644.373333pt;}
.y7_c01030{bottom:665.440000pt;}
.y6_c01030{bottom:687.040000pt;}
.y5_c01030{bottom:708.240000pt;}
.y4_c01030{bottom:729.306667pt;}
.y3_c01030{bottom:751.173333pt;}
.y2_c01030{bottom:771.306667pt;}
.y1_c01030{bottom:792.906667pt;}
.h6_c01030{height:11.733399pt;}
.h7_c01030{height:38.937500pt;}
.h2_c01030{height:70.664062pt;}
.h5_c01030{height:74.906250pt;}
.h4_c01030{height:81.031250pt;}
.h3_c01030{height:87.783854pt;}
.h1_c01030{height:876.666667pt;}
.h0_c01030{height:876.933333pt;}
.w1_c01030{width:93.222667pt;}
.w0_c01030{width:597.333333pt;}
.x0_c01030{left:0.000000pt;}
.x8_c01030{left:54.400000pt;}
.x2_c01030{left:55.466667pt;}
.x7_c01030{left:57.333333pt;}
.x5_c01030{left:58.266667pt;}
.x4_c01030{left:59.600000pt;}
.x3_c01030{left:60.533333pt;}
.x1_c01030{left:61.466667pt;}
.x6_c01030{left:79.200000pt;}
.xa_c01030{left:255.834880pt;}
.x9_c01030{left:336.666667pt;}
}





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

.ir_c01031:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01031{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01031;src:url('chunks/assets/font_e4c2b707e34f093bd805355f.woff2')format("woff");}.ff1_c01031{font-family:ff1_c01031;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01031;src:url('chunks/assets/font_b6ae7fde9ef8bfc330fe90ab.woff2')format("woff");}.ff2_c01031{font-family:ff2_c01031;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01031;src:url('chunks/assets/font_302fbdc60e25dc3a8624b589.woff2')format("woff");}.ff3_c01031{font-family:ff3_c01031;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01031;src:url('chunks/assets/font_f66ad9ed512979c0f75f40fb.woff2')format("woff");}.ff4_c01031{font-family:ff4_c01031;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01031;src:url('chunks/assets/font_9e87ab68239a60877e306f27.woff2')format("woff");}.ff5_c01031{font-family:ff5_c01031;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01031;src:url('chunks/assets/font_c4062b0989f815c86e0ba371.woff2')format("woff");}.ff6_c01031{font-family:ff6_c01031;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01031;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff7_c01031{font-family:ff7_c01031;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c01031;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff8_c01031{font-family:ff8_c01031;line-height:1.219238;font-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_c01031{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m0_c01031{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01031{vertical-align:0.000000px;}
.ls3_c01031{letter-spacing:0.000000px;}
.ls4_c01031{letter-spacing:3.000000px;}
.ls0_c01031{letter-spacing:15.150000px;}
.ls2_c01031{letter-spacing:61.350000px;}
.ls1_c01031{letter-spacing:130.950000px;}
.sc__c01031{text-shadow:none;}
.sc0_c01031{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01031{-webkit-text-stroke:0px transparent;}
.sc0_c01031{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01031{word-spacing:-58.899000px;}
.ws0_c01031{word-spacing:-17.352000px;}
.ws1_c01031{word-spacing:-17.250000px;}
.ws3_c01031{word-spacing:0.000000px;}
._1e_c01031{margin-left:-25.191000px;}
._20_c01031{margin-left:-20.706000px;}
._b_c01031{margin-left:-14.904000px;}
._15_c01031{margin-left:-12.960000px;}
._c_c01031{margin-left:-10.773000px;}
._1f_c01031{margin-left:-9.426000px;}
._a_c01031{margin-left:-8.262000px;}
._11_c01031{margin-left:-7.209000px;}
._9_c01031{margin-left:-5.751000px;}
._16_c01031{margin-left:-4.536000px;}
._5_c01031{margin-left:-3.402000px;}
._4_c01031{margin-left:-1.863000px;}
._0_c01031{width:1.215000px;}
._1_c01031{width:2.511000px;}
._2_c01031{width:4.293000px;}
._e_c01031{width:5.427000px;}
._3_c01031{width:7.290000px;}
._10_c01031{width:8.343000px;}
._8_c01031{width:9.720000px;}
._13_c01031{width:10.854000px;}
._7_c01031{width:11.907000px;}
._6_c01031{width:12.960000px;}
._f_c01031{width:14.175000px;}
._14_c01031{width:15.228000px;}
._17_c01031{width:17.172000px;}
._12_c01031{width:18.306000px;}
._1c_c01031{width:25.569000px;}
._1b_c01031{width:29.565000px;}
._d_c01031{width:30.780000px;}
._19_c01031{width:32.976000px;}
._1d_c01031{width:182.574000px;}
._18_c01031{width:252.936000px;}
._1a_c01031{width:1591.164000px;}
.fc2_c01031{color:transparent;}
.fc1_c01031{color:rgb(128,128,128);}
.fc0_c01031{color:rgb(0,0,0);}
.fs5_c01031{font-size:48.000000px;}
.fs3_c01031{font-size:69.000000px;}
.fs2_c01031{font-size:72.000000px;}
.fs0_c01031{font-size:81.000000px;}
.fs4_c01031{font-size:87.000000px;}
.fs1_c01031{font-size:108.000000px;}
.y0_c01031{bottom:0.000000px;}
.y24_c01031{bottom:3.105000px;}
.y23_c01031{bottom:7.228371px;}
.y22_c01031{bottom:103.665000px;}
.y21_c01031{bottom:130.365000px;}
.y20_c01031{bottom:154.665000px;}
.y1f_c01031{bottom:178.665000px;}
.y1e_c01031{bottom:203.265000px;}
.y1d_c01031{bottom:227.565000px;}
.y1c_c01031{bottom:251.865000px;}
.y1b_c01031{bottom:276.165000px;}
.y1a_c01031{bottom:301.065000px;}
.y19_c01031{bottom:325.665000px;}
.y18_c01031{bottom:348.765000px;}
.y17_c01031{bottom:374.265000px;}
.y16_c01031{bottom:398.715000px;}
.y15_c01031{bottom:423.615000px;}
.y14_c01031{bottom:446.265000px;}
.y13_c01031{bottom:470.115000px;}
.y12_c01031{bottom:493.515000px;}
.y11_c01031{bottom:517.365000px;}
.y10_c01031{bottom:540.765000px;}
.yf_c01031{bottom:563.715000px;}
.ye_c01031{bottom:588.615000px;}
.yd_c01031{bottom:612.915000px;}
.yc_c01031{bottom:636.615000px;}
.yb_c01031{bottom:660.165000px;}
.ya_c01031{bottom:686.265000px;}
.y9_c01031{bottom:708.465000px;}
.y8_c01031{bottom:733.065000px;}
.y7_c01031{bottom:758.115000px;}
.y6_c01031{bottom:780.615000px;}
.y5_c01031{bottom:804.915000px;}
.y4_c01031{bottom:828.015000px;}
.y3_c01031{bottom:851.865000px;}
.y2_c01031{bottom:877.515000px;}
.y1_c01031{bottom:901.215000px;}
.h7_c01031{height:13.200074px;}
.h8_c01031{height:43.804688px;}
.h5_c01031{height:72.312000px;}
.h2_c01031{height:79.497070px;}
.h4_c01031{height:84.269531px;}
.h3_c01031{height:108.843750px;}
.h6_c01031{height:110.151855px;}
.h1_c01031{height:986.250000px;}
.h0_c01031{height:986.325000px;}
.w2_c01031{width:104.875500px;}
.w0_c01031{width:667.425000px;}
.w1_c01031{width:667.500000px;}
.x0_c01031{left:0.000000px;}
.xc_c01031{left:19.800000px;}
.x6_c01031{left:23.550000px;}
.xa_c01031{left:55.650000px;}
.x2_c01031{left:58.050000px;}
.x9_c01031{left:80.250000px;}
.x7_c01031{left:109.050000px;}
.xb_c01031{left:111.000000px;}
.x5_c01031{left:112.350000px;}
.x8_c01031{left:113.850000px;}
.x1_c01031{left:115.050000px;}
.x3_c01031{left:144.450000px;}
.x4_c01031{left:166.950000px;}
.xd_c01031{left:285.526749px;}
@media print{
.v0_c01031{vertical-align:0.000000pt;}
.ls3_c01031{letter-spacing:0.000000pt;}
.ls4_c01031{letter-spacing:2.666667pt;}
.ls0_c01031{letter-spacing:13.466667pt;}
.ls2_c01031{letter-spacing:54.533333pt;}
.ls1_c01031{letter-spacing:116.400000pt;}
.ws2_c01031{word-spacing:-52.354667pt;}
.ws0_c01031{word-spacing:-15.424000pt;}
.ws1_c01031{word-spacing:-15.333333pt;}
.ws3_c01031{word-spacing:0.000000pt;}
._1e_c01031{margin-left:-22.392000pt;}
._20_c01031{margin-left:-18.405333pt;}
._b_c01031{margin-left:-13.248000pt;}
._15_c01031{margin-left:-11.520000pt;}
._c_c01031{margin-left:-9.576000pt;}
._1f_c01031{margin-left:-8.378667pt;}
._a_c01031{margin-left:-7.344000pt;}
._11_c01031{margin-left:-6.408000pt;}
._9_c01031{margin-left:-5.112000pt;}
._16_c01031{margin-left:-4.032000pt;}
._5_c01031{margin-left:-3.024000pt;}
._4_c01031{margin-left:-1.656000pt;}
._0_c01031{width:1.080000pt;}
._1_c01031{width:2.232000pt;}
._2_c01031{width:3.816000pt;}
._e_c01031{width:4.824000pt;}
._3_c01031{width:6.480000pt;}
._10_c01031{width:7.416000pt;}
._8_c01031{width:8.640000pt;}
._13_c01031{width:9.648000pt;}
._7_c01031{width:10.584000pt;}
._6_c01031{width:11.520000pt;}
._f_c01031{width:12.600000pt;}
._14_c01031{width:13.536000pt;}
._17_c01031{width:15.264000pt;}
._12_c01031{width:16.272000pt;}
._1c_c01031{width:22.728000pt;}
._1b_c01031{width:26.280000pt;}
._d_c01031{width:27.360000pt;}
._19_c01031{width:29.312000pt;}
._1d_c01031{width:162.288000pt;}
._18_c01031{width:224.832000pt;}
._1a_c01031{width:1414.368000pt;}
.fs5_c01031{font-size:42.666667pt;}
.fs3_c01031{font-size:61.333333pt;}
.fs2_c01031{font-size:64.000000pt;}
.fs0_c01031{font-size:72.000000pt;}
.fs4_c01031{font-size:77.333333pt;}
.fs1_c01031{font-size:96.000000pt;}
.y0_c01031{bottom:0.000000pt;}
.y24_c01031{bottom:2.760000pt;}
.y23_c01031{bottom:6.425219pt;}
.y22_c01031{bottom:92.146667pt;}
.y21_c01031{bottom:115.880000pt;}
.y20_c01031{bottom:137.480000pt;}
.y1f_c01031{bottom:158.813333pt;}
.y1e_c01031{bottom:180.680000pt;}
.y1d_c01031{bottom:202.280000pt;}
.y1c_c01031{bottom:223.880000pt;}
.y1b_c01031{bottom:245.480000pt;}
.y1a_c01031{bottom:267.613333pt;}
.y19_c01031{bottom:289.480000pt;}
.y18_c01031{bottom:310.013333pt;}
.y17_c01031{bottom:332.680000pt;}
.y16_c01031{bottom:354.413333pt;}
.y15_c01031{bottom:376.546667pt;}
.y14_c01031{bottom:396.680000pt;}
.y13_c01031{bottom:417.880000pt;}
.y12_c01031{bottom:438.680000pt;}
.y11_c01031{bottom:459.880000pt;}
.y10_c01031{bottom:480.680000pt;}
.yf_c01031{bottom:501.080000pt;}
.ye_c01031{bottom:523.213333pt;}
.yd_c01031{bottom:544.813333pt;}
.yc_c01031{bottom:565.880000pt;}
.yb_c01031{bottom:586.813333pt;}
.ya_c01031{bottom:610.013333pt;}
.y9_c01031{bottom:629.746667pt;}
.y8_c01031{bottom:651.613333pt;}
.y7_c01031{bottom:673.880000pt;}
.y6_c01031{bottom:693.880000pt;}
.y5_c01031{bottom:715.480000pt;}
.y4_c01031{bottom:736.013333pt;}
.y3_c01031{bottom:757.213333pt;}
.y2_c01031{bottom:780.013333pt;}
.y1_c01031{bottom:801.080000pt;}
.h7_c01031{height:11.733399pt;}
.h8_c01031{height:38.937500pt;}
.h5_c01031{height:64.277333pt;}
.h2_c01031{height:70.664062pt;}
.h4_c01031{height:74.906250pt;}
.h3_c01031{height:96.750000pt;}
.h6_c01031{height:97.912760pt;}
.h1_c01031{height:876.666667pt;}
.h0_c01031{height:876.733333pt;}
.w2_c01031{width:93.222667pt;}
.w0_c01031{width:593.266667pt;}
.w1_c01031{width:593.333333pt;}
.x0_c01031{left:0.000000pt;}
.xc_c01031{left:17.600000pt;}
.x6_c01031{left:20.933333pt;}
.xa_c01031{left:49.466667pt;}
.x2_c01031{left:51.600000pt;}
.x9_c01031{left:71.333333pt;}
.x7_c01031{left:96.933333pt;}
.xb_c01031{left:98.666667pt;}
.x5_c01031{left:99.866667pt;}
.x8_c01031{left:101.200000pt;}
.x1_c01031{left:102.266667pt;}
.x3_c01031{left:128.400000pt;}
.x4_c01031{left:148.400000pt;}
.xd_c01031{left:253.801554pt;}
}





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

.ir_c01032:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01032{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01032;src:url('chunks/assets/font_75c9282bc26f1a604069a8d9.woff2')format("woff");}.ff1_c01032{font-family:ff1_c01032;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01032;src:url('chunks/assets/font_2f1e9a0af189de8375acb656.woff2')format("woff");}.ff2_c01032{font-family:ff2_c01032;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01032;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff3_c01032{font-family:ff3_c01032;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01032;src:url('chunks/assets/font_1fc4daf11b18e45ec004354a.woff2')format("woff");}.ff4_c01032{font-family:ff4_c01032;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01032;src:url('chunks/assets/font_391d4e0644c2d0d83cc9c247.woff2')format("woff");}.ff5_c01032{font-family:ff5_c01032;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01032;src:url('chunks/assets/font_0e56384e6d41b6dd91d09b44.woff2')format("woff");}.ff6_c01032{font-family:ff6_c01032;line-height:1.311035;font-style:normal;font-weight: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_c01032;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c01032{font-family:ff7_c01032;line-height:1.219238;font-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_c01032{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m0_c01032{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01032{vertical-align:0.000000px;}
.ls4_c01032{letter-spacing:-9.000000px;}
.ls5_c01032{letter-spacing:0.000000px;}
.ls0_c01032{letter-spacing:1.800000px;}
.ls1_c01032{letter-spacing:5.712000px;}
.ls2_c01032{letter-spacing:6.300000px;}
.ls3_c01032{letter-spacing:21.000000px;}
.sc__c01032{text-shadow:none;}
.sc0_c01032{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01032{-webkit-text-stroke:0px transparent;}
.sc0_c01032{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01032{word-spacing:-20.250000px;}
.ws1_c01032{word-spacing:-17.352000px;}
.ws0_c01032{word-spacing:-8.352000px;}
.ws3_c01032{word-spacing:0.000000px;}
._3_c01032{margin-left:-22.752000px;}
._18_c01032{margin-left:-18.261000px;}
._2_c01032{margin-left:-11.376000px;}
._19_c01032{margin-left:-9.963000px;}
._d_c01032{margin-left:-8.424000px;}
._1c_c01032{margin-left:-7.242000px;}
._b_c01032{margin-left:-6.237000px;}
._c_c01032{margin-left:-5.157000px;}
._a_c01032{margin-left:-3.267000px;}
._e_c01032{margin-left:-1.692000px;}
._1_c01032{width:1.512000px;}
._0_c01032{width:2.952000px;}
._f_c01032{width:4.104000px;}
._9_c01032{width:5.265000px;}
._10_c01032{width:6.588000px;}
._4_c01032{width:7.920000px;}
._14_c01032{width:9.009000px;}
._5_c01032{width:10.584000px;}
._12_c01032{width:12.114000px;}
._15_c01032{width:13.563000px;}
._16_c01032{width:14.760000px;}
._13_c01032{width:16.497000px;}
._1a_c01032{width:17.814000px;}
._17_c01032{width:21.762000px;}
._11_c01032{width:24.786000px;}
._8_c01032{width:31.152000px;}
._7_c01032{width:34.200000px;}
._1b_c01032{width:52.479000px;}
._1d_c01032{width:84.996000px;}
._1e_c01032{width:252.612000px;}
._6_c01032{width:973.632000px;}
.fc2_c01032{color:transparent;}
.fc1_c01032{color:rgb(128,128,128);}
.fc0_c01032{color:rgb(0,0,0);}
.fs5_c01032{font-size:48.000000px;}
.fs2_c01032{font-size:66.000000px;}
.fs0_c01032{font-size:72.000000px;}
.fs1_c01032{font-size:81.000000px;}
.fs3_c01032{font-size:87.000000px;}
.fs4_c01032{font-size:108.000000px;}
.y0_c01032{bottom:0.000000px;}
.y24_c01032{bottom:3.105000px;}
.y23_c01032{bottom:7.228357px;}
.y21_c01032{bottom:44.280000px;}
.y20_c01032{bottom:68.280000px;}
.y1f_c01032{bottom:93.780000px;}
.y1e_c01032{bottom:118.080000px;}
.y1d_c01032{bottom:142.380000px;}
.y1c_c01032{bottom:166.830000px;}
.y1b_c01032{bottom:190.980000px;}
.y1a_c01032{bottom:215.280000px;}
.y19_c01032{bottom:239.580000px;}
.y18_c01032{bottom:263.580000px;}
.y17_c01032{bottom:287.880000px;}
.y16_c01032{bottom:312.480000px;}
.y15_c01032{bottom:336.180000px;}
.y14_c01032{bottom:360.480000px;}
.y13_c01032{bottom:384.030000px;}
.y12_c01032{bottom:408.330000px;}
.y11_c01032{bottom:432.330000px;}
.y10_c01032{bottom:456.030000px;}
.yf_c01032{bottom:479.580000px;}
.ye_c01032{bottom:535.230000px;}
.yd_c01032{bottom:563.580000px;}
.yc_c01032{bottom:592.380000px;}
.yb_c01032{bottom:641.580000px;}
.ya_c01032{bottom:665.280000px;}
.y9_c01032{bottom:689.280000px;}
.y8_c01032{bottom:713.580000px;}
.y7_c01032{bottom:739.830000px;}
.y22_c01032{bottom:751.230000px;}
.y6_c01032{bottom:761.130000px;}
.y5_c01032{bottom:785.430000px;}
.y4_c01032{bottom:809.430000px;}
.y3_c01032{bottom:833.580000px;}
.y2_c01032{bottom:858.930000px;}
.y1_c01032{bottom:892.680000px;}
.h6_c01032{height:13.200074px;}
.h7_c01032{height:43.804688px;}
.h2_c01032{height:79.497070px;}
.h1_c01032{height:84.269531px;}
.h3_c01032{height:91.160156px;}
.h4_c01032{height:91.176000px;}
.h5_c01032{height:108.843750px;}
.h0_c01032{height:968.250000px;}
.w2_c01032{width:104.875500px;}
.w1_c01032{width:659.250000px;}
.w0_c01032{width:659.325000px;}
.x0_c01032{left:0.000000px;}
.xe_c01032{left:58.350000px;}
.xd_c01032{left:60.300000px;}
.xc_c01032{left:61.350000px;}
.x3_c01032{left:64.200000px;}
.x2_c01032{left:65.550000px;}
.x4_c01032{left:66.900000px;}
.x6_c01032{left:120.450000px;}
.x1_c01032{left:156.150000px;}
.x5_c01032{left:172.500000px;}
.x8_c01032{left:192.300000px;}
.x9_c01032{left:196.050000px;}
.xb_c01032{left:197.100000px;}
.xa_c01032{left:198.750000px;}
.x7_c01032{left:221.700000px;}
.x11_c01032{left:281.476730px;}
.xf_c01032{left:385.650000px;}
.x10_c01032{left:571.650000px;}
@media print{
.v0_c01032{vertical-align:0.000000pt;}
.ls4_c01032{letter-spacing:-8.000000pt;}
.ls5_c01032{letter-spacing:0.000000pt;}
.ls0_c01032{letter-spacing:1.600000pt;}
.ls1_c01032{letter-spacing:5.077333pt;}
.ls2_c01032{letter-spacing:5.600000pt;}
.ls3_c01032{letter-spacing:18.666667pt;}
.ws2_c01032{word-spacing:-18.000000pt;}
.ws1_c01032{word-spacing:-15.424000pt;}
.ws0_c01032{word-spacing:-7.424000pt;}
.ws3_c01032{word-spacing:0.000000pt;}
._3_c01032{margin-left:-20.224000pt;}
._18_c01032{margin-left:-16.232000pt;}
._2_c01032{margin-left:-10.112000pt;}
._19_c01032{margin-left:-8.856000pt;}
._d_c01032{margin-left:-7.488000pt;}
._1c_c01032{margin-left:-6.437333pt;}
._b_c01032{margin-left:-5.544000pt;}
._c_c01032{margin-left:-4.584000pt;}
._a_c01032{margin-left:-2.904000pt;}
._e_c01032{margin-left:-1.504000pt;}
._1_c01032{width:1.344000pt;}
._0_c01032{width:2.624000pt;}
._f_c01032{width:3.648000pt;}
._9_c01032{width:4.680000pt;}
._10_c01032{width:5.856000pt;}
._4_c01032{width:7.040000pt;}
._14_c01032{width:8.008000pt;}
._5_c01032{width:9.408000pt;}
._12_c01032{width:10.768000pt;}
._15_c01032{width:12.056000pt;}
._16_c01032{width:13.120000pt;}
._13_c01032{width:14.664000pt;}
._1a_c01032{width:15.834667pt;}
._17_c01032{width:19.344000pt;}
._11_c01032{width:22.032000pt;}
._8_c01032{width:27.690667pt;}
._7_c01032{width:30.400000pt;}
._1b_c01032{width:46.648000pt;}
._1d_c01032{width:75.552000pt;}
._1e_c01032{width:224.544000pt;}
._6_c01032{width:865.450667pt;}
.fs5_c01032{font-size:42.666667pt;}
.fs2_c01032{font-size:58.666667pt;}
.fs0_c01032{font-size:64.000000pt;}
.fs1_c01032{font-size:72.000000pt;}
.fs3_c01032{font-size:77.333333pt;}
.fs4_c01032{font-size:96.000000pt;}
.y0_c01032{bottom:0.000000pt;}
.y24_c01032{bottom:2.760000pt;}
.y23_c01032{bottom:6.425206pt;}
.y21_c01032{bottom:39.360000pt;}
.y20_c01032{bottom:60.693333pt;}
.y1f_c01032{bottom:83.360000pt;}
.y1e_c01032{bottom:104.960000pt;}
.y1d_c01032{bottom:126.560000pt;}
.y1c_c01032{bottom:148.293333pt;}
.y1b_c01032{bottom:169.760000pt;}
.y1a_c01032{bottom:191.360000pt;}
.y19_c01032{bottom:212.960000pt;}
.y18_c01032{bottom:234.293333pt;}
.y17_c01032{bottom:255.893333pt;}
.y16_c01032{bottom:277.760000pt;}
.y15_c01032{bottom:298.826667pt;}
.y14_c01032{bottom:320.426667pt;}
.y13_c01032{bottom:341.360000pt;}
.y12_c01032{bottom:362.960000pt;}
.y11_c01032{bottom:384.293333pt;}
.y10_c01032{bottom:405.360000pt;}
.yf_c01032{bottom:426.293333pt;}
.ye_c01032{bottom:475.760000pt;}
.yd_c01032{bottom:500.960000pt;}
.yc_c01032{bottom:526.560000pt;}
.yb_c01032{bottom:570.293333pt;}
.ya_c01032{bottom:591.360000pt;}
.y9_c01032{bottom:612.693333pt;}
.y8_c01032{bottom:634.293333pt;}
.y7_c01032{bottom:657.626667pt;}
.y22_c01032{bottom:667.760000pt;}
.y6_c01032{bottom:676.560000pt;}
.y5_c01032{bottom:698.160000pt;}
.y4_c01032{bottom:719.493333pt;}
.y3_c01032{bottom:740.960000pt;}
.y2_c01032{bottom:763.493333pt;}
.y1_c01032{bottom:793.493333pt;}
.h6_c01032{height:11.733399pt;}
.h7_c01032{height:38.937500pt;}
.h2_c01032{height:70.664062pt;}
.h1_c01032{height:74.906250pt;}
.h3_c01032{height:81.031250pt;}
.h4_c01032{height:81.045333pt;}
.h5_c01032{height:96.750000pt;}
.h0_c01032{height:860.666667pt;}
.w2_c01032{width:93.222667pt;}
.w1_c01032{width:586.000000pt;}
.w0_c01032{width:586.066667pt;}
.x0_c01032{left:0.000000pt;}
.xe_c01032{left:51.866667pt;}
.xd_c01032{left:53.600000pt;}
.xc_c01032{left:54.533333pt;}
.x3_c01032{left:57.066667pt;}
.x2_c01032{left:58.266667pt;}
.x4_c01032{left:59.466667pt;}
.x6_c01032{left:107.066667pt;}
.x1_c01032{left:138.800000pt;}
.x5_c01032{left:153.333333pt;}
.x8_c01032{left:170.933333pt;}
.x9_c01032{left:174.266667pt;}
.xb_c01032{left:175.200000pt;}
.xa_c01032{left:176.666667pt;}
.x7_c01032{left:197.066667pt;}
.x11_c01032{left:250.201538pt;}
.xf_c01032{left:342.800000pt;}
.x10_c01032{left:508.133333pt;}
}





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

.ir_c01033:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01033{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01033;src:url('chunks/assets/font_e842dea90ac23d513d785ff6.woff2')format("woff");}.ff1_c01033{font-family:ff1_c01033;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01033;src:url('chunks/assets/font_64aa3d4d93ee7e698bbb0b23.woff2')format("woff");}.ff2_c01033{font-family:ff2_c01033;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01033;src:url('chunks/assets/font_1551e85794ecd54a5a0ba967.woff2')format("woff");}.ff3_c01033{font-family:ff3_c01033;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01033;src:url('chunks/assets/font_daf53869ec87732bb4d39f9f.woff2')format("woff");}.ff4_c01033{font-family:ff4_c01033;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01033;src:url('chunks/assets/font_cd36f0dca9a65321d4e68405.woff2')format("woff");}.ff5_c01033{font-family:ff5_c01033;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01033;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff6_c01033{font-family:ff6_c01033;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01033;src:url('chunks/assets/font_0d6777cd4a6d842c2e7518d2.woff2')format("woff");}.ff7_c01033{font-family:ff7_c01033;line-height:1.284180;font-style:normal;font-weight: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_c01033;src:url('chunks/assets/font_67c4f406a5ebaa2dbdef40af.woff2')format("woff");}.ff8_c01033{font-family:ff8_c01033;line-height:1.311035;font-style:normal;font-weight: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_c01033;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff9_c01033{font-family:ff9_c01033;line-height:1.219238;font-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_c01033{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m0_c01033{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01033{vertical-align:0.000000px;}
.ls2_c01033{letter-spacing:-3.000000px;}
.ls3_c01033{letter-spacing:0.000000px;}
.ls5_c01033{letter-spacing:6.000000px;}
.ls6_c01033{letter-spacing:9.000000px;}
.ls1_c01033{letter-spacing:11.136000px;}
.ls0_c01033{letter-spacing:19.800000px;}
.ls4_c01033{letter-spacing:27.000000px;}
.sc__c01033{text-shadow:none;}
.sc0_c01033{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01033{-webkit-text-stroke:0px transparent;}
.sc0_c01033{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01033{word-spacing:-47.250000px;}
.ws2_c01033{word-spacing:-44.364000px;}
.ws5_c01033{word-spacing:-42.000000px;}
.ws3_c01033{word-spacing:-23.832000px;}
.ws4_c01033{word-spacing:-17.352000px;}
.ws6_c01033{word-spacing:-0.086400px;}
.ws7_c01033{word-spacing:0.000000px;}
.ws0_c01033{word-spacing:70.440000px;}
._15_c01033{margin-left:-25.527000px;}
._f_c01033{margin-left:-24.408000px;}
._21_c01033{margin-left:-19.278000px;}
._13_c01033{margin-left:-13.896000px;}
._14_c01033{margin-left:-12.159000px;}
._12_c01033{margin-left:-11.007000px;}
._1a_c01033{margin-left:-9.324000px;}
._18_c01033{margin-left:-8.289000px;}
._a_c01033{margin-left:-6.561000px;}
._4_c01033{margin-left:-5.103000px;}
._5_c01033{margin-left:-3.807000px;}
._6_c01033{margin-left:-2.349000px;}
._8_c01033{margin-left:-1.215000px;}
._7_c01033{width:1.782000px;}
._3_c01033{width:2.835000px;}
._2_c01033{width:4.293000px;}
._0_c01033{width:5.751000px;}
._1_c01033{width:6.804000px;}
._e_c01033{width:8.424000px;}
._c_c01033{width:9.639000px;}
._16_c01033{width:10.935000px;}
._9_c01033{width:12.393000px;}
._11_c01033{width:13.932000px;}
._17_c01033{width:14.985000px;}
._b_c01033{width:16.065000px;}
._19_c01033{width:19.035000px;}
._20_c01033{width:25.761000px;}
._d_c01033{width:27.459000px;}
._1b_c01033{width:29.943000px;}
._22_c01033{width:41.499000px;}
._1c_c01033{width:44.697000px;}
._1f_c01033{width:47.547000px;}
._1e_c01033{width:232.686000px;}
._1d_c01033{width:347.328000px;}
._10_c01033{width:704.781000px;}
.fc2_c01033{color:transparent;}
.fc1_c01033{color:rgb(128,128,128);}
.fc0_c01033{color:rgb(0,0,0);}
.fs8_c01033{font-size:48.000000px;}
.fs4_c01033{font-size:57.600000px;}
.fs0_c01033{font-size:60.000000px;}
.fs5_c01033{font-size:66.000000px;}
.fs2_c01033{font-size:69.000000px;}
.fs3_c01033{font-size:72.000000px;}
.fs1_c01033{font-size:81.000000px;}
.fs7_c01033{font-size:86.400000px;}
.fs6_c01033{font-size:108.000000px;}
.y0_c01033{bottom:0.000000px;}
.y26_c01033{bottom:3.105000px;}
.y25_c01033{bottom:7.228363px;}
.y24_c01033{bottom:62.400000px;}
.y23_c01033{bottom:84.150000px;}
.y22_c01033{bottom:109.350000px;}
.y21_c01033{bottom:134.400000px;}
.y20_c01033{bottom:159.000000px;}
.y1f_c01033{bottom:183.900000px;}
.y1e_c01033{bottom:207.600000px;}
.y1d_c01033{bottom:232.500000px;}
.y1c_c01033{bottom:257.100000px;}
.y1b_c01033{bottom:281.700000px;}
.y1a_c01033{bottom:305.550000px;}
.y19_c01033{bottom:330.750000px;}
.y18_c01033{bottom:355.050000px;}
.y17_c01033{bottom:379.650000px;}
.y16_c01033{bottom:403.950000px;}
.y15_c01033{bottom:427.950000px;}
.y14_c01033{bottom:452.550000px;}
.y13_c01033{bottom:476.850000px;}
.y12_c01033{bottom:500.250000px;}
.y11_c01033{bottom:525.450000px;}
.y10_c01033{bottom:548.700000px;}
.y1_c01033{bottom:565.350000px;}
.yf_c01033{bottom:572.700000px;}
.ye_c01033{bottom:596.400000px;}
.yd_c01033{bottom:621.000000px;}
.yc_c01033{bottom:644.250000px;}
.yb_c01033{bottom:668.850000px;}
.ya_c01033{bottom:693.150000px;}
.y9_c01033{bottom:717.750000px;}
.y8_c01033{bottom:741.150000px;}
.y7_c01033{bottom:765.450000px;}
.y6_c01033{bottom:789.750000px;}
.y5_c01033{bottom:813.450000px;}
.y4_c01033{bottom:837.300000px;}
.y3_c01033{bottom:862.050000px;}
.y2_c01033{bottom:886.500000px;}
.h7_c01033{height:13.200074px;}
.h8_c01033{height:43.804688px;}
.h2_c01033{height:58.886719px;}
.h3_c01033{height:79.497070px;}
.h4_c01033{height:84.269531px;}
.h5_c01033{height:91.160156px;}
.h6_c01033{height:108.843750px;}
.h0_c01033{height:980.100000px;}
.h1_c01033{height:980.250000px;}
.w2_c01033{width:104.875500px;}
.w1_c01033{width:663.000000px;}
.w0_c01033{width:663.150000px;}
.x0_c01033{left:0.000000px;}
.x9_c01033{left:22.650000px;}
.x4_c01033{left:24.000000px;}
.x3_c01033{left:27.000000px;}
.xa_c01033{left:89.400000px;}
.x8_c01033{left:112.650000px;}
.x2_c01033{left:114.150000px;}
.x1_c01033{left:116.100000px;}
.xb_c01033{left:137.700000px;}
.x6_c01033{left:148.950000px;}
.x7_c01033{left:153.600000px;}
.x5_c01033{left:227.850000px;}
.xd_c01033{left:283.389267px;}
.xc_c01033{left:560.550000px;}
@media print{
.v0_c01033{vertical-align:0.000000pt;}
.ls2_c01033{letter-spacing:-2.666667pt;}
.ls3_c01033{letter-spacing:0.000000pt;}
.ls5_c01033{letter-spacing:5.333333pt;}
.ls6_c01033{letter-spacing:8.000000pt;}
.ls1_c01033{letter-spacing:9.898667pt;}
.ls0_c01033{letter-spacing:17.600000pt;}
.ls4_c01033{letter-spacing:24.000000pt;}
.ws1_c01033{word-spacing:-42.000000pt;}
.ws2_c01033{word-spacing:-39.434667pt;}
.ws5_c01033{word-spacing:-37.333333pt;}
.ws3_c01033{word-spacing:-21.184000pt;}
.ws4_c01033{word-spacing:-15.424000pt;}
.ws6_c01033{word-spacing:-0.076800pt;}
.ws7_c01033{word-spacing:0.000000pt;}
.ws0_c01033{word-spacing:62.613333pt;}
._15_c01033{margin-left:-22.690667pt;}
._f_c01033{margin-left:-21.696000pt;}
._21_c01033{margin-left:-17.136000pt;}
._13_c01033{margin-left:-12.352000pt;}
._14_c01033{margin-left:-10.808000pt;}
._12_c01033{margin-left:-9.784000pt;}
._1a_c01033{margin-left:-8.288000pt;}
._18_c01033{margin-left:-7.368000pt;}
._a_c01033{margin-left:-5.832000pt;}
._4_c01033{margin-left:-4.536000pt;}
._5_c01033{margin-left:-3.384000pt;}
._6_c01033{margin-left:-2.088000pt;}
._8_c01033{margin-left:-1.080000pt;}
._7_c01033{width:1.584000pt;}
._3_c01033{width:2.520000pt;}
._2_c01033{width:3.816000pt;}
._0_c01033{width:5.112000pt;}
._1_c01033{width:6.048000pt;}
._e_c01033{width:7.488000pt;}
._c_c01033{width:8.568000pt;}
._16_c01033{width:9.720000pt;}
._9_c01033{width:11.016000pt;}
._11_c01033{width:12.384000pt;}
._17_c01033{width:13.320000pt;}
._b_c01033{width:14.280000pt;}
._19_c01033{width:16.920000pt;}
._20_c01033{width:22.898667pt;}
._d_c01033{width:24.408000pt;}
._1b_c01033{width:26.616000pt;}
._22_c01033{width:36.888000pt;}
._1c_c01033{width:39.730667pt;}
._1f_c01033{width:42.264000pt;}
._1e_c01033{width:206.832000pt;}
._1d_c01033{width:308.736000pt;}
._10_c01033{width:626.472000pt;}
.fs8_c01033{font-size:42.666667pt;}
.fs4_c01033{font-size:51.200000pt;}
.fs0_c01033{font-size:53.333333pt;}
.fs5_c01033{font-size:58.666667pt;}
.fs2_c01033{font-size:61.333333pt;}
.fs3_c01033{font-size:64.000000pt;}
.fs1_c01033{font-size:72.000000pt;}
.fs7_c01033{font-size:76.800000pt;}
.fs6_c01033{font-size:96.000000pt;}
.y0_c01033{bottom:0.000000pt;}
.y26_c01033{bottom:2.760000pt;}
.y25_c01033{bottom:6.425212pt;}
.y24_c01033{bottom:55.466667pt;}
.y23_c01033{bottom:74.800000pt;}
.y22_c01033{bottom:97.200000pt;}
.y21_c01033{bottom:119.466667pt;}
.y20_c01033{bottom:141.333333pt;}
.y1f_c01033{bottom:163.466667pt;}
.y1e_c01033{bottom:184.533333pt;}
.y1d_c01033{bottom:206.666667pt;}
.y1c_c01033{bottom:228.533333pt;}
.y1b_c01033{bottom:250.400000pt;}
.y1a_c01033{bottom:271.600000pt;}
.y19_c01033{bottom:294.000000pt;}
.y18_c01033{bottom:315.600000pt;}
.y17_c01033{bottom:337.466667pt;}
.y16_c01033{bottom:359.066667pt;}
.y15_c01033{bottom:380.400000pt;}
.y14_c01033{bottom:402.266667pt;}
.y13_c01033{bottom:423.866667pt;}
.y12_c01033{bottom:444.666667pt;}
.y11_c01033{bottom:467.066667pt;}
.y10_c01033{bottom:487.733333pt;}
.y1_c01033{bottom:502.533333pt;}
.yf_c01033{bottom:509.066667pt;}
.ye_c01033{bottom:530.133333pt;}
.yd_c01033{bottom:552.000000pt;}
.yc_c01033{bottom:572.666667pt;}
.yb_c01033{bottom:594.533333pt;}
.ya_c01033{bottom:616.133333pt;}
.y9_c01033{bottom:638.000000pt;}
.y8_c01033{bottom:658.800000pt;}
.y7_c01033{bottom:680.400000pt;}
.y6_c01033{bottom:702.000000pt;}
.y5_c01033{bottom:723.066667pt;}
.y4_c01033{bottom:744.266667pt;}
.y3_c01033{bottom:766.266667pt;}
.y2_c01033{bottom:788.000000pt;}
.h7_c01033{height:11.733399pt;}
.h8_c01033{height:38.937500pt;}
.h2_c01033{height:52.343750pt;}
.h3_c01033{height:70.664062pt;}
.h4_c01033{height:74.906250pt;}
.h5_c01033{height:81.031250pt;}
.h6_c01033{height:96.750000pt;}
.h0_c01033{height:871.200000pt;}
.h1_c01033{height:871.333333pt;}
.w2_c01033{width:93.222667pt;}
.w1_c01033{width:589.333333pt;}
.w0_c01033{width:589.466667pt;}
.x0_c01033{left:0.000000pt;}
.x9_c01033{left:20.133333pt;}
.x4_c01033{left:21.333333pt;}
.x3_c01033{left:24.000000pt;}
.xa_c01033{left:79.466667pt;}
.x8_c01033{left:100.133333pt;}
.x2_c01033{left:101.466667pt;}
.x1_c01033{left:103.200000pt;}
.xb_c01033{left:122.400000pt;}
.x6_c01033{left:132.400000pt;}
.x7_c01033{left:136.533333pt;}
.x5_c01033{left:202.533333pt;}
.xd_c01033{left:251.901571pt;}
.xc_c01033{left:498.266667pt;}
}





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

.ir_c01034:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01034{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01034;src:url('chunks/assets/font_48c9cdce03ca0414b3fc1abc.woff2')format("woff");}.ff1_c01034{font-family:ff1_c01034;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01034;src:url('chunks/assets/font_a6f4bf3da98ddc143cbbc667.woff2')format("woff");}.ff2_c01034{font-family:ff2_c01034;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01034;src:url('chunks/assets/font_5e1ef9c35b073a990f41f016.woff2')format("woff");}.ff3_c01034{font-family:ff3_c01034;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01034;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff4_c01034{font-family:ff4_c01034;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01034{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01034{vertical-align:0.000000px;}
.ls1_c01034{letter-spacing:-9.000000px;}
.ls0_c01034{letter-spacing:0.000000px;}
.sc__c01034{text-shadow:none;}
.sc0_c01034{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01034{-webkit-text-stroke:0px transparent;}
.sc0_c01034{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01034{word-spacing:-20.160000px;}
.ws1_c01034{word-spacing:0.000000px;}
._16_c01034{margin-left:-29.322000px;}
._1d_c01034{margin-left:-15.957000px;}
._1c_c01034{margin-left:-12.717000px;}
._c_c01034{margin-left:-11.340000px;}
._b_c01034{margin-left:-9.315000px;}
._a_c01034{margin-left:-7.371000px;}
._4_c01034{margin-left:-5.265000px;}
._d_c01034{margin-left:-4.212000px;}
._3_c01034{margin-left:-2.916000px;}
._9_c01034{margin-left:-1.296000px;}
._8_c01034{width:1.296000px;}
._7_c01034{width:2.754000px;}
._1_c01034{width:3.969000px;}
._2_c01034{width:5.427000px;}
._0_c01034{width:6.561000px;}
._5_c01034{width:7.857000px;}
._e_c01034{width:9.315000px;}
._f_c01034{width:10.530000px;}
._6_c01034{width:11.583000px;}
._12_c01034{width:12.636000px;}
._1f_c01034{width:13.851000px;}
._10_c01034{width:14.985000px;}
._13_c01034{width:16.038000px;}
._1e_c01034{width:18.225000px;}
._19_c01034{width:23.004000px;}
._11_c01034{width:25.596000px;}
._17_c01034{width:33.453000px;}
._15_c01034{width:53.865000px;}
._18_c01034{width:55.080000px;}
._14_c01034{width:72.576000px;}
._1a_c01034{width:87.570000px;}
._1b_c01034{width:97.362000px;}
._20_c01034{width:124.578000px;}
._21_c01034{width:323.838000px;}
.fc2_c01034{color:transparent;}
.fc1_c01034{color:rgb(128,128,128);}
.fc0_c01034{color:rgb(0,0,0);}
.fs3_c01034{font-size:48.000000px;}
.fs1_c01034{font-size:72.000000px;}
.fs2_c01034{font-size:78.000000px;}
.fs0_c01034{font-size:81.000000px;}
.y0_c01034{bottom:0.000000px;}
.y25_c01034{bottom:3.105000px;}
.y24_c01034{bottom:7.228369px;}
.y23_c01034{bottom:63.720000px;}
.y22_c01034{bottom:88.770000px;}
.y21_c01034{bottom:113.970000px;}
.y20_c01034{bottom:139.770000px;}
.y1f_c01034{bottom:163.920000px;}
.y1e_c01034{bottom:188.220000px;}
.y1d_c01034{bottom:212.670000px;}
.y1c_c01034{bottom:236.970000px;}
.y1b_c01034{bottom:261.270000px;}
.y1a_c01034{bottom:285.870000px;}
.y19_c01034{bottom:309.720000px;}
.y18_c01034{bottom:334.170000px;}
.y17_c01034{bottom:358.320000px;}
.y16_c01034{bottom:382.320000px;}
.y15_c01034{bottom:404.220000px;}
.y14_c01034{bottom:430.620000px;}
.y13_c01034{bottom:454.170000px;}
.y12_c01034{bottom:478.470000px;}
.y11_c01034{bottom:502.470000px;}
.y10_c01034{bottom:526.470000px;}
.yf_c01034{bottom:550.470000px;}
.ye_c01034{bottom:573.720000px;}
.yd_c01034{bottom:598.020000px;}
.yc_c01034{bottom:622.020000px;}
.yb_c01034{bottom:646.020000px;}
.ya_c01034{bottom:669.870000px;}
.y9_c01034{bottom:694.170000px;}
.y8_c01034{bottom:718.170000px;}
.y7_c01034{bottom:742.170000px;}
.y6_c01034{bottom:766.170000px;}
.y5_c01034{bottom:790.320000px;}
.y4_c01034{bottom:813.420000px;}
.y3_c01034{bottom:838.920000px;}
.y2_c01034{bottom:862.920000px;}
.y1_c01034{bottom:886.920000px;}
.h5_c01034{height:13.200073px;}
.h6_c01034{height:43.804688px;}
.h2_c01034{height:79.497070px;}
.h3_c01034{height:84.269531px;}
.h4_c01034{height:98.756836px;}
.h1_c01034{height:986.250000px;}
.h0_c01034{height:986.550000px;}
.w1_c01034{width:104.875500px;}
.w0_c01034{width:672.000000px;}
.x0_c01034{left:0.000000px;}
.x3_c01034{left:60.750000px;}
.x1_c01034{left:62.400000px;}
.x2_c01034{left:63.450000px;}
.x5_c01034{left:287.814240px;}
.x4_c01034{left:392.850000px;}
@media print{
.v0_c01034{vertical-align:0.000000pt;}
.ls1_c01034{letter-spacing:-8.000000pt;}
.ls0_c01034{letter-spacing:0.000000pt;}
.ws0_c01034{word-spacing:-17.920000pt;}
.ws1_c01034{word-spacing:0.000000pt;}
._16_c01034{margin-left:-26.064000pt;}
._1d_c01034{margin-left:-14.184000pt;}
._1c_c01034{margin-left:-11.304000pt;}
._c_c01034{margin-left:-10.080000pt;}
._b_c01034{margin-left:-8.280000pt;}
._a_c01034{margin-left:-6.552000pt;}
._4_c01034{margin-left:-4.680000pt;}
._d_c01034{margin-left:-3.744000pt;}
._3_c01034{margin-left:-2.592000pt;}
._9_c01034{margin-left:-1.152000pt;}
._8_c01034{width:1.152000pt;}
._7_c01034{width:2.448000pt;}
._1_c01034{width:3.528000pt;}
._2_c01034{width:4.824000pt;}
._0_c01034{width:5.832000pt;}
._5_c01034{width:6.984000pt;}
._e_c01034{width:8.280000pt;}
._f_c01034{width:9.360000pt;}
._6_c01034{width:10.296000pt;}
._12_c01034{width:11.232000pt;}
._1f_c01034{width:12.312000pt;}
._10_c01034{width:13.320000pt;}
._13_c01034{width:14.256000pt;}
._1e_c01034{width:16.200000pt;}
._19_c01034{width:20.448000pt;}
._11_c01034{width:22.752000pt;}
._17_c01034{width:29.736000pt;}
._15_c01034{width:47.880000pt;}
._18_c01034{width:48.960000pt;}
._14_c01034{width:64.512000pt;}
._1a_c01034{width:77.840000pt;}
._1b_c01034{width:86.544000pt;}
._20_c01034{width:110.736000pt;}
._21_c01034{width:287.856000pt;}
.fs3_c01034{font-size:42.666667pt;}
.fs1_c01034{font-size:64.000000pt;}
.fs2_c01034{font-size:69.333333pt;}
.fs0_c01034{font-size:72.000000pt;}
.y0_c01034{bottom:0.000000pt;}
.y25_c01034{bottom:2.760000pt;}
.y24_c01034{bottom:6.425217pt;}
.y23_c01034{bottom:56.640000pt;}
.y22_c01034{bottom:78.906667pt;}
.y21_c01034{bottom:101.306667pt;}
.y20_c01034{bottom:124.240000pt;}
.y1f_c01034{bottom:145.706667pt;}
.y1e_c01034{bottom:167.306667pt;}
.y1d_c01034{bottom:189.040000pt;}
.y1c_c01034{bottom:210.640000pt;}
.y1b_c01034{bottom:232.240000pt;}
.y1a_c01034{bottom:254.106667pt;}
.y19_c01034{bottom:275.306667pt;}
.y18_c01034{bottom:297.040000pt;}
.y17_c01034{bottom:318.506667pt;}
.y16_c01034{bottom:339.840000pt;}
.y15_c01034{bottom:359.306667pt;}
.y14_c01034{bottom:382.773333pt;}
.y13_c01034{bottom:403.706667pt;}
.y12_c01034{bottom:425.306667pt;}
.y11_c01034{bottom:446.640000pt;}
.y10_c01034{bottom:467.973333pt;}
.yf_c01034{bottom:489.306667pt;}
.ye_c01034{bottom:509.973333pt;}
.yd_c01034{bottom:531.573333pt;}
.yc_c01034{bottom:552.906667pt;}
.yb_c01034{bottom:574.240000pt;}
.ya_c01034{bottom:595.440000pt;}
.y9_c01034{bottom:617.040000pt;}
.y8_c01034{bottom:638.373333pt;}
.y7_c01034{bottom:659.706667pt;}
.y6_c01034{bottom:681.040000pt;}
.y5_c01034{bottom:702.506667pt;}
.y4_c01034{bottom:723.040000pt;}
.y3_c01034{bottom:745.706667pt;}
.y2_c01034{bottom:767.040000pt;}
.y1_c01034{bottom:788.373333pt;}
.h5_c01034{height:11.733399pt;}
.h6_c01034{height:38.937500pt;}
.h2_c01034{height:70.664062pt;}
.h3_c01034{height:74.906250pt;}
.h4_c01034{height:87.783854pt;}
.h1_c01034{height:876.666667pt;}
.h0_c01034{height:876.933333pt;}
.w1_c01034{width:93.222667pt;}
.w0_c01034{width:597.333333pt;}
.x0_c01034{left:0.000000pt;}
.x3_c01034{left:54.000000pt;}
.x1_c01034{left:55.466667pt;}
.x2_c01034{left:56.400000pt;}
.x5_c01034{left:255.834880pt;}
.x4_c01034{left:349.200000pt;}
}





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

.ir_c01035:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01035{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01035;src:url('chunks/assets/font_341f986bc55c32206a7f1a85.woff2')format("woff");}.ff1_c01035{font-family:ff1_c01035;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01035;src:url('chunks/assets/font_60fad5f542c93c381669c960.woff2')format("woff");}.ff2_c01035{font-family:ff2_c01035;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01035;src:url('chunks/assets/font_141fbeb21eaae219f1085008.woff2')format("woff");}.ff3_c01035{font-family:ff3_c01035;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01035;src:url('chunks/assets/font_afecc38589cce91758ecf008.woff2')format("woff");}.ff4_c01035{font-family:ff4_c01035;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01035;src:url('chunks/assets/font_09ccac6cc1907fcae40eed9a.woff2')format("woff");}.ff5_c01035{font-family:ff5_c01035;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01035;src:url('chunks/assets/font_c0b1bf31fc60a873b8e35b7a.woff2')format("woff");}.ff6_c01035{font-family:ff6_c01035;line-height:1.311035;font-style:normal;font-weight: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_c01035;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c01035{font-family:ff7_c01035;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4_c01035{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m0_c01035{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m5_c01035{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m6_c01035{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m8_c01035{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m3_c01035{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m7_c01035{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m2_c01035{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m1_c01035{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.v0_c01035{vertical-align:0.000000px;}
.ls1_c01035{letter-spacing:0.000000px;}
.ls0_c01035{letter-spacing:12.264000px;}
.ls2_c01035{letter-spacing:60.000000px;}
.sc__c01035{text-shadow:none;}
.sc0_c01035{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01035{-webkit-text-stroke:0px transparent;}
.sc0_c01035{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c01035{word-spacing:-80.250000px;}
.ws0_c01035{word-spacing:-67.686000px;}
.ws3_c01035{word-spacing:-63.402000px;}
.ws2_c01035{word-spacing:-20.250000px;}
.ws1_c01035{word-spacing:-17.352000px;}
.ws4_c01035{word-spacing:-16.926000px;}
.ws6_c01035{word-spacing:0.000000px;}
._26_c01035{margin-left:-93.771000px;}
._28_c01035{margin-left:-79.542000px;}
._25_c01035{margin-left:-76.788000px;}
._27_c01035{margin-left:-68.805000px;}
._30_c01035{margin-left:-63.423000px;}
._2d_c01035{margin-left:-62.127000px;}
._2f_c01035{margin-left:-60.912000px;}
._2b_c01035{margin-left:-54.270000px;}
._2a_c01035{margin-left:-51.597000px;}
._2c_c01035{margin-left:-28.350000px;}
._17_c01035{margin-left:-25.191000px;}
._32_c01035{margin-left:-24.120000px;}
._19_c01035{margin-left:-21.168000px;}
._15_c01035{margin-left:-17.925000px;}
._21_c01035{margin-left:-16.224000px;}
._1a_c01035{margin-left:-14.967000px;}
._1d_c01035{margin-left:-12.798000px;}
._d_c01035{margin-left:-9.999000px;}
._e_c01035{margin-left:-8.973000px;}
._2_c01035{margin-left:-7.722000px;}
._1_c01035{margin-left:-6.039000px;}
._4_c01035{margin-left:-4.554000px;}
._7_c01035{margin-left:-2.574000px;}
._6_c01035{margin-left:-1.485000px;}
._8_c01035{width:1.458000px;}
._9_c01035{width:2.754000px;}
._f_c01035{width:4.194000px;}
._c_c01035{width:5.994000px;}
._b_c01035{width:7.209000px;}
._5_c01035{width:8.514000px;}
._a_c01035{width:10.359000px;}
._11_c01035{width:11.607000px;}
._13_c01035{width:12.681000px;}
._10_c01035{width:13.689000px;}
._31_c01035{width:15.033000px;}
._18_c01035{width:16.113000px;}
._12_c01035{width:17.460000px;}
._1f_c01035{width:19.440000px;}
._1e_c01035{width:22.032000px;}
._34_c01035{width:23.679000px;}
._0_c01035{width:26.136000px;}
._1c_c01035{width:27.351000px;}
._35_c01035{width:30.888000px;}
._1b_c01035{width:32.472000px;}
._14_c01035{width:33.477000px;}
._23_c01035{width:62.190000px;}
._2e_c01035{width:72.171000px;}
._20_c01035{width:103.404000px;}
._37_c01035{width:118.287000px;}
._36_c01035{width:128.385000px;}
._33_c01035{width:133.443000px;}
._29_c01035{width:169.371000px;}
._16_c01035{width:304.173000px;}
._24_c01035{width:314.688000px;}
._38_c01035{width:344.898000px;}
._3_c01035{width:357.786000px;}
._22_c01035{width:617.916000px;}
.fc2_c01035{color:transparent;}
.fc1_c01035{color:rgb(128,128,128);}
.fc0_c01035{color:rgb(0,0,0);}
.fs6_c01035{font-size:48.000000px;}
.fs5_c01035{font-size:57.000000px;}
.fs3_c01035{font-size:72.000000px;}
.fs4_c01035{font-size:78.000000px;}
.fs1_c01035{font-size:81.000000px;}
.fs2_c01035{font-size:87.000000px;}
.fs0_c01035{font-size:99.000000px;}
.y0_c01035{bottom:0.000000px;}
.y26_c01035{bottom:3.105000px;}
.y25_c01035{bottom:7.228355px;}
.y24_c01035{bottom:71.835000px;}
.y23_c01035{bottom:94.485000px;}
.y22_c01035{bottom:120.135000px;}
.y21_c01035{bottom:144.735000px;}
.y20_c01035{bottom:169.635000px;}
.y1f_c01035{bottom:193.935000px;}
.y1e_c01035{bottom:218.985000px;}
.y1d_c01035{bottom:243.585000px;}
.y1c_c01035{bottom:268.185000px;}
.y1b_c01035{bottom:292.635000px;}
.y1a_c01035{bottom:317.535000px;}
.y19_c01035{bottom:341.235000px;}
.y18_c01035{bottom:365.385000px;}
.y17_c01035{bottom:390.135000px;}
.y16_c01035{bottom:414.435000px;}
.y15_c01035{bottom:438.435000px;}
.y14_c01035{bottom:462.585000px;}
.y13_c01035{bottom:486.285000px;}
.y12_c01035{bottom:510.285000px;}
.y11_c01035{bottom:534.135000px;}
.y10_c01035{bottom:558.135000px;}
.yf_c01035{bottom:570.585000px;}
.ye_c01035{bottom:582.135000px;}
.yd_c01035{bottom:606.435000px;}
.yc_c01035{bottom:630.135000px;}
.yb_c01035{bottom:688.485000px;}
.ya_c01035{bottom:703.935000px;}
.y9_c01035{bottom:727.635000px;}
.y8_c01035{bottom:751.935000px;}
.y7_c01035{bottom:775.785000px;}
.y6_c01035{bottom:800.085000px;}
.y5_c01035{bottom:823.785000px;}
.y4_c01035{bottom:848.085000px;}
.y3_c01035{bottom:872.385000px;}
.y2_c01035{bottom:896.385000px;}
.y1_c01035{bottom:929.385000px;}
.h9_c01035{height:13.200074px;}
.ha_c01035{height:43.804688px;}
.h8_c01035{height:57.445312px;}
.h4_c01035{height:79.497070px;}
.h6_c01035{height:83.226000px;}
.h5_c01035{height:84.269531px;}
.h3_c01035{height:91.176000px;}
.h7_c01035{height:98.756836px;}
.h2_c01035{height:115.870605px;}
.h1_c01035{height:975.000000px;}
.h0_c01035{height:975.225000px;}
.w2_c01035{width:104.875500px;}
.w0_c01035{width:659.850000px;}
.w1_c01035{width:660.000000px;}
.x0_c01035{left:0.000000px;}
.x10_c01035{left:12.600000px;}
.xe_c01035{left:36.900000px;}
.x14_c01035{left:54.900000px;}
.xf_c01035{left:80.550000px;}
.x1_c01035{left:102.900000px;}
.x3_c01035{left:104.250000px;}
.x2_c01035{left:105.300000px;}
.xa_c01035{left:273.150000px;}
.xb_c01035{left:277.350000px;}
.x16_c01035{left:281.739258px;}
.x4_c01035{left:304.350000px;}
.x5_c01035{left:333.900000px;}
.xc_c01035{left:356.700000px;}
.x15_c01035{left:369.150000px;}
.xd_c01035{left:381.000000px;}
.x6_c01035{left:393.600000px;}
.x11_c01035{left:402.300000px;}
.x7_c01035{left:422.550000px;}
.x12_c01035{left:428.400000px;}
.x8_c01035{left:431.250000px;}
.x9_c01035{left:455.850000px;}
.x13_c01035{left:501.450000px;}
@media print{
.v0_c01035{vertical-align:0.000000pt;}
.ls1_c01035{letter-spacing:0.000000pt;}
.ls0_c01035{letter-spacing:10.901333pt;}
.ls2_c01035{letter-spacing:53.333333pt;}
.ws5_c01035{word-spacing:-71.333333pt;}
.ws0_c01035{word-spacing:-60.165333pt;}
.ws3_c01035{word-spacing:-56.357333pt;}
.ws2_c01035{word-spacing:-18.000000pt;}
.ws1_c01035{word-spacing:-15.424000pt;}
.ws4_c01035{word-spacing:-15.045333pt;}
.ws6_c01035{word-spacing:0.000000pt;}
._26_c01035{margin-left:-83.352000pt;}
._28_c01035{margin-left:-70.704000pt;}
._25_c01035{margin-left:-68.256000pt;}
._27_c01035{margin-left:-61.160000pt;}
._30_c01035{margin-left:-56.376000pt;}
._2d_c01035{margin-left:-55.224000pt;}
._2f_c01035{margin-left:-54.144000pt;}
._2b_c01035{margin-left:-48.240000pt;}
._2a_c01035{margin-left:-45.864000pt;}
._2c_c01035{margin-left:-25.200000pt;}
._17_c01035{margin-left:-22.392000pt;}
._32_c01035{margin-left:-21.440000pt;}
._19_c01035{margin-left:-18.816000pt;}
._15_c01035{margin-left:-15.933333pt;}
._21_c01035{margin-left:-14.421333pt;}
._1a_c01035{margin-left:-13.304000pt;}
._1d_c01035{margin-left:-11.376000pt;}
._d_c01035{margin-left:-8.888000pt;}
._e_c01035{margin-left:-7.976000pt;}
._2_c01035{margin-left:-6.864000pt;}
._1_c01035{margin-left:-5.368000pt;}
._4_c01035{margin-left:-4.048000pt;}
._7_c01035{margin-left:-2.288000pt;}
._6_c01035{margin-left:-1.320000pt;}
._8_c01035{width:1.296000pt;}
._9_c01035{width:2.448000pt;}
._f_c01035{width:3.728000pt;}
._c_c01035{width:5.328000pt;}
._b_c01035{width:6.408000pt;}
._5_c01035{width:7.568000pt;}
._a_c01035{width:9.208000pt;}
._11_c01035{width:10.317333pt;}
._13_c01035{width:11.272000pt;}
._10_c01035{width:12.168000pt;}
._31_c01035{width:13.362667pt;}
._18_c01035{width:14.322667pt;}
._12_c01035{width:15.520000pt;}
._1f_c01035{width:17.280000pt;}
._1e_c01035{width:19.584000pt;}
._34_c01035{width:21.048000pt;}
._0_c01035{width:23.232000pt;}
._1c_c01035{width:24.312000pt;}
._35_c01035{width:27.456000pt;}
._1b_c01035{width:28.864000pt;}
._14_c01035{width:29.757333pt;}
._23_c01035{width:55.280000pt;}
._2e_c01035{width:64.152000pt;}
._20_c01035{width:91.914667pt;}
._37_c01035{width:105.144000pt;}
._36_c01035{width:114.120000pt;}
._33_c01035{width:118.616000pt;}
._29_c01035{width:150.552000pt;}
._16_c01035{width:270.376000pt;}
._24_c01035{width:279.722667pt;}
._38_c01035{width:306.576000pt;}
._3_c01035{width:318.032000pt;}
._22_c01035{width:549.258667pt;}
.fs6_c01035{font-size:42.666667pt;}
.fs5_c01035{font-size:50.666667pt;}
.fs3_c01035{font-size:64.000000pt;}
.fs4_c01035{font-size:69.333333pt;}
.fs1_c01035{font-size:72.000000pt;}
.fs2_c01035{font-size:77.333333pt;}
.fs0_c01035{font-size:88.000000pt;}
.y0_c01035{bottom:0.000000pt;}
.y26_c01035{bottom:2.760000pt;}
.y25_c01035{bottom:6.425204pt;}
.y24_c01035{bottom:63.853333pt;}
.y23_c01035{bottom:83.986667pt;}
.y22_c01035{bottom:106.786667pt;}
.y21_c01035{bottom:128.653333pt;}
.y20_c01035{bottom:150.786667pt;}
.y1f_c01035{bottom:172.386667pt;}
.y1e_c01035{bottom:194.653333pt;}
.y1d_c01035{bottom:216.520000pt;}
.y1c_c01035{bottom:238.386667pt;}
.y1b_c01035{bottom:260.120000pt;}
.y1a_c01035{bottom:282.253333pt;}
.y19_c01035{bottom:303.320000pt;}
.y18_c01035{bottom:324.786667pt;}
.y17_c01035{bottom:346.786667pt;}
.y16_c01035{bottom:368.386667pt;}
.y15_c01035{bottom:389.720000pt;}
.y14_c01035{bottom:411.186667pt;}
.y13_c01035{bottom:432.253333pt;}
.y12_c01035{bottom:453.586667pt;}
.y11_c01035{bottom:474.786667pt;}
.y10_c01035{bottom:496.120000pt;}
.yf_c01035{bottom:507.186667pt;}
.ye_c01035{bottom:517.453333pt;}
.yd_c01035{bottom:539.053333pt;}
.yc_c01035{bottom:560.120000pt;}
.yb_c01035{bottom:611.986667pt;}
.ya_c01035{bottom:625.720000pt;}
.y9_c01035{bottom:646.786667pt;}
.y8_c01035{bottom:668.386667pt;}
.y7_c01035{bottom:689.586667pt;}
.y6_c01035{bottom:711.186667pt;}
.y5_c01035{bottom:732.253333pt;}
.y4_c01035{bottom:753.853333pt;}
.y3_c01035{bottom:775.453333pt;}
.y2_c01035{bottom:796.786667pt;}
.y1_c01035{bottom:826.120000pt;}
.h9_c01035{height:11.733399pt;}
.ha_c01035{height:38.937500pt;}
.h8_c01035{height:51.062500pt;}
.h4_c01035{height:70.664062pt;}
.h6_c01035{height:73.978667pt;}
.h5_c01035{height:74.906250pt;}
.h3_c01035{height:81.045333pt;}
.h7_c01035{height:87.783854pt;}
.h2_c01035{height:102.996094pt;}
.h1_c01035{height:866.666667pt;}
.h0_c01035{height:866.866667pt;}
.w2_c01035{width:93.222667pt;}
.w0_c01035{width:586.533333pt;}
.w1_c01035{width:586.666667pt;}
.x0_c01035{left:0.000000pt;}
.x10_c01035{left:11.200000pt;}
.xe_c01035{left:32.800000pt;}
.x14_c01035{left:48.800000pt;}
.xf_c01035{left:71.600000pt;}
.x1_c01035{left:91.466667pt;}
.x3_c01035{left:92.666667pt;}
.x2_c01035{left:93.600000pt;}
.xa_c01035{left:242.800000pt;}
.xb_c01035{left:246.533333pt;}
.x16_c01035{left:250.434896pt;}
.x4_c01035{left:270.533333pt;}
.x5_c01035{left:296.800000pt;}
.xc_c01035{left:317.066667pt;}
.x15_c01035{left:328.133333pt;}
.xd_c01035{left:338.666667pt;}
.x6_c01035{left:349.866667pt;}
.x11_c01035{left:357.600000pt;}
.x7_c01035{left:375.600000pt;}
.x12_c01035{left:380.800000pt;}
.x8_c01035{left:383.333333pt;}
.x9_c01035{left:405.200000pt;}
.x13_c01035{left:445.733333pt;}
}





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

.ir_c01036:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01036{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01036;src:url('chunks/assets/font_7c184e44b5199e961339b537.woff2')format("woff");}.ff1_c01036{font-family:ff1_c01036;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01036;src:url('chunks/assets/font_e7fbd4798c26207dfda454f3.woff2')format("woff");}.ff2_c01036{font-family:ff2_c01036;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01036;src:url('chunks/assets/font_5d86a8c057c2f618400e6fbc.woff2')format("woff");}.ff3_c01036{font-family:ff3_c01036;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01036;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff4_c01036{font-family:ff4_c01036;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01036;src:url('chunks/assets/font_2335137ccb6b52267be3f851.woff2')format("woff");}.ff5_c01036{font-family:ff5_c01036;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01036;src:url('chunks/assets/font_b70f3cc74856b3b0c947fb2c.woff2')format("woff");}.ff6_c01036{font-family:ff6_c01036;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01036;src:url('chunks/assets/font_2c1794d692fe27751e09fcea.woff2')format("woff");}.ff7_c01036{font-family:ff7_c01036;line-height:1.311035;font-style:normal;font-weight: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_c01036;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff8_c01036{font-family:ff8_c01036;line-height:1.219238;font-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_c01036{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m0_c01036{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01036{vertical-align:0.000000px;}
.ls4_c01036{letter-spacing:0.000000px;}
.ls0_c01036{letter-spacing:0.432000px;}
.ls1_c01036{letter-spacing:5.280000px;}
.ls5_c01036{letter-spacing:9.000000px;}
.ls2_c01036{letter-spacing:24.223200px;}
.ls3_c01036{letter-spacing:38.202000px;}
.sc__c01036{text-shadow:none;}
.sc0_c01036{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01036{-webkit-text-stroke:0px transparent;}
.sc0_c01036{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01036{word-spacing:-67.686000px;}
.ws3_c01036{word-spacing:-27.867000px;}
.ws4_c01036{word-spacing:-22.737000px;}
.ws0_c01036{word-spacing:-19.272000px;}
.ws1_c01036{word-spacing:-17.352000px;}
.ws5_c01036{word-spacing:0.000000px;}
._23_c01036{margin-left:-33.939000px;}
._1c_c01036{margin-left:-30.396000px;}
._26_c01036{margin-left:-19.872000px;}
._1f_c01036{margin-left:-17.088000px;}
._21_c01036{margin-left:-10.635000px;}
._c_c01036{margin-left:-9.312000px;}
._b_c01036{margin-left:-7.488000px;}
._d_c01036{margin-left:-5.568000px;}
._13_c01036{margin-left:-4.431000px;}
._e_c01036{margin-left:-3.360000px;}
._12_c01036{margin-left:-1.482000px;}
._16_c01036{width:1.263000px;}
._f_c01036{width:2.496000px;}
._10_c01036{width:3.552000px;}
._11_c01036{width:5.430000px;}
._14_c01036{width:6.468000px;}
._15_c01036{width:7.686000px;}
._2_c01036{width:8.712000px;}
._1b_c01036{width:9.759000px;}
._6_c01036{width:10.800000px;}
._17_c01036{width:11.838000px;}
._1a_c01036{width:13.491000px;}
._4_c01036{width:14.904000px;}
._3_c01036{width:16.272000px;}
._19_c01036{width:17.280000px;}
._1_c01036{width:18.936000px;}
._0_c01036{width:20.376000px;}
._a_c01036{width:22.194000px;}
._5_c01036{width:24.192000px;}
._8_c01036{width:27.720000px;}
._7_c01036{width:29.880000px;}
._20_c01036{width:31.071000px;}
._18_c01036{width:34.158000px;}
._24_c01036{width:53.658000px;}
._22_c01036{width:58.368000px;}
._1e_c01036{width:210.588000px;}
._1d_c01036{width:256.782000px;}
._9_c01036{width:286.032000px;}
._25_c01036{width:378.432000px;}
.fc2_c01036{color:transparent;}
.fc1_c01036{color:rgb(128,128,128);}
.fc0_c01036{color:rgb(0,0,0);}
.fs5_c01036{font-size:45.600000px;}
.fs9_c01036{font-size:48.000000px;}
.fs6_c01036{font-size:57.000000px;}
.fs1_c01036{font-size:66.000000px;}
.fs0_c01036{font-size:72.000000px;}
.fs7_c01036{font-size:78.000000px;}
.fs3_c01036{font-size:81.000000px;}
.fs4_c01036{font-size:87.000000px;}
.fs2_c01036{font-size:96.000000px;}
.fs8_c01036{font-size:108.000000px;}
.y0_c01036{bottom:0.000000px;}
.y26_c01036{bottom:3.105000px;}
.y25_c01036{bottom:7.228369px;}
.y24_c01036{bottom:62.070000px;}
.y23_c01036{bottom:86.970000px;}
.y22_c01036{bottom:112.020000px;}
.y21_c01036{bottom:137.370000px;}
.y20_c01036{bottom:161.670000px;}
.y1f_c01036{bottom:185.670000px;}
.y1e_c01036{bottom:210.270000px;}
.y1d_c01036{bottom:234.870000px;}
.y1c_c01036{bottom:258.870000px;}
.y1b_c01036{bottom:283.170000px;}
.y1a_c01036{bottom:307.470000px;}
.y19_c01036{bottom:331.770000px;}
.y18_c01036{bottom:355.770000px;}
.y17_c01036{bottom:379.320000px;}
.y16_c01036{bottom:404.220000px;}
.y15_c01036{bottom:427.620000px;}
.y14_c01036{bottom:452.220000px;}
.y13_c01036{bottom:476.220000px;}
.y12_c01036{bottom:500.520000px;}
.y11_c01036{bottom:524.820000px;}
.y10_c01036{bottom:548.220000px;}
.yf_c01036{bottom:572.070000px;}
.ye_c01036{bottom:595.920000px;}
.yd_c01036{bottom:619.620000px;}
.yc_c01036{bottom:643.620000px;}
.yb_c01036{bottom:667.170000px;}
.ya_c01036{bottom:691.170000px;}
.y9_c01036{bottom:715.170000px;}
.y8_c01036{bottom:739.020000px;}
.y7_c01036{bottom:763.020000px;}
.y6_c01036{bottom:787.620000px;}
.y5_c01036{bottom:811.320000px;}
.y4_c01036{bottom:835.620000px;}
.y3_c01036{bottom:859.170000px;}
.y2_c01036{bottom:883.920000px;}
.y1_c01036{bottom:919.020000px;}
.hb_c01036{height:13.200073px;}
.hc_c01036{height:43.804688px;}
.h7_c01036{height:66.713379px;}
.h5_c01036{height:79.497070px;}
.h2_c01036{height:84.269531px;}
.h4_c01036{height:91.160156px;}
.h9_c01036{height:91.176000px;}
.h6_c01036{height:91.776000px;}
.h3_c01036{height:94.218750px;}
.h8_c01036{height:98.756836px;}
.ha_c01036{height:108.843750px;}
.h1_c01036{height:986.250000px;}
.h0_c01036{height:986.550000px;}
.w1_c01036{width:104.875500px;}
.w0_c01036{width:672.000000px;}
.x0_c01036{left:0.000000px;}
.x5_c01036{left:47.550000px;}
.x4_c01036{left:49.200000px;}
.x3_c01036{left:50.550000px;}
.x2_c01036{left:51.600000px;}
.x1_c01036{left:158.550000px;}
.x7_c01036{left:287.814240px;}
.x6_c01036{left:367.200000px;}
@media print{
.v0_c01036{vertical-align:0.000000pt;}
.ls4_c01036{letter-spacing:0.000000pt;}
.ls0_c01036{letter-spacing:0.384000pt;}
.ls1_c01036{letter-spacing:4.693333pt;}
.ls5_c01036{letter-spacing:8.000000pt;}
.ls2_c01036{letter-spacing:21.531733pt;}
.ls3_c01036{letter-spacing:33.957333pt;}
.ws2_c01036{word-spacing:-60.165333pt;}
.ws3_c01036{word-spacing:-24.770667pt;}
.ws4_c01036{word-spacing:-20.210667pt;}
.ws0_c01036{word-spacing:-17.130667pt;}
.ws1_c01036{word-spacing:-15.424000pt;}
.ws5_c01036{word-spacing:0.000000pt;}
._23_c01036{margin-left:-30.168000pt;}
._1c_c01036{margin-left:-27.018667pt;}
._26_c01036{margin-left:-17.664000pt;}
._1f_c01036{margin-left:-15.189333pt;}
._21_c01036{margin-left:-9.453333pt;}
._c_c01036{margin-left:-8.277333pt;}
._b_c01036{margin-left:-6.656000pt;}
._d_c01036{margin-left:-4.949333pt;}
._13_c01036{margin-left:-3.938667pt;}
._e_c01036{margin-left:-2.986667pt;}
._12_c01036{margin-left:-1.317333pt;}
._16_c01036{width:1.122667pt;}
._f_c01036{width:2.218667pt;}
._10_c01036{width:3.157333pt;}
._11_c01036{width:4.826667pt;}
._14_c01036{width:5.749333pt;}
._15_c01036{width:6.832000pt;}
._2_c01036{width:7.744000pt;}
._1b_c01036{width:8.674667pt;}
._6_c01036{width:9.600000pt;}
._17_c01036{width:10.522667pt;}
._1a_c01036{width:11.992000pt;}
._4_c01036{width:13.248000pt;}
._3_c01036{width:14.464000pt;}
._19_c01036{width:15.360000pt;}
._1_c01036{width:16.832000pt;}
._0_c01036{width:18.112000pt;}
._a_c01036{width:19.728000pt;}
._5_c01036{width:21.504000pt;}
._8_c01036{width:24.640000pt;}
._7_c01036{width:26.560000pt;}
._20_c01036{width:27.618667pt;}
._18_c01036{width:30.362667pt;}
._24_c01036{width:47.696000pt;}
._22_c01036{width:51.882667pt;}
._1e_c01036{width:187.189333pt;}
._1d_c01036{width:228.250667pt;}
._9_c01036{width:254.250667pt;}
._25_c01036{width:336.384000pt;}
.fs5_c01036{font-size:40.533333pt;}
.fs9_c01036{font-size:42.666667pt;}
.fs6_c01036{font-size:50.666667pt;}
.fs1_c01036{font-size:58.666667pt;}
.fs0_c01036{font-size:64.000000pt;}
.fs7_c01036{font-size:69.333333pt;}
.fs3_c01036{font-size:72.000000pt;}
.fs4_c01036{font-size:77.333333pt;}
.fs2_c01036{font-size:85.333333pt;}
.fs8_c01036{font-size:96.000000pt;}
.y0_c01036{bottom:0.000000pt;}
.y26_c01036{bottom:2.760000pt;}
.y25_c01036{bottom:6.425217pt;}
.y24_c01036{bottom:55.173333pt;}
.y23_c01036{bottom:77.306667pt;}
.y22_c01036{bottom:99.573333pt;}
.y21_c01036{bottom:122.106667pt;}
.y20_c01036{bottom:143.706667pt;}
.y1f_c01036{bottom:165.040000pt;}
.y1e_c01036{bottom:186.906667pt;}
.y1d_c01036{bottom:208.773333pt;}
.y1c_c01036{bottom:230.106667pt;}
.y1b_c01036{bottom:251.706667pt;}
.y1a_c01036{bottom:273.306667pt;}
.y19_c01036{bottom:294.906667pt;}
.y18_c01036{bottom:316.240000pt;}
.y17_c01036{bottom:337.173333pt;}
.y16_c01036{bottom:359.306667pt;}
.y15_c01036{bottom:380.106667pt;}
.y14_c01036{bottom:401.973333pt;}
.y13_c01036{bottom:423.306667pt;}
.y12_c01036{bottom:444.906667pt;}
.y11_c01036{bottom:466.506667pt;}
.y10_c01036{bottom:487.306667pt;}
.yf_c01036{bottom:508.506667pt;}
.ye_c01036{bottom:529.706667pt;}
.yd_c01036{bottom:550.773333pt;}
.yc_c01036{bottom:572.106667pt;}
.yb_c01036{bottom:593.040000pt;}
.ya_c01036{bottom:614.373333pt;}
.y9_c01036{bottom:635.706667pt;}
.y8_c01036{bottom:656.906667pt;}
.y7_c01036{bottom:678.240000pt;}
.y6_c01036{bottom:700.106667pt;}
.y5_c01036{bottom:721.173333pt;}
.y4_c01036{bottom:742.773333pt;}
.y3_c01036{bottom:763.706667pt;}
.y2_c01036{bottom:785.706667pt;}
.y1_c01036{bottom:816.906667pt;}
.hb_c01036{height:11.733399pt;}
.hc_c01036{height:38.937500pt;}
.h7_c01036{height:59.300781pt;}
.h5_c01036{height:70.664062pt;}
.h2_c01036{height:74.906250pt;}
.h4_c01036{height:81.031250pt;}
.h9_c01036{height:81.045333pt;}
.h6_c01036{height:81.578667pt;}
.h3_c01036{height:83.750000pt;}
.h8_c01036{height:87.783854pt;}
.ha_c01036{height:96.750000pt;}
.h1_c01036{height:876.666667pt;}
.h0_c01036{height:876.933333pt;}
.w1_c01036{width:93.222667pt;}
.w0_c01036{width:597.333333pt;}
.x0_c01036{left:0.000000pt;}
.x5_c01036{left:42.266667pt;}
.x4_c01036{left:43.733333pt;}
.x3_c01036{left:44.933333pt;}
.x2_c01036{left:45.866667pt;}
.x1_c01036{left:140.933333pt;}
.x7_c01036{left:255.834880pt;}
.x6_c01036{left:326.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_c01037 {
    display:none;
  }
  .loading-indicator_c01037.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01037 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01037 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01037" -> "#page-container .classname_c01037")
 */
.pf_c01037 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01037 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01037.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01037 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01037 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01037 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01037 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01037 {overflow:visible;}
  }
}
.c_c01037 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01037 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01037:after { /* webkit #35443 */
  content: '';
}
.t_c01037:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01037 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01037 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01037 { /* info for Javascript */
  display:none;
}
.l_c01037 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01037 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01037 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01037:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01037{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01037;src:url('chunks/assets/font_901b315012fa5d5027596a3d.woff2')format("woff");}.ff1_c01037{font-family:ff1_c01037;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01037;src:url('chunks/assets/font_fd5a657fe4f609fa8065dff6.woff2')format("woff");}.ff2_c01037{font-family:ff2_c01037;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01037;src:url('chunks/assets/font_6ea7be4dae6960b99debf6bf.woff2')format("woff");}.ff3_c01037{font-family:ff3_c01037;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01037;src:url('chunks/assets/font_0b801450997043491050819f.woff2')format("woff");}.ff4_c01037{font-family:ff4_c01037;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01037;src:url('chunks/assets/font_fdc1215318b3ab48d583ae6f.woff2')format("woff");}.ff5_c01037{font-family:ff5_c01037;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01037;src:url('chunks/assets/font_13ba25df88ce274ea8e055be.woff2')format("woff");}.ff6_c01037{font-family:ff6_c01037;line-height:1.311035;font-style:normal;font-weight: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_c01037;src:url('chunks/assets/font_bc8138def8df8c65a4aa645e.woff2')format("woff");}.ff7_c01037{font-family:ff7_c01037;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c01037;src:url('chunks/assets/font_d75b78f6de5c5b085c9c2e90.woff2')format("woff");}.ff8_c01037{font-family:ff8_c01037;line-height:1.284180;font-style:normal;font-weight: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_c01037;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff9_c01037{font-family:ff9_c01037;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01037{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01037{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.v0_c01037{vertical-align:0.000000px;}
.v1_c01037{vertical-align:162.600000px;}
.ls6_c01037{letter-spacing:-6.000000px;}
.ls5_c01037{letter-spacing:0.000000px;}
.ls4_c01037{letter-spacing:1.418400px;}
.ls1_c01037{letter-spacing:1.500000px;}
.ls0_c01037{letter-spacing:4.200000px;}
.ls3_c01037{letter-spacing:9.549000px;}
.ls2_c01037{letter-spacing:135.402000px;}
.sc__c01037{text-shadow:none;}
.sc0_c01037{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01037{-webkit-text-stroke:0px transparent;}
.sc0_c01037{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c01037{word-spacing:-36.696000px;}
.ws1_c01037{word-spacing:-17.352000px;}
.ws2_c01037{word-spacing:-9.093600px;}
.ws0_c01037{word-spacing:-5.784000px;}
.ws5_c01037{word-spacing:0.000000px;}
.ws3_c01037{word-spacing:0.300000px;}
._19_c01037{margin-left:-23.496000px;}
._12_c01037{margin-left:-17.028000px;}
._18_c01037{margin-left:-15.456000px;}
._1c_c01037{margin-left:-12.240000px;}
._a_c01037{margin-left:-11.052000px;}
._b_c01037{margin-left:-8.991000px;}
._9_c01037{margin-left:-7.200000px;}
._15_c01037{margin-left:-6.006000px;}
._8_c01037{margin-left:-4.860000px;}
._d_c01037{margin-left:-3.699000px;}
._0_c01037{margin-left:-1.872000px;}
._5_c01037{width:1.458000px;}
._4_c01037{width:3.159000px;}
._6_c01037{width:4.293000px;}
._1_c01037{width:5.346000px;}
._2_c01037{width:6.399000px;}
._7_c01037{width:8.100000px;}
._3_c01037{width:9.558000px;}
._f_c01037{width:10.629000px;}
._11_c01037{width:11.664000px;}
._c_c01037{width:12.879000px;}
._e_c01037{width:13.914000px;}
._10_c01037{width:15.795000px;}
._16_c01037{width:16.893000px;}
._14_c01037{width:18.222000px;}
._21_c01037{width:21.303000px;}
._1b_c01037{width:29.079000px;}
._1f_c01037{width:33.939000px;}
._20_c01037{width:38.070000px;}
._1e_c01037{width:42.903000px;}
._1d_c01037{width:103.908000px;}
._1a_c01037{width:193.671000px;}
._17_c01037{width:208.710000px;}
._13_c01037{width:365.733000px;}
.fc2_c01037{color:transparent;}
.fc1_c01037{color:rgb(128,128,128);}
.fc0_c01037{color:rgb(0,0,0);}
.fs0_c01037{font-size:24.000000px;}
.fs7_c01037{font-size:45.600000px;}
.fs9_c01037{font-size:48.000000px;}
.fs3_c01037{font-size:57.000000px;}
.fs5_c01037{font-size:60.000000px;}
.fs8_c01037{font-size:66.000000px;}
.fs6_c01037{font-size:72.000000px;}
.fs2_c01037{font-size:78.000000px;}
.fs1_c01037{font-size:81.000000px;}
.fs4_c01037{font-size:261.000000px;}
.y0_c01037{bottom:0.000000px;}
.y24_c01037{bottom:3.105000px;}
.y23_c01037{bottom:7.228363px;}
.y22_c01037{bottom:52.950000px;}
.y21_c01037{bottom:75.300000px;}
.y20_c01037{bottom:102.000000px;}
.y1f_c01037{bottom:126.300000px;}
.y1e_c01037{bottom:151.500000px;}
.y1d_c01037{bottom:175.800000px;}
.y1c_c01037{bottom:201.150000px;}
.y1b_c01037{bottom:225.750000px;}
.y1a_c01037{bottom:251.400000px;}
.y19_c01037{bottom:274.800000px;}
.y18_c01037{bottom:298.800000px;}
.y17_c01037{bottom:324.000000px;}
.y16_c01037{bottom:348.000000px;}
.y15_c01037{bottom:372.300000px;}
.y14_c01037{bottom:396.900000px;}
.y13_c01037{bottom:421.500000px;}
.y12_c01037{bottom:445.500000px;}
.y10_c01037{bottom:452.850000px;}
.y11_c01037{bottom:469.500000px;}
.yf_c01037{bottom:540.450000px;}
.ye_c01037{bottom:589.050000px;}
.yd_c01037{bottom:613.200000px;}
.yc_c01037{bottom:637.500000px;}
.yb_c01037{bottom:661.950000px;}
.ya_c01037{bottom:685.800000px;}
.y9_c01037{bottom:710.100000px;}
.y8_c01037{bottom:734.400000px;}
.y7_c01037{bottom:758.100000px;}
.y6_c01037{bottom:782.550000px;}
.y5_c01037{bottom:806.250000px;}
.y4_c01037{bottom:831.000000px;}
.y3_c01037{bottom:855.000000px;}
.y2_c01037{bottom:878.850000px;}
.y1_c01037{bottom:901.200000px;}
.h9_c01037{height:13.200074px;}
.h2_c01037{height:30.386719px;}
.ha_c01037{height:43.804688px;}
.h8_c01037{height:64.743164px;}
.h3_c01037{height:79.497070px;}
.h7_c01037{height:84.269531px;}
.h6_c01037{height:91.160156px;}
.h4_c01037{height:98.756836px;}
.h5_c01037{height:271.705078px;}
.h1_c01037{height:977.250000px;}
.h0_c01037{height:977.400000px;}
.w1_c01037{width:104.875500px;}
.w0_c01037{width:661.500000px;}
.x0_c01037{left:0.000000px;}
.xb_c01037{left:51.600000px;}
.x7_c01037{left:62.400000px;}
.xe_c01037{left:86.100000px;}
.x10_c01037{left:116.400000px;}
.x3_c01037{left:133.350000px;}
.x4_c01037{left:136.050000px;}
.x5_c01037{left:138.000000px;}
.x6_c01037{left:139.050000px;}
.xa_c01037{left:140.100000px;}
.x8_c01037{left:142.050000px;}
.xf_c01037{left:143.550000px;}
.xd_c01037{left:144.900000px;}
.x9_c01037{left:175.050000px;}
.x12_c01037{left:282.564240px;}
.xc_c01037{left:338.250000px;}
.x1_c01037{left:552.450000px;}
.x2_c01037{left:589.650000px;}
.x11_c01037{left:611.850000px;}
@media print{
.v0_c01037{vertical-align:0.000000pt;}
.v1_c01037{vertical-align:144.533333pt;}
.ls6_c01037{letter-spacing:-5.333333pt;}
.ls5_c01037{letter-spacing:0.000000pt;}
.ls4_c01037{letter-spacing:1.260800pt;}
.ls1_c01037{letter-spacing:1.333333pt;}
.ls0_c01037{letter-spacing:3.733333pt;}
.ls3_c01037{letter-spacing:8.488000pt;}
.ls2_c01037{letter-spacing:120.357333pt;}
.ws4_c01037{word-spacing:-32.618667pt;}
.ws1_c01037{word-spacing:-15.424000pt;}
.ws2_c01037{word-spacing:-8.083200pt;}
.ws0_c01037{word-spacing:-5.141333pt;}
.ws5_c01037{word-spacing:0.000000pt;}
.ws3_c01037{word-spacing:0.266667pt;}
._19_c01037{margin-left:-20.885333pt;}
._12_c01037{margin-left:-15.136000pt;}
._18_c01037{margin-left:-13.738667pt;}
._1c_c01037{margin-left:-10.880000pt;}
._a_c01037{margin-left:-9.824000pt;}
._b_c01037{margin-left:-7.992000pt;}
._9_c01037{margin-left:-6.400000pt;}
._15_c01037{margin-left:-5.338667pt;}
._8_c01037{margin-left:-4.320000pt;}
._d_c01037{margin-left:-3.288000pt;}
._0_c01037{margin-left:-1.664000pt;}
._5_c01037{width:1.296000pt;}
._4_c01037{width:2.808000pt;}
._6_c01037{width:3.816000pt;}
._1_c01037{width:4.752000pt;}
._2_c01037{width:5.688000pt;}
._7_c01037{width:7.200000pt;}
._3_c01037{width:8.496000pt;}
._f_c01037{width:9.448000pt;}
._11_c01037{width:10.368000pt;}
._c_c01037{width:11.448000pt;}
._e_c01037{width:12.368000pt;}
._10_c01037{width:14.040000pt;}
._16_c01037{width:15.016000pt;}
._14_c01037{width:16.197333pt;}
._21_c01037{width:18.936000pt;}
._1b_c01037{width:25.848000pt;}
._1f_c01037{width:30.168000pt;}
._20_c01037{width:33.840000pt;}
._1e_c01037{width:38.136000pt;}
._1d_c01037{width:92.362667pt;}
._1a_c01037{width:172.152000pt;}
._17_c01037{width:185.520000pt;}
._13_c01037{width:325.096000pt;}
.fs0_c01037{font-size:21.333333pt;}
.fs7_c01037{font-size:40.533333pt;}
.fs9_c01037{font-size:42.666667pt;}
.fs3_c01037{font-size:50.666667pt;}
.fs5_c01037{font-size:53.333333pt;}
.fs8_c01037{font-size:58.666667pt;}
.fs6_c01037{font-size:64.000000pt;}
.fs2_c01037{font-size:69.333333pt;}
.fs1_c01037{font-size:72.000000pt;}
.fs4_c01037{font-size:232.000000pt;}
.y0_c01037{bottom:0.000000pt;}
.y24_c01037{bottom:2.760000pt;}
.y23_c01037{bottom:6.425212pt;}
.y22_c01037{bottom:47.066667pt;}
.y21_c01037{bottom:66.933333pt;}
.y20_c01037{bottom:90.666667pt;}
.y1f_c01037{bottom:112.266667pt;}
.y1e_c01037{bottom:134.666667pt;}
.y1d_c01037{bottom:156.266667pt;}
.y1c_c01037{bottom:178.800000pt;}
.y1b_c01037{bottom:200.666667pt;}
.y1a_c01037{bottom:223.466667pt;}
.y19_c01037{bottom:244.266667pt;}
.y18_c01037{bottom:265.600000pt;}
.y17_c01037{bottom:288.000000pt;}
.y16_c01037{bottom:309.333333pt;}
.y15_c01037{bottom:330.933333pt;}
.y14_c01037{bottom:352.800000pt;}
.y13_c01037{bottom:374.666667pt;}
.y12_c01037{bottom:396.000000pt;}
.y10_c01037{bottom:402.533333pt;}
.y11_c01037{bottom:417.333333pt;}
.yf_c01037{bottom:480.400000pt;}
.ye_c01037{bottom:523.600000pt;}
.yd_c01037{bottom:545.066667pt;}
.yc_c01037{bottom:566.666667pt;}
.yb_c01037{bottom:588.400000pt;}
.ya_c01037{bottom:609.600000pt;}
.y9_c01037{bottom:631.200000pt;}
.y8_c01037{bottom:652.800000pt;}
.y7_c01037{bottom:673.866667pt;}
.y6_c01037{bottom:695.600000pt;}
.y5_c01037{bottom:716.666667pt;}
.y4_c01037{bottom:738.666667pt;}
.y3_c01037{bottom:760.000000pt;}
.y2_c01037{bottom:781.200000pt;}
.y1_c01037{bottom:801.066667pt;}
.h9_c01037{height:11.733399pt;}
.h2_c01037{height:27.010417pt;}
.ha_c01037{height:38.937500pt;}
.h8_c01037{height:57.549479pt;}
.h3_c01037{height:70.664062pt;}
.h7_c01037{height:74.906250pt;}
.h6_c01037{height:81.031250pt;}
.h4_c01037{height:87.783854pt;}
.h5_c01037{height:241.515625pt;}
.h1_c01037{height:868.666667pt;}
.h0_c01037{height:868.800000pt;}
.w1_c01037{width:93.222667pt;}
.w0_c01037{width:588.000000pt;}
.x0_c01037{left:0.000000pt;}
.xb_c01037{left:45.866667pt;}
.x7_c01037{left:55.466667pt;}
.xe_c01037{left:76.533333pt;}
.x10_c01037{left:103.466667pt;}
.x3_c01037{left:118.533333pt;}
.x4_c01037{left:120.933333pt;}
.x5_c01037{left:122.666667pt;}
.x6_c01037{left:123.600000pt;}
.xa_c01037{left:124.533333pt;}
.x8_c01037{left:126.266667pt;}
.xf_c01037{left:127.600000pt;}
.xd_c01037{left:128.800000pt;}
.x9_c01037{left:155.600000pt;}
.x12_c01037{left:251.168213pt;}
.xc_c01037{left:300.666667pt;}
.x1_c01037{left:491.066667pt;}
.x2_c01037{left:524.133333pt;}
.x11_c01037{left:543.866667pt;}
}





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

.ir_c01038:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01038{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01038;src:url('chunks/assets/font_565d6f02ec0fdde8fe9d1ee4.woff2')format("woff");}.ff1_c01038{font-family:ff1_c01038;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01038;src:url('chunks/assets/font_0dbe96aaf689886a4b82b129.woff2')format("woff");}.ff2_c01038{font-family:ff2_c01038;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01038;src:url('chunks/assets/font_9fb3e719ac9648526dffb89b.woff2')format("woff");}.ff3_c01038{font-family:ff3_c01038;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01038;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff4_c01038{font-family:ff4_c01038;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01038;src:url('chunks/assets/font_338ff2df3310695fa90b9360.woff2')format("woff");}.ff5_c01038{font-family:ff5_c01038;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01038;src:url('chunks/assets/font_c1bd254bea908bfb9108c1e3.woff2')format("woff");}.ff6_c01038{font-family:ff6_c01038;line-height:1.311035;font-style:normal;font-weight: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_c01038;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c01038{font-family:ff7_c01038;line-height:1.219238;font-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_c01038{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m0_c01038{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01038{vertical-align:0.000000px;}
.ls2_c01038{letter-spacing:0.000000px;}
.ls1_c01038{letter-spacing:3.000000px;}
.ls0_c01038{letter-spacing:117.600000px;}
.sc__c01038{text-shadow:none;}
.sc0_c01038{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01038{-webkit-text-stroke:0px transparent;}
.sc0_c01038{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01038{word-spacing:-60.048000px;}
.ws0_c01038{word-spacing:-19.065600px;}
.ws1_c01038{word-spacing:-17.352000px;}
.ws3_c01038{word-spacing:0.000000px;}
._4_c01038{margin-left:-33.150000px;}
._24_c01038{margin-left:-26.125800px;}
._1e_c01038{margin-left:-22.225200px;}
._22_c01038{margin-left:-17.273400px;}
._1a_c01038{margin-left:-13.911600px;}
._11_c01038{margin-left:-12.396000px;}
._13_c01038{margin-left:-11.376000px;}
._d_c01038{margin-left:-9.388800px;}
._a_c01038{margin-left:-8.280000px;}
._e_c01038{margin-left:-6.734400px;}
._b_c01038{margin-left:-5.256000px;}
._8_c01038{margin-left:-4.176000px;}
._9_c01038{margin-left:-3.096000px;}
._7_c01038{margin-left:-1.728000px;}
._2_c01038{width:1.326000px;}
._1_c01038{width:2.346000px;}
._0_c01038{width:3.672000px;}
._12_c01038{width:5.586000px;}
._15_c01038{width:6.945600px;}
._17_c01038{width:8.771400px;}
._14_c01038{width:10.085400px;}
._f_c01038{width:11.736000px;}
._16_c01038{width:12.759000px;}
._5_c01038{width:14.688000px;}
._c_c01038{width:15.744000px;}
._25_c01038{width:16.849800px;}
._1d_c01038{width:17.963400px;}
._18_c01038{width:22.277400px;}
._10_c01038{width:23.472000px;}
._20_c01038{width:24.983400px;}
._1f_c01038{width:29.793600px;}
._19_c01038{width:35.219400px;}
._6_c01038{width:36.720000px;}
._21_c01038{width:42.940200px;}
._26_c01038{width:55.948800px;}
._23_c01038{width:75.648000px;}
._1b_c01038{width:87.390000px;}
._3_c01038{width:159.630000px;}
._1c_c01038{width:325.909200px;}
.fc2_c01038{color:transparent;}
.fc1_c01038{color:rgb(128,128,128);}
.fc0_c01038{color:rgb(0,0,0);}
.fs6_c01038{font-size:48.000000px;}
.fs2_c01038{font-size:57.600000px;}
.fs4_c01038{font-size:66.000000px;}
.fs1_c01038{font-size:72.000000px;}
.fs3_c01038{font-size:81.000000px;}
.fs0_c01038{font-size:102.000000px;}
.fs5_c01038{font-size:108.000000px;}
.y0_c01038{bottom:0.000000px;}
.y26_c01038{bottom:3.105000px;}
.y25_c01038{bottom:7.228369px;}
.y24_c01038{bottom:51.570000px;}
.y23_c01038{bottom:76.620000px;}
.y22_c01038{bottom:102.270000px;}
.y21_c01038{bottom:126.570000px;}
.y20_c01038{bottom:151.170000px;}
.y1f_c01038{bottom:175.770000px;}
.y1e_c01038{bottom:200.070000px;}
.y1d_c01038{bottom:224.820000px;}
.y1c_c01038{bottom:249.120000px;}
.y1b_c01038{bottom:272.970000px;}
.y1a_c01038{bottom:298.020000px;}
.y19_c01038{bottom:321.870000px;}
.y18_c01038{bottom:346.170000px;}
.y17_c01038{bottom:370.470000px;}
.y16_c01038{bottom:394.770000px;}
.y15_c01038{bottom:419.070000px;}
.y14_c01038{bottom:443.070000px;}
.y13_c01038{bottom:467.670000px;}
.y12_c01038{bottom:490.770000px;}
.y11_c01038{bottom:515.970000px;}
.y10_c01038{bottom:539.970000px;}
.yf_c01038{bottom:564.270000px;}
.ye_c01038{bottom:588.270000px;}
.yd_c01038{bottom:612.270000px;}
.yc_c01038{bottom:636.120000px;}
.yb_c01038{bottom:661.170000px;}
.ya_c01038{bottom:684.420000px;}
.y9_c01038{bottom:708.720000px;}
.y8_c01038{bottom:732.720000px;}
.y7_c01038{bottom:757.320000px;}
.y6_c01038{bottom:781.620000px;}
.y5_c01038{bottom:805.920000px;}
.y4_c01038{bottom:829.620000px;}
.y3_c01038{bottom:853.920000px;}
.y2_c01038{bottom:878.220000px;}
.y1_c01038{bottom:913.620000px;}
.h7_c01038{height:13.200073px;}
.h8_c01038{height:43.804688px;}
.h5_c01038{height:79.497070px;}
.h4_c01038{height:84.269531px;}
.h3_c01038{height:91.160156px;}
.h2_c01038{height:100.057617px;}
.h6_c01038{height:108.843750px;}
.h1_c01038{height:986.250000px;}
.h0_c01038{height:986.550000px;}
.w1_c01038{width:104.875500px;}
.w0_c01038{width:672.000000px;}
.x0_c01038{left:0.000000px;}
.x2_c01038{left:58.650000px;}
.x3_c01038{left:60.150000px;}
.x4_c01038{left:62.400000px;}
.x5_c01038{left:63.750000px;}
.x6_c01038{left:65.850000px;}
.x7_c01038{left:67.500000px;}
.x9_c01038{left:68.850000px;}
.xa_c01038{left:70.950000px;}
.x8_c01038{left:90.900000px;}
.x1_c01038{left:163.050000px;}
.xc_c01038{left:287.814240px;}
.xb_c01038{left:542.700000px;}
@media print{
.v0_c01038{vertical-align:0.000000pt;}
.ls2_c01038{letter-spacing:0.000000pt;}
.ls1_c01038{letter-spacing:2.666667pt;}
.ls0_c01038{letter-spacing:104.533333pt;}
.ws2_c01038{word-spacing:-53.376000pt;}
.ws0_c01038{word-spacing:-16.947200pt;}
.ws1_c01038{word-spacing:-15.424000pt;}
.ws3_c01038{word-spacing:0.000000pt;}
._4_c01038{margin-left:-29.466667pt;}
._24_c01038{margin-left:-23.222933pt;}
._1e_c01038{margin-left:-19.755733pt;}
._22_c01038{margin-left:-15.354133pt;}
._1a_c01038{margin-left:-12.365867pt;}
._11_c01038{margin-left:-11.018667pt;}
._13_c01038{margin-left:-10.112000pt;}
._d_c01038{margin-left:-8.345600pt;}
._a_c01038{margin-left:-7.360000pt;}
._e_c01038{margin-left:-5.986133pt;}
._b_c01038{margin-left:-4.672000pt;}
._8_c01038{margin-left:-3.712000pt;}
._9_c01038{margin-left:-2.752000pt;}
._7_c01038{margin-left:-1.536000pt;}
._2_c01038{width:1.178667pt;}
._1_c01038{width:2.085333pt;}
._0_c01038{width:3.264000pt;}
._12_c01038{width:4.965333pt;}
._15_c01038{width:6.173867pt;}
._17_c01038{width:7.796800pt;}
._14_c01038{width:8.964800pt;}
._f_c01038{width:10.432000pt;}
._16_c01038{width:11.341333pt;}
._5_c01038{width:13.056000pt;}
._c_c01038{width:13.994667pt;}
._25_c01038{width:14.977600pt;}
._1d_c01038{width:15.967467pt;}
._18_c01038{width:19.802133pt;}
._10_c01038{width:20.864000pt;}
._20_c01038{width:22.207467pt;}
._1f_c01038{width:26.483200pt;}
._19_c01038{width:31.306133pt;}
._6_c01038{width:32.640000pt;}
._21_c01038{width:38.169067pt;}
._26_c01038{width:49.732267pt;}
._23_c01038{width:67.242667pt;}
._1b_c01038{width:77.680000pt;}
._3_c01038{width:141.893333pt;}
._1c_c01038{width:289.697067pt;}
.fs6_c01038{font-size:42.666667pt;}
.fs2_c01038{font-size:51.200000pt;}
.fs4_c01038{font-size:58.666667pt;}
.fs1_c01038{font-size:64.000000pt;}
.fs3_c01038{font-size:72.000000pt;}
.fs0_c01038{font-size:90.666667pt;}
.fs5_c01038{font-size:96.000000pt;}
.y0_c01038{bottom:0.000000pt;}
.y26_c01038{bottom:2.760000pt;}
.y25_c01038{bottom:6.425217pt;}
.y24_c01038{bottom:45.840000pt;}
.y23_c01038{bottom:68.106667pt;}
.y22_c01038{bottom:90.906667pt;}
.y21_c01038{bottom:112.506667pt;}
.y20_c01038{bottom:134.373333pt;}
.y1f_c01038{bottom:156.240000pt;}
.y1e_c01038{bottom:177.840000pt;}
.y1d_c01038{bottom:199.840000pt;}
.y1c_c01038{bottom:221.440000pt;}
.y1b_c01038{bottom:242.640000pt;}
.y1a_c01038{bottom:264.906667pt;}
.y19_c01038{bottom:286.106667pt;}
.y18_c01038{bottom:307.706667pt;}
.y17_c01038{bottom:329.306667pt;}
.y16_c01038{bottom:350.906667pt;}
.y15_c01038{bottom:372.506667pt;}
.y14_c01038{bottom:393.840000pt;}
.y13_c01038{bottom:415.706667pt;}
.y12_c01038{bottom:436.240000pt;}
.y11_c01038{bottom:458.640000pt;}
.y10_c01038{bottom:479.973333pt;}
.yf_c01038{bottom:501.573333pt;}
.ye_c01038{bottom:522.906667pt;}
.yd_c01038{bottom:544.240000pt;}
.yc_c01038{bottom:565.440000pt;}
.yb_c01038{bottom:587.706667pt;}
.ya_c01038{bottom:608.373333pt;}
.y9_c01038{bottom:629.973333pt;}
.y8_c01038{bottom:651.306667pt;}
.y7_c01038{bottom:673.173333pt;}
.y6_c01038{bottom:694.773333pt;}
.y5_c01038{bottom:716.373333pt;}
.y4_c01038{bottom:737.440000pt;}
.y3_c01038{bottom:759.040000pt;}
.y2_c01038{bottom:780.640000pt;}
.y1_c01038{bottom:812.106667pt;}
.h7_c01038{height:11.733399pt;}
.h8_c01038{height:38.937500pt;}
.h5_c01038{height:70.664062pt;}
.h4_c01038{height:74.906250pt;}
.h3_c01038{height:81.031250pt;}
.h2_c01038{height:88.940104pt;}
.h6_c01038{height:96.750000pt;}
.h1_c01038{height:876.666667pt;}
.h0_c01038{height:876.933333pt;}
.w1_c01038{width:93.222667pt;}
.w0_c01038{width:597.333333pt;}
.x0_c01038{left:0.000000pt;}
.x2_c01038{left:52.133333pt;}
.x3_c01038{left:53.466667pt;}
.x4_c01038{left:55.466667pt;}
.x5_c01038{left:56.666667pt;}
.x6_c01038{left:58.533333pt;}
.x7_c01038{left:60.000000pt;}
.x9_c01038{left:61.200000pt;}
.xa_c01038{left:63.066667pt;}
.x8_c01038{left:80.800000pt;}
.x1_c01038{left:144.933333pt;}
.xc_c01038{left:255.834880pt;}
.xb_c01038{left:482.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_c01039 {
    display:none;
  }
  .loading-indicator_c01039.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01039 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01039 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01039" -> "#page-container .classname_c01039")
 */
.pf_c01039 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01039 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01039.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01039 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01039 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01039 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01039 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01039 {overflow:visible;}
  }
}
.c_c01039 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01039 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01039:after { /* webkit #35443 */
  content: '';
}
.t_c01039:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01039 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01039 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01039 { /* info for Javascript */
  display:none;
}
.l_c01039 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01039 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01039 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01039:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01039{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01039;src:url('chunks/assets/font_a31d20bcc97c944fa637f6fa.woff2')format("woff");}.ff1_c01039{font-family:ff1_c01039;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01039;src:url('chunks/assets/font_d272e28b5380867596613280.woff2')format("woff");}.ff2_c01039{font-family:ff2_c01039;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01039;src:url('chunks/assets/font_c302dbefc7ae8cf56df7a833.woff2')format("woff");}.ff3_c01039{font-family:ff3_c01039;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01039;src:url('chunks/assets/font_892397eb2bdc02620d7b03e2.woff2')format("woff");}.ff4_c01039{font-family:ff4_c01039;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01039;src:url('chunks/assets/font_ec6d3ffabf35a32b7ec23220.woff2')format("woff");}.ff5_c01039{font-family:ff5_c01039;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01039;src:url('chunks/assets/font_696ba19bf75b7fe2bb4a2377.woff2')format("woff");}.ff6_c01039{font-family:ff6_c01039;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01039;src:url('chunks/assets/font_a1a751d7ff0d12e6f0187176.woff2')format("woff");}.ff7_c01039{font-family:ff7_c01039;line-height:1.284180;font-style:normal;font-weight: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_c01039;src:url('chunks/assets/font_32bb08d69684437112caf6f8.woff2')format("woff");}.ff8_c01039{font-family:ff8_c01039;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c01039;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff9_c01039{font-family:ff9_c01039;line-height:1.219238;font-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_c01039{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m0_c01039{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01039{vertical-align:0.000000px;}
.ls6_c01039{letter-spacing:-9.000000px;}
.ls7_c01039{letter-spacing:-6.000000px;}
.ls4_c01039{letter-spacing:-3.000000px;}
.ls5_c01039{letter-spacing:0.000000px;}
.ls3_c01039{letter-spacing:3.000000px;}
.ls0_c01039{letter-spacing:10.200000px;}
.ls1_c01039{letter-spacing:13.350000px;}
.ls2_c01039{letter-spacing:15.903000px;}
.sc__c01039{text-shadow:none;}
.sc0_c01039{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01039{-webkit-text-stroke:0px transparent;}
.sc0_c01039{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01039{word-spacing:-64.992000px;}
.ws4_c01039{word-spacing:-30.153000px;}
.ws2_c01039{word-spacing:-18.750000px;}
.ws6_c01039{word-spacing:-18.000000px;}
.ws1_c01039{word-spacing:-17.352000px;}
.ws5_c01039{word-spacing:-14.250000px;}
.ws3_c01039{word-spacing:-9.750000px;}
.ws7_c01039{word-spacing:0.000000px;}
._6_c01039{margin-left:-24.279000px;}
._2f_c01039{margin-left:-20.544000px;}
._30_c01039{margin-left:-18.780000px;}
._2b_c01039{margin-left:-16.488000px;}
._28_c01039{margin-left:-14.706000px;}
._22_c01039{margin-left:-13.530000px;}
._2a_c01039{margin-left:-12.330000px;}
._23_c01039{margin-left:-10.500000px;}
._20_c01039{margin-left:-9.390000px;}
._7_c01039{margin-left:-7.224000px;}
._21_c01039{margin-left:-5.685000px;}
._c_c01039{margin-left:-4.620000px;}
._1d_c01039{margin-left:-3.375000px;}
._d_c01039{margin-left:-2.310000px;}
._1e_c01039{margin-left:-1.065000px;}
._5_c01039{width:1.050000px;}
._4_c01039{width:2.205000px;}
._19_c01039{width:3.954000px;}
._11_c01039{width:5.757000px;}
._16_c01039{width:6.813000px;}
._12_c01039{width:8.109000px;}
._e_c01039{width:9.234000px;}
._17_c01039{width:10.659000px;}
._8_c01039{width:12.012000px;}
._18_c01039{width:13.110000px;}
._2e_c01039{width:14.301000px;}
._13_c01039{width:15.765000px;}
._10_c01039{width:17.613000px;}
._0_c01039{width:19.110000px;}
._15_c01039{width:21.090000px;}
._f_c01039{width:23.085000px;}
._1c_c01039{width:24.093000px;}
._1_c01039{width:26.040000px;}
._1a_c01039{width:27.246000px;}
._25_c01039{width:28.248000px;}
._24_c01039{width:29.685000px;}
._14_c01039{width:31.113000px;}
._2_c01039{width:32.970000px;}
._a_c01039{width:34.665000px;}
._2d_c01039{width:37.806000px;}
._1b_c01039{width:42.252000px;}
._26_c01039{width:44.910000px;}
._27_c01039{width:47.295000px;}
._9_c01039{width:51.408000px;}
._29_c01039{width:70.053000px;}
._b_c01039{width:197.505000px;}
._2c_c01039{width:198.759000px;}
._1f_c01039{width:264.561000px;}
._3_c01039{width:277.410000px;}
._31_c01039{width:852.012000px;}
.fc2_c01039{color:transparent;}
.fc1_c01039{color:rgb(128,128,128);}
.fc0_c01039{color:rgb(0,0,0);}
.fsa_c01039{font-size:36.000000px;}
.fsc_c01039{font-size:48.000000px;}
.fsb_c01039{font-size:51.000000px;}
.fs3_c01039{font-size:57.000000px;}
.fs5_c01039{font-size:66.000000px;}
.fs6_c01039{font-size:72.000000px;}
.fs4_c01039{font-size:75.000000px;}
.fs8_c01039{font-size:78.000000px;}
.fs7_c01039{font-size:81.000000px;}
.fs1_c01039{font-size:84.000000px;}
.fs2_c01039{font-size:96.000000px;}
.fs0_c01039{font-size:105.000000px;}
.fs9_c01039{font-size:108.000000px;}
.y0_c01039{bottom:0.000000px;}
.y22_c01039{bottom:3.105000px;}
.y21_c01039{bottom:7.228371px;}
.y20_c01039{bottom:52.065000px;}
.y1f_c01039{bottom:106.665000px;}
.y1e_c01039{bottom:136.665000px;}
.y1d_c01039{bottom:166.065000px;}
.y1c_c01039{bottom:221.115000px;}
.y1b_c01039{bottom:240.015000px;}
.y1a_c01039{bottom:266.715000px;}
.y19_c01039{bottom:291.615000px;}
.y18_c01039{bottom:316.215000px;}
.y17_c01039{bottom:339.915000px;}
.y16_c01039{bottom:387.915000px;}
.y15_c01039{bottom:413.115000px;}
.y14_c01039{bottom:437.265000px;}
.y13_c01039{bottom:461.115000px;}
.y12_c01039{bottom:484.965000px;}
.y11_c01039{bottom:508.965000px;}
.y10_c01039{bottom:533.265000px;}
.yf_c01039{bottom:556.665000px;}
.ye_c01039{bottom:580.815000px;}
.yd_c01039{bottom:605.115000px;}
.yc_c01039{bottom:629.415000px;}
.yb_c01039{bottom:653.715000px;}
.ya_c01039{bottom:677.715000px;}
.y9_c01039{bottom:702.015000px;}
.y8_c01039{bottom:726.765000px;}
.y7_c01039{bottom:749.715000px;}
.y6_c01039{bottom:772.665000px;}
.y5_c01039{bottom:797.865000px;}
.y4_c01039{bottom:822.165000px;}
.y3_c01039{bottom:846.165000px;}
.y2_c01039{bottom:870.165000px;}
.y1_c01039{bottom:903.615000px;}
.hf_c01039{height:13.200074px;}
.hb_c01039{height:35.314453px;}
.h10_c01039{height:43.804688px;}
.h3_c01039{height:57.445312px;}
.h7_c01039{height:73.571777px;}
.h6_c01039{height:73.608398px;}
.hc_c01039{height:82.400391px;}
.h5_c01039{height:82.441406px;}
.h4_c01039{height:84.269531px;}
.he_c01039{height:84.656250px;}
.ha_c01039{height:98.756836px;}
.h8_c01039{height:99.356836px;}
.h9_c01039{height:108.843750px;}
.h2_c01039{height:121.546875px;}
.hd_c01039{height:122.893066px;}
.h1_c01039{height:986.250000px;}
.h0_c01039{height:986.325000px;}
.w2_c01039{width:104.875500px;}
.w0_c01039{width:667.425000px;}
.w1_c01039{width:667.500000px;}
.x0_c01039{left:0.000000px;}
.x3_c01039{left:17.850000px;}
.x7_c01039{left:104.700000px;}
.x6_c01039{left:106.050000px;}
.x5_c01039{left:108.300000px;}
.x2_c01039{left:109.650000px;}
.x1_c01039{left:111.750000px;}
.x8_c01039{left:115.050000px;}
.xe_c01039{left:120.750000px;}
.x4_c01039{left:133.200000px;}
.x9_c01039{left:192.150000px;}
.xa_c01039{left:261.600000px;}
.xc_c01039{left:280.500000px;}
.xb_c01039{left:285.150000px;}
.xf_c01039{left:290.250000px;}
.x10_c01039{left:426.300000px;}
.xd_c01039{left:523.500000px;}
.x11_c01039{left:562.350000px;}
@media print{
.v0_c01039{vertical-align:0.000000pt;}
.ls6_c01039{letter-spacing:-8.000000pt;}
.ls7_c01039{letter-spacing:-5.333333pt;}
.ls4_c01039{letter-spacing:-2.666667pt;}
.ls5_c01039{letter-spacing:0.000000pt;}
.ls3_c01039{letter-spacing:2.666667pt;}
.ls0_c01039{letter-spacing:9.066667pt;}
.ls1_c01039{letter-spacing:11.866667pt;}
.ls2_c01039{letter-spacing:14.136000pt;}
.ws0_c01039{word-spacing:-57.770667pt;}
.ws4_c01039{word-spacing:-26.802667pt;}
.ws2_c01039{word-spacing:-16.666667pt;}
.ws6_c01039{word-spacing:-16.000000pt;}
.ws1_c01039{word-spacing:-15.424000pt;}
.ws5_c01039{word-spacing:-12.666667pt;}
.ws3_c01039{word-spacing:-8.666667pt;}
.ws7_c01039{word-spacing:0.000000pt;}
._6_c01039{margin-left:-21.581333pt;}
._2f_c01039{margin-left:-18.261333pt;}
._30_c01039{margin-left:-16.693333pt;}
._2b_c01039{margin-left:-14.656000pt;}
._28_c01039{margin-left:-13.072000pt;}
._22_c01039{margin-left:-12.026667pt;}
._2a_c01039{margin-left:-10.960000pt;}
._23_c01039{margin-left:-9.333333pt;}
._20_c01039{margin-left:-8.346667pt;}
._7_c01039{margin-left:-6.421333pt;}
._21_c01039{margin-left:-5.053333pt;}
._c_c01039{margin-left:-4.106667pt;}
._1d_c01039{margin-left:-3.000000pt;}
._d_c01039{margin-left:-2.053333pt;}
._1e_c01039{margin-left:-0.946667pt;}
._5_c01039{width:0.933333pt;}
._4_c01039{width:1.960000pt;}
._19_c01039{width:3.514667pt;}
._11_c01039{width:5.117333pt;}
._16_c01039{width:6.056000pt;}
._12_c01039{width:7.208000pt;}
._e_c01039{width:8.208000pt;}
._17_c01039{width:9.474667pt;}
._8_c01039{width:10.677333pt;}
._18_c01039{width:11.653333pt;}
._2e_c01039{width:12.712000pt;}
._13_c01039{width:14.013333pt;}
._10_c01039{width:15.656000pt;}
._0_c01039{width:16.986667pt;}
._15_c01039{width:18.746667pt;}
._f_c01039{width:20.520000pt;}
._1c_c01039{width:21.416000pt;}
._1_c01039{width:23.146667pt;}
._1a_c01039{width:24.218667pt;}
._25_c01039{width:25.109333pt;}
._24_c01039{width:26.386667pt;}
._14_c01039{width:27.656000pt;}
._2_c01039{width:29.306667pt;}
._a_c01039{width:30.813333pt;}
._2d_c01039{width:33.605333pt;}
._1b_c01039{width:37.557333pt;}
._26_c01039{width:39.920000pt;}
._27_c01039{width:42.040000pt;}
._9_c01039{width:45.696000pt;}
._29_c01039{width:62.269333pt;}
._b_c01039{width:175.560000pt;}
._2c_c01039{width:176.674667pt;}
._1f_c01039{width:235.165333pt;}
._3_c01039{width:246.586667pt;}
._31_c01039{width:757.344000pt;}
.fsa_c01039{font-size:32.000000pt;}
.fsc_c01039{font-size:42.666667pt;}
.fsb_c01039{font-size:45.333333pt;}
.fs3_c01039{font-size:50.666667pt;}
.fs5_c01039{font-size:58.666667pt;}
.fs6_c01039{font-size:64.000000pt;}
.fs4_c01039{font-size:66.666667pt;}
.fs8_c01039{font-size:69.333333pt;}
.fs7_c01039{font-size:72.000000pt;}
.fs1_c01039{font-size:74.666667pt;}
.fs2_c01039{font-size:85.333333pt;}
.fs0_c01039{font-size:93.333333pt;}
.fs9_c01039{font-size:96.000000pt;}
.y0_c01039{bottom:0.000000pt;}
.y22_c01039{bottom:2.760000pt;}
.y21_c01039{bottom:6.425219pt;}
.y20_c01039{bottom:46.280000pt;}
.y1f_c01039{bottom:94.813333pt;}
.y1e_c01039{bottom:121.480000pt;}
.y1d_c01039{bottom:147.613333pt;}
.y1c_c01039{bottom:196.546667pt;}
.y1b_c01039{bottom:213.346667pt;}
.y1a_c01039{bottom:237.080000pt;}
.y19_c01039{bottom:259.213333pt;}
.y18_c01039{bottom:281.080000pt;}
.y17_c01039{bottom:302.146667pt;}
.y16_c01039{bottom:344.813333pt;}
.y15_c01039{bottom:367.213333pt;}
.y14_c01039{bottom:388.680000pt;}
.y13_c01039{bottom:409.880000pt;}
.y12_c01039{bottom:431.080000pt;}
.y11_c01039{bottom:452.413333pt;}
.y10_c01039{bottom:474.013333pt;}
.yf_c01039{bottom:494.813333pt;}
.ye_c01039{bottom:516.280000pt;}
.yd_c01039{bottom:537.880000pt;}
.yc_c01039{bottom:559.480000pt;}
.yb_c01039{bottom:581.080000pt;}
.ya_c01039{bottom:602.413333pt;}
.y9_c01039{bottom:624.013333pt;}
.y8_c01039{bottom:646.013333pt;}
.y7_c01039{bottom:666.413333pt;}
.y6_c01039{bottom:686.813333pt;}
.y5_c01039{bottom:709.213333pt;}
.y4_c01039{bottom:730.813333pt;}
.y3_c01039{bottom:752.146667pt;}
.y2_c01039{bottom:773.480000pt;}
.y1_c01039{bottom:803.213333pt;}
.hf_c01039{height:11.733399pt;}
.hb_c01039{height:31.390625pt;}
.h10_c01039{height:38.937500pt;}
.h3_c01039{height:51.062500pt;}
.h7_c01039{height:65.397135pt;}
.h6_c01039{height:65.429688pt;}
.hc_c01039{height:73.244792pt;}
.h5_c01039{height:73.281250pt;}
.h4_c01039{height:74.906250pt;}
.he_c01039{height:75.250000pt;}
.ha_c01039{height:87.783854pt;}
.h8_c01039{height:88.317187pt;}
.h9_c01039{height:96.750000pt;}
.h2_c01039{height:108.041667pt;}
.hd_c01039{height:109.238281pt;}
.h1_c01039{height:876.666667pt;}
.h0_c01039{height:876.733333pt;}
.w2_c01039{width:93.222667pt;}
.w0_c01039{width:593.266667pt;}
.w1_c01039{width:593.333333pt;}
.x0_c01039{left:0.000000pt;}
.x3_c01039{left:15.866667pt;}
.x7_c01039{left:93.066667pt;}
.x6_c01039{left:94.266667pt;}
.x5_c01039{left:96.266667pt;}
.x2_c01039{left:97.466667pt;}
.x1_c01039{left:99.333333pt;}
.x8_c01039{left:102.266667pt;}
.xe_c01039{left:107.333333pt;}
.x4_c01039{left:118.400000pt;}
.x9_c01039{left:170.800000pt;}
.xa_c01039{left:232.533333pt;}
.xc_c01039{left:249.333333pt;}
.xb_c01039{left:253.466667pt;}
.xf_c01039{left:258.000000pt;}
.x10_c01039{left:378.933333pt;}
.xd_c01039{left:465.333333pt;}
.x11_c01039{left:499.866667pt;}
}





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

.ir_c01040:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01040{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01040;src:url('chunks/assets/font_a287449b039ffbeec02824c9.woff2')format("woff");}.ff1_c01040{font-family:ff1_c01040;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01040;src:url('chunks/assets/font_e87558134a55e45969d43294.woff2')format("woff");}.ff2_c01040{font-family:ff2_c01040;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01040;src:url('chunks/assets/font_e306e6fb2aaf58e7b70dc853.woff2')format("woff");}.ff3_c01040{font-family:ff3_c01040;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01040;src:url('chunks/assets/font_347c60ecec1387e4eb557526.woff2')format("woff");}.ff4_c01040{font-family:ff4_c01040;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01040;src:url('chunks/assets/font_7de0fe2112357928b316ee97.woff2')format("woff");}.ff5_c01040{font-family:ff5_c01040;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01040;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c01040{font-family:ff6_c01040;line-height:1.219238;font-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_c01040{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m0_c01040{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01040{vertical-align:0.000000px;}
.ls1_c01040{letter-spacing:0.000000px;}
.ls3_c01040{letter-spacing:3.000000px;}
.ls2_c01040{letter-spacing:6.000000px;}
.ls0_c01040{letter-spacing:9.900000px;}
.sc__c01040{text-shadow:none;}
.sc0_c01040{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01040{-webkit-text-stroke:0px transparent;}
.sc0_c01040{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01040{word-spacing:-73.686000px;}
.ws2_c01040{word-spacing:0.000000px;}
.ws0_c01040{word-spacing:22.248000px;}
._24_c01040{margin-left:-42.723000px;}
._15_c01040{margin-left:-34.587000px;}
._1f_c01040{margin-left:-27.054000px;}
._23_c01040{margin-left:-25.254000px;}
._26_c01040{margin-left:-16.815000px;}
._14_c01040{margin-left:-12.624000px;}
._e_c01040{margin-left:-10.899000px;}
._f_c01040{margin-left:-9.000000px;}
._d_c01040{margin-left:-7.497000px;}
._b_c01040{margin-left:-6.030000px;}
._3_c01040{margin-left:-4.950000px;}
._11_c01040{margin-left:-3.933000px;}
._2_c01040{margin-left:-2.871000px;}
._1_c01040{margin-left:-1.782000px;}
._0_c01040{width:1.683000px;}
._8_c01040{width:3.564000px;}
._7_c01040{width:4.860000px;}
._5_c01040{width:6.561000px;}
._6_c01040{width:7.785000px;}
._a_c01040{width:8.829000px;}
._9_c01040{width:10.530000px;}
._21_c01040{width:11.565000px;}
._4_c01040{width:12.636000px;}
._10_c01040{width:13.797000px;}
._c_c01040{width:14.823000px;}
._22_c01040{width:15.894000px;}
._1d_c01040{width:16.974000px;}
._13_c01040{width:18.342000px;}
._17_c01040{width:21.555000px;}
._1a_c01040{width:22.761000px;}
._16_c01040{width:24.462000px;}
._1c_c01040{width:27.909000px;}
._18_c01040{width:30.393000px;}
._1b_c01040{width:51.111000px;}
._27_c01040{width:68.856000px;}
._12_c01040{width:79.821000px;}
._1e_c01040{width:121.896000px;}
._19_c01040{width:189.198000px;}
._25_c01040{width:292.371000px;}
._20_c01040{width:303.243000px;}
.fc2_c01040{color:transparent;}
.fc1_c01040{color:rgb(128,128,128);}
.fc0_c01040{color:rgb(0,0,0);}
.fs8_c01040{font-size:48.000000px;}
.fs7_c01040{font-size:57.000000px;}
.fs5_c01040{font-size:66.000000px;}
.fs2_c01040{font-size:72.000000px;}
.fs6_c01040{font-size:78.000000px;}
.fs1_c01040{font-size:81.000000px;}
.fs4_c01040{font-size:87.000000px;}
.fs0_c01040{font-size:99.000000px;}
.fs3_c01040{font-size:108.000000px;}
.y0_c01040{bottom:0.000000px;}
.y21_c01040{bottom:3.105000px;}
.y20_c01040{bottom:7.228369px;}
.y1f_c01040{bottom:116.670000px;}
.y1e_c01040{bottom:142.020000px;}
.y1d_c01040{bottom:166.320000px;}
.y1c_c01040{bottom:190.620000px;}
.y1b_c01040{bottom:215.220000px;}
.y1a_c01040{bottom:239.220000px;}
.y19_c01040{bottom:264.270000px;}
.y18_c01040{bottom:288.270000px;}
.y17_c01040{bottom:312.120000px;}
.y16_c01040{bottom:336.720000px;}
.y15_c01040{bottom:361.020000px;}
.y14_c01040{bottom:385.020000px;}
.y13_c01040{bottom:409.620000px;}
.y12_c01040{bottom:433.620000px;}
.y11_c01040{bottom:457.920000px;}
.y10_c01040{bottom:481.920000px;}
.yf_c01040{bottom:506.970000px;}
.ye_c01040{bottom:530.820000px;}
.yd_c01040{bottom:554.070000px;}
.yc_c01040{bottom:577.770000px;}
.yb_c01040{bottom:601.770000px;}
.ya_c01040{bottom:698.970000px;}
.y9_c01040{bottom:722.520000px;}
.y8_c01040{bottom:745.920000px;}
.y7_c01040{bottom:771.870000px;}
.y6_c01040{bottom:795.120000px;}
.y5_c01040{bottom:818.820000px;}
.y4_c01040{bottom:844.020000px;}
.y3_c01040{bottom:867.720000px;}
.y2_c01040{bottom:892.320000px;}
.y1_c01040{bottom:926.670000px;}
.h9_c01040{height:13.200073px;}
.ha_c01040{height:43.804688px;}
.h3_c01040{height:79.497070px;}
.h4_c01040{height:84.269531px;}
.h5_c01040{height:91.160156px;}
.h7_c01040{height:91.176000px;}
.h8_c01040{height:98.756836px;}
.h6_c01040{height:108.843750px;}
.h2_c01040{height:115.870605px;}
.h1_c01040{height:986.250000px;}
.h0_c01040{height:986.550000px;}
.w1_c01040{width:104.875500px;}
.w0_c01040{width:672.000000px;}
.x0_c01040{left:0.000000px;}
.x5_c01040{left:46.800000px;}
.x6_c01040{left:47.850000px;}
.x1_c01040{left:73.200000px;}
.x2_c01040{left:133.650000px;}
.x3_c01040{left:135.900000px;}
.x4_c01040{left:170.850000px;}
.x7_c01040{left:287.814240px;}
@media print{
.v0_c01040{vertical-align:0.000000pt;}
.ls1_c01040{letter-spacing:0.000000pt;}
.ls3_c01040{letter-spacing:2.666667pt;}
.ls2_c01040{letter-spacing:5.333333pt;}
.ls0_c01040{letter-spacing:8.800000pt;}
.ws1_c01040{word-spacing:-65.498667pt;}
.ws2_c01040{word-spacing:0.000000pt;}
.ws0_c01040{word-spacing:19.776000pt;}
._24_c01040{margin-left:-37.976000pt;}
._15_c01040{margin-left:-30.744000pt;}
._1f_c01040{margin-left:-24.048000pt;}
._23_c01040{margin-left:-22.448000pt;}
._26_c01040{margin-left:-14.946667pt;}
._14_c01040{margin-left:-11.221333pt;}
._e_c01040{margin-left:-9.688000pt;}
._f_c01040{margin-left:-8.000000pt;}
._d_c01040{margin-left:-6.664000pt;}
._b_c01040{margin-left:-5.360000pt;}
._3_c01040{margin-left:-4.400000pt;}
._11_c01040{margin-left:-3.496000pt;}
._2_c01040{margin-left:-2.552000pt;}
._1_c01040{margin-left:-1.584000pt;}
._0_c01040{width:1.496000pt;}
._8_c01040{width:3.168000pt;}
._7_c01040{width:4.320000pt;}
._5_c01040{width:5.832000pt;}
._6_c01040{width:6.920000pt;}
._a_c01040{width:7.848000pt;}
._9_c01040{width:9.360000pt;}
._21_c01040{width:10.280000pt;}
._4_c01040{width:11.232000pt;}
._10_c01040{width:12.264000pt;}
._c_c01040{width:13.176000pt;}
._22_c01040{width:14.128000pt;}
._1d_c01040{width:15.088000pt;}
._13_c01040{width:16.304000pt;}
._17_c01040{width:19.160000pt;}
._1a_c01040{width:20.232000pt;}
._16_c01040{width:21.744000pt;}
._1c_c01040{width:24.808000pt;}
._18_c01040{width:27.016000pt;}
._1b_c01040{width:45.432000pt;}
._27_c01040{width:61.205333pt;}
._12_c01040{width:70.952000pt;}
._1e_c01040{width:108.352000pt;}
._19_c01040{width:168.176000pt;}
._25_c01040{width:259.885333pt;}
._20_c01040{width:269.549333pt;}
.fs8_c01040{font-size:42.666667pt;}
.fs7_c01040{font-size:50.666667pt;}
.fs5_c01040{font-size:58.666667pt;}
.fs2_c01040{font-size:64.000000pt;}
.fs6_c01040{font-size:69.333333pt;}
.fs1_c01040{font-size:72.000000pt;}
.fs4_c01040{font-size:77.333333pt;}
.fs0_c01040{font-size:88.000000pt;}
.fs3_c01040{font-size:96.000000pt;}
.y0_c01040{bottom:0.000000pt;}
.y21_c01040{bottom:2.760000pt;}
.y20_c01040{bottom:6.425217pt;}
.y1f_c01040{bottom:103.706667pt;}
.y1e_c01040{bottom:126.240000pt;}
.y1d_c01040{bottom:147.840000pt;}
.y1c_c01040{bottom:169.440000pt;}
.y1b_c01040{bottom:191.306667pt;}
.y1a_c01040{bottom:212.640000pt;}
.y19_c01040{bottom:234.906667pt;}
.y18_c01040{bottom:256.240000pt;}
.y17_c01040{bottom:277.440000pt;}
.y16_c01040{bottom:299.306667pt;}
.y15_c01040{bottom:320.906667pt;}
.y14_c01040{bottom:342.240000pt;}
.y13_c01040{bottom:364.106667pt;}
.y12_c01040{bottom:385.440000pt;}
.y11_c01040{bottom:407.040000pt;}
.y10_c01040{bottom:428.373333pt;}
.yf_c01040{bottom:450.640000pt;}
.ye_c01040{bottom:471.840000pt;}
.yd_c01040{bottom:492.506667pt;}
.yc_c01040{bottom:513.573333pt;}
.yb_c01040{bottom:534.906667pt;}
.ya_c01040{bottom:621.306667pt;}
.y9_c01040{bottom:642.240000pt;}
.y8_c01040{bottom:663.040000pt;}
.y7_c01040{bottom:686.106667pt;}
.y6_c01040{bottom:706.773333pt;}
.y5_c01040{bottom:727.840000pt;}
.y4_c01040{bottom:750.240000pt;}
.y3_c01040{bottom:771.306667pt;}
.y2_c01040{bottom:793.173333pt;}
.y1_c01040{bottom:823.706667pt;}
.h9_c01040{height:11.733399pt;}
.ha_c01040{height:38.937500pt;}
.h3_c01040{height:70.664062pt;}
.h4_c01040{height:74.906250pt;}
.h5_c01040{height:81.031250pt;}
.h7_c01040{height:81.045333pt;}
.h8_c01040{height:87.783854pt;}
.h6_c01040{height:96.750000pt;}
.h2_c01040{height:102.996094pt;}
.h1_c01040{height:876.666667pt;}
.h0_c01040{height:876.933333pt;}
.w1_c01040{width:93.222667pt;}
.w0_c01040{width:597.333333pt;}
.x0_c01040{left:0.000000pt;}
.x5_c01040{left:41.600000pt;}
.x6_c01040{left:42.533333pt;}
.x1_c01040{left:65.066667pt;}
.x2_c01040{left:118.800000pt;}
.x3_c01040{left:120.800000pt;}
.x4_c01040{left:151.866667pt;}
.x7_c01040{left:255.834880pt;}
}





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

.ir_c01041:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01041{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01041;src:url('chunks/assets/font_e596b2285055e0f96df32f38.woff2')format("woff");}.ff1_c01041{font-family:ff1_c01041;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01041;src:url('chunks/assets/font_d4aa0c5241466eb53cfbafa7.woff2')format("woff");}.ff2_c01041{font-family:ff2_c01041;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01041;src:url('chunks/assets/font_29346ff2a5287e6834ca688e.woff2')format("woff");}.ff3_c01041{font-family:ff3_c01041;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01041;src:url('chunks/assets/font_8df0757e9afdc3ed75b60247.woff2')format("woff");}.ff4_c01041{font-family:ff4_c01041;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01041;src:url('chunks/assets/font_addce9214082bbbb28071343.woff2')format("woff");}.ff5_c01041{font-family:ff5_c01041;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01041;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c01041{font-family:ff6_c01041;line-height:1.219238;font-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_c01041{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m0_c01041{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01041{vertical-align:-15.000000px;}
.v0_c01041{vertical-align:0.000000px;}
.ls3_c01041{letter-spacing:0.000000px;}
.ls4_c01041{letter-spacing:12.000000px;}
.ls1_c01041{letter-spacing:18.312000px;}
.ls0_c01041{letter-spacing:65.460000px;}
.ls2_c01041{letter-spacing:127.032000px;}
.sc__c01041{text-shadow:none;}
.sc0_c01041{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01041{-webkit-text-stroke:0px transparent;}
.sc0_c01041{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01041{word-spacing:-60.048000px;}
.ws0_c01041{word-spacing:-17.352000px;}
.ws2_c01041{word-spacing:0.000000px;}
._13_c01041{margin-left:-30.294000px;}
._17_c01041{margin-left:-23.364000px;}
._0_c01041{margin-left:-20.748000px;}
._e_c01041{margin-left:-17.388000px;}
._4_c01041{margin-left:-13.020000px;}
._16_c01041{margin-left:-11.922000px;}
._3_c01041{margin-left:-9.996000px;}
._2_c01041{margin-left:-8.064000px;}
._8_c01041{margin-left:-6.222000px;}
._5_c01041{margin-left:-4.200000px;}
._7_c01041{margin-left:-3.156000px;}
._9_c01041{margin-left:-1.500000px;}
._6_c01041{width:1.077000px;}
._11_c01041{width:2.964000px;}
._1b_c01041{width:4.308000px;}
._b_c01041{width:5.412000px;}
._14_c01041{width:6.723000px;}
._c_c01041{width:8.100000px;}
._1d_c01041{width:9.528000px;}
._1_c01041{width:11.424000px;}
._18_c01041{width:12.483000px;}
._a_c01041{width:13.881000px;}
._12_c01041{width:15.771000px;}
._1e_c01041{width:16.935000px;}
._20_c01041{width:19.674000px;}
._28_c01041{width:23.718000px;}
._23_c01041{width:26.685000px;}
._24_c01041{width:29.280000px;}
._25_c01041{width:30.951000px;}
._1c_c01041{width:32.820000px;}
._10_c01041{width:37.464000px;}
._15_c01041{width:40.614000px;}
._f_c01041{width:44.976000px;}
._d_c01041{width:53.592000px;}
._21_c01041{width:59.034000px;}
._19_c01041{width:71.403000px;}
._22_c01041{width:108.243000px;}
._26_c01041{width:126.858000px;}
._1a_c01041{width:162.099000px;}
._1f_c01041{width:245.025000px;}
._27_c01041{width:278.283000px;}
.fc2_c01041{color:transparent;}
.fc1_c01041{color:rgb(128,128,128);}
.fc0_c01041{color:rgb(0,0,0);}
.fs7_c01041{font-size:48.000000px;}
.fs3_c01041{font-size:60.000000px;}
.fs5_c01041{font-size:69.000000px;}
.fs4_c01041{font-size:72.000000px;}
.fs1_c01041{font-size:75.000000px;}
.fs2_c01041{font-size:81.000000px;}
.fs0_c01041{font-size:84.000000px;}
.fs6_c01041{font-size:108.000000px;}
.y0_c01041{bottom:0.000000px;}
.y25_c01041{bottom:3.105000px;}
.y24_c01041{bottom:7.228371px;}
.y23_c01041{bottom:67.815000px;}
.y22_c01041{bottom:89.415000px;}
.y21_c01041{bottom:114.465000px;}
.y20_c01041{bottom:139.065000px;}
.y1f_c01041{bottom:163.065000px;}
.y1e_c01041{bottom:188.715000px;}
.y1d_c01041{bottom:213.015000px;}
.y1c_c01041{bottom:237.015000px;}
.y1b_c01041{bottom:261.915000px;}
.y1a_c01041{bottom:286.515000px;}
.y19_c01041{bottom:310.815000px;}
.y18_c01041{bottom:337.215000px;}
.y17_c01041{bottom:359.565000px;}
.y16_c01041{bottom:384.765000px;}
.y15_c01041{bottom:408.015000px;}
.y14_c01041{bottom:433.665000px;}
.y13_c01041{bottom:458.115000px;}
.y12_c01041{bottom:481.065000px;}
.y11_c01041{bottom:504.615000px;}
.y10_c01041{bottom:528.915000px;}
.yf_c01041{bottom:552.915000px;}
.ye_c01041{bottom:577.215000px;}
.yd_c01041{bottom:600.765000px;}
.yc_c01041{bottom:626.115000px;}
.yb_c01041{bottom:650.415000px;}
.ya_c01041{bottom:673.965000px;}
.y9_c01041{bottom:700.665000px;}
.y8_c01041{bottom:722.265000px;}
.y7_c01041{bottom:746.265000px;}
.y6_c01041{bottom:770.265000px;}
.y5_c01041{bottom:795.615000px;}
.y4_c01041{bottom:822.615000px;}
.y3_c01041{bottom:841.815000px;}
.y2_c01041{bottom:866.415000px;}
.y1_c01041{bottom:891.015000px;}
.h7_c01041{height:13.200074px;}
.h8_c01041{height:43.804688px;}
.h4_c01041{height:76.160156px;}
.h3_c01041{height:79.497070px;}
.h2_c01041{height:82.441406px;}
.h5_c01041{height:84.269531px;}
.h6_c01041{height:108.843750px;}
.h1_c01041{height:986.250000px;}
.h0_c01041{height:986.325000px;}
.w2_c01041{width:104.875500px;}
.w0_c01041{width:667.425000px;}
.w1_c01041{width:667.500000px;}
.x0_c01041{left:0.000000px;}
.x8_c01041{left:36.900000px;}
.xc_c01041{left:38.100000px;}
.xb_c01041{left:49.950000px;}
.x9_c01041{left:57.000000px;}
.xa_c01041{left:73.200000px;}
.x5_c01041{left:119.250000px;}
.x7_c01041{left:121.800000px;}
.x10_c01041{left:127.350000px;}
.x6_c01041{left:129.900000px;}
.xf_c01041{left:131.250000px;}
.x3_c01041{left:132.600000px;}
.xd_c01041{left:134.700000px;}
.x1_c01041{left:138.000000px;}
.xe_c01041{left:144.750000px;}
.x2_c01041{left:159.000000px;}
.x4_c01041{left:162.300000px;}
.x12_c01041{left:285.526749px;}
.x11_c01041{left:576.900000px;}
@media print{
.v1_c01041{vertical-align:-13.333333pt;}
.v0_c01041{vertical-align:0.000000pt;}
.ls3_c01041{letter-spacing:0.000000pt;}
.ls4_c01041{letter-spacing:10.666667pt;}
.ls1_c01041{letter-spacing:16.277333pt;}
.ls0_c01041{letter-spacing:58.186667pt;}
.ls2_c01041{letter-spacing:112.917333pt;}
.ws1_c01041{word-spacing:-53.376000pt;}
.ws0_c01041{word-spacing:-15.424000pt;}
.ws2_c01041{word-spacing:0.000000pt;}
._13_c01041{margin-left:-26.928000pt;}
._17_c01041{margin-left:-20.768000pt;}
._0_c01041{margin-left:-18.442667pt;}
._e_c01041{margin-left:-15.456000pt;}
._4_c01041{margin-left:-11.573333pt;}
._16_c01041{margin-left:-10.597333pt;}
._3_c01041{margin-left:-8.885333pt;}
._2_c01041{margin-left:-7.168000pt;}
._8_c01041{margin-left:-5.530667pt;}
._5_c01041{margin-left:-3.733333pt;}
._7_c01041{margin-left:-2.805333pt;}
._9_c01041{margin-left:-1.333333pt;}
._6_c01041{width:0.957333pt;}
._11_c01041{width:2.634667pt;}
._1b_c01041{width:3.829333pt;}
._b_c01041{width:4.810667pt;}
._14_c01041{width:5.976000pt;}
._c_c01041{width:7.200000pt;}
._1d_c01041{width:8.469333pt;}
._1_c01041{width:10.154667pt;}
._18_c01041{width:11.096000pt;}
._a_c01041{width:12.338667pt;}
._12_c01041{width:14.018667pt;}
._1e_c01041{width:15.053333pt;}
._20_c01041{width:17.488000pt;}
._28_c01041{width:21.082667pt;}
._23_c01041{width:23.720000pt;}
._24_c01041{width:26.026667pt;}
._25_c01041{width:27.512000pt;}
._1c_c01041{width:29.173333pt;}
._10_c01041{width:33.301333pt;}
._15_c01041{width:36.101333pt;}
._f_c01041{width:39.978667pt;}
._d_c01041{width:47.637333pt;}
._21_c01041{width:52.474667pt;}
._19_c01041{width:63.469333pt;}
._22_c01041{width:96.216000pt;}
._26_c01041{width:112.762667pt;}
._1a_c01041{width:144.088000pt;}
._1f_c01041{width:217.800000pt;}
._27_c01041{width:247.362667pt;}
.fs7_c01041{font-size:42.666667pt;}
.fs3_c01041{font-size:53.333333pt;}
.fs5_c01041{font-size:61.333333pt;}
.fs4_c01041{font-size:64.000000pt;}
.fs1_c01041{font-size:66.666667pt;}
.fs2_c01041{font-size:72.000000pt;}
.fs0_c01041{font-size:74.666667pt;}
.fs6_c01041{font-size:96.000000pt;}
.y0_c01041{bottom:0.000000pt;}
.y25_c01041{bottom:2.760000pt;}
.y24_c01041{bottom:6.425219pt;}
.y23_c01041{bottom:60.280000pt;}
.y22_c01041{bottom:79.480000pt;}
.y21_c01041{bottom:101.746667pt;}
.y20_c01041{bottom:123.613333pt;}
.y1f_c01041{bottom:144.946667pt;}
.y1e_c01041{bottom:167.746667pt;}
.y1d_c01041{bottom:189.346667pt;}
.y1c_c01041{bottom:210.680000pt;}
.y1b_c01041{bottom:232.813333pt;}
.y1a_c01041{bottom:254.680000pt;}
.y19_c01041{bottom:276.280000pt;}
.y18_c01041{bottom:299.746667pt;}
.y17_c01041{bottom:319.613333pt;}
.y16_c01041{bottom:342.013333pt;}
.y15_c01041{bottom:362.680000pt;}
.y14_c01041{bottom:385.480000pt;}
.y13_c01041{bottom:407.213333pt;}
.y12_c01041{bottom:427.613333pt;}
.y11_c01041{bottom:448.546667pt;}
.y10_c01041{bottom:470.146667pt;}
.yf_c01041{bottom:491.480000pt;}
.ye_c01041{bottom:513.080000pt;}
.yd_c01041{bottom:534.013333pt;}
.yc_c01041{bottom:556.546667pt;}
.yb_c01041{bottom:578.146667pt;}
.ya_c01041{bottom:599.080000pt;}
.y9_c01041{bottom:622.813333pt;}
.y8_c01041{bottom:642.013333pt;}
.y7_c01041{bottom:663.346667pt;}
.y6_c01041{bottom:684.680000pt;}
.y5_c01041{bottom:707.213333pt;}
.y4_c01041{bottom:731.213333pt;}
.y3_c01041{bottom:748.280000pt;}
.y2_c01041{bottom:770.146667pt;}
.y1_c01041{bottom:792.013333pt;}
.h7_c01041{height:11.733399pt;}
.h8_c01041{height:38.937500pt;}
.h4_c01041{height:67.697917pt;}
.h3_c01041{height:70.664062pt;}
.h2_c01041{height:73.281250pt;}
.h5_c01041{height:74.906250pt;}
.h6_c01041{height:96.750000pt;}
.h1_c01041{height:876.666667pt;}
.h0_c01041{height:876.733333pt;}
.w2_c01041{width:93.222667pt;}
.w0_c01041{width:593.266667pt;}
.w1_c01041{width:593.333333pt;}
.x0_c01041{left:0.000000pt;}
.x8_c01041{left:32.800000pt;}
.xc_c01041{left:33.866667pt;}
.xb_c01041{left:44.400000pt;}
.x9_c01041{left:50.666667pt;}
.xa_c01041{left:65.066667pt;}
.x5_c01041{left:106.000000pt;}
.x7_c01041{left:108.266667pt;}
.x10_c01041{left:113.200000pt;}
.x6_c01041{left:115.466667pt;}
.xf_c01041{left:116.666667pt;}
.x3_c01041{left:117.866667pt;}
.xd_c01041{left:119.733333pt;}
.x1_c01041{left:122.666667pt;}
.xe_c01041{left:128.666667pt;}
.x2_c01041{left:141.333333pt;}
.x4_c01041{left:144.266667pt;}
.x12_c01041{left:253.801554pt;}
.x11_c01041{left:512.800000pt;}
}





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

.ir_c01042:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01042{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01042;src:url('chunks/assets/font_b005b40e78f333f3fb871abb.woff2')format("woff");}.ff1_c01042{font-family:ff1_c01042;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01042;src:url('chunks/assets/font_9e632fefe3be2d014bf015ea.woff2')format("woff");}.ff2_c01042{font-family:ff2_c01042;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01042;src:url('chunks/assets/font_4cbd9b4ad59a58b4e8d4fd9e.woff2')format("woff");}.ff3_c01042{font-family:ff3_c01042;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01042;src:url('chunks/assets/font_fbb0321a249f11c4a5f0749c.woff2')format("woff");}.ff4_c01042{font-family:ff4_c01042;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01042;src:url('chunks/assets/font_ead601091ef8f142f28e7979.woff2')format("woff");}.ff5_c01042{font-family:ff5_c01042;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01042;src:url('chunks/assets/font_4e09a1f30a79e3d020c4706e.woff2')format("woff");}.ff6_c01042{font-family:ff6_c01042;line-height:1.437000;font-style:normal;font-weight: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_c01042;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c01042{font-family:ff7_c01042;line-height:1.219238;font-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_c01042{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m0_c01042{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01042{vertical-align:0.000000px;}
.ls3_c01042{letter-spacing:-6.000000px;}
.ls4_c01042{letter-spacing:0.000000px;}
.ls1_c01042{letter-spacing:1.512000px;}
.ls0_c01042{letter-spacing:3.837000px;}
.ls2_c01042{letter-spacing:9.750000px;}
.sc__c01042{text-shadow:none;}
.sc0_c01042{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01042{-webkit-text-stroke:0px transparent;}
.sc0_c01042{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01042{word-spacing:-27.000000px;}
.ws0_c01042{word-spacing:-23.859000px;}
.ws1_c01042{word-spacing:-17.250000px;}
.ws3_c01042{word-spacing:0.000000px;}
._11_c01042{margin-left:-33.957000px;}
._6_c01042{margin-left:-31.020000px;}
._1c_c01042{margin-left:-26.325000px;}
._d_c01042{margin-left:-20.493000px;}
._8_c01042{margin-left:-19.404000px;}
._14_c01042{margin-left:-17.565000px;}
._c_c01042{margin-left:-16.236000px;}
._e_c01042{margin-left:-15.048000px;}
._1_c01042{margin-left:-13.512000px;}
._4_c01042{margin-left:-11.880000px;}
._2_c01042{margin-left:-9.801000px;}
._9_c01042{margin-left:-7.359000px;}
._3_c01042{margin-left:-6.336000px;}
._10_c01042{margin-left:-5.187000px;}
._7_c01042{margin-left:-3.300000px;}
._a_c01042{margin-left:-1.947000px;}
._5_c01042{width:1.755000px;}
._15_c01042{width:3.147000px;}
._0_c01042{width:4.356000px;}
._17_c01042{width:6.357000px;}
._19_c01042{width:7.944000px;}
._1a_c01042{width:10.044000px;}
._1b_c01042{width:11.163000px;}
._18_c01042{width:12.825000px;}
._26_c01042{width:13.893000px;}
._f_c01042{width:14.910000px;}
._28_c01042{width:16.116000px;}
._13_c01042{width:17.184000px;}
._22_c01042{width:19.119000px;}
._25_c01042{width:22.011000px;}
._23_c01042{width:23.043000px;}
._24_c01042{width:24.651000px;}
._b_c01042{width:26.532000px;}
._12_c01042{width:38.454000px;}
._27_c01042{width:45.057000px;}
._1e_c01042{width:46.200000px;}
._20_c01042{width:81.567000px;}
._2a_c01042{width:85.794000px;}
._29_c01042{width:121.968000px;}
._21_c01042{width:123.015000px;}
._1f_c01042{width:132.636000px;}
._16_c01042{width:153.036000px;}
._1d_c01042{width:212.643000px;}
.fc2_c01042{color:transparent;}
.fc1_c01042{color:rgb(128,128,128);}
.fc0_c01042{color:rgb(0,0,0);}
.fs6_c01042{font-size:48.000000px;}
.fs5_c01042{font-size:69.000000px;}
.fs4_c01042{font-size:72.000000px;}
.fs3_c01042{font-size:81.000000px;}
.fs1_c01042{font-size:99.000000px;}
.fs2_c01042{font-size:108.000000px;}
.fs0_c01042{font-size:132.000000px;}
.y0_c01042{bottom:0.000000px;}
.y26_c01042{bottom:3.105000px;}
.y25_c01042{bottom:7.228369px;}
.y24_c01042{bottom:51.570000px;}
.y23_c01042{bottom:75.570000px;}
.y22_c01042{bottom:100.620000px;}
.y21_c01042{bottom:125.520000px;}
.y20_c01042{bottom:149.070000px;}
.y1f_c01042{bottom:173.520000px;}
.y1e_c01042{bottom:197.820000px;}
.y1d_c01042{bottom:222.420000px;}
.y1c_c01042{bottom:246.420000px;}
.y1b_c01042{bottom:270.720000px;}
.y1a_c01042{bottom:294.870000px;}
.y19_c01042{bottom:319.170000px;}
.y18_c01042{bottom:343.470000px;}
.y17_c01042{bottom:367.170000px;}
.y16_c01042{bottom:390.870000px;}
.y15_c01042{bottom:415.020000px;}
.y14_c01042{bottom:439.320000px;}
.y13_c01042{bottom:462.720000px;}
.y12_c01042{bottom:486.270000px;}
.y11_c01042{bottom:510.870000px;}
.y10_c01042{bottom:534.570000px;}
.yf_c01042{bottom:558.570000px;}
.ye_c01042{bottom:582.870000px;}
.yd_c01042{bottom:606.720000px;}
.yc_c01042{bottom:631.020000px;}
.yb_c01042{bottom:653.970000px;}
.ya_c01042{bottom:679.020000px;}
.y9_c01042{bottom:703.320000px;}
.y8_c01042{bottom:727.320000px;}
.y7_c01042{bottom:751.620000px;}
.y6_c01042{bottom:775.620000px;}
.y5_c01042{bottom:799.920000px;}
.y4_c01042{bottom:826.470000px;}
.y3_c01042{bottom:848.370000px;}
.y2_c01042{bottom:872.070000px;}
.y1_c01042{bottom:906.870000px;}
.h5_c01042{height:13.200073px;}
.h6_c01042{height:43.804688px;}
.h3_c01042{height:79.497070px;}
.h4_c01042{height:91.160156px;}
.h2_c01042{height:108.843750px;}
.h1_c01042{height:167.126953px;}
.h0_c01042{height:975.750000px;}
.w2_c01042{width:104.875500px;}
.w0_c01042{width:664.200000px;}
.w1_c01042{width:664.500000px;}
.x0_c01042{left:0.000000px;}
.x9_c01042{left:30.450000px;}
.x6_c01042{left:42.150000px;}
.x2_c01042{left:45.000000px;}
.x3_c01042{left:46.200000px;}
.x7_c01042{left:47.250000px;}
.x8_c01042{left:48.300000px;}
.x1_c01042{left:66.150000px;}
.xb_c01042{left:283.914230px;}
.xa_c01042{left:500.250000px;}
.x4_c01042{left:514.650000px;}
.x5_c01042{left:595.650000px;}
@media print{
.v0_c01042{vertical-align:0.000000pt;}
.ls3_c01042{letter-spacing:-5.333333pt;}
.ls4_c01042{letter-spacing:0.000000pt;}
.ls1_c01042{letter-spacing:1.344000pt;}
.ls0_c01042{letter-spacing:3.410667pt;}
.ls2_c01042{letter-spacing:8.666667pt;}
.ws2_c01042{word-spacing:-24.000000pt;}
.ws0_c01042{word-spacing:-21.208000pt;}
.ws1_c01042{word-spacing:-15.333333pt;}
.ws3_c01042{word-spacing:0.000000pt;}
._11_c01042{margin-left:-30.184000pt;}
._6_c01042{margin-left:-27.573333pt;}
._1c_c01042{margin-left:-23.400000pt;}
._d_c01042{margin-left:-18.216000pt;}
._8_c01042{margin-left:-17.248000pt;}
._14_c01042{margin-left:-15.613333pt;}
._c_c01042{margin-left:-14.432000pt;}
._e_c01042{margin-left:-13.376000pt;}
._1_c01042{margin-left:-12.010667pt;}
._4_c01042{margin-left:-10.560000pt;}
._2_c01042{margin-left:-8.712000pt;}
._9_c01042{margin-left:-6.541333pt;}
._3_c01042{margin-left:-5.632000pt;}
._10_c01042{margin-left:-4.610667pt;}
._7_c01042{margin-left:-2.933333pt;}
._a_c01042{margin-left:-1.730667pt;}
._5_c01042{width:1.560000pt;}
._15_c01042{width:2.797333pt;}
._0_c01042{width:3.872000pt;}
._17_c01042{width:5.650667pt;}
._19_c01042{width:7.061333pt;}
._1a_c01042{width:8.928000pt;}
._1b_c01042{width:9.922667pt;}
._18_c01042{width:11.400000pt;}
._26_c01042{width:12.349333pt;}
._f_c01042{width:13.253333pt;}
._28_c01042{width:14.325333pt;}
._13_c01042{width:15.274667pt;}
._22_c01042{width:16.994667pt;}
._25_c01042{width:19.565333pt;}
._23_c01042{width:20.482667pt;}
._24_c01042{width:21.912000pt;}
._b_c01042{width:23.584000pt;}
._12_c01042{width:34.181333pt;}
._27_c01042{width:40.050667pt;}
._1e_c01042{width:41.066667pt;}
._20_c01042{width:72.504000pt;}
._2a_c01042{width:76.261333pt;}
._29_c01042{width:108.416000pt;}
._21_c01042{width:109.346667pt;}
._1f_c01042{width:117.898667pt;}
._16_c01042{width:136.032000pt;}
._1d_c01042{width:189.016000pt;}
.fs6_c01042{font-size:42.666667pt;}
.fs5_c01042{font-size:61.333333pt;}
.fs4_c01042{font-size:64.000000pt;}
.fs3_c01042{font-size:72.000000pt;}
.fs1_c01042{font-size:88.000000pt;}
.fs2_c01042{font-size:96.000000pt;}
.fs0_c01042{font-size:117.333333pt;}
.y0_c01042{bottom:0.000000pt;}
.y26_c01042{bottom:2.760000pt;}
.y25_c01042{bottom:6.425217pt;}
.y24_c01042{bottom:45.840000pt;}
.y23_c01042{bottom:67.173333pt;}
.y22_c01042{bottom:89.440000pt;}
.y21_c01042{bottom:111.573333pt;}
.y20_c01042{bottom:132.506667pt;}
.y1f_c01042{bottom:154.240000pt;}
.y1e_c01042{bottom:175.840000pt;}
.y1d_c01042{bottom:197.706667pt;}
.y1c_c01042{bottom:219.040000pt;}
.y1b_c01042{bottom:240.640000pt;}
.y1a_c01042{bottom:262.106667pt;}
.y19_c01042{bottom:283.706667pt;}
.y18_c01042{bottom:305.306667pt;}
.y17_c01042{bottom:326.373333pt;}
.y16_c01042{bottom:347.440000pt;}
.y15_c01042{bottom:368.906667pt;}
.y14_c01042{bottom:390.506667pt;}
.y13_c01042{bottom:411.306667pt;}
.y12_c01042{bottom:432.240000pt;}
.y11_c01042{bottom:454.106667pt;}
.y10_c01042{bottom:475.173333pt;}
.yf_c01042{bottom:496.506667pt;}
.ye_c01042{bottom:518.106667pt;}
.yd_c01042{bottom:539.306667pt;}
.yc_c01042{bottom:560.906667pt;}
.yb_c01042{bottom:581.306667pt;}
.ya_c01042{bottom:603.573333pt;}
.y9_c01042{bottom:625.173333pt;}
.y8_c01042{bottom:646.506667pt;}
.y7_c01042{bottom:668.106667pt;}
.y6_c01042{bottom:689.440000pt;}
.y5_c01042{bottom:711.040000pt;}
.y4_c01042{bottom:734.640000pt;}
.y3_c01042{bottom:754.106667pt;}
.y2_c01042{bottom:775.173333pt;}
.y1_c01042{bottom:806.106667pt;}
.h5_c01042{height:11.733399pt;}
.h6_c01042{height:38.937500pt;}
.h3_c01042{height:70.664062pt;}
.h4_c01042{height:81.031250pt;}
.h2_c01042{height:96.750000pt;}
.h1_c01042{height:148.557292pt;}
.h0_c01042{height:867.333333pt;}
.w2_c01042{width:93.222667pt;}
.w0_c01042{width:590.400000pt;}
.w1_c01042{width:590.666667pt;}
.x0_c01042{left:0.000000pt;}
.x9_c01042{left:27.066667pt;}
.x6_c01042{left:37.466667pt;}
.x2_c01042{left:40.000000pt;}
.x3_c01042{left:41.066667pt;}
.x7_c01042{left:42.000000pt;}
.x8_c01042{left:42.933333pt;}
.x1_c01042{left:58.800000pt;}
.xb_c01042{left:252.368205pt;}
.xa_c01042{left:444.666667pt;}
.x4_c01042{left:457.466667pt;}
.x5_c01042{left:529.466667pt;}
}





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

.ir_c01043:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01043{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01043;src:url('chunks/assets/font_52a07d3b4ae9fcdb3009d269.woff2')format("woff");}.ff1_c01043{font-family:ff1_c01043;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01043;src:url('chunks/assets/font_fa9b8e17f4228cd4e984f805.woff2')format("woff");}.ff2_c01043{font-family:ff2_c01043;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01043;src:url('chunks/assets/font_ff8380cca6f1cbc22b3b0abc.woff2')format("woff");}.ff3_c01043{font-family:ff3_c01043;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01043;src:url('chunks/assets/font_8c389492dfde3113ded41ff1.woff2')format("woff");}.ff4_c01043{font-family:ff4_c01043;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01043;src:url('chunks/assets/font_9524b7113ee92f35db79a1eb.woff2')format("woff");}.ff5_c01043{font-family:ff5_c01043;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01043;src:url('chunks/assets/font_d52afc34ce474188665f9291.woff2')format("woff");}.ff6_c01043{font-family:ff6_c01043;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01043;src:url('chunks/assets/font_825d7905068cd3cd4f79de1c.woff2')format("woff");}.ff7_c01043{font-family:ff7_c01043;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c01043;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff8_c01043{font-family:ff8_c01043;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01043{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01043{vertical-align:0.000000px;}
.ls4_c01043{letter-spacing:0.000000px;}
.ls2_c01043{letter-spacing:11.100000px;}
.ls3_c01043{letter-spacing:21.264000px;}
.ls1_c01043{letter-spacing:31.800000px;}
.ls0_c01043{letter-spacing:44.904000px;}
.sc__c01043{text-shadow:none;}
.sc0_c01043{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01043{-webkit-text-stroke:0px transparent;}
.sc0_c01043{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c01043{word-spacing:-39.300000px;}
.ws2_c01043{word-spacing:-23.832000px;}
.ws1_c01043{word-spacing:-19.065600px;}
.ws0_c01043{word-spacing:-17.352000px;}
.ws4_c01043{word-spacing:0.000000px;}
._2b_c01043{margin-left:-83.436000px;}
._1f_c01043{margin-left:-26.082000px;}
._21_c01043{margin-left:-18.792000px;}
._e_c01043{margin-left:-16.929000px;}
._10_c01043{margin-left:-14.661000px;}
._1b_c01043{margin-left:-13.527000px;}
._1d_c01043{margin-left:-11.520000px;}
._11_c01043{margin-left:-9.639000px;}
._4_c01043{margin-left:-8.181000px;}
._16_c01043{margin-left:-6.939000px;}
._0_c01043{margin-left:-5.103000px;}
._d_c01043{margin-left:-3.402000px;}
._1a_c01043{margin-left:-2.259000px;}
._c_c01043{margin-left:-1.215000px;}
._7_c01043{width:1.296000px;}
._a_c01043{width:2.349000px;}
._8_c01043{width:3.483000px;}
._2_c01043{width:5.265000px;}
._14_c01043{width:6.318000px;}
._15_c01043{width:7.425000px;}
._6_c01043{width:8.586000px;}
._9_c01043{width:9.882000px;}
._12_c01043{width:11.259000px;}
._26_c01043{width:12.294000px;}
._13_c01043{width:13.446000px;}
._23_c01043{width:14.499000px;}
._b_c01043{width:16.038000px;}
._24_c01043{width:17.901000px;}
._f_c01043{width:26.973000px;}
._28_c01043{width:28.998000px;}
._18_c01043{width:31.752000px;}
._27_c01043{width:33.231000px;}
._17_c01043{width:34.749000px;}
._25_c01043{width:36.828000px;}
._22_c01043{width:40.014000px;}
._3_c01043{width:47.790000px;}
._1_c01043{width:70.308000px;}
._5_c01043{width:75.735000px;}
._1c_c01043{width:83.946000px;}
._2a_c01043{width:145.590000px;}
._19_c01043{width:157.002000px;}
._29_c01043{width:225.801000px;}
._1e_c01043{width:243.855000px;}
._20_c01043{width:275.562000px;}
._2c_c01043{width:625.530000px;}
.fc2_c01043{color:transparent;}
.fc1_c01043{color:rgb(128,128,128);}
.fc0_c01043{color:rgb(0,0,0);}
.fs7_c01043{font-size:48.000000px;}
.fs4_c01043{font-size:57.600000px;}
.fs1_c01043{font-size:66.000000px;}
.fs0_c01043{font-size:72.000000px;}
.fs6_c01043{font-size:75.000000px;}
.fs2_c01043{font-size:81.000000px;}
.fs3_c01043{font-size:87.000000px;}
.fs5_c01043{font-size:102.000000px;}
.y0_c01043{bottom:0.000000px;}
.y26_c01043{bottom:3.105000px;}
.y25_c01043{bottom:7.228371px;}
.y24_c01043{bottom:42.915000px;}
.y23_c01043{bottom:65.565000px;}
.y22_c01043{bottom:92.115000px;}
.y21_c01043{bottom:116.565000px;}
.y20_c01043{bottom:141.165000px;}
.y1f_c01043{bottom:166.365000px;}
.y1e_c01043{bottom:192.015000px;}
.y1d_c01043{bottom:214.665000px;}
.y1c_c01043{bottom:239.265000px;}
.y1b_c01043{bottom:264.015000px;}
.y1a_c01043{bottom:288.615000px;}
.y19_c01043{bottom:313.515000px;}
.y18_c01043{bottom:335.865000px;}
.y17_c01043{bottom:362.115000px;}
.y16_c01043{bottom:386.115000px;}
.y15_c01043{bottom:410.715000px;}
.y14_c01043{bottom:435.765000px;}
.y13_c01043{bottom:459.015000px;}
.y12_c01043{bottom:483.015000px;}
.y11_c01043{bottom:507.315000px;}
.y10_c01043{bottom:531.015000px;}
.yf_c01043{bottom:555.165000px;}
.ye_c01043{bottom:579.465000px;}
.yd_c01043{bottom:603.765000px;}
.yc_c01043{bottom:627.165000px;}
.yb_c01043{bottom:651.465000px;}
.ya_c01043{bottom:676.365000px;}
.y9_c01043{bottom:700.665000px;}
.y8_c01043{bottom:724.965000px;}
.y7_c01043{bottom:748.965000px;}
.y6_c01043{bottom:773.265000px;}
.y5_c01043{bottom:797.565000px;}
.y4_c01043{bottom:821.265000px;}
.y3_c01043{bottom:845.415000px;}
.y2_c01043{bottom:871.065000px;}
.y1_c01043{bottom:911.715000px;}
.h7_c01043{height:13.200074px;}
.h8_c01043{height:43.804688px;}
.h3_c01043{height:79.497070px;}
.h2_c01043{height:84.269531px;}
.h5_c01043{height:91.160156px;}
.h4_c01043{height:91.176000px;}
.h6_c01043{height:129.143555px;}
.h1_c01043{height:986.250000px;}
.h0_c01043{height:986.325000px;}
.w2_c01043{width:104.875500px;}
.w0_c01043{width:667.425000px;}
.w1_c01043{width:667.500000px;}
.x0_c01043{left:0.000000px;}
.xe_c01043{left:52.350000px;}
.x3_c01043{left:53.400000px;}
.x8_c01043{left:56.100000px;}
.x2_c01043{left:60.450000px;}
.x6_c01043{left:75.900000px;}
.x9_c01043{left:120.600000px;}
.x5_c01043{left:122.250000px;}
.xb_c01043{left:140.700000px;}
.xc_c01043{left:141.750000px;}
.x4_c01043{left:142.800000px;}
.x1_c01043{left:143.850000px;}
.xa_c01043{left:145.200000px;}
.x7_c01043{left:181.950000px;}
.xd_c01043{left:209.550000px;}
.x10_c01043{left:285.526749px;}
.xf_c01043{left:376.350000px;}
@media print{
.v0_c01043{vertical-align:0.000000pt;}
.ls4_c01043{letter-spacing:0.000000pt;}
.ls2_c01043{letter-spacing:9.866667pt;}
.ls3_c01043{letter-spacing:18.901333pt;}
.ls1_c01043{letter-spacing:28.266667pt;}
.ls0_c01043{letter-spacing:39.914667pt;}
.ws3_c01043{word-spacing:-34.933333pt;}
.ws2_c01043{word-spacing:-21.184000pt;}
.ws1_c01043{word-spacing:-16.947200pt;}
.ws0_c01043{word-spacing:-15.424000pt;}
.ws4_c01043{word-spacing:0.000000pt;}
._2b_c01043{margin-left:-74.165333pt;}
._1f_c01043{margin-left:-23.184000pt;}
._21_c01043{margin-left:-16.704000pt;}
._e_c01043{margin-left:-15.048000pt;}
._10_c01043{margin-left:-13.032000pt;}
._1b_c01043{margin-left:-12.024000pt;}
._1d_c01043{margin-left:-10.240000pt;}
._11_c01043{margin-left:-8.568000pt;}
._4_c01043{margin-left:-7.272000pt;}
._16_c01043{margin-left:-6.168000pt;}
._0_c01043{margin-left:-4.536000pt;}
._d_c01043{margin-left:-3.024000pt;}
._1a_c01043{margin-left:-2.008000pt;}
._c_c01043{margin-left:-1.080000pt;}
._7_c01043{width:1.152000pt;}
._a_c01043{width:2.088000pt;}
._8_c01043{width:3.096000pt;}
._2_c01043{width:4.680000pt;}
._14_c01043{width:5.616000pt;}
._15_c01043{width:6.600000pt;}
._6_c01043{width:7.632000pt;}
._9_c01043{width:8.784000pt;}
._12_c01043{width:10.008000pt;}
._26_c01043{width:10.928000pt;}
._13_c01043{width:11.952000pt;}
._23_c01043{width:12.888000pt;}
._b_c01043{width:14.256000pt;}
._24_c01043{width:15.912000pt;}
._f_c01043{width:23.976000pt;}
._28_c01043{width:25.776000pt;}
._18_c01043{width:28.224000pt;}
._27_c01043{width:29.538667pt;}
._17_c01043{width:30.888000pt;}
._25_c01043{width:32.736000pt;}
._22_c01043{width:35.568000pt;}
._3_c01043{width:42.480000pt;}
._1_c01043{width:62.496000pt;}
._5_c01043{width:67.320000pt;}
._1c_c01043{width:74.618667pt;}
._2a_c01043{width:129.413333pt;}
._19_c01043{width:139.557333pt;}
._29_c01043{width:200.712000pt;}
._1e_c01043{width:216.760000pt;}
._20_c01043{width:244.944000pt;}
._2c_c01043{width:556.026667pt;}
.fs7_c01043{font-size:42.666667pt;}
.fs4_c01043{font-size:51.200000pt;}
.fs1_c01043{font-size:58.666667pt;}
.fs0_c01043{font-size:64.000000pt;}
.fs6_c01043{font-size:66.666667pt;}
.fs2_c01043{font-size:72.000000pt;}
.fs3_c01043{font-size:77.333333pt;}
.fs5_c01043{font-size:90.666667pt;}
.y0_c01043{bottom:0.000000pt;}
.y26_c01043{bottom:2.760000pt;}
.y25_c01043{bottom:6.425219pt;}
.y24_c01043{bottom:38.146667pt;}
.y23_c01043{bottom:58.280000pt;}
.y22_c01043{bottom:81.880000pt;}
.y21_c01043{bottom:103.613333pt;}
.y20_c01043{bottom:125.480000pt;}
.y1f_c01043{bottom:147.880000pt;}
.y1e_c01043{bottom:170.680000pt;}
.y1d_c01043{bottom:190.813333pt;}
.y1c_c01043{bottom:212.680000pt;}
.y1b_c01043{bottom:234.680000pt;}
.y1a_c01043{bottom:256.546667pt;}
.y19_c01043{bottom:278.680000pt;}
.y18_c01043{bottom:298.546667pt;}
.y17_c01043{bottom:321.880000pt;}
.y16_c01043{bottom:343.213333pt;}
.y15_c01043{bottom:365.080000pt;}
.y14_c01043{bottom:387.346667pt;}
.y13_c01043{bottom:408.013333pt;}
.y12_c01043{bottom:429.346667pt;}
.y11_c01043{bottom:450.946667pt;}
.y10_c01043{bottom:472.013333pt;}
.yf_c01043{bottom:493.480000pt;}
.ye_c01043{bottom:515.080000pt;}
.yd_c01043{bottom:536.680000pt;}
.yc_c01043{bottom:557.480000pt;}
.yb_c01043{bottom:579.080000pt;}
.ya_c01043{bottom:601.213333pt;}
.y9_c01043{bottom:622.813333pt;}
.y8_c01043{bottom:644.413333pt;}
.y7_c01043{bottom:665.746667pt;}
.y6_c01043{bottom:687.346667pt;}
.y5_c01043{bottom:708.946667pt;}
.y4_c01043{bottom:730.013333pt;}
.y3_c01043{bottom:751.480000pt;}
.y2_c01043{bottom:774.280000pt;}
.y1_c01043{bottom:810.413333pt;}
.h7_c01043{height:11.733399pt;}
.h8_c01043{height:38.937500pt;}
.h3_c01043{height:70.664062pt;}
.h2_c01043{height:74.906250pt;}
.h5_c01043{height:81.031250pt;}
.h4_c01043{height:81.045333pt;}
.h6_c01043{height:114.794271pt;}
.h1_c01043{height:876.666667pt;}
.h0_c01043{height:876.733333pt;}
.w2_c01043{width:93.222667pt;}
.w0_c01043{width:593.266667pt;}
.w1_c01043{width:593.333333pt;}
.x0_c01043{left:0.000000pt;}
.xe_c01043{left:46.533333pt;}
.x3_c01043{left:47.466667pt;}
.x8_c01043{left:49.866667pt;}
.x2_c01043{left:53.733333pt;}
.x6_c01043{left:67.466667pt;}
.x9_c01043{left:107.200000pt;}
.x5_c01043{left:108.666667pt;}
.xb_c01043{left:125.066667pt;}
.xc_c01043{left:126.000000pt;}
.x4_c01043{left:126.933333pt;}
.x1_c01043{left:127.866667pt;}
.xa_c01043{left:129.066667pt;}
.x7_c01043{left:161.733333pt;}
.xd_c01043{left:186.266667pt;}
.x10_c01043{left:253.801554pt;}
.xf_c01043{left:334.533333pt;}
}





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

.ir_c01044:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01044{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01044;src:url('chunks/assets/font_266d1e6bf1745c14ff395f25.woff2')format("woff");}.ff1_c01044{font-family:ff1_c01044;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01044;src:url('chunks/assets/font_1445e29ac138f14a2096798f.woff2')format("woff");}.ff2_c01044{font-family:ff2_c01044;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01044;src:url('chunks/assets/font_7bf0a9c57c157123d820ddb6.woff2')format("woff");}.ff3_c01044{font-family:ff3_c01044;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01044;src:url('chunks/assets/font_21a1c7471130c4aa684d8cbc.woff2')format("woff");}.ff4_c01044{font-family:ff4_c01044;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01044;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c01044{font-family:ff5_c01044;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01044{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01044{vertical-align:0.000000px;}
.ls1_c01044{letter-spacing:0.000000px;}
.ls2_c01044{letter-spacing:3.000000px;}
.ls3_c01044{letter-spacing:6.000000px;}
.ls0_c01044{letter-spacing:13.602000px;}
.sc__c01044{text-shadow:none;}
.sc0_c01044{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01044{-webkit-text-stroke:0px transparent;}
.sc0_c01044{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c01044{word-spacing:-73.686000px;}
.ws1_c01044{word-spacing:-20.250000px;}
.ws0_c01044{word-spacing:-17.352000px;}
.ws2_c01044{word-spacing:-13.737000px;}
.ws4_c01044{word-spacing:-1.152000px;}
.ws5_c01044{word-spacing:0.000000px;}
._18_c01044{margin-left:-27.216000px;}
._11_c01044{margin-left:-22.158000px;}
._25_c01044{margin-left:-17.577000px;}
._6_c01044{margin-left:-16.335000px;}
._24_c01044{margin-left:-14.094000px;}
._29_c01044{margin-left:-13.059000px;}
._27_c01044{margin-left:-11.988000px;}
._7_c01044{margin-left:-8.514000px;}
._21_c01044{margin-left:-7.389000px;}
._1e_c01044{margin-left:-5.904000px;}
._8_c01044{margin-left:-4.851000px;}
._5_c01044{margin-left:-3.366000px;}
._4_c01044{margin-left:-1.782000px;}
._f_c01044{width:1.998000px;}
._d_c01044{width:3.195000px;}
._a_c01044{width:4.392000px;}
._16_c01044{width:5.436000px;}
._e_c01044{width:6.453000px;}
._1_c01044{width:7.488000px;}
._b_c01044{width:8.982000px;}
._0_c01044{width:10.656000px;}
._13_c01044{width:11.730000px;}
._1f_c01044{width:12.951000px;}
._10_c01044{width:14.697000px;}
._1b_c01044{width:16.083000px;}
._1c_c01044{width:18.474000px;}
._c_c01044{width:22.185000px;}
._2_c01044{width:23.904000px;}
._15_c01044{width:25.434000px;}
._14_c01044{width:26.448000px;}
._23_c01044{width:29.256000px;}
._22_c01044{width:30.609000px;}
._12_c01044{width:32.754000px;}
._9_c01044{width:50.286000px;}
._28_c01044{width:60.750000px;}
._1a_c01044{width:71.163000px;}
._26_c01044{width:79.947000px;}
._3_c01044{width:140.184000px;}
._19_c01044{width:156.735000px;}
._1d_c01044{width:250.167000px;}
._2a_c01044{width:391.044000px;}
._20_c01044{width:558.102000px;}
._17_c01044{width:1031.067000px;}
.fc2_c01044{color:transparent;}
.fc1_c01044{color:rgb(128,128,128);}
.fc0_c01044{color:rgb(0,0,0);}
.fs7_c01044{font-size:48.000000px;}
.fs3_c01044{font-size:57.000000px;}
.fs0_c01044{font-size:72.000000px;}
.fs4_c01044{font-size:78.000000px;}
.fs2_c01044{font-size:81.000000px;}
.fs6_c01044{font-size:84.000000px;}
.fs5_c01044{font-size:87.000000px;}
.fs1_c01044{font-size:99.000000px;}
.y0_c01044{bottom:0.000000px;}
.y26_c01044{bottom:3.105000px;}
.y25_c01044{bottom:7.228369px;}
.y24_c01044{bottom:39.120000px;}
.y23_c01044{bottom:64.020000px;}
.y22_c01044{bottom:88.770000px;}
.y21_c01044{bottom:113.970000px;}
.y20_c01044{bottom:138.420000px;}
.y1f_c01044{bottom:163.020000px;}
.y1e_c01044{bottom:187.320000px;}
.y1d_c01044{bottom:211.920000px;}
.y1c_c01044{bottom:236.970000px;}
.y1b_c01044{bottom:261.120000px;}
.y1a_c01044{bottom:285.420000px;}
.y19_c01044{bottom:310.170000px;}
.y18_c01044{bottom:334.620000px;}
.y17_c01044{bottom:358.470000px;}
.y16_c01044{bottom:382.320000px;}
.y15_c01044{bottom:406.920000px;}
.y14_c01044{bottom:431.220000px;}
.y13_c01044{bottom:455.220000px;}
.y12_c01044{bottom:480.270000px;}
.y11_c01044{bottom:502.170000px;}
.y10_c01044{bottom:527.820000px;}
.yf_c01044{bottom:552.120000px;}
.ye_c01044{bottom:576.120000px;}
.yd_c01044{bottom:600.420000px;}
.yc_c01044{bottom:625.020000px;}
.yb_c01044{bottom:649.620000px;}
.ya_c01044{bottom:673.320000px;}
.y9_c01044{bottom:697.920000px;}
.y8_c01044{bottom:722.970000px;}
.y7_c01044{bottom:746.820000px;}
.y6_c01044{bottom:769.770000px;}
.y5_c01044{bottom:795.870000px;}
.y4_c01044{bottom:820.770000px;}
.y3_c01044{bottom:845.070000px;}
.y2_c01044{bottom:869.370000px;}
.y1_c01044{bottom:905.520000px;}
.h8_c01044{height:13.200073px;}
.h9_c01044{height:43.804688px;}
.h2_c01044{height:79.497070px;}
.h7_c01044{height:82.441406px;}
.h5_c01044{height:84.269531px;}
.h3_c01044{height:91.160156px;}
.h6_c01044{height:91.176000px;}
.h4_c01044{height:98.756836px;}
.h1_c01044{height:115.870605px;}
.h0_c01044{height:975.750000px;}
.w2_c01044{width:104.875500px;}
.w0_c01044{width:664.200000px;}
.w1_c01044{width:664.500000px;}
.x0_c01044{left:0.000000px;}
.xb_c01044{left:30.150000px;}
.x5_c01044{left:44.550000px;}
.x8_c01044{left:46.200000px;}
.x2_c01044{left:47.700000px;}
.x6_c01044{left:48.900000px;}
.xa_c01044{left:57.000000px;}
.x9_c01044{left:58.050000px;}
.x7_c01044{left:59.100000px;}
.x4_c01044{left:60.450000px;}
.x3_c01044{left:61.800000px;}
.x1_c01044{left:146.400000px;}
.xd_c01044{left:283.914230px;}
.xc_c01044{left:397.950000px;}
@media print{
.v0_c01044{vertical-align:0.000000pt;}
.ls1_c01044{letter-spacing:0.000000pt;}
.ls2_c01044{letter-spacing:2.666667pt;}
.ls3_c01044{letter-spacing:5.333333pt;}
.ls0_c01044{letter-spacing:12.090667pt;}
.ws3_c01044{word-spacing:-65.498667pt;}
.ws1_c01044{word-spacing:-18.000000pt;}
.ws0_c01044{word-spacing:-15.424000pt;}
.ws2_c01044{word-spacing:-12.210667pt;}
.ws4_c01044{word-spacing:-1.024000pt;}
.ws5_c01044{word-spacing:0.000000pt;}
._18_c01044{margin-left:-24.192000pt;}
._11_c01044{margin-left:-19.696000pt;}
._25_c01044{margin-left:-15.624000pt;}
._6_c01044{margin-left:-14.520000pt;}
._24_c01044{margin-left:-12.528000pt;}
._29_c01044{margin-left:-11.608000pt;}
._27_c01044{margin-left:-10.656000pt;}
._7_c01044{margin-left:-7.568000pt;}
._21_c01044{margin-left:-6.568000pt;}
._1e_c01044{margin-left:-5.248000pt;}
._8_c01044{margin-left:-4.312000pt;}
._5_c01044{margin-left:-2.992000pt;}
._4_c01044{margin-left:-1.584000pt;}
._f_c01044{width:1.776000pt;}
._d_c01044{width:2.840000pt;}
._a_c01044{width:3.904000pt;}
._16_c01044{width:4.832000pt;}
._e_c01044{width:5.736000pt;}
._1_c01044{width:6.656000pt;}
._b_c01044{width:7.984000pt;}
._0_c01044{width:9.472000pt;}
._13_c01044{width:10.426667pt;}
._1f_c01044{width:11.512000pt;}
._10_c01044{width:13.064000pt;}
._1b_c01044{width:14.296000pt;}
._1c_c01044{width:16.421333pt;}
._c_c01044{width:19.720000pt;}
._2_c01044{width:21.248000pt;}
._15_c01044{width:22.608000pt;}
._14_c01044{width:23.509333pt;}
._23_c01044{width:26.005333pt;}
._22_c01044{width:27.208000pt;}
._12_c01044{width:29.114667pt;}
._9_c01044{width:44.698667pt;}
._28_c01044{width:54.000000pt;}
._1a_c01044{width:63.256000pt;}
._26_c01044{width:71.064000pt;}
._3_c01044{width:124.608000pt;}
._19_c01044{width:139.320000pt;}
._1d_c01044{width:222.370667pt;}
._2a_c01044{width:347.594667pt;}
._20_c01044{width:496.090667pt;}
._17_c01044{width:916.504000pt;}
.fs7_c01044{font-size:42.666667pt;}
.fs3_c01044{font-size:50.666667pt;}
.fs0_c01044{font-size:64.000000pt;}
.fs4_c01044{font-size:69.333333pt;}
.fs2_c01044{font-size:72.000000pt;}
.fs6_c01044{font-size:74.666667pt;}
.fs5_c01044{font-size:77.333333pt;}
.fs1_c01044{font-size:88.000000pt;}
.y0_c01044{bottom:0.000000pt;}
.y26_c01044{bottom:2.760000pt;}
.y25_c01044{bottom:6.425217pt;}
.y24_c01044{bottom:34.773333pt;}
.y23_c01044{bottom:56.906667pt;}
.y22_c01044{bottom:78.906667pt;}
.y21_c01044{bottom:101.306667pt;}
.y20_c01044{bottom:123.040000pt;}
.y1f_c01044{bottom:144.906667pt;}
.y1e_c01044{bottom:166.506667pt;}
.y1d_c01044{bottom:188.373333pt;}
.y1c_c01044{bottom:210.640000pt;}
.y1b_c01044{bottom:232.106667pt;}
.y1a_c01044{bottom:253.706667pt;}
.y19_c01044{bottom:275.706667pt;}
.y18_c01044{bottom:297.440000pt;}
.y17_c01044{bottom:318.640000pt;}
.y16_c01044{bottom:339.840000pt;}
.y15_c01044{bottom:361.706667pt;}
.y14_c01044{bottom:383.306667pt;}
.y13_c01044{bottom:404.640000pt;}
.y12_c01044{bottom:426.906667pt;}
.y11_c01044{bottom:446.373333pt;}
.y10_c01044{bottom:469.173333pt;}
.yf_c01044{bottom:490.773333pt;}
.ye_c01044{bottom:512.106667pt;}
.yd_c01044{bottom:533.706667pt;}
.yc_c01044{bottom:555.573333pt;}
.yb_c01044{bottom:577.440000pt;}
.ya_c01044{bottom:598.506667pt;}
.y9_c01044{bottom:620.373333pt;}
.y8_c01044{bottom:642.640000pt;}
.y7_c01044{bottom:663.840000pt;}
.y6_c01044{bottom:684.240000pt;}
.y5_c01044{bottom:707.440000pt;}
.y4_c01044{bottom:729.573333pt;}
.y3_c01044{bottom:751.173333pt;}
.y2_c01044{bottom:772.773333pt;}
.y1_c01044{bottom:804.906667pt;}
.h8_c01044{height:11.733399pt;}
.h9_c01044{height:38.937500pt;}
.h2_c01044{height:70.664062pt;}
.h7_c01044{height:73.281250pt;}
.h5_c01044{height:74.906250pt;}
.h3_c01044{height:81.031250pt;}
.h6_c01044{height:81.045333pt;}
.h4_c01044{height:87.783854pt;}
.h1_c01044{height:102.996094pt;}
.h0_c01044{height:867.333333pt;}
.w2_c01044{width:93.222667pt;}
.w0_c01044{width:590.400000pt;}
.w1_c01044{width:590.666667pt;}
.x0_c01044{left:0.000000pt;}
.xb_c01044{left:26.800000pt;}
.x5_c01044{left:39.600000pt;}
.x8_c01044{left:41.066667pt;}
.x2_c01044{left:42.400000pt;}
.x6_c01044{left:43.466667pt;}
.xa_c01044{left:50.666667pt;}
.x9_c01044{left:51.600000pt;}
.x7_c01044{left:52.533333pt;}
.x4_c01044{left:53.733333pt;}
.x3_c01044{left:54.933333pt;}
.x1_c01044{left:130.133333pt;}
.xd_c01044{left:252.368205pt;}
.xc_c01044{left:353.733333pt;}
}





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

.ir_c01045:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01045{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01045;src:url('chunks/assets/font_4350a25b28a6c134cdc963a6.woff2')format("woff");}.ff1_c01045{font-family:ff1_c01045;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01045;src:url('chunks/assets/font_30943dc4aac1dedf7d9da108.woff2')format("woff");}.ff2_c01045{font-family:ff2_c01045;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01045;src:url('chunks/assets/font_d5ed16719756209ef1cc01f2.woff2')format("woff");}.ff3_c01045{font-family:ff3_c01045;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01045;src:url('chunks/assets/font_9e54e1a5222270e3310ae1b9.woff2')format("woff");}.ff4_c01045{font-family:ff4_c01045;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01045;src:url('chunks/assets/font_ab36b71491d27a5bc980c66e.woff2')format("woff");}.ff5_c01045{font-family:ff5_c01045;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01045;src:url('chunks/assets/font_f2b40321cae1701e464dafba.woff2')format("woff");}.ff6_c01045{font-family:ff6_c01045;line-height:1.437000;font-style:normal;font-weight: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_c01045;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c01045{font-family:ff7_c01045;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01045{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01045{vertical-align:0.000000px;}
.ls1_c01045{letter-spacing:0.000000px;}
.ls2_c01045{letter-spacing:3.000000px;}
.ls0_c01045{letter-spacing:6.000000px;}
.sc__c01045{text-shadow:none;}
.sc0_c01045{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01045{-webkit-text-stroke:0px transparent;}
.sc0_c01045{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c01045{word-spacing:-73.686000px;}
.ws1_c01045{word-spacing:-30.000000px;}
.ws4_c01045{word-spacing:-20.250000px;}
.ws0_c01045{word-spacing:-18.798000px;}
.ws2_c01045{word-spacing:-17.352000px;}
.ws5_c01045{word-spacing:0.000000px;}
._26_c01045{margin-left:-17.520000px;}
._10_c01045{margin-left:-13.368000px;}
._5_c01045{margin-left:-12.000000px;}
._20_c01045{margin-left:-10.800000px;}
._1a_c01045{margin-left:-6.807000px;}
._a_c01045{margin-left:-5.688000px;}
._e_c01045{margin-left:-3.609000px;}
._0_c01045{margin-left:-2.574000px;}
._4_c01045{margin-left:-1.416000px;}
._2_c01045{width:1.092000px;}
._9_c01045{width:2.418000px;}
._8_c01045{width:3.510000px;}
._7_c01045{width:4.680000px;}
._3_c01045{width:5.850000px;}
._1_c01045{width:7.872000px;}
._b_c01045{width:9.714000px;}
._f_c01045{width:10.830000px;}
._15_c01045{width:12.096000px;}
._c_c01045{width:14.016000px;}
._18_c01045{width:15.609000px;}
._d_c01045{width:16.674000px;}
._1e_c01045{width:17.853000px;}
._19_c01045{width:19.143000px;}
._29_c01045{width:20.943000px;}
._13_c01045{width:22.461000px;}
._17_c01045{width:25.608000px;}
._1c_c01045{width:27.345000px;}
._16_c01045{width:29.238000px;}
._1f_c01045{width:34.944000px;}
._12_c01045{width:99.492000px;}
._1b_c01045{width:100.920000px;}
._11_c01045{width:110.313000px;}
._24_c01045{width:129.855000px;}
._23_c01045{width:142.386000px;}
._6_c01045{width:146.328000px;}
._25_c01045{width:199.476000px;}
._1d_c01045{width:228.309000px;}
._21_c01045{width:234.279000px;}
._27_c01045{width:287.400000px;}
._22_c01045{width:293.535000px;}
._14_c01045{width:345.393000px;}
._28_c01045{width:686.700000px;}
.fc2_c01045{color:transparent;}
.fc1_c01045{color:rgb(128,128,128);}
.fc0_c01045{color:rgb(0,0,0);}
.fs7_c01045{font-size:48.000000px;}
.fs6_c01045{font-size:51.000000px;}
.fs2_c01045{font-size:72.000000px;}
.fs0_c01045{font-size:78.000000px;}
.fs3_c01045{font-size:81.000000px;}
.fs5_c01045{font-size:84.000000px;}
.fs4_c01045{font-size:87.000000px;}
.fs1_c01045{font-size:120.000000px;}
.y0_c01045{bottom:0.000000px;}
.y25_c01045{bottom:3.105000px;}
.y24_c01045{bottom:7.228371px;}
.y23_c01045{bottom:41.865000px;}
.y22_c01045{bottom:64.815000px;}
.y21_c01045{bottom:90.165000px;}
.y20_c01045{bottom:116.115000px;}
.y1f_c01045{bottom:140.715000px;}
.y1e_c01045{bottom:164.715000px;}
.y1d_c01045{bottom:189.765000px;}
.y1c_c01045{bottom:215.415000px;}
.y1b_c01045{bottom:238.665000px;}
.y1a_c01045{bottom:263.265000px;}
.y19_c01045{bottom:287.865000px;}
.y18_c01045{bottom:313.515000px;}
.y17_c01045{bottom:336.915000px;}
.y16_c01045{bottom:361.515000px;}
.y15_c01045{bottom:386.565000px;}
.y14_c01045{bottom:406.815000px;}
.y13_c01045{bottom:436.515000px;}
.y12_c01045{bottom:460.665000px;}
.y11_c01045{bottom:483.765000px;}
.y10_c01045{bottom:507.615000px;}
.yf_c01045{bottom:531.915000px;}
.ye_c01045{bottom:555.915000px;}
.yd_c01045{bottom:580.215000px;}
.yc_c01045{bottom:604.215000px;}
.yb_c01045{bottom:628.815000px;}
.ya_c01045{bottom:654.165000px;}
.y9_c01045{bottom:677.715000px;}
.y8_c01045{bottom:702.465000px;}
.y7_c01045{bottom:726.615000px;}
.y6_c01045{bottom:751.065000px;}
.y5_c01045{bottom:776.565000px;}
.y4_c01045{bottom:800.265000px;}
.y3_c01045{bottom:823.815000px;}
.y2_c01045{bottom:848.115000px;}
.y1_c01045{bottom:873.765000px;}
.h7_c01045{height:13.200074px;}
.h8_c01045{height:43.804688px;}
.h4_c01045{height:79.497070px;}
.h6_c01045{height:82.441406px;}
.h3_c01045{height:84.269531px;}
.h5_c01045{height:91.176000px;}
.h2_c01045{height:120.937500px;}
.h1_c01045{height:986.250000px;}
.h0_c01045{height:986.325000px;}
.w2_c01045{width:104.875500px;}
.w0_c01045{width:667.425000px;}
.w1_c01045{width:667.500000px;}
.x0_c01045{left:0.000000px;}
.x1_c01045{left:22.350000px;}
.x2_c01045{left:23.850000px;}
.x3_c01045{left:25.650000px;}
.x8_c01045{left:30.300000px;}
.xb_c01045{left:32.100000px;}
.xa_c01045{left:34.800000px;}
.x9_c01045{left:48.300000px;}
.xc_c01045{left:78.300000px;}
.x4_c01045{left:115.800000px;}
.x5_c01045{left:117.000000px;}
.x6_c01045{left:118.500000px;}
.x7_c01045{left:121.200000px;}
.xe_c01045{left:126.000000px;}
.xf_c01045{left:164.700000px;}
.xd_c01045{left:190.050000px;}
.x11_c01045{left:285.526749px;}
.x10_c01045{left:571.950000px;}
@media print{
.v0_c01045{vertical-align:0.000000pt;}
.ls1_c01045{letter-spacing:0.000000pt;}
.ls2_c01045{letter-spacing:2.666667pt;}
.ls0_c01045{letter-spacing:5.333333pt;}
.ws3_c01045{word-spacing:-65.498667pt;}
.ws1_c01045{word-spacing:-26.666667pt;}
.ws4_c01045{word-spacing:-18.000000pt;}
.ws0_c01045{word-spacing:-16.709333pt;}
.ws2_c01045{word-spacing:-15.424000pt;}
.ws5_c01045{word-spacing:0.000000pt;}
._26_c01045{margin-left:-15.573333pt;}
._10_c01045{margin-left:-11.882667pt;}
._5_c01045{margin-left:-10.666667pt;}
._20_c01045{margin-left:-9.600000pt;}
._1a_c01045{margin-left:-6.050667pt;}
._a_c01045{margin-left:-5.056000pt;}
._e_c01045{margin-left:-3.208000pt;}
._0_c01045{margin-left:-2.288000pt;}
._4_c01045{margin-left:-1.258667pt;}
._2_c01045{width:0.970667pt;}
._9_c01045{width:2.149333pt;}
._8_c01045{width:3.120000pt;}
._7_c01045{width:4.160000pt;}
._3_c01045{width:5.200000pt;}
._1_c01045{width:6.997333pt;}
._b_c01045{width:8.634667pt;}
._f_c01045{width:9.626667pt;}
._15_c01045{width:10.752000pt;}
._c_c01045{width:12.458667pt;}
._18_c01045{width:13.874667pt;}
._d_c01045{width:14.821333pt;}
._1e_c01045{width:15.869333pt;}
._19_c01045{width:17.016000pt;}
._29_c01045{width:18.616000pt;}
._13_c01045{width:19.965333pt;}
._17_c01045{width:22.762667pt;}
._1c_c01045{width:24.306667pt;}
._16_c01045{width:25.989333pt;}
._1f_c01045{width:31.061333pt;}
._12_c01045{width:88.437333pt;}
._1b_c01045{width:89.706667pt;}
._11_c01045{width:98.056000pt;}
._24_c01045{width:115.426667pt;}
._23_c01045{width:126.565333pt;}
._6_c01045{width:130.069333pt;}
._25_c01045{width:177.312000pt;}
._1d_c01045{width:202.941333pt;}
._21_c01045{width:208.248000pt;}
._27_c01045{width:255.466667pt;}
._22_c01045{width:260.920000pt;}
._14_c01045{width:307.016000pt;}
._28_c01045{width:610.400000pt;}
.fs7_c01045{font-size:42.666667pt;}
.fs6_c01045{font-size:45.333333pt;}
.fs2_c01045{font-size:64.000000pt;}
.fs0_c01045{font-size:69.333333pt;}
.fs3_c01045{font-size:72.000000pt;}
.fs5_c01045{font-size:74.666667pt;}
.fs4_c01045{font-size:77.333333pt;}
.fs1_c01045{font-size:106.666667pt;}
.y0_c01045{bottom:0.000000pt;}
.y25_c01045{bottom:2.760000pt;}
.y24_c01045{bottom:6.425219pt;}
.y23_c01045{bottom:37.213333pt;}
.y22_c01045{bottom:57.613333pt;}
.y21_c01045{bottom:80.146667pt;}
.y20_c01045{bottom:103.213333pt;}
.y1f_c01045{bottom:125.080000pt;}
.y1e_c01045{bottom:146.413333pt;}
.y1d_c01045{bottom:168.680000pt;}
.y1c_c01045{bottom:191.480000pt;}
.y1b_c01045{bottom:212.146667pt;}
.y1a_c01045{bottom:234.013333pt;}
.y19_c01045{bottom:255.880000pt;}
.y18_c01045{bottom:278.680000pt;}
.y17_c01045{bottom:299.480000pt;}
.y16_c01045{bottom:321.346667pt;}
.y15_c01045{bottom:343.613333pt;}
.y14_c01045{bottom:361.613333pt;}
.y13_c01045{bottom:388.013333pt;}
.y12_c01045{bottom:409.480000pt;}
.y11_c01045{bottom:430.013333pt;}
.y10_c01045{bottom:451.213333pt;}
.yf_c01045{bottom:472.813333pt;}
.ye_c01045{bottom:494.146667pt;}
.yd_c01045{bottom:515.746667pt;}
.yc_c01045{bottom:537.080000pt;}
.yb_c01045{bottom:558.946667pt;}
.ya_c01045{bottom:581.480000pt;}
.y9_c01045{bottom:602.413333pt;}
.y8_c01045{bottom:624.413333pt;}
.y7_c01045{bottom:645.880000pt;}
.y6_c01045{bottom:667.613333pt;}
.y5_c01045{bottom:690.280000pt;}
.y4_c01045{bottom:711.346667pt;}
.y3_c01045{bottom:732.280000pt;}
.y2_c01045{bottom:753.880000pt;}
.y1_c01045{bottom:776.680000pt;}
.h7_c01045{height:11.733399pt;}
.h8_c01045{height:38.937500pt;}
.h4_c01045{height:70.664062pt;}
.h6_c01045{height:73.281250pt;}
.h3_c01045{height:74.906250pt;}
.h5_c01045{height:81.045333pt;}
.h2_c01045{height:107.500000pt;}
.h1_c01045{height:876.666667pt;}
.h0_c01045{height:876.733333pt;}
.w2_c01045{width:93.222667pt;}
.w0_c01045{width:593.266667pt;}
.w1_c01045{width:593.333333pt;}
.x0_c01045{left:0.000000pt;}
.x1_c01045{left:19.866667pt;}
.x2_c01045{left:21.200000pt;}
.x3_c01045{left:22.800000pt;}
.x8_c01045{left:26.933333pt;}
.xb_c01045{left:28.533333pt;}
.xa_c01045{left:30.933333pt;}
.x9_c01045{left:42.933333pt;}
.xc_c01045{left:69.600000pt;}
.x4_c01045{left:102.933333pt;}
.x5_c01045{left:104.000000pt;}
.x6_c01045{left:105.333333pt;}
.x7_c01045{left:107.733333pt;}
.xe_c01045{left:112.000000pt;}
.xf_c01045{left:146.400000pt;}
.xd_c01045{left:168.933333pt;}
.x11_c01045{left:253.801554pt;}
.x10_c01045{left:508.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_c01046 {
    display:none;
  }
  .loading-indicator_c01046.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01046 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01046 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01046" -> "#page-container .classname_c01046")
 */
.pf_c01046 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01046 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01046.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01046 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01046 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01046 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01046 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01046 {overflow:visible;}
  }
}
.c_c01046 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01046 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01046:after { /* webkit #35443 */
  content: '';
}
.t_c01046:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01046 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01046 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01046 { /* info for Javascript */
  display:none;
}
.l_c01046 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01046 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01046 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01046:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01046{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01046;src:url('chunks/assets/font_00021cfb209e47dff4703f28.woff2')format("woff");}.ff1_c01046{font-family:ff1_c01046;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01046;src:url('chunks/assets/font_e77522df588d33ffb3899af8.woff2')format("woff");}.ff2_c01046{font-family:ff2_c01046;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01046;src:url('chunks/assets/font_18e468474ea8345a449cb704.woff2')format("woff");}.ff3_c01046{font-family:ff3_c01046;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01046;src:url('chunks/assets/font_f496a9e0ed33047de59eadb1.woff2')format("woff");}.ff4_c01046{font-family:ff4_c01046;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01046;src:url('chunks/assets/font_b8447d5fab8fb7367cf68438.woff2')format("woff");}.ff5_c01046{font-family:ff5_c01046;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01046;src:url('chunks/assets/font_315b5f44a5a8d522a694063b.woff2')format("woff");}.ff6_c01046{font-family:ff6_c01046;line-height:1.284180;font-style:normal;font-weight: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_c01046;src:url('chunks/assets/font_278285564f27a92fba1bacc5.woff2')format("woff");}.ff7_c01046{font-family:ff7_c01046;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c01046;src:url('chunks/assets/font_39a5c9e48c1147d28cc32302.woff2')format("woff");}.ff8_c01046{font-family:ff8_c01046;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c01046;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff9_c01046{font-family:ff9_c01046;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01046{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01046{vertical-align:0.000000px;}
.v1_c01046{vertical-align:155.400000px;}
.ls4_c01046{letter-spacing:-3.000000px;}
.ls1_c01046{letter-spacing:0.000000px;}
.ls3_c01046{letter-spacing:3.000000px;}
.ls2_c01046{letter-spacing:6.000000px;}
.ls5_c01046{letter-spacing:9.000000px;}
.ls0_c01046{letter-spacing:17.802000px;}
.sc__c01046{text-shadow:none;}
.sc0_c01046{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01046{-webkit-text-stroke:0px transparent;}
.sc0_c01046{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c01046{word-spacing:-80.100000px;}
.ws0_c01046{word-spacing:-73.686000px;}
.ws3_c01046{word-spacing:-17.352000px;}
.ws1_c01046{word-spacing:-13.737000px;}
.ws2_c01046{word-spacing:-12.750000px;}
.ws5_c01046{word-spacing:0.000000px;}
._25_c01046{margin-left:-32.826000px;}
._26_c01046{margin-left:-23.316000px;}
._1d_c01046{margin-left:-19.548000px;}
._24_c01046{margin-left:-17.250000px;}
._22_c01046{margin-left:-15.300000px;}
._f_c01046{margin-left:-14.094000px;}
._e_c01046{margin-left:-11.700000px;}
._9_c01046{margin-left:-9.696000px;}
._21_c01046{margin-left:-8.385000px;}
._20_c01046{margin-left:-7.209000px;}
._8_c01046{margin-left:-6.075000px;}
._12_c01046{margin-left:-4.455000px;}
._1_c01046{margin-left:-3.159000px;}
._23_c01046{margin-left:-2.145000px;}
._11_c01046{margin-left:-1.134000px;}
._2_c01046{width:1.134000px;}
._3_c01046{width:2.268000px;}
._4_c01046{width:3.888000px;}
._5_c01046{width:5.022000px;}
._6_c01046{width:6.075000px;}
._b_c01046{width:7.614000px;}
._0_c01046{width:9.639000px;}
._a_c01046{width:11.016000px;}
._c_c01046{width:12.150000px;}
._7_c01046{width:13.446000px;}
._13_c01046{width:15.471000px;}
._14_c01046{width:17.658000px;}
._1a_c01046{width:20.349000px;}
._1b_c01046{width:21.384000px;}
._17_c01046{width:22.842000px;}
._16_c01046{width:23.976000px;}
._1f_c01046{width:27.621000px;}
._15_c01046{width:28.836000px;}
._d_c01046{width:30.639000px;}
._1e_c01046{width:31.752000px;}
._19_c01046{width:32.856000px;}
._10_c01046{width:34.425000px;}
._18_c01046{width:38.799000px;}
._27_c01046{width:272.580000px;}
._1c_c01046{width:327.402000px;}
.fc2_c01046{color:transparent;}
.fc1_c01046{color:rgb(128,128,128);}
.fc0_c01046{color:rgb(0,0,0);}
.fs7_c01046{font-size:48.000000px;}
.fs3_c01046{font-size:57.000000px;}
.fs5_c01046{font-size:63.000000px;}
.fs9_c01046{font-size:69.000000px;}
.fs2_c01046{font-size:72.000000px;}
.fs8_c01046{font-size:75.000000px;}
.fs4_c01046{font-size:78.000000px;}
.fs0_c01046{font-size:81.000000px;}
.fs1_c01046{font-size:87.000000px;}
.fsa_c01046{font-size:105.000000px;}
.fs6_c01046{font-size:300.000000px;}
.y0_c01046{bottom:0.000000px;}
.y24_c01046{bottom:3.105000px;}
.y23_c01046{bottom:7.228369px;}
.y22_c01046{bottom:59.670000px;}
.y21_c01046{bottom:85.620000px;}
.y20_c01046{bottom:112.770000px;}
.y1f_c01046{bottom:135.570000px;}
.y1d_c01046{bottom:144.720000px;}
.y1e_c01046{bottom:159.870000px;}
.y1c_c01046{bottom:207.270000px;}
.y1b_c01046{bottom:232.470000px;}
.y1a_c01046{bottom:280.470000px;}
.y19_c01046{bottom:305.820000px;}
.y18_c01046{bottom:330.420000px;}
.y17_c01046{bottom:354.420000px;}
.y16_c01046{bottom:378.270000px;}
.y15_c01046{bottom:402.270000px;}
.y14_c01046{bottom:426.270000px;}
.y13_c01046{bottom:450.270000px;}
.y12_c01046{bottom:474.570000px;}
.y11_c01046{bottom:498.870000px;}
.y10_c01046{bottom:523.470000px;}
.yf_c01046{bottom:547.020000px;}
.ye_c01046{bottom:570.720000px;}
.yd_c01046{bottom:594.720000px;}
.yc_c01046{bottom:618.570000px;}
.yb_c01046{bottom:642.270000px;}
.ya_c01046{bottom:666.870000px;}
.y9_c01046{bottom:691.170000px;}
.y8_c01046{bottom:715.170000px;}
.y7_c01046{bottom:741.420000px;}
.y6_c01046{bottom:764.070000px;}
.y5_c01046{bottom:788.370000px;}
.y4_c01046{bottom:812.970000px;}
.y3_c01046{bottom:836.970000px;}
.y2_c01046{bottom:862.020000px;}
.y1_c01046{bottom:886.620000px;}
.hb_c01046{height:13.200073px;}
.hc_c01046{height:43.804688px;}
.h6_c01046{height:66.713379px;}
.h4_c01046{height:72.168457px;}
.h8_c01046{height:73.571777px;}
.h3_c01046{height:79.497070px;}
.h9_c01046{height:84.269531px;}
.h2_c01046{height:91.176000px;}
.h5_c01046{height:98.756836px;}
.ha_c01046{height:103.000488px;}
.h7_c01046{height:320.100000px;}
.h1_c01046{height:986.250000px;}
.h0_c01046{height:986.550000px;}
.w1_c01046{width:104.875500px;}
.w0_c01046{width:672.000000px;}
.x0_c01046{left:0.000000px;}
.x1_c01046{left:58.500000px;}
.x3_c01046{left:59.700000px;}
.x4_c01046{left:60.750000px;}
.x5_c01046{left:62.700000px;}
.x2_c01046{left:64.350000px;}
.x8_c01046{left:66.150000px;}
.x6_c01046{left:99.600000px;}
.xa_c01046{left:107.700000px;}
.x9_c01046{left:115.050000px;}
.x7_c01046{left:285.900000px;}
.xc_c01046{left:287.814240px;}
.xb_c01046{left:410.100000px;}
@media print{
.v0_c01046{vertical-align:0.000000pt;}
.v1_c01046{vertical-align:138.133333pt;}
.ls4_c01046{letter-spacing:-2.666667pt;}
.ls1_c01046{letter-spacing:0.000000pt;}
.ls3_c01046{letter-spacing:2.666667pt;}
.ls2_c01046{letter-spacing:5.333333pt;}
.ls5_c01046{letter-spacing:8.000000pt;}
.ls0_c01046{letter-spacing:15.824000pt;}
.ws4_c01046{word-spacing:-71.200000pt;}
.ws0_c01046{word-spacing:-65.498667pt;}
.ws3_c01046{word-spacing:-15.424000pt;}
.ws1_c01046{word-spacing:-12.210667pt;}
.ws2_c01046{word-spacing:-11.333333pt;}
.ws5_c01046{word-spacing:0.000000pt;}
._25_c01046{margin-left:-29.178667pt;}
._26_c01046{margin-left:-20.725333pt;}
._1d_c01046{margin-left:-17.376000pt;}
._24_c01046{margin-left:-15.333333pt;}
._22_c01046{margin-left:-13.600000pt;}
._f_c01046{margin-left:-12.528000pt;}
._e_c01046{margin-left:-10.400000pt;}
._9_c01046{margin-left:-8.618667pt;}
._21_c01046{margin-left:-7.453333pt;}
._20_c01046{margin-left:-6.408000pt;}
._8_c01046{margin-left:-5.400000pt;}
._12_c01046{margin-left:-3.960000pt;}
._1_c01046{margin-left:-2.808000pt;}
._23_c01046{margin-left:-1.906667pt;}
._11_c01046{margin-left:-1.008000pt;}
._2_c01046{width:1.008000pt;}
._3_c01046{width:2.016000pt;}
._4_c01046{width:3.456000pt;}
._5_c01046{width:4.464000pt;}
._6_c01046{width:5.400000pt;}
._b_c01046{width:6.768000pt;}
._0_c01046{width:8.568000pt;}
._a_c01046{width:9.792000pt;}
._c_c01046{width:10.800000pt;}
._7_c01046{width:11.952000pt;}
._13_c01046{width:13.752000pt;}
._14_c01046{width:15.696000pt;}
._1a_c01046{width:18.088000pt;}
._1b_c01046{width:19.008000pt;}
._17_c01046{width:20.304000pt;}
._16_c01046{width:21.312000pt;}
._1f_c01046{width:24.552000pt;}
._15_c01046{width:25.632000pt;}
._d_c01046{width:27.234667pt;}
._1e_c01046{width:28.224000pt;}
._19_c01046{width:29.205333pt;}
._10_c01046{width:30.600000pt;}
._18_c01046{width:34.488000pt;}
._27_c01046{width:242.293333pt;}
._1c_c01046{width:291.024000pt;}
.fs7_c01046{font-size:42.666667pt;}
.fs3_c01046{font-size:50.666667pt;}
.fs5_c01046{font-size:56.000000pt;}
.fs9_c01046{font-size:61.333333pt;}
.fs2_c01046{font-size:64.000000pt;}
.fs8_c01046{font-size:66.666667pt;}
.fs4_c01046{font-size:69.333333pt;}
.fs0_c01046{font-size:72.000000pt;}
.fs1_c01046{font-size:77.333333pt;}
.fsa_c01046{font-size:93.333333pt;}
.fs6_c01046{font-size:266.666667pt;}
.y0_c01046{bottom:0.000000pt;}
.y24_c01046{bottom:2.760000pt;}
.y23_c01046{bottom:6.425217pt;}
.y22_c01046{bottom:53.040000pt;}
.y21_c01046{bottom:76.106667pt;}
.y20_c01046{bottom:100.240000pt;}
.y1f_c01046{bottom:120.506667pt;}
.y1d_c01046{bottom:128.640000pt;}
.y1e_c01046{bottom:142.106667pt;}
.y1c_c01046{bottom:184.240000pt;}
.y1b_c01046{bottom:206.640000pt;}
.y1a_c01046{bottom:249.306667pt;}
.y19_c01046{bottom:271.840000pt;}
.y18_c01046{bottom:293.706667pt;}
.y17_c01046{bottom:315.040000pt;}
.y16_c01046{bottom:336.240000pt;}
.y15_c01046{bottom:357.573333pt;}
.y14_c01046{bottom:378.906667pt;}
.y13_c01046{bottom:400.240000pt;}
.y12_c01046{bottom:421.840000pt;}
.y11_c01046{bottom:443.440000pt;}
.y10_c01046{bottom:465.306667pt;}
.yf_c01046{bottom:486.240000pt;}
.ye_c01046{bottom:507.306667pt;}
.yd_c01046{bottom:528.640000pt;}
.yc_c01046{bottom:549.840000pt;}
.yb_c01046{bottom:570.906667pt;}
.ya_c01046{bottom:592.773333pt;}
.y9_c01046{bottom:614.373333pt;}
.y8_c01046{bottom:635.706667pt;}
.y7_c01046{bottom:659.040000pt;}
.y6_c01046{bottom:679.173333pt;}
.y5_c01046{bottom:700.773333pt;}
.y4_c01046{bottom:722.640000pt;}
.y3_c01046{bottom:743.973333pt;}
.y2_c01046{bottom:766.240000pt;}
.y1_c01046{bottom:788.106667pt;}
.hb_c01046{height:11.733399pt;}
.hc_c01046{height:38.937500pt;}
.h6_c01046{height:59.300781pt;}
.h4_c01046{height:64.149740pt;}
.h8_c01046{height:65.397135pt;}
.h3_c01046{height:70.664062pt;}
.h9_c01046{height:74.906250pt;}
.h2_c01046{height:81.045333pt;}
.h5_c01046{height:87.783854pt;}
.ha_c01046{height:91.555990pt;}
.h7_c01046{height:284.533333pt;}
.h1_c01046{height:876.666667pt;}
.h0_c01046{height:876.933333pt;}
.w1_c01046{width:93.222667pt;}
.w0_c01046{width:597.333333pt;}
.x0_c01046{left:0.000000pt;}
.x1_c01046{left:52.000000pt;}
.x3_c01046{left:53.066667pt;}
.x4_c01046{left:54.000000pt;}
.x5_c01046{left:55.733333pt;}
.x2_c01046{left:57.200000pt;}
.x8_c01046{left:58.800000pt;}
.x6_c01046{left:88.533333pt;}
.xa_c01046{left:95.733333pt;}
.x9_c01046{left:102.266667pt;}
.x7_c01046{left:254.133333pt;}
.xc_c01046{left:255.834880pt;}
.xb_c01046{left:364.533333pt;}
}





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

.ir_c01047:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01047{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01047;src:url('chunks/assets/font_18e7c33f877ff72664b04fbf.woff2')format("woff");}.ff1_c01047{font-family:ff1_c01047;line-height:1.401855;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01047;src:url('chunks/assets/font_a0e7b6f7f1dfb8983b01c583.woff2')format("woff");}.ff2_c01047{font-family:ff2_c01047;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01047;src:url('chunks/assets/font_a105adba2846c177a12a1e8b.woff2')format("woff");}.ff3_c01047{font-family:ff3_c01047;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01047;src:url('chunks/assets/font_ce749e5aeba7da22091cd583.woff2')format("woff");}.ff4_c01047{font-family:ff4_c01047;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01047;src:url('chunks/assets/font_cce381cde343e5d1f81e02f0.woff2')format("woff");}.ff5_c01047{font-family:ff5_c01047;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01047;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c01047{font-family:ff6_c01047;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01047{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01047{vertical-align:0.000000px;}
.v1_c01047{vertical-align:34.800000px;}
.ls2_c01047{letter-spacing:-9.000000px;}
.ls0_c01047{letter-spacing:-3.000000px;}
.ls1_c01047{letter-spacing:0.000000px;}
.sc__c01047{text-shadow:none;}
.sc0_c01047{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01047{-webkit-text-stroke:0px transparent;}
.sc0_c01047{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c01047{word-spacing:-47.100000px;}
.ws2_c01047{word-spacing:-21.672000px;}
.ws1_c01047{word-spacing:-17.352000px;}
.ws4_c01047{word-spacing:0.000000px;}
.ws0_c01047{word-spacing:63.618000px;}
._12_c01047{margin-left:-24.705000px;}
._23_c01047{margin-left:-21.870000px;}
._24_c01047{margin-left:-20.574000px;}
._d_c01047{margin-left:-19.440000px;}
._15_c01047{margin-left:-17.973000px;}
._25_c01047{margin-left:-15.912000px;}
._11_c01047{margin-left:-12.474000px;}
._1d_c01047{margin-left:-11.034000px;}
._5_c01047{margin-left:-9.624000px;}
._4_c01047{margin-left:-8.352000px;}
._b_c01047{margin-left:-7.209000px;}
._3_c01047{margin-left:-5.904000px;}
._14_c01047{margin-left:-4.032000px;}
._c_c01047{margin-left:-2.628000px;}
._1_c01047{margin-left:-1.584000px;}
._a_c01047{width:1.215000px;}
._7_c01047{width:3.078000px;}
._0_c01047{width:4.482000px;}
._8_c01047{width:6.363000px;}
._10_c01047{width:8.217000px;}
._16_c01047{width:9.549000px;}
._18_c01047{width:10.854000px;}
._9_c01047{width:12.069000px;}
._2_c01047{width:14.184000px;}
._19_c01047{width:16.218000px;}
._f_c01047{width:17.415000px;}
._1e_c01047{width:18.498000px;}
._1a_c01047{width:22.644000px;}
._20_c01047{width:29.043000px;}
._17_c01047{width:36.882000px;}
._13_c01047{width:61.641000px;}
._e_c01047{width:74.844000px;}
._22_c01047{width:148.308000px;}
._21_c01047{width:229.080000px;}
._1b_c01047{width:292.086000px;}
._1f_c01047{width:355.011000px;}
._1c_c01047{width:365.751000px;}
._6_c01047{width:1064.259000px;}
.fc2_c01047{color:transparent;}
.fc1_c01047{color:rgb(128,128,128);}
.fc0_c01047{color:rgb(0,0,0);}
.fs4_c01047{font-size:48.000000px;}
.fs0_c01047{font-size:54.000000px;}
.fs1_c01047{font-size:72.000000px;}
.fs2_c01047{font-size:81.000000px;}
.fs3_c01047{font-size:102.000000px;}
.y0_c01047{bottom:0.000000px;}
.y25_c01047{bottom:3.105000px;}
.y24_c01047{bottom:7.228355px;}
.y23_c01047{bottom:51.285000px;}
.y22_c01047{bottom:74.535000px;}
.y21_c01047{bottom:99.585000px;}
.y20_c01047{bottom:124.485000px;}
.y1f_c01047{bottom:149.385000px;}
.y1e_c01047{bottom:173.685000px;}
.y1d_c01047{bottom:198.135000px;}
.y1c_c01047{bottom:222.735000px;}
.y1b_c01047{bottom:247.635000px;}
.y1a_c01047{bottom:271.935000px;}
.y19_c01047{bottom:296.235000px;}
.y18_c01047{bottom:320.535000px;}
.y17_c01047{bottom:344.535000px;}
.y16_c01047{bottom:369.585000px;}
.y15_c01047{bottom:397.485000px;}
.y14_c01047{bottom:420.735000px;}
.y13_c01047{bottom:443.685000px;}
.y12_c01047{bottom:467.385000px;}
.y11_c01047{bottom:490.935000px;}
.y10_c01047{bottom:515.385000px;}
.yf_c01047{bottom:539.235000px;}
.ye_c01047{bottom:563.235000px;}
.yd_c01047{bottom:587.835000px;}
.yc_c01047{bottom:612.135000px;}
.yb_c01047{bottom:636.735000px;}
.ya_c01047{bottom:660.435000px;}
.y9_c01047{bottom:685.035000px;}
.y8_c01047{bottom:709.635000px;}
.y7_c01047{bottom:734.385000px;}
.y6_c01047{bottom:758.385000px;}
.y5_c01047{bottom:783.285000px;}
.y4_c01047{bottom:806.835000px;}
.y3_c01047{bottom:831.585000px;}
.y2_c01047{bottom:854.835000px;}
.y1_c01047{bottom:869.385000px;}
.h6_c01047{height:13.200074px;}
.h7_c01047{height:43.804688px;}
.h3_c01047{height:79.497070px;}
.h4_c01047{height:84.269531px;}
.h5_c01047{height:104.839927px;}
.h2_c01047{height:119.069531px;}
.h1_c01047{height:975.000000px;}
.h0_c01047{height:975.225000px;}
.w2_c01047{width:104.875500px;}
.w0_c01047{width:659.850000px;}
.w1_c01047{width:660.000000px;}
.x0_c01047{left:0.000000px;}
.xc_c01047{left:26.550000px;}
.x6_c01047{left:28.350000px;}
.x1_c01047{left:29.700000px;}
.xe_c01047{left:42.450000px;}
.x2_c01047{left:75.600000px;}
.x3_c01047{left:87.300000px;}
.x11_c01047{left:103.650000px;}
.x10_c01047{left:105.000000px;}
.xb_c01047{left:112.350000px;}
.x9_c01047{left:113.400000px;}
.xf_c01047{left:115.350000px;}
.xd_c01047{left:116.700000px;}
.xa_c01047{left:118.200000px;}
.x8_c01047{left:119.250000px;}
.x7_c01047{left:120.450000px;}
.x4_c01047{left:121.500000px;}
.x5_c01047{left:122.550000px;}
.x13_c01047{left:281.739258px;}
.x12_c01047{left:586.950000px;}
@media print{
.v0_c01047{vertical-align:0.000000pt;}
.v1_c01047{vertical-align:30.933333pt;}
.ls2_c01047{letter-spacing:-8.000000pt;}
.ls0_c01047{letter-spacing:-2.666667pt;}
.ls1_c01047{letter-spacing:0.000000pt;}
.ws3_c01047{word-spacing:-41.866667pt;}
.ws2_c01047{word-spacing:-19.264000pt;}
.ws1_c01047{word-spacing:-15.424000pt;}
.ws4_c01047{word-spacing:0.000000pt;}
.ws0_c01047{word-spacing:56.549333pt;}
._12_c01047{margin-left:-21.960000pt;}
._23_c01047{margin-left:-19.440000pt;}
._24_c01047{margin-left:-18.288000pt;}
._d_c01047{margin-left:-17.280000pt;}
._15_c01047{margin-left:-15.976000pt;}
._25_c01047{margin-left:-14.144000pt;}
._11_c01047{margin-left:-11.088000pt;}
._1d_c01047{margin-left:-9.808000pt;}
._5_c01047{margin-left:-8.554667pt;}
._4_c01047{margin-left:-7.424000pt;}
._b_c01047{margin-left:-6.408000pt;}
._3_c01047{margin-left:-5.248000pt;}
._14_c01047{margin-left:-3.584000pt;}
._c_c01047{margin-left:-2.336000pt;}
._1_c01047{margin-left:-1.408000pt;}
._a_c01047{width:1.080000pt;}
._7_c01047{width:2.736000pt;}
._0_c01047{width:3.984000pt;}
._8_c01047{width:5.656000pt;}
._10_c01047{width:7.304000pt;}
._16_c01047{width:8.488000pt;}
._18_c01047{width:9.648000pt;}
._9_c01047{width:10.728000pt;}
._2_c01047{width:12.608000pt;}
._19_c01047{width:14.416000pt;}
._f_c01047{width:15.480000pt;}
._1e_c01047{width:16.442667pt;}
._1a_c01047{width:20.128000pt;}
._20_c01047{width:25.816000pt;}
._17_c01047{width:32.784000pt;}
._13_c01047{width:54.792000pt;}
._e_c01047{width:66.528000pt;}
._22_c01047{width:131.829333pt;}
._21_c01047{width:203.626667pt;}
._1b_c01047{width:259.632000pt;}
._1f_c01047{width:315.565333pt;}
._1c_c01047{width:325.112000pt;}
._6_c01047{width:946.008000pt;}
.fs4_c01047{font-size:42.666667pt;}
.fs0_c01047{font-size:48.000000pt;}
.fs1_c01047{font-size:64.000000pt;}
.fs2_c01047{font-size:72.000000pt;}
.fs3_c01047{font-size:90.666667pt;}
.y0_c01047{bottom:0.000000pt;}
.y25_c01047{bottom:2.760000pt;}
.y24_c01047{bottom:6.425204pt;}
.y23_c01047{bottom:45.586667pt;}
.y22_c01047{bottom:66.253333pt;}
.y21_c01047{bottom:88.520000pt;}
.y20_c01047{bottom:110.653333pt;}
.y1f_c01047{bottom:132.786667pt;}
.y1e_c01047{bottom:154.386667pt;}
.y1d_c01047{bottom:176.120000pt;}
.y1c_c01047{bottom:197.986667pt;}
.y1b_c01047{bottom:220.120000pt;}
.y1a_c01047{bottom:241.720000pt;}
.y19_c01047{bottom:263.320000pt;}
.y18_c01047{bottom:284.920000pt;}
.y17_c01047{bottom:306.253333pt;}
.y16_c01047{bottom:328.520000pt;}
.y15_c01047{bottom:353.320000pt;}
.y14_c01047{bottom:373.986667pt;}
.y13_c01047{bottom:394.386667pt;}
.y12_c01047{bottom:415.453333pt;}
.y11_c01047{bottom:436.386667pt;}
.y10_c01047{bottom:458.120000pt;}
.yf_c01047{bottom:479.320000pt;}
.ye_c01047{bottom:500.653333pt;}
.yd_c01047{bottom:522.520000pt;}
.yc_c01047{bottom:544.120000pt;}
.yb_c01047{bottom:565.986667pt;}
.ya_c01047{bottom:587.053333pt;}
.y9_c01047{bottom:608.920000pt;}
.y8_c01047{bottom:630.786667pt;}
.y7_c01047{bottom:652.786667pt;}
.y6_c01047{bottom:674.120000pt;}
.y5_c01047{bottom:696.253333pt;}
.y4_c01047{bottom:717.186667pt;}
.y3_c01047{bottom:739.186667pt;}
.y2_c01047{bottom:759.853333pt;}
.y1_c01047{bottom:772.786667pt;}
.h6_c01047{height:11.733399pt;}
.h7_c01047{height:38.937500pt;}
.h3_c01047{height:70.664062pt;}
.h4_c01047{height:74.906250pt;}
.h5_c01047{height:93.191046pt;}
.h2_c01047{height:105.839583pt;}
.h1_c01047{height:866.666667pt;}
.h0_c01047{height:866.866667pt;}
.w2_c01047{width:93.222667pt;}
.w0_c01047{width:586.533333pt;}
.w1_c01047{width:586.666667pt;}
.x0_c01047{left:0.000000pt;}
.xc_c01047{left:23.600000pt;}
.x6_c01047{left:25.200000pt;}
.x1_c01047{left:26.400000pt;}
.xe_c01047{left:37.733333pt;}
.x2_c01047{left:67.200000pt;}
.x3_c01047{left:77.600000pt;}
.x11_c01047{left:92.133333pt;}
.x10_c01047{left:93.333333pt;}
.xb_c01047{left:99.866667pt;}
.x9_c01047{left:100.800000pt;}
.xf_c01047{left:102.533333pt;}
.xd_c01047{left:103.733333pt;}
.xa_c01047{left:105.066667pt;}
.x8_c01047{left:106.000000pt;}
.x7_c01047{left:107.066667pt;}
.x4_c01047{left:108.000000pt;}
.x5_c01047{left:108.933333pt;}
.x13_c01047{left:250.434896pt;}
.x12_c01047{left:521.733333pt;}
}





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

.ir_c01048:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01048{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01048;src:url('chunks/assets/font_4cc449919a1b2a285c5c131d.woff2')format("woff");}.ff1_c01048{font-family:ff1_c01048;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01048;src:url('chunks/assets/font_ee674b446f4096c9bb6cd794.woff2')format("woff");}.ff2_c01048{font-family:ff2_c01048;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01048;src:url('chunks/assets/font_b42a746daf61b84cce72bb0f.woff2')format("woff");}.ff3_c01048{font-family:ff3_c01048;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01048;src:url('chunks/assets/font_ea6564f82469c512f89959ef.woff2')format("woff");}.ff4_c01048{font-family:ff4_c01048;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01048;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff5_c01048{font-family:ff5_c01048;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01048;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c01048{font-family:ff6_c01048;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01048{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01048{vertical-align:0.000000px;}
.ls1_c01048{letter-spacing:-9.000000px;}
.ls0_c01048{letter-spacing:0.000000px;}
.sc__c01048{text-shadow:none;}
.sc0_c01048{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01048{-webkit-text-stroke:0px transparent;}
.sc0_c01048{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01048{word-spacing:0.000000px;}
._1d_c01048{margin-left:-34.836000px;}
._1a_c01048{margin-left:-32.130000px;}
._1b_c01048{margin-left:-30.939000px;}
._18_c01048{margin-left:-29.400000px;}
._14_c01048{margin-left:-24.300000px;}
._16_c01048{margin-left:-16.767000px;}
._1e_c01048{margin-left:-15.147000px;}
._1c_c01048{margin-left:-13.872000px;}
._17_c01048{margin-left:-11.907000px;}
._19_c01048{margin-left:-9.894000px;}
._10_c01048{margin-left:-8.262000px;}
._1_c01048{margin-left:-6.237000px;}
._9_c01048{margin-left:-4.941000px;}
._4_c01048{margin-left:-3.321000px;}
._8_c01048{margin-left:-2.187000px;}
._b_c01048{margin-left:-1.050000px;}
._5_c01048{width:1.215000px;}
._0_c01048{width:2.430000px;}
._3_c01048{width:3.726000px;}
._2_c01048{width:4.860000px;}
._7_c01048{width:5.994000px;}
._a_c01048{width:7.857000px;}
._d_c01048{width:9.396000px;}
._6_c01048{width:10.449000px;}
._c_c01048{width:11.907000px;}
._f_c01048{width:13.851000px;}
._e_c01048{width:15.633000px;}
._20_c01048{width:25.200000px;}
._1f_c01048{width:30.345000px;}
._15_c01048{width:49.896000px;}
._11_c01048{width:58.806000px;}
._13_c01048{width:78.570000px;}
._21_c01048{width:245.700000px;}
._12_c01048{width:319.707000px;}
.fc2_c01048{color:transparent;}
.fc1_c01048{color:rgb(128,128,128);}
.fc0_c01048{color:rgb(0,0,0);}
.fs4_c01048{font-size:48.000000px;}
.fs1_c01048{font-size:72.000000px;}
.fs0_c01048{font-size:81.000000px;}
.fs3_c01048{font-size:84.000000px;}
.fs2_c01048{font-size:102.000000px;}
.y0_c01048{bottom:0.000000px;}
.y25_c01048{bottom:3.105000px;}
.y24_c01048{bottom:7.228369px;}
.y23_c01048{bottom:48.570000px;}
.y22_c01048{bottom:78.270000px;}
.y21_c01048{bottom:103.320000px;}
.y20_c01048{bottom:127.920000px;}
.y1f_c01048{bottom:152.220000px;}
.y1e_c01048{bottom:176.070000px;}
.y1d_c01048{bottom:200.520000px;}
.y1c_c01048{bottom:224.820000px;}
.y1b_c01048{bottom:248.970000px;}
.y1a_c01048{bottom:273.420000px;}
.y19_c01048{bottom:297.570000px;}
.y18_c01048{bottom:321.870000px;}
.y17_c01048{bottom:345.570000px;}
.y16_c01048{bottom:370.470000px;}
.y15_c01048{bottom:393.570000px;}
.y14_c01048{bottom:417.720000px;}
.y13_c01048{bottom:441.720000px;}
.y12_c01048{bottom:466.020000px;}
.y11_c01048{bottom:489.720000px;}
.y10_c01048{bottom:513.720000px;}
.yf_c01048{bottom:537.270000px;}
.ye_c01048{bottom:561.570000px;}
.yd_c01048{bottom:585.870000px;}
.yc_c01048{bottom:608.820000px;}
.yb_c01048{bottom:632.820000px;}
.ya_c01048{bottom:657.120000px;}
.y9_c01048{bottom:682.020000px;}
.y8_c01048{bottom:704.970000px;}
.y7_c01048{bottom:730.920000px;}
.y6_c01048{bottom:753.870000px;}
.y5_c01048{bottom:777.270000px;}
.y4_c01048{bottom:801.870000px;}
.y3_c01048{bottom:825.870000px;}
.y2_c01048{bottom:850.770000px;}
.y1_c01048{bottom:874.770000px;}
.h6_c01048{height:13.200073px;}
.h7_c01048{height:43.804688px;}
.h2_c01048{height:79.497070px;}
.h5_c01048{height:84.656250px;}
.h4_c01048{height:91.160156px;}
.h3_c01048{height:104.839927px;}
.h1_c01048{height:986.250000px;}
.h0_c01048{height:986.550000px;}
.w1_c01048{width:104.875500px;}
.w0_c01048{width:672.000000px;}
.x0_c01048{left:0.000000px;}
.x1_c01048{left:46.200000px;}
.x2_c01048{left:47.550000px;}
.x3_c01048{left:48.900000px;}
.x4_c01048{left:50.700000px;}
.x5_c01048{left:52.050000px;}
.x6_c01048{left:53.400000px;}
.x7_c01048{left:55.050000px;}
.x9_c01048{left:57.000000px;}
.xb_c01048{left:58.800000px;}
.xa_c01048{left:60.450000px;}
.xc_c01048{left:62.100000px;}
.x8_c01048{left:70.500000px;}
.xe_c01048{left:287.814240px;}
.xd_c01048{left:411.150000px;}
@media print{
.v0_c01048{vertical-align:0.000000pt;}
.ls1_c01048{letter-spacing:-8.000000pt;}
.ls0_c01048{letter-spacing:0.000000pt;}
.ws0_c01048{word-spacing:0.000000pt;}
._1d_c01048{margin-left:-30.965333pt;}
._1a_c01048{margin-left:-28.560000pt;}
._1b_c01048{margin-left:-27.501333pt;}
._18_c01048{margin-left:-26.133333pt;}
._14_c01048{margin-left:-21.600000pt;}
._16_c01048{margin-left:-14.904000pt;}
._1e_c01048{margin-left:-13.464000pt;}
._1c_c01048{margin-left:-12.330667pt;}
._17_c01048{margin-left:-10.584000pt;}
._19_c01048{margin-left:-8.794667pt;}
._10_c01048{margin-left:-7.344000pt;}
._1_c01048{margin-left:-5.544000pt;}
._9_c01048{margin-left:-4.392000pt;}
._4_c01048{margin-left:-2.952000pt;}
._8_c01048{margin-left:-1.944000pt;}
._b_c01048{margin-left:-0.933333pt;}
._5_c01048{width:1.080000pt;}
._0_c01048{width:2.160000pt;}
._3_c01048{width:3.312000pt;}
._2_c01048{width:4.320000pt;}
._7_c01048{width:5.328000pt;}
._a_c01048{width:6.984000pt;}
._d_c01048{width:8.352000pt;}
._6_c01048{width:9.288000pt;}
._c_c01048{width:10.584000pt;}
._f_c01048{width:12.312000pt;}
._e_c01048{width:13.896000pt;}
._20_c01048{width:22.400000pt;}
._1f_c01048{width:26.973333pt;}
._15_c01048{width:44.352000pt;}
._11_c01048{width:52.272000pt;}
._13_c01048{width:69.840000pt;}
._21_c01048{width:218.400000pt;}
._12_c01048{width:284.184000pt;}
.fs4_c01048{font-size:42.666667pt;}
.fs1_c01048{font-size:64.000000pt;}
.fs0_c01048{font-size:72.000000pt;}
.fs3_c01048{font-size:74.666667pt;}
.fs2_c01048{font-size:90.666667pt;}
.y0_c01048{bottom:0.000000pt;}
.y25_c01048{bottom:2.760000pt;}
.y24_c01048{bottom:6.425217pt;}
.y23_c01048{bottom:43.173333pt;}
.y22_c01048{bottom:69.573333pt;}
.y21_c01048{bottom:91.840000pt;}
.y20_c01048{bottom:113.706667pt;}
.y1f_c01048{bottom:135.306667pt;}
.y1e_c01048{bottom:156.506667pt;}
.y1d_c01048{bottom:178.240000pt;}
.y1c_c01048{bottom:199.840000pt;}
.y1b_c01048{bottom:221.306667pt;}
.y1a_c01048{bottom:243.040000pt;}
.y19_c01048{bottom:264.506667pt;}
.y18_c01048{bottom:286.106667pt;}
.y17_c01048{bottom:307.173333pt;}
.y16_c01048{bottom:329.306667pt;}
.y15_c01048{bottom:349.840000pt;}
.y14_c01048{bottom:371.306667pt;}
.y13_c01048{bottom:392.640000pt;}
.y12_c01048{bottom:414.240000pt;}
.y11_c01048{bottom:435.306667pt;}
.y10_c01048{bottom:456.640000pt;}
.yf_c01048{bottom:477.573333pt;}
.ye_c01048{bottom:499.173333pt;}
.yd_c01048{bottom:520.773333pt;}
.yc_c01048{bottom:541.173333pt;}
.yb_c01048{bottom:562.506667pt;}
.ya_c01048{bottom:584.106667pt;}
.y9_c01048{bottom:606.240000pt;}
.y8_c01048{bottom:626.640000pt;}
.y7_c01048{bottom:649.706667pt;}
.y6_c01048{bottom:670.106667pt;}
.y5_c01048{bottom:690.906667pt;}
.y4_c01048{bottom:712.773333pt;}
.y3_c01048{bottom:734.106667pt;}
.y2_c01048{bottom:756.240000pt;}
.y1_c01048{bottom:777.573333pt;}
.h6_c01048{height:11.733399pt;}
.h7_c01048{height:38.937500pt;}
.h2_c01048{height:70.664062pt;}
.h5_c01048{height:75.250000pt;}
.h4_c01048{height:81.031250pt;}
.h3_c01048{height:93.191046pt;}
.h1_c01048{height:876.666667pt;}
.h0_c01048{height:876.933333pt;}
.w1_c01048{width:93.222667pt;}
.w0_c01048{width:597.333333pt;}
.x0_c01048{left:0.000000pt;}
.x1_c01048{left:41.066667pt;}
.x2_c01048{left:42.266667pt;}
.x3_c01048{left:43.466667pt;}
.x4_c01048{left:45.066667pt;}
.x5_c01048{left:46.266667pt;}
.x6_c01048{left:47.466667pt;}
.x7_c01048{left:48.933333pt;}
.x9_c01048{left:50.666667pt;}
.xb_c01048{left:52.266667pt;}
.xa_c01048{left:53.733333pt;}
.xc_c01048{left:55.200000pt;}
.x8_c01048{left:62.666667pt;}
.xe_c01048{left:255.834880pt;}
.xd_c01048{left:365.466667pt;}
}





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

.ir_c01049:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01049{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01049;src:url('chunks/assets/font_8587ce20ea76f7bdf141916d.woff2')format("woff");}.ff1_c01049{font-family:ff1_c01049;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01049;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff2_c01049{font-family:ff2_c01049;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01049;src:url('chunks/assets/font_4b9db91ee70f61de87ea9548.woff2')format("woff");}.ff3_c01049{font-family:ff3_c01049;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01049;src:url('chunks/assets/font_6e34ef23d3d2a5e12d801698.woff2')format("woff");}.ff4_c01049{font-family:ff4_c01049;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01049;src:url('chunks/assets/font_5c5a2dad23b01950e2ac54d8.woff2')format("woff");}.ff5_c01049{font-family:ff5_c01049;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01049;src:url('chunks/assets/font_0fe480a5cececa88facda4cd.woff2')format("woff");}.ff6_c01049{font-family:ff6_c01049;line-height:1.284180;font-style:normal;font-weight: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_c01049;src:url('chunks/assets/font_dfa40ad1e63aeafd2642b238.woff2')format("woff");}.ff7_c01049{font-family:ff7_c01049;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c01049;src:url('chunks/assets/font_0560800cf8b26e58b2e498b1.woff2')format("woff");}.ff8_c01049{font-family:ff8_c01049;line-height:1.311035;font-style:normal;font-weight: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_c01049;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff9_c01049{font-family:ff9_c01049;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01049{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01049{vertical-align:0.000000px;}
.ls5_c01049{letter-spacing:0.000000px;}
.ls2_c01049{letter-spacing:0.300000px;}
.ls0_c01049{letter-spacing:0.900000px;}
.ls6_c01049{letter-spacing:6.000000px;}
.ls4_c01049{letter-spacing:12.150000px;}
.ls3_c01049{letter-spacing:23.250000px;}
.ls7_c01049{letter-spacing:27.000000px;}
.ls1_c01049{letter-spacing:47.922000px;}
.sc__c01049{text-shadow:none;}
.sc0_c01049{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01049{-webkit-text-stroke:0px transparent;}
.sc0_c01049{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c01049{word-spacing:-73.686000px;}
.ws0_c01049{word-spacing:-39.000000px;}
.ws2_c01049{word-spacing:-21.750000px;}
.ws1_c01049{word-spacing:-17.352000px;}
.ws4_c01049{word-spacing:0.000000px;}
._2a_c01049{margin-left:-60.108000px;}
._20_c01049{margin-left:-41.232000px;}
._2c_c01049{margin-left:-34.437000px;}
._23_c01049{margin-left:-28.053000px;}
._1f_c01049{margin-left:-25.662000px;}
._1d_c01049{margin-left:-22.032000px;}
._25_c01049{margin-left:-19.392000px;}
._15_c01049{margin-left:-16.926000px;}
._d_c01049{margin-left:-15.759000px;}
._2_c01049{margin-left:-13.968000px;}
._2d_c01049{margin-left:-11.715000px;}
._4_c01049{margin-left:-10.584000px;}
._11_c01049{margin-left:-8.049000px;}
._6_c01049{margin-left:-6.864000px;}
._5_c01049{margin-left:-4.884000px;}
._3_c01049{margin-left:-3.816000px;}
._0_c01049{margin-left:-1.800000px;}
._a_c01049{width:1.620000px;}
._8_c01049{width:2.835000px;}
._9_c01049{width:3.969000px;}
._1_c01049{width:5.760000px;}
._7_c01049{width:6.876000px;}
._10_c01049{width:8.091000px;}
._b_c01049{width:9.195000px;}
._e_c01049{width:10.737000px;}
._f_c01049{width:11.757000px;}
._12_c01049{width:13.428000px;}
._21_c01049{width:15.498000px;}
._c_c01049{width:17.040000px;}
._13_c01049{width:18.225000px;}
._16_c01049{width:21.735000px;}
._1c_c01049{width:25.017000px;}
._19_c01049{width:26.904000px;}
._29_c01049{width:28.191000px;}
._1b_c01049{width:31.437000px;}
._22_c01049{width:34.011000px;}
._1a_c01049{width:36.561000px;}
._17_c01049{width:38.016000px;}
._24_c01049{width:39.633000px;}
._2e_c01049{width:41.553000px;}
._28_c01049{width:44.550000px;}
._2f_c01049{width:46.797000px;}
._2b_c01049{width:49.977000px;}
._1e_c01049{width:51.282000px;}
._31_c01049{width:57.969000px;}
._27_c01049{width:100.512000px;}
._26_c01049{width:153.690000px;}
._30_c01049{width:156.990000px;}
._14_c01049{width:171.315000px;}
._18_c01049{width:179.145000px;}
.fc2_c01049{color:transparent;}
.fc1_c01049{color:rgb(128,128,128);}
.fc0_c01049{color:rgb(0,0,0);}
.fs8_c01049{font-size:48.000000px;}
.fs5_c01049{font-size:57.000000px;}
.fs4_c01049{font-size:60.000000px;}
.fs7_c01049{font-size:63.000000px;}
.fs1_c01049{font-size:66.000000px;}
.fs0_c01049{font-size:72.000000px;}
.fs6_c01049{font-size:75.000000px;}
.fs2_c01049{font-size:81.000000px;}
.fs3_c01049{font-size:87.000000px;}
.y0_c01049{bottom:0.000000px;}
.y28_c01049{bottom:3.105000px;}
.y27_c01049{bottom:7.228371px;}
.y25_c01049{bottom:58.065000px;}
.y26_c01049{bottom:70.515000px;}
.y24_c01049{bottom:81.015000px;}
.y23_c01049{bottom:105.015000px;}
.y22_c01049{bottom:131.265000px;}
.y21_c01049{bottom:154.965000px;}
.y20_c01049{bottom:179.865000px;}
.y1f_c01049{bottom:204.315000px;}
.y1e_c01049{bottom:230.265000px;}
.y1d_c01049{bottom:254.115000px;}
.y1c_c01049{bottom:278.415000px;}
.y1b_c01049{bottom:302.115000px;}
.y1a_c01049{bottom:326.115000px;}
.y19_c01049{bottom:351.765000px;}
.y18_c01049{bottom:375.615000px;}
.y17_c01049{bottom:399.315000px;}
.y16_c01049{bottom:423.915000px;}
.y15_c01049{bottom:448.215000px;}
.y14_c01049{bottom:471.615000px;}
.y13_c01049{bottom:495.765000px;}
.y12_c01049{bottom:520.065000px;}
.y11_c01049{bottom:543.465000px;}
.y10_c01049{bottom:567.465000px;}
.yf_c01049{bottom:591.765000px;}
.ye_c01049{bottom:615.915000px;}
.yd_c01049{bottom:639.915000px;}
.yc_c01049{bottom:664.665000px;}
.yb_c01049{bottom:688.815000px;}
.ya_c01049{bottom:712.515000px;}
.y9_c01049{bottom:736.515000px;}
.y8_c01049{bottom:761.115000px;}
.y7_c01049{bottom:785.415000px;}
.y6_c01049{bottom:808.665000px;}
.y2_c01049{bottom:824.565000px;}
.y5_c01049{bottom:833.715000px;}
.y1_c01049{bottom:846.165000px;}
.y4_c01049{bottom:857.715000px;}
.y3_c01049{bottom:882.315000px;}
.h8_c01049{height:13.200074px;}
.h9_c01049{height:43.804688px;}
.h3_c01049{height:64.743164px;}
.h5_c01049{height:79.497070px;}
.h4_c01049{height:84.269531px;}
.h7_c01049{height:87.679688px;}
.h2_c01049{height:91.160156px;}
.h6_c01049{height:91.176000px;}
.h1_c01049{height:986.250000px;}
.h0_c01049{height:986.325000px;}
.w2_c01049{width:104.875500px;}
.w0_c01049{width:667.425000px;}
.w1_c01049{width:667.500000px;}
.x0_c01049{left:0.000000px;}
.xc_c01049{left:19.800000px;}
.x4_c01049{left:22.950000px;}
.x1_c01049{left:25.200000px;}
.x5_c01049{left:47.550000px;}
.xb_c01049{left:61.800000px;}
.x6_c01049{left:63.450000px;}
.xa_c01049{left:82.650000px;}
.x7_c01049{left:118.050000px;}
.x8_c01049{left:119.100000px;}
.x2_c01049{left:120.750000px;}
.x9_c01049{left:122.100000px;}
.xd_c01049{left:123.750000px;}
.x3_c01049{left:164.250000px;}
.xf_c01049{left:285.526749px;}
.xe_c01049{left:572.400000px;}
@media print{
.v0_c01049{vertical-align:0.000000pt;}
.ls5_c01049{letter-spacing:0.000000pt;}
.ls2_c01049{letter-spacing:0.266667pt;}
.ls0_c01049{letter-spacing:0.800000pt;}
.ls6_c01049{letter-spacing:5.333333pt;}
.ls4_c01049{letter-spacing:10.800000pt;}
.ls3_c01049{letter-spacing:20.666667pt;}
.ls7_c01049{letter-spacing:24.000000pt;}
.ls1_c01049{letter-spacing:42.597333pt;}
.ws3_c01049{word-spacing:-65.498667pt;}
.ws0_c01049{word-spacing:-34.666667pt;}
.ws2_c01049{word-spacing:-19.333333pt;}
.ws1_c01049{word-spacing:-15.424000pt;}
.ws4_c01049{word-spacing:0.000000pt;}
._2a_c01049{margin-left:-53.429333pt;}
._20_c01049{margin-left:-36.650667pt;}
._2c_c01049{margin-left:-30.610667pt;}
._23_c01049{margin-left:-24.936000pt;}
._1f_c01049{margin-left:-22.810667pt;}
._1d_c01049{margin-left:-19.584000pt;}
._25_c01049{margin-left:-17.237333pt;}
._15_c01049{margin-left:-15.045333pt;}
._d_c01049{margin-left:-14.008000pt;}
._2_c01049{margin-left:-12.416000pt;}
._2d_c01049{margin-left:-10.413333pt;}
._4_c01049{margin-left:-9.408000pt;}
._11_c01049{margin-left:-7.154667pt;}
._6_c01049{margin-left:-6.101333pt;}
._5_c01049{margin-left:-4.341333pt;}
._3_c01049{margin-left:-3.392000pt;}
._0_c01049{margin-left:-1.600000pt;}
._a_c01049{width:1.440000pt;}
._8_c01049{width:2.520000pt;}
._9_c01049{width:3.528000pt;}
._1_c01049{width:5.120000pt;}
._7_c01049{width:6.112000pt;}
._10_c01049{width:7.192000pt;}
._b_c01049{width:8.173333pt;}
._e_c01049{width:9.544000pt;}
._f_c01049{width:10.450667pt;}
._12_c01049{width:11.936000pt;}
._21_c01049{width:13.776000pt;}
._c_c01049{width:15.146667pt;}
._13_c01049{width:16.200000pt;}
._16_c01049{width:19.320000pt;}
._1c_c01049{width:22.237333pt;}
._19_c01049{width:23.914667pt;}
._29_c01049{width:25.058667pt;}
._1b_c01049{width:27.944000pt;}
._22_c01049{width:30.232000pt;}
._1a_c01049{width:32.498667pt;}
._17_c01049{width:33.792000pt;}
._24_c01049{width:35.229333pt;}
._2e_c01049{width:36.936000pt;}
._28_c01049{width:39.600000pt;}
._2f_c01049{width:41.597333pt;}
._2b_c01049{width:44.424000pt;}
._1e_c01049{width:45.584000pt;}
._31_c01049{width:51.528000pt;}
._27_c01049{width:89.344000pt;}
._26_c01049{width:136.613333pt;}
._30_c01049{width:139.546667pt;}
._14_c01049{width:152.280000pt;}
._18_c01049{width:159.240000pt;}
.fs8_c01049{font-size:42.666667pt;}
.fs5_c01049{font-size:50.666667pt;}
.fs4_c01049{font-size:53.333333pt;}
.fs7_c01049{font-size:56.000000pt;}
.fs1_c01049{font-size:58.666667pt;}
.fs0_c01049{font-size:64.000000pt;}
.fs6_c01049{font-size:66.666667pt;}
.fs2_c01049{font-size:72.000000pt;}
.fs3_c01049{font-size:77.333333pt;}
.y0_c01049{bottom:0.000000pt;}
.y28_c01049{bottom:2.760000pt;}
.y27_c01049{bottom:6.425219pt;}
.y25_c01049{bottom:51.613333pt;}
.y26_c01049{bottom:62.680000pt;}
.y24_c01049{bottom:72.013333pt;}
.y23_c01049{bottom:93.346667pt;}
.y22_c01049{bottom:116.680000pt;}
.y21_c01049{bottom:137.746667pt;}
.y20_c01049{bottom:159.880000pt;}
.y1f_c01049{bottom:181.613333pt;}
.y1e_c01049{bottom:204.680000pt;}
.y1d_c01049{bottom:225.880000pt;}
.y1c_c01049{bottom:247.480000pt;}
.y1b_c01049{bottom:268.546667pt;}
.y1a_c01049{bottom:289.880000pt;}
.y19_c01049{bottom:312.680000pt;}
.y18_c01049{bottom:333.880000pt;}
.y17_c01049{bottom:354.946667pt;}
.y16_c01049{bottom:376.813333pt;}
.y15_c01049{bottom:398.413333pt;}
.y14_c01049{bottom:419.213333pt;}
.y13_c01049{bottom:440.680000pt;}
.y12_c01049{bottom:462.280000pt;}
.y11_c01049{bottom:483.080000pt;}
.y10_c01049{bottom:504.413333pt;}
.yf_c01049{bottom:526.013333pt;}
.ye_c01049{bottom:547.480000pt;}
.yd_c01049{bottom:568.813333pt;}
.yc_c01049{bottom:590.813333pt;}
.yb_c01049{bottom:612.280000pt;}
.ya_c01049{bottom:633.346667pt;}
.y9_c01049{bottom:654.680000pt;}
.y8_c01049{bottom:676.546667pt;}
.y7_c01049{bottom:698.146667pt;}
.y6_c01049{bottom:718.813333pt;}
.y2_c01049{bottom:732.946667pt;}
.y5_c01049{bottom:741.080000pt;}
.y1_c01049{bottom:752.146667pt;}
.y4_c01049{bottom:762.413333pt;}
.y3_c01049{bottom:784.280000pt;}
.h8_c01049{height:11.733399pt;}
.h9_c01049{height:38.937500pt;}
.h3_c01049{height:57.549479pt;}
.h5_c01049{height:70.664062pt;}
.h4_c01049{height:74.906250pt;}
.h7_c01049{height:77.937500pt;}
.h2_c01049{height:81.031250pt;}
.h6_c01049{height:81.045333pt;}
.h1_c01049{height:876.666667pt;}
.h0_c01049{height:876.733333pt;}
.w2_c01049{width:93.222667pt;}
.w0_c01049{width:593.266667pt;}
.w1_c01049{width:593.333333pt;}
.x0_c01049{left:0.000000pt;}
.xc_c01049{left:17.600000pt;}
.x4_c01049{left:20.400000pt;}
.x1_c01049{left:22.400000pt;}
.x5_c01049{left:42.266667pt;}
.xb_c01049{left:54.933333pt;}
.x6_c01049{left:56.400000pt;}
.xa_c01049{left:73.466667pt;}
.x7_c01049{left:104.933333pt;}
.x8_c01049{left:105.866667pt;}
.x2_c01049{left:107.333333pt;}
.x9_c01049{left:108.533333pt;}
.xd_c01049{left:110.000000pt;}
.x3_c01049{left:146.000000pt;}
.xf_c01049{left:253.801554pt;}
.xe_c01049{left:508.800000pt;}
}





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

.ir_c01050:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01050{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01050;src:url('chunks/assets/font_45840a3fb72c80f0c62e930f.woff2')format("woff");}.ff1_c01050{font-family:ff1_c01050;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01050;src:url('chunks/assets/font_f904293bad23793546c7d137.woff2')format("woff");}.ff2_c01050{font-family:ff2_c01050;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01050;src:url('chunks/assets/font_69f3030edfca6e43bf49abea.woff2')format("woff");}.ff3_c01050{font-family:ff3_c01050;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01050;src:url('chunks/assets/font_d60bcbfb149afaf7f72ffa5d.woff2')format("woff");}.ff4_c01050{font-family:ff4_c01050;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01050;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c01050{font-family:ff5_c01050;line-height:1.219238;font-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_c01050{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m0_c01050{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01050{vertical-align:0.000000px;}
.ls3_c01050{letter-spacing:0.000000px;}
.ls2_c01050{letter-spacing:6.000000px;}
.ls4_c01050{letter-spacing:9.000000px;}
.ls1_c01050{letter-spacing:13.188000px;}
.ls0_c01050{letter-spacing:17.304000px;}
.sc__c01050{text-shadow:none;}
.sc0_c01050{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01050{-webkit-text-stroke:0px transparent;}
.sc0_c01050{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01050{word-spacing:-53.376000px;}
.ws1_c01050{word-spacing:-24.000000px;}
.ws2_c01050{word-spacing:-21.000000px;}
.ws3_c01050{word-spacing:0.000000px;}
._24_c01050{margin-left:-35.208000px;}
._1b_c01050{margin-left:-30.735000px;}
._12_c01050{margin-left:-25.737000px;}
._14_c01050{margin-left:-22.164000px;}
._15_c01050{margin-left:-16.362000px;}
._20_c01050{margin-left:-14.418000px;}
._1d_c01050{margin-left:-12.960000px;}
._1f_c01050{margin-left:-11.097000px;}
._1e_c01050{margin-left:-9.315000px;}
._23_c01050{margin-left:-8.178000px;}
._9_c01050{margin-left:-6.561000px;}
._21_c01050{margin-left:-5.493000px;}
._8_c01050{margin-left:-4.293000px;}
._6_c01050{margin-left:-2.835000px;}
._7_c01050{margin-left:-1.458000px;}
._1_c01050{width:1.782000px;}
._0_c01050{width:2.997000px;}
._17_c01050{width:4.011000px;}
._2_c01050{width:5.022000px;}
._4_c01050{width:6.885000px;}
._1c_c01050{width:7.974000px;}
._5_c01050{width:9.072000px;}
._c_c01050{width:10.128000px;}
._13_c01050{width:11.643000px;}
._b_c01050{width:13.080000px;}
._3_c01050{width:14.499000px;}
._22_c01050{width:15.948000px;}
._e_c01050{width:17.052000px;}
._d_c01050{width:18.378000px;}
._11_c01050{width:19.608000px;}
._10_c01050{width:21.768000px;}
._a_c01050{width:25.920000px;}
._f_c01050{width:28.080000px;}
._25_c01050{width:29.106000px;}
._1a_c01050{width:30.864000px;}
._18_c01050{width:156.897000px;}
._19_c01050{width:335.250000px;}
._26_c01050{width:336.312000px;}
._16_c01050{width:669.762000px;}
.fc2_c01050{color:transparent;}
.fc1_c01050{color:rgb(128,128,128);}
.fc0_c01050{color:rgb(0,0,0);}
.fs5_c01050{font-size:48.000000px;}
.fs1_c01050{font-size:60.000000px;}
.fs0_c01050{font-size:81.000000px;}
.fs3_c01050{font-size:84.000000px;}
.fs2_c01050{font-size:96.000000px;}
.fs4_c01050{font-size:108.000000px;}
.y0_c01050{bottom:0.000000px;}
.y23_c01050{bottom:3.105000px;}
.y22_c01050{bottom:7.228369px;}
.y21_c01050{bottom:76.320000px;}
.y20_c01050{bottom:101.220000px;}
.y1f_c01050{bottom:126.570000px;}
.y1e_c01050{bottom:150.420000px;}
.y1d_c01050{bottom:174.420000px;}
.y1c_c01050{bottom:198.720000px;}
.y1b_c01050{bottom:223.770000px;}
.y1a_c01050{bottom:247.770000px;}
.y19_c01050{bottom:272.070000px;}
.y18_c01050{bottom:296.370000px;}
.y17_c01050{bottom:320.670000px;}
.y16_c01050{bottom:344.820000px;}
.y15_c01050{bottom:368.520000px;}
.y14_c01050{bottom:392.520000px;}
.y13_c01050{bottom:416.520000px;}
.y12_c01050{bottom:440.670000px;}
.y11_c01050{bottom:464.970000px;}
.y10_c01050{bottom:488.670000px;}
.yf_c01050{bottom:512.970000px;}
.ye_c01050{bottom:536.970000px;}
.yd_c01050{bottom:560.970000px;}
.yc_c01050{bottom:584.520000px;}
.yb_c01050{bottom:608.220000px;}
.ya_c01050{bottom:632.070000px;}
.y9_c01050{bottom:655.770000px;}
.y8_c01050{bottom:679.770000px;}
.y7_c01050{bottom:703.620000px;}
.y6_c01050{bottom:737.670000px;}
.y5_c01050{bottom:766.170000px;}
.y4_c01050{bottom:795.420000px;}
.y3_c01050{bottom:849.870000px;}
.y2_c01050{bottom:874.020000px;}
.y1_c01050{bottom:898.320000px;}
.h6_c01050{height:13.200073px;}
.h7_c01050{height:43.804688px;}
.h2_c01050{height:79.497070px;}
.h4_c01050{height:82.400391px;}
.h3_c01050{height:94.171875px;}
.h5_c01050{height:108.843750px;}
.h1_c01050{height:986.250000px;}
.h0_c01050{height:986.550000px;}
.w1_c01050{width:104.875500px;}
.w0_c01050{width:672.000000px;}
.x0_c01050{left:0.000000px;}
.xc_c01050{left:62.700000px;}
.xd_c01050{left:64.050000px;}
.xa_c01050{left:65.400000px;}
.xb_c01050{left:66.750000px;}
.x2_c01050{left:67.800000px;}
.x1_c01050{left:69.450000px;}
.x3_c01050{left:79.950000px;}
.xe_c01050{left:112.050000px;}
.x4_c01050{left:133.350000px;}
.x5_c01050{left:150.900000px;}
.x6_c01050{left:165.000000px;}
.x7_c01050{left:166.650000px;}
.x8_c01050{left:167.700000px;}
.x9_c01050{left:169.650000px;}
.x10_c01050{left:287.814240px;}
.xf_c01050{left:394.800000px;}
@media print{
.v0_c01050{vertical-align:0.000000pt;}
.ls3_c01050{letter-spacing:0.000000pt;}
.ls2_c01050{letter-spacing:5.333333pt;}
.ls4_c01050{letter-spacing:8.000000pt;}
.ls1_c01050{letter-spacing:11.722667pt;}
.ls0_c01050{letter-spacing:15.381333pt;}
.ws0_c01050{word-spacing:-47.445333pt;}
.ws1_c01050{word-spacing:-21.333333pt;}
.ws2_c01050{word-spacing:-18.666667pt;}
.ws3_c01050{word-spacing:0.000000pt;}
._24_c01050{margin-left:-31.296000pt;}
._1b_c01050{margin-left:-27.320000pt;}
._12_c01050{margin-left:-22.877333pt;}
._14_c01050{margin-left:-19.701333pt;}
._15_c01050{margin-left:-14.544000pt;}
._20_c01050{margin-left:-12.816000pt;}
._1d_c01050{margin-left:-11.520000pt;}
._1f_c01050{margin-left:-9.864000pt;}
._1e_c01050{margin-left:-8.280000pt;}
._23_c01050{margin-left:-7.269333pt;}
._9_c01050{margin-left:-5.832000pt;}
._21_c01050{margin-left:-4.882667pt;}
._8_c01050{margin-left:-3.816000pt;}
._6_c01050{margin-left:-2.520000pt;}
._7_c01050{margin-left:-1.296000pt;}
._1_c01050{width:1.584000pt;}
._0_c01050{width:2.664000pt;}
._17_c01050{width:3.565333pt;}
._2_c01050{width:4.464000pt;}
._4_c01050{width:6.120000pt;}
._1c_c01050{width:7.088000pt;}
._5_c01050{width:8.064000pt;}
._c_c01050{width:9.002667pt;}
._13_c01050{width:10.349333pt;}
._b_c01050{width:11.626667pt;}
._3_c01050{width:12.888000pt;}
._22_c01050{width:14.176000pt;}
._e_c01050{width:15.157333pt;}
._d_c01050{width:16.336000pt;}
._11_c01050{width:17.429333pt;}
._10_c01050{width:19.349333pt;}
._a_c01050{width:23.040000pt;}
._f_c01050{width:24.960000pt;}
._25_c01050{width:25.872000pt;}
._1a_c01050{width:27.434667pt;}
._18_c01050{width:139.464000pt;}
._19_c01050{width:298.000000pt;}
._26_c01050{width:298.944000pt;}
._16_c01050{width:595.344000pt;}
.fs5_c01050{font-size:42.666667pt;}
.fs1_c01050{font-size:53.333333pt;}
.fs0_c01050{font-size:72.000000pt;}
.fs3_c01050{font-size:74.666667pt;}
.fs2_c01050{font-size:85.333333pt;}
.fs4_c01050{font-size:96.000000pt;}
.y0_c01050{bottom:0.000000pt;}
.y23_c01050{bottom:2.760000pt;}
.y22_c01050{bottom:6.425217pt;}
.y21_c01050{bottom:67.840000pt;}
.y20_c01050{bottom:89.973333pt;}
.y1f_c01050{bottom:112.506667pt;}
.y1e_c01050{bottom:133.706667pt;}
.y1d_c01050{bottom:155.040000pt;}
.y1c_c01050{bottom:176.640000pt;}
.y1b_c01050{bottom:198.906667pt;}
.y1a_c01050{bottom:220.240000pt;}
.y19_c01050{bottom:241.840000pt;}
.y18_c01050{bottom:263.440000pt;}
.y17_c01050{bottom:285.040000pt;}
.y16_c01050{bottom:306.506667pt;}
.y15_c01050{bottom:327.573333pt;}
.y14_c01050{bottom:348.906667pt;}
.y13_c01050{bottom:370.240000pt;}
.y12_c01050{bottom:391.706667pt;}
.y11_c01050{bottom:413.306667pt;}
.y10_c01050{bottom:434.373333pt;}
.yf_c01050{bottom:455.973333pt;}
.ye_c01050{bottom:477.306667pt;}
.yd_c01050{bottom:498.640000pt;}
.yc_c01050{bottom:519.573333pt;}
.yb_c01050{bottom:540.640000pt;}
.ya_c01050{bottom:561.840000pt;}
.y9_c01050{bottom:582.906667pt;}
.y8_c01050{bottom:604.240000pt;}
.y7_c01050{bottom:625.440000pt;}
.y6_c01050{bottom:655.706667pt;}
.y5_c01050{bottom:681.040000pt;}
.y4_c01050{bottom:707.040000pt;}
.y3_c01050{bottom:755.440000pt;}
.y2_c01050{bottom:776.906667pt;}
.y1_c01050{bottom:798.506667pt;}
.h6_c01050{height:11.733399pt;}
.h7_c01050{height:38.937500pt;}
.h2_c01050{height:70.664062pt;}
.h4_c01050{height:73.244792pt;}
.h3_c01050{height:83.708333pt;}
.h5_c01050{height:96.750000pt;}
.h1_c01050{height:876.666667pt;}
.h0_c01050{height:876.933333pt;}
.w1_c01050{width:93.222667pt;}
.w0_c01050{width:597.333333pt;}
.x0_c01050{left:0.000000pt;}
.xc_c01050{left:55.733333pt;}
.xd_c01050{left:56.933333pt;}
.xa_c01050{left:58.133333pt;}
.xb_c01050{left:59.333333pt;}
.x2_c01050{left:60.266667pt;}
.x1_c01050{left:61.733333pt;}
.x3_c01050{left:71.066667pt;}
.xe_c01050{left:99.600000pt;}
.x4_c01050{left:118.533333pt;}
.x5_c01050{left:134.133333pt;}
.x6_c01050{left:146.666667pt;}
.x7_c01050{left:148.133333pt;}
.x8_c01050{left:149.066667pt;}
.x9_c01050{left:150.800000pt;}
.x10_c01050{left:255.834880pt;}
.xf_c01050{left:350.933333pt;}
}





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

.ir_c01051:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01051{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01051;src:url('chunks/assets/font_c8d11bcd41f27b4f19adc3a2.woff2')format("woff");}.ff1_c01051{font-family:ff1_c01051;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01051;src:url('chunks/assets/font_a5d8a8cd223b434a80e41bbd.woff2')format("woff");}.ff2_c01051{font-family:ff2_c01051;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01051;src:url('chunks/assets/font_6e9f9f17e47b9cfc76b8560d.woff2')format("woff");}.ff3_c01051{font-family:ff3_c01051;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01051;src:url('chunks/assets/font_56ded76d9d7fbf18243822d5.woff2')format("woff");}.ff4_c01051{font-family:ff4_c01051;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01051;src:url('chunks/assets/font_bbe8e2094d7b50f8598a8d26.woff2')format("woff");}.ff5_c01051{font-family:ff5_c01051;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01051;src:url('chunks/assets/font_fa9b8e17f4228cd4e984f805.woff2')format("woff");}.ff6_c01051{font-family:ff6_c01051;line-height:1.284180;font-style:normal;font-weight: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_c01051;src:url('chunks/assets/font_900825a7ff5fc7065c37843f.woff2')format("woff");}.ff7_c01051{font-family:ff7_c01051;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c01051;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff8_c01051{font-family:ff8_c01051;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01051{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01051{vertical-align:0.000000px;}
.v1_c01051{vertical-align:11.400000px;}
.ls4_c01051{letter-spacing:0.000000px;}
.ls5_c01051{letter-spacing:6.000000px;}
.ls0_c01051{letter-spacing:8.400000px;}
.ls2_c01051{letter-spacing:9.480000px;}
.ls3_c01051{letter-spacing:10.950000px;}
.ls1_c01051{letter-spacing:11.700000px;}
.sc__c01051{text-shadow:none;}
.sc0_c01051{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01051{-webkit-text-stroke:0px transparent;}
.sc0_c01051{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01051{word-spacing:-25.500000px;}
.ws3_c01051{word-spacing:-17.352000px;}
.ws1_c01051{word-spacing:-0.102000px;}
.ws2_c01051{word-spacing:-0.081600px;}
.ws4_c01051{word-spacing:0.000000px;}
._1c_c01051{margin-left:-42.282000px;}
._4_c01051{margin-left:-30.360000px;}
._11_c01051{margin-left:-27.540000px;}
._7_c01051{margin-left:-20.502000px;}
._12_c01051{margin-left:-18.306000px;}
._10_c01051{margin-left:-15.403800px;}
._1e_c01051{margin-left:-14.202000px;}
._b_c01051{margin-left:-10.543200px;}
._9_c01051{margin-left:-9.282000px;}
._1a_c01051{margin-left:-7.263000px;}
._c_c01051{margin-left:-6.222000px;}
._a_c01051{margin-left:-4.704000px;}
._d_c01051{margin-left:-2.991000px;}
._f_c01051{margin-left:-1.443000px;}
._15_c01051{width:1.026000px;}
._5_c01051{width:2.040000px;}
._6_c01051{width:3.264000px;}
._e_c01051{width:4.716000px;}
._0_c01051{width:6.426000px;}
._3_c01051{width:7.920000px;}
._16_c01051{width:9.243000px;}
._13_c01051{width:10.614000px;}
._1_c01051{width:12.750000px;}
._14_c01051{width:13.866000px;}
._22_c01051{width:14.940000px;}
._17_c01051{width:15.951000px;}
._21_c01051{width:18.168000px;}
._20_c01051{width:19.239000px;}
._1f_c01051{width:22.032000px;}
._25_c01051{width:25.947000px;}
._8_c01051{width:28.662000px;}
._23_c01051{width:31.527000px;}
._19_c01051{width:37.665000px;}
._1b_c01051{width:57.672000px;}
._24_c01051{width:62.556000px;}
._1d_c01051{width:236.868000px;}
._18_c01051{width:247.401000px;}
._2_c01051{width:274.014000px;}
._26_c01051{width:1527.432000px;}
.fc2_c01051{color:transparent;}
.fc1_c01051{color:rgb(128,128,128);}
.fc0_c01051{color:rgb(0,0,0);}
.fs8_c01051{font-size:48.000000px;}
.fs6_c01051{font-size:60.000000px;}
.fs5_c01051{font-size:66.000000px;}
.fs4_c01051{font-size:72.000000px;}
.fs3_c01051{font-size:81.000000px;}
.fs2_c01051{font-size:81.600000px;}
.fs7_c01051{font-size:93.000000px;}
.fs0_c01051{font-size:102.000000px;}
.fs1_c01051{font-size:120.000000px;}
.y0_c01051{bottom:0.000000px;}
.y26_c01051{bottom:3.105000px;}
.y25_c01051{bottom:7.228371px;}
.y24_c01051{bottom:69.615000px;}
.y23_c01051{bottom:90.465000px;}
.y22_c01051{bottom:116.565000px;}
.y21_c01051{bottom:140.865000px;}
.y20_c01051{bottom:165.465000px;}
.y1f_c01051{bottom:190.065000px;}
.y1e_c01051{bottom:212.265000px;}
.y1d_c01051{bottom:239.265000px;}
.y1c_c01051{bottom:263.565000px;}
.y1b_c01051{bottom:287.865000px;}
.y1a_c01051{bottom:312.315000px;}
.y19_c01051{bottom:336.615000px;}
.y18_c01051{bottom:360.915000px;}
.y17_c01051{bottom:385.215000px;}
.y16_c01051{bottom:410.115000px;}
.y15_c01051{bottom:434.115000px;}
.y14_c01051{bottom:458.415000px;}
.y13_c01051{bottom:482.265000px;}
.y12_c01051{bottom:506.265000px;}
.y11_c01051{bottom:529.965000px;}
.y10_c01051{bottom:554.265000px;}
.yf_c01051{bottom:578.565000px;}
.ye_c01051{bottom:602.565000px;}
.yd_c01051{bottom:627.165000px;}
.yc_c01051{bottom:651.165000px;}
.yb_c01051{bottom:676.065000px;}
.ya_c01051{bottom:699.315000px;}
.y9_c01051{bottom:723.915000px;}
.y8_c01051{bottom:747.915000px;}
.y7_c01051{bottom:771.315000px;}
.y6_c01051{bottom:795.465000px;}
.y5_c01051{bottom:819.465000px;}
.y4_c01051{bottom:843.465000px;}
.y3_c01051{bottom:867.765000px;}
.y2_c01051{bottom:892.365000px;}
.y1_c01051{bottom:931.815000px;}
.h8_c01051{height:13.200074px;}
.h9_c01051{height:43.804688px;}
.h3_c01051{height:79.497070px;}
.h4_c01051{height:84.269531px;}
.h6_c01051{height:90.897070px;}
.h5_c01051{height:91.160156px;}
.h7_c01051{height:91.274414px;}
.h2_c01051{height:120.937500px;}
.h1_c01051{height:986.250000px;}
.h0_c01051{height:986.325000px;}
.w2_c01051{width:104.875500px;}
.w0_c01051{width:667.425000px;}
.w1_c01051{width:667.500000px;}
.x0_c01051{left:0.000000px;}
.x4_c01051{left:18.600000px;}
.x5_c01051{left:23.400000px;}
.x1_c01051{left:108.300000px;}
.x2_c01051{left:109.350000px;}
.x3_c01051{left:110.400000px;}
.x7_c01051{left:111.450000px;}
.x8_c01051{left:112.500000px;}
.x9_c01051{left:113.700000px;}
.xa_c01051{left:114.750000px;}
.x6_c01051{left:116.550000px;}
.xc_c01051{left:118.500000px;}
.xd_c01051{left:119.550000px;}
.xb_c01051{left:123.900000px;}
.xe_c01051{left:184.650000px;}
.xf_c01051{left:285.526749px;}
@media print{
.v0_c01051{vertical-align:0.000000pt;}
.v1_c01051{vertical-align:10.133333pt;}
.ls4_c01051{letter-spacing:0.000000pt;}
.ls5_c01051{letter-spacing:5.333333pt;}
.ls0_c01051{letter-spacing:7.466667pt;}
.ls2_c01051{letter-spacing:8.426667pt;}
.ls3_c01051{letter-spacing:9.733333pt;}
.ls1_c01051{letter-spacing:10.400000pt;}
.ws0_c01051{word-spacing:-22.666667pt;}
.ws3_c01051{word-spacing:-15.424000pt;}
.ws1_c01051{word-spacing:-0.090667pt;}
.ws2_c01051{word-spacing:-0.072533pt;}
.ws4_c01051{word-spacing:0.000000pt;}
._1c_c01051{margin-left:-37.584000pt;}
._4_c01051{margin-left:-26.986667pt;}
._11_c01051{margin-left:-24.480000pt;}
._7_c01051{margin-left:-18.224000pt;}
._12_c01051{margin-left:-16.272000pt;}
._10_c01051{margin-left:-13.692267pt;}
._1e_c01051{margin-left:-12.624000pt;}
._b_c01051{margin-left:-9.371733pt;}
._9_c01051{margin-left:-8.250667pt;}
._1a_c01051{margin-left:-6.456000pt;}
._c_c01051{margin-left:-5.530667pt;}
._a_c01051{margin-left:-4.181333pt;}
._d_c01051{margin-left:-2.658667pt;}
._f_c01051{margin-left:-1.282667pt;}
._15_c01051{width:0.912000pt;}
._5_c01051{width:1.813333pt;}
._6_c01051{width:2.901333pt;}
._e_c01051{width:4.192000pt;}
._0_c01051{width:5.712000pt;}
._3_c01051{width:7.040000pt;}
._16_c01051{width:8.216000pt;}
._13_c01051{width:9.434667pt;}
._1_c01051{width:11.333333pt;}
._14_c01051{width:12.325333pt;}
._22_c01051{width:13.280000pt;}
._17_c01051{width:14.178667pt;}
._21_c01051{width:16.149333pt;}
._20_c01051{width:17.101333pt;}
._1f_c01051{width:19.584000pt;}
._25_c01051{width:23.064000pt;}
._8_c01051{width:25.477333pt;}
._23_c01051{width:28.024000pt;}
._19_c01051{width:33.480000pt;}
._1b_c01051{width:51.264000pt;}
._24_c01051{width:55.605333pt;}
._1d_c01051{width:210.549333pt;}
._18_c01051{width:219.912000pt;}
._2_c01051{width:243.568000pt;}
._26_c01051{width:1357.717333pt;}
.fs8_c01051{font-size:42.666667pt;}
.fs6_c01051{font-size:53.333333pt;}
.fs5_c01051{font-size:58.666667pt;}
.fs4_c01051{font-size:64.000000pt;}
.fs3_c01051{font-size:72.000000pt;}
.fs2_c01051{font-size:72.533333pt;}
.fs7_c01051{font-size:82.666667pt;}
.fs0_c01051{font-size:90.666667pt;}
.fs1_c01051{font-size:106.666667pt;}
.y0_c01051{bottom:0.000000pt;}
.y26_c01051{bottom:2.760000pt;}
.y25_c01051{bottom:6.425219pt;}
.y24_c01051{bottom:61.880000pt;}
.y23_c01051{bottom:80.413333pt;}
.y22_c01051{bottom:103.613333pt;}
.y21_c01051{bottom:125.213333pt;}
.y20_c01051{bottom:147.080000pt;}
.y1f_c01051{bottom:168.946667pt;}
.y1e_c01051{bottom:188.680000pt;}
.y1d_c01051{bottom:212.680000pt;}
.y1c_c01051{bottom:234.280000pt;}
.y1b_c01051{bottom:255.880000pt;}
.y1a_c01051{bottom:277.613333pt;}
.y19_c01051{bottom:299.213333pt;}
.y18_c01051{bottom:320.813333pt;}
.y17_c01051{bottom:342.413333pt;}
.y16_c01051{bottom:364.546667pt;}
.y15_c01051{bottom:385.880000pt;}
.y14_c01051{bottom:407.480000pt;}
.y13_c01051{bottom:428.680000pt;}
.y12_c01051{bottom:450.013333pt;}
.y11_c01051{bottom:471.080000pt;}
.y10_c01051{bottom:492.680000pt;}
.yf_c01051{bottom:514.280000pt;}
.ye_c01051{bottom:535.613333pt;}
.yd_c01051{bottom:557.480000pt;}
.yc_c01051{bottom:578.813333pt;}
.yb_c01051{bottom:600.946667pt;}
.ya_c01051{bottom:621.613333pt;}
.y9_c01051{bottom:643.480000pt;}
.y8_c01051{bottom:664.813333pt;}
.y7_c01051{bottom:685.613333pt;}
.y6_c01051{bottom:707.080000pt;}
.y5_c01051{bottom:728.413333pt;}
.y4_c01051{bottom:749.746667pt;}
.y3_c01051{bottom:771.346667pt;}
.y2_c01051{bottom:793.213333pt;}
.y1_c01051{bottom:828.280000pt;}
.h8_c01051{height:11.733399pt;}
.h9_c01051{height:38.937500pt;}
.h3_c01051{height:70.664062pt;}
.h4_c01051{height:74.906250pt;}
.h6_c01051{height:80.797396pt;}
.h5_c01051{height:81.031250pt;}
.h7_c01051{height:81.132812pt;}
.h2_c01051{height:107.500000pt;}
.h1_c01051{height:876.666667pt;}
.h0_c01051{height:876.733333pt;}
.w2_c01051{width:93.222667pt;}
.w0_c01051{width:593.266667pt;}
.w1_c01051{width:593.333333pt;}
.x0_c01051{left:0.000000pt;}
.x4_c01051{left:16.533333pt;}
.x5_c01051{left:20.800000pt;}
.x1_c01051{left:96.266667pt;}
.x2_c01051{left:97.200000pt;}
.x3_c01051{left:98.133333pt;}
.x7_c01051{left:99.066667pt;}
.x8_c01051{left:100.000000pt;}
.x9_c01051{left:101.066667pt;}
.xa_c01051{left:102.000000pt;}
.x6_c01051{left:103.600000pt;}
.xc_c01051{left:105.333333pt;}
.xd_c01051{left:106.266667pt;}
.xb_c01051{left:110.133333pt;}
.xe_c01051{left:164.133333pt;}
.xf_c01051{left:253.801554pt;}
}





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

.ir_c01052:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01052{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01052;src:url('chunks/assets/font_7b6708e945ac2aca95fd541e.woff2')format("woff");}.ff1_c01052{font-family:ff1_c01052;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01052;src:url('chunks/assets/font_f71cb478831fb1c1fbcb6777.woff2')format("woff");}.ff2_c01052{font-family:ff2_c01052;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01052;src:url('chunks/assets/font_a73a5214ed32c7971c190dd7.woff2')format("woff");}.ff3_c01052{font-family:ff3_c01052;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01052;src:url('chunks/assets/font_4400a6fbc84edb95eb57d70c.woff2')format("woff");}.ff4_c01052{font-family:ff4_c01052;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01052;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff5_c01052{font-family:ff5_c01052;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01052;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c01052{font-family:ff6_c01052;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01052{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01052{vertical-align:0.000000px;}
.v1_c01052{vertical-align:144.000000px;}
.ls1_c01052{letter-spacing:0.000000px;}
.ls0_c01052{letter-spacing:3.000000px;}
.sc__c01052{text-shadow:none;}
.sc0_c01052{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01052{-webkit-text-stroke:0px transparent;}
.sc0_c01052{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01052{word-spacing:-69.750000px;}
.ws0_c01052{word-spacing:-25.500000px;}
.ws2_c01052{word-spacing:-17.352000px;}
.ws3_c01052{word-spacing:0.000000px;}
._13_c01052{margin-left:-34.140000px;}
._2c_c01052{margin-left:-28.812000px;}
._18_c01052{margin-left:-18.711000px;}
._16_c01052{margin-left:-16.848000px;}
._28_c01052{margin-left:-14.862000px;}
._14_c01052{margin-left:-13.524000px;}
._1c_c01052{margin-left:-11.715000px;}
._10_c01052{margin-left:-9.159000px;}
._11_c01052{margin-left:-7.500000px;}
._d_c01052{margin-left:-6.156000px;}
._12_c01052{margin-left:-4.545000px;}
._e_c01052{margin-left:-3.516000px;}
._f_c01052{margin-left:-1.536000px;}
._9_c01052{width:1.080000px;}
._8_c01052{width:2.157000px;}
._c_c01052{width:3.216000px;}
._0_c01052{width:4.386000px;}
._5_c01052{width:5.424000px;}
._3_c01052{width:6.528000px;}
._1_c01052{width:8.466000px;}
._b_c01052{width:10.050000px;}
._22_c01052{width:11.130000px;}
._2_c01052{width:12.138000px;}
._4_c01052{width:13.566000px;}
._1b_c01052{width:14.631000px;}
._a_c01052{width:16.773000px;}
._7_c01052{width:18.618000px;}
._25_c01052{width:21.285000px;}
._1e_c01052{width:23.148000px;}
._27_c01052{width:25.596000px;}
._1a_c01052{width:26.868000px;}
._17_c01052{width:28.350000px;}
._20_c01052{width:29.487000px;}
._1d_c01052{width:30.942000px;}
._2b_c01052{width:31.950000px;}
._2d_c01052{width:33.219000px;}
._1f_c01052{width:34.533000px;}
._21_c01052{width:36.903000px;}
._2a_c01052{width:38.865000px;}
._29_c01052{width:42.768000px;}
._15_c01052{width:98.271000px;}
._19_c01052{width:113.028000px;}
._23_c01052{width:134.241000px;}
._24_c01052{width:182.247000px;}
._26_c01052{width:251.679000px;}
._6_c01052{width:374.274000px;}
._2e_c01052{width:380.658000px;}
.fc2_c01052{color:transparent;}
.fc1_c01052{color:rgb(128,128,128);}
.fc0_c01052{color:rgb(0,0,0);}
.fs8_c01052{font-size:48.000000px;}
.fs4_c01052{font-size:60.000000px;}
.fs3_c01052{font-size:72.000000px;}
.fs2_c01052{font-size:81.000000px;}
.fs7_c01052{font-size:84.000000px;}
.fs1_c01052{font-size:87.000000px;}
.fs6_c01052{font-size:90.000000px;}
.fs0_c01052{font-size:102.000000px;}
.fs5_c01052{font-size:279.000000px;}
.y0_c01052{bottom:0.000000px;}
.y25_c01052{bottom:3.105000px;}
.y24_c01052{bottom:7.228355px;}
.y23_c01052{bottom:53.985000px;}
.y22_c01052{bottom:76.635000px;}
.y21_c01052{bottom:102.585000px;}
.y20_c01052{bottom:127.485000px;}
.y1f_c01052{bottom:152.235000px;}
.y1e_c01052{bottom:176.385000px;}
.y1d_c01052{bottom:200.835000px;}
.y1c_c01052{bottom:226.035000px;}
.y1b_c01052{bottom:249.735000px;}
.y1a_c01052{bottom:274.335000px;}
.y19_c01052{bottom:297.885000px;}
.y18_c01052{bottom:322.635000px;}
.y17_c01052{bottom:347.235000px;}
.y16_c01052{bottom:370.485000px;}
.y15_c01052{bottom:395.085000px;}
.y14_c01052{bottom:419.385000px;}
.y13_c01052{bottom:443.685000px;}
.y12_c01052{bottom:467.385000px;}
.y11_c01052{bottom:491.985000px;}
.y10_c01052{bottom:516.285000px;}
.yf_c01052{bottom:540.285000px;}
.ye_c01052{bottom:564.285000px;}
.yd_c01052{bottom:588.135000px;}
.yc_c01052{bottom:610.785000px;}
.yb_c01052{bottom:636.885000px;}
.ya_c01052{bottom:660.135000px;}
.y9_c01052{bottom:684.435000px;}
.y8_c01052{bottom:708.285000px;}
.y6_c01052{bottom:721.335000px;}
.y7_c01052{bottom:733.935000px;}
.y5_c01052{bottom:793.335000px;}
.y4_c01052{bottom:805.485000px;}
.y3_c01052{bottom:853.485000px;}
.y2_c01052{bottom:877.785000px;}
.y1_c01052{bottom:913.635000px;}
.ha_c01052{height:13.200074px;}
.hb_c01052{height:43.804688px;}
.h5_c01052{height:70.224609px;}
.h3_c01052{height:79.497070px;}
.h4_c01052{height:84.269531px;}
.h9_c01052{height:84.656250px;}
.h8_c01052{height:88.330078px;}
.h7_c01052{height:91.160156px;}
.h2_c01052{height:100.057617px;}
.h6_c01052{height:273.823242px;}
.h0_c01052{height:977.925000px;}
.h1_c01052{height:978.000000px;}
.w2_c01052{width:104.875500px;}
.w0_c01052{width:665.850000px;}
.w1_c01052{width:666.000000px;}
.x0_c01052{left:0.000000px;}
.x8_c01052{left:27.450000px;}
.x2_c01052{left:38.700000px;}
.x5_c01052{left:42.300000px;}
.x7_c01052{left:43.650000px;}
.x9_c01052{left:44.850000px;}
.xa_c01052{left:46.350000px;}
.xb_c01052{left:47.550000px;}
.xd_c01052{left:48.600000px;}
.xc_c01052{left:50.250000px;}
.x3_c01052{left:52.350000px;}
.x6_c01052{left:77.700000px;}
.x1_c01052{left:195.600000px;}
.xf_c01052{left:284.739258px;}
.xe_c01052{left:379.050000px;}
.x4_c01052{left:503.850000px;}
@media print{
.v0_c01052{vertical-align:0.000000pt;}
.v1_c01052{vertical-align:128.000000pt;}
.ls1_c01052{letter-spacing:0.000000pt;}
.ls0_c01052{letter-spacing:2.666667pt;}
.ws1_c01052{word-spacing:-62.000000pt;}
.ws0_c01052{word-spacing:-22.666667pt;}
.ws2_c01052{word-spacing:-15.424000pt;}
.ws3_c01052{word-spacing:0.000000pt;}
._13_c01052{margin-left:-30.346667pt;}
._2c_c01052{margin-left:-25.610667pt;}
._18_c01052{margin-left:-16.632000pt;}
._16_c01052{margin-left:-14.976000pt;}
._28_c01052{margin-left:-13.210667pt;}
._14_c01052{margin-left:-12.021333pt;}
._1c_c01052{margin-left:-10.413333pt;}
._10_c01052{margin-left:-8.141333pt;}
._11_c01052{margin-left:-6.666667pt;}
._d_c01052{margin-left:-5.472000pt;}
._12_c01052{margin-left:-4.040000pt;}
._e_c01052{margin-left:-3.125333pt;}
._f_c01052{margin-left:-1.365333pt;}
._9_c01052{width:0.960000pt;}
._8_c01052{width:1.917333pt;}
._c_c01052{width:2.858667pt;}
._0_c01052{width:3.898667pt;}
._5_c01052{width:4.821333pt;}
._3_c01052{width:5.802667pt;}
._1_c01052{width:7.525333pt;}
._b_c01052{width:8.933333pt;}
._22_c01052{width:9.893333pt;}
._2_c01052{width:10.789333pt;}
._4_c01052{width:12.058667pt;}
._1b_c01052{width:13.005333pt;}
._a_c01052{width:14.909333pt;}
._7_c01052{width:16.549333pt;}
._25_c01052{width:18.920000pt;}
._1e_c01052{width:20.576000pt;}
._27_c01052{width:22.752000pt;}
._1a_c01052{width:23.882667pt;}
._17_c01052{width:25.200000pt;}
._20_c01052{width:26.210667pt;}
._1d_c01052{width:27.504000pt;}
._2b_c01052{width:28.400000pt;}
._2d_c01052{width:29.528000pt;}
._1f_c01052{width:30.696000pt;}
._21_c01052{width:32.802667pt;}
._2a_c01052{width:34.546667pt;}
._29_c01052{width:38.016000pt;}
._15_c01052{width:87.352000pt;}
._19_c01052{width:100.469333pt;}
._23_c01052{width:119.325333pt;}
._24_c01052{width:161.997333pt;}
._26_c01052{width:223.714667pt;}
._6_c01052{width:332.688000pt;}
._2e_c01052{width:338.362667pt;}
.fs8_c01052{font-size:42.666667pt;}
.fs4_c01052{font-size:53.333333pt;}
.fs3_c01052{font-size:64.000000pt;}
.fs2_c01052{font-size:72.000000pt;}
.fs7_c01052{font-size:74.666667pt;}
.fs1_c01052{font-size:77.333333pt;}
.fs6_c01052{font-size:80.000000pt;}
.fs0_c01052{font-size:90.666667pt;}
.fs5_c01052{font-size:248.000000pt;}
.y0_c01052{bottom:0.000000pt;}
.y25_c01052{bottom:2.760000pt;}
.y24_c01052{bottom:6.425204pt;}
.y23_c01052{bottom:47.986667pt;}
.y22_c01052{bottom:68.120000pt;}
.y21_c01052{bottom:91.186667pt;}
.y20_c01052{bottom:113.320000pt;}
.y1f_c01052{bottom:135.320000pt;}
.y1e_c01052{bottom:156.786667pt;}
.y1d_c01052{bottom:178.520000pt;}
.y1c_c01052{bottom:200.920000pt;}
.y1b_c01052{bottom:221.986667pt;}
.y1a_c01052{bottom:243.853333pt;}
.y19_c01052{bottom:264.786667pt;}
.y18_c01052{bottom:286.786667pt;}
.y17_c01052{bottom:308.653333pt;}
.y16_c01052{bottom:329.320000pt;}
.y15_c01052{bottom:351.186667pt;}
.y14_c01052{bottom:372.786667pt;}
.y13_c01052{bottom:394.386667pt;}
.y12_c01052{bottom:415.453333pt;}
.y11_c01052{bottom:437.320000pt;}
.y10_c01052{bottom:458.920000pt;}
.yf_c01052{bottom:480.253333pt;}
.ye_c01052{bottom:501.586667pt;}
.yd_c01052{bottom:522.786667pt;}
.yc_c01052{bottom:542.920000pt;}
.yb_c01052{bottom:566.120000pt;}
.ya_c01052{bottom:586.786667pt;}
.y9_c01052{bottom:608.386667pt;}
.y8_c01052{bottom:629.586667pt;}
.y6_c01052{bottom:641.186667pt;}
.y7_c01052{bottom:652.386667pt;}
.y5_c01052{bottom:705.186667pt;}
.y4_c01052{bottom:715.986667pt;}
.y3_c01052{bottom:758.653333pt;}
.y2_c01052{bottom:780.253333pt;}
.y1_c01052{bottom:812.120000pt;}
.ha_c01052{height:11.733399pt;}
.hb_c01052{height:38.937500pt;}
.h5_c01052{height:62.421875pt;}
.h3_c01052{height:70.664062pt;}
.h4_c01052{height:74.906250pt;}
.h9_c01052{height:75.250000pt;}
.h8_c01052{height:78.515625pt;}
.h7_c01052{height:81.031250pt;}
.h2_c01052{height:88.940104pt;}
.h6_c01052{height:243.398438pt;}
.h0_c01052{height:869.266667pt;}
.h1_c01052{height:869.333333pt;}
.w2_c01052{width:93.222667pt;}
.w0_c01052{width:591.866667pt;}
.w1_c01052{width:592.000000pt;}
.x0_c01052{left:0.000000pt;}
.x8_c01052{left:24.400000pt;}
.x2_c01052{left:34.400000pt;}
.x5_c01052{left:37.600000pt;}
.x7_c01052{left:38.800000pt;}
.x9_c01052{left:39.866667pt;}
.xa_c01052{left:41.200000pt;}
.xb_c01052{left:42.266667pt;}
.xd_c01052{left:43.200000pt;}
.xc_c01052{left:44.666667pt;}
.x3_c01052{left:46.533333pt;}
.x6_c01052{left:69.066667pt;}
.x1_c01052{left:173.866667pt;}
.xf_c01052{left:253.101563pt;}
.xe_c01052{left:336.933333pt;}
.x4_c01052{left:447.866667pt;}
}





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

.ir_c01053:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01053{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01053;src:url('chunks/assets/font_301486c62a07cd733879c6cc.woff2')format("woff");}.ff1_c01053{font-family:ff1_c01053;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01053;src:url('chunks/assets/font_2efa5c721a80af77337b7540.woff2')format("woff");}.ff2_c01053{font-family:ff2_c01053;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01053;src:url('chunks/assets/font_9c9e400c0b3dcce6389db72d.woff2')format("woff");}.ff3_c01053{font-family:ff3_c01053;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01053;src:url('chunks/assets/font_e4f8aa598efd1ed31929eec6.woff2')format("woff");}.ff4_c01053{font-family:ff4_c01053;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01053;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c01053{font-family:ff5_c01053;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01053{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01053{vertical-align:0.000000px;}
.ls1_c01053{letter-spacing:0.000000px;}
.ls2_c01053{letter-spacing:15.000000px;}
.ls0_c01053{letter-spacing:33.000000px;}
.sc__c01053{text-shadow:none;}
.sc0_c01053{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01053{-webkit-text-stroke:0px transparent;}
.sc0_c01053{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01053{word-spacing:-20.250000px;}
.ws0_c01053{word-spacing:-17.352000px;}
.ws2_c01053{word-spacing:0.000000px;}
._26_c01053{margin-left:-22.881000px;}
._23_c01053{margin-left:-19.926000px;}
._2b_c01053{margin-left:-15.147000px;}
._2c_c01053{margin-left:-13.401000px;}
._2d_c01053{margin-left:-10.530000px;}
._1a_c01053{margin-left:-8.991000px;}
._18_c01053{margin-left:-7.344000px;}
._13_c01053{margin-left:-6.156000px;}
._17_c01053{margin-left:-5.094000px;}
._0_c01053{margin-left:-3.321000px;}
._1_c01053{margin-left:-1.377000px;}
._5_c01053{width:1.296000px;}
._e_c01053{width:2.430000px;}
._3_c01053{width:3.564000px;}
._6_c01053{width:4.860000px;}
._7_c01053{width:5.994000px;}
._12_c01053{width:7.128000px;}
._1d_c01053{width:8.181000px;}
._8_c01053{width:9.315000px;}
._d_c01053{width:11.016000px;}
._10_c01053{width:12.393000px;}
._2_c01053{width:13.446000px;}
._f_c01053{width:14.499000px;}
._11_c01053{width:16.038000px;}
._c_c01053{width:17.172000px;}
._4_c01053{width:18.225000px;}
._29_c01053{width:20.520000px;}
._a_c01053{width:22.275000px;}
._14_c01053{width:23.571000px;}
._9_c01053{width:25.515000px;}
._1f_c01053{width:26.973000px;}
._b_c01053{width:28.026000px;}
._1e_c01053{width:29.565000px;}
._16_c01053{width:31.185000px;}
._15_c01053{width:33.939000px;}
._2a_c01053{width:37.989000px;}
._1c_c01053{width:39.285000px;}
._2f_c01053{width:50.706000px;}
._28_c01053{width:51.993000px;}
._19_c01053{width:59.856000px;}
._21_c01053{width:69.984000px;}
._25_c01053{width:90.888000px;}
._27_c01053{width:119.376000px;}
._24_c01053{width:181.953000px;}
._1b_c01053{width:271.917000px;}
._2e_c01053{width:283.617000px;}
._20_c01053{width:495.720000px;}
._22_c01053{width:1166.577000px;}
.fc2_c01053{color:transparent;}
.fc1_c01053{color:rgb(128,128,128);}
.fc0_c01053{color:rgb(0,0,0);}
.fs3_c01053{font-size:48.000000px;}
.fs2_c01053{font-size:57.000000px;}
.fs1_c01053{font-size:72.000000px;}
.fs0_c01053{font-size:81.000000px;}
.y0_c01053{bottom:0.000000px;}
.y25_c01053{bottom:3.105000px;}
.y24_c01053{bottom:7.228371px;}
.y23_c01053{bottom:73.365000px;}
.y22_c01053{bottom:96.315000px;}
.y21_c01053{bottom:121.815000px;}
.y20_c01053{bottom:146.115000px;}
.y1f_c01053{bottom:171.465000px;}
.y1e_c01053{bottom:196.065000px;}
.y1d_c01053{bottom:220.815000px;}
.y1c_c01053{bottom:245.415000px;}
.y1b_c01053{bottom:270.465000px;}
.y1a_c01053{bottom:294.615000px;}
.y19_c01053{bottom:319.365000px;}
.y18_c01053{bottom:343.665000px;}
.y17_c01053{bottom:367.515000px;}
.y16_c01053{bottom:391.815000px;}
.y15_c01053{bottom:416.115000px;}
.y14_c01053{bottom:440.415000px;}
.y13_c01053{bottom:464.715000px;}
.y12_c01053{bottom:488.715000px;}
.y11_c01053{bottom:512.715000px;}
.y10_c01053{bottom:536.715000px;}
.yf_c01053{bottom:558.615000px;}
.ye_c01053{bottom:584.565000px;}
.yd_c01053{bottom:607.965000px;}
.yc_c01053{bottom:633.465000px;}
.yb_c01053{bottom:657.465000px;}
.ya_c01053{bottom:682.065000px;}
.y9_c01053{bottom:706.365000px;}
.y8_c01053{bottom:730.365000px;}
.y7_c01053{bottom:754.065000px;}
.y6_c01053{bottom:778.665000px;}
.y5_c01053{bottom:802.665000px;}
.y4_c01053{bottom:826.665000px;}
.y3_c01053{bottom:850.965000px;}
.y2_c01053{bottom:875.115000px;}
.y1_c01053{bottom:899.415000px;}
.h6_c01053{height:13.200074px;}
.h7_c01053{height:43.804688px;}
.h5_c01053{height:70.628906px;}
.h4_c01053{height:70.664062px;}
.h2_c01053{height:79.497070px;}
.h3_c01053{height:84.269531px;}
.h1_c01053{height:986.250000px;}
.h0_c01053{height:986.325000px;}
.w2_c01053{width:104.875500px;}
.w0_c01053{width:667.425000px;}
.w1_c01053{width:667.500000px;}
.x0_c01053{left:0.000000px;}
.x2_c01053{left:43.800000px;}
.x6_c01053{left:55.650000px;}
.xa_c01053{left:63.450000px;}
.xb_c01053{left:121.800000px;}
.x9_c01053{left:136.350000px;}
.x8_c01053{left:139.800000px;}
.x1_c01053{left:140.850000px;}
.x3_c01053{left:142.050000px;}
.x5_c01053{left:143.100000px;}
.x4_c01053{left:171.000000px;}
.x7_c01053{left:281.850000px;}
.xd_c01053{left:285.526749px;}
.xc_c01053{left:598.350000px;}
@media print{
.v0_c01053{vertical-align:0.000000pt;}
.ls1_c01053{letter-spacing:0.000000pt;}
.ls2_c01053{letter-spacing:13.333333pt;}
.ls0_c01053{letter-spacing:29.333333pt;}
.ws1_c01053{word-spacing:-18.000000pt;}
.ws0_c01053{word-spacing:-15.424000pt;}
.ws2_c01053{word-spacing:0.000000pt;}
._26_c01053{margin-left:-20.338667pt;}
._23_c01053{margin-left:-17.712000pt;}
._2b_c01053{margin-left:-13.464000pt;}
._2c_c01053{margin-left:-11.912000pt;}
._2d_c01053{margin-left:-9.360000pt;}
._1a_c01053{margin-left:-7.992000pt;}
._18_c01053{margin-left:-6.528000pt;}
._13_c01053{margin-left:-5.472000pt;}
._17_c01053{margin-left:-4.528000pt;}
._0_c01053{margin-left:-2.952000pt;}
._1_c01053{margin-left:-1.224000pt;}
._5_c01053{width:1.152000pt;}
._e_c01053{width:2.160000pt;}
._3_c01053{width:3.168000pt;}
._6_c01053{width:4.320000pt;}
._7_c01053{width:5.328000pt;}
._12_c01053{width:6.336000pt;}
._1d_c01053{width:7.272000pt;}
._8_c01053{width:8.280000pt;}
._d_c01053{width:9.792000pt;}
._10_c01053{width:11.016000pt;}
._2_c01053{width:11.952000pt;}
._f_c01053{width:12.888000pt;}
._11_c01053{width:14.256000pt;}
._c_c01053{width:15.264000pt;}
._4_c01053{width:16.200000pt;}
._29_c01053{width:18.240000pt;}
._a_c01053{width:19.800000pt;}
._14_c01053{width:20.952000pt;}
._9_c01053{width:22.680000pt;}
._1f_c01053{width:23.976000pt;}
._b_c01053{width:24.912000pt;}
._1e_c01053{width:26.280000pt;}
._16_c01053{width:27.720000pt;}
._15_c01053{width:30.168000pt;}
._2a_c01053{width:33.768000pt;}
._1c_c01053{width:34.920000pt;}
._2f_c01053{width:45.072000pt;}
._28_c01053{width:46.216000pt;}
._19_c01053{width:53.205333pt;}
._21_c01053{width:62.208000pt;}
._25_c01053{width:80.789333pt;}
._27_c01053{width:106.112000pt;}
._24_c01053{width:161.736000pt;}
._1b_c01053{width:241.704000pt;}
._2e_c01053{width:252.104000pt;}
._20_c01053{width:440.640000pt;}
._22_c01053{width:1036.957333pt;}
.fs3_c01053{font-size:42.666667pt;}
.fs2_c01053{font-size:50.666667pt;}
.fs1_c01053{font-size:64.000000pt;}
.fs0_c01053{font-size:72.000000pt;}
.y0_c01053{bottom:0.000000pt;}
.y25_c01053{bottom:2.760000pt;}
.y24_c01053{bottom:6.425219pt;}
.y23_c01053{bottom:65.213333pt;}
.y22_c01053{bottom:85.613333pt;}
.y21_c01053{bottom:108.280000pt;}
.y20_c01053{bottom:129.880000pt;}
.y1f_c01053{bottom:152.413333pt;}
.y1e_c01053{bottom:174.280000pt;}
.y1d_c01053{bottom:196.280000pt;}
.y1c_c01053{bottom:218.146667pt;}
.y1b_c01053{bottom:240.413333pt;}
.y1a_c01053{bottom:261.880000pt;}
.y19_c01053{bottom:283.880000pt;}
.y18_c01053{bottom:305.480000pt;}
.y17_c01053{bottom:326.680000pt;}
.y16_c01053{bottom:348.280000pt;}
.y15_c01053{bottom:369.880000pt;}
.y14_c01053{bottom:391.480000pt;}
.y13_c01053{bottom:413.080000pt;}
.y12_c01053{bottom:434.413333pt;}
.y11_c01053{bottom:455.746667pt;}
.y10_c01053{bottom:477.080000pt;}
.yf_c01053{bottom:496.546667pt;}
.ye_c01053{bottom:519.613333pt;}
.yd_c01053{bottom:540.413333pt;}
.yc_c01053{bottom:563.080000pt;}
.yb_c01053{bottom:584.413333pt;}
.ya_c01053{bottom:606.280000pt;}
.y9_c01053{bottom:627.880000pt;}
.y8_c01053{bottom:649.213333pt;}
.y7_c01053{bottom:670.280000pt;}
.y6_c01053{bottom:692.146667pt;}
.y5_c01053{bottom:713.480000pt;}
.y4_c01053{bottom:734.813333pt;}
.y3_c01053{bottom:756.413333pt;}
.y2_c01053{bottom:777.880000pt;}
.y1_c01053{bottom:799.480000pt;}
.h6_c01053{height:11.733399pt;}
.h7_c01053{height:38.937500pt;}
.h5_c01053{height:62.781250pt;}
.h4_c01053{height:62.812500pt;}
.h2_c01053{height:70.664062pt;}
.h3_c01053{height:74.906250pt;}
.h1_c01053{height:876.666667pt;}
.h0_c01053{height:876.733333pt;}
.w2_c01053{width:93.222667pt;}
.w0_c01053{width:593.266667pt;}
.w1_c01053{width:593.333333pt;}
.x0_c01053{left:0.000000pt;}
.x2_c01053{left:38.933333pt;}
.x6_c01053{left:49.466667pt;}
.xa_c01053{left:56.400000pt;}
.xb_c01053{left:108.266667pt;}
.x9_c01053{left:121.200000pt;}
.x8_c01053{left:124.266667pt;}
.x1_c01053{left:125.200000pt;}
.x3_c01053{left:126.266667pt;}
.x5_c01053{left:127.200000pt;}
.x4_c01053{left:152.000000pt;}
.x7_c01053{left:250.533333pt;}
.xd_c01053{left:253.801554pt;}
.xc_c01053{left:531.866667pt;}
}





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

.ir_c01054:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01054{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01054;src:url('chunks/assets/font_7eb600857c4b94761b9433f6.woff2')format("woff");}.ff1_c01054{font-family:ff1_c01054;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01054;src:url('chunks/assets/font_10763e7719729d597b77c97e.woff2')format("woff");}.ff2_c01054{font-family:ff2_c01054;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01054;src:url('chunks/assets/font_a3146fb3ad388fb7ad8febac.woff2')format("woff");}.ff3_c01054{font-family:ff3_c01054;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01054;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff4_c01054{font-family:ff4_c01054;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01054;src:url('chunks/assets/font_7c4ae0a84a4568bf63bf6de9.woff2')format("woff");}.ff5_c01054{font-family:ff5_c01054;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01054;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c01054{font-family:ff6_c01054;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01054{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01054{vertical-align:0.000000px;}
.ls1_c01054{letter-spacing:-6.000000px;}
.ls0_c01054{letter-spacing:0.000000px;}
.sc__c01054{text-shadow:none;}
.sc0_c01054{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01054{-webkit-text-stroke:0px transparent;}
.sc0_c01054{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01054{word-spacing:-17.352000px;}
.ws4_c01054{word-spacing:-2.142000px;}
.ws0_c01054{word-spacing:-1.071000px;}
.ws1_c01054{word-spacing:-0.153000px;}
.ws5_c01054{word-spacing:0.000000px;}
.ws3_c01054{word-spacing:4.827000px;}
._23_c01054{margin-left:-21.285000px;}
._22_c01054{margin-left:-14.103000px;}
._14_c01054{margin-left:-9.801000px;}
._1d_c01054{margin-left:-7.776000px;}
._19_c01054{margin-left:-5.832000px;}
._1f_c01054{margin-left:-4.446000px;}
._16_c01054{margin-left:-3.321000px;}
._6_c01054{margin-left:-2.106000px;}
._4_c01054{margin-left:-1.053000px;}
._1e_c01054{width:1.053000px;}
._1_c01054{width:2.106000px;}
._0_c01054{width:3.564000px;}
._3_c01054{width:4.617000px;}
._a_c01054{width:5.670000px;}
._8_c01054{width:7.209000px;}
._7_c01054{width:8.424000px;}
._1a_c01054{width:9.477000px;}
._e_c01054{width:10.530000px;}
._2_c01054{width:11.907000px;}
._9_c01054{width:13.689000px;}
._d_c01054{width:14.985000px;}
._5_c01054{width:16.686000px;}
._11_c01054{width:18.306000px;}
._26_c01054{width:20.166000px;}
._12_c01054{width:22.680000px;}
._13_c01054{width:24.447000px;}
._18_c01054{width:25.596000px;}
._1b_c01054{width:27.216000px;}
._c_c01054{width:28.350000px;}
._b_c01054{width:30.147000px;}
._10_c01054{width:31.761000px;}
._f_c01054{width:33.777000px;}
._17_c01054{width:34.911000px;}
._24_c01054{width:36.291000px;}
._1c_c01054{width:37.422000px;}
._27_c01054{width:39.066000px;}
._21_c01054{width:42.120000px;}
._15_c01054{width:45.684000px;}
._20_c01054{width:51.921000px;}
._25_c01054{width:53.508000px;}
.fc2_c01054{color:transparent;}
.fc1_c01054{color:rgb(128,128,128);}
.fc0_c01054{color:rgb(0,0,0);}
.fs3_c01054{font-size:42.000000px;}
.fs4_c01054{font-size:48.000000px;}
.fs1_c01054{font-size:51.000000px;}
.fs2_c01054{font-size:72.000000px;}
.fs0_c01054{font-size:81.000000px;}
.y0_c01054{bottom:0.000000px;}
.y25_c01054{bottom:3.105000px;}
.y24_c01054{bottom:7.228355px;}
.y23_c01054{bottom:53.535000px;}
.y22_c01054{bottom:86.085000px;}
.y21_c01054{bottom:111.585000px;}
.y20_c01054{bottom:135.285000px;}
.y1f_c01054{bottom:159.285000px;}
.y1e_c01054{bottom:182.835000px;}
.y1d_c01054{bottom:207.435000px;}
.y1c_c01054{bottom:231.135000px;}
.y1b_c01054{bottom:255.735000px;}
.y1a_c01054{bottom:280.035000px;}
.y19_c01054{bottom:303.735000px;}
.y18_c01054{bottom:328.035000px;}
.y17_c01054{bottom:351.585000px;}
.y16_c01054{bottom:376.185000px;}
.y15_c01054{bottom:400.185000px;}
.y14_c01054{bottom:424.785000px;}
.y13_c01054{bottom:448.785000px;}
.y12_c01054{bottom:472.785000px;}
.y11_c01054{bottom:496.335000px;}
.y10_c01054{bottom:520.635000px;}
.yf_c01054{bottom:544.035000px;}
.ye_c01054{bottom:568.335000px;}
.yd_c01054{bottom:591.435000px;}
.yc_c01054{bottom:615.285000px;}
.yb_c01054{bottom:639.135000px;}
.ya_c01054{bottom:663.135000px;}
.y9_c01054{bottom:687.135000px;}
.y8_c01054{bottom:710.985000px;}
.y7_c01054{bottom:735.285000px;}
.y6_c01054{bottom:759.285000px;}
.y5_c01054{bottom:783.285000px;}
.y4_c01054{bottom:807.885000px;}
.y3_c01054{bottom:832.185000px;}
.y2_c01054{bottom:856.935000px;}
.y1_c01054{bottom:880.785000px;}
.h7_c01054{height:13.200074px;}
.h8_c01054{height:43.804688px;}
.h5_c01054{height:50.028809px;}
.h6_c01054{height:50.053711px;}
.h2_c01054{height:79.497070px;}
.h4_c01054{height:84.269531px;}
.h3_c01054{height:91.160156px;}
.h0_c01054{height:980.625000px;}
.h1_c01054{height:981.000000px;}
.w2_c01054{width:104.875500px;}
.w0_c01054{width:667.425000px;}
.w1_c01054{width:667.500000px;}
.x0_c01054{left:0.000000px;}
.x8_c01054{left:40.800000px;}
.x7_c01054{left:44.850000px;}
.x6_c01054{left:46.200000px;}
.x5_c01054{left:47.250000px;}
.x1_c01054{left:48.300000px;}
.x4_c01054{left:49.350000px;}
.x2_c01054{left:50.400000px;}
.x3_c01054{left:78.750000px;}
.xa_c01054{left:285.526749px;}
.x9_c01054{left:498.600000px;}
@media print{
.v0_c01054{vertical-align:0.000000pt;}
.ls1_c01054{letter-spacing:-5.333333pt;}
.ls0_c01054{letter-spacing:0.000000pt;}
.ws2_c01054{word-spacing:-15.424000pt;}
.ws4_c01054{word-spacing:-1.904000pt;}
.ws0_c01054{word-spacing:-0.952000pt;}
.ws1_c01054{word-spacing:-0.136000pt;}
.ws5_c01054{word-spacing:0.000000pt;}
.ws3_c01054{word-spacing:4.290667pt;}
._23_c01054{margin-left:-18.920000pt;}
._22_c01054{margin-left:-12.536000pt;}
._14_c01054{margin-left:-8.712000pt;}
._1d_c01054{margin-left:-6.912000pt;}
._19_c01054{margin-left:-5.184000pt;}
._1f_c01054{margin-left:-3.952000pt;}
._16_c01054{margin-left:-2.952000pt;}
._6_c01054{margin-left:-1.872000pt;}
._4_c01054{margin-left:-0.936000pt;}
._1e_c01054{width:0.936000pt;}
._1_c01054{width:1.872000pt;}
._0_c01054{width:3.168000pt;}
._3_c01054{width:4.104000pt;}
._a_c01054{width:5.040000pt;}
._8_c01054{width:6.408000pt;}
._7_c01054{width:7.488000pt;}
._1a_c01054{width:8.424000pt;}
._e_c01054{width:9.360000pt;}
._2_c01054{width:10.584000pt;}
._9_c01054{width:12.168000pt;}
._d_c01054{width:13.320000pt;}
._5_c01054{width:14.832000pt;}
._11_c01054{width:16.272000pt;}
._26_c01054{width:17.925333pt;}
._12_c01054{width:20.160000pt;}
._13_c01054{width:21.730667pt;}
._18_c01054{width:22.752000pt;}
._1b_c01054{width:24.192000pt;}
._c_c01054{width:25.200000pt;}
._b_c01054{width:26.797333pt;}
._10_c01054{width:28.232000pt;}
._f_c01054{width:30.024000pt;}
._17_c01054{width:31.032000pt;}
._24_c01054{width:32.258667pt;}
._1c_c01054{width:33.264000pt;}
._27_c01054{width:34.725333pt;}
._21_c01054{width:37.440000pt;}
._15_c01054{width:40.608000pt;}
._20_c01054{width:46.152000pt;}
._25_c01054{width:47.562667pt;}
.fs3_c01054{font-size:37.333333pt;}
.fs4_c01054{font-size:42.666667pt;}
.fs1_c01054{font-size:45.333333pt;}
.fs2_c01054{font-size:64.000000pt;}
.fs0_c01054{font-size:72.000000pt;}
.y0_c01054{bottom:0.000000pt;}
.y25_c01054{bottom:2.760000pt;}
.y24_c01054{bottom:6.425204pt;}
.y23_c01054{bottom:47.586667pt;}
.y22_c01054{bottom:76.520000pt;}
.y21_c01054{bottom:99.186667pt;}
.y20_c01054{bottom:120.253333pt;}
.y1f_c01054{bottom:141.586667pt;}
.y1e_c01054{bottom:162.520000pt;}
.y1d_c01054{bottom:184.386667pt;}
.y1c_c01054{bottom:205.453333pt;}
.y1b_c01054{bottom:227.320000pt;}
.y1a_c01054{bottom:248.920000pt;}
.y19_c01054{bottom:269.986667pt;}
.y18_c01054{bottom:291.586667pt;}
.y17_c01054{bottom:312.520000pt;}
.y16_c01054{bottom:334.386667pt;}
.y15_c01054{bottom:355.720000pt;}
.y14_c01054{bottom:377.586667pt;}
.y13_c01054{bottom:398.920000pt;}
.y12_c01054{bottom:420.253333pt;}
.y11_c01054{bottom:441.186667pt;}
.y10_c01054{bottom:462.786667pt;}
.yf_c01054{bottom:483.586667pt;}
.ye_c01054{bottom:505.186667pt;}
.yd_c01054{bottom:525.720000pt;}
.yc_c01054{bottom:546.920000pt;}
.yb_c01054{bottom:568.120000pt;}
.ya_c01054{bottom:589.453333pt;}
.y9_c01054{bottom:610.786667pt;}
.y8_c01054{bottom:631.986667pt;}
.y7_c01054{bottom:653.586667pt;}
.y6_c01054{bottom:674.920000pt;}
.y5_c01054{bottom:696.253333pt;}
.y4_c01054{bottom:718.120000pt;}
.y3_c01054{bottom:739.720000pt;}
.y2_c01054{bottom:761.720000pt;}
.y1_c01054{bottom:782.920000pt;}
.h7_c01054{height:11.733399pt;}
.h8_c01054{height:38.937500pt;}
.h5_c01054{height:44.470052pt;}
.h6_c01054{height:44.492188pt;}
.h2_c01054{height:70.664062pt;}
.h4_c01054{height:74.906250pt;}
.h3_c01054{height:81.031250pt;}
.h0_c01054{height:871.666667pt;}
.h1_c01054{height:872.000000pt;}
.w2_c01054{width:93.222667pt;}
.w0_c01054{width:593.266667pt;}
.w1_c01054{width:593.333333pt;}
.x0_c01054{left:0.000000pt;}
.x8_c01054{left:36.266667pt;}
.x7_c01054{left:39.866667pt;}
.x6_c01054{left:41.066667pt;}
.x5_c01054{left:42.000000pt;}
.x1_c01054{left:42.933333pt;}
.x4_c01054{left:43.866667pt;}
.x2_c01054{left:44.800000pt;}
.x3_c01054{left:70.000000pt;}
.xa_c01054{left:253.801554pt;}
.x9_c01054{left:443.200000pt;}
}





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

.ir_c01055:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01055{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01055;src:url('chunks/assets/font_e08d9f316528dea178d6ba3c.woff2')format("woff");}.ff1_c01055{font-family:ff1_c01055;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01055;src:url('chunks/assets/font_24d7d317ceca881bf40cd36f.woff2')format("woff");}.ff2_c01055{font-family:ff2_c01055;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01055;src:url('chunks/assets/font_30d6cef7e78890e9dcc41be9.woff2')format("woff");}.ff3_c01055{font-family:ff3_c01055;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01055;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff4_c01055{font-family:ff4_c01055;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01055;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c01055{font-family:ff5_c01055;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01055{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01055{vertical-align:0.000000px;}
.ls2_c01055{letter-spacing:-9.000000px;}
.ls1_c01055{letter-spacing:0.000000px;}
.ls0_c01055{letter-spacing:1.848000px;}
.sc__c01055{text-shadow:none;}
.sc0_c01055{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01055{-webkit-text-stroke:0px transparent;}
.sc0_c01055{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01055{word-spacing:-20.250000px;}
.ws0_c01055{word-spacing:-17.352000px;}
.ws2_c01055{word-spacing:0.000000px;}
._0_c01055{margin-left:-51.585000px;}
._2b_c01055{margin-left:-27.993000px;}
._23_c01055{margin-left:-26.208000px;}
._1c_c01055{margin-left:-24.726000px;}
._2a_c01055{margin-left:-21.627000px;}
._2_c01055{margin-left:-20.406000px;}
._24_c01055{margin-left:-19.008000px;}
._1f_c01055{margin-left:-16.542000px;}
._19_c01055{margin-left:-14.823000px;}
._11_c01055{margin-left:-11.607000px;}
._22_c01055{margin-left:-8.865000px;}
._26_c01055{margin-left:-7.848000px;}
._12_c01055{margin-left:-6.768000px;}
._13_c01055{margin-left:-5.385000px;}
._f_c01055{margin-left:-3.744000px;}
._10_c01055{margin-left:-2.448000px;}
._1d_c01055{margin-left:-1.227000px;}
._14_c01055{width:1.305000px;}
._5_c01055{width:2.337000px;}
._b_c01055{width:3.705000px;}
._c_c01055{width:5.187000px;}
._7_c01055{width:6.783000px;}
._e_c01055{width:8.493000px;}
._9_c01055{width:9.747000px;}
._8_c01055{width:11.685000px;}
._1e_c01055{width:12.777000px;}
._15_c01055{width:13.824000px;}
._d_c01055{width:15.618000px;}
._a_c01055{width:17.499000px;}
._25_c01055{width:19.080000px;}
._1a_c01055{width:21.606000px;}
._20_c01055{width:23.664000px;}
._31_c01055{width:24.720000px;}
._28_c01055{width:25.950000px;}
._16_c01055{width:27.081000px;}
._18_c01055{width:29.403000px;}
._1_c01055{width:31.521000px;}
._2c_c01055{width:32.760000px;}
._29_c01055{width:39.414000px;}
._21_c01055{width:40.836000px;}
._2e_c01055{width:44.127000px;}
._17_c01055{width:45.267000px;}
._2d_c01055{width:76.626000px;}
._4_c01055{width:84.360000px;}
._3_c01055{width:99.636000px;}
._1b_c01055{width:131.340000px;}
._30_c01055{width:145.341000px;}
._2f_c01055{width:194.136000px;}
._27_c01055{width:197.805000px;}
._6_c01055{width:241.338000px;}
.fc2_c01055{color:transparent;}
.fc1_c01055{color:rgb(128,128,128);}
.fc0_c01055{color:rgb(0,0,0);}
.fs4_c01055{font-size:48.000000px;}
.fs0_c01055{font-size:57.000000px;}
.fs1_c01055{font-size:72.000000px;}
.fs2_c01055{font-size:81.000000px;}
.fs3_c01055{font-size:102.000000px;}
.y0_c01055{bottom:0.000000px;}
.y26_c01055{bottom:3.105000px;}
.y25_c01055{bottom:7.228371px;}
.y23_c01055{bottom:55.065000px;}
.y22_c01055{bottom:80.415000px;}
.y21_c01055{bottom:105.615000px;}
.y20_c01055{bottom:129.915000px;}
.y1f_c01055{bottom:154.965000px;}
.y1e_c01055{bottom:179.565000px;}
.y1d_c01055{bottom:204.165000px;}
.y1c_c01055{bottom:228.465000px;}
.y1b_c01055{bottom:253.215000px;}
.y1a_c01055{bottom:277.815000px;}
.y19_c01055{bottom:302.415000px;}
.y24_c01055{bottom:316.665000px;}
.y18_c01055{bottom:329.415000px;}
.y17_c01055{bottom:353.115000px;}
.y16_c01055{bottom:375.765000px;}
.y15_c01055{bottom:400.065000px;}
.y14_c01055{bottom:424.365000px;}
.y13_c01055{bottom:448.965000px;}
.y12_c01055{bottom:472.965000px;}
.y11_c01055{bottom:496.815000px;}
.y10_c01055{bottom:520.815000px;}
.yf_c01055{bottom:544.815000px;}
.ye_c01055{bottom:569.115000px;}
.yd_c01055{bottom:596.415000px;}
.yc_c01055{bottom:618.315000px;}
.yb_c01055{bottom:642.015000px;}
.ya_c01055{bottom:665.865000px;}
.y9_c01055{bottom:690.315000px;}
.y8_c01055{bottom:714.465000px;}
.y7_c01055{bottom:738.165000px;}
.y6_c01055{bottom:762.465000px;}
.y5_c01055{bottom:786.465000px;}
.y4_c01055{bottom:811.665000px;}
.y3_c01055{bottom:835.065000px;}
.y2_c01055{bottom:859.365000px;}
.y1_c01055{bottom:883.215000px;}
.h7_c01055{height:13.200074px;}
.h8_c01055{height:43.804688px;}
.h2_c01055{height:66.713379px;}
.h4_c01055{height:79.497070px;}
.h3_c01055{height:84.269531px;}
.h6_c01055{height:91.160156px;}
.h5_c01055{height:104.839927px;}
.h1_c01055{height:986.250000px;}
.h0_c01055{height:986.325000px;}
.w2_c01055{width:104.875500px;}
.w0_c01055{width:667.425000px;}
.w1_c01055{width:667.500000px;}
.x0_c01055{left:0.000000px;}
.x3_c01055{left:30.750000px;}
.x6_c01055{left:33.450000px;}
.x9_c01055{left:35.850000px;}
.xe_c01055{left:37.200000px;}
.x5_c01055{left:47.700000px;}
.x1_c01055{left:52.350000px;}
.x8_c01055{left:98.850000px;}
.x2_c01055{left:123.900000px;}
.x7_c01055{left:127.350000px;}
.xa_c01055{left:130.050000px;}
.xb_c01055{left:131.400000px;}
.xc_c01055{left:132.600000px;}
.x4_c01055{left:146.850000px;}
.xf_c01055{left:285.526749px;}
.xd_c01055{left:584.550000px;}
@media print{
.v0_c01055{vertical-align:0.000000pt;}
.ls2_c01055{letter-spacing:-8.000000pt;}
.ls1_c01055{letter-spacing:0.000000pt;}
.ls0_c01055{letter-spacing:1.642667pt;}
.ws1_c01055{word-spacing:-18.000000pt;}
.ws0_c01055{word-spacing:-15.424000pt;}
.ws2_c01055{word-spacing:0.000000pt;}
._0_c01055{margin-left:-45.853333pt;}
._2b_c01055{margin-left:-24.882667pt;}
._23_c01055{margin-left:-23.296000pt;}
._1c_c01055{margin-left:-21.978667pt;}
._2a_c01055{margin-left:-19.224000pt;}
._2_c01055{margin-left:-18.138667pt;}
._24_c01055{margin-left:-16.896000pt;}
._1f_c01055{margin-left:-14.704000pt;}
._19_c01055{margin-left:-13.176000pt;}
._11_c01055{margin-left:-10.317333pt;}
._22_c01055{margin-left:-7.880000pt;}
._26_c01055{margin-left:-6.976000pt;}
._12_c01055{margin-left:-6.016000pt;}
._13_c01055{margin-left:-4.786667pt;}
._f_c01055{margin-left:-3.328000pt;}
._10_c01055{margin-left:-2.176000pt;}
._1d_c01055{margin-left:-1.090667pt;}
._14_c01055{width:1.160000pt;}
._5_c01055{width:2.077333pt;}
._b_c01055{width:3.293333pt;}
._c_c01055{width:4.610667pt;}
._7_c01055{width:6.029333pt;}
._e_c01055{width:7.549333pt;}
._9_c01055{width:8.664000pt;}
._8_c01055{width:10.386667pt;}
._1e_c01055{width:11.357333pt;}
._15_c01055{width:12.288000pt;}
._d_c01055{width:13.882667pt;}
._a_c01055{width:15.554667pt;}
._25_c01055{width:16.960000pt;}
._1a_c01055{width:19.205333pt;}
._20_c01055{width:21.034667pt;}
._31_c01055{width:21.973333pt;}
._28_c01055{width:23.066667pt;}
._16_c01055{width:24.072000pt;}
._18_c01055{width:26.136000pt;}
._1_c01055{width:28.018667pt;}
._2c_c01055{width:29.120000pt;}
._29_c01055{width:35.034667pt;}
._21_c01055{width:36.298667pt;}
._2e_c01055{width:39.224000pt;}
._17_c01055{width:40.237333pt;}
._2d_c01055{width:68.112000pt;}
._4_c01055{width:74.986667pt;}
._3_c01055{width:88.565333pt;}
._1b_c01055{width:116.746667pt;}
._30_c01055{width:129.192000pt;}
._2f_c01055{width:172.565333pt;}
._27_c01055{width:175.826667pt;}
._6_c01055{width:214.522667pt;}
.fs4_c01055{font-size:42.666667pt;}
.fs0_c01055{font-size:50.666667pt;}
.fs1_c01055{font-size:64.000000pt;}
.fs2_c01055{font-size:72.000000pt;}
.fs3_c01055{font-size:90.666667pt;}
.y0_c01055{bottom:0.000000pt;}
.y26_c01055{bottom:2.760000pt;}
.y25_c01055{bottom:6.425219pt;}
.y23_c01055{bottom:48.946667pt;}
.y22_c01055{bottom:71.480000pt;}
.y21_c01055{bottom:93.880000pt;}
.y20_c01055{bottom:115.480000pt;}
.y1f_c01055{bottom:137.746667pt;}
.y1e_c01055{bottom:159.613333pt;}
.y1d_c01055{bottom:181.480000pt;}
.y1c_c01055{bottom:203.080000pt;}
.y1b_c01055{bottom:225.080000pt;}
.y1a_c01055{bottom:246.946667pt;}
.y19_c01055{bottom:268.813333pt;}
.y24_c01055{bottom:281.480000pt;}
.y18_c01055{bottom:292.813333pt;}
.y17_c01055{bottom:313.880000pt;}
.y16_c01055{bottom:334.013333pt;}
.y15_c01055{bottom:355.613333pt;}
.y14_c01055{bottom:377.213333pt;}
.y13_c01055{bottom:399.080000pt;}
.y12_c01055{bottom:420.413333pt;}
.y11_c01055{bottom:441.613333pt;}
.y10_c01055{bottom:462.946667pt;}
.yf_c01055{bottom:484.280000pt;}
.ye_c01055{bottom:505.880000pt;}
.yd_c01055{bottom:530.146667pt;}
.yc_c01055{bottom:549.613333pt;}
.yb_c01055{bottom:570.680000pt;}
.ya_c01055{bottom:591.880000pt;}
.y9_c01055{bottom:613.613333pt;}
.y8_c01055{bottom:635.080000pt;}
.y7_c01055{bottom:656.146667pt;}
.y6_c01055{bottom:677.746667pt;}
.y5_c01055{bottom:699.080000pt;}
.y4_c01055{bottom:721.480000pt;}
.y3_c01055{bottom:742.280000pt;}
.y2_c01055{bottom:763.880000pt;}
.y1_c01055{bottom:785.080000pt;}
.h7_c01055{height:11.733399pt;}
.h8_c01055{height:38.937500pt;}
.h2_c01055{height:59.300781pt;}
.h4_c01055{height:70.664062pt;}
.h3_c01055{height:74.906250pt;}
.h6_c01055{height:81.031250pt;}
.h5_c01055{height:93.191046pt;}
.h1_c01055{height:876.666667pt;}
.h0_c01055{height:876.733333pt;}
.w2_c01055{width:93.222667pt;}
.w0_c01055{width:593.266667pt;}
.w1_c01055{width:593.333333pt;}
.x0_c01055{left:0.000000pt;}
.x3_c01055{left:27.333333pt;}
.x6_c01055{left:29.733333pt;}
.x9_c01055{left:31.866667pt;}
.xe_c01055{left:33.066667pt;}
.x5_c01055{left:42.400000pt;}
.x1_c01055{left:46.533333pt;}
.x8_c01055{left:87.866667pt;}
.x2_c01055{left:110.133333pt;}
.x7_c01055{left:113.200000pt;}
.xa_c01055{left:115.600000pt;}
.xb_c01055{left:116.800000pt;}
.xc_c01055{left:117.866667pt;}
.x4_c01055{left:130.533333pt;}
.xf_c01055{left:253.801554pt;}
.xd_c01055{left:519.600000pt;}
}





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

.ir_c01056:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01056{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01056;src:url('chunks/assets/font_d80c94aaf20c00391956b3a0.woff2')format("woff");}.ff1_c01056{font-family:ff1_c01056;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01056;src:url('chunks/assets/font_d7ca489bc3f91af3cbd74892.woff2')format("woff");}.ff2_c01056{font-family:ff2_c01056;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01056;src:url('chunks/assets/font_414e717762976a0c18518c93.woff2')format("woff");}.ff3_c01056{font-family:ff3_c01056;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01056;src:url('chunks/assets/font_0fa1dda9da6b188e614cb594.woff2')format("woff");}.ff4_c01056{font-family:ff4_c01056;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01056;src:url('chunks/assets/font_9a3f24d1421cef007fe589a5.woff2')format("woff");}.ff5_c01056{font-family:ff5_c01056;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01056;src:url('chunks/assets/font_e012cf877347f3656c0f8161.woff2')format("woff");}.ff6_c01056{font-family:ff6_c01056;line-height:1.311035;font-style:normal;font-weight: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_c01056;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c01056{font-family:ff7_c01056;line-height:1.219238;font-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_c01056{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m0_c01056{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01056{vertical-align:0.000000px;}
.ls3_c01056{letter-spacing:-3.000000px;}
.ls1_c01056{letter-spacing:0.000000px;}
.ls0_c01056{letter-spacing:0.600000px;}
.ls2_c01056{letter-spacing:3.000000px;}
.sc__c01056{text-shadow:none;}
.sc0_c01056{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01056{-webkit-text-stroke:0px transparent;}
.sc0_c01056{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01056{word-spacing:-33.000000px;}
.ws0_c01056{word-spacing:-25.098000px;}
.ws3_c01056{word-spacing:-20.250000px;}
.ws1_c01056{word-spacing:-17.352000px;}
.ws4_c01056{word-spacing:0.000000px;}
._15_c01056{margin-left:-24.867000px;}
._16_c01056{margin-left:-19.374000px;}
._13_c01056{margin-left:-17.835000px;}
._12_c01056{margin-left:-16.833000px;}
._26_c01056{margin-left:-15.147000px;}
._18_c01056{margin-left:-13.833000px;}
._17_c01056{margin-left:-11.658000px;}
._1d_c01056{margin-left:-9.963000px;}
._14_c01056{margin-left:-8.571000px;}
._20_c01056{margin-left:-7.164000px;}
._10_c01056{margin-left:-6.156000px;}
._9_c01056{margin-left:-4.617000px;}
._d_c01056{margin-left:-2.592000px;}
._11_c01056{margin-left:-1.134000px;}
._0_c01056{width:1.215000px;}
._b_c01056{width:2.349000px;}
._4_c01056{width:3.969000px;}
._5_c01056{width:5.994000px;}
._3_c01056{width:7.776000px;}
._c_c01056{width:9.072000px;}
._6_c01056{width:10.449000px;}
._1_c01056{width:12.150000px;}
._e_c01056{width:14.094000px;}
._1a_c01056{width:15.147000px;}
._7_c01056{width:16.281000px;}
._2a_c01056{width:17.604000px;}
._19_c01056{width:18.711000px;}
._f_c01056{width:21.465000px;}
._8_c01056{width:23.166000px;}
._1c_c01056{width:24.381000px;}
._22_c01056{width:25.434000px;}
._a_c01056{width:26.730000px;}
._2_c01056{width:28.188000px;}
._23_c01056{width:29.241000px;}
._1b_c01056{width:30.294000px;}
._25_c01056{width:32.076000px;}
._1e_c01056{width:33.615000px;}
._1f_c01056{width:35.613000px;}
._21_c01056{width:38.625000px;}
._24_c01056{width:41.877000px;}
._29_c01056{width:85.104000px;}
._28_c01056{width:107.145000px;}
._27_c01056{width:1334.151000px;}
.fc2_c01056{color:transparent;}
.fc1_c01056{color:rgb(128,128,128);}
.fc0_c01056{color:rgb(0,0,0);}
.fs6_c01056{font-size:48.000000px;}
.fs3_c01056{font-size:66.000000px;}
.fs2_c01056{font-size:72.000000px;}
.fs0_c01056{font-size:81.000000px;}
.fs1_c01056{font-size:87.000000px;}
.fs4_c01056{font-size:105.000000px;}
.fs5_c01056{font-size:108.000000px;}
.y0_c01056{bottom:0.000000px;}
.y25_c01056{bottom:3.105000px;}
.y24_c01056{bottom:7.228369px;}
.y23_c01056{bottom:45.120000px;}
.y22_c01056{bottom:70.770000px;}
.y21_c01056{bottom:98.220000px;}
.y20_c01056{bottom:120.870000px;}
.y1f_c01056{bottom:145.770000px;}
.y1e_c01056{bottom:170.370000px;}
.y1d_c01056{bottom:194.820000px;}
.y1c_c01056{bottom:219.420000px;}
.y1b_c01056{bottom:244.020000px;}
.y1a_c01056{bottom:268.620000px;}
.y19_c01056{bottom:292.920000px;}
.y18_c01056{bottom:317.520000px;}
.y17_c01056{bottom:342.120000px;}
.y16_c01056{bottom:366.120000px;}
.y15_c01056{bottom:390.720000px;}
.y14_c01056{bottom:415.770000px;}
.y13_c01056{bottom:439.770000px;}
.y12_c01056{bottom:462.720000px;}
.y11_c01056{bottom:488.670000px;}
.y10_c01056{bottom:512.670000px;}
.yf_c01056{bottom:536.970000px;}
.ye_c01056{bottom:560.820000px;}
.yd_c01056{bottom:585.270000px;}
.yc_c01056{bottom:609.570000px;}
.yb_c01056{bottom:634.170000px;}
.ya_c01056{bottom:659.070000px;}
.y9_c01056{bottom:682.320000px;}
.y8_c01056{bottom:706.770000px;}
.y7_c01056{bottom:731.970000px;}
.y6_c01056{bottom:755.370000px;}
.y5_c01056{bottom:779.670000px;}
.y4_c01056{bottom:805.320000px;}
.y3_c01056{bottom:828.870000px;}
.y2_c01056{bottom:853.770000px;}
.y1_c01056{bottom:877.770000px;}
.h6_c01056{height:13.200073px;}
.h7_c01056{height:43.804688px;}
.h1_c01056{height:79.497070px;}
.h3_c01056{height:84.269531px;}
.h5_c01056{height:108.843750px;}
.h2_c01056{height:110.151855px;}
.h4_c01056{height:122.893066px;}
.h0_c01056{height:975.750000px;}
.w2_c01056{width:104.875500px;}
.w0_c01056{width:664.200000px;}
.w1_c01056{width:664.500000px;}
.x0_c01056{left:0.000000px;}
.xb_c01056{left:41.550000px;}
.x1_c01056{left:47.850000px;}
.x2_c01056{left:49.050000px;}
.x3_c01056{left:50.250000px;}
.x4_c01056{left:51.300000px;}
.x5_c01056{left:53.250000px;}
.x6_c01056{left:54.600000px;}
.x7_c01056{left:55.650000px;}
.x8_c01056{left:57.000000px;}
.x9_c01056{left:58.050000px;}
.xa_c01056{left:59.400000px;}
.xc_c01056{left:270.300000px;}
.x12_c01056{left:283.914230px;}
.xd_c01056{left:312.900000px;}
.xe_c01056{left:378.600000px;}
.xf_c01056{left:437.100000px;}
.x10_c01056{left:452.241600px;}
.x11_c01056{left:531.450000px;}
@media print{
.v0_c01056{vertical-align:0.000000pt;}
.ls3_c01056{letter-spacing:-2.666667pt;}
.ls1_c01056{letter-spacing:0.000000pt;}
.ls0_c01056{letter-spacing:0.533333pt;}
.ls2_c01056{letter-spacing:2.666667pt;}
.ws2_c01056{word-spacing:-29.333333pt;}
.ws0_c01056{word-spacing:-22.309333pt;}
.ws3_c01056{word-spacing:-18.000000pt;}
.ws1_c01056{word-spacing:-15.424000pt;}
.ws4_c01056{word-spacing:0.000000pt;}
._15_c01056{margin-left:-22.104000pt;}
._16_c01056{margin-left:-17.221333pt;}
._13_c01056{margin-left:-15.853333pt;}
._12_c01056{margin-left:-14.962667pt;}
._26_c01056{margin-left:-13.464000pt;}
._18_c01056{margin-left:-12.296000pt;}
._17_c01056{margin-left:-10.362667pt;}
._1d_c01056{margin-left:-8.856000pt;}
._14_c01056{margin-left:-7.618667pt;}
._20_c01056{margin-left:-6.368000pt;}
._10_c01056{margin-left:-5.472000pt;}
._9_c01056{margin-left:-4.104000pt;}
._d_c01056{margin-left:-2.304000pt;}
._11_c01056{margin-left:-1.008000pt;}
._0_c01056{width:1.080000pt;}
._b_c01056{width:2.088000pt;}
._4_c01056{width:3.528000pt;}
._5_c01056{width:5.328000pt;}
._3_c01056{width:6.912000pt;}
._c_c01056{width:8.064000pt;}
._6_c01056{width:9.288000pt;}
._1_c01056{width:10.800000pt;}
._e_c01056{width:12.528000pt;}
._1a_c01056{width:13.464000pt;}
._7_c01056{width:14.472000pt;}
._2a_c01056{width:15.648000pt;}
._19_c01056{width:16.632000pt;}
._f_c01056{width:19.080000pt;}
._8_c01056{width:20.592000pt;}
._1c_c01056{width:21.672000pt;}
._22_c01056{width:22.608000pt;}
._a_c01056{width:23.760000pt;}
._2_c01056{width:25.056000pt;}
._23_c01056{width:25.992000pt;}
._1b_c01056{width:26.928000pt;}
._25_c01056{width:28.512000pt;}
._1e_c01056{width:29.880000pt;}
._1f_c01056{width:31.656000pt;}
._21_c01056{width:34.333333pt;}
._24_c01056{width:37.224000pt;}
._29_c01056{width:75.648000pt;}
._28_c01056{width:95.240000pt;}
._27_c01056{width:1185.912000pt;}
.fs6_c01056{font-size:42.666667pt;}
.fs3_c01056{font-size:58.666667pt;}
.fs2_c01056{font-size:64.000000pt;}
.fs0_c01056{font-size:72.000000pt;}
.fs1_c01056{font-size:77.333333pt;}
.fs4_c01056{font-size:93.333333pt;}
.fs5_c01056{font-size:96.000000pt;}
.y0_c01056{bottom:0.000000pt;}
.y25_c01056{bottom:2.760000pt;}
.y24_c01056{bottom:6.425217pt;}
.y23_c01056{bottom:40.106667pt;}
.y22_c01056{bottom:62.906667pt;}
.y21_c01056{bottom:87.306667pt;}
.y20_c01056{bottom:107.440000pt;}
.y1f_c01056{bottom:129.573333pt;}
.y1e_c01056{bottom:151.440000pt;}
.y1d_c01056{bottom:173.173333pt;}
.y1c_c01056{bottom:195.040000pt;}
.y1b_c01056{bottom:216.906667pt;}
.y1a_c01056{bottom:238.773333pt;}
.y19_c01056{bottom:260.373333pt;}
.y18_c01056{bottom:282.240000pt;}
.y17_c01056{bottom:304.106667pt;}
.y16_c01056{bottom:325.440000pt;}
.y15_c01056{bottom:347.306667pt;}
.y14_c01056{bottom:369.573333pt;}
.y13_c01056{bottom:390.906667pt;}
.y12_c01056{bottom:411.306667pt;}
.y11_c01056{bottom:434.373333pt;}
.y10_c01056{bottom:455.706667pt;}
.yf_c01056{bottom:477.306667pt;}
.ye_c01056{bottom:498.506667pt;}
.yd_c01056{bottom:520.240000pt;}
.yc_c01056{bottom:541.840000pt;}
.yb_c01056{bottom:563.706667pt;}
.ya_c01056{bottom:585.840000pt;}
.y9_c01056{bottom:606.506667pt;}
.y8_c01056{bottom:628.240000pt;}
.y7_c01056{bottom:650.640000pt;}
.y6_c01056{bottom:671.440000pt;}
.y5_c01056{bottom:693.040000pt;}
.y4_c01056{bottom:715.840000pt;}
.y3_c01056{bottom:736.773333pt;}
.y2_c01056{bottom:758.906667pt;}
.y1_c01056{bottom:780.240000pt;}
.h6_c01056{height:11.733399pt;}
.h7_c01056{height:38.937500pt;}
.h1_c01056{height:70.664062pt;}
.h3_c01056{height:74.906250pt;}
.h5_c01056{height:96.750000pt;}
.h2_c01056{height:97.912760pt;}
.h4_c01056{height:109.238281pt;}
.h0_c01056{height:867.333333pt;}
.w2_c01056{width:93.222667pt;}
.w0_c01056{width:590.400000pt;}
.w1_c01056{width:590.666667pt;}
.x0_c01056{left:0.000000pt;}
.xb_c01056{left:36.933333pt;}
.x1_c01056{left:42.533333pt;}
.x2_c01056{left:43.600000pt;}
.x3_c01056{left:44.666667pt;}
.x4_c01056{left:45.600000pt;}
.x5_c01056{left:47.333333pt;}
.x6_c01056{left:48.533333pt;}
.x7_c01056{left:49.466667pt;}
.x8_c01056{left:50.666667pt;}
.x9_c01056{left:51.600000pt;}
.xa_c01056{left:52.800000pt;}
.xc_c01056{left:240.266667pt;}
.x12_c01056{left:252.368205pt;}
.xd_c01056{left:278.133333pt;}
.xe_c01056{left:336.533333pt;}
.xf_c01056{left:388.533333pt;}
.x10_c01056{left:401.992533pt;}
.x11_c01056{left:472.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_c01057 {
    display:none;
  }
  .loading-indicator_c01057.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01057 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01057 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01057" -> "#page-container .classname_c01057")
 */
.pf_c01057 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01057 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01057.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01057 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01057 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01057 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01057 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01057 {overflow:visible;}
  }
}
.c_c01057 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01057 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01057:after { /* webkit #35443 */
  content: '';
}
.t_c01057:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01057 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01057 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01057 { /* info for Javascript */
  display:none;
}
.l_c01057 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01057 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01057 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01057:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01057{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01057;src:url('chunks/assets/font_5eab971f2a52a018e1f1cad2.woff2')format("woff");}.ff1_c01057{font-family:ff1_c01057;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01057;src:url('chunks/assets/font_1aa258cac1f68dd72a288312.woff2')format("woff");}.ff2_c01057{font-family:ff2_c01057;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01057;src:url('chunks/assets/font_587f49d8d439e0032b9a4828.woff2')format("woff");}.ff3_c01057{font-family:ff3_c01057;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01057;src:url('chunks/assets/font_82cdfe8aa7011f39ebad772e.woff2')format("woff");}.ff4_c01057{font-family:ff4_c01057;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01057;src:url('chunks/assets/font_e9f758836a6c63fe8800ac51.woff2')format("woff");}.ff5_c01057{font-family:ff5_c01057;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01057;src:url('chunks/assets/font_9df3400fc8734d4cc5077313.woff2')format("woff");}.ff6_c01057{font-family:ff6_c01057;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01057;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c01057{font-family:ff7_c01057;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01057{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01057{vertical-align:0.000000px;}
.ls7_c01057{letter-spacing:-9.000000px;}
.ls4_c01057{letter-spacing:0.000000px;}
.ls2_c01057{letter-spacing:2.040000px;}
.ls6_c01057{letter-spacing:3.000000px;}
.ls0_c01057{letter-spacing:5.700000px;}
.ls1_c01057{letter-spacing:5.985000px;}
.ls5_c01057{letter-spacing:6.000000px;}
.ls3_c01057{letter-spacing:20.202000px;}
.sc__c01057{text-shadow:none;}
.sc0_c01057{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01057{-webkit-text-stroke:0px transparent;}
.sc0_c01057{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01057{word-spacing:-73.686000px;}
.ws2_c01057{word-spacing:-21.735000px;}
.ws0_c01057{word-spacing:-17.352000px;}
.ws3_c01057{word-spacing:0.000000px;}
._23_c01057{margin-left:-17.616000px;}
._20_c01057{margin-left:-16.425000px;}
._1c_c01057{margin-left:-13.338000px;}
._13_c01057{margin-left:-12.150000px;}
._25_c01057{margin-left:-10.608000px;}
._24_c01057{margin-left:-9.282000px;}
._1b_c01057{margin-left:-8.262000px;}
._d_c01057{margin-left:-5.994000px;}
._19_c01057{margin-left:-4.293000px;}
._c_c01057{margin-left:-2.997000px;}
._a_c01057{margin-left:-1.458000px;}
._3_c01057{width:1.458000px;}
._5_c01057{width:2.916000px;}
._0_c01057{width:4.536000px;}
._1_c01057{width:6.318000px;}
._4_c01057{width:8.019000px;}
._11_c01057{width:9.072000px;}
._7_c01057{width:10.368000px;}
._12_c01057{width:11.583000px;}
._b_c01057{width:12.798000px;}
._2_c01057{width:14.337000px;}
._1a_c01057{width:15.714000px;}
._6_c01057{width:16.767000px;}
._17_c01057{width:17.820000px;}
._1d_c01057{width:19.116000px;}
._10_c01057{width:21.789000px;}
._16_c01057{width:23.895000px;}
._9_c01057{width:25.029000px;}
._14_c01057{width:26.244000px;}
._8_c01057{width:27.297000px;}
._18_c01057{width:29.646000px;}
._1f_c01057{width:31.710000px;}
._e_c01057{width:32.952000px;}
._f_c01057{width:35.559000px;}
._21_c01057{width:39.882000px;}
._22_c01057{width:42.633000px;}
._15_c01057{width:243.630000px;}
._1e_c01057{width:1032.507000px;}
.fc2_c01057{color:transparent;}
.fc1_c01057{color:rgb(128,128,128);}
.fc0_c01057{color:rgb(0,0,0);}
.fs8_c01057{font-size:48.000000px;}
.fs3_c01057{font-size:57.000000px;}
.fs4_c01057{font-size:63.000000px;}
.fs1_c01057{font-size:72.000000px;}
.fs5_c01057{font-size:78.000000px;}
.fs0_c01057{font-size:81.000000px;}
.fs2_c01057{font-size:87.000000px;}
.fs6_c01057{font-size:90.000000px;}
.fs7_c01057{font-size:102.000000px;}
.y0_c01057{bottom:0.000000px;}
.y24_c01057{bottom:3.105000px;}
.y23_c01057{bottom:7.228371px;}
.y22_c01057{bottom:74.565000px;}
.y21_c01057{bottom:99.915000px;}
.y20_c01057{bottom:124.215000px;}
.y1f_c01057{bottom:146.565000px;}
.y1e_c01057{bottom:173.865000px;}
.y1d_c01057{bottom:198.765000px;}
.y1c_c01057{bottom:223.515000px;}
.y1b_c01057{bottom:248.415000px;}
.y1a_c01057{bottom:273.165000px;}
.y19_c01057{bottom:298.065000px;}
.y18_c01057{bottom:322.665000px;}
.y17_c01057{bottom:347.265000px;}
.y16_c01057{bottom:371.715000px;}
.y15_c01057{bottom:396.615000px;}
.y14_c01057{bottom:421.215000px;}
.y13_c01057{bottom:445.815000px;}
.y12_c01057{bottom:470.265000px;}
.y11_c01057{bottom:494.415000px;}
.y10_c01057{bottom:518.415000px;}
.yf_c01057{bottom:543.015000px;}
.ye_c01057{bottom:567.465000px;}
.yd_c01057{bottom:592.365000px;}
.yc_c01057{bottom:616.365000px;}
.yb_c01057{bottom:640.965000px;}
.ya_c01057{bottom:665.565000px;}
.y9_c01057{bottom:689.865000px;}
.y8_c01057{bottom:714.465000px;}
.y7_c01057{bottom:737.565000px;}
.y6_c01057{bottom:763.515000px;}
.y5_c01057{bottom:787.515000px;}
.y4_c01057{bottom:812.115000px;}
.y3_c01057{bottom:836.715000px;}
.y2_c01057{bottom:861.315000px;}
.y1_c01057{bottom:885.915000px;}
.h9_c01057{height:13.200074px;}
.ha_c01057{height:43.804688px;}
.h5_c01057{height:66.713379px;}
.h6_c01057{height:72.168457px;}
.h2_c01057{height:79.497070px;}
.h3_c01057{height:84.269531px;}
.h4_c01057{height:91.176000px;}
.h7_c01057{height:98.756836px;}
.h8_c01057{height:104.839927px;}
.h1_c01057{height:986.250000px;}
.h0_c01057{height:986.325000px;}
.w2_c01057{width:104.875500px;}
.w0_c01057{width:667.425000px;}
.w1_c01057{width:667.500000px;}
.x0_c01057{left:0.000000px;}
.x4_c01057{left:34.800000px;}
.xa_c01057{left:40.050000px;}
.x2_c01057{left:129.000000px;}
.x1_c01057{left:130.200000px;}
.x3_c01057{left:131.250000px;}
.x5_c01057{left:132.600000px;}
.x6_c01057{left:134.250000px;}
.x7_c01057{left:135.300000px;}
.x9_c01057{left:136.650000px;}
.xb_c01057{left:137.700000px;}
.x8_c01057{left:160.350000px;}
.xc_c01057{left:285.526749px;}
@media print{
.v0_c01057{vertical-align:0.000000pt;}
.ls7_c01057{letter-spacing:-8.000000pt;}
.ls4_c01057{letter-spacing:0.000000pt;}
.ls2_c01057{letter-spacing:1.813333pt;}
.ls6_c01057{letter-spacing:2.666667pt;}
.ls0_c01057{letter-spacing:5.066667pt;}
.ls1_c01057{letter-spacing:5.320000pt;}
.ls5_c01057{letter-spacing:5.333333pt;}
.ls3_c01057{letter-spacing:17.957333pt;}
.ws1_c01057{word-spacing:-65.498667pt;}
.ws2_c01057{word-spacing:-19.320000pt;}
.ws0_c01057{word-spacing:-15.424000pt;}
.ws3_c01057{word-spacing:0.000000pt;}
._23_c01057{margin-left:-15.658667pt;}
._20_c01057{margin-left:-14.600000pt;}
._1c_c01057{margin-left:-11.856000pt;}
._13_c01057{margin-left:-10.800000pt;}
._25_c01057{margin-left:-9.429333pt;}
._24_c01057{margin-left:-8.250667pt;}
._1b_c01057{margin-left:-7.344000pt;}
._d_c01057{margin-left:-5.328000pt;}
._19_c01057{margin-left:-3.816000pt;}
._c_c01057{margin-left:-2.664000pt;}
._a_c01057{margin-left:-1.296000pt;}
._3_c01057{width:1.296000pt;}
._5_c01057{width:2.592000pt;}
._0_c01057{width:4.032000pt;}
._1_c01057{width:5.616000pt;}
._4_c01057{width:7.128000pt;}
._11_c01057{width:8.064000pt;}
._7_c01057{width:9.216000pt;}
._12_c01057{width:10.296000pt;}
._b_c01057{width:11.376000pt;}
._2_c01057{width:12.744000pt;}
._1a_c01057{width:13.968000pt;}
._6_c01057{width:14.904000pt;}
._17_c01057{width:15.840000pt;}
._1d_c01057{width:16.992000pt;}
._10_c01057{width:19.368000pt;}
._16_c01057{width:21.240000pt;}
._9_c01057{width:22.248000pt;}
._14_c01057{width:23.328000pt;}
._8_c01057{width:24.264000pt;}
._18_c01057{width:26.352000pt;}
._1f_c01057{width:28.186667pt;}
._e_c01057{width:29.290667pt;}
._f_c01057{width:31.608000pt;}
._21_c01057{width:35.450667pt;}
._22_c01057{width:37.896000pt;}
._15_c01057{width:216.560000pt;}
._1e_c01057{width:917.784000pt;}
.fs8_c01057{font-size:42.666667pt;}
.fs3_c01057{font-size:50.666667pt;}
.fs4_c01057{font-size:56.000000pt;}
.fs1_c01057{font-size:64.000000pt;}
.fs5_c01057{font-size:69.333333pt;}
.fs0_c01057{font-size:72.000000pt;}
.fs2_c01057{font-size:77.333333pt;}
.fs6_c01057{font-size:80.000000pt;}
.fs7_c01057{font-size:90.666667pt;}
.y0_c01057{bottom:0.000000pt;}
.y24_c01057{bottom:2.760000pt;}
.y23_c01057{bottom:6.425219pt;}
.y22_c01057{bottom:66.280000pt;}
.y21_c01057{bottom:88.813333pt;}
.y20_c01057{bottom:110.413333pt;}
.y1f_c01057{bottom:130.280000pt;}
.y1e_c01057{bottom:154.546667pt;}
.y1d_c01057{bottom:176.680000pt;}
.y1c_c01057{bottom:198.680000pt;}
.y1b_c01057{bottom:220.813333pt;}
.y1a_c01057{bottom:242.813333pt;}
.y19_c01057{bottom:264.946667pt;}
.y18_c01057{bottom:286.813333pt;}
.y17_c01057{bottom:308.680000pt;}
.y16_c01057{bottom:330.413333pt;}
.y15_c01057{bottom:352.546667pt;}
.y14_c01057{bottom:374.413333pt;}
.y13_c01057{bottom:396.280000pt;}
.y12_c01057{bottom:418.013333pt;}
.y11_c01057{bottom:439.480000pt;}
.y10_c01057{bottom:460.813333pt;}
.yf_c01057{bottom:482.680000pt;}
.ye_c01057{bottom:504.413333pt;}
.yd_c01057{bottom:526.546667pt;}
.yc_c01057{bottom:547.880000pt;}
.yb_c01057{bottom:569.746667pt;}
.ya_c01057{bottom:591.613333pt;}
.y9_c01057{bottom:613.213333pt;}
.y8_c01057{bottom:635.080000pt;}
.y7_c01057{bottom:655.613333pt;}
.y6_c01057{bottom:678.680000pt;}
.y5_c01057{bottom:700.013333pt;}
.y4_c01057{bottom:721.880000pt;}
.y3_c01057{bottom:743.746667pt;}
.y2_c01057{bottom:765.613333pt;}
.y1_c01057{bottom:787.480000pt;}
.h9_c01057{height:11.733399pt;}
.ha_c01057{height:38.937500pt;}
.h5_c01057{height:59.300781pt;}
.h6_c01057{height:64.149740pt;}
.h2_c01057{height:70.664062pt;}
.h3_c01057{height:74.906250pt;}
.h4_c01057{height:81.045333pt;}
.h7_c01057{height:87.783854pt;}
.h8_c01057{height:93.191046pt;}
.h1_c01057{height:876.666667pt;}
.h0_c01057{height:876.733333pt;}
.w2_c01057{width:93.222667pt;}
.w0_c01057{width:593.266667pt;}
.w1_c01057{width:593.333333pt;}
.x0_c01057{left:0.000000pt;}
.x4_c01057{left:30.933333pt;}
.xa_c01057{left:35.600000pt;}
.x2_c01057{left:114.666667pt;}
.x1_c01057{left:115.733333pt;}
.x3_c01057{left:116.666667pt;}
.x5_c01057{left:117.866667pt;}
.x6_c01057{left:119.333333pt;}
.x7_c01057{left:120.266667pt;}
.x9_c01057{left:121.466667pt;}
.xb_c01057{left:122.400000pt;}
.x8_c01057{left:142.533333pt;}
.xc_c01057{left:253.801554pt;}
}





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

.ir_c01058:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01058{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01058;src:url('chunks/assets/font_d40770e96e3206e2303c4afe.woff2')format("woff");}.ff1_c01058{font-family:ff1_c01058;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01058;src:url('chunks/assets/font_7e188b1b205e12fe6f9403a2.woff2')format("woff");}.ff2_c01058{font-family:ff2_c01058;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01058;src:url('chunks/assets/font_1ed413f4fd1cf37468409aaf.woff2')format("woff");}.ff3_c01058{font-family:ff3_c01058;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01058;src:url('chunks/assets/font_d9ee5b24b44912507a50ad29.woff2')format("woff");}.ff4_c01058{font-family:ff4_c01058;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01058;src:url('chunks/assets/font_70a321f696fdbb8ec94f5719.woff2')format("woff");}.ff5_c01058{font-family:ff5_c01058;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01058;src:url('chunks/assets/font_05b76dd8d718368a0df58f85.woff2')format("woff");}.ff6_c01058{font-family:ff6_c01058;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01058;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c01058{font-family:ff7_c01058;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01058{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01058{vertical-align:0.000000px;}
.ls3_c01058{letter-spacing:0.000000px;}
.ls0_c01058{letter-spacing:3.000000px;}
.ls1_c01058{letter-spacing:17.250000px;}
.ls2_c01058{letter-spacing:18.864000px;}
.sc__c01058{text-shadow:none;}
.sc0_c01058{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01058{-webkit-text-stroke:0px transparent;}
.sc0_c01058{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01058{word-spacing:-35.568000px;}
.ws1_c01058{word-spacing:-19.629000px;}
.ws4_c01058{word-spacing:-17.352000px;}
.ws0_c01058{word-spacing:-16.926000px;}
.ws3_c01058{word-spacing:-1.944000px;}
.ws5_c01058{word-spacing:0.000000px;}
._c_c01058{margin-left:-12.765000px;}
._d_c01058{margin-left:-11.454000px;}
._1d_c01058{margin-left:-10.089000px;}
._1c_c01058{margin-left:-8.991000px;}
._1a_c01058{margin-left:-7.401000px;}
._19_c01058{margin-left:-6.318000px;}
._18_c01058{margin-left:-5.145000px;}
._5_c01058{margin-left:-3.423000px;}
._3_c01058{margin-left:-2.262000px;}
._6_c01058{margin-left:-1.104000px;}
._1_c01058{width:1.872000px;}
._2_c01058{width:3.276000px;}
._0_c01058{width:4.446000px;}
._4_c01058{width:5.943000px;}
._9_c01058{width:7.464000px;}
._e_c01058{width:9.198000px;}
._14_c01058{width:10.686000px;}
._f_c01058{width:11.700000px;}
._12_c01058{width:13.269000px;}
._7_c01058{width:14.508000px;}
._10_c01058{width:15.867000px;}
._8_c01058{width:18.966000px;}
._11_c01058{width:20.904000px;}
._20_c01058{width:22.230000px;}
._1e_c01058{width:23.799000px;}
._16_c01058{width:27.138000px;}
._b_c01058{width:28.629000px;}
._15_c01058{width:30.414000px;}
._28_c01058{width:31.464000px;}
._1f_c01058{width:33.120000px;}
._24_c01058{width:34.206000px;}
._a_c01058{width:35.358000px;}
._13_c01058{width:36.489000px;}
._17_c01058{width:38.277000px;}
._23_c01058{width:39.555000px;}
._21_c01058{width:41.763000px;}
._22_c01058{width:43.503000px;}
._27_c01058{width:46.695000px;}
._26_c01058{width:53.997000px;}
._1b_c01058{width:186.471000px;}
._25_c01058{width:196.434000px;}
.fc2_c01058{color:transparent;}
.fc1_c01058{color:rgb(128,128,128);}
.fc0_c01058{color:rgb(0,0,0);}
.fs5_c01058{font-size:48.000000px;}
.fs1_c01058{font-size:69.000000px;}
.fs2_c01058{font-size:72.000000px;}
.fs4_c01058{font-size:75.000000px;}
.fs0_c01058{font-size:78.000000px;}
.fs3_c01058{font-size:81.000000px;}
.y0_c01058{bottom:0.000000px;}
.y24_c01058{bottom:3.105000px;}
.y23_c01058{bottom:7.228369px;}
.y22_c01058{bottom:83.070000px;}
.y21_c01058{bottom:107.370000px;}
.y20_c01058{bottom:133.320000px;}
.y1f_c01058{bottom:157.920000px;}
.y1e_c01058{bottom:182.220000px;}
.y1d_c01058{bottom:207.270000px;}
.y1c_c01058{bottom:232.470000px;}
.y1b_c01058{bottom:257.070000px;}
.y1a_c01058{bottom:281.370000px;}
.y19_c01058{bottom:305.820000px;}
.y18_c01058{bottom:330.720000px;}
.y17_c01058{bottom:355.020000px;}
.y16_c01058{bottom:379.320000px;}
.y15_c01058{bottom:404.220000px;}
.y14_c01058{bottom:428.220000px;}
.y13_c01058{bottom:452.820000px;}
.y12_c01058{bottom:476.520000px;}
.y11_c01058{bottom:501.420000px;}
.y10_c01058{bottom:525.870000px;}
.yf_c01058{bottom:550.020000px;}
.ye_c01058{bottom:574.020000px;}
.yd_c01058{bottom:597.720000px;}
.yc_c01058{bottom:621.570000px;}
.yb_c01058{bottom:646.320000px;}
.ya_c01058{bottom:670.320000px;}
.y9_c01058{bottom:694.920000px;}
.y8_c01058{bottom:720.870000px;}
.y7_c01058{bottom:743.520000px;}
.y6_c01058{bottom:768.120000px;}
.y5_c01058{bottom:791.820000px;}
.y4_c01058{bottom:817.320000px;}
.y3_c01058{bottom:841.320000px;}
.y2_c01058{bottom:866.070000px;}
.y1_c01058{bottom:891.270000px;}
.h7_c01058{height:13.200073px;}
.h8_c01058{height:43.804688px;}
.h4_c01058{height:83.226000px;}
.h3_c01058{height:84.269531px;}
.h2_c01058{height:87.361816px;}
.h6_c01058{height:91.160156px;}
.h5_c01058{height:98.756836px;}
.h1_c01058{height:986.250000px;}
.h0_c01058{height:986.550000px;}
.w1_c01058{width:104.875500px;}
.w0_c01058{width:672.000000px;}
.x0_c01058{left:0.000000px;}
.x6_c01058{left:36.750000px;}
.x5_c01058{left:38.100000px;}
.x4_c01058{left:39.900000px;}
.x3_c01058{left:41.250000px;}
.x1_c01058{left:43.200000px;}
.x2_c01058{left:46.350000px;}
.x7_c01058{left:287.814240px;}
@media print{
.v0_c01058{vertical-align:0.000000pt;}
.ls3_c01058{letter-spacing:0.000000pt;}
.ls0_c01058{letter-spacing:2.666667pt;}
.ls1_c01058{letter-spacing:15.333333pt;}
.ls2_c01058{letter-spacing:16.768000pt;}
.ws2_c01058{word-spacing:-31.616000pt;}
.ws1_c01058{word-spacing:-17.448000pt;}
.ws4_c01058{word-spacing:-15.424000pt;}
.ws0_c01058{word-spacing:-15.045333pt;}
.ws3_c01058{word-spacing:-1.728000pt;}
.ws5_c01058{word-spacing:0.000000pt;}
._c_c01058{margin-left:-11.346667pt;}
._d_c01058{margin-left:-10.181333pt;}
._1d_c01058{margin-left:-8.968000pt;}
._1c_c01058{margin-left:-7.992000pt;}
._1a_c01058{margin-left:-6.578667pt;}
._19_c01058{margin-left:-5.616000pt;}
._18_c01058{margin-left:-4.573333pt;}
._5_c01058{margin-left:-3.042667pt;}
._3_c01058{margin-left:-2.010667pt;}
._6_c01058{margin-left:-0.981333pt;}
._1_c01058{width:1.664000pt;}
._2_c01058{width:2.912000pt;}
._0_c01058{width:3.952000pt;}
._4_c01058{width:5.282667pt;}
._9_c01058{width:6.634667pt;}
._e_c01058{width:8.176000pt;}
._14_c01058{width:9.498667pt;}
._f_c01058{width:10.400000pt;}
._12_c01058{width:11.794667pt;}
._7_c01058{width:12.896000pt;}
._10_c01058{width:14.104000pt;}
._8_c01058{width:16.858667pt;}
._11_c01058{width:18.581333pt;}
._20_c01058{width:19.760000pt;}
._1e_c01058{width:21.154667pt;}
._16_c01058{width:24.122667pt;}
._b_c01058{width:25.448000pt;}
._15_c01058{width:27.034667pt;}
._28_c01058{width:27.968000pt;}
._1f_c01058{width:29.440000pt;}
._24_c01058{width:30.405333pt;}
._a_c01058{width:31.429333pt;}
._13_c01058{width:32.434667pt;}
._17_c01058{width:34.024000pt;}
._23_c01058{width:35.160000pt;}
._21_c01058{width:37.122667pt;}
._22_c01058{width:38.669333pt;}
._27_c01058{width:41.506667pt;}
._26_c01058{width:47.997333pt;}
._1b_c01058{width:165.752000pt;}
._25_c01058{width:174.608000pt;}
.fs5_c01058{font-size:42.666667pt;}
.fs1_c01058{font-size:61.333333pt;}
.fs2_c01058{font-size:64.000000pt;}
.fs4_c01058{font-size:66.666667pt;}
.fs0_c01058{font-size:69.333333pt;}
.fs3_c01058{font-size:72.000000pt;}
.y0_c01058{bottom:0.000000pt;}
.y24_c01058{bottom:2.760000pt;}
.y23_c01058{bottom:6.425217pt;}
.y22_c01058{bottom:73.840000pt;}
.y21_c01058{bottom:95.440000pt;}
.y20_c01058{bottom:118.506667pt;}
.y1f_c01058{bottom:140.373333pt;}
.y1e_c01058{bottom:161.973333pt;}
.y1d_c01058{bottom:184.240000pt;}
.y1c_c01058{bottom:206.640000pt;}
.y1b_c01058{bottom:228.506667pt;}
.y1a_c01058{bottom:250.106667pt;}
.y19_c01058{bottom:271.840000pt;}
.y18_c01058{bottom:293.973333pt;}
.y17_c01058{bottom:315.573333pt;}
.y16_c01058{bottom:337.173333pt;}
.y15_c01058{bottom:359.306667pt;}
.y14_c01058{bottom:380.640000pt;}
.y13_c01058{bottom:402.506667pt;}
.y12_c01058{bottom:423.573333pt;}
.y11_c01058{bottom:445.706667pt;}
.y10_c01058{bottom:467.440000pt;}
.yf_c01058{bottom:488.906667pt;}
.ye_c01058{bottom:510.240000pt;}
.yd_c01058{bottom:531.306667pt;}
.yc_c01058{bottom:552.506667pt;}
.yb_c01058{bottom:574.506667pt;}
.ya_c01058{bottom:595.840000pt;}
.y9_c01058{bottom:617.706667pt;}
.y8_c01058{bottom:640.773333pt;}
.y7_c01058{bottom:660.906667pt;}
.y6_c01058{bottom:682.773333pt;}
.y5_c01058{bottom:703.840000pt;}
.y4_c01058{bottom:726.506667pt;}
.y3_c01058{bottom:747.840000pt;}
.y2_c01058{bottom:769.840000pt;}
.y1_c01058{bottom:792.240000pt;}
.h7_c01058{height:11.733399pt;}
.h8_c01058{height:38.937500pt;}
.h4_c01058{height:73.978667pt;}
.h3_c01058{height:74.906250pt;}
.h2_c01058{height:77.654948pt;}
.h6_c01058{height:81.031250pt;}
.h5_c01058{height:87.783854pt;}
.h1_c01058{height:876.666667pt;}
.h0_c01058{height:876.933333pt;}
.w1_c01058{width:93.222667pt;}
.w0_c01058{width:597.333333pt;}
.x0_c01058{left:0.000000pt;}
.x6_c01058{left:32.666667pt;}
.x5_c01058{left:33.866667pt;}
.x4_c01058{left:35.466667pt;}
.x3_c01058{left:36.666667pt;}
.x1_c01058{left:38.400000pt;}
.x2_c01058{left:41.200000pt;}
.x7_c01058{left:255.834880pt;}
}





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

.ir_c01059:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01059{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01059;src:url('chunks/assets/font_fbbf778901178cdc2fc167d7.woff2')format("woff");}.ff1_c01059{font-family:ff1_c01059;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01059;src:url('chunks/assets/font_1b0b9ba92f1c7b82cf8e5832.woff2')format("woff");}.ff2_c01059{font-family:ff2_c01059;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01059;src:url('chunks/assets/font_9e47c1df0cdc079ebd67daf4.woff2')format("woff");}.ff3_c01059{font-family:ff3_c01059;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01059;src:url('chunks/assets/font_6a7d76121e3bebf7dd2a9dd8.woff2')format("woff");}.ff4_c01059{font-family:ff4_c01059;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01059;src:url('chunks/assets/font_6820b7b410305cfe2c6e7972.woff2')format("woff");}.ff5_c01059{font-family:ff5_c01059;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01059;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c01059{font-family:ff6_c01059;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01059{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01059{vertical-align:0.000000px;}
.v2_c01059{vertical-align:3.000000px;}
.v1_c01059{vertical-align:139.200000px;}
.ls2_c01059{letter-spacing:0.000000px;}
.ls1_c01059{letter-spacing:2.604000px;}
.ls0_c01059{letter-spacing:251.850000px;}
.sc__c01059{text-shadow:none;}
.sc0_c01059{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01059{-webkit-text-stroke:0px transparent;}
.sc0_c01059{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01059{word-spacing:-23.859000px;}
.ws2_c01059{word-spacing:-17.352000px;}
.ws1_c01059{word-spacing:-16.500000px;}
.ws4_c01059{word-spacing:0.000000px;}
.ws3_c01059{word-spacing:26.568000px;}
._a_c01059{margin-left:-18.054000px;}
._1e_c01059{margin-left:-16.146000px;}
._11_c01059{margin-left:-14.256000px;}
._10_c01059{margin-left:-10.206000px;}
._f_c01059{margin-left:-8.712000px;}
._6_c01059{margin-left:-6.480000px;}
._14_c01059{margin-left:-5.418000px;}
._12_c01059{margin-left:-4.212000px;}
._15_c01059{margin-left:-3.162000px;}
._13_c01059{margin-left:-1.863000px;}
._9_c01059{width:1.026000px;}
._c_c01059{width:2.646000px;}
._b_c01059{width:4.182000px;}
._4_c01059{width:5.664000px;}
._7_c01059{width:6.732000px;}
._3_c01059{width:7.956000px;}
._5_c01059{width:9.846000px;}
._2_c01059{width:11.064000px;}
._8_c01059{width:13.206000px;}
._19_c01059{width:14.484000px;}
._0_c01059{width:15.939000px;}
._16_c01059{width:18.063000px;}
._1_c01059{width:19.107000px;}
._1b_c01059{width:23.790000px;}
._18_c01059{width:27.102000px;}
._17_c01059{width:29.196000px;}
._1c_c01059{width:32.214000px;}
._21_c01059{width:33.507000px;}
._1a_c01059{width:39.603000px;}
._1f_c01059{width:103.923000px;}
._e_c01059{width:138.204000px;}
._1d_c01059{width:193.098000px;}
._20_c01059{width:234.255000px;}
._d_c01059{width:424.530000px;}
.fc2_c01059{color:transparent;}
.fc1_c01059{color:rgb(128,128,128);}
.fc0_c01059{color:rgb(0,0,0);}
.fs3_c01059{font-size:36.000000px;}
.fs8_c01059{font-size:48.000000px;}
.fs6_c01059{font-size:66.000000px;}
.fs5_c01059{font-size:72.000000px;}
.fs4_c01059{font-size:81.000000px;}
.fs1_c01059{font-size:87.000000px;}
.fs0_c01059{font-size:99.000000px;}
.fs2_c01059{font-size:102.000000px;}
.fs7_c01059{font-size:291.000000px;}
.y0_c01059{bottom:0.000000px;}
.y25_c01059{bottom:3.105000px;}
.y24_c01059{bottom:7.228371px;}
.y23_c01059{bottom:44.265000px;}
.y22_c01059{bottom:73.665000px;}
.y21_c01059{bottom:99.615000px;}
.y20_c01059{bottom:125.265000px;}
.y1f_c01059{bottom:150.165000px;}
.y1e_c01059{bottom:175.515000px;}
.y1d_c01059{bottom:200.865000px;}
.y1c_c01059{bottom:223.815000px;}
.y1b_c01059{bottom:250.815000px;}
.y1a_c01059{bottom:275.415000px;}
.y19_c01059{bottom:298.815000px;}
.y18_c01059{bottom:324.765000px;}
.y17_c01059{bottom:349.365000px;}
.y16_c01059{bottom:374.265000px;}
.y15_c01059{bottom:398.565000px;}
.y14_c01059{bottom:426.615000px;}
.y13_c01059{bottom:447.315000px;}
.y12_c01059{bottom:473.565000px;}
.y11_c01059{bottom:497.115000px;}
.y10_c01059{bottom:521.115000px;}
.yf_c01059{bottom:545.415000px;}
.ye_c01059{bottom:569.715000px;}
.yd_c01059{bottom:594.315000px;}
.yc_c01059{bottom:618.765000px;}
.yb_c01059{bottom:642.915000px;}
.ya_c01059{bottom:667.665000px;}
.y9_c01059{bottom:692.265000px;}
.y8_c01059{bottom:716.565000px;}
.y7_c01059{bottom:741.165000px;}
.y6_c01059{bottom:765.765000px;}
.y4_c01059{bottom:780.015000px;}
.y5_c01059{bottom:789.765000px;}
.y3_c01059{bottom:863.115000px;}
.y2_c01059{bottom:902.865000px;}
.y1_c01059{bottom:922.365000px;}
.h8_c01059{height:13.200074px;}
.h3_c01059{height:36.281250px;}
.h9_c01059{height:43.804688px;}
.h7_c01059{height:79.497070px;}
.h6_c01059{height:82.497070px;}
.h4_c01059{height:84.269531px;}
.h2_c01059{height:115.870605px;}
.h5_c01059{height:315.444000px;}
.h1_c01059{height:986.250000px;}
.h0_c01059{height:986.325000px;}
.w2_c01059{width:104.875500px;}
.w0_c01059{width:667.425000px;}
.w1_c01059{width:667.500000px;}
.x0_c01059{left:0.000000px;}
.xa_c01059{left:42.900000px;}
.xc_c01059{left:44.250000px;}
.xb_c01059{left:85.350000px;}
.x9_c01059{left:109.950000px;}
.x7_c01059{left:117.750000px;}
.x8_c01059{left:119.850000px;}
.x10_c01059{left:126.150000px;}
.xd_c01059{left:127.500000px;}
.xe_c01059{left:128.550000px;}
.x6_c01059{left:130.500000px;}
.x5_c01059{left:131.550000px;}
.x4_c01059{left:133.350000px;}
.x1_c01059{left:135.900000px;}
.xf_c01059{left:153.600000px;}
.x3_c01059{left:171.450000px;}
.x12_c01059{left:285.526749px;}
.x2_c01059{left:414.450000px;}
.x11_c01059{left:596.400000px;}
@media print{
.v0_c01059{vertical-align:0.000000pt;}
.v2_c01059{vertical-align:2.666667pt;}
.v1_c01059{vertical-align:123.733333pt;}
.ls2_c01059{letter-spacing:0.000000pt;}
.ls1_c01059{letter-spacing:2.314667pt;}
.ls0_c01059{letter-spacing:223.866667pt;}
.ws0_c01059{word-spacing:-21.208000pt;}
.ws2_c01059{word-spacing:-15.424000pt;}
.ws1_c01059{word-spacing:-14.666667pt;}
.ws4_c01059{word-spacing:0.000000pt;}
.ws3_c01059{word-spacing:23.616000pt;}
._a_c01059{margin-left:-16.048000pt;}
._1e_c01059{margin-left:-14.352000pt;}
._11_c01059{margin-left:-12.672000pt;}
._10_c01059{margin-left:-9.072000pt;}
._f_c01059{margin-left:-7.744000pt;}
._6_c01059{margin-left:-5.760000pt;}
._14_c01059{margin-left:-4.816000pt;}
._12_c01059{margin-left:-3.744000pt;}
._15_c01059{margin-left:-2.810667pt;}
._13_c01059{margin-left:-1.656000pt;}
._9_c01059{width:0.912000pt;}
._c_c01059{width:2.352000pt;}
._b_c01059{width:3.717333pt;}
._4_c01059{width:5.034667pt;}
._7_c01059{width:5.984000pt;}
._3_c01059{width:7.072000pt;}
._5_c01059{width:8.752000pt;}
._2_c01059{width:9.834667pt;}
._8_c01059{width:11.738667pt;}
._19_c01059{width:12.874667pt;}
._0_c01059{width:14.168000pt;}
._16_c01059{width:16.056000pt;}
._1_c01059{width:16.984000pt;}
._1b_c01059{width:21.146667pt;}
._18_c01059{width:24.090667pt;}
._17_c01059{width:25.952000pt;}
._1c_c01059{width:28.634667pt;}
._21_c01059{width:29.784000pt;}
._1a_c01059{width:35.202667pt;}
._1f_c01059{width:92.376000pt;}
._e_c01059{width:122.848000pt;}
._1d_c01059{width:171.642667pt;}
._20_c01059{width:208.226667pt;}
._d_c01059{width:377.360000pt;}
.fs3_c01059{font-size:32.000000pt;}
.fs8_c01059{font-size:42.666667pt;}
.fs6_c01059{font-size:58.666667pt;}
.fs5_c01059{font-size:64.000000pt;}
.fs4_c01059{font-size:72.000000pt;}
.fs1_c01059{font-size:77.333333pt;}
.fs0_c01059{font-size:88.000000pt;}
.fs2_c01059{font-size:90.666667pt;}
.fs7_c01059{font-size:258.666667pt;}
.y0_c01059{bottom:0.000000pt;}
.y25_c01059{bottom:2.760000pt;}
.y24_c01059{bottom:6.425219pt;}
.y23_c01059{bottom:39.346667pt;}
.y22_c01059{bottom:65.480000pt;}
.y21_c01059{bottom:88.546667pt;}
.y20_c01059{bottom:111.346667pt;}
.y1f_c01059{bottom:133.480000pt;}
.y1e_c01059{bottom:156.013333pt;}
.y1d_c01059{bottom:178.546667pt;}
.y1c_c01059{bottom:198.946667pt;}
.y1b_c01059{bottom:222.946667pt;}
.y1a_c01059{bottom:244.813333pt;}
.y19_c01059{bottom:265.613333pt;}
.y18_c01059{bottom:288.680000pt;}
.y17_c01059{bottom:310.546667pt;}
.y16_c01059{bottom:332.680000pt;}
.y15_c01059{bottom:354.280000pt;}
.y14_c01059{bottom:379.213333pt;}
.y13_c01059{bottom:397.613333pt;}
.y12_c01059{bottom:420.946667pt;}
.y11_c01059{bottom:441.880000pt;}
.y10_c01059{bottom:463.213333pt;}
.yf_c01059{bottom:484.813333pt;}
.ye_c01059{bottom:506.413333pt;}
.yd_c01059{bottom:528.280000pt;}
.yc_c01059{bottom:550.013333pt;}
.yb_c01059{bottom:571.480000pt;}
.ya_c01059{bottom:593.480000pt;}
.y9_c01059{bottom:615.346667pt;}
.y8_c01059{bottom:636.946667pt;}
.y7_c01059{bottom:658.813333pt;}
.y6_c01059{bottom:680.680000pt;}
.y4_c01059{bottom:693.346667pt;}
.y5_c01059{bottom:702.013333pt;}
.y3_c01059{bottom:767.213333pt;}
.y2_c01059{bottom:802.546667pt;}
.y1_c01059{bottom:819.880000pt;}
.h8_c01059{height:11.733399pt;}
.h3_c01059{height:32.250000pt;}
.h9_c01059{height:38.937500pt;}
.h7_c01059{height:70.664062pt;}
.h6_c01059{height:73.330729pt;}
.h4_c01059{height:74.906250pt;}
.h2_c01059{height:102.996094pt;}
.h5_c01059{height:280.394667pt;}
.h1_c01059{height:876.666667pt;}
.h0_c01059{height:876.733333pt;}
.w2_c01059{width:93.222667pt;}
.w0_c01059{width:593.266667pt;}
.w1_c01059{width:593.333333pt;}
.x0_c01059{left:0.000000pt;}
.xa_c01059{left:38.133333pt;}
.xc_c01059{left:39.333333pt;}
.xb_c01059{left:75.866667pt;}
.x9_c01059{left:97.733333pt;}
.x7_c01059{left:104.666667pt;}
.x8_c01059{left:106.533333pt;}
.x10_c01059{left:112.133333pt;}
.xd_c01059{left:113.333333pt;}
.xe_c01059{left:114.266667pt;}
.x6_c01059{left:116.000000pt;}
.x5_c01059{left:116.933333pt;}
.x4_c01059{left:118.533333pt;}
.x1_c01059{left:120.800000pt;}
.xf_c01059{left:136.533333pt;}
.x3_c01059{left:152.400000pt;}
.x12_c01059{left:253.801554pt;}
.x2_c01059{left:368.400000pt;}
.x11_c01059{left:530.133333pt;}
}





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

.ir_c01060:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01060{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01060;src:url('chunks/assets/font_e8bafd775dd1e6ac720f85f5.woff2')format("woff");}.ff1_c01060{font-family:ff1_c01060;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01060;src:url('chunks/assets/font_8acbda49e326821f38009956.woff2')format("woff");}.ff2_c01060{font-family:ff2_c01060;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01060;src:url('chunks/assets/font_7d191c9f63f1d6c973802f25.woff2')format("woff");}.ff3_c01060{font-family:ff3_c01060;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01060;src:url('chunks/assets/font_19a868a4940de646ce0cca46.woff2')format("woff");}.ff4_c01060{font-family:ff4_c01060;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01060;src:url('chunks/assets/font_1c7f4aaa56099dca1d738245.woff2')format("woff");}.ff5_c01060{font-family:ff5_c01060;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01060;src:url('chunks/assets/font_d93e6a10f19fec3748f54414.woff2')format("woff");}.ff6_c01060{font-family:ff6_c01060;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01060;src:url('chunks/assets/font_2e67b0173f909e3c4c0d4b46.woff2')format("woff");}.ff7_c01060{font-family:ff7_c01060;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c01060;src:url('chunks/assets/font_6dd4c68ddb01d59534770320.woff2')format("woff");}.ff8_c01060{font-family:ff8_c01060;line-height:1.284668;font-style:normal;font-weight: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_c01060;src:url('chunks/assets/font_49172a4e47f51d66125412b1.woff2')format("woff");}.ff9_c01060{font-family:ff9_c01060;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c01060;src:url('chunks/assets/font_67189cb639ecf050fa023544.woff2')format("woff");}.ffa_c01060{font-family:ffa_c01060;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c01060;src:url('chunks/assets/font_91888ca9f79c7f8ab6702113.woff2')format("woff");}.ffb_c01060{font-family:ffb_c01060;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc_c01060;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ffc_c01060{font-family:ffc_c01060;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01060{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01060{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.v0_c01060{vertical-align:0.000000px;}
.ls7_c01060{letter-spacing:-12.000000px;}
.ls4_c01060{letter-spacing:0.000000px;}
.ls1_c01060{letter-spacing:1.902000px;}
.ls2_c01060{letter-spacing:2.850000px;}
.ls5_c01060{letter-spacing:3.000000px;}
.ls0_c01060{letter-spacing:3.486000px;}
.ls8_c01060{letter-spacing:9.000000px;}
.ls6_c01060{letter-spacing:12.000000px;}
.ls3_c01060{letter-spacing:28.302000px;}
.sc__c01060{text-shadow:none;}
.sc0_c01060{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01060{-webkit-text-stroke:0px transparent;}
.sc0_c01060{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01060{word-spacing:-36.360000px;}
.ws3_c01060{word-spacing:-35.568000px;}
.ws9_c01060{word-spacing:-35.250000px;}
.ws7_c01060{word-spacing:-29.250000px;}
.ws5_c01060{word-spacing:-22.518000px;}
.ws4_c01060{word-spacing:-20.250000px;}
.ws6_c01060{word-spacing:-18.014400px;}
.ws8_c01060{word-spacing:-17.352000px;}
.ws2_c01060{word-spacing:-17.250000px;}
.ws0_c01060{word-spacing:-0.072000px;}
.wsa_c01060{word-spacing:0.000000px;}
._30_c01060{margin-left:-72.306000px;}
._1f_c01060{margin-left:-49.155000px;}
._21_c01060{margin-left:-43.497000px;}
._1e_c01060{margin-left:-37.017000px;}
._1c_c01060{margin-left:-30.780000px;}
._32_c01060{margin-left:-29.484000px;}
._17_c01060{margin-left:-24.966000px;}
._2c_c01060{margin-left:-20.397000px;}
._1a_c01060{margin-left:-18.330000px;}
._26_c01060{margin-left:-16.434000px;}
._23_c01060{margin-left:-13.593000px;}
._2_c01060{margin-left:-12.282000px;}
._5_c01060{margin-left:-11.025000px;}
._3_c01060{margin-left:-9.300000px;}
._7_c01060{margin-left:-7.875000px;}
._6_c01060{margin-left:-5.775000px;}
._4_c01060{margin-left:-4.095000px;}
._1_c01060{margin-left:-2.175000px;}
._a_c01060{margin-left:-1.032000px;}
._0_c01060{width:1.995000px;}
._b_c01060{width:3.111000px;}
._9_c01060{width:4.215000px;}
._d_c01060{width:5.727000px;}
._e_c01060{width:6.825000px;}
._c_c01060{width:8.832000px;}
._11_c01060{width:10.143000px;}
._12_c01060{width:11.436000px;}
._2a_c01060{width:12.660000px;}
._f_c01060{width:13.740000px;}
._1b_c01060{width:14.847000px;}
._14_c01060{width:16.074000px;}
._16_c01060{width:18.036000px;}
._13_c01060{width:19.098000px;}
._27_c01060{width:20.316000px;}
._34_c01060{width:21.498000px;}
._18_c01060{width:22.857000px;}
._10_c01060{width:24.576000px;}
._31_c01060{width:27.753000px;}
._22_c01060{width:31.347000px;}
._25_c01060{width:35.145000px;}
._1d_c01060{width:37.038000px;}
._15_c01060{width:40.158000px;}
._35_c01060{width:44.604000px;}
._20_c01060{width:51.582000px;}
._2e_c01060{width:54.378000px;}
._2f_c01060{width:58.341000px;}
._2b_c01060{width:64.296000px;}
._37_c01060{width:66.855000px;}
._2d_c01060{width:146.745000px;}
._28_c01060{width:179.034000px;}
._8_c01060{width:260.790000px;}
._24_c01060{width:285.729000px;}
._36_c01060{width:298.425000px;}
._33_c01060{width:302.250000px;}
._29_c01060{width:312.714000px;}
._38_c01060{width:330.270000px;}
._19_c01060{width:332.280000px;}
.fc2_c01060{color:transparent;}
.fc1_c01060{color:rgb(128,128,128);}
.fc0_c01060{color:rgb(0,0,0);}
.fs9_c01060{font-size:48.000000px;}
.fs5_c01060{font-size:57.000000px;}
.fs3_c01060{font-size:60.000000px;}
.fsa_c01060{font-size:64.800000px;}
.fs2_c01060{font-size:69.000000px;}
.fs1_c01060{font-size:72.000000px;}
.fs7_c01060{font-size:75.000000px;}
.fs4_c01060{font-size:78.000000px;}
.fs8_c01060{font-size:81.000000px;}
.fs6_c01060{font-size:87.000000px;}
.fsb_c01060{font-size:90.000000px;}
.fs0_c01060{font-size:105.000000px;}
.y0_c01060{bottom:0.000000px;}
.y20_c01060{bottom:3.105000px;}
.y1f_c01060{bottom:7.228369px;}
.y1e_c01060{bottom:82.920000px;}
.y1d_c01060{bottom:134.370000px;}
.y1c_c01060{bottom:163.620000px;}
.y1b_c01060{bottom:193.020000px;}
.y1a_c01060{bottom:221.970000px;}
.y19_c01060{bottom:242.370000px;}
.y18_c01060{bottom:297.570000px;}
.y17_c01060{bottom:320.970000px;}
.y16_c01060{bottom:344.220000px;}
.y15_c01060{bottom:369.270000px;}
.y14_c01060{bottom:393.420000px;}
.y13_c01060{bottom:417.870000px;}
.y12_c01060{bottom:441.720000px;}
.y11_c01060{bottom:466.020000px;}
.y10_c01060{bottom:491.370000px;}
.yf_c01060{bottom:514.020000px;}
.ye_c01060{bottom:533.970000px;}
.yd_c01060{bottom:610.920000px;}
.yc_c01060{bottom:634.170000px;}
.yb_c01060{bottom:659.070000px;}
.ya_c01060{bottom:683.070000px;}
.y9_c01060{bottom:706.320000px;}
.y8_c01060{bottom:731.070000px;}
.y7_c01060{bottom:754.920000px;}
.y6_c01060{bottom:779.520000px;}
.y5_c01060{bottom:803.970000px;}
.y4_c01060{bottom:828.570000px;}
.y3_c01060{bottom:852.420000px;}
.y2_c01060{bottom:876.420000px;}
.y1_c01060{bottom:914.970000px;}
.he_c01060{height:13.200073px;}
.hf_c01060{height:43.804688px;}
.hd_c01060{height:58.857422px;}
.hc_c01060{height:58.886719px;}
.h6_c01060{height:66.713379px;}
.h9_c01060{height:67.719727px;}
.h5_c01060{height:72.168457px;}
.h8_c01060{height:79.497070px;}
.hb_c01060{height:84.269531px;}
.h3_c01060{height:87.361816px;}
.ha_c01060{height:91.160156px;}
.h4_c01060{height:98.756836px;}
.h2_c01060{height:103.000488px;}
.h7_c01060{height:110.151855px;}
.h1_c01060{height:986.250000px;}
.h0_c01060{height:986.550000px;}
.w1_c01060{width:104.875500px;}
.w0_c01060{width:672.000000px;}
.x0_c01060{left:0.000000px;}
.x8_c01060{left:44.550000px;}
.x9_c01060{left:45.900000px;}
.x7_c01060{left:46.950000px;}
.x6_c01060{left:48.000000px;}
.x4_c01060{left:49.200000px;}
.x3_c01060{left:52.050000px;}
.xe_c01060{left:55.350000px;}
.x5_c01060{left:57.600000px;}
.xd_c01060{left:59.100000px;}
.xa_c01060{left:60.150000px;}
.x2_c01060{left:62.850000px;}
.xb_c01060{left:82.950000px;}
.x10_c01060{left:90.000000px;}
.x12_c01060{left:137.400000px;}
.xc_c01060{left:163.950000px;}
.x1_c01060{left:177.150000px;}
.x11_c01060{left:189.300000px;}
.xf_c01060{left:198.150000px;}
.x14_c01060{left:287.814240px;}
.x13_c01060{left:385.350000px;}
@media print{
.v0_c01060{vertical-align:0.000000pt;}
.ls7_c01060{letter-spacing:-10.666667pt;}
.ls4_c01060{letter-spacing:0.000000pt;}
.ls1_c01060{letter-spacing:1.690667pt;}
.ls2_c01060{letter-spacing:2.533333pt;}
.ls5_c01060{letter-spacing:2.666667pt;}
.ls0_c01060{letter-spacing:3.098667pt;}
.ls8_c01060{letter-spacing:8.000000pt;}
.ls6_c01060{letter-spacing:10.666667pt;}
.ls3_c01060{letter-spacing:25.157333pt;}
.ws1_c01060{word-spacing:-32.320000pt;}
.ws3_c01060{word-spacing:-31.616000pt;}
.ws9_c01060{word-spacing:-31.333333pt;}
.ws7_c01060{word-spacing:-26.000000pt;}
.ws5_c01060{word-spacing:-20.016000pt;}
.ws4_c01060{word-spacing:-18.000000pt;}
.ws6_c01060{word-spacing:-16.012800pt;}
.ws8_c01060{word-spacing:-15.424000pt;}
.ws2_c01060{word-spacing:-15.333333pt;}
.ws0_c01060{word-spacing:-0.064000pt;}
.wsa_c01060{word-spacing:0.000000pt;}
._30_c01060{margin-left:-64.272000pt;}
._1f_c01060{margin-left:-43.693333pt;}
._21_c01060{margin-left:-38.664000pt;}
._1e_c01060{margin-left:-32.904000pt;}
._1c_c01060{margin-left:-27.360000pt;}
._32_c01060{margin-left:-26.208000pt;}
._17_c01060{margin-left:-22.192000pt;}
._2c_c01060{margin-left:-18.130667pt;}
._1a_c01060{margin-left:-16.293333pt;}
._26_c01060{margin-left:-14.608000pt;}
._23_c01060{margin-left:-12.082667pt;}
._2_c01060{margin-left:-10.917333pt;}
._5_c01060{margin-left:-9.800000pt;}
._3_c01060{margin-left:-8.266667pt;}
._7_c01060{margin-left:-7.000000pt;}
._6_c01060{margin-left:-5.133333pt;}
._4_c01060{margin-left:-3.640000pt;}
._1_c01060{margin-left:-1.933333pt;}
._a_c01060{margin-left:-0.917333pt;}
._0_c01060{width:1.773333pt;}
._b_c01060{width:2.765333pt;}
._9_c01060{width:3.746667pt;}
._d_c01060{width:5.090667pt;}
._e_c01060{width:6.066667pt;}
._c_c01060{width:7.850667pt;}
._11_c01060{width:9.016000pt;}
._12_c01060{width:10.165333pt;}
._2a_c01060{width:11.253333pt;}
._f_c01060{width:12.213333pt;}
._1b_c01060{width:13.197333pt;}
._14_c01060{width:14.288000pt;}
._16_c01060{width:16.032000pt;}
._13_c01060{width:16.976000pt;}
._27_c01060{width:18.058667pt;}
._34_c01060{width:19.109333pt;}
._18_c01060{width:20.317333pt;}
._10_c01060{width:21.845333pt;}
._31_c01060{width:24.669333pt;}
._22_c01060{width:27.864000pt;}
._25_c01060{width:31.240000pt;}
._1d_c01060{width:32.922667pt;}
._15_c01060{width:35.696000pt;}
._35_c01060{width:39.648000pt;}
._20_c01060{width:45.850667pt;}
._2e_c01060{width:48.336000pt;}
._2f_c01060{width:51.858667pt;}
._2b_c01060{width:57.152000pt;}
._37_c01060{width:59.426667pt;}
._2d_c01060{width:130.440000pt;}
._28_c01060{width:159.141333pt;}
._8_c01060{width:231.813333pt;}
._24_c01060{width:253.981333pt;}
._36_c01060{width:265.266667pt;}
._33_c01060{width:268.666667pt;}
._29_c01060{width:277.968000pt;}
._38_c01060{width:293.573333pt;}
._19_c01060{width:295.360000pt;}
.fs9_c01060{font-size:42.666667pt;}
.fs5_c01060{font-size:50.666667pt;}
.fs3_c01060{font-size:53.333333pt;}
.fsa_c01060{font-size:57.600000pt;}
.fs2_c01060{font-size:61.333333pt;}
.fs1_c01060{font-size:64.000000pt;}
.fs7_c01060{font-size:66.666667pt;}
.fs4_c01060{font-size:69.333333pt;}
.fs8_c01060{font-size:72.000000pt;}
.fs6_c01060{font-size:77.333333pt;}
.fsb_c01060{font-size:80.000000pt;}
.fs0_c01060{font-size:93.333333pt;}
.y0_c01060{bottom:0.000000pt;}
.y20_c01060{bottom:2.760000pt;}
.y1f_c01060{bottom:6.425217pt;}
.y1e_c01060{bottom:73.706667pt;}
.y1d_c01060{bottom:119.440000pt;}
.y1c_c01060{bottom:145.440000pt;}
.y1b_c01060{bottom:171.573333pt;}
.y1a_c01060{bottom:197.306667pt;}
.y19_c01060{bottom:215.440000pt;}
.y18_c01060{bottom:264.506667pt;}
.y17_c01060{bottom:285.306667pt;}
.y16_c01060{bottom:305.973333pt;}
.y15_c01060{bottom:328.240000pt;}
.y14_c01060{bottom:349.706667pt;}
.y13_c01060{bottom:371.440000pt;}
.y12_c01060{bottom:392.640000pt;}
.y11_c01060{bottom:414.240000pt;}
.y10_c01060{bottom:436.773333pt;}
.yf_c01060{bottom:456.906667pt;}
.ye_c01060{bottom:474.640000pt;}
.yd_c01060{bottom:543.040000pt;}
.yc_c01060{bottom:563.706667pt;}
.yb_c01060{bottom:585.840000pt;}
.ya_c01060{bottom:607.173333pt;}
.y9_c01060{bottom:627.840000pt;}
.y8_c01060{bottom:649.840000pt;}
.y7_c01060{bottom:671.040000pt;}
.y6_c01060{bottom:692.906667pt;}
.y5_c01060{bottom:714.640000pt;}
.y4_c01060{bottom:736.506667pt;}
.y3_c01060{bottom:757.706667pt;}
.y2_c01060{bottom:779.040000pt;}
.y1_c01060{bottom:813.306667pt;}
.he_c01060{height:11.733399pt;}
.hf_c01060{height:38.937500pt;}
.hd_c01060{height:52.317708pt;}
.hc_c01060{height:52.343750pt;}
.h6_c01060{height:59.300781pt;}
.h9_c01060{height:60.195312pt;}
.h5_c01060{height:64.149740pt;}
.h8_c01060{height:70.664062pt;}
.hb_c01060{height:74.906250pt;}
.h3_c01060{height:77.654948pt;}
.ha_c01060{height:81.031250pt;}
.h4_c01060{height:87.783854pt;}
.h2_c01060{height:91.555990pt;}
.h7_c01060{height:97.912760pt;}
.h1_c01060{height:876.666667pt;}
.h0_c01060{height:876.933333pt;}
.w1_c01060{width:93.222667pt;}
.w0_c01060{width:597.333333pt;}
.x0_c01060{left:0.000000pt;}
.x8_c01060{left:39.600000pt;}
.x9_c01060{left:40.800000pt;}
.x7_c01060{left:41.733333pt;}
.x6_c01060{left:42.666667pt;}
.x4_c01060{left:43.733333pt;}
.x3_c01060{left:46.266667pt;}
.xe_c01060{left:49.200000pt;}
.x5_c01060{left:51.200000pt;}
.xd_c01060{left:52.533333pt;}
.xa_c01060{left:53.466667pt;}
.x2_c01060{left:55.866667pt;}
.xb_c01060{left:73.733333pt;}
.x10_c01060{left:80.000000pt;}
.x12_c01060{left:122.133333pt;}
.xc_c01060{left:145.733333pt;}
.x1_c01060{left:157.466667pt;}
.x11_c01060{left:168.266667pt;}
.xf_c01060{left:176.133333pt;}
.x14_c01060{left:255.834880pt;}
.x13_c01060{left:342.533333pt;}
}





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

.ir_c01061:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01061{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01061;src:url('chunks/assets/font_55b1e4375e061f0679757019.woff2')format("woff");}.ff1_c01061{font-family:ff1_c01061;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01061;src:url('chunks/assets/font_535d3118bc4e709e75af20d5.woff2')format("woff");}.ff2_c01061{font-family:ff2_c01061;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01061;src:url('chunks/assets/font_3145a9c646d20ae6ebe1bebc.woff2')format("woff");}.ff3_c01061{font-family:ff3_c01061;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01061;src:url('chunks/assets/font_2f44e4ca2193bd771f4b4966.woff2')format("woff");}.ff4_c01061{font-family:ff4_c01061;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01061;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c01061{font-family:ff5_c01061;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01061{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01061{vertical-align:0.000000px;}
.ls0_c01061{letter-spacing:0.000000px;}
.ls1_c01061{letter-spacing:3.000000px;}
.ls2_c01061{letter-spacing:6.000000px;}
.sc__c01061{text-shadow:none;}
.sc0_c01061{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01061{-webkit-text-stroke:0px transparent;}
.sc0_c01061{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01061{word-spacing:-73.686000px;}
.ws0_c01061{word-spacing:-21.798000px;}
.ws2_c01061{word-spacing:-20.250000px;}
.ws3_c01061{word-spacing:-17.352000px;}
.ws4_c01061{word-spacing:0.000000px;}
._6_c01061{margin-left:-13.203000px;}
._1a_c01061{margin-left:-11.745000px;}
._18_c01061{margin-left:-10.449000px;}
._16_c01061{margin-left:-9.360000px;}
._19_c01061{margin-left:-7.533000px;}
._5_c01061{margin-left:-6.237000px;}
._3_c01061{margin-left:-5.184000px;}
._8_c01061{margin-left:-3.321000px;}
._9_c01061{margin-left:-1.782000px;}
._4_c01061{width:1.539000px;}
._0_c01061{width:2.754000px;}
._1_c01061{width:4.131000px;}
._2_c01061{width:5.994000px;}
._7_c01061{width:7.857000px;}
._b_c01061{width:8.991000px;}
._e_c01061{width:10.692000px;}
._f_c01061{width:12.150000px;}
._c_c01061{width:13.689000px;}
._d_c01061{width:15.633000px;}
._11_c01061{width:17.658000px;}
._10_c01061{width:18.873000px;}
._a_c01061{width:21.384000px;}
._15_c01061{width:30.537000px;}
._13_c01061{width:34.326000px;}
._12_c01061{width:214.533000px;}
._17_c01061{width:219.420000px;}
._1b_c01061{width:264.141000px;}
._1c_c01061{width:288.405000px;}
._14_c01061{width:647.757000px;}
._1d_c01061{width:1334.637000px;}
._1e_c01061{width:1521.606000px;}
.fc2_c01061{color:transparent;}
.fc1_c01061{color:rgb(128,128,128);}
.fc0_c01061{color:rgb(0,0,0);}
.fs6_c01061{font-size:48.000000px;}
.fs3_c01061{font-size:57.000000px;}
.fs4_c01061{font-size:72.000000px;}
.fs1_c01061{font-size:78.000000px;}
.fs0_c01061{font-size:81.000000px;}
.fs2_c01061{font-size:87.000000px;}
.fs5_c01061{font-size:93.000000px;}
.y0_c01061{bottom:0.000000px;}
.y25_c01061{bottom:3.105000px;}
.y24_c01061{bottom:7.228371px;}
.y23_c01061{bottom:59.865000px;}
.y22_c01061{bottom:78.765000px;}
.y21_c01061{bottom:106.965000px;}
.y20_c01061{bottom:130.365000px;}
.y1f_c01061{bottom:156.315000px;}
.y1e_c01061{bottom:179.865000px;}
.y1d_c01061{bottom:204.315000px;}
.y1c_c01061{bottom:227.865000px;}
.y1b_c01061{bottom:252.915000px;}
.y1a_c01061{bottom:277.815000px;}
.y19_c01061{bottom:302.415000px;}
.y18_c01061{bottom:328.065000px;}
.y17_c01061{bottom:351.465000px;}
.y16_c01061{bottom:375.615000px;}
.y15_c01061{bottom:400.065000px;}
.y14_c01061{bottom:424.665000px;}
.y13_c01061{bottom:451.965000px;}
.y12_c01061{bottom:473.565000px;}
.y11_c01061{bottom:497.865000px;}
.y10_c01061{bottom:521.565000px;}
.yf_c01061{bottom:545.865000px;}
.ye_c01061{bottom:570.165000px;}
.yd_c01061{bottom:594.465000px;}
.yc_c01061{bottom:619.065000px;}
.yb_c01061{bottom:643.065000px;}
.ya_c01061{bottom:667.665000px;}
.y9_c01061{bottom:692.265000px;}
.y8_c01061{bottom:717.165000px;}
.y7_c01061{bottom:740.865000px;}
.y6_c01061{bottom:765.465000px;}
.y5_c01061{bottom:789.765000px;}
.y4_c01061{bottom:813.765000px;}
.y3_c01061{bottom:838.065000px;}
.y2_c01061{bottom:862.665000px;}
.y1_c01061{bottom:886.365000px;}
.h7_c01061{height:13.200074px;}
.h8_c01061{height:43.804688px;}
.h2_c01061{height:79.497070px;}
.h5_c01061{height:84.269531px;}
.h4_c01061{height:91.176000px;}
.h6_c01061{height:91.274414px;}
.h3_c01061{height:98.756836px;}
.h1_c01061{height:986.250000px;}
.h0_c01061{height:986.325000px;}
.w2_c01061{width:104.875500px;}
.w0_c01061{width:667.425000px;}
.w1_c01061{width:667.500000px;}
.x0_c01061{left:0.000000px;}
.xa_c01061{left:21.000000px;}
.x10_c01061{left:22.650000px;}
.x12_c01061{left:27.300000px;}
.xd_c01061{left:33.150000px;}
.x9_c01061{left:40.500000px;}
.x4_c01061{left:104.250000px;}
.x5_c01061{left:106.200000px;}
.x6_c01061{left:107.400000px;}
.x7_c01061{left:111.150000px;}
.x8_c01061{left:112.350000px;}
.xb_c01061{left:113.850000px;}
.xc_c01061{left:115.200000px;}
.xe_c01061{left:117.900000px;}
.xf_c01061{left:119.250000px;}
.x11_c01061{left:121.500000px;}
.x13_c01061{left:171.150000px;}
.x2_c01061{left:207.300000px;}
.x3_c01061{left:209.250000px;}
.x1_c01061{left:225.750000px;}
.x14_c01061{left:285.526749px;}
@media print{
.v0_c01061{vertical-align:0.000000pt;}
.ls0_c01061{letter-spacing:0.000000pt;}
.ls1_c01061{letter-spacing:2.666667pt;}
.ls2_c01061{letter-spacing:5.333333pt;}
.ws1_c01061{word-spacing:-65.498667pt;}
.ws0_c01061{word-spacing:-19.376000pt;}
.ws2_c01061{word-spacing:-18.000000pt;}
.ws3_c01061{word-spacing:-15.424000pt;}
.ws4_c01061{word-spacing:0.000000pt;}
._6_c01061{margin-left:-11.736000pt;}
._1a_c01061{margin-left:-10.440000pt;}
._18_c01061{margin-left:-9.288000pt;}
._16_c01061{margin-left:-8.320000pt;}
._19_c01061{margin-left:-6.696000pt;}
._5_c01061{margin-left:-5.544000pt;}
._3_c01061{margin-left:-4.608000pt;}
._8_c01061{margin-left:-2.952000pt;}
._9_c01061{margin-left:-1.584000pt;}
._4_c01061{width:1.368000pt;}
._0_c01061{width:2.448000pt;}
._1_c01061{width:3.672000pt;}
._2_c01061{width:5.328000pt;}
._7_c01061{width:6.984000pt;}
._b_c01061{width:7.992000pt;}
._e_c01061{width:9.504000pt;}
._f_c01061{width:10.800000pt;}
._c_c01061{width:12.168000pt;}
._d_c01061{width:13.896000pt;}
._11_c01061{width:15.696000pt;}
._10_c01061{width:16.776000pt;}
._a_c01061{width:19.008000pt;}
._15_c01061{width:27.144000pt;}
._13_c01061{width:30.512000pt;}
._12_c01061{width:190.696000pt;}
._17_c01061{width:195.040000pt;}
._1b_c01061{width:234.792000pt;}
._1c_c01061{width:256.360000pt;}
._14_c01061{width:575.784000pt;}
._1d_c01061{width:1186.344000pt;}
._1e_c01061{width:1352.538667pt;}
.fs6_c01061{font-size:42.666667pt;}
.fs3_c01061{font-size:50.666667pt;}
.fs4_c01061{font-size:64.000000pt;}
.fs1_c01061{font-size:69.333333pt;}
.fs0_c01061{font-size:72.000000pt;}
.fs2_c01061{font-size:77.333333pt;}
.fs5_c01061{font-size:82.666667pt;}
.y0_c01061{bottom:0.000000pt;}
.y25_c01061{bottom:2.760000pt;}
.y24_c01061{bottom:6.425219pt;}
.y23_c01061{bottom:53.213333pt;}
.y22_c01061{bottom:70.013333pt;}
.y21_c01061{bottom:95.080000pt;}
.y20_c01061{bottom:115.880000pt;}
.y1f_c01061{bottom:138.946667pt;}
.y1e_c01061{bottom:159.880000pt;}
.y1d_c01061{bottom:181.613333pt;}
.y1c_c01061{bottom:202.546667pt;}
.y1b_c01061{bottom:224.813333pt;}
.y1a_c01061{bottom:246.946667pt;}
.y19_c01061{bottom:268.813333pt;}
.y18_c01061{bottom:291.613333pt;}
.y17_c01061{bottom:312.413333pt;}
.y16_c01061{bottom:333.880000pt;}
.y15_c01061{bottom:355.613333pt;}
.y14_c01061{bottom:377.480000pt;}
.y13_c01061{bottom:401.746667pt;}
.y12_c01061{bottom:420.946667pt;}
.y11_c01061{bottom:442.546667pt;}
.y10_c01061{bottom:463.613333pt;}
.yf_c01061{bottom:485.213333pt;}
.ye_c01061{bottom:506.813333pt;}
.yd_c01061{bottom:528.413333pt;}
.yc_c01061{bottom:550.280000pt;}
.yb_c01061{bottom:571.613333pt;}
.ya_c01061{bottom:593.480000pt;}
.y9_c01061{bottom:615.346667pt;}
.y8_c01061{bottom:637.480000pt;}
.y7_c01061{bottom:658.546667pt;}
.y6_c01061{bottom:680.413333pt;}
.y5_c01061{bottom:702.013333pt;}
.y4_c01061{bottom:723.346667pt;}
.y3_c01061{bottom:744.946667pt;}
.y2_c01061{bottom:766.813333pt;}
.y1_c01061{bottom:787.880000pt;}
.h7_c01061{height:11.733399pt;}
.h8_c01061{height:38.937500pt;}
.h2_c01061{height:70.664062pt;}
.h5_c01061{height:74.906250pt;}
.h4_c01061{height:81.045333pt;}
.h6_c01061{height:81.132812pt;}
.h3_c01061{height:87.783854pt;}
.h1_c01061{height:876.666667pt;}
.h0_c01061{height:876.733333pt;}
.w2_c01061{width:93.222667pt;}
.w0_c01061{width:593.266667pt;}
.w1_c01061{width:593.333333pt;}
.x0_c01061{left:0.000000pt;}
.xa_c01061{left:18.666667pt;}
.x10_c01061{left:20.133333pt;}
.x12_c01061{left:24.266667pt;}
.xd_c01061{left:29.466667pt;}
.x9_c01061{left:36.000000pt;}
.x4_c01061{left:92.666667pt;}
.x5_c01061{left:94.400000pt;}
.x6_c01061{left:95.466667pt;}
.x7_c01061{left:98.800000pt;}
.x8_c01061{left:99.866667pt;}
.xb_c01061{left:101.200000pt;}
.xc_c01061{left:102.400000pt;}
.xe_c01061{left:104.800000pt;}
.xf_c01061{left:106.000000pt;}
.x11_c01061{left:108.000000pt;}
.x13_c01061{left:152.133333pt;}
.x2_c01061{left:184.266667pt;}
.x3_c01061{left:186.000000pt;}
.x1_c01061{left:200.666667pt;}
.x14_c01061{left:253.801554pt;}
}





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

.ir_c01062:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01062{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01062;src:url('chunks/assets/font_be2b64e3ee04199c00a55005.woff2')format("woff");}.ff1_c01062{font-family:ff1_c01062;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01062;src:url('chunks/assets/font_ec8cb6ce3101b945b6a0be32.woff2')format("woff");}.ff2_c01062{font-family:ff2_c01062;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01062;src:url('chunks/assets/font_20ba43a622d4cbf69bfa4f48.woff2')format("woff");}.ff3_c01062{font-family:ff3_c01062;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01062;src:url('chunks/assets/font_71cefeff4fc4afca0429aae1.woff2')format("woff");}.ff4_c01062{font-family:ff4_c01062;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01062;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff5_c01062{font-family:ff5_c01062;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01062;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c01062{font-family:ff6_c01062;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01062{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01062{vertical-align:0.000000px;}
.ls0_c01062{letter-spacing:0.000000px;}
.ls2_c01062{letter-spacing:3.000000px;}
.ls1_c01062{letter-spacing:15.000000px;}
.ls3_c01062{letter-spacing:72.000000px;}
.sc__c01062{text-shadow:none;}
.sc0_c01062{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01062{-webkit-text-stroke:0px transparent;}
.sc0_c01062{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01062{word-spacing:-40.500000px;}
.ws1_c01062{word-spacing:-17.352000px;}
.ws2_c01062{word-spacing:0.000000px;}
._1d_c01062{margin-left:-106.434000px;}
._1c_c01062{margin-left:-87.480000px;}
._9_c01062{margin-left:-12.852000px;}
._13_c01062{margin-left:-10.233000px;}
._7_c01062{margin-left:-8.772000px;}
._1f_c01062{margin-left:-7.446000px;}
._d_c01062{margin-left:-6.381000px;}
._14_c01062{margin-left:-5.280000px;}
._e_c01062{margin-left:-4.218000px;}
._10_c01062{margin-left:-2.661000px;}
._2_c01062{margin-left:-1.326000px;}
._8_c01062{width:1.122000px;}
._b_c01062{width:2.958000px;}
._0_c01062{width:4.182000px;}
._3_c01062{width:5.508000px;}
._1_c01062{width:6.834000px;}
._5_c01062{width:8.772000px;}
._4_c01062{width:10.506000px;}
._18_c01062{width:11.646000px;}
._c_c01062{width:12.759000px;}
._6_c01062{width:14.280000px;}
._f_c01062{width:16.182000px;}
._11_c01062{width:17.766000px;}
._25_c01062{width:22.194000px;}
._20_c01062{width:24.483000px;}
._12_c01062{width:26.154000px;}
._16_c01062{width:27.378000px;}
._17_c01062{width:29.079000px;}
._19_c01062{width:30.954000px;}
._1e_c01062{width:35.529000px;}
._22_c01062{width:37.074000px;}
._15_c01062{width:42.039000px;}
._1b_c01062{width:48.924000px;}
._1a_c01062{width:53.178000px;}
._24_c01062{width:90.030000px;}
._a_c01062{width:176.496000px;}
._23_c01062{width:187.401000px;}
._21_c01062{width:242.277000px;}
.fc2_c01062{color:transparent;}
.fc1_c01062{color:rgb(128,128,128);}
.fc0_c01062{color:rgb(0,0,0);}
.fs4_c01062{font-size:48.000000px;}
.fs2_c01062{font-size:72.000000px;}
.fs1_c01062{font-size:81.000000px;}
.fs3_c01062{font-size:93.000000px;}
.fs0_c01062{font-size:102.000000px;}
.y0_c01062{bottom:0.000000px;}
.y26_c01062{bottom:3.105000px;}
.y25_c01062{bottom:7.228369px;}
.y24_c01062{bottom:60.120000px;}
.y23_c01062{bottom:85.620000px;}
.y22_c01062{bottom:110.970000px;}
.y21_c01062{bottom:135.720000px;}
.y20_c01062{bottom:160.320000px;}
.y1f_c01062{bottom:184.620000px;}
.y1e_c01062{bottom:208.920000px;}
.y1d_c01062{bottom:233.220000px;}
.y1c_c01062{bottom:258.120000px;}
.y1b_c01062{bottom:282.720000px;}
.y1a_c01062{bottom:306.420000px;}
.y19_c01062{bottom:331.320000px;}
.y18_c01062{bottom:355.020000px;}
.y17_c01062{bottom:379.920000px;}
.y16_c01062{bottom:404.970000px;}
.y15_c01062{bottom:428.520000px;}
.y14_c01062{bottom:452.220000px;}
.y13_c01062{bottom:477.870000px;}
.y12_c01062{bottom:500.520000px;}
.y11_c01062{bottom:525.420000px;}
.y10_c01062{bottom:548.820000px;}
.yf_c01062{bottom:572.670000px;}
.ye_c01062{bottom:596.670000px;}
.yd_c01062{bottom:619.920000px;}
.yc_c01062{bottom:645.270000px;}
.yb_c01062{bottom:669.870000px;}
.ya_c01062{bottom:692.820000px;}
.y9_c01062{bottom:717.570000px;}
.y8_c01062{bottom:740.820000px;}
.y7_c01062{bottom:764.820000px;}
.y6_c01062{bottom:791.070000px;}
.y5_c01062{bottom:812.970000px;}
.y4_c01062{bottom:836.970000px;}
.y3_c01062{bottom:860.970000px;}
.y2_c01062{bottom:884.970000px;}
.y1_c01062{bottom:925.470000px;}
.h7_c01062{height:13.200073px;}
.h8_c01062{height:43.804688px;}
.h3_c01062{height:79.497070px;}
.h4_c01062{height:84.269531px;}
.h6_c01062{height:91.160156px;}
.h5_c01062{height:91.274414px;}
.h2_c01062{height:100.057617px;}
.h1_c01062{height:986.250000px;}
.h0_c01062{height:986.550000px;}
.w1_c01062{width:104.875500px;}
.w0_c01062{width:672.000000px;}
.x0_c01062{left:0.000000px;}
.x9_c01062{left:46.200000px;}
.x8_c01062{left:47.250000px;}
.x7_c01062{left:48.600000px;}
.x5_c01062{left:50.250000px;}
.x4_c01062{left:51.300000px;}
.x6_c01062{left:52.350000px;}
.x3_c01062{left:54.300000px;}
.x2_c01062{left:67.200000px;}
.x1_c01062{left:113.700000px;}
.xa_c01062{left:277.050000px;}
.xb_c01062{left:287.814240px;}
@media print{
.v0_c01062{vertical-align:0.000000pt;}
.ls0_c01062{letter-spacing:0.000000pt;}
.ls2_c01062{letter-spacing:2.666667pt;}
.ls1_c01062{letter-spacing:13.333333pt;}
.ls3_c01062{letter-spacing:64.000000pt;}
.ws0_c01062{word-spacing:-36.000000pt;}
.ws1_c01062{word-spacing:-15.424000pt;}
.ws2_c01062{word-spacing:0.000000pt;}
._1d_c01062{margin-left:-94.608000pt;}
._1c_c01062{margin-left:-77.760000pt;}
._9_c01062{margin-left:-11.424000pt;}
._13_c01062{margin-left:-9.096000pt;}
._7_c01062{margin-left:-7.797333pt;}
._1f_c01062{margin-left:-6.618667pt;}
._d_c01062{margin-left:-5.672000pt;}
._14_c01062{margin-left:-4.693333pt;}
._e_c01062{margin-left:-3.749333pt;}
._10_c01062{margin-left:-2.365333pt;}
._2_c01062{margin-left:-1.178667pt;}
._8_c01062{width:0.997333pt;}
._b_c01062{width:2.629333pt;}
._0_c01062{width:3.717333pt;}
._3_c01062{width:4.896000pt;}
._1_c01062{width:6.074667pt;}
._5_c01062{width:7.797333pt;}
._4_c01062{width:9.338667pt;}
._18_c01062{width:10.352000pt;}
._c_c01062{width:11.341333pt;}
._6_c01062{width:12.693333pt;}
._f_c01062{width:14.384000pt;}
._11_c01062{width:15.792000pt;}
._25_c01062{width:19.728000pt;}
._20_c01062{width:21.762667pt;}
._12_c01062{width:23.248000pt;}
._16_c01062{width:24.336000pt;}
._17_c01062{width:25.848000pt;}
._19_c01062{width:27.514667pt;}
._1e_c01062{width:31.581333pt;}
._22_c01062{width:32.954667pt;}
._15_c01062{width:37.368000pt;}
._1b_c01062{width:43.488000pt;}
._1a_c01062{width:47.269333pt;}
._24_c01062{width:80.026667pt;}
._a_c01062{width:156.885333pt;}
._23_c01062{width:166.578667pt;}
._21_c01062{width:215.357333pt;}
.fs4_c01062{font-size:42.666667pt;}
.fs2_c01062{font-size:64.000000pt;}
.fs1_c01062{font-size:72.000000pt;}
.fs3_c01062{font-size:82.666667pt;}
.fs0_c01062{font-size:90.666667pt;}
.y0_c01062{bottom:0.000000pt;}
.y26_c01062{bottom:2.760000pt;}
.y25_c01062{bottom:6.425217pt;}
.y24_c01062{bottom:53.440000pt;}
.y23_c01062{bottom:76.106667pt;}
.y22_c01062{bottom:98.640000pt;}
.y21_c01062{bottom:120.640000pt;}
.y20_c01062{bottom:142.506667pt;}
.y1f_c01062{bottom:164.106667pt;}
.y1e_c01062{bottom:185.706667pt;}
.y1d_c01062{bottom:207.306667pt;}
.y1c_c01062{bottom:229.440000pt;}
.y1b_c01062{bottom:251.306667pt;}
.y1a_c01062{bottom:272.373333pt;}
.y19_c01062{bottom:294.506667pt;}
.y18_c01062{bottom:315.573333pt;}
.y17_c01062{bottom:337.706667pt;}
.y16_c01062{bottom:359.973333pt;}
.y15_c01062{bottom:380.906667pt;}
.y14_c01062{bottom:401.973333pt;}
.y13_c01062{bottom:424.773333pt;}
.y12_c01062{bottom:444.906667pt;}
.y11_c01062{bottom:467.040000pt;}
.y10_c01062{bottom:487.840000pt;}
.yf_c01062{bottom:509.040000pt;}
.ye_c01062{bottom:530.373333pt;}
.yd_c01062{bottom:551.040000pt;}
.yc_c01062{bottom:573.573333pt;}
.yb_c01062{bottom:595.440000pt;}
.ya_c01062{bottom:615.840000pt;}
.y9_c01062{bottom:637.840000pt;}
.y8_c01062{bottom:658.506667pt;}
.y7_c01062{bottom:679.840000pt;}
.y6_c01062{bottom:703.173333pt;}
.y5_c01062{bottom:722.640000pt;}
.y4_c01062{bottom:743.973333pt;}
.y3_c01062{bottom:765.306667pt;}
.y2_c01062{bottom:786.640000pt;}
.y1_c01062{bottom:822.640000pt;}
.h7_c01062{height:11.733399pt;}
.h8_c01062{height:38.937500pt;}
.h3_c01062{height:70.664062pt;}
.h4_c01062{height:74.906250pt;}
.h6_c01062{height:81.031250pt;}
.h5_c01062{height:81.132812pt;}
.h2_c01062{height:88.940104pt;}
.h1_c01062{height:876.666667pt;}
.h0_c01062{height:876.933333pt;}
.w1_c01062{width:93.222667pt;}
.w0_c01062{width:597.333333pt;}
.x0_c01062{left:0.000000pt;}
.x9_c01062{left:41.066667pt;}
.x8_c01062{left:42.000000pt;}
.x7_c01062{left:43.200000pt;}
.x5_c01062{left:44.666667pt;}
.x4_c01062{left:45.600000pt;}
.x6_c01062{left:46.533333pt;}
.x3_c01062{left:48.266667pt;}
.x2_c01062{left:59.733333pt;}
.x1_c01062{left:101.066667pt;}
.xa_c01062{left:246.266667pt;}
.xb_c01062{left:255.834880pt;}
}





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

.ir_c01063:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01063{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01063;src:url('chunks/assets/font_2344a05a27641db19d028b8e.woff2')format("woff");}.ff1_c01063{font-family:ff1_c01063;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01063;src:url('chunks/assets/font_317ca484d126da82a8d9bee1.woff2')format("woff");}.ff2_c01063{font-family:ff2_c01063;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01063;src:url('chunks/assets/font_1821cb976186f9007d1336ab.woff2')format("woff");}.ff3_c01063{font-family:ff3_c01063;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01063;src:url('chunks/assets/font_12e6da1b201d59ab22117dca.woff2')format("woff");}.ff4_c01063{font-family:ff4_c01063;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01063;src:url('chunks/assets/font_1c935df585efd15bde8bccf7.woff2')format("woff");}.ff5_c01063{font-family:ff5_c01063;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01063;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c01063{font-family:ff6_c01063;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01063{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01063{vertical-align:0.000000px;}
.v1_c01063{vertical-align:151.800000px;}
.ls2_c01063{letter-spacing:-3.000000px;}
.ls0_c01063{letter-spacing:0.000000px;}
.ls1_c01063{letter-spacing:3.000000px;}
.sc__c01063{text-shadow:none;}
.sc0_c01063{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01063{-webkit-text-stroke:0px transparent;}
.sc0_c01063{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01063{word-spacing:-69.750000px;}
.ws0_c01063{word-spacing:-38.232000px;}
.ws2_c01063{word-spacing:-12.750000px;}
.ws3_c01063{word-spacing:0.000000px;}
._1f_c01063{margin-left:-55.224000px;}
._21_c01063{margin-left:-28.548000px;}
._12_c01063{margin-left:-21.684000px;}
._22_c01063{margin-left:-17.784000px;}
._20_c01063{margin-left:-16.536000px;}
._17_c01063{margin-left:-15.009000px;}
._a_c01063{margin-left:-13.728000px;}
._14_c01063{margin-left:-11.154000px;}
._1a_c01063{margin-left:-9.777000px;}
._7_c01063{margin-left:-8.034000px;}
._9_c01063{margin-left:-6.708000px;}
._8_c01063{margin-left:-4.836000px;}
._2a_c01063{margin-left:-3.816000px;}
._3_c01063{margin-left:-2.808000px;}
._2_c01063{margin-left:-1.794000px;}
._5_c01063{width:1.014000px;}
._1_c01063{width:2.262000px;}
._0_c01063{width:3.822000px;}
._4_c01063{width:5.460000px;}
._16_c01063{width:6.474000px;}
._6_c01063{width:7.488000px;}
._15_c01063{width:9.126000px;}
._1c_c01063{width:10.530000px;}
._11_c01063{width:11.778000px;}
._1d_c01063{width:13.572000px;}
._b_c01063{width:14.742000px;}
._10_c01063{width:15.756000px;}
._f_c01063{width:17.082000px;}
._1b_c01063{width:20.046000px;}
._26_c01063{width:21.183000px;}
._d_c01063{width:22.542000px;}
._e_c01063{width:25.506000px;}
._c_c01063{width:27.300000px;}
._18_c01063{width:35.178000px;}
._19_c01063{width:37.518000px;}
._28_c01063{width:41.418000px;}
._29_c01063{width:80.514000px;}
._27_c01063{width:86.235000px;}
._13_c01063{width:145.314000px;}
._2c_c01063{width:174.564000px;}
._24_c01063{width:225.966000px;}
._23_c01063{width:739.608000px;}
._2d_c01063{width:744.120000px;}
._2b_c01063{width:782.574000px;}
._1e_c01063{width:936.156000px;}
._25_c01063{width:1472.370000px;}
.fc2_c01063{color:transparent;}
.fc1_c01063{color:rgb(128,128,128);}
.fc0_c01063{color:rgb(0,0,0);}
.fs8_c01063{font-size:48.000000px;}
.fs2_c01063{font-size:57.000000px;}
.fs7_c01063{font-size:63.000000px;}
.fs6_c01063{font-size:69.000000px;}
.fs5_c01063{font-size:72.000000px;}
.fs0_c01063{font-size:78.000000px;}
.fs1_c01063{font-size:81.000000px;}
.fs4_c01063{font-size:84.000000px;}
.fs3_c01063{font-size:279.000000px;}
.y0_c01063{bottom:0.000000px;}
.y24_c01063{bottom:3.105000px;}
.y23_c01063{bottom:7.228371px;}
.y22_c01063{bottom:68.265000px;}
.y21_c01063{bottom:88.515000px;}
.y20_c01063{bottom:114.465000px;}
.y1f_c01063{bottom:139.515000px;}
.y1e_c01063{bottom:164.115000px;}
.y1d_c01063{bottom:188.115000px;}
.y1c_c01063{bottom:212.715000px;}
.y1b_c01063{bottom:237.615000px;}
.y1a_c01063{bottom:262.215000px;}
.y19_c01063{bottom:286.515000px;}
.y18_c01063{bottom:312.915000px;}
.y17_c01063{bottom:334.515000px;}
.y16_c01063{bottom:360.165000px;}
.y15_c01063{bottom:383.415000px;}
.y14_c01063{bottom:406.065000px;}
.y13_c01063{bottom:432.315000px;}
.y12_c01063{bottom:456.315000px;}
.y11_c01063{bottom:480.315000px;}
.yf_c01063{bottom:490.365000px;}
.y10_c01063{bottom:504.915000px;}
.ye_c01063{bottom:551.565000px;}
.yd_c01063{bottom:576.165000px;}
.yc_c01063{bottom:623.115000px;}
.yb_c01063{bottom:648.015000px;}
.ya_c01063{bottom:672.315000px;}
.y9_c01063{bottom:696.615000px;}
.y8_c01063{bottom:720.615000px;}
.y7_c01063{bottom:744.915000px;}
.y6_c01063{bottom:768.915000px;}
.y5_c01063{bottom:792.765000px;}
.y4_c01063{bottom:816.765000px;}
.y3_c01063{bottom:840.765000px;}
.y2_c01063{bottom:867.765000px;}
.y1_c01063{bottom:888.765000px;}
.h8_c01063{height:13.200074px;}
.h9_c01063{height:43.804688px;}
.h7_c01063{height:66.713379px;}
.h4_c01063{height:72.168457px;}
.h6_c01063{height:84.269531px;}
.h2_c01063{height:98.756836px;}
.h3_c01063{height:102.555176px;}
.h5_c01063{height:273.823242px;}
.h1_c01063{height:986.250000px;}
.h0_c01063{height:986.325000px;}
.w2_c01063{width:104.875500px;}
.w0_c01063{width:667.425000px;}
.w1_c01063{width:667.500000px;}
.x0_c01063{left:0.000000px;}
.x9_c01063{left:40.500000px;}
.x4_c01063{left:81.750000px;}
.xc_c01063{left:90.000000px;}
.xa_c01063{left:125.550000px;}
.xb_c01063{left:127.200000px;}
.x8_c01063{left:128.550000px;}
.x1_c01063{left:129.600000px;}
.x2_c01063{left:130.950000px;}
.x3_c01063{left:132.300000px;}
.x6_c01063{left:133.650000px;}
.x5_c01063{left:170.550000px;}
.x7_c01063{left:176.550000px;}
.xd_c01063{left:285.526749px;}
@media print{
.v0_c01063{vertical-align:0.000000pt;}
.v1_c01063{vertical-align:134.933333pt;}
.ls2_c01063{letter-spacing:-2.666667pt;}
.ls0_c01063{letter-spacing:0.000000pt;}
.ls1_c01063{letter-spacing:2.666667pt;}
.ws1_c01063{word-spacing:-62.000000pt;}
.ws0_c01063{word-spacing:-33.984000pt;}
.ws2_c01063{word-spacing:-11.333333pt;}
.ws3_c01063{word-spacing:0.000000pt;}
._1f_c01063{margin-left:-49.088000pt;}
._21_c01063{margin-left:-25.376000pt;}
._12_c01063{margin-left:-19.274667pt;}
._22_c01063{margin-left:-15.808000pt;}
._20_c01063{margin-left:-14.698667pt;}
._17_c01063{margin-left:-13.341333pt;}
._a_c01063{margin-left:-12.202667pt;}
._14_c01063{margin-left:-9.914667pt;}
._1a_c01063{margin-left:-8.690667pt;}
._7_c01063{margin-left:-7.141333pt;}
._9_c01063{margin-left:-5.962667pt;}
._8_c01063{margin-left:-4.298667pt;}
._2a_c01063{margin-left:-3.392000pt;}
._3_c01063{margin-left:-2.496000pt;}
._2_c01063{margin-left:-1.594667pt;}
._5_c01063{width:0.901333pt;}
._1_c01063{width:2.010667pt;}
._0_c01063{width:3.397333pt;}
._4_c01063{width:4.853333pt;}
._16_c01063{width:5.754667pt;}
._6_c01063{width:6.656000pt;}
._15_c01063{width:8.112000pt;}
._1c_c01063{width:9.360000pt;}
._11_c01063{width:10.469333pt;}
._1d_c01063{width:12.064000pt;}
._b_c01063{width:13.104000pt;}
._10_c01063{width:14.005333pt;}
._f_c01063{width:15.184000pt;}
._1b_c01063{width:17.818667pt;}
._26_c01063{width:18.829333pt;}
._d_c01063{width:20.037333pt;}
._e_c01063{width:22.672000pt;}
._c_c01063{width:24.266667pt;}
._18_c01063{width:31.269333pt;}
._19_c01063{width:33.349333pt;}
._28_c01063{width:36.816000pt;}
._29_c01063{width:71.568000pt;}
._27_c01063{width:76.653333pt;}
._13_c01063{width:129.168000pt;}
._2c_c01063{width:155.168000pt;}
._24_c01063{width:200.858667pt;}
._23_c01063{width:657.429333pt;}
._2d_c01063{width:661.440000pt;}
._2b_c01063{width:695.621333pt;}
._1e_c01063{width:832.138667pt;}
._25_c01063{width:1308.773333pt;}
.fs8_c01063{font-size:42.666667pt;}
.fs2_c01063{font-size:50.666667pt;}
.fs7_c01063{font-size:56.000000pt;}
.fs6_c01063{font-size:61.333333pt;}
.fs5_c01063{font-size:64.000000pt;}
.fs0_c01063{font-size:69.333333pt;}
.fs1_c01063{font-size:72.000000pt;}
.fs4_c01063{font-size:74.666667pt;}
.fs3_c01063{font-size:248.000000pt;}
.y0_c01063{bottom:0.000000pt;}
.y24_c01063{bottom:2.760000pt;}
.y23_c01063{bottom:6.425219pt;}
.y22_c01063{bottom:60.680000pt;}
.y21_c01063{bottom:78.680000pt;}
.y20_c01063{bottom:101.746667pt;}
.y1f_c01063{bottom:124.013333pt;}
.y1e_c01063{bottom:145.880000pt;}
.y1d_c01063{bottom:167.213333pt;}
.y1c_c01063{bottom:189.080000pt;}
.y1b_c01063{bottom:211.213333pt;}
.y1a_c01063{bottom:233.080000pt;}
.y19_c01063{bottom:254.680000pt;}
.y18_c01063{bottom:278.146667pt;}
.y17_c01063{bottom:297.346667pt;}
.y16_c01063{bottom:320.146667pt;}
.y15_c01063{bottom:340.813333pt;}
.y14_c01063{bottom:360.946667pt;}
.y13_c01063{bottom:384.280000pt;}
.y12_c01063{bottom:405.613333pt;}
.y11_c01063{bottom:426.946667pt;}
.yf_c01063{bottom:435.880000pt;}
.y10_c01063{bottom:448.813333pt;}
.ye_c01063{bottom:490.280000pt;}
.yd_c01063{bottom:512.146667pt;}
.yc_c01063{bottom:553.880000pt;}
.yb_c01063{bottom:576.013333pt;}
.ya_c01063{bottom:597.613333pt;}
.y9_c01063{bottom:619.213333pt;}
.y8_c01063{bottom:640.546667pt;}
.y7_c01063{bottom:662.146667pt;}
.y6_c01063{bottom:683.480000pt;}
.y5_c01063{bottom:704.680000pt;}
.y4_c01063{bottom:726.013333pt;}
.y3_c01063{bottom:747.346667pt;}
.y2_c01063{bottom:771.346667pt;}
.y1_c01063{bottom:790.013333pt;}
.h8_c01063{height:11.733399pt;}
.h9_c01063{height:38.937500pt;}
.h7_c01063{height:59.300781pt;}
.h4_c01063{height:64.149740pt;}
.h6_c01063{height:74.906250pt;}
.h2_c01063{height:87.783854pt;}
.h3_c01063{height:91.160156pt;}
.h5_c01063{height:243.398438pt;}
.h1_c01063{height:876.666667pt;}
.h0_c01063{height:876.733333pt;}
.w2_c01063{width:93.222667pt;}
.w0_c01063{width:593.266667pt;}
.w1_c01063{width:593.333333pt;}
.x0_c01063{left:0.000000pt;}
.x9_c01063{left:36.000000pt;}
.x4_c01063{left:72.666667pt;}
.xc_c01063{left:80.000000pt;}
.xa_c01063{left:111.600000pt;}
.xb_c01063{left:113.066667pt;}
.x8_c01063{left:114.266667pt;}
.x1_c01063{left:115.200000pt;}
.x2_c01063{left:116.400000pt;}
.x3_c01063{left:117.600000pt;}
.x6_c01063{left:118.800000pt;}
.x5_c01063{left:151.600000pt;}
.x7_c01063{left:156.933333pt;}
.xd_c01063{left:253.801554pt;}
}





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

.ir_c01064:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01064{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01064;src:url('chunks/assets/font_c0fa57ef86cc0a81e99dcbf7.woff2')format("woff");}.ff1_c01064{font-family:ff1_c01064;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01064;src:url('chunks/assets/font_fa68f8923b716d029e9f04cd.woff2')format("woff");}.ff2_c01064{font-family:ff2_c01064;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01064;src:url('chunks/assets/font_dde226288fbed6cc2a912edc.woff2')format("woff");}.ff3_c01064{font-family:ff3_c01064;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01064;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff4_c01064{font-family:ff4_c01064;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01064;src:url('chunks/assets/font_5c37f8f052c5220b757ce602.woff2')format("woff");}.ff5_c01064{font-family:ff5_c01064;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01064;src:url('chunks/assets/font_861ec6c9cb2edd6d4bce17a4.woff2')format("woff");}.ff6_c01064{font-family:ff6_c01064;line-height:1.437000;font-style:normal;font-weight: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_c01064;src:url('chunks/assets/font_57a12a50a3724906a72d3d64.woff2')format("woff");}.ff7_c01064{font-family:ff7_c01064;line-height:1.437000;font-style:normal;font-weight: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_c01064;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff8_c01064{font-family:ff8_c01064;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01064{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c01064{vertical-align:-25.200000px;}
.v0_c01064{vertical-align:0.000000px;}
.ls3_c01064{letter-spacing:-3.000000px;}
.ls2_c01064{letter-spacing:0.000000px;}
.ls1_c01064{letter-spacing:6.000000px;}
.ls0_c01064{letter-spacing:16.650000px;}
.sc__c01064{text-shadow:none;}
.sc0_c01064{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01064{-webkit-text-stroke:0px transparent;}
.sc0_c01064{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c01064{word-spacing:-73.686000px;}
.ws2_c01064{word-spacing:-67.023000px;}
.ws3_c01064{word-spacing:-59.184000px;}
.ws0_c01064{word-spacing:-42.984000px;}
.ws1_c01064{word-spacing:-20.250000px;}
.ws5_c01064{word-spacing:0.000000px;}
._1b_c01064{margin-left:-42.624000px;}
._1f_c01064{margin-left:-13.365000px;}
._25_c01064{margin-left:-11.397000px;}
._24_c01064{margin-left:-10.044000px;}
._6_c01064{margin-left:-7.695000px;}
._16_c01064{margin-left:-6.534000px;}
._5_c01064{margin-left:-4.698000px;}
._1a_c01064{margin-left:-3.660000px;}
._8_c01064{margin-left:-2.349000px;}
._7_c01064{margin-left:-1.053000px;}
._9_c01064{width:1.863000px;}
._4_c01064{width:2.916000px;}
._d_c01064{width:4.050000px;}
._0_c01064{width:5.103000px;}
._3_c01064{width:6.561000px;}
._a_c01064{width:7.614000px;}
._1_c01064{width:8.748000px;}
._2_c01064{width:10.449000px;}
._b_c01064{width:12.123000px;}
._c_c01064{width:13.773000px;}
._10_c01064{width:15.228000px;}
._e_c01064{width:16.551000px;}
._14_c01064{width:18.549000px;}
._1d_c01064{width:21.300000px;}
._15_c01064{width:22.842000px;}
._1e_c01064{width:24.732000px;}
._12_c01064{width:25.920000px;}
._13_c01064{width:27.243000px;}
._f_c01064{width:28.431000px;}
._29_c01064{width:30.132000px;}
._18_c01064{width:31.704000px;}
._22_c01064{width:33.750000px;}
._1c_c01064{width:36.207000px;}
._19_c01064{width:38.181000px;}
._11_c01064{width:39.633000px;}
._17_c01064{width:54.594000px;}
._26_c01064{width:81.294000px;}
._21_c01064{width:113.562000px;}
._27_c01064{width:215.676000px;}
._28_c01064{width:246.888000px;}
._23_c01064{width:248.202000px;}
._20_c01064{width:649.863000px;}
.fc2_c01064{color:transparent;}
.fc1_c01064{color:rgb(128,128,128);}
.fc0_c01064{color:rgb(0,0,0);}
.fs5_c01064{font-size:48.000000px;}
.fs1_c01064{font-size:63.000000px;}
.fs2_c01064{font-size:72.000000px;}
.fs0_c01064{font-size:81.000000px;}
.fs4_c01064{font-size:87.000000px;}
.fs3_c01064{font-size:99.000000px;}
.y0_c01064{bottom:0.000000px;}
.y25_c01064{bottom:3.105000px;}
.y24_c01064{bottom:7.228357px;}
.y23_c01064{bottom:43.530000px;}
.y22_c01064{bottom:68.880000px;}
.y21_c01064{bottom:93.780000px;}
.y20_c01064{bottom:118.230000px;}
.y1f_c01064{bottom:142.380000px;}
.y1e_c01064{bottom:167.130000px;}
.y1d_c01064{bottom:190.980000px;}
.y1c_c01064{bottom:215.280000px;}
.y1b_c01064{bottom:239.730000px;}
.y1a_c01064{bottom:264.030000px;}
.y19_c01064{bottom:287.880000px;}
.y18_c01064{bottom:311.580000px;}
.y17_c01064{bottom:336.480000px;}
.y16_c01064{bottom:360.480000px;}
.y15_c01064{bottom:384.480000px;}
.y14_c01064{bottom:408.780000px;}
.y13_c01064{bottom:432.330000px;}
.y12_c01064{bottom:456.330000px;}
.y11_c01064{bottom:480.330000px;}
.y10_c01064{bottom:504.630000px;}
.yf_c01064{bottom:528.180000px;}
.ye_c01064{bottom:552.180000px;}
.yd_c01064{bottom:576.480000px;}
.yc_c01064{bottom:599.730000px;}
.yb_c01064{bottom:623.430000px;}
.ya_c01064{bottom:647.730000px;}
.y9_c01064{bottom:671.730000px;}
.y8_c01064{bottom:695.880000px;}
.y7_c01064{bottom:720.180000px;}
.y6_c01064{bottom:744.480000px;}
.y5_c01064{bottom:768.480000px;}
.y4_c01064{bottom:793.080000px;}
.y3_c01064{bottom:817.530000px;}
.y2_c01064{bottom:842.130000px;}
.y1_c01064{bottom:865.980000px;}
.h6_c01064{height:13.200074px;}
.h7_c01064{height:43.804688px;}
.h1_c01064{height:79.497070px;}
.h4_c01064{height:84.269531px;}
.h2_c01064{height:91.160156px;}
.h5_c01064{height:91.176000px;}
.h3_c01064{height:125.345215px;}
.h0_c01064{height:968.250000px;}
.w2_c01064{width:104.875500px;}
.w1_c01064{width:659.250000px;}
.w0_c01064{width:659.325000px;}
.x0_c01064{left:0.000000px;}
.x3_c01064{left:30.750000px;}
.x6_c01064{left:37.500000px;}
.x1_c01064{left:52.200000px;}
.x2_c01064{left:53.550000px;}
.x4_c01064{left:55.350000px;}
.x5_c01064{left:56.700000px;}
.x8_c01064{left:281.476730px;}
.x7_c01064{left:392.850000px;}
@media print{
.v1_c01064{vertical-align:-22.400000pt;}
.v0_c01064{vertical-align:0.000000pt;}
.ls3_c01064{letter-spacing:-2.666667pt;}
.ls2_c01064{letter-spacing:0.000000pt;}
.ls1_c01064{letter-spacing:5.333333pt;}
.ls0_c01064{letter-spacing:14.800000pt;}
.ws4_c01064{word-spacing:-65.498667pt;}
.ws2_c01064{word-spacing:-59.576000pt;}
.ws3_c01064{word-spacing:-52.608000pt;}
.ws0_c01064{word-spacing:-38.208000pt;}
.ws1_c01064{word-spacing:-18.000000pt;}
.ws5_c01064{word-spacing:0.000000pt;}
._1b_c01064{margin-left:-37.888000pt;}
._1f_c01064{margin-left:-11.880000pt;}
._25_c01064{margin-left:-10.130667pt;}
._24_c01064{margin-left:-8.928000pt;}
._6_c01064{margin-left:-6.840000pt;}
._16_c01064{margin-left:-5.808000pt;}
._5_c01064{margin-left:-4.176000pt;}
._1a_c01064{margin-left:-3.253333pt;}
._8_c01064{margin-left:-2.088000pt;}
._7_c01064{margin-left:-0.936000pt;}
._9_c01064{width:1.656000pt;}
._4_c01064{width:2.592000pt;}
._d_c01064{width:3.600000pt;}
._0_c01064{width:4.536000pt;}
._3_c01064{width:5.832000pt;}
._a_c01064{width:6.768000pt;}
._1_c01064{width:7.776000pt;}
._2_c01064{width:9.288000pt;}
._b_c01064{width:10.776000pt;}
._c_c01064{width:12.242667pt;}
._10_c01064{width:13.536000pt;}
._e_c01064{width:14.712000pt;}
._14_c01064{width:16.488000pt;}
._1d_c01064{width:18.933333pt;}
._15_c01064{width:20.304000pt;}
._1e_c01064{width:21.984000pt;}
._12_c01064{width:23.040000pt;}
._13_c01064{width:24.216000pt;}
._f_c01064{width:25.272000pt;}
._29_c01064{width:26.784000pt;}
._18_c01064{width:28.181333pt;}
._22_c01064{width:30.000000pt;}
._1c_c01064{width:32.184000pt;}
._19_c01064{width:33.938667pt;}
._11_c01064{width:35.229333pt;}
._17_c01064{width:48.528000pt;}
._26_c01064{width:72.261333pt;}
._21_c01064{width:100.944000pt;}
._27_c01064{width:191.712000pt;}
._28_c01064{width:219.456000pt;}
._23_c01064{width:220.624000pt;}
._20_c01064{width:577.656000pt;}
.fs5_c01064{font-size:42.666667pt;}
.fs1_c01064{font-size:56.000000pt;}
.fs2_c01064{font-size:64.000000pt;}
.fs0_c01064{font-size:72.000000pt;}
.fs4_c01064{font-size:77.333333pt;}
.fs3_c01064{font-size:88.000000pt;}
.y0_c01064{bottom:0.000000pt;}
.y25_c01064{bottom:2.760000pt;}
.y24_c01064{bottom:6.425206pt;}
.y23_c01064{bottom:38.693333pt;}
.y22_c01064{bottom:61.226667pt;}
.y21_c01064{bottom:83.360000pt;}
.y20_c01064{bottom:105.093333pt;}
.y1f_c01064{bottom:126.560000pt;}
.y1e_c01064{bottom:148.560000pt;}
.y1d_c01064{bottom:169.760000pt;}
.y1c_c01064{bottom:191.360000pt;}
.y1b_c01064{bottom:213.093333pt;}
.y1a_c01064{bottom:234.693333pt;}
.y19_c01064{bottom:255.893333pt;}
.y18_c01064{bottom:276.960000pt;}
.y17_c01064{bottom:299.093333pt;}
.y16_c01064{bottom:320.426667pt;}
.y15_c01064{bottom:341.760000pt;}
.y14_c01064{bottom:363.360000pt;}
.y13_c01064{bottom:384.293333pt;}
.y12_c01064{bottom:405.626667pt;}
.y11_c01064{bottom:426.960000pt;}
.y10_c01064{bottom:448.560000pt;}
.yf_c01064{bottom:469.493333pt;}
.ye_c01064{bottom:490.826667pt;}
.yd_c01064{bottom:512.426667pt;}
.yc_c01064{bottom:533.093333pt;}
.yb_c01064{bottom:554.160000pt;}
.ya_c01064{bottom:575.760000pt;}
.y9_c01064{bottom:597.093333pt;}
.y8_c01064{bottom:618.560000pt;}
.y7_c01064{bottom:640.160000pt;}
.y6_c01064{bottom:661.760000pt;}
.y5_c01064{bottom:683.093333pt;}
.y4_c01064{bottom:704.960000pt;}
.y3_c01064{bottom:726.693333pt;}
.y2_c01064{bottom:748.560000pt;}
.y1_c01064{bottom:769.760000pt;}
.h6_c01064{height:11.733399pt;}
.h7_c01064{height:38.937500pt;}
.h1_c01064{height:70.664062pt;}
.h4_c01064{height:74.906250pt;}
.h2_c01064{height:81.031250pt;}
.h5_c01064{height:81.045333pt;}
.h3_c01064{height:111.417969pt;}
.h0_c01064{height:860.666667pt;}
.w2_c01064{width:93.222667pt;}
.w1_c01064{width:586.000000pt;}
.w0_c01064{width:586.066667pt;}
.x0_c01064{left:0.000000pt;}
.x3_c01064{left:27.333333pt;}
.x6_c01064{left:33.333333pt;}
.x1_c01064{left:46.400000pt;}
.x2_c01064{left:47.600000pt;}
.x4_c01064{left:49.200000pt;}
.x5_c01064{left:50.400000pt;}
.x8_c01064{left:250.201538pt;}
.x7_c01064{left:349.200000pt;}
}





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

.ir_c01065:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01065{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01065;src:url('chunks/assets/font_38f6d3a539e69cf253561e7a.woff2')format("woff");}.ff1_c01065{font-family:ff1_c01065;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01065;src:url('chunks/assets/font_b2f78f9c0d22c848ee5c1fea.woff2')format("woff");}.ff2_c01065{font-family:ff2_c01065;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01065;src:url('chunks/assets/font_f71f5edd181f34b5401e6334.woff2')format("woff");}.ff3_c01065{font-family:ff3_c01065;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01065;src:url('chunks/assets/font_ad0a2ed995bbc07c6cf6e367.woff2')format("woff");}.ff4_c01065{font-family:ff4_c01065;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01065;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff5_c01065{font-family:ff5_c01065;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01065;src:url('chunks/assets/font_fd9f8f03662ab01e1e0ecb36.woff2')format("woff");}.ff6_c01065{font-family:ff6_c01065;line-height:1.437000;font-style:normal;font-weight: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_c01065;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c01065{font-family:ff7_c01065;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01065{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01065{vertical-align:0.000000px;}
.ls4_c01065{letter-spacing:0.000000px;}
.ls2_c01065{letter-spacing:1.500000px;}
.ls3_c01065{letter-spacing:3.000000px;}
.ls5_c01065{letter-spacing:9.000000px;}
.ls1_c01065{letter-spacing:10.500000px;}
.ls0_c01065{letter-spacing:17.664000px;}
.sc__c01065{text-shadow:none;}
.sc0_c01065{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01065{-webkit-text-stroke:0px transparent;}
.sc0_c01065{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01065{word-spacing:-25.500000px;}
.ws3_c01065{word-spacing:-22.737000px;}
.ws1_c01065{word-spacing:-18.000000px;}
.ws2_c01065{word-spacing:-17.352000px;}
.ws4_c01065{word-spacing:0.000000px;}
._2e_c01065{margin-left:-27.621000px;}
._2a_c01065{margin-left:-25.053000px;}
._1e_c01065{margin-left:-21.801000px;}
._16_c01065{margin-left:-20.367000px;}
._20_c01065{margin-left:-17.562000px;}
._31_c01065{margin-left:-16.362000px;}
._2c_c01065{margin-left:-12.333000px;}
._a_c01065{margin-left:-10.710000px;}
._23_c01065{margin-left:-8.946000px;}
._9_c01065{margin-left:-7.242000px;}
._34_c01065{margin-left:-6.171000px;}
._1b_c01065{margin-left:-4.800000px;}
._11_c01065{margin-left:-2.877000px;}
._10_c01065{margin-left:-1.446000px;}
._19_c01065{width:1.020000px;}
._c_c01065{width:2.031000px;}
._b_c01065{width:3.060000px;}
._1_c01065{width:4.386000px;}
._2_c01065{width:5.610000px;}
._e_c01065{width:6.900000px;}
._0_c01065{width:8.058000px;}
._12_c01065{width:9.414000px;}
._6_c01065{width:10.710000px;}
._17_c01065{width:11.928000px;}
._f_c01065{width:12.936000px;}
._27_c01065{width:14.112000px;}
._d_c01065{width:15.117000px;}
._8_c01065{width:16.218000px;}
._2b_c01065{width:17.496000px;}
._5_c01065{width:18.870000px;}
._7_c01065{width:20.094000px;}
._18_c01065{width:21.864000px;}
._29_c01065{width:23.013000px;}
._1c_c01065{width:25.737000px;}
._28_c01065{width:27.720000px;}
._14_c01065{width:28.968000px;}
._15_c01065{width:31.128000px;}
._13_c01065{width:33.177000px;}
._25_c01065{width:34.842000px;}
._35_c01065{width:36.387000px;}
._1f_c01065{width:38.004000px;}
._4_c01065{width:39.489000px;}
._21_c01065{width:42.690000px;}
._30_c01065{width:69.729000px;}
._1a_c01065{width:74.082000px;}
._24_c01065{width:119.853000px;}
._2d_c01065{width:177.105000px;}
._2f_c01065{width:184.032000px;}
._1d_c01065{width:217.680000px;}
._32_c01065{width:226.380000px;}
._3_c01065{width:264.498000px;}
._22_c01065{width:269.706000px;}
._26_c01065{width:282.054000px;}
._33_c01065{width:1364.238000px;}
.fc2_c01065{color:transparent;}
.fc1_c01065{color:rgb(128,128,128);}
.fc0_c01065{color:rgb(0,0,0);}
.fs7_c01065{font-size:48.000000px;}
.fs4_c01065{font-size:57.000000px;}
.fs5_c01065{font-size:63.000000px;}
.fs3_c01065{font-size:72.000000px;}
.fs2_c01065{font-size:81.000000px;}
.fs1_c01065{font-size:87.000000px;}
.fs6_c01065{font-size:90.000000px;}
.fs0_c01065{font-size:102.000000px;}
.y0_c01065{bottom:0.000000px;}
.y26_c01065{bottom:3.105000px;}
.y25_c01065{bottom:7.228371px;}
.y24_c01065{bottom:75.315000px;}
.y23_c01065{bottom:100.665000px;}
.y22_c01065{bottom:124.215000px;}
.y21_c01065{bottom:148.215000px;}
.y20_c01065{bottom:174.165000px;}
.y1f_c01065{bottom:197.565000px;}
.y1e_c01065{bottom:221.865000px;}
.y1d_c01065{bottom:246.015000px;}
.y1c_c01065{bottom:270.015000px;}
.y1b_c01065{bottom:295.065000px;}
.y1a_c01065{bottom:319.365000px;}
.y19_c01065{bottom:343.215000px;}
.y18_c01065{bottom:367.665000px;}
.y17_c01065{bottom:389.565000px;}
.y16_c01065{bottom:404.115000px;}
.y15_c01065{bottom:415.515000px;}
.y14_c01065{bottom:440.415000px;}
.y13_c01065{bottom:464.415000px;}
.y12_c01065{bottom:488.415000px;}
.y11_c01065{bottom:512.115000px;}
.y10_c01065{bottom:536.715000px;}
.yf_c01065{bottom:560.565000px;}
.ye_c01065{bottom:584.865000px;}
.yd_c01065{bottom:609.615000px;}
.yc_c01065{bottom:632.865000px;}
.yb_c01065{bottom:656.415000px;}
.ya_c01065{bottom:680.865000px;}
.y9_c01065{bottom:704.415000px;}
.y8_c01065{bottom:730.065000px;}
.y7_c01065{bottom:753.315000px;}
.y6_c01065{bottom:776.265000px;}
.y5_c01065{bottom:802.215000px;}
.y4_c01065{bottom:825.615000px;}
.y3_c01065{bottom:849.615000px;}
.y2_c01065{bottom:873.915000px;}
.y1_c01065{bottom:913.065000px;}
.h8_c01065{height:13.200074px;}
.h9_c01065{height:43.804688px;}
.h5_c01065{height:66.713379px;}
.h4_c01065{height:79.497070px;}
.h3_c01065{height:84.269531px;}
.h7_c01065{height:88.330078px;}
.h6_c01065{height:91.176000px;}
.h2_c01065{height:100.057617px;}
.h1_c01065{height:986.250000px;}
.h0_c01065{height:986.325000px;}
.w2_c01065{width:104.875500px;}
.w0_c01065{width:667.425000px;}
.w1_c01065{width:667.500000px;}
.x0_c01065{left:0.000000px;}
.x6_c01065{left:30.750000px;}
.xa_c01065{left:35.400000px;}
.x9_c01065{left:50.250000px;}
.x11_c01065{left:108.000000px;}
.x1_c01065{left:113.850000px;}
.x3_c01065{left:117.150000px;}
.x4_c01065{left:119.250000px;}
.x5_c01065{left:120.450000px;}
.x7_c01065{left:123.300000px;}
.x8_c01065{left:124.500000px;}
.xb_c01065{left:126.000000px;}
.xd_c01065{left:127.800000px;}
.xe_c01065{left:128.850000px;}
.x10_c01065{left:130.500000px;}
.x12_c01065{left:136.050000px;}
.x13_c01065{left:137.250000px;}
.xc_c01065{left:150.900000px;}
.x2_c01065{left:171.150000px;}
.xf_c01065{left:193.350000px;}
.x14_c01065{left:285.526749px;}
@media print{
.v0_c01065{vertical-align:0.000000pt;}
.ls4_c01065{letter-spacing:0.000000pt;}
.ls2_c01065{letter-spacing:1.333333pt;}
.ls3_c01065{letter-spacing:2.666667pt;}
.ls5_c01065{letter-spacing:8.000000pt;}
.ls1_c01065{letter-spacing:9.333333pt;}
.ls0_c01065{letter-spacing:15.701333pt;}
.ws0_c01065{word-spacing:-22.666667pt;}
.ws3_c01065{word-spacing:-20.210667pt;}
.ws1_c01065{word-spacing:-16.000000pt;}
.ws2_c01065{word-spacing:-15.424000pt;}
.ws4_c01065{word-spacing:0.000000pt;}
._2e_c01065{margin-left:-24.552000pt;}
._2a_c01065{margin-left:-22.269333pt;}
._1e_c01065{margin-left:-19.378667pt;}
._16_c01065{margin-left:-18.104000pt;}
._20_c01065{margin-left:-15.610667pt;}
._31_c01065{margin-left:-14.544000pt;}
._2c_c01065{margin-left:-10.962667pt;}
._a_c01065{margin-left:-9.520000pt;}
._23_c01065{margin-left:-7.952000pt;}
._9_c01065{margin-left:-6.437333pt;}
._34_c01065{margin-left:-5.485333pt;}
._1b_c01065{margin-left:-4.266667pt;}
._11_c01065{margin-left:-2.557333pt;}
._10_c01065{margin-left:-1.285333pt;}
._19_c01065{width:0.906667pt;}
._c_c01065{width:1.805333pt;}
._b_c01065{width:2.720000pt;}
._1_c01065{width:3.898667pt;}
._2_c01065{width:4.986667pt;}
._e_c01065{width:6.133333pt;}
._0_c01065{width:7.162667pt;}
._12_c01065{width:8.368000pt;}
._6_c01065{width:9.520000pt;}
._17_c01065{width:10.602667pt;}
._f_c01065{width:11.498667pt;}
._27_c01065{width:12.544000pt;}
._d_c01065{width:13.437333pt;}
._8_c01065{width:14.416000pt;}
._2b_c01065{width:15.552000pt;}
._5_c01065{width:16.773333pt;}
._7_c01065{width:17.861333pt;}
._18_c01065{width:19.434667pt;}
._29_c01065{width:20.456000pt;}
._1c_c01065{width:22.877333pt;}
._28_c01065{width:24.640000pt;}
._14_c01065{width:25.749333pt;}
._15_c01065{width:27.669333pt;}
._13_c01065{width:29.490667pt;}
._25_c01065{width:30.970667pt;}
._35_c01065{width:32.344000pt;}
._1f_c01065{width:33.781333pt;}
._4_c01065{width:35.101333pt;}
._21_c01065{width:37.946667pt;}
._30_c01065{width:61.981333pt;}
._1a_c01065{width:65.850667pt;}
._24_c01065{width:106.536000pt;}
._2d_c01065{width:157.426667pt;}
._2f_c01065{width:163.584000pt;}
._1d_c01065{width:193.493333pt;}
._32_c01065{width:201.226667pt;}
._3_c01065{width:235.109333pt;}
._22_c01065{width:239.738667pt;}
._26_c01065{width:250.714667pt;}
._33_c01065{width:1212.656000pt;}
.fs7_c01065{font-size:42.666667pt;}
.fs4_c01065{font-size:50.666667pt;}
.fs5_c01065{font-size:56.000000pt;}
.fs3_c01065{font-size:64.000000pt;}
.fs2_c01065{font-size:72.000000pt;}
.fs1_c01065{font-size:77.333333pt;}
.fs6_c01065{font-size:80.000000pt;}
.fs0_c01065{font-size:90.666667pt;}
.y0_c01065{bottom:0.000000pt;}
.y26_c01065{bottom:2.760000pt;}
.y25_c01065{bottom:6.425219pt;}
.y24_c01065{bottom:66.946667pt;}
.y23_c01065{bottom:89.480000pt;}
.y22_c01065{bottom:110.413333pt;}
.y21_c01065{bottom:131.746667pt;}
.y20_c01065{bottom:154.813333pt;}
.y1f_c01065{bottom:175.613333pt;}
.y1e_c01065{bottom:197.213333pt;}
.y1d_c01065{bottom:218.680000pt;}
.y1c_c01065{bottom:240.013333pt;}
.y1b_c01065{bottom:262.280000pt;}
.y1a_c01065{bottom:283.880000pt;}
.y19_c01065{bottom:305.080000pt;}
.y18_c01065{bottom:326.813333pt;}
.y17_c01065{bottom:346.280000pt;}
.y16_c01065{bottom:359.213333pt;}
.y15_c01065{bottom:369.346667pt;}
.y14_c01065{bottom:391.480000pt;}
.y13_c01065{bottom:412.813333pt;}
.y12_c01065{bottom:434.146667pt;}
.y11_c01065{bottom:455.213333pt;}
.y10_c01065{bottom:477.080000pt;}
.yf_c01065{bottom:498.280000pt;}
.ye_c01065{bottom:519.880000pt;}
.yd_c01065{bottom:541.880000pt;}
.yc_c01065{bottom:562.546667pt;}
.yb_c01065{bottom:583.480000pt;}
.ya_c01065{bottom:605.213333pt;}
.y9_c01065{bottom:626.146667pt;}
.y8_c01065{bottom:648.946667pt;}
.y7_c01065{bottom:669.613333pt;}
.y6_c01065{bottom:690.013333pt;}
.y5_c01065{bottom:713.080000pt;}
.y4_c01065{bottom:733.880000pt;}
.y3_c01065{bottom:755.213333pt;}
.y2_c01065{bottom:776.813333pt;}
.y1_c01065{bottom:811.613333pt;}
.h8_c01065{height:11.733399pt;}
.h9_c01065{height:38.937500pt;}
.h5_c01065{height:59.300781pt;}
.h4_c01065{height:70.664062pt;}
.h3_c01065{height:74.906250pt;}
.h7_c01065{height:78.515625pt;}
.h6_c01065{height:81.045333pt;}
.h2_c01065{height:88.940104pt;}
.h1_c01065{height:876.666667pt;}
.h0_c01065{height:876.733333pt;}
.w2_c01065{width:93.222667pt;}
.w0_c01065{width:593.266667pt;}
.w1_c01065{width:593.333333pt;}
.x0_c01065{left:0.000000pt;}
.x6_c01065{left:27.333333pt;}
.xa_c01065{left:31.466667pt;}
.x9_c01065{left:44.666667pt;}
.x11_c01065{left:96.000000pt;}
.x1_c01065{left:101.200000pt;}
.x3_c01065{left:104.133333pt;}
.x4_c01065{left:106.000000pt;}
.x5_c01065{left:107.066667pt;}
.x7_c01065{left:109.600000pt;}
.x8_c01065{left:110.666667pt;}
.xb_c01065{left:112.000000pt;}
.xd_c01065{left:113.600000pt;}
.xe_c01065{left:114.533333pt;}
.x10_c01065{left:116.000000pt;}
.x12_c01065{left:120.933333pt;}
.x13_c01065{left:122.000000pt;}
.xc_c01065{left:134.133333pt;}
.x2_c01065{left:152.133333pt;}
.xf_c01065{left:171.866667pt;}
.x14_c01065{left:253.801554pt;}
}





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

.ir_c01066:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01066{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01066;src:url('chunks/assets/font_62235c001149318d2cf90524.woff2')format("woff");}.ff1_c01066{font-family:ff1_c01066;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01066;src:url('chunks/assets/font_3b8d2690945e0d9eb4c4e9ee.woff2')format("woff");}.ff2_c01066{font-family:ff2_c01066;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01066;src:url('chunks/assets/font_e271994b6930167bc7d6999b.woff2')format("woff");}.ff3_c01066{font-family:ff3_c01066;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01066;src:url('chunks/assets/font_e4a537e5338cec2305785818.woff2')format("woff");}.ff4_c01066{font-family:ff4_c01066;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01066;src:url('chunks/assets/font_ca294af6aef6b40b12109c7e.woff2')format("woff");}.ff5_c01066{font-family:ff5_c01066;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01066;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c01066{font-family:ff6_c01066;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01066{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01066{vertical-align:0.000000px;}
.ls1_c01066{letter-spacing:-6.000000px;}
.ls0_c01066{letter-spacing:0.000000px;}
.ls2_c01066{letter-spacing:3.000000px;}
.ls3_c01066{letter-spacing:6.000000px;}
.sc__c01066{text-shadow:none;}
.sc0_c01066{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01066{-webkit-text-stroke:0px transparent;}
.sc0_c01066{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01066{word-spacing:0.000000px;}
._9_c01066{margin-left:-22.275000px;}
._1e_c01066{margin-left:-20.007000px;}
._21_c01066{margin-left:-16.290000px;}
._23_c01066{margin-left:-14.517000px;}
._19_c01066{margin-left:-12.915000px;}
._1d_c01066{margin-left:-11.898000px;}
._1_c01066{margin-left:-9.801000px;}
._1a_c01066{margin-left:-8.667000px;}
._3_c01066{margin-left:-7.623000px;}
._12_c01066{margin-left:-6.462000px;}
._8_c01066{margin-left:-4.653000px;}
._6_c01066{margin-left:-3.465000px;}
._7_c01066{margin-left:-1.881000px;}
._f_c01066{width:1.827000px;}
._0_c01066{width:2.871000px;}
._b_c01066{width:4.059000px;}
._a_c01066{width:5.346000px;}
._e_c01066{width:7.128000px;}
._d_c01066{width:8.316000px;}
._14_c01066{width:9.684000px;}
._5_c01066{width:11.484000px;}
._4_c01066{width:12.573000px;}
._11_c01066{width:14.526000px;}
._10_c01066{width:15.741000px;}
._1c_c01066{width:16.884000px;}
._13_c01066{width:18.162000px;}
._22_c01066{width:21.483000px;}
._20_c01066{width:22.536000px;}
._17_c01066{width:23.976000px;}
._16_c01066{width:26.604000px;}
._18_c01066{width:28.827000px;}
._2_c01066{width:30.591000px;}
._15_c01066{width:33.804000px;}
._1b_c01066{width:35.550000px;}
._c_c01066{width:36.945000px;}
._1f_c01066{width:120.204000px;}
._24_c01066{width:358.308000px;}
.fc2_c01066{color:transparent;}
.fc1_c01066{color:rgb(128,128,128);}
.fc0_c01066{color:rgb(0,0,0);}
.fs5_c01066{font-size:48.000000px;}
.fs3_c01066{font-size:66.000000px;}
.fs2_c01066{font-size:81.000000px;}
.fs4_c01066{font-size:87.000000px;}
.fs0_c01066{font-size:99.000000px;}
.fs1_c01066{font-size:132.000000px;}
.y0_c01066{bottom:0.000000px;}
.y27_c01066{bottom:3.105000px;}
.y26_c01066{bottom:7.228355px;}
.y24_c01066{bottom:63.435000px;}
.y23_c01066{bottom:87.285000px;}
.y22_c01066{bottom:112.335000px;}
.y21_c01066{bottom:136.035000px;}
.y20_c01066{bottom:161.235000px;}
.y1f_c01066{bottom:186.585000px;}
.y1e_c01066{bottom:209.835000px;}
.y1d_c01066{bottom:234.435000px;}
.y1c_c01066{bottom:258.735000px;}
.y1b_c01066{bottom:283.185000px;}
.y1a_c01066{bottom:307.035000px;}
.y19_c01066{bottom:331.035000px;}
.y18_c01066{bottom:354.735000px;}
.y17_c01066{bottom:379.035000px;}
.y16_c01066{bottom:403.635000px;}
.y15_c01066{bottom:427.185000px;}
.y14_c01066{bottom:451.185000px;}
.y13_c01066{bottom:475.185000px;}
.y25_c01066{bottom:480.585000px;}
.y12_c01066{bottom:499.785000px;}
.y11_c01066{bottom:524.085000px;}
.y10_c01066{bottom:547.785000px;}
.yf_c01066{bottom:571.635000px;}
.ye_c01066{bottom:595.935000px;}
.yd_c01066{bottom:619.335000px;}
.yc_c01066{bottom:642.585000px;}
.yb_c01066{bottom:666.885000px;}
.ya_c01066{bottom:690.885000px;}
.y9_c01066{bottom:715.185000px;}
.y8_c01066{bottom:739.335000px;}
.y7_c01066{bottom:763.635000px;}
.y6_c01066{bottom:788.085000px;}
.y5_c01066{bottom:811.935000px;}
.y4_c01066{bottom:836.535000px;}
.y3_c01066{bottom:859.635000px;}
.y2_c01066{bottom:884.235000px;}
.y1_c01066{bottom:919.635000px;}
.h6_c01066{height:13.200074px;}
.h7_c01066{height:43.804688px;}
.h3_c01066{height:79.497070px;}
.h4_c01066{height:87.679688px;}
.h5_c01066{height:91.176000px;}
.h2_c01066{height:167.126953px;}
.h0_c01066{height:977.925000px;}
.h1_c01066{height:978.000000px;}
.w2_c01066{width:104.875500px;}
.w0_c01066{width:665.850000px;}
.w1_c01066{width:666.000000px;}
.x0_c01066{left:0.000000px;}
.x5_c01066{left:38.400000px;}
.x4_c01066{left:50.850000px;}
.x2_c01066{left:52.350000px;}
.x3_c01066{left:53.550000px;}
.x1_c01066{left:104.550000px;}
.x8_c01066{left:284.739258px;}
.x6_c01066{left:351.600000px;}
.x7_c01066{left:626.400000px;}
@media print{
.v0_c01066{vertical-align:0.000000pt;}
.ls1_c01066{letter-spacing:-5.333333pt;}
.ls0_c01066{letter-spacing:0.000000pt;}
.ls2_c01066{letter-spacing:2.666667pt;}
.ls3_c01066{letter-spacing:5.333333pt;}
.ws0_c01066{word-spacing:0.000000pt;}
._9_c01066{margin-left:-19.800000pt;}
._1e_c01066{margin-left:-17.784000pt;}
._21_c01066{margin-left:-14.480000pt;}
._23_c01066{margin-left:-12.904000pt;}
._19_c01066{margin-left:-11.480000pt;}
._1d_c01066{margin-left:-10.576000pt;}
._1_c01066{margin-left:-8.712000pt;}
._1a_c01066{margin-left:-7.704000pt;}
._3_c01066{margin-left:-6.776000pt;}
._12_c01066{margin-left:-5.744000pt;}
._8_c01066{margin-left:-4.136000pt;}
._6_c01066{margin-left:-3.080000pt;}
._7_c01066{margin-left:-1.672000pt;}
._f_c01066{width:1.624000pt;}
._0_c01066{width:2.552000pt;}
._b_c01066{width:3.608000pt;}
._a_c01066{width:4.752000pt;}
._e_c01066{width:6.336000pt;}
._d_c01066{width:7.392000pt;}
._14_c01066{width:8.608000pt;}
._5_c01066{width:10.208000pt;}
._4_c01066{width:11.176000pt;}
._11_c01066{width:12.912000pt;}
._10_c01066{width:13.992000pt;}
._1c_c01066{width:15.008000pt;}
._13_c01066{width:16.144000pt;}
._22_c01066{width:19.096000pt;}
._20_c01066{width:20.032000pt;}
._17_c01066{width:21.312000pt;}
._16_c01066{width:23.648000pt;}
._18_c01066{width:25.624000pt;}
._2_c01066{width:27.192000pt;}
._15_c01066{width:30.048000pt;}
._1b_c01066{width:31.600000pt;}
._c_c01066{width:32.840000pt;}
._1f_c01066{width:106.848000pt;}
._24_c01066{width:318.496000pt;}
.fs5_c01066{font-size:42.666667pt;}
.fs3_c01066{font-size:58.666667pt;}
.fs2_c01066{font-size:72.000000pt;}
.fs4_c01066{font-size:77.333333pt;}
.fs0_c01066{font-size:88.000000pt;}
.fs1_c01066{font-size:117.333333pt;}
.y0_c01066{bottom:0.000000pt;}
.y27_c01066{bottom:2.760000pt;}
.y26_c01066{bottom:6.425204pt;}
.y24_c01066{bottom:56.386667pt;}
.y23_c01066{bottom:77.586667pt;}
.y22_c01066{bottom:99.853333pt;}
.y21_c01066{bottom:120.920000pt;}
.y20_c01066{bottom:143.320000pt;}
.y1f_c01066{bottom:165.853333pt;}
.y1e_c01066{bottom:186.520000pt;}
.y1d_c01066{bottom:208.386667pt;}
.y1c_c01066{bottom:229.986667pt;}
.y1b_c01066{bottom:251.720000pt;}
.y1a_c01066{bottom:272.920000pt;}
.y19_c01066{bottom:294.253333pt;}
.y18_c01066{bottom:315.320000pt;}
.y17_c01066{bottom:336.920000pt;}
.y16_c01066{bottom:358.786667pt;}
.y15_c01066{bottom:379.720000pt;}
.y14_c01066{bottom:401.053333pt;}
.y13_c01066{bottom:422.386667pt;}
.y25_c01066{bottom:427.186667pt;}
.y12_c01066{bottom:444.253333pt;}
.y11_c01066{bottom:465.853333pt;}
.y10_c01066{bottom:486.920000pt;}
.yf_c01066{bottom:508.120000pt;}
.ye_c01066{bottom:529.720000pt;}
.yd_c01066{bottom:550.520000pt;}
.yc_c01066{bottom:571.186667pt;}
.yb_c01066{bottom:592.786667pt;}
.ya_c01066{bottom:614.120000pt;}
.y9_c01066{bottom:635.720000pt;}
.y8_c01066{bottom:657.186667pt;}
.y7_c01066{bottom:678.786667pt;}
.y6_c01066{bottom:700.520000pt;}
.y5_c01066{bottom:721.720000pt;}
.y4_c01066{bottom:743.586667pt;}
.y3_c01066{bottom:764.120000pt;}
.y2_c01066{bottom:785.986667pt;}
.y1_c01066{bottom:817.453333pt;}
.h6_c01066{height:11.733399pt;}
.h7_c01066{height:38.937500pt;}
.h3_c01066{height:70.664062pt;}
.h4_c01066{height:77.937500pt;}
.h5_c01066{height:81.045333pt;}
.h2_c01066{height:148.557292pt;}
.h0_c01066{height:869.266667pt;}
.h1_c01066{height:869.333333pt;}
.w2_c01066{width:93.222667pt;}
.w0_c01066{width:591.866667pt;}
.w1_c01066{width:592.000000pt;}
.x0_c01066{left:0.000000pt;}
.x5_c01066{left:34.133333pt;}
.x4_c01066{left:45.200000pt;}
.x2_c01066{left:46.533333pt;}
.x3_c01066{left:47.600000pt;}
.x1_c01066{left:92.933333pt;}
.x8_c01066{left:253.101563pt;}
.x6_c01066{left:312.533333pt;}
.x7_c01066{left:556.800000pt;}
}





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

.ir_c01067:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01067{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01067;src:url('chunks/assets/font_056d639d39b7fd2a2e448d0c.woff2')format("woff");}.ff1_c01067{font-family:ff1_c01067;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01067;src:url('chunks/assets/font_ea16fe1adb4f7d2728b07822.woff2')format("woff");}.ff2_c01067{font-family:ff2_c01067;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01067;src:url('chunks/assets/font_8df9e74687ae231b518bee37.woff2')format("woff");}.ff3_c01067{font-family:ff3_c01067;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01067;src:url('chunks/assets/font_10200cc7b6e3157ac19006a0.woff2')format("woff");}.ff4_c01067{font-family:ff4_c01067;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01067;src:url('chunks/assets/font_b3a551290881c9868d53738a.woff2')format("woff");}.ff5_c01067{font-family:ff5_c01067;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01067;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c01067{font-family:ff6_c01067;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01067{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m1_c01067{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01067{vertical-align:0.000000px;}
.v1_c01067{vertical-align:13.200000px;}
.ls2_c01067{letter-spacing:0.000000px;}
.ls0_c01067{letter-spacing:8.220000px;}
.ls1_c01067{letter-spacing:16.014000px;}
.sc__c01067{text-shadow:none;}
.sc0_c01067{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01067{-webkit-text-stroke:0px transparent;}
.sc0_c01067{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01067{word-spacing:-96.174000px;}
.ws1_c01067{word-spacing:-14.250000px;}
.ws3_c01067{word-spacing:-13.566000px;}
.ws2_c01067{word-spacing:-13.167000px;}
.ws6_c01067{word-spacing:0.000000px;}
.ws5_c01067{word-spacing:1.140000px;}
.ws4_c01067{word-spacing:6.006000px;}
._37_c01067{margin-left:-34.884000px;}
._1e_c01067{margin-left:-33.867000px;}
._1b_c01067{margin-left:-32.175000px;}
._1c_c01067{margin-left:-30.636000px;}
._19_c01067{margin-left:-27.495000px;}
._18_c01067{margin-left:-26.307000px;}
._13_c01067{margin-left:-24.687000px;}
._14_c01067{margin-left:-22.932000px;}
._15_c01067{margin-left:-20.358000px;}
._1a_c01067{margin-left:-19.323000px;}
._17_c01067{margin-left:-18.018000px;}
._f_c01067{margin-left:-16.731000px;}
._1d_c01067{margin-left:-15.561000px;}
._2_c01067{margin-left:-14.256000px;}
._16_c01067{margin-left:-12.870000px;}
._11_c01067{margin-left:-11.250000px;}
._e_c01067{margin-left:-10.152000px;}
._6_c01067{margin-left:-8.640000px;}
._8_c01067{margin-left:-7.344000px;}
._9_c01067{margin-left:-5.832000px;}
._4_c01067{margin-left:-4.428000px;}
._0_c01067{margin-left:-3.348000px;}
._1_c01067{margin-left:-1.836000px;}
._5_c01067{width:1.296000px;}
._a_c01067{width:2.700000px;}
._3_c01067{width:3.780000px;}
._2d_c01067{width:4.809000px;}
._b_c01067{width:5.832000px;}
._d_c01067{width:7.668000px;}
._25_c01067{width:8.748000px;}
._22_c01067{width:9.918000px;}
._26_c01067{width:10.941000px;}
._21_c01067{width:12.312000px;}
._c_c01067{width:13.932000px;}
._23_c01067{width:15.705000px;}
._10_c01067{width:16.896000px;}
._7_c01067{width:17.928000px;}
._27_c01067{width:19.212000px;}
._2a_c01067{width:20.961000px;}
._2c_c01067{width:21.993000px;}
._28_c01067{width:23.484000px;}
._2b_c01067{width:24.504000px;}
._24_c01067{width:26.583000px;}
._29_c01067{width:27.777000px;}
._33_c01067{width:28.839000px;}
._12_c01067{width:30.750000px;}
._30_c01067{width:32.073000px;}
._32_c01067{width:33.516000px;}
._31_c01067{width:37.995000px;}
._35_c01067{width:41.088000px;}
._2e_c01067{width:42.264000px;}
._2f_c01067{width:46.092000px;}
._34_c01067{width:48.090000px;}
._38_c01067{width:199.908000px;}
._1f_c01067{width:285.831000px;}
._36_c01067{width:289.584000px;}
._20_c01067{width:300.141000px;}
._39_c01067{width:1301.085000px;}
.fc2_c01067{color:transparent;}
.fc1_c01067{color:rgb(128,128,128);}
.fc0_c01067{color:rgb(0,0,0);}
.fs6_c01067{font-size:42.000000px;}
.fs7_c01067{font-size:48.000000px;}
.fs5_c01067{font-size:57.000000px;}
.fs4_c01067{font-size:60.000000px;}
.fs3_c01067{font-size:75.000000px;}
.fs1_c01067{font-size:90.000000px;}
.fs0_c01067{font-size:108.000000px;}
.fs2_c01067{font-size:117.000000px;}
.y0_c01067{bottom:0.000000px;}
.y25_c01067{bottom:3.105000px;}
.y24_c01067{bottom:7.228371px;}
.y23_c01067{bottom:55.665000px;}
.y22_c01067{bottom:79.365000px;}
.y21_c01067{bottom:106.065000px;}
.y20_c01067{bottom:128.715000px;}
.y1f_c01067{bottom:153.615000px;}
.y1e_c01067{bottom:177.615000px;}
.y1d_c01067{bottom:201.465000px;}
.y1c_c01067{bottom:225.915000px;}
.y1b_c01067{bottom:250.215000px;}
.y1a_c01067{bottom:275.115000px;}
.y19_c01067{bottom:298.815000px;}
.y18_c01067{bottom:323.415000px;}
.y17_c01067{bottom:347.415000px;}
.y16_c01067{bottom:372.615000px;}
.y15_c01067{bottom:396.915000px;}
.y14_c01067{bottom:420.915000px;}
.y13_c01067{bottom:444.165000px;}
.y12_c01067{bottom:468.915000px;}
.y11_c01067{bottom:492.465000px;}
.y10_c01067{bottom:518.715000px;}
.yf_c01067{bottom:541.815000px;}
.ye_c01067{bottom:564.765000px;}
.yd_c01067{bottom:588.615000px;}
.yc_c01067{bottom:612.615000px;}
.yb_c01067{bottom:636.915000px;}
.ya_c01067{bottom:661.515000px;}
.y9_c01067{bottom:682.515000px;}
.y8_c01067{bottom:710.115000px;}
.y7_c01067{bottom:734.865000px;}
.y6_c01067{bottom:757.815000px;}
.y5_c01067{bottom:781.665000px;}
.y4_c01067{bottom:805.665000px;}
.y3_c01067{bottom:830.265000px;}
.y2_c01067{bottom:854.565000px;}
.y1_c01067{bottom:878.265000px;}
.h7_c01067{height:13.200074px;}
.h8_c01067{height:43.804688px;}
.h6_c01067{height:57.445312px;}
.h5_c01067{height:70.645312px;}
.h3_c01067{height:90.703125px;}
.h2_c01067{height:108.843750px;}
.h4_c01067{height:136.937988px;}
.h1_c01067{height:986.250000px;}
.h0_c01067{height:986.325000px;}
.w2_c01067{width:104.875500px;}
.w0_c01067{width:667.425000px;}
.w1_c01067{width:667.500000px;}
.x0_c01067{left:0.000000px;}
.xd_c01067{left:20.550000px;}
.x6_c01067{left:26.700000px;}
.x8_c01067{left:47.550000px;}
.x15_c01067{left:96.900000px;}
.x14_c01067{left:99.450000px;}
.x7_c01067{left:100.800000px;}
.x13_c01067{left:102.600000px;}
.x12_c01067{left:103.650000px;}
.x11_c01067{left:105.900000px;}
.x10_c01067{left:107.250000px;}
.xe_c01067{left:110.250000px;}
.xc_c01067{left:111.750000px;}
.xa_c01067{left:113.700000px;}
.x5_c01067{left:114.750000px;}
.x4_c01067{left:116.400000px;}
.x1_c01067{left:117.750000px;}
.xb_c01067{left:120.600000px;}
.x16_c01067{left:175.050000px;}
.xf_c01067{left:192.300000px;}
.x2_c01067{left:198.750000px;}
.x3_c01067{left:206.100000px;}
.x17_c01067{left:285.526749px;}
.x9_c01067{left:594.600000px;}
@media print{
.v0_c01067{vertical-align:0.000000pt;}
.v1_c01067{vertical-align:11.733333pt;}
.ls2_c01067{letter-spacing:0.000000pt;}
.ls0_c01067{letter-spacing:7.306667pt;}
.ls1_c01067{letter-spacing:14.234667pt;}
.ws0_c01067{word-spacing:-85.488000pt;}
.ws1_c01067{word-spacing:-12.666667pt;}
.ws3_c01067{word-spacing:-12.058667pt;}
.ws2_c01067{word-spacing:-11.704000pt;}
.ws6_c01067{word-spacing:0.000000pt;}
.ws5_c01067{word-spacing:1.013333pt;}
.ws4_c01067{word-spacing:5.338667pt;}
._37_c01067{margin-left:-31.008000pt;}
._1e_c01067{margin-left:-30.104000pt;}
._1b_c01067{margin-left:-28.600000pt;}
._1c_c01067{margin-left:-27.232000pt;}
._19_c01067{margin-left:-24.440000pt;}
._18_c01067{margin-left:-23.384000pt;}
._13_c01067{margin-left:-21.944000pt;}
._14_c01067{margin-left:-20.384000pt;}
._15_c01067{margin-left:-18.096000pt;}
._1a_c01067{margin-left:-17.176000pt;}
._17_c01067{margin-left:-16.016000pt;}
._f_c01067{margin-left:-14.872000pt;}
._1d_c01067{margin-left:-13.832000pt;}
._2_c01067{margin-left:-12.672000pt;}
._16_c01067{margin-left:-11.440000pt;}
._11_c01067{margin-left:-10.000000pt;}
._e_c01067{margin-left:-9.024000pt;}
._6_c01067{margin-left:-7.680000pt;}
._8_c01067{margin-left:-6.528000pt;}
._9_c01067{margin-left:-5.184000pt;}
._4_c01067{margin-left:-3.936000pt;}
._0_c01067{margin-left:-2.976000pt;}
._1_c01067{margin-left:-1.632000pt;}
._5_c01067{width:1.152000pt;}
._a_c01067{width:2.400000pt;}
._3_c01067{width:3.360000pt;}
._2d_c01067{width:4.274667pt;}
._b_c01067{width:5.184000pt;}
._d_c01067{width:6.816000pt;}
._25_c01067{width:7.776000pt;}
._22_c01067{width:8.816000pt;}
._26_c01067{width:9.725333pt;}
._21_c01067{width:10.944000pt;}
._c_c01067{width:12.384000pt;}
._23_c01067{width:13.960000pt;}
._10_c01067{width:15.018667pt;}
._7_c01067{width:15.936000pt;}
._27_c01067{width:17.077333pt;}
._2a_c01067{width:18.632000pt;}
._2c_c01067{width:19.549333pt;}
._28_c01067{width:20.874667pt;}
._2b_c01067{width:21.781333pt;}
._24_c01067{width:23.629333pt;}
._29_c01067{width:24.690667pt;}
._33_c01067{width:25.634667pt;}
._12_c01067{width:27.333333pt;}
._30_c01067{width:28.509333pt;}
._32_c01067{width:29.792000pt;}
._31_c01067{width:33.773333pt;}
._35_c01067{width:36.522667pt;}
._2e_c01067{width:37.568000pt;}
._2f_c01067{width:40.970667pt;}
._34_c01067{width:42.746667pt;}
._38_c01067{width:177.696000pt;}
._1f_c01067{width:254.072000pt;}
._36_c01067{width:257.408000pt;}
._20_c01067{width:266.792000pt;}
._39_c01067{width:1156.520000pt;}
.fs6_c01067{font-size:37.333333pt;}
.fs7_c01067{font-size:42.666667pt;}
.fs5_c01067{font-size:50.666667pt;}
.fs4_c01067{font-size:53.333333pt;}
.fs3_c01067{font-size:66.666667pt;}
.fs1_c01067{font-size:80.000000pt;}
.fs0_c01067{font-size:96.000000pt;}
.fs2_c01067{font-size:104.000000pt;}
.y0_c01067{bottom:0.000000pt;}
.y25_c01067{bottom:2.760000pt;}
.y24_c01067{bottom:6.425219pt;}
.y23_c01067{bottom:49.480000pt;}
.y22_c01067{bottom:70.546667pt;}
.y21_c01067{bottom:94.280000pt;}
.y20_c01067{bottom:114.413333pt;}
.y1f_c01067{bottom:136.546667pt;}
.y1e_c01067{bottom:157.880000pt;}
.y1d_c01067{bottom:179.080000pt;}
.y1c_c01067{bottom:200.813333pt;}
.y1b_c01067{bottom:222.413333pt;}
.y1a_c01067{bottom:244.546667pt;}
.y19_c01067{bottom:265.613333pt;}
.y18_c01067{bottom:287.480000pt;}
.y17_c01067{bottom:308.813333pt;}
.y16_c01067{bottom:331.213333pt;}
.y15_c01067{bottom:352.813333pt;}
.y14_c01067{bottom:374.146667pt;}
.y13_c01067{bottom:394.813333pt;}
.y12_c01067{bottom:416.813333pt;}
.y11_c01067{bottom:437.746667pt;}
.y10_c01067{bottom:461.080000pt;}
.yf_c01067{bottom:481.613333pt;}
.ye_c01067{bottom:502.013333pt;}
.yd_c01067{bottom:523.213333pt;}
.yc_c01067{bottom:544.546667pt;}
.yb_c01067{bottom:566.146667pt;}
.ya_c01067{bottom:588.013333pt;}
.y9_c01067{bottom:606.680000pt;}
.y8_c01067{bottom:631.213333pt;}
.y7_c01067{bottom:653.213333pt;}
.y6_c01067{bottom:673.613333pt;}
.y5_c01067{bottom:694.813333pt;}
.y4_c01067{bottom:716.146667pt;}
.y3_c01067{bottom:738.013333pt;}
.y2_c01067{bottom:759.613333pt;}
.y1_c01067{bottom:780.680000pt;}
.h7_c01067{height:11.733399pt;}
.h8_c01067{height:38.937500pt;}
.h6_c01067{height:51.062500pt;}
.h5_c01067{height:62.795833pt;}
.h3_c01067{height:80.625000pt;}
.h2_c01067{height:96.750000pt;}
.h4_c01067{height:121.722656pt;}
.h1_c01067{height:876.666667pt;}
.h0_c01067{height:876.733333pt;}
.w2_c01067{width:93.222667pt;}
.w0_c01067{width:593.266667pt;}
.w1_c01067{width:593.333333pt;}
.x0_c01067{left:0.000000pt;}
.xd_c01067{left:18.266667pt;}
.x6_c01067{left:23.733333pt;}
.x8_c01067{left:42.266667pt;}
.x15_c01067{left:86.133333pt;}
.x14_c01067{left:88.400000pt;}
.x7_c01067{left:89.600000pt;}
.x13_c01067{left:91.200000pt;}
.x12_c01067{left:92.133333pt;}
.x11_c01067{left:94.133333pt;}
.x10_c01067{left:95.333333pt;}
.xe_c01067{left:98.000000pt;}
.xc_c01067{left:99.333333pt;}
.xa_c01067{left:101.066667pt;}
.x5_c01067{left:102.000000pt;}
.x4_c01067{left:103.466667pt;}
.x1_c01067{left:104.666667pt;}
.xb_c01067{left:107.200000pt;}
.x16_c01067{left:155.600000pt;}
.xf_c01067{left:170.933333pt;}
.x2_c01067{left:176.666667pt;}
.x3_c01067{left:183.200000pt;}
.x17_c01067{left:253.801554pt;}
.x9_c01067{left:528.533333pt;}
}





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

.ir_c01068:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01068{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01068;src:url('chunks/assets/font_1ed6b0f7715c4cae20b56e44.woff2')format("woff");}.ff1_c01068{font-family:ff1_c01068;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01068;src:url('chunks/assets/font_b64b654397d19cab3e95c7cd.woff2')format("woff");}.ff2_c01068{font-family:ff2_c01068;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01068;src:url('chunks/assets/font_c6d7e6a006cf0c9d91ac3f35.woff2')format("woff");}.ff3_c01068{font-family:ff3_c01068;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01068;src:url('chunks/assets/font_a306964b9beeb38b7e42b907.woff2')format("woff");}.ff4_c01068{font-family:ff4_c01068;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01068;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c01068{font-family:ff5_c01068;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01068{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m1_c01068{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01068{vertical-align:0.000000px;}
.ls0_c01068{letter-spacing:0.000000px;}
.ls3_c01068{letter-spacing:3.000000px;}
.ls2_c01068{letter-spacing:6.000000px;}
.ls1_c01068{letter-spacing:9.000000px;}
.sc__c01068{text-shadow:none;}
.sc0_c01068{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01068{-webkit-text-stroke:0px transparent;}
.sc0_c01068{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01068{word-spacing:-34.500000px;}
.ws1_c01068{word-spacing:0.000000px;}
._13_c01068{margin-left:-26.784000px;}
._21_c01068{margin-left:-24.492000px;}
._1a_c01068{margin-left:-20.628000px;}
._20_c01068{margin-left:-18.414000px;}
._11_c01068{margin-left:-14.796000px;}
._15_c01068{margin-left:-12.312000px;}
._10_c01068{margin-left:-10.368000px;}
._c_c01068{margin-left:-8.424000px;}
._d_c01068{margin-left:-6.480000px;}
._9_c01068{margin-left:-4.860000px;}
._5_c01068{margin-left:-3.132000px;}
._0_c01068{margin-left:-1.080000px;}
._2_c01068{width:1.188000px;}
._7_c01068{width:2.700000px;}
._e_c01068{width:4.536000px;}
._4_c01068{width:5.940000px;}
._12_c01068{width:7.020000px;}
._6_c01068{width:10.152000px;}
._3_c01068{width:12.528000px;}
._a_c01068{width:14.796000px;}
._17_c01068{width:17.172000px;}
._8_c01068{width:21.600000px;}
._1f_c01068{width:23.904000px;}
._1_c01068{width:28.512000px;}
._b_c01068{width:30.132000px;}
._1d_c01068{width:33.240000px;}
._22_c01068{width:38.508000px;}
._f_c01068{width:42.984000px;}
._1c_c01068{width:57.348000px;}
._16_c01068{width:63.612000px;}
._14_c01068{width:66.420000px;}
._1b_c01068{width:97.200000px;}
._18_c01068{width:195.372000px;}
._19_c01068{width:249.264000px;}
._1e_c01068{width:308.100000px;}
.fc2_c01068{color:transparent;}
.fc1_c01068{color:rgb(128,128,128);}
.fc0_c01068{color:rgb(0,0,0);}
.fs8_c01068{font-size:48.000000px;}
.fs4_c01068{font-size:54.000000px;}
.fs6_c01068{font-size:60.000000px;}
.fs3_c01068{font-size:72.000000px;}
.fs7_c01068{font-size:78.000000px;}
.fs5_c01068{font-size:81.000000px;}
.fs1_c01068{font-size:84.000000px;}
.fs2_c01068{font-size:102.000000px;}
.fs0_c01068{font-size:108.000000px;}
.y0_c01068{bottom:0.000000px;}
.y12_c01068{bottom:3.105000px;}
.y11_c01068{bottom:7.228369px;}
.y10_c01068{bottom:85.770000px;}
.yf_c01068{bottom:309.420000px;}
.ye_c01068{bottom:316.470000px;}
.yd_c01068{bottom:333.120000px;}
.yc_c01068{bottom:410.970000px;}
.yb_c01068{bottom:477.870000px;}
.ya_c01068{bottom:592.320000px;}
.y9_c01068{bottom:686.070000px;}
.y8_c01068{bottom:711.120000px;}
.y7_c01068{bottom:735.420000px;}
.y6_c01068{bottom:760.620000px;}
.y5_c01068{bottom:783.720000px;}
.y4_c01068{bottom:806.670000px;}
.y3_c01068{bottom:832.170000px;}
.y2_c01068{bottom:855.120000px;}
.y1_c01068{bottom:879.120000px;}
.h7_c01068{height:13.200073px;}
.h8_c01068{height:43.804688px;}
.h4_c01068{height:68.370117px;}
.h5_c01068{height:79.497070px;}
.h3_c01068{height:84.269531px;}
.h6_c01068{height:98.756836px;}
.h2_c01068{height:102.796875px;}
.h1_c01068{height:108.843750px;}
.h0_c01068{height:975.750000px;}
.w2_c01068{width:104.875500px;}
.w0_c01068{width:664.200000px;}
.w1_c01068{width:664.500000px;}
.x0_c01068{left:0.000000px;}
.x4_c01068{left:55.950000px;}
.x3_c01068{left:59.700000px;}
.x2_c01068{left:60.750000px;}
.x1_c01068{left:63.450000px;}
.x9_c01068{left:112.350000px;}
.x5_c01068{left:115.350000px;}
.xa_c01068{left:125.250000px;}
.x6_c01068{left:139.650000px;}
.x7_c01068{left:253.050000px;}
.xb_c01068{left:276.300000px;}
.xd_c01068{left:283.914230px;}
.xc_c01068{left:306.750000px;}
.x8_c01068{left:331.350000px;}
@media print{
.v0_c01068{vertical-align:0.000000pt;}
.ls0_c01068{letter-spacing:0.000000pt;}
.ls3_c01068{letter-spacing:2.666667pt;}
.ls2_c01068{letter-spacing:5.333333pt;}
.ls1_c01068{letter-spacing:8.000000pt;}
.ws0_c01068{word-spacing:-30.666667pt;}
.ws1_c01068{word-spacing:0.000000pt;}
._13_c01068{margin-left:-23.808000pt;}
._21_c01068{margin-left:-21.770667pt;}
._1a_c01068{margin-left:-18.336000pt;}
._20_c01068{margin-left:-16.368000pt;}
._11_c01068{margin-left:-13.152000pt;}
._15_c01068{margin-left:-10.944000pt;}
._10_c01068{margin-left:-9.216000pt;}
._c_c01068{margin-left:-7.488000pt;}
._d_c01068{margin-left:-5.760000pt;}
._9_c01068{margin-left:-4.320000pt;}
._5_c01068{margin-left:-2.784000pt;}
._0_c01068{margin-left:-0.960000pt;}
._2_c01068{width:1.056000pt;}
._7_c01068{width:2.400000pt;}
._e_c01068{width:4.032000pt;}
._4_c01068{width:5.280000pt;}
._12_c01068{width:6.240000pt;}
._6_c01068{width:9.024000pt;}
._3_c01068{width:11.136000pt;}
._a_c01068{width:13.152000pt;}
._17_c01068{width:15.264000pt;}
._8_c01068{width:19.200000pt;}
._1f_c01068{width:21.248000pt;}
._1_c01068{width:25.344000pt;}
._b_c01068{width:26.784000pt;}
._1d_c01068{width:29.546667pt;}
._22_c01068{width:34.229333pt;}
._f_c01068{width:38.208000pt;}
._1c_c01068{width:50.976000pt;}
._16_c01068{width:56.544000pt;}
._14_c01068{width:59.040000pt;}
._1b_c01068{width:86.400000pt;}
._18_c01068{width:173.664000pt;}
._19_c01068{width:221.568000pt;}
._1e_c01068{width:273.866667pt;}
.fs8_c01068{font-size:42.666667pt;}
.fs4_c01068{font-size:48.000000pt;}
.fs6_c01068{font-size:53.333333pt;}
.fs3_c01068{font-size:64.000000pt;}
.fs7_c01068{font-size:69.333333pt;}
.fs5_c01068{font-size:72.000000pt;}
.fs1_c01068{font-size:74.666667pt;}
.fs2_c01068{font-size:90.666667pt;}
.fs0_c01068{font-size:96.000000pt;}
.y0_c01068{bottom:0.000000pt;}
.y12_c01068{bottom:2.760000pt;}
.y11_c01068{bottom:6.425217pt;}
.y10_c01068{bottom:76.240000pt;}
.yf_c01068{bottom:275.040000pt;}
.ye_c01068{bottom:281.306667pt;}
.yd_c01068{bottom:296.106667pt;}
.yc_c01068{bottom:365.306667pt;}
.yb_c01068{bottom:424.773333pt;}
.ya_c01068{bottom:526.506667pt;}
.y9_c01068{bottom:609.840000pt;}
.y8_c01068{bottom:632.106667pt;}
.y7_c01068{bottom:653.706667pt;}
.y6_c01068{bottom:676.106667pt;}
.y5_c01068{bottom:696.640000pt;}
.y4_c01068{bottom:717.040000pt;}
.y3_c01068{bottom:739.706667pt;}
.y2_c01068{bottom:760.106667pt;}
.y1_c01068{bottom:781.440000pt;}
.h7_c01068{height:11.733399pt;}
.h8_c01068{height:38.937500pt;}
.h4_c01068{height:60.773438pt;}
.h5_c01068{height:70.664062pt;}
.h3_c01068{height:74.906250pt;}
.h6_c01068{height:87.783854pt;}
.h2_c01068{height:91.375000pt;}
.h1_c01068{height:96.750000pt;}
.h0_c01068{height:867.333333pt;}
.w2_c01068{width:93.222667pt;}
.w0_c01068{width:590.400000pt;}
.w1_c01068{width:590.666667pt;}
.x0_c01068{left:0.000000pt;}
.x4_c01068{left:49.733333pt;}
.x3_c01068{left:53.066667pt;}
.x2_c01068{left:54.000000pt;}
.x1_c01068{left:56.400000pt;}
.x9_c01068{left:99.866667pt;}
.x5_c01068{left:102.533333pt;}
.xa_c01068{left:111.333333pt;}
.x6_c01068{left:124.133333pt;}
.x7_c01068{left:224.933333pt;}
.xb_c01068{left:245.600000pt;}
.xd_c01068{left:252.368205pt;}
.xc_c01068{left:272.666667pt;}
.x8_c01068{left:294.533333pt;}
}





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

.ir_c01069:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01069{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01069;src:url('chunks/assets/font_5512d7933c41bdf2e45ead45.woff2')format("woff");}.ff1_c01069{font-family:ff1_c01069;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01069;src:url('chunks/assets/font_bcc8fd80d91bc0751524bb3a.woff2')format("woff");}.ff2_c01069{font-family:ff2_c01069;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01069;src:url('chunks/assets/font_9617c901e253b538ff0b0bbe.woff2')format("woff");}.ff3_c01069{font-family:ff3_c01069;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01069;src:url('chunks/assets/font_1240950635c56c62d4a24795.woff2')format("woff");}.ff4_c01069{font-family:ff4_c01069;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01069;src:url('chunks/assets/font_800fa0cd07f7e93e1d5589dd.woff2')format("woff");}.ff5_c01069{font-family:ff5_c01069;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01069;src:url('chunks/assets/font_5ffd0df28121f27d542806c9.woff2')format("woff");}.ff6_c01069{font-family:ff6_c01069;line-height:1.437000;font-style:normal;font-weight: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_c01069;src:url('chunks/assets/font_65d07f7991e7d048c33ec090.woff2')format("woff");}.ff7_c01069{font-family:ff7_c01069;line-height:1.437000;font-style:normal;font-weight: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_c01069;src:url('chunks/assets/font_653ee0ef91dbe10fcaf79d46.woff2')format("woff");}.ff8_c01069{font-family:ff8_c01069;line-height:1.284180;font-style:normal;font-weight: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_c01069;src:url('chunks/assets/font_d82ee688737e6ebd19143d7c.woff2')format("woff");}.ff9_c01069{font-family:ff9_c01069;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c01069;src:url('chunks/assets/font_e888c666c65bdeff74dce88c.woff2')format("woff");}.ffa_c01069{font-family:ffa_c01069;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c01069;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ffb_c01069{font-family:ffb_c01069;line-height:1.219238;font-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_c01069{transform:matrix(0.025000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.025000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.025000,0.000000,0.000000,0.250000,0,0);}
.m0_c01069{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01069{vertical-align:0.000000px;}
.v1_c01069{vertical-align:86.400000px;}
.ls4_c01069{letter-spacing:-9.000000px;}
.ls7_c01069{letter-spacing:-3.000000px;}
.ls3_c01069{letter-spacing:0.000000px;}
.ls8_c01069{letter-spacing:3.000000px;}
.ls2_c01069{letter-spacing:6.000000px;}
.ls1_c01069{letter-spacing:10.506000px;}
.ls6_c01069{letter-spacing:12.000000px;}
.ls0_c01069{letter-spacing:12.816000px;}
.ls5_c01069{letter-spacing:54.000000px;}
.sc__c01069{text-shadow:none;}
.sc0_c01069{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01069{-webkit-text-stroke:0px transparent;}
.sc0_c01069{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c01069{word-spacing:-20.250000px;}
.ws2_c01069{word-spacing:-19.500000px;}
.ws3_c01069{word-spacing:-17.352000px;}
.ws4_c01069{word-spacing:-13.500000px;}
.ws1_c01069{word-spacing:-10.281600px;}
.ws0_c01069{word-spacing:-4.374000px;}
.ws6_c01069{word-spacing:0.000000px;}
._19_c01069{margin-left:-32.400000px;}
._c_c01069{margin-left:-31.104000px;}
._14_c01069{margin-left:-30.099000px;}
._4_c01069{margin-left:-24.300000px;}
._24_c01069{margin-left:-21.660000px;}
._7_c01069{margin-left:-20.094000px;}
._26_c01069{margin-left:-18.780000px;}
._5_c01069{margin-left:-16.119000px;}
._16_c01069{margin-left:-13.260000px;}
._27_c01069{margin-left:-11.832000px;}
._1a_c01069{margin-left:-10.812000px;}
._22_c01069{margin-left:-9.600000px;}
._2_c01069{margin-left:-7.200000px;}
._23_c01069{margin-left:-6.078000px;}
._25_c01069{margin-left:-4.659000px;}
._d_c01069{margin-left:-3.609000px;}
._1c_c01069{margin-left:-2.346000px;}
._1b_c01069{margin-left:-1.224000px;}
._1d_c01069{width:1.056000px;}
._1e_c01069{width:2.325000px;}
._21_c01069{width:4.326000px;}
._20_c01069{width:6.090000px;}
._e_c01069{width:7.209000px;}
._2b_c01069{width:8.250000px;}
._1f_c01069{width:9.453000px;}
._15_c01069{width:10.506000px;}
._f_c01069{width:11.952000px;}
._0_c01069{width:12.960000px;}
._13_c01069{width:14.379000px;}
._10_c01069{width:15.552000px;}
._18_c01069{width:17.466000px;}
._17_c01069{width:18.846000px;}
._b_c01069{width:21.307800px;}
._a_c01069{width:22.756200px;}
._11_c01069{width:25.194000px;}
._12_c01069{width:26.418000px;}
._29_c01069{width:29.388600px;}
._2c_c01069{width:32.991000px;}
._9_c01069{width:36.230400px;}
._8_c01069{width:44.694000px;}
._6_c01069{width:56.619000px;}
._3_c01069{width:83.400000px;}
._28_c01069{width:227.778000px;}
._2a_c01069{width:297.756000px;}
._1_c01069{width:1601.391000px;}
.fc2_c01069{color:transparent;}
.fc1_c01069{color:rgb(128,128,128);}
.fc0_c01069{color:rgb(0,0,0);}
.fsa_c01069{font-size:42.000000px;}
.fsb_c01069{font-size:48.000000px;}
.fs1_c01069{font-size:60.000000px;}
.fsc_c01069{font-size:66.000000px;}
.fs2_c01069{font-size:72.000000px;}
.fs7_c01069{font-size:75.000000px;}
.fs0_c01069{font-size:81.000000px;}
.fs4_c01069{font-size:81.600000px;}
.fs8_c01069{font-size:84.000000px;}
.fs9_c01069{font-size:90.000000px;}
.fs6_c01069{font-size:93.000000px;}
.fs3_c01069{font-size:102.000000px;}
.fs5_c01069{font-size:144.000000px;}
.y0_c01069{bottom:0.000000px;}
.y1f_c01069{bottom:3.105000px;}
.y1e_c01069{bottom:7.228369px;}
.y1d_c01069{bottom:51.270000px;}
.y1c_c01069{bottom:70.920000px;}
.y1b_c01069{bottom:97.170000px;}
.y1a_c01069{bottom:123.570000px;}
.y19_c01069{bottom:145.020000px;}
.y18_c01069{bottom:169.470000px;}
.y17_c01069{bottom:194.970000px;}
.y16_c01069{bottom:218.670000px;}
.y15_c01069{bottom:244.020000px;}
.y14_c01069{bottom:267.570000px;}
.y13_c01069{bottom:293.520000px;}
.y12_c01069{bottom:317.520000px;}
.y11_c01069{bottom:341.220000px;}
.y10_c01069{bottom:367.470000px;}
.yf_c01069{bottom:391.770000px;}
.ye_c01069{bottom:415.170000px;}
.yd_c01069{bottom:439.770000px;}
.yc_c01069{bottom:463.620000px;}
.yb_c01069{bottom:487.620000px;}
.ya_c01069{bottom:544.620000px;}
.y9_c01069{bottom:573.720000px;}
.y8_c01069{bottom:603.120000px;}
.y7_c01069{bottom:679.320000px;}
.y6_c01069{bottom:706.620000px;}
.y5_c01069{bottom:732.270000px;}
.y4_c01069{bottom:764.670000px;}
.y3_c01069{bottom:804.270000px;}
.y1_c01069{bottom:910.470000px;}
.y2_c01069{bottom:919.320000px;}
.hb_c01069{height:13.200073px;}
.ha_c01069{height:42.328125px;}
.hc_c01069{height:43.804688px;}
.h3_c01069{height:79.497070px;}
.h9_c01069{height:84.269531px;}
.h6_c01069{height:88.032000px;}
.h8_c01069{height:88.286133px;}
.h7_c01069{height:88.330078px;}
.h4_c01069{height:104.839927px;}
.h2_c01069{height:177.560156px;}
.h5_c01069{height:182.320312px;}
.h1_c01069{height:972.750000px;}
.h0_c01069{height:973.050000px;}
.w2_c01069{width:104.875500px;}
.w0_c01069{width:658.275000px;}
.w1_c01069{width:658.500000px;}
.x0_c01069{left:0.000000px;}
.x11_c01069{left:23.250000px;}
.x12_c01069{left:29.700000px;}
.x10_c01069{left:98.850000px;}
.x1_c01069{left:114.300000px;}
.x4_c01069{left:115.800000px;}
.x14_c01069{left:117.150000px;}
.x8_c01069{left:118.800000px;}
.xf_c01069{left:120.150000px;}
.xe_c01069{left:121.200000px;}
.x5_c01069{left:130.950000px;}
.x13_c01069{left:142.800000px;}
.xd_c01069{left:154.950000px;}
.x9_c01069{left:169.050000px;}
.x6_c01069{left:196.200000px;}
.x3_c01069{left:202.200000px;}
.xb_c01069{left:244.050000px;}
.xa_c01069{left:246.150000px;}
.x7_c01069{left:249.150000px;}
.xc_c01069{left:252.150000px;}
.x16_c01069{left:280.951767px;}
.x2_c01069{left:557.850000px;}
.x15_c01069{left:586.950000px;}
@media print{
.v0_c01069{vertical-align:0.000000pt;}
.v1_c01069{vertical-align:76.800000pt;}
.ls4_c01069{letter-spacing:-8.000000pt;}
.ls7_c01069{letter-spacing:-2.666667pt;}
.ls3_c01069{letter-spacing:0.000000pt;}
.ls8_c01069{letter-spacing:2.666667pt;}
.ls2_c01069{letter-spacing:5.333333pt;}
.ls1_c01069{letter-spacing:9.338667pt;}
.ls6_c01069{letter-spacing:10.666667pt;}
.ls0_c01069{letter-spacing:11.392000pt;}
.ls5_c01069{letter-spacing:48.000000pt;}
.ws5_c01069{word-spacing:-18.000000pt;}
.ws2_c01069{word-spacing:-17.333333pt;}
.ws3_c01069{word-spacing:-15.424000pt;}
.ws4_c01069{word-spacing:-12.000000pt;}
.ws1_c01069{word-spacing:-9.139200pt;}
.ws0_c01069{word-spacing:-3.888000pt;}
.ws6_c01069{word-spacing:0.000000pt;}
._19_c01069{margin-left:-28.800000pt;}
._c_c01069{margin-left:-27.648000pt;}
._14_c01069{margin-left:-26.754667pt;}
._4_c01069{margin-left:-21.600000pt;}
._24_c01069{margin-left:-19.253333pt;}
._7_c01069{margin-left:-17.861333pt;}
._26_c01069{margin-left:-16.693333pt;}
._5_c01069{margin-left:-14.328000pt;}
._16_c01069{margin-left:-11.786667pt;}
._27_c01069{margin-left:-10.517333pt;}
._1a_c01069{margin-left:-9.610667pt;}
._22_c01069{margin-left:-8.533333pt;}
._2_c01069{margin-left:-6.400000pt;}
._23_c01069{margin-left:-5.402667pt;}
._25_c01069{margin-left:-4.141333pt;}
._d_c01069{margin-left:-3.208000pt;}
._1c_c01069{margin-left:-2.085333pt;}
._1b_c01069{margin-left:-1.088000pt;}
._1d_c01069{width:0.938667pt;}
._1e_c01069{width:2.066667pt;}
._21_c01069{width:3.845333pt;}
._20_c01069{width:5.413333pt;}
._e_c01069{width:6.408000pt;}
._2b_c01069{width:7.333333pt;}
._1f_c01069{width:8.402667pt;}
._15_c01069{width:9.338667pt;}
._f_c01069{width:10.624000pt;}
._0_c01069{width:11.520000pt;}
._13_c01069{width:12.781333pt;}
._10_c01069{width:13.824000pt;}
._18_c01069{width:15.525333pt;}
._17_c01069{width:16.752000pt;}
._b_c01069{width:18.940267pt;}
._a_c01069{width:20.227733pt;}
._11_c01069{width:22.394667pt;}
._12_c01069{width:23.482667pt;}
._29_c01069{width:26.123200pt;}
._2c_c01069{width:29.325333pt;}
._9_c01069{width:32.204800pt;}
._8_c01069{width:39.728000pt;}
._6_c01069{width:50.328000pt;}
._3_c01069{width:74.133333pt;}
._28_c01069{width:202.469333pt;}
._2a_c01069{width:264.672000pt;}
._1_c01069{width:1423.458667pt;}
.fsa_c01069{font-size:37.333333pt;}
.fsb_c01069{font-size:42.666667pt;}
.fs1_c01069{font-size:53.333333pt;}
.fsc_c01069{font-size:58.666667pt;}
.fs2_c01069{font-size:64.000000pt;}
.fs7_c01069{font-size:66.666667pt;}
.fs0_c01069{font-size:72.000000pt;}
.fs4_c01069{font-size:72.533333pt;}
.fs8_c01069{font-size:74.666667pt;}
.fs9_c01069{font-size:80.000000pt;}
.fs6_c01069{font-size:82.666667pt;}
.fs3_c01069{font-size:90.666667pt;}
.fs5_c01069{font-size:128.000000pt;}
.y0_c01069{bottom:0.000000pt;}
.y1f_c01069{bottom:2.760000pt;}
.y1e_c01069{bottom:6.425217pt;}
.y1d_c01069{bottom:45.573333pt;}
.y1c_c01069{bottom:63.040000pt;}
.y1b_c01069{bottom:86.373333pt;}
.y1a_c01069{bottom:109.840000pt;}
.y19_c01069{bottom:128.906667pt;}
.y18_c01069{bottom:150.640000pt;}
.y17_c01069{bottom:173.306667pt;}
.y16_c01069{bottom:194.373333pt;}
.y15_c01069{bottom:216.906667pt;}
.y14_c01069{bottom:237.840000pt;}
.y13_c01069{bottom:260.906667pt;}
.y12_c01069{bottom:282.240000pt;}
.y11_c01069{bottom:303.306667pt;}
.y10_c01069{bottom:326.640000pt;}
.yf_c01069{bottom:348.240000pt;}
.ye_c01069{bottom:369.040000pt;}
.yd_c01069{bottom:390.906667pt;}
.yc_c01069{bottom:412.106667pt;}
.yb_c01069{bottom:433.440000pt;}
.ya_c01069{bottom:484.106667pt;}
.y9_c01069{bottom:509.973333pt;}
.y8_c01069{bottom:536.106667pt;}
.y7_c01069{bottom:603.840000pt;}
.y6_c01069{bottom:628.106667pt;}
.y5_c01069{bottom:650.906667pt;}
.y4_c01069{bottom:679.706667pt;}
.y3_c01069{bottom:714.906667pt;}
.y1_c01069{bottom:809.306667pt;}
.y2_c01069{bottom:817.173333pt;}
.hb_c01069{height:11.733399pt;}
.ha_c01069{height:37.625000pt;}
.hc_c01069{height:38.937500pt;}
.h3_c01069{height:70.664062pt;}
.h9_c01069{height:74.906250pt;}
.h6_c01069{height:78.250667pt;}
.h8_c01069{height:78.476562pt;}
.h7_c01069{height:78.515625pt;}
.h4_c01069{height:93.191046pt;}
.h2_c01069{height:157.831250pt;}
.h5_c01069{height:162.062500pt;}
.h1_c01069{height:864.666667pt;}
.h0_c01069{height:864.933333pt;}
.w2_c01069{width:93.222667pt;}
.w0_c01069{width:585.133333pt;}
.w1_c01069{width:585.333333pt;}
.x0_c01069{left:0.000000pt;}
.x11_c01069{left:20.666667pt;}
.x12_c01069{left:26.400000pt;}
.x10_c01069{left:87.866667pt;}
.x1_c01069{left:101.600000pt;}
.x4_c01069{left:102.933333pt;}
.x14_c01069{left:104.133333pt;}
.x8_c01069{left:105.600000pt;}
.xf_c01069{left:106.800000pt;}
.xe_c01069{left:107.733333pt;}
.x5_c01069{left:116.400000pt;}
.x13_c01069{left:126.933333pt;}
.xd_c01069{left:137.733333pt;}
.x9_c01069{left:150.266667pt;}
.x6_c01069{left:174.400000pt;}
.x3_c01069{left:179.733333pt;}
.xb_c01069{left:216.933333pt;}
.xa_c01069{left:218.800000pt;}
.x7_c01069{left:221.466667pt;}
.xc_c01069{left:224.133333pt;}
.x16_c01069{left:249.734904pt;}
.x2_c01069{left:495.866667pt;}
.x15_c01069{left:521.733333pt;}
}





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

.ir_c01070:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01070{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01070;src:url('chunks/assets/font_09e1e39198f28c868a5f0f29.woff2')format("woff");}.ff1_c01070{font-family:ff1_c01070;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01070;src:url('chunks/assets/font_093ad683d9414b5eb7676916.woff2')format("woff");}.ff2_c01070{font-family:ff2_c01070;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01070;src:url('chunks/assets/font_97105fc9a20859f72aeed214.woff2')format("woff");}.ff3_c01070{font-family:ff3_c01070;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01070;src:url('chunks/assets/font_d3a421e98724eb08ae42c67d.woff2')format("woff");}.ff4_c01070{font-family:ff4_c01070;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01070;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c01070{font-family:ff5_c01070;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01070{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01070{vertical-align:0.000000px;}
.ls0_c01070{letter-spacing:0.000000px;}
.sc__c01070{text-shadow:none;}
.sc0_c01070{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01070{-webkit-text-stroke:0px transparent;}
.sc0_c01070{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01070{word-spacing:-17.352000px;}
.ws1_c01070{word-spacing:0.000000px;}
._20_c01070{margin-left:-38.151000px;}
._1e_c01070{margin-left:-22.503000px;}
._1f_c01070{margin-left:-20.205000px;}
._5_c01070{margin-left:-14.529000px;}
._6_c01070{margin-left:-12.615000px;}
._1d_c01070{margin-left:-10.788000px;}
._1c_c01070{margin-left:-9.153000px;}
._4_c01070{margin-left:-6.951000px;}
._3_c01070{margin-left:-5.052000px;}
._12_c01070{margin-left:-3.546000px;}
._10_c01070{margin-left:-2.406000px;}
._7_c01070{margin-left:-1.017000px;}
._11_c01070{width:1.707000px;}
._a_c01070{width:2.748000px;}
._14_c01070{width:3.810000px;}
._9_c01070{width:4.830000px;}
._1_c01070{width:6.438000px;}
._13_c01070{width:8.100000px;}
._16_c01070{width:9.462000px;}
._15_c01070{width:11.085000px;}
._2_c01070{width:12.180000px;}
._c_c01070{width:14.382000px;}
._0_c01070{width:15.486000px;}
._f_c01070{width:17.079000px;}
._18_c01070{width:18.537000px;}
._1a_c01070{width:21.954000px;}
._22_c01070{width:23.412000px;}
._19_c01070{width:25.200000px;}
._1b_c01070{width:28.872000px;}
._e_c01070{width:31.008000px;}
._17_c01070{width:32.415000px;}
._21_c01070{width:33.477000px;}
._b_c01070{width:38.148000px;}
._23_c01070{width:44.358000px;}
._d_c01070{width:71.112000px;}
._8_c01070{width:128.703000px;}
._24_c01070{width:1441.521000px;}
.fc2_c01070{color:transparent;}
.fc1_c01070{color:rgb(128,128,128);}
.fc0_c01070{color:rgb(0,0,0);}
.fs4_c01070{font-size:48.000000px;}
.fs3_c01070{font-size:72.000000px;}
.fs2_c01070{font-size:81.000000px;}
.fs0_c01070{font-size:87.000000px;}
.fs1_c01070{font-size:102.000000px;}
.y0_c01070{bottom:0.000000px;}
.y26_c01070{bottom:3.105000px;}
.y25_c01070{bottom:7.228369px;}
.y24_c01070{bottom:68.520000px;}
.y23_c01070{bottom:91.470000px;}
.y22_c01070{bottom:115.770000px;}
.y21_c01070{bottom:141.120000px;}
.y20_c01070{bottom:165.420000px;}
.y1f_c01070{bottom:189.720000px;}
.y1e_c01070{bottom:214.020000px;}
.y1d_c01070{bottom:238.620000px;}
.y1c_c01070{bottom:262.620000px;}
.y1b_c01070{bottom:287.220000px;}
.y1a_c01070{bottom:311.520000px;}
.y19_c01070{bottom:335.520000px;}
.y18_c01070{bottom:360.120000px;}
.y17_c01070{bottom:384.120000px;}
.y16_c01070{bottom:409.020000px;}
.y15_c01070{bottom:433.020000px;}
.y14_c01070{bottom:457.020000px;}
.y13_c01070{bottom:480.870000px;}
.y12_c01070{bottom:505.470000px;}
.y11_c01070{bottom:529.770000px;}
.y10_c01070{bottom:554.070000px;}
.yf_c01070{bottom:578.070000px;}
.ye_c01070{bottom:601.470000px;}
.yd_c01070{bottom:625.620000px;}
.yc_c01070{bottom:650.070000px;}
.yb_c01070{bottom:673.320000px;}
.ya_c01070{bottom:697.320000px;}
.y9_c01070{bottom:721.920000px;}
.y8_c01070{bottom:745.470000px;}
.y7_c01070{bottom:769.770000px;}
.y6_c01070{bottom:794.070000px;}
.y5_c01070{bottom:818.070000px;}
.y4_c01070{bottom:842.370000px;}
.y3_c01070{bottom:866.370000px;}
.y2_c01070{bottom:890.220000px;}
.y1_c01070{bottom:923.670000px;}
.h5_c01070{height:13.200073px;}
.h6_c01070{height:43.804688px;}
.h3_c01070{height:79.497070px;}
.h4_c01070{height:84.269531px;}
.h2_c01070{height:100.057617px;}
.h1_c01070{height:986.250000px;}
.h0_c01070{height:986.550000px;}
.w1_c01070{width:104.875500px;}
.w0_c01070{width:672.000000px;}
.x0_c01070{left:0.000000px;}
.x8_c01070{left:27.300000px;}
.x1_c01070{left:30.000000px;}
.x2_c01070{left:31.800000px;}
.x3_c01070{left:33.150000px;}
.x4_c01070{left:34.800000px;}
.x5_c01070{left:35.850000px;}
.x7_c01070{left:37.200000px;}
.x6_c01070{left:38.250000px;}
.x9_c01070{left:39.450000px;}
.xa_c01070{left:40.500000px;}
.xb_c01070{left:41.550000px;}
.xc_c01070{left:43.200000px;}
.xd_c01070{left:44.250000px;}
.xe_c01070{left:45.300000px;}
.xf_c01070{left:46.650000px;}
.x10_c01070{left:287.814240px;}
@media print{
.v0_c01070{vertical-align:0.000000pt;}
.ls0_c01070{letter-spacing:0.000000pt;}
.ws0_c01070{word-spacing:-15.424000pt;}
.ws1_c01070{word-spacing:0.000000pt;}
._20_c01070{margin-left:-33.912000pt;}
._1e_c01070{margin-left:-20.002667pt;}
._1f_c01070{margin-left:-17.960000pt;}
._5_c01070{margin-left:-12.914667pt;}
._6_c01070{margin-left:-11.213333pt;}
._1d_c01070{margin-left:-9.589333pt;}
._1c_c01070{margin-left:-8.136000pt;}
._4_c01070{margin-left:-6.178667pt;}
._3_c01070{margin-left:-4.490667pt;}
._12_c01070{margin-left:-3.152000pt;}
._10_c01070{margin-left:-2.138667pt;}
._7_c01070{margin-left:-0.904000pt;}
._11_c01070{width:1.517333pt;}
._a_c01070{width:2.442667pt;}
._14_c01070{width:3.386667pt;}
._9_c01070{width:4.293333pt;}
._1_c01070{width:5.722667pt;}
._13_c01070{width:7.200000pt;}
._16_c01070{width:8.410667pt;}
._15_c01070{width:9.853333pt;}
._2_c01070{width:10.826667pt;}
._c_c01070{width:12.784000pt;}
._0_c01070{width:13.765333pt;}
._f_c01070{width:15.181333pt;}
._18_c01070{width:16.477333pt;}
._1a_c01070{width:19.514667pt;}
._22_c01070{width:20.810667pt;}
._19_c01070{width:22.400000pt;}
._1b_c01070{width:25.664000pt;}
._e_c01070{width:27.562667pt;}
._17_c01070{width:28.813333pt;}
._21_c01070{width:29.757333pt;}
._b_c01070{width:33.909333pt;}
._23_c01070{width:39.429333pt;}
._d_c01070{width:63.210667pt;}
._8_c01070{width:114.402667pt;}
._24_c01070{width:1281.352000pt;}
.fs4_c01070{font-size:42.666667pt;}
.fs3_c01070{font-size:64.000000pt;}
.fs2_c01070{font-size:72.000000pt;}
.fs0_c01070{font-size:77.333333pt;}
.fs1_c01070{font-size:90.666667pt;}
.y0_c01070{bottom:0.000000pt;}
.y26_c01070{bottom:2.760000pt;}
.y25_c01070{bottom:6.425217pt;}
.y24_c01070{bottom:60.906667pt;}
.y23_c01070{bottom:81.306667pt;}
.y22_c01070{bottom:102.906667pt;}
.y21_c01070{bottom:125.440000pt;}
.y20_c01070{bottom:147.040000pt;}
.y1f_c01070{bottom:168.640000pt;}
.y1e_c01070{bottom:190.240000pt;}
.y1d_c01070{bottom:212.106667pt;}
.y1c_c01070{bottom:233.440000pt;}
.y1b_c01070{bottom:255.306667pt;}
.y1a_c01070{bottom:276.906667pt;}
.y19_c01070{bottom:298.240000pt;}
.y18_c01070{bottom:320.106667pt;}
.y17_c01070{bottom:341.440000pt;}
.y16_c01070{bottom:363.573333pt;}
.y15_c01070{bottom:384.906667pt;}
.y14_c01070{bottom:406.240000pt;}
.y13_c01070{bottom:427.440000pt;}
.y12_c01070{bottom:449.306667pt;}
.y11_c01070{bottom:470.906667pt;}
.y10_c01070{bottom:492.506667pt;}
.yf_c01070{bottom:513.840000pt;}
.ye_c01070{bottom:534.640000pt;}
.yd_c01070{bottom:556.106667pt;}
.yc_c01070{bottom:577.840000pt;}
.yb_c01070{bottom:598.506667pt;}
.ya_c01070{bottom:619.840000pt;}
.y9_c01070{bottom:641.706667pt;}
.y8_c01070{bottom:662.640000pt;}
.y7_c01070{bottom:684.240000pt;}
.y6_c01070{bottom:705.840000pt;}
.y5_c01070{bottom:727.173333pt;}
.y4_c01070{bottom:748.773333pt;}
.y3_c01070{bottom:770.106667pt;}
.y2_c01070{bottom:791.306667pt;}
.y1_c01070{bottom:821.040000pt;}
.h5_c01070{height:11.733399pt;}
.h6_c01070{height:38.937500pt;}
.h3_c01070{height:70.664062pt;}
.h4_c01070{height:74.906250pt;}
.h2_c01070{height:88.940104pt;}
.h1_c01070{height:876.666667pt;}
.h0_c01070{height:876.933333pt;}
.w1_c01070{width:93.222667pt;}
.w0_c01070{width:597.333333pt;}
.x0_c01070{left:0.000000pt;}
.x8_c01070{left:24.266667pt;}
.x1_c01070{left:26.666667pt;}
.x2_c01070{left:28.266667pt;}
.x3_c01070{left:29.466667pt;}
.x4_c01070{left:30.933333pt;}
.x5_c01070{left:31.866667pt;}
.x7_c01070{left:33.066667pt;}
.x6_c01070{left:34.000000pt;}
.x9_c01070{left:35.066667pt;}
.xa_c01070{left:36.000000pt;}
.xb_c01070{left:36.933333pt;}
.xc_c01070{left:38.400000pt;}
.xd_c01070{left:39.333333pt;}
.xe_c01070{left:40.266667pt;}
.xf_c01070{left:41.466667pt;}
.x10_c01070{left:255.834880pt;}
}





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

.ir_c01071:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01071{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01071;src:url('chunks/assets/font_4efaa0d343d65de70d399c63.woff2')format("woff");}.ff1_c01071{font-family:ff1_c01071;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01071;src:url('chunks/assets/font_1091582715df15379f991254.woff2')format("woff");}.ff2_c01071{font-family:ff2_c01071;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01071;src:url('chunks/assets/font_086e2e0d0d848ce129c64511.woff2')format("woff");}.ff3_c01071{font-family:ff3_c01071;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01071;src:url('chunks/assets/font_d8fd0a61bb951f8db9dbea11.woff2')format("woff");}.ff4_c01071{font-family:ff4_c01071;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01071;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff5_c01071{font-family:ff5_c01071;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01071;src:url('chunks/assets/font_67cc6a30c67151d0e48875cd.woff2')format("woff");}.ff6_c01071{font-family:ff6_c01071;line-height:1.284180;font-style:normal;font-weight: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_c01071;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c01071{font-family:ff7_c01071;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01071{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01071{vertical-align:0.000000px;}
.ls2_c01071{letter-spacing:0.000000px;}
.ls0_c01071{letter-spacing:0.312000px;}
.ls1_c01071{letter-spacing:2.400000px;}
.ls3_c01071{letter-spacing:6.000000px;}
.sc__c01071{text-shadow:none;}
.sc0_c01071{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01071{-webkit-text-stroke:0px transparent;}
.sc0_c01071{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01071{word-spacing:-73.686000px;}
.ws0_c01071{word-spacing:-20.250000px;}
.ws2_c01071{word-spacing:-17.352000px;}
.ws3_c01071{word-spacing:0.000000px;}
._1b_c01071{margin-left:-25.125000px;}
._8_c01071{margin-left:-23.766000px;}
._1_c01071{margin-left:-20.910000px;}
._9_c01071{margin-left:-19.176000px;}
._3_c01071{margin-left:-17.646000px;}
._4_c01071{margin-left:-15.912000px;}
._7_c01071{margin-left:-14.178000px;}
._2_c01071{margin-left:-12.342000px;}
._a_c01071{margin-left:-11.322000px;}
._5_c01071{margin-left:-9.894000px;}
._6_c01071{margin-left:-7.956000px;}
._16_c01071{margin-left:-6.399000px;}
._15_c01071{margin-left:-5.022000px;}
._1f_c01071{margin-left:-3.897000px;}
._d_c01071{margin-left:-2.835000px;}
._18_c01071{margin-left:-1.233000px;}
._14_c01071{width:1.539000px;}
._13_c01071{width:3.186000px;}
._e_c01071{width:4.293000px;}
._f_c01071{width:5.913000px;}
._11_c01071{width:7.164000px;}
._10_c01071{width:8.325000px;}
._c_c01071{width:9.558000px;}
._12_c01071{width:11.097000px;}
._1a_c01071{width:12.312000px;}
._b_c01071{width:13.464000px;}
._19_c01071{width:15.165000px;}
._0_c01071{width:16.830000px;}
._1d_c01071{width:17.967000px;}
._1e_c01071{width:19.233000px;}
._17_c01071{width:21.717000px;}
._2b_c01071{width:22.848000px;}
._25_c01071{width:23.922000px;}
._28_c01071{width:25.281000px;}
._22_c01071{width:26.436000px;}
._29_c01071{width:27.684000px;}
._2a_c01071{width:34.029000px;}
._21_c01071{width:76.884000px;}
._24_c01071{width:109.107000px;}
._23_c01071{width:115.281000px;}
._27_c01071{width:140.028000px;}
._26_c01071{width:188.970000px;}
._1c_c01071{width:276.453000px;}
._20_c01071{width:340.374000px;}
.fc2_c01071{color:transparent;}
.fc1_c01071{color:rgb(128,128,128);}
.fc0_c01071{color:rgb(0,0,0);}
.fs5_c01071{font-size:48.000000px;}
.fs4_c01071{font-size:66.000000px;}
.fs3_c01071{font-size:72.000000px;}
.fs1_c01071{font-size:81.000000px;}
.fs2_c01071{font-size:87.000000px;}
.fs0_c01071{font-size:102.000000px;}
.y0_c01071{bottom:0.000000px;}
.y26_c01071{bottom:3.105000px;}
.y25_c01071{bottom:7.228371px;}
.y24_c01071{bottom:65.115000px;}
.y23_c01071{bottom:89.115000px;}
.y22_c01071{bottom:114.465000px;}
.y21_c01071{bottom:139.065000px;}
.y20_c01071{bottom:163.665000px;}
.y1f_c01071{bottom:188.415000px;}
.y1e_c01071{bottom:213.315000px;}
.y1d_c01071{bottom:237.315000px;}
.y1c_c01071{bottom:260.565000px;}
.y1b_c01071{bottom:285.915000px;}
.y1a_c01071{bottom:310.215000px;}
.y19_c01071{bottom:334.515000px;}
.y18_c01071{bottom:360.915000px;}
.y17_c01071{bottom:385.065000px;}
.y16_c01071{bottom:407.715000px;}
.y15_c01071{bottom:431.715000px;}
.y14_c01071{bottom:456.015000px;}
.y13_c01071{bottom:480.015000px;}
.y12_c01071{bottom:504.015000px;}
.y11_c01071{bottom:528.465000px;}
.y10_c01071{bottom:552.465000px;}
.yf_c01071{bottom:576.465000px;}
.ye_c01071{bottom:600.165000px;}
.yd_c01071{bottom:624.165000px;}
.yc_c01071{bottom:648.465000px;}
.yb_c01071{bottom:672.615000px;}
.ya_c01071{bottom:696.615000px;}
.y9_c01071{bottom:720.315000px;}
.y8_c01071{bottom:744.615000px;}
.y7_c01071{bottom:768.615000px;}
.y6_c01071{bottom:792.465000px;}
.y5_c01071{bottom:816.465000px;}
.y4_c01071{bottom:840.765000px;}
.y3_c01071{bottom:864.465000px;}
.y2_c01071{bottom:888.615000px;}
.y1_c01071{bottom:922.515000px;}
.h7_c01071{height:13.200074px;}
.h8_c01071{height:43.804688px;}
.h3_c01071{height:79.497070px;}
.h5_c01071{height:84.269531px;}
.h6_c01071{height:91.160156px;}
.h4_c01071{height:91.176000px;}
.h2_c01071{height:110.568000px;}
.h1_c01071{height:986.250000px;}
.h0_c01071{height:986.325000px;}
.w2_c01071{width:104.875500px;}
.w0_c01071{width:667.425000px;}
.w1_c01071{width:667.500000px;}
.x0_c01071{left:0.000000px;}
.xb_c01071{left:37.500000px;}
.x4_c01071{left:39.450000px;}
.xc_c01071{left:50.700000px;}
.xd_c01071{left:55.950000px;}
.xa_c01071{left:113.100000px;}
.x3_c01071{left:115.050000px;}
.x9_c01071{left:122.550000px;}
.x8_c01071{left:124.200000px;}
.x7_c01071{left:125.550000px;}
.x6_c01071{left:126.600000px;}
.x5_c01071{left:128.250000px;}
.x1_c01071{left:143.400000px;}
.x2_c01071{left:152.250000px;}
.xf_c01071{left:285.526749px;}
.xe_c01071{left:573.450000px;}
@media print{
.v0_c01071{vertical-align:0.000000pt;}
.ls2_c01071{letter-spacing:0.000000pt;}
.ls0_c01071{letter-spacing:0.277333pt;}
.ls1_c01071{letter-spacing:2.133333pt;}
.ls3_c01071{letter-spacing:5.333333pt;}
.ws1_c01071{word-spacing:-65.498667pt;}
.ws0_c01071{word-spacing:-18.000000pt;}
.ws2_c01071{word-spacing:-15.424000pt;}
.ws3_c01071{word-spacing:0.000000pt;}
._1b_c01071{margin-left:-22.333333pt;}
._8_c01071{margin-left:-21.125333pt;}
._1_c01071{margin-left:-18.586667pt;}
._9_c01071{margin-left:-17.045333pt;}
._3_c01071{margin-left:-15.685333pt;}
._4_c01071{margin-left:-14.144000pt;}
._7_c01071{margin-left:-12.602667pt;}
._2_c01071{margin-left:-10.970667pt;}
._a_c01071{margin-left:-10.064000pt;}
._5_c01071{margin-left:-8.794667pt;}
._6_c01071{margin-left:-7.072000pt;}
._16_c01071{margin-left:-5.688000pt;}
._15_c01071{margin-left:-4.464000pt;}
._1f_c01071{margin-left:-3.464000pt;}
._d_c01071{margin-left:-2.520000pt;}
._18_c01071{margin-left:-1.096000pt;}
._14_c01071{width:1.368000pt;}
._13_c01071{width:2.832000pt;}
._e_c01071{width:3.816000pt;}
._f_c01071{width:5.256000pt;}
._11_c01071{width:6.368000pt;}
._10_c01071{width:7.400000pt;}
._c_c01071{width:8.496000pt;}
._12_c01071{width:9.864000pt;}
._1a_c01071{width:10.944000pt;}
._b_c01071{width:11.968000pt;}
._19_c01071{width:13.480000pt;}
._0_c01071{width:14.960000pt;}
._1d_c01071{width:15.970667pt;}
._1e_c01071{width:17.096000pt;}
._17_c01071{width:19.304000pt;}
._2b_c01071{width:20.309333pt;}
._25_c01071{width:21.264000pt;}
._28_c01071{width:22.472000pt;}
._22_c01071{width:23.498667pt;}
._29_c01071{width:24.608000pt;}
._2a_c01071{width:30.248000pt;}
._21_c01071{width:68.341333pt;}
._24_c01071{width:96.984000pt;}
._23_c01071{width:102.472000pt;}
._27_c01071{width:124.469333pt;}
._26_c01071{width:167.973333pt;}
._1c_c01071{width:245.736000pt;}
._20_c01071{width:302.554667pt;}
.fs5_c01071{font-size:42.666667pt;}
.fs4_c01071{font-size:58.666667pt;}
.fs3_c01071{font-size:64.000000pt;}
.fs1_c01071{font-size:72.000000pt;}
.fs2_c01071{font-size:77.333333pt;}
.fs0_c01071{font-size:90.666667pt;}
.y0_c01071{bottom:0.000000pt;}
.y26_c01071{bottom:2.760000pt;}
.y25_c01071{bottom:6.425219pt;}
.y24_c01071{bottom:57.880000pt;}
.y23_c01071{bottom:79.213333pt;}
.y22_c01071{bottom:101.746667pt;}
.y21_c01071{bottom:123.613333pt;}
.y20_c01071{bottom:145.480000pt;}
.y1f_c01071{bottom:167.480000pt;}
.y1e_c01071{bottom:189.613333pt;}
.y1d_c01071{bottom:210.946667pt;}
.y1c_c01071{bottom:231.613333pt;}
.y1b_c01071{bottom:254.146667pt;}
.y1a_c01071{bottom:275.746667pt;}
.y19_c01071{bottom:297.346667pt;}
.y18_c01071{bottom:320.813333pt;}
.y17_c01071{bottom:342.280000pt;}
.y16_c01071{bottom:362.413333pt;}
.y15_c01071{bottom:383.746667pt;}
.y14_c01071{bottom:405.346667pt;}
.y13_c01071{bottom:426.680000pt;}
.y12_c01071{bottom:448.013333pt;}
.y11_c01071{bottom:469.746667pt;}
.y10_c01071{bottom:491.080000pt;}
.yf_c01071{bottom:512.413333pt;}
.ye_c01071{bottom:533.480000pt;}
.yd_c01071{bottom:554.813333pt;}
.yc_c01071{bottom:576.413333pt;}
.yb_c01071{bottom:597.880000pt;}
.ya_c01071{bottom:619.213333pt;}
.y9_c01071{bottom:640.280000pt;}
.y8_c01071{bottom:661.880000pt;}
.y7_c01071{bottom:683.213333pt;}
.y6_c01071{bottom:704.413333pt;}
.y5_c01071{bottom:725.746667pt;}
.y4_c01071{bottom:747.346667pt;}
.y3_c01071{bottom:768.413333pt;}
.y2_c01071{bottom:789.880000pt;}
.y1_c01071{bottom:820.013333pt;}
.h7_c01071{height:11.733399pt;}
.h8_c01071{height:38.937500pt;}
.h3_c01071{height:70.664062pt;}
.h5_c01071{height:74.906250pt;}
.h6_c01071{height:81.031250pt;}
.h4_c01071{height:81.045333pt;}
.h2_c01071{height:98.282667pt;}
.h1_c01071{height:876.666667pt;}
.h0_c01071{height:876.733333pt;}
.w2_c01071{width:93.222667pt;}
.w0_c01071{width:593.266667pt;}
.w1_c01071{width:593.333333pt;}
.x0_c01071{left:0.000000pt;}
.xb_c01071{left:33.333333pt;}
.x4_c01071{left:35.066667pt;}
.xc_c01071{left:45.066667pt;}
.xd_c01071{left:49.733333pt;}
.xa_c01071{left:100.533333pt;}
.x3_c01071{left:102.266667pt;}
.x9_c01071{left:108.933333pt;}
.x8_c01071{left:110.400000pt;}
.x7_c01071{left:111.600000pt;}
.x6_c01071{left:112.533333pt;}
.x5_c01071{left:114.000000pt;}
.x1_c01071{left:127.466667pt;}
.x2_c01071{left:135.333333pt;}
.xf_c01071{left:253.801554pt;}
.xe_c01071{left:509.733333pt;}
}





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

.ir_c01072:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01072{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01072;src:url('chunks/assets/font_ce6bd22a56a0bc27dca2472f.woff2')format("woff");}.ff1_c01072{font-family:ff1_c01072;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01072;src:url('chunks/assets/font_27a16740f6e3fdd4709bb6b1.woff2')format("woff");}.ff2_c01072{font-family:ff2_c01072;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01072;src:url('chunks/assets/font_a15c307a59ce69a0028b766e.woff2')format("woff");}.ff3_c01072{font-family:ff3_c01072;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01072;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff4_c01072{font-family:ff4_c01072;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01072;src:url('chunks/assets/font_3bb440c0c9dab022c7ae6842.woff2')format("woff");}.ff5_c01072{font-family:ff5_c01072;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01072;src:url('chunks/assets/font_894b24a91ecae14627e511d4.woff2')format("woff");}.ff6_c01072{font-family:ff6_c01072;line-height:1.284180;font-style:normal;font-weight: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_c01072;src:url('chunks/assets/font_f471a214a927ff93b92e94cd.woff2')format("woff");}.ff7_c01072{font-family:ff7_c01072;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c01072;src:url('chunks/assets/font_cbe9aa9768afa81ca4451156.woff2')format("woff");}.ff8_c01072{font-family:ff8_c01072;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c01072;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff9_c01072{font-family:ff9_c01072;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c01072;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ffa_c01072{font-family:ffa_c01072;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01072{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01072{vertical-align:0.000000px;}
.ls2_c01072{letter-spacing:0.000000px;}
.ls1_c01072{letter-spacing:0.600000px;}
.ls0_c01072{letter-spacing:3.000000px;}
.ls3_c01072{letter-spacing:9.000000px;}
.sc__c01072{text-shadow:none;}
.sc0_c01072{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01072{-webkit-text-stroke:0px transparent;}
.sc0_c01072{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01072{word-spacing:-59.184000px;}
.ws3_c01072{word-spacing:-41.364000px;}
.ws5_c01072{word-spacing:-18.000000px;}
.ws4_c01072{word-spacing:-16.926000px;}
.ws0_c01072{word-spacing:-15.846000px;}
.ws1_c01072{word-spacing:-15.750000px;}
.ws6_c01072{word-spacing:-1.440000px;}
.ws7_c01072{word-spacing:0.000000px;}
._19_c01072{margin-left:-19.416000px;}
._1f_c01072{margin-left:-13.509000px;}
._26_c01072{margin-left:-12.357000px;}
._23_c01072{margin-left:-10.761000px;}
._22_c01072{margin-left:-8.556000px;}
._20_c01072{margin-left:-7.041000px;}
._c_c01072{margin-left:-5.031000px;}
._27_c01072{margin-left:-3.573000px;}
._1a_c01072{margin-left:-2.430000px;}
._16_c01072{margin-left:-1.173000px;}
._a_c01072{width:1.368000px;}
._d_c01072{width:2.514000px;}
._4_c01072{width:4.158000px;}
._2_c01072{width:5.940000px;}
._f_c01072{width:7.275000px;}
._0_c01072{width:8.811000px;}
._1_c01072{width:9.999000px;}
._5_c01072{width:11.781000px;}
._10_c01072{width:12.792000px;}
._e_c01072{width:15.561000px;}
._3_c01072{width:17.424000px;}
._12_c01072{width:18.672000px;}
._6_c01072{width:19.770000px;}
._11_c01072{width:21.591000px;}
._1b_c01072{width:22.701000px;}
._1c_c01072{width:23.712000px;}
._13_c01072{width:24.795000px;}
._14_c01072{width:25.905000px;}
._1d_c01072{width:27.048000px;}
._b_c01072{width:28.101000px;}
._15_c01072{width:29.553000px;}
._17_c01072{width:31.143000px;}
._8_c01072{width:32.319000px;}
._9_c01072{width:34.881000px;}
._7_c01072{width:36.192000px;}
._24_c01072{width:41.118000px;}
._25_c01072{width:42.261000px;}
._1e_c01072{width:49.647000px;}
._21_c01072{width:50.649000px;}
._18_c01072{width:64.185000px;}
._2a_c01072{width:93.564000px;}
._28_c01072{width:96.690000px;}
._29_c01072{width:1367.316000px;}
.fc2_c01072{color:transparent;}
.fc1_c01072{color:rgb(128,128,128);}
.fc0_c01072{color:rgb(0,0,0);}
.fs7_c01072{font-size:48.000000px;}
.fs3_c01072{font-size:51.000000px;}
.fs2_c01072{font-size:57.000000px;}
.fs5_c01072{font-size:66.000000px;}
.fs6_c01072{font-size:69.000000px;}
.fs4_c01072{font-size:72.000000px;}
.fs1_c01072{font-size:78.000000px;}
.fs0_c01072{font-size:99.000000px;}
.y0_c01072{bottom:0.000000px;}
.y23_c01072{bottom:3.105000px;}
.y22_c01072{bottom:7.228369px;}
.y21_c01072{bottom:59.670000px;}
.y20_c01072{bottom:81.720000px;}
.y1f_c01072{bottom:107.670000px;}
.y1e_c01072{bottom:132.270000px;}
.y1d_c01072{bottom:156.570000px;}
.y1c_c01072{bottom:181.470000px;}
.y1b_c01072{bottom:216.570000px;}
.y1a_c01072{bottom:280.170000px;}
.y19_c01072{bottom:304.470000px;}
.y18_c01072{bottom:328.620000px;}
.y17_c01072{bottom:353.370000px;}
.y16_c01072{bottom:399.870000px;}
.y15_c01072{bottom:425.220000px;}
.y14_c01072{bottom:449.520000px;}
.y13_c01072{bottom:473.820000px;}
.y12_c01072{bottom:498.120000px;}
.y11_c01072{bottom:522.420000px;}
.y10_c01072{bottom:546.420000px;}
.yf_c01072{bottom:570.420000px;}
.ye_c01072{bottom:594.720000px;}
.yd_c01072{bottom:618.570000px;}
.yc_c01072{bottom:642.570000px;}
.yb_c01072{bottom:666.870000px;}
.ya_c01072{bottom:690.870000px;}
.y9_c01072{bottom:715.470000px;}
.y8_c01072{bottom:739.470000px;}
.y7_c01072{bottom:766.020000px;}
.y6_c01072{bottom:788.370000px;}
.y5_c01072{bottom:812.670000px;}
.y4_c01072{bottom:837.570000px;}
.y3_c01072{bottom:861.270000px;}
.y2_c01072{bottom:885.870000px;}
.y1_c01072{bottom:922.320000px;}
.h8_c01072{height:13.200073px;}
.h9_c01072{height:43.804688px;}
.h3_c01072{height:57.445312px;}
.h5_c01072{height:72.562500px;}
.h6_c01072{height:83.226000px;}
.h4_c01072{height:84.269531px;}
.h7_c01072{height:91.160156px;}
.h2_c01072{height:103.752000px;}
.h1_c01072{height:986.250000px;}
.h0_c01072{height:986.550000px;}
.w1_c01072{width:104.875500px;}
.w0_c01072{width:672.000000px;}
.x0_c01072{left:0.000000px;}
.x5_c01072{left:52.650000px;}
.x4_c01072{left:53.700000px;}
.x2_c01072{left:55.050000px;}
.x3_c01072{left:56.250000px;}
.x7_c01072{left:57.300000px;}
.x8_c01072{left:66.450000px;}
.x6_c01072{left:160.950000px;}
.xa_c01072{left:287.814240px;}
.x1_c01072{left:304.350000px;}
.x9_c01072{left:556.800000px;}
@media print{
.v0_c01072{vertical-align:0.000000pt;}
.ls2_c01072{letter-spacing:0.000000pt;}
.ls1_c01072{letter-spacing:0.533333pt;}
.ls0_c01072{letter-spacing:2.666667pt;}
.ls3_c01072{letter-spacing:8.000000pt;}
.ws2_c01072{word-spacing:-52.608000pt;}
.ws3_c01072{word-spacing:-36.768000pt;}
.ws5_c01072{word-spacing:-16.000000pt;}
.ws4_c01072{word-spacing:-15.045333pt;}
.ws0_c01072{word-spacing:-14.085333pt;}
.ws1_c01072{word-spacing:-14.000000pt;}
.ws6_c01072{word-spacing:-1.280000pt;}
.ws7_c01072{word-spacing:0.000000pt;}
._19_c01072{margin-left:-17.258667pt;}
._1f_c01072{margin-left:-12.008000pt;}
._26_c01072{margin-left:-10.984000pt;}
._23_c01072{margin-left:-9.565333pt;}
._22_c01072{margin-left:-7.605333pt;}
._20_c01072{margin-left:-6.258667pt;}
._c_c01072{margin-left:-4.472000pt;}
._27_c01072{margin-left:-3.176000pt;}
._1a_c01072{margin-left:-2.160000pt;}
._16_c01072{margin-left:-1.042667pt;}
._a_c01072{width:1.216000pt;}
._d_c01072{width:2.234667pt;}
._4_c01072{width:3.696000pt;}
._2_c01072{width:5.280000pt;}
._f_c01072{width:6.466667pt;}
._0_c01072{width:7.832000pt;}
._1_c01072{width:8.888000pt;}
._5_c01072{width:10.472000pt;}
._10_c01072{width:11.370667pt;}
._e_c01072{width:13.832000pt;}
._3_c01072{width:15.488000pt;}
._12_c01072{width:16.597333pt;}
._6_c01072{width:17.573333pt;}
._11_c01072{width:19.192000pt;}
._1b_c01072{width:20.178667pt;}
._1c_c01072{width:21.077333pt;}
._13_c01072{width:22.040000pt;}
._14_c01072{width:23.026667pt;}
._1d_c01072{width:24.042667pt;}
._b_c01072{width:24.978667pt;}
._15_c01072{width:26.269333pt;}
._17_c01072{width:27.682667pt;}
._8_c01072{width:28.728000pt;}
._9_c01072{width:31.005333pt;}
._7_c01072{width:32.170667pt;}
._24_c01072{width:36.549333pt;}
._25_c01072{width:37.565333pt;}
._1e_c01072{width:44.130667pt;}
._21_c01072{width:45.021333pt;}
._18_c01072{width:57.053333pt;}
._2a_c01072{width:83.168000pt;}
._28_c01072{width:85.946667pt;}
._29_c01072{width:1215.392000pt;}
.fs7_c01072{font-size:42.666667pt;}
.fs3_c01072{font-size:45.333333pt;}
.fs2_c01072{font-size:50.666667pt;}
.fs5_c01072{font-size:58.666667pt;}
.fs6_c01072{font-size:61.333333pt;}
.fs4_c01072{font-size:64.000000pt;}
.fs1_c01072{font-size:69.333333pt;}
.fs0_c01072{font-size:88.000000pt;}
.y0_c01072{bottom:0.000000pt;}
.y23_c01072{bottom:2.760000pt;}
.y22_c01072{bottom:6.425217pt;}
.y21_c01072{bottom:53.040000pt;}
.y20_c01072{bottom:72.640000pt;}
.y1f_c01072{bottom:95.706667pt;}
.y1e_c01072{bottom:117.573333pt;}
.y1d_c01072{bottom:139.173333pt;}
.y1c_c01072{bottom:161.306667pt;}
.y1b_c01072{bottom:192.506667pt;}
.y1a_c01072{bottom:249.040000pt;}
.y19_c01072{bottom:270.640000pt;}
.y18_c01072{bottom:292.106667pt;}
.y17_c01072{bottom:314.106667pt;}
.y16_c01072{bottom:355.440000pt;}
.y15_c01072{bottom:377.973333pt;}
.y14_c01072{bottom:399.573333pt;}
.y13_c01072{bottom:421.173333pt;}
.y12_c01072{bottom:442.773333pt;}
.y11_c01072{bottom:464.373333pt;}
.y10_c01072{bottom:485.706667pt;}
.yf_c01072{bottom:507.040000pt;}
.ye_c01072{bottom:528.640000pt;}
.yd_c01072{bottom:549.840000pt;}
.yc_c01072{bottom:571.173333pt;}
.yb_c01072{bottom:592.773333pt;}
.ya_c01072{bottom:614.106667pt;}
.y9_c01072{bottom:635.973333pt;}
.y8_c01072{bottom:657.306667pt;}
.y7_c01072{bottom:680.906667pt;}
.y6_c01072{bottom:700.773333pt;}
.y5_c01072{bottom:722.373333pt;}
.y4_c01072{bottom:744.506667pt;}
.y3_c01072{bottom:765.573333pt;}
.y2_c01072{bottom:787.440000pt;}
.y1_c01072{bottom:819.840000pt;}
.h8_c01072{height:11.733399pt;}
.h9_c01072{height:38.937500pt;}
.h3_c01072{height:51.062500pt;}
.h5_c01072{height:64.500000pt;}
.h6_c01072{height:73.978667pt;}
.h4_c01072{height:74.906250pt;}
.h7_c01072{height:81.031250pt;}
.h2_c01072{height:92.224000pt;}
.h1_c01072{height:876.666667pt;}
.h0_c01072{height:876.933333pt;}
.w1_c01072{width:93.222667pt;}
.w0_c01072{width:597.333333pt;}
.x0_c01072{left:0.000000pt;}
.x5_c01072{left:46.800000pt;}
.x4_c01072{left:47.733333pt;}
.x2_c01072{left:48.933333pt;}
.x3_c01072{left:50.000000pt;}
.x7_c01072{left:50.933333pt;}
.x8_c01072{left:59.066667pt;}
.x6_c01072{left:143.066667pt;}
.xa_c01072{left:255.834880pt;}
.x1_c01072{left:270.533333pt;}
.x9_c01072{left:494.933333pt;}
}





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

.ir_c01073:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01073{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01073;src:url('chunks/assets/font_2c92551b287a711dac0082f8.woff2')format("woff");}.ff1_c01073{font-family:ff1_c01073;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01073;src:url('chunks/assets/font_98a96685dee63f2469f2691a.woff2')format("woff");}.ff2_c01073{font-family:ff2_c01073;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01073;src:url('chunks/assets/font_65e864781151db83157829f6.woff2')format("woff");}.ff3_c01073{font-family:ff3_c01073;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01073;src:url('chunks/assets/font_8a9050ef2b12d1e915d4c052.woff2')format("woff");}.ff4_c01073{font-family:ff4_c01073;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01073;src:url('chunks/assets/font_00491e22fcef610a31c393f3.woff2')format("woff");}.ff5_c01073{font-family:ff5_c01073;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01073;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c01073{font-family:ff6_c01073;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01073{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01073{vertical-align:0.000000px;}
.v1_c01073{vertical-align:3.000000px;}
.ls3_c01073{letter-spacing:0.000000px;}
.ls1_c01073{letter-spacing:3.600000px;}
.ls0_c01073{letter-spacing:4.080000px;}
.ls2_c01073{letter-spacing:6.000000px;}
.sc__c01073{text-shadow:none;}
.sc0_c01073{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01073{-webkit-text-stroke:0px transparent;}
.sc0_c01073{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01073{word-spacing:0.000000px;}
._1c_c01073{margin-left:-27.861000px;}
._7_c01073{margin-left:-18.432000px;}
._1a_c01073{margin-left:-17.085000px;}
._c_c01073{margin-left:-13.263000px;}
._1b_c01073{margin-left:-12.093000px;}
._8_c01073{margin-left:-10.155000px;}
._12_c01073{margin-left:-8.985000px;}
._13_c01073{margin-left:-7.482000px;}
._0_c01073{margin-left:-6.360000px;}
._b_c01073{margin-left:-4.350000px;}
._f_c01073{margin-left:-3.300000px;}
._9_c01073{margin-left:-2.226000px;}
._d_c01073{margin-left:-1.215000px;}
._e_c01073{width:1.041000px;}
._6_c01073{width:2.076000px;}
._5_c01073{width:3.774000px;}
._3_c01073{width:5.304000px;}
._4_c01073{width:6.936000px;}
._2_c01073{width:8.466000px;}
._a_c01073{width:9.720000px;}
._16_c01073{width:10.851000px;}
._15_c01073{width:12.507000px;}
._11_c01073{width:14.418000px;}
._10_c01073{width:15.474000px;}
._18_c01073{width:16.761000px;}
._19_c01073{width:18.135000px;}
._17_c01073{width:27.234000px;}
._1_c01073{width:31.680000px;}
._14_c01073{width:36.531000px;}
._1d_c01073{width:1336.656000px;}
.fc2_c01073{color:transparent;}
.fc1_c01073{color:rgb(128,128,128);}
.fc0_c01073{color:rgb(0,0,0);}
.fs5_c01073{font-size:48.000000px;}
.fs4_c01073{font-size:60.000000px;}
.fs3_c01073{font-size:72.000000px;}
.fs2_c01073{font-size:81.000000px;}
.fs1_c01073{font-size:102.000000px;}
.fs0_c01073{font-size:120.000000px;}
.y0_c01073{bottom:0.000000px;}
.y26_c01073{bottom:3.105000px;}
.y25_c01073{bottom:7.228371px;}
.y24_c01073{bottom:54.465000px;}
.y23_c01073{bottom:81.015000px;}
.y22_c01073{bottom:106.065000px;}
.y21_c01073{bottom:130.065000px;}
.y20_c01073{bottom:155.265000px;}
.y1f_c01073{bottom:179.865000px;}
.y1e_c01073{bottom:204.315000px;}
.y1d_c01073{bottom:229.215000px;}
.y1c_c01073{bottom:254.115000px;}
.y1b_c01073{bottom:278.565000px;}
.y1a_c01073{bottom:304.065000px;}
.y19_c01073{bottom:328.065000px;}
.y18_c01073{bottom:352.665000px;}
.y17_c01073{bottom:377.115000px;}
.y16_c01073{bottom:401.715000px;}
.y15_c01073{bottom:426.015000px;}
.y14_c01073{bottom:450.315000px;}
.y13_c01073{bottom:474.165000px;}
.y12_c01073{bottom:498.615000px;}
.y11_c01073{bottom:522.915000px;}
.y10_c01073{bottom:547.065000px;}
.yf_c01073{bottom:570.315000px;}
.ye_c01073{bottom:595.665000px;}
.yd_c01073{bottom:619.965000px;}
.yc_c01073{bottom:644.415000px;}
.yb_c01073{bottom:668.715000px;}
.ya_c01073{bottom:692.865000px;}
.y9_c01073{bottom:717.165000px;}
.y8_c01073{bottom:741.165000px;}
.y7_c01073{bottom:765.465000px;}
.y6_c01073{bottom:790.515000px;}
.y5_c01073{bottom:814.065000px;}
.y4_c01073{bottom:838.365000px;}
.y3_c01073{bottom:862.365000px;}
.y2_c01073{bottom:886.665000px;}
.y1_c01073{bottom:919.065000px;}
.h6_c01073{height:13.200074px;}
.h7_c01073{height:43.804688px;}
.h3_c01073{height:79.497070px;}
.h5_c01073{height:82.497070px;}
.h4_c01073{height:84.269531px;}
.h2_c01073{height:120.937500px;}
.h1_c01073{height:986.250000px;}
.h0_c01073{height:986.325000px;}
.w2_c01073{width:104.875500px;}
.w0_c01073{width:667.425000px;}
.w1_c01073{width:667.500000px;}
.x0_c01073{left:0.000000px;}
.x5_c01073{left:28.050000px;}
.x2_c01073{left:124.800000px;}
.x3_c01073{left:126.600000px;}
.x4_c01073{left:128.250000px;}
.x9_c01073{left:129.300000px;}
.x1_c01073{left:130.350000px;}
.x7_c01073{left:131.550000px;}
.x8_c01073{left:132.900000px;}
.x6_c01073{left:135.300000px;}
.xa_c01073{left:285.526749px;}
@media print{
.v0_c01073{vertical-align:0.000000pt;}
.v1_c01073{vertical-align:2.666667pt;}
.ls3_c01073{letter-spacing:0.000000pt;}
.ls1_c01073{letter-spacing:3.200000pt;}
.ls0_c01073{letter-spacing:3.626667pt;}
.ls2_c01073{letter-spacing:5.333333pt;}
.ws0_c01073{word-spacing:0.000000pt;}
._1c_c01073{margin-left:-24.765333pt;}
._7_c01073{margin-left:-16.384000pt;}
._1a_c01073{margin-left:-15.186667pt;}
._c_c01073{margin-left:-11.789333pt;}
._1b_c01073{margin-left:-10.749333pt;}
._8_c01073{margin-left:-9.026667pt;}
._12_c01073{margin-left:-7.986667pt;}
._13_c01073{margin-left:-6.650667pt;}
._0_c01073{margin-left:-5.653333pt;}
._b_c01073{margin-left:-3.866667pt;}
._f_c01073{margin-left:-2.933333pt;}
._9_c01073{margin-left:-1.978667pt;}
._d_c01073{margin-left:-1.080000pt;}
._e_c01073{width:0.925333pt;}
._6_c01073{width:1.845333pt;}
._5_c01073{width:3.354667pt;}
._3_c01073{width:4.714667pt;}
._4_c01073{width:6.165333pt;}
._2_c01073{width:7.525333pt;}
._a_c01073{width:8.640000pt;}
._16_c01073{width:9.645333pt;}
._15_c01073{width:11.117333pt;}
._11_c01073{width:12.816000pt;}
._10_c01073{width:13.754667pt;}
._18_c01073{width:14.898667pt;}
._19_c01073{width:16.120000pt;}
._17_c01073{width:24.208000pt;}
._1_c01073{width:28.160000pt;}
._14_c01073{width:32.472000pt;}
._1d_c01073{width:1188.138667pt;}
.fs5_c01073{font-size:42.666667pt;}
.fs4_c01073{font-size:53.333333pt;}
.fs3_c01073{font-size:64.000000pt;}
.fs2_c01073{font-size:72.000000pt;}
.fs1_c01073{font-size:90.666667pt;}
.fs0_c01073{font-size:106.666667pt;}
.y0_c01073{bottom:0.000000pt;}
.y26_c01073{bottom:2.760000pt;}
.y25_c01073{bottom:6.425219pt;}
.y24_c01073{bottom:48.413333pt;}
.y23_c01073{bottom:72.013333pt;}
.y22_c01073{bottom:94.280000pt;}
.y21_c01073{bottom:115.613333pt;}
.y20_c01073{bottom:138.013333pt;}
.y1f_c01073{bottom:159.880000pt;}
.y1e_c01073{bottom:181.613333pt;}
.y1d_c01073{bottom:203.746667pt;}
.y1c_c01073{bottom:225.880000pt;}
.y1b_c01073{bottom:247.613333pt;}
.y1a_c01073{bottom:270.280000pt;}
.y19_c01073{bottom:291.613333pt;}
.y18_c01073{bottom:313.480000pt;}
.y17_c01073{bottom:335.213333pt;}
.y16_c01073{bottom:357.080000pt;}
.y15_c01073{bottom:378.680000pt;}
.y14_c01073{bottom:400.280000pt;}
.y13_c01073{bottom:421.480000pt;}
.y12_c01073{bottom:443.213333pt;}
.y11_c01073{bottom:464.813333pt;}
.y10_c01073{bottom:486.280000pt;}
.yf_c01073{bottom:506.946667pt;}
.ye_c01073{bottom:529.480000pt;}
.yd_c01073{bottom:551.080000pt;}
.yc_c01073{bottom:572.813333pt;}
.yb_c01073{bottom:594.413333pt;}
.ya_c01073{bottom:615.880000pt;}
.y9_c01073{bottom:637.480000pt;}
.y8_c01073{bottom:658.813333pt;}
.y7_c01073{bottom:680.413333pt;}
.y6_c01073{bottom:702.680000pt;}
.y5_c01073{bottom:723.613333pt;}
.y4_c01073{bottom:745.213333pt;}
.y3_c01073{bottom:766.546667pt;}
.y2_c01073{bottom:788.146667pt;}
.y1_c01073{bottom:816.946667pt;}
.h6_c01073{height:11.733399pt;}
.h7_c01073{height:38.937500pt;}
.h3_c01073{height:70.664062pt;}
.h5_c01073{height:73.330729pt;}
.h4_c01073{height:74.906250pt;}
.h2_c01073{height:107.500000pt;}
.h1_c01073{height:876.666667pt;}
.h0_c01073{height:876.733333pt;}
.w2_c01073{width:93.222667pt;}
.w0_c01073{width:593.266667pt;}
.w1_c01073{width:593.333333pt;}
.x0_c01073{left:0.000000pt;}
.x5_c01073{left:24.933333pt;}
.x2_c01073{left:110.933333pt;}
.x3_c01073{left:112.533333pt;}
.x4_c01073{left:114.000000pt;}
.x9_c01073{left:114.933333pt;}
.x1_c01073{left:115.866667pt;}
.x7_c01073{left:116.933333pt;}
.x8_c01073{left:118.133333pt;}
.x6_c01073{left:120.266667pt;}
.xa_c01073{left:253.801554pt;}
}





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

.ir_c01074:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01074{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01074;src:url('chunks/assets/font_e8424def59cc048368319d9a.woff2')format("woff");}.ff1_c01074{font-family:ff1_c01074;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01074;src:url('chunks/assets/font_e962861bc6918ad8e0e7e52a.woff2')format("woff");}.ff2_c01074{font-family:ff2_c01074;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01074;src:url('chunks/assets/font_3c6a4b48970360dc87635014.woff2')format("woff");}.ff3_c01074{font-family:ff3_c01074;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01074;src:url('chunks/assets/font_3c6001ca1d2ccd694dffd883.woff2')format("woff");}.ff4_c01074{font-family:ff4_c01074;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01074;src:url('chunks/assets/font_6606a6bdfc52e6c9386e30ff.woff2')format("woff");}.ff5_c01074{font-family:ff5_c01074;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01074;src:url('chunks/assets/font_72257fe524ac1d77a4a8bf25.woff2')format("woff");}.ff6_c01074{font-family:ff6_c01074;line-height:1.284180;font-style:normal;font-weight: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_c01074;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c01074{font-family:ff7_c01074;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01074{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01074{vertical-align:0.000000px;}
.ls2_c01074{letter-spacing:-9.000000px;}
.ls1_c01074{letter-spacing:-6.000000px;}
.ls0_c01074{letter-spacing:0.000000px;}
.sc__c01074{text-shadow:none;}
.sc0_c01074{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01074{-webkit-text-stroke:0px transparent;}
.sc0_c01074{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01074{word-spacing:-28.500000px;}
.ws3_c01074{word-spacing:-23.250000px;}
.ws2_c01074{word-spacing:-2.850000px;}
.ws1_c01074{word-spacing:-0.456000px;}
.ws4_c01074{word-spacing:0.000000px;}
._b_c01074{margin-left:-23.859000px;}
._1f_c01074{margin-left:-14.391000px;}
._1e_c01074{margin-left:-12.735000px;}
._1a_c01074{margin-left:-11.007000px;}
._1d_c01074{margin-left:-9.918000px;}
._20_c01074{margin-left:-8.856000px;}
._5_c01074{margin-left:-7.425000px;}
._4_c01074{margin-left:-5.643000px;}
._6_c01074{margin-left:-3.960000px;}
._7_c01074{margin-left:-2.277000px;}
._8_c01074{margin-left:-1.089000px;}
._2a_c01074{width:1.146000px;}
._17_c01074{width:2.250000px;}
._10_c01074{width:3.321000px;}
._2_c01074{width:4.950000px;}
._11_c01074{width:6.612000px;}
._3_c01074{width:7.821000px;}
._1_c01074{width:9.504000px;}
._0_c01074{width:10.890000px;}
._13_c01074{width:12.813000px;}
._12_c01074{width:15.789000px;}
._c_c01074{width:17.127000px;}
._f_c01074{width:18.411000px;}
._e_c01074{width:19.509000px;}
._14_c01074{width:21.153000px;}
._d_c01074{width:22.572000px;}
._18_c01074{width:24.066000px;}
._16_c01074{width:25.293000px;}
._15_c01074{width:27.360000px;}
._27_c01074{width:29.214000px;}
._23_c01074{width:30.528000px;}
._21_c01074{width:32.709000px;}
._28_c01074{width:33.729000px;}
._29_c01074{width:35.022000px;}
._24_c01074{width:36.441000px;}
._a_c01074{width:37.620000px;}
._25_c01074{width:39.390000px;}
._22_c01074{width:40.812000px;}
._26_c01074{width:44.661000px;}
._9_c01074{width:68.961000px;}
._1b_c01074{width:185.337000px;}
._19_c01074{width:445.206000px;}
._1c_c01074{width:468.990000px;}
.fc2_c01074{color:transparent;}
.fc1_c01074{color:rgb(128,128,128);}
.fc0_c01074{color:rgb(0,0,0);}
.fs6_c01074{font-size:42.000000px;}
.fs9_c01074{font-size:48.000000px;}
.fs3_c01074{font-size:57.000000px;}
.fs4_c01074{font-size:72.000000px;}
.fs5_c01074{font-size:81.000000px;}
.fs7_c01074{font-size:84.000000px;}
.fs8_c01074{font-size:93.000000px;}
.fs0_c01074{font-size:99.000000px;}
.fs2_c01074{font-size:102.000000px;}
.fs1_c01074{font-size:132.000000px;}
.y0_c01074{bottom:0.000000px;}
.y26_c01074{bottom:3.105000px;}
.y25_c01074{bottom:7.228355px;}
.y24_c01074{bottom:61.635000px;}
.y23_c01074{bottom:85.635000px;}
.y22_c01074{bottom:110.985000px;}
.y21_c01074{bottom:135.885000px;}
.y20_c01074{bottom:160.335000px;}
.y1f_c01074{bottom:184.935000px;}
.y1e_c01074{bottom:208.785000px;}
.y1d_c01074{bottom:233.835000px;}
.y1c_c01074{bottom:258.135000px;}
.y1b_c01074{bottom:282.435000px;}
.y1a_c01074{bottom:306.735000px;}
.y19_c01074{bottom:331.635000px;}
.y18_c01074{bottom:355.935000px;}
.y17_c01074{bottom:380.235000px;}
.y16_c01074{bottom:404.535000px;}
.y15_c01074{bottom:429.585000px;}
.y14_c01074{bottom:453.585000px;}
.y13_c01074{bottom:478.485000px;}
.y12_c01074{bottom:502.185000px;}
.y11_c01074{bottom:526.785000px;}
.y10_c01074{bottom:551.085000px;}
.yf_c01074{bottom:575.085000px;}
.ye_c01074{bottom:598.935000px;}
.yd_c01074{bottom:622.935000px;}
.yc_c01074{bottom:646.185000px;}
.yb_c01074{bottom:670.635000px;}
.ya_c01074{bottom:694.185000px;}
.y9_c01074{bottom:719.085000px;}
.y8_c01074{bottom:742.785000px;}
.y7_c01074{bottom:767.835000px;}
.y6_c01074{bottom:790.635000px;}
.y5_c01074{bottom:815.985000px;}
.y4_c01074{bottom:840.585000px;}
.y3_c01074{bottom:864.285000px;}
.y2_c01074{bottom:889.335000px;}
.y1_c01074{bottom:922.935000px;}
.h8_c01074{height:13.200074px;}
.h9_c01074{height:43.804688px;}
.h3_c01074{height:57.445312px;}
.h5_c01074{height:79.497070px;}
.h4_c01074{height:84.269531px;}
.h7_c01074{height:91.274414px;}
.h6_c01074{height:106.353516px;}
.h2_c01074{height:167.126953px;}
.h0_c01074{height:980.625000px;}
.h1_c01074{height:981.000000px;}
.w2_c01074{width:104.875500px;}
.w0_c01074{width:667.425000px;}
.w1_c01074{width:667.500000px;}
.x0_c01074{left:0.000000px;}
.x3_c01074{left:45.450000px;}
.x1_c01074{left:46.500000px;}
.x4_c01074{left:47.850000px;}
.x6_c01074{left:48.900000px;}
.x5_c01074{left:50.250000px;}
.x7_c01074{left:51.300000px;}
.x8_c01074{left:52.350000px;}
.x2_c01074{left:70.650000px;}
.xa_c01074{left:285.526749px;}
.x9_c01074{left:510.000000px;}
@media print{
.v0_c01074{vertical-align:0.000000pt;}
.ls2_c01074{letter-spacing:-8.000000pt;}
.ls1_c01074{letter-spacing:-5.333333pt;}
.ls0_c01074{letter-spacing:0.000000pt;}
.ws0_c01074{word-spacing:-25.333333pt;}
.ws3_c01074{word-spacing:-20.666667pt;}
.ws2_c01074{word-spacing:-2.533333pt;}
.ws1_c01074{word-spacing:-0.405333pt;}
.ws4_c01074{word-spacing:0.000000pt;}
._b_c01074{margin-left:-21.208000pt;}
._1f_c01074{margin-left:-12.792000pt;}
._1e_c01074{margin-left:-11.320000pt;}
._1a_c01074{margin-left:-9.784000pt;}
._1d_c01074{margin-left:-8.816000pt;}
._20_c01074{margin-left:-7.872000pt;}
._5_c01074{margin-left:-6.600000pt;}
._4_c01074{margin-left:-5.016000pt;}
._6_c01074{margin-left:-3.520000pt;}
._7_c01074{margin-left:-2.024000pt;}
._8_c01074{margin-left:-0.968000pt;}
._2a_c01074{width:1.018667pt;}
._17_c01074{width:2.000000pt;}
._10_c01074{width:2.952000pt;}
._2_c01074{width:4.400000pt;}
._11_c01074{width:5.877333pt;}
._3_c01074{width:6.952000pt;}
._1_c01074{width:8.448000pt;}
._0_c01074{width:9.680000pt;}
._13_c01074{width:11.389333pt;}
._12_c01074{width:14.034667pt;}
._c_c01074{width:15.224000pt;}
._f_c01074{width:16.365333pt;}
._e_c01074{width:17.341333pt;}
._14_c01074{width:18.802667pt;}
._d_c01074{width:20.064000pt;}
._18_c01074{width:21.392000pt;}
._16_c01074{width:22.482667pt;}
._15_c01074{width:24.320000pt;}
._27_c01074{width:25.968000pt;}
._23_c01074{width:27.136000pt;}
._21_c01074{width:29.074667pt;}
._28_c01074{width:29.981333pt;}
._29_c01074{width:31.130667pt;}
._24_c01074{width:32.392000pt;}
._a_c01074{width:33.440000pt;}
._25_c01074{width:35.013333pt;}
._22_c01074{width:36.277333pt;}
._26_c01074{width:39.698667pt;}
._9_c01074{width:61.298667pt;}
._1b_c01074{width:164.744000pt;}
._19_c01074{width:395.738667pt;}
._1c_c01074{width:416.880000pt;}
.fs6_c01074{font-size:37.333333pt;}
.fs9_c01074{font-size:42.666667pt;}
.fs3_c01074{font-size:50.666667pt;}
.fs4_c01074{font-size:64.000000pt;}
.fs5_c01074{font-size:72.000000pt;}
.fs7_c01074{font-size:74.666667pt;}
.fs8_c01074{font-size:82.666667pt;}
.fs0_c01074{font-size:88.000000pt;}
.fs2_c01074{font-size:90.666667pt;}
.fs1_c01074{font-size:117.333333pt;}
.y0_c01074{bottom:0.000000pt;}
.y26_c01074{bottom:2.760000pt;}
.y25_c01074{bottom:6.425204pt;}
.y24_c01074{bottom:54.786667pt;}
.y23_c01074{bottom:76.120000pt;}
.y22_c01074{bottom:98.653333pt;}
.y21_c01074{bottom:120.786667pt;}
.y20_c01074{bottom:142.520000pt;}
.y1f_c01074{bottom:164.386667pt;}
.y1e_c01074{bottom:185.586667pt;}
.y1d_c01074{bottom:207.853333pt;}
.y1c_c01074{bottom:229.453333pt;}
.y1b_c01074{bottom:251.053333pt;}
.y1a_c01074{bottom:272.653333pt;}
.y19_c01074{bottom:294.786667pt;}
.y18_c01074{bottom:316.386667pt;}
.y17_c01074{bottom:337.986667pt;}
.y16_c01074{bottom:359.586667pt;}
.y15_c01074{bottom:381.853333pt;}
.y14_c01074{bottom:403.186667pt;}
.y13_c01074{bottom:425.320000pt;}
.y12_c01074{bottom:446.386667pt;}
.y11_c01074{bottom:468.253333pt;}
.y10_c01074{bottom:489.853333pt;}
.yf_c01074{bottom:511.186667pt;}
.ye_c01074{bottom:532.386667pt;}
.yd_c01074{bottom:553.720000pt;}
.yc_c01074{bottom:574.386667pt;}
.yb_c01074{bottom:596.120000pt;}
.ya_c01074{bottom:617.053333pt;}
.y9_c01074{bottom:639.186667pt;}
.y8_c01074{bottom:660.253333pt;}
.y7_c01074{bottom:682.520000pt;}
.y6_c01074{bottom:702.786667pt;}
.y5_c01074{bottom:725.320000pt;}
.y4_c01074{bottom:747.186667pt;}
.y3_c01074{bottom:768.253333pt;}
.y2_c01074{bottom:790.520000pt;}
.y1_c01074{bottom:820.386667pt;}
.h8_c01074{height:11.733399pt;}
.h9_c01074{height:38.937500pt;}
.h3_c01074{height:51.062500pt;}
.h5_c01074{height:70.664062pt;}
.h4_c01074{height:74.906250pt;}
.h7_c01074{height:81.132812pt;}
.h6_c01074{height:94.536458pt;}
.h2_c01074{height:148.557292pt;}
.h0_c01074{height:871.666667pt;}
.h1_c01074{height:872.000000pt;}
.w2_c01074{width:93.222667pt;}
.w0_c01074{width:593.266667pt;}
.w1_c01074{width:593.333333pt;}
.x0_c01074{left:0.000000pt;}
.x3_c01074{left:40.400000pt;}
.x1_c01074{left:41.333333pt;}
.x4_c01074{left:42.533333pt;}
.x6_c01074{left:43.466667pt;}
.x5_c01074{left:44.666667pt;}
.x7_c01074{left:45.600000pt;}
.x8_c01074{left:46.533333pt;}
.x2_c01074{left:62.800000pt;}
.xa_c01074{left:253.801554pt;}
.x9_c01074{left:453.333333pt;}
}





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

.ir_c01075:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01075{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01075;src:url('chunks/assets/font_1f761e927f8bfd4d4623457a.woff2')format("woff");}.ff1_c01075{font-family:ff1_c01075;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01075;src:url('chunks/assets/font_5643e6ff8723f9a0d1649b68.woff2')format("woff");}.ff2_c01075{font-family:ff2_c01075;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01075;src:url('chunks/assets/font_218b30dba7435a1cf625f9aa.woff2')format("woff");}.ff3_c01075{font-family:ff3_c01075;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01075;src:url('chunks/assets/font_0bbe23cdcd9d27f146bf3c29.woff2')format("woff");}.ff4_c01075{font-family:ff4_c01075;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01075;src:url('chunks/assets/font_68fc311428370090c5821a8e.woff2')format("woff");}.ff5_c01075{font-family:ff5_c01075;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01075;src:url('chunks/assets/font_0d9d1b3725b55f992b0238f9.woff2')format("woff");}.ff6_c01075{font-family:ff6_c01075;line-height:1.311035;font-style:normal;font-weight: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_c01075;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c01075{font-family:ff7_c01075;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c01075{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m0_c01075{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01075{vertical-align:0.000000px;}
.ls3_c01075{letter-spacing:-9.000000px;}
.ls1_c01075{letter-spacing:-6.000000px;}
.ls2_c01075{letter-spacing:0.000000px;}
.ls0_c01075{letter-spacing:2.280000px;}
.ls4_c01075{letter-spacing:3.000000px;}
.ls5_c01075{letter-spacing:6.000000px;}
.sc__c01075{text-shadow:none;}
.sc0_c01075{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01075{-webkit-text-stroke:0px transparent;}
.sc0_c01075{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c01075{word-spacing:-73.686000px;}
.ws0_c01075{word-spacing:-70.356000px;}
.ws4_c01075{word-spacing:-60.048000px;}
.ws2_c01075{word-spacing:-17.352000px;}
.ws1_c01075{word-spacing:-13.737000px;}
.ws5_c01075{word-spacing:0.000000px;}
._24_c01075{margin-left:-27.771000px;}
._38_c01075{margin-left:-22.902000px;}
._2d_c01075{margin-left:-18.990000px;}
._0_c01075{margin-left:-15.576000px;}
._26_c01075{margin-left:-13.455000px;}
._25_c01075{margin-left:-11.340000px;}
._21_c01075{margin-left:-9.477000px;}
._3_c01075{margin-left:-7.524000px;}
._31_c01075{margin-left:-6.102000px;}
._2c_c01075{margin-left:-4.896000px;}
._10_c01075{margin-left:-3.744000px;}
._27_c01075{margin-left:-2.730000px;}
._11_c01075{margin-left:-1.656000px;}
._1f_c01075{width:1.020000px;}
._14_c01075{width:2.088000px;}
._4_c01075{width:3.168000px;}
._7_c01075{width:4.257000px;}
._6_c01075{width:5.643000px;}
._b_c01075{width:6.720000px;}
._5_c01075{width:7.722000px;}
._18_c01075{width:9.036000px;}
._16_c01075{width:10.386000px;}
._8_c01075{width:11.682000px;}
._a_c01075{width:12.870000px;}
._19_c01075{width:14.622000px;}
._23_c01075{width:15.888000px;}
._13_c01075{width:16.959000px;}
._12_c01075{width:17.988000px;}
._30_c01075{width:19.143000px;}
._37_c01075{width:21.855000px;}
._22_c01075{width:23.004000px;}
._2a_c01075{width:24.117000px;}
._34_c01075{width:25.200000px;}
._1e_c01075{width:26.370000px;}
._1a_c01075{width:27.819000px;}
._28_c01075{width:28.995000px;}
._15_c01075{width:31.071000px;}
._29_c01075{width:32.328000px;}
._20_c01075{width:33.792000px;}
._9_c01075{width:35.541000px;}
._17_c01075{width:37.377000px;}
._33_c01075{width:39.414000px;}
._35_c01075{width:44.535000px;}
._2e_c01075{width:45.741000px;}
._2_c01075{width:46.848000px;}
._2f_c01075{width:51.975000px;}
._1_c01075{width:59.400000px;}
._36_c01075{width:68.103000px;}
._32_c01075{width:74.289000px;}
._e_c01075{width:99.294000px;}
._2b_c01075{width:110.319000px;}
._1b_c01075{width:121.623000px;}
._f_c01075{width:266.994000px;}
._1d_c01075{width:270.726000px;}
._d_c01075{width:361.608000px;}
._c_c01075{width:472.113000px;}
._1c_c01075{width:700.425000px;}
.fc2_c01075{color:transparent;}
.fc1_c01075{color:rgb(128,128,128);}
.fc0_c01075{color:rgb(0,0,0);}
.fs9_c01075{font-size:48.000000px;}
.fs3_c01075{font-size:57.000000px;}
.fs5_c01075{font-size:72.000000px;}
.fs4_c01075{font-size:78.000000px;}
.fs6_c01075{font-size:81.000000px;}
.fs7_c01075{font-size:87.000000px;}
.fs1_c01075{font-size:99.000000px;}
.fs2_c01075{font-size:102.000000px;}
.fs8_c01075{font-size:108.000000px;}
.fs0_c01075{font-size:132.000000px;}
.y0_c01075{bottom:0.000000px;}
.y27_c01075{bottom:3.105000px;}
.y26_c01075{bottom:7.228371px;}
.y25_c01075{bottom:45.315000px;}
.y24_c01075{bottom:69.165000px;}
.y23_c01075{bottom:94.515000px;}
.y22_c01075{bottom:119.265000px;}
.y21_c01075{bottom:144.165000px;}
.y20_c01075{bottom:168.465000px;}
.y1f_c01075{bottom:192.765000px;}
.y1e_c01075{bottom:217.365000px;}
.y1d_c01075{bottom:242.115000px;}
.y1c_c01075{bottom:266.715000px;}
.y1b_c01075{bottom:291.315000px;}
.y1a_c01075{bottom:315.615000px;}
.y19_c01075{bottom:340.215000px;}
.y18_c01075{bottom:364.815000px;}
.y17_c01075{bottom:388.815000px;}
.y16_c01075{bottom:412.515000px;}
.y15_c01075{bottom:437.115000px;}
.y14_c01075{bottom:461.115000px;}
.y13_c01075{bottom:485.115000px;}
.y12_c01075{bottom:509.415000px;}
.y11_c01075{bottom:534.015000px;}
.y10_c01075{bottom:558.015000px;}
.yf_c01075{bottom:582.315000px;}
.ye_c01075{bottom:606.165000px;}
.yd_c01075{bottom:630.765000px;}
.yc_c01075{bottom:655.065000px;}
.yb_c01075{bottom:679.365000px;}
.ya_c01075{bottom:703.365000px;}
.y9_c01075{bottom:727.065000px;}
.y8_c01075{bottom:751.665000px;}
.y7_c01075{bottom:775.665000px;}
.y6_c01075{bottom:801.015000px;}
.y5_c01075{bottom:823.815000px;}
.y4_c01075{bottom:848.265000px;}
.y3_c01075{bottom:872.565000px;}
.y2_c01075{bottom:892.365000px;}
.y1_c01075{bottom:907.515000px;}
.h8_c01075{height:13.200074px;}
.h9_c01075{height:43.804688px;}
.h5_c01075{height:79.497070px;}
.h4_c01075{height:84.269531px;}
.h6_c01075{height:91.176000px;}
.h3_c01075{height:98.756836px;}
.h7_c01075{height:108.843750px;}
.h2_c01075{height:167.126953px;}
.h1_c01075{height:986.250000px;}
.h0_c01075{height:986.325000px;}
.w2_c01075{width:104.875500px;}
.w0_c01075{width:667.425000px;}
.w1_c01075{width:667.500000px;}
.x0_c01075{left:0.000000px;}
.x3_c01075{left:42.450000px;}
.x2_c01075{left:45.600000px;}
.x6_c01075{left:51.000000px;}
.x7_c01075{left:83.700000px;}
.x1_c01075{left:93.150000px;}
.xd_c01075{left:106.950000px;}
.x9_c01075{left:116.400000px;}
.x8_c01075{left:119.100000px;}
.x5_c01075{left:121.200000px;}
.xf_c01075{left:125.550000px;}
.xe_c01075{left:126.900000px;}
.xc_c01075{left:127.950000px;}
.xb_c01075{left:129.300000px;}
.xa_c01075{left:131.250000px;}
.x4_c01075{left:132.600000px;}
.x11_c01075{left:285.526749px;}
.x10_c01075{left:586.950000px;}
@media print{
.v0_c01075{vertical-align:0.000000pt;}
.ls3_c01075{letter-spacing:-8.000000pt;}
.ls1_c01075{letter-spacing:-5.333333pt;}
.ls2_c01075{letter-spacing:0.000000pt;}
.ls0_c01075{letter-spacing:2.026667pt;}
.ls4_c01075{letter-spacing:2.666667pt;}
.ls5_c01075{letter-spacing:5.333333pt;}
.ws3_c01075{word-spacing:-65.498667pt;}
.ws0_c01075{word-spacing:-62.538667pt;}
.ws4_c01075{word-spacing:-53.376000pt;}
.ws2_c01075{word-spacing:-15.424000pt;}
.ws1_c01075{word-spacing:-12.210667pt;}
.ws5_c01075{word-spacing:0.000000pt;}
._24_c01075{margin-left:-24.685333pt;}
._38_c01075{margin-left:-20.357333pt;}
._2d_c01075{margin-left:-16.880000pt;}
._0_c01075{margin-left:-13.845333pt;}
._26_c01075{margin-left:-11.960000pt;}
._25_c01075{margin-left:-10.080000pt;}
._21_c01075{margin-left:-8.424000pt;}
._3_c01075{margin-left:-6.688000pt;}
._31_c01075{margin-left:-5.424000pt;}
._2c_c01075{margin-left:-4.352000pt;}
._10_c01075{margin-left:-3.328000pt;}
._27_c01075{margin-left:-2.426667pt;}
._11_c01075{margin-left:-1.472000pt;}
._1f_c01075{width:0.906667pt;}
._14_c01075{width:1.856000pt;}
._4_c01075{width:2.816000pt;}
._7_c01075{width:3.784000pt;}
._6_c01075{width:5.016000pt;}
._b_c01075{width:5.973333pt;}
._5_c01075{width:6.864000pt;}
._18_c01075{width:8.032000pt;}
._16_c01075{width:9.232000pt;}
._8_c01075{width:10.384000pt;}
._a_c01075{width:11.440000pt;}
._19_c01075{width:12.997333pt;}
._23_c01075{width:14.122667pt;}
._13_c01075{width:15.074667pt;}
._12_c01075{width:15.989333pt;}
._30_c01075{width:17.016000pt;}
._37_c01075{width:19.426667pt;}
._22_c01075{width:20.448000pt;}
._2a_c01075{width:21.437333pt;}
._34_c01075{width:22.400000pt;}
._1e_c01075{width:23.440000pt;}
._1a_c01075{width:24.728000pt;}
._28_c01075{width:25.773333pt;}
._15_c01075{width:27.618667pt;}
._29_c01075{width:28.736000pt;}
._20_c01075{width:30.037333pt;}
._9_c01075{width:31.592000pt;}
._17_c01075{width:33.224000pt;}
._33_c01075{width:35.034667pt;}
._35_c01075{width:39.586667pt;}
._2e_c01075{width:40.658667pt;}
._2_c01075{width:41.642667pt;}
._2f_c01075{width:46.200000pt;}
._1_c01075{width:52.800000pt;}
._36_c01075{width:60.536000pt;}
._32_c01075{width:66.034667pt;}
._e_c01075{width:88.261333pt;}
._2b_c01075{width:98.061333pt;}
._1b_c01075{width:108.109333pt;}
._f_c01075{width:237.328000pt;}
._1d_c01075{width:240.645333pt;}
._d_c01075{width:321.429333pt;}
._c_c01075{width:419.656000pt;}
._1c_c01075{width:622.600000pt;}
.fs9_c01075{font-size:42.666667pt;}
.fs3_c01075{font-size:50.666667pt;}
.fs5_c01075{font-size:64.000000pt;}
.fs4_c01075{font-size:69.333333pt;}
.fs6_c01075{font-size:72.000000pt;}
.fs7_c01075{font-size:77.333333pt;}
.fs1_c01075{font-size:88.000000pt;}
.fs2_c01075{font-size:90.666667pt;}
.fs8_c01075{font-size:96.000000pt;}
.fs0_c01075{font-size:117.333333pt;}
.y0_c01075{bottom:0.000000pt;}
.y27_c01075{bottom:2.760000pt;}
.y26_c01075{bottom:6.425219pt;}
.y25_c01075{bottom:40.280000pt;}
.y24_c01075{bottom:61.480000pt;}
.y23_c01075{bottom:84.013333pt;}
.y22_c01075{bottom:106.013333pt;}
.y21_c01075{bottom:128.146667pt;}
.y20_c01075{bottom:149.746667pt;}
.y1f_c01075{bottom:171.346667pt;}
.y1e_c01075{bottom:193.213333pt;}
.y1d_c01075{bottom:215.213333pt;}
.y1c_c01075{bottom:237.080000pt;}
.y1b_c01075{bottom:258.946667pt;}
.y1a_c01075{bottom:280.546667pt;}
.y19_c01075{bottom:302.413333pt;}
.y18_c01075{bottom:324.280000pt;}
.y17_c01075{bottom:345.613333pt;}
.y16_c01075{bottom:366.680000pt;}
.y15_c01075{bottom:388.546667pt;}
.y14_c01075{bottom:409.880000pt;}
.y13_c01075{bottom:431.213333pt;}
.y12_c01075{bottom:452.813333pt;}
.y11_c01075{bottom:474.680000pt;}
.y10_c01075{bottom:496.013333pt;}
.yf_c01075{bottom:517.613333pt;}
.ye_c01075{bottom:538.813333pt;}
.yd_c01075{bottom:560.680000pt;}
.yc_c01075{bottom:582.280000pt;}
.yb_c01075{bottom:603.880000pt;}
.ya_c01075{bottom:625.213333pt;}
.y9_c01075{bottom:646.280000pt;}
.y8_c01075{bottom:668.146667pt;}
.y7_c01075{bottom:689.480000pt;}
.y6_c01075{bottom:712.013333pt;}
.y5_c01075{bottom:732.280000pt;}
.y4_c01075{bottom:754.013333pt;}
.y3_c01075{bottom:775.613333pt;}
.y2_c01075{bottom:793.213333pt;}
.y1_c01075{bottom:806.680000pt;}
.h8_c01075{height:11.733399pt;}
.h9_c01075{height:38.937500pt;}
.h5_c01075{height:70.664062pt;}
.h4_c01075{height:74.906250pt;}
.h6_c01075{height:81.045333pt;}
.h3_c01075{height:87.783854pt;}
.h7_c01075{height:96.750000pt;}
.h2_c01075{height:148.557292pt;}
.h1_c01075{height:876.666667pt;}
.h0_c01075{height:876.733333pt;}
.w2_c01075{width:93.222667pt;}
.w0_c01075{width:593.266667pt;}
.w1_c01075{width:593.333333pt;}
.x0_c01075{left:0.000000pt;}
.x3_c01075{left:37.733333pt;}
.x2_c01075{left:40.533333pt;}
.x6_c01075{left:45.333333pt;}
.x7_c01075{left:74.400000pt;}
.x1_c01075{left:82.800000pt;}
.xd_c01075{left:95.066667pt;}
.x9_c01075{left:103.466667pt;}
.x8_c01075{left:105.866667pt;}
.x5_c01075{left:107.733333pt;}
.xf_c01075{left:111.600000pt;}
.xe_c01075{left:112.800000pt;}
.xc_c01075{left:113.733333pt;}
.xb_c01075{left:114.933333pt;}
.xa_c01075{left:116.666667pt;}
.x4_c01075{left:117.866667pt;}
.x11_c01075{left:253.801554pt;}
.x10_c01075{left:521.733333pt;}
}





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

.ir_c01076:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01076{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01076;src:url('chunks/assets/font_15a29bbcccdb66903eae4ae5.woff2')format("woff");}.ff1_c01076{font-family:ff1_c01076;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01076;src:url('chunks/assets/font_45bf05844b3f9d246909d425.woff2')format("woff");}.ff2_c01076{font-family:ff2_c01076;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01076;src:url('chunks/assets/font_c03221862a356013a5a31edd.woff2')format("woff");}.ff3_c01076{font-family:ff3_c01076;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01076;src:url('chunks/assets/font_18b4f42a96bd3d21570ebd3a.woff2')format("woff");}.ff4_c01076{font-family:ff4_c01076;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01076;src:url('chunks/assets/font_145c4260c6694d7ab0a9b30c.woff2')format("woff");}.ff5_c01076{font-family:ff5_c01076;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01076;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c01076{font-family:ff6_c01076;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01076{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01076{vertical-align:0.000000px;}
.v1_c01076{vertical-align:153.000000px;}
.ls4_c01076{letter-spacing:-6.000000px;}
.ls3_c01076{letter-spacing:0.000000px;}
.ls5_c01076{letter-spacing:3.000000px;}
.ls1_c01076{letter-spacing:4.008000px;}
.ls0_c01076{letter-spacing:9.402000px;}
.ls2_c01076{letter-spacing:54.156000px;}
.sc__c01076{text-shadow:none;}
.sc0_c01076{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01076{-webkit-text-stroke:0px transparent;}
.sc0_c01076{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01076{word-spacing:-17.352000px;}
.ws1_c01076{word-spacing:0.000000px;}
._20_c01076{margin-left:-22.116000px;}
._14_c01076{margin-left:-20.979000px;}
._18_c01076{margin-left:-17.865000px;}
._16_c01076{margin-left:-14.310000px;}
._19_c01076{margin-left:-11.568000px;}
._e_c01076{margin-left:-9.657000px;}
._c_c01076{margin-left:-8.622000px;}
._4_c01076{margin-left:-6.930000px;}
._a_c01076{margin-left:-5.733000px;}
._b_c01076{margin-left:-4.725000px;}
._3_c01076{margin-left:-2.970000px;}
._0_c01076{margin-left:-1.485000px;}
._1_c01076{width:1.683000px;}
._2_c01076{width:3.366000px;}
._9_c01076{width:4.437000px;}
._6_c01076{width:6.336000px;}
._d_c01076{width:7.578000px;}
._10_c01076{width:9.540000px;}
._f_c01076{width:10.611000px;}
._23_c01076{width:11.826000px;}
._7_c01076{width:12.870000px;}
._15_c01076{width:14.562000px;}
._1f_c01076{width:15.942000px;}
._5_c01076{width:17.325000px;}
._24_c01076{width:21.411000px;}
._21_c01076{width:23.493000px;}
._1b_c01076{width:31.464000px;}
._22_c01076{width:34.833000px;}
._12_c01076{width:38.718000px;}
._1a_c01076{width:40.581000px;}
._1c_c01076{width:45.306000px;}
._1d_c01076{width:65.673000px;}
._25_c01076{width:183.009000px;}
._8_c01076{width:184.701000px;}
._1e_c01076{width:237.690000px;}
._17_c01076{width:266.598000px;}
._13_c01076{width:273.888000px;}
._26_c01076{width:274.920000px;}
._11_c01076{width:284.841000px;}
.fc2_c01076{color:transparent;}
.fc1_c01076{color:rgb(128,128,128);}
.fc0_c01076{color:rgb(0,0,0);}
.fs9_c01076{font-size:48.000000px;}
.fs5_c01076{font-size:57.000000px;}
.fs3_c01076{font-size:72.000000px;}
.fs4_c01076{font-size:78.000000px;}
.fs2_c01076{font-size:81.000000px;}
.fs7_c01076{font-size:87.000000px;}
.fs0_c01076{font-size:99.000000px;}
.fs8_c01076{font-size:102.000000px;}
.fs1_c01076{font-size:132.000000px;}
.fs6_c01076{font-size:282.000000px;}
.y0_c01076{bottom:0.000000px;}
.y25_c01076{bottom:3.105000px;}
.y24_c01076{bottom:7.228369px;}
.y23_c01076{bottom:73.470000px;}
.y22_c01076{bottom:101.820000px;}
.y21_c01076{bottom:127.620000px;}
.y20_c01076{bottom:151.170000px;}
.y1e_c01076{bottom:162.270000px;}
.y1f_c01076{bottom:176.520000px;}
.y1d_c01076{bottom:224.370000px;}
.y1c_c01076{bottom:273.720000px;}
.y1b_c01076{bottom:296.970000px;}
.y1a_c01076{bottom:320.970000px;}
.y19_c01076{bottom:344.970000px;}
.y18_c01076{bottom:368.520000px;}
.y17_c01076{bottom:392.820000px;}
.y16_c01076{bottom:416.820000px;}
.y15_c01076{bottom:440.820000px;}
.y14_c01076{bottom:464.070000px;}
.y13_c01076{bottom:488.370000px;}
.y12_c01076{bottom:512.370000px;}
.y11_c01076{bottom:536.220000px;}
.y10_c01076{bottom:559.920000px;}
.yf_c01076{bottom:583.770000px;}
.ye_c01076{bottom:607.470000px;}
.yd_c01076{bottom:631.470000px;}
.yc_c01076{bottom:654.720000px;}
.yb_c01076{bottom:679.320000px;}
.ya_c01076{bottom:703.320000px;}
.y9_c01076{bottom:727.620000px;}
.y8_c01076{bottom:751.170000px;}
.y7_c01076{bottom:775.470000px;}
.y6_c01076{bottom:799.170000px;}
.y5_c01076{bottom:823.170000px;}
.y4_c01076{bottom:847.170000px;}
.y3_c01076{bottom:871.020000px;}
.y2_c01076{bottom:895.020000px;}
.y1_c01076{bottom:929.070000px;}
.h8_c01076{height:13.200073px;}
.h9_c01076{height:43.804688px;}
.h3_c01076{height:79.497070px;}
.h4_c01076{height:91.160156px;}
.h5_c01076{height:98.756836px;}
.h7_c01076{height:100.057617px;}
.h2_c01076{height:167.126953px;}
.h6_c01076{height:276.767578px;}
.h0_c01076{height:991.950000px;}
.h1_c01076{height:992.250000px;}
.w2_c01076{width:104.875500px;}
.w1_c01076{width:678.750000px;}
.w0_c01076{width:679.050000px;}
.x0_c01076{left:0.000000px;}
.x2_c01076{left:57.600000px;}
.x3_c01076{left:58.650000px;}
.x4_c01076{left:59.700000px;}
.x5_c01076{left:61.350000px;}
.x6_c01076{left:62.700000px;}
.x7_c01076{left:64.050000px;}
.x8_c01076{left:65.400000px;}
.xa_c01076{left:66.450000px;}
.x9_c01076{left:67.800000px;}
.xb_c01076{left:69.900000px;}
.xc_c01076{left:71.250000px;}
.x1_c01076{left:72.600000px;}
.xe_c01076{left:77.250000px;}
.xf_c01076{left:117.450000px;}
.xd_c01076{left:167.400000px;}
.x11_c01076{left:291.339249px;}
.x10_c01076{left:366.900000px;}
@media print{
.v0_c01076{vertical-align:0.000000pt;}
.v1_c01076{vertical-align:136.000000pt;}
.ls4_c01076{letter-spacing:-5.333333pt;}
.ls3_c01076{letter-spacing:0.000000pt;}
.ls5_c01076{letter-spacing:2.666667pt;}
.ls1_c01076{letter-spacing:3.562667pt;}
.ls0_c01076{letter-spacing:8.357333pt;}
.ls2_c01076{letter-spacing:48.138667pt;}
.ws0_c01076{word-spacing:-15.424000pt;}
.ws1_c01076{word-spacing:0.000000pt;}
._20_c01076{margin-left:-19.658667pt;}
._14_c01076{margin-left:-18.648000pt;}
._18_c01076{margin-left:-15.880000pt;}
._16_c01076{margin-left:-12.720000pt;}
._19_c01076{margin-left:-10.282667pt;}
._e_c01076{margin-left:-8.584000pt;}
._c_c01076{margin-left:-7.664000pt;}
._4_c01076{margin-left:-6.160000pt;}
._a_c01076{margin-left:-5.096000pt;}
._b_c01076{margin-left:-4.200000pt;}
._3_c01076{margin-left:-2.640000pt;}
._0_c01076{margin-left:-1.320000pt;}
._1_c01076{width:1.496000pt;}
._2_c01076{width:2.992000pt;}
._9_c01076{width:3.944000pt;}
._6_c01076{width:5.632000pt;}
._d_c01076{width:6.736000pt;}
._10_c01076{width:8.480000pt;}
._f_c01076{width:9.432000pt;}
._23_c01076{width:10.512000pt;}
._7_c01076{width:11.440000pt;}
._15_c01076{width:12.944000pt;}
._1f_c01076{width:14.170667pt;}
._5_c01076{width:15.400000pt;}
._24_c01076{width:19.032000pt;}
._21_c01076{width:20.882667pt;}
._1b_c01076{width:27.968000pt;}
._22_c01076{width:30.962667pt;}
._12_c01076{width:34.416000pt;}
._1a_c01076{width:36.072000pt;}
._1c_c01076{width:40.272000pt;}
._1d_c01076{width:58.376000pt;}
._25_c01076{width:162.674667pt;}
._8_c01076{width:164.178667pt;}
._1e_c01076{width:211.280000pt;}
._17_c01076{width:236.976000pt;}
._13_c01076{width:243.456000pt;}
._26_c01076{width:244.373333pt;}
._11_c01076{width:253.192000pt;}
.fs9_c01076{font-size:42.666667pt;}
.fs5_c01076{font-size:50.666667pt;}
.fs3_c01076{font-size:64.000000pt;}
.fs4_c01076{font-size:69.333333pt;}
.fs2_c01076{font-size:72.000000pt;}
.fs7_c01076{font-size:77.333333pt;}
.fs0_c01076{font-size:88.000000pt;}
.fs8_c01076{font-size:90.666667pt;}
.fs1_c01076{font-size:117.333333pt;}
.fs6_c01076{font-size:250.666667pt;}
.y0_c01076{bottom:0.000000pt;}
.y25_c01076{bottom:2.760000pt;}
.y24_c01076{bottom:6.425217pt;}
.y23_c01076{bottom:65.306667pt;}
.y22_c01076{bottom:90.506667pt;}
.y21_c01076{bottom:113.440000pt;}
.y20_c01076{bottom:134.373333pt;}
.y1e_c01076{bottom:144.240000pt;}
.y1f_c01076{bottom:156.906667pt;}
.y1d_c01076{bottom:199.440000pt;}
.y1c_c01076{bottom:243.306667pt;}
.y1b_c01076{bottom:263.973333pt;}
.y1a_c01076{bottom:285.306667pt;}
.y19_c01076{bottom:306.640000pt;}
.y18_c01076{bottom:327.573333pt;}
.y17_c01076{bottom:349.173333pt;}
.y16_c01076{bottom:370.506667pt;}
.y15_c01076{bottom:391.840000pt;}
.y14_c01076{bottom:412.506667pt;}
.y13_c01076{bottom:434.106667pt;}
.y12_c01076{bottom:455.440000pt;}
.y11_c01076{bottom:476.640000pt;}
.y10_c01076{bottom:497.706667pt;}
.yf_c01076{bottom:518.906667pt;}
.ye_c01076{bottom:539.973333pt;}
.yd_c01076{bottom:561.306667pt;}
.yc_c01076{bottom:581.973333pt;}
.yb_c01076{bottom:603.840000pt;}
.ya_c01076{bottom:625.173333pt;}
.y9_c01076{bottom:646.773333pt;}
.y8_c01076{bottom:667.706667pt;}
.y7_c01076{bottom:689.306667pt;}
.y6_c01076{bottom:710.373333pt;}
.y5_c01076{bottom:731.706667pt;}
.y4_c01076{bottom:753.040000pt;}
.y3_c01076{bottom:774.240000pt;}
.y2_c01076{bottom:795.573333pt;}
.y1_c01076{bottom:825.840000pt;}
.h8_c01076{height:11.733399pt;}
.h9_c01076{height:38.937500pt;}
.h3_c01076{height:70.664062pt;}
.h4_c01076{height:81.031250pt;}
.h5_c01076{height:87.783854pt;}
.h7_c01076{height:88.940104pt;}
.h2_c01076{height:148.557292pt;}
.h6_c01076{height:246.015625pt;}
.h0_c01076{height:881.733333pt;}
.h1_c01076{height:882.000000pt;}
.w2_c01076{width:93.222667pt;}
.w1_c01076{width:603.333333pt;}
.w0_c01076{width:603.600000pt;}
.x0_c01076{left:0.000000pt;}
.x2_c01076{left:51.200000pt;}
.x3_c01076{left:52.133333pt;}
.x4_c01076{left:53.066667pt;}
.x5_c01076{left:54.533333pt;}
.x6_c01076{left:55.733333pt;}
.x7_c01076{left:56.933333pt;}
.x8_c01076{left:58.133333pt;}
.xa_c01076{left:59.066667pt;}
.x9_c01076{left:60.266667pt;}
.xb_c01076{left:62.133333pt;}
.xc_c01076{left:63.333333pt;}
.x1_c01076{left:64.533333pt;}
.xe_c01076{left:68.666667pt;}
.xf_c01076{left:104.400000pt;}
.xd_c01076{left:148.800000pt;}
.x11_c01076{left:258.968221pt;}
.x10_c01076{left:326.133333pt;}
}





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

.ir_c01077:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01077{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01077;src:url('chunks/assets/font_01f74f9c0f32ee188c615d83.woff2')format("woff");}.ff1_c01077{font-family:ff1_c01077;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01077;src:url('chunks/assets/font_ddcc0006c79b3b1bbe5790de.woff2')format("woff");}.ff2_c01077{font-family:ff2_c01077;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01077;src:url('chunks/assets/font_67cc6a30c67151d0e48875cd.woff2')format("woff");}.ff3_c01077{font-family:ff3_c01077;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01077;src:url('chunks/assets/font_ad7d4644e59bb0c811344e67.woff2')format("woff");}.ff4_c01077{font-family:ff4_c01077;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01077;src:url('chunks/assets/font_a1e6262bf61aab79b1da65cd.woff2')format("woff");}.ff5_c01077{font-family:ff5_c01077;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01077;src:url('chunks/assets/font_728fbdaad1b79f1f20f6cda6.woff2')format("woff");}.ff6_c01077{font-family:ff6_c01077;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01077;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c01077{font-family:ff7_c01077;line-height:1.219238;font-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_c01077{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m0_c01077{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01077{vertical-align:0.000000px;}
.ls3_c01077{letter-spacing:0.000000px;}
.ls1_c01077{letter-spacing:2.712000px;}
.ls6_c01077{letter-spacing:3.000000px;}
.ls2_c01077{letter-spacing:3.900000px;}
.ls0_c01077{letter-spacing:4.200000px;}
.ls4_c01077{letter-spacing:6.000000px;}
.ls5_c01077{letter-spacing:9.000000px;}
.sc__c01077{text-shadow:none;}
.sc0_c01077{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01077{-webkit-text-stroke:0px transparent;}
.sc0_c01077{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01077{word-spacing:-73.686000px;}
.ws4_c01077{word-spacing:-26.352000px;}
.ws3_c01077{word-spacing:-20.250000px;}
.ws0_c01077{word-spacing:-17.352000px;}
.ws5_c01077{word-spacing:0.000000px;}
.ws1_c01077{word-spacing:0.600000px;}
._17_c01077{margin-left:-24.867000px;}
._20_c01077{margin-left:-22.842000px;}
._0_c01077{margin-left:-20.088000px;}
._21_c01077{margin-left:-17.010000px;}
._1e_c01077{margin-left:-15.957000px;}
._10_c01077{margin-left:-13.629000px;}
._23_c01077{margin-left:-10.206000px;}
._f_c01077{margin-left:-8.643000px;}
._1_c01077{margin-left:-7.371000px;}
._d_c01077{margin-left:-6.192000px;}
._5_c01077{margin-left:-5.184000px;}
._a_c01077{margin-left:-3.564000px;}
._7_c01077{margin-left:-2.430000px;}
._b_c01077{margin-left:-1.215000px;}
._8_c01077{width:1.539000px;}
._3_c01077{width:2.754000px;}
._1c_c01077{width:3.765000px;}
._2_c01077{width:4.779000px;}
._6_c01077{width:6.480000px;}
._4_c01077{width:7.533000px;}
._9_c01077{width:9.072000px;}
._14_c01077{width:10.380000px;}
._12_c01077{width:11.421000px;}
._13_c01077{width:13.041000px;}
._11_c01077{width:14.256000px;}
._1a_c01077{width:16.221000px;}
._c_c01077{width:18.453000px;}
._e_c01077{width:31.617000px;}
._15_c01077{width:37.482000px;}
._18_c01077{width:55.323000px;}
._22_c01077{width:140.286000px;}
._1b_c01077{width:205.335000px;}
._16_c01077{width:276.900000px;}
._1f_c01077{width:334.044000px;}
._1d_c01077{width:338.337000px;}
._19_c01077{width:440.343000px;}
.fc2_c01077{color:transparent;}
.fc1_c01077{color:rgb(128,128,128);}
.fc0_c01077{color:rgb(0,0,0);}
.fs7_c01077{font-size:48.000000px;}
.fs4_c01077{font-size:51.000000px;}
.fs2_c01077{font-size:66.000000px;}
.fs6_c01077{font-size:69.000000px;}
.fs1_c01077{font-size:72.000000px;}
.fs3_c01077{font-size:75.000000px;}
.fs0_c01077{font-size:81.000000px;}
.fs5_c01077{font-size:87.000000px;}
.y0_c01077{bottom:0.000000px;}
.y25_c01077{bottom:3.105000px;}
.y24_c01077{bottom:7.228371px;}
.y23_c01077{bottom:73.215000px;}
.y22_c01077{bottom:95.865000px;}
.y21_c01077{bottom:123.165000px;}
.y20_c01077{bottom:146.115000px;}
.y1f_c01077{bottom:169.515000px;}
.y1e_c01077{bottom:193.515000px;}
.y1d_c01077{bottom:218.415000px;}
.y1c_c01077{bottom:242.715000px;}
.y1b_c01077{bottom:266.715000px;}
.y1a_c01077{bottom:291.015000px;}
.y19_c01077{bottom:315.315000px;}
.y18_c01077{bottom:339.315000px;}
.y17_c01077{bottom:363.465000px;}
.y16_c01077{bottom:387.915000px;}
.y15_c01077{bottom:412.065000px;}
.y14_c01077{bottom:436.065000px;}
.y13_c01077{bottom:459.765000px;}
.y12_c01077{bottom:484.065000px;}
.y11_c01077{bottom:507.915000px;}
.y10_c01077{bottom:531.915000px;}
.yf_c01077{bottom:555.615000px;}
.ye_c01077{bottom:579.465000px;}
.yd_c01077{bottom:603.915000px;}
.yc_c01077{bottom:628.065000px;}
.yb_c01077{bottom:653.865000px;}
.ya_c01077{bottom:675.315000px;}
.y9_c01077{bottom:700.065000px;}
.y8_c01077{bottom:723.915000px;}
.y7_c01077{bottom:748.215000px;}
.y6_c01077{bottom:771.915000px;}
.y5_c01077{bottom:795.465000px;}
.y4_c01077{bottom:819.465000px;}
.y3_c01077{bottom:843.465000px;}
.y2_c01077{bottom:867.165000px;}
.y1_c01077{bottom:891.015000px;}
.h8_c01077{height:13.200074px;}
.h9_c01077{height:43.804688px;}
.h5_c01077{height:75.585938px;}
.h2_c01077{height:79.497070px;}
.h4_c01077{height:84.269531px;}
.h7_c01077{height:87.361816px;}
.h3_c01077{height:91.160156px;}
.h6_c01077{height:91.176000px;}
.h1_c01077{height:986.250000px;}
.h0_c01077{height:986.325000px;}
.w2_c01077{width:104.875500px;}
.w0_c01077{width:667.425000px;}
.w1_c01077{width:667.500000px;}
.x0_c01077{left:0.000000px;}
.xf_c01077{left:24.750000px;}
.xd_c01077{left:27.000000px;}
.x5_c01077{left:31.050000px;}
.x2_c01077{left:32.700000px;}
.x4_c01077{left:33.750000px;}
.x9_c01077{left:38.850000px;}
.x6_c01077{left:51.000000px;}
.xb_c01077{left:90.450000px;}
.x8_c01077{left:101.700000px;}
.x12_c01077{left:116.100000px;}
.x11_c01077{left:117.150000px;}
.x10_c01077{left:118.500000px;}
.xe_c01077{left:119.850000px;}
.xc_c01077{left:122.250000px;}
.xa_c01077{left:123.600000px;}
.x7_c01077{left:125.550000px;}
.x1_c01077{left:128.550000px;}
.x3_c01077{left:130.500000px;}
.x14_c01077{left:285.526749px;}
.x13_c01077{left:540.450000px;}
@media print{
.v0_c01077{vertical-align:0.000000pt;}
.ls3_c01077{letter-spacing:0.000000pt;}
.ls1_c01077{letter-spacing:2.410667pt;}
.ls6_c01077{letter-spacing:2.666667pt;}
.ls2_c01077{letter-spacing:3.466667pt;}
.ls0_c01077{letter-spacing:3.733333pt;}
.ls4_c01077{letter-spacing:5.333333pt;}
.ls5_c01077{letter-spacing:8.000000pt;}
.ws2_c01077{word-spacing:-65.498667pt;}
.ws4_c01077{word-spacing:-23.424000pt;}
.ws3_c01077{word-spacing:-18.000000pt;}
.ws0_c01077{word-spacing:-15.424000pt;}
.ws5_c01077{word-spacing:0.000000pt;}
.ws1_c01077{word-spacing:0.533333pt;}
._17_c01077{margin-left:-22.104000pt;}
._20_c01077{margin-left:-20.304000pt;}
._0_c01077{margin-left:-17.856000pt;}
._21_c01077{margin-left:-15.120000pt;}
._1e_c01077{margin-left:-14.184000pt;}
._10_c01077{margin-left:-12.114667pt;}
._23_c01077{margin-left:-9.072000pt;}
._f_c01077{margin-left:-7.682667pt;}
._1_c01077{margin-left:-6.552000pt;}
._d_c01077{margin-left:-5.504000pt;}
._5_c01077{margin-left:-4.608000pt;}
._a_c01077{margin-left:-3.168000pt;}
._7_c01077{margin-left:-2.160000pt;}
._b_c01077{margin-left:-1.080000pt;}
._8_c01077{width:1.368000pt;}
._3_c01077{width:2.448000pt;}
._1c_c01077{width:3.346667pt;}
._2_c01077{width:4.248000pt;}
._6_c01077{width:5.760000pt;}
._4_c01077{width:6.696000pt;}
._9_c01077{width:8.064000pt;}
._14_c01077{width:9.226667pt;}
._12_c01077{width:10.152000pt;}
._13_c01077{width:11.592000pt;}
._11_c01077{width:12.672000pt;}
._1a_c01077{width:14.418667pt;}
._c_c01077{width:16.402667pt;}
._e_c01077{width:28.104000pt;}
._15_c01077{width:33.317333pt;}
._18_c01077{width:49.176000pt;}
._22_c01077{width:124.698667pt;}
._1b_c01077{width:182.520000pt;}
._16_c01077{width:246.133333pt;}
._1f_c01077{width:296.928000pt;}
._1d_c01077{width:300.744000pt;}
._19_c01077{width:391.416000pt;}
.fs7_c01077{font-size:42.666667pt;}
.fs4_c01077{font-size:45.333333pt;}
.fs2_c01077{font-size:58.666667pt;}
.fs6_c01077{font-size:61.333333pt;}
.fs1_c01077{font-size:64.000000pt;}
.fs3_c01077{font-size:66.666667pt;}
.fs0_c01077{font-size:72.000000pt;}
.fs5_c01077{font-size:77.333333pt;}
.y0_c01077{bottom:0.000000pt;}
.y25_c01077{bottom:2.760000pt;}
.y24_c01077{bottom:6.425219pt;}
.y23_c01077{bottom:65.080000pt;}
.y22_c01077{bottom:85.213333pt;}
.y21_c01077{bottom:109.480000pt;}
.y20_c01077{bottom:129.880000pt;}
.y1f_c01077{bottom:150.680000pt;}
.y1e_c01077{bottom:172.013333pt;}
.y1d_c01077{bottom:194.146667pt;}
.y1c_c01077{bottom:215.746667pt;}
.y1b_c01077{bottom:237.080000pt;}
.y1a_c01077{bottom:258.680000pt;}
.y19_c01077{bottom:280.280000pt;}
.y18_c01077{bottom:301.613333pt;}
.y17_c01077{bottom:323.080000pt;}
.y16_c01077{bottom:344.813333pt;}
.y15_c01077{bottom:366.280000pt;}
.y14_c01077{bottom:387.613333pt;}
.y13_c01077{bottom:408.680000pt;}
.y12_c01077{bottom:430.280000pt;}
.y11_c01077{bottom:451.480000pt;}
.y10_c01077{bottom:472.813333pt;}
.yf_c01077{bottom:493.880000pt;}
.ye_c01077{bottom:515.080000pt;}
.yd_c01077{bottom:536.813333pt;}
.yc_c01077{bottom:558.280000pt;}
.yb_c01077{bottom:581.213333pt;}
.ya_c01077{bottom:600.280000pt;}
.y9_c01077{bottom:622.280000pt;}
.y8_c01077{bottom:643.480000pt;}
.y7_c01077{bottom:665.080000pt;}
.y6_c01077{bottom:686.146667pt;}
.y5_c01077{bottom:707.080000pt;}
.y4_c01077{bottom:728.413333pt;}
.y3_c01077{bottom:749.746667pt;}
.y2_c01077{bottom:770.813333pt;}
.y1_c01077{bottom:792.013333pt;}
.h8_c01077{height:11.733399pt;}
.h9_c01077{height:38.937500pt;}
.h5_c01077{height:67.187500pt;}
.h2_c01077{height:70.664062pt;}
.h4_c01077{height:74.906250pt;}
.h7_c01077{height:77.654948pt;}
.h3_c01077{height:81.031250pt;}
.h6_c01077{height:81.045333pt;}
.h1_c01077{height:876.666667pt;}
.h0_c01077{height:876.733333pt;}
.w2_c01077{width:93.222667pt;}
.w0_c01077{width:593.266667pt;}
.w1_c01077{width:593.333333pt;}
.x0_c01077{left:0.000000pt;}
.xf_c01077{left:22.000000pt;}
.xd_c01077{left:24.000000pt;}
.x5_c01077{left:27.600000pt;}
.x2_c01077{left:29.066667pt;}
.x4_c01077{left:30.000000pt;}
.x9_c01077{left:34.533333pt;}
.x6_c01077{left:45.333333pt;}
.xb_c01077{left:80.400000pt;}
.x8_c01077{left:90.400000pt;}
.x12_c01077{left:103.200000pt;}
.x11_c01077{left:104.133333pt;}
.x10_c01077{left:105.333333pt;}
.xe_c01077{left:106.533333pt;}
.xc_c01077{left:108.666667pt;}
.xa_c01077{left:109.866667pt;}
.x7_c01077{left:111.600000pt;}
.x1_c01077{left:114.266667pt;}
.x3_c01077{left:116.000000pt;}
.x14_c01077{left:253.801554pt;}
.x13_c01077{left:480.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_c01078 {
    display:none;
  }
  .loading-indicator_c01078.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01078 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01078 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01078" -> "#page-container .classname_c01078")
 */
.pf_c01078 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01078 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01078.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01078 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01078 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01078 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01078 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01078 {overflow:visible;}
  }
}
.c_c01078 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01078 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01078:after { /* webkit #35443 */
  content: '';
}
.t_c01078:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01078 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01078 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01078 { /* info for Javascript */
  display:none;
}
.l_c01078 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01078 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01078 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01078:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01078{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01078;src:url('chunks/assets/font_6ee02608762b281c4fe3cf9d.woff2')format("woff");}.ff1_c01078{font-family:ff1_c01078;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01078;src:url('chunks/assets/font_51de957d7902a1a1c13cc732.woff2')format("woff");}.ff2_c01078{font-family:ff2_c01078;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01078;src:url('chunks/assets/font_994c9940b38ec88573c43c5c.woff2')format("woff");}.ff3_c01078{font-family:ff3_c01078;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01078;src:url('chunks/assets/font_39648ad90a61fff545f6053a.woff2')format("woff");}.ff4_c01078{font-family:ff4_c01078;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01078;src:url('chunks/assets/font_cbf7f3fd06bf8b936f20fb38.woff2')format("woff");}.ff5_c01078{font-family:ff5_c01078;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01078;src:url('chunks/assets/font_19ac605d041384d35616409e.woff2')format("woff");}.ff6_c01078{font-family:ff6_c01078;line-height:1.437000;font-style:normal;font-weight: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_c01078;src:url('chunks/assets/font_cbc770f6af8dc8c4d2a466ed.woff2')format("woff");}.ff7_c01078{font-family:ff7_c01078;line-height:1.284180;font-style:normal;font-weight: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_c01078;src:url('chunks/assets/font_232f7c675bee567fb01db42d.woff2')format("woff");}.ff8_c01078{font-family:ff8_c01078;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c01078;src:url('chunks/assets/font_15c665220e67dd68c6a9e988.woff2')format("woff");}.ff9_c01078{font-family:ff9_c01078;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c01078;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ffa_c01078{font-family:ffa_c01078;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01078{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01078{vertical-align:0.000000px;}
.ls6_c01078{letter-spacing:-12.000000px;}
.ls4_c01078{letter-spacing:-6.000000px;}
.ls5_c01078{letter-spacing:-3.000000px;}
.ls3_c01078{letter-spacing:0.000000px;}
.ls0_c01078{letter-spacing:4.554000px;}
.ls1_c01078{letter-spacing:6.000000px;}
.ls2_c01078{letter-spacing:21.786000px;}
.sc__c01078{text-shadow:none;}
.sc0_c01078{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01078{-webkit-text-stroke:0px transparent;}
.sc0_c01078{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c01078{word-spacing:-73.686000px;}
.ws0_c01078{word-spacing:-23.859000px;}
.ws1_c01078{word-spacing:-19.065600px;}
.ws4_c01078{word-spacing:-18.000000px;}
.ws2_c01078{word-spacing:-17.352000px;}
.ws5_c01078{word-spacing:0.000000px;}
._27_c01078{margin-left:-26.040000px;}
._24_c01078{margin-left:-20.913000px;}
._28_c01078{margin-left:-19.218000px;}
._7_c01078{margin-left:-15.537000px;}
._a_c01078{margin-left:-13.464000px;}
._3_c01078{margin-left:-11.880000px;}
._25_c01078{margin-left:-10.752000px;}
._9_c01078{margin-left:-9.609000px;}
._4_c01078{margin-left:-7.812000px;}
._1a_c01078{margin-left:-6.156000px;}
._2_c01078{margin-left:-4.569000px;}
._0_c01078{margin-left:-3.564000px;}
._1_c01078{margin-left:-2.376000px;}
._8_c01078{margin-left:-1.188000px;}
._c_c01078{width:1.320000px;}
._b_c01078{width:2.592000px;}
._14_c01078{width:4.548000px;}
._12_c01078{width:5.799000px;}
._d_c01078{width:7.353000px;}
._10_c01078{width:8.607000px;}
._15_c01078{width:10.119000px;}
._6_c01078{width:11.484000px;}
._5_c01078{width:12.870000px;}
._20_c01078{width:14.019000px;}
._f_c01078{width:15.333000px;}
._e_c01078{width:16.587000px;}
._19_c01078{width:17.889000px;}
._13_c01078{width:19.467000px;}
._11_c01078{width:20.634000px;}
._18_c01078{width:21.975000px;}
._17_c01078{width:23.115000px;}
._16_c01078{width:25.413000px;}
._29_c01078{width:27.504000px;}
._1e_c01078{width:28.788000px;}
._23_c01078{width:29.892000px;}
._26_c01078{width:31.266000px;}
._1b_c01078{width:35.721000px;}
._22_c01078{width:40.473000px;}
._2a_c01078{width:44.655000px;}
._2b_c01078{width:53.493000px;}
._1f_c01078{width:152.094000px;}
._2c_c01078{width:188.910000px;}
._1d_c01078{width:236.616000px;}
._1c_c01078{width:273.786000px;}
._2d_c01078{width:332.775000px;}
._21_c01078{width:342.315000px;}
.fc2_c01078{color:transparent;}
.fc1_c01078{color:rgb(128,128,128);}
.fc0_c01078{color:rgb(0,0,0);}
.fs9_c01078{font-size:48.000000px;}
.fs8_c01078{font-size:54.000000px;}
.fs2_c01078{font-size:57.000000px;}
.fs4_c01078{font-size:57.600000px;}
.fs7_c01078{font-size:60.000000px;}
.fs5_c01078{font-size:72.000000px;}
.fs3_c01078{font-size:81.000000px;}
.fs6_c01078{font-size:87.000000px;}
.fs0_c01078{font-size:99.000000px;}
.fs1_c01078{font-size:132.000000px;}
.y0_c01078{bottom:0.000000px;}
.y26_c01078{bottom:3.105000px;}
.y25_c01078{bottom:7.228369px;}
.y24_c01078{bottom:79.320000px;}
.y23_c01078{bottom:104.220000px;}
.y22_c01078{bottom:129.270000px;}
.y21_c01078{bottom:154.170000px;}
.y20_c01078{bottom:178.770000px;}
.y1f_c01078{bottom:203.070000px;}
.y1e_c01078{bottom:227.820000px;}
.y1d_c01078{bottom:251.820000px;}
.y1c_c01078{bottom:275.670000px;}
.y1b_c01078{bottom:299.670000px;}
.y1a_c01078{bottom:323.370000px;}
.y19_c01078{bottom:347.970000px;}
.y18_c01078{bottom:371.820000px;}
.y17_c01078{bottom:395.820000px;}
.y16_c01078{bottom:420.120000px;}
.y15_c01078{bottom:444.120000px;}
.y14_c01078{bottom:468.120000px;}
.y13_c01078{bottom:492.120000px;}
.y12_c01078{bottom:516.420000px;}
.y11_c01078{bottom:539.670000px;}
.y10_c01078{bottom:563.520000px;}
.yf_c01078{bottom:586.920000px;}
.ye_c01078{bottom:610.920000px;}
.yd_c01078{bottom:634.170000px;}
.yc_c01078{bottom:658.170000px;}
.yb_c01078{bottom:681.420000px;}
.ya_c01078{bottom:705.720000px;}
.y9_c01078{bottom:729.570000px;}
.y8_c01078{bottom:754.320000px;}
.y7_c01078{bottom:778.170000px;}
.y6_c01078{bottom:801.270000px;}
.y5_c01078{bottom:827.220000px;}
.y4_c01078{bottom:849.420000px;}
.y3_c01078{bottom:874.020000px;}
.y2_c01078{bottom:896.070000px;}
.y1_c01078{bottom:930.720000px;}
.h8_c01078{height:13.200073px;}
.h9_c01078{height:43.804688px;}
.h3_c01078{height:57.445312px;}
.h7_c01078{height:68.370117px;}
.h4_c01078{height:79.497070px;}
.h6_c01078{height:91.160156px;}
.h5_c01078{height:91.176000px;}
.h2_c01078{height:167.126953px;}
.h1_c01078{height:986.250000px;}
.h0_c01078{height:986.550000px;}
.w1_c01078{width:104.875500px;}
.w0_c01078{width:672.000000px;}
.x0_c01078{left:0.000000px;}
.x7_c01078{left:51.000000px;}
.x5_c01078{left:52.200000px;}
.x8_c01078{left:54.600000px;}
.xa_c01078{left:55.650000px;}
.x9_c01078{left:57.000000px;}
.x2_c01078{left:58.650000px;}
.x3_c01078{left:60.150000px;}
.x4_c01078{left:61.350000px;}
.x6_c01078{left:81.300000px;}
.x1_c01078{left:89.400000px;}
.xc_c01078{left:287.814240px;}
.xb_c01078{left:366.900000px;}
@media print{
.v0_c01078{vertical-align:0.000000pt;}
.ls6_c01078{letter-spacing:-10.666667pt;}
.ls4_c01078{letter-spacing:-5.333333pt;}
.ls5_c01078{letter-spacing:-2.666667pt;}
.ls3_c01078{letter-spacing:0.000000pt;}
.ls0_c01078{letter-spacing:4.048000pt;}
.ls1_c01078{letter-spacing:5.333333pt;}
.ls2_c01078{letter-spacing:19.365333pt;}
.ws3_c01078{word-spacing:-65.498667pt;}
.ws0_c01078{word-spacing:-21.208000pt;}
.ws1_c01078{word-spacing:-16.947200pt;}
.ws4_c01078{word-spacing:-16.000000pt;}
.ws2_c01078{word-spacing:-15.424000pt;}
.ws5_c01078{word-spacing:0.000000pt;}
._27_c01078{margin-left:-23.146667pt;}
._24_c01078{margin-left:-18.589333pt;}
._28_c01078{margin-left:-17.082667pt;}
._7_c01078{margin-left:-13.810667pt;}
._a_c01078{margin-left:-11.968000pt;}
._3_c01078{margin-left:-10.560000pt;}
._25_c01078{margin-left:-9.557333pt;}
._9_c01078{margin-left:-8.541333pt;}
._4_c01078{margin-left:-6.944000pt;}
._1a_c01078{margin-left:-5.472000pt;}
._2_c01078{margin-left:-4.061333pt;}
._0_c01078{margin-left:-3.168000pt;}
._1_c01078{margin-left:-2.112000pt;}
._8_c01078{margin-left:-1.056000pt;}
._c_c01078{width:1.173333pt;}
._b_c01078{width:2.304000pt;}
._14_c01078{width:4.042667pt;}
._12_c01078{width:5.154667pt;}
._d_c01078{width:6.536000pt;}
._10_c01078{width:7.650667pt;}
._15_c01078{width:8.994667pt;}
._6_c01078{width:10.208000pt;}
._5_c01078{width:11.440000pt;}
._20_c01078{width:12.461333pt;}
._f_c01078{width:13.629333pt;}
._e_c01078{width:14.744000pt;}
._19_c01078{width:15.901333pt;}
._13_c01078{width:17.304000pt;}
._11_c01078{width:18.341333pt;}
._18_c01078{width:19.533333pt;}
._17_c01078{width:20.546667pt;}
._16_c01078{width:22.589333pt;}
._29_c01078{width:24.448000pt;}
._1e_c01078{width:25.589333pt;}
._23_c01078{width:26.570667pt;}
._26_c01078{width:27.792000pt;}
._1b_c01078{width:31.752000pt;}
._22_c01078{width:35.976000pt;}
._2a_c01078{width:39.693333pt;}
._2b_c01078{width:47.549333pt;}
._1f_c01078{width:135.194667pt;}
._2c_c01078{width:167.920000pt;}
._1d_c01078{width:210.325333pt;}
._1c_c01078{width:243.365333pt;}
._2d_c01078{width:295.800000pt;}
._21_c01078{width:304.280000pt;}
.fs9_c01078{font-size:42.666667pt;}
.fs8_c01078{font-size:48.000000pt;}
.fs2_c01078{font-size:50.666667pt;}
.fs4_c01078{font-size:51.200000pt;}
.fs7_c01078{font-size:53.333333pt;}
.fs5_c01078{font-size:64.000000pt;}
.fs3_c01078{font-size:72.000000pt;}
.fs6_c01078{font-size:77.333333pt;}
.fs0_c01078{font-size:88.000000pt;}
.fs1_c01078{font-size:117.333333pt;}
.y0_c01078{bottom:0.000000pt;}
.y26_c01078{bottom:2.760000pt;}
.y25_c01078{bottom:6.425217pt;}
.y24_c01078{bottom:70.506667pt;}
.y23_c01078{bottom:92.640000pt;}
.y22_c01078{bottom:114.906667pt;}
.y21_c01078{bottom:137.040000pt;}
.y20_c01078{bottom:158.906667pt;}
.y1f_c01078{bottom:180.506667pt;}
.y1e_c01078{bottom:202.506667pt;}
.y1d_c01078{bottom:223.840000pt;}
.y1c_c01078{bottom:245.040000pt;}
.y1b_c01078{bottom:266.373333pt;}
.y1a_c01078{bottom:287.440000pt;}
.y19_c01078{bottom:309.306667pt;}
.y18_c01078{bottom:330.506667pt;}
.y17_c01078{bottom:351.840000pt;}
.y16_c01078{bottom:373.440000pt;}
.y15_c01078{bottom:394.773333pt;}
.y14_c01078{bottom:416.106667pt;}
.y13_c01078{bottom:437.440000pt;}
.y12_c01078{bottom:459.040000pt;}
.y11_c01078{bottom:479.706667pt;}
.y10_c01078{bottom:500.906667pt;}
.yf_c01078{bottom:521.706667pt;}
.ye_c01078{bottom:543.040000pt;}
.yd_c01078{bottom:563.706667pt;}
.yc_c01078{bottom:585.040000pt;}
.yb_c01078{bottom:605.706667pt;}
.ya_c01078{bottom:627.306667pt;}
.y9_c01078{bottom:648.506667pt;}
.y8_c01078{bottom:670.506667pt;}
.y7_c01078{bottom:691.706667pt;}
.y6_c01078{bottom:712.240000pt;}
.y5_c01078{bottom:735.306667pt;}
.y4_c01078{bottom:755.040000pt;}
.y3_c01078{bottom:776.906667pt;}
.y2_c01078{bottom:796.506667pt;}
.y1_c01078{bottom:827.306667pt;}
.h8_c01078{height:11.733399pt;}
.h9_c01078{height:38.937500pt;}
.h3_c01078{height:51.062500pt;}
.h7_c01078{height:60.773438pt;}
.h4_c01078{height:70.664062pt;}
.h6_c01078{height:81.031250pt;}
.h5_c01078{height:81.045333pt;}
.h2_c01078{height:148.557292pt;}
.h1_c01078{height:876.666667pt;}
.h0_c01078{height:876.933333pt;}
.w1_c01078{width:93.222667pt;}
.w0_c01078{width:597.333333pt;}
.x0_c01078{left:0.000000pt;}
.x7_c01078{left:45.333333pt;}
.x5_c01078{left:46.400000pt;}
.x8_c01078{left:48.533333pt;}
.xa_c01078{left:49.466667pt;}
.x9_c01078{left:50.666667pt;}
.x2_c01078{left:52.133333pt;}
.x3_c01078{left:53.466667pt;}
.x4_c01078{left:54.533333pt;}
.x6_c01078{left:72.266667pt;}
.x1_c01078{left:79.466667pt;}
.xc_c01078{left:255.834880pt;}
.xb_c01078{left:326.133333pt;}
}





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

.ir_c01079:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01079{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01079;src:url('chunks/assets/font_03bf2daeaaed6b65dd631a6d.woff2')format("woff");}.ff1_c01079{font-family:ff1_c01079;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01079;src:url('chunks/assets/font_eba4e832b7f5c66047a4fdbb.woff2')format("woff");}.ff2_c01079{font-family:ff2_c01079;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01079;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff3_c01079{font-family:ff3_c01079;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01079;src:url('chunks/assets/font_bff89de012059b867c3676c4.woff2')format("woff");}.ff4_c01079{font-family:ff4_c01079;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01079;src:url('chunks/assets/font_4719909374dfa835ed299381.woff2')format("woff");}.ff5_c01079{font-family:ff5_c01079;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01079;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c01079{font-family:ff6_c01079;line-height:1.219238;font-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_c01079{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m0_c01079{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01079{vertical-align:0.000000px;}
.ls6_c01079{letter-spacing:-3.000000px;}
.ls4_c01079{letter-spacing:0.000000px;}
.ls5_c01079{letter-spacing:6.000000px;}
.ls2_c01079{letter-spacing:19.002000px;}
.ls3_c01079{letter-spacing:19.920000px;}
.ls0_c01079{letter-spacing:34.002000px;}
.ls1_c01079{letter-spacing:62.202000px;}
.sc__c01079{text-shadow:none;}
.sc0_c01079{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01079{-webkit-text-stroke:0px transparent;}
.sc0_c01079{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c01079{word-spacing:-73.686000px;}
.ws3_c01079{word-spacing:-20.250000px;}
.ws0_c01079{word-spacing:-17.352000px;}
.ws1_c01079{word-spacing:-13.737000px;}
.ws5_c01079{word-spacing:0.000000px;}
.ws2_c01079{word-spacing:0.549000px;}
._0_c01079{margin-left:-27.696000px;}
._29_c01079{margin-left:-23.073000px;}
._22_c01079{margin-left:-21.870000px;}
._27_c01079{margin-left:-19.575000px;}
._28_c01079{margin-left:-16.905000px;}
._24_c01079{margin-left:-15.633000px;}
._1e_c01079{margin-left:-14.115000px;}
._11_c01079{margin-left:-12.879000px;}
._1d_c01079{margin-left:-11.562000px;}
._25_c01079{margin-left:-9.792000px;}
._10_c01079{margin-left:-8.586000px;}
._9_c01079{margin-left:-7.290000px;}
._6_c01079{margin-left:-5.751000px;}
._a_c01079{margin-left:-4.050000px;}
._3_c01079{margin-left:-2.916000px;}
._c_c01079{margin-left:-1.620000px;}
._b_c01079{width:1.539000px;}
._7_c01079{width:2.673000px;}
._8_c01079{width:3.888000px;}
._4_c01079{width:5.265000px;}
._1_c01079{width:6.561000px;}
._5_c01079{width:8.262000px;}
._e_c01079{width:9.735000px;}
._2_c01079{width:10.854000px;}
._19_c01079{width:12.162000px;}
._1a_c01079{width:14.742000px;}
._14_c01079{width:16.848000px;}
._1b_c01079{width:18.099000px;}
._15_c01079{width:19.197000px;}
._f_c01079{width:22.326000px;}
._1c_c01079{width:26.001000px;}
._20_c01079{width:28.674000px;}
._16_c01079{width:33.615000px;}
._13_c01079{width:38.835000px;}
._23_c01079{width:40.095000px;}
._d_c01079{width:43.692000px;}
._21_c01079{width:109.755000px;}
._12_c01079{width:125.586000px;}
._2a_c01079{width:185.904000px;}
._26_c01079{width:187.437000px;}
._1f_c01079{width:282.435000px;}
._17_c01079{width:369.471000px;}
._18_c01079{width:977.346000px;}
.fc2_c01079{color:transparent;}
.fc1_c01079{color:rgb(128,128,128);}
.fc0_c01079{color:rgb(0,0,0);}
.fs8_c01079{font-size:48.000000px;}
.fs2_c01079{font-size:57.000000px;}
.fs0_c01079{font-size:72.000000px;}
.fs3_c01079{font-size:78.000000px;}
.fs1_c01079{font-size:81.000000px;}
.fs5_c01079{font-size:87.000000px;}
.fs6_c01079{font-size:105.000000px;}
.fs7_c01079{font-size:108.000000px;}
.fs4_c01079{font-size:120.000000px;}
.y0_c01079{bottom:0.000000px;}
.y26_c01079{bottom:3.105000px;}
.y25_c01079{bottom:7.228371px;}
.y24_c01079{bottom:70.965000px;}
.y23_c01079{bottom:94.215000px;}
.y22_c01079{bottom:119.865000px;}
.y21_c01079{bottom:143.115000px;}
.y20_c01079{bottom:168.765000px;}
.y1f_c01079{bottom:193.065000px;}
.y1e_c01079{bottom:217.665000px;}
.y1d_c01079{bottom:242.115000px;}
.y1c_c01079{bottom:266.415000px;}
.y1b_c01079{bottom:290.565000px;}
.y1a_c01079{bottom:314.865000px;}
.y19_c01079{bottom:338.565000px;}
.y18_c01079{bottom:363.165000px;}
.y17_c01079{bottom:387.915000px;}
.y16_c01079{bottom:411.915000px;}
.y15_c01079{bottom:436.065000px;}
.y14_c01079{bottom:460.215000px;}
.y13_c01079{bottom:484.065000px;}
.y12_c01079{bottom:507.915000px;}
.y11_c01079{bottom:531.915000px;}
.y10_c01079{bottom:555.315000px;}
.yf_c01079{bottom:579.615000px;}
.ye_c01079{bottom:603.465000px;}
.yd_c01079{bottom:627.465000px;}
.yc_c01079{bottom:651.465000px;}
.yb_c01079{bottom:675.765000px;}
.ya_c01079{bottom:699.765000px;}
.y9_c01079{bottom:723.615000px;}
.y8_c01079{bottom:747.315000px;}
.y7_c01079{bottom:770.565000px;}
.y6_c01079{bottom:793.815000px;}
.y5_c01079{bottom:809.115000px;}
.y4_c01079{bottom:819.165000px;}
.y3_c01079{bottom:844.215000px;}
.y2_c01079{bottom:867.465000px;}
.y1_c01079{bottom:891.015000px;}
.hb_c01079{height:13.200074px;}
.hc_c01079{height:43.804688px;}
.h4_c01079{height:79.497070px;}
.h6_c01079{height:81.632812px;}
.h2_c01079{height:84.269531px;}
.h8_c01079{height:91.160156px;}
.h7_c01079{height:91.176000px;}
.h3_c01079{height:98.756836px;}
.ha_c01079{height:108.843750px;}
.h5_c01079{height:120.937500px;}
.h9_c01079{height:122.893066px;}
.h1_c01079{height:986.250000px;}
.h0_c01079{height:986.325000px;}
.w2_c01079{width:104.875500px;}
.w0_c01079{width:667.425000px;}
.w1_c01079{width:667.500000px;}
.x0_c01079{left:0.000000px;}
.x2_c01079{left:29.400000px;}
.x3_c01079{left:30.450000px;}
.x5_c01079{left:31.800000px;}
.x6_c01079{left:33.450000px;}
.xd_c01079{left:43.200000px;}
.xc_c01079{left:44.250000px;}
.xe_c01079{left:46.950000px;}
.x11_c01079{left:48.000000px;}
.x1_c01079{left:104.700000px;}
.x4_c01079{left:124.650000px;}
.x7_c01079{left:127.350000px;}
.x8_c01079{left:128.700000px;}
.x9_c01079{left:130.350000px;}
.xa_c01079{left:132.600000px;}
.xb_c01079{left:134.400000px;}
.xf_c01079{left:138.000000px;}
.x10_c01079{left:139.350000px;}
.x15_c01079{left:285.526749px;}
.x12_c01079{left:289.350000px;}
.x13_c01079{left:311.850000px;}
.x14_c01079{left:574.200000px;}
@media print{
.v0_c01079{vertical-align:0.000000pt;}
.ls6_c01079{letter-spacing:-2.666667pt;}
.ls4_c01079{letter-spacing:0.000000pt;}
.ls5_c01079{letter-spacing:5.333333pt;}
.ls2_c01079{letter-spacing:16.890667pt;}
.ls3_c01079{letter-spacing:17.706667pt;}
.ls0_c01079{letter-spacing:30.224000pt;}
.ls1_c01079{letter-spacing:55.290667pt;}
.ws4_c01079{word-spacing:-65.498667pt;}
.ws3_c01079{word-spacing:-18.000000pt;}
.ws0_c01079{word-spacing:-15.424000pt;}
.ws1_c01079{word-spacing:-12.210667pt;}
.ws5_c01079{word-spacing:0.000000pt;}
.ws2_c01079{word-spacing:0.488000pt;}
._0_c01079{margin-left:-24.618667pt;}
._29_c01079{margin-left:-20.509333pt;}
._22_c01079{margin-left:-19.440000pt;}
._27_c01079{margin-left:-17.400000pt;}
._28_c01079{margin-left:-15.026667pt;}
._24_c01079{margin-left:-13.896000pt;}
._1e_c01079{margin-left:-12.546667pt;}
._11_c01079{margin-left:-11.448000pt;}
._1d_c01079{margin-left:-10.277333pt;}
._25_c01079{margin-left:-8.704000pt;}
._10_c01079{margin-left:-7.632000pt;}
._9_c01079{margin-left:-6.480000pt;}
._6_c01079{margin-left:-5.112000pt;}
._a_c01079{margin-left:-3.600000pt;}
._3_c01079{margin-left:-2.592000pt;}
._c_c01079{margin-left:-1.440000pt;}
._b_c01079{width:1.368000pt;}
._7_c01079{width:2.376000pt;}
._8_c01079{width:3.456000pt;}
._4_c01079{width:4.680000pt;}
._1_c01079{width:5.832000pt;}
._5_c01079{width:7.344000pt;}
._e_c01079{width:8.653333pt;}
._2_c01079{width:9.648000pt;}
._19_c01079{width:10.810667pt;}
._1a_c01079{width:13.104000pt;}
._14_c01079{width:14.976000pt;}
._1b_c01079{width:16.088000pt;}
._15_c01079{width:17.064000pt;}
._f_c01079{width:19.845333pt;}
._1c_c01079{width:23.112000pt;}
._20_c01079{width:25.488000pt;}
._16_c01079{width:29.880000pt;}
._13_c01079{width:34.520000pt;}
._23_c01079{width:35.640000pt;}
._d_c01079{width:38.837333pt;}
._21_c01079{width:97.560000pt;}
._12_c01079{width:111.632000pt;}
._2a_c01079{width:165.248000pt;}
._26_c01079{width:166.610667pt;}
._1f_c01079{width:251.053333pt;}
._17_c01079{width:328.418667pt;}
._18_c01079{width:868.752000pt;}
.fs8_c01079{font-size:42.666667pt;}
.fs2_c01079{font-size:50.666667pt;}
.fs0_c01079{font-size:64.000000pt;}
.fs3_c01079{font-size:69.333333pt;}
.fs1_c01079{font-size:72.000000pt;}
.fs5_c01079{font-size:77.333333pt;}
.fs6_c01079{font-size:93.333333pt;}
.fs7_c01079{font-size:96.000000pt;}
.fs4_c01079{font-size:106.666667pt;}
.y0_c01079{bottom:0.000000pt;}
.y26_c01079{bottom:2.760000pt;}
.y25_c01079{bottom:6.425219pt;}
.y24_c01079{bottom:63.080000pt;}
.y23_c01079{bottom:83.746667pt;}
.y22_c01079{bottom:106.546667pt;}
.y21_c01079{bottom:127.213333pt;}
.y20_c01079{bottom:150.013333pt;}
.y1f_c01079{bottom:171.613333pt;}
.y1e_c01079{bottom:193.480000pt;}
.y1d_c01079{bottom:215.213333pt;}
.y1c_c01079{bottom:236.813333pt;}
.y1b_c01079{bottom:258.280000pt;}
.y1a_c01079{bottom:279.880000pt;}
.y19_c01079{bottom:300.946667pt;}
.y18_c01079{bottom:322.813333pt;}
.y17_c01079{bottom:344.813333pt;}
.y16_c01079{bottom:366.146667pt;}
.y15_c01079{bottom:387.613333pt;}
.y14_c01079{bottom:409.080000pt;}
.y13_c01079{bottom:430.280000pt;}
.y12_c01079{bottom:451.480000pt;}
.y11_c01079{bottom:472.813333pt;}
.y10_c01079{bottom:493.613333pt;}
.yf_c01079{bottom:515.213333pt;}
.ye_c01079{bottom:536.413333pt;}
.yd_c01079{bottom:557.746667pt;}
.yc_c01079{bottom:579.080000pt;}
.yb_c01079{bottom:600.680000pt;}
.ya_c01079{bottom:622.013333pt;}
.y9_c01079{bottom:643.213333pt;}
.y8_c01079{bottom:664.280000pt;}
.y7_c01079{bottom:684.946667pt;}
.y6_c01079{bottom:705.613333pt;}
.y5_c01079{bottom:719.213333pt;}
.y4_c01079{bottom:728.146667pt;}
.y3_c01079{bottom:750.413333pt;}
.y2_c01079{bottom:771.080000pt;}
.y1_c01079{bottom:792.013333pt;}
.hb_c01079{height:11.733399pt;}
.hc_c01079{height:38.937500pt;}
.h4_c01079{height:70.664062pt;}
.h6_c01079{height:72.562500pt;}
.h2_c01079{height:74.906250pt;}
.h8_c01079{height:81.031250pt;}
.h7_c01079{height:81.045333pt;}
.h3_c01079{height:87.783854pt;}
.ha_c01079{height:96.750000pt;}
.h5_c01079{height:107.500000pt;}
.h9_c01079{height:109.238281pt;}
.h1_c01079{height:876.666667pt;}
.h0_c01079{height:876.733333pt;}
.w2_c01079{width:93.222667pt;}
.w0_c01079{width:593.266667pt;}
.w1_c01079{width:593.333333pt;}
.x0_c01079{left:0.000000pt;}
.x2_c01079{left:26.133333pt;}
.x3_c01079{left:27.066667pt;}
.x5_c01079{left:28.266667pt;}
.x6_c01079{left:29.733333pt;}
.xd_c01079{left:38.400000pt;}
.xc_c01079{left:39.333333pt;}
.xe_c01079{left:41.733333pt;}
.x11_c01079{left:42.666667pt;}
.x1_c01079{left:93.066667pt;}
.x4_c01079{left:110.800000pt;}
.x7_c01079{left:113.200000pt;}
.x8_c01079{left:114.400000pt;}
.x9_c01079{left:115.866667pt;}
.xa_c01079{left:117.866667pt;}
.xb_c01079{left:119.466667pt;}
.xf_c01079{left:122.666667pt;}
.x10_c01079{left:123.866667pt;}
.x15_c01079{left:253.801554pt;}
.x12_c01079{left:257.200000pt;}
.x13_c01079{left:277.200000pt;}
.x14_c01079{left:510.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_c01080 {
    display:none;
  }
  .loading-indicator_c01080.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01080 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01080 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01080" -> "#page-container .classname_c01080")
 */
.pf_c01080 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01080 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01080.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01080 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01080 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01080 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01080 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01080 {overflow:visible;}
  }
}
.c_c01080 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01080 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01080:after { /* webkit #35443 */
  content: '';
}
.t_c01080:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01080 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01080 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01080 { /* info for Javascript */
  display:none;
}
.l_c01080 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01080 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01080 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01080:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01080{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01080;src:url('chunks/assets/font_d5e4169ea57c5d89995565b3.woff2')format("woff");}.ff1_c01080{font-family:ff1_c01080;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01080;src:url('chunks/assets/font_f1cd24ce87414be78d1ef6cc.woff2')format("woff");}.ff2_c01080{font-family:ff2_c01080;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01080;src:url('chunks/assets/font_ed41e4418952204131811a44.woff2')format("woff");}.ff3_c01080{font-family:ff3_c01080;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01080;src:url('chunks/assets/font_c86c2baf391eefe547c5e53f.woff2')format("woff");}.ff4_c01080{font-family:ff4_c01080;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01080;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c01080{font-family:ff5_c01080;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01080{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c01080{vertical-align:-15.000000px;}
.v0_c01080{vertical-align:0.000000px;}
.ls3_c01080{letter-spacing:0.000000px;}
.ls4_c01080{letter-spacing:3.000000px;}
.ls2_c01080{letter-spacing:6.000000px;}
.ls5_c01080{letter-spacing:9.000000px;}
.ls0_c01080{letter-spacing:46.863000px;}
.ls1_c01080{letter-spacing:124.200000px;}
.sc__c01080{text-shadow:none;}
.sc0_c01080{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01080{-webkit-text-stroke:0px transparent;}
.sc0_c01080{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01080{word-spacing:-23.859000px;}
.ws3_c01080{word-spacing:-22.737000px;}
.ws1_c01080{word-spacing:-17.352000px;}
.ws2_c01080{word-spacing:-13.737000px;}
.ws4_c01080{word-spacing:0.000000px;}
._0_c01080{margin-left:-49.194000px;}
._1_c01080{margin-left:-33.210000px;}
._23_c01080{margin-left:-31.248000px;}
._1b_c01080{margin-left:-28.728000px;}
._1a_c01080{margin-left:-23.724000px;}
._10_c01080{margin-left:-20.574000px;}
._11_c01080{margin-left:-18.936000px;}
._12_c01080{margin-left:-14.616000px;}
._17_c01080{margin-left:-12.375000px;}
._13_c01080{margin-left:-10.851000px;}
._20_c01080{margin-left:-9.342000px;}
._9_c01080{margin-left:-8.037000px;}
._2_c01080{margin-left:-6.156000px;}
._e_c01080{margin-left:-4.986000px;}
._c_c01080{margin-left:-3.114000px;}
._b_c01080{margin-left:-1.935000px;}
._18_c01080{width:1.071000px;}
._5_c01080{width:2.079000px;}
._f_c01080{width:3.132000px;}
._4_c01080{width:4.158000px;}
._3_c01080{width:5.445000px;}
._6_c01080{width:6.633000px;}
._8_c01080{width:7.776000px;}
._a_c01080{width:9.261000px;}
._d_c01080{width:10.296000px;}
._19_c01080{width:11.826000px;}
._7_c01080{width:12.915000px;}
._1c_c01080{width:14.670000px;}
._15_c01080{width:16.515000px;}
._1e_c01080{width:17.937000px;}
._1f_c01080{width:27.477000px;}
._21_c01080{width:30.534000px;}
._16_c01080{width:108.819000px;}
._14_c01080{width:125.532000px;}
._1d_c01080{width:190.608000px;}
._24_c01080{width:223.944000px;}
._25_c01080{width:321.522000px;}
._22_c01080{width:1066.212000px;}
.fc2_c01080{color:transparent;}
.fc1_c01080{color:rgb(128,128,128);}
.fc0_c01080{color:rgb(0,0,0);}
.fs9_c01080{font-size:48.000000px;}
.fs0_c01080{font-size:54.000000px;}
.fs4_c01080{font-size:57.000000px;}
.fs6_c01080{font-size:60.000000px;}
.fs3_c01080{font-size:72.000000px;}
.fs5_c01080{font-size:78.000000px;}
.fs2_c01080{font-size:81.000000px;}
.fs7_c01080{font-size:84.000000px;}
.fs8_c01080{font-size:93.000000px;}
.fs1_c01080{font-size:99.000000px;}
.y0_c01080{bottom:0.000000px;}
.y26_c01080{bottom:3.105000px;}
.y25_c01080{bottom:7.228369px;}
.y24_c01080{bottom:68.220000px;}
.y23_c01080{bottom:93.420000px;}
.y22_c01080{bottom:119.070000px;}
.y21_c01080{bottom:143.070000px;}
.y20_c01080{bottom:170.820000px;}
.y1f_c01080{bottom:191.070000px;}
.y1e_c01080{bottom:238.620000px;}
.y1d_c01080{bottom:263.220000px;}
.y1c_c01080{bottom:287.820000px;}
.y1b_c01080{bottom:311.220000px;}
.y1a_c01080{bottom:335.520000px;}
.y19_c01080{bottom:359.070000px;}
.y18_c01080{bottom:382.770000px;}
.y17_c01080{bottom:406.620000px;}
.y16_c01080{bottom:430.620000px;}
.y15_c01080{bottom:454.320000px;}
.y14_c01080{bottom:478.170000px;}
.y13_c01080{bottom:502.170000px;}
.y12_c01080{bottom:526.770000px;}
.y11_c01080{bottom:549.120000px;}
.y10_c01080{bottom:573.420000px;}
.yf_c01080{bottom:596.370000px;}
.ye_c01080{bottom:620.220000px;}
.yd_c01080{bottom:643.320000px;}
.yc_c01080{bottom:667.170000px;}
.yb_c01080{bottom:691.170000px;}
.ya_c01080{bottom:714.120000px;}
.y9_c01080{bottom:738.720000px;}
.y8_c01080{bottom:763.020000px;}
.y7_c01080{bottom:786.720000px;}
.y6_c01080{bottom:810.720000px;}
.y5_c01080{bottom:834.870000px;}
.y4_c01080{bottom:858.270000px;}
.y3_c01080{bottom:882.270000px;}
.y2_c01080{bottom:917.370000px;}
.y1_c01080{bottom:947.070000px;}
.hb_c01080{height:13.200073px;}
.hc_c01080{height:43.804688px;}
.h2_c01080{height:68.370117px;}
.h8_c01080{height:75.966797px;}
.h4_c01080{height:79.497070px;}
.h6_c01080{height:84.269531px;}
.h9_c01080{height:84.656250px;}
.h7_c01080{height:91.160156px;}
.ha_c01080{height:91.274414px;}
.h5_c01080{height:98.756836px;}
.h3_c01080{height:115.870605px;}
.h1_c01080{height:986.250000px;}
.h0_c01080{height:986.550000px;}
.w1_c01080{width:104.875500px;}
.w0_c01080{width:672.000000px;}
.x0_c01080{left:0.000000px;}
.x7_c01080{left:35.700000px;}
.x15_c01080{left:40.800000px;}
.x3_c01080{left:49.500000px;}
.x4_c01080{left:52.200000px;}
.x5_c01080{left:53.550000px;}
.x6_c01080{left:55.350000px;}
.x8_c01080{left:57.300000px;}
.x9_c01080{left:58.650000px;}
.xa_c01080{left:59.700000px;}
.xb_c01080{left:61.050000px;}
.xc_c01080{left:62.400000px;}
.xd_c01080{left:63.750000px;}
.xe_c01080{left:64.800000px;}
.xf_c01080{left:65.850000px;}
.x10_c01080{left:67.200000px;}
.x13_c01080{left:69.300000px;}
.x14_c01080{left:70.650000px;}
.x2_c01080{left:81.750000px;}
.x12_c01080{left:108.450000px;}
.x11_c01080{left:142.800000px;}
.x16_c01080{left:287.814240px;}
.x1_c01080{left:318.900000px;}
@media print{
.v1_c01080{vertical-align:-13.333333pt;}
.v0_c01080{vertical-align:0.000000pt;}
.ls3_c01080{letter-spacing:0.000000pt;}
.ls4_c01080{letter-spacing:2.666667pt;}
.ls2_c01080{letter-spacing:5.333333pt;}
.ls5_c01080{letter-spacing:8.000000pt;}
.ls0_c01080{letter-spacing:41.656000pt;}
.ls1_c01080{letter-spacing:110.400000pt;}
.ws0_c01080{word-spacing:-21.208000pt;}
.ws3_c01080{word-spacing:-20.210667pt;}
.ws1_c01080{word-spacing:-15.424000pt;}
.ws2_c01080{word-spacing:-12.210667pt;}
.ws4_c01080{word-spacing:0.000000pt;}
._0_c01080{margin-left:-43.728000pt;}
._1_c01080{margin-left:-29.520000pt;}
._23_c01080{margin-left:-27.776000pt;}
._1b_c01080{margin-left:-25.536000pt;}
._1a_c01080{margin-left:-21.088000pt;}
._10_c01080{margin-left:-18.288000pt;}
._11_c01080{margin-left:-16.832000pt;}
._12_c01080{margin-left:-12.992000pt;}
._17_c01080{margin-left:-11.000000pt;}
._13_c01080{margin-left:-9.645333pt;}
._20_c01080{margin-left:-8.304000pt;}
._9_c01080{margin-left:-7.144000pt;}
._2_c01080{margin-left:-5.472000pt;}
._e_c01080{margin-left:-4.432000pt;}
._c_c01080{margin-left:-2.768000pt;}
._b_c01080{margin-left:-1.720000pt;}
._18_c01080{width:0.952000pt;}
._5_c01080{width:1.848000pt;}
._f_c01080{width:2.784000pt;}
._4_c01080{width:3.696000pt;}
._3_c01080{width:4.840000pt;}
._6_c01080{width:5.896000pt;}
._8_c01080{width:6.912000pt;}
._a_c01080{width:8.232000pt;}
._d_c01080{width:9.152000pt;}
._19_c01080{width:10.512000pt;}
._7_c01080{width:11.480000pt;}
._1c_c01080{width:13.040000pt;}
._15_c01080{width:14.680000pt;}
._1e_c01080{width:15.944000pt;}
._1f_c01080{width:24.424000pt;}
._21_c01080{width:27.141333pt;}
._16_c01080{width:96.728000pt;}
._14_c01080{width:111.584000pt;}
._1d_c01080{width:169.429333pt;}
._24_c01080{width:199.061333pt;}
._25_c01080{width:285.797333pt;}
._22_c01080{width:947.744000pt;}
.fs9_c01080{font-size:42.666667pt;}
.fs0_c01080{font-size:48.000000pt;}
.fs4_c01080{font-size:50.666667pt;}
.fs6_c01080{font-size:53.333333pt;}
.fs3_c01080{font-size:64.000000pt;}
.fs5_c01080{font-size:69.333333pt;}
.fs2_c01080{font-size:72.000000pt;}
.fs7_c01080{font-size:74.666667pt;}
.fs8_c01080{font-size:82.666667pt;}
.fs1_c01080{font-size:88.000000pt;}
.y0_c01080{bottom:0.000000pt;}
.y26_c01080{bottom:2.760000pt;}
.y25_c01080{bottom:6.425217pt;}
.y24_c01080{bottom:60.640000pt;}
.y23_c01080{bottom:83.040000pt;}
.y22_c01080{bottom:105.840000pt;}
.y21_c01080{bottom:127.173333pt;}
.y20_c01080{bottom:151.840000pt;}
.y1f_c01080{bottom:169.840000pt;}
.y1e_c01080{bottom:212.106667pt;}
.y1d_c01080{bottom:233.973333pt;}
.y1c_c01080{bottom:255.840000pt;}
.y1b_c01080{bottom:276.640000pt;}
.y1a_c01080{bottom:298.240000pt;}
.y19_c01080{bottom:319.173333pt;}
.y18_c01080{bottom:340.240000pt;}
.y17_c01080{bottom:361.440000pt;}
.y16_c01080{bottom:382.773333pt;}
.y15_c01080{bottom:403.840000pt;}
.y14_c01080{bottom:425.040000pt;}
.y13_c01080{bottom:446.373333pt;}
.y12_c01080{bottom:468.240000pt;}
.y11_c01080{bottom:488.106667pt;}
.y10_c01080{bottom:509.706667pt;}
.yf_c01080{bottom:530.106667pt;}
.ye_c01080{bottom:551.306667pt;}
.yd_c01080{bottom:571.840000pt;}
.yc_c01080{bottom:593.040000pt;}
.yb_c01080{bottom:614.373333pt;}
.ya_c01080{bottom:634.773333pt;}
.y9_c01080{bottom:656.640000pt;}
.y8_c01080{bottom:678.240000pt;}
.y7_c01080{bottom:699.306667pt;}
.y6_c01080{bottom:720.640000pt;}
.y5_c01080{bottom:742.106667pt;}
.y4_c01080{bottom:762.906667pt;}
.y3_c01080{bottom:784.240000pt;}
.y2_c01080{bottom:815.440000pt;}
.y1_c01080{bottom:841.840000pt;}
.hb_c01080{height:11.733399pt;}
.hc_c01080{height:38.937500pt;}
.h2_c01080{height:60.773438pt;}
.h8_c01080{height:67.526042pt;}
.h4_c01080{height:70.664062pt;}
.h6_c01080{height:74.906250pt;}
.h9_c01080{height:75.250000pt;}
.h7_c01080{height:81.031250pt;}
.ha_c01080{height:81.132812pt;}
.h5_c01080{height:87.783854pt;}
.h3_c01080{height:102.996094pt;}
.h1_c01080{height:876.666667pt;}
.h0_c01080{height:876.933333pt;}
.w1_c01080{width:93.222667pt;}
.w0_c01080{width:597.333333pt;}
.x0_c01080{left:0.000000pt;}
.x7_c01080{left:31.733333pt;}
.x15_c01080{left:36.266667pt;}
.x3_c01080{left:44.000000pt;}
.x4_c01080{left:46.400000pt;}
.x5_c01080{left:47.600000pt;}
.x6_c01080{left:49.200000pt;}
.x8_c01080{left:50.933333pt;}
.x9_c01080{left:52.133333pt;}
.xa_c01080{left:53.066667pt;}
.xb_c01080{left:54.266667pt;}
.xc_c01080{left:55.466667pt;}
.xd_c01080{left:56.666667pt;}
.xe_c01080{left:57.600000pt;}
.xf_c01080{left:58.533333pt;}
.x10_c01080{left:59.733333pt;}
.x13_c01080{left:61.600000pt;}
.x14_c01080{left:62.800000pt;}
.x2_c01080{left:72.666667pt;}
.x12_c01080{left:96.400000pt;}
.x11_c01080{left:126.933333pt;}
.x16_c01080{left:255.834880pt;}
.x1_c01080{left:283.466667pt;}
}





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

.ir_c01081:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01081{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01081;src:url('chunks/assets/font_c7971f38cb5f1accd8ca71ed.woff2')format("woff");}.ff1_c01081{font-family:ff1_c01081;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01081;src:url('chunks/assets/font_8e4b99c41473c486628f969c.woff2')format("woff");}.ff2_c01081{font-family:ff2_c01081;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01081;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff3_c01081{font-family:ff3_c01081;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01081;src:url('chunks/assets/font_194879c99c0846649bebc0b2.woff2')format("woff");}.ff4_c01081{font-family:ff4_c01081;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01081;src:url('chunks/assets/font_22eaab894f82c482f487c259.woff2')format("woff");}.ff5_c01081{font-family:ff5_c01081;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01081;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c01081{font-family:ff6_c01081;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c01081{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m0_c01081{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01081{vertical-align:0.000000px;}
.ls0_c01081{letter-spacing:0.000000px;}
.ls1_c01081{letter-spacing:6.000000px;}
.sc__c01081{text-shadow:none;}
.sc0_c01081{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01081{-webkit-text-stroke:0px transparent;}
.sc0_c01081{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01081{word-spacing:-73.686000px;}
.ws2_c01081{word-spacing:-20.250000px;}
.ws0_c01081{word-spacing:-17.352000px;}
.ws3_c01081{word-spacing:0.000000px;}
._1e_c01081{margin-left:-21.861000px;}
._22_c01081{margin-left:-18.792000px;}
._b_c01081{margin-left:-17.172000px;}
._8_c01081{margin-left:-15.552000px;}
._15_c01081{margin-left:-13.572000px;}
._26_c01081{margin-left:-12.177000px;}
._14_c01081{margin-left:-9.801000px;}
._13_c01081{margin-left:-8.127000px;}
._f_c01081{margin-left:-6.723000px;}
._5_c01081{margin-left:-5.670000px;}
._e_c01081{margin-left:-4.131000px;}
._3_c01081{margin-left:-2.835000px;}
._a_c01081{margin-left:-1.134000px;}
._4_c01081{width:1.863000px;}
._7_c01081{width:2.997000px;}
._1_c01081{width:4.131000px;}
._6_c01081{width:5.346000px;}
._0_c01081{width:7.209000px;}
._2_c01081{width:9.234000px;}
._1a_c01081{width:10.611000px;}
._10_c01081{width:11.907000px;}
._c_c01081{width:13.365000px;}
._18_c01081{width:14.499000px;}
._d_c01081{width:15.633000px;}
._1f_c01081{width:17.253000px;}
._24_c01081{width:21.627000px;}
._12_c01081{width:23.253000px;}
._1d_c01081{width:26.649000px;}
._1c_c01081{width:28.350000px;}
._1b_c01081{width:41.334000px;}
._23_c01081{width:49.977000px;}
._17_c01081{width:59.694000px;}
._20_c01081{width:66.744000px;}
._9_c01081{width:80.190000px;}
._11_c01081{width:81.333000px;}
._16_c01081{width:150.726000px;}
._21_c01081{width:169.479000px;}
._25_c01081{width:179.496000px;}
._19_c01081{width:204.768000px;}
.fc2_c01081{color:transparent;}
.fc1_c01081{color:rgb(128,128,128);}
.fc0_c01081{color:rgb(0,0,0);}
.fs4_c01081{font-size:48.000000px;}
.fs1_c01081{font-size:72.000000px;}
.fs0_c01081{font-size:81.000000px;}
.fs2_c01081{font-size:87.000000px;}
.fs3_c01081{font-size:108.000000px;}
.y0_c01081{bottom:0.000000px;}
.y25_c01081{bottom:3.105000px;}
.y24_c01081{bottom:7.228371px;}
.y23_c01081{bottom:41.865000px;}
.y22_c01081{bottom:64.215000px;}
.y21_c01081{bottom:90.165000px;}
.y20_c01081{bottom:115.065000px;}
.y1f_c01081{bottom:138.765000px;}
.y1e_c01081{bottom:162.015000px;}
.y1d_c01081{bottom:186.915000px;}
.y1c_c01081{bottom:210.915000px;}
.y1b_c01081{bottom:234.915000px;}
.y1a_c01081{bottom:259.515000px;}
.y19_c01081{bottom:283.815000px;}
.y18_c01081{bottom:307.815000px;}
.y17_c01081{bottom:331.815000px;}
.y16_c01081{bottom:356.865000px;}
.y15_c01081{bottom:379.665000px;}
.y14_c01081{bottom:404.415000px;}
.y13_c01081{bottom:428.415000px;}
.y12_c01081{bottom:452.715000px;}
.y11_c01081{bottom:476.565000px;}
.y10_c01081{bottom:500.865000px;}
.yf_c01081{bottom:524.115000px;}
.ye_c01081{bottom:547.815000px;}
.yd_c01081{bottom:572.415000px;}
.yc_c01081{bottom:596.115000px;}
.yb_c01081{bottom:620.115000px;}
.ya_c01081{bottom:643.065000px;}
.y9_c01081{bottom:666.915000px;}
.y8_c01081{bottom:692.565000px;}
.y7_c01081{bottom:717.165000px;}
.y6_c01081{bottom:740.865000px;}
.y5_c01081{bottom:764.115000px;}
.y4_c01081{bottom:788.115000px;}
.y3_c01081{bottom:811.665000px;}
.y2_c01081{bottom:835.665000px;}
.y1_c01081{bottom:859.665000px;}
.h7_c01081{height:13.200074px;}
.h8_c01081{height:43.804688px;}
.h2_c01081{height:79.497070px;}
.h3_c01081{height:84.269531px;}
.h4_c01081{height:91.160156px;}
.h5_c01081{height:91.176000px;}
.h6_c01081{height:108.843750px;}
.h1_c01081{height:986.250000px;}
.h0_c01081{height:986.325000px;}
.w2_c01081{width:104.875500px;}
.w0_c01081{width:667.425000px;}
.w1_c01081{width:667.500000px;}
.x0_c01081{left:0.000000px;}
.x5_c01081{left:27.600000px;}
.x7_c01081{left:29.250000px;}
.xa_c01081{left:35.400000px;}
.x9_c01081{left:44.250000px;}
.x2_c01081{left:94.050000px;}
.xb_c01081{left:106.350000px;}
.x8_c01081{left:119.850000px;}
.x4_c01081{left:121.050000px;}
.x3_c01081{left:122.100000px;}
.x1_c01081{left:123.150000px;}
.x6_c01081{left:198.450000px;}
.xd_c01081{left:285.526749px;}
.xc_c01081{left:553.500000px;}
@media print{
.v0_c01081{vertical-align:0.000000pt;}
.ls0_c01081{letter-spacing:0.000000pt;}
.ls1_c01081{letter-spacing:5.333333pt;}
.ws1_c01081{word-spacing:-65.498667pt;}
.ws2_c01081{word-spacing:-18.000000pt;}
.ws0_c01081{word-spacing:-15.424000pt;}
.ws3_c01081{word-spacing:0.000000pt;}
._1e_c01081{margin-left:-19.432000pt;}
._22_c01081{margin-left:-16.704000pt;}
._b_c01081{margin-left:-15.264000pt;}
._8_c01081{margin-left:-13.824000pt;}
._15_c01081{margin-left:-12.064000pt;}
._26_c01081{margin-left:-10.824000pt;}
._14_c01081{margin-left:-8.712000pt;}
._13_c01081{margin-left:-7.224000pt;}
._f_c01081{margin-left:-5.976000pt;}
._5_c01081{margin-left:-5.040000pt;}
._e_c01081{margin-left:-3.672000pt;}
._3_c01081{margin-left:-2.520000pt;}
._a_c01081{margin-left:-1.008000pt;}
._4_c01081{width:1.656000pt;}
._7_c01081{width:2.664000pt;}
._1_c01081{width:3.672000pt;}
._6_c01081{width:4.752000pt;}
._0_c01081{width:6.408000pt;}
._2_c01081{width:8.208000pt;}
._1a_c01081{width:9.432000pt;}
._10_c01081{width:10.584000pt;}
._c_c01081{width:11.880000pt;}
._18_c01081{width:12.888000pt;}
._d_c01081{width:13.896000pt;}
._1f_c01081{width:15.336000pt;}
._24_c01081{width:19.224000pt;}
._12_c01081{width:20.669333pt;}
._1d_c01081{width:23.688000pt;}
._1c_c01081{width:25.200000pt;}
._1b_c01081{width:36.741333pt;}
._23_c01081{width:44.424000pt;}
._17_c01081{width:53.061333pt;}
._20_c01081{width:59.328000pt;}
._9_c01081{width:71.280000pt;}
._11_c01081{width:72.296000pt;}
._16_c01081{width:133.978667pt;}
._21_c01081{width:150.648000pt;}
._25_c01081{width:159.552000pt;}
._19_c01081{width:182.016000pt;}
.fs4_c01081{font-size:42.666667pt;}
.fs1_c01081{font-size:64.000000pt;}
.fs0_c01081{font-size:72.000000pt;}
.fs2_c01081{font-size:77.333333pt;}
.fs3_c01081{font-size:96.000000pt;}
.y0_c01081{bottom:0.000000pt;}
.y25_c01081{bottom:2.760000pt;}
.y24_c01081{bottom:6.425219pt;}
.y23_c01081{bottom:37.213333pt;}
.y22_c01081{bottom:57.080000pt;}
.y21_c01081{bottom:80.146667pt;}
.y20_c01081{bottom:102.280000pt;}
.y1f_c01081{bottom:123.346667pt;}
.y1e_c01081{bottom:144.013333pt;}
.y1d_c01081{bottom:166.146667pt;}
.y1c_c01081{bottom:187.480000pt;}
.y1b_c01081{bottom:208.813333pt;}
.y1a_c01081{bottom:230.680000pt;}
.y19_c01081{bottom:252.280000pt;}
.y18_c01081{bottom:273.613333pt;}
.y17_c01081{bottom:294.946667pt;}
.y16_c01081{bottom:317.213333pt;}
.y15_c01081{bottom:337.480000pt;}
.y14_c01081{bottom:359.480000pt;}
.y13_c01081{bottom:380.813333pt;}
.y12_c01081{bottom:402.413333pt;}
.y11_c01081{bottom:423.613333pt;}
.y10_c01081{bottom:445.213333pt;}
.yf_c01081{bottom:465.880000pt;}
.ye_c01081{bottom:486.946667pt;}
.yd_c01081{bottom:508.813333pt;}
.yc_c01081{bottom:529.880000pt;}
.yb_c01081{bottom:551.213333pt;}
.ya_c01081{bottom:571.613333pt;}
.y9_c01081{bottom:592.813333pt;}
.y8_c01081{bottom:615.613333pt;}
.y7_c01081{bottom:637.480000pt;}
.y6_c01081{bottom:658.546667pt;}
.y5_c01081{bottom:679.213333pt;}
.y4_c01081{bottom:700.546667pt;}
.y3_c01081{bottom:721.480000pt;}
.y2_c01081{bottom:742.813333pt;}
.y1_c01081{bottom:764.146667pt;}
.h7_c01081{height:11.733399pt;}
.h8_c01081{height:38.937500pt;}
.h2_c01081{height:70.664062pt;}
.h3_c01081{height:74.906250pt;}
.h4_c01081{height:81.031250pt;}
.h5_c01081{height:81.045333pt;}
.h6_c01081{height:96.750000pt;}
.h1_c01081{height:876.666667pt;}
.h0_c01081{height:876.733333pt;}
.w2_c01081{width:93.222667pt;}
.w0_c01081{width:593.266667pt;}
.w1_c01081{width:593.333333pt;}
.x0_c01081{left:0.000000pt;}
.x5_c01081{left:24.533333pt;}
.x7_c01081{left:26.000000pt;}
.xa_c01081{left:31.466667pt;}
.x9_c01081{left:39.333333pt;}
.x2_c01081{left:83.600000pt;}
.xb_c01081{left:94.533333pt;}
.x8_c01081{left:106.533333pt;}
.x4_c01081{left:107.600000pt;}
.x3_c01081{left:108.533333pt;}
.x1_c01081{left:109.466667pt;}
.x6_c01081{left:176.400000pt;}
.xd_c01081{left:253.801554pt;}
.xc_c01081{left:492.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_c01082 {
    display:none;
  }
  .loading-indicator_c01082.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01082 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01082 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01082" -> "#page-container .classname_c01082")
 */
.pf_c01082 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01082 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01082.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01082 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01082 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01082 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01082 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01082 {overflow:visible;}
  }
}
.c_c01082 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01082 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01082:after { /* webkit #35443 */
  content: '';
}
.t_c01082:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01082 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01082 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01082 { /* info for Javascript */
  display:none;
}
.l_c01082 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01082 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01082 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01082:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01082{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01082;src:url('chunks/assets/font_e4d572d4509551e8388f2cb2.woff2')format("woff");}.ff1_c01082{font-family:ff1_c01082;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01082;src:url('chunks/assets/font_3a1f86077199374bf50e3fbc.woff2')format("woff");}.ff2_c01082{font-family:ff2_c01082;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01082;src:url('chunks/assets/font_b7e8ec5befcef901d054b20e.woff2')format("woff");}.ff3_c01082{font-family:ff3_c01082;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01082;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff4_c01082{font-family:ff4_c01082;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01082{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01082{vertical-align:0.000000px;}
.ls2_c01082{letter-spacing:-3.000000px;}
.ls0_c01082{letter-spacing:0.000000px;}
.ls1_c01082{letter-spacing:3.000000px;}
.sc__c01082{text-shadow:none;}
.sc0_c01082{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01082{-webkit-text-stroke:0px transparent;}
.sc0_c01082{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01082{word-spacing:-59.184000px;}
.ws1_c01082{word-spacing:-20.250000px;}
.ws2_c01082{word-spacing:0.000000px;}
._14_c01082{margin-left:-19.764000px;}
._11_c01082{margin-left:-12.231000px;}
._b_c01082{margin-left:-9.396000px;}
._a_c01082{margin-left:-7.695000px;}
._12_c01082{margin-left:-6.561000px;}
._5_c01082{margin-left:-5.427000px;}
._2_c01082{margin-left:-4.050000px;}
._8_c01082{margin-left:-2.916000px;}
._7_c01082{margin-left:-1.782000px;}
._4_c01082{width:1.620000px;}
._3_c01082{width:2.673000px;}
._0_c01082{width:4.455000px;}
._6_c01082{width:6.156000px;}
._1_c01082{width:7.533000px;}
._9_c01082{width:8.748000px;}
._10_c01082{width:9.882000px;}
._e_c01082{width:11.097000px;}
._c_c01082{width:12.474000px;}
._d_c01082{width:14.580000px;}
._15_c01082{width:15.876000px;}
._f_c01082{width:18.549000px;}
._16_c01082{width:27.240000px;}
._13_c01082{width:33.630000px;}
._17_c01082{width:327.864000px;}
.fc2_c01082{color:transparent;}
.fc1_c01082{color:rgb(128,128,128);}
.fc0_c01082{color:rgb(0,0,0);}
.fs4_c01082{font-size:48.000000px;}
.fs3_c01082{font-size:60.000000px;}
.fs1_c01082{font-size:72.000000px;}
.fs2_c01082{font-size:78.000000px;}
.fs0_c01082{font-size:81.000000px;}
.y0_c01082{bottom:0.000000px;}
.y25_c01082{bottom:3.105000px;}
.y24_c01082{bottom:7.228369px;}
.y23_c01082{bottom:83.670000px;}
.y22_c01082{bottom:108.270000px;}
.y21_c01082{bottom:133.320000px;}
.y20_c01082{bottom:158.220000px;}
.y1f_c01082{bottom:182.820000px;}
.y1e_c01082{bottom:207.120000px;}
.y1d_c01082{bottom:231.870000px;}
.y1c_c01082{bottom:255.870000px;}
.y1b_c01082{bottom:281.070000px;}
.y1a_c01082{bottom:304.470000px;}
.y19_c01082{bottom:328.770000px;}
.y18_c01082{bottom:353.670000px;}
.y17_c01082{bottom:376.920000px;}
.y16_c01082{bottom:401.220000px;}
.y15_c01082{bottom:425.220000px;}
.y14_c01082{bottom:449.220000px;}
.y13_c01082{bottom:473.220000px;}
.y12_c01082{bottom:498.420000px;}
.y11_c01082{bottom:521.370000px;}
.y10_c01082{bottom:544.770000px;}
.yf_c01082{bottom:568.620000px;}
.ye_c01082{bottom:592.320000px;}
.yd_c01082{bottom:616.320000px;}
.yc_c01082{bottom:640.170000px;}
.yb_c01082{bottom:663.570000px;}
.ya_c01082{bottom:687.720000px;}
.y9_c01082{bottom:711.720000px;}
.y8_c01082{bottom:735.720000px;}
.y7_c01082{bottom:759.720000px;}
.y6_c01082{bottom:783.720000px;}
.y5_c01082{bottom:807.870000px;}
.y4_c01082{bottom:832.170000px;}
.y3_c01082{bottom:855.870000px;}
.y2_c01082{bottom:879.870000px;}
.y1_c01082{bottom:903.420000px;}
.h4_c01082{height:13.200073px;}
.h5_c01082{height:43.804688px;}
.h1_c01082{height:79.497070px;}
.h2_c01082{height:91.160156px;}
.h3_c01082{height:98.756836px;}
.h0_c01082{height:975.750000px;}
.w2_c01082{width:104.875500px;}
.w0_c01082{width:664.200000px;}
.w1_c01082{width:664.500000px;}
.x0_c01082{left:0.000000px;}
.x3_c01082{left:43.200000px;}
.x1_c01082{left:45.000000px;}
.x2_c01082{left:46.200000px;}
.x5_c01082{left:283.914230px;}
.x4_c01082{left:339.900000px;}
@media print{
.v0_c01082{vertical-align:0.000000pt;}
.ls2_c01082{letter-spacing:-2.666667pt;}
.ls0_c01082{letter-spacing:0.000000pt;}
.ls1_c01082{letter-spacing:2.666667pt;}
.ws0_c01082{word-spacing:-52.608000pt;}
.ws1_c01082{word-spacing:-18.000000pt;}
.ws2_c01082{word-spacing:0.000000pt;}
._14_c01082{margin-left:-17.568000pt;}
._11_c01082{margin-left:-10.872000pt;}
._b_c01082{margin-left:-8.352000pt;}
._a_c01082{margin-left:-6.840000pt;}
._12_c01082{margin-left:-5.832000pt;}
._5_c01082{margin-left:-4.824000pt;}
._2_c01082{margin-left:-3.600000pt;}
._8_c01082{margin-left:-2.592000pt;}
._7_c01082{margin-left:-1.584000pt;}
._4_c01082{width:1.440000pt;}
._3_c01082{width:2.376000pt;}
._0_c01082{width:3.960000pt;}
._6_c01082{width:5.472000pt;}
._1_c01082{width:6.696000pt;}
._9_c01082{width:7.776000pt;}
._10_c01082{width:8.784000pt;}
._e_c01082{width:9.864000pt;}
._c_c01082{width:11.088000pt;}
._d_c01082{width:12.960000pt;}
._15_c01082{width:14.112000pt;}
._f_c01082{width:16.488000pt;}
._16_c01082{width:24.213333pt;}
._13_c01082{width:29.893333pt;}
._17_c01082{width:291.434667pt;}
.fs4_c01082{font-size:42.666667pt;}
.fs3_c01082{font-size:53.333333pt;}
.fs1_c01082{font-size:64.000000pt;}
.fs2_c01082{font-size:69.333333pt;}
.fs0_c01082{font-size:72.000000pt;}
.y0_c01082{bottom:0.000000pt;}
.y25_c01082{bottom:2.760000pt;}
.y24_c01082{bottom:6.425217pt;}
.y23_c01082{bottom:74.373333pt;}
.y22_c01082{bottom:96.240000pt;}
.y21_c01082{bottom:118.506667pt;}
.y20_c01082{bottom:140.640000pt;}
.y1f_c01082{bottom:162.506667pt;}
.y1e_c01082{bottom:184.106667pt;}
.y1d_c01082{bottom:206.106667pt;}
.y1c_c01082{bottom:227.440000pt;}
.y1b_c01082{bottom:249.840000pt;}
.y1a_c01082{bottom:270.640000pt;}
.y19_c01082{bottom:292.240000pt;}
.y18_c01082{bottom:314.373333pt;}
.y17_c01082{bottom:335.040000pt;}
.y16_c01082{bottom:356.640000pt;}
.y15_c01082{bottom:377.973333pt;}
.y14_c01082{bottom:399.306667pt;}
.y13_c01082{bottom:420.640000pt;}
.y12_c01082{bottom:443.040000pt;}
.y11_c01082{bottom:463.440000pt;}
.y10_c01082{bottom:484.240000pt;}
.yf_c01082{bottom:505.440000pt;}
.ye_c01082{bottom:526.506667pt;}
.yd_c01082{bottom:547.840000pt;}
.yc_c01082{bottom:569.040000pt;}
.yb_c01082{bottom:589.840000pt;}
.ya_c01082{bottom:611.306667pt;}
.y9_c01082{bottom:632.640000pt;}
.y8_c01082{bottom:653.973333pt;}
.y7_c01082{bottom:675.306667pt;}
.y6_c01082{bottom:696.640000pt;}
.y5_c01082{bottom:718.106667pt;}
.y4_c01082{bottom:739.706667pt;}
.y3_c01082{bottom:760.773333pt;}
.y2_c01082{bottom:782.106667pt;}
.y1_c01082{bottom:803.040000pt;}
.h4_c01082{height:11.733399pt;}
.h5_c01082{height:38.937500pt;}
.h1_c01082{height:70.664062pt;}
.h2_c01082{height:81.031250pt;}
.h3_c01082{height:87.783854pt;}
.h0_c01082{height:867.333333pt;}
.w2_c01082{width:93.222667pt;}
.w0_c01082{width:590.400000pt;}
.w1_c01082{width:590.666667pt;}
.x0_c01082{left:0.000000pt;}
.x3_c01082{left:38.400000pt;}
.x1_c01082{left:40.000000pt;}
.x2_c01082{left:41.066667pt;}
.x5_c01082{left:252.368205pt;}
.x4_c01082{left:302.133333pt;}
}





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

.ir_c01083:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01083{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01083;src:url('chunks/assets/font_f6171dfd2ec505c83eb5db30.woff2')format("woff");}.ff1_c01083{font-family:ff1_c01083;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01083;src:url('chunks/assets/font_f0b1a1f0c6fcbb62ff276f5f.woff2')format("woff");}.ff2_c01083{font-family:ff2_c01083;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01083;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff3_c01083{font-family:ff3_c01083;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01083;src:url('chunks/assets/font_4af0892c35372ba25e9a705c.woff2')format("woff");}.ff4_c01083{font-family:ff4_c01083;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01083;src:url('chunks/assets/font_b63b0b681cd9b250599413d9.woff2')format("woff");}.ff5_c01083{font-family:ff5_c01083;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01083;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c01083{font-family:ff6_c01083;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01083{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01083{vertical-align:0.000000px;}
.ls1_c01083{letter-spacing:0.000000px;}
.ls0_c01083{letter-spacing:0.816000px;}
.sc__c01083{text-shadow:none;}
.sc0_c01083{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01083{-webkit-text-stroke:0px transparent;}
.sc0_c01083{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01083{word-spacing:-33.000000px;}
.ws2_c01083{word-spacing:-20.250000px;}
.ws0_c01083{word-spacing:-17.352000px;}
.ws3_c01083{word-spacing:0.000000px;}
._20_c01083{margin-left:-24.138000px;}
._24_c01083{margin-left:-22.212000px;}
._12_c01083{margin-left:-20.979000px;}
._10_c01083{margin-left:-19.197000px;}
._27_c01083{margin-left:-17.925000px;}
._1c_c01083{margin-left:-15.462000px;}
._1d_c01083{margin-left:-14.418000px;}
._d_c01083{margin-left:-11.094000px;}
._e_c01083{margin-left:-9.162000px;}
._f_c01083{margin-left:-7.632000px;}
._15_c01083{margin-left:-6.348000px;}
._a_c01083{margin-left:-5.022000px;}
._b_c01083{margin-left:-2.970000px;}
._3_c01083{margin-left:-1.944000px;}
._16_c01083{width:1.017000px;}
._5_c01083{width:2.025000px;}
._2_c01083{width:3.240000px;}
._4_c01083{width:4.536000px;}
._1_c01083{width:5.994000px;}
._8_c01083{width:7.209000px;}
._6_c01083{width:8.667000px;}
._7_c01083{width:10.044000px;}
._9_c01083{width:11.097000px;}
._14_c01083{width:12.105000px;}
._13_c01083{width:14.256000px;}
._11_c01083{width:15.273000px;}
._1a_c01083{width:16.326000px;}
._23_c01083{width:23.097000px;}
._1f_c01083{width:28.284000px;}
._22_c01083{width:30.234000px;}
._c_c01083{width:49.797000px;}
._25_c01083{width:80.862000px;}
._17_c01083{width:96.228000px;}
._0_c01083{width:163.539000px;}
._1e_c01083{width:252.885000px;}
._18_c01083{width:291.456000px;}
._19_c01083{width:302.535000px;}
._21_c01083{width:337.041000px;}
._1b_c01083{width:358.911000px;}
._26_c01083{width:506.100000px;}
.fc2_c01083{color:transparent;}
.fc1_c01083{color:rgb(128,128,128);}
.fc0_c01083{color:rgb(0,0,0);}
.fs4_c01083{font-size:48.000000px;}
.fs2_c01083{font-size:66.000000px;}
.fs3_c01083{font-size:69.000000px;}
.fs1_c01083{font-size:72.000000px;}
.fs0_c01083{font-size:81.000000px;}
.y0_c01083{bottom:0.000000px;}
.y25_c01083{bottom:3.105000px;}
.y24_c01083{bottom:7.228357px;}
.y23_c01083{bottom:44.880000px;}
.y22_c01083{bottom:67.530000px;}
.y21_c01083{bottom:93.180000px;}
.y20_c01083{bottom:116.880000px;}
.y1f_c01083{bottom:142.080000px;}
.y1e_c01083{bottom:166.380000px;}
.y1d_c01083{bottom:188.280000px;}
.y1c_c01083{bottom:215.730000px;}
.y1b_c01083{bottom:240.330000px;}
.y1a_c01083{bottom:264.330000px;}
.y19_c01083{bottom:287.880000px;}
.y18_c01083{bottom:311.580000px;}
.y17_c01083{bottom:335.130000px;}
.y16_c01083{bottom:358.080000px;}
.y15_c01083{bottom:385.080000px;}
.y14_c01083{bottom:408.780000px;}
.y13_c01083{bottom:432.630000px;}
.y12_c01083{bottom:456.330000px;}
.y11_c01083{bottom:480.330000px;}
.y10_c01083{bottom:503.580000px;}
.yf_c01083{bottom:527.880000px;}
.ye_c01083{bottom:551.580000px;}
.yd_c01083{bottom:575.880000px;}
.yc_c01083{bottom:600.030000px;}
.yb_c01083{bottom:624.030000px;}
.ya_c01083{bottom:648.330000px;}
.y9_c01083{bottom:672.330000px;}
.y8_c01083{bottom:696.030000px;}
.y7_c01083{bottom:720.330000px;}
.y6_c01083{bottom:744.480000px;}
.y5_c01083{bottom:767.880000px;}
.y4_c01083{bottom:792.180000px;}
.y3_c01083{bottom:814.680000px;}
.y2_c01083{bottom:840.330000px;}
.y1_c01083{bottom:864.630000px;}
.h5_c01083{height:13.200074px;}
.h6_c01083{height:43.804688px;}
.h2_c01083{height:79.497070px;}
.h4_c01083{height:84.269531px;}
.h3_c01083{height:91.160156px;}
.h1_c01083{height:965.250000px;}
.h0_c01083{height:965.550000px;}
.w2_c01083{width:104.875500px;}
.w1_c01083{width:653.250000px;}
.w0_c01083{width:653.400000px;}
.x0_c01083{left:0.000000px;}
.x3_c01083{left:35.100000px;}
.xd_c01083{left:46.650000px;}
.xe_c01083{left:49.650000px;}
.xf_c01083{left:51.000000px;}
.x10_c01083{left:52.350000px;}
.x12_c01083{left:54.750000px;}
.xb_c01083{left:58.500000px;}
.x1_c01083{left:77.250000px;}
.xa_c01083{left:106.650000px;}
.x2_c01083{left:130.350000px;}
.x4_c01083{left:132.900000px;}
.x5_c01083{left:133.950000px;}
.x7_c01083{left:135.450000px;}
.x8_c01083{left:136.650000px;}
.x9_c01083{left:138.450000px;}
.xc_c01083{left:139.800000px;}
.x11_c01083{left:146.850000px;}
.x13_c01083{left:148.500000px;}
.x6_c01083{left:159.600000px;}
.x15_c01083{left:278.514267px;}
.x14_c01083{left:585.900000px;}
@media print{
.v0_c01083{vertical-align:0.000000pt;}
.ls1_c01083{letter-spacing:0.000000pt;}
.ls0_c01083{letter-spacing:0.725333pt;}
.ws1_c01083{word-spacing:-29.333333pt;}
.ws2_c01083{word-spacing:-18.000000pt;}
.ws0_c01083{word-spacing:-15.424000pt;}
.ws3_c01083{word-spacing:0.000000pt;}
._20_c01083{margin-left:-21.456000pt;}
._24_c01083{margin-left:-19.744000pt;}
._12_c01083{margin-left:-18.648000pt;}
._10_c01083{margin-left:-17.064000pt;}
._27_c01083{margin-left:-15.933333pt;}
._1c_c01083{margin-left:-13.744000pt;}
._1d_c01083{margin-left:-12.816000pt;}
._d_c01083{margin-left:-9.861333pt;}
._e_c01083{margin-left:-8.144000pt;}
._f_c01083{margin-left:-6.784000pt;}
._15_c01083{margin-left:-5.642667pt;}
._a_c01083{margin-left:-4.464000pt;}
._b_c01083{margin-left:-2.640000pt;}
._3_c01083{margin-left:-1.728000pt;}
._16_c01083{width:0.904000pt;}
._5_c01083{width:1.800000pt;}
._2_c01083{width:2.880000pt;}
._4_c01083{width:4.032000pt;}
._1_c01083{width:5.328000pt;}
._8_c01083{width:6.408000pt;}
._6_c01083{width:7.704000pt;}
._7_c01083{width:8.928000pt;}
._9_c01083{width:9.864000pt;}
._14_c01083{width:10.760000pt;}
._13_c01083{width:12.672000pt;}
._11_c01083{width:13.576000pt;}
._1a_c01083{width:14.512000pt;}
._23_c01083{width:20.530667pt;}
._1f_c01083{width:25.141333pt;}
._22_c01083{width:26.874667pt;}
._c_c01083{width:44.264000pt;}
._25_c01083{width:71.877333pt;}
._17_c01083{width:85.536000pt;}
._0_c01083{width:145.368000pt;}
._1e_c01083{width:224.786667pt;}
._18_c01083{width:259.072000pt;}
._19_c01083{width:268.920000pt;}
._21_c01083{width:299.592000pt;}
._1b_c01083{width:319.032000pt;}
._26_c01083{width:449.866667pt;}
.fs4_c01083{font-size:42.666667pt;}
.fs2_c01083{font-size:58.666667pt;}
.fs3_c01083{font-size:61.333333pt;}
.fs1_c01083{font-size:64.000000pt;}
.fs0_c01083{font-size:72.000000pt;}
.y0_c01083{bottom:0.000000pt;}
.y25_c01083{bottom:2.760000pt;}
.y24_c01083{bottom:6.425206pt;}
.y23_c01083{bottom:39.893333pt;}
.y22_c01083{bottom:60.026667pt;}
.y21_c01083{bottom:82.826667pt;}
.y20_c01083{bottom:103.893333pt;}
.y1f_c01083{bottom:126.293333pt;}
.y1e_c01083{bottom:147.893333pt;}
.y1d_c01083{bottom:167.360000pt;}
.y1c_c01083{bottom:191.760000pt;}
.y1b_c01083{bottom:213.626667pt;}
.y1a_c01083{bottom:234.960000pt;}
.y19_c01083{bottom:255.893333pt;}
.y18_c01083{bottom:276.960000pt;}
.y17_c01083{bottom:297.893333pt;}
.y16_c01083{bottom:318.293333pt;}
.y15_c01083{bottom:342.293333pt;}
.y14_c01083{bottom:363.360000pt;}
.y13_c01083{bottom:384.560000pt;}
.y12_c01083{bottom:405.626667pt;}
.y11_c01083{bottom:426.960000pt;}
.y10_c01083{bottom:447.626667pt;}
.yf_c01083{bottom:469.226667pt;}
.ye_c01083{bottom:490.293333pt;}
.yd_c01083{bottom:511.893333pt;}
.yc_c01083{bottom:533.360000pt;}
.yb_c01083{bottom:554.693333pt;}
.ya_c01083{bottom:576.293333pt;}
.y9_c01083{bottom:597.626667pt;}
.y8_c01083{bottom:618.693333pt;}
.y7_c01083{bottom:640.293333pt;}
.y6_c01083{bottom:661.760000pt;}
.y5_c01083{bottom:682.560000pt;}
.y4_c01083{bottom:704.160000pt;}
.y3_c01083{bottom:724.160000pt;}
.y2_c01083{bottom:746.960000pt;}
.y1_c01083{bottom:768.560000pt;}
.h5_c01083{height:11.733399pt;}
.h6_c01083{height:38.937500pt;}
.h2_c01083{height:70.664062pt;}
.h4_c01083{height:74.906250pt;}
.h3_c01083{height:81.031250pt;}
.h1_c01083{height:858.000000pt;}
.h0_c01083{height:858.266667pt;}
.w2_c01083{width:93.222667pt;}
.w1_c01083{width:580.666667pt;}
.w0_c01083{width:580.800000pt;}
.x0_c01083{left:0.000000pt;}
.x3_c01083{left:31.200000pt;}
.xd_c01083{left:41.466667pt;}
.xe_c01083{left:44.133333pt;}
.xf_c01083{left:45.333333pt;}
.x10_c01083{left:46.533333pt;}
.x12_c01083{left:48.666667pt;}
.xb_c01083{left:52.000000pt;}
.x1_c01083{left:68.666667pt;}
.xa_c01083{left:94.800000pt;}
.x2_c01083{left:115.866667pt;}
.x4_c01083{left:118.133333pt;}
.x5_c01083{left:119.066667pt;}
.x7_c01083{left:120.400000pt;}
.x8_c01083{left:121.466667pt;}
.x9_c01083{left:123.066667pt;}
.xc_c01083{left:124.266667pt;}
.x11_c01083{left:130.533333pt;}
.x13_c01083{left:132.000000pt;}
.x6_c01083{left:141.866667pt;}
.x15_c01083{left:247.568237pt;}
.x14_c01083{left:520.800000pt;}
}





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

.ir_c01084:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01084{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01084;src:url('chunks/assets/font_f25ea8f4f76c449a560135a0.woff2')format("woff");}.ff1_c01084{font-family:ff1_c01084;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01084;src:url('chunks/assets/font_cbc742804e608dd6ea908a1b.woff2')format("woff");}.ff2_c01084{font-family:ff2_c01084;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01084;src:url('chunks/assets/font_7f93a8db5a157a7489d3e58b.woff2')format("woff");}.ff3_c01084{font-family:ff3_c01084;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01084;src:url('chunks/assets/font_40e6528c7287f72bb871ff41.woff2')format("woff");}.ff4_c01084{font-family:ff4_c01084;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01084;src:url('chunks/assets/font_9e077f2dd1a0963ff2302695.woff2')format("woff");}.ff5_c01084{font-family:ff5_c01084;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01084;src:url('chunks/assets/font_954a206f2593eb3da77fca10.woff2')format("woff");}.ff6_c01084{font-family:ff6_c01084;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01084;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c01084{font-family:ff7_c01084;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01084{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01084{vertical-align:-15.000000px;}
.v0_c01084{vertical-align:0.000000px;}
.ls3_c01084{letter-spacing:-9.000000px;}
.ls2_c01084{letter-spacing:0.000000px;}
.ls4_c01084{letter-spacing:9.000000px;}
.ls0_c01084{letter-spacing:34.050000px;}
.ls1_c01084{letter-spacing:149.460000px;}
.sc__c01084{text-shadow:none;}
.sc0_c01084{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01084{-webkit-text-stroke:0px transparent;}
.sc0_c01084{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01084{word-spacing:-32.250000px;}
.ws1_c01084{word-spacing:-25.500000px;}
.ws3_c01084{word-spacing:-24.750000px;}
.ws2_c01084{word-spacing:-17.352000px;}
.ws4_c01084{word-spacing:-15.750000px;}
.ws6_c01084{word-spacing:0.000000px;}
.ws5_c01084{word-spacing:12.798000px;}
._16_c01084{margin-left:-33.726000px;}
._1a_c01084{margin-left:-31.770000px;}
._11_c01084{margin-left:-23.634000px;}
._12_c01084{margin-left:-15.156000px;}
._13_c01084{margin-left:-14.031000px;}
._18_c01084{margin-left:-11.907000px;}
._7_c01084{margin-left:-10.536000px;}
._6_c01084{margin-left:-9.282000px;}
._4_c01084{margin-left:-7.140000px;}
._5_c01084{margin-left:-5.100000px;}
._b_c01084{margin-left:-3.147000px;}
._a_c01084{margin-left:-1.710000px;}
._2_c01084{width:1.734000px;}
._3_c01084{width:2.856000px;}
._1_c01084{width:3.978000px;}
._0_c01084{width:5.508000px;}
._9_c01084{width:6.567000px;}
._8_c01084{width:7.902000px;}
._d_c01084{width:8.991000px;}
._10_c01084{width:11.013000px;}
._e_c01084{width:12.429000px;}
._c_c01084{width:13.977000px;}
._f_c01084{width:15.498000px;}
._19_c01084{width:17.001000px;}
._1b_c01084{width:23.085000px;}
._15_c01084{width:26.772000px;}
._17_c01084{width:29.127000px;}
._14_c01084{width:31.620000px;}
._1c_c01084{width:53.379000px;}
.fc2_c01084{color:transparent;}
.fc1_c01084{color:rgb(128,128,128);}
.fc0_c01084{color:rgb(0,0,0);}
.fs8_c01084{font-size:48.000000px;}
.fs7_c01084{font-size:60.000000px;}
.fs6_c01084{font-size:63.000000px;}
.fs5_c01084{font-size:72.000000px;}
.fs4_c01084{font-size:75.000000px;}
.fs3_c01084{font-size:81.000000px;}
.fs2_c01084{font-size:87.000000px;}
.fs0_c01084{font-size:102.000000px;}
.fs1_c01084{font-size:129.000000px;}
.y0_c01084{bottom:0.000000px;}
.y25_c01084{bottom:3.105000px;}
.y24_c01084{bottom:7.228369px;}
.y23_c01084{bottom:58.770000px;}
.y22_c01084{bottom:88.020000px;}
.y21_c01084{bottom:112.620000px;}
.y20_c01084{bottom:136.320000px;}
.y1f_c01084{bottom:161.370000px;}
.y1e_c01084{bottom:185.520000px;}
.y1d_c01084{bottom:209.970000px;}
.y1c_c01084{bottom:234.270000px;}
.y1b_c01084{bottom:258.870000px;}
.y1a_c01084{bottom:286.620000px;}
.y19_c01084{bottom:306.720000px;}
.y18_c01084{bottom:353.970000px;}
.y17_c01084{bottom:378.870000px;}
.y16_c01084{bottom:402.870000px;}
.y15_c01084{bottom:426.870000px;}
.y14_c01084{bottom:450.570000px;}
.y13_c01084{bottom:474.570000px;}
.y12_c01084{bottom:498.570000px;}
.y11_c01084{bottom:523.020000px;}
.y10_c01084{bottom:547.470000px;}
.yf_c01084{bottom:571.020000px;}
.ye_c01084{bottom:593.670000px;}
.yd_c01084{bottom:617.220000px;}
.yc_c01084{bottom:641.520000px;}
.yb_c01084{bottom:665.220000px;}
.ya_c01084{bottom:689.220000px;}
.y9_c01084{bottom:712.770000px;}
.y8_c01084{bottom:737.070000px;}
.y7_c01084{bottom:763.470000px;}
.y6_c01084{bottom:785.070000px;}
.y5_c01084{bottom:809.670000px;}
.y4_c01084{bottom:833.520000px;}
.y3_c01084{bottom:857.220000px;}
.y2_c01084{bottom:881.220000px;}
.y1_c01084{bottom:914.220000px;}
.h7_c01084{height:13.200073px;}
.h8_c01084{height:43.804688px;}
.h6_c01084{height:75.966797px;}
.h3_c01084{height:79.497070px;}
.h4_c01084{height:84.269531px;}
.h5_c01084{height:104.839927px;}
.h2_c01084{height:126.543457px;}
.h1_c01084{height:986.250000px;}
.h0_c01084{height:986.550000px;}
.w1_c01084{width:104.875500px;}
.w0_c01084{width:672.000000px;}
.x0_c01084{left:0.000000px;}
.x2_c01084{left:41.250000px;}
.x3_c01084{left:42.900000px;}
.x4_c01084{left:44.550000px;}
.x5_c01084{left:46.500000px;}
.x6_c01084{left:48.300000px;}
.x7_c01084{left:49.950000px;}
.x8_c01084{left:51.600000px;}
.x9_c01084{left:52.950000px;}
.xa_c01084{left:55.650000px;}
.xb_c01084{left:57.000000px;}
.xc_c01084{left:58.350000px;}
.x1_c01084{left:59.700000px;}
.xd_c01084{left:61.500000px;}
.x11_c01084{left:65.250000px;}
.xf_c01084{left:66.450000px;}
.x12_c01084{left:67.800000px;}
.x13_c01084{left:69.450000px;}
.x10_c01084{left:115.800000px;}
.xe_c01084{left:160.350000px;}
.x15_c01084{left:287.814240px;}
.x14_c01084{left:399.300000px;}
@media print{
.v1_c01084{vertical-align:-13.333333pt;}
.v0_c01084{vertical-align:0.000000pt;}
.ls3_c01084{letter-spacing:-8.000000pt;}
.ls2_c01084{letter-spacing:0.000000pt;}
.ls4_c01084{letter-spacing:8.000000pt;}
.ls0_c01084{letter-spacing:30.266667pt;}
.ls1_c01084{letter-spacing:132.853333pt;}
.ws0_c01084{word-spacing:-28.666667pt;}
.ws1_c01084{word-spacing:-22.666667pt;}
.ws3_c01084{word-spacing:-22.000000pt;}
.ws2_c01084{word-spacing:-15.424000pt;}
.ws4_c01084{word-spacing:-14.000000pt;}
.ws6_c01084{word-spacing:0.000000pt;}
.ws5_c01084{word-spacing:11.376000pt;}
._16_c01084{margin-left:-29.978667pt;}
._1a_c01084{margin-left:-28.240000pt;}
._11_c01084{margin-left:-21.008000pt;}
._12_c01084{margin-left:-13.472000pt;}
._13_c01084{margin-left:-12.472000pt;}
._18_c01084{margin-left:-10.584000pt;}
._7_c01084{margin-left:-9.365333pt;}
._6_c01084{margin-left:-8.250667pt;}
._4_c01084{margin-left:-6.346667pt;}
._5_c01084{margin-left:-4.533333pt;}
._b_c01084{margin-left:-2.797333pt;}
._a_c01084{margin-left:-1.520000pt;}
._2_c01084{width:1.541333pt;}
._3_c01084{width:2.538667pt;}
._1_c01084{width:3.536000pt;}
._0_c01084{width:4.896000pt;}
._9_c01084{width:5.837333pt;}
._8_c01084{width:7.024000pt;}
._d_c01084{width:7.992000pt;}
._10_c01084{width:9.789333pt;}
._e_c01084{width:11.048000pt;}
._c_c01084{width:12.424000pt;}
._f_c01084{width:13.776000pt;}
._19_c01084{width:15.112000pt;}
._1b_c01084{width:20.520000pt;}
._15_c01084{width:23.797333pt;}
._17_c01084{width:25.890667pt;}
._14_c01084{width:28.106667pt;}
._1c_c01084{width:47.448000pt;}
.fs8_c01084{font-size:42.666667pt;}
.fs7_c01084{font-size:53.333333pt;}
.fs6_c01084{font-size:56.000000pt;}
.fs5_c01084{font-size:64.000000pt;}
.fs4_c01084{font-size:66.666667pt;}
.fs3_c01084{font-size:72.000000pt;}
.fs2_c01084{font-size:77.333333pt;}
.fs0_c01084{font-size:90.666667pt;}
.fs1_c01084{font-size:114.666667pt;}
.y0_c01084{bottom:0.000000pt;}
.y25_c01084{bottom:2.760000pt;}
.y24_c01084{bottom:6.425217pt;}
.y23_c01084{bottom:52.240000pt;}
.y22_c01084{bottom:78.240000pt;}
.y21_c01084{bottom:100.106667pt;}
.y20_c01084{bottom:121.173333pt;}
.y1f_c01084{bottom:143.440000pt;}
.y1e_c01084{bottom:164.906667pt;}
.y1d_c01084{bottom:186.640000pt;}
.y1c_c01084{bottom:208.240000pt;}
.y1b_c01084{bottom:230.106667pt;}
.y1a_c01084{bottom:254.773333pt;}
.y19_c01084{bottom:272.640000pt;}
.y18_c01084{bottom:314.640000pt;}
.y17_c01084{bottom:336.773333pt;}
.y16_c01084{bottom:358.106667pt;}
.y15_c01084{bottom:379.440000pt;}
.y14_c01084{bottom:400.506667pt;}
.y13_c01084{bottom:421.840000pt;}
.y12_c01084{bottom:443.173333pt;}
.y11_c01084{bottom:464.906667pt;}
.y10_c01084{bottom:486.640000pt;}
.yf_c01084{bottom:507.573333pt;}
.ye_c01084{bottom:527.706667pt;}
.yd_c01084{bottom:548.640000pt;}
.yc_c01084{bottom:570.240000pt;}
.yb_c01084{bottom:591.306667pt;}
.ya_c01084{bottom:612.640000pt;}
.y9_c01084{bottom:633.573333pt;}
.y8_c01084{bottom:655.173333pt;}
.y7_c01084{bottom:678.640000pt;}
.y6_c01084{bottom:697.840000pt;}
.y5_c01084{bottom:719.706667pt;}
.y4_c01084{bottom:740.906667pt;}
.y3_c01084{bottom:761.973333pt;}
.y2_c01084{bottom:783.306667pt;}
.y1_c01084{bottom:812.640000pt;}
.h7_c01084{height:11.733399pt;}
.h8_c01084{height:38.937500pt;}
.h6_c01084{height:67.526042pt;}
.h3_c01084{height:70.664062pt;}
.h4_c01084{height:74.906250pt;}
.h5_c01084{height:93.191046pt;}
.h2_c01084{height:112.483073pt;}
.h1_c01084{height:876.666667pt;}
.h0_c01084{height:876.933333pt;}
.w1_c01084{width:93.222667pt;}
.w0_c01084{width:597.333333pt;}
.x0_c01084{left:0.000000pt;}
.x2_c01084{left:36.666667pt;}
.x3_c01084{left:38.133333pt;}
.x4_c01084{left:39.600000pt;}
.x5_c01084{left:41.333333pt;}
.x6_c01084{left:42.933333pt;}
.x7_c01084{left:44.400000pt;}
.x8_c01084{left:45.866667pt;}
.x9_c01084{left:47.066667pt;}
.xa_c01084{left:49.466667pt;}
.xb_c01084{left:50.666667pt;}
.xc_c01084{left:51.866667pt;}
.x1_c01084{left:53.066667pt;}
.xd_c01084{left:54.666667pt;}
.x11_c01084{left:58.000000pt;}
.xf_c01084{left:59.066667pt;}
.x12_c01084{left:60.266667pt;}
.x13_c01084{left:61.733333pt;}
.x10_c01084{left:102.933333pt;}
.xe_c01084{left:142.533333pt;}
.x15_c01084{left:255.834880pt;}
.x14_c01084{left:354.933333pt;}
}





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

.ir_c01085:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01085{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01085;src:url('chunks/assets/font_f81b9ce6de0aa113e924a40b.woff2')format("woff");}.ff1_c01085{font-family:ff1_c01085;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01085;src:url('chunks/assets/font_fd1b5cda35adaaa9f4a2fe73.woff2')format("woff");}.ff2_c01085{font-family:ff2_c01085;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01085;src:url('chunks/assets/font_9d4e7f5fa3ab9e1a47f03790.woff2')format("woff");}.ff3_c01085{font-family:ff3_c01085;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01085;src:url('chunks/assets/font_6cf36762aec8b2cfaef674a7.woff2')format("woff");}.ff4_c01085{font-family:ff4_c01085;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01085;src:url('chunks/assets/font_322a4c5cf9e13937f212913d.woff2')format("woff");}.ff5_c01085{font-family:ff5_c01085;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01085;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c01085{font-family:ff6_c01085;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01085{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01085{vertical-align:0.000000px;}
.ls1_c01085{letter-spacing:0.000000px;}
.ls0_c01085{letter-spacing:3.450000px;}
.sc__c01085{text-shadow:none;}
.sc0_c01085{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01085{-webkit-text-stroke:0px transparent;}
.sc0_c01085{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01085{word-spacing:-74.688000px;}
.ws2_c01085{word-spacing:-59.184000px;}
.ws0_c01085{word-spacing:-20.784000px;}
.ws3_c01085{word-spacing:0.000000px;}
._19_c01085{margin-left:-38.151000px;}
._e_c01085{margin-left:-20.736000px;}
._21_c01085{margin-left:-18.711000px;}
._17_c01085{margin-left:-12.069000px;}
._a_c01085{margin-left:-9.720000px;}
._b_c01085{margin-left:-8.100000px;}
._1b_c01085{margin-left:-7.047000px;}
._7_c01085{margin-left:-5.994000px;}
._5_c01085{margin-left:-4.860000px;}
._16_c01085{margin-left:-3.807000px;}
._3_c01085{margin-left:-2.511000px;}
._1_c01085{margin-left:-1.134000px;}
._8_c01085{width:1.134000px;}
._2_c01085{width:2.187000px;}
._0_c01085{width:3.969000px;}
._13_c01085{width:5.022000px;}
._4_c01085{width:6.075000px;}
._6_c01085{width:7.776000px;}
._14_c01085{width:9.153000px;}
._9_c01085{width:10.449000px;}
._11_c01085{width:11.664000px;}
._d_c01085{width:13.122000px;}
._f_c01085{width:14.499000px;}
._c_c01085{width:16.200000px;}
._10_c01085{width:17.253000px;}
._1d_c01085{width:18.306000px;}
._15_c01085{width:22.185000px;}
._23_c01085{width:24.786000px;}
._12_c01085{width:32.967000px;}
._1c_c01085{width:37.866000px;}
._1f_c01085{width:59.373000px;}
._22_c01085{width:102.789000px;}
._25_c01085{width:116.640000px;}
._24_c01085{width:138.429000px;}
._20_c01085{width:219.672000px;}
._1a_c01085{width:481.950000px;}
._1e_c01085{width:833.733000px;}
._18_c01085{width:1745.955000px;}
.fc2_c01085{color:transparent;}
.fc1_c01085{color:rgb(128,128,128);}
.fc0_c01085{color:rgb(0,0,0);}
.fs1_c01085{font-size:48.000000px;}
.fs2_c01085{font-size:51.000000px;}
.fs4_c01085{font-size:72.000000px;}
.fs0_c01085{font-size:81.000000px;}
.fs3_c01085{font-size:96.000000px;}
.y0_c01085{bottom:0.000000px;}
.y25_c01085{bottom:3.105000px;}
.y24_c01085{bottom:7.228355px;}
.y23_c01085{bottom:69.735000px;}
.y22_c01085{bottom:93.435000px;}
.y21_c01085{bottom:118.485000px;}
.y20_c01085{bottom:143.985000px;}
.y1f_c01085{bottom:168.735000px;}
.y1e_c01085{bottom:192.285000px;}
.y1d_c01085{bottom:217.935000px;}
.y1c_c01085{bottom:240.885000px;}
.y1b_c01085{bottom:265.485000px;}
.y1a_c01085{bottom:291.135000px;}
.y19_c01085{bottom:314.535000px;}
.y18_c01085{bottom:338.385000px;}
.y17_c01085{bottom:363.135000px;}
.y16_c01085{bottom:387.135000px;}
.y15_c01085{bottom:411.285000px;}
.y14_c01085{bottom:433.635000px;}
.y13_c01085{bottom:459.885000px;}
.y12_c01085{bottom:483.585000px;}
.y11_c01085{bottom:507.885000px;}
.y10_c01085{bottom:531.885000px;}
.yf_c01085{bottom:556.485000px;}
.ye_c01085{bottom:579.735000px;}
.yd_c01085{bottom:604.035000px;}
.yc_c01085{bottom:628.335000px;}
.yb_c01085{bottom:652.335000px;}
.ya_c01085{bottom:676.335000px;}
.y9_c01085{bottom:700.335000px;}
.y8_c01085{bottom:724.485000px;}
.y7_c01085{bottom:748.785000px;}
.y6_c01085{bottom:772.185000px;}
.y5_c01085{bottom:796.185000px;}
.y4_c01085{bottom:820.035000px;}
.y3_c01085{bottom:844.035000px;}
.y2_c01085{bottom:868.035000px;}
.y1_c01085{bottom:892.335000px;}
.h5_c01085{height:13.200074px;}
.h6_c01085{height:43.804688px;}
.h2_c01085{height:79.497070px;}
.h4_c01085{height:84.269531px;}
.h3_c01085{height:100.608000px;}
.h1_c01085{height:975.000000px;}
.h0_c01085{height:975.225000px;}
.w2_c01085{width:104.875500px;}
.w0_c01085{width:659.850000px;}
.w1_c01085{width:660.000000px;}
.x0_c01085{left:0.000000px;}
.xe_c01085{left:20.700000px;}
.xc_c01085{left:24.300000px;}
.xf_c01085{left:115.800000px;}
.xd_c01085{left:117.750000px;}
.xb_c01085{left:119.100000px;}
.xa_c01085{left:120.150000px;}
.x9_c01085{left:121.500000px;}
.x8_c01085{left:122.850000px;}
.x7_c01085{left:124.500000px;}
.x6_c01085{left:125.850000px;}
.x5_c01085{left:126.900000px;}
.x4_c01085{left:127.950000px;}
.x3_c01085{left:129.300000px;}
.x2_c01085{left:130.350000px;}
.x1_c01085{left:132.000000px;}
.x10_c01085{left:281.739258px;}
@media print{
.v0_c01085{vertical-align:0.000000pt;}
.ls1_c01085{letter-spacing:0.000000pt;}
.ls0_c01085{letter-spacing:3.066667pt;}
.ws1_c01085{word-spacing:-66.389333pt;}
.ws2_c01085{word-spacing:-52.608000pt;}
.ws0_c01085{word-spacing:-18.474667pt;}
.ws3_c01085{word-spacing:0.000000pt;}
._19_c01085{margin-left:-33.912000pt;}
._e_c01085{margin-left:-18.432000pt;}
._21_c01085{margin-left:-16.632000pt;}
._17_c01085{margin-left:-10.728000pt;}
._a_c01085{margin-left:-8.640000pt;}
._b_c01085{margin-left:-7.200000pt;}
._1b_c01085{margin-left:-6.264000pt;}
._7_c01085{margin-left:-5.328000pt;}
._5_c01085{margin-left:-4.320000pt;}
._16_c01085{margin-left:-3.384000pt;}
._3_c01085{margin-left:-2.232000pt;}
._1_c01085{margin-left:-1.008000pt;}
._8_c01085{width:1.008000pt;}
._2_c01085{width:1.944000pt;}
._0_c01085{width:3.528000pt;}
._13_c01085{width:4.464000pt;}
._4_c01085{width:5.400000pt;}
._6_c01085{width:6.912000pt;}
._14_c01085{width:8.136000pt;}
._9_c01085{width:9.288000pt;}
._11_c01085{width:10.368000pt;}
._d_c01085{width:11.664000pt;}
._f_c01085{width:12.888000pt;}
._c_c01085{width:14.400000pt;}
._10_c01085{width:15.336000pt;}
._1d_c01085{width:16.272000pt;}
._15_c01085{width:19.720000pt;}
._23_c01085{width:22.032000pt;}
._12_c01085{width:29.304000pt;}
._1c_c01085{width:33.658667pt;}
._1f_c01085{width:52.776000pt;}
._22_c01085{width:91.368000pt;}
._25_c01085{width:103.680000pt;}
._24_c01085{width:123.048000pt;}
._20_c01085{width:195.264000pt;}
._1a_c01085{width:428.400000pt;}
._1e_c01085{width:741.096000pt;}
._18_c01085{width:1551.960000pt;}
.fs1_c01085{font-size:42.666667pt;}
.fs2_c01085{font-size:45.333333pt;}
.fs4_c01085{font-size:64.000000pt;}
.fs0_c01085{font-size:72.000000pt;}
.fs3_c01085{font-size:85.333333pt;}
.y0_c01085{bottom:0.000000pt;}
.y25_c01085{bottom:2.760000pt;}
.y24_c01085{bottom:6.425204pt;}
.y23_c01085{bottom:61.986667pt;}
.y22_c01085{bottom:83.053333pt;}
.y21_c01085{bottom:105.320000pt;}
.y20_c01085{bottom:127.986667pt;}
.y1f_c01085{bottom:149.986667pt;}
.y1e_c01085{bottom:170.920000pt;}
.y1d_c01085{bottom:193.720000pt;}
.y1c_c01085{bottom:214.120000pt;}
.y1b_c01085{bottom:235.986667pt;}
.y1a_c01085{bottom:258.786667pt;}
.y19_c01085{bottom:279.586667pt;}
.y18_c01085{bottom:300.786667pt;}
.y17_c01085{bottom:322.786667pt;}
.y16_c01085{bottom:344.120000pt;}
.y15_c01085{bottom:365.586667pt;}
.y14_c01085{bottom:385.453333pt;}
.y13_c01085{bottom:408.786667pt;}
.y12_c01085{bottom:429.853333pt;}
.y11_c01085{bottom:451.453333pt;}
.y10_c01085{bottom:472.786667pt;}
.yf_c01085{bottom:494.653333pt;}
.ye_c01085{bottom:515.320000pt;}
.yd_c01085{bottom:536.920000pt;}
.yc_c01085{bottom:558.520000pt;}
.yb_c01085{bottom:579.853333pt;}
.ya_c01085{bottom:601.186667pt;}
.y9_c01085{bottom:622.520000pt;}
.y8_c01085{bottom:643.986667pt;}
.y7_c01085{bottom:665.586667pt;}
.y6_c01085{bottom:686.386667pt;}
.y5_c01085{bottom:707.720000pt;}
.y4_c01085{bottom:728.920000pt;}
.y3_c01085{bottom:750.253333pt;}
.y2_c01085{bottom:771.586667pt;}
.y1_c01085{bottom:793.186667pt;}
.h5_c01085{height:11.733399pt;}
.h6_c01085{height:38.937500pt;}
.h2_c01085{height:70.664062pt;}
.h4_c01085{height:74.906250pt;}
.h3_c01085{height:89.429333pt;}
.h1_c01085{height:866.666667pt;}
.h0_c01085{height:866.866667pt;}
.w2_c01085{width:93.222667pt;}
.w0_c01085{width:586.533333pt;}
.w1_c01085{width:586.666667pt;}
.x0_c01085{left:0.000000pt;}
.xe_c01085{left:18.400000pt;}
.xc_c01085{left:21.600000pt;}
.xf_c01085{left:102.933333pt;}
.xd_c01085{left:104.666667pt;}
.xb_c01085{left:105.866667pt;}
.xa_c01085{left:106.800000pt;}
.x9_c01085{left:108.000000pt;}
.x8_c01085{left:109.200000pt;}
.x7_c01085{left:110.666667pt;}
.x6_c01085{left:111.866667pt;}
.x5_c01085{left:112.800000pt;}
.x4_c01085{left:113.733333pt;}
.x3_c01085{left:114.933333pt;}
.x2_c01085{left:115.866667pt;}
.x1_c01085{left:117.333333pt;}
.x10_c01085{left:250.434896pt;}
}





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

.ir_c01086:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01086{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01086;src:url('chunks/assets/font_6dbeac7eca61c21f05c68956.woff2')format("woff");}.ff1_c01086{font-family:ff1_c01086;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01086;src:url('chunks/assets/font_ab1ca83f2b07155967d031b6.woff2')format("woff");}.ff2_c01086{font-family:ff2_c01086;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01086;src:url('chunks/assets/font_df34218c44f1b4f97b410d05.woff2')format("woff");}.ff3_c01086{font-family:ff3_c01086;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01086;src:url('chunks/assets/font_aea181707603dde992330f09.woff2')format("woff");}.ff4_c01086{font-family:ff4_c01086;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01086;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff5_c01086{font-family:ff5_c01086;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01086;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c01086{font-family:ff6_c01086;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01086{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01086{vertical-align:0.000000px;}
.ls2_c01086{letter-spacing:0.000000px;}
.ls0_c01086{letter-spacing:4.227000px;}
.ls1_c01086{letter-spacing:14.802000px;}
.ls3_c01086{letter-spacing:72.000000px;}
.sc__c01086{text-shadow:none;}
.sc0_c01086{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01086{-webkit-text-stroke:0px transparent;}
.sc0_c01086{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01086{word-spacing:-92.250000px;}
.ws2_c01086{word-spacing:-20.250000px;}
.ws1_c01086{word-spacing:-18.014400px;}
.ws3_c01086{word-spacing:0.000000px;}
._23_c01086{margin-left:-41.391000px;}
._f_c01086{margin-left:-22.572000px;}
._14_c01086{margin-left:-21.222000px;}
._13_c01086{margin-left:-19.926000px;}
._5_c01086{margin-left:-18.216000px;}
._17_c01086{margin-left:-14.823000px;}
._1a_c01086{margin-left:-10.044000px;}
._21_c01086{margin-left:-8.802000px;}
._7_c01086{margin-left:-7.722000px;}
._4_c01086{margin-left:-6.138000px;}
._d_c01086{margin-left:-4.572000px;}
._0_c01086{margin-left:-3.564000px;}
._1_c01086{margin-left:-2.376000px;}
._6_c01086{margin-left:-1.188000px;}
._2_c01086{width:1.584000px;}
._a_c01086{width:2.952000px;}
._b_c01086{width:4.050000px;}
._9_c01086{width:5.841000px;}
._1f_c01086{width:6.867000px;}
._8_c01086{width:7.920000px;}
._1c_c01086{width:9.279000px;}
._3_c01086{width:10.296000px;}
._10_c01086{width:11.406000px;}
._e_c01086{width:12.438000px;}
._1d_c01086{width:13.572000px;}
._c_c01086{width:15.102000px;}
._1e_c01086{width:17.262000px;}
._29_c01086{width:18.405000px;}
._27_c01086{width:22.917000px;}
._28_c01086{width:24.843000px;}
._24_c01086{width:27.135000px;}
._18_c01086{width:33.696000px;}
._26_c01086{width:43.287000px;}
._22_c01086{width:85.806000px;}
._25_c01086{width:94.383000px;}
._16_c01086{width:120.105000px;}
._1b_c01086{width:128.871000px;}
._20_c01086{width:155.868000px;}
._12_c01086{width:173.511000px;}
._15_c01086{width:206.874000px;}
._11_c01086{width:268.317000px;}
._19_c01086{width:352.872000px;}
.fc2_c01086{color:transparent;}
.fc1_c01086{color:rgb(128,128,128);}
.fc0_c01086{color:rgb(0,0,0);}
.fs6_c01086{font-size:48.000000px;}
.fs4_c01086{font-size:57.000000px;}
.fs3_c01086{font-size:64.800000px;}
.fs2_c01086{font-size:72.000000px;}
.fs5_c01086{font-size:78.000000px;}
.fs1_c01086{font-size:81.000000px;}
.fs0_c01086{font-size:99.000000px;}
.y0_c01086{bottom:0.000000px;}
.y25_c01086{bottom:3.105000px;}
.y24_c01086{bottom:7.228369px;}
.y23_c01086{bottom:45.570000px;}
.y22_c01086{bottom:68.520000px;}
.y21_c01086{bottom:94.470000px;}
.y20_c01086{bottom:143.070000px;}
.y1f_c01086{bottom:167.070000px;}
.y1e_c01086{bottom:192.270000px;}
.y1d_c01086{bottom:215.670000px;}
.y1c_c01086{bottom:240.270000px;}
.y1b_c01086{bottom:264.570000px;}
.y1a_c01086{bottom:288.120000px;}
.y19_c01086{bottom:311.820000px;}
.y18_c01086{bottom:335.370000px;}
.y17_c01086{bottom:359.670000px;}
.y16_c01086{bottom:383.670000px;}
.y15_c01086{bottom:407.370000px;}
.y14_c01086{bottom:433.020000px;}
.y13_c01086{bottom:455.520000px;}
.y12_c01086{bottom:479.520000px;}
.y11_c01086{bottom:503.220000px;}
.y10_c01086{bottom:527.220000px;}
.yf_c01086{bottom:551.370000px;}
.ye_c01086{bottom:574.470000px;}
.yd_c01086{bottom:598.770000px;}
.yc_c01086{bottom:622.620000px;}
.yb_c01086{bottom:646.620000px;}
.ya_c01086{bottom:670.920000px;}
.y9_c01086{bottom:699.570000px;}
.y8_c01086{bottom:716.520000px;}
.y7_c01086{bottom:743.220000px;}
.y6_c01086{bottom:767.070000px;}
.y5_c01086{bottom:790.770000px;}
.y4_c01086{bottom:815.070000px;}
.y3_c01086{bottom:839.070000px;}
.y2_c01086{bottom:862.620000px;}
.y1_c01086{bottom:896.970000px;}
.h5_c01086{height:13.200073px;}
.h6_c01086{height:43.804688px;}
.h3_c01086{height:79.497070px;}
.h4_c01086{height:98.756836px;}
.h2_c01086{height:115.870605px;}
.h1_c01086{height:986.250000px;}
.h0_c01086{height:986.550000px;}
.w1_c01086{width:104.875500px;}
.w0_c01086{width:672.000000px;}
.x0_c01086{left:0.000000px;}
.x2_c01086{left:41.550000px;}
.x3_c01086{left:42.900000px;}
.x4_c01086{left:44.100000px;}
.x5_c01086{left:46.200000px;}
.x7_c01086{left:47.250000px;}
.x8_c01086{left:48.600000px;}
.x1_c01086{left:69.450000px;}
.x6_c01086{left:70.950000px;}
.xa_c01086{left:287.814240px;}
.x9_c01086{left:472.500000px;}
@media print{
.v0_c01086{vertical-align:0.000000pt;}
.ls2_c01086{letter-spacing:0.000000pt;}
.ls0_c01086{letter-spacing:3.757333pt;}
.ls1_c01086{letter-spacing:13.157333pt;}
.ls3_c01086{letter-spacing:64.000000pt;}
.ws0_c01086{word-spacing:-82.000000pt;}
.ws2_c01086{word-spacing:-18.000000pt;}
.ws1_c01086{word-spacing:-16.012800pt;}
.ws3_c01086{word-spacing:0.000000pt;}
._23_c01086{margin-left:-36.792000pt;}
._f_c01086{margin-left:-20.064000pt;}
._14_c01086{margin-left:-18.864000pt;}
._13_c01086{margin-left:-17.712000pt;}
._5_c01086{margin-left:-16.192000pt;}
._17_c01086{margin-left:-13.176000pt;}
._1a_c01086{margin-left:-8.928000pt;}
._21_c01086{margin-left:-7.824000pt;}
._7_c01086{margin-left:-6.864000pt;}
._4_c01086{margin-left:-5.456000pt;}
._d_c01086{margin-left:-4.064000pt;}
._0_c01086{margin-left:-3.168000pt;}
._1_c01086{margin-left:-2.112000pt;}
._6_c01086{margin-left:-1.056000pt;}
._2_c01086{width:1.408000pt;}
._a_c01086{width:2.624000pt;}
._b_c01086{width:3.600000pt;}
._9_c01086{width:5.192000pt;}
._1f_c01086{width:6.104000pt;}
._8_c01086{width:7.040000pt;}
._1c_c01086{width:8.248000pt;}
._3_c01086{width:9.152000pt;}
._10_c01086{width:10.138667pt;}
._e_c01086{width:11.056000pt;}
._1d_c01086{width:12.064000pt;}
._c_c01086{width:13.424000pt;}
._1e_c01086{width:15.344000pt;}
._29_c01086{width:16.360000pt;}
._27_c01086{width:20.370667pt;}
._28_c01086{width:22.082667pt;}
._24_c01086{width:24.120000pt;}
._18_c01086{width:29.952000pt;}
._26_c01086{width:38.477333pt;}
._22_c01086{width:76.272000pt;}
._25_c01086{width:83.896000pt;}
._16_c01086{width:106.760000pt;}
._1b_c01086{width:114.552000pt;}
._20_c01086{width:138.549333pt;}
._12_c01086{width:154.232000pt;}
._15_c01086{width:183.888000pt;}
._11_c01086{width:238.504000pt;}
._19_c01086{width:313.664000pt;}
.fs6_c01086{font-size:42.666667pt;}
.fs4_c01086{font-size:50.666667pt;}
.fs3_c01086{font-size:57.600000pt;}
.fs2_c01086{font-size:64.000000pt;}
.fs5_c01086{font-size:69.333333pt;}
.fs1_c01086{font-size:72.000000pt;}
.fs0_c01086{font-size:88.000000pt;}
.y0_c01086{bottom:0.000000pt;}
.y25_c01086{bottom:2.760000pt;}
.y24_c01086{bottom:6.425217pt;}
.y23_c01086{bottom:40.506667pt;}
.y22_c01086{bottom:60.906667pt;}
.y21_c01086{bottom:83.973333pt;}
.y20_c01086{bottom:127.173333pt;}
.y1f_c01086{bottom:148.506667pt;}
.y1e_c01086{bottom:170.906667pt;}
.y1d_c01086{bottom:191.706667pt;}
.y1c_c01086{bottom:213.573333pt;}
.y1b_c01086{bottom:235.173333pt;}
.y1a_c01086{bottom:256.106667pt;}
.y19_c01086{bottom:277.173333pt;}
.y18_c01086{bottom:298.106667pt;}
.y17_c01086{bottom:319.706667pt;}
.y16_c01086{bottom:341.040000pt;}
.y15_c01086{bottom:362.106667pt;}
.y14_c01086{bottom:384.906667pt;}
.y13_c01086{bottom:404.906667pt;}
.y12_c01086{bottom:426.240000pt;}
.y11_c01086{bottom:447.306667pt;}
.y10_c01086{bottom:468.640000pt;}
.yf_c01086{bottom:490.106667pt;}
.ye_c01086{bottom:510.640000pt;}
.yd_c01086{bottom:532.240000pt;}
.yc_c01086{bottom:553.440000pt;}
.yb_c01086{bottom:574.773333pt;}
.ya_c01086{bottom:596.373333pt;}
.y9_c01086{bottom:621.840000pt;}
.y8_c01086{bottom:636.906667pt;}
.y7_c01086{bottom:660.640000pt;}
.y6_c01086{bottom:681.840000pt;}
.y5_c01086{bottom:702.906667pt;}
.y4_c01086{bottom:724.506667pt;}
.y3_c01086{bottom:745.840000pt;}
.y2_c01086{bottom:766.773333pt;}
.y1_c01086{bottom:797.306667pt;}
.h5_c01086{height:11.733399pt;}
.h6_c01086{height:38.937500pt;}
.h3_c01086{height:70.664062pt;}
.h4_c01086{height:87.783854pt;}
.h2_c01086{height:102.996094pt;}
.h1_c01086{height:876.666667pt;}
.h0_c01086{height:876.933333pt;}
.w1_c01086{width:93.222667pt;}
.w0_c01086{width:597.333333pt;}
.x0_c01086{left:0.000000pt;}
.x2_c01086{left:36.933333pt;}
.x3_c01086{left:38.133333pt;}
.x4_c01086{left:39.200000pt;}
.x5_c01086{left:41.066667pt;}
.x7_c01086{left:42.000000pt;}
.x8_c01086{left:43.200000pt;}
.x1_c01086{left:61.733333pt;}
.x6_c01086{left:63.066667pt;}
.xa_c01086{left:255.834880pt;}
.x9_c01086{left:420.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_c01087 {
    display:none;
  }
  .loading-indicator_c01087.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01087 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01087 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01087" -> "#page-container .classname_c01087")
 */
.pf_c01087 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01087 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01087.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01087 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01087 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01087 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01087 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01087 {overflow:visible;}
  }
}
.c_c01087 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01087 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01087:after { /* webkit #35443 */
  content: '';
}
.t_c01087:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01087 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01087 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01087 { /* info for Javascript */
  display:none;
}
.l_c01087 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01087 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01087 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01087:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01087{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01087;src:url('chunks/assets/font_f71ca0c6211a57e41fd7d4b3.woff2')format("woff");}.ff1_c01087{font-family:ff1_c01087;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01087;src:url('chunks/assets/font_a5d8a8cd223b434a80e41bbd.woff2')format("woff");}.ff2_c01087{font-family:ff2_c01087;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01087;src:url('chunks/assets/font_a804cad5c4f109a74a5c8a76.woff2')format("woff");}.ff3_c01087{font-family:ff3_c01087;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01087;src:url('chunks/assets/font_4c39d833922cf8468e3f856b.woff2')format("woff");}.ff4_c01087{font-family:ff4_c01087;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01087;src:url('chunks/assets/font_e78f5152b1a7e4937bbc2552.woff2')format("woff");}.ff5_c01087{font-family:ff5_c01087;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01087;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c01087{font-family:ff6_c01087;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01087{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c01087{vertical-align:-4.200000px;}
.v0_c01087{vertical-align:0.000000px;}
.ls3_c01087{letter-spacing:-6.000000px;}
.ls1_c01087{letter-spacing:0.000000px;}
.ls2_c01087{letter-spacing:6.000000px;}
.ls0_c01087{letter-spacing:7.200000px;}
.sc__c01087{text-shadow:none;}
.sc0_c01087{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01087{-webkit-text-stroke:0px transparent;}
.sc0_c01087{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01087{word-spacing:0.000000px;}
.ws0_c01087{word-spacing:2.550000px;}
.ws1_c01087{word-spacing:8.160000px;}
._12_c01087{margin-left:-26.082000px;}
._1b_c01087{margin-left:-23.982000px;}
._10_c01087{margin-left:-20.865000px;}
._13_c01087{margin-left:-14.733000px;}
._11_c01087{margin-left:-12.423000px;}
._18_c01087{margin-left:-10.188000px;}
._6_c01087{margin-left:-9.126000px;}
._5_c01087{margin-left:-7.446000px;}
._16_c01087{margin-left:-6.420000px;}
._9_c01087{margin-left:-5.214000px;}
._b_c01087{margin-left:-3.246000px;}
._c_c01087{margin-left:-2.040000px;}
._f_c01087{margin-left:-1.008000px;}
._1_c01087{width:1.818000px;}
._4_c01087{width:3.792000px;}
._7_c01087{width:5.712000px;}
._a_c01087{width:6.834000px;}
._3_c01087{width:8.760000px;}
._e_c01087{width:10.470000px;}
._1a_c01087{width:12.312000px;}
._8_c01087{width:13.371000px;}
._15_c01087{width:16.119000px;}
._d_c01087{width:17.208000px;}
._20_c01087{width:20.664000px;}
._1f_c01087{width:25.812000px;}
._1e_c01087{width:27.903000px;}
._14_c01087{width:33.504000px;}
._2_c01087{width:40.800000px;}
._0_c01087{width:45.288000px;}
._1d_c01087{width:132.402000px;}
._1c_c01087{width:275.886000px;}
._19_c01087{width:351.081000px;}
._17_c01087{width:565.014000px;}
.fc2_c01087{color:transparent;}
.fc1_c01087{color:rgb(128,128,128);}
.fc0_c01087{color:rgb(0,0,0);}
.fs5_c01087{font-size:48.000000px;}
.fs3_c01087{font-size:60.000000px;}
.fs4_c01087{font-size:72.000000px;}
.fs2_c01087{font-size:81.000000px;}
.fs0_c01087{font-size:102.000000px;}
.fs1_c01087{font-size:120.000000px;}
.y0_c01087{bottom:0.000000px;}
.y23_c01087{bottom:3.105000px;}
.y22_c01087{bottom:7.228371px;}
.y21_c01087{bottom:131.415000px;}
.y20_c01087{bottom:155.715000px;}
.y1f_c01087{bottom:180.615000px;}
.y1e_c01087{bottom:204.615000px;}
.y1d_c01087{bottom:229.215000px;}
.y1c_c01087{bottom:252.915000px;}
.y1b_c01087{bottom:277.815000px;}
.y1a_c01087{bottom:302.115000px;}
.y19_c01087{bottom:326.415000px;}
.y18_c01087{bottom:350.115000px;}
.y17_c01087{bottom:374.715000px;}
.y16_c01087{bottom:398.715000px;}
.y15_c01087{bottom:420.615000px;}
.y14_c01087{bottom:445.965000px;}
.y13_c01087{bottom:470.265000px;}
.y12_c01087{bottom:493.815000px;}
.y11_c01087{bottom:517.815000px;}
.y10_c01087{bottom:541.365000px;}
.yf_c01087{bottom:565.065000px;}
.ye_c01087{bottom:589.665000px;}
.yd_c01087{bottom:613.365000px;}
.yc_c01087{bottom:639.615000px;}
.yb_c01087{bottom:661.515000px;}
.ya_c01087{bottom:685.815000px;}
.y9_c01087{bottom:710.265000px;}
.y8_c01087{bottom:733.365000px;}
.y7_c01087{bottom:756.915000px;}
.y6_c01087{bottom:780.765000px;}
.y5_c01087{bottom:804.615000px;}
.y4_c01087{bottom:828.615000px;}
.y3_c01087{bottom:852.615000px;}
.y2_c01087{bottom:876.615000px;}
.y1_c01087{bottom:910.365000px;}
.h7_c01087{height:13.200074px;}
.h8_c01087{height:43.804688px;}
.h4_c01087{height:75.966797px;}
.h3_c01087{height:79.497070px;}
.h6_c01087{height:84.269531px;}
.h5_c01087{height:91.160156px;}
.h2_c01087{height:120.937500px;}
.h1_c01087{height:986.250000px;}
.h0_c01087{height:986.325000px;}
.w2_c01087{width:104.875500px;}
.w0_c01087{width:667.425000px;}
.w1_c01087{width:667.500000px;}
.x0_c01087{left:0.000000px;}
.x5_c01087{left:50.700000px;}
.x4_c01087{left:54.300000px;}
.x6_c01087{left:99.600000px;}
.x2_c01087{left:141.750000px;}
.x1_c01087{left:142.800000px;}
.x7_c01087{left:144.750000px;}
.x3_c01087{left:148.800000px;}
.x8_c01087{left:161.100000px;}
.x9_c01087{left:208.200000px;}
.xb_c01087{left:285.526749px;}
.xa_c01087{left:294.750000px;}
@media print{
.v1_c01087{vertical-align:-3.733333pt;}
.v0_c01087{vertical-align:0.000000pt;}
.ls3_c01087{letter-spacing:-5.333333pt;}
.ls1_c01087{letter-spacing:0.000000pt;}
.ls2_c01087{letter-spacing:5.333333pt;}
.ls0_c01087{letter-spacing:6.400000pt;}
.ws2_c01087{word-spacing:0.000000pt;}
.ws0_c01087{word-spacing:2.266667pt;}
.ws1_c01087{word-spacing:7.253333pt;}
._12_c01087{margin-left:-23.184000pt;}
._1b_c01087{margin-left:-21.317333pt;}
._10_c01087{margin-left:-18.546667pt;}
._13_c01087{margin-left:-13.096000pt;}
._11_c01087{margin-left:-11.042667pt;}
._18_c01087{margin-left:-9.056000pt;}
._6_c01087{margin-left:-8.112000pt;}
._5_c01087{margin-left:-6.618667pt;}
._16_c01087{margin-left:-5.706667pt;}
._9_c01087{margin-left:-4.634667pt;}
._b_c01087{margin-left:-2.885333pt;}
._c_c01087{margin-left:-1.813333pt;}
._f_c01087{margin-left:-0.896000pt;}
._1_c01087{width:1.616000pt;}
._4_c01087{width:3.370667pt;}
._7_c01087{width:5.077333pt;}
._a_c01087{width:6.074667pt;}
._3_c01087{width:7.786667pt;}
._e_c01087{width:9.306667pt;}
._1a_c01087{width:10.944000pt;}
._8_c01087{width:11.885333pt;}
._15_c01087{width:14.328000pt;}
._d_c01087{width:15.296000pt;}
._20_c01087{width:18.368000pt;}
._1f_c01087{width:22.944000pt;}
._1e_c01087{width:24.802667pt;}
._14_c01087{width:29.781333pt;}
._2_c01087{width:36.266667pt;}
._0_c01087{width:40.256000pt;}
._1d_c01087{width:117.690667pt;}
._1c_c01087{width:245.232000pt;}
._19_c01087{width:312.072000pt;}
._17_c01087{width:502.234667pt;}
.fs5_c01087{font-size:42.666667pt;}
.fs3_c01087{font-size:53.333333pt;}
.fs4_c01087{font-size:64.000000pt;}
.fs2_c01087{font-size:72.000000pt;}
.fs0_c01087{font-size:90.666667pt;}
.fs1_c01087{font-size:106.666667pt;}
.y0_c01087{bottom:0.000000pt;}
.y23_c01087{bottom:2.760000pt;}
.y22_c01087{bottom:6.425219pt;}
.y21_c01087{bottom:116.813333pt;}
.y20_c01087{bottom:138.413333pt;}
.y1f_c01087{bottom:160.546667pt;}
.y1e_c01087{bottom:181.880000pt;}
.y1d_c01087{bottom:203.746667pt;}
.y1c_c01087{bottom:224.813333pt;}
.y1b_c01087{bottom:246.946667pt;}
.y1a_c01087{bottom:268.546667pt;}
.y19_c01087{bottom:290.146667pt;}
.y18_c01087{bottom:311.213333pt;}
.y17_c01087{bottom:333.080000pt;}
.y16_c01087{bottom:354.413333pt;}
.y15_c01087{bottom:373.880000pt;}
.y14_c01087{bottom:396.413333pt;}
.y13_c01087{bottom:418.013333pt;}
.y12_c01087{bottom:438.946667pt;}
.y11_c01087{bottom:460.280000pt;}
.y10_c01087{bottom:481.213333pt;}
.yf_c01087{bottom:502.280000pt;}
.ye_c01087{bottom:524.146667pt;}
.yd_c01087{bottom:545.213333pt;}
.yc_c01087{bottom:568.546667pt;}
.yb_c01087{bottom:588.013333pt;}
.ya_c01087{bottom:609.613333pt;}
.y9_c01087{bottom:631.346667pt;}
.y8_c01087{bottom:651.880000pt;}
.y7_c01087{bottom:672.813333pt;}
.y6_c01087{bottom:694.013333pt;}
.y5_c01087{bottom:715.213333pt;}
.y4_c01087{bottom:736.546667pt;}
.y3_c01087{bottom:757.880000pt;}
.y2_c01087{bottom:779.213333pt;}
.y1_c01087{bottom:809.213333pt;}
.h7_c01087{height:11.733399pt;}
.h8_c01087{height:38.937500pt;}
.h4_c01087{height:67.526042pt;}
.h3_c01087{height:70.664062pt;}
.h6_c01087{height:74.906250pt;}
.h5_c01087{height:81.031250pt;}
.h2_c01087{height:107.500000pt;}
.h1_c01087{height:876.666667pt;}
.h0_c01087{height:876.733333pt;}
.w2_c01087{width:93.222667pt;}
.w0_c01087{width:593.266667pt;}
.w1_c01087{width:593.333333pt;}
.x0_c01087{left:0.000000pt;}
.x5_c01087{left:45.066667pt;}
.x4_c01087{left:48.266667pt;}
.x6_c01087{left:88.533333pt;}
.x2_c01087{left:126.000000pt;}
.x1_c01087{left:126.933333pt;}
.x7_c01087{left:128.666667pt;}
.x3_c01087{left:132.266667pt;}
.x8_c01087{left:143.200000pt;}
.x9_c01087{left:185.066667pt;}
.xb_c01087{left:253.801554pt;}
.xa_c01087{left:262.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_c01088 {
    display:none;
  }
  .loading-indicator_c01088.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01088 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01088 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01088" -> "#page-container .classname_c01088")
 */
.pf_c01088 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01088 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01088.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01088 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01088 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01088 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01088 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01088 {overflow:visible;}
  }
}
.c_c01088 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01088 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01088:after { /* webkit #35443 */
  content: '';
}
.t_c01088:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01088 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01088 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01088 { /* info for Javascript */
  display:none;
}
.l_c01088 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01088 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01088 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01088:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01088{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01088;src:url('chunks/assets/font_e177ac0c9061830ad1fddd74.woff2')format("woff");}.ff1_c01088{font-family:ff1_c01088;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01088;src:url('chunks/assets/font_5c31aa5d745d101efaf313ff.woff2')format("woff");}.ff2_c01088{font-family:ff2_c01088;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01088;src:url('chunks/assets/font_1b399404ada64b236528035d.woff2')format("woff");}.ff3_c01088{font-family:ff3_c01088;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01088;src:url('chunks/assets/font_24930ece872c8649f5583e58.woff2')format("woff");}.ff4_c01088{font-family:ff4_c01088;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01088;src:url('chunks/assets/font_e3c9dd5ccec5fe6d88d9ef53.woff2')format("woff");}.ff5_c01088{font-family:ff5_c01088;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01088;src:url('chunks/assets/font_72fe59f82c50ee3e0516291c.woff2')format("woff");}.ff6_c01088{font-family:ff6_c01088;line-height:1.437000;font-style:normal;font-weight: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_c01088;src:url('chunks/assets/font_4306825ea3c8c52ba277eb18.woff2')format("woff");}.ff7_c01088{font-family:ff7_c01088;line-height:1.437000;font-style:normal;font-weight: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_c01088;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff8_c01088{font-family:ff8_c01088;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01088{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01088{vertical-align:0.000000px;}
.ls3_c01088{letter-spacing:-9.000000px;}
.ls4_c01088{letter-spacing:-6.000000px;}
.ls2_c01088{letter-spacing:0.000000px;}
.ls1_c01088{letter-spacing:3.300000px;}
.ls0_c01088{letter-spacing:7.200000px;}
.sc__c01088{text-shadow:none;}
.sc0_c01088{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01088{-webkit-text-stroke:0px transparent;}
.sc0_c01088{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01088{word-spacing:-81.378000px;}
.ws1_c01088{word-spacing:-70.356000px;}
.ws3_c01088{word-spacing:-59.184000px;}
.ws4_c01088{word-spacing:-42.696000px;}
.ws5_c01088{word-spacing:0.000000px;}
.ws2_c01088{word-spacing:5.244000px;}
._2a_c01088{margin-left:-28.953000px;}
._29_c01088{margin-left:-20.574000px;}
._28_c01088{margin-left:-17.076000px;}
._15_c01088{margin-left:-15.975000px;}
._13_c01088{margin-left:-11.088000px;}
._23_c01088{margin-left:-8.946000px;}
._1c_c01088{margin-left:-7.857000px;}
._18_c01088{margin-left:-6.216000px;}
._1b_c01088{margin-left:-5.178000px;}
._9_c01088{margin-left:-4.104000px;}
._14_c01088{margin-left:-2.523000px;}
._1a_c01088{margin-left:-1.155000px;}
._19_c01088{width:1.128000px;}
._1_c01088{width:2.358000px;}
._0_c01088{width:3.663000px;}
._3_c01088{width:4.788000px;}
._2_c01088{width:6.138000px;}
._12_c01088{width:7.452000px;}
._5_c01088{width:9.036000px;}
._e_c01088{width:10.476000px;}
._6_c01088{width:11.583000px;}
._a_c01088{width:12.939000px;}
._4_c01088{width:14.562000px;}
._d_c01088{width:16.215000px;}
._b_c01088{width:18.240000px;}
._8_c01088{width:19.608000px;}
._f_c01088{width:20.919000px;}
._10_c01088{width:23.085000px;}
._c_c01088{width:24.225000px;}
._17_c01088{width:25.821000px;}
._1f_c01088{width:27.720000px;}
._11_c01088{width:28.731000px;}
._1e_c01088{width:30.294000px;}
._16_c01088{width:32.889000px;}
._20_c01088{width:34.830000px;}
._25_c01088{width:39.249000px;}
._22_c01088{width:41.433000px;}
._1d_c01088{width:43.659000px;}
._7_c01088{width:47.109000px;}
._27_c01088{width:114.741000px;}
._26_c01088{width:217.938000px;}
._21_c01088{width:296.217000px;}
._24_c01088{width:330.573000px;}
.fc2_c01088{color:transparent;}
.fc1_c01088{color:rgb(128,128,128);}
.fc0_c01088{color:rgb(0,0,0);}
.fs8_c01088{font-size:48.000000px;}
.fs3_c01088{font-size:57.000000px;}
.fs6_c01088{font-size:72.000000px;}
.fs5_c01088{font-size:81.000000px;}
.fs4_c01088{font-size:84.000000px;}
.fs7_c01088{font-size:87.000000px;}
.fs0_c01088{font-size:99.000000px;}
.fs1_c01088{font-size:102.000000px;}
.fs2_c01088{font-size:132.000000px;}
.y0_c01088{bottom:0.000000px;}
.y23_c01088{bottom:3.105000px;}
.y22_c01088{bottom:7.228369px;}
.y21_c01088{bottom:87.120000px;}
.y20_c01088{bottom:112.020000px;}
.y1f_c01088{bottom:136.920000px;}
.y1e_c01088{bottom:161.220000px;}
.y1d_c01088{bottom:184.620000px;}
.y1c_c01088{bottom:209.520000px;}
.y1b_c01088{bottom:233.820000px;}
.y1a_c01088{bottom:257.820000px;}
.y19_c01088{bottom:281.820000px;}
.y18_c01088{bottom:306.270000px;}
.y17_c01088{bottom:330.120000px;}
.y16_c01088{bottom:353.970000px;}
.y15_c01088{bottom:378.270000px;}
.y14_c01088{bottom:401.970000px;}
.y13_c01088{bottom:426.570000px;}
.y12_c01088{bottom:450.270000px;}
.y11_c01088{bottom:474.120000px;}
.y10_c01088{bottom:498.120000px;}
.yf_c01088{bottom:521.820000px;}
.ye_c01088{bottom:546.420000px;}
.yd_c01088{bottom:569.370000px;}
.yc_c01088{bottom:593.370000px;}
.yb_c01088{bottom:618.870000px;}
.ya_c01088{bottom:641.970000px;}
.y9_c01088{bottom:666.270000px;}
.y8_c01088{bottom:689.220000px;}
.y7_c01088{bottom:713.070000px;}
.y6_c01088{bottom:736.770000px;}
.y5_c01088{bottom:792.420000px;}
.y4_c01088{bottom:821.370000px;}
.y3_c01088{bottom:849.720000px;}
.y2_c01088{bottom:877.770000px;}
.y1_c01088{bottom:911.970000px;}
.ha_c01088{height:13.200073px;}
.hb_c01088{height:43.804688px;}
.h5_c01088{height:55.914551px;}
.h3_c01088{height:55.942383px;}
.h6_c01088{height:79.497070px;}
.h7_c01088{height:84.269531px;}
.h4_c01088{height:88.032000px;}
.h9_c01088{height:91.160156px;}
.h8_c01088{height:91.176000px;}
.h2_c01088{height:167.126953px;}
.h1_c01088{height:986.250000px;}
.h0_c01088{height:986.550000px;}
.w1_c01088{width:104.875500px;}
.w0_c01088{width:672.000000px;}
.x0_c01088{left:0.000000px;}
.x2_c01088{left:54.300000px;}
.x8_c01088{left:61.200000px;}
.x9_c01088{left:62.850000px;}
.xa_c01088{left:64.500000px;}
.xb_c01088{left:66.150000px;}
.xc_c01088{left:67.500000px;}
.x1_c01088{left:85.050000px;}
.x7_c01088{left:88.200000px;}
.x3_c01088{left:135.300000px;}
.x5_c01088{left:193.050000px;}
.x6_c01088{left:194.100000px;}
.x4_c01088{left:232.650000px;}
.xd_c01088{left:287.814240px;}
@media print{
.v0_c01088{vertical-align:0.000000pt;}
.ls3_c01088{letter-spacing:-8.000000pt;}
.ls4_c01088{letter-spacing:-5.333333pt;}
.ls2_c01088{letter-spacing:0.000000pt;}
.ls1_c01088{letter-spacing:2.933333pt;}
.ls0_c01088{letter-spacing:6.400000pt;}
.ws0_c01088{word-spacing:-72.336000pt;}
.ws1_c01088{word-spacing:-62.538667pt;}
.ws3_c01088{word-spacing:-52.608000pt;}
.ws4_c01088{word-spacing:-37.952000pt;}
.ws5_c01088{word-spacing:0.000000pt;}
.ws2_c01088{word-spacing:4.661333pt;}
._2a_c01088{margin-left:-25.736000pt;}
._29_c01088{margin-left:-18.288000pt;}
._28_c01088{margin-left:-15.178667pt;}
._15_c01088{margin-left:-14.200000pt;}
._13_c01088{margin-left:-9.856000pt;}
._23_c01088{margin-left:-7.952000pt;}
._1c_c01088{margin-left:-6.984000pt;}
._18_c01088{margin-left:-5.525333pt;}
._1b_c01088{margin-left:-4.602667pt;}
._9_c01088{margin-left:-3.648000pt;}
._14_c01088{margin-left:-2.242667pt;}
._1a_c01088{margin-left:-1.026667pt;}
._19_c01088{width:1.002667pt;}
._1_c01088{width:2.096000pt;}
._0_c01088{width:3.256000pt;}
._3_c01088{width:4.256000pt;}
._2_c01088{width:5.456000pt;}
._12_c01088{width:6.624000pt;}
._5_c01088{width:8.032000pt;}
._e_c01088{width:9.312000pt;}
._6_c01088{width:10.296000pt;}
._a_c01088{width:11.501333pt;}
._4_c01088{width:12.944000pt;}
._d_c01088{width:14.413333pt;}
._b_c01088{width:16.213333pt;}
._8_c01088{width:17.429333pt;}
._f_c01088{width:18.594667pt;}
._10_c01088{width:20.520000pt;}
._c_c01088{width:21.533333pt;}
._17_c01088{width:22.952000pt;}
._1f_c01088{width:24.640000pt;}
._11_c01088{width:25.538667pt;}
._1e_c01088{width:26.928000pt;}
._16_c01088{width:29.234667pt;}
._20_c01088{width:30.960000pt;}
._25_c01088{width:34.888000pt;}
._22_c01088{width:36.829333pt;}
._1d_c01088{width:38.808000pt;}
._7_c01088{width:41.874667pt;}
._27_c01088{width:101.992000pt;}
._26_c01088{width:193.722667pt;}
._21_c01088{width:263.304000pt;}
._24_c01088{width:293.842667pt;}
.fs8_c01088{font-size:42.666667pt;}
.fs3_c01088{font-size:50.666667pt;}
.fs6_c01088{font-size:64.000000pt;}
.fs5_c01088{font-size:72.000000pt;}
.fs4_c01088{font-size:74.666667pt;}
.fs7_c01088{font-size:77.333333pt;}
.fs0_c01088{font-size:88.000000pt;}
.fs1_c01088{font-size:90.666667pt;}
.fs2_c01088{font-size:117.333333pt;}
.y0_c01088{bottom:0.000000pt;}
.y23_c01088{bottom:2.760000pt;}
.y22_c01088{bottom:6.425217pt;}
.y21_c01088{bottom:77.440000pt;}
.y20_c01088{bottom:99.573333pt;}
.y1f_c01088{bottom:121.706667pt;}
.y1e_c01088{bottom:143.306667pt;}
.y1d_c01088{bottom:164.106667pt;}
.y1c_c01088{bottom:186.240000pt;}
.y1b_c01088{bottom:207.840000pt;}
.y1a_c01088{bottom:229.173333pt;}
.y19_c01088{bottom:250.506667pt;}
.y18_c01088{bottom:272.240000pt;}
.y17_c01088{bottom:293.440000pt;}
.y16_c01088{bottom:314.640000pt;}
.y15_c01088{bottom:336.240000pt;}
.y14_c01088{bottom:357.306667pt;}
.y13_c01088{bottom:379.173333pt;}
.y12_c01088{bottom:400.240000pt;}
.y11_c01088{bottom:421.440000pt;}
.y10_c01088{bottom:442.773333pt;}
.yf_c01088{bottom:463.840000pt;}
.ye_c01088{bottom:485.706667pt;}
.yd_c01088{bottom:506.106667pt;}
.yc_c01088{bottom:527.440000pt;}
.yb_c01088{bottom:550.106667pt;}
.ya_c01088{bottom:570.640000pt;}
.y9_c01088{bottom:592.240000pt;}
.y8_c01088{bottom:612.640000pt;}
.y7_c01088{bottom:633.840000pt;}
.y6_c01088{bottom:654.906667pt;}
.y5_c01088{bottom:704.373333pt;}
.y4_c01088{bottom:730.106667pt;}
.y3_c01088{bottom:755.306667pt;}
.y2_c01088{bottom:780.240000pt;}
.y1_c01088{bottom:810.640000pt;}
.ha_c01088{height:11.733399pt;}
.hb_c01088{height:38.937500pt;}
.h5_c01088{height:49.701823pt;}
.h3_c01088{height:49.726562pt;}
.h6_c01088{height:70.664062pt;}
.h7_c01088{height:74.906250pt;}
.h4_c01088{height:78.250667pt;}
.h9_c01088{height:81.031250pt;}
.h8_c01088{height:81.045333pt;}
.h2_c01088{height:148.557292pt;}
.h1_c01088{height:876.666667pt;}
.h0_c01088{height:876.933333pt;}
.w1_c01088{width:93.222667pt;}
.w0_c01088{width:597.333333pt;}
.x0_c01088{left:0.000000pt;}
.x2_c01088{left:48.266667pt;}
.x8_c01088{left:54.400000pt;}
.x9_c01088{left:55.866667pt;}
.xa_c01088{left:57.333333pt;}
.xb_c01088{left:58.800000pt;}
.xc_c01088{left:60.000000pt;}
.x1_c01088{left:75.600000pt;}
.x7_c01088{left:78.400000pt;}
.x3_c01088{left:120.266667pt;}
.x5_c01088{left:171.600000pt;}
.x6_c01088{left:172.533333pt;}
.x4_c01088{left:206.800000pt;}
.xd_c01088{left:255.834880pt;}
}





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

.ir_c01089:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01089{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01089;src:url('chunks/assets/font_2c67ad47ca3938bb540bd823.woff2')format("woff");}.ff1_c01089{font-family:ff1_c01089;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01089;src:url('chunks/assets/font_b0652c4a8a6f0a686c66dbfe.woff2')format("woff");}.ff2_c01089{font-family:ff2_c01089;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01089;src:url('chunks/assets/font_6fb5e584aeadbfc6c589e92d.woff2')format("woff");}.ff3_c01089{font-family:ff3_c01089;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01089;src:url('chunks/assets/font_67cc6a30c67151d0e48875cd.woff2')format("woff");}.ff4_c01089{font-family:ff4_c01089;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01089;src:url('chunks/assets/font_5e39daca337ada58f28a3b90.woff2')format("woff");}.ff5_c01089{font-family:ff5_c01089;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01089;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c01089{font-family:ff6_c01089;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01089{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01089{vertical-align:0.000000px;}
.ls3_c01089{letter-spacing:0.000000px;}
.ls0_c01089{letter-spacing:1.800000px;}
.ls1_c01089{letter-spacing:2.400000px;}
.ls5_c01089{letter-spacing:3.000000px;}
.ls4_c01089{letter-spacing:6.000000px;}
.ls2_c01089{letter-spacing:9.402000px;}
.sc__c01089{text-shadow:none;}
.sc0_c01089{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01089{-webkit-text-stroke:0px transparent;}
.sc0_c01089{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01089{word-spacing:-20.250000px;}
.ws0_c01089{word-spacing:-17.352000px;}
.ws2_c01089{word-spacing:0.000000px;}
._14_c01089{margin-left:-18.234000px;}
._27_c01089{margin-left:-16.119000px;}
._1e_c01089{margin-left:-14.586000px;}
._22_c01089{margin-left:-13.527000px;}
._21_c01089{margin-left:-11.814000px;}
._17_c01089{margin-left:-10.473000px;}
._15_c01089{margin-left:-9.255000px;}
._16_c01089{margin-left:-8.142000px;}
._9_c01089{margin-left:-7.083000px;}
._19_c01089{margin-left:-5.766000px;}
._5_c01089{margin-left:-4.602000px;}
._4_c01089{margin-left:-3.198000px;}
._3_c01089{margin-left:-1.794000px;}
._6_c01089{width:1.014000px;}
._1_c01089{width:2.028000px;}
._0_c01089{width:3.120000px;}
._2_c01089{width:4.446000px;}
._c_c01089{width:6.078000px;}
._a_c01089{width:7.257000px;}
._b_c01089{width:8.343000px;}
._10_c01089{width:9.366000px;}
._f_c01089{width:10.440000px;}
._11_c01089{width:12.342000px;}
._8_c01089{width:13.443000px;}
._7_c01089{width:15.408000px;}
._13_c01089{width:17.157000px;}
._d_c01089{width:18.501000px;}
._12_c01089{width:21.534000px;}
._e_c01089{width:31.020000px;}
._1c_c01089{width:34.098000px;}
._1a_c01089{width:39.729000px;}
._24_c01089{width:44.076000px;}
._1d_c01089{width:50.094000px;}
._20_c01089{width:79.863000px;}
._18_c01089{width:161.076000px;}
._1b_c01089{width:195.777000px;}
._23_c01089{width:201.477000px;}
._26_c01089{width:247.173000px;}
._25_c01089{width:374.205000px;}
._1f_c01089{width:521.961000px;}
.fc2_c01089{color:transparent;}
.fc1_c01089{color:rgb(128,128,128);}
.fc0_c01089{color:rgb(0,0,0);}
.fs5_c01089{font-size:48.000000px;}
.fs4_c01089{font-size:57.000000px;}
.fs3_c01089{font-size:66.000000px;}
.fs2_c01089{font-size:72.000000px;}
.fs0_c01089{font-size:78.000000px;}
.fs1_c01089{font-size:81.000000px;}
.y0_c01089{bottom:0.000000px;}
.y25_c01089{bottom:3.105000px;}
.y24_c01089{bottom:7.228371px;}
.y23_c01089{bottom:92.115000px;}
.y22_c01089{bottom:115.815000px;}
.y21_c01089{bottom:140.865000px;}
.y20_c01089{bottom:165.165000px;}
.y1f_c01089{bottom:189.465000px;}
.y1e_c01089{bottom:214.365000px;}
.y1d_c01089{bottom:238.965000px;}
.y1c_c01089{bottom:262.965000px;}
.y1b_c01089{bottom:286.665000px;}
.y1a_c01089{bottom:314.865000px;}
.y18_c01089{bottom:335.865000px;}
.y19_c01089{bottom:344.715000px;}
.y17_c01089{bottom:361.815000px;}
.y16_c01089{bottom:383.865000px;}
.y15_c01089{bottom:407.715000px;}
.y14_c01089{bottom:433.065000px;}
.y13_c01089{bottom:455.715000px;}
.y12_c01089{bottom:479.265000px;}
.y11_c01089{bottom:503.265000px;}
.y10_c01089{bottom:527.565000px;}
.yf_c01089{bottom:550.515000px;}
.ye_c01089{bottom:574.215000px;}
.yd_c01089{bottom:598.815000px;}
.yc_c01089{bottom:621.315000px;}
.yb_c01089{bottom:645.015000px;}
.ya_c01089{bottom:670.065000px;}
.y9_c01089{bottom:694.665000px;}
.y8_c01089{bottom:718.665000px;}
.y7_c01089{bottom:742.815000px;}
.y6_c01089{bottom:766.515000px;}
.y5_c01089{bottom:790.215000px;}
.y4_c01089{bottom:813.765000px;}
.y3_c01089{bottom:837.465000px;}
.y2_c01089{bottom:861.765000px;}
.y1_c01089{bottom:884.715000px;}
.h6_c01089{height:13.200074px;}
.h7_c01089{height:43.804688px;}
.h5_c01089{height:72.168457px;}
.h3_c01089{height:79.497070px;}
.h4_c01089{height:84.269531px;}
.h2_c01089{height:98.756836px;}
.h1_c01089{height:986.250000px;}
.h0_c01089{height:986.325000px;}
.w2_c01089{width:104.875500px;}
.w0_c01089{width:667.425000px;}
.w1_c01089{width:667.500000px;}
.x0_c01089{left:0.000000px;}
.xf_c01089{left:25.350000px;}
.xe_c01089{left:26.400000px;}
.xb_c01089{left:27.450000px;}
.xc_c01089{left:28.650000px;}
.x6_c01089{left:29.700000px;}
.x7_c01089{left:30.750000px;}
.x4_c01089{left:116.400000px;}
.x10_c01089{left:120.450000px;}
.xd_c01089{left:121.500000px;}
.xa_c01089{left:125.250000px;}
.x9_c01089{left:126.300000px;}
.x8_c01089{left:127.650000px;}
.x3_c01089{left:129.000000px;}
.x1_c01089{left:130.350000px;}
.x2_c01089{left:131.400000px;}
.x11_c01089{left:144.900000px;}
.x5_c01089{left:147.450000px;}
.x12_c01089{left:174.150000px;}
.x13_c01089{left:243.750000px;}
.x15_c01089{left:285.526749px;}
.x14_c01089{left:338.100000px;}
@media print{
.v0_c01089{vertical-align:0.000000pt;}
.ls3_c01089{letter-spacing:0.000000pt;}
.ls0_c01089{letter-spacing:1.600000pt;}
.ls1_c01089{letter-spacing:2.133333pt;}
.ls5_c01089{letter-spacing:2.666667pt;}
.ls4_c01089{letter-spacing:5.333333pt;}
.ls2_c01089{letter-spacing:8.357333pt;}
.ws1_c01089{word-spacing:-18.000000pt;}
.ws0_c01089{word-spacing:-15.424000pt;}
.ws2_c01089{word-spacing:0.000000pt;}
._14_c01089{margin-left:-16.208000pt;}
._27_c01089{margin-left:-14.328000pt;}
._1e_c01089{margin-left:-12.965333pt;}
._22_c01089{margin-left:-12.024000pt;}
._21_c01089{margin-left:-10.501333pt;}
._17_c01089{margin-left:-9.309333pt;}
._15_c01089{margin-left:-8.226667pt;}
._16_c01089{margin-left:-7.237333pt;}
._9_c01089{margin-left:-6.296000pt;}
._19_c01089{margin-left:-5.125333pt;}
._5_c01089{margin-left:-4.090667pt;}
._4_c01089{margin-left:-2.842667pt;}
._3_c01089{margin-left:-1.594667pt;}
._6_c01089{width:0.901333pt;}
._1_c01089{width:1.802667pt;}
._0_c01089{width:2.773333pt;}
._2_c01089{width:3.952000pt;}
._c_c01089{width:5.402667pt;}
._a_c01089{width:6.450667pt;}
._b_c01089{width:7.416000pt;}
._10_c01089{width:8.325333pt;}
._f_c01089{width:9.280000pt;}
._11_c01089{width:10.970667pt;}
._8_c01089{width:11.949333pt;}
._7_c01089{width:13.696000pt;}
._13_c01089{width:15.250667pt;}
._d_c01089{width:16.445333pt;}
._12_c01089{width:19.141333pt;}
._e_c01089{width:27.573333pt;}
._1c_c01089{width:30.309333pt;}
._1a_c01089{width:35.314667pt;}
._24_c01089{width:39.178667pt;}
._1d_c01089{width:44.528000pt;}
._20_c01089{width:70.989333pt;}
._18_c01089{width:143.178667pt;}
._1b_c01089{width:174.024000pt;}
._23_c01089{width:179.090667pt;}
._26_c01089{width:219.709333pt;}
._25_c01089{width:332.626667pt;}
._1f_c01089{width:463.965333pt;}
.fs5_c01089{font-size:42.666667pt;}
.fs4_c01089{font-size:50.666667pt;}
.fs3_c01089{font-size:58.666667pt;}
.fs2_c01089{font-size:64.000000pt;}
.fs0_c01089{font-size:69.333333pt;}
.fs1_c01089{font-size:72.000000pt;}
.y0_c01089{bottom:0.000000pt;}
.y25_c01089{bottom:2.760000pt;}
.y24_c01089{bottom:6.425219pt;}
.y23_c01089{bottom:81.880000pt;}
.y22_c01089{bottom:102.946667pt;}
.y21_c01089{bottom:125.213333pt;}
.y20_c01089{bottom:146.813333pt;}
.y1f_c01089{bottom:168.413333pt;}
.y1e_c01089{bottom:190.546667pt;}
.y1d_c01089{bottom:212.413333pt;}
.y1c_c01089{bottom:233.746667pt;}
.y1b_c01089{bottom:254.813333pt;}
.y1a_c01089{bottom:279.880000pt;}
.y18_c01089{bottom:298.546667pt;}
.y19_c01089{bottom:306.413333pt;}
.y17_c01089{bottom:321.613333pt;}
.y16_c01089{bottom:341.213333pt;}
.y15_c01089{bottom:362.413333pt;}
.y14_c01089{bottom:384.946667pt;}
.y13_c01089{bottom:405.080000pt;}
.y12_c01089{bottom:426.013333pt;}
.y11_c01089{bottom:447.346667pt;}
.y10_c01089{bottom:468.946667pt;}
.yf_c01089{bottom:489.346667pt;}
.ye_c01089{bottom:510.413333pt;}
.yd_c01089{bottom:532.280000pt;}
.yc_c01089{bottom:552.280000pt;}
.yb_c01089{bottom:573.346667pt;}
.ya_c01089{bottom:595.613333pt;}
.y9_c01089{bottom:617.480000pt;}
.y8_c01089{bottom:638.813333pt;}
.y7_c01089{bottom:660.280000pt;}
.y6_c01089{bottom:681.346667pt;}
.y5_c01089{bottom:702.413333pt;}
.y4_c01089{bottom:723.346667pt;}
.y3_c01089{bottom:744.413333pt;}
.y2_c01089{bottom:766.013333pt;}
.y1_c01089{bottom:786.413333pt;}
.h6_c01089{height:11.733399pt;}
.h7_c01089{height:38.937500pt;}
.h5_c01089{height:64.149740pt;}
.h3_c01089{height:70.664062pt;}
.h4_c01089{height:74.906250pt;}
.h2_c01089{height:87.783854pt;}
.h1_c01089{height:876.666667pt;}
.h0_c01089{height:876.733333pt;}
.w2_c01089{width:93.222667pt;}
.w0_c01089{width:593.266667pt;}
.w1_c01089{width:593.333333pt;}
.x0_c01089{left:0.000000pt;}
.xf_c01089{left:22.533333pt;}
.xe_c01089{left:23.466667pt;}
.xb_c01089{left:24.400000pt;}
.xc_c01089{left:25.466667pt;}
.x6_c01089{left:26.400000pt;}
.x7_c01089{left:27.333333pt;}
.x4_c01089{left:103.466667pt;}
.x10_c01089{left:107.066667pt;}
.xd_c01089{left:108.000000pt;}
.xa_c01089{left:111.333333pt;}
.x9_c01089{left:112.266667pt;}
.x8_c01089{left:113.466667pt;}
.x3_c01089{left:114.666667pt;}
.x1_c01089{left:115.866667pt;}
.x2_c01089{left:116.800000pt;}
.x11_c01089{left:128.800000pt;}
.x5_c01089{left:131.066667pt;}
.x12_c01089{left:154.800000pt;}
.x13_c01089{left:216.666667pt;}
.x15_c01089{left:253.801554pt;}
.x14_c01089{left:300.533333pt;}
}





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

.ir_c01090:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01090{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01090;src:url('chunks/assets/font_cf90dd40f17fff5c8953e69c.woff2')format("woff");}.ff1_c01090{font-family:ff1_c01090;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01090;src:url('chunks/assets/font_21cb48d5fce5fba164bbb9a4.woff2')format("woff");}.ff2_c01090{font-family:ff2_c01090;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01090;src:url('chunks/assets/font_e8bfa583b894c2f863aac12a.woff2')format("woff");}.ff3_c01090{font-family:ff3_c01090;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01090;src:url('chunks/assets/font_4b7df3ea88aa137e2fd42949.woff2')format("woff");}.ff4_c01090{font-family:ff4_c01090;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01090;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c01090{font-family:ff5_c01090;line-height:1.219238;font-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_c01090{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m0_c01090{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c01090{vertical-align:-15.000000px;}
.v0_c01090{vertical-align:0.000000px;}
.ls2_c01090{letter-spacing:-6.000000px;}
.ls1_c01090{letter-spacing:0.000000px;}
.ls0_c01090{letter-spacing:148.260000px;}
.sc__c01090{text-shadow:none;}
.sc0_c01090{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01090{-webkit-text-stroke:0px transparent;}
.sc0_c01090{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01090{word-spacing:-17.352000px;}
.ws1_c01090{word-spacing:-11.352000px;}
.ws2_c01090{word-spacing:0.000000px;}
._26_c01090{margin-left:-29.727000px;}
._23_c01090{margin-left:-22.818000px;}
._f_c01090{margin-left:-20.340000px;}
._c_c01090{margin-left:-18.348000px;}
._d_c01090{margin-left:-16.335000px;}
._2a_c01090{margin-left:-15.261000px;}
._14_c01090{margin-left:-14.229000px;}
._15_c01090{margin-left:-12.852000px;}
._2b_c01090{margin-left:-11.325000px;}
._4_c01090{margin-left:-10.197000px;}
._12_c01090{margin-left:-9.000000px;}
._e_c01090{margin-left:-7.524000px;}
._3_c01090{margin-left:-6.435000px;}
._2_c01090{margin-left:-4.752000px;}
._5_c01090{margin-left:-3.366000px;}
._6_c01090{margin-left:-2.079000px;}
._21_c01090{margin-left:-1.041000px;}
._7_c01090{width:1.287000px;}
._0_c01090{width:2.475000px;}
._11_c01090{width:3.564000px;}
._13_c01090{width:4.830000px;}
._1a_c01090{width:5.994000px;}
._9_c01090{width:7.227000px;}
._16_c01090{width:9.225000px;}
._18_c01090{width:10.935000px;}
._1b_c01090{width:12.141000px;}
._22_c01090{width:13.437000px;}
._a_c01090{width:14.949000px;}
._17_c01090{width:15.957000px;}
._19_c01090{width:17.064000px;}
._1_c01090{width:19.899000px;}
._8_c01090{width:21.087000px;}
._25_c01090{width:22.374000px;}
._1c_c01090{width:23.820000px;}
._10_c01090{width:25.830000px;}
._1e_c01090{width:30.225000px;}
._1f_c01090{width:31.467000px;}
._24_c01090{width:32.523000px;}
._27_c01090{width:33.822000px;}
._1d_c01090{width:34.926000px;}
._b_c01090{width:46.377000px;}
._29_c01090{width:78.282000px;}
._2c_c01090{width:88.179000px;}
._20_c01090{width:195.534000px;}
._28_c01090{width:310.023000px;}
.fc2_c01090{color:transparent;}
.fc1_c01090{color:rgb(128,128,128);}
.fc0_c01090{color:rgb(0,0,0);}
.fs7_c01090{font-size:48.000000px;}
.fs4_c01090{font-size:60.000000px;}
.fs5_c01090{font-size:63.000000px;}
.fs3_c01090{font-size:72.000000px;}
.fs2_c01090{font-size:81.000000px;}
.fs0_c01090{font-size:99.000000px;}
.fs6_c01090{font-size:108.000000px;}
.fs1_c01090{font-size:132.000000px;}
.y0_c01090{bottom:0.000000px;}
.y25_c01090{bottom:3.105000px;}
.y24_c01090{bottom:7.228369px;}
.y23_c01090{bottom:98.220000px;}
.y22_c01090{bottom:124.770000px;}
.y21_c01090{bottom:147.720000px;}
.y20_c01090{bottom:172.170000px;}
.y1f_c01090{bottom:196.320000px;}
.y1e_c01090{bottom:220.320000px;}
.y1d_c01090{bottom:244.620000px;}
.y1c_c01090{bottom:268.620000px;}
.y1b_c01090{bottom:293.520000px;}
.y1a_c01090{bottom:317.220000px;}
.y19_c01090{bottom:340.770000px;}
.y18_c01090{bottom:364.170000px;}
.y17_c01090{bottom:388.770000px;}
.y16_c01090{bottom:412.770000px;}
.y15_c01090{bottom:436.620000px;}
.y14_c01090{bottom:460.320000px;}
.y13_c01090{bottom:484.620000px;}
.y12_c01090{bottom:509.220000px;}
.y11_c01090{bottom:531.570000px;}
.y10_c01090{bottom:555.570000px;}
.yf_c01090{bottom:580.470000px;}
.ye_c01090{bottom:604.170000px;}
.yd_c01090{bottom:626.970000px;}
.yc_c01090{bottom:650.070000px;}
.yb_c01090{bottom:673.920000px;}
.ya_c01090{bottom:698.970000px;}
.y9_c01090{bottom:721.620000px;}
.y8_c01090{bottom:746.070000px;}
.y7_c01090{bottom:769.770000px;}
.y6_c01090{bottom:793.470000px;}
.y5_c01090{bottom:817.470000px;}
.y4_c01090{bottom:844.770000px;}
.y3_c01090{bottom:866.070000px;}
.y2_c01090{bottom:888.870000px;}
.y1_c01090{bottom:921.270000px;}
.h9_c01090{height:13.200073px;}
.ha_c01090{height:43.804688px;}
.h4_c01090{height:75.966797px;}
.h5_c01090{height:79.497070px;}
.h6_c01090{height:83.669531px;}
.h3_c01090{height:84.269531px;}
.h7_c01090{height:91.160156px;}
.h8_c01090{height:108.843750px;}
.h2_c01090{height:167.126953px;}
.h1_c01090{height:986.250000px;}
.h0_c01090{height:986.550000px;}
.w1_c01090{width:104.875500px;}
.w0_c01090{width:672.000000px;}
.x0_c01090{left:0.000000px;}
.x9_c01090{left:39.150000px;}
.xa_c01090{left:52.650000px;}
.xb_c01090{left:54.000000px;}
.x8_c01090{left:55.350000px;}
.x6_c01090{left:56.700000px;}
.x7_c01090{left:57.750000px;}
.x4_c01090{left:59.700000px;}
.x1_c01090{left:94.200000px;}
.x2_c01090{left:101.250000px;}
.x5_c01090{left:107.550000px;}
.x3_c01090{left:178.650000px;}
.xc_c01090{left:287.814240px;}
@media print{
.v1_c01090{vertical-align:-13.333333pt;}
.v0_c01090{vertical-align:0.000000pt;}
.ls2_c01090{letter-spacing:-5.333333pt;}
.ls1_c01090{letter-spacing:0.000000pt;}
.ls0_c01090{letter-spacing:131.786667pt;}
.ws0_c01090{word-spacing:-15.424000pt;}
.ws1_c01090{word-spacing:-10.090667pt;}
.ws2_c01090{word-spacing:0.000000pt;}
._26_c01090{margin-left:-26.424000pt;}
._23_c01090{margin-left:-20.282667pt;}
._f_c01090{margin-left:-18.080000pt;}
._c_c01090{margin-left:-16.309333pt;}
._d_c01090{margin-left:-14.520000pt;}
._2a_c01090{margin-left:-13.565333pt;}
._14_c01090{margin-left:-12.648000pt;}
._15_c01090{margin-left:-11.424000pt;}
._2b_c01090{margin-left:-10.066667pt;}
._4_c01090{margin-left:-9.064000pt;}
._12_c01090{margin-left:-8.000000pt;}
._e_c01090{margin-left:-6.688000pt;}
._3_c01090{margin-left:-5.720000pt;}
._2_c01090{margin-left:-4.224000pt;}
._5_c01090{margin-left:-2.992000pt;}
._6_c01090{margin-left:-1.848000pt;}
._21_c01090{margin-left:-0.925333pt;}
._7_c01090{width:1.144000pt;}
._0_c01090{width:2.200000pt;}
._11_c01090{width:3.168000pt;}
._13_c01090{width:4.293333pt;}
._1a_c01090{width:5.328000pt;}
._9_c01090{width:6.424000pt;}
._16_c01090{width:8.200000pt;}
._18_c01090{width:9.720000pt;}
._1b_c01090{width:10.792000pt;}
._22_c01090{width:11.944000pt;}
._a_c01090{width:13.288000pt;}
._17_c01090{width:14.184000pt;}
._19_c01090{width:15.168000pt;}
._1_c01090{width:17.688000pt;}
._8_c01090{width:18.744000pt;}
._25_c01090{width:19.888000pt;}
._1c_c01090{width:21.173333pt;}
._10_c01090{width:22.960000pt;}
._1e_c01090{width:26.866667pt;}
._1f_c01090{width:27.970667pt;}
._24_c01090{width:28.909333pt;}
._27_c01090{width:30.064000pt;}
._1d_c01090{width:31.045333pt;}
._b_c01090{width:41.224000pt;}
._29_c01090{width:69.584000pt;}
._2c_c01090{width:78.381333pt;}
._20_c01090{width:173.808000pt;}
._28_c01090{width:275.576000pt;}
.fs7_c01090{font-size:42.666667pt;}
.fs4_c01090{font-size:53.333333pt;}
.fs5_c01090{font-size:56.000000pt;}
.fs3_c01090{font-size:64.000000pt;}
.fs2_c01090{font-size:72.000000pt;}
.fs0_c01090{font-size:88.000000pt;}
.fs6_c01090{font-size:96.000000pt;}
.fs1_c01090{font-size:117.333333pt;}
.y0_c01090{bottom:0.000000pt;}
.y25_c01090{bottom:2.760000pt;}
.y24_c01090{bottom:6.425217pt;}
.y23_c01090{bottom:87.306667pt;}
.y22_c01090{bottom:110.906667pt;}
.y21_c01090{bottom:131.306667pt;}
.y20_c01090{bottom:153.040000pt;}
.y1f_c01090{bottom:174.506667pt;}
.y1e_c01090{bottom:195.840000pt;}
.y1d_c01090{bottom:217.440000pt;}
.y1c_c01090{bottom:238.773333pt;}
.y1b_c01090{bottom:260.906667pt;}
.y1a_c01090{bottom:281.973333pt;}
.y19_c01090{bottom:302.906667pt;}
.y18_c01090{bottom:323.706667pt;}
.y17_c01090{bottom:345.573333pt;}
.y16_c01090{bottom:366.906667pt;}
.y15_c01090{bottom:388.106667pt;}
.y14_c01090{bottom:409.173333pt;}
.y13_c01090{bottom:430.773333pt;}
.y12_c01090{bottom:452.640000pt;}
.y11_c01090{bottom:472.506667pt;}
.y10_c01090{bottom:493.840000pt;}
.yf_c01090{bottom:515.973333pt;}
.ye_c01090{bottom:537.040000pt;}
.yd_c01090{bottom:557.306667pt;}
.yc_c01090{bottom:577.840000pt;}
.yb_c01090{bottom:599.040000pt;}
.ya_c01090{bottom:621.306667pt;}
.y9_c01090{bottom:641.440000pt;}
.y8_c01090{bottom:663.173333pt;}
.y7_c01090{bottom:684.240000pt;}
.y6_c01090{bottom:705.306667pt;}
.y5_c01090{bottom:726.640000pt;}
.y4_c01090{bottom:750.906667pt;}
.y3_c01090{bottom:769.840000pt;}
.y2_c01090{bottom:790.106667pt;}
.y1_c01090{bottom:818.906667pt;}
.h9_c01090{height:11.733399pt;}
.ha_c01090{height:38.937500pt;}
.h4_c01090{height:67.526042pt;}
.h5_c01090{height:70.664062pt;}
.h6_c01090{height:74.372917pt;}
.h3_c01090{height:74.906250pt;}
.h7_c01090{height:81.031250pt;}
.h8_c01090{height:96.750000pt;}
.h2_c01090{height:148.557292pt;}
.h1_c01090{height:876.666667pt;}
.h0_c01090{height:876.933333pt;}
.w1_c01090{width:93.222667pt;}
.w0_c01090{width:597.333333pt;}
.x0_c01090{left:0.000000pt;}
.x9_c01090{left:34.800000pt;}
.xa_c01090{left:46.800000pt;}
.xb_c01090{left:48.000000pt;}
.x8_c01090{left:49.200000pt;}
.x6_c01090{left:50.400000pt;}
.x7_c01090{left:51.333333pt;}
.x4_c01090{left:53.066667pt;}
.x1_c01090{left:83.733333pt;}
.x2_c01090{left:90.000000pt;}
.x5_c01090{left:95.600000pt;}
.x3_c01090{left:158.800000pt;}
.xc_c01090{left:255.834880pt;}
}





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

.ir_c01091:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01091{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01091;src:url('chunks/assets/font_724c6a6e4438426b554d59b2.woff2')format("woff");}.ff1_c01091{font-family:ff1_c01091;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01091;src:url('chunks/assets/font_194c58b4e7ba3b8445c85ba8.woff2')format("woff");}.ff2_c01091{font-family:ff2_c01091;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01091;src:url('chunks/assets/font_bd79cbb7fcf44c909953c44b.woff2')format("woff");}.ff3_c01091{font-family:ff3_c01091;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01091;src:url('chunks/assets/font_ab50e4183c7b6adb6019f15e.woff2')format("woff");}.ff4_c01091{font-family:ff4_c01091;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01091;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c01091{font-family:ff5_c01091;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01091{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c01091{vertical-align:-94.800000px;}
.v0_c01091{vertical-align:0.000000px;}
.v1_c01091{vertical-align:1.200000px;}
.ls2_c01091{letter-spacing:-6.000000px;}
.ls5_c01091{letter-spacing:-3.000000px;}
.ls1_c01091{letter-spacing:0.000000px;}
.ls3_c01091{letter-spacing:3.000000px;}
.ls4_c01091{letter-spacing:9.000000px;}
.ls0_c01091{letter-spacing:27.600000px;}
.sc__c01091{text-shadow:none;}
.sc0_c01091{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01091{-webkit-text-stroke:0px transparent;}
.sc0_c01091{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01091{word-spacing:-23.859000px;}
.ws2_c01091{word-spacing:-22.737000px;}
.ws1_c01091{word-spacing:-13.737000px;}
.ws4_c01091{word-spacing:0.000000px;}
.ws3_c01091{word-spacing:1407.888000px;}
._15_c01091{margin-left:-25.866000px;}
._14_c01091{margin-left:-20.898000px;}
._1_c01091{margin-left:-17.127000px;}
._d_c01091{margin-left:-14.127000px;}
._1f_c01091{margin-left:-12.966000px;}
._1a_c01091{margin-left:-11.766000px;}
._12_c01091{margin-left:-10.185000px;}
._19_c01091{margin-left:-8.448000px;}
._3_c01091{margin-left:-7.029000px;}
._4_c01091{margin-left:-5.049000px;}
._5_c01091{margin-left:-3.366000px;}
._7_c01091{margin-left:-2.178000px;}
._11_c01091{margin-left:-1.134000px;}
._6_c01091{width:1.782000px;}
._c_c01091{width:2.907000px;}
._9_c01091{width:4.158000px;}
._a_c01091{width:5.247000px;}
._10_c01091{width:6.702000px;}
._b_c01091{width:8.118000px;}
._8_c01091{width:9.207000px;}
._f_c01091{width:10.695000px;}
._0_c01091{width:12.276000px;}
._1e_c01091{width:13.797000px;}
._18_c01091{width:14.811000px;}
._1b_c01091{width:16.410000px;}
._16_c01091{width:22.923000px;}
._e_c01091{width:25.386000px;}
._17_c01091{width:28.755000px;}
._1c_c01091{width:31.731000px;}
._2_c01091{width:33.612000px;}
._13_c01091{width:52.902000px;}
._1d_c01091{width:276.615000px;}
._20_c01091{width:316.341000px;}
.fc2_c01091{color:transparent;}
.fc1_c01091{color:rgb(128,128,128);}
.fc0_c01091{color:rgb(0,0,0);}
.fs8_c01091{font-size:48.000000px;}
.fs2_c01091{font-size:57.000000px;}
.fs6_c01091{font-size:60.000000px;}
.fs5_c01091{font-size:72.000000px;}
.fs3_c01091{font-size:78.000000px;}
.fs4_c01091{font-size:81.000000px;}
.fs0_c01091{font-size:99.000000px;}
.fs7_c01091{font-size:105.000000px;}
.fs1_c01091{font-size:132.000000px;}
.y0_c01091{bottom:0.000000px;}
.y25_c01091{bottom:3.105000px;}
.y24_c01091{bottom:7.228371px;}
.y23_c01091{bottom:96.915000px;}
.y22_c01091{bottom:121.965000px;}
.y21_c01091{bottom:146.565000px;}
.y20_c01091{bottom:171.165000px;}
.y1f_c01091{bottom:195.465000px;}
.y1e_c01091{bottom:220.065000px;}
.y1d_c01091{bottom:243.765000px;}
.y1c_c01091{bottom:268.965000px;}
.y1b_c01091{bottom:293.265000px;}
.y1a_c01091{bottom:317.265000px;}
.y19_c01091{bottom:341.565000px;}
.y18_c01091{bottom:365.865000px;}
.y17_c01091{bottom:389.865000px;}
.y16_c01091{bottom:414.165000px;}
.y15_c01091{bottom:438.465000px;}
.y14_c01091{bottom:462.015000px;}
.y13_c01091{bottom:485.715000px;}
.y12_c01091{bottom:509.715000px;}
.y11_c01091{bottom:532.965000px;}
.y10_c01091{bottom:556.965000px;}
.yf_c01091{bottom:580.965000px;}
.ye_c01091{bottom:604.515000px;}
.yd_c01091{bottom:629.115000px;}
.yc_c01091{bottom:653.415000px;}
.yb_c01091{bottom:677.115000px;}
.ya_c01091{bottom:701.115000px;}
.y9_c01091{bottom:725.265000px;}
.y8_c01091{bottom:749.265000px;}
.y7_c01091{bottom:772.515000px;}
.y6_c01091{bottom:796.815000px;}
.y5_c01091{bottom:820.515000px;}
.y4_c01091{bottom:844.815000px;}
.y3_c01091{bottom:867.165000px;}
.y2_c01091{bottom:893.715000px;}
.y1_c01091{bottom:924.465000px;}
.h7_c01091{height:13.200074px;}
.h8_c01091{height:43.804688px;}
.h5_c01091{height:79.497070px;}
.h6_c01091{height:80.697070px;}
.h4_c01091{height:84.269531px;}
.h3_c01091{height:98.756836px;}
.h2_c01091{height:167.126953px;}
.h1_c01091{height:986.250000px;}
.h0_c01091{height:986.325000px;}
.w2_c01091{width:104.875500px;}
.w0_c01091{width:667.425000px;}
.w1_c01091{width:667.500000px;}
.x0_c01091{left:0.000000px;}
.x2_c01091{left:35.550000px;}
.x7_c01091{left:38.850000px;}
.x8_c01091{left:41.550000px;}
.xe_c01091{left:46.200000px;}
.x3_c01091{left:56.100000px;}
.x4_c01091{left:86.700000px;}
.xd_c01091{left:88.800000px;}
.x5_c01091{left:128.550000px;}
.x6_c01091{left:129.900000px;}
.x1_c01091{left:130.950000px;}
.x9_c01091{left:132.300000px;}
.xb_c01091{left:133.950000px;}
.xf_c01091{left:135.300000px;}
.xc_c01091{left:136.350000px;}
.xa_c01091{left:145.050000px;}
.x10_c01091{left:285.526749px;}
@media print{
.v2_c01091{vertical-align:-84.266667pt;}
.v0_c01091{vertical-align:0.000000pt;}
.v1_c01091{vertical-align:1.066667pt;}
.ls2_c01091{letter-spacing:-5.333333pt;}
.ls5_c01091{letter-spacing:-2.666667pt;}
.ls1_c01091{letter-spacing:0.000000pt;}
.ls3_c01091{letter-spacing:2.666667pt;}
.ls4_c01091{letter-spacing:8.000000pt;}
.ls0_c01091{letter-spacing:24.533333pt;}
.ws0_c01091{word-spacing:-21.208000pt;}
.ws2_c01091{word-spacing:-20.210667pt;}
.ws1_c01091{word-spacing:-12.210667pt;}
.ws4_c01091{word-spacing:0.000000pt;}
.ws3_c01091{word-spacing:1251.456000pt;}
._15_c01091{margin-left:-22.992000pt;}
._14_c01091{margin-left:-18.576000pt;}
._1_c01091{margin-left:-15.224000pt;}
._d_c01091{margin-left:-12.557333pt;}
._1f_c01091{margin-left:-11.525333pt;}
._1a_c01091{margin-left:-10.458667pt;}
._12_c01091{margin-left:-9.053333pt;}
._19_c01091{margin-left:-7.509333pt;}
._3_c01091{margin-left:-6.248000pt;}
._4_c01091{margin-left:-4.488000pt;}
._5_c01091{margin-left:-2.992000pt;}
._7_c01091{margin-left:-1.936000pt;}
._11_c01091{margin-left:-1.008000pt;}
._6_c01091{width:1.584000pt;}
._c_c01091{width:2.584000pt;}
._9_c01091{width:3.696000pt;}
._a_c01091{width:4.664000pt;}
._10_c01091{width:5.957333pt;}
._b_c01091{width:7.216000pt;}
._8_c01091{width:8.184000pt;}
._f_c01091{width:9.506667pt;}
._0_c01091{width:10.912000pt;}
._1e_c01091{width:12.264000pt;}
._18_c01091{width:13.165333pt;}
._1b_c01091{width:14.586667pt;}
._16_c01091{width:20.376000pt;}
._e_c01091{width:22.565333pt;}
._17_c01091{width:25.560000pt;}
._1c_c01091{width:28.205333pt;}
._2_c01091{width:29.877333pt;}
._13_c01091{width:47.024000pt;}
._1d_c01091{width:245.880000pt;}
._20_c01091{width:281.192000pt;}
.fs8_c01091{font-size:42.666667pt;}
.fs2_c01091{font-size:50.666667pt;}
.fs6_c01091{font-size:53.333333pt;}
.fs5_c01091{font-size:64.000000pt;}
.fs3_c01091{font-size:69.333333pt;}
.fs4_c01091{font-size:72.000000pt;}
.fs0_c01091{font-size:88.000000pt;}
.fs7_c01091{font-size:93.333333pt;}
.fs1_c01091{font-size:117.333333pt;}
.y0_c01091{bottom:0.000000pt;}
.y25_c01091{bottom:2.760000pt;}
.y24_c01091{bottom:6.425219pt;}
.y23_c01091{bottom:86.146667pt;}
.y22_c01091{bottom:108.413333pt;}
.y21_c01091{bottom:130.280000pt;}
.y20_c01091{bottom:152.146667pt;}
.y1f_c01091{bottom:173.746667pt;}
.y1e_c01091{bottom:195.613333pt;}
.y1d_c01091{bottom:216.680000pt;}
.y1c_c01091{bottom:239.080000pt;}
.y1b_c01091{bottom:260.680000pt;}
.y1a_c01091{bottom:282.013333pt;}
.y19_c01091{bottom:303.613333pt;}
.y18_c01091{bottom:325.213333pt;}
.y17_c01091{bottom:346.546667pt;}
.y16_c01091{bottom:368.146667pt;}
.y15_c01091{bottom:389.746667pt;}
.y14_c01091{bottom:410.680000pt;}
.y13_c01091{bottom:431.746667pt;}
.y12_c01091{bottom:453.080000pt;}
.y11_c01091{bottom:473.746667pt;}
.y10_c01091{bottom:495.080000pt;}
.yf_c01091{bottom:516.413333pt;}
.ye_c01091{bottom:537.346667pt;}
.yd_c01091{bottom:559.213333pt;}
.yc_c01091{bottom:580.813333pt;}
.yb_c01091{bottom:601.880000pt;}
.ya_c01091{bottom:623.213333pt;}
.y9_c01091{bottom:644.680000pt;}
.y8_c01091{bottom:666.013333pt;}
.y7_c01091{bottom:686.680000pt;}
.y6_c01091{bottom:708.280000pt;}
.y5_c01091{bottom:729.346667pt;}
.y4_c01091{bottom:750.946667pt;}
.y3_c01091{bottom:770.813333pt;}
.y2_c01091{bottom:794.413333pt;}
.y1_c01091{bottom:821.746667pt;}
.h7_c01091{height:11.733399pt;}
.h8_c01091{height:38.937500pt;}
.h5_c01091{height:70.664062pt;}
.h6_c01091{height:71.730729pt;}
.h4_c01091{height:74.906250pt;}
.h3_c01091{height:87.783854pt;}
.h2_c01091{height:148.557292pt;}
.h1_c01091{height:876.666667pt;}
.h0_c01091{height:876.733333pt;}
.w2_c01091{width:93.222667pt;}
.w0_c01091{width:593.266667pt;}
.w1_c01091{width:593.333333pt;}
.x0_c01091{left:0.000000pt;}
.x2_c01091{left:31.600000pt;}
.x7_c01091{left:34.533333pt;}
.x8_c01091{left:36.933333pt;}
.xe_c01091{left:41.066667pt;}
.x3_c01091{left:49.866667pt;}
.x4_c01091{left:77.066667pt;}
.xd_c01091{left:78.933333pt;}
.x5_c01091{left:114.266667pt;}
.x6_c01091{left:115.466667pt;}
.x1_c01091{left:116.400000pt;}
.x9_c01091{left:117.600000pt;}
.xb_c01091{left:119.066667pt;}
.xf_c01091{left:120.266667pt;}
.xc_c01091{left:121.200000pt;}
.xa_c01091{left:128.933333pt;}
.x10_c01091{left:253.801554pt;}
}





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

.ir_c01092:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01092{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01092;src:url('chunks/assets/font_44ea2a6b385d3538cb6423f5.woff2')format("woff");}.ff1_c01092{font-family:ff1_c01092;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01092;src:url('chunks/assets/font_a4094022503c6fe6ea00f11b.woff2')format("woff");}.ff2_c01092{font-family:ff2_c01092;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01092;src:url('chunks/assets/font_aff170706b60007ea4dce31e.woff2')format("woff");}.ff3_c01092{font-family:ff3_c01092;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01092;src:url('chunks/assets/font_2208879c6ddbb980f5858314.woff2')format("woff");}.ff4_c01092{font-family:ff4_c01092;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01092;src:url('chunks/assets/font_318aa9bb67aaa84768fa233c.woff2')format("woff");}.ff5_c01092{font-family:ff5_c01092;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01092;src:url('chunks/assets/font_f9c10c87d6b327923a906dc4.woff2')format("woff");}.ff6_c01092{font-family:ff6_c01092;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01092;src:url('chunks/assets/font_8e901cb01d75a5e7c67f4efa.woff2')format("woff");}.ff7_c01092{font-family:ff7_c01092;line-height:1.311035;font-style:normal;font-weight: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_c01092;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff8_c01092{font-family:ff8_c01092;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01092{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01092{vertical-align:0.000000px;}
.ls5_c01092{letter-spacing:0.000000px;}
.ls2_c01092{letter-spacing:1.104000px;}
.ls6_c01092{letter-spacing:3.000000px;}
.ls7_c01092{letter-spacing:6.000000px;}
.ls3_c01092{letter-spacing:9.000000px;}
.ls1_c01092{letter-spacing:10.200000px;}
.ls0_c01092{letter-spacing:31.800000px;}
.ls4_c01092{letter-spacing:38.643000px;}
.sc__c01092{text-shadow:none;}
.sc0_c01092{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01092{-webkit-text-stroke:0px transparent;}
.sc0_c01092{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c01092{word-spacing:-73.686000px;}
.ws0_c01092{word-spacing:-26.352000px;}
.ws2_c01092{word-spacing:-21.798000px;}
.ws3_c01092{word-spacing:-17.352000px;}
.ws5_c01092{word-spacing:-0.069600px;}
.ws6_c01092{word-spacing:0.000000px;}
.ws1_c01092{word-spacing:0.648000px;}
._19_c01092{margin-left:-40.611000px;}
._28_c01092{margin-left:-25.677000px;}
._f_c01092{margin-left:-17.316000px;}
._11_c01092{margin-left:-14.421000px;}
._1c_c01092{margin-left:-11.442000px;}
._10_c01092{margin-left:-8.883000px;}
._1b_c01092{margin-left:-7.164000px;}
._14_c01092{margin-left:-6.111000px;}
._d_c01092{margin-left:-4.812000px;}
._9_c01092{margin-left:-2.835000px;}
._b_c01092{margin-left:-1.344000px;}
._a_c01092{width:1.377000px;}
._13_c01092{width:2.385000px;}
._c_c01092{width:3.387000px;}
._25_c01092{width:4.392000px;}
._8_c01092{width:5.394000px;}
._4_c01092{width:6.624000px;}
._1_c01092{width:7.632000px;}
._15_c01092{width:8.670000px;}
._2_c01092{width:9.672000px;}
._3_c01092{width:11.016000px;}
._5_c01092{width:12.504000px;}
._0_c01092{width:14.400000px;}
._1d_c01092{width:15.690000px;}
._1e_c01092{width:17.301000px;}
._20_c01092{width:18.663000px;}
._1f_c01092{width:20.232000px;}
._17_c01092{width:21.330000px;}
._12_c01092{width:23.445000px;}
._18_c01092{width:24.588000px;}
._24_c01092{width:25.920000px;}
._21_c01092{width:27.555000px;}
._23_c01092{width:29.070000px;}
._26_c01092{width:31.035000px;}
._22_c01092{width:32.490000px;}
._7_c01092{width:35.802000px;}
._16_c01092{width:38.361000px;}
._27_c01092{width:44.493000px;}
._1a_c01092{width:46.656000px;}
._e_c01092{width:48.768000px;}
._29_c01092{width:431.326200px;}
._6_c01092{width:737.262000px;}
.fc2_c01092{color:transparent;}
.fc1_c01092{color:rgb(128,128,128);}
.fc0_c01092{color:rgb(0,0,0);}
.fs7_c01092{font-size:45.000000px;}
.fs9_c01092{font-size:48.000000px;}
.fs6_c01092{font-size:54.000000px;}
.fs4_c01092{font-size:60.000000px;}
.fs1_c01092{font-size:66.000000px;}
.fs8_c01092{font-size:69.600000px;}
.fs0_c01092{font-size:72.000000px;}
.fs3_c01092{font-size:78.000000px;}
.fs2_c01092{font-size:81.000000px;}
.fs5_c01092{font-size:87.000000px;}
.y0_c01092{bottom:0.000000px;}
.y26_c01092{bottom:3.105000px;}
.y25_c01092{bottom:7.228355px;}
.y24_c01092{bottom:38.685000px;}
.y23_c01092{bottom:63.735000px;}
.y22_c01092{bottom:88.785000px;}
.y21_c01092{bottom:114.285000px;}
.y20_c01092{bottom:138.585000px;}
.y1f_c01092{bottom:163.335000px;}
.y1e_c01092{bottom:187.335000px;}
.y1d_c01092{bottom:212.235000px;}
.y1c_c01092{bottom:236.535000px;}
.y1b_c01092{bottom:260.835000px;}
.y1a_c01092{bottom:285.135000px;}
.y19_c01092{bottom:309.435000px;}
.y18_c01092{bottom:333.735000px;}
.y17_c01092{bottom:358.035000px;}
.y16_c01092{bottom:382.335000px;}
.y15_c01092{bottom:406.935000px;}
.y14_c01092{bottom:431.535000px;}
.y13_c01092{bottom:455.535000px;}
.y12_c01092{bottom:479.535000px;}
.y11_c01092{bottom:504.885000px;}
.y10_c01092{bottom:527.835000px;}
.yf_c01092{bottom:552.135000px;}
.ye_c01092{bottom:577.485000px;}
.yd_c01092{bottom:600.285000px;}
.yc_c01092{bottom:624.735000px;}
.yb_c01092{bottom:649.035000px;}
.ya_c01092{bottom:673.335000px;}
.y9_c01092{bottom:697.635000px;}
.y8_c01092{bottom:721.785000px;}
.y7_c01092{bottom:746.235000px;}
.y6_c01092{bottom:770.535000px;}
.y5_c01092{bottom:794.835000px;}
.y4_c01092{bottom:819.135000px;}
.y3_c01092{bottom:842.985000px;}
.y2_c01092{bottom:866.985000px;}
.y1_c01092{bottom:905.085000px;}
.h8_c01092{height:13.200074px;}
.h9_c01092{height:43.804688px;}
.h3_c01092{height:79.497070px;}
.h2_c01092{height:84.269531px;}
.h7_c01092{height:87.679688px;}
.h6_c01092{height:91.160156px;}
.h5_c01092{height:91.176000px;}
.h4_c01092{height:98.756836px;}
.h0_c01092{height:980.625000px;}
.h1_c01092{height:981.000000px;}
.w2_c01092{width:104.875500px;}
.w0_c01092{width:667.425000px;}
.w1_c01092{width:667.500000px;}
.x0_c01092{left:0.000000px;}
.x6_c01092{left:54.000000px;}
.x1_c01092{left:69.450000px;}
.x3_c01092{left:71.550000px;}
.x4_c01092{left:72.900000px;}
.x5_c01092{left:74.700000px;}
.x2_c01092{left:95.250000px;}
.x8_c01092{left:285.526749px;}
.x7_c01092{left:397.200000px;}
@media print{
.v0_c01092{vertical-align:0.000000pt;}
.ls5_c01092{letter-spacing:0.000000pt;}
.ls2_c01092{letter-spacing:0.981333pt;}
.ls6_c01092{letter-spacing:2.666667pt;}
.ls7_c01092{letter-spacing:5.333333pt;}
.ls3_c01092{letter-spacing:8.000000pt;}
.ls1_c01092{letter-spacing:9.066667pt;}
.ls0_c01092{letter-spacing:28.266667pt;}
.ls4_c01092{letter-spacing:34.349333pt;}
.ws4_c01092{word-spacing:-65.498667pt;}
.ws0_c01092{word-spacing:-23.424000pt;}
.ws2_c01092{word-spacing:-19.376000pt;}
.ws3_c01092{word-spacing:-15.424000pt;}
.ws5_c01092{word-spacing:-0.061867pt;}
.ws6_c01092{word-spacing:0.000000pt;}
.ws1_c01092{word-spacing:0.576000pt;}
._19_c01092{margin-left:-36.098667pt;}
._28_c01092{margin-left:-22.824000pt;}
._f_c01092{margin-left:-15.392000pt;}
._11_c01092{margin-left:-12.818667pt;}
._1c_c01092{margin-left:-10.170667pt;}
._10_c01092{margin-left:-7.896000pt;}
._1b_c01092{margin-left:-6.368000pt;}
._14_c01092{margin-left:-5.432000pt;}
._d_c01092{margin-left:-4.277333pt;}
._9_c01092{margin-left:-2.520000pt;}
._b_c01092{margin-left:-1.194667pt;}
._a_c01092{width:1.224000pt;}
._13_c01092{width:2.120000pt;}
._c_c01092{width:3.010667pt;}
._25_c01092{width:3.904000pt;}
._8_c01092{width:4.794667pt;}
._4_c01092{width:5.888000pt;}
._1_c01092{width:6.784000pt;}
._15_c01092{width:7.706667pt;}
._2_c01092{width:8.597333pt;}
._3_c01092{width:9.792000pt;}
._5_c01092{width:11.114667pt;}
._0_c01092{width:12.800000pt;}
._1d_c01092{width:13.946667pt;}
._1e_c01092{width:15.378667pt;}
._20_c01092{width:16.589333pt;}
._1f_c01092{width:17.984000pt;}
._17_c01092{width:18.960000pt;}
._12_c01092{width:20.840000pt;}
._18_c01092{width:21.856000pt;}
._24_c01092{width:23.040000pt;}
._21_c01092{width:24.493333pt;}
._23_c01092{width:25.840000pt;}
._26_c01092{width:27.586667pt;}
._22_c01092{width:28.880000pt;}
._7_c01092{width:31.824000pt;}
._16_c01092{width:34.098667pt;}
._27_c01092{width:39.549333pt;}
._1a_c01092{width:41.472000pt;}
._e_c01092{width:43.349333pt;}
._29_c01092{width:383.401067pt;}
._6_c01092{width:655.344000pt;}
.fs7_c01092{font-size:40.000000pt;}
.fs9_c01092{font-size:42.666667pt;}
.fs6_c01092{font-size:48.000000pt;}
.fs4_c01092{font-size:53.333333pt;}
.fs1_c01092{font-size:58.666667pt;}
.fs8_c01092{font-size:61.866667pt;}
.fs0_c01092{font-size:64.000000pt;}
.fs3_c01092{font-size:69.333333pt;}
.fs2_c01092{font-size:72.000000pt;}
.fs5_c01092{font-size:77.333333pt;}
.y0_c01092{bottom:0.000000pt;}
.y26_c01092{bottom:2.760000pt;}
.y25_c01092{bottom:6.425204pt;}
.y24_c01092{bottom:34.386667pt;}
.y23_c01092{bottom:56.653333pt;}
.y22_c01092{bottom:78.920000pt;}
.y21_c01092{bottom:101.586667pt;}
.y20_c01092{bottom:123.186667pt;}
.y1f_c01092{bottom:145.186667pt;}
.y1e_c01092{bottom:166.520000pt;}
.y1d_c01092{bottom:188.653333pt;}
.y1c_c01092{bottom:210.253333pt;}
.y1b_c01092{bottom:231.853333pt;}
.y1a_c01092{bottom:253.453333pt;}
.y19_c01092{bottom:275.053333pt;}
.y18_c01092{bottom:296.653333pt;}
.y17_c01092{bottom:318.253333pt;}
.y16_c01092{bottom:339.853333pt;}
.y15_c01092{bottom:361.720000pt;}
.y14_c01092{bottom:383.586667pt;}
.y13_c01092{bottom:404.920000pt;}
.y12_c01092{bottom:426.253333pt;}
.y11_c01092{bottom:448.786667pt;}
.y10_c01092{bottom:469.186667pt;}
.yf_c01092{bottom:490.786667pt;}
.ye_c01092{bottom:513.320000pt;}
.yd_c01092{bottom:533.586667pt;}
.yc_c01092{bottom:555.320000pt;}
.yb_c01092{bottom:576.920000pt;}
.ya_c01092{bottom:598.520000pt;}
.y9_c01092{bottom:620.120000pt;}
.y8_c01092{bottom:641.586667pt;}
.y7_c01092{bottom:663.320000pt;}
.y6_c01092{bottom:684.920000pt;}
.y5_c01092{bottom:706.520000pt;}
.y4_c01092{bottom:728.120000pt;}
.y3_c01092{bottom:749.320000pt;}
.y2_c01092{bottom:770.653333pt;}
.y1_c01092{bottom:804.520000pt;}
.h8_c01092{height:11.733399pt;}
.h9_c01092{height:38.937500pt;}
.h3_c01092{height:70.664062pt;}
.h2_c01092{height:74.906250pt;}
.h7_c01092{height:77.937500pt;}
.h6_c01092{height:81.031250pt;}
.h5_c01092{height:81.045333pt;}
.h4_c01092{height:87.783854pt;}
.h0_c01092{height:871.666667pt;}
.h1_c01092{height:872.000000pt;}
.w2_c01092{width:93.222667pt;}
.w0_c01092{width:593.266667pt;}
.w1_c01092{width:593.333333pt;}
.x0_c01092{left:0.000000pt;}
.x6_c01092{left:48.000000pt;}
.x1_c01092{left:61.733333pt;}
.x3_c01092{left:63.600000pt;}
.x4_c01092{left:64.800000pt;}
.x5_c01092{left:66.400000pt;}
.x2_c01092{left:84.666667pt;}
.x8_c01092{left:253.801554pt;}
.x7_c01092{left:353.066667pt;}
}





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

.ir_c01093:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01093{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01093;src:url('chunks/assets/font_645026220eda3ca7d1b25c78.woff2')format("woff");}.ff1_c01093{font-family:ff1_c01093;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01093;src:url('chunks/assets/font_829bffeb48e2c35fa4e8d064.woff2')format("woff");}.ff2_c01093{font-family:ff2_c01093;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01093;src:url('chunks/assets/font_0625b7afb6ef5f934394b6b0.woff2')format("woff");}.ff3_c01093{font-family:ff3_c01093;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01093;src:url('chunks/assets/font_4a6098190a2aef97d7596545.woff2')format("woff");}.ff4_c01093{font-family:ff4_c01093;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01093;src:url('chunks/assets/font_4fc4b252eb5b6d0233172cd3.woff2')format("woff");}.ff5_c01093{font-family:ff5_c01093;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01093;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c01093{font-family:ff6_c01093;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01093{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01093{vertical-align:0.000000px;}
.ls3_c01093{letter-spacing:-6.000000px;}
.ls2_c01093{letter-spacing:0.000000px;}
.ls1_c01093{letter-spacing:0.816000px;}
.ls0_c01093{letter-spacing:1.602000px;}
.ls4_c01093{letter-spacing:9.000000px;}
.sc__c01093{text-shadow:none;}
.sc0_c01093{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01093{-webkit-text-stroke:0px transparent;}
.sc0_c01093{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01093{word-spacing:-26.352000px;}
.ws1_c01093{word-spacing:-19.500000px;}
.ws2_c01093{word-spacing:0.000000px;}
._1c_c01093{margin-left:-20.016000px;}
._14_c01093{margin-left:-14.013000px;}
._e_c01093{margin-left:-12.762000px;}
._1a_c01093{margin-left:-11.493000px;}
._13_c01093{margin-left:-10.080000px;}
._f_c01093{margin-left:-7.614000px;}
._0_c01093{margin-left:-6.084000px;}
._7_c01093{margin-left:-4.536000px;}
._d_c01093{margin-left:-2.601000px;}
._8_c01093{margin-left:-1.539000px;}
._6_c01093{width:1.701000px;}
._4_c01093{width:3.564000px;}
._3_c01093{width:4.716000px;}
._a_c01093{width:5.877000px;}
._5_c01093{width:6.885000px;}
._c_c01093{width:8.091000px;}
._9_c01093{width:9.540000px;}
._b_c01093{width:10.593000px;}
._12_c01093{width:11.880000px;}
._11_c01093{width:13.509000px;}
._10_c01093{width:14.877000px;}
._17_c01093{width:16.398000px;}
._16_c01093{width:18.666000px;}
._1b_c01093{width:23.346000px;}
._15_c01093{width:27.441000px;}
._19_c01093{width:33.228000px;}
._2_c01093{width:53.088000px;}
._1_c01093{width:162.900000px;}
._1d_c01093{width:325.053000px;}
._18_c01093{width:340.524000px;}
.fc2_c01093{color:transparent;}
.fc1_c01093{color:rgb(128,128,128);}
.fc0_c01093{color:rgb(0,0,0);}
.fs0_c01093{font-size:36.000000px;}
.fs5_c01093{font-size:48.000000px;}
.fs2_c01093{font-size:57.000000px;}
.fs4_c01093{font-size:72.000000px;}
.fs3_c01093{font-size:78.000000px;}
.fs1_c01093{font-size:81.000000px;}
.y0_c01093{bottom:0.000000px;}
.y26_c01093{bottom:3.105000px;}
.y25_c01093{bottom:7.228371px;}
.y24_c01093{bottom:54.015000px;}
.y23_c01093{bottom:77.415000px;}
.y22_c01093{bottom:103.065000px;}
.y21_c01093{bottom:129.915000px;}
.y20_c01093{bottom:152.865000px;}
.y1f_c01093{bottom:177.315000px;}
.y1e_c01093{bottom:202.215000px;}
.y1d_c01093{bottom:226.815000px;}
.y1c_c01093{bottom:251.415000px;}
.y1b_c01093{bottom:275.865000px;}
.y1a_c01093{bottom:300.765000px;}
.y19_c01093{bottom:325.065000px;}
.y18_c01093{bottom:349.965000px;}
.y17_c01093{bottom:374.265000px;}
.y16_c01093{bottom:398.715000px;}
.y15_c01093{bottom:423.315000px;}
.y14_c01093{bottom:447.615000px;}
.y13_c01093{bottom:471.165000px;}
.y12_c01093{bottom:495.765000px;}
.y11_c01093{bottom:520.065000px;}
.y10_c01093{bottom:543.465000px;}
.yf_c01093{bottom:567.765000px;}
.ye_c01093{bottom:592.065000px;}
.yd_c01093{bottom:616.065000px;}
.yc_c01093{bottom:640.665000px;}
.yb_c01093{bottom:664.965000px;}
.ya_c01093{bottom:689.265000px;}
.y9_c01093{bottom:713.565000px;}
.y8_c01093{bottom:737.415000px;}
.y7_c01093{bottom:760.815000px;}
.y6_c01093{bottom:785.415000px;}
.y5_c01093{bottom:809.115000px;}
.y4_c01093{bottom:834.015000px;}
.y3_c01093{bottom:858.015000px;}
.y2_c01093{bottom:882.315000px;}
.y1_c01093{bottom:906.915000px;}
.h7_c01093{height:13.200074px;}
.h2_c01093{height:36.281250px;}
.h8_c01093{height:43.804688px;}
.h6_c01093{height:78.609375px;}
.h3_c01093{height:79.497070px;}
.h5_c01093{height:84.269531px;}
.h4_c01093{height:98.756836px;}
.h1_c01093{height:986.250000px;}
.h0_c01093{height:986.325000px;}
.w2_c01093{width:104.875500px;}
.w0_c01093{width:667.425000px;}
.w1_c01093{width:667.500000px;}
.x0_c01093{left:0.000000px;}
.x6_c01093{left:14.550000px;}
.x8_c01093{left:17.100000px;}
.x9_c01093{left:18.600000px;}
.x2_c01093{left:106.650000px;}
.x1_c01093{left:109.050000px;}
.x3_c01093{left:110.400000px;}
.x4_c01093{left:111.600000px;}
.x5_c01093{left:112.950000px;}
.x7_c01093{left:114.450000px;}
.xb_c01093{left:285.526749px;}
.xa_c01093{left:569.250000px;}
@media print{
.v0_c01093{vertical-align:0.000000pt;}
.ls3_c01093{letter-spacing:-5.333333pt;}
.ls2_c01093{letter-spacing:0.000000pt;}
.ls1_c01093{letter-spacing:0.725333pt;}
.ls0_c01093{letter-spacing:1.424000pt;}
.ls4_c01093{letter-spacing:8.000000pt;}
.ws0_c01093{word-spacing:-23.424000pt;}
.ws1_c01093{word-spacing:-17.333333pt;}
.ws2_c01093{word-spacing:0.000000pt;}
._1c_c01093{margin-left:-17.792000pt;}
._14_c01093{margin-left:-12.456000pt;}
._e_c01093{margin-left:-11.344000pt;}
._1a_c01093{margin-left:-10.216000pt;}
._13_c01093{margin-left:-8.960000pt;}
._f_c01093{margin-left:-6.768000pt;}
._0_c01093{margin-left:-5.408000pt;}
._7_c01093{margin-left:-4.032000pt;}
._d_c01093{margin-left:-2.312000pt;}
._8_c01093{margin-left:-1.368000pt;}
._6_c01093{width:1.512000pt;}
._4_c01093{width:3.168000pt;}
._3_c01093{width:4.192000pt;}
._a_c01093{width:5.224000pt;}
._5_c01093{width:6.120000pt;}
._c_c01093{width:7.192000pt;}
._9_c01093{width:8.480000pt;}
._b_c01093{width:9.416000pt;}
._12_c01093{width:10.560000pt;}
._11_c01093{width:12.008000pt;}
._10_c01093{width:13.224000pt;}
._17_c01093{width:14.576000pt;}
._16_c01093{width:16.592000pt;}
._1b_c01093{width:20.752000pt;}
._15_c01093{width:24.392000pt;}
._19_c01093{width:29.536000pt;}
._2_c01093{width:47.189333pt;}
._1_c01093{width:144.800000pt;}
._1d_c01093{width:288.936000pt;}
._18_c01093{width:302.688000pt;}
.fs0_c01093{font-size:32.000000pt;}
.fs5_c01093{font-size:42.666667pt;}
.fs2_c01093{font-size:50.666667pt;}
.fs4_c01093{font-size:64.000000pt;}
.fs3_c01093{font-size:69.333333pt;}
.fs1_c01093{font-size:72.000000pt;}
.y0_c01093{bottom:0.000000pt;}
.y26_c01093{bottom:2.760000pt;}
.y25_c01093{bottom:6.425219pt;}
.y24_c01093{bottom:48.013333pt;}
.y23_c01093{bottom:68.813333pt;}
.y22_c01093{bottom:91.613333pt;}
.y21_c01093{bottom:115.480000pt;}
.y20_c01093{bottom:135.880000pt;}
.y1f_c01093{bottom:157.613333pt;}
.y1e_c01093{bottom:179.746667pt;}
.y1d_c01093{bottom:201.613333pt;}
.y1c_c01093{bottom:223.480000pt;}
.y1b_c01093{bottom:245.213333pt;}
.y1a_c01093{bottom:267.346667pt;}
.y19_c01093{bottom:288.946667pt;}
.y18_c01093{bottom:311.080000pt;}
.y17_c01093{bottom:332.680000pt;}
.y16_c01093{bottom:354.413333pt;}
.y15_c01093{bottom:376.280000pt;}
.y14_c01093{bottom:397.880000pt;}
.y13_c01093{bottom:418.813333pt;}
.y12_c01093{bottom:440.680000pt;}
.y11_c01093{bottom:462.280000pt;}
.y10_c01093{bottom:483.080000pt;}
.yf_c01093{bottom:504.680000pt;}
.ye_c01093{bottom:526.280000pt;}
.yd_c01093{bottom:547.613333pt;}
.yc_c01093{bottom:569.480000pt;}
.yb_c01093{bottom:591.080000pt;}
.ya_c01093{bottom:612.680000pt;}
.y9_c01093{bottom:634.280000pt;}
.y8_c01093{bottom:655.480000pt;}
.y7_c01093{bottom:676.280000pt;}
.y6_c01093{bottom:698.146667pt;}
.y5_c01093{bottom:719.213333pt;}
.y4_c01093{bottom:741.346667pt;}
.y3_c01093{bottom:762.680000pt;}
.y2_c01093{bottom:784.280000pt;}
.y1_c01093{bottom:806.146667pt;}
.h7_c01093{height:11.733399pt;}
.h2_c01093{height:32.250000pt;}
.h8_c01093{height:38.937500pt;}
.h6_c01093{height:69.875000pt;}
.h3_c01093{height:70.664062pt;}
.h5_c01093{height:74.906250pt;}
.h4_c01093{height:87.783854pt;}
.h1_c01093{height:876.666667pt;}
.h0_c01093{height:876.733333pt;}
.w2_c01093{width:93.222667pt;}
.w0_c01093{width:593.266667pt;}
.w1_c01093{width:593.333333pt;}
.x0_c01093{left:0.000000pt;}
.x6_c01093{left:12.933333pt;}
.x8_c01093{left:15.200000pt;}
.x9_c01093{left:16.533333pt;}
.x2_c01093{left:94.800000pt;}
.x1_c01093{left:96.933333pt;}
.x3_c01093{left:98.133333pt;}
.x4_c01093{left:99.200000pt;}
.x5_c01093{left:100.400000pt;}
.x7_c01093{left:101.733333pt;}
.xb_c01093{left:253.801554pt;}
.xa_c01093{left:506.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_c01094 {
    display:none;
  }
  .loading-indicator_c01094.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01094 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01094 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01094" -> "#page-container .classname_c01094")
 */
.pf_c01094 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01094 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01094.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01094 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01094 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01094 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01094 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01094 {overflow:visible;}
  }
}
.c_c01094 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01094 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01094:after { /* webkit #35443 */
  content: '';
}
.t_c01094:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01094 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01094 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01094 { /* info for Javascript */
  display:none;
}
.l_c01094 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01094 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01094 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01094:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01094{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01094;src:url('chunks/assets/font_e40ffb1d22399782efab8577.woff2')format("woff");}.ff1_c01094{font-family:ff1_c01094;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01094;src:url('chunks/assets/font_4c6dda169e90fc489bdcfeee.woff2')format("woff");}.ff2_c01094{font-family:ff2_c01094;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01094;src:url('chunks/assets/font_aac116707d9eb01dd0e39b8e.woff2')format("woff");}.ff3_c01094{font-family:ff3_c01094;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01094;src:url('chunks/assets/font_ea78a943730df422c8faebb2.woff2')format("woff");}.ff4_c01094{font-family:ff4_c01094;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01094;src:url('chunks/assets/font_c20441282294de10bc06567c.woff2')format("woff");}.ff5_c01094{font-family:ff5_c01094;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01094;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c01094{font-family:ff6_c01094;line-height:1.219238;font-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_c01094{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m0_c01094{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01094{vertical-align:0.000000px;}
.ls0_c01094{letter-spacing:0.000000px;}
.ls1_c01094{letter-spacing:3.000000px;}
.sc__c01094{text-shadow:none;}
.sc0_c01094{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01094{-webkit-text-stroke:0px transparent;}
.sc0_c01094{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01094{word-spacing:-60.048000px;}
.ws0_c01094{word-spacing:-32.250000px;}
.ws1_c01094{word-spacing:-17.352000px;}
.ws3_c01094{word-spacing:0.000000px;}
._5_c01094{margin-left:-19.182000px;}
._12_c01094{margin-left:-13.041000px;}
._3_c01094{margin-left:-11.832000px;}
._14_c01094{margin-left:-9.444000px;}
._4_c01094{margin-left:-7.140000px;}
._13_c01094{margin-left:-6.036000px;}
._6_c01094{margin-left:-4.182000px;}
._8_c01094{margin-left:-2.346000px;}
._7_c01094{margin-left:-1.326000px;}
._2_c01094{width:1.836000px;}
._1_c01094{width:3.570000px;}
._0_c01094{width:4.896000px;}
._10_c01094{width:5.907000px;}
._b_c01094{width:7.689000px;}
._e_c01094{width:8.748000px;}
._c_c01094{width:9.861000px;}
._d_c01094{width:11.757000px;}
._f_c01094{width:13.365000px;}
._16_c01094{width:15.228000px;}
._11_c01094{width:16.275000px;}
._a_c01094{width:18.258000px;}
._17_c01094{width:19.947000px;}
._15_c01094{width:22.158000px;}
._19_c01094{width:36.213000px;}
._18_c01094{width:54.147000px;}
._1a_c01094{width:242.514000px;}
._9_c01094{width:430.848000px;}
.fc2_c01094{color:transparent;}
.fc1_c01094{color:rgb(128,128,128);}
.fc0_c01094{color:rgb(0,0,0);}
.fs6_c01094{font-size:45.000000px;}
.fs7_c01094{font-size:48.000000px;}
.fs4_c01094{font-size:69.000000px;}
.fs3_c01094{font-size:72.000000px;}
.fs2_c01094{font-size:81.000000px;}
.fs0_c01094{font-size:102.000000px;}
.fs5_c01094{font-size:108.000000px;}
.fs1_c01094{font-size:129.000000px;}
.y0_c01094{bottom:0.000000px;}
.y26_c01094{bottom:3.105000px;}
.y25_c01094{bottom:7.228369px;}
.y24_c01094{bottom:60.120000px;}
.y23_c01094{bottom:86.970000px;}
.y22_c01094{bottom:110.670000px;}
.y21_c01094{bottom:135.720000px;}
.y20_c01094{bottom:159.870000px;}
.y1f_c01094{bottom:184.320000px;}
.y1e_c01094{bottom:208.920000px;}
.y1d_c01094{bottom:233.520000px;}
.y1c_c01094{bottom:257.820000px;}
.y1b_c01094{bottom:282.420000px;}
.y1a_c01094{bottom:307.020000px;}
.y19_c01094{bottom:331.020000px;}
.y18_c01094{bottom:355.320000px;}
.y17_c01094{bottom:379.920000px;}
.y16_c01094{bottom:403.920000px;}
.y15_c01094{bottom:428.520000px;}
.y14_c01094{bottom:452.820000px;}
.y13_c01094{bottom:476.520000px;}
.y12_c01094{bottom:500.820000px;}
.y11_c01094{bottom:524.820000px;}
.y10_c01094{bottom:548.820000px;}
.yf_c01094{bottom:572.670000px;}
.ye_c01094{bottom:596.670000px;}
.yd_c01094{bottom:620.370000px;}
.yc_c01094{bottom:644.520000px;}
.yb_c01094{bottom:668.820000px;}
.ya_c01094{bottom:693.120000px;}
.y9_c01094{bottom:717.120000px;}
.y8_c01094{bottom:741.720000px;}
.y7_c01094{bottom:766.770000px;}
.y6_c01094{bottom:790.770000px;}
.y5_c01094{bottom:814.770000px;}
.y4_c01094{bottom:839.070000px;}
.y3_c01094{bottom:863.370000px;}
.y2_c01094{bottom:887.220000px;}
.y1_c01094{bottom:920.970000px;}
.h8_c01094{height:13.200073px;}
.h9_c01094{height:43.804688px;}
.h3_c01094{height:79.497070px;}
.h7_c01094{height:84.269531px;}
.h5_c01094{height:87.361816px;}
.h4_c01094{height:91.160156px;}
.h6_c01094{height:108.843750px;}
.h2_c01094{height:126.543457px;}
.h1_c01094{height:986.250000px;}
.h0_c01094{height:986.550000px;}
.w1_c01094{width:104.875500px;}
.w0_c01094{width:672.000000px;}
.x0_c01094{left:0.000000px;}
.x4_c01094{left:64.800000px;}
.x3_c01094{left:65.850000px;}
.x2_c01094{left:67.200000px;}
.x8_c01094{left:68.550000px;}
.x1_c01094{left:69.900000px;}
.x5_c01094{left:90.750000px;}
.xa_c01094{left:287.814240px;}
.x9_c01094{left:393.900000px;}
.x6_c01094{left:537.000000px;}
.x7_c01094{left:551.250000px;}
@media print{
.v0_c01094{vertical-align:0.000000pt;}
.ls0_c01094{letter-spacing:0.000000pt;}
.ls1_c01094{letter-spacing:2.666667pt;}
.ws2_c01094{word-spacing:-53.376000pt;}
.ws0_c01094{word-spacing:-28.666667pt;}
.ws1_c01094{word-spacing:-15.424000pt;}
.ws3_c01094{word-spacing:0.000000pt;}
._5_c01094{margin-left:-17.050667pt;}
._12_c01094{margin-left:-11.592000pt;}
._3_c01094{margin-left:-10.517333pt;}
._14_c01094{margin-left:-8.394667pt;}
._4_c01094{margin-left:-6.346667pt;}
._13_c01094{margin-left:-5.365333pt;}
._6_c01094{margin-left:-3.717333pt;}
._8_c01094{margin-left:-2.085333pt;}
._7_c01094{margin-left:-1.178667pt;}
._2_c01094{width:1.632000pt;}
._1_c01094{width:3.173333pt;}
._0_c01094{width:4.352000pt;}
._10_c01094{width:5.250667pt;}
._b_c01094{width:6.834667pt;}
._e_c01094{width:7.776000pt;}
._c_c01094{width:8.765333pt;}
._d_c01094{width:10.450667pt;}
._f_c01094{width:11.880000pt;}
._16_c01094{width:13.536000pt;}
._11_c01094{width:14.466667pt;}
._a_c01094{width:16.229333pt;}
._17_c01094{width:17.730667pt;}
._15_c01094{width:19.696000pt;}
._19_c01094{width:32.189333pt;}
._18_c01094{width:48.130667pt;}
._1a_c01094{width:215.568000pt;}
._9_c01094{width:382.976000pt;}
.fs6_c01094{font-size:40.000000pt;}
.fs7_c01094{font-size:42.666667pt;}
.fs4_c01094{font-size:61.333333pt;}
.fs3_c01094{font-size:64.000000pt;}
.fs2_c01094{font-size:72.000000pt;}
.fs0_c01094{font-size:90.666667pt;}
.fs5_c01094{font-size:96.000000pt;}
.fs1_c01094{font-size:114.666667pt;}
.y0_c01094{bottom:0.000000pt;}
.y26_c01094{bottom:2.760000pt;}
.y25_c01094{bottom:6.425217pt;}
.y24_c01094{bottom:53.440000pt;}
.y23_c01094{bottom:77.306667pt;}
.y22_c01094{bottom:98.373333pt;}
.y21_c01094{bottom:120.640000pt;}
.y20_c01094{bottom:142.106667pt;}
.y1f_c01094{bottom:163.840000pt;}
.y1e_c01094{bottom:185.706667pt;}
.y1d_c01094{bottom:207.573333pt;}
.y1c_c01094{bottom:229.173333pt;}
.y1b_c01094{bottom:251.040000pt;}
.y1a_c01094{bottom:272.906667pt;}
.y19_c01094{bottom:294.240000pt;}
.y18_c01094{bottom:315.840000pt;}
.y17_c01094{bottom:337.706667pt;}
.y16_c01094{bottom:359.040000pt;}
.y15_c01094{bottom:380.906667pt;}
.y14_c01094{bottom:402.506667pt;}
.y13_c01094{bottom:423.573333pt;}
.y12_c01094{bottom:445.173333pt;}
.y11_c01094{bottom:466.506667pt;}
.y10_c01094{bottom:487.840000pt;}
.yf_c01094{bottom:509.040000pt;}
.ye_c01094{bottom:530.373333pt;}
.yd_c01094{bottom:551.440000pt;}
.yc_c01094{bottom:572.906667pt;}
.yb_c01094{bottom:594.506667pt;}
.ya_c01094{bottom:616.106667pt;}
.y9_c01094{bottom:637.440000pt;}
.y8_c01094{bottom:659.306667pt;}
.y7_c01094{bottom:681.573333pt;}
.y6_c01094{bottom:702.906667pt;}
.y5_c01094{bottom:724.240000pt;}
.y4_c01094{bottom:745.840000pt;}
.y3_c01094{bottom:767.440000pt;}
.y2_c01094{bottom:788.640000pt;}
.y1_c01094{bottom:818.640000pt;}
.h8_c01094{height:11.733399pt;}
.h9_c01094{height:38.937500pt;}
.h3_c01094{height:70.664062pt;}
.h7_c01094{height:74.906250pt;}
.h5_c01094{height:77.654948pt;}
.h4_c01094{height:81.031250pt;}
.h6_c01094{height:96.750000pt;}
.h2_c01094{height:112.483073pt;}
.h1_c01094{height:876.666667pt;}
.h0_c01094{height:876.933333pt;}
.w1_c01094{width:93.222667pt;}
.w0_c01094{width:597.333333pt;}
.x0_c01094{left:0.000000pt;}
.x4_c01094{left:57.600000pt;}
.x3_c01094{left:58.533333pt;}
.x2_c01094{left:59.733333pt;}
.x8_c01094{left:60.933333pt;}
.x1_c01094{left:62.133333pt;}
.x5_c01094{left:80.666667pt;}
.xa_c01094{left:255.834880pt;}
.x9_c01094{left:350.133333pt;}
.x6_c01094{left:477.333333pt;}
.x7_c01094{left:490.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_c01095 {
    display:none;
  }
  .loading-indicator_c01095.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01095 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01095 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01095" -> "#page-container .classname_c01095")
 */
.pf_c01095 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01095 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01095.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01095 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01095 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01095 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01095 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01095 {overflow:visible;}
  }
}
.c_c01095 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01095 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01095:after { /* webkit #35443 */
  content: '';
}
.t_c01095:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01095 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01095 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01095 { /* info for Javascript */
  display:none;
}
.l_c01095 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01095 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01095 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01095:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01095{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01095;src:url('chunks/assets/font_74534038864ba7aff0412f4b.woff2')format("woff");}.ff1_c01095{font-family:ff1_c01095;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01095;src:url('chunks/assets/font_38d5ff05aa80830abb7e56a9.woff2')format("woff");}.ff2_c01095{font-family:ff2_c01095;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01095;src:url('chunks/assets/font_3781fe11f4be0d864d06bea4.woff2')format("woff");}.ff3_c01095{font-family:ff3_c01095;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01095;src:url('chunks/assets/font_d1721b8ddb6c8cd16cf0717f.woff2')format("woff");}.ff4_c01095{font-family:ff4_c01095;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01095;src:url('chunks/assets/font_f6d5f9b956302b814b94ffb2.woff2')format("woff");}.ff5_c01095{font-family:ff5_c01095;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01095;src:url('chunks/assets/font_cb76b6d382eebf480192a810.woff2')format("woff");}.ff6_c01095{font-family:ff6_c01095;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01095;src:url('chunks/assets/font_9a3146db8bff42a7532169bb.woff2')format("woff");}.ff7_c01095{font-family:ff7_c01095;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c01095;src:url('chunks/assets/font_ce8dd22dcee5e634063abeb4.woff2')format("woff");}.ff8_c01095{font-family:ff8_c01095;line-height:1.284180;font-style:normal;font-weight: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_c01095;src:url('chunks/assets/font_9e8021ed2900cd042d856bfe.woff2')format("woff");}.ff9_c01095{font-family:ff9_c01095;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c01095;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ffa_c01095{font-family:ffa_c01095;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c01095{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m0_c01095{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01095{vertical-align:0.000000px;}
.v1_c01095{vertical-align:172.800000px;}
.lsc_c01095{letter-spacing:-6.000000px;}
.lsb_c01095{letter-spacing:0.000000px;}
.lse_c01095{letter-spacing:3.000000px;}
.ls9_c01095{letter-spacing:3.300000px;}
.ls5_c01095{letter-spacing:4.500000px;}
.ls0_c01095{letter-spacing:5.904000px;}
.lsd_c01095{letter-spacing:6.000000px;}
.ls6_c01095{letter-spacing:14.376000px;}
.ls2_c01095{letter-spacing:21.900000px;}
.lsa_c01095{letter-spacing:27.540000px;}
.ls3_c01095{letter-spacing:29.970000px;}
.ls7_c01095{letter-spacing:36.600000px;}
.ls4_c01095{letter-spacing:39.540000px;}
.ls8_c01095{letter-spacing:127.200000px;}
.ls1_c01095{letter-spacing:332.700000px;}
.sc__c01095{text-shadow:none;}
.sc0_c01095{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01095{-webkit-text-stroke:0px transparent;}
.sc0_c01095{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c01095{word-spacing:-86.400000px;}
.ws1_c01095{word-spacing:-44.775000px;}
.ws5_c01095{word-spacing:-27.000000px;}
.ws2_c01095{word-spacing:-21.888000px;}
.ws4_c01095{word-spacing:-17.352000px;}
.ws6_c01095{word-spacing:0.000000px;}
.ws0_c01095{word-spacing:0.969000px;}
._1f_c01095{margin-left:-43.254000px;}
._18_c01095{margin-left:-34.989000px;}
._10_c01095{margin-left:-23.409000px;}
._f_c01095{margin-left:-17.022000px;}
._1b_c01095{margin-left:-11.679000px;}
._5_c01095{margin-left:-10.374000px;}
._15_c01095{margin-left:-9.276000px;}
._2_c01095{margin-left:-7.557000px;}
._14_c01095{margin-left:-6.393000px;}
._a_c01095{margin-left:-4.689000px;}
._b_c01095{margin-left:-3.645000px;}
._c_c01095{margin-left:-2.367000px;}
._7_c01095{margin-left:-1.332000px;}
._3_c01095{width:1.818000px;}
._1_c01095{width:3.321000px;}
._4_c01095{width:4.662000px;}
._0_c01095{width:5.670000px;}
._6_c01095{width:7.569000px;}
._16_c01095{width:8.895000px;}
._9_c01095{width:9.900000px;}
._1a_c01095{width:11.148000px;}
._d_c01095{width:12.195000px;}
._1c_c01095{width:13.404000px;}
._17_c01095{width:14.679000px;}
._19_c01095{width:16.935000px;}
._8_c01095{width:18.873000px;}
._24_c01095{width:21.063000px;}
._e_c01095{width:22.941000px;}
._22_c01095{width:30.570000px;}
._25_c01095{width:32.610000px;}
._12_c01095{width:39.771000px;}
._20_c01095{width:76.950000px;}
._1d_c01095{width:127.494000px;}
._21_c01095{width:143.658000px;}
._13_c01095{width:144.963000px;}
._23_c01095{width:148.941000px;}
._1e_c01095{width:222.588000px;}
._11_c01095{width:231.459000px;}
._26_c01095{width:252.519000px;}
.fc2_c01095{color:transparent;}
.fc1_c01095{color:rgb(128,128,128);}
.fc0_c01095{color:rgb(0,0,0);}
.fsc_c01095{font-size:24.000000px;}
.fsd_c01095{font-size:27.000000px;}
.fs4_c01095{font-size:42.000000px;}
.fs8_c01095{font-size:48.000000px;}
.fs3_c01095{font-size:51.000000px;}
.fs7_c01095{font-size:60.000000px;}
.fs9_c01095{font-size:66.000000px;}
.fs1_c01095{font-size:72.000000px;}
.fs5_c01095{font-size:75.000000px;}
.fsa_c01095{font-size:78.000000px;}
.fs0_c01095{font-size:81.000000px;}
.fsb_c01095{font-size:84.000000px;}
.fs2_c01095{font-size:108.000000px;}
.fs6_c01095{font-size:303.000000px;}
.y0_c01095{bottom:0.000000px;}
.y24_c01095{bottom:3.105000px;}
.y23_c01095{bottom:7.228371px;}
.y22_c01095{bottom:63.165000px;}
.y21_c01095{bottom:85.365000px;}
.y20_c01095{bottom:111.765000px;}
.y1f_c01095{bottom:136.065000px;}
.y1e_c01095{bottom:160.365000px;}
.y1d_c01095{bottom:180.615000px;}
.y1c_c01095{bottom:205.515000px;}
.y1b_c01095{bottom:235.965000px;}
.y1a_c01095{bottom:258.915000px;}
.y19_c01095{bottom:283.815000px;}
.y18_c01095{bottom:308.265000px;}
.y17_c01095{bottom:332.565000px;}
.y16_c01095{bottom:356.865000px;}
.y15_c01095{bottom:382.065000px;}
.y14_c01095{bottom:406.665000px;}
.y13_c01095{bottom:430.665000px;}
.y12_c01095{bottom:454.365000px;}
.y11_c01095{bottom:478.365000px;}
.y10_c01095{bottom:502.515000px;}
.ye_c01095{bottom:506.715000px;}
.yf_c01095{bottom:526.815000px;}
.yd_c01095{bottom:574.515000px;}
.yc_c01095{bottom:622.365000px;}
.yb_c01095{bottom:646.965000px;}
.ya_c01095{bottom:672.315000px;}
.y9_c01095{bottom:696.015000px;}
.y8_c01095{bottom:719.865000px;}
.y7_c01095{bottom:745.665000px;}
.y6_c01095{bottom:767.865000px;}
.y5_c01095{bottom:791.865000px;}
.y4_c01095{bottom:816.465000px;}
.y3_c01095{bottom:840.165000px;}
.y2_c01095{bottom:864.465000px;}
.y1_c01095{bottom:888.015000px;}
.hd_c01095{height:13.200074px;}
.hb_c01095{height:23.554688px;}
.he_c01095{height:43.804688px;}
.h6_c01095{height:50.028809px;}
.h8_c01095{height:70.664062px;}
.h2_c01095{height:79.497070px;}
.ha_c01095{height:82.400391px;}
.h4_c01095{height:84.269531px;}
.hc_c01095{height:91.160156px;}
.h5_c01095{height:94.958496px;}
.h9_c01095{height:98.756836px;}
.h3_c01095{height:108.843750px;}
.h7_c01095{height:328.452000px;}
.h1_c01095{height:986.250000px;}
.h0_c01095{height:986.325000px;}
.w2_c01095{width:104.875500px;}
.w0_c01095{width:667.425000px;}
.w1_c01095{width:667.500000px;}
.x0_c01095{left:0.000000px;}
.x16_c01095{left:17.550000px;}
.x17_c01095{left:19.200000px;}
.xf_c01095{left:21.150000px;}
.x7_c01095{left:31.650000px;}
.x10_c01095{left:39.900000px;}
.x6_c01095{left:60.000000px;}
.x5_c01095{left:70.800000px;}
.x11_c01095{left:108.000000px;}
.x12_c01095{left:109.650000px;}
.xd_c01095{left:110.700000px;}
.x18_c01095{left:111.750000px;}
.xb_c01095{left:114.000000px;}
.xa_c01095{left:117.450000px;}
.x9_c01095{left:118.500000px;}
.x8_c01095{left:119.850000px;}
.x3_c01095{left:124.500000px;}
.x2_c01095{left:125.850000px;}
.x1_c01095{left:126.900000px;}
.x4_c01095{left:143.400000px;}
.xc_c01095{left:160.650000px;}
.xe_c01095{left:179.850000px;}
.x1a_c01095{left:285.526749px;}
.x15_c01095{left:486.000000px;}
.x13_c01095{left:532.950000px;}
.x19_c01095{left:579.900000px;}
.x14_c01095{left:591.750000px;}
@media print{
.v0_c01095{vertical-align:0.000000pt;}
.v1_c01095{vertical-align:153.600000pt;}
.lsc_c01095{letter-spacing:-5.333333pt;}
.lsb_c01095{letter-spacing:0.000000pt;}
.lse_c01095{letter-spacing:2.666667pt;}
.ls9_c01095{letter-spacing:2.933333pt;}
.ls5_c01095{letter-spacing:4.000000pt;}
.ls0_c01095{letter-spacing:5.248000pt;}
.lsd_c01095{letter-spacing:5.333333pt;}
.ls6_c01095{letter-spacing:12.778667pt;}
.ls2_c01095{letter-spacing:19.466667pt;}
.lsa_c01095{letter-spacing:24.480000pt;}
.ls3_c01095{letter-spacing:26.640000pt;}
.ls7_c01095{letter-spacing:32.533333pt;}
.ls4_c01095{letter-spacing:35.146667pt;}
.ls8_c01095{letter-spacing:113.066667pt;}
.ls1_c01095{letter-spacing:295.733333pt;}
.ws3_c01095{word-spacing:-76.800000pt;}
.ws1_c01095{word-spacing:-39.800000pt;}
.ws5_c01095{word-spacing:-24.000000pt;}
.ws2_c01095{word-spacing:-19.456000pt;}
.ws4_c01095{word-spacing:-15.424000pt;}
.ws6_c01095{word-spacing:0.000000pt;}
.ws0_c01095{word-spacing:0.861333pt;}
._1f_c01095{margin-left:-38.448000pt;}
._18_c01095{margin-left:-31.101333pt;}
._10_c01095{margin-left:-20.808000pt;}
._f_c01095{margin-left:-15.130667pt;}
._1b_c01095{margin-left:-10.381333pt;}
._5_c01095{margin-left:-9.221333pt;}
._15_c01095{margin-left:-8.245333pt;}
._2_c01095{margin-left:-6.717333pt;}
._14_c01095{margin-left:-5.682667pt;}
._a_c01095{margin-left:-4.168000pt;}
._b_c01095{margin-left:-3.240000pt;}
._c_c01095{margin-left:-2.104000pt;}
._7_c01095{margin-left:-1.184000pt;}
._3_c01095{width:1.616000pt;}
._1_c01095{width:2.952000pt;}
._4_c01095{width:4.144000pt;}
._0_c01095{width:5.040000pt;}
._6_c01095{width:6.728000pt;}
._16_c01095{width:7.906667pt;}
._9_c01095{width:8.800000pt;}
._1a_c01095{width:9.909333pt;}
._d_c01095{width:10.840000pt;}
._1c_c01095{width:11.914667pt;}
._17_c01095{width:13.048000pt;}
._19_c01095{width:15.053333pt;}
._8_c01095{width:16.776000pt;}
._24_c01095{width:18.722667pt;}
._e_c01095{width:20.392000pt;}
._22_c01095{width:27.173333pt;}
._25_c01095{width:28.986667pt;}
._12_c01095{width:35.352000pt;}
._20_c01095{width:68.400000pt;}
._1d_c01095{width:113.328000pt;}
._21_c01095{width:127.696000pt;}
._13_c01095{width:128.856000pt;}
._23_c01095{width:132.392000pt;}
._1e_c01095{width:197.856000pt;}
._11_c01095{width:205.741333pt;}
._26_c01095{width:224.461333pt;}
.fsc_c01095{font-size:21.333333pt;}
.fsd_c01095{font-size:24.000000pt;}
.fs4_c01095{font-size:37.333333pt;}
.fs8_c01095{font-size:42.666667pt;}
.fs3_c01095{font-size:45.333333pt;}
.fs7_c01095{font-size:53.333333pt;}
.fs9_c01095{font-size:58.666667pt;}
.fs1_c01095{font-size:64.000000pt;}
.fs5_c01095{font-size:66.666667pt;}
.fsa_c01095{font-size:69.333333pt;}
.fs0_c01095{font-size:72.000000pt;}
.fsb_c01095{font-size:74.666667pt;}
.fs2_c01095{font-size:96.000000pt;}
.fs6_c01095{font-size:269.333333pt;}
.y0_c01095{bottom:0.000000pt;}
.y24_c01095{bottom:2.760000pt;}
.y23_c01095{bottom:6.425219pt;}
.y22_c01095{bottom:56.146667pt;}
.y21_c01095{bottom:75.880000pt;}
.y20_c01095{bottom:99.346667pt;}
.y1f_c01095{bottom:120.946667pt;}
.y1e_c01095{bottom:142.546667pt;}
.y1d_c01095{bottom:160.546667pt;}
.y1c_c01095{bottom:182.680000pt;}
.y1b_c01095{bottom:209.746667pt;}
.y1a_c01095{bottom:230.146667pt;}
.y19_c01095{bottom:252.280000pt;}
.y18_c01095{bottom:274.013333pt;}
.y17_c01095{bottom:295.613333pt;}
.y16_c01095{bottom:317.213333pt;}
.y15_c01095{bottom:339.613333pt;}
.y14_c01095{bottom:361.480000pt;}
.y13_c01095{bottom:382.813333pt;}
.y12_c01095{bottom:403.880000pt;}
.y11_c01095{bottom:425.213333pt;}
.y10_c01095{bottom:446.680000pt;}
.ye_c01095{bottom:450.413333pt;}
.yf_c01095{bottom:468.280000pt;}
.yd_c01095{bottom:510.680000pt;}
.yc_c01095{bottom:553.213333pt;}
.yb_c01095{bottom:575.080000pt;}
.ya_c01095{bottom:597.613333pt;}
.y9_c01095{bottom:618.680000pt;}
.y8_c01095{bottom:639.880000pt;}
.y7_c01095{bottom:662.813333pt;}
.y6_c01095{bottom:682.546667pt;}
.y5_c01095{bottom:703.880000pt;}
.y4_c01095{bottom:725.746667pt;}
.y3_c01095{bottom:746.813333pt;}
.y2_c01095{bottom:768.413333pt;}
.y1_c01095{bottom:789.346667pt;}
.hd_c01095{height:11.733399pt;}
.hb_c01095{height:20.937500pt;}
.he_c01095{height:38.937500pt;}
.h6_c01095{height:44.470052pt;}
.h8_c01095{height:62.812500pt;}
.h2_c01095{height:70.664062pt;}
.ha_c01095{height:73.244792pt;}
.h4_c01095{height:74.906250pt;}
.hc_c01095{height:81.031250pt;}
.h5_c01095{height:84.407552pt;}
.h9_c01095{height:87.783854pt;}
.h3_c01095{height:96.750000pt;}
.h7_c01095{height:291.957333pt;}
.h1_c01095{height:876.666667pt;}
.h0_c01095{height:876.733333pt;}
.w2_c01095{width:93.222667pt;}
.w0_c01095{width:593.266667pt;}
.w1_c01095{width:593.333333pt;}
.x0_c01095{left:0.000000pt;}
.x16_c01095{left:15.600000pt;}
.x17_c01095{left:17.066667pt;}
.xf_c01095{left:18.800000pt;}
.x7_c01095{left:28.133333pt;}
.x10_c01095{left:35.466667pt;}
.x6_c01095{left:53.333333pt;}
.x5_c01095{left:62.933333pt;}
.x11_c01095{left:96.000000pt;}
.x12_c01095{left:97.466667pt;}
.xd_c01095{left:98.400000pt;}
.x18_c01095{left:99.333333pt;}
.xb_c01095{left:101.333333pt;}
.xa_c01095{left:104.400000pt;}
.x9_c01095{left:105.333333pt;}
.x8_c01095{left:106.533333pt;}
.x3_c01095{left:110.666667pt;}
.x2_c01095{left:111.866667pt;}
.x1_c01095{left:112.800000pt;}
.x4_c01095{left:127.466667pt;}
.xc_c01095{left:142.800000pt;}
.xe_c01095{left:159.866667pt;}
.x1a_c01095{left:253.801554pt;}
.x15_c01095{left:432.000000pt;}
.x13_c01095{left:473.733333pt;}
.x19_c01095{left:515.466667pt;}
.x14_c01095{left:526.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_c01096 {
    display:none;
  }
  .loading-indicator_c01096.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01096 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01096 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01096" -> "#page-container .classname_c01096")
 */
.pf_c01096 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01096 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01096.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01096 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01096 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01096 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01096 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01096 {overflow:visible;}
  }
}
.c_c01096 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01096 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01096:after { /* webkit #35443 */
  content: '';
}
.t_c01096:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01096 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01096 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01096 { /* info for Javascript */
  display:none;
}
.l_c01096 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01096 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01096 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01096:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01096{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01096;src:url('chunks/assets/font_09b7e38d6fffa5b1f8122e36.woff2')format("woff");}.ff1_c01096{font-family:ff1_c01096;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01096;src:url('chunks/assets/font_3665de9ec53953eb94414a3f.woff2')format("woff");}.ff2_c01096{font-family:ff2_c01096;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01096;src:url('chunks/assets/font_7935ffbabc68478959ff8e98.woff2')format("woff");}.ff3_c01096{font-family:ff3_c01096;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01096;src:url('chunks/assets/font_07415bb71ba0993636ae4ef7.woff2')format("woff");}.ff4_c01096{font-family:ff4_c01096;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01096;src:url('chunks/assets/font_f54150e3a49d6eade65186da.woff2')format("woff");}.ff5_c01096{font-family:ff5_c01096;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01096;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c01096{font-family:ff6_c01096;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01096{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01096{vertical-align:0.000000px;}
.ls3_c01096{letter-spacing:-6.000000px;}
.ls1_c01096{letter-spacing:0.000000px;}
.ls0_c01096{letter-spacing:6.000000px;}
.ls2_c01096{letter-spacing:9.000000px;}
.sc__c01096{text-shadow:none;}
.sc0_c01096{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01096{-webkit-text-stroke:0px transparent;}
.sc0_c01096{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01096{word-spacing:-26.352000px;}
.ws0_c01096{word-spacing:-17.352000px;}
.ws2_c01096{word-spacing:0.000000px;}
._14_c01096{margin-left:-31.833000px;}
._20_c01096{margin-left:-23.937000px;}
._13_c01096{margin-left:-21.099000px;}
._18_c01096{margin-left:-18.981000px;}
._21_c01096{margin-left:-17.058000px;}
._2_c01096{margin-left:-15.912000px;}
._1f_c01096{margin-left:-14.712000px;}
._1e_c01096{margin-left:-12.795000px;}
._11_c01096{margin-left:-10.335000px;}
._12_c01096{margin-left:-8.316000px;}
._10_c01096{margin-left:-6.306000px;}
._f_c01096{margin-left:-5.124000px;}
._4_c01096{margin-left:-4.080000px;}
._17_c01096{margin-left:-2.979000px;}
._e_c01096{margin-left:-1.965000px;}
._3_c01096{width:1.836000px;}
._5_c01096{width:3.468000px;}
._0_c01096{width:5.202000px;}
._7_c01096{width:6.294000px;}
._b_c01096{width:7.533000px;}
._1_c01096{width:8.772000px;}
._9_c01096{width:10.206000px;}
._d_c01096{width:11.364000px;}
._8_c01096{width:13.080000px;}
._15_c01096{width:14.844000px;}
._16_c01096{width:16.368000px;}
._1a_c01096{width:18.846000px;}
._19_c01096{width:23.250000px;}
._a_c01096{width:26.040000px;}
._c_c01096{width:28.728000px;}
._1c_c01096{width:30.921000px;}
._1d_c01096{width:38.118000px;}
._1b_c01096{width:147.564000px;}
._22_c01096{width:253.095000px;}
._6_c01096{width:474.198000px;}
.fc2_c01096{color:transparent;}
.fc1_c01096{color:rgb(128,128,128);}
.fc0_c01096{color:rgb(0,0,0);}
.fs7_c01096{font-size:48.000000px;}
.fs3_c01096{font-size:63.000000px;}
.fs5_c01096{font-size:66.000000px;}
.fs2_c01096{font-size:72.000000px;}
.fs1_c01096{font-size:81.000000px;}
.fs6_c01096{font-size:96.000000px;}
.fs0_c01096{font-size:102.000000px;}
.fs4_c01096{font-size:132.000000px;}
.y0_c01096{bottom:0.000000px;}
.y26_c01096{bottom:3.105000px;}
.y25_c01096{bottom:7.228369px;}
.y24_c01096{bottom:53.370000px;}
.y23_c01096{bottom:78.570000px;}
.y22_c01096{bottom:103.320000px;}
.y21_c01096{bottom:127.170000px;}
.y20_c01096{bottom:152.520000px;}
.y1f_c01096{bottom:176.820000px;}
.y1e_c01096{bottom:201.120000px;}
.y1d_c01096{bottom:225.420000px;}
.y1c_c01096{bottom:248.670000px;}
.y1b_c01096{bottom:272.970000px;}
.y1a_c01096{bottom:297.720000px;}
.y19_c01096{bottom:322.020000px;}
.y18_c01096{bottom:346.170000px;}
.y17_c01096{bottom:370.170000px;}
.y16_c01096{bottom:394.170000px;}
.y15_c01096{bottom:418.470000px;}
.y14_c01096{bottom:442.170000px;}
.y13_c01096{bottom:466.020000px;}
.y12_c01096{bottom:490.020000px;}
.y11_c01096{bottom:514.320000px;}
.y10_c01096{bottom:538.320000px;}
.yf_c01096{bottom:564.270000px;}
.ye_c01096{bottom:586.620000px;}
.yd_c01096{bottom:610.470000px;}
.yc_c01096{bottom:634.170000px;}
.yb_c01096{bottom:658.470000px;}
.ya_c01096{bottom:682.470000px;}
.y9_c01096{bottom:706.620000px;}
.y8_c01096{bottom:730.920000px;}
.y7_c01096{bottom:755.370000px;}
.y6_c01096{bottom:778.920000px;}
.y5_c01096{bottom:802.920000px;}
.y4_c01096{bottom:826.920000px;}
.y3_c01096{bottom:851.520000px;}
.y2_c01096{bottom:874.470000px;}
.y1_c01096{bottom:915.570000px;}
.h8_c01096{height:13.200073px;}
.h9_c01096{height:43.804688px;}
.h3_c01096{height:79.497070px;}
.h4_c01096{height:84.269531px;}
.h5_c01096{height:91.160156px;}
.h7_c01096{height:94.218750px;}
.h2_c01096{height:100.057617px;}
.h6_c01096{height:167.126953px;}
.h1_c01096{height:986.250000px;}
.h0_c01096{height:986.550000px;}
.w1_c01096{width:104.875500px;}
.w0_c01096{width:672.000000px;}
.x0_c01096{left:0.000000px;}
.x5_c01096{left:70.200000px;}
.x2_c01096{left:71.550000px;}
.x4_c01096{left:72.600000px;}
.x6_c01096{left:73.950000px;}
.x3_c01096{left:75.600000px;}
.x7_c01096{left:76.650000px;}
.x1_c01096{left:229.200000px;}
.x9_c01096{left:287.814240px;}
.x8_c01096{left:406.350000px;}
@media print{
.v0_c01096{vertical-align:0.000000pt;}
.ls3_c01096{letter-spacing:-5.333333pt;}
.ls1_c01096{letter-spacing:0.000000pt;}
.ls0_c01096{letter-spacing:5.333333pt;}
.ls2_c01096{letter-spacing:8.000000pt;}
.ws1_c01096{word-spacing:-23.424000pt;}
.ws0_c01096{word-spacing:-15.424000pt;}
.ws2_c01096{word-spacing:0.000000pt;}
._14_c01096{margin-left:-28.296000pt;}
._20_c01096{margin-left:-21.277333pt;}
._13_c01096{margin-left:-18.754667pt;}
._18_c01096{margin-left:-16.872000pt;}
._21_c01096{margin-left:-15.162667pt;}
._2_c01096{margin-left:-14.144000pt;}
._1f_c01096{margin-left:-13.077333pt;}
._1e_c01096{margin-left:-11.373333pt;}
._11_c01096{margin-left:-9.186667pt;}
._12_c01096{margin-left:-7.392000pt;}
._10_c01096{margin-left:-5.605333pt;}
._f_c01096{margin-left:-4.554667pt;}
._4_c01096{margin-left:-3.626667pt;}
._17_c01096{margin-left:-2.648000pt;}
._e_c01096{margin-left:-1.746667pt;}
._3_c01096{width:1.632000pt;}
._5_c01096{width:3.082667pt;}
._0_c01096{width:4.624000pt;}
._7_c01096{width:5.594667pt;}
._b_c01096{width:6.696000pt;}
._1_c01096{width:7.797333pt;}
._9_c01096{width:9.072000pt;}
._d_c01096{width:10.101333pt;}
._8_c01096{width:11.626667pt;}
._15_c01096{width:13.194667pt;}
._16_c01096{width:14.549333pt;}
._1a_c01096{width:16.752000pt;}
._19_c01096{width:20.666667pt;}
._a_c01096{width:23.146667pt;}
._c_c01096{width:25.536000pt;}
._1c_c01096{width:27.485333pt;}
._1d_c01096{width:33.882667pt;}
._1b_c01096{width:131.168000pt;}
._22_c01096{width:224.973333pt;}
._6_c01096{width:421.509333pt;}
.fs7_c01096{font-size:42.666667pt;}
.fs3_c01096{font-size:56.000000pt;}
.fs5_c01096{font-size:58.666667pt;}
.fs2_c01096{font-size:64.000000pt;}
.fs1_c01096{font-size:72.000000pt;}
.fs6_c01096{font-size:85.333333pt;}
.fs0_c01096{font-size:90.666667pt;}
.fs4_c01096{font-size:117.333333pt;}
.y0_c01096{bottom:0.000000pt;}
.y26_c01096{bottom:2.760000pt;}
.y25_c01096{bottom:6.425217pt;}
.y24_c01096{bottom:47.440000pt;}
.y23_c01096{bottom:69.840000pt;}
.y22_c01096{bottom:91.840000pt;}
.y21_c01096{bottom:113.040000pt;}
.y20_c01096{bottom:135.573333pt;}
.y1f_c01096{bottom:157.173333pt;}
.y1e_c01096{bottom:178.773333pt;}
.y1d_c01096{bottom:200.373333pt;}
.y1c_c01096{bottom:221.040000pt;}
.y1b_c01096{bottom:242.640000pt;}
.y1a_c01096{bottom:264.640000pt;}
.y19_c01096{bottom:286.240000pt;}
.y18_c01096{bottom:307.706667pt;}
.y17_c01096{bottom:329.040000pt;}
.y16_c01096{bottom:350.373333pt;}
.y15_c01096{bottom:371.973333pt;}
.y14_c01096{bottom:393.040000pt;}
.y13_c01096{bottom:414.240000pt;}
.y12_c01096{bottom:435.573333pt;}
.y11_c01096{bottom:457.173333pt;}
.y10_c01096{bottom:478.506667pt;}
.yf_c01096{bottom:501.573333pt;}
.ye_c01096{bottom:521.440000pt;}
.yd_c01096{bottom:542.640000pt;}
.yc_c01096{bottom:563.706667pt;}
.yb_c01096{bottom:585.306667pt;}
.ya_c01096{bottom:606.640000pt;}
.y9_c01096{bottom:628.106667pt;}
.y8_c01096{bottom:649.706667pt;}
.y7_c01096{bottom:671.440000pt;}
.y6_c01096{bottom:692.373333pt;}
.y5_c01096{bottom:713.706667pt;}
.y4_c01096{bottom:735.040000pt;}
.y3_c01096{bottom:756.906667pt;}
.y2_c01096{bottom:777.306667pt;}
.y1_c01096{bottom:813.840000pt;}
.h8_c01096{height:11.733399pt;}
.h9_c01096{height:38.937500pt;}
.h3_c01096{height:70.664062pt;}
.h4_c01096{height:74.906250pt;}
.h5_c01096{height:81.031250pt;}
.h7_c01096{height:83.750000pt;}
.h2_c01096{height:88.940104pt;}
.h6_c01096{height:148.557292pt;}
.h1_c01096{height:876.666667pt;}
.h0_c01096{height:876.933333pt;}
.w1_c01096{width:93.222667pt;}
.w0_c01096{width:597.333333pt;}
.x0_c01096{left:0.000000pt;}
.x5_c01096{left:62.400000pt;}
.x2_c01096{left:63.600000pt;}
.x4_c01096{left:64.533333pt;}
.x6_c01096{left:65.733333pt;}
.x3_c01096{left:67.200000pt;}
.x7_c01096{left:68.133333pt;}
.x1_c01096{left:203.733333pt;}
.x9_c01096{left:255.834880pt;}
.x8_c01096{left:361.200000pt;}
}





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

.ir_c01097:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01097{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01097;src:url('chunks/assets/font_ee9446c5c6665b1a9f0596a7.woff2')format("woff");}.ff1_c01097{font-family:ff1_c01097;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01097;src:url('chunks/assets/font_fe058d6be029b4f987e932aa.woff2')format("woff");}.ff2_c01097{font-family:ff2_c01097;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01097;src:url('chunks/assets/font_f16dc6106747fddd8db6c714.woff2')format("woff");}.ff3_c01097{font-family:ff3_c01097;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01097;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff4_c01097{font-family:ff4_c01097;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01097{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01097{vertical-align:0.000000px;}
.ls0_c01097{letter-spacing:0.000000px;}
.ls1_c01097{letter-spacing:3.000000px;}
.sc__c01097{text-shadow:none;}
.sc0_c01097{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01097{-webkit-text-stroke:0px transparent;}
.sc0_c01097{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01097{word-spacing:-17.352000px;}
.ws1_c01097{word-spacing:0.000000px;}
._20_c01097{margin-left:-26.973000px;}
._13_c01097{margin-left:-23.652000px;}
._2a_c01097{margin-left:-21.078000px;}
._21_c01097{margin-left:-15.606000px;}
._1f_c01097{margin-left:-13.077000px;}
._3_c01097{margin-left:-11.016000px;}
._2b_c01097{margin-left:-7.938000px;}
._17_c01097{margin-left:-6.525000px;}
._f_c01097{margin-left:-5.022000px;}
._18_c01097{margin-left:-3.015000px;}
._b_c01097{margin-left:-1.863000px;}
._7_c01097{width:1.296000px;}
._25_c01097{width:2.301000px;}
._0_c01097{width:3.321000px;}
._1_c01097{width:4.536000px;}
._6_c01097{width:5.751000px;}
._5_c01097{width:7.695000px;}
._2_c01097{width:8.829000px;}
._1c_c01097{width:9.894000px;}
._9_c01097{width:11.016000px;}
._e_c01097{width:12.636000px;}
._4_c01097{width:13.770000px;}
._11_c01097{width:15.552000px;}
._c_c01097{width:16.686000px;}
._8_c01097{width:18.387000px;}
._26_c01097{width:19.620000px;}
._d_c01097{width:22.113000px;}
._10_c01097{width:23.895000px;}
._15_c01097{width:24.948000px;}
._1e_c01097{width:26.043000px;}
._19_c01097{width:27.540000px;}
._a_c01097{width:28.674000px;}
._14_c01097{width:30.537000px;}
._16_c01097{width:32.145000px;}
._12_c01097{width:33.291000px;}
._1a_c01097{width:34.992000px;}
._22_c01097{width:36.780000px;}
._29_c01097{width:47.010000px;}
._28_c01097{width:50.340000px;}
._24_c01097{width:70.929000px;}
._1b_c01097{width:109.332000px;}
._23_c01097{width:133.605000px;}
._1d_c01097{width:191.028000px;}
._27_c01097{width:203.283000px;}
.fc2_c01097{color:transparent;}
.fc1_c01097{color:rgb(128,128,128);}
.fc0_c01097{color:rgb(0,0,0);}
.fs4_c01097{font-size:48.000000px;}
.fs2_c01097{font-size:57.000000px;}
.fs1_c01097{font-size:72.000000px;}
.fs3_c01097{font-size:78.000000px;}
.fs0_c01097{font-size:81.000000px;}
.y0_c01097{bottom:0.000000px;}
.y23_c01097{bottom:3.105000px;}
.y22_c01097{bottom:7.228371px;}
.y21_c01097{bottom:103.965000px;}
.y20_c01097{bottom:129.915000px;}
.y1f_c01097{bottom:154.365000px;}
.y1e_c01097{bottom:178.665000px;}
.y1d_c01097{bottom:205.215000px;}
.y1c_c01097{bottom:228.465000px;}
.y1b_c01097{bottom:252.765000px;}
.y1a_c01097{bottom:277.515000px;}
.y19_c01097{bottom:301.815000px;}
.y18_c01097{bottom:326.115000px;}
.y17_c01097{bottom:351.315000px;}
.y16_c01097{bottom:374.715000px;}
.y15_c01097{bottom:399.615000px;}
.y14_c01097{bottom:423.915000px;}
.y13_c01097{bottom:447.915000px;}
.y12_c01097{bottom:471.615000px;}
.y11_c01097{bottom:495.765000px;}
.y10_c01097{bottom:520.065000px;}
.yf_c01097{bottom:543.465000px;}
.ye_c01097{bottom:568.065000px;}
.yd_c01097{bottom:592.365000px;}
.yc_c01097{bottom:616.365000px;}
.yb_c01097{bottom:640.965000px;}
.ya_c01097{bottom:665.265000px;}
.y9_c01097{bottom:689.265000px;}
.y8_c01097{bottom:713.565000px;}
.y7_c01097{bottom:737.565000px;}
.y6_c01097{bottom:761.715000px;}
.y5_c01097{bottom:785.715000px;}
.y4_c01097{bottom:809.415000px;}
.y3_c01097{bottom:833.415000px;}
.y2_c01097{bottom:856.965000px;}
.y1_c01097{bottom:881.865000px;}
.h5_c01097{height:13.200074px;}
.h6_c01097{height:43.804688px;}
.h2_c01097{height:79.497070px;}
.h3_c01097{height:84.269531px;}
.h4_c01097{height:98.756836px;}
.h1_c01097{height:986.250000px;}
.h0_c01097{height:986.325000px;}
.w2_c01097{width:104.875500px;}
.w0_c01097{width:667.425000px;}
.w1_c01097{width:667.500000px;}
.x0_c01097{left:0.000000px;}
.xc_c01097{left:20.550000px;}
.x7_c01097{left:25.350000px;}
.x6_c01097{left:26.700000px;}
.xa_c01097{left:32.400000px;}
.x1_c01097{left:118.800000px;}
.x2_c01097{left:120.150000px;}
.x3_c01097{left:121.200000px;}
.x4_c01097{left:123.150000px;}
.x5_c01097{left:124.800000px;}
.x8_c01097{left:126.450000px;}
.x9_c01097{left:127.500000px;}
.xd_c01097{left:129.000000px;}
.xb_c01097{left:221.100000px;}
.xe_c01097{left:285.526749px;}
@media print{
.v0_c01097{vertical-align:0.000000pt;}
.ls0_c01097{letter-spacing:0.000000pt;}
.ls1_c01097{letter-spacing:2.666667pt;}
.ws0_c01097{word-spacing:-15.424000pt;}
.ws1_c01097{word-spacing:0.000000pt;}
._20_c01097{margin-left:-23.976000pt;}
._13_c01097{margin-left:-21.024000pt;}
._2a_c01097{margin-left:-18.736000pt;}
._21_c01097{margin-left:-13.872000pt;}
._1f_c01097{margin-left:-11.624000pt;}
._3_c01097{margin-left:-9.792000pt;}
._2b_c01097{margin-left:-7.056000pt;}
._17_c01097{margin-left:-5.800000pt;}
._f_c01097{margin-left:-4.464000pt;}
._18_c01097{margin-left:-2.680000pt;}
._b_c01097{margin-left:-1.656000pt;}
._7_c01097{width:1.152000pt;}
._25_c01097{width:2.045333pt;}
._0_c01097{width:2.952000pt;}
._1_c01097{width:4.032000pt;}
._6_c01097{width:5.112000pt;}
._5_c01097{width:6.840000pt;}
._2_c01097{width:7.848000pt;}
._1c_c01097{width:8.794667pt;}
._9_c01097{width:9.792000pt;}
._e_c01097{width:11.232000pt;}
._4_c01097{width:12.240000pt;}
._11_c01097{width:13.824000pt;}
._c_c01097{width:14.832000pt;}
._8_c01097{width:16.344000pt;}
._26_c01097{width:17.440000pt;}
._d_c01097{width:19.656000pt;}
._10_c01097{width:21.240000pt;}
._15_c01097{width:22.176000pt;}
._1e_c01097{width:23.149333pt;}
._19_c01097{width:24.480000pt;}
._a_c01097{width:25.488000pt;}
._14_c01097{width:27.144000pt;}
._16_c01097{width:28.573333pt;}
._12_c01097{width:29.592000pt;}
._1a_c01097{width:31.104000pt;}
._22_c01097{width:32.693333pt;}
._29_c01097{width:41.786667pt;}
._28_c01097{width:44.746667pt;}
._24_c01097{width:63.048000pt;}
._1b_c01097{width:97.184000pt;}
._23_c01097{width:118.760000pt;}
._1d_c01097{width:169.802667pt;}
._27_c01097{width:180.696000pt;}
.fs4_c01097{font-size:42.666667pt;}
.fs2_c01097{font-size:50.666667pt;}
.fs1_c01097{font-size:64.000000pt;}
.fs3_c01097{font-size:69.333333pt;}
.fs0_c01097{font-size:72.000000pt;}
.y0_c01097{bottom:0.000000pt;}
.y23_c01097{bottom:2.760000pt;}
.y22_c01097{bottom:6.425219pt;}
.y21_c01097{bottom:92.413333pt;}
.y20_c01097{bottom:115.480000pt;}
.y1f_c01097{bottom:137.213333pt;}
.y1e_c01097{bottom:158.813333pt;}
.y1d_c01097{bottom:182.413333pt;}
.y1c_c01097{bottom:203.080000pt;}
.y1b_c01097{bottom:224.680000pt;}
.y1a_c01097{bottom:246.680000pt;}
.y19_c01097{bottom:268.280000pt;}
.y18_c01097{bottom:289.880000pt;}
.y17_c01097{bottom:312.280000pt;}
.y16_c01097{bottom:333.080000pt;}
.y15_c01097{bottom:355.213333pt;}
.y14_c01097{bottom:376.813333pt;}
.y13_c01097{bottom:398.146667pt;}
.y12_c01097{bottom:419.213333pt;}
.y11_c01097{bottom:440.680000pt;}
.y10_c01097{bottom:462.280000pt;}
.yf_c01097{bottom:483.080000pt;}
.ye_c01097{bottom:504.946667pt;}
.yd_c01097{bottom:526.546667pt;}
.yc_c01097{bottom:547.880000pt;}
.yb_c01097{bottom:569.746667pt;}
.ya_c01097{bottom:591.346667pt;}
.y9_c01097{bottom:612.680000pt;}
.y8_c01097{bottom:634.280000pt;}
.y7_c01097{bottom:655.613333pt;}
.y6_c01097{bottom:677.080000pt;}
.y5_c01097{bottom:698.413333pt;}
.y4_c01097{bottom:719.480000pt;}
.y3_c01097{bottom:740.813333pt;}
.y2_c01097{bottom:761.746667pt;}
.y1_c01097{bottom:783.880000pt;}
.h5_c01097{height:11.733399pt;}
.h6_c01097{height:38.937500pt;}
.h2_c01097{height:70.664062pt;}
.h3_c01097{height:74.906250pt;}
.h4_c01097{height:87.783854pt;}
.h1_c01097{height:876.666667pt;}
.h0_c01097{height:876.733333pt;}
.w2_c01097{width:93.222667pt;}
.w0_c01097{width:593.266667pt;}
.w1_c01097{width:593.333333pt;}
.x0_c01097{left:0.000000pt;}
.xc_c01097{left:18.266667pt;}
.x7_c01097{left:22.533333pt;}
.x6_c01097{left:23.733333pt;}
.xa_c01097{left:28.800000pt;}
.x1_c01097{left:105.600000pt;}
.x2_c01097{left:106.800000pt;}
.x3_c01097{left:107.733333pt;}
.x4_c01097{left:109.466667pt;}
.x5_c01097{left:110.933333pt;}
.x8_c01097{left:112.400000pt;}
.x9_c01097{left:113.333333pt;}
.xd_c01097{left:114.666667pt;}
.xb_c01097{left:196.533333pt;}
.xe_c01097{left:253.801554pt;}
}





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

.ir_c01098:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01098{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01098;src:url('chunks/assets/font_2e57214dd3683e70a279adf5.woff2')format("woff");}.ff1_c01098{font-family:ff1_c01098;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01098;src:url('chunks/assets/font_4bf60a0cbfb5a83795fea341.woff2')format("woff");}.ff2_c01098{font-family:ff2_c01098;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01098;src:url('chunks/assets/font_78cd4f142d0be9ee496c069b.woff2')format("woff");}.ff3_c01098{font-family:ff3_c01098;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01098;src:url('chunks/assets/font_09c03a3ccfe1110c4507a0aa.woff2')format("woff");}.ff4_c01098{font-family:ff4_c01098;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01098;src:url('chunks/assets/font_098076c5ca6e523a1de11a99.woff2')format("woff");}.ff5_c01098{font-family:ff5_c01098;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01098;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c01098{font-family:ff6_c01098;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01098{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01098{vertical-align:0.000000px;}
.ls0_c01098{letter-spacing:-3.000000px;}
.ls1_c01098{letter-spacing:0.000000px;}
.sc__c01098{text-shadow:none;}
.sc0_c01098{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01098{-webkit-text-stroke:0px transparent;}
.sc0_c01098{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c01098{word-spacing:-96.174000px;}
.ws0_c01098{word-spacing:-43.368000px;}
.ws2_c01098{word-spacing:-38.448000px;}
.ws1_c01098{word-spacing:-19.500000px;}
.ws3_c01098{word-spacing:-4.050000px;}
.ws5_c01098{word-spacing:0.000000px;}
._20_c01098{margin-left:-33.687000px;}
._e_c01098{margin-left:-24.960000px;}
._21_c01098{margin-left:-21.465000px;}
._2_c01098{margin-left:-20.430000px;}
._6_c01098{margin-left:-18.630000px;}
._b_c01098{margin-left:-16.200000px;}
._9_c01098{margin-left:-14.940000px;}
._22_c01098{margin-left:-13.926000px;}
._1a_c01098{margin-left:-9.666000px;}
._13_c01098{margin-left:-7.740000px;}
._11_c01098{margin-left:-6.570000px;}
._4_c01098{margin-left:-5.400000px;}
._c_c01098{margin-left:-4.140000px;}
._d_c01098{margin-left:-2.520000px;}
._8_c01098{margin-left:-1.260000px;}
._12_c01098{width:1.350000px;}
._7_c01098{width:2.430000px;}
._10_c01098{width:3.690000px;}
._f_c01098{width:4.950000px;}
._14_c01098{width:6.840000px;}
._1_c01098{width:8.370000px;}
._17_c01098{width:10.044000px;}
._0_c01098{width:11.700000px;}
._3_c01098{width:12.780000px;}
._18_c01098{width:14.796000px;}
._5_c01098{width:16.110000px;}
._1b_c01098{width:17.397000px;}
._1e_c01098{width:19.236000px;}
._a_c01098{width:21.600000px;}
._16_c01098{width:23.553000px;}
._1f_c01098{width:25.119000px;}
._15_c01098{width:28.890000px;}
._1c_c01098{width:33.858000px;}
._19_c01098{width:38.250000px;}
._1d_c01098{width:150.129000px;}
._23_c01098{width:316.818000px;}
.fc2_c01098{color:transparent;}
.fc1_c01098{color:rgb(128,128,128);}
.fc0_c01098{color:rgb(0,0,0);}
.fs5_c01098{font-size:24.000000px;}
.fs6_c01098{font-size:48.000000px;}
.fs3_c01098{font-size:72.000000px;}
.fs1_c01098{font-size:78.000000px;}
.fs2_c01098{font-size:81.000000px;}
.fs0_c01098{font-size:90.000000px;}
.fs4_c01098{font-size:117.000000px;}
.y0_c01098{bottom:0.000000px;}
.y24_c01098{bottom:3.105000px;}
.y23_c01098{bottom:7.228369px;}
.y20_c01098{bottom:49.320000px;}
.y22_c01098{bottom:86.370000px;}
.y21_c01098{bottom:97.170000px;}
.y1f_c01098{bottom:99.120000px;}
.y1e_c01098{bottom:123.420000px;}
.y1d_c01098{bottom:148.170000px;}
.y1c_c01098{bottom:172.770000px;}
.y1b_c01098{bottom:197.070000px;}
.y1a_c01098{bottom:221.670000px;}
.y19_c01098{bottom:245.970000px;}
.y18_c01098{bottom:270.270000px;}
.y17_c01098{bottom:294.870000px;}
.y16_c01098{bottom:318.570000px;}
.y15_c01098{bottom:343.470000px;}
.y14_c01098{bottom:367.770000px;}
.y13_c01098{bottom:392.070000px;}
.y12_c01098{bottom:416.820000px;}
.y11_c01098{bottom:440.670000px;}
.y10_c01098{bottom:464.970000px;}
.yf_c01098{bottom:489.270000px;}
.ye_c01098{bottom:513.570000px;}
.yd_c01098{bottom:537.570000px;}
.yc_c01098{bottom:561.870000px;}
.yb_c01098{bottom:586.170000px;}
.ya_c01098{bottom:609.420000px;}
.y9_c01098{bottom:634.770000px;}
.y8_c01098{bottom:659.370000px;}
.y7_c01098{bottom:682.770000px;}
.y6_c01098{bottom:707.670000px;}
.y5_c01098{bottom:732.270000px;}
.y4_c01098{bottom:756.270000px;}
.y3_c01098{bottom:806.220000px;}
.y2_c01098{bottom:836.670000px;}
.y1_c01098{bottom:865.620000px;}
.h8_c01098{height:13.200073px;}
.h7_c01098{height:23.542969px;}
.h9_c01098{height:43.804688px;}
.h3_c01098{height:79.497070px;}
.h4_c01098{height:83.226000px;}
.h5_c01098{height:84.269531px;}
.h2_c01098{height:88.286133px;}
.h1_c01098{height:88.330078px;}
.h6_c01098{height:136.337988px;}
.h0_c01098{height:975.750000px;}
.w2_c01098{width:104.875500px;}
.w0_c01098{width:664.200000px;}
.w1_c01098{width:664.500000px;}
.x0_c01098{left:0.000000px;}
.x8_c01098{left:52.950000px;}
.x7_c01098{left:55.650000px;}
.x1_c01098{left:57.450000px;}
.x2_c01098{left:101.850000px;}
.x5_c01098{left:187.950000px;}
.x6_c01098{left:189.300000px;}
.x4_c01098{left:190.650000px;}
.x3_c01098{left:250.200000px;}
.xc_c01098{left:283.914230px;}
.x9_c01098{left:391.500000px;}
.xb_c01098{left:572.100000px;}
.xa_c01098{left:576.000000px;}
@media print{
.v0_c01098{vertical-align:0.000000pt;}
.ls0_c01098{letter-spacing:-2.666667pt;}
.ls1_c01098{letter-spacing:0.000000pt;}
.ws4_c01098{word-spacing:-85.488000pt;}
.ws0_c01098{word-spacing:-38.549333pt;}
.ws2_c01098{word-spacing:-34.176000pt;}
.ws1_c01098{word-spacing:-17.333333pt;}
.ws3_c01098{word-spacing:-3.600000pt;}
.ws5_c01098{word-spacing:0.000000pt;}
._20_c01098{margin-left:-29.944000pt;}
._e_c01098{margin-left:-22.186667pt;}
._21_c01098{margin-left:-19.080000pt;}
._2_c01098{margin-left:-18.160000pt;}
._6_c01098{margin-left:-16.560000pt;}
._b_c01098{margin-left:-14.400000pt;}
._9_c01098{margin-left:-13.280000pt;}
._22_c01098{margin-left:-12.378667pt;}
._1a_c01098{margin-left:-8.592000pt;}
._13_c01098{margin-left:-6.880000pt;}
._11_c01098{margin-left:-5.840000pt;}
._4_c01098{margin-left:-4.800000pt;}
._c_c01098{margin-left:-3.680000pt;}
._d_c01098{margin-left:-2.240000pt;}
._8_c01098{margin-left:-1.120000pt;}
._12_c01098{width:1.200000pt;}
._7_c01098{width:2.160000pt;}
._10_c01098{width:3.280000pt;}
._f_c01098{width:4.400000pt;}
._14_c01098{width:6.080000pt;}
._1_c01098{width:7.440000pt;}
._17_c01098{width:8.928000pt;}
._0_c01098{width:10.400000pt;}
._3_c01098{width:11.360000pt;}
._18_c01098{width:13.152000pt;}
._5_c01098{width:14.320000pt;}
._1b_c01098{width:15.464000pt;}
._1e_c01098{width:17.098667pt;}
._a_c01098{width:19.200000pt;}
._16_c01098{width:20.936000pt;}
._1f_c01098{width:22.328000pt;}
._15_c01098{width:25.680000pt;}
._1c_c01098{width:30.096000pt;}
._19_c01098{width:34.000000pt;}
._1d_c01098{width:133.448000pt;}
._23_c01098{width:281.616000pt;}
.fs5_c01098{font-size:21.333333pt;}
.fs6_c01098{font-size:42.666667pt;}
.fs3_c01098{font-size:64.000000pt;}
.fs1_c01098{font-size:69.333333pt;}
.fs2_c01098{font-size:72.000000pt;}
.fs0_c01098{font-size:80.000000pt;}
.fs4_c01098{font-size:104.000000pt;}
.y0_c01098{bottom:0.000000pt;}
.y24_c01098{bottom:2.760000pt;}
.y23_c01098{bottom:6.425217pt;}
.y20_c01098{bottom:43.840000pt;}
.y22_c01098{bottom:76.773333pt;}
.y21_c01098{bottom:86.373333pt;}
.y1f_c01098{bottom:88.106667pt;}
.y1e_c01098{bottom:109.706667pt;}
.y1d_c01098{bottom:131.706667pt;}
.y1c_c01098{bottom:153.573333pt;}
.y1b_c01098{bottom:175.173333pt;}
.y1a_c01098{bottom:197.040000pt;}
.y19_c01098{bottom:218.640000pt;}
.y18_c01098{bottom:240.240000pt;}
.y17_c01098{bottom:262.106667pt;}
.y16_c01098{bottom:283.173333pt;}
.y15_c01098{bottom:305.306667pt;}
.y14_c01098{bottom:326.906667pt;}
.y13_c01098{bottom:348.506667pt;}
.y12_c01098{bottom:370.506667pt;}
.y11_c01098{bottom:391.706667pt;}
.y10_c01098{bottom:413.306667pt;}
.yf_c01098{bottom:434.906667pt;}
.ye_c01098{bottom:456.506667pt;}
.yd_c01098{bottom:477.840000pt;}
.yc_c01098{bottom:499.440000pt;}
.yb_c01098{bottom:521.040000pt;}
.ya_c01098{bottom:541.706667pt;}
.y9_c01098{bottom:564.240000pt;}
.y8_c01098{bottom:586.106667pt;}
.y7_c01098{bottom:606.906667pt;}
.y6_c01098{bottom:629.040000pt;}
.y5_c01098{bottom:650.906667pt;}
.y4_c01098{bottom:672.240000pt;}
.y3_c01098{bottom:716.640000pt;}
.y2_c01098{bottom:743.706667pt;}
.y1_c01098{bottom:769.440000pt;}
.h8_c01098{height:11.733399pt;}
.h7_c01098{height:20.927083pt;}
.h9_c01098{height:38.937500pt;}
.h3_c01098{height:70.664062pt;}
.h4_c01098{height:73.978667pt;}
.h5_c01098{height:74.906250pt;}
.h2_c01098{height:78.476562pt;}
.h1_c01098{height:78.515625pt;}
.h6_c01098{height:121.189323pt;}
.h0_c01098{height:867.333333pt;}
.w2_c01098{width:93.222667pt;}
.w0_c01098{width:590.400000pt;}
.w1_c01098{width:590.666667pt;}
.x0_c01098{left:0.000000pt;}
.x8_c01098{left:47.066667pt;}
.x7_c01098{left:49.466667pt;}
.x1_c01098{left:51.066667pt;}
.x2_c01098{left:90.533333pt;}
.x5_c01098{left:167.066667pt;}
.x6_c01098{left:168.266667pt;}
.x4_c01098{left:169.466667pt;}
.x3_c01098{left:222.400000pt;}
.xc_c01098{left:252.368205pt;}
.x9_c01098{left:348.000000pt;}
.xb_c01098{left:508.533333pt;}
.xa_c01098{left:512.000000pt;}
}





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

.ir_c01099:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01099{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01099;src:url('chunks/assets/font_3bfa88d844d1aba1bdd63160.woff2')format("woff");}.ff1_c01099{font-family:ff1_c01099;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01099;src:url('chunks/assets/font_26517e121b383350e6d2bfce.woff2')format("woff");}.ff2_c01099{font-family:ff2_c01099;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01099;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff3_c01099{font-family:ff3_c01099;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01099;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff4_c01099{font-family:ff4_c01099;line-height:1.219238;font-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_c01099{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m0_c01099{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01099{vertical-align:0.000000px;}
.ls0_c01099{letter-spacing:0.000000px;}
.sc__c01099{text-shadow:none;}
.sc0_c01099{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01099{-webkit-text-stroke:0px transparent;}
.sc0_c01099{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01099{word-spacing:-27.000000px;}
.ws0_c01099{word-spacing:-25.500000px;}
.ws1_c01099{word-spacing:-1.782000px;}
.ws3_c01099{word-spacing:0.000000px;}
._22_c01099{margin-left:-18.771000px;}
._25_c01099{margin-left:-16.872000px;}
._20_c01099{margin-left:-15.018000px;}
._21_c01099{margin-left:-11.451000px;}
._6_c01099{margin-left:-9.285000px;}
._19_c01099{margin-left:-6.189000px;}
._1a_c01099{margin-left:-3.573000px;}
._7_c01099{margin-left:-2.406000px;}
._1e_c01099{margin-left:-1.395000px;}
._1c_c01099{width:1.185000px;}
._8_c01099{width:2.331000px;}
._1_c01099{width:3.570000px;}
._2_c01099{width:5.304000px;}
._0_c01099{width:6.630000px;}
._4_c01099{width:7.707000px;}
._a_c01099{width:8.721000px;}
._3_c01099{width:10.098000px;}
._b_c01099{width:11.352000px;}
._f_c01099{width:13.110000px;}
._14_c01099{width:15.618000px;}
._9_c01099{width:17.169000px;}
._16_c01099{width:18.210000px;}
._10_c01099{width:19.779000px;}
._17_c01099{width:21.075000px;}
._e_c01099{width:22.287000px;}
._d_c01099{width:23.997000px;}
._15_c01099{width:25.251000px;}
._18_c01099{width:26.538000px;}
._1d_c01099{width:28.443000px;}
._1b_c01099{width:31.056000px;}
._23_c01099{width:32.547000px;}
._12_c01099{width:35.283000px;}
._1f_c01099{width:39.066000px;}
._11_c01099{width:60.192000px;}
._13_c01099{width:68.856000px;}
._c_c01099{width:70.173000px;}
._26_c01099{width:75.786000px;}
._24_c01099{width:264.567000px;}
._5_c01099{width:353.499000px;}
.fc2_c01099{color:transparent;}
.fc1_c01099{color:rgb(128,128,128);}
.fc0_c01099{color:rgb(0,0,0);}
.fs5_c01099{font-size:48.000000px;}
.fs2_c01099{font-size:54.000000px;}
.fs1_c01099{font-size:57.000000px;}
.fs3_c01099{font-size:63.000000px;}
.fs0_c01099{font-size:102.000000px;}
.fs4_c01099{font-size:108.000000px;}
.y0_c01099{bottom:0.000000px;}
.y26_c01099{bottom:3.105000px;}
.y25_c01099{bottom:7.228355px;}
.y24_c01099{bottom:58.335000px;}
.y23_c01099{bottom:82.335000px;}
.y22_c01099{bottom:107.535000px;}
.y21_c01099{bottom:131.985000px;}
.y20_c01099{bottom:156.585000px;}
.y1f_c01099{bottom:180.585000px;}
.y1e_c01099{bottom:205.785000px;}
.y1d_c01099{bottom:229.785000px;}
.y1c_c01099{bottom:254.685000px;}
.y1b_c01099{bottom:278.685000px;}
.y1a_c01099{bottom:302.685000px;}
.y19_c01099{bottom:327.735000px;}
.y18_c01099{bottom:351.885000px;}
.y17_c01099{bottom:376.185000px;}
.y16_c01099{bottom:400.485000px;}
.y15_c01099{bottom:424.785000px;}
.y14_c01099{bottom:449.535000px;}
.y13_c01099{bottom:471.135000px;}
.y12_c01099{bottom:496.485000px;}
.y11_c01099{bottom:520.785000px;}
.y10_c01099{bottom:544.935000px;}
.yf_c01099{bottom:568.935000px;}
.ye_c01099{bottom:593.235000px;}
.yd_c01099{bottom:617.235000px;}
.yc_c01099{bottom:641.535000px;}
.yb_c01099{bottom:665.535000px;}
.ya_c01099{bottom:689.835000px;}
.y9_c01099{bottom:713.835000px;}
.y8_c01099{bottom:738.135000px;}
.y7_c01099{bottom:761.685000px;}
.y6_c01099{bottom:785.985000px;}
.y5_c01099{bottom:807.585000px;}
.y4_c01099{bottom:850.035000px;}
.y3_c01099{bottom:857.835000px;}
.y2_c01099{bottom:879.735000px;}
.y1_c01099{bottom:914.835000px;}
.h8_c01099{height:13.200074px;}
.h9_c01099{height:43.804688px;}
.h5_c01099{height:54.421875px;}
.h4_c01099{height:55.914551px;}
.h3_c01099{height:57.445312px;}
.h6_c01099{height:63.492188px;}
.h2_c01099{height:100.057617px;}
.h7_c01099{height:108.843750px;}
.h0_c01099{height:959.025000px;}
.h1_c01099{height:959.250000px;}
.w2_c01099{width:104.875500px;}
.w0_c01099{width:648.525000px;}
.w1_c01099{width:648.750000px;}
.x0_c01099{left:0.000000px;}
.x8_c01099{left:14.850000px;}
.x2_c01099{left:17.250000px;}
.x4_c01099{left:19.500000px;}
.xd_c01099{left:78.900000px;}
.xc_c01099{left:99.900000px;}
.xb_c01099{left:100.950000px;}
.x9_c01099{left:102.600000px;}
.x7_c01099{left:104.250000px;}
.x6_c01099{left:105.750000px;}
.x5_c01099{left:111.150000px;}
.xa_c01099{left:126.450000px;}
.xf_c01099{left:276.076767px;}
.x3_c01099{left:277.350000px;}
.x1_c01099{left:343.200000px;}
.xe_c01099{left:561.000000px;}
@media print{
.v0_c01099{vertical-align:0.000000pt;}
.ls0_c01099{letter-spacing:0.000000pt;}
.ws2_c01099{word-spacing:-24.000000pt;}
.ws0_c01099{word-spacing:-22.666667pt;}
.ws1_c01099{word-spacing:-1.584000pt;}
.ws3_c01099{word-spacing:0.000000pt;}
._22_c01099{margin-left:-16.685333pt;}
._25_c01099{margin-left:-14.997333pt;}
._20_c01099{margin-left:-13.349333pt;}
._21_c01099{margin-left:-10.178667pt;}
._6_c01099{margin-left:-8.253333pt;}
._19_c01099{margin-left:-5.501333pt;}
._1a_c01099{margin-left:-3.176000pt;}
._7_c01099{margin-left:-2.138667pt;}
._1e_c01099{margin-left:-1.240000pt;}
._1c_c01099{width:1.053333pt;}
._8_c01099{width:2.072000pt;}
._1_c01099{width:3.173333pt;}
._2_c01099{width:4.714667pt;}
._0_c01099{width:5.893333pt;}
._4_c01099{width:6.850667pt;}
._a_c01099{width:7.752000pt;}
._3_c01099{width:8.976000pt;}
._b_c01099{width:10.090667pt;}
._f_c01099{width:11.653333pt;}
._14_c01099{width:13.882667pt;}
._9_c01099{width:15.261333pt;}
._16_c01099{width:16.186667pt;}
._10_c01099{width:17.581333pt;}
._17_c01099{width:18.733333pt;}
._e_c01099{width:19.810667pt;}
._d_c01099{width:21.330667pt;}
._15_c01099{width:22.445333pt;}
._18_c01099{width:23.589333pt;}
._1d_c01099{width:25.282667pt;}
._1b_c01099{width:27.605333pt;}
._23_c01099{width:28.930667pt;}
._12_c01099{width:31.362667pt;}
._1f_c01099{width:34.725333pt;}
._11_c01099{width:53.504000pt;}
._13_c01099{width:61.205333pt;}
._c_c01099{width:62.376000pt;}
._26_c01099{width:67.365333pt;}
._24_c01099{width:235.170667pt;}
._5_c01099{width:314.221333pt;}
.fs5_c01099{font-size:42.666667pt;}
.fs2_c01099{font-size:48.000000pt;}
.fs1_c01099{font-size:50.666667pt;}
.fs3_c01099{font-size:56.000000pt;}
.fs0_c01099{font-size:90.666667pt;}
.fs4_c01099{font-size:96.000000pt;}
.y0_c01099{bottom:0.000000pt;}
.y26_c01099{bottom:2.760000pt;}
.y25_c01099{bottom:6.425204pt;}
.y24_c01099{bottom:51.853333pt;}
.y23_c01099{bottom:73.186667pt;}
.y22_c01099{bottom:95.586667pt;}
.y21_c01099{bottom:117.320000pt;}
.y20_c01099{bottom:139.186667pt;}
.y1f_c01099{bottom:160.520000pt;}
.y1e_c01099{bottom:182.920000pt;}
.y1d_c01099{bottom:204.253333pt;}
.y1c_c01099{bottom:226.386667pt;}
.y1b_c01099{bottom:247.720000pt;}
.y1a_c01099{bottom:269.053333pt;}
.y19_c01099{bottom:291.320000pt;}
.y18_c01099{bottom:312.786667pt;}
.y17_c01099{bottom:334.386667pt;}
.y16_c01099{bottom:355.986667pt;}
.y15_c01099{bottom:377.586667pt;}
.y14_c01099{bottom:399.586667pt;}
.y13_c01099{bottom:418.786667pt;}
.y12_c01099{bottom:441.320000pt;}
.y11_c01099{bottom:462.920000pt;}
.y10_c01099{bottom:484.386667pt;}
.yf_c01099{bottom:505.720000pt;}
.ye_c01099{bottom:527.320000pt;}
.yd_c01099{bottom:548.653333pt;}
.yc_c01099{bottom:570.253333pt;}
.yb_c01099{bottom:591.586667pt;}
.ya_c01099{bottom:613.186667pt;}
.y9_c01099{bottom:634.520000pt;}
.y8_c01099{bottom:656.120000pt;}
.y7_c01099{bottom:677.053333pt;}
.y6_c01099{bottom:698.653333pt;}
.y5_c01099{bottom:717.853333pt;}
.y4_c01099{bottom:755.586667pt;}
.y3_c01099{bottom:762.520000pt;}
.y2_c01099{bottom:781.986667pt;}
.y1_c01099{bottom:813.186667pt;}
.h8_c01099{height:11.733399pt;}
.h9_c01099{height:38.937500pt;}
.h5_c01099{height:48.375000pt;}
.h4_c01099{height:49.701823pt;}
.h3_c01099{height:51.062500pt;}
.h6_c01099{height:56.437500pt;}
.h2_c01099{height:88.940104pt;}
.h7_c01099{height:96.750000pt;}
.h0_c01099{height:852.466667pt;}
.h1_c01099{height:852.666667pt;}
.w2_c01099{width:93.222667pt;}
.w0_c01099{width:576.466667pt;}
.w1_c01099{width:576.666667pt;}
.x0_c01099{left:0.000000pt;}
.x8_c01099{left:13.200000pt;}
.x2_c01099{left:15.333333pt;}
.x4_c01099{left:17.333333pt;}
.xd_c01099{left:70.133333pt;}
.xc_c01099{left:88.800000pt;}
.xb_c01099{left:89.733333pt;}
.x9_c01099{left:91.200000pt;}
.x7_c01099{left:92.666667pt;}
.x6_c01099{left:94.000000pt;}
.x5_c01099{left:98.800000pt;}
.xa_c01099{left:112.400000pt;}
.xf_c01099{left:245.401571pt;}
.x3_c01099{left:246.533333pt;}
.x1_c01099{left:305.066667pt;}
.xe_c01099{left:498.666667pt;}
}





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

.ir_c01100:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01100{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01100;src:url('chunks/assets/font_1c85fe0d66a146169cbadfcf.woff2')format("woff");}.ff1_c01100{font-family:ff1_c01100;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01100;src:url('chunks/assets/font_1113526a8ec30001373346fb.woff2')format("woff");}.ff2_c01100{font-family:ff2_c01100;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01100;src:url('chunks/assets/font_53fdc584f7e0741d52a6cbe7.woff2')format("woff");}.ff3_c01100{font-family:ff3_c01100;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01100;src:url('chunks/assets/font_a0088271faa5c48280deb21c.woff2')format("woff");}.ff4_c01100{font-family:ff4_c01100;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01100;src:url('chunks/assets/font_4c6bb0fdb9bac610098af901.woff2')format("woff");}.ff5_c01100{font-family:ff5_c01100;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01100;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c01100{font-family:ff6_c01100;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01100{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01100{vertical-align:0.000000px;}
.ls3_c01100{letter-spacing:-9.000000px;}
.ls1_c01100{letter-spacing:0.000000px;}
.ls2_c01100{letter-spacing:6.000000px;}
.ls0_c01100{letter-spacing:14.064000px;}
.sc__c01100{text-shadow:none;}
.sc0_c01100{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01100{-webkit-text-stroke:0px transparent;}
.sc0_c01100{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01100{word-spacing:-38.364000px;}
.ws1_c01100{word-spacing:-17.352000px;}
.ws2_c01100{word-spacing:0.000000px;}
._1d_c01100{margin-left:-44.568000px;}
._20_c01100{margin-left:-31.152000px;}
._17_c01100{margin-left:-14.586000px;}
._5_c01100{margin-left:-11.388000px;}
._22_c01100{margin-left:-9.738000px;}
._12_c01100{margin-left:-7.764000px;}
._11_c01100{margin-left:-6.168000px;}
._f_c01100{margin-left:-4.470000px;}
._d_c01100{margin-left:-2.940000px;}
._c_c01100{margin-left:-1.026000px;}
._1_c01100{width:1.248000px;}
._2_c01100{width:2.652000px;}
._0_c01100{width:3.822000px;}
._4_c01100{width:4.836000px;}
._3_c01100{width:6.240000px;}
._a_c01100{width:7.500000px;}
._6_c01100{width:8.580000px;}
._7_c01100{width:9.840000px;}
._b_c01100{width:11.616000px;}
._8_c01100{width:13.488000px;}
._9_c01100{width:14.688000px;}
._23_c01100{width:15.702000px;}
._e_c01100{width:19.020000px;}
._1e_c01100{width:20.454000px;}
._1b_c01100{width:22.176000px;}
._14_c01100{width:25.650000px;}
._13_c01100{width:28.554000px;}
._15_c01100{width:33.774000px;}
._1f_c01100{width:34.854000px;}
._10_c01100{width:35.898000px;}
._1c_c01100{width:57.828000px;}
._19_c01100{width:71.166000px;}
._16_c01100{width:74.934000px;}
._21_c01100{width:102.312000px;}
._1a_c01100{width:131.400000px;}
._18_c01100{width:208.254000px;}
._24_c01100{width:362.526000px;}
.fc2_c01100{color:transparent;}
.fc1_c01100{color:rgb(128,128,128);}
.fc0_c01100{color:rgb(0,0,0);}
.fs1_c01100{font-size:48.000000px;}
.fs4_c01100{font-size:63.000000px;}
.fs3_c01100{font-size:69.000000px;}
.fs2_c01100{font-size:72.000000px;}
.fs0_c01100{font-size:78.000000px;}
.y0_c01100{bottom:0.000000px;}
.y25_c01100{bottom:3.105000px;}
.y24_c01100{bottom:7.228369px;}
.y23_c01100{bottom:54.720000px;}
.y22_c01100{bottom:78.570000px;}
.y21_c01100{bottom:103.170000px;}
.y20_c01100{bottom:127.470000px;}
.y1f_c01100{bottom:151.470000px;}
.y1e_c01100{bottom:176.520000px;}
.y1d_c01100{bottom:200.820000px;}
.y1c_c01100{bottom:225.120000px;}
.y1b_c01100{bottom:248.970000px;}
.y1a_c01100{bottom:273.720000px;}
.y19_c01100{bottom:297.720000px;}
.y18_c01100{bottom:322.320000px;}
.y17_c01100{bottom:346.170000px;}
.y16_c01100{bottom:370.620000px;}
.y15_c01100{bottom:394.920000px;}
.y14_c01100{bottom:419.220000px;}
.y13_c01100{bottom:443.370000px;}
.y12_c01100{bottom:468.120000px;}
.y11_c01100{bottom:492.420000px;}
.y10_c01100{bottom:516.720000px;}
.yf_c01100{bottom:539.970000px;}
.ye_c01100{bottom:564.570000px;}
.yd_c01100{bottom:588.570000px;}
.yc_c01100{bottom:612.570000px;}
.yb_c01100{bottom:636.870000px;}
.ya_c01100{bottom:662.220000px;}
.y9_c01100{bottom:685.770000px;}
.y8_c01100{bottom:710.670000px;}
.y7_c01100{bottom:734.070000px;}
.y6_c01100{bottom:758.970000px;}
.y5_c01100{bottom:782.970000px;}
.y4_c01100{bottom:807.570000px;}
.y3_c01100{bottom:833.220000px;}
.y2_c01100{bottom:855.270000px;}
.y1_c01100{bottom:879.120000px;}
.h4_c01100{height:13.200073px;}
.h5_c01100{height:43.804688px;}
.h2_c01100{height:83.226000px;}
.h3_c01100{height:84.269531px;}
.h1_c01100{height:986.250000px;}
.h0_c01100{height:986.550000px;}
.w1_c01100{width:104.875500px;}
.w0_c01100{width:672.000000px;}
.x0_c01100{left:0.000000px;}
.x6_c01100{left:41.550000px;}
.x4_c01100{left:42.750000px;}
.x1_c01100{left:44.100000px;}
.x2_c01100{left:45.600000px;}
.x3_c01100{left:48.150000px;}
.x5_c01100{left:66.450000px;}
.x8_c01100{left:287.814240px;}
.x7_c01100{left:363.150000px;}
@media print{
.v0_c01100{vertical-align:0.000000pt;}
.ls3_c01100{letter-spacing:-8.000000pt;}
.ls1_c01100{letter-spacing:0.000000pt;}
.ls2_c01100{letter-spacing:5.333333pt;}
.ls0_c01100{letter-spacing:12.501333pt;}
.ws0_c01100{word-spacing:-34.101333pt;}
.ws1_c01100{word-spacing:-15.424000pt;}
.ws2_c01100{word-spacing:0.000000pt;}
._1d_c01100{margin-left:-39.616000pt;}
._20_c01100{margin-left:-27.690667pt;}
._17_c01100{margin-left:-12.965333pt;}
._5_c01100{margin-left:-10.122667pt;}
._22_c01100{margin-left:-8.656000pt;}
._12_c01100{margin-left:-6.901333pt;}
._11_c01100{margin-left:-5.482667pt;}
._f_c01100{margin-left:-3.973333pt;}
._d_c01100{margin-left:-2.613333pt;}
._c_c01100{margin-left:-0.912000pt;}
._1_c01100{width:1.109333pt;}
._2_c01100{width:2.357333pt;}
._0_c01100{width:3.397333pt;}
._4_c01100{width:4.298667pt;}
._3_c01100{width:5.546667pt;}
._a_c01100{width:6.666667pt;}
._6_c01100{width:7.626667pt;}
._7_c01100{width:8.746667pt;}
._b_c01100{width:10.325333pt;}
._8_c01100{width:11.989333pt;}
._9_c01100{width:13.056000pt;}
._23_c01100{width:13.957333pt;}
._e_c01100{width:16.906667pt;}
._1e_c01100{width:18.181333pt;}
._1b_c01100{width:19.712000pt;}
._14_c01100{width:22.800000pt;}
._13_c01100{width:25.381333pt;}
._15_c01100{width:30.021333pt;}
._1f_c01100{width:30.981333pt;}
._10_c01100{width:31.909333pt;}
._1c_c01100{width:51.402667pt;}
._19_c01100{width:63.258667pt;}
._16_c01100{width:66.608000pt;}
._21_c01100{width:90.944000pt;}
._1a_c01100{width:116.800000pt;}
._18_c01100{width:185.114667pt;}
._24_c01100{width:322.245333pt;}
.fs1_c01100{font-size:42.666667pt;}
.fs4_c01100{font-size:56.000000pt;}
.fs3_c01100{font-size:61.333333pt;}
.fs2_c01100{font-size:64.000000pt;}
.fs0_c01100{font-size:69.333333pt;}
.y0_c01100{bottom:0.000000pt;}
.y25_c01100{bottom:2.760000pt;}
.y24_c01100{bottom:6.425217pt;}
.y23_c01100{bottom:48.640000pt;}
.y22_c01100{bottom:69.840000pt;}
.y21_c01100{bottom:91.706667pt;}
.y20_c01100{bottom:113.306667pt;}
.y1f_c01100{bottom:134.640000pt;}
.y1e_c01100{bottom:156.906667pt;}
.y1d_c01100{bottom:178.506667pt;}
.y1c_c01100{bottom:200.106667pt;}
.y1b_c01100{bottom:221.306667pt;}
.y1a_c01100{bottom:243.306667pt;}
.y19_c01100{bottom:264.640000pt;}
.y18_c01100{bottom:286.506667pt;}
.y17_c01100{bottom:307.706667pt;}
.y16_c01100{bottom:329.440000pt;}
.y15_c01100{bottom:351.040000pt;}
.y14_c01100{bottom:372.640000pt;}
.y13_c01100{bottom:394.106667pt;}
.y12_c01100{bottom:416.106667pt;}
.y11_c01100{bottom:437.706667pt;}
.y10_c01100{bottom:459.306667pt;}
.yf_c01100{bottom:479.973333pt;}
.ye_c01100{bottom:501.840000pt;}
.yd_c01100{bottom:523.173333pt;}
.yc_c01100{bottom:544.506667pt;}
.yb_c01100{bottom:566.106667pt;}
.ya_c01100{bottom:588.640000pt;}
.y9_c01100{bottom:609.573333pt;}
.y8_c01100{bottom:631.706667pt;}
.y7_c01100{bottom:652.506667pt;}
.y6_c01100{bottom:674.640000pt;}
.y5_c01100{bottom:695.973333pt;}
.y4_c01100{bottom:717.840000pt;}
.y3_c01100{bottom:740.640000pt;}
.y2_c01100{bottom:760.240000pt;}
.y1_c01100{bottom:781.440000pt;}
.h4_c01100{height:11.733399pt;}
.h5_c01100{height:38.937500pt;}
.h2_c01100{height:73.978667pt;}
.h3_c01100{height:74.906250pt;}
.h1_c01100{height:876.666667pt;}
.h0_c01100{height:876.933333pt;}
.w1_c01100{width:93.222667pt;}
.w0_c01100{width:597.333333pt;}
.x0_c01100{left:0.000000pt;}
.x6_c01100{left:36.933333pt;}
.x4_c01100{left:38.000000pt;}
.x1_c01100{left:39.200000pt;}
.x2_c01100{left:40.533333pt;}
.x3_c01100{left:42.800000pt;}
.x5_c01100{left:59.066667pt;}
.x8_c01100{left:255.834880pt;}
.x7_c01100{left:322.800000pt;}
}





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

.ir_c01101:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01101{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01101;src:url('chunks/assets/font_eb82c8b995ded3d6ac08ec84.woff2')format("woff");}.ff1_c01101{font-family:ff1_c01101;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01101;src:url('chunks/assets/font_5aa5ce1a222b15024d12fb2c.woff2')format("woff");}.ff2_c01101{font-family:ff2_c01101;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01101;src:url('chunks/assets/font_6f1cb53ae634287dbe2cb22b.woff2')format("woff");}.ff3_c01101{font-family:ff3_c01101;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01101;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff4_c01101{font-family:ff4_c01101;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01101;src:url('chunks/assets/font_48a03ed0dd08b5810c1168a3.woff2')format("woff");}.ff5_c01101{font-family:ff5_c01101;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01101;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff6_c01101{font-family:ff6_c01101;line-height:1.284668;font-style:normal;font-weight: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_c01101;src:url('chunks/assets/font_4bf60a0cbfb5a83795fea341.woff2')format("woff");}.ff7_c01101{font-family:ff7_c01101;line-height:1.284180;font-style:normal;font-weight: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_c01101;src:url('chunks/assets/font_380eb7554c8463b4913c3dd8.woff2')format("woff");}.ff8_c01101{font-family:ff8_c01101;line-height:1.311035;font-style:normal;font-weight: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_c01101;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff9_c01101{font-family:ff9_c01101;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01101{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c01101{vertical-align:-66.000000px;}
.v0_c01101{vertical-align:0.000000px;}
.ls2_c01101{letter-spacing:0.000000px;}
.ls3_c01101{letter-spacing:3.000000px;}
.ls1_c01101{letter-spacing:9.900000px;}
.ls0_c01101{letter-spacing:36.000000px;}
.sc__c01101{text-shadow:none;}
.sc0_c01101{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01101{-webkit-text-stroke:0px transparent;}
.sc0_c01101{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01101{word-spacing:-40.032000px;}
.ws1_c01101{word-spacing:-17.352000px;}
.ws3_c01101{word-spacing:-16.926000px;}
.ws4_c01101{word-spacing:0.000000px;}
.ws0_c01101{word-spacing:56.430000px;}
._12_c01101{margin-left:-43.842000px;}
._22_c01101{margin-left:-29.490000px;}
._15_c01101{margin-left:-26.754000px;}
._13_c01101{margin-left:-16.770000px;}
._24_c01101{margin-left:-11.484000px;}
._c_c01101{margin-left:-9.828000px;}
._d_c01101{margin-left:-8.142000px;}
._1b_c01101{margin-left:-7.038000px;}
._b_c01101{margin-left:-4.524000px;}
._6_c01101{margin-left:-3.432000px;}
._1e_c01101{margin-left:-2.418000px;}
._2_c01101{margin-left:-1.326000px;}
._4_c01101{width:1.170000px;}
._1_c01101{width:2.496000px;}
._0_c01101{width:4.290000px;}
._5_c01101{width:5.538000px;}
._8_c01101{width:6.864000px;}
._3_c01101{width:7.956000px;}
._9_c01101{width:9.282000px;}
._7_c01101{width:10.374000px;}
._a_c01101{width:12.480000px;}
._1a_c01101{width:13.998000px;}
._f_c01101{width:15.444000px;}
._e_c01101{width:18.954000px;}
._10_c01101{width:20.280000px;}
._17_c01101{width:21.684000px;}
._11_c01101{width:25.350000px;}
._16_c01101{width:28.314000px;}
._21_c01101{width:29.748000px;}
._20_c01101{width:38.028000px;}
._18_c01101{width:43.680000px;}
._19_c01101{width:47.028000px;}
._23_c01101{width:106.080000px;}
._1d_c01101{width:231.738000px;}
._14_c01101{width:360.048000px;}
._1c_c01101{width:655.560000px;}
._1f_c01101{width:835.458000px;}
.fc2_c01101{color:transparent;}
.fc1_c01101{color:rgb(128,128,128);}
.fc0_c01101{color:rgb(0,0,0);}
.fs6_c01101{font-size:48.000000px;}
.fs4_c01101{font-size:57.000000px;}
.fs5_c01101{font-size:69.000000px;}
.fs1_c01101{font-size:72.000000px;}
.fs2_c01101{font-size:75.000000px;}
.fs0_c01101{font-size:78.000000px;}
.fs3_c01101{font-size:84.000000px;}
.y0_c01101{bottom:0.000000px;}
.y24_c01101{bottom:3.105000px;}
.y23_c01101{bottom:7.228371px;}
.y22_c01101{bottom:54.015000px;}
.y21_c01101{bottom:77.715000px;}
.y20_c01101{bottom:101.565000px;}
.y1f_c01101{bottom:125.865000px;}
.y1e_c01101{bottom:153.015000px;}
.y1d_c01101{bottom:174.915000px;}
.y1c_c01101{bottom:200.865000px;}
.y1b_c01101{bottom:224.565000px;}
.y1a_c01101{bottom:248.715000px;}
.y19_c01101{bottom:273.165000px;}
.y18_c01101{bottom:297.765000px;}
.y17_c01101{bottom:322.365000px;}
.y16_c01101{bottom:346.665000px;}
.y15_c01101{bottom:371.265000px;}
.y14_c01101{bottom:395.865000px;}
.y13_c01101{bottom:420.165000px;}
.y12_c01101{bottom:445.515000px;}
.y11_c01101{bottom:467.115000px;}
.y10_c01101{bottom:492.765000px;}
.yf_c01101{bottom:517.065000px;}
.ye_c01101{bottom:541.065000px;}
.yd_c01101{bottom:565.665000px;}
.yc_c01101{bottom:606.465000px;}
.yb_c01101{bottom:638.565000px;}
.ya_c01101{bottom:662.565000px;}
.y9_c01101{bottom:687.465000px;}
.y8_c01101{bottom:711.165000px;}
.y7_c01101{bottom:735.765000px;}
.y6_c01101{bottom:760.065000px;}
.y5_c01101{bottom:784.065000px;}
.y4_c01101{bottom:808.065000px;}
.y3_c01101{bottom:832.365000px;}
.y2_c01101{bottom:856.965000px;}
.y1_c01101{bottom:880.965000px;}
.h5_c01101{height:13.200074px;}
.h6_c01101{height:43.804688px;}
.h2_c01101{height:83.226000px;}
.h3_c01101{height:84.269531px;}
.h4_c01101{height:91.160156px;}
.h1_c01101{height:986.250000px;}
.h0_c01101{height:986.325000px;}
.w2_c01101{width:104.875500px;}
.w0_c01101{width:667.425000px;}
.w1_c01101{width:667.500000px;}
.x0_c01101{left:0.000000px;}
.xc_c01101{left:32.700000px;}
.x6_c01101{left:42.900000px;}
.x8_c01101{left:52.050000px;}
.x5_c01101{left:56.700000px;}
.x7_c01101{left:110.100000px;}
.x9_c01101{left:119.850000px;}
.xb_c01101{left:121.200000px;}
.x4_c01101{left:122.250000px;}
.x1_c01101{left:123.900000px;}
.x3_c01101{left:125.250000px;}
.x2_c01101{left:126.450000px;}
.xa_c01101{left:239.400000px;}
.xe_c01101{left:285.526749px;}
.xd_c01101{left:571.950000px;}
@media print{
.v1_c01101{vertical-align:-58.666667pt;}
.v0_c01101{vertical-align:0.000000pt;}
.ls2_c01101{letter-spacing:0.000000pt;}
.ls3_c01101{letter-spacing:2.666667pt;}
.ls1_c01101{letter-spacing:8.800000pt;}
.ls0_c01101{letter-spacing:32.000000pt;}
.ws2_c01101{word-spacing:-35.584000pt;}
.ws1_c01101{word-spacing:-15.424000pt;}
.ws3_c01101{word-spacing:-15.045333pt;}
.ws4_c01101{word-spacing:0.000000pt;}
.ws0_c01101{word-spacing:50.160000pt;}
._12_c01101{margin-left:-38.970667pt;}
._22_c01101{margin-left:-26.213333pt;}
._15_c01101{margin-left:-23.781333pt;}
._13_c01101{margin-left:-14.906667pt;}
._24_c01101{margin-left:-10.208000pt;}
._c_c01101{margin-left:-8.736000pt;}
._d_c01101{margin-left:-7.237333pt;}
._1b_c01101{margin-left:-6.256000pt;}
._b_c01101{margin-left:-4.021333pt;}
._6_c01101{margin-left:-3.050667pt;}
._1e_c01101{margin-left:-2.149333pt;}
._2_c01101{margin-left:-1.178667pt;}
._4_c01101{width:1.040000pt;}
._1_c01101{width:2.218667pt;}
._0_c01101{width:3.813333pt;}
._5_c01101{width:4.922667pt;}
._8_c01101{width:6.101333pt;}
._3_c01101{width:7.072000pt;}
._9_c01101{width:8.250667pt;}
._7_c01101{width:9.221333pt;}
._a_c01101{width:11.093333pt;}
._1a_c01101{width:12.442667pt;}
._f_c01101{width:13.728000pt;}
._e_c01101{width:16.848000pt;}
._10_c01101{width:18.026667pt;}
._17_c01101{width:19.274667pt;}
._11_c01101{width:22.533333pt;}
._16_c01101{width:25.168000pt;}
._21_c01101{width:26.442667pt;}
._20_c01101{width:33.802667pt;}
._18_c01101{width:38.826667pt;}
._19_c01101{width:41.802667pt;}
._23_c01101{width:94.293333pt;}
._1d_c01101{width:205.989333pt;}
._14_c01101{width:320.042667pt;}
._1c_c01101{width:582.720000pt;}
._1f_c01101{width:742.629333pt;}
.fs6_c01101{font-size:42.666667pt;}
.fs4_c01101{font-size:50.666667pt;}
.fs5_c01101{font-size:61.333333pt;}
.fs1_c01101{font-size:64.000000pt;}
.fs2_c01101{font-size:66.666667pt;}
.fs0_c01101{font-size:69.333333pt;}
.fs3_c01101{font-size:74.666667pt;}
.y0_c01101{bottom:0.000000pt;}
.y24_c01101{bottom:2.760000pt;}
.y23_c01101{bottom:6.425219pt;}
.y22_c01101{bottom:48.013333pt;}
.y21_c01101{bottom:69.080000pt;}
.y20_c01101{bottom:90.280000pt;}
.y1f_c01101{bottom:111.880000pt;}
.y1e_c01101{bottom:136.013333pt;}
.y1d_c01101{bottom:155.480000pt;}
.y1c_c01101{bottom:178.546667pt;}
.y1b_c01101{bottom:199.613333pt;}
.y1a_c01101{bottom:221.080000pt;}
.y19_c01101{bottom:242.813333pt;}
.y18_c01101{bottom:264.680000pt;}
.y17_c01101{bottom:286.546667pt;}
.y16_c01101{bottom:308.146667pt;}
.y15_c01101{bottom:330.013333pt;}
.y14_c01101{bottom:351.880000pt;}
.y13_c01101{bottom:373.480000pt;}
.y12_c01101{bottom:396.013333pt;}
.y11_c01101{bottom:415.213333pt;}
.y10_c01101{bottom:438.013333pt;}
.yf_c01101{bottom:459.613333pt;}
.ye_c01101{bottom:480.946667pt;}
.yd_c01101{bottom:502.813333pt;}
.yc_c01101{bottom:539.080000pt;}
.yb_c01101{bottom:567.613333pt;}
.ya_c01101{bottom:588.946667pt;}
.y9_c01101{bottom:611.080000pt;}
.y8_c01101{bottom:632.146667pt;}
.y7_c01101{bottom:654.013333pt;}
.y6_c01101{bottom:675.613333pt;}
.y5_c01101{bottom:696.946667pt;}
.y4_c01101{bottom:718.280000pt;}
.y3_c01101{bottom:739.880000pt;}
.y2_c01101{bottom:761.746667pt;}
.y1_c01101{bottom:783.080000pt;}
.h5_c01101{height:11.733399pt;}
.h6_c01101{height:38.937500pt;}
.h2_c01101{height:73.978667pt;}
.h3_c01101{height:74.906250pt;}
.h4_c01101{height:81.031250pt;}
.h1_c01101{height:876.666667pt;}
.h0_c01101{height:876.733333pt;}
.w2_c01101{width:93.222667pt;}
.w0_c01101{width:593.266667pt;}
.w1_c01101{width:593.333333pt;}
.x0_c01101{left:0.000000pt;}
.xc_c01101{left:29.066667pt;}
.x6_c01101{left:38.133333pt;}
.x8_c01101{left:46.266667pt;}
.x5_c01101{left:50.400000pt;}
.x7_c01101{left:97.866667pt;}
.x9_c01101{left:106.533333pt;}
.xb_c01101{left:107.733333pt;}
.x4_c01101{left:108.666667pt;}
.x1_c01101{left:110.133333pt;}
.x3_c01101{left:111.333333pt;}
.x2_c01101{left:112.400000pt;}
.xa_c01101{left:212.800000pt;}
.xe_c01101{left:253.801554pt;}
.xd_c01101{left:508.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_c01102 {
    display:none;
  }
  .loading-indicator_c01102.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01102 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01102 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01102" -> "#page-container .classname_c01102")
 */
.pf_c01102 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01102 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01102.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01102 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01102 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01102 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01102 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01102 {overflow:visible;}
  }
}
.c_c01102 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01102 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01102:after { /* webkit #35443 */
  content: '';
}
.t_c01102:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01102 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01102 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01102 { /* info for Javascript */
  display:none;
}
.l_c01102 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01102 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01102 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01102:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01102{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01102;src:url('chunks/assets/font_f63cb7ff9a5485d4e5a8e2bc.woff2')format("woff");}.ff1_c01102{font-family:ff1_c01102;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01102;src:url('chunks/assets/font_2cc618aff16eb2bc30ed0755.woff2')format("woff");}.ff2_c01102{font-family:ff2_c01102;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01102;src:url('chunks/assets/font_f29af2c7390779fd5ff2b49e.woff2')format("woff");}.ff3_c01102{font-family:ff3_c01102;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01102;src:url('chunks/assets/font_01fe9eedfb6534b2f966a768.woff2')format("woff");}.ff4_c01102{font-family:ff4_c01102;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01102;src:url('chunks/assets/font_519e31a8919fcbe26662271b.woff2')format("woff");}.ff5_c01102{font-family:ff5_c01102;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01102;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c01102{font-family:ff6_c01102;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01102{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01102{vertical-align:0.000000px;}
.ls3_c01102{letter-spacing:-3.000000px;}
.ls0_c01102{letter-spacing:0.000000px;}
.ls1_c01102{letter-spacing:3.000000px;}
.ls2_c01102{letter-spacing:6.000000px;}
.sc__c01102{text-shadow:none;}
.sc0_c01102{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01102{-webkit-text-stroke:0px transparent;}
.sc0_c01102{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01102{word-spacing:-54.000000px;}
.ws2_c01102{word-spacing:-20.250000px;}
.ws0_c01102{word-spacing:-0.348000px;}
.ws3_c01102{word-spacing:0.000000px;}
._17_c01102{margin-left:-20.982000px;}
._1e_c01102{margin-left:-6.786000px;}
._10_c01102{margin-left:-5.565000px;}
._f_c01102{margin-left:-4.521000px;}
._14_c01102{margin-left:-3.402000px;}
._1a_c01102{margin-left:-2.367000px;}
._e_c01102{margin-left:-1.365000px;}
._d_c01102{width:1.494000px;}
._b_c01102{width:2.592000px;}
._a_c01102{width:3.726000px;}
._9_c01102{width:4.779000px;}
._12_c01102{width:5.922000px;}
._5_c01102{width:7.038000px;}
._7_c01102{width:8.772000px;}
._6_c01102{width:10.098000px;}
._4_c01102{width:12.036000px;}
._15_c01102{width:14.157000px;}
._1f_c01102{width:15.222000px;}
._3_c01102{width:16.356000px;}
._11_c01102{width:18.330000px;}
._19_c01102{width:20.256000px;}
._1b_c01102{width:22.053000px;}
._1d_c01102{width:23.172000px;}
._13_c01102{width:26.436000px;}
._1_c01102{width:28.623000px;}
._c_c01102{width:32.559000px;}
._2_c01102{width:35.322000px;}
._0_c01102{width:45.762000px;}
._16_c01102{width:51.504000px;}
._1c_c01102{width:67.401000px;}
._8_c01102{width:70.317000px;}
._18_c01102{width:195.780000px;}
.fc2_c01102{color:transparent;}
.fc1_c01102{color:rgb(128,128,128);}
.fc0_c01102{color:rgb(0,0,0);}
.fs5_c01102{font-size:48.000000px;}
.fs6_c01102{font-size:63.000000px;}
.fs4_c01102{font-size:69.000000px;}
.fs3_c01102{font-size:78.000000px;}
.fs2_c01102{font-size:81.000000px;}
.fs0_c01102{font-size:87.000000px;}
.fs1_c01102{font-size:102.000000px;}
.y0_c01102{bottom:0.000000px;}
.y26_c01102{bottom:3.105000px;}
.y25_c01102{bottom:7.228357px;}
.y24_c01102{bottom:44.280000px;}
.y23_c01102{bottom:67.530000px;}
.y22_c01102{bottom:92.580000px;}
.y21_c01102{bottom:116.880000px;}
.y20_c01102{bottom:141.180000px;}
.y1f_c01102{bottom:166.080000px;}
.y1e_c01102{bottom:190.380000px;}
.y1d_c01102{bottom:214.980000px;}
.y1c_c01102{bottom:238.980000px;}
.y1b_c01102{bottom:262.980000px;}
.y1a_c01102{bottom:287.580000px;}
.y19_c01102{bottom:312.180000px;}
.y18_c01102{bottom:336.780000px;}
.y17_c01102{bottom:360.780000px;}
.y16_c01102{bottom:385.530000px;}
.y15_c01102{bottom:410.130000px;}
.y14_c01102{bottom:434.430000px;}
.y13_c01102{bottom:458.730000px;}
.y12_c01102{bottom:483.030000px;}
.y11_c01102{bottom:507.030000px;}
.y10_c01102{bottom:531.180000px;}
.yf_c01102{bottom:555.180000px;}
.ye_c01102{bottom:580.830000px;}
.yd_c01102{bottom:603.480000px;}
.yc_c01102{bottom:627.780000px;}
.yb_c01102{bottom:652.380000px;}
.ya_c01102{bottom:676.980000px;}
.y9_c01102{bottom:700.680000px;}
.y8_c01102{bottom:725.280000px;}
.y7_c01102{bottom:750.930000px;}
.y6_c01102{bottom:774.330000px;}
.y5_c01102{bottom:800.280000px;}
.y4_c01102{bottom:822.930000px;}
.y3_c01102{bottom:847.230000px;}
.y2_c01102{bottom:871.830000px;}
.y1_c01102{bottom:906.480000px;}
.h4_c01102{height:13.200074px;}
.h5_c01102{height:43.804688px;}
.h3_c01102{height:79.497070px;}
.h2_c01102{height:83.226000px;}
.h1_c01102{height:100.057617px;}
.h0_c01102{height:968.250000px;}
.w2_c01102{width:104.875500px;}
.w1_c01102{width:659.250000px;}
.w0_c01102{width:659.325000px;}
.x0_c01102{left:0.000000px;}
.x1_c01102{left:37.500000px;}
.x2_c01102{left:38.550000px;}
.x3_c01102{left:39.750000px;}
.x4_c01102{left:41.100000px;}
.x5_c01102{left:42.750000px;}
.x7_c01102{left:43.800000px;}
.x6_c01102{left:44.850000px;}
.x8_c01102{left:45.900000px;}
.x9_c01102{left:69.750000px;}
.xb_c01102{left:281.476730px;}
.xa_c01102{left:515.700000px;}
@media print{
.v0_c01102{vertical-align:0.000000pt;}
.ls3_c01102{letter-spacing:-2.666667pt;}
.ls0_c01102{letter-spacing:0.000000pt;}
.ls1_c01102{letter-spacing:2.666667pt;}
.ls2_c01102{letter-spacing:5.333333pt;}
.ws1_c01102{word-spacing:-48.000000pt;}
.ws2_c01102{word-spacing:-18.000000pt;}
.ws0_c01102{word-spacing:-0.309333pt;}
.ws3_c01102{word-spacing:0.000000pt;}
._17_c01102{margin-left:-18.650667pt;}
._1e_c01102{margin-left:-6.032000pt;}
._10_c01102{margin-left:-4.946667pt;}
._f_c01102{margin-left:-4.018667pt;}
._14_c01102{margin-left:-3.024000pt;}
._1a_c01102{margin-left:-2.104000pt;}
._e_c01102{margin-left:-1.213333pt;}
._d_c01102{width:1.328000pt;}
._b_c01102{width:2.304000pt;}
._a_c01102{width:3.312000pt;}
._9_c01102{width:4.248000pt;}
._12_c01102{width:5.264000pt;}
._5_c01102{width:6.256000pt;}
._7_c01102{width:7.797333pt;}
._6_c01102{width:8.976000pt;}
._4_c01102{width:10.698667pt;}
._15_c01102{width:12.584000pt;}
._1f_c01102{width:13.530667pt;}
._3_c01102{width:14.538667pt;}
._11_c01102{width:16.293333pt;}
._19_c01102{width:18.005333pt;}
._1b_c01102{width:19.602667pt;}
._1d_c01102{width:20.597333pt;}
._13_c01102{width:23.498667pt;}
._1_c01102{width:25.442667pt;}
._c_c01102{width:28.941333pt;}
._2_c01102{width:31.397333pt;}
._0_c01102{width:40.677333pt;}
._16_c01102{width:45.781333pt;}
._1c_c01102{width:59.912000pt;}
._8_c01102{width:62.504000pt;}
._18_c01102{width:174.026667pt;}
.fs5_c01102{font-size:42.666667pt;}
.fs6_c01102{font-size:56.000000pt;}
.fs4_c01102{font-size:61.333333pt;}
.fs3_c01102{font-size:69.333333pt;}
.fs2_c01102{font-size:72.000000pt;}
.fs0_c01102{font-size:77.333333pt;}
.fs1_c01102{font-size:90.666667pt;}
.y0_c01102{bottom:0.000000pt;}
.y26_c01102{bottom:2.760000pt;}
.y25_c01102{bottom:6.425206pt;}
.y24_c01102{bottom:39.360000pt;}
.y23_c01102{bottom:60.026667pt;}
.y22_c01102{bottom:82.293333pt;}
.y21_c01102{bottom:103.893333pt;}
.y20_c01102{bottom:125.493333pt;}
.y1f_c01102{bottom:147.626667pt;}
.y1e_c01102{bottom:169.226667pt;}
.y1d_c01102{bottom:191.093333pt;}
.y1c_c01102{bottom:212.426667pt;}
.y1b_c01102{bottom:233.760000pt;}
.y1a_c01102{bottom:255.626667pt;}
.y19_c01102{bottom:277.493333pt;}
.y18_c01102{bottom:299.360000pt;}
.y17_c01102{bottom:320.693333pt;}
.y16_c01102{bottom:342.693333pt;}
.y15_c01102{bottom:364.560000pt;}
.y14_c01102{bottom:386.160000pt;}
.y13_c01102{bottom:407.760000pt;}
.y12_c01102{bottom:429.360000pt;}
.y11_c01102{bottom:450.693333pt;}
.y10_c01102{bottom:472.160000pt;}
.yf_c01102{bottom:493.493333pt;}
.ye_c01102{bottom:516.293333pt;}
.yd_c01102{bottom:536.426667pt;}
.yc_c01102{bottom:558.026667pt;}
.yb_c01102{bottom:579.893333pt;}
.ya_c01102{bottom:601.760000pt;}
.y9_c01102{bottom:622.826667pt;}
.y8_c01102{bottom:644.693333pt;}
.y7_c01102{bottom:667.493333pt;}
.y6_c01102{bottom:688.293333pt;}
.y5_c01102{bottom:711.360000pt;}
.y4_c01102{bottom:731.493333pt;}
.y3_c01102{bottom:753.093333pt;}
.y2_c01102{bottom:774.960000pt;}
.y1_c01102{bottom:805.760000pt;}
.h4_c01102{height:11.733399pt;}
.h5_c01102{height:38.937500pt;}
.h3_c01102{height:70.664062pt;}
.h2_c01102{height:73.978667pt;}
.h1_c01102{height:88.940104pt;}
.h0_c01102{height:860.666667pt;}
.w2_c01102{width:93.222667pt;}
.w1_c01102{width:586.000000pt;}
.w0_c01102{width:586.066667pt;}
.x0_c01102{left:0.000000pt;}
.x1_c01102{left:33.333333pt;}
.x2_c01102{left:34.266667pt;}
.x3_c01102{left:35.333333pt;}
.x4_c01102{left:36.533333pt;}
.x5_c01102{left:38.000000pt;}
.x7_c01102{left:38.933333pt;}
.x6_c01102{left:39.866667pt;}
.x8_c01102{left:40.800000pt;}
.x9_c01102{left:62.000000pt;}
.xb_c01102{left:250.201538pt;}
.xa_c01102{left:458.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_c01103 {
    display:none;
  }
  .loading-indicator_c01103.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01103 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01103 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01103" -> "#page-container .classname_c01103")
 */
.pf_c01103 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01103 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01103.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01103 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01103 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01103 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01103 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01103 {overflow:visible;}
  }
}
.c_c01103 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01103 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01103:after { /* webkit #35443 */
  content: '';
}
.t_c01103:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01103 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01103 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01103 { /* info for Javascript */
  display:none;
}
.l_c01103 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01103 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01103 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01103:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01103{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01103;src:url('chunks/assets/font_5ec502c935669bf82602724b.woff2')format("woff");}.ff1_c01103{font-family:ff1_c01103;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01103;src:url('chunks/assets/font_aac9a79755e5e71fb6b567aa.woff2')format("woff");}.ff2_c01103{font-family:ff2_c01103;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01103;src:url('chunks/assets/font_828f60888f3ed1af23eb789c.woff2')format("woff");}.ff3_c01103{font-family:ff3_c01103;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01103;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff4_c01103{font-family:ff4_c01103;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01103;src:url('chunks/assets/font_9d82f9034399caf277829ac7.woff2')format("woff");}.ff5_c01103{font-family:ff5_c01103;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01103;src:url('chunks/assets/font_24c343c35c974718f5624a8f.woff2')format("woff");}.ff6_c01103{font-family:ff6_c01103;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01103;src:url('chunks/assets/font_27c45f48806124a489aae4dc.woff2')format("woff");}.ff7_c01103{font-family:ff7_c01103;line-height:1.437000;font-style:normal;font-weight: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_c01103;src:url('chunks/assets/font_8250cd30089816c615e2a2dd.woff2')format("woff");}.ff8_c01103{font-family:ff8_c01103;line-height:1.437000;font-style:normal;font-weight: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_c01103;src:url('chunks/assets/font_69dd216781fa6392b86de70e.woff2')format("woff");}.ff9_c01103{font-family:ff9_c01103;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c01103;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ffa_c01103{font-family:ffa_c01103;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01103{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01103{vertical-align:0.000000px;}
.ls3_c01103{letter-spacing:0.000000px;}
.ls0_c01103{letter-spacing:0.900000px;}
.ls1_c01103{letter-spacing:1.800000px;}
.ls2_c01103{letter-spacing:1.920000px;}
.sc__c01103{text-shadow:none;}
.sc0_c01103{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01103{-webkit-text-stroke:0px transparent;}
.sc0_c01103{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01103{word-spacing:-59.184000px;}
.ws3_c01103{word-spacing:-40.032000px;}
.ws0_c01103{word-spacing:-19.650000px;}
.ws4_c01103{word-spacing:-17.250000px;}
.ws5_c01103{word-spacing:-16.926000px;}
.ws2_c01103{word-spacing:-14.250000px;}
.ws6_c01103{word-spacing:0.000000px;}
._20_c01103{margin-left:-26.754000px;}
._16_c01103{margin-left:-22.488000px;}
._c_c01103{margin-left:-18.207000px;}
._b_c01103{margin-left:-16.350000px;}
._1d_c01103{margin-left:-14.262000px;}
._1e_c01103{margin-left:-11.628000px;}
._1a_c01103{margin-left:-8.826000px;}
._1b_c01103{margin-left:-7.716000px;}
._e_c01103{margin-left:-6.318000px;}
._9_c01103{margin-left:-5.118000px;}
._a_c01103{margin-left:-3.915000px;}
._7_c01103{margin-left:-2.808000px;}
._8_c01103{margin-left:-1.014000px;}
._2_c01103{width:1.482000px;}
._0_c01103{width:2.808000px;}
._1_c01103{width:4.602000px;}
._5_c01103{width:6.396000px;}
._4_c01103{width:8.346000px;}
._11_c01103{width:9.516000px;}
._d_c01103{width:11.016000px;}
._15_c01103{width:12.591000px;}
._3_c01103{width:13.962000px;}
._6_c01103{width:15.054000px;}
._19_c01103{width:18.612000px;}
._13_c01103{width:19.656000px;}
._10_c01103{width:21.450000px;}
._17_c01103{width:22.632000px;}
._22_c01103{width:23.820000px;}
._18_c01103{width:27.084000px;}
._23_c01103{width:30.168000px;}
._1c_c01103{width:34.596000px;}
._14_c01103{width:35.838000px;}
._12_c01103{width:41.262000px;}
._21_c01103{width:49.140000px;}
._24_c01103{width:272.454000px;}
._1f_c01103{width:389.832000px;}
._f_c01103{width:822.378000px;}
.fc2_c01103{color:transparent;}
.fc1_c01103{color:rgb(128,128,128);}
.fc0_c01103{color:rgb(0,0,0);}
.fs5_c01103{font-size:48.000000px;}
.fs4_c01103{font-size:57.000000px;}
.fs3_c01103{font-size:69.000000px;}
.fs2_c01103{font-size:72.000000px;}
.fs1_c01103{font-size:75.000000px;}
.fs0_c01103{font-size:78.000000px;}
.y0_c01103{bottom:0.000000px;}
.y24_c01103{bottom:3.105000px;}
.y23_c01103{bottom:7.228371px;}
.y22_c01103{bottom:64.815000px;}
.y21_c01103{bottom:87.465000px;}
.y20_c01103{bottom:112.365000px;}
.y1f_c01103{bottom:137.115000px;}
.y1e_c01103{bottom:163.365000px;}
.y1d_c01103{bottom:187.065000px;}
.y1c_c01103{bottom:211.365000px;}
.y1b_c01103{bottom:236.565000px;}
.y1a_c01103{bottom:260.865000px;}
.y19_c01103{bottom:285.315000px;}
.y18_c01103{bottom:312.315000px;}
.y17_c01103{bottom:335.115000px;}
.y16_c01103{bottom:359.115000px;}
.y15_c01103{bottom:383.865000px;}
.y14_c01103{bottom:408.015000px;}
.y13_c01103{bottom:432.465000px;}
.y12_c01103{bottom:456.315000px;}
.y11_c01103{bottom:480.015000px;}
.y10_c01103{bottom:504.015000px;}
.yf_c01103{bottom:527.865000px;}
.ye_c01103{bottom:551.865000px;}
.yd_c01103{bottom:575.865000px;}
.yc_c01103{bottom:599.865000px;}
.yb_c01103{bottom:624.465000px;}
.ya_c01103{bottom:648.465000px;}
.y9_c01103{bottom:672.765000px;}
.y8_c01103{bottom:696.915000px;}
.y7_c01103{bottom:721.215000px;}
.y6_c01103{bottom:745.215000px;}
.y5_c01103{bottom:769.515000px;}
.y4_c01103{bottom:797.265000px;}
.y3_c01103{bottom:817.065000px;}
.y2_c01103{bottom:864.765000px;}
.y1_c01103{bottom:889.965000px;}
.h7_c01103{height:13.200074px;}
.h8_c01103{height:43.804688px;}
.h6_c01103{height:72.312000px;}
.h4_c01103{height:73.571777px;}
.h3_c01103{height:73.608398px;}
.h2_c01103{height:83.226000px;}
.h5_c01103{height:84.269531px;}
.h1_c01103{height:986.250000px;}
.h0_c01103{height:986.325000px;}
.w2_c01103{width:104.875500px;}
.w0_c01103{width:667.425000px;}
.w1_c01103{width:667.500000px;}
.x0_c01103{left:0.000000px;}
.x4_c01103{left:36.750000px;}
.xa_c01103{left:37.800000px;}
.xd_c01103{left:39.600000px;}
.x7_c01103{left:41.850000px;}
.xb_c01103{left:121.500000px;}
.x9_c01103{left:128.250000px;}
.x8_c01103{left:130.050000px;}
.x1_c01103{left:131.550000px;}
.xc_c01103{left:133.350000px;}
.x2_c01103{left:134.400000px;}
.x6_c01103{left:165.450000px;}
.x5_c01103{left:167.400000px;}
.x3_c01103{left:193.050000px;}
.xf_c01103{left:285.526749px;}
.xe_c01103{left:577.500000px;}
@media print{
.v0_c01103{vertical-align:0.000000pt;}
.ls3_c01103{letter-spacing:0.000000pt;}
.ls0_c01103{letter-spacing:0.800000pt;}
.ls1_c01103{letter-spacing:1.600000pt;}
.ls2_c01103{letter-spacing:1.706667pt;}
.ws1_c01103{word-spacing:-52.608000pt;}
.ws3_c01103{word-spacing:-35.584000pt;}
.ws0_c01103{word-spacing:-17.466667pt;}
.ws4_c01103{word-spacing:-15.333333pt;}
.ws5_c01103{word-spacing:-15.045333pt;}
.ws2_c01103{word-spacing:-12.666667pt;}
.ws6_c01103{word-spacing:0.000000pt;}
._20_c01103{margin-left:-23.781333pt;}
._16_c01103{margin-left:-19.989333pt;}
._c_c01103{margin-left:-16.184000pt;}
._b_c01103{margin-left:-14.533333pt;}
._1d_c01103{margin-left:-12.677333pt;}
._1e_c01103{margin-left:-10.336000pt;}
._1a_c01103{margin-left:-7.845333pt;}
._1b_c01103{margin-left:-6.858667pt;}
._e_c01103{margin-left:-5.616000pt;}
._9_c01103{margin-left:-4.549333pt;}
._a_c01103{margin-left:-3.480000pt;}
._7_c01103{margin-left:-2.496000pt;}
._8_c01103{margin-left:-0.901333pt;}
._2_c01103{width:1.317333pt;}
._0_c01103{width:2.496000pt;}
._1_c01103{width:4.090667pt;}
._5_c01103{width:5.685333pt;}
._4_c01103{width:7.418667pt;}
._11_c01103{width:8.458667pt;}
._d_c01103{width:9.792000pt;}
._15_c01103{width:11.192000pt;}
._3_c01103{width:12.410667pt;}
._6_c01103{width:13.381333pt;}
._19_c01103{width:16.544000pt;}
._13_c01103{width:17.472000pt;}
._10_c01103{width:19.066667pt;}
._17_c01103{width:20.117333pt;}
._22_c01103{width:21.173333pt;}
._18_c01103{width:24.074667pt;}
._23_c01103{width:26.816000pt;}
._1c_c01103{width:30.752000pt;}
._14_c01103{width:31.856000pt;}
._12_c01103{width:36.677333pt;}
._21_c01103{width:43.680000pt;}
._24_c01103{width:242.181333pt;}
._1f_c01103{width:346.517333pt;}
._f_c01103{width:731.002667pt;}
.fs5_c01103{font-size:42.666667pt;}
.fs4_c01103{font-size:50.666667pt;}
.fs3_c01103{font-size:61.333333pt;}
.fs2_c01103{font-size:64.000000pt;}
.fs1_c01103{font-size:66.666667pt;}
.fs0_c01103{font-size:69.333333pt;}
.y0_c01103{bottom:0.000000pt;}
.y24_c01103{bottom:2.760000pt;}
.y23_c01103{bottom:6.425219pt;}
.y22_c01103{bottom:57.613333pt;}
.y21_c01103{bottom:77.746667pt;}
.y20_c01103{bottom:99.880000pt;}
.y1f_c01103{bottom:121.880000pt;}
.y1e_c01103{bottom:145.213333pt;}
.y1d_c01103{bottom:166.280000pt;}
.y1c_c01103{bottom:187.880000pt;}
.y1b_c01103{bottom:210.280000pt;}
.y1a_c01103{bottom:231.880000pt;}
.y19_c01103{bottom:253.613333pt;}
.y18_c01103{bottom:277.613333pt;}
.y17_c01103{bottom:297.880000pt;}
.y16_c01103{bottom:319.213333pt;}
.y15_c01103{bottom:341.213333pt;}
.y14_c01103{bottom:362.680000pt;}
.y13_c01103{bottom:384.413333pt;}
.y12_c01103{bottom:405.613333pt;}
.y11_c01103{bottom:426.680000pt;}
.y10_c01103{bottom:448.013333pt;}
.yf_c01103{bottom:469.213333pt;}
.ye_c01103{bottom:490.546667pt;}
.yd_c01103{bottom:511.880000pt;}
.yc_c01103{bottom:533.213333pt;}
.yb_c01103{bottom:555.080000pt;}
.ya_c01103{bottom:576.413333pt;}
.y9_c01103{bottom:598.013333pt;}
.y8_c01103{bottom:619.480000pt;}
.y7_c01103{bottom:641.080000pt;}
.y6_c01103{bottom:662.413333pt;}
.y5_c01103{bottom:684.013333pt;}
.y4_c01103{bottom:708.680000pt;}
.y3_c01103{bottom:726.280000pt;}
.y2_c01103{bottom:768.680000pt;}
.y1_c01103{bottom:791.080000pt;}
.h7_c01103{height:11.733399pt;}
.h8_c01103{height:38.937500pt;}
.h6_c01103{height:64.277333pt;}
.h4_c01103{height:65.397135pt;}
.h3_c01103{height:65.429688pt;}
.h2_c01103{height:73.978667pt;}
.h5_c01103{height:74.906250pt;}
.h1_c01103{height:876.666667pt;}
.h0_c01103{height:876.733333pt;}
.w2_c01103{width:93.222667pt;}
.w0_c01103{width:593.266667pt;}
.w1_c01103{width:593.333333pt;}
.x0_c01103{left:0.000000pt;}
.x4_c01103{left:32.666667pt;}
.xa_c01103{left:33.600000pt;}
.xd_c01103{left:35.200000pt;}
.x7_c01103{left:37.200000pt;}
.xb_c01103{left:108.000000pt;}
.x9_c01103{left:114.000000pt;}
.x8_c01103{left:115.600000pt;}
.x1_c01103{left:116.933333pt;}
.xc_c01103{left:118.533333pt;}
.x2_c01103{left:119.466667pt;}
.x6_c01103{left:147.066667pt;}
.x5_c01103{left:148.800000pt;}
.x3_c01103{left:171.600000pt;}
.xf_c01103{left:253.801554pt;}
.xe_c01103{left:513.333333pt;}
}





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

.ir_c01104:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01104{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01104;src:url('chunks/assets/font_a42ef5e026d3b155993563b1.woff2')format("woff");}.ff1_c01104{font-family:ff1_c01104;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01104;src:url('chunks/assets/font_cacf444f46b560074befb826.woff2')format("woff");}.ff2_c01104{font-family:ff2_c01104;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01104;src:url('chunks/assets/font_785e7e61bd8c74aa5185226a.woff2')format("woff");}.ff3_c01104{font-family:ff3_c01104;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01104;src:url('chunks/assets/font_ebe6c7d821ff285c2f1099bb.woff2')format("woff");}.ff4_c01104{font-family:ff4_c01104;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01104;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff5_c01104{font-family:ff5_c01104;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01104;src:url('chunks/assets/font_5d940212646727c476375df7.woff2')format("woff");}.ff6_c01104{font-family:ff6_c01104;line-height:1.284668;font-style:normal;font-weight: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_c01104;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c01104{font-family:ff7_c01104;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01104{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01104{vertical-align:0.000000px;}
.v1_c01104{vertical-align:160.800000px;}
.ls1_c01104{letter-spacing:0.000000px;}
.ls2_c01104{letter-spacing:3.000000px;}
.ls0_c01104{letter-spacing:31.656000px;}
.sc__c01104{text-shadow:none;}
.sc0_c01104{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01104{-webkit-text-stroke:0px transparent;}
.sc0_c01104{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01104{word-spacing:-71.250000px;}
.ws0_c01104{word-spacing:-16.926000px;}
.ws2_c01104{word-spacing:-15.750000px;}
.ws3_c01104{word-spacing:0.000000px;}
._1f_c01104{margin-left:-21.705000px;}
._13_c01104{margin-left:-18.096000px;}
._1b_c01104{margin-left:-11.700000px;}
._10_c01104{margin-left:-9.126000px;}
._5_c01104{margin-left:-7.488000px;}
._6_c01104{margin-left:-6.474000px;}
._8_c01104{margin-left:-4.446000px;}
._11_c01104{margin-left:-2.730000px;}
._2_c01104{margin-left:-1.716000px;}
._1_c01104{width:1.092000px;}
._0_c01104{width:2.496000px;}
._7_c01104{width:3.510000px;}
._3_c01104{width:4.680000px;}
._d_c01104{width:5.694000px;}
._4_c01104{width:6.708000px;}
._f_c01104{width:7.956000px;}
._15_c01104{width:8.970000px;}
._12_c01104{width:9.984000px;}
._1e_c01104{width:11.367000px;}
._a_c01104{width:12.372000px;}
._19_c01104{width:13.530000px;}
._c_c01104{width:15.588000px;}
._e_c01104{width:18.042000px;}
._9_c01104{width:19.812000px;}
._b_c01104{width:21.498000px;}
._17_c01104{width:24.678000px;}
._14_c01104{width:25.752000px;}
._1a_c01104{width:30.462000px;}
._18_c01104{width:39.078000px;}
._16_c01104{width:59.526000px;}
._20_c01104{width:86.892000px;}
._1c_c01104{width:117.828000px;}
._1d_c01104{width:158.718000px;}
.fc2_c01104{color:transparent;}
.fc1_c01104{color:rgb(128,128,128);}
.fc0_c01104{color:rgb(0,0,0);}
.fs5_c01104{font-size:48.000000px;}
.fs4_c01104{font-size:51.000000px;}
.fs2_c01104{font-size:69.000000px;}
.fs1_c01104{font-size:72.000000px;}
.fs0_c01104{font-size:78.000000px;}
.fs3_c01104{font-size:285.000000px;}
.y0_c01104{bottom:0.000000px;}
.y25_c01104{bottom:3.105000px;}
.y24_c01104{bottom:7.228371px;}
.y23_c01104{bottom:43.665000px;}
.y22_c01104{bottom:65.865000px;}
.y21_c01104{bottom:91.515000px;}
.y20_c01104{bottom:116.115000px;}
.y1e_c01104{bottom:125.565000px;}
.y1f_c01104{bottom:140.865000px;}
.y1d_c01104{bottom:189.765000px;}
.y1c_c01104{bottom:214.665000px;}
.y1b_c01104{bottom:239.265000px;}
.y1a_c01104{bottom:263.265000px;}
.y19_c01104{bottom:287.865000px;}
.y18_c01104{bottom:312.165000px;}
.y17_c01104{bottom:336.465000px;}
.y16_c01104{bottom:360.765000px;}
.y15_c01104{bottom:385.815000px;}
.y14_c01104{bottom:409.815000px;}
.y13_c01104{bottom:433.815000px;}
.y12_c01104{bottom:457.665000px;}
.y11_c01104{bottom:481.965000px;}
.y10_c01104{bottom:506.715000px;}
.yf_c01104{bottom:530.265000px;}
.ye_c01104{bottom:555.165000px;}
.yd_c01104{bottom:578.565000px;}
.yc_c01104{bottom:603.465000px;}
.yb_c01104{bottom:626.865000px;}
.ya_c01104{bottom:651.165000px;}
.y9_c01104{bottom:675.315000px;}
.y8_c01104{bottom:699.615000px;}
.y7_c01104{bottom:723.615000px;}
.y6_c01104{bottom:748.215000px;}
.y5_c01104{bottom:772.215000px;}
.y4_c01104{bottom:796.965000px;}
.y3_c01104{bottom:820.515000px;}
.y2_c01104{bottom:845.415000px;}
.y1_c01104{bottom:869.865000px;}
.h6_c01104{height:13.200074px;}
.h7_c01104{height:43.804688px;}
.h5_c01104{height:51.398438px;}
.h2_c01104{height:83.226000px;}
.h3_c01104{height:91.160156px;}
.h4_c01104{height:279.711914px;}
.h1_c01104{height:966.000000px;}
.h0_c01104{height:966.075000px;}
.w1_c01104{width:104.875500px;}
.w0_c01104{width:657.750000px;}
.x0_c01104{left:0.000000px;}
.xf_c01104{left:35.400000px;}
.xe_c01104{left:37.050000px;}
.xc_c01104{left:38.400000px;}
.xd_c01104{left:39.450000px;}
.xb_c01104{left:40.500000px;}
.xa_c01104{left:41.850000px;}
.x9_c01104{left:43.800000px;}
.x8_c01104{left:45.600000px;}
.x7_c01104{left:47.250000px;}
.x6_c01104{left:49.500000px;}
.x5_c01104{left:51.000000px;}
.x3_c01104{left:54.300000px;}
.x2_c01104{left:55.650000px;}
.x1_c01104{left:56.700000px;}
.x4_c01104{left:58.050000px;}
.x11_c01104{left:280.689240px;}
.x10_c01104{left:502.200000px;}
@media print{
.v0_c01104{vertical-align:0.000000pt;}
.v1_c01104{vertical-align:142.933333pt;}
.ls1_c01104{letter-spacing:0.000000pt;}
.ls2_c01104{letter-spacing:2.666667pt;}
.ls0_c01104{letter-spacing:28.138667pt;}
.ws1_c01104{word-spacing:-63.333333pt;}
.ws0_c01104{word-spacing:-15.045333pt;}
.ws2_c01104{word-spacing:-14.000000pt;}
.ws3_c01104{word-spacing:0.000000pt;}
._1f_c01104{margin-left:-19.293333pt;}
._13_c01104{margin-left:-16.085333pt;}
._1b_c01104{margin-left:-10.400000pt;}
._10_c01104{margin-left:-8.112000pt;}
._5_c01104{margin-left:-6.656000pt;}
._6_c01104{margin-left:-5.754667pt;}
._8_c01104{margin-left:-3.952000pt;}
._11_c01104{margin-left:-2.426667pt;}
._2_c01104{margin-left:-1.525333pt;}
._1_c01104{width:0.970667pt;}
._0_c01104{width:2.218667pt;}
._7_c01104{width:3.120000pt;}
._3_c01104{width:4.160000pt;}
._d_c01104{width:5.061333pt;}
._4_c01104{width:5.962667pt;}
._f_c01104{width:7.072000pt;}
._15_c01104{width:7.973333pt;}
._12_c01104{width:8.874667pt;}
._1e_c01104{width:10.104000pt;}
._a_c01104{width:10.997333pt;}
._19_c01104{width:12.026667pt;}
._c_c01104{width:13.856000pt;}
._e_c01104{width:16.037333pt;}
._9_c01104{width:17.610667pt;}
._b_c01104{width:19.109333pt;}
._17_c01104{width:21.936000pt;}
._14_c01104{width:22.890667pt;}
._1a_c01104{width:27.077333pt;}
._18_c01104{width:34.736000pt;}
._16_c01104{width:52.912000pt;}
._20_c01104{width:77.237333pt;}
._1c_c01104{width:104.736000pt;}
._1d_c01104{width:141.082667pt;}
.fs5_c01104{font-size:42.666667pt;}
.fs4_c01104{font-size:45.333333pt;}
.fs2_c01104{font-size:61.333333pt;}
.fs1_c01104{font-size:64.000000pt;}
.fs0_c01104{font-size:69.333333pt;}
.fs3_c01104{font-size:253.333333pt;}
.y0_c01104{bottom:0.000000pt;}
.y25_c01104{bottom:2.760000pt;}
.y24_c01104{bottom:6.425219pt;}
.y23_c01104{bottom:38.813333pt;}
.y22_c01104{bottom:58.546667pt;}
.y21_c01104{bottom:81.346667pt;}
.y20_c01104{bottom:103.213333pt;}
.y1e_c01104{bottom:111.613333pt;}
.y1f_c01104{bottom:125.213333pt;}
.y1d_c01104{bottom:168.680000pt;}
.y1c_c01104{bottom:190.813333pt;}
.y1b_c01104{bottom:212.680000pt;}
.y1a_c01104{bottom:234.013333pt;}
.y19_c01104{bottom:255.880000pt;}
.y18_c01104{bottom:277.480000pt;}
.y17_c01104{bottom:299.080000pt;}
.y16_c01104{bottom:320.680000pt;}
.y15_c01104{bottom:342.946667pt;}
.y14_c01104{bottom:364.280000pt;}
.y13_c01104{bottom:385.613333pt;}
.y12_c01104{bottom:406.813333pt;}
.y11_c01104{bottom:428.413333pt;}
.y10_c01104{bottom:450.413333pt;}
.yf_c01104{bottom:471.346667pt;}
.ye_c01104{bottom:493.480000pt;}
.yd_c01104{bottom:514.280000pt;}
.yc_c01104{bottom:536.413333pt;}
.yb_c01104{bottom:557.213333pt;}
.ya_c01104{bottom:578.813333pt;}
.y9_c01104{bottom:600.280000pt;}
.y8_c01104{bottom:621.880000pt;}
.y7_c01104{bottom:643.213333pt;}
.y6_c01104{bottom:665.080000pt;}
.y5_c01104{bottom:686.413333pt;}
.y4_c01104{bottom:708.413333pt;}
.y3_c01104{bottom:729.346667pt;}
.y2_c01104{bottom:751.480000pt;}
.y1_c01104{bottom:773.213333pt;}
.h6_c01104{height:11.733399pt;}
.h7_c01104{height:38.937500pt;}
.h5_c01104{height:45.687500pt;}
.h2_c01104{height:73.978667pt;}
.h3_c01104{height:81.031250pt;}
.h4_c01104{height:248.632812pt;}
.h1_c01104{height:858.666667pt;}
.h0_c01104{height:858.733333pt;}
.w1_c01104{width:93.222667pt;}
.w0_c01104{width:584.666667pt;}
.x0_c01104{left:0.000000pt;}
.xf_c01104{left:31.466667pt;}
.xe_c01104{left:32.933333pt;}
.xc_c01104{left:34.133333pt;}
.xd_c01104{left:35.066667pt;}
.xb_c01104{left:36.000000pt;}
.xa_c01104{left:37.200000pt;}
.x9_c01104{left:38.933333pt;}
.x8_c01104{left:40.533333pt;}
.x7_c01104{left:42.000000pt;}
.x6_c01104{left:44.000000pt;}
.x5_c01104{left:45.333333pt;}
.x3_c01104{left:48.266667pt;}
.x2_c01104{left:49.466667pt;}
.x1_c01104{left:50.400000pt;}
.x4_c01104{left:51.600000pt;}
.x11_c01104{left:249.501546pt;}
.x10_c01104{left:446.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_c01105 {
    display:none;
  }
  .loading-indicator_c01105.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01105 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01105 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01105" -> "#page-container .classname_c01105")
 */
.pf_c01105 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01105 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01105.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01105 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01105 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01105 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01105 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01105 {overflow:visible;}
  }
}
.c_c01105 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01105 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01105:after { /* webkit #35443 */
  content: '';
}
.t_c01105:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01105 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01105 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01105 { /* info for Javascript */
  display:none;
}
.l_c01105 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01105 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01105 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01105:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01105{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01105;src:url('chunks/assets/font_1380d5586f5cabca475d9b34.woff2')format("woff");}.ff1_c01105{font-family:ff1_c01105;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01105;src:url('chunks/assets/font_0f8bb8f8fe43fa80e72a4d53.woff2')format("woff");}.ff2_c01105{font-family:ff2_c01105;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01105;src:url('chunks/assets/font_8998bbb6b5971607ecf12945.woff2')format("woff");}.ff3_c01105{font-family:ff3_c01105;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01105;src:url('chunks/assets/font_c5efaa86a1ec14f985e633f0.woff2')format("woff");}.ff4_c01105{font-family:ff4_c01105;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01105;src:url('chunks/assets/font_57ec47141c555901129e850b.woff2')format("woff");}.ff5_c01105{font-family:ff5_c01105;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01105;src:url('chunks/assets/font_61fbf8d19aa3e70ad90a75cf.woff2')format("woff");}.ff6_c01105{font-family:ff6_c01105;line-height:1.284668;font-style:normal;font-weight: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_c01105;src:url('chunks/assets/font_25fafba4dc055a4295cc32ad.woff2')format("woff");}.ff7_c01105{font-family:ff7_c01105;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c01105;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff8_c01105{font-family:ff8_c01105;line-height:1.219238;font-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_c01105{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m0_c01105{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01105{vertical-align:0.000000px;}
.ls4_c01105{letter-spacing:-6.000000px;}
.ls2_c01105{letter-spacing:0.000000px;}
.ls3_c01105{letter-spacing:3.000000px;}
.ls0_c01105{letter-spacing:8.904000px;}
.ls1_c01105{letter-spacing:19.674000px;}
.sc__c01105{text-shadow:none;}
.sc0_c01105{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01105{-webkit-text-stroke:0px transparent;}
.sc0_c01105{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01105{word-spacing:-18.798000px;}
.ws0_c01105{word-spacing:-17.352000px;}
.ws1_c01105{word-spacing:-12.798000px;}
.ws3_c01105{word-spacing:0.000000px;}
._19_c01105{margin-left:-42.198000px;}
._21_c01105{margin-left:-29.172000px;}
._d_c01105{margin-left:-19.242000px;}
._2a_c01105{margin-left:-17.421000px;}
._25_c01105{margin-left:-15.990000px;}
._1b_c01105{margin-left:-14.898000px;}
._28_c01105{margin-left:-13.563000px;}
._26_c01105{margin-left:-11.796000px;}
._29_c01105{margin-left:-10.710000px;}
._18_c01105{margin-left:-9.360000px;}
._9_c01105{margin-left:-6.942000px;}
._e_c01105{margin-left:-5.928000px;}
._8_c01105{margin-left:-4.368000px;}
._11_c01105{margin-left:-2.574000px;}
._b_c01105{margin-left:-1.404000px;}
._4_c01105{width:1.950000px;}
._0_c01105{width:3.432000px;}
._2_c01105{width:4.524000px;}
._1_c01105{width:6.162000px;}
._5_c01105{width:7.800000px;}
._7_c01105{width:8.970000px;}
._c_c01105{width:9.984000px;}
._3_c01105{width:11.466000px;}
._6_c01105{width:13.494000px;}
._a_c01105{width:14.898000px;}
._10_c01105{width:18.486000px;}
._16_c01105{width:19.698000px;}
._15_c01105{width:21.114000px;}
._17_c01105{width:22.608000px;}
._1d_c01105{width:24.186000px;}
._1e_c01105{width:30.576000px;}
._23_c01105{width:33.384000px;}
._12_c01105{width:34.398000px;}
._20_c01105{width:39.468000px;}
._14_c01105{width:40.794000px;}
._f_c01105{width:42.354000px;}
._24_c01105{width:44.322000px;}
._1c_c01105{width:218.166000px;}
._22_c01105{width:234.390000px;}
._13_c01105{width:243.828000px;}
._1a_c01105{width:314.574000px;}
._27_c01105{width:515.244000px;}
._1f_c01105{width:549.900000px;}
.fc2_c01105{color:transparent;}
.fc1_c01105{color:rgb(128,128,128);}
.fc0_c01105{color:rgb(0,0,0);}
.fs5_c01105{font-size:48.000000px;}
.fs1_c01105{font-size:72.000000px;}
.fs0_c01105{font-size:78.000000px;}
.fs4_c01105{font-size:81.000000px;}
.fs2_c01105{font-size:87.000000px;}
.fs3_c01105{font-size:90.000000px;}
.y0_c01105{bottom:0.000000px;}
.y25_c01105{bottom:3.105000px;}
.y24_c01105{bottom:7.228355px;}
.y23_c01105{bottom:52.935000px;}
.y22_c01105{bottom:76.935000px;}
.y21_c01105{bottom:102.285000px;}
.y20_c01105{bottom:126.585000px;}
.y1f_c01105{bottom:151.485000px;}
.y1e_c01105{bottom:176.535000px;}
.y1d_c01105{bottom:201.135000px;}
.y1c_c01105{bottom:226.485000px;}
.y1b_c01105{bottom:250.785000px;}
.y1a_c01105{bottom:275.685000px;}
.y19_c01105{bottom:301.935000px;}
.y18_c01105{bottom:325.035000px;}
.y17_c01105{bottom:349.185000px;}
.y16_c01105{bottom:374.235000px;}
.y15_c01105{bottom:398.535000px;}
.y14_c01105{bottom:423.135000px;}
.y13_c01105{bottom:449.535000px;}
.y12_c01105{bottom:471.135000px;}
.y11_c01105{bottom:495.735000px;}
.y10_c01105{bottom:519.435000px;}
.yf_c01105{bottom:543.585000px;}
.ye_c01105{bottom:567.885000px;}
.yd_c01105{bottom:592.335000px;}
.yc_c01105{bottom:616.485000px;}
.yb_c01105{bottom:640.185000px;}
.ya_c01105{bottom:665.085000px;}
.y9_c01105{bottom:689.085000px;}
.y8_c01105{bottom:713.685000px;}
.y7_c01105{bottom:737.985000px;}
.y6_c01105{bottom:761.985000px;}
.y5_c01105{bottom:786.735000px;}
.y4_c01105{bottom:809.685000px;}
.y3_c01105{bottom:834.285000px;}
.y2_c01105{bottom:858.885000px;}
.y1_c01105{bottom:882.885000px;}
.h9_c01105{height:13.200074px;}
.ha_c01105{height:43.804688px;}
.h2_c01105{height:83.226000px;}
.h3_c01105{height:84.269531px;}
.h5_c01105{height:87.679688px;}
.h6_c01105{height:88.330078px;}
.h4_c01105{height:91.160156px;}
.h8_c01105{height:91.291992px;}
.h7_c01105{height:98.756836px;}
.h1_c01105{height:975.000000px;}
.h0_c01105{height:975.225000px;}
.w2_c01105{width:104.875500px;}
.w0_c01105{width:659.850000px;}
.w1_c01105{width:660.000000px;}
.x0_c01105{left:0.000000px;}
.x2_c01105{left:14.100000px;}
.xb_c01105{left:21.000000px;}
.xd_c01105{left:26.250000px;}
.x8_c01105{left:77.850000px;}
.xa_c01105{left:97.500000px;}
.x1_c01105{left:99.150000px;}
.x3_c01105{left:103.500000px;}
.x4_c01105{left:104.550000px;}
.x5_c01105{left:106.350000px;}
.x9_c01105{left:108.000000px;}
.xc_c01105{left:109.050000px;}
.xf_c01105{left:111.600000px;}
.x10_c01105{left:113.100000px;}
.x11_c01105{left:114.300000px;}
.xe_c01105{left:150.900000px;}
.x6_c01105{left:224.400000px;}
.x7_c01105{left:234.600000px;}
.x13_c01105{left:281.739258px;}
.x12_c01105{left:589.200000px;}
@media print{
.v0_c01105{vertical-align:0.000000pt;}
.ls4_c01105{letter-spacing:-5.333333pt;}
.ls2_c01105{letter-spacing:0.000000pt;}
.ls3_c01105{letter-spacing:2.666667pt;}
.ls0_c01105{letter-spacing:7.914667pt;}
.ls1_c01105{letter-spacing:17.488000pt;}
.ws2_c01105{word-spacing:-16.709333pt;}
.ws0_c01105{word-spacing:-15.424000pt;}
.ws1_c01105{word-spacing:-11.376000pt;}
.ws3_c01105{word-spacing:0.000000pt;}
._19_c01105{margin-left:-37.509333pt;}
._21_c01105{margin-left:-25.930667pt;}
._d_c01105{margin-left:-17.104000pt;}
._2a_c01105{margin-left:-15.485333pt;}
._25_c01105{margin-left:-14.213333pt;}
._1b_c01105{margin-left:-13.242667pt;}
._28_c01105{margin-left:-12.056000pt;}
._26_c01105{margin-left:-10.485333pt;}
._29_c01105{margin-left:-9.520000pt;}
._18_c01105{margin-left:-8.320000pt;}
._9_c01105{margin-left:-6.170667pt;}
._e_c01105{margin-left:-5.269333pt;}
._8_c01105{margin-left:-3.882667pt;}
._11_c01105{margin-left:-2.288000pt;}
._b_c01105{margin-left:-1.248000pt;}
._4_c01105{width:1.733333pt;}
._0_c01105{width:3.050667pt;}
._2_c01105{width:4.021333pt;}
._1_c01105{width:5.477333pt;}
._5_c01105{width:6.933333pt;}
._7_c01105{width:7.973333pt;}
._c_c01105{width:8.874667pt;}
._3_c01105{width:10.192000pt;}
._6_c01105{width:11.994667pt;}
._a_c01105{width:13.242667pt;}
._10_c01105{width:16.432000pt;}
._16_c01105{width:17.509333pt;}
._15_c01105{width:18.768000pt;}
._17_c01105{width:20.096000pt;}
._1d_c01105{width:21.498667pt;}
._1e_c01105{width:27.178667pt;}
._23_c01105{width:29.674667pt;}
._12_c01105{width:30.576000pt;}
._20_c01105{width:35.082667pt;}
._14_c01105{width:36.261333pt;}
._f_c01105{width:37.648000pt;}
._24_c01105{width:39.397333pt;}
._1c_c01105{width:193.925333pt;}
._22_c01105{width:208.346667pt;}
._13_c01105{width:216.736000pt;}
._1a_c01105{width:279.621333pt;}
._27_c01105{width:457.994667pt;}
._1f_c01105{width:488.800000pt;}
.fs5_c01105{font-size:42.666667pt;}
.fs1_c01105{font-size:64.000000pt;}
.fs0_c01105{font-size:69.333333pt;}
.fs4_c01105{font-size:72.000000pt;}
.fs2_c01105{font-size:77.333333pt;}
.fs3_c01105{font-size:80.000000pt;}
.y0_c01105{bottom:0.000000pt;}
.y25_c01105{bottom:2.760000pt;}
.y24_c01105{bottom:6.425204pt;}
.y23_c01105{bottom:47.053333pt;}
.y22_c01105{bottom:68.386667pt;}
.y21_c01105{bottom:90.920000pt;}
.y20_c01105{bottom:112.520000pt;}
.y1f_c01105{bottom:134.653333pt;}
.y1e_c01105{bottom:156.920000pt;}
.y1d_c01105{bottom:178.786667pt;}
.y1c_c01105{bottom:201.320000pt;}
.y1b_c01105{bottom:222.920000pt;}
.y1a_c01105{bottom:245.053333pt;}
.y19_c01105{bottom:268.386667pt;}
.y18_c01105{bottom:288.920000pt;}
.y17_c01105{bottom:310.386667pt;}
.y16_c01105{bottom:332.653333pt;}
.y15_c01105{bottom:354.253333pt;}
.y14_c01105{bottom:376.120000pt;}
.y13_c01105{bottom:399.586667pt;}
.y12_c01105{bottom:418.786667pt;}
.y11_c01105{bottom:440.653333pt;}
.y10_c01105{bottom:461.720000pt;}
.yf_c01105{bottom:483.186667pt;}
.ye_c01105{bottom:504.786667pt;}
.yd_c01105{bottom:526.520000pt;}
.yc_c01105{bottom:547.986667pt;}
.yb_c01105{bottom:569.053333pt;}
.ya_c01105{bottom:591.186667pt;}
.y9_c01105{bottom:612.520000pt;}
.y8_c01105{bottom:634.386667pt;}
.y7_c01105{bottom:655.986667pt;}
.y6_c01105{bottom:677.320000pt;}
.y5_c01105{bottom:699.320000pt;}
.y4_c01105{bottom:719.720000pt;}
.y3_c01105{bottom:741.586667pt;}
.y2_c01105{bottom:763.453333pt;}
.y1_c01105{bottom:784.786667pt;}
.h9_c01105{height:11.733399pt;}
.ha_c01105{height:38.937500pt;}
.h2_c01105{height:73.978667pt;}
.h3_c01105{height:74.906250pt;}
.h5_c01105{height:77.937500pt;}
.h6_c01105{height:78.515625pt;}
.h4_c01105{height:81.031250pt;}
.h8_c01105{height:81.148438pt;}
.h7_c01105{height:87.783854pt;}
.h1_c01105{height:866.666667pt;}
.h0_c01105{height:866.866667pt;}
.w2_c01105{width:93.222667pt;}
.w0_c01105{width:586.533333pt;}
.w1_c01105{width:586.666667pt;}
.x0_c01105{left:0.000000pt;}
.x2_c01105{left:12.533333pt;}
.xb_c01105{left:18.666667pt;}
.xd_c01105{left:23.333333pt;}
.x8_c01105{left:69.200000pt;}
.xa_c01105{left:86.666667pt;}
.x1_c01105{left:88.133333pt;}
.x3_c01105{left:92.000000pt;}
.x4_c01105{left:92.933333pt;}
.x5_c01105{left:94.533333pt;}
.x9_c01105{left:96.000000pt;}
.xc_c01105{left:96.933333pt;}
.xf_c01105{left:99.200000pt;}
.x10_c01105{left:100.533333pt;}
.x11_c01105{left:101.600000pt;}
.xe_c01105{left:134.133333pt;}
.x6_c01105{left:199.466667pt;}
.x7_c01105{left:208.533333pt;}
.x13_c01105{left:250.434896pt;}
.x12_c01105{left:523.733333pt;}
}





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

.ir_c01106:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01106{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01106;src:url('chunks/assets/font_3617dff0f910e524fd0b9a5b.woff2')format("woff");}.ff1_c01106{font-family:ff1_c01106;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01106;src:url('chunks/assets/font_48fdb8f058ad73131cada9e3.woff2')format("woff");}.ff2_c01106{font-family:ff2_c01106;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01106;src:url('chunks/assets/font_b9ad6c7d2b2c238a543ccf9c.woff2')format("woff");}.ff3_c01106{font-family:ff3_c01106;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01106;src:url('chunks/assets/font_a3ead8d0c59106705e4f7551.woff2')format("woff");}.ff4_c01106{font-family:ff4_c01106;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01106;src:url('chunks/assets/font_59c0857028b50e769f5925be.woff2')format("woff");}.ff5_c01106{font-family:ff5_c01106;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01106;src:url('chunks/assets/font_9e5622299aaad3fde84b5c92.woff2')format("woff");}.ff6_c01106{font-family:ff6_c01106;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01106;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c01106{font-family:ff7_c01106;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01106{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01106{vertical-align:0.000000px;}
.v1_c01106{vertical-align:156.000000px;}
.ls2_c01106{letter-spacing:0.000000px;}
.ls0_c01106{letter-spacing:3.000000px;}
.ls1_c01106{letter-spacing:6.000000px;}
.sc__c01106{text-shadow:none;}
.sc0_c01106{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01106{-webkit-text-stroke:0px transparent;}
.sc0_c01106{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c01106{word-spacing:-80.100000px;}
.ws0_c01106{word-spacing:-38.250000px;}
.ws4_c01106{word-spacing:-21.000000px;}
.ws2_c01106{word-spacing:-20.250000px;}
.ws1_c01106{word-spacing:-17.352000px;}
.ws5_c01106{word-spacing:0.000000px;}
._a_c01106{margin-left:-20.502000px;}
._d_c01106{margin-left:-18.936000px;}
._6_c01106{margin-left:-15.708000px;}
._20_c01106{margin-left:-14.517000px;}
._8_c01106{margin-left:-11.730000px;}
._9_c01106{margin-left:-9.894000px;}
._10_c01106{margin-left:-8.676000px;}
._3_c01106{margin-left:-7.446000px;}
._7_c01106{margin-left:-5.406000px;}
._5_c01106{margin-left:-4.182000px;}
._4_c01106{margin-left:-2.856000px;}
._f_c01106{margin-left:-1.398000px;}
._2_c01106{width:1.020000px;}
._1_c01106{width:2.652000px;}
._0_c01106{width:3.774000px;}
._e_c01106{width:4.998000px;}
._15_c01106{width:6.093000px;}
._14_c01106{width:7.407000px;}
._17_c01106{width:8.532000px;}
._11_c01106{width:9.624000px;}
._1c_c01106{width:10.821000px;}
._16_c01106{width:11.874000px;}
._1b_c01106{width:14.022000px;}
._13_c01106{width:15.816000px;}
._c_c01106{width:17.442000px;}
._1f_c01106{width:18.798000px;}
._18_c01106{width:22.812000px;}
._19_c01106{width:23.922000px;}
._1d_c01106{width:32.106000px;}
._12_c01106{width:35.784000px;}
._1a_c01106{width:40.074000px;}
._23_c01106{width:46.143000px;}
._b_c01106{width:113.628000px;}
._1e_c01106{width:148.023000px;}
._22_c01106{width:192.393000px;}
._21_c01106{width:1128.399000px;}
.fc2_c01106{color:transparent;}
.fc1_c01106{color:rgb(128,128,128);}
.fc0_c01106{color:rgb(0,0,0);}
.fs8_c01106{font-size:48.000000px;}
.fs4_c01106{font-size:57.000000px;}
.fs2_c01106{font-size:72.000000px;}
.fs5_c01106{font-size:78.000000px;}
.fs3_c01106{font-size:81.000000px;}
.fs7_c01106{font-size:84.000000px;}
.fs0_c01106{font-size:102.000000px;}
.fs1_c01106{font-size:129.000000px;}
.fs6_c01106{font-size:300.000000px;}
.y0_c01106{bottom:0.000000px;}
.y26_c01106{bottom:3.105000px;}
.y25_c01106{bottom:7.228369px;}
.y24_c01106{bottom:57.720000px;}
.y22_c01106{bottom:67.920000px;}
.y23_c01106{bottom:82.020000px;}
.y21_c01106{bottom:131.970000px;}
.y20_c01106{bottom:155.970000px;}
.y1f_c01106{bottom:180.570000px;}
.y1e_c01106{bottom:204.570000px;}
.y1d_c01106{bottom:229.470000px;}
.y1c_c01106{bottom:254.070000px;}
.y1b_c01106{bottom:278.370000px;}
.y1a_c01106{bottom:302.970000px;}
.y19_c01106{bottom:327.270000px;}
.y18_c01106{bottom:351.570000px;}
.y17_c01106{bottom:375.870000px;}
.y16_c01106{bottom:400.170000px;}
.y15_c01106{bottom:424.470000px;}
.y14_c01106{bottom:449.220000px;}
.y13_c01106{bottom:472.470000px;}
.y12_c01106{bottom:496.470000px;}
.y11_c01106{bottom:521.370000px;}
.y10_c01106{bottom:545.370000px;}
.yf_c01106{bottom:569.070000px;}
.ye_c01106{bottom:592.620000px;}
.yd_c01106{bottom:617.220000px;}
.yc_c01106{bottom:640.920000px;}
.yb_c01106{bottom:664.770000px;}
.ya_c01106{bottom:688.470000px;}
.y9_c01106{bottom:712.770000px;}
.y8_c01106{bottom:737.070000px;}
.y7_c01106{bottom:761.070000px;}
.y6_c01106{bottom:785.370000px;}
.y5_c01106{bottom:809.370000px;}
.y4_c01106{bottom:833.970000px;}
.y3_c01106{bottom:857.820000px;}
.y2_c01106{bottom:882.270000px;}
.y1_c01106{bottom:916.020000px;}
.h9_c01106{height:13.200073px;}
.ha_c01106{height:43.804688px;}
.h5_c01106{height:79.497070px;}
.h4_c01106{height:84.269531px;}
.h8_c01106{height:84.656250px;}
.h3_c01106{height:91.160156px;}
.h6_c01106{height:98.756836px;}
.h2_c01106{height:126.543457px;}
.h7_c01106{height:320.100000px;}
.h1_c01106{height:986.250000px;}
.h0_c01106{height:986.550000px;}
.w1_c01106{width:104.875500px;}
.w0_c01106{width:672.000000px;}
.x0_c01106{left:0.000000px;}
.x2_c01106{left:30.000000px;}
.x3_c01106{left:32.100000px;}
.x4_c01106{left:33.750000px;}
.x5_c01106{left:34.800000px;}
.x6_c01106{left:36.000000px;}
.x7_c01106{left:37.350000px;}
.x8_c01106{left:38.400000px;}
.x9_c01106{left:39.450000px;}
.xa_c01106{left:40.800000px;}
.x1_c01106{left:42.900000px;}
.xb_c01106{left:44.100000px;}
.xc_c01106{left:45.450000px;}
.xe_c01106{left:46.500000px;}
.x10_c01106{left:48.600000px;}
.xd_c01106{left:70.500000px;}
.x11_c01106{left:85.350000px;}
.xf_c01106{left:86.400000px;}
.x13_c01106{left:287.814240px;}
.x12_c01106{left:491.700000px;}
@media print{
.v0_c01106{vertical-align:0.000000pt;}
.v1_c01106{vertical-align:138.666667pt;}
.ls2_c01106{letter-spacing:0.000000pt;}
.ls0_c01106{letter-spacing:2.666667pt;}
.ls1_c01106{letter-spacing:5.333333pt;}
.ws3_c01106{word-spacing:-71.200000pt;}
.ws0_c01106{word-spacing:-34.000000pt;}
.ws4_c01106{word-spacing:-18.666667pt;}
.ws2_c01106{word-spacing:-18.000000pt;}
.ws1_c01106{word-spacing:-15.424000pt;}
.ws5_c01106{word-spacing:0.000000pt;}
._a_c01106{margin-left:-18.224000pt;}
._d_c01106{margin-left:-16.832000pt;}
._6_c01106{margin-left:-13.962667pt;}
._20_c01106{margin-left:-12.904000pt;}
._8_c01106{margin-left:-10.426667pt;}
._9_c01106{margin-left:-8.794667pt;}
._10_c01106{margin-left:-7.712000pt;}
._3_c01106{margin-left:-6.618667pt;}
._7_c01106{margin-left:-4.805333pt;}
._5_c01106{margin-left:-3.717333pt;}
._4_c01106{margin-left:-2.538667pt;}
._f_c01106{margin-left:-1.242667pt;}
._2_c01106{width:0.906667pt;}
._1_c01106{width:2.357333pt;}
._0_c01106{width:3.354667pt;}
._e_c01106{width:4.442667pt;}
._15_c01106{width:5.416000pt;}
._14_c01106{width:6.584000pt;}
._17_c01106{width:7.584000pt;}
._11_c01106{width:8.554667pt;}
._1c_c01106{width:9.618667pt;}
._16_c01106{width:10.554667pt;}
._1b_c01106{width:12.464000pt;}
._13_c01106{width:14.058667pt;}
._c_c01106{width:15.504000pt;}
._1f_c01106{width:16.709333pt;}
._18_c01106{width:20.277333pt;}
._19_c01106{width:21.264000pt;}
._1d_c01106{width:28.538667pt;}
._12_c01106{width:31.808000pt;}
._1a_c01106{width:35.621333pt;}
._23_c01106{width:41.016000pt;}
._b_c01106{width:101.002667pt;}
._1e_c01106{width:131.576000pt;}
._22_c01106{width:171.016000pt;}
._21_c01106{width:1003.021333pt;}
.fs8_c01106{font-size:42.666667pt;}
.fs4_c01106{font-size:50.666667pt;}
.fs2_c01106{font-size:64.000000pt;}
.fs5_c01106{font-size:69.333333pt;}
.fs3_c01106{font-size:72.000000pt;}
.fs7_c01106{font-size:74.666667pt;}
.fs0_c01106{font-size:90.666667pt;}
.fs1_c01106{font-size:114.666667pt;}
.fs6_c01106{font-size:266.666667pt;}
.y0_c01106{bottom:0.000000pt;}
.y26_c01106{bottom:2.760000pt;}
.y25_c01106{bottom:6.425217pt;}
.y24_c01106{bottom:51.306667pt;}
.y22_c01106{bottom:60.373333pt;}
.y23_c01106{bottom:72.906667pt;}
.y21_c01106{bottom:117.306667pt;}
.y20_c01106{bottom:138.640000pt;}
.y1f_c01106{bottom:160.506667pt;}
.y1e_c01106{bottom:181.840000pt;}
.y1d_c01106{bottom:203.973333pt;}
.y1c_c01106{bottom:225.840000pt;}
.y1b_c01106{bottom:247.440000pt;}
.y1a_c01106{bottom:269.306667pt;}
.y19_c01106{bottom:290.906667pt;}
.y18_c01106{bottom:312.506667pt;}
.y17_c01106{bottom:334.106667pt;}
.y16_c01106{bottom:355.706667pt;}
.y15_c01106{bottom:377.306667pt;}
.y14_c01106{bottom:399.306667pt;}
.y13_c01106{bottom:419.973333pt;}
.y12_c01106{bottom:441.306667pt;}
.y11_c01106{bottom:463.440000pt;}
.y10_c01106{bottom:484.773333pt;}
.yf_c01106{bottom:505.840000pt;}
.ye_c01106{bottom:526.773333pt;}
.yd_c01106{bottom:548.640000pt;}
.yc_c01106{bottom:569.706667pt;}
.yb_c01106{bottom:590.906667pt;}
.ya_c01106{bottom:611.973333pt;}
.y9_c01106{bottom:633.573333pt;}
.y8_c01106{bottom:655.173333pt;}
.y7_c01106{bottom:676.506667pt;}
.y6_c01106{bottom:698.106667pt;}
.y5_c01106{bottom:719.440000pt;}
.y4_c01106{bottom:741.306667pt;}
.y3_c01106{bottom:762.506667pt;}
.y2_c01106{bottom:784.240000pt;}
.y1_c01106{bottom:814.240000pt;}
.h9_c01106{height:11.733399pt;}
.ha_c01106{height:38.937500pt;}
.h5_c01106{height:70.664062pt;}
.h4_c01106{height:74.906250pt;}
.h8_c01106{height:75.250000pt;}
.h3_c01106{height:81.031250pt;}
.h6_c01106{height:87.783854pt;}
.h2_c01106{height:112.483073pt;}
.h7_c01106{height:284.533333pt;}
.h1_c01106{height:876.666667pt;}
.h0_c01106{height:876.933333pt;}
.w1_c01106{width:93.222667pt;}
.w0_c01106{width:597.333333pt;}
.x0_c01106{left:0.000000pt;}
.x2_c01106{left:26.666667pt;}
.x3_c01106{left:28.533333pt;}
.x4_c01106{left:30.000000pt;}
.x5_c01106{left:30.933333pt;}
.x6_c01106{left:32.000000pt;}
.x7_c01106{left:33.200000pt;}
.x8_c01106{left:34.133333pt;}
.x9_c01106{left:35.066667pt;}
.xa_c01106{left:36.266667pt;}
.x1_c01106{left:38.133333pt;}
.xb_c01106{left:39.200000pt;}
.xc_c01106{left:40.400000pt;}
.xe_c01106{left:41.333333pt;}
.x10_c01106{left:43.200000pt;}
.xd_c01106{left:62.666667pt;}
.x11_c01106{left:75.866667pt;}
.xf_c01106{left:76.800000pt;}
.x13_c01106{left:255.834880pt;}
.x12_c01106{left:437.066667pt;}
}





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

.ir_c01107:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01107{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01107;src:url('chunks/assets/font_6514290f4ea0f541ea2ac296.woff2')format("woff");}.ff1_c01107{font-family:ff1_c01107;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01107;src:url('chunks/assets/font_70ac207846dc12fe2ba563e7.woff2')format("woff");}.ff2_c01107{font-family:ff2_c01107;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01107;src:url('chunks/assets/font_602cc8704c1fb482845e61f1.woff2')format("woff");}.ff3_c01107{font-family:ff3_c01107;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01107;src:url('chunks/assets/font_8a00b7e0a23022b3c1f5e21d.woff2')format("woff");}.ff4_c01107{font-family:ff4_c01107;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01107;src:url('chunks/assets/font_3dd6ec3d9b89434383902eea.woff2')format("woff");}.ff5_c01107{font-family:ff5_c01107;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01107;src:url('chunks/assets/font_9ca847f0e15d7dee8aa1990e.woff2')format("woff");}.ff6_c01107{font-family:ff6_c01107;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01107;src:url('chunks/assets/font_ae7712c27730f736a7de0206.woff2')format("woff");}.ff7_c01107{font-family:ff7_c01107;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c01107;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff8_c01107{font-family:ff8_c01107;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01107{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c01107{vertical-align:-84.600000px;}
.v0_c01107{vertical-align:0.000000px;}
.ls5_c01107{letter-spacing:0.000000px;}
.ls6_c01107{letter-spacing:3.000000px;}
.ls2_c01107{letter-spacing:5.148000px;}
.ls0_c01107{letter-spacing:33.300000px;}
.ls1_c01107{letter-spacing:39.900000px;}
.ls4_c01107{letter-spacing:47.586000px;}
.ls3_c01107{letter-spacing:245.586000px;}
.sc__c01107{text-shadow:none;}
.sc0_c01107{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01107{-webkit-text-stroke:0px transparent;}
.sc0_c01107{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01107{word-spacing:-59.184000px;}
.ws1_c01107{word-spacing:-21.000000px;}
.ws2_c01107{word-spacing:0.000000px;}
._25_c01107{margin-left:-63.000000px;}
._21_c01107{margin-left:-23.247000px;}
._19_c01107{margin-left:-19.521000px;}
._18_c01107{margin-left:-17.982000px;}
._23_c01107{margin-left:-15.600000px;}
._24_c01107{margin-left:-13.800000px;}
._20_c01107{margin-left:-12.636000px;}
._1c_c01107{margin-left:-10.692000px;}
._16_c01107{margin-left:-8.748000px;}
._1e_c01107{margin-left:-7.440000px;}
._14_c01107{margin-left:-6.237000px;}
._7_c01107{margin-left:-4.212000px;}
._9_c01107{margin-left:-2.349000px;}
._6_c01107{margin-left:-1.215000px;}
._c_c01107{width:1.053000px;}
._4_c01107{width:2.187000px;}
._3_c01107{width:3.564000px;}
._2_c01107{width:5.427000px;}
._5_c01107{width:6.561000px;}
._1_c01107{width:8.100000px;}
._8_c01107{width:9.639000px;}
._0_c01107{width:10.773000px;}
._e_c01107{width:12.717000px;}
._f_c01107{width:14.661000px;}
._11_c01107{width:15.876000px;}
._b_c01107{width:18.387000px;}
._13_c01107{width:22.599000px;}
._1a_c01107{width:25.272000px;}
._17_c01107{width:27.540000px;}
._10_c01107{width:34.749000px;}
._d_c01107{width:37.746000px;}
._26_c01107{width:39.177000px;}
._27_c01107{width:41.850000px;}
._12_c01107{width:54.432000px;}
._22_c01107{width:210.762000px;}
._1b_c01107{width:228.582000px;}
._1f_c01107{width:256.041000px;}
._28_c01107{width:259.332000px;}
._a_c01107{width:392.850000px;}
._1d_c01107{width:409.860000px;}
._15_c01107{width:613.989000px;}
.fc2_c01107{color:transparent;}
.fc1_c01107{color:rgb(128,128,128);}
.fc0_c01107{color:rgb(0,0,0);}
.fs4_c01107{font-size:42.000000px;}
.fs9_c01107{font-size:48.000000px;}
.fs3_c01107{font-size:51.000000px;}
.fs7_c01107{font-size:54.000000px;}
.fs6_c01107{font-size:60.000000px;}
.fs2_c01107{font-size:72.000000px;}
.fs5_c01107{font-size:78.000000px;}
.fs0_c01107{font-size:81.000000px;}
.fs8_c01107{font-size:84.000000px;}
.fs1_c01107{font-size:210.000000px;}
.y0_c01107{bottom:0.000000px;}
.y24_c01107{bottom:3.105000px;}
.y23_c01107{bottom:7.228355px;}
.y22_c01107{bottom:91.035000px;}
.y21_c01107{bottom:116.985000px;}
.y20_c01107{bottom:141.735000px;}
.y1f_c01107{bottom:166.335000px;}
.y1e_c01107{bottom:190.635000px;}
.y1d_c01107{bottom:214.335000px;}
.y1c_c01107{bottom:239.835000px;}
.y1b_c01107{bottom:264.285000px;}
.y1a_c01107{bottom:291.585000px;}
.y19_c01107{bottom:314.235000px;}
.y18_c01107{bottom:337.785000px;}
.y17_c01107{bottom:362.085000px;}
.y16_c01107{bottom:387.135000px;}
.y15_c01107{bottom:410.985000px;}
.y14_c01107{bottom:435.285000px;}
.y13_c01107{bottom:459.285000px;}
.y12_c01107{bottom:483.285000px;}
.y11_c01107{bottom:507.135000px;}
.y10_c01107{bottom:531.135000px;}
.yf_c01107{bottom:555.135000px;}
.ye_c01107{bottom:580.185000px;}
.yd_c01107{bottom:603.735000px;}
.yc_c01107{bottom:628.035000px;}
.yb_c01107{bottom:652.035000px;}
.ya_c01107{bottom:676.335000px;}
.y9_c01107{bottom:700.935000px;}
.y8_c01107{bottom:724.635000px;}
.y7_c01107{bottom:748.935000px;}
.y6_c01107{bottom:773.085000px;}
.y5_c01107{bottom:796.785000px;}
.y2_c01107{bottom:820.935000px;}
.y4_c01107{bottom:821.385000px;}
.y3_c01107{bottom:845.385000px;}
.y1_c01107{bottom:869.385000px;}
.h6_c01107{height:13.200074px;}
.h7_c01107{height:43.804688px;}
.h2_c01107{height:79.497070px;}
.h5_c01107{height:83.226000px;}
.h4_c01107{height:84.269531px;}
.h3_c01107{height:211.640625px;}
.h1_c01107{height:975.000000px;}
.h0_c01107{height:975.225000px;}
.w2_c01107{width:104.875500px;}
.w0_c01107{width:659.850000px;}
.w1_c01107{width:660.000000px;}
.x0_c01107{left:0.000000px;}
.x5_c01107{left:45.450000px;}
.x9_c01107{left:47.550000px;}
.xb_c01107{left:57.000000px;}
.xa_c01107{left:60.750000px;}
.xc_c01107{left:80.550000px;}
.x8_c01107{left:123.300000px;}
.x4_c01107{left:129.300000px;}
.x2_c01107{left:130.650000px;}
.x1_c01107{left:132.600000px;}
.x7_c01107{left:133.650000px;}
.x3_c01107{left:145.350000px;}
.x6_c01107{left:170.400000px;}
.xd_c01107{left:281.739258px;}
@media print{
.v1_c01107{vertical-align:-75.200000pt;}
.v0_c01107{vertical-align:0.000000pt;}
.ls5_c01107{letter-spacing:0.000000pt;}
.ls6_c01107{letter-spacing:2.666667pt;}
.ls2_c01107{letter-spacing:4.576000pt;}
.ls0_c01107{letter-spacing:29.600000pt;}
.ls1_c01107{letter-spacing:35.466667pt;}
.ls4_c01107{letter-spacing:42.298667pt;}
.ls3_c01107{letter-spacing:218.298667pt;}
.ws0_c01107{word-spacing:-52.608000pt;}
.ws1_c01107{word-spacing:-18.666667pt;}
.ws2_c01107{word-spacing:0.000000pt;}
._25_c01107{margin-left:-56.000000pt;}
._21_c01107{margin-left:-20.664000pt;}
._19_c01107{margin-left:-17.352000pt;}
._18_c01107{margin-left:-15.984000pt;}
._23_c01107{margin-left:-13.866667pt;}
._24_c01107{margin-left:-12.266667pt;}
._20_c01107{margin-left:-11.232000pt;}
._1c_c01107{margin-left:-9.504000pt;}
._16_c01107{margin-left:-7.776000pt;}
._1e_c01107{margin-left:-6.613333pt;}
._14_c01107{margin-left:-5.544000pt;}
._7_c01107{margin-left:-3.744000pt;}
._9_c01107{margin-left:-2.088000pt;}
._6_c01107{margin-left:-1.080000pt;}
._c_c01107{width:0.936000pt;}
._4_c01107{width:1.944000pt;}
._3_c01107{width:3.168000pt;}
._2_c01107{width:4.824000pt;}
._5_c01107{width:5.832000pt;}
._1_c01107{width:7.200000pt;}
._8_c01107{width:8.568000pt;}
._0_c01107{width:9.576000pt;}
._e_c01107{width:11.304000pt;}
._f_c01107{width:13.032000pt;}
._11_c01107{width:14.112000pt;}
._b_c01107{width:16.344000pt;}
._13_c01107{width:20.088000pt;}
._1a_c01107{width:22.464000pt;}
._17_c01107{width:24.480000pt;}
._10_c01107{width:30.888000pt;}
._d_c01107{width:33.552000pt;}
._26_c01107{width:34.824000pt;}
._27_c01107{width:37.200000pt;}
._12_c01107{width:48.384000pt;}
._22_c01107{width:187.344000pt;}
._1b_c01107{width:203.184000pt;}
._1f_c01107{width:227.592000pt;}
._28_c01107{width:230.517333pt;}
._a_c01107{width:349.200000pt;}
._1d_c01107{width:364.320000pt;}
._15_c01107{width:545.768000pt;}
.fs4_c01107{font-size:37.333333pt;}
.fs9_c01107{font-size:42.666667pt;}
.fs3_c01107{font-size:45.333333pt;}
.fs7_c01107{font-size:48.000000pt;}
.fs6_c01107{font-size:53.333333pt;}
.fs2_c01107{font-size:64.000000pt;}
.fs5_c01107{font-size:69.333333pt;}
.fs0_c01107{font-size:72.000000pt;}
.fs8_c01107{font-size:74.666667pt;}
.fs1_c01107{font-size:186.666667pt;}
.y0_c01107{bottom:0.000000pt;}
.y24_c01107{bottom:2.760000pt;}
.y23_c01107{bottom:6.425204pt;}
.y22_c01107{bottom:80.920000pt;}
.y21_c01107{bottom:103.986667pt;}
.y20_c01107{bottom:125.986667pt;}
.y1f_c01107{bottom:147.853333pt;}
.y1e_c01107{bottom:169.453333pt;}
.y1d_c01107{bottom:190.520000pt;}
.y1c_c01107{bottom:213.186667pt;}
.y1b_c01107{bottom:234.920000pt;}
.y1a_c01107{bottom:259.186667pt;}
.y19_c01107{bottom:279.320000pt;}
.y18_c01107{bottom:300.253333pt;}
.y17_c01107{bottom:321.853333pt;}
.y16_c01107{bottom:344.120000pt;}
.y15_c01107{bottom:365.320000pt;}
.y14_c01107{bottom:386.920000pt;}
.y13_c01107{bottom:408.253333pt;}
.y12_c01107{bottom:429.586667pt;}
.y11_c01107{bottom:450.786667pt;}
.y10_c01107{bottom:472.120000pt;}
.yf_c01107{bottom:493.453333pt;}
.ye_c01107{bottom:515.720000pt;}
.yd_c01107{bottom:536.653333pt;}
.yc_c01107{bottom:558.253333pt;}
.yb_c01107{bottom:579.586667pt;}
.ya_c01107{bottom:601.186667pt;}
.y9_c01107{bottom:623.053333pt;}
.y8_c01107{bottom:644.120000pt;}
.y7_c01107{bottom:665.720000pt;}
.y6_c01107{bottom:687.186667pt;}
.y5_c01107{bottom:708.253333pt;}
.y2_c01107{bottom:729.720000pt;}
.y4_c01107{bottom:730.120000pt;}
.y3_c01107{bottom:751.453333pt;}
.y1_c01107{bottom:772.786667pt;}
.h6_c01107{height:11.733399pt;}
.h7_c01107{height:38.937500pt;}
.h2_c01107{height:70.664062pt;}
.h5_c01107{height:73.978667pt;}
.h4_c01107{height:74.906250pt;}
.h3_c01107{height:188.125000pt;}
.h1_c01107{height:866.666667pt;}
.h0_c01107{height:866.866667pt;}
.w2_c01107{width:93.222667pt;}
.w0_c01107{width:586.533333pt;}
.w1_c01107{width:586.666667pt;}
.x0_c01107{left:0.000000pt;}
.x5_c01107{left:40.400000pt;}
.x9_c01107{left:42.266667pt;}
.xb_c01107{left:50.666667pt;}
.xa_c01107{left:54.000000pt;}
.xc_c01107{left:71.600000pt;}
.x8_c01107{left:109.600000pt;}
.x4_c01107{left:114.933333pt;}
.x2_c01107{left:116.133333pt;}
.x1_c01107{left:117.866667pt;}
.x7_c01107{left:118.800000pt;}
.x3_c01107{left:129.200000pt;}
.x6_c01107{left:151.466667pt;}
.xd_c01107{left:250.434896pt;}
}





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

.ir_c01108:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01108{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01108;src:url('chunks/assets/font_7b44bdd0b35b0a39f912a0b9.woff2')format("woff");}.ff1_c01108{font-family:ff1_c01108;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01108;src:url('chunks/assets/font_ead933779a18a3058d64d6a5.woff2')format("woff");}.ff2_c01108{font-family:ff2_c01108;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01108;src:url('chunks/assets/font_396ea4a9bef39b929db181fe.woff2')format("woff");}.ff3_c01108{font-family:ff3_c01108;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01108;src:url('chunks/assets/font_02a583153e314641db4b5906.woff2')format("woff");}.ff4_c01108{font-family:ff4_c01108;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01108;src:url('chunks/assets/font_e2ee6d00e58297131f7c41bf.woff2')format("woff");}.ff5_c01108{font-family:ff5_c01108;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01108;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c01108{font-family:ff6_c01108;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01108{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c01108{vertical-align:-15.000000px;}
.v0_c01108{vertical-align:0.000000px;}
.ls3_c01108{letter-spacing:0.000000px;}
.ls2_c01108{letter-spacing:3.000000px;}
.ls1_c01108{letter-spacing:5.880000px;}
.ls4_c01108{letter-spacing:6.000000px;}
.ls0_c01108{letter-spacing:72.480000px;}
.sc__c01108{text-shadow:none;}
.sc0_c01108{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01108{-webkit-text-stroke:0px transparent;}
.sc0_c01108{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01108{word-spacing:-18.798000px;}
.ws1_c01108{word-spacing:0.000000px;}
._1d_c01108{margin-left:-41.673000px;}
._1f_c01108{margin-left:-27.621000px;}
._20_c01108{margin-left:-22.842000px;}
._21_c01108{margin-left:-20.907000px;}
._14_c01108{margin-left:-16.374000px;}
._18_c01108{margin-left:-12.705000px;}
._19_c01108{margin-left:-9.801000px;}
._5_c01108{margin-left:-7.344000px;}
._12_c01108{margin-left:-6.327000px;}
._13_c01108{margin-left:-5.034000px;}
._6_c01108{margin-left:-3.570000px;}
._4_c01108{margin-left:-2.346000px;}
._3_c01108{margin-left:-1.326000px;}
._15_c01108{width:1.008000px;}
._1_c01108{width:2.040000px;}
._0_c01108{width:3.366000px;}
._11_c01108{width:4.422000px;}
._b_c01108{width:5.874000px;}
._c_c01108{width:7.005000px;}
._a_c01108{width:8.505000px;}
._d_c01108{width:9.678000px;}
._10_c01108{width:10.773000px;}
._f_c01108{width:12.462000px;}
._8_c01108{width:13.485000px;}
._17_c01108{width:14.490000px;}
._9_c01108{width:15.747000px;}
._1e_c01108{width:17.025000px;}
._16_c01108{width:22.221000px;}
._22_c01108{width:24.630000px;}
._1b_c01108{width:26.391000px;}
._1c_c01108{width:31.566000px;}
._1a_c01108{width:36.321000px;}
._e_c01108{width:42.240000px;}
._7_c01108{width:115.806000px;}
._2_c01108{width:195.636000px;}
._23_c01108{width:269.244000px;}
.fc2_c01108{color:transparent;}
.fc1_c01108{color:rgb(128,128,128);}
.fc0_c01108{color:rgb(0,0,0);}
.fs7_c01108{font-size:48.000000px;}
.fs2_c01108{font-size:60.000000px;}
.fs4_c01108{font-size:63.000000px;}
.fs6_c01108{font-size:72.000000px;}
.fs5_c01108{font-size:78.000000px;}
.fs3_c01108{font-size:81.000000px;}
.fs1_c01108{font-size:87.000000px;}
.fs0_c01108{font-size:102.000000px;}
.y0_c01108{bottom:0.000000px;}
.y26_c01108{bottom:3.105000px;}
.y25_c01108{bottom:7.228369px;}
.y24_c01108{bottom:42.420000px;}
.y23_c01108{bottom:66.120000px;}
.y22_c01108{bottom:92.070000px;}
.y21_c01108{bottom:116.370000px;}
.y20_c01108{bottom:141.120000px;}
.y1f_c01108{bottom:165.720000px;}
.y1e_c01108{bottom:190.020000px;}
.y1d_c01108{bottom:214.320000px;}
.y1c_c01108{bottom:239.520000px;}
.y1b_c01108{bottom:263.520000px;}
.y1a_c01108{bottom:287.820000px;}
.y19_c01108{bottom:312.120000px;}
.y18_c01108{bottom:336.420000px;}
.y17_c01108{bottom:361.170000px;}
.y16_c01108{bottom:384.720000px;}
.y15_c01108{bottom:409.020000px;}
.y14_c01108{bottom:433.620000px;}
.y13_c01108{bottom:457.920000px;}
.y12_c01108{bottom:481.620000px;}
.y11_c01108{bottom:505.920000px;}
.y10_c01108{bottom:530.220000px;}
.yf_c01108{bottom:553.470000px;}
.ye_c01108{bottom:577.470000px;}
.yd_c01108{bottom:602.670000px;}
.yc_c01108{bottom:625.620000px;}
.yb_c01108{bottom:650.370000px;}
.ya_c01108{bottom:673.920000px;}
.y9_c01108{bottom:698.670000px;}
.y8_c01108{bottom:722.520000px;}
.y7_c01108{bottom:747.120000px;}
.y6_c01108{bottom:771.870000px;}
.y5_c01108{bottom:795.720000px;}
.y4_c01108{bottom:820.020000px;}
.y3_c01108{bottom:844.470000px;}
.y2_c01108{bottom:874.170000px;}
.y1_c01108{bottom:901.470000px;}
.h6_c01108{height:13.200073px;}
.h7_c01108{height:43.804688px;}
.h2_c01108{height:75.966797px;}
.h3_c01108{height:79.497070px;}
.h5_c01108{height:84.269531px;}
.h4_c01108{height:98.756836px;}
.h1_c01108{height:100.057617px;}
.h0_c01108{height:975.750000px;}
.w2_c01108{width:104.875500px;}
.w0_c01108{width:664.200000px;}
.w1_c01108{width:664.500000px;}
.x0_c01108{left:0.000000px;}
.x5_c01108{left:34.800000px;}
.x3_c01108{left:36.150000px;}
.x1_c01108{left:52.200000px;}
.x4_c01108{left:53.250000px;}
.x6_c01108{left:55.650000px;}
.x2_c01108{left:80.700000px;}
.x8_c01108{left:283.914230px;}
.x7_c01108{left:414.150000px;}
@media print{
.v1_c01108{vertical-align:-13.333333pt;}
.v0_c01108{vertical-align:0.000000pt;}
.ls3_c01108{letter-spacing:0.000000pt;}
.ls2_c01108{letter-spacing:2.666667pt;}
.ls1_c01108{letter-spacing:5.226667pt;}
.ls4_c01108{letter-spacing:5.333333pt;}
.ls0_c01108{letter-spacing:64.426667pt;}
.ws0_c01108{word-spacing:-16.709333pt;}
.ws1_c01108{word-spacing:0.000000pt;}
._1d_c01108{margin-left:-37.042667pt;}
._1f_c01108{margin-left:-24.552000pt;}
._20_c01108{margin-left:-20.304000pt;}
._21_c01108{margin-left:-18.584000pt;}
._14_c01108{margin-left:-14.554667pt;}
._18_c01108{margin-left:-11.293333pt;}
._19_c01108{margin-left:-8.712000pt;}
._5_c01108{margin-left:-6.528000pt;}
._12_c01108{margin-left:-5.624000pt;}
._13_c01108{margin-left:-4.474667pt;}
._6_c01108{margin-left:-3.173333pt;}
._4_c01108{margin-left:-2.085333pt;}
._3_c01108{margin-left:-1.178667pt;}
._15_c01108{width:0.896000pt;}
._1_c01108{width:1.813333pt;}
._0_c01108{width:2.992000pt;}
._11_c01108{width:3.930667pt;}
._b_c01108{width:5.221333pt;}
._c_c01108{width:6.226667pt;}
._a_c01108{width:7.560000pt;}
._d_c01108{width:8.602667pt;}
._10_c01108{width:9.576000pt;}
._f_c01108{width:11.077333pt;}
._8_c01108{width:11.986667pt;}
._17_c01108{width:12.880000pt;}
._9_c01108{width:13.997333pt;}
._1e_c01108{width:15.133333pt;}
._16_c01108{width:19.752000pt;}
._22_c01108{width:21.893333pt;}
._1b_c01108{width:23.458667pt;}
._1c_c01108{width:28.058667pt;}
._1a_c01108{width:32.285333pt;}
._e_c01108{width:37.546667pt;}
._7_c01108{width:102.938667pt;}
._2_c01108{width:173.898667pt;}
._23_c01108{width:239.328000pt;}
.fs7_c01108{font-size:42.666667pt;}
.fs2_c01108{font-size:53.333333pt;}
.fs4_c01108{font-size:56.000000pt;}
.fs6_c01108{font-size:64.000000pt;}
.fs5_c01108{font-size:69.333333pt;}
.fs3_c01108{font-size:72.000000pt;}
.fs1_c01108{font-size:77.333333pt;}
.fs0_c01108{font-size:90.666667pt;}
.y0_c01108{bottom:0.000000pt;}
.y26_c01108{bottom:2.760000pt;}
.y25_c01108{bottom:6.425217pt;}
.y24_c01108{bottom:37.706667pt;}
.y23_c01108{bottom:58.773333pt;}
.y22_c01108{bottom:81.840000pt;}
.y21_c01108{bottom:103.440000pt;}
.y20_c01108{bottom:125.440000pt;}
.y1f_c01108{bottom:147.306667pt;}
.y1e_c01108{bottom:168.906667pt;}
.y1d_c01108{bottom:190.506667pt;}
.y1c_c01108{bottom:212.906667pt;}
.y1b_c01108{bottom:234.240000pt;}
.y1a_c01108{bottom:255.840000pt;}
.y19_c01108{bottom:277.440000pt;}
.y18_c01108{bottom:299.040000pt;}
.y17_c01108{bottom:321.040000pt;}
.y16_c01108{bottom:341.973333pt;}
.y15_c01108{bottom:363.573333pt;}
.y14_c01108{bottom:385.440000pt;}
.y13_c01108{bottom:407.040000pt;}
.y12_c01108{bottom:428.106667pt;}
.y11_c01108{bottom:449.706667pt;}
.y10_c01108{bottom:471.306667pt;}
.yf_c01108{bottom:491.973333pt;}
.ye_c01108{bottom:513.306667pt;}
.yd_c01108{bottom:535.706667pt;}
.yc_c01108{bottom:556.106667pt;}
.yb_c01108{bottom:578.106667pt;}
.ya_c01108{bottom:599.040000pt;}
.y9_c01108{bottom:621.040000pt;}
.y8_c01108{bottom:642.240000pt;}
.y7_c01108{bottom:664.106667pt;}
.y6_c01108{bottom:686.106667pt;}
.y5_c01108{bottom:707.306667pt;}
.y4_c01108{bottom:728.906667pt;}
.y3_c01108{bottom:750.640000pt;}
.y2_c01108{bottom:777.040000pt;}
.y1_c01108{bottom:801.306667pt;}
.h6_c01108{height:11.733399pt;}
.h7_c01108{height:38.937500pt;}
.h2_c01108{height:67.526042pt;}
.h3_c01108{height:70.664062pt;}
.h5_c01108{height:74.906250pt;}
.h4_c01108{height:87.783854pt;}
.h1_c01108{height:88.940104pt;}
.h0_c01108{height:867.333333pt;}
.w2_c01108{width:93.222667pt;}
.w0_c01108{width:590.400000pt;}
.w1_c01108{width:590.666667pt;}
.x0_c01108{left:0.000000pt;}
.x5_c01108{left:30.933333pt;}
.x3_c01108{left:32.133333pt;}
.x1_c01108{left:46.400000pt;}
.x4_c01108{left:47.333333pt;}
.x6_c01108{left:49.466667pt;}
.x2_c01108{left:71.733333pt;}
.x8_c01108{left:252.368205pt;}
.x7_c01108{left:368.133333pt;}
}





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

.ir_c01109:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01109{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01109;src:url('chunks/assets/font_9013c557a586caf58982fbe0.woff2')format("woff");}.ff1_c01109{font-family:ff1_c01109;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01109;src:url('chunks/assets/font_69bb4015e88c9082fcc126e7.woff2')format("woff");}.ff2_c01109{font-family:ff2_c01109;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01109;src:url('chunks/assets/font_317f976c8e3195764cf856ae.woff2')format("woff");}.ff3_c01109{font-family:ff3_c01109;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01109;src:url('chunks/assets/font_9ec24314c449543dd377a885.woff2')format("woff");}.ff4_c01109{font-family:ff4_c01109;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01109;src:url('chunks/assets/font_2ee3cbb7d86f92d660b8f90e.woff2')format("woff");}.ff5_c01109{font-family:ff5_c01109;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01109;src:url('chunks/assets/font_75bdb2d2a2ebf54701246039.woff2')format("woff");}.ff6_c01109{font-family:ff6_c01109;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01109;src:url('chunks/assets/font_51b47aa963c580d401bf4dcd.woff2')format("woff");}.ff7_c01109{font-family:ff7_c01109;line-height:1.311035;font-style:normal;font-weight: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_c01109;src:url('chunks/assets/font_17e14e2f20f03aedbd7d57e6.woff2')format("woff");}.ff8_c01109{font-family:ff8_c01109;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c01109;src:url('chunks/assets/font_2aef5e2d08736c3c1c368298.woff2')format("woff");}.ff9_c01109{font-family:ff9_c01109;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c01109;src:url('chunks/assets/font_c8a9e5d1d9820f90bb71a9c0.woff2')format("woff");}.ffa_c01109{font-family:ffa_c01109;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c01109;src:url('chunks/assets/font_6cda0fdd74e425c3fadb09d3.woff2')format("woff");}.ffb_c01109{font-family:ffb_c01109;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc_c01109;src:url('chunks/assets/font_c54517fdee591e1627a47b97.woff2')format("woff");}.ffc_c01109{font-family:ffc_c01109;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd_c01109;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ffd_c01109{font-family:ffd_c01109;line-height:1.219238;font-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_c01109{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m0_c01109{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01109{vertical-align:0.000000px;}
.ls4_c01109{letter-spacing:0.000000px;}
.ls3_c01109{letter-spacing:6.000000px;}
.ls5_c01109{letter-spacing:9.000000px;}
.ls2_c01109{letter-spacing:9.300000px;}
.ls0_c01109{letter-spacing:15.375000px;}
.ls1_c01109{letter-spacing:16.464000px;}
.sc__c01109{text-shadow:none;}
.sc0_c01109{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01109{-webkit-text-stroke:0px transparent;}
.sc0_c01109{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01109{word-spacing:-52.392000px;}
.ws6_c01109{word-spacing:-38.364000px;}
.ws5_c01109{word-spacing:-26.250000px;}
.ws7_c01109{word-spacing:-18.798000px;}
.ws2_c01109{word-spacing:-17.352000px;}
.ws1_c01109{word-spacing:-16.926000px;}
.ws4_c01109{word-spacing:-0.075000px;}
.ws3_c01109{word-spacing:-0.060000px;}
.ws8_c01109{word-spacing:0.000000px;}
._2a_c01109{margin-left:-34.152000px;}
._7_c01109{margin-left:-21.489000px;}
._6_c01109{margin-left:-17.592000px;}
._18_c01109{margin-left:-16.518000px;}
._5_c01109{margin-left:-15.363000px;}
._3_c01109{margin-left:-14.163000px;}
._2_c01109{margin-left:-12.198000px;}
._25_c01109{margin-left:-10.437000px;}
._4_c01109{margin-left:-8.715000px;}
._0_c01109{margin-left:-7.626000px;}
._1_c01109{margin-left:-6.150000px;}
._d_c01109{margin-left:-4.536000px;}
._15_c01109{margin-left:-3.246000px;}
._b_c01109{margin-left:-1.944000px;}
._e_c01109{width:1.134000px;}
._a_c01109{width:2.268000px;}
._8_c01109{width:3.888000px;}
._9_c01109{width:5.508000px;}
._c_c01109{width:7.533000px;}
._10_c01109{width:9.558000px;}
._1e_c01109{width:10.569000px;}
._f_c01109{width:11.583000px;}
._16_c01109{width:13.533000px;}
._17_c01109{width:15.234000px;}
._11_c01109{width:16.848000px;}
._12_c01109{width:18.063000px;}
._2d_c01109{width:19.650000px;}
._26_c01109{width:21.051000px;}
._2f_c01109{width:26.400000px;}
._27_c01109{width:32.712000px;}
._2e_c01109{width:34.095000px;}
._1b_c01109{width:37.167000px;}
._14_c01109{width:64.638000px;}
._21_c01109{width:79.761000px;}
._2c_c01109{width:84.915000px;}
._19_c01109{width:96.462000px;}
._20_c01109{width:117.369000px;}
._28_c01109{width:129.417000px;}
._23_c01109{width:149.721000px;}
._1f_c01109{width:172.917000px;}
._1d_c01109{width:178.386000px;}
._29_c01109{width:185.520000px;}
._2b_c01109{width:189.042000px;}
._1c_c01109{width:251.175000px;}
._1a_c01109{width:285.951000px;}
._24_c01109{width:321.729000px;}
._22_c01109{width:428.469000px;}
._13_c01109{width:498.336000px;}
.fc2_c01109{color:transparent;}
.fc1_c01109{color:rgb(128,128,128);}
.fc0_c01109{color:rgb(0,0,0);}
.fsb_c01109{font-size:48.000000px;}
.fs7_c01109{font-size:60.000000px;}
.fs9_c01109{font-size:69.000000px;}
.fs4_c01109{font-size:72.000000px;}
.fs6_c01109{font-size:75.000000px;}
.fs3_c01109{font-size:78.000000px;}
.fs2_c01109{font-size:81.000000px;}
.fs5_c01109{font-size:84.000000px;}
.fsa_c01109{font-size:87.000000px;}
.fs8_c01109{font-size:102.000000px;}
.fs1_c01109{font-size:111.000000px;}
.fs0_c01109{font-size:123.000000px;}
.y0_c01109{bottom:0.000000px;}
.y23_c01109{bottom:3.105000px;}
.y22_c01109{bottom:7.228371px;}
.y21_c01109{bottom:38.115000px;}
.y20_c01109{bottom:62.115000px;}
.y1f_c01109{bottom:87.465000px;}
.y1e_c01109{bottom:112.365000px;}
.y1d_c01109{bottom:137.115000px;}
.y1c_c01109{bottom:162.015000px;}
.y1b_c01109{bottom:186.015000px;}
.y1a_c01109{bottom:211.065000px;}
.y19_c01109{bottom:236.565000px;}
.y18_c01109{bottom:261.015000px;}
.y17_c01109{bottom:285.315000px;}
.y16_c01109{bottom:309.915000px;}
.y15_c01109{bottom:335.265000px;}
.y14_c01109{bottom:359.115000px;}
.y13_c01109{bottom:383.415000px;}
.y12_c01109{bottom:408.165000px;}
.y11_c01109{bottom:432.465000px;}
.y10_c01109{bottom:442.515000px;}
.yf_c01109{bottom:456.315000px;}
.ye_c01109{bottom:552.465000px;}
.yd_c01109{bottom:576.915000px;}
.yc_c01109{bottom:601.815000px;}
.yb_c01109{bottom:626.115000px;}
.ya_c01109{bottom:651.015000px;}
.y9_c01109{bottom:675.465000px;}
.y8_c01109{bottom:699.315000px;}
.y7_c01109{bottom:723.315000px;}
.y6_c01109{bottom:772.215000px;}
.y5_c01109{bottom:795.465000px;}
.y4_c01109{bottom:820.515000px;}
.y3_c01109{bottom:844.815000px;}
.y2_c01109{bottom:869.415000px;}
.y1_c01109{bottom:906.915000px;}
.hb_c01109{height:13.200074px;}
.hc_c01109{height:43.804688px;}
.h8_c01109{height:72.312000px;}
.h4_c01109{height:79.497070px;}
.h3_c01109{height:83.226000px;}
.h5_c01109{height:84.269531px;}
.h6_c01109{height:84.656250px;}
.h9_c01109{height:87.679688px;}
.ha_c01109{height:98.756836px;}
.h7_c01109{height:129.143555px;}
.h2_c01109{height:129.915527px;}
.h1_c01109{height:986.250000px;}
.h0_c01109{height:986.325000px;}
.w2_c01109{width:104.875500px;}
.w0_c01109{width:667.425000px;}
.w1_c01109{width:667.500000px;}
.x0_c01109{left:0.000000px;}
.x7_c01109{left:18.600000px;}
.x4_c01109{left:19.950000px;}
.x8_c01109{left:21.900000px;}
.xa_c01109{left:22.950000px;}
.xd_c01109{left:28.050000px;}
.xb_c01109{left:46.500000px;}
.xc_c01109{left:57.600000px;}
.xe_c01109{left:69.750000px;}
.xf_c01109{left:82.950000px;}
.x3_c01109{left:108.600000px;}
.x2_c01109{left:109.650000px;}
.x6_c01109{left:111.000000px;}
.x1_c01109{left:112.650000px;}
.x9_c01109{left:114.000000px;}
.x10_c01109{left:120.450000px;}
.x5_c01109{left:123.150000px;}
.x12_c01109{left:285.526749px;}
.x11_c01109{left:574.350000px;}
@media print{
.v0_c01109{vertical-align:0.000000pt;}
.ls4_c01109{letter-spacing:0.000000pt;}
.ls3_c01109{letter-spacing:5.333333pt;}
.ls5_c01109{letter-spacing:8.000000pt;}
.ls2_c01109{letter-spacing:8.266667pt;}
.ls0_c01109{letter-spacing:13.666667pt;}
.ls1_c01109{letter-spacing:14.634667pt;}
.ws0_c01109{word-spacing:-46.570667pt;}
.ws6_c01109{word-spacing:-34.101333pt;}
.ws5_c01109{word-spacing:-23.333333pt;}
.ws7_c01109{word-spacing:-16.709333pt;}
.ws2_c01109{word-spacing:-15.424000pt;}
.ws1_c01109{word-spacing:-15.045333pt;}
.ws4_c01109{word-spacing:-0.066667pt;}
.ws3_c01109{word-spacing:-0.053333pt;}
.ws8_c01109{word-spacing:0.000000pt;}
._2a_c01109{margin-left:-30.357333pt;}
._7_c01109{margin-left:-19.101333pt;}
._6_c01109{margin-left:-15.637333pt;}
._18_c01109{margin-left:-14.682667pt;}
._5_c01109{margin-left:-13.656000pt;}
._3_c01109{margin-left:-12.589333pt;}
._2_c01109{margin-left:-10.842667pt;}
._25_c01109{margin-left:-9.277333pt;}
._4_c01109{margin-left:-7.746667pt;}
._0_c01109{margin-left:-6.778667pt;}
._1_c01109{margin-left:-5.466667pt;}
._d_c01109{margin-left:-4.032000pt;}
._15_c01109{margin-left:-2.885333pt;}
._b_c01109{margin-left:-1.728000pt;}
._e_c01109{width:1.008000pt;}
._a_c01109{width:2.016000pt;}
._8_c01109{width:3.456000pt;}
._9_c01109{width:4.896000pt;}
._c_c01109{width:6.696000pt;}
._10_c01109{width:8.496000pt;}
._1e_c01109{width:9.394667pt;}
._f_c01109{width:10.296000pt;}
._16_c01109{width:12.029333pt;}
._17_c01109{width:13.541333pt;}
._11_c01109{width:14.976000pt;}
._12_c01109{width:16.056000pt;}
._2d_c01109{width:17.466667pt;}
._26_c01109{width:18.712000pt;}
._2f_c01109{width:23.466667pt;}
._27_c01109{width:29.077333pt;}
._2e_c01109{width:30.306667pt;}
._1b_c01109{width:33.037333pt;}
._14_c01109{width:57.456000pt;}
._21_c01109{width:70.898667pt;}
._2c_c01109{width:75.480000pt;}
._19_c01109{width:85.744000pt;}
._20_c01109{width:104.328000pt;}
._28_c01109{width:115.037333pt;}
._23_c01109{width:133.085333pt;}
._1f_c01109{width:153.704000pt;}
._1d_c01109{width:158.565333pt;}
._29_c01109{width:164.906667pt;}
._2b_c01109{width:168.037333pt;}
._1c_c01109{width:223.266667pt;}
._1a_c01109{width:254.178667pt;}
._24_c01109{width:285.981333pt;}
._22_c01109{width:380.861333pt;}
._13_c01109{width:442.965333pt;}
.fsb_c01109{font-size:42.666667pt;}
.fs7_c01109{font-size:53.333333pt;}
.fs9_c01109{font-size:61.333333pt;}
.fs4_c01109{font-size:64.000000pt;}
.fs6_c01109{font-size:66.666667pt;}
.fs3_c01109{font-size:69.333333pt;}
.fs2_c01109{font-size:72.000000pt;}
.fs5_c01109{font-size:74.666667pt;}
.fsa_c01109{font-size:77.333333pt;}
.fs8_c01109{font-size:90.666667pt;}
.fs1_c01109{font-size:98.666667pt;}
.fs0_c01109{font-size:109.333333pt;}
.y0_c01109{bottom:0.000000pt;}
.y23_c01109{bottom:2.760000pt;}
.y22_c01109{bottom:6.425219pt;}
.y21_c01109{bottom:33.880000pt;}
.y20_c01109{bottom:55.213333pt;}
.y1f_c01109{bottom:77.746667pt;}
.y1e_c01109{bottom:99.880000pt;}
.y1d_c01109{bottom:121.880000pt;}
.y1c_c01109{bottom:144.013333pt;}
.y1b_c01109{bottom:165.346667pt;}
.y1a_c01109{bottom:187.613333pt;}
.y19_c01109{bottom:210.280000pt;}
.y18_c01109{bottom:232.013333pt;}
.y17_c01109{bottom:253.613333pt;}
.y16_c01109{bottom:275.480000pt;}
.y15_c01109{bottom:298.013333pt;}
.y14_c01109{bottom:319.213333pt;}
.y13_c01109{bottom:340.813333pt;}
.y12_c01109{bottom:362.813333pt;}
.y11_c01109{bottom:384.413333pt;}
.y10_c01109{bottom:393.346667pt;}
.yf_c01109{bottom:405.613333pt;}
.ye_c01109{bottom:491.080000pt;}
.yd_c01109{bottom:512.813333pt;}
.yc_c01109{bottom:534.946667pt;}
.yb_c01109{bottom:556.546667pt;}
.ya_c01109{bottom:578.680000pt;}
.y9_c01109{bottom:600.413333pt;}
.y8_c01109{bottom:621.613333pt;}
.y7_c01109{bottom:642.946667pt;}
.y6_c01109{bottom:686.413333pt;}
.y5_c01109{bottom:707.080000pt;}
.y4_c01109{bottom:729.346667pt;}
.y3_c01109{bottom:750.946667pt;}
.y2_c01109{bottom:772.813333pt;}
.y1_c01109{bottom:806.146667pt;}
.hb_c01109{height:11.733399pt;}
.hc_c01109{height:38.937500pt;}
.h8_c01109{height:64.277333pt;}
.h4_c01109{height:70.664062pt;}
.h3_c01109{height:73.978667pt;}
.h5_c01109{height:74.906250pt;}
.h6_c01109{height:75.250000pt;}
.h9_c01109{height:77.937500pt;}
.ha_c01109{height:87.783854pt;}
.h7_c01109{height:114.794271pt;}
.h2_c01109{height:115.480469pt;}
.h1_c01109{height:876.666667pt;}
.h0_c01109{height:876.733333pt;}
.w2_c01109{width:93.222667pt;}
.w0_c01109{width:593.266667pt;}
.w1_c01109{width:593.333333pt;}
.x0_c01109{left:0.000000pt;}
.x7_c01109{left:16.533333pt;}
.x4_c01109{left:17.733333pt;}
.x8_c01109{left:19.466667pt;}
.xa_c01109{left:20.400000pt;}
.xd_c01109{left:24.933333pt;}
.xb_c01109{left:41.333333pt;}
.xc_c01109{left:51.200000pt;}
.xe_c01109{left:62.000000pt;}
.xf_c01109{left:73.733333pt;}
.x3_c01109{left:96.533333pt;}
.x2_c01109{left:97.466667pt;}
.x6_c01109{left:98.666667pt;}
.x1_c01109{left:100.133333pt;}
.x9_c01109{left:101.333333pt;}
.x10_c01109{left:107.066667pt;}
.x5_c01109{left:109.466667pt;}
.x12_c01109{left:253.801554pt;}
.x11_c01109{left:510.533333pt;}
}





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

.ir_c01110:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01110{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01110;src:url('chunks/assets/font_e0d45f62c46bb824319563f4.woff2')format("woff");}.ff1_c01110{font-family:ff1_c01110;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01110;src:url('chunks/assets/font_18f0b2c0ae44ecf7e368b2dc.woff2')format("woff");}.ff2_c01110{font-family:ff2_c01110;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01110;src:url('chunks/assets/font_a054b90802221c9539c9e48c.woff2')format("woff");}.ff3_c01110{font-family:ff3_c01110;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01110;src:url('chunks/assets/font_ea0b272464970049732927a9.woff2')format("woff");}.ff4_c01110{font-family:ff4_c01110;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01110;src:url('chunks/assets/font_08ca21416cda6030fdc11814.woff2')format("woff");}.ff5_c01110{font-family:ff5_c01110;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01110;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c01110{font-family:ff6_c01110;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01110{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01110{vertical-align:0.000000px;}
.v1_c01110{vertical-align:3.600000px;}
.ls5_c01110{letter-spacing:0.000000px;}
.ls4_c01110{letter-spacing:1.350000px;}
.ls3_c01110{letter-spacing:3.000000px;}
.ls6_c01110{letter-spacing:6.000000px;}
.ls2_c01110{letter-spacing:9.546000px;}
.ls0_c01110{letter-spacing:63.000000px;}
.ls1_c01110{letter-spacing:125.400000px;}
.sc__c01110{text-shadow:none;}
.sc0_c01110{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01110{-webkit-text-stroke:0px transparent;}
.sc0_c01110{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c01110{word-spacing:-17.352000px;}
.ws2_c01110{word-spacing:-15.750000px;}
.ws0_c01110{word-spacing:-3.741000px;}
.ws1_c01110{word-spacing:-2.793000px;}
.ws4_c01110{word-spacing:0.000000px;}
._23_c01110{margin-left:-63.870000px;}
._24_c01110{margin-left:-56.556000px;}
._10_c01110{margin-left:-26.163000px;}
._b_c01110{margin-left:-15.174000px;}
._26_c01110{margin-left:-9.765000px;}
._1d_c01110{margin-left:-7.971000px;}
._21_c01110{margin-left:-4.911000px;}
._9_c01110{margin-left:-3.636000px;}
._4_c01110{margin-left:-2.277000px;}
._5_c01110{margin-left:-1.089000px;}
._0_c01110{width:1.584000px;}
._7_c01110{width:3.195000px;}
._6_c01110{width:4.617000px;}
._11_c01110{width:5.661000px;}
._d_c01110{width:6.840000px;}
._14_c01110{width:8.181000px;}
._3_c01110{width:9.306000px;}
._a_c01110{width:10.818000px;}
._8_c01110{width:12.564000px;}
._12_c01110{width:14.013000px;}
._1_c01110{width:15.444000px;}
._1c_c01110{width:16.566000px;}
._2_c01110{width:17.721000px;}
._15_c01110{width:19.062000px;}
._16_c01110{width:20.763000px;}
._1a_c01110{width:22.179000px;}
._e_c01110{width:24.138000px;}
._19_c01110{width:25.383000px;}
._1b_c01110{width:26.523000px;}
._17_c01110{width:28.263000px;}
._20_c01110{width:29.631000px;}
._c_c01110{width:31.353000px;}
._22_c01110{width:32.391000px;}
._13_c01110{width:33.453000px;}
._1e_c01110{width:35.079000px;}
._18_c01110{width:36.606000px;}
._2a_c01110{width:37.851000px;}
._2c_c01110{width:39.291000px;}
._1f_c01110{width:45.189000px;}
._f_c01110{width:61.407000px;}
._27_c01110{width:100.062000px;}
._2b_c01110{width:124.968000px;}
._28_c01110{width:130.830000px;}
._25_c01110{width:146.112000px;}
._29_c01110{width:174.069000px;}
._2d_c01110{width:277.395000px;}
.fc2_c01110{color:transparent;}
.fc1_c01110{color:rgb(128,128,128);}
.fc0_c01110{color:rgb(0,0,0);}
.fs8_c01110{font-size:48.000000px;}
.fs5_c01110{font-size:51.000000px;}
.fs3_c01110{font-size:57.000000px;}
.fs7_c01110{font-size:60.000000px;}
.fs6_c01110{font-size:63.000000px;}
.fs2_c01110{font-size:72.000000px;}
.fs4_c01110{font-size:78.000000px;}
.fs1_c01110{font-size:81.000000px;}
.fs0_c01110{font-size:99.000000px;}
.y0_c01110{bottom:0.000000px;}
.y25_c01110{bottom:3.105000px;}
.y24_c01110{bottom:7.228369px;}
.y23_c01110{bottom:57.270000px;}
.y22_c01110{bottom:82.920000px;}
.y21_c01110{bottom:107.970000px;}
.y20_c01110{bottom:133.020000px;}
.y1f_c01110{bottom:157.170000px;}
.y1e_c01110{bottom:181.620000px;}
.y1d_c01110{bottom:205.770000px;}
.y1c_c01110{bottom:230.520000px;}
.y1b_c01110{bottom:254.520000px;}
.y1a_c01110{bottom:279.120000px;}
.y19_c01110{bottom:304.020000px;}
.y18_c01110{bottom:328.020000px;}
.y17_c01110{bottom:351.720000px;}
.y16_c01110{bottom:376.320000px;}
.y15_c01110{bottom:400.620000px;}
.y14_c01110{bottom:423.570000px;}
.y13_c01110{bottom:449.220000px;}
.y12_c01110{bottom:494.820000px;}
.y11_c01110{bottom:520.020000px;}
.y10_c01110{bottom:544.620000px;}
.yf_c01110{bottom:568.020000px;}
.ye_c01110{bottom:591.270000px;}
.yd_c01110{bottom:615.270000px;}
.yc_c01110{bottom:639.120000px;}
.yb_c01110{bottom:664.770000px;}
.ya_c01110{bottom:687.420000px;}
.y9_c01110{bottom:711.720000px;}
.y8_c01110{bottom:736.320000px;}
.y7_c01110{bottom:760.320000px;}
.y6_c01110{bottom:784.320000px;}
.y5_c01110{bottom:808.920000px;}
.y4_c01110{bottom:832.920000px;}
.y3_c01110{bottom:857.520000px;}
.y2_c01110{bottom:881.820000px;}
.y1_c01110{bottom:922.620000px;}
.ha_c01110{height:13.200073px;}
.hb_c01110{height:43.804688px;}
.h5_c01110{height:57.445312px;}
.h7_c01110{height:61.831055px;}
.h9_c01110{height:72.562500px;}
.h4_c01110{height:79.497070px;}
.h8_c01110{height:83.097070px;}
.h3_c01110{height:84.269531px;}
.h6_c01110{height:98.756836px;}
.h2_c01110{height:115.870605px;}
.h1_c01110{height:986.250000px;}
.h0_c01110{height:986.550000px;}
.w1_c01110{width:104.875500px;}
.w0_c01110{width:672.000000px;}
.x0_c01110{left:0.000000px;}
.x5_c01110{left:46.500000px;}
.x4_c01110{left:52.950000px;}
.x3_c01110{left:54.300000px;}
.x2_c01110{left:55.350000px;}
.x6_c01110{left:56.700000px;}
.x8_c01110{left:58.800000px;}
.xa_c01110{left:60.150000px;}
.xb_c01110{left:61.200000px;}
.xc_c01110{left:62.550000px;}
.x1_c01110{left:68.250000px;}
.x9_c01110{left:98.850000px;}
.x7_c01110{left:127.350000px;}
.xe_c01110{left:287.814240px;}
.xd_c01110{left:400.650000px;}
@media print{
.v0_c01110{vertical-align:0.000000pt;}
.v1_c01110{vertical-align:3.200000pt;}
.ls5_c01110{letter-spacing:0.000000pt;}
.ls4_c01110{letter-spacing:1.200000pt;}
.ls3_c01110{letter-spacing:2.666667pt;}
.ls6_c01110{letter-spacing:5.333333pt;}
.ls2_c01110{letter-spacing:8.485333pt;}
.ls0_c01110{letter-spacing:56.000000pt;}
.ls1_c01110{letter-spacing:111.466667pt;}
.ws3_c01110{word-spacing:-15.424000pt;}
.ws2_c01110{word-spacing:-14.000000pt;}
.ws0_c01110{word-spacing:-3.325333pt;}
.ws1_c01110{word-spacing:-2.482667pt;}
.ws4_c01110{word-spacing:0.000000pt;}
._23_c01110{margin-left:-56.773333pt;}
._24_c01110{margin-left:-50.272000pt;}
._10_c01110{margin-left:-23.256000pt;}
._b_c01110{margin-left:-13.488000pt;}
._26_c01110{margin-left:-8.680000pt;}
._1d_c01110{margin-left:-7.085333pt;}
._21_c01110{margin-left:-4.365333pt;}
._9_c01110{margin-left:-3.232000pt;}
._4_c01110{margin-left:-2.024000pt;}
._5_c01110{margin-left:-0.968000pt;}
._0_c01110{width:1.408000pt;}
._7_c01110{width:2.840000pt;}
._6_c01110{width:4.104000pt;}
._11_c01110{width:5.032000pt;}
._d_c01110{width:6.080000pt;}
._14_c01110{width:7.272000pt;}
._3_c01110{width:8.272000pt;}
._a_c01110{width:9.616000pt;}
._8_c01110{width:11.168000pt;}
._12_c01110{width:12.456000pt;}
._1_c01110{width:13.728000pt;}
._1c_c01110{width:14.725333pt;}
._2_c01110{width:15.752000pt;}
._15_c01110{width:16.944000pt;}
._16_c01110{width:18.456000pt;}
._1a_c01110{width:19.714667pt;}
._e_c01110{width:21.456000pt;}
._19_c01110{width:22.562667pt;}
._1b_c01110{width:23.576000pt;}
._17_c01110{width:25.122667pt;}
._20_c01110{width:26.338667pt;}
._c_c01110{width:27.869333pt;}
._22_c01110{width:28.792000pt;}
._13_c01110{width:29.736000pt;}
._1e_c01110{width:31.181333pt;}
._18_c01110{width:32.538667pt;}
._2a_c01110{width:33.645333pt;}
._2c_c01110{width:34.925333pt;}
._1f_c01110{width:40.168000pt;}
._f_c01110{width:54.584000pt;}
._27_c01110{width:88.944000pt;}
._2b_c01110{width:111.082667pt;}
._28_c01110{width:116.293333pt;}
._25_c01110{width:129.877333pt;}
._29_c01110{width:154.728000pt;}
._2d_c01110{width:246.573333pt;}
.fs8_c01110{font-size:42.666667pt;}
.fs5_c01110{font-size:45.333333pt;}
.fs3_c01110{font-size:50.666667pt;}
.fs7_c01110{font-size:53.333333pt;}
.fs6_c01110{font-size:56.000000pt;}
.fs2_c01110{font-size:64.000000pt;}
.fs4_c01110{font-size:69.333333pt;}
.fs1_c01110{font-size:72.000000pt;}
.fs0_c01110{font-size:88.000000pt;}
.y0_c01110{bottom:0.000000pt;}
.y25_c01110{bottom:2.760000pt;}
.y24_c01110{bottom:6.425217pt;}
.y23_c01110{bottom:50.906667pt;}
.y22_c01110{bottom:73.706667pt;}
.y21_c01110{bottom:95.973333pt;}
.y20_c01110{bottom:118.240000pt;}
.y1f_c01110{bottom:139.706667pt;}
.y1e_c01110{bottom:161.440000pt;}
.y1d_c01110{bottom:182.906667pt;}
.y1c_c01110{bottom:204.906667pt;}
.y1b_c01110{bottom:226.240000pt;}
.y1a_c01110{bottom:248.106667pt;}
.y19_c01110{bottom:270.240000pt;}
.y18_c01110{bottom:291.573333pt;}
.y17_c01110{bottom:312.640000pt;}
.y16_c01110{bottom:334.506667pt;}
.y15_c01110{bottom:356.106667pt;}
.y14_c01110{bottom:376.506667pt;}
.y13_c01110{bottom:399.306667pt;}
.y12_c01110{bottom:439.840000pt;}
.y11_c01110{bottom:462.240000pt;}
.y10_c01110{bottom:484.106667pt;}
.yf_c01110{bottom:504.906667pt;}
.ye_c01110{bottom:525.573333pt;}
.yd_c01110{bottom:546.906667pt;}
.yc_c01110{bottom:568.106667pt;}
.yb_c01110{bottom:590.906667pt;}
.ya_c01110{bottom:611.040000pt;}
.y9_c01110{bottom:632.640000pt;}
.y8_c01110{bottom:654.506667pt;}
.y7_c01110{bottom:675.840000pt;}
.y6_c01110{bottom:697.173333pt;}
.y5_c01110{bottom:719.040000pt;}
.y4_c01110{bottom:740.373333pt;}
.y3_c01110{bottom:762.240000pt;}
.y2_c01110{bottom:783.840000pt;}
.y1_c01110{bottom:820.106667pt;}
.ha_c01110{height:11.733399pt;}
.hb_c01110{height:38.937500pt;}
.h5_c01110{height:51.062500pt;}
.h7_c01110{height:54.960938pt;}
.h9_c01110{height:64.500000pt;}
.h4_c01110{height:70.664062pt;}
.h8_c01110{height:73.864063pt;}
.h3_c01110{height:74.906250pt;}
.h6_c01110{height:87.783854pt;}
.h2_c01110{height:102.996094pt;}
.h1_c01110{height:876.666667pt;}
.h0_c01110{height:876.933333pt;}
.w1_c01110{width:93.222667pt;}
.w0_c01110{width:597.333333pt;}
.x0_c01110{left:0.000000pt;}
.x5_c01110{left:41.333333pt;}
.x4_c01110{left:47.066667pt;}
.x3_c01110{left:48.266667pt;}
.x2_c01110{left:49.200000pt;}
.x6_c01110{left:50.400000pt;}
.x8_c01110{left:52.266667pt;}
.xa_c01110{left:53.466667pt;}
.xb_c01110{left:54.400000pt;}
.xc_c01110{left:55.600000pt;}
.x1_c01110{left:60.666667pt;}
.x9_c01110{left:87.866667pt;}
.x7_c01110{left:113.200000pt;}
.xe_c01110{left:255.834880pt;}
.xd_c01110{left:356.133333pt;}
}





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

.ir_c01111:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01111{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01111;src:url('chunks/assets/font_c0ae5ab4160aed18a80c77fe.woff2')format("woff");}.ff1_c01111{font-family:ff1_c01111;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01111;src:url('chunks/assets/font_0817b2bef2958489db55cd6d.woff2')format("woff");}.ff2_c01111{font-family:ff2_c01111;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01111;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff3_c01111{font-family:ff3_c01111;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01111;src:url('chunks/assets/font_97dd00512bde0dc38aa3365c.woff2')format("woff");}.ff4_c01111{font-family:ff4_c01111;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01111;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c01111{font-family:ff5_c01111;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01111{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01111{vertical-align:0.000000px;}
.ls4_c01111{letter-spacing:0.000000px;}
.ls3_c01111{letter-spacing:15.480000px;}
.ls0_c01111{letter-spacing:18.570000px;}
.ls1_c01111{letter-spacing:22.200000px;}
.ls2_c01111{letter-spacing:31.848000px;}
.sc__c01111{text-shadow:none;}
.sc0_c01111{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01111{-webkit-text-stroke:0px transparent;}
.sc0_c01111{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c01111{word-spacing:-31.500000px;}
.ws4_c01111{word-spacing:-20.250000px;}
.ws0_c01111{word-spacing:-17.352000px;}
.ws5_c01111{word-spacing:0.000000px;}
.ws2_c01111{word-spacing:0.456000px;}
.ws1_c01111{word-spacing:2.736000px;}
._16_c01111{margin-left:-38.151000px;}
._18_c01111{margin-left:-25.191000px;}
._29_c01111{margin-left:-20.169000px;}
._26_c01111{margin-left:-16.596000px;}
._12_c01111{margin-left:-12.555000px;}
._14_c01111{margin-left:-11.502000px;}
._10_c01111{margin-left:-8.061000px;}
._1a_c01111{margin-left:-7.047000px;}
._9_c01111{margin-left:-5.472000px;}
._8_c01111{margin-left:-3.942000px;}
._23_c01111{margin-left:-2.898000px;}
._b_c01111{margin-left:-1.800000px;}
._6_c01111{width:1.755000px;}
._1_c01111{width:3.384000px;}
._2_c01111{width:4.392000px;}
._4_c01111{width:5.991000px;}
._e_c01111{width:7.011000px;}
._0_c01111{width:8.064000px;}
._3_c01111{width:9.216000px;}
._22_c01111{width:10.791000px;}
._5_c01111{width:11.799000px;}
._f_c01111{width:13.014000px;}
._7_c01111{width:14.334000px;}
._d_c01111{width:16.317000px;}
._27_c01111{width:17.853000px;}
._1f_c01111{width:19.047000px;}
._11_c01111{width:21.798000px;}
._28_c01111{width:22.827000px;}
._24_c01111{width:24.192000px;}
._20_c01111{width:25.992000px;}
._15_c01111{width:28.350000px;}
._a_c01111{width:29.517000px;}
._1d_c01111{width:30.579000px;}
._c_c01111{width:32.115000px;}
._25_c01111{width:33.744000px;}
._1b_c01111{width:35.289000px;}
._21_c01111{width:37.506000px;}
._2b_c01111{width:45.558000px;}
._2a_c01111{width:47.910000px;}
._13_c01111{width:49.896000px;}
._1e_c01111{width:64.152000px;}
._17_c01111{width:112.671000px;}
._2c_c01111{width:158.916000px;}
._1c_c01111{width:186.540000px;}
._19_c01111{width:284.229000px;}
._2d_c01111{width:314.442000px;}
.fc2_c01111{color:transparent;}
.fc1_c01111{color:rgb(128,128,128);}
.fc0_c01111{color:rgb(0,0,0);}
.fs5_c01111{font-size:48.000000px;}
.fs2_c01111{font-size:57.000000px;}
.fs3_c01111{font-size:63.000000px;}
.fs4_c01111{font-size:66.000000px;}
.fs0_c01111{font-size:72.000000px;}
.fs1_c01111{font-size:81.000000px;}
.y0_c01111{bottom:0.000000px;}
.y25_c01111{bottom:3.105000px;}
.y24_c01111{bottom:7.228371px;}
.y23_c01111{bottom:63.765000px;}
.y22_c01111{bottom:86.115000px;}
.y21_c01111{bottom:111.165000px;}
.y20_c01111{bottom:136.665000px;}
.y1f_c01111{bottom:160.665000px;}
.y1e_c01111{bottom:184.965000px;}
.y1d_c01111{bottom:210.015000px;}
.y1c_c01111{bottom:235.365000px;}
.y1b_c01111{bottom:258.915000px;}
.y1a_c01111{bottom:285.615000px;}
.y19_c01111{bottom:306.915000px;}
.y18_c01111{bottom:331.815000px;}
.y17_c01111{bottom:356.415000px;}
.y16_c01111{bottom:382.365000px;}
.y15_c01111{bottom:405.015000px;}
.y14_c01111{bottom:429.315000px;}
.y13_c01111{bottom:453.315000px;}
.y12_c01111{bottom:477.165000px;}
.y11_c01111{bottom:501.315000px;}
.y10_c01111{bottom:525.465000px;}
.yf_c01111{bottom:549.465000px;}
.ye_c01111{bottom:574.215000px;}
.yd_c01111{bottom:598.365000px;}
.yc_c01111{bottom:622.065000px;}
.yb_c01111{bottom:646.665000px;}
.ya_c01111{bottom:670.665000px;}
.y9_c01111{bottom:694.665000px;}
.y8_c01111{bottom:718.965000px;}
.y7_c01111{bottom:743.865000px;}
.y6_c01111{bottom:767.865000px;}
.y5_c01111{bottom:791.415000px;}
.y4_c01111{bottom:815.415000px;}
.y3_c01111{bottom:840.165000px;}
.y2_c01111{bottom:863.115000px;}
.y1_c01111{bottom:887.415000px;}
.h5_c01111{height:13.200074px;}
.h6_c01111{height:43.804688px;}
.h4_c01111{height:72.168457px;}
.h3_c01111{height:79.497070px;}
.h2_c01111{height:84.269531px;}
.h1_c01111{height:986.250000px;}
.h0_c01111{height:986.325000px;}
.w2_c01111{width:104.875500px;}
.w0_c01111{width:667.425000px;}
.w1_c01111{width:667.500000px;}
.x0_c01111{left:0.000000px;}
.x11_c01111{left:28.800000px;}
.x4_c01111{left:32.100000px;}
.xe_c01111{left:34.050000px;}
.xd_c01111{left:35.700000px;}
.x2_c01111{left:37.800000px;}
.x6_c01111{left:39.450000px;}
.x7_c01111{left:41.400000px;}
.x1_c01111{left:42.450000px;}
.x5_c01111{left:89.400000px;}
.x8_c01111{left:99.600000px;}
.x9_c01111{left:123.450000px;}
.x10_c01111{left:124.800000px;}
.xf_c01111{left:126.450000px;}
.xc_c01111{left:127.950000px;}
.xb_c01111{left:129.300000px;}
.xa_c01111{left:131.850000px;}
.x3_c01111{left:135.900000px;}
.x13_c01111{left:285.526749px;}
.x12_c01111{left:564.000000px;}
@media print{
.v0_c01111{vertical-align:0.000000pt;}
.ls4_c01111{letter-spacing:0.000000pt;}
.ls3_c01111{letter-spacing:13.760000pt;}
.ls0_c01111{letter-spacing:16.506667pt;}
.ls1_c01111{letter-spacing:19.733333pt;}
.ls2_c01111{letter-spacing:28.309333pt;}
.ws3_c01111{word-spacing:-28.000000pt;}
.ws4_c01111{word-spacing:-18.000000pt;}
.ws0_c01111{word-spacing:-15.424000pt;}
.ws5_c01111{word-spacing:0.000000pt;}
.ws2_c01111{word-spacing:0.405333pt;}
.ws1_c01111{word-spacing:2.432000pt;}
._16_c01111{margin-left:-33.912000pt;}
._18_c01111{margin-left:-22.392000pt;}
._29_c01111{margin-left:-17.928000pt;}
._26_c01111{margin-left:-14.752000pt;}
._12_c01111{margin-left:-11.160000pt;}
._14_c01111{margin-left:-10.224000pt;}
._10_c01111{margin-left:-7.165333pt;}
._1a_c01111{margin-left:-6.264000pt;}
._9_c01111{margin-left:-4.864000pt;}
._8_c01111{margin-left:-3.504000pt;}
._23_c01111{margin-left:-2.576000pt;}
._b_c01111{margin-left:-1.600000pt;}
._6_c01111{width:1.560000pt;}
._1_c01111{width:3.008000pt;}
._2_c01111{width:3.904000pt;}
._4_c01111{width:5.325333pt;}
._e_c01111{width:6.232000pt;}
._0_c01111{width:7.168000pt;}
._3_c01111{width:8.192000pt;}
._22_c01111{width:9.592000pt;}
._5_c01111{width:10.488000pt;}
._f_c01111{width:11.568000pt;}
._7_c01111{width:12.741333pt;}
._d_c01111{width:14.504000pt;}
._27_c01111{width:15.869333pt;}
._1f_c01111{width:16.930667pt;}
._11_c01111{width:19.376000pt;}
._28_c01111{width:20.290667pt;}
._24_c01111{width:21.504000pt;}
._20_c01111{width:23.104000pt;}
._15_c01111{width:25.200000pt;}
._a_c01111{width:26.237333pt;}
._1d_c01111{width:27.181333pt;}
._c_c01111{width:28.546667pt;}
._25_c01111{width:29.994667pt;}
._1b_c01111{width:31.368000pt;}
._21_c01111{width:33.338667pt;}
._2b_c01111{width:40.496000pt;}
._2a_c01111{width:42.586667pt;}
._13_c01111{width:44.352000pt;}
._1e_c01111{width:57.024000pt;}
._17_c01111{width:100.152000pt;}
._2c_c01111{width:141.258667pt;}
._1c_c01111{width:165.813333pt;}
._19_c01111{width:252.648000pt;}
._2d_c01111{width:279.504000pt;}
.fs5_c01111{font-size:42.666667pt;}
.fs2_c01111{font-size:50.666667pt;}
.fs3_c01111{font-size:56.000000pt;}
.fs4_c01111{font-size:58.666667pt;}
.fs0_c01111{font-size:64.000000pt;}
.fs1_c01111{font-size:72.000000pt;}
.y0_c01111{bottom:0.000000pt;}
.y25_c01111{bottom:2.760000pt;}
.y24_c01111{bottom:6.425219pt;}
.y23_c01111{bottom:56.680000pt;}
.y22_c01111{bottom:76.546667pt;}
.y21_c01111{bottom:98.813333pt;}
.y20_c01111{bottom:121.480000pt;}
.y1f_c01111{bottom:142.813333pt;}
.y1e_c01111{bottom:164.413333pt;}
.y1d_c01111{bottom:186.680000pt;}
.y1c_c01111{bottom:209.213333pt;}
.y1b_c01111{bottom:230.146667pt;}
.y1a_c01111{bottom:253.880000pt;}
.y19_c01111{bottom:272.813333pt;}
.y18_c01111{bottom:294.946667pt;}
.y17_c01111{bottom:316.813333pt;}
.y16_c01111{bottom:339.880000pt;}
.y15_c01111{bottom:360.013333pt;}
.y14_c01111{bottom:381.613333pt;}
.y13_c01111{bottom:402.946667pt;}
.y12_c01111{bottom:424.146667pt;}
.y11_c01111{bottom:445.613333pt;}
.y10_c01111{bottom:467.080000pt;}
.yf_c01111{bottom:488.413333pt;}
.ye_c01111{bottom:510.413333pt;}
.yd_c01111{bottom:531.880000pt;}
.yc_c01111{bottom:552.946667pt;}
.yb_c01111{bottom:574.813333pt;}
.ya_c01111{bottom:596.146667pt;}
.y9_c01111{bottom:617.480000pt;}
.y8_c01111{bottom:639.080000pt;}
.y7_c01111{bottom:661.213333pt;}
.y6_c01111{bottom:682.546667pt;}
.y5_c01111{bottom:703.480000pt;}
.y4_c01111{bottom:724.813333pt;}
.y3_c01111{bottom:746.813333pt;}
.y2_c01111{bottom:767.213333pt;}
.y1_c01111{bottom:788.813333pt;}
.h5_c01111{height:11.733399pt;}
.h6_c01111{height:38.937500pt;}
.h4_c01111{height:64.149740pt;}
.h3_c01111{height:70.664062pt;}
.h2_c01111{height:74.906250pt;}
.h1_c01111{height:876.666667pt;}
.h0_c01111{height:876.733333pt;}
.w2_c01111{width:93.222667pt;}
.w0_c01111{width:593.266667pt;}
.w1_c01111{width:593.333333pt;}
.x0_c01111{left:0.000000pt;}
.x11_c01111{left:25.600000pt;}
.x4_c01111{left:28.533333pt;}
.xe_c01111{left:30.266667pt;}
.xd_c01111{left:31.733333pt;}
.x2_c01111{left:33.600000pt;}
.x6_c01111{left:35.066667pt;}
.x7_c01111{left:36.800000pt;}
.x1_c01111{left:37.733333pt;}
.x5_c01111{left:79.466667pt;}
.x8_c01111{left:88.533333pt;}
.x9_c01111{left:109.733333pt;}
.x10_c01111{left:110.933333pt;}
.xf_c01111{left:112.400000pt;}
.xc_c01111{left:113.733333pt;}
.xb_c01111{left:114.933333pt;}
.xa_c01111{left:117.200000pt;}
.x3_c01111{left:120.800000pt;}
.x13_c01111{left:253.801554pt;}
.x12_c01111{left:501.333333pt;}
}





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

.ir_c01112:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01112{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01112;src:url('chunks/assets/font_1e5ce656cf5c2a068b1d9bc1.woff2')format("woff");}.ff1_c01112{font-family:ff1_c01112;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01112;src:url('chunks/assets/font_5a95887da7feb1b0be5b09fe.woff2')format("woff");}.ff2_c01112{font-family:ff2_c01112;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01112;src:url('chunks/assets/font_d1c1a5237dac1e2af66d7ad7.woff2')format("woff");}.ff3_c01112{font-family:ff3_c01112;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01112;src:url('chunks/assets/font_8bf73d0af8d986e0cbda010e.woff2')format("woff");}.ff4_c01112{font-family:ff4_c01112;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01112;src:url('chunks/assets/font_ac23235cb19f21ccc3198dcb.woff2')format("woff");}.ff5_c01112{font-family:ff5_c01112;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01112;src:url('chunks/assets/font_6fd06679522dba0ac1839d55.woff2')format("woff");}.ff6_c01112{font-family:ff6_c01112;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01112;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c01112{font-family:ff7_c01112;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01112{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01112{vertical-align:0.000000px;}
.ls2_c01112{letter-spacing:0.000000px;}
.ls1_c01112{letter-spacing:3.000000px;}
.ls3_c01112{letter-spacing:6.000000px;}
.ls0_c01112{letter-spacing:44.802000px;}
.sc__c01112{text-shadow:none;}
.sc0_c01112{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01112{-webkit-text-stroke:0px transparent;}
.sc0_c01112{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01112{word-spacing:-73.686000px;}
.ws1_c01112{word-spacing:-17.352000px;}
.ws2_c01112{word-spacing:0.000000px;}
._1a_c01112{margin-left:-22.665000px;}
._1b_c01112{margin-left:-16.824000px;}
._1d_c01112{margin-left:-15.144000px;}
._1f_c01112{margin-left:-12.927000px;}
._4_c01112{margin-left:-10.710000px;}
._b_c01112{margin-left:-8.607000px;}
._17_c01112{margin-left:-6.597000px;}
._c_c01112{margin-left:-5.550000px;}
._7_c01112{margin-left:-4.488000px;}
._5_c01112{margin-left:-3.468000px;}
._6_c01112{margin-left:-1.938000px;}
._11_c01112{width:1.140000px;}
._8_c01112{width:2.448000px;}
._3_c01112{width:4.182000px;}
._a_c01112{width:5.220000px;}
._e_c01112{width:6.267000px;}
._2_c01112{width:8.160000px;}
._1_c01112{width:9.282000px;}
._0_c01112{width:10.608000px;}
._12_c01112{width:12.228000px;}
._d_c01112{width:13.326000px;}
._14_c01112{width:16.134000px;}
._20_c01112{width:17.556000px;}
._25_c01112{width:19.788000px;}
._f_c01112{width:21.489000px;}
._21_c01112{width:24.060000px;}
._19_c01112{width:25.572000px;}
._10_c01112{width:32.076000px;}
._22_c01112{width:34.695000px;}
._1e_c01112{width:35.934000px;}
._26_c01112{width:38.334000px;}
._9_c01112{width:63.672000px;}
._16_c01112{width:82.395000px;}
._13_c01112{width:92.694000px;}
._1c_c01112{width:109.674000px;}
._18_c01112{width:148.725000px;}
._15_c01112{width:198.225000px;}
._23_c01112{width:238.731000px;}
._24_c01112{width:241.110000px;}
._27_c01112{width:277.275000px;}
.fc2_c01112{color:transparent;}
.fc1_c01112{color:rgb(128,128,128);}
.fc0_c01112{color:rgb(0,0,0);}
.fs8_c01112{font-size:48.000000px;}
.fs6_c01112{font-size:57.000000px;}
.fs5_c01112{font-size:72.000000px;}
.fs2_c01112{font-size:75.000000px;}
.fs7_c01112{font-size:78.000000px;}
.fs3_c01112{font-size:81.000000px;}
.fs4_c01112{font-size:87.000000px;}
.fs0_c01112{font-size:102.000000px;}
.fs1_c01112{font-size:120.000000px;}
.y0_c01112{bottom:0.000000px;}
.y26_c01112{bottom:3.105000px;}
.y25_c01112{bottom:7.228357px;}
.y24_c01112{bottom:40.830000px;}
.y23_c01112{bottom:69.180000px;}
.y22_c01112{bottom:93.930000px;}
.y21_c01112{bottom:118.830000px;}
.y20_c01112{bottom:142.830000px;}
.y1f_c01112{bottom:167.730000px;}
.y1e_c01112{bottom:191.730000px;}
.y1d_c01112{bottom:216.330000px;}
.y1c_c01112{bottom:240.630000px;}
.y1b_c01112{bottom:264.330000px;}
.y1a_c01112{bottom:288.630000px;}
.y19_c01112{bottom:312.630000px;}
.y18_c01112{bottom:336.930000px;}
.y17_c01112{bottom:361.530000px;}
.y16_c01112{bottom:385.080000px;}
.y15_c01112{bottom:409.380000px;}
.y14_c01112{bottom:433.380000px;}
.y13_c01112{bottom:457.080000px;}
.y12_c01112{bottom:481.680000px;}
.y11_c01112{bottom:505.530000px;}
.y10_c01112{bottom:528.630000px;}
.yf_c01112{bottom:552.780000px;}
.ye_c01112{bottom:577.080000px;}
.yd_c01112{bottom:601.080000px;}
.yc_c01112{bottom:625.380000px;}
.yb_c01112{bottom:649.080000px;}
.ya_c01112{bottom:673.380000px;}
.y9_c01112{bottom:697.680000px;}
.y8_c01112{bottom:722.280000px;}
.y7_c01112{bottom:747.930000px;}
.y6_c01112{bottom:770.880000px;}
.y5_c01112{bottom:795.480000px;}
.y4_c01112{bottom:819.780000px;}
.y3_c01112{bottom:844.380000px;}
.y2_c01112{bottom:868.680000px;}
.y1_c01112{bottom:905.280000px;}
.h8_c01112{height:13.200074px;}
.h9_c01112{height:43.804688px;}
.h4_c01112{height:79.497070px;}
.h6_c01112{height:84.269531px;}
.h5_c01112{height:91.176000px;}
.h3_c01112{height:94.958496px;}
.h7_c01112{height:98.756836px;}
.h2_c01112{height:120.937500px;}
.h1_c01112{height:973.500000px;}
.h0_c01112{height:973.650000px;}
.w2_c01112{width:104.875500px;}
.w1_c01112{width:662.250000px;}
.w0_c01112{width:662.550000px;}
.x0_c01112{left:0.000000px;}
.x5_c01112{left:42.600000px;}
.x6_c01112{left:57.300000px;}
.x3_c01112{left:59.400000px;}
.x2_c01112{left:60.750000px;}
.x4_c01112{left:61.800000px;}
.x1_c01112{left:78.600000px;}
.x8_c01112{left:283.089249px;}
.x7_c01112{left:404.250000px;}
@media print{
.v0_c01112{vertical-align:0.000000pt;}
.ls2_c01112{letter-spacing:0.000000pt;}
.ls1_c01112{letter-spacing:2.666667pt;}
.ls3_c01112{letter-spacing:5.333333pt;}
.ls0_c01112{letter-spacing:39.824000pt;}
.ws0_c01112{word-spacing:-65.498667pt;}
.ws1_c01112{word-spacing:-15.424000pt;}
.ws2_c01112{word-spacing:0.000000pt;}
._1a_c01112{margin-left:-20.146667pt;}
._1b_c01112{margin-left:-14.954667pt;}
._1d_c01112{margin-left:-13.461333pt;}
._1f_c01112{margin-left:-11.490667pt;}
._4_c01112{margin-left:-9.520000pt;}
._b_c01112{margin-left:-7.650667pt;}
._17_c01112{margin-left:-5.864000pt;}
._c_c01112{margin-left:-4.933333pt;}
._7_c01112{margin-left:-3.989333pt;}
._5_c01112{margin-left:-3.082667pt;}
._6_c01112{margin-left:-1.722667pt;}
._11_c01112{width:1.013333pt;}
._8_c01112{width:2.176000pt;}
._3_c01112{width:3.717333pt;}
._a_c01112{width:4.640000pt;}
._e_c01112{width:5.570667pt;}
._2_c01112{width:7.253333pt;}
._1_c01112{width:8.250667pt;}
._0_c01112{width:9.429333pt;}
._12_c01112{width:10.869333pt;}
._d_c01112{width:11.845333pt;}
._14_c01112{width:14.341333pt;}
._20_c01112{width:15.605333pt;}
._25_c01112{width:17.589333pt;}
._f_c01112{width:19.101333pt;}
._21_c01112{width:21.386667pt;}
._19_c01112{width:22.730667pt;}
._10_c01112{width:28.512000pt;}
._22_c01112{width:30.840000pt;}
._1e_c01112{width:31.941333pt;}
._26_c01112{width:34.074667pt;}
._9_c01112{width:56.597333pt;}
._16_c01112{width:73.240000pt;}
._13_c01112{width:82.394667pt;}
._1c_c01112{width:97.488000pt;}
._18_c01112{width:132.200000pt;}
._15_c01112{width:176.200000pt;}
._23_c01112{width:212.205333pt;}
._24_c01112{width:214.320000pt;}
._27_c01112{width:246.466667pt;}
.fs8_c01112{font-size:42.666667pt;}
.fs6_c01112{font-size:50.666667pt;}
.fs5_c01112{font-size:64.000000pt;}
.fs2_c01112{font-size:66.666667pt;}
.fs7_c01112{font-size:69.333333pt;}
.fs3_c01112{font-size:72.000000pt;}
.fs4_c01112{font-size:77.333333pt;}
.fs0_c01112{font-size:90.666667pt;}
.fs1_c01112{font-size:106.666667pt;}
.y0_c01112{bottom:0.000000pt;}
.y26_c01112{bottom:2.760000pt;}
.y25_c01112{bottom:6.425206pt;}
.y24_c01112{bottom:36.293333pt;}
.y23_c01112{bottom:61.493333pt;}
.y22_c01112{bottom:83.493333pt;}
.y21_c01112{bottom:105.626667pt;}
.y20_c01112{bottom:126.960000pt;}
.y1f_c01112{bottom:149.093333pt;}
.y1e_c01112{bottom:170.426667pt;}
.y1d_c01112{bottom:192.293333pt;}
.y1c_c01112{bottom:213.893333pt;}
.y1b_c01112{bottom:234.960000pt;}
.y1a_c01112{bottom:256.560000pt;}
.y19_c01112{bottom:277.893333pt;}
.y18_c01112{bottom:299.493333pt;}
.y17_c01112{bottom:321.360000pt;}
.y16_c01112{bottom:342.293333pt;}
.y15_c01112{bottom:363.893333pt;}
.y14_c01112{bottom:385.226667pt;}
.y13_c01112{bottom:406.293333pt;}
.y12_c01112{bottom:428.160000pt;}
.y11_c01112{bottom:449.360000pt;}
.y10_c01112{bottom:469.893333pt;}
.yf_c01112{bottom:491.360000pt;}
.ye_c01112{bottom:512.960000pt;}
.yd_c01112{bottom:534.293333pt;}
.yc_c01112{bottom:555.893333pt;}
.yb_c01112{bottom:576.960000pt;}
.ya_c01112{bottom:598.560000pt;}
.y9_c01112{bottom:620.160000pt;}
.y8_c01112{bottom:642.026667pt;}
.y7_c01112{bottom:664.826667pt;}
.y6_c01112{bottom:685.226667pt;}
.y5_c01112{bottom:707.093333pt;}
.y4_c01112{bottom:728.693333pt;}
.y3_c01112{bottom:750.560000pt;}
.y2_c01112{bottom:772.160000pt;}
.y1_c01112{bottom:804.693333pt;}
.h8_c01112{height:11.733399pt;}
.h9_c01112{height:38.937500pt;}
.h4_c01112{height:70.664062pt;}
.h6_c01112{height:74.906250pt;}
.h5_c01112{height:81.045333pt;}
.h3_c01112{height:84.407552pt;}
.h7_c01112{height:87.783854pt;}
.h2_c01112{height:107.500000pt;}
.h1_c01112{height:865.333333pt;}
.h0_c01112{height:865.466667pt;}
.w2_c01112{width:93.222667pt;}
.w1_c01112{width:588.666667pt;}
.w0_c01112{width:588.933333pt;}
.x0_c01112{left:0.000000pt;}
.x5_c01112{left:37.866667pt;}
.x6_c01112{left:50.933333pt;}
.x3_c01112{left:52.800000pt;}
.x2_c01112{left:54.000000pt;}
.x4_c01112{left:54.933333pt;}
.x1_c01112{left:69.866667pt;}
.x8_c01112{left:251.634888pt;}
.x7_c01112{left:359.333333pt;}
}





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

.ir_c01113:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01113{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01113;src:url('chunks/assets/font_069ac9ca094e2f91e8f5d833.woff2')format("woff");}.ff1_c01113{font-family:ff1_c01113;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01113;src:url('chunks/assets/font_7160557c5fa52a3feff21843.woff2')format("woff");}.ff2_c01113{font-family:ff2_c01113;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01113;src:url('chunks/assets/font_2c7dd1b2684ccf56aab11492.woff2')format("woff");}.ff3_c01113{font-family:ff3_c01113;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01113;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff4_c01113{font-family:ff4_c01113;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01113;src:url('chunks/assets/font_fa9b8e17f4228cd4e984f805.woff2')format("woff");}.ff5_c01113{font-family:ff5_c01113;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01113;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c01113{font-family:ff6_c01113;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01113{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01113{vertical-align:0.000000px;}
.ls1_c01113{letter-spacing:0.000000px;}
.ls2_c01113{letter-spacing:6.000000px;}
.ls0_c01113{letter-spacing:18.000000px;}
.sc__c01113{text-shadow:none;}
.sc0_c01113{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01113{-webkit-text-stroke:0px transparent;}
.sc0_c01113{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01113{word-spacing:-20.250000px;}
.ws0_c01113{word-spacing:-17.352000px;}
.ws2_c01113{word-spacing:0.000000px;}
._15_c01113{margin-left:-26.664000px;}
._1e_c01113{margin-left:-25.191000px;}
._1c_c01113{margin-left:-22.761000px;}
._2d_c01113{margin-left:-15.633000px;}
._a_c01113{margin-left:-14.004000px;}
._8_c01113{margin-left:-10.800000px;}
._10_c01113{margin-left:-9.063000px;}
._b_c01113{margin-left:-7.884000px;}
._c_c01113{margin-left:-6.120000px;}
._1_c01113{margin-left:-4.779000px;}
._0_c01113{margin-left:-3.564000px;}
._4_c01113{margin-left:-1.782000px;}
._6_c01113{width:1.782000px;}
._3_c01113{width:2.997000px;}
._2_c01113{width:4.050000px;}
._5_c01113{width:5.994000px;}
._11_c01113{width:7.047000px;}
._7_c01113{width:8.586000px;}
._26_c01113{width:9.618000px;}
._12_c01113{width:10.656000px;}
._13_c01113{width:12.150000px;}
._1a_c01113{width:13.584000px;}
._1b_c01113{width:15.471000px;}
._16_c01113{width:18.201000px;}
._24_c01113{width:21.570000px;}
._22_c01113{width:23.085000px;}
._23_c01113{width:24.867000px;}
._2c_c01113{width:26.505000px;}
._14_c01113{width:27.786000px;}
._2e_c01113{width:29.322000px;}
._17_c01113{width:31.491000px;}
._27_c01113{width:33.210000px;}
._28_c01113{width:36.288000px;}
._29_c01113{width:40.014000px;}
._18_c01113{width:41.049000px;}
._2b_c01113{width:47.487000px;}
._25_c01113{width:50.481000px;}
._20_c01113{width:67.635000px;}
._1d_c01113{width:89.829000px;}
._9_c01113{width:120.888000px;}
._d_c01113{width:149.112000px;}
._1f_c01113{width:153.414000px;}
._21_c01113{width:168.723000px;}
._19_c01113{width:177.468000px;}
._2a_c01113{width:269.649000px;}
._e_c01113{width:550.251000px;}
._f_c01113{width:567.900000px;}
.fc2_c01113{color:transparent;}
.fc1_c01113{color:rgb(128,128,128);}
.fc0_c01113{color:rgb(0,0,0);}
.fs2_c01113{font-size:36.000000px;}
.fs4_c01113{font-size:48.000000px;}
.fs3_c01113{font-size:66.000000px;}
.fs1_c01113{font-size:72.000000px;}
.fs0_c01113{font-size:81.000000px;}
.y0_c01113{bottom:0.000000px;}
.y26_c01113{bottom:3.105000px;}
.y25_c01113{bottom:7.228371px;}
.y24_c01113{bottom:54.765000px;}
.y23_c01113{bottom:78.315000px;}
.y22_c01113{bottom:103.965000px;}
.y21_c01113{bottom:126.915000px;}
.y20_c01113{bottom:152.865000px;}
.y1f_c01113{bottom:175.815000px;}
.y1e_c01113{bottom:201.915000px;}
.y1d_c01113{bottom:226.215000px;}
.y1c_c01113{bottom:250.815000px;}
.y1b_c01113{bottom:274.815000px;}
.y1a_c01113{bottom:300.015000px;}
.y19_c01113{bottom:324.315000px;}
.y18_c01113{bottom:348.765000px;}
.y17_c01113{bottom:373.065000px;}
.y16_c01113{bottom:397.365000px;}
.y15_c01113{bottom:421.965000px;}
.y14_c01113{bottom:445.965000px;}
.y13_c01113{bottom:470.115000px;}
.y12_c01113{bottom:494.865000px;}
.y11_c01113{bottom:518.115000px;}
.y10_c01113{bottom:542.115000px;}
.yf_c01113{bottom:565.965000px;}
.ye_c01113{bottom:590.715000px;}
.yd_c01113{bottom:614.715000px;}
.yc_c01113{bottom:639.315000px;}
.yb_c01113{bottom:663.915000px;}
.ya_c01113{bottom:688.515000px;}
.y9_c01113{bottom:712.515000px;}
.y8_c01113{bottom:737.115000px;}
.y7_c01113{bottom:761.415000px;}
.y6_c01113{bottom:785.415000px;}
.y5_c01113{bottom:809.415000px;}
.y4_c01113{bottom:833.715000px;}
.y3_c01113{bottom:858.015000px;}
.y2_c01113{bottom:873.915000px;}
.y1_c01113{bottom:882.015000px;}
.h6_c01113{height:13.200074px;}
.h3_c01113{height:36.281250px;}
.h7_c01113{height:43.804688px;}
.h4_c01113{height:79.497070px;}
.h2_c01113{height:84.269531px;}
.h5_c01113{height:91.160156px;}
.h1_c01113{height:986.250000px;}
.h0_c01113{height:986.325000px;}
.w2_c01113{width:104.875500px;}
.w0_c01113{width:667.425000px;}
.w1_c01113{width:667.500000px;}
.x0_c01113{left:0.000000px;}
.x4_c01113{left:21.900000px;}
.x5_c01113{left:22.950000px;}
.x8_c01113{left:24.900000px;}
.xa_c01113{left:26.250000px;}
.x6_c01113{left:34.800000px;}
.x7_c01113{left:50.250000px;}
.xb_c01113{left:98.550000px;}
.x3_c01113{left:115.800000px;}
.x1_c01113{left:117.750000px;}
.x9_c01113{left:118.800000px;}
.x2_c01113{left:200.850000px;}
.xd_c01113{left:285.526749px;}
.xc_c01113{left:585.600000px;}
@media print{
.v0_c01113{vertical-align:0.000000pt;}
.ls1_c01113{letter-spacing:0.000000pt;}
.ls2_c01113{letter-spacing:5.333333pt;}
.ls0_c01113{letter-spacing:16.000000pt;}
.ws1_c01113{word-spacing:-18.000000pt;}
.ws0_c01113{word-spacing:-15.424000pt;}
.ws2_c01113{word-spacing:0.000000pt;}
._15_c01113{margin-left:-23.701333pt;}
._1e_c01113{margin-left:-22.392000pt;}
._1c_c01113{margin-left:-20.232000pt;}
._2d_c01113{margin-left:-13.896000pt;}
._a_c01113{margin-left:-12.448000pt;}
._8_c01113{margin-left:-9.600000pt;}
._10_c01113{margin-left:-8.056000pt;}
._b_c01113{margin-left:-7.008000pt;}
._c_c01113{margin-left:-5.440000pt;}
._1_c01113{margin-left:-4.248000pt;}
._0_c01113{margin-left:-3.168000pt;}
._4_c01113{margin-left:-1.584000pt;}
._6_c01113{width:1.584000pt;}
._3_c01113{width:2.664000pt;}
._2_c01113{width:3.600000pt;}
._5_c01113{width:5.328000pt;}
._11_c01113{width:6.264000pt;}
._7_c01113{width:7.632000pt;}
._26_c01113{width:8.549333pt;}
._12_c01113{width:9.472000pt;}
._13_c01113{width:10.800000pt;}
._1a_c01113{width:12.074667pt;}
._1b_c01113{width:13.752000pt;}
._16_c01113{width:16.178667pt;}
._24_c01113{width:19.173333pt;}
._22_c01113{width:20.520000pt;}
._23_c01113{width:22.104000pt;}
._2c_c01113{width:23.560000pt;}
._14_c01113{width:24.698667pt;}
._2e_c01113{width:26.064000pt;}
._17_c01113{width:27.992000pt;}
._27_c01113{width:29.520000pt;}
._28_c01113{width:32.256000pt;}
._29_c01113{width:35.568000pt;}
._18_c01113{width:36.488000pt;}
._2b_c01113{width:42.210667pt;}
._25_c01113{width:44.872000pt;}
._20_c01113{width:60.120000pt;}
._1d_c01113{width:79.848000pt;}
._9_c01113{width:107.456000pt;}
._d_c01113{width:132.544000pt;}
._1f_c01113{width:136.368000pt;}
._21_c01113{width:149.976000pt;}
._19_c01113{width:157.749333pt;}
._2a_c01113{width:239.688000pt;}
._e_c01113{width:489.112000pt;}
._f_c01113{width:504.800000pt;}
.fs2_c01113{font-size:32.000000pt;}
.fs4_c01113{font-size:42.666667pt;}
.fs3_c01113{font-size:58.666667pt;}
.fs1_c01113{font-size:64.000000pt;}
.fs0_c01113{font-size:72.000000pt;}
.y0_c01113{bottom:0.000000pt;}
.y26_c01113{bottom:2.760000pt;}
.y25_c01113{bottom:6.425219pt;}
.y24_c01113{bottom:48.680000pt;}
.y23_c01113{bottom:69.613333pt;}
.y22_c01113{bottom:92.413333pt;}
.y21_c01113{bottom:112.813333pt;}
.y20_c01113{bottom:135.880000pt;}
.y1f_c01113{bottom:156.280000pt;}
.y1e_c01113{bottom:179.480000pt;}
.y1d_c01113{bottom:201.080000pt;}
.y1c_c01113{bottom:222.946667pt;}
.y1b_c01113{bottom:244.280000pt;}
.y1a_c01113{bottom:266.680000pt;}
.y19_c01113{bottom:288.280000pt;}
.y18_c01113{bottom:310.013333pt;}
.y17_c01113{bottom:331.613333pt;}
.y16_c01113{bottom:353.213333pt;}
.y15_c01113{bottom:375.080000pt;}
.y14_c01113{bottom:396.413333pt;}
.y13_c01113{bottom:417.880000pt;}
.y12_c01113{bottom:439.880000pt;}
.y11_c01113{bottom:460.546667pt;}
.y10_c01113{bottom:481.880000pt;}
.yf_c01113{bottom:503.080000pt;}
.ye_c01113{bottom:525.080000pt;}
.yd_c01113{bottom:546.413333pt;}
.yc_c01113{bottom:568.280000pt;}
.yb_c01113{bottom:590.146667pt;}
.ya_c01113{bottom:612.013333pt;}
.y9_c01113{bottom:633.346667pt;}
.y8_c01113{bottom:655.213333pt;}
.y7_c01113{bottom:676.813333pt;}
.y6_c01113{bottom:698.146667pt;}
.y5_c01113{bottom:719.480000pt;}
.y4_c01113{bottom:741.080000pt;}
.y3_c01113{bottom:762.680000pt;}
.y2_c01113{bottom:776.813333pt;}
.y1_c01113{bottom:784.013333pt;}
.h6_c01113{height:11.733399pt;}
.h3_c01113{height:32.250000pt;}
.h7_c01113{height:38.937500pt;}
.h4_c01113{height:70.664062pt;}
.h2_c01113{height:74.906250pt;}
.h5_c01113{height:81.031250pt;}
.h1_c01113{height:876.666667pt;}
.h0_c01113{height:876.733333pt;}
.w2_c01113{width:93.222667pt;}
.w0_c01113{width:593.266667pt;}
.w1_c01113{width:593.333333pt;}
.x0_c01113{left:0.000000pt;}
.x4_c01113{left:19.466667pt;}
.x5_c01113{left:20.400000pt;}
.x8_c01113{left:22.133333pt;}
.xa_c01113{left:23.333333pt;}
.x6_c01113{left:30.933333pt;}
.x7_c01113{left:44.666667pt;}
.xb_c01113{left:87.600000pt;}
.x3_c01113{left:102.933333pt;}
.x1_c01113{left:104.666667pt;}
.x9_c01113{left:105.600000pt;}
.x2_c01113{left:178.533333pt;}
.xd_c01113{left:253.801554pt;}
.xc_c01113{left:520.533333pt;}
}





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

.ir_c01114:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01114{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01114;src:url('chunks/assets/font_12ad0eaa217d45fb2ae499cb.woff2')format("woff");}.ff1_c01114{font-family:ff1_c01114;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01114;src:url('chunks/assets/font_39987541e385b009991b63ad.woff2')format("woff");}.ff2_c01114{font-family:ff2_c01114;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01114;src:url('chunks/assets/font_3cbd5ec8f7f1511c1bcd2062.woff2')format("woff");}.ff3_c01114{font-family:ff3_c01114;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01114;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff4_c01114{font-family:ff4_c01114;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01114;src:url('chunks/assets/font_208dc92b24cc4a2eb0b59c19.woff2')format("woff");}.ff5_c01114{font-family:ff5_c01114;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01114;src:url('chunks/assets/font_fcad338078fa892b38d5f7b1.woff2')format("woff");}.ff6_c01114{font-family:ff6_c01114;line-height:1.284180;font-style:normal;font-weight: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_c01114;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c01114{font-family:ff7_c01114;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01114{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01114{vertical-align:0.000000px;}
.v1_c01114{vertical-align:22.200000px;}
.ls4_c01114{letter-spacing:0.000000px;}
.ls5_c01114{letter-spacing:3.000000px;}
.ls6_c01114{letter-spacing:6.000000px;}
.ls3_c01114{letter-spacing:9.900000px;}
.ls2_c01114{letter-spacing:13.950000px;}
.ls7_c01114{letter-spacing:15.000000px;}
.ls0_c01114{letter-spacing:35.550000px;}
.ls1_c01114{letter-spacing:160.080000px;}
.sc__c01114{text-shadow:none;}
.sc0_c01114{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01114{-webkit-text-stroke:0px transparent;}
.sc0_c01114{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01114{word-spacing:-73.686000px;}
.ws3_c01114{word-spacing:-45.000000px;}
.ws0_c01114{word-spacing:-17.352000px;}
.ws2_c01114{word-spacing:-13.737000px;}
.ws4_c01114{word-spacing:-1.119000px;}
.ws5_c01114{word-spacing:0.000000px;}
._e_c01114{margin-left:-24.381000px;}
._18_c01114{margin-left:-9.783000px;}
._a_c01114{margin-left:-8.424000px;}
._4_c01114{margin-left:-7.290000px;}
._13_c01114{margin-left:-6.138000px;}
._8_c01114{margin-left:-4.860000px;}
._3_c01114{margin-left:-3.402000px;}
._f_c01114{margin-left:-2.187000px;}
._b_c01114{margin-left:-1.134000px;}
._1_c01114{width:1.782000px;}
._0_c01114{width:2.997000px;}
._2_c01114{width:4.860000px;}
._9_c01114{width:6.075000px;}
._c_c01114{width:8.100000px;}
._7_c01114{width:9.234000px;}
._5_c01114{width:10.854000px;}
._d_c01114{width:12.555000px;}
._16_c01114{width:13.743000px;}
._6_c01114{width:15.228000px;}
._1a_c01114{width:16.404000px;}
._10_c01114{width:17.496000px;}
._15_c01114{width:18.564000px;}
._11_c01114{width:20.658000px;}
._14_c01114{width:24.465000px;}
._17_c01114{width:30.906000px;}
._19_c01114{width:33.420000px;}
._12_c01114{width:35.046000px;}
._1b_c01114{width:48.081000px;}
._1c_c01114{width:336.468000px;}
.fc2_c01114{color:transparent;}
.fc1_c01114{color:rgb(128,128,128);}
.fc0_c01114{color:rgb(0,0,0);}
.fs1_c01114{font-size:42.000000px;}
.fs8_c01114{font-size:48.000000px;}
.fs4_c01114{font-size:57.000000px;}
.fs5_c01114{font-size:60.000000px;}
.fs6_c01114{font-size:69.000000px;}
.fs2_c01114{font-size:72.000000px;}
.fs0_c01114{font-size:81.000000px;}
.fs3_c01114{font-size:87.000000px;}
.fs7_c01114{font-size:93.000000px;}
.y0_c01114{bottom:0.000000px;}
.y24_c01114{bottom:3.105000px;}
.y23_c01114{bottom:7.228369px;}
.y22_c01114{bottom:53.370000px;}
.y21_c01114{bottom:82.020000px;}
.y20_c01114{bottom:101.070000px;}
.y1f_c01114{bottom:132.270000px;}
.y1e_c01114{bottom:156.270000px;}
.y1d_c01114{bottom:204.570000px;}
.y1c_c01114{bottom:228.870000px;}
.y1b_c01114{bottom:253.470000px;}
.y1a_c01114{bottom:277.770000px;}
.y19_c01114{bottom:302.670000px;}
.y18_c01114{bottom:326.370000px;}
.y17_c01114{bottom:350.670000px;}
.y16_c01114{bottom:375.270000px;}
.y15_c01114{bottom:399.270000px;}
.y14_c01114{bottom:423.570000px;}
.y13_c01114{bottom:448.770000px;}
.y12_c01114{bottom:471.720000px;}
.y11_c01114{bottom:495.720000px;}
.y10_c01114{bottom:520.320000px;}
.yf_c01114{bottom:543.720000px;}
.ye_c01114{bottom:568.020000px;}
.yd_c01114{bottom:591.570000px;}
.yc_c01114{bottom:615.270000px;}
.yb_c01114{bottom:640.470000px;}
.ya_c01114{bottom:663.570000px;}
.y9_c01114{bottom:687.720000px;}
.y8_c01114{bottom:711.720000px;}
.y7_c01114{bottom:736.470000px;}
.y6_c01114{bottom:760.770000px;}
.y5_c01114{bottom:783.720000px;}
.y4_c01114{bottom:808.020000px;}
.y3_c01114{bottom:832.620000px;}
.y2_c01114{bottom:856.470000px;}
.y1_c01114{bottom:880.920000px;}
.ha_c01114{height:13.200073px;}
.hb_c01114{height:43.804688px;}
.h7_c01114{height:66.713379px;}
.h6_c01114{height:72.168457px;}
.h2_c01114{height:79.497070px;}
.h4_c01114{height:84.269531px;}
.h3_c01114{height:91.160156px;}
.h5_c01114{height:91.176000px;}
.h9_c01114{height:93.726562px;}
.h8_c01114{height:101.697070px;}
.h1_c01114{height:986.250000px;}
.h0_c01114{height:986.550000px;}
.w1_c01114{width:104.875500px;}
.w0_c01114{width:672.000000px;}
.x0_c01114{left:0.000000px;}
.x2_c01114{left:56.400000px;}
.x1_c01114{left:57.450000px;}
.x3_c01114{left:58.800000px;}
.x4_c01114{left:59.850000px;}
.x5_c01114{left:61.500000px;}
.x6_c01114{left:62.550000px;}
.x9_c01114{left:63.900000px;}
.x7_c01114{left:75.600000px;}
.xa_c01114{left:121.500000px;}
.x8_c01114{left:207.300000px;}
.xc_c01114{left:287.814240px;}
.xb_c01114{left:397.650000px;}
@media print{
.v0_c01114{vertical-align:0.000000pt;}
.v1_c01114{vertical-align:19.733333pt;}
.ls4_c01114{letter-spacing:0.000000pt;}
.ls5_c01114{letter-spacing:2.666667pt;}
.ls6_c01114{letter-spacing:5.333333pt;}
.ls3_c01114{letter-spacing:8.800000pt;}
.ls2_c01114{letter-spacing:12.400000pt;}
.ls7_c01114{letter-spacing:13.333333pt;}
.ls0_c01114{letter-spacing:31.600000pt;}
.ls1_c01114{letter-spacing:142.293333pt;}
.ws1_c01114{word-spacing:-65.498667pt;}
.ws3_c01114{word-spacing:-40.000000pt;}
.ws0_c01114{word-spacing:-15.424000pt;}
.ws2_c01114{word-spacing:-12.210667pt;}
.ws4_c01114{word-spacing:-0.994667pt;}
.ws5_c01114{word-spacing:0.000000pt;}
._e_c01114{margin-left:-21.672000pt;}
._18_c01114{margin-left:-8.696000pt;}
._a_c01114{margin-left:-7.488000pt;}
._4_c01114{margin-left:-6.480000pt;}
._13_c01114{margin-left:-5.456000pt;}
._8_c01114{margin-left:-4.320000pt;}
._3_c01114{margin-left:-3.024000pt;}
._f_c01114{margin-left:-1.944000pt;}
._b_c01114{margin-left:-1.008000pt;}
._1_c01114{width:1.584000pt;}
._0_c01114{width:2.664000pt;}
._2_c01114{width:4.320000pt;}
._9_c01114{width:5.400000pt;}
._c_c01114{width:7.200000pt;}
._7_c01114{width:8.208000pt;}
._5_c01114{width:9.648000pt;}
._d_c01114{width:11.160000pt;}
._16_c01114{width:12.216000pt;}
._6_c01114{width:13.536000pt;}
._1a_c01114{width:14.581333pt;}
._10_c01114{width:15.552000pt;}
._15_c01114{width:16.501333pt;}
._11_c01114{width:18.362667pt;}
._14_c01114{width:21.746667pt;}
._17_c01114{width:27.472000pt;}
._19_c01114{width:29.706667pt;}
._12_c01114{width:31.152000pt;}
._1b_c01114{width:42.738667pt;}
._1c_c01114{width:299.082667pt;}
.fs1_c01114{font-size:37.333333pt;}
.fs8_c01114{font-size:42.666667pt;}
.fs4_c01114{font-size:50.666667pt;}
.fs5_c01114{font-size:53.333333pt;}
.fs6_c01114{font-size:61.333333pt;}
.fs2_c01114{font-size:64.000000pt;}
.fs0_c01114{font-size:72.000000pt;}
.fs3_c01114{font-size:77.333333pt;}
.fs7_c01114{font-size:82.666667pt;}
.y0_c01114{bottom:0.000000pt;}
.y24_c01114{bottom:2.760000pt;}
.y23_c01114{bottom:6.425217pt;}
.y22_c01114{bottom:47.440000pt;}
.y21_c01114{bottom:72.906667pt;}
.y20_c01114{bottom:89.840000pt;}
.y1f_c01114{bottom:117.573333pt;}
.y1e_c01114{bottom:138.906667pt;}
.y1d_c01114{bottom:181.840000pt;}
.y1c_c01114{bottom:203.440000pt;}
.y1b_c01114{bottom:225.306667pt;}
.y1a_c01114{bottom:246.906667pt;}
.y19_c01114{bottom:269.040000pt;}
.y18_c01114{bottom:290.106667pt;}
.y17_c01114{bottom:311.706667pt;}
.y16_c01114{bottom:333.573333pt;}
.y15_c01114{bottom:354.906667pt;}
.y14_c01114{bottom:376.506667pt;}
.y13_c01114{bottom:398.906667pt;}
.y12_c01114{bottom:419.306667pt;}
.y11_c01114{bottom:440.640000pt;}
.y10_c01114{bottom:462.506667pt;}
.yf_c01114{bottom:483.306667pt;}
.ye_c01114{bottom:504.906667pt;}
.yd_c01114{bottom:525.840000pt;}
.yc_c01114{bottom:546.906667pt;}
.yb_c01114{bottom:569.306667pt;}
.ya_c01114{bottom:589.840000pt;}
.y9_c01114{bottom:611.306667pt;}
.y8_c01114{bottom:632.640000pt;}
.y7_c01114{bottom:654.640000pt;}
.y6_c01114{bottom:676.240000pt;}
.y5_c01114{bottom:696.640000pt;}
.y4_c01114{bottom:718.240000pt;}
.y3_c01114{bottom:740.106667pt;}
.y2_c01114{bottom:761.306667pt;}
.y1_c01114{bottom:783.040000pt;}
.ha_c01114{height:11.733399pt;}
.hb_c01114{height:38.937500pt;}
.h7_c01114{height:59.300781pt;}
.h6_c01114{height:64.149740pt;}
.h2_c01114{height:70.664062pt;}
.h4_c01114{height:74.906250pt;}
.h3_c01114{height:81.031250pt;}
.h5_c01114{height:81.045333pt;}
.h9_c01114{height:83.312500pt;}
.h8_c01114{height:90.397396pt;}
.h1_c01114{height:876.666667pt;}
.h0_c01114{height:876.933333pt;}
.w1_c01114{width:93.222667pt;}
.w0_c01114{width:597.333333pt;}
.x0_c01114{left:0.000000pt;}
.x2_c01114{left:50.133333pt;}
.x1_c01114{left:51.066667pt;}
.x3_c01114{left:52.266667pt;}
.x4_c01114{left:53.200000pt;}
.x5_c01114{left:54.666667pt;}
.x6_c01114{left:55.600000pt;}
.x9_c01114{left:56.800000pt;}
.x7_c01114{left:67.200000pt;}
.xa_c01114{left:108.000000pt;}
.x8_c01114{left:184.266667pt;}
.xc_c01114{left:255.834880pt;}
.xb_c01114{left:353.466667pt;}
}





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

.ir_c01115:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01115{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01115;src:url('chunks/assets/font_fdfcea22f38bda77551d7a6f.woff2')format("woff");}.ff1_c01115{font-family:ff1_c01115;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01115;src:url('chunks/assets/font_ba47feb2a4f59ee34740e4ca.woff2')format("woff");}.ff2_c01115{font-family:ff2_c01115;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01115;src:url('chunks/assets/font_dca97ced452cf22b16997323.woff2')format("woff");}.ff3_c01115{font-family:ff3_c01115;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01115;src:url('chunks/assets/font_6513dca2f6861a1ed6c246d9.woff2')format("woff");}.ff4_c01115{font-family:ff4_c01115;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01115;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c01115{font-family:ff5_c01115;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01115{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01115{vertical-align:0.000000px;}
.ls0_c01115{letter-spacing:0.000000px;}
.sc__c01115{text-shadow:none;}
.sc0_c01115{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01115{-webkit-text-stroke:0px transparent;}
.sc0_c01115{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01115{word-spacing:-18.798000px;}
.ws1_c01115{word-spacing:0.000000px;}
._16_c01115{margin-left:-35.721000px;}
._21_c01115{margin-left:-31.185000px;}
._d_c01115{margin-left:-21.870000px;}
._a_c01115{margin-left:-9.072000px;}
._1f_c01115{margin-left:-7.857000px;}
._f_c01115{margin-left:-6.480000px;}
._6_c01115{margin-left:-4.617000px;}
._3_c01115{margin-left:-3.159000px;}
._0_c01115{margin-left:-1.134000px;}
._2_c01115{width:1.134000px;}
._1_c01115{width:2.511000px;}
._b_c01115{width:3.726000px;}
._5_c01115{width:4.779000px;}
._4_c01115{width:6.318000px;}
._14_c01115{width:7.371000px;}
._8_c01115{width:8.424000px;}
._7_c01115{width:10.044000px;}
._11_c01115{width:11.178000px;}
._9_c01115{width:12.231000px;}
._22_c01115{width:13.284000px;}
._c_c01115{width:14.337000px;}
._1b_c01115{width:15.552000px;}
._13_c01115{width:16.848000px;}
._19_c01115{width:18.912000px;}
._20_c01115{width:23.490000px;}
._1c_c01115{width:25.596000px;}
._1e_c01115{width:27.144000px;}
._1d_c01115{width:28.431000px;}
._10_c01115{width:30.132000px;}
._23_c01115{width:33.615000px;}
._1a_c01115{width:34.749000px;}
._15_c01115{width:36.045000px;}
._12_c01115{width:43.335000px;}
._17_c01115{width:75.753000px;}
._18_c01115{width:92.592000px;}
._e_c01115{width:358.587000px;}
.fc2_c01115{color:transparent;}
.fc1_c01115{color:rgb(128,128,128);}
.fc0_c01115{color:rgb(0,0,0);}
.fs1_c01115{font-size:48.000000px;}
.fs4_c01115{font-size:72.000000px;}
.fs2_c01115{font-size:78.000000px;}
.fs0_c01115{font-size:81.000000px;}
.fs3_c01115{font-size:93.000000px;}
.y0_c01115{bottom:0.000000px;}
.y25_c01115{bottom:3.105000px;}
.y24_c01115{bottom:7.228355px;}
.y23_c01115{bottom:51.885000px;}
.y22_c01115{bottom:75.285000px;}
.y21_c01115{bottom:101.835000px;}
.y20_c01115{bottom:125.835000px;}
.y1f_c01115{bottom:149.835000px;}
.y1e_c01115{bottom:174.435000px;}
.y1d_c01115{bottom:199.335000px;}
.y1c_c01115{bottom:223.635000px;}
.y1b_c01115{bottom:248.085000px;}
.y1a_c01115{bottom:272.685000px;}
.y19_c01115{bottom:296.985000px;}
.y18_c01115{bottom:321.285000px;}
.y17_c01115{bottom:346.635000px;}
.y16_c01115{bottom:370.935000px;}
.y15_c01115{bottom:394.785000px;}
.y14_c01115{bottom:419.085000px;}
.y13_c01115{bottom:443.385000px;}
.y12_c01115{bottom:467.085000px;}
.y11_c01115{bottom:491.085000px;}
.y10_c01115{bottom:515.235000px;}
.yf_c01115{bottom:539.535000px;}
.ye_c01115{bottom:563.235000px;}
.yd_c01115{bottom:587.235000px;}
.yc_c01115{bottom:611.835000px;}
.yb_c01115{bottom:636.135000px;}
.ya_c01115{bottom:660.435000px;}
.y9_c01115{bottom:685.335000px;}
.y8_c01115{bottom:708.285000px;}
.y7_c01115{bottom:733.335000px;}
.y6_c01115{bottom:758.685000px;}
.y5_c01115{bottom:780.585000px;}
.y4_c01115{bottom:804.885000px;}
.y3_c01115{bottom:829.185000px;}
.y2_c01115{bottom:853.485000px;}
.y1_c01115{bottom:877.485000px;}
.h6_c01115{height:13.200074px;}
.h7_c01115{height:43.804688px;}
.h2_c01115{height:79.497070px;}
.h5_c01115{height:84.269531px;}
.h4_c01115{height:91.274414px;}
.h3_c01115{height:98.756836px;}
.h1_c01115{height:969.750000px;}
.h0_c01115{height:969.825000px;}
.w2_c01115{width:104.875500px;}
.w0_c01115{width:656.100000px;}
.w1_c01115{width:656.250000px;}
.x0_c01115{left:0.000000px;}
.x2_c01115{left:24.000000px;}
.x5_c01115{left:52.050000px;}
.x4_c01115{left:103.350000px;}
.x7_c01115{left:118.800000px;}
.x8_c01115{left:120.150000px;}
.x6_c01115{left:121.500000px;}
.x9_c01115{left:122.850000px;}
.x1_c01115{left:123.900000px;}
.x3_c01115{left:160.050000px;}
.xb_c01115{left:279.864258px;}
.xa_c01115{left:576.000000px;}
@media print{
.v0_c01115{vertical-align:0.000000pt;}
.ls0_c01115{letter-spacing:0.000000pt;}
.ws0_c01115{word-spacing:-16.709333pt;}
.ws1_c01115{word-spacing:0.000000pt;}
._16_c01115{margin-left:-31.752000pt;}
._21_c01115{margin-left:-27.720000pt;}
._d_c01115{margin-left:-19.440000pt;}
._a_c01115{margin-left:-8.064000pt;}
._1f_c01115{margin-left:-6.984000pt;}
._f_c01115{margin-left:-5.760000pt;}
._6_c01115{margin-left:-4.104000pt;}
._3_c01115{margin-left:-2.808000pt;}
._0_c01115{margin-left:-1.008000pt;}
._2_c01115{width:1.008000pt;}
._1_c01115{width:2.232000pt;}
._b_c01115{width:3.312000pt;}
._5_c01115{width:4.248000pt;}
._4_c01115{width:5.616000pt;}
._14_c01115{width:6.552000pt;}
._8_c01115{width:7.488000pt;}
._7_c01115{width:8.928000pt;}
._11_c01115{width:9.936000pt;}
._9_c01115{width:10.872000pt;}
._22_c01115{width:11.808000pt;}
._c_c01115{width:12.744000pt;}
._1b_c01115{width:13.824000pt;}
._13_c01115{width:14.976000pt;}
._19_c01115{width:16.810667pt;}
._20_c01115{width:20.880000pt;}
._1c_c01115{width:22.752000pt;}
._1e_c01115{width:24.128000pt;}
._1d_c01115{width:25.272000pt;}
._10_c01115{width:26.784000pt;}
._23_c01115{width:29.880000pt;}
._1a_c01115{width:30.888000pt;}
._15_c01115{width:32.040000pt;}
._12_c01115{width:38.520000pt;}
._17_c01115{width:67.336000pt;}
._18_c01115{width:82.304000pt;}
._e_c01115{width:318.744000pt;}
.fs1_c01115{font-size:42.666667pt;}
.fs4_c01115{font-size:64.000000pt;}
.fs2_c01115{font-size:69.333333pt;}
.fs0_c01115{font-size:72.000000pt;}
.fs3_c01115{font-size:82.666667pt;}
.y0_c01115{bottom:0.000000pt;}
.y25_c01115{bottom:2.760000pt;}
.y24_c01115{bottom:6.425204pt;}
.y23_c01115{bottom:46.120000pt;}
.y22_c01115{bottom:66.920000pt;}
.y21_c01115{bottom:90.520000pt;}
.y20_c01115{bottom:111.853333pt;}
.y1f_c01115{bottom:133.186667pt;}
.y1e_c01115{bottom:155.053333pt;}
.y1d_c01115{bottom:177.186667pt;}
.y1c_c01115{bottom:198.786667pt;}
.y1b_c01115{bottom:220.520000pt;}
.y1a_c01115{bottom:242.386667pt;}
.y19_c01115{bottom:263.986667pt;}
.y18_c01115{bottom:285.586667pt;}
.y17_c01115{bottom:308.120000pt;}
.y16_c01115{bottom:329.720000pt;}
.y15_c01115{bottom:350.920000pt;}
.y14_c01115{bottom:372.520000pt;}
.y13_c01115{bottom:394.120000pt;}
.y12_c01115{bottom:415.186667pt;}
.y11_c01115{bottom:436.520000pt;}
.y10_c01115{bottom:457.986667pt;}
.yf_c01115{bottom:479.586667pt;}
.ye_c01115{bottom:500.653333pt;}
.yd_c01115{bottom:521.986667pt;}
.yc_c01115{bottom:543.853333pt;}
.yb_c01115{bottom:565.453333pt;}
.ya_c01115{bottom:587.053333pt;}
.y9_c01115{bottom:609.186667pt;}
.y8_c01115{bottom:629.586667pt;}
.y7_c01115{bottom:651.853333pt;}
.y6_c01115{bottom:674.386667pt;}
.y5_c01115{bottom:693.853333pt;}
.y4_c01115{bottom:715.453333pt;}
.y3_c01115{bottom:737.053333pt;}
.y2_c01115{bottom:758.653333pt;}
.y1_c01115{bottom:779.986667pt;}
.h6_c01115{height:11.733399pt;}
.h7_c01115{height:38.937500pt;}
.h2_c01115{height:70.664062pt;}
.h5_c01115{height:74.906250pt;}
.h4_c01115{height:81.132812pt;}
.h3_c01115{height:87.783854pt;}
.h1_c01115{height:862.000000pt;}
.h0_c01115{height:862.066667pt;}
.w2_c01115{width:93.222667pt;}
.w0_c01115{width:583.200000pt;}
.w1_c01115{width:583.333333pt;}
.x0_c01115{left:0.000000pt;}
.x2_c01115{left:21.333333pt;}
.x5_c01115{left:46.266667pt;}
.x4_c01115{left:91.866667pt;}
.x7_c01115{left:105.600000pt;}
.x8_c01115{left:106.800000pt;}
.x6_c01115{left:108.000000pt;}
.x9_c01115{left:109.200000pt;}
.x1_c01115{left:110.133333pt;}
.x3_c01115{left:142.266667pt;}
.xb_c01115{left:248.768229pt;}
.xa_c01115{left:512.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_c01116 {
    display:none;
  }
  .loading-indicator_c01116.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01116 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01116 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01116" -> "#page-container .classname_c01116")
 */
.pf_c01116 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01116 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01116.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01116 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01116 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01116 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01116 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01116 {overflow:visible;}
  }
}
.c_c01116 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01116 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01116:after { /* webkit #35443 */
  content: '';
}
.t_c01116:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01116 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01116 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01116 { /* info for Javascript */
  display:none;
}
.l_c01116 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01116 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01116 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01116:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01116{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01116;src:url('chunks/assets/font_5ee1aca7521190a3a14eab80.woff2')format("woff");}.ff1_c01116{font-family:ff1_c01116;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01116;src:url('chunks/assets/font_10a434f8c6442815efd98466.woff2')format("woff");}.ff2_c01116{font-family:ff2_c01116;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01116;src:url('chunks/assets/font_522262784e9eb7472f5e4284.woff2')format("woff");}.ff3_c01116{font-family:ff3_c01116;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01116;src:url('chunks/assets/font_c7c840610d5151c23b5fe0c5.woff2')format("woff");}.ff4_c01116{font-family:ff4_c01116;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01116;src:url('chunks/assets/font_37237fb230912b315474c7a4.woff2')format("woff");}.ff5_c01116{font-family:ff5_c01116;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01116;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c01116{font-family:ff6_c01116;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01116{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01116{vertical-align:0.000000px;}
.v1_c01116{vertical-align:153.600000px;}
.ls3_c01116{letter-spacing:0.000000px;}
.ls0_c01116{letter-spacing:2.808000px;}
.ls1_c01116{letter-spacing:3.000000px;}
.ls2_c01116{letter-spacing:18.120000px;}
.sc__c01116{text-shadow:none;}
.sc0_c01116{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01116{-webkit-text-stroke:0px transparent;}
.sc0_c01116{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01116{word-spacing:0.000000px;}
._21_c01116{margin-left:-18.177000px;}
._f_c01116{margin-left:-15.786000px;}
._20_c01116{margin-left:-13.026000px;}
._14_c01116{margin-left:-11.610000px;}
._17_c01116{margin-left:-8.847000px;}
._16_c01116{margin-left:-7.089000px;}
._b_c01116{margin-left:-5.982000px;}
._9_c01116{margin-left:-4.473000px;}
._4_c01116{margin-left:-2.673000px;}
._c_c01116{margin-left:-1.458000px;}
._e_c01116{width:1.098000px;}
._1_c01116{width:2.550000px;}
._0_c01116{width:3.570000px;}
._8_c01116{width:4.779000px;}
._5_c01116{width:5.793000px;}
._7_c01116{width:6.852000px;}
._a_c01116{width:8.250000px;}
._6_c01116{width:9.945000px;}
._12_c01116{width:11.814000px;}
._13_c01116{width:12.993000px;}
._15_c01116{width:14.187000px;}
._3_c01116{width:15.300000px;}
._d_c01116{width:17.919000px;}
._10_c01116{width:22.185000px;}
._1f_c01116{width:28.155000px;}
._1c_c01116{width:29.529000px;}
._1d_c01116{width:32.148000px;}
._18_c01116{width:33.963000px;}
._11_c01116{width:36.708000px;}
._2_c01116{width:62.322000px;}
._1e_c01116{width:194.862000px;}
._1a_c01116{width:312.702000px;}
._1b_c01116{width:350.550000px;}
._19_c01116{width:1295.658000px;}
.fc2_c01116{color:transparent;}
.fc1_c01116{color:rgb(128,128,128);}
.fc0_c01116{color:rgb(0,0,0);}
.fs6_c01116{font-size:48.000000px;}
.fs2_c01116{font-size:51.000000px;}
.fs4_c01116{font-size:72.000000px;}
.fs5_c01116{font-size:78.000000px;}
.fs1_c01116{font-size:81.000000px;}
.fs0_c01116{font-size:102.000000px;}
.fs3_c01116{font-size:282.000000px;}
.y0_c01116{bottom:0.000000px;}
.y26_c01116{bottom:3.105000px;}
.y25_c01116{bottom:7.228369px;}
.y24_c01116{bottom:40.470000px;}
.y23_c01116{bottom:71.220000px;}
.y22_c01116{bottom:96.570000px;}
.y21_c01116{bottom:121.470000px;}
.y20_c01116{bottom:144.420000px;}
.y1f_c01116{bottom:169.470000px;}
.y1e_c01116{bottom:194.970000px;}
.y1d_c01116{bottom:219.420000px;}
.y1c_c01116{bottom:243.270000px;}
.y1b_c01116{bottom:267.270000px;}
.y1a_c01116{bottom:293.220000px;}
.y19_c01116{bottom:315.870000px;}
.y18_c01116{bottom:340.470000px;}
.y17_c01116{bottom:365.220000px;}
.y16_c01116{bottom:388.770000px;}
.y15_c01116{bottom:413.070000px;}
.y14_c01116{bottom:437.370000px;}
.y13_c01116{bottom:461.370000px;}
.y11_c01116{bottom:472.170000px;}
.y12_c01116{bottom:485.670000px;}
.y10_c01116{bottom:529.920000px;}
.yf_c01116{bottom:557.520000px;}
.ye_c01116{bottom:581.520000px;}
.yd_c01116{bottom:607.170000px;}
.yc_c01116{bottom:629.670000px;}
.yb_c01116{bottom:653.670000px;}
.ya_c01116{bottom:679.020000px;}
.y9_c01116{bottom:702.270000px;}
.y8_c01116{bottom:726.270000px;}
.y7_c01116{bottom:750.870000px;}
.y6_c01116{bottom:775.170000px;}
.y5_c01116{bottom:799.170000px;}
.y4_c01116{bottom:823.170000px;}
.y3_c01116{bottom:847.470000px;}
.y2_c01116{bottom:872.070000px;}
.y1_c01116{bottom:919.620000px;}
.h7_c01116{height:13.200073px;}
.h8_c01116{height:43.804688px;}
.h3_c01116{height:79.497070px;}
.h5_c01116{height:84.269531px;}
.h6_c01116{height:98.756836px;}
.h2_c01116{height:100.057617px;}
.h4_c01116{height:276.767578px;}
.h1_c01116{height:986.250000px;}
.h0_c01116{height:986.550000px;}
.w1_c01116{width:104.875500px;}
.w0_c01116{width:672.000000px;}
.x0_c01116{left:0.000000px;}
.xd_c01116{left:49.650000px;}
.xb_c01116{left:50.850000px;}
.xa_c01116{left:51.900000px;}
.x9_c01116{left:52.950000px;}
.x8_c01116{left:54.000000px;}
.x6_c01116{left:55.050000px;}
.x5_c01116{left:56.400000px;}
.x2_c01116{left:58.050000px;}
.x3_c01116{left:59.100000px;}
.x4_c01116{left:60.300000px;}
.xc_c01116{left:74.850000px;}
.x7_c01116{left:94.800000px;}
.xf_c01116{left:287.814240px;}
.x1_c01116{left:339.600000px;}
.xe_c01116{left:369.600000px;}
@media print{
.v0_c01116{vertical-align:0.000000pt;}
.v1_c01116{vertical-align:136.533333pt;}
.ls3_c01116{letter-spacing:0.000000pt;}
.ls0_c01116{letter-spacing:2.496000pt;}
.ls1_c01116{letter-spacing:2.666667pt;}
.ls2_c01116{letter-spacing:16.106667pt;}
.ws0_c01116{word-spacing:0.000000pt;}
._21_c01116{margin-left:-16.157333pt;}
._f_c01116{margin-left:-14.032000pt;}
._20_c01116{margin-left:-11.578667pt;}
._14_c01116{margin-left:-10.320000pt;}
._17_c01116{margin-left:-7.864000pt;}
._16_c01116{margin-left:-6.301333pt;}
._b_c01116{margin-left:-5.317333pt;}
._9_c01116{margin-left:-3.976000pt;}
._4_c01116{margin-left:-2.376000pt;}
._c_c01116{margin-left:-1.296000pt;}
._e_c01116{width:0.976000pt;}
._1_c01116{width:2.266667pt;}
._0_c01116{width:3.173333pt;}
._8_c01116{width:4.248000pt;}
._5_c01116{width:5.149333pt;}
._7_c01116{width:6.090667pt;}
._a_c01116{width:7.333333pt;}
._6_c01116{width:8.840000pt;}
._12_c01116{width:10.501333pt;}
._13_c01116{width:11.549333pt;}
._15_c01116{width:12.610667pt;}
._3_c01116{width:13.600000pt;}
._d_c01116{width:15.928000pt;}
._10_c01116{width:19.720000pt;}
._1f_c01116{width:25.026667pt;}
._1c_c01116{width:26.248000pt;}
._1d_c01116{width:28.576000pt;}
._18_c01116{width:30.189333pt;}
._11_c01116{width:32.629333pt;}
._2_c01116{width:55.397333pt;}
._1e_c01116{width:173.210667pt;}
._1a_c01116{width:277.957333pt;}
._1b_c01116{width:311.600000pt;}
._19_c01116{width:1151.696000pt;}
.fs6_c01116{font-size:42.666667pt;}
.fs2_c01116{font-size:45.333333pt;}
.fs4_c01116{font-size:64.000000pt;}
.fs5_c01116{font-size:69.333333pt;}
.fs1_c01116{font-size:72.000000pt;}
.fs0_c01116{font-size:90.666667pt;}
.fs3_c01116{font-size:250.666667pt;}
.y0_c01116{bottom:0.000000pt;}
.y26_c01116{bottom:2.760000pt;}
.y25_c01116{bottom:6.425217pt;}
.y24_c01116{bottom:35.973333pt;}
.y23_c01116{bottom:63.306667pt;}
.y22_c01116{bottom:85.840000pt;}
.y21_c01116{bottom:107.973333pt;}
.y20_c01116{bottom:128.373333pt;}
.y1f_c01116{bottom:150.640000pt;}
.y1e_c01116{bottom:173.306667pt;}
.y1d_c01116{bottom:195.040000pt;}
.y1c_c01116{bottom:216.240000pt;}
.y1b_c01116{bottom:237.573333pt;}
.y1a_c01116{bottom:260.640000pt;}
.y19_c01116{bottom:280.773333pt;}
.y18_c01116{bottom:302.640000pt;}
.y17_c01116{bottom:324.640000pt;}
.y16_c01116{bottom:345.573333pt;}
.y15_c01116{bottom:367.173333pt;}
.y14_c01116{bottom:388.773333pt;}
.y13_c01116{bottom:410.106667pt;}
.y11_c01116{bottom:419.706667pt;}
.y12_c01116{bottom:431.706667pt;}
.y10_c01116{bottom:471.040000pt;}
.yf_c01116{bottom:495.573333pt;}
.ye_c01116{bottom:516.906667pt;}
.yd_c01116{bottom:539.706667pt;}
.yc_c01116{bottom:559.706667pt;}
.yb_c01116{bottom:581.040000pt;}
.ya_c01116{bottom:603.573333pt;}
.y9_c01116{bottom:624.240000pt;}
.y8_c01116{bottom:645.573333pt;}
.y7_c01116{bottom:667.440000pt;}
.y6_c01116{bottom:689.040000pt;}
.y5_c01116{bottom:710.373333pt;}
.y4_c01116{bottom:731.706667pt;}
.y3_c01116{bottom:753.306667pt;}
.y2_c01116{bottom:775.173333pt;}
.y1_c01116{bottom:817.440000pt;}
.h7_c01116{height:11.733399pt;}
.h8_c01116{height:38.937500pt;}
.h3_c01116{height:70.664062pt;}
.h5_c01116{height:74.906250pt;}
.h6_c01116{height:87.783854pt;}
.h2_c01116{height:88.940104pt;}
.h4_c01116{height:246.015625pt;}
.h1_c01116{height:876.666667pt;}
.h0_c01116{height:876.933333pt;}
.w1_c01116{width:93.222667pt;}
.w0_c01116{width:597.333333pt;}
.x0_c01116{left:0.000000pt;}
.xd_c01116{left:44.133333pt;}
.xb_c01116{left:45.200000pt;}
.xa_c01116{left:46.133333pt;}
.x9_c01116{left:47.066667pt;}
.x8_c01116{left:48.000000pt;}
.x6_c01116{left:48.933333pt;}
.x5_c01116{left:50.133333pt;}
.x2_c01116{left:51.600000pt;}
.x3_c01116{left:52.533333pt;}
.x4_c01116{left:53.600000pt;}
.xc_c01116{left:66.533333pt;}
.x7_c01116{left:84.266667pt;}
.xf_c01116{left:255.834880pt;}
.x1_c01116{left:301.866667pt;}
.xe_c01116{left:328.533333pt;}
}





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

.ir_c01117:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01117{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01117;src:url('chunks/assets/font_a21d03e1497f78069052ad9b.woff2')format("woff");}.ff1_c01117{font-family:ff1_c01117;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01117;src:url('chunks/assets/font_56a38fe1d445aa81db0df678.woff2')format("woff");}.ff2_c01117{font-family:ff2_c01117;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01117;src:url('chunks/assets/font_a76d7a1eeb50536de5c0aee5.woff2')format("woff");}.ff3_c01117{font-family:ff3_c01117;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01117;src:url('chunks/assets/font_9cd23010ef77a40895580787.woff2')format("woff");}.ff4_c01117{font-family:ff4_c01117;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01117;src:url('chunks/assets/font_ae4076423e438fb5247611d0.woff2')format("woff");}.ff5_c01117{font-family:ff5_c01117;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01117;src:url('chunks/assets/font_824777c79eac50c272c56be6.woff2')format("woff");}.ff6_c01117{font-family:ff6_c01117;line-height:1.437000;font-style:normal;font-weight: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_c01117;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c01117{font-family:ff7_c01117;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01117{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01117{vertical-align:0.000000px;}
.ls2_c01117{letter-spacing:0.000000px;}
.ls1_c01117{letter-spacing:10.500000px;}
.ls0_c01117{letter-spacing:25.632000px;}
.sc__c01117{text-shadow:none;}
.sc0_c01117{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01117{-webkit-text-stroke:0px transparent;}
.sc0_c01117{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01117{word-spacing:-59.184000px;}
.ws2_c01117{word-spacing:-23.250000px;}
.ws0_c01117{word-spacing:-20.250000px;}
.ws3_c01117{word-spacing:0.000000px;}
._16_c01117{margin-left:-21.222000px;}
._15_c01117{margin-left:-20.088000px;}
._1d_c01117{margin-left:-14.418000px;}
._1f_c01117{margin-left:-12.393000px;}
._13_c01117{margin-left:-10.530000px;}
._10_c01117{margin-left:-8.910000px;}
._7_c01117{margin-left:-7.695000px;}
._e_c01117{margin-left:-5.913000px;}
._8_c01117{margin-left:-4.860000px;}
._d_c01117{margin-left:-3.483000px;}
._5_c01117{margin-left:-2.268000px;}
._b_c01117{margin-left:-1.215000px;}
._9_c01117{width:1.620000px;}
._4_c01117{width:2.754000px;}
._6_c01117{width:3.969000px;}
._2_c01117{width:5.346000px;}
._3_c01117{width:6.399000px;}
._1_c01117{width:8.343000px;}
._0_c01117{width:9.639000px;}
._11_c01117{width:10.692000px;}
._c_c01117{width:12.150000px;}
._a_c01117{width:13.932000px;}
._f_c01117{width:15.552000px;}
._14_c01117{width:17.187000px;}
._19_c01117{width:18.225000px;}
._12_c01117{width:20.109000px;}
._1b_c01117{width:21.789000px;}
._1c_c01117{width:29.643000px;}
._1a_c01117{width:37.260000px;}
._18_c01117{width:63.747000px;}
._17_c01117{width:153.414000px;}
._1e_c01117{width:157.668000px;}
._21_c01117{width:168.075000px;}
._20_c01117{width:231.417000px;}
.fc2_c01117{color:transparent;}
.fc1_c01117{color:rgb(128,128,128);}
.fc0_c01117{color:rgb(0,0,0);}
.fs6_c01117{font-size:48.000000px;}
.fs3_c01117{font-size:51.000000px;}
.fs2_c01117{font-size:72.000000px;}
.fs1_c01117{font-size:78.000000px;}
.fs0_c01117{font-size:81.000000px;}
.fs4_c01117{font-size:87.000000px;}
.fs5_c01117{font-size:93.000000px;}
.y0_c01117{bottom:0.000000px;}
.y25_c01117{bottom:3.105000px;}
.y24_c01117{bottom:7.228371px;}
.y23_c01117{bottom:58.515000px;}
.y22_c01117{bottom:79.365000px;}
.y21_c01117{bottom:104.415000px;}
.y20_c01117{bottom:130.665000px;}
.y1f_c01117{bottom:154.665000px;}
.y1e_c01117{bottom:178.515000px;}
.y1d_c01117{bottom:203.865000px;}
.y1c_c01117{bottom:227.115000px;}
.y1b_c01117{bottom:251.865000px;}
.y1a_c01117{bottom:276.465000px;}
.y19_c01117{bottom:300.765000px;}
.y18_c01117{bottom:325.065000px;}
.y17_c01117{bottom:349.365000px;}
.y16_c01117{bottom:375.015000px;}
.y15_c01117{bottom:399.315000px;}
.y14_c01117{bottom:423.015000px;}
.y13_c01117{bottom:447.315000px;}
.y12_c01117{bottom:471.915000px;}
.y11_c01117{bottom:492.765000px;}
.y10_c01117{bottom:519.465000px;}
.yf_c01117{bottom:543.765000px;}
.ye_c01117{bottom:567.765000px;}
.yd_c01117{bottom:592.365000px;}
.yc_c01117{bottom:616.365000px;}
.yb_c01117{bottom:640.365000px;}
.ya_c01117{bottom:665.265000px;}
.y9_c01117{bottom:689.265000px;}
.y8_c01117{bottom:713.115000px;}
.y7_c01117{bottom:737.415000px;}
.y6_c01117{bottom:761.415000px;}
.y5_c01117{bottom:785.415000px;}
.y4_c01117{bottom:809.715000px;}
.y3_c01117{bottom:834.015000px;}
.y2_c01117{bottom:858.015000px;}
.y1_c01117{bottom:881.565000px;}
.h8_c01117{height:13.200074px;}
.h9_c01117{height:43.804688px;}
.h2_c01117{height:79.497070px;}
.h4_c01117{height:81.632812px;}
.h3_c01117{height:83.226000px;}
.h5_c01117{height:84.269531px;}
.h6_c01117{height:91.176000px;}
.h7_c01117{height:91.274414px;}
.h1_c01117{height:986.250000px;}
.h0_c01117{height:986.325000px;}
.w2_c01117{width:104.875500px;}
.w0_c01117{width:667.425000px;}
.w1_c01117{width:667.500000px;}
.x0_c01117{left:0.000000px;}
.xd_c01117{left:41.250000px;}
.x7_c01117{left:57.750000px;}
.xe_c01117{left:71.850000px;}
.x1_c01117{left:120.600000px;}
.x2_c01117{left:121.950000px;}
.x3_c01117{left:123.300000px;}
.x6_c01117{left:124.950000px;}
.xa_c01117{left:126.000000px;}
.xb_c01117{left:127.650000px;}
.xc_c01117{left:129.600000px;}
.x5_c01117{left:131.400000px;}
.xf_c01117{left:133.350000px;}
.x8_c01117{left:138.000000px;}
.x4_c01117{left:139.350000px;}
.x9_c01117{left:178.200000px;}
.x11_c01117{left:285.526749px;}
.x10_c01117{left:606.150000px;}
@media print{
.v0_c01117{vertical-align:0.000000pt;}
.ls2_c01117{letter-spacing:0.000000pt;}
.ls1_c01117{letter-spacing:9.333333pt;}
.ls0_c01117{letter-spacing:22.784000pt;}
.ws1_c01117{word-spacing:-52.608000pt;}
.ws2_c01117{word-spacing:-20.666667pt;}
.ws0_c01117{word-spacing:-18.000000pt;}
.ws3_c01117{word-spacing:0.000000pt;}
._16_c01117{margin-left:-18.864000pt;}
._15_c01117{margin-left:-17.856000pt;}
._1d_c01117{margin-left:-12.816000pt;}
._1f_c01117{margin-left:-11.016000pt;}
._13_c01117{margin-left:-9.360000pt;}
._10_c01117{margin-left:-7.920000pt;}
._7_c01117{margin-left:-6.840000pt;}
._e_c01117{margin-left:-5.256000pt;}
._8_c01117{margin-left:-4.320000pt;}
._d_c01117{margin-left:-3.096000pt;}
._5_c01117{margin-left:-2.016000pt;}
._b_c01117{margin-left:-1.080000pt;}
._9_c01117{width:1.440000pt;}
._4_c01117{width:2.448000pt;}
._6_c01117{width:3.528000pt;}
._2_c01117{width:4.752000pt;}
._3_c01117{width:5.688000pt;}
._1_c01117{width:7.416000pt;}
._0_c01117{width:8.568000pt;}
._11_c01117{width:9.504000pt;}
._c_c01117{width:10.800000pt;}
._a_c01117{width:12.384000pt;}
._f_c01117{width:13.824000pt;}
._14_c01117{width:15.277333pt;}
._19_c01117{width:16.200000pt;}
._12_c01117{width:17.874667pt;}
._1b_c01117{width:19.368000pt;}
._1c_c01117{width:26.349333pt;}
._1a_c01117{width:33.120000pt;}
._18_c01117{width:56.664000pt;}
._17_c01117{width:136.368000pt;}
._1e_c01117{width:140.149333pt;}
._21_c01117{width:149.400000pt;}
._20_c01117{width:205.704000pt;}
.fs6_c01117{font-size:42.666667pt;}
.fs3_c01117{font-size:45.333333pt;}
.fs2_c01117{font-size:64.000000pt;}
.fs1_c01117{font-size:69.333333pt;}
.fs0_c01117{font-size:72.000000pt;}
.fs4_c01117{font-size:77.333333pt;}
.fs5_c01117{font-size:82.666667pt;}
.y0_c01117{bottom:0.000000pt;}
.y25_c01117{bottom:2.760000pt;}
.y24_c01117{bottom:6.425219pt;}
.y23_c01117{bottom:52.013333pt;}
.y22_c01117{bottom:70.546667pt;}
.y21_c01117{bottom:92.813333pt;}
.y20_c01117{bottom:116.146667pt;}
.y1f_c01117{bottom:137.480000pt;}
.y1e_c01117{bottom:158.680000pt;}
.y1d_c01117{bottom:181.213333pt;}
.y1c_c01117{bottom:201.880000pt;}
.y1b_c01117{bottom:223.880000pt;}
.y1a_c01117{bottom:245.746667pt;}
.y19_c01117{bottom:267.346667pt;}
.y18_c01117{bottom:288.946667pt;}
.y17_c01117{bottom:310.546667pt;}
.y16_c01117{bottom:333.346667pt;}
.y15_c01117{bottom:354.946667pt;}
.y14_c01117{bottom:376.013333pt;}
.y13_c01117{bottom:397.613333pt;}
.y12_c01117{bottom:419.480000pt;}
.y11_c01117{bottom:438.013333pt;}
.y10_c01117{bottom:461.746667pt;}
.yf_c01117{bottom:483.346667pt;}
.ye_c01117{bottom:504.680000pt;}
.yd_c01117{bottom:526.546667pt;}
.yc_c01117{bottom:547.880000pt;}
.yb_c01117{bottom:569.213333pt;}
.ya_c01117{bottom:591.346667pt;}
.y9_c01117{bottom:612.680000pt;}
.y8_c01117{bottom:633.880000pt;}
.y7_c01117{bottom:655.480000pt;}
.y6_c01117{bottom:676.813333pt;}
.y5_c01117{bottom:698.146667pt;}
.y4_c01117{bottom:719.746667pt;}
.y3_c01117{bottom:741.346667pt;}
.y2_c01117{bottom:762.680000pt;}
.y1_c01117{bottom:783.613333pt;}
.h8_c01117{height:11.733399pt;}
.h9_c01117{height:38.937500pt;}
.h2_c01117{height:70.664062pt;}
.h4_c01117{height:72.562500pt;}
.h3_c01117{height:73.978667pt;}
.h5_c01117{height:74.906250pt;}
.h6_c01117{height:81.045333pt;}
.h7_c01117{height:81.132812pt;}
.h1_c01117{height:876.666667pt;}
.h0_c01117{height:876.733333pt;}
.w2_c01117{width:93.222667pt;}
.w0_c01117{width:593.266667pt;}
.w1_c01117{width:593.333333pt;}
.x0_c01117{left:0.000000pt;}
.xd_c01117{left:36.666667pt;}
.x7_c01117{left:51.333333pt;}
.xe_c01117{left:63.866667pt;}
.x1_c01117{left:107.200000pt;}
.x2_c01117{left:108.400000pt;}
.x3_c01117{left:109.600000pt;}
.x6_c01117{left:111.066667pt;}
.xa_c01117{left:112.000000pt;}
.xb_c01117{left:113.466667pt;}
.xc_c01117{left:115.200000pt;}
.x5_c01117{left:116.800000pt;}
.xf_c01117{left:118.533333pt;}
.x8_c01117{left:122.666667pt;}
.x4_c01117{left:123.866667pt;}
.x9_c01117{left:158.400000pt;}
.x11_c01117{left:253.801554pt;}
.x10_c01117{left:538.800000pt;}
}





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

.ir_c01118:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01118{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01118;src:url('chunks/assets/font_558a20fc782c7dd76bc224c1.woff2')format("woff");}.ff1_c01118{font-family:ff1_c01118;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01118;src:url('chunks/assets/font_f6928f3e07fe3588c9004535.woff2')format("woff");}.ff2_c01118{font-family:ff2_c01118;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01118;src:url('chunks/assets/font_de6f2e6ddeb33e22d39c2570.woff2')format("woff");}.ff3_c01118{font-family:ff3_c01118;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01118;src:url('chunks/assets/font_489b1b4b50d949408a1dfda0.woff2')format("woff");}.ff4_c01118{font-family:ff4_c01118;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01118;src:url('chunks/assets/font_f841fee9d68caf999d560a5e.woff2')format("woff");}.ff5_c01118{font-family:ff5_c01118;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01118;src:url('chunks/assets/font_1121441392f449c5151e7d2a.woff2')format("woff");}.ff6_c01118{font-family:ff6_c01118;line-height:1.311035;font-style:normal;font-weight: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_c01118;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c01118{font-family:ff7_c01118;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01118{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c01118{vertical-align:-15.000000px;}
.v0_c01118{vertical-align:0.000000px;}
.ls2_c01118{letter-spacing:0.000000px;}
.ls1_c01118{letter-spacing:3.000000px;}
.ls3_c01118{letter-spacing:6.000000px;}
.ls0_c01118{letter-spacing:52.620000px;}
.sc__c01118{text-shadow:none;}
.sc0_c01118{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01118{-webkit-text-stroke:0px transparent;}
.sc0_c01118{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01118{word-spacing:-73.686000px;}
.ws1_c01118{word-spacing:-21.075000px;}
.ws4_c01118{word-spacing:-20.250000px;}
.ws2_c01118{word-spacing:-19.500000px;}
.ws3_c01118{word-spacing:-18.000000px;}
.ws5_c01118{word-spacing:0.000000px;}
._1f_c01118{margin-left:-19.011000px;}
._c_c01118{margin-left:-14.964000px;}
._b_c01118{margin-left:-11.718000px;}
._6_c01118{margin-left:-9.180000px;}
._3_c01118{margin-left:-7.344000px;}
._f_c01118{margin-left:-5.727000px;}
._5_c01118{margin-left:-4.488000px;}
._4_c01118{margin-left:-3.162000px;}
._7_c01118{margin-left:-1.530000px;}
._2_c01118{width:1.632000px;}
._1_c01118{width:2.958000px;}
._0_c01118{width:3.978000px;}
._e_c01118{width:5.670000px;}
._d_c01118{width:7.443000px;}
._15_c01118{width:8.619000px;}
._18_c01118{width:10.173000px;}
._9_c01118{width:11.322000px;}
._a_c01118{width:13.464000px;}
._13_c01118{width:14.568000px;}
._11_c01118{width:15.666000px;}
._1c_c01118{width:17.328000px;}
._16_c01118{width:18.501000px;}
._17_c01118{width:19.983000px;}
._20_c01118{width:23.607000px;}
._1a_c01118{width:25.359000px;}
._1b_c01118{width:27.927000px;}
._12_c01118{width:31.350000px;}
._14_c01118{width:32.577000px;}
._10_c01118{width:69.642000px;}
._19_c01118{width:90.171000px;}
._8_c01118{width:111.690000px;}
._1e_c01118{width:216.861000px;}
._1d_c01118{width:1394.841000px;}
.fc2_c01118{color:transparent;}
.fc1_c01118{color:rgb(128,128,128);}
.fc0_c01118{color:rgb(0,0,0);}
.fs8_c01118{font-size:48.000000px;}
.fs6_c01118{font-size:57.000000px;}
.fs7_c01118{font-size:60.000000px;}
.fs4_c01118{font-size:72.000000px;}
.fs3_c01118{font-size:75.000000px;}
.fs5_c01118{font-size:78.000000px;}
.fs1_c01118{font-size:81.000000px;}
.fs2_c01118{font-size:87.000000px;}
.fs0_c01118{font-size:102.000000px;}
.y0_c01118{bottom:0.000000px;}
.y25_c01118{bottom:3.105000px;}
.y24_c01118{bottom:7.228369px;}
.y23_c01118{bottom:52.020000px;}
.y22_c01118{bottom:76.620000px;}
.y21_c01118{bottom:102.270000px;}
.y20_c01118{bottom:126.870000px;}
.y1f_c01118{bottom:151.170000px;}
.y1e_c01118{bottom:176.070000px;}
.y1d_c01118{bottom:200.070000px;}
.y1c_c01118{bottom:224.820000px;}
.y1b_c01118{bottom:249.120000px;}
.y1a_c01118{bottom:273.720000px;}
.y19_c01118{bottom:298.020000px;}
.y18_c01118{bottom:322.020000px;}
.y17_c01118{bottom:346.620000px;}
.y16_c01118{bottom:370.920000px;}
.y15_c01118{bottom:395.220000px;}
.y14_c01118{bottom:419.220000px;}
.y13_c01118{bottom:443.820000px;}
.y12_c01118{bottom:467.820000px;}
.y11_c01118{bottom:492.120000px;}
.y10_c01118{bottom:514.920000px;}
.yf_c01118{bottom:539.970000px;}
.ye_c01118{bottom:563.970000px;}
.yd_c01118{bottom:588.270000px;}
.yc_c01118{bottom:612.270000px;}
.yb_c01118{bottom:639.570000px;}
.ya_c01118{bottom:684.720000px;}
.y9_c01118{bottom:708.420000px;}
.y8_c01118{bottom:727.320000px;}
.y7_c01118{bottom:756.270000px;}
.y6_c01118{bottom:780.570000px;}
.y5_c01118{bottom:804.870000px;}
.y4_c01118{bottom:829.620000px;}
.y3_c01118{bottom:853.470000px;}
.y2_c01118{bottom:877.770000px;}
.y1_c01118{bottom:912.870000px;}
.ha_c01118{height:13.200073px;}
.hb_c01118{height:43.804688px;}
.h8_c01118{height:66.713379px;}
.h9_c01118{height:75.966797px;}
.h6_c01118{height:76.552734px;}
.h4_c01118{height:79.497070px;}
.h3_c01118{height:91.176000px;}
.h5_c01118{height:94.958496px;}
.h7_c01118{height:98.756836px;}
.h2_c01118{height:100.057617px;}
.h0_c01118{height:970.350000px;}
.h1_c01118{height:970.500000px;}
.w2_c01118{width:104.875500px;}
.w0_c01118{width:660.450000px;}
.w1_c01118{width:660.750000px;}
.x0_c01118{left:0.000000px;}
.x2_c01118{left:32.700000px;}
.x3_c01118{left:35.850000px;}
.x4_c01118{left:37.500000px;}
.x5_c01118{left:39.150000px;}
.xd_c01118{left:40.500000px;}
.xb_c01118{left:41.550000px;}
.xc_c01118{left:42.900000px;}
.x9_c01118{left:44.250000px;}
.x1_c01118{left:49.500000px;}
.x7_c01118{left:59.400000px;}
.xe_c01118{left:64.350000px;}
.xa_c01118{left:67.200000px;}
.x8_c01118{left:180.600000px;}
.x10_c01118{left:282.039230px;}
.xf_c01118{left:498.150000px;}
.x6_c01118{left:557.550000px;}
@media print{
.v1_c01118{vertical-align:-13.333333pt;}
.v0_c01118{vertical-align:0.000000pt;}
.ls2_c01118{letter-spacing:0.000000pt;}
.ls1_c01118{letter-spacing:2.666667pt;}
.ls3_c01118{letter-spacing:5.333333pt;}
.ls0_c01118{letter-spacing:46.773333pt;}
.ws0_c01118{word-spacing:-65.498667pt;}
.ws1_c01118{word-spacing:-18.733333pt;}
.ws4_c01118{word-spacing:-18.000000pt;}
.ws2_c01118{word-spacing:-17.333333pt;}
.ws3_c01118{word-spacing:-16.000000pt;}
.ws5_c01118{word-spacing:0.000000pt;}
._1f_c01118{margin-left:-16.898667pt;}
._c_c01118{margin-left:-13.301333pt;}
._b_c01118{margin-left:-10.416000pt;}
._6_c01118{margin-left:-8.160000pt;}
._3_c01118{margin-left:-6.528000pt;}
._f_c01118{margin-left:-5.090667pt;}
._5_c01118{margin-left:-3.989333pt;}
._4_c01118{margin-left:-2.810667pt;}
._7_c01118{margin-left:-1.360000pt;}
._2_c01118{width:1.450667pt;}
._1_c01118{width:2.629333pt;}
._0_c01118{width:3.536000pt;}
._e_c01118{width:5.040000pt;}
._d_c01118{width:6.616000pt;}
._15_c01118{width:7.661333pt;}
._18_c01118{width:9.042667pt;}
._9_c01118{width:10.064000pt;}
._a_c01118{width:11.968000pt;}
._13_c01118{width:12.949333pt;}
._11_c01118{width:13.925333pt;}
._1c_c01118{width:15.402667pt;}
._16_c01118{width:16.445333pt;}
._17_c01118{width:17.762667pt;}
._20_c01118{width:20.984000pt;}
._1a_c01118{width:22.541333pt;}
._1b_c01118{width:24.824000pt;}
._12_c01118{width:27.866667pt;}
._14_c01118{width:28.957333pt;}
._10_c01118{width:61.904000pt;}
._19_c01118{width:80.152000pt;}
._8_c01118{width:99.280000pt;}
._1e_c01118{width:192.765333pt;}
._1d_c01118{width:1239.858667pt;}
.fs8_c01118{font-size:42.666667pt;}
.fs6_c01118{font-size:50.666667pt;}
.fs7_c01118{font-size:53.333333pt;}
.fs4_c01118{font-size:64.000000pt;}
.fs3_c01118{font-size:66.666667pt;}
.fs5_c01118{font-size:69.333333pt;}
.fs1_c01118{font-size:72.000000pt;}
.fs2_c01118{font-size:77.333333pt;}
.fs0_c01118{font-size:90.666667pt;}
.y0_c01118{bottom:0.000000pt;}
.y25_c01118{bottom:2.760000pt;}
.y24_c01118{bottom:6.425217pt;}
.y23_c01118{bottom:46.240000pt;}
.y22_c01118{bottom:68.106667pt;}
.y21_c01118{bottom:90.906667pt;}
.y20_c01118{bottom:112.773333pt;}
.y1f_c01118{bottom:134.373333pt;}
.y1e_c01118{bottom:156.506667pt;}
.y1d_c01118{bottom:177.840000pt;}
.y1c_c01118{bottom:199.840000pt;}
.y1b_c01118{bottom:221.440000pt;}
.y1a_c01118{bottom:243.306667pt;}
.y19_c01118{bottom:264.906667pt;}
.y18_c01118{bottom:286.240000pt;}
.y17_c01118{bottom:308.106667pt;}
.y16_c01118{bottom:329.706667pt;}
.y15_c01118{bottom:351.306667pt;}
.y14_c01118{bottom:372.640000pt;}
.y13_c01118{bottom:394.506667pt;}
.y12_c01118{bottom:415.840000pt;}
.y11_c01118{bottom:437.440000pt;}
.y10_c01118{bottom:457.706667pt;}
.yf_c01118{bottom:479.973333pt;}
.ye_c01118{bottom:501.306667pt;}
.yd_c01118{bottom:522.906667pt;}
.yc_c01118{bottom:544.240000pt;}
.yb_c01118{bottom:568.506667pt;}
.ya_c01118{bottom:608.640000pt;}
.y9_c01118{bottom:629.706667pt;}
.y8_c01118{bottom:646.506667pt;}
.y7_c01118{bottom:672.240000pt;}
.y6_c01118{bottom:693.840000pt;}
.y5_c01118{bottom:715.440000pt;}
.y4_c01118{bottom:737.440000pt;}
.y3_c01118{bottom:758.640000pt;}
.y2_c01118{bottom:780.240000pt;}
.y1_c01118{bottom:811.440000pt;}
.ha_c01118{height:11.733399pt;}
.hb_c01118{height:38.937500pt;}
.h8_c01118{height:59.300781pt;}
.h9_c01118{height:67.526042pt;}
.h6_c01118{height:68.046875pt;}
.h4_c01118{height:70.664062pt;}
.h3_c01118{height:81.045333pt;}
.h5_c01118{height:84.407552pt;}
.h7_c01118{height:87.783854pt;}
.h2_c01118{height:88.940104pt;}
.h0_c01118{height:862.533333pt;}
.h1_c01118{height:862.666667pt;}
.w2_c01118{width:93.222667pt;}
.w0_c01118{width:587.066667pt;}
.w1_c01118{width:587.333333pt;}
.x0_c01118{left:0.000000pt;}
.x2_c01118{left:29.066667pt;}
.x3_c01118{left:31.866667pt;}
.x4_c01118{left:33.333333pt;}
.x5_c01118{left:34.800000pt;}
.xd_c01118{left:36.000000pt;}
.xb_c01118{left:36.933333pt;}
.xc_c01118{left:38.133333pt;}
.x9_c01118{left:39.333333pt;}
.x1_c01118{left:44.000000pt;}
.x7_c01118{left:52.800000pt;}
.xe_c01118{left:57.200000pt;}
.xa_c01118{left:59.733333pt;}
.x8_c01118{left:160.533333pt;}
.x10_c01118{left:250.701538pt;}
.xf_c01118{left:442.800000pt;}
.x6_c01118{left:495.600000pt;}
}





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

.ir_c01119:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01119{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01119;src:url('chunks/assets/font_a86bfa3146a49036b42e9ffc.woff2')format("woff");}.ff1_c01119{font-family:ff1_c01119;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01119;src:url('chunks/assets/font_264711a80dd24fb3c5a2711a.woff2')format("woff");}.ff2_c01119{font-family:ff2_c01119;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01119;src:url('chunks/assets/font_98dadf564126de77afa56f1a.woff2')format("woff");}.ff3_c01119{font-family:ff3_c01119;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01119;src:url('chunks/assets/font_9b1bf296f92d39f84abbea42.woff2')format("woff");}.ff4_c01119{font-family:ff4_c01119;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01119;src:url('chunks/assets/font_8f3eb8a3b8aaed5d40cd6edb.woff2')format("woff");}.ff5_c01119{font-family:ff5_c01119;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01119;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c01119{font-family:ff6_c01119;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01119{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01119{vertical-align:0.000000px;}
.v1_c01119{vertical-align:2.400000px;}
.ls3_c01119{letter-spacing:0.000000px;}
.ls0_c01119{letter-spacing:2.802000px;}
.ls2_c01119{letter-spacing:3.000000px;}
.ls4_c01119{letter-spacing:6.000000px;}
.ls1_c01119{letter-spacing:124.620000px;}
.sc__c01119{text-shadow:none;}
.sc0_c01119{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01119{-webkit-text-stroke:0px transparent;}
.sc0_c01119{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01119{word-spacing:-38.250000px;}
.ws0_c01119{word-spacing:-28.500000px;}
.ws2_c01119{word-spacing:-15.750000px;}
.ws3_c01119{word-spacing:0.000000px;}
._9_c01119{margin-left:-28.020000px;}
._6_c01119{margin-left:-23.100000px;}
._1e_c01119{margin-left:-19.239000px;}
._c_c01119{margin-left:-16.716000px;}
._20_c01119{margin-left:-14.214000px;}
._5_c01119{margin-left:-12.966000px;}
._b_c01119{margin-left:-11.274000px;}
._0_c01119{margin-left:-9.282000px;}
._1_c01119{margin-left:-7.398000px;}
._24_c01119{margin-left:-5.643000px;}
._8_c01119{margin-left:-3.294000px;}
._4_c01119{margin-left:-1.428000px;}
._7_c01119{width:1.020000px;}
._a_c01119{width:2.142000px;}
._17_c01119{width:3.216000px;}
._13_c01119{width:4.452000px;}
._15_c01119{width:6.381000px;}
._e_c01119{width:7.866000px;}
._d_c01119{width:8.892000px;}
._12_c01119{width:10.032000px;}
._f_c01119{width:11.913000px;}
._11_c01119{width:13.008000px;}
._10_c01119{width:15.390000px;}
._14_c01119{width:17.214000px;}
._16_c01119{width:18.813000px;}
._27_c01119{width:19.893000px;}
._19_c01119{width:21.072000px;}
._1a_c01119{width:22.800000px;}
._18_c01119{width:23.859000px;}
._21_c01119{width:25.632000px;}
._1d_c01119{width:27.159000px;}
._23_c01119{width:29.259000px;}
._26_c01119{width:30.765000px;}
._22_c01119{width:33.516000px;}
._1c_c01119{width:36.405000px;}
._28_c01119{width:39.945000px;}
._3_c01119{width:42.432000px;}
._2_c01119{width:47.589000px;}
._1b_c01119{width:103.602000px;}
._25_c01119{width:187.644000px;}
._1f_c01119{width:486.774000px;}
.fc2_c01119{color:transparent;}
.fc1_c01119{color:rgb(128,128,128);}
.fc0_c01119{color:rgb(0,0,0);}
.fs7_c01119{font-size:48.000000px;}
.fs3_c01119{font-size:57.000000px;}
.fs6_c01119{font-size:60.000000px;}
.fs5_c01119{font-size:63.000000px;}
.fs4_c01119{font-size:78.000000px;}
.fs1_c01119{font-size:87.000000px;}
.fs0_c01119{font-size:102.000000px;}
.fs2_c01119{font-size:129.000000px;}
.y0_c01119{bottom:0.000000px;}
.y25_c01119{bottom:3.105000px;}
.y24_c01119{bottom:7.228355px;}
.y23_c01119{bottom:82.935000px;}
.y22_c01119{bottom:107.535000px;}
.y21_c01119{bottom:132.585000px;}
.y20_c01119{bottom:157.485000px;}
.y1f_c01119{bottom:181.935000px;}
.y1e_c01119{bottom:206.085000px;}
.y1d_c01119{bottom:230.835000px;}
.y1c_c01119{bottom:255.135000px;}
.y1b_c01119{bottom:279.735000px;}
.y1a_c01119{bottom:304.785000px;}
.y19_c01119{bottom:328.935000px;}
.y18_c01119{bottom:352.635000px;}
.y17_c01119{bottom:377.235000px;}
.y16_c01119{bottom:400.935000px;}
.y15_c01119{bottom:426.135000px;}
.y14_c01119{bottom:450.435000px;}
.y13_c01119{bottom:474.435000px;}
.y12_c01119{bottom:498.735000px;}
.y11_c01119{bottom:523.485000px;}
.y10_c01119{bottom:547.035000px;}
.yf_c01119{bottom:571.035000px;}
.ye_c01119{bottom:595.935000px;}
.yd_c01119{bottom:619.935000px;}
.yc_c01119{bottom:644.835000px;}
.yb_c01119{bottom:667.485000px;}
.ya_c01119{bottom:692.085000px;}
.y9_c01119{bottom:717.135000px;}
.y8_c01119{bottom:740.685000px;}
.y7_c01119{bottom:764.985000px;}
.y6_c01119{bottom:789.285000px;}
.y5_c01119{bottom:813.285000px;}
.y4_c01119{bottom:837.585000px;}
.y3_c01119{bottom:861.585000px;}
.y2_c01119{bottom:886.485000px;}
.y1_c01119{bottom:920.685000px;}
.h7_c01119{height:13.200074px;}
.h8_c01119{height:43.804688px;}
.h3_c01119{height:57.445312px;}
.h6_c01119{height:59.845312px;}
.h4_c01119{height:72.168457px;}
.h5_c01119{height:98.756836px;}
.h2_c01119{height:126.543457px;}
.h1_c01119{height:975.000000px;}
.h0_c01119{height:975.225000px;}
.w2_c01119{width:104.875500px;}
.w0_c01119{width:659.850000px;}
.w1_c01119{width:660.000000px;}
.x0_c01119{left:0.000000px;}
.x5_c01119{left:47.250000px;}
.x7_c01119{left:79.050000px;}
.x3_c01119{left:96.750000px;}
.x4_c01119{left:98.550000px;}
.xa_c01119{left:132.300000px;}
.x6_c01119{left:133.650000px;}
.x2_c01119{left:135.000000px;}
.x1_c01119{left:136.050000px;}
.x8_c01119{left:137.100000px;}
.xb_c01119{left:138.450000px;}
.x9_c01119{left:172.500000px;}
.xc_c01119{left:281.739258px;}
@media print{
.v0_c01119{vertical-align:0.000000pt;}
.v1_c01119{vertical-align:2.133333pt;}
.ls3_c01119{letter-spacing:0.000000pt;}
.ls0_c01119{letter-spacing:2.490667pt;}
.ls2_c01119{letter-spacing:2.666667pt;}
.ls4_c01119{letter-spacing:5.333333pt;}
.ls1_c01119{letter-spacing:110.773333pt;}
.ws1_c01119{word-spacing:-34.000000pt;}
.ws0_c01119{word-spacing:-25.333333pt;}
.ws2_c01119{word-spacing:-14.000000pt;}
.ws3_c01119{word-spacing:0.000000pt;}
._9_c01119{margin-left:-24.906667pt;}
._6_c01119{margin-left:-20.533333pt;}
._1e_c01119{margin-left:-17.101333pt;}
._c_c01119{margin-left:-14.858667pt;}
._20_c01119{margin-left:-12.634667pt;}
._5_c01119{margin-left:-11.525333pt;}
._b_c01119{margin-left:-10.021333pt;}
._0_c01119{margin-left:-8.250667pt;}
._1_c01119{margin-left:-6.576000pt;}
._24_c01119{margin-left:-5.016000pt;}
._8_c01119{margin-left:-2.928000pt;}
._4_c01119{margin-left:-1.269333pt;}
._7_c01119{width:0.906667pt;}
._a_c01119{width:1.904000pt;}
._17_c01119{width:2.858667pt;}
._13_c01119{width:3.957333pt;}
._15_c01119{width:5.672000pt;}
._e_c01119{width:6.992000pt;}
._d_c01119{width:7.904000pt;}
._12_c01119{width:8.917333pt;}
._f_c01119{width:10.589333pt;}
._11_c01119{width:11.562667pt;}
._10_c01119{width:13.680000pt;}
._14_c01119{width:15.301333pt;}
._16_c01119{width:16.722667pt;}
._27_c01119{width:17.682667pt;}
._19_c01119{width:18.730667pt;}
._1a_c01119{width:20.266667pt;}
._18_c01119{width:21.208000pt;}
._21_c01119{width:22.784000pt;}
._1d_c01119{width:24.141333pt;}
._23_c01119{width:26.008000pt;}
._26_c01119{width:27.346667pt;}
._22_c01119{width:29.792000pt;}
._1c_c01119{width:32.360000pt;}
._28_c01119{width:35.506667pt;}
._3_c01119{width:37.717333pt;}
._2_c01119{width:42.301333pt;}
._1b_c01119{width:92.090667pt;}
._25_c01119{width:166.794667pt;}
._1f_c01119{width:432.688000pt;}
.fs7_c01119{font-size:42.666667pt;}
.fs3_c01119{font-size:50.666667pt;}
.fs6_c01119{font-size:53.333333pt;}
.fs5_c01119{font-size:56.000000pt;}
.fs4_c01119{font-size:69.333333pt;}
.fs1_c01119{font-size:77.333333pt;}
.fs0_c01119{font-size:90.666667pt;}
.fs2_c01119{font-size:114.666667pt;}
.y0_c01119{bottom:0.000000pt;}
.y25_c01119{bottom:2.760000pt;}
.y24_c01119{bottom:6.425204pt;}
.y23_c01119{bottom:73.720000pt;}
.y22_c01119{bottom:95.586667pt;}
.y21_c01119{bottom:117.853333pt;}
.y20_c01119{bottom:139.986667pt;}
.y1f_c01119{bottom:161.720000pt;}
.y1e_c01119{bottom:183.186667pt;}
.y1d_c01119{bottom:205.186667pt;}
.y1c_c01119{bottom:226.786667pt;}
.y1b_c01119{bottom:248.653333pt;}
.y1a_c01119{bottom:270.920000pt;}
.y19_c01119{bottom:292.386667pt;}
.y18_c01119{bottom:313.453333pt;}
.y17_c01119{bottom:335.320000pt;}
.y16_c01119{bottom:356.386667pt;}
.y15_c01119{bottom:378.786667pt;}
.y14_c01119{bottom:400.386667pt;}
.y13_c01119{bottom:421.720000pt;}
.y12_c01119{bottom:443.320000pt;}
.y11_c01119{bottom:465.320000pt;}
.y10_c01119{bottom:486.253333pt;}
.yf_c01119{bottom:507.586667pt;}
.ye_c01119{bottom:529.720000pt;}
.yd_c01119{bottom:551.053333pt;}
.yc_c01119{bottom:573.186667pt;}
.yb_c01119{bottom:593.320000pt;}
.ya_c01119{bottom:615.186667pt;}
.y9_c01119{bottom:637.453333pt;}
.y8_c01119{bottom:658.386667pt;}
.y7_c01119{bottom:679.986667pt;}
.y6_c01119{bottom:701.586667pt;}
.y5_c01119{bottom:722.920000pt;}
.y4_c01119{bottom:744.520000pt;}
.y3_c01119{bottom:765.853333pt;}
.y2_c01119{bottom:787.986667pt;}
.y1_c01119{bottom:818.386667pt;}
.h7_c01119{height:11.733399pt;}
.h8_c01119{height:38.937500pt;}
.h3_c01119{height:51.062500pt;}
.h6_c01119{height:53.195833pt;}
.h4_c01119{height:64.149740pt;}
.h5_c01119{height:87.783854pt;}
.h2_c01119{height:112.483073pt;}
.h1_c01119{height:866.666667pt;}
.h0_c01119{height:866.866667pt;}
.w2_c01119{width:93.222667pt;}
.w0_c01119{width:586.533333pt;}
.w1_c01119{width:586.666667pt;}
.x0_c01119{left:0.000000pt;}
.x5_c01119{left:42.000000pt;}
.x7_c01119{left:70.266667pt;}
.x3_c01119{left:86.000000pt;}
.x4_c01119{left:87.600000pt;}
.xa_c01119{left:117.600000pt;}
.x6_c01119{left:118.800000pt;}
.x2_c01119{left:120.000000pt;}
.x1_c01119{left:120.933333pt;}
.x8_c01119{left:121.866667pt;}
.xb_c01119{left:123.066667pt;}
.x9_c01119{left:153.333333pt;}
.xc_c01119{left:250.434896pt;}
}





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

.ir_c01120:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01120{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01120;src:url('chunks/assets/font_924020be96bd844887ef0f0b.woff2')format("woff");}.ff1_c01120{font-family:ff1_c01120;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01120;src:url('chunks/assets/font_043e88fee5abb429a5ad0791.woff2')format("woff");}.ff2_c01120{font-family:ff2_c01120;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01120;src:url('chunks/assets/font_c6f3d73378ecbfadb9c311bc.woff2')format("woff");}.ff3_c01120{font-family:ff3_c01120;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01120;src:url('chunks/assets/font_ed9a11b13d5b325db2a74cc6.woff2')format("woff");}.ff4_c01120{font-family:ff4_c01120;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01120;src:url('chunks/assets/font_9fb815a67ff3e350f7b02e54.woff2')format("woff");}.ff5_c01120{font-family:ff5_c01120;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01120;src:url('chunks/assets/font_b87b4dd4f7bccf382a2a2a27.woff2')format("woff");}.ff6_c01120{font-family:ff6_c01120;line-height:1.284180;font-style:normal;font-weight: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_c01120;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c01120{font-family:ff7_c01120;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01120{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01120{vertical-align:0.000000px;}
.v1_c01120{vertical-align:3.000000px;}
.ls5_c01120{letter-spacing:0.000000px;}
.ls0_c01120{letter-spacing:3.000000px;}
.ls4_c01120{letter-spacing:3.900000px;}
.ls6_c01120{letter-spacing:6.000000px;}
.ls2_c01120{letter-spacing:9.900000px;}
.ls1_c01120{letter-spacing:18.000000px;}
.ls3_c01120{letter-spacing:130.200000px;}
.sc__c01120{text-shadow:none;}
.sc0_c01120{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01120{-webkit-text-stroke:0px transparent;}
.sc0_c01120{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c01120{word-spacing:-33.360000px;}
.ws1_c01120{word-spacing:-20.964000px;}
.ws4_c01120{word-spacing:-17.352000px;}
.ws0_c01120{word-spacing:-17.250000px;}
.ws5_c01120{word-spacing:-14.460000px;}
.ws3_c01120{word-spacing:-13.737000px;}
.ws2_c01120{word-spacing:-0.513000px;}
.ws7_c01120{word-spacing:0.000000px;}
._25_c01120{margin-left:-18.981000px;}
._1b_c01120{margin-left:-11.412000px;}
._0_c01120{margin-left:-9.381000px;}
._12_c01120{margin-left:-8.151000px;}
._19_c01120{margin-left:-6.198000px;}
._1c_c01120{margin-left:-5.073000px;}
._29_c01120{margin-left:-3.837000px;}
._18_c01120{margin-left:-2.745000px;}
._1d_c01120{margin-left:-1.122000px;}
._1_c01120{width:1.026000px;}
._5_c01120{width:2.679000px;}
._c_c01120{width:4.104000px;}
._b_c01120{width:5.985000px;}
._4_c01120{width:7.068000px;}
._9_c01120{width:8.208000px;}
._7_c01120{width:10.089000px;}
._8_c01120{width:11.115000px;}
._3_c01120{width:12.198000px;}
._6_c01120{width:13.224000px;}
._2_c01120{width:15.732000px;}
._d_c01120{width:17.613000px;}
._e_c01120{width:19.323000px;}
._13_c01120{width:20.349000px;}
._a_c01120{width:21.489000px;}
._f_c01120{width:22.743000px;}
._14_c01120{width:24.168000px;}
._21_c01120{width:26.049000px;}
._16_c01120{width:27.246000px;}
._17_c01120{width:28.386000px;}
._1a_c01120{width:31.581000px;}
._1f_c01120{width:33.639000px;}
._11_c01120{width:35.283000px;}
._15_c01120{width:37.887000px;}
._10_c01120{width:41.268000px;}
._1e_c01120{width:45.807000px;}
._20_c01120{width:47.253000px;}
._28_c01120{width:50.208000px;}
._23_c01120{width:52.986000px;}
._22_c01120{width:104.421000px;}
._26_c01120{width:138.111000px;}
._27_c01120{width:142.404000px;}
._24_c01120{width:178.638000px;}
.fc2_c01120{color:transparent;}
.fc1_c01120{color:rgb(128,128,128);}
.fc0_c01120{color:rgb(0,0,0);}
.fs4_c01120{font-size:30.000000px;}
.fsa_c01120{font-size:48.000000px;}
.fs0_c01120{font-size:57.000000px;}
.fs6_c01120{font-size:60.000000px;}
.fs5_c01120{font-size:63.000000px;}
.fs9_c01120{font-size:66.000000px;}
.fs8_c01120{font-size:72.000000px;}
.fs3_c01120{font-size:78.000000px;}
.fs7_c01120{font-size:81.000000px;}
.fs2_c01120{font-size:84.000000px;}
.fs1_c01120{font-size:90.000000px;}
.y0_c01120{bottom:0.000000px;}
.y24_c01120{bottom:3.105000px;}
.y23_c01120{bottom:7.228363px;}
.y22_c01120{bottom:79.650000px;}
.y21_c01120{bottom:104.700000px;}
.y20_c01120{bottom:129.150000px;}
.y1f_c01120{bottom:153.900000px;}
.y1e_c01120{bottom:178.200000px;}
.y1d_c01120{bottom:202.800000px;}
.y1c_c01120{bottom:227.100000px;}
.y1b_c01120{bottom:251.400000px;}
.y1a_c01120{bottom:275.100000px;}
.y19_c01120{bottom:301.050000px;}
.y18_c01120{bottom:324.000000px;}
.y17_c01120{bottom:348.000000px;}
.y16_c01120{bottom:373.050000px;}
.y15_c01120{bottom:395.550000px;}
.y14_c01120{bottom:421.650000px;}
.y13_c01120{bottom:444.750000px;}
.y12_c01120{bottom:468.750000px;}
.y11_c01120{bottom:492.750000px;}
.y10_c01120{bottom:516.750000px;}
.yf_c01120{bottom:541.800000px;}
.ye_c01120{bottom:564.000000px;}
.yd_c01120{bottom:591.000000px;}
.yc_c01120{bottom:611.250000px;}
.yb_c01120{bottom:636.300000px;}
.ya_c01120{bottom:660.450000px;}
.y9_c01120{bottom:684.150000px;}
.y8_c01120{bottom:708.150000px;}
.y7_c01120{bottom:734.400000px;}
.y6_c01120{bottom:756.300000px;}
.y5_c01120{bottom:781.050000px;}
.y4_c01120{bottom:805.050000px;}
.y3_c01120{bottom:829.350000px;}
.y2_c01120{bottom:854.850000px;}
.y1_c01120{bottom:877.800000px;}
.ha_c01120{height:13.200074px;}
.hb_c01120{height:43.804688px;}
.h3_c01120{height:57.445312px;}
.h6_c01120{height:66.713379px;}
.h9_c01120{height:70.224609px;}
.h8_c01120{height:75.966797px;}
.h4_c01120{height:82.441406px;}
.h2_c01120{height:88.330078px;}
.h7_c01120{height:94.160156px;}
.h5_c01120{height:98.756836px;}
.h1_c01120{height:963.750000px;}
.h0_c01120{height:963.900000px;}
.w2_c01120{width:104.875500px;}
.w0_c01120{width:656.100000px;}
.w1_c01120{width:656.250000px;}
.x0_c01120{left:0.000000px;}
.xd_c01120{left:38.850000px;}
.xf_c01120{left:40.200000px;}
.xe_c01120{left:41.550000px;}
.xc_c01120{left:43.200000px;}
.xb_c01120{left:44.550000px;}
.xa_c01120{left:46.200000px;}
.x9_c01120{left:47.250000px;}
.x6_c01120{left:49.200000px;}
.x7_c01120{left:51.000000px;}
.x1_c01120{left:53.250000px;}
.x5_c01120{left:54.300000px;}
.x4_c01120{left:56.400000px;}
.x3_c01120{left:57.600000px;}
.x2_c01120{left:60.000000px;}
.x8_c01120{left:87.300000px;}
.x10_c01120{left:279.864258px;}
@media print{
.v0_c01120{vertical-align:0.000000pt;}
.v1_c01120{vertical-align:2.666667pt;}
.ls5_c01120{letter-spacing:0.000000pt;}
.ls0_c01120{letter-spacing:2.666667pt;}
.ls4_c01120{letter-spacing:3.466667pt;}
.ls6_c01120{letter-spacing:5.333333pt;}
.ls2_c01120{letter-spacing:8.800000pt;}
.ls1_c01120{letter-spacing:16.000000pt;}
.ls3_c01120{letter-spacing:115.733333pt;}
.ws6_c01120{word-spacing:-29.653333pt;}
.ws1_c01120{word-spacing:-18.634667pt;}
.ws4_c01120{word-spacing:-15.424000pt;}
.ws0_c01120{word-spacing:-15.333333pt;}
.ws5_c01120{word-spacing:-12.853333pt;}
.ws3_c01120{word-spacing:-12.210667pt;}
.ws2_c01120{word-spacing:-0.456000pt;}
.ws7_c01120{word-spacing:0.000000pt;}
._25_c01120{margin-left:-16.872000pt;}
._1b_c01120{margin-left:-10.144000pt;}
._0_c01120{margin-left:-8.338667pt;}
._12_c01120{margin-left:-7.245333pt;}
._19_c01120{margin-left:-5.509333pt;}
._1c_c01120{margin-left:-4.509333pt;}
._29_c01120{margin-left:-3.410667pt;}
._18_c01120{margin-left:-2.440000pt;}
._1d_c01120{margin-left:-0.997333pt;}
._1_c01120{width:0.912000pt;}
._5_c01120{width:2.381333pt;}
._c_c01120{width:3.648000pt;}
._b_c01120{width:5.320000pt;}
._4_c01120{width:6.282667pt;}
._9_c01120{width:7.296000pt;}
._7_c01120{width:8.968000pt;}
._8_c01120{width:9.880000pt;}
._3_c01120{width:10.842667pt;}
._6_c01120{width:11.754667pt;}
._2_c01120{width:13.984000pt;}
._d_c01120{width:15.656000pt;}
._e_c01120{width:17.176000pt;}
._13_c01120{width:18.088000pt;}
._a_c01120{width:19.101333pt;}
._f_c01120{width:20.216000pt;}
._14_c01120{width:21.482667pt;}
._21_c01120{width:23.154667pt;}
._16_c01120{width:24.218667pt;}
._17_c01120{width:25.232000pt;}
._1a_c01120{width:28.072000pt;}
._1f_c01120{width:29.901333pt;}
._11_c01120{width:31.362667pt;}
._15_c01120{width:33.677333pt;}
._10_c01120{width:36.682667pt;}
._1e_c01120{width:40.717333pt;}
._20_c01120{width:42.002667pt;}
._28_c01120{width:44.629333pt;}
._23_c01120{width:47.098667pt;}
._22_c01120{width:92.818667pt;}
._26_c01120{width:122.765333pt;}
._27_c01120{width:126.581333pt;}
._24_c01120{width:158.789333pt;}
.fs4_c01120{font-size:26.666667pt;}
.fsa_c01120{font-size:42.666667pt;}
.fs0_c01120{font-size:50.666667pt;}
.fs6_c01120{font-size:53.333333pt;}
.fs5_c01120{font-size:56.000000pt;}
.fs9_c01120{font-size:58.666667pt;}
.fs8_c01120{font-size:64.000000pt;}
.fs3_c01120{font-size:69.333333pt;}
.fs7_c01120{font-size:72.000000pt;}
.fs2_c01120{font-size:74.666667pt;}
.fs1_c01120{font-size:80.000000pt;}
.y0_c01120{bottom:0.000000pt;}
.y24_c01120{bottom:2.760000pt;}
.y23_c01120{bottom:6.425212pt;}
.y22_c01120{bottom:70.800000pt;}
.y21_c01120{bottom:93.066667pt;}
.y20_c01120{bottom:114.800000pt;}
.y1f_c01120{bottom:136.800000pt;}
.y1e_c01120{bottom:158.400000pt;}
.y1d_c01120{bottom:180.266667pt;}
.y1c_c01120{bottom:201.866667pt;}
.y1b_c01120{bottom:223.466667pt;}
.y1a_c01120{bottom:244.533333pt;}
.y19_c01120{bottom:267.600000pt;}
.y18_c01120{bottom:288.000000pt;}
.y17_c01120{bottom:309.333333pt;}
.y16_c01120{bottom:331.600000pt;}
.y15_c01120{bottom:351.600000pt;}
.y14_c01120{bottom:374.800000pt;}
.y13_c01120{bottom:395.333333pt;}
.y12_c01120{bottom:416.666667pt;}
.y11_c01120{bottom:438.000000pt;}
.y10_c01120{bottom:459.333333pt;}
.yf_c01120{bottom:481.600000pt;}
.ye_c01120{bottom:501.333333pt;}
.yd_c01120{bottom:525.333333pt;}
.yc_c01120{bottom:543.333333pt;}
.yb_c01120{bottom:565.600000pt;}
.ya_c01120{bottom:587.066667pt;}
.y9_c01120{bottom:608.133333pt;}
.y8_c01120{bottom:629.466667pt;}
.y7_c01120{bottom:652.800000pt;}
.y6_c01120{bottom:672.266667pt;}
.y5_c01120{bottom:694.266667pt;}
.y4_c01120{bottom:715.600000pt;}
.y3_c01120{bottom:737.200000pt;}
.y2_c01120{bottom:759.866667pt;}
.y1_c01120{bottom:780.266667pt;}
.ha_c01120{height:11.733399pt;}
.hb_c01120{height:38.937500pt;}
.h3_c01120{height:51.062500pt;}
.h6_c01120{height:59.300781pt;}
.h9_c01120{height:62.421875pt;}
.h8_c01120{height:67.526042pt;}
.h4_c01120{height:73.281250pt;}
.h2_c01120{height:78.515625pt;}
.h7_c01120{height:83.697917pt;}
.h5_c01120{height:87.783854pt;}
.h1_c01120{height:856.666667pt;}
.h0_c01120{height:856.800000pt;}
.w2_c01120{width:93.222667pt;}
.w0_c01120{width:583.200000pt;}
.w1_c01120{width:583.333333pt;}
.x0_c01120{left:0.000000pt;}
.xd_c01120{left:34.533333pt;}
.xf_c01120{left:35.733333pt;}
.xe_c01120{left:36.933333pt;}
.xc_c01120{left:38.400000pt;}
.xb_c01120{left:39.600000pt;}
.xa_c01120{left:41.066667pt;}
.x9_c01120{left:42.000000pt;}
.x6_c01120{left:43.733333pt;}
.x7_c01120{left:45.333333pt;}
.x1_c01120{left:47.333333pt;}
.x5_c01120{left:48.266667pt;}
.x4_c01120{left:50.133333pt;}
.x3_c01120{left:51.200000pt;}
.x2_c01120{left:53.333333pt;}
.x8_c01120{left:77.600000pt;}
.x10_c01120{left:248.768229pt;}
}





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

.ir_c01121:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01121{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01121;src:url('chunks/assets/font_bbb36ca71bac6038d3c96211.woff2')format("woff");}.ff1_c01121{font-family:ff1_c01121;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01121;src:url('chunks/assets/font_1edddcbd6e9ae4ebe687a158.woff2')format("woff");}.ff2_c01121{font-family:ff2_c01121;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01121;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff3_c01121{font-family:ff3_c01121;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01121;src:url('chunks/assets/font_22490c51baba7a76e5a316e3.woff2')format("woff");}.ff4_c01121{font-family:ff4_c01121;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01121;src:url('chunks/assets/font_eb3f8029095cfe42169890d3.woff2')format("woff");}.ff5_c01121{font-family:ff5_c01121;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01121;src:url('chunks/assets/font_155c58cd9bc960650505a2d3.woff2')format("woff");}.ff6_c01121{font-family:ff6_c01121;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01121;src:url('chunks/assets/font_fe11a611c51ebbf17211bd19.woff2')format("woff");}.ff7_c01121{font-family:ff7_c01121;line-height:1.284180;font-style:normal;font-weight: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_c01121;src:url('chunks/assets/font_d0836bb0d562beba89c970f5.woff2')format("woff");}.ff8_c01121{font-family:ff8_c01121;line-height:1.284180;font-style:normal;font-weight: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_c01121;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff9_c01121{font-family:ff9_c01121;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01121{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01121{vertical-align:0.000000px;}
.v1_c01121{vertical-align:100.200000px;}
.ls3_c01121{letter-spacing:0.000000px;}
.ls2_c01121{letter-spacing:0.300000px;}
.ls1_c01121{letter-spacing:3.000000px;}
.ls0_c01121{letter-spacing:11.700000px;}
.ls4_c01121{letter-spacing:24.000000px;}
.sc__c01121{text-shadow:none;}
.sc0_c01121{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01121{-webkit-text-stroke:0px transparent;}
.sc0_c01121{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01121{word-spacing:-59.274000px;}
.ws6_c01121{word-spacing:-37.500000px;}
.ws8_c01121{word-spacing:-30.000000px;}
.ws3_c01121{word-spacing:-25.818000px;}
.ws4_c01121{word-spacing:-20.654400px;}
.ws5_c01121{word-spacing:-18.798000px;}
.ws1_c01121{word-spacing:-4.479000px;}
.ws7_c01121{word-spacing:-1.776000px;}
.wsa_c01121{word-spacing:0.000000px;}
.ws2_c01121{word-spacing:1.014000px;}
.ws9_c01121{word-spacing:85.512000px;}
._22_c01121{margin-left:-57.876000px;}
._2a_c01121{margin-left:-41.442000px;}
._24_c01121{margin-left:-31.566000px;}
._14_c01121{margin-left:-29.166000px;}
._1c_c01121{margin-left:-27.624000px;}
._2b_c01121{margin-left:-25.896000px;}
._28_c01121{margin-left:-24.024000px;}
._25_c01121{margin-left:-20.100000px;}
._23_c01121{margin-left:-18.942000px;}
._19_c01121{margin-left:-17.211000px;}
._7_c01121{margin-left:-14.274000px;}
._1f_c01121{margin-left:-12.429000px;}
._1e_c01121{margin-left:-11.154000px;}
._5_c01121{margin-left:-9.906000px;}
._6_c01121{margin-left:-8.268000px;}
._21_c01121{margin-left:-7.176000px;}
._8_c01121{margin-left:-5.928000px;}
._17_c01121{margin-left:-4.134000px;}
._f_c01121{margin-left:-3.120000px;}
._1_c01121{margin-left:-1.560000px;}
._2_c01121{width:1.092000px;}
._0_c01121{width:2.808000px;}
._c_c01121{width:4.758000px;}
._4_c01121{width:6.006000px;}
._e_c01121{width:7.878000px;}
._d_c01121{width:9.489000px;}
._3_c01121{width:11.154000px;}
._b_c01121{width:12.741000px;}
._16_c01121{width:14.082000px;}
._11_c01121{width:15.861000px;}
._10_c01121{width:17.445000px;}
._13_c01121{width:18.723000px;}
._12_c01121{width:21.468000px;}
._a_c01121{width:23.655000px;}
._18_c01121{width:25.506000px;}
._9_c01121{width:31.344000px;}
._1b_c01121{width:34.866000px;}
._20_c01121{width:36.306000px;}
._1d_c01121{width:40.899000px;}
._15_c01121{width:50.622000px;}
._26_c01121{width:90.012000px;}
._29_c01121{width:220.965000px;}
._2c_c01121{width:226.953000px;}
._27_c01121{width:262.236000px;}
._1a_c01121{width:268.320000px;}
.fc2_c01121{color:transparent;}
.fc1_c01121{color:rgb(128,128,128);}
.fc0_c01121{color:rgb(0,0,0);}
.fs8_c01121{font-size:48.000000px;}
.fs2_c01121{font-size:51.000000px;}
.fs1_c01121{font-size:57.000000px;}
.fs4_c01121{font-size:62.400000px;}
.fs7_c01121{font-size:63.000000px;}
.fs5_c01121{font-size:75.000000px;}
.fs0_c01121{font-size:78.000000px;}
.fs6_c01121{font-size:120.000000px;}
.fs3_c01121{font-size:222.000000px;}
.y0_c01121{bottom:0.000000px;}
.y23_c01121{bottom:3.105000px;}
.y22_c01121{bottom:7.228355px;}
.y21_c01121{bottom:105.585000px;}
.y20_c01121{bottom:131.235000px;}
.y1f_c01121{bottom:156.135000px;}
.y1e_c01121{bottom:180.585000px;}
.y1d_c01121{bottom:205.485000px;}
.y1c_c01121{bottom:230.085000px;}
.y1b_c01121{bottom:255.435000px;}
.y1a_c01121{bottom:279.435000px;}
.y19_c01121{bottom:304.035000px;}
.y18_c01121{bottom:328.635000px;}
.y17_c01121{bottom:353.235000px;}
.y16_c01121{bottom:377.685000px;}
.y15_c01121{bottom:403.335000px;}
.y14_c01121{bottom:426.585000px;}
.y13_c01121{bottom:450.885000px;}
.y12_c01121{bottom:474.885000px;}
.y11_c01121{bottom:499.035000px;}
.y10_c01121{bottom:523.785000px;}
.yf_c01121{bottom:547.785000px;}
.ye_c01121{bottom:572.085000px;}
.yd_c01121{bottom:595.635000px;}
.yc_c01121{bottom:620.235000px;}
.yb_c01121{bottom:644.835000px;}
.ya_c01121{bottom:668.535000px;}
.y9_c01121{bottom:692.835000px;}
.y7_c01121{bottom:716.985000px;}
.y8_c01121{bottom:717.435000px;}
.y6_c01121{bottom:765.735000px;}
.y5_c01121{bottom:790.035000px;}
.y4_c01121{bottom:814.035000px;}
.y3_c01121{bottom:838.035000px;}
.y2_c01121{bottom:863.235000px;}
.y1_c01121{bottom:886.635000px;}
.h6_c01121{height:13.200074px;}
.h7_c01121{height:43.804688px;}
.h3_c01121{height:57.445312px;}
.h2_c01121{height:98.756836px;}
.h5_c01121{height:120.937500px;}
.h4_c01121{height:236.874000px;}
.h1_c01121{height:975.000000px;}
.h0_c01121{height:975.225000px;}
.w2_c01121{width:104.875500px;}
.w0_c01121{width:659.850000px;}
.w1_c01121{width:660.000000px;}
.x0_c01121{left:0.000000px;}
.x9_c01121{left:33.450000px;}
.xb_c01121{left:35.100000px;}
.xc_c01121{left:36.150000px;}
.x8_c01121{left:39.450000px;}
.x7_c01121{left:43.500000px;}
.x4_c01121{left:114.450000px;}
.x1_c01121{left:115.800000px;}
.x2_c01121{left:117.450000px;}
.x3_c01121{left:119.850000px;}
.xa_c01121{left:122.850000px;}
.xd_c01121{left:126.600000px;}
.xe_c01121{left:127.800000px;}
.xf_c01121{left:129.300000px;}
.x10_c01121{left:130.950000px;}
.x6_c01121{left:132.300000px;}
.x5_c01121{left:144.300000px;}
.x11_c01121{left:281.739258px;}
@media print{
.v0_c01121{vertical-align:0.000000pt;}
.v1_c01121{vertical-align:89.066667pt;}
.ls3_c01121{letter-spacing:0.000000pt;}
.ls2_c01121{letter-spacing:0.266667pt;}
.ls1_c01121{letter-spacing:2.666667pt;}
.ls0_c01121{letter-spacing:10.400000pt;}
.ls4_c01121{letter-spacing:21.333333pt;}
.ws0_c01121{word-spacing:-52.688000pt;}
.ws6_c01121{word-spacing:-33.333333pt;}
.ws8_c01121{word-spacing:-26.666667pt;}
.ws3_c01121{word-spacing:-22.949333pt;}
.ws4_c01121{word-spacing:-18.359467pt;}
.ws5_c01121{word-spacing:-16.709333pt;}
.ws1_c01121{word-spacing:-3.981333pt;}
.ws7_c01121{word-spacing:-1.578667pt;}
.wsa_c01121{word-spacing:0.000000pt;}
.ws2_c01121{word-spacing:0.901333pt;}
.ws9_c01121{word-spacing:76.010667pt;}
._22_c01121{margin-left:-51.445333pt;}
._2a_c01121{margin-left:-36.837333pt;}
._24_c01121{margin-left:-28.058667pt;}
._14_c01121{margin-left:-25.925333pt;}
._1c_c01121{margin-left:-24.554667pt;}
._2b_c01121{margin-left:-23.018667pt;}
._28_c01121{margin-left:-21.354667pt;}
._25_c01121{margin-left:-17.866667pt;}
._23_c01121{margin-left:-16.837333pt;}
._19_c01121{margin-left:-15.298667pt;}
._7_c01121{margin-left:-12.688000pt;}
._1f_c01121{margin-left:-11.048000pt;}
._1e_c01121{margin-left:-9.914667pt;}
._5_c01121{margin-left:-8.805333pt;}
._6_c01121{margin-left:-7.349333pt;}
._21_c01121{margin-left:-6.378667pt;}
._8_c01121{margin-left:-5.269333pt;}
._17_c01121{margin-left:-3.674667pt;}
._f_c01121{margin-left:-2.773333pt;}
._1_c01121{margin-left:-1.386667pt;}
._2_c01121{width:0.970667pt;}
._0_c01121{width:2.496000pt;}
._c_c01121{width:4.229333pt;}
._4_c01121{width:5.338667pt;}
._e_c01121{width:7.002667pt;}
._d_c01121{width:8.434667pt;}
._3_c01121{width:9.914667pt;}
._b_c01121{width:11.325333pt;}
._16_c01121{width:12.517333pt;}
._11_c01121{width:14.098667pt;}
._10_c01121{width:15.506667pt;}
._13_c01121{width:16.642667pt;}
._12_c01121{width:19.082667pt;}
._a_c01121{width:21.026667pt;}
._18_c01121{width:22.672000pt;}
._9_c01121{width:27.861333pt;}
._1b_c01121{width:30.992000pt;}
._20_c01121{width:32.272000pt;}
._1d_c01121{width:36.354667pt;}
._15_c01121{width:44.997333pt;}
._26_c01121{width:80.010667pt;}
._29_c01121{width:196.413333pt;}
._2c_c01121{width:201.736000pt;}
._27_c01121{width:233.098667pt;}
._1a_c01121{width:238.506667pt;}
.fs8_c01121{font-size:42.666667pt;}
.fs2_c01121{font-size:45.333333pt;}
.fs1_c01121{font-size:50.666667pt;}
.fs4_c01121{font-size:55.466667pt;}
.fs7_c01121{font-size:56.000000pt;}
.fs5_c01121{font-size:66.666667pt;}
.fs0_c01121{font-size:69.333333pt;}
.fs6_c01121{font-size:106.666667pt;}
.fs3_c01121{font-size:197.333333pt;}
.y0_c01121{bottom:0.000000pt;}
.y23_c01121{bottom:2.760000pt;}
.y22_c01121{bottom:6.425204pt;}
.y21_c01121{bottom:93.853333pt;}
.y20_c01121{bottom:116.653333pt;}
.y1f_c01121{bottom:138.786667pt;}
.y1e_c01121{bottom:160.520000pt;}
.y1d_c01121{bottom:182.653333pt;}
.y1c_c01121{bottom:204.520000pt;}
.y1b_c01121{bottom:227.053333pt;}
.y1a_c01121{bottom:248.386667pt;}
.y19_c01121{bottom:270.253333pt;}
.y18_c01121{bottom:292.120000pt;}
.y17_c01121{bottom:313.986667pt;}
.y16_c01121{bottom:335.720000pt;}
.y15_c01121{bottom:358.520000pt;}
.y14_c01121{bottom:379.186667pt;}
.y13_c01121{bottom:400.786667pt;}
.y12_c01121{bottom:422.120000pt;}
.y11_c01121{bottom:443.586667pt;}
.y10_c01121{bottom:465.586667pt;}
.yf_c01121{bottom:486.920000pt;}
.ye_c01121{bottom:508.520000pt;}
.yd_c01121{bottom:529.453333pt;}
.yc_c01121{bottom:551.320000pt;}
.yb_c01121{bottom:573.186667pt;}
.ya_c01121{bottom:594.253333pt;}
.y9_c01121{bottom:615.853333pt;}
.y7_c01121{bottom:637.320000pt;}
.y8_c01121{bottom:637.720000pt;}
.y6_c01121{bottom:680.653333pt;}
.y5_c01121{bottom:702.253333pt;}
.y4_c01121{bottom:723.586667pt;}
.y3_c01121{bottom:744.920000pt;}
.y2_c01121{bottom:767.320000pt;}
.y1_c01121{bottom:788.120000pt;}
.h6_c01121{height:11.733399pt;}
.h7_c01121{height:38.937500pt;}
.h3_c01121{height:51.062500pt;}
.h2_c01121{height:87.783854pt;}
.h5_c01121{height:107.500000pt;}
.h4_c01121{height:210.554667pt;}
.h1_c01121{height:866.666667pt;}
.h0_c01121{height:866.866667pt;}
.w2_c01121{width:93.222667pt;}
.w0_c01121{width:586.533333pt;}
.w1_c01121{width:586.666667pt;}
.x0_c01121{left:0.000000pt;}
.x9_c01121{left:29.733333pt;}
.xb_c01121{left:31.200000pt;}
.xc_c01121{left:32.133333pt;}
.x8_c01121{left:35.066667pt;}
.x7_c01121{left:38.666667pt;}
.x4_c01121{left:101.733333pt;}
.x1_c01121{left:102.933333pt;}
.x2_c01121{left:104.400000pt;}
.x3_c01121{left:106.533333pt;}
.xa_c01121{left:109.200000pt;}
.xd_c01121{left:112.533333pt;}
.xe_c01121{left:113.600000pt;}
.xf_c01121{left:114.933333pt;}
.x10_c01121{left:116.400000pt;}
.x6_c01121{left:117.600000pt;}
.x5_c01121{left:128.266667pt;}
.x11_c01121{left:250.434896pt;}
}





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

.ir_c01122:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01122{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01122;src:url('chunks/assets/font_96291d572523d1b007f62f29.woff2')format("woff");}.ff1_c01122{font-family:ff1_c01122;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01122;src:url('chunks/assets/font_5f79eea47852d572863f24e3.woff2')format("woff");}.ff2_c01122{font-family:ff2_c01122;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01122;src:url('chunks/assets/font_24cb52aea6619d3a4faea023.woff2')format("woff");}.ff3_c01122{font-family:ff3_c01122;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01122;src:url('chunks/assets/font_62221d65de100469284b4c80.woff2')format("woff");}.ff4_c01122{font-family:ff4_c01122;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01122;src:url('chunks/assets/font_f9468661a7519b33cc917373.woff2')format("woff");}.ff5_c01122{font-family:ff5_c01122;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01122;src:url('chunks/assets/font_3a920c4c9cce01f8491db386.woff2')format("woff");}.ff6_c01122{font-family:ff6_c01122;line-height:1.437000;font-style:normal;font-weight: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_c01122;src:url('chunks/assets/font_20c82bd94ed58a6be2b6a019.woff2')format("woff");}.ff7_c01122{font-family:ff7_c01122;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c01122;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff8_c01122{font-family:ff8_c01122;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01122{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c01122{vertical-align:-15.000000px;}
.v0_c01122{vertical-align:0.000000px;}
.ls4_c01122{letter-spacing:0.000000px;}
.ls5_c01122{letter-spacing:3.000000px;}
.ls6_c01122{letter-spacing:6.000000px;}
.ls2_c01122{letter-spacing:19.464000px;}
.ls3_c01122{letter-spacing:30.648000px;}
.ls1_c01122{letter-spacing:33.504000px;}
.ls0_c01122{letter-spacing:76.080000px;}
.sc__c01122{text-shadow:none;}
.sc0_c01122{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01122{-webkit-text-stroke:0px transparent;}
.sc0_c01122{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01122{word-spacing:-73.686000px;}
.ws1_c01122{word-spacing:-20.352000px;}
.ws0_c01122{word-spacing:-17.352000px;}
.ws3_c01122{word-spacing:-3.057600px;}
.ws4_c01122{word-spacing:0.000000px;}
._1d_c01122{margin-left:-29.451000px;}
._21_c01122{margin-left:-17.094000px;}
._d_c01122{margin-left:-13.788000px;}
._e_c01122{margin-left:-12.012000px;}
._1b_c01122{margin-left:-10.719000px;}
._19_c01122{margin-left:-9.576000px;}
._1a_c01122{margin-left:-8.433000px;}
._6_c01122{margin-left:-6.213000px;}
._18_c01122{margin-left:-5.187000px;}
._b_c01122{margin-left:-4.134000px;}
._c_c01122{margin-left:-2.652000px;}
._17_c01122{margin-left:-1.068000px;}
._8_c01122{width:1.653000px;}
._7_c01122{width:2.736000px;}
._2_c01122{width:4.617000px;}
._1_c01122{width:6.099000px;}
._0_c01122{width:7.638000px;}
._4_c01122{width:8.721000px;}
._9_c01122{width:9.861000px;}
._3_c01122{width:11.457000px;}
._f_c01122{width:12.876000px;}
._10_c01122{width:14.400000px;}
._13_c01122{width:15.633000px;}
._16_c01122{width:16.923000px;}
._12_c01122{width:18.330000px;}
._11_c01122{width:20.295000px;}
._a_c01122{width:21.981000px;}
._5_c01122{width:23.370000px;}
._1e_c01122{width:36.003000px;}
._20_c01122{width:38.709000px;}
._1c_c01122{width:99.351000px;}
._14_c01122{width:261.639000px;}
._15_c01122{width:297.963000px;}
._1f_c01122{width:310.623000px;}
.fc2_c01122{color:transparent;}
.fc1_c01122{color:rgb(128,128,128);}
.fc0_c01122{color:rgb(0,0,0);}
.fs5_c01122{font-size:42.000000px;}
.fs2_c01122{font-size:45.000000px;}
.fs9_c01122{font-size:48.000000px;}
.fs0_c01122{font-size:57.000000px;}
.fs8_c01122{font-size:57.600000px;}
.fs3_c01122{font-size:60.000000px;}
.fs6_c01122{font-size:72.000000px;}
.fs1_c01122{font-size:78.000000px;}
.fs4_c01122{font-size:81.000000px;}
.fs7_c01122{font-size:87.000000px;}
.y0_c01122{bottom:0.000000px;}
.y21_c01122{bottom:3.105000px;}
.y20_c01122{bottom:7.228369px;}
.y1f_c01122{bottom:45.120000px;}
.y1e_c01122{bottom:70.920000px;}
.y1d_c01122{bottom:97.920000px;}
.y1c_c01122{bottom:122.820000px;}
.y1b_c01122{bottom:147.720000px;}
.y1a_c01122{bottom:171.420000px;}
.y19_c01122{bottom:196.320000px;}
.y18_c01122{bottom:220.770000px;}
.y17_c01122{bottom:245.070000px;}
.y16_c01122{bottom:269.670000px;}
.y15_c01122{bottom:294.270000px;}
.y14_c01122{bottom:318.570000px;}
.y13_c01122{bottom:343.470000px;}
.y12_c01122{bottom:367.470000px;}
.y11_c01122{bottom:391.770000px;}
.y10_c01122{bottom:416.070000px;}
.yf_c01122{bottom:440.070000px;}
.ye_c01122{bottom:464.370000px;}
.yd_c01122{bottom:488.370000px;}
.yc_c01122{bottom:512.970000px;}
.yb_c01122{bottom:536.970000px;}
.ya_c01122{bottom:560.820000px;}
.y9_c01122{bottom:585.270000px;}
.y8_c01122{bottom:681.720000px;}
.y7_c01122{bottom:705.720000px;}
.y6_c01122{bottom:730.620000px;}
.y5_c01122{bottom:754.020000px;}
.y4_c01122{bottom:779.670000px;}
.y3_c01122{bottom:807.570000px;}
.y2_c01122{bottom:852.570000px;}
.y1_c01122{bottom:876.720000px;}
.h8_c01122{height:13.200073px;}
.h9_c01122{height:43.804688px;}
.h3_c01122{height:75.966797px;}
.h4_c01122{height:79.497070px;}
.h7_c01122{height:84.269531px;}
.h5_c01122{height:91.160156px;}
.h6_c01122{height:91.176000px;}
.h2_c01122{height:98.756836px;}
.h1_c01122{height:986.250000px;}
.h0_c01122{height:986.550000px;}
.w1_c01122{width:104.875500px;}
.w0_c01122{width:672.000000px;}
.x0_c01122{left:0.000000px;}
.x1_c01122{left:47.850000px;}
.x6_c01122{left:48.900000px;}
.x3_c01122{left:49.950000px;}
.x7_c01122{left:51.600000px;}
.x5_c01122{left:52.650000px;}
.x8_c01122{left:54.000000px;}
.x4_c01122{left:78.600000px;}
.x2_c01122{left:90.900000px;}
.xa_c01122{left:287.814240px;}
.x9_c01122{left:514.650000px;}
@media print{
.v1_c01122{vertical-align:-13.333333pt;}
.v0_c01122{vertical-align:0.000000pt;}
.ls4_c01122{letter-spacing:0.000000pt;}
.ls5_c01122{letter-spacing:2.666667pt;}
.ls6_c01122{letter-spacing:5.333333pt;}
.ls2_c01122{letter-spacing:17.301333pt;}
.ls3_c01122{letter-spacing:27.242667pt;}
.ls1_c01122{letter-spacing:29.781333pt;}
.ls0_c01122{letter-spacing:67.626667pt;}
.ws2_c01122{word-spacing:-65.498667pt;}
.ws1_c01122{word-spacing:-18.090667pt;}
.ws0_c01122{word-spacing:-15.424000pt;}
.ws3_c01122{word-spacing:-2.717867pt;}
.ws4_c01122{word-spacing:0.000000pt;}
._1d_c01122{margin-left:-26.178667pt;}
._21_c01122{margin-left:-15.194667pt;}
._d_c01122{margin-left:-12.256000pt;}
._e_c01122{margin-left:-10.677333pt;}
._1b_c01122{margin-left:-9.528000pt;}
._19_c01122{margin-left:-8.512000pt;}
._1a_c01122{margin-left:-7.496000pt;}
._6_c01122{margin-left:-5.522667pt;}
._18_c01122{margin-left:-4.610667pt;}
._b_c01122{margin-left:-3.674667pt;}
._c_c01122{margin-left:-2.357333pt;}
._17_c01122{margin-left:-0.949333pt;}
._8_c01122{width:1.469333pt;}
._7_c01122{width:2.432000pt;}
._2_c01122{width:4.104000pt;}
._1_c01122{width:5.421333pt;}
._0_c01122{width:6.789333pt;}
._4_c01122{width:7.752000pt;}
._9_c01122{width:8.765333pt;}
._3_c01122{width:10.184000pt;}
._f_c01122{width:11.445333pt;}
._10_c01122{width:12.800000pt;}
._13_c01122{width:13.896000pt;}
._16_c01122{width:15.042667pt;}
._12_c01122{width:16.293333pt;}
._11_c01122{width:18.040000pt;}
._a_c01122{width:19.538667pt;}
._5_c01122{width:20.773333pt;}
._1e_c01122{width:32.002667pt;}
._20_c01122{width:34.408000pt;}
._1c_c01122{width:88.312000pt;}
._14_c01122{width:232.568000pt;}
._15_c01122{width:264.856000pt;}
._1f_c01122{width:276.109333pt;}
.fs5_c01122{font-size:37.333333pt;}
.fs2_c01122{font-size:40.000000pt;}
.fs9_c01122{font-size:42.666667pt;}
.fs0_c01122{font-size:50.666667pt;}
.fs8_c01122{font-size:51.200000pt;}
.fs3_c01122{font-size:53.333333pt;}
.fs6_c01122{font-size:64.000000pt;}
.fs1_c01122{font-size:69.333333pt;}
.fs4_c01122{font-size:72.000000pt;}
.fs7_c01122{font-size:77.333333pt;}
.y0_c01122{bottom:0.000000pt;}
.y21_c01122{bottom:2.760000pt;}
.y20_c01122{bottom:6.425217pt;}
.y1f_c01122{bottom:40.106667pt;}
.y1e_c01122{bottom:63.040000pt;}
.y1d_c01122{bottom:87.040000pt;}
.y1c_c01122{bottom:109.173333pt;}
.y1b_c01122{bottom:131.306667pt;}
.y1a_c01122{bottom:152.373333pt;}
.y19_c01122{bottom:174.506667pt;}
.y18_c01122{bottom:196.240000pt;}
.y17_c01122{bottom:217.840000pt;}
.y16_c01122{bottom:239.706667pt;}
.y15_c01122{bottom:261.573333pt;}
.y14_c01122{bottom:283.173333pt;}
.y13_c01122{bottom:305.306667pt;}
.y12_c01122{bottom:326.640000pt;}
.y11_c01122{bottom:348.240000pt;}
.y10_c01122{bottom:369.840000pt;}
.yf_c01122{bottom:391.173333pt;}
.ye_c01122{bottom:412.773333pt;}
.yd_c01122{bottom:434.106667pt;}
.yc_c01122{bottom:455.973333pt;}
.yb_c01122{bottom:477.306667pt;}
.ya_c01122{bottom:498.506667pt;}
.y9_c01122{bottom:520.240000pt;}
.y8_c01122{bottom:605.973333pt;}
.y7_c01122{bottom:627.306667pt;}
.y6_c01122{bottom:649.440000pt;}
.y5_c01122{bottom:670.240000pt;}
.y4_c01122{bottom:693.040000pt;}
.y3_c01122{bottom:717.840000pt;}
.y2_c01122{bottom:757.840000pt;}
.y1_c01122{bottom:779.306667pt;}
.h8_c01122{height:11.733399pt;}
.h9_c01122{height:38.937500pt;}
.h3_c01122{height:67.526042pt;}
.h4_c01122{height:70.664062pt;}
.h7_c01122{height:74.906250pt;}
.h5_c01122{height:81.031250pt;}
.h6_c01122{height:81.045333pt;}
.h2_c01122{height:87.783854pt;}
.h1_c01122{height:876.666667pt;}
.h0_c01122{height:876.933333pt;}
.w1_c01122{width:93.222667pt;}
.w0_c01122{width:597.333333pt;}
.x0_c01122{left:0.000000pt;}
.x1_c01122{left:42.533333pt;}
.x6_c01122{left:43.466667pt;}
.x3_c01122{left:44.400000pt;}
.x7_c01122{left:45.866667pt;}
.x5_c01122{left:46.800000pt;}
.x8_c01122{left:48.000000pt;}
.x4_c01122{left:69.866667pt;}
.x2_c01122{left:80.800000pt;}
.xa_c01122{left:255.834880pt;}
.x9_c01122{left:457.466667pt;}
}





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

.ir_c01123:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01123{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01123;src:url('chunks/assets/font_1695b9639b62cdd9ccc17e68.woff2')format("woff");}.ff1_c01123{font-family:ff1_c01123;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01123;src:url('chunks/assets/font_048d4b17278f0efed54605c2.woff2')format("woff");}.ff2_c01123{font-family:ff2_c01123;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01123;src:url('chunks/assets/font_67a83a5793b9e4c4085af743.woff2')format("woff");}.ff3_c01123{font-family:ff3_c01123;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01123;src:url('chunks/assets/font_77f67c88fab354f4ee941501.woff2')format("woff");}.ff4_c01123{font-family:ff4_c01123;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01123;src:url('chunks/assets/font_0ac2020157a0f2776a2eac68.woff2')format("woff");}.ff5_c01123{font-family:ff5_c01123;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01123;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c01123{font-family:ff6_c01123;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01123{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01123{vertical-align:0.000000px;}
.ls1_c01123{letter-spacing:0.000000px;}
.ls0_c01123{letter-spacing:21.600000px;}
.sc__c01123{text-shadow:none;}
.sc0_c01123{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01123{-webkit-text-stroke:0px transparent;}
.sc0_c01123{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01123{word-spacing:-31.500000px;}
.ws2_c01123{word-spacing:-20.250000px;}
.ws0_c01123{word-spacing:-17.352000px;}
.ws3_c01123{word-spacing:0.000000px;}
._1b_c01123{margin-left:-25.431000px;}
._21_c01123{margin-left:-21.060000px;}
._1f_c01123{margin-left:-17.958000px;}
._13_c01123{margin-left:-14.226000px;}
._a_c01123{margin-left:-12.717000px;}
._e_c01123{margin-left:-11.580000px;}
._1e_c01123{margin-left:-10.386000px;}
._10_c01123{margin-left:-8.916000px;}
._f_c01123{margin-left:-7.464000px;}
._d_c01123{margin-left:-6.408000px;}
._3_c01123{margin-left:-4.950000px;}
._7_c01123{margin-left:-3.228000px;}
._4_c01123{margin-left:-1.881000px;}
._0_c01123{width:1.584000px;}
._1_c01123{width:2.871000px;}
._2_c01123{width:4.059000px;}
._6_c01123{width:5.709000px;}
._5_c01123{width:7.590000px;}
._8_c01123{width:9.441000px;}
._19_c01123{width:10.653000px;}
._15_c01123{width:11.685000px;}
._17_c01123{width:13.266000px;}
._1c_c01123{width:14.499000px;}
._18_c01123{width:15.624000px;}
._16_c01123{width:16.965000px;}
._11_c01123{width:23.004000px;}
._27_c01123{width:24.999000px;}
._b_c01123{width:27.459000px;}
._9_c01123{width:34.458000px;}
._23_c01123{width:37.701000px;}
._c_c01123{width:63.828000px;}
._20_c01123{width:66.579000px;}
._1a_c01123{width:77.421000px;}
._1d_c01123{width:87.639000px;}
._22_c01123{width:98.190000px;}
._26_c01123{width:209.142000px;}
._14_c01123{width:256.083000px;}
._24_c01123{width:298.404000px;}
._12_c01123{width:349.452000px;}
._25_c01123{width:634.416000px;}
.fc2_c01123{color:transparent;}
.fc1_c01123{color:rgb(128,128,128);}
.fc0_c01123{color:rgb(0,0,0);}
.fs7_c01123{font-size:48.000000px;}
.fs5_c01123{font-size:57.000000px;}
.fs6_c01123{font-size:63.000000px;}
.fs1_c01123{font-size:66.000000px;}
.fs3_c01123{font-size:72.000000px;}
.fs4_c01123{font-size:78.000000px;}
.fs2_c01123{font-size:81.000000px;}
.fs0_c01123{font-size:99.000000px;}
.y0_c01123{bottom:0.000000px;}
.y26_c01123{bottom:3.105000px;}
.y25_c01123{bottom:7.228371px;}
.y24_c01123{bottom:57.465000px;}
.y23_c01123{bottom:80.115000px;}
.y22_c01123{bottom:106.065000px;}
.y21_c01123{bottom:129.615000px;}
.y20_c01123{bottom:154.665000px;}
.y1f_c01123{bottom:180.015000px;}
.y1e_c01123{bottom:203.865000px;}
.y1d_c01123{bottom:228.465000px;}
.y1c_c01123{bottom:252.915000px;}
.y1b_c01123{bottom:277.065000px;}
.y1a_c01123{bottom:301.365000px;}
.y19_c01123{bottom:325.815000px;}
.y18_c01123{bottom:350.715000px;}
.y17_c01123{bottom:374.715000px;}
.y16_c01123{bottom:399.615000px;}
.y15_c01123{bottom:423.615000px;}
.y14_c01123{bottom:447.315000px;}
.y13_c01123{bottom:471.915000px;}
.y12_c01123{bottom:496.215000px;}
.y11_c01123{bottom:520.215000px;}
.y10_c01123{bottom:545.415000px;}
.yf_c01123{bottom:567.765000px;}
.ye_c01123{bottom:592.065000px;}
.yd_c01123{bottom:617.715000px;}
.yc_c01123{bottom:640.365000px;}
.yb_c01123{bottom:664.215000px;}
.ya_c01123{bottom:688.965000px;}
.y9_c01123{bottom:713.115000px;}
.y8_c01123{bottom:737.415000px;}
.y7_c01123{bottom:762.465000px;}
.y6_c01123{bottom:785.115000px;}
.y5_c01123{bottom:809.415000px;}
.y4_c01123{bottom:833.715000px;}
.y3_c01123{bottom:857.715000px;}
.y2_c01123{bottom:883.215000px;}
.y1_c01123{bottom:917.715000px;}
.h7_c01123{height:13.200074px;}
.h8_c01123{height:43.804688px;}
.h6_c01123{height:72.168457px;}
.h3_c01123{height:79.497070px;}
.h4_c01123{height:84.269531px;}
.h5_c01123{height:98.756836px;}
.h2_c01123{height:115.870605px;}
.h1_c01123{height:986.250000px;}
.h0_c01123{height:986.325000px;}
.w2_c01123{width:104.875500px;}
.w0_c01123{width:667.425000px;}
.w1_c01123{width:667.500000px;}
.x0_c01123{left:0.000000px;}
.x5_c01123{left:35.700000px;}
.x9_c01123{left:38.250000px;}
.x7_c01123{left:39.450000px;}
.xb_c01123{left:41.250000px;}
.xd_c01123{left:43.950000px;}
.x3_c01123{left:58.800000px;}
.x4_c01123{left:118.500000px;}
.x2_c01123{left:122.850000px;}
.x6_c01123{left:124.500000px;}
.xa_c01123{left:126.000000px;}
.xc_c01123{left:127.200000px;}
.xe_c01123{left:128.550000px;}
.x1_c01123{left:129.900000px;}
.x10_c01123{left:131.400000px;}
.xf_c01123{left:144.750000px;}
.x8_c01123{left:170.400000px;}
.x12_c01123{left:285.526749px;}
.x11_c01123{left:575.100000px;}
@media print{
.v0_c01123{vertical-align:0.000000pt;}
.ls1_c01123{letter-spacing:0.000000pt;}
.ls0_c01123{letter-spacing:19.200000pt;}
.ws1_c01123{word-spacing:-28.000000pt;}
.ws2_c01123{word-spacing:-18.000000pt;}
.ws0_c01123{word-spacing:-15.424000pt;}
.ws3_c01123{word-spacing:0.000000pt;}
._1b_c01123{margin-left:-22.605333pt;}
._21_c01123{margin-left:-18.720000pt;}
._1f_c01123{margin-left:-15.962667pt;}
._13_c01123{margin-left:-12.645333pt;}
._a_c01123{margin-left:-11.304000pt;}
._e_c01123{margin-left:-10.293333pt;}
._1e_c01123{margin-left:-9.232000pt;}
._10_c01123{margin-left:-7.925333pt;}
._f_c01123{margin-left:-6.634667pt;}
._d_c01123{margin-left:-5.696000pt;}
._3_c01123{margin-left:-4.400000pt;}
._7_c01123{margin-left:-2.869333pt;}
._4_c01123{margin-left:-1.672000pt;}
._0_c01123{width:1.408000pt;}
._1_c01123{width:2.552000pt;}
._2_c01123{width:3.608000pt;}
._6_c01123{width:5.074667pt;}
._5_c01123{width:6.746667pt;}
._8_c01123{width:8.392000pt;}
._19_c01123{width:9.469333pt;}
._15_c01123{width:10.386667pt;}
._17_c01123{width:11.792000pt;}
._1c_c01123{width:12.888000pt;}
._18_c01123{width:13.888000pt;}
._16_c01123{width:15.080000pt;}
._11_c01123{width:20.448000pt;}
._27_c01123{width:22.221333pt;}
._b_c01123{width:24.408000pt;}
._9_c01123{width:30.629333pt;}
._23_c01123{width:33.512000pt;}
._c_c01123{width:56.736000pt;}
._20_c01123{width:59.181333pt;}
._1a_c01123{width:68.818667pt;}
._1d_c01123{width:77.901333pt;}
._22_c01123{width:87.280000pt;}
._26_c01123{width:185.904000pt;}
._14_c01123{width:227.629333pt;}
._24_c01123{width:265.248000pt;}
._12_c01123{width:310.624000pt;}
._25_c01123{width:563.925333pt;}
.fs7_c01123{font-size:42.666667pt;}
.fs5_c01123{font-size:50.666667pt;}
.fs6_c01123{font-size:56.000000pt;}
.fs1_c01123{font-size:58.666667pt;}
.fs3_c01123{font-size:64.000000pt;}
.fs4_c01123{font-size:69.333333pt;}
.fs2_c01123{font-size:72.000000pt;}
.fs0_c01123{font-size:88.000000pt;}
.y0_c01123{bottom:0.000000pt;}
.y26_c01123{bottom:2.760000pt;}
.y25_c01123{bottom:6.425219pt;}
.y24_c01123{bottom:51.080000pt;}
.y23_c01123{bottom:71.213333pt;}
.y22_c01123{bottom:94.280000pt;}
.y21_c01123{bottom:115.213333pt;}
.y20_c01123{bottom:137.480000pt;}
.y1f_c01123{bottom:160.013333pt;}
.y1e_c01123{bottom:181.213333pt;}
.y1d_c01123{bottom:203.080000pt;}
.y1c_c01123{bottom:224.813333pt;}
.y1b_c01123{bottom:246.280000pt;}
.y1a_c01123{bottom:267.880000pt;}
.y19_c01123{bottom:289.613333pt;}
.y18_c01123{bottom:311.746667pt;}
.y17_c01123{bottom:333.080000pt;}
.y16_c01123{bottom:355.213333pt;}
.y15_c01123{bottom:376.546667pt;}
.y14_c01123{bottom:397.613333pt;}
.y13_c01123{bottom:419.480000pt;}
.y12_c01123{bottom:441.080000pt;}
.y11_c01123{bottom:462.413333pt;}
.y10_c01123{bottom:484.813333pt;}
.yf_c01123{bottom:504.680000pt;}
.ye_c01123{bottom:526.280000pt;}
.yd_c01123{bottom:549.080000pt;}
.yc_c01123{bottom:569.213333pt;}
.yb_c01123{bottom:590.413333pt;}
.ya_c01123{bottom:612.413333pt;}
.y9_c01123{bottom:633.880000pt;}
.y8_c01123{bottom:655.480000pt;}
.y7_c01123{bottom:677.746667pt;}
.y6_c01123{bottom:697.880000pt;}
.y5_c01123{bottom:719.480000pt;}
.y4_c01123{bottom:741.080000pt;}
.y3_c01123{bottom:762.413333pt;}
.y2_c01123{bottom:785.080000pt;}
.y1_c01123{bottom:815.746667pt;}
.h7_c01123{height:11.733399pt;}
.h8_c01123{height:38.937500pt;}
.h6_c01123{height:64.149740pt;}
.h3_c01123{height:70.664062pt;}
.h4_c01123{height:74.906250pt;}
.h5_c01123{height:87.783854pt;}
.h2_c01123{height:102.996094pt;}
.h1_c01123{height:876.666667pt;}
.h0_c01123{height:876.733333pt;}
.w2_c01123{width:93.222667pt;}
.w0_c01123{width:593.266667pt;}
.w1_c01123{width:593.333333pt;}
.x0_c01123{left:0.000000pt;}
.x5_c01123{left:31.733333pt;}
.x9_c01123{left:34.000000pt;}
.x7_c01123{left:35.066667pt;}
.xb_c01123{left:36.666667pt;}
.xd_c01123{left:39.066667pt;}
.x3_c01123{left:52.266667pt;}
.x4_c01123{left:105.333333pt;}
.x2_c01123{left:109.200000pt;}
.x6_c01123{left:110.666667pt;}
.xa_c01123{left:112.000000pt;}
.xc_c01123{left:113.066667pt;}
.xe_c01123{left:114.266667pt;}
.x1_c01123{left:115.466667pt;}
.x10_c01123{left:116.800000pt;}
.xf_c01123{left:128.666667pt;}
.x8_c01123{left:151.466667pt;}
.x12_c01123{left:253.801554pt;}
.x11_c01123{left:511.200000pt;}
}





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

.ir_c01124:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01124{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01124;src:url('chunks/assets/font_43cfd3e0d3894731e1d3d186.woff2')format("woff");}.ff1_c01124{font-family:ff1_c01124;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01124;src:url('chunks/assets/font_e255a741f17571dcc8c1bf13.woff2')format("woff");}.ff2_c01124{font-family:ff2_c01124;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01124;src:url('chunks/assets/font_87fa01fbf6aaf02d531f375d.woff2')format("woff");}.ff3_c01124{font-family:ff3_c01124;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01124;src:url('chunks/assets/font_263618fab4737ddaba07624b.woff2')format("woff");}.ff4_c01124{font-family:ff4_c01124;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01124;src:url('chunks/assets/font_52e987f723fbdba3dd600cb4.woff2')format("woff");}.ff5_c01124{font-family:ff5_c01124;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01124;src:url('chunks/assets/font_04734d49b5d0aca33f5a4e86.woff2')format("woff");}.ff6_c01124{font-family:ff6_c01124;line-height:1.437000;font-style:normal;font-weight: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_c01124;src:url('chunks/assets/font_71b4b63b3eaae78ef3ead370.woff2')format("woff");}.ff7_c01124{font-family:ff7_c01124;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c01124;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff8_c01124{font-family:ff8_c01124;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01124{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c01124{vertical-align:-15.000000px;}
.v0_c01124{vertical-align:0.000000px;}
.ls6_c01124{letter-spacing:-6.000000px;}
.ls3_c01124{letter-spacing:0.000000px;}
.ls4_c01124{letter-spacing:3.000000px;}
.ls1_c01124{letter-spacing:4.500000px;}
.ls2_c01124{letter-spacing:7.500000px;}
.ls5_c01124{letter-spacing:102.000000px;}
.ls0_c01124{letter-spacing:163.860000px;}
.sc__c01124{text-shadow:none;}
.sc0_c01124{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01124{-webkit-text-stroke:0px transparent;}
.sc0_c01124{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01124{word-spacing:-20.250000px;}
.ws2_c01124{word-spacing:-17.352000px;}
.ws3_c01124{word-spacing:0.000000px;}
.ws1_c01124{word-spacing:75.912000px;}
._10_c01124{margin-left:-107.553000px;}
._11_c01124{margin-left:-104.976000px;}
._20_c01124{margin-left:-45.630000px;}
._26_c01124{margin-left:-27.720000px;}
._2_c01124{margin-left:-24.840000px;}
._1e_c01124{margin-left:-23.085000px;}
._16_c01124{margin-left:-17.025000px;}
._21_c01124{margin-left:-14.313000px;}
._18_c01124{margin-left:-12.408000px;}
._5_c01124{margin-left:-10.200000px;}
._19_c01124{margin-left:-9.159000px;}
._3_c01124{margin-left:-7.440000px;}
._e_c01124{margin-left:-5.643000px;}
._0_c01124{margin-left:-3.840000px;}
._1_c01124{margin-left:-2.160000px;}
._14_c01124{margin-left:-1.071000px;}
._4_c01124{width:1.530000px;}
._c_c01124{width:2.721000px;}
._6_c01124{width:3.876000px;}
._7_c01124{width:4.896000px;}
._9_c01124{width:6.165000px;}
._d_c01124{width:7.533000px;}
._a_c01124{width:8.925000px;}
._f_c01124{width:10.125000px;}
._13_c01124{width:11.526000px;}
._b_c01124{width:12.795000px;}
._17_c01124{width:14.217000px;}
._15_c01124{width:15.495000px;}
._1a_c01124{width:17.160000px;}
._23_c01124{width:24.969000px;}
._25_c01124{width:44.949000px;}
._8_c01124{width:48.756000px;}
._1d_c01124{width:53.640000px;}
._27_c01124{width:61.845000px;}
._22_c01124{width:71.013000px;}
._1f_c01124{width:88.614000px;}
._24_c01124{width:150.063000px;}
._12_c01124{width:153.999000px;}
._29_c01124{width:254.472000px;}
._1c_c01124{width:260.850000px;}
._1b_c01124{width:279.105000px;}
._28_c01124{width:353.070000px;}
.fc2_c01124{color:transparent;}
.fc1_c01124{color:rgb(128,128,128);}
.fc0_c01124{color:rgb(0,0,0);}
.fs8_c01124{font-size:48.000000px;}
.fs5_c01124{font-size:60.000000px;}
.fs4_c01124{font-size:69.000000px;}
.fs3_c01124{font-size:72.000000px;}
.fs2_c01124{font-size:81.000000px;}
.fs6_c01124{font-size:87.000000px;}
.fs1_c01124{font-size:102.000000px;}
.fs7_c01124{font-size:105.000000px;}
.fs0_c01124{font-size:120.000000px;}
.y0_c01124{bottom:0.000000px;}
.y26_c01124{bottom:3.105000px;}
.y25_c01124{bottom:7.228369px;}
.y24_c01124{bottom:49.620000px;}
.y23_c01124{bottom:75.870000px;}
.y22_c01124{bottom:100.470000px;}
.y21_c01124{bottom:126.870000px;}
.y20_c01124{bottom:150.120000px;}
.y1f_c01124{bottom:176.070000px;}
.y1e_c01124{bottom:200.370000px;}
.y1d_c01124{bottom:224.370000px;}
.y1c_c01124{bottom:248.670000px;}
.y1b_c01124{bottom:272.970000px;}
.y1a_c01124{bottom:297.570000px;}
.y19_c01124{bottom:321.570000px;}
.y18_c01124{bottom:345.570000px;}
.y17_c01124{bottom:369.570000px;}
.y16_c01124{bottom:394.170000px;}
.y15_c01124{bottom:418.170000px;}
.y14_c01124{bottom:442.170000px;}
.y13_c01124{bottom:465.420000px;}
.y12_c01124{bottom:490.020000px;}
.y11_c01124{bottom:513.720000px;}
.y10_c01124{bottom:537.870000px;}
.yf_c01124{bottom:561.270000px;}
.ye_c01124{bottom:589.320000px;}
.yd_c01124{bottom:610.470000px;}
.yc_c01124{bottom:632.820000px;}
.yb_c01124{bottom:658.020000px;}
.ya_c01124{bottom:681.720000px;}
.y9_c01124{bottom:706.020000px;}
.y8_c01124{bottom:730.020000px;}
.y7_c01124{bottom:754.020000px;}
.y6_c01124{bottom:778.320000px;}
.y5_c01124{bottom:803.520000px;}
.y4_c01124{bottom:826.920000px;}
.y3_c01124{bottom:851.220000px;}
.y2_c01124{bottom:876.720000px;}
.y1_c01124{bottom:916.020000px;}
.h9_c01124{height:13.200073px;}
.ha_c01124{height:43.804688px;}
.h6_c01124{height:75.966797px;}
.h3_c01124{height:79.497070px;}
.h4_c01124{height:84.269531px;}
.h5_c01124{height:91.160156px;}
.h7_c01124{height:91.176000px;}
.h8_c01124{height:112.035000px;}
.h2_c01124{height:120.937500px;}
.h1_c01124{height:986.250000px;}
.h0_c01124{height:986.550000px;}
.w1_c01124{width:104.875500px;}
.w0_c01124{width:672.000000px;}
.x0_c01124{left:0.000000px;}
.x7_c01124{left:24.300000px;}
.x8_c01124{left:28.650000px;}
.x9_c01124{left:34.050000px;}
.x6_c01124{left:48.600000px;}
.x3_c01124{left:51.750000px;}
.x5_c01124{left:52.950000px;}
.x2_c01124{left:54.300000px;}
.x1_c01124{left:70.500000px;}
.x4_c01124{left:105.600000px;}
.xb_c01124{left:287.814240px;}
.xa_c01124{left:349.350000px;}
@media print{
.v1_c01124{vertical-align:-13.333333pt;}
.v0_c01124{vertical-align:0.000000pt;}
.ls6_c01124{letter-spacing:-5.333333pt;}
.ls3_c01124{letter-spacing:0.000000pt;}
.ls4_c01124{letter-spacing:2.666667pt;}
.ls1_c01124{letter-spacing:4.000000pt;}
.ls2_c01124{letter-spacing:6.666667pt;}
.ls5_c01124{letter-spacing:90.666667pt;}
.ls0_c01124{letter-spacing:145.653333pt;}
.ws0_c01124{word-spacing:-18.000000pt;}
.ws2_c01124{word-spacing:-15.424000pt;}
.ws3_c01124{word-spacing:0.000000pt;}
.ws1_c01124{word-spacing:67.477333pt;}
._10_c01124{margin-left:-95.602667pt;}
._11_c01124{margin-left:-93.312000pt;}
._20_c01124{margin-left:-40.560000pt;}
._26_c01124{margin-left:-24.640000pt;}
._2_c01124{margin-left:-22.080000pt;}
._1e_c01124{margin-left:-20.520000pt;}
._16_c01124{margin-left:-15.133333pt;}
._21_c01124{margin-left:-12.722667pt;}
._18_c01124{margin-left:-11.029333pt;}
._5_c01124{margin-left:-9.066667pt;}
._19_c01124{margin-left:-8.141333pt;}
._3_c01124{margin-left:-6.613333pt;}
._e_c01124{margin-left:-5.016000pt;}
._0_c01124{margin-left:-3.413333pt;}
._1_c01124{margin-left:-1.920000pt;}
._14_c01124{margin-left:-0.952000pt;}
._4_c01124{width:1.360000pt;}
._c_c01124{width:2.418667pt;}
._6_c01124{width:3.445333pt;}
._7_c01124{width:4.352000pt;}
._9_c01124{width:5.480000pt;}
._d_c01124{width:6.696000pt;}
._a_c01124{width:7.933333pt;}
._f_c01124{width:9.000000pt;}
._13_c01124{width:10.245333pt;}
._b_c01124{width:11.373333pt;}
._17_c01124{width:12.637333pt;}
._15_c01124{width:13.773333pt;}
._1a_c01124{width:15.253333pt;}
._23_c01124{width:22.194667pt;}
._25_c01124{width:39.954667pt;}
._8_c01124{width:43.338667pt;}
._1d_c01124{width:47.680000pt;}
._27_c01124{width:54.973333pt;}
._22_c01124{width:63.122667pt;}
._1f_c01124{width:78.768000pt;}
._24_c01124{width:133.389333pt;}
._12_c01124{width:136.888000pt;}
._29_c01124{width:226.197333pt;}
._1c_c01124{width:231.866667pt;}
._1b_c01124{width:248.093333pt;}
._28_c01124{width:313.840000pt;}
.fs8_c01124{font-size:42.666667pt;}
.fs5_c01124{font-size:53.333333pt;}
.fs4_c01124{font-size:61.333333pt;}
.fs3_c01124{font-size:64.000000pt;}
.fs2_c01124{font-size:72.000000pt;}
.fs6_c01124{font-size:77.333333pt;}
.fs1_c01124{font-size:90.666667pt;}
.fs7_c01124{font-size:93.333333pt;}
.fs0_c01124{font-size:106.666667pt;}
.y0_c01124{bottom:0.000000pt;}
.y26_c01124{bottom:2.760000pt;}
.y25_c01124{bottom:6.425217pt;}
.y24_c01124{bottom:44.106667pt;}
.y23_c01124{bottom:67.440000pt;}
.y22_c01124{bottom:89.306667pt;}
.y21_c01124{bottom:112.773333pt;}
.y20_c01124{bottom:133.440000pt;}
.y1f_c01124{bottom:156.506667pt;}
.y1e_c01124{bottom:178.106667pt;}
.y1d_c01124{bottom:199.440000pt;}
.y1c_c01124{bottom:221.040000pt;}
.y1b_c01124{bottom:242.640000pt;}
.y1a_c01124{bottom:264.506667pt;}
.y19_c01124{bottom:285.840000pt;}
.y18_c01124{bottom:307.173333pt;}
.y17_c01124{bottom:328.506667pt;}
.y16_c01124{bottom:350.373333pt;}
.y15_c01124{bottom:371.706667pt;}
.y14_c01124{bottom:393.040000pt;}
.y13_c01124{bottom:413.706667pt;}
.y12_c01124{bottom:435.573333pt;}
.y11_c01124{bottom:456.640000pt;}
.y10_c01124{bottom:478.106667pt;}
.yf_c01124{bottom:498.906667pt;}
.ye_c01124{bottom:523.840000pt;}
.yd_c01124{bottom:542.640000pt;}
.yc_c01124{bottom:562.506667pt;}
.yb_c01124{bottom:584.906667pt;}
.ya_c01124{bottom:605.973333pt;}
.y9_c01124{bottom:627.573333pt;}
.y8_c01124{bottom:648.906667pt;}
.y7_c01124{bottom:670.240000pt;}
.y6_c01124{bottom:691.840000pt;}
.y5_c01124{bottom:714.240000pt;}
.y4_c01124{bottom:735.040000pt;}
.y3_c01124{bottom:756.640000pt;}
.y2_c01124{bottom:779.306667pt;}
.y1_c01124{bottom:814.240000pt;}
.h9_c01124{height:11.733399pt;}
.ha_c01124{height:38.937500pt;}
.h6_c01124{height:67.526042pt;}
.h3_c01124{height:70.664062pt;}
.h4_c01124{height:74.906250pt;}
.h5_c01124{height:81.031250pt;}
.h7_c01124{height:81.045333pt;}
.h8_c01124{height:99.586667pt;}
.h2_c01124{height:107.500000pt;}
.h1_c01124{height:876.666667pt;}
.h0_c01124{height:876.933333pt;}
.w1_c01124{width:93.222667pt;}
.w0_c01124{width:597.333333pt;}
.x0_c01124{left:0.000000pt;}
.x7_c01124{left:21.600000pt;}
.x8_c01124{left:25.466667pt;}
.x9_c01124{left:30.266667pt;}
.x6_c01124{left:43.200000pt;}
.x3_c01124{left:46.000000pt;}
.x5_c01124{left:47.066667pt;}
.x2_c01124{left:48.266667pt;}
.x1_c01124{left:62.666667pt;}
.x4_c01124{left:93.866667pt;}
.xb_c01124{left:255.834880pt;}
.xa_c01124{left:310.533333pt;}
}





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

.ir_c01125:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01125{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01125;src:url('chunks/assets/font_4e4532bbbc364591a151f2f3.woff2')format("woff");}.ff1_c01125{font-family:ff1_c01125;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01125;src:url('chunks/assets/font_28b917dd73494655671eb530.woff2')format("woff");}.ff2_c01125{font-family:ff2_c01125;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01125;src:url('chunks/assets/font_513ea88d203df02591be5d92.woff2')format("woff");}.ff3_c01125{font-family:ff3_c01125;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01125;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff4_c01125{font-family:ff4_c01125;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01125;src:url('chunks/assets/font_1c5cf5128399b550cfecf749.woff2')format("woff");}.ff5_c01125{font-family:ff5_c01125;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01125;src:url('chunks/assets/font_f7d552fff6173afca4fe1e22.woff2')format("woff");}.ff6_c01125{font-family:ff6_c01125;line-height:1.437000;font-style:normal;font-weight: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_c01125;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c01125{font-family:ff7_c01125;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01125{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01125{vertical-align:0.000000px;}
.ls3_c01125{letter-spacing:0.000000px;}
.ls2_c01125{letter-spacing:1.080000px;}
.ls4_c01125{letter-spacing:3.000000px;}
.ls0_c01125{letter-spacing:5.700000px;}
.ls1_c01125{letter-spacing:6.000000px;}
.sc__c01125{text-shadow:none;}
.sc0_c01125{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01125{-webkit-text-stroke:0px transparent;}
.sc0_c01125{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01125{word-spacing:-73.686000px;}
.ws2_c01125{word-spacing:-20.250000px;}
.ws0_c01125{word-spacing:-17.352000px;}
.ws3_c01125{word-spacing:0.000000px;}
._23_c01125{margin-left:-22.842000px;}
._18_c01125{margin-left:-16.671000px;}
._f_c01125{margin-left:-15.147000px;}
._1_c01125{margin-left:-11.583000px;}
._1a_c01125{margin-left:-10.359000px;}
._16_c01125{margin-left:-9.153000px;}
._1f_c01125{margin-left:-7.434000px;}
._15_c01125{margin-left:-5.265000px;}
._a_c01125{margin-left:-4.230000px;}
._0_c01125{margin-left:-2.673000px;}
._8_c01125{margin-left:-1.449000px;}
._20_c01125{width:1.002000px;}
._6_c01125{width:2.025000px;}
._5_c01125{width:3.321000px;}
._2_c01125{width:4.779000px;}
._9_c01125{width:5.994000px;}
._b_c01125{width:7.533000px;}
._3_c01125{width:8.748000px;}
._7_c01125{width:10.824000px;}
._c_c01125{width:11.826000px;}
._13_c01125{width:13.446000px;}
._d_c01125{width:15.228000px;}
._4_c01125{width:17.091000px;}
._21_c01125{width:19.206000px;}
._14_c01125{width:21.033000px;}
._11_c01125{width:23.061000px;}
._1c_c01125{width:38.784000px;}
._1b_c01125{width:43.290000px;}
._e_c01125{width:57.024000px;}
._1d_c01125{width:65.043000px;}
._17_c01125{width:74.055000px;}
._19_c01125{width:136.596000px;}
._24_c01125{width:194.805000px;}
._10_c01125{width:231.174000px;}
._1e_c01125{width:264.141000px;}
._22_c01125{width:268.596000px;}
._12_c01125{width:316.872000px;}
.fc2_c01125{color:transparent;}
.fc1_c01125{color:rgb(128,128,128);}
.fc0_c01125{color:rgb(0,0,0);}
.fs2_c01125{font-size:27.000000px;}
.fs4_c01125{font-size:48.000000px;}
.fs1_c01125{font-size:72.000000px;}
.fs0_c01125{font-size:81.000000px;}
.fs3_c01125{font-size:87.000000px;}
.y0_c01125{bottom:0.000000px;}
.y25_c01125{bottom:3.105000px;}
.y24_c01125{bottom:7.228371px;}
.y23_c01125{bottom:64.815000px;}
.y22_c01125{bottom:86.415000px;}
.y21_c01125{bottom:111.465000px;}
.y20_c01125{bottom:136.065000px;}
.y1f_c01125{bottom:160.365000px;}
.y1e_c01125{bottom:185.415000px;}
.y1d_c01125{bottom:208.665000px;}
.y1c_c01125{bottom:233.565000px;}
.y1b_c01125{bottom:258.915000px;}
.y1a_c01125{bottom:282.165000px;}
.y19_c01125{bottom:305.865000px;}
.y18_c01125{bottom:330.165000px;}
.y17_c01125{bottom:354.465000px;}
.y16_c01125{bottom:378.765000px;}
.y15_c01125{bottom:403.065000px;}
.y14_c01125{bottom:427.365000px;}
.y13_c01125{bottom:451.215000px;}
.y12_c01125{bottom:475.215000px;}
.y11_c01125{bottom:499.815000px;}
.y10_c01125{bottom:524.265000px;}
.yf_c01125{bottom:547.215000px;}
.ye_c01125{bottom:571.515000px;}
.yd_c01125{bottom:595.815000px;}
.yc_c01125{bottom:620.115000px;}
.yb_c01125{bottom:644.265000px;}
.ya_c01125{bottom:668.715000px;}
.y9_c01125{bottom:692.565000px;}
.y8_c01125{bottom:716.865000px;}
.y7_c01125{bottom:741.165000px;}
.y6_c01125{bottom:764.865000px;}
.y5_c01125{bottom:789.165000px;}
.y4_c01125{bottom:813.015000px;}
.y3_c01125{bottom:838.065000px;}
.y2_c01125{bottom:861.315000px;}
.y1_c01125{bottom:885.615000px;}
.h6_c01125{height:13.200074px;}
.h7_c01125{height:43.804688px;}
.h3_c01125{height:79.497070px;}
.h2_c01125{height:84.269531px;}
.h4_c01125{height:91.160156px;}
.h5_c01125{height:91.176000px;}
.h1_c01125{height:986.250000px;}
.h0_c01125{height:986.325000px;}
.w2_c01125{width:104.875500px;}
.w0_c01125{width:667.425000px;}
.w1_c01125{width:667.500000px;}
.x0_c01125{left:0.000000px;}
.x4_c01125{left:15.900000px;}
.x5_c01125{left:17.250000px;}
.x3_c01125{left:29.400000px;}
.xc_c01125{left:39.150000px;}
.x7_c01125{left:51.900000px;}
.xa_c01125{left:83.250000px;}
.x9_c01125{left:91.050000px;}
.xb_c01125{left:104.550000px;}
.x6_c01125{left:106.650000px;}
.x2_c01125{left:108.000000px;}
.x1_c01125{left:109.350000px;}
.x8_c01125{left:132.000000px;}
.xe_c01125{left:285.526749px;}
.xd_c01125{left:537.000000px;}
@media print{
.v0_c01125{vertical-align:0.000000pt;}
.ls3_c01125{letter-spacing:0.000000pt;}
.ls2_c01125{letter-spacing:0.960000pt;}
.ls4_c01125{letter-spacing:2.666667pt;}
.ls0_c01125{letter-spacing:5.066667pt;}
.ls1_c01125{letter-spacing:5.333333pt;}
.ws1_c01125{word-spacing:-65.498667pt;}
.ws2_c01125{word-spacing:-18.000000pt;}
.ws0_c01125{word-spacing:-15.424000pt;}
.ws3_c01125{word-spacing:0.000000pt;}
._23_c01125{margin-left:-20.304000pt;}
._18_c01125{margin-left:-14.818667pt;}
._f_c01125{margin-left:-13.464000pt;}
._1_c01125{margin-left:-10.296000pt;}
._1a_c01125{margin-left:-9.208000pt;}
._16_c01125{margin-left:-8.136000pt;}
._1f_c01125{margin-left:-6.608000pt;}
._15_c01125{margin-left:-4.680000pt;}
._a_c01125{margin-left:-3.760000pt;}
._0_c01125{margin-left:-2.376000pt;}
._8_c01125{margin-left:-1.288000pt;}
._20_c01125{width:0.890667pt;}
._6_c01125{width:1.800000pt;}
._5_c01125{width:2.952000pt;}
._2_c01125{width:4.248000pt;}
._9_c01125{width:5.328000pt;}
._b_c01125{width:6.696000pt;}
._3_c01125{width:7.776000pt;}
._7_c01125{width:9.621333pt;}
._c_c01125{width:10.512000pt;}
._13_c01125{width:11.952000pt;}
._d_c01125{width:13.536000pt;}
._4_c01125{width:15.192000pt;}
._21_c01125{width:17.072000pt;}
._14_c01125{width:18.696000pt;}
._11_c01125{width:20.498667pt;}
._1c_c01125{width:34.474667pt;}
._1b_c01125{width:38.480000pt;}
._e_c01125{width:50.688000pt;}
._1d_c01125{width:57.816000pt;}
._17_c01125{width:65.826667pt;}
._19_c01125{width:121.418667pt;}
._24_c01125{width:173.160000pt;}
._10_c01125{width:205.488000pt;}
._1e_c01125{width:234.792000pt;}
._22_c01125{width:238.752000pt;}
._12_c01125{width:281.664000pt;}
.fs2_c01125{font-size:24.000000pt;}
.fs4_c01125{font-size:42.666667pt;}
.fs1_c01125{font-size:64.000000pt;}
.fs0_c01125{font-size:72.000000pt;}
.fs3_c01125{font-size:77.333333pt;}
.y0_c01125{bottom:0.000000pt;}
.y25_c01125{bottom:2.760000pt;}
.y24_c01125{bottom:6.425219pt;}
.y23_c01125{bottom:57.613333pt;}
.y22_c01125{bottom:76.813333pt;}
.y21_c01125{bottom:99.080000pt;}
.y20_c01125{bottom:120.946667pt;}
.y1f_c01125{bottom:142.546667pt;}
.y1e_c01125{bottom:164.813333pt;}
.y1d_c01125{bottom:185.480000pt;}
.y1c_c01125{bottom:207.613333pt;}
.y1b_c01125{bottom:230.146667pt;}
.y1a_c01125{bottom:250.813333pt;}
.y19_c01125{bottom:271.880000pt;}
.y18_c01125{bottom:293.480000pt;}
.y17_c01125{bottom:315.080000pt;}
.y16_c01125{bottom:336.680000pt;}
.y15_c01125{bottom:358.280000pt;}
.y14_c01125{bottom:379.880000pt;}
.y13_c01125{bottom:401.080000pt;}
.y12_c01125{bottom:422.413333pt;}
.y11_c01125{bottom:444.280000pt;}
.y10_c01125{bottom:466.013333pt;}
.yf_c01125{bottom:486.413333pt;}
.ye_c01125{bottom:508.013333pt;}
.yd_c01125{bottom:529.613333pt;}
.yc_c01125{bottom:551.213333pt;}
.yb_c01125{bottom:572.680000pt;}
.ya_c01125{bottom:594.413333pt;}
.y9_c01125{bottom:615.613333pt;}
.y8_c01125{bottom:637.213333pt;}
.y7_c01125{bottom:658.813333pt;}
.y6_c01125{bottom:679.880000pt;}
.y5_c01125{bottom:701.480000pt;}
.y4_c01125{bottom:722.680000pt;}
.y3_c01125{bottom:744.946667pt;}
.y2_c01125{bottom:765.613333pt;}
.y1_c01125{bottom:787.213333pt;}
.h6_c01125{height:11.733399pt;}
.h7_c01125{height:38.937500pt;}
.h3_c01125{height:70.664062pt;}
.h2_c01125{height:74.906250pt;}
.h4_c01125{height:81.031250pt;}
.h5_c01125{height:81.045333pt;}
.h1_c01125{height:876.666667pt;}
.h0_c01125{height:876.733333pt;}
.w2_c01125{width:93.222667pt;}
.w0_c01125{width:593.266667pt;}
.w1_c01125{width:593.333333pt;}
.x0_c01125{left:0.000000pt;}
.x4_c01125{left:14.133333pt;}
.x5_c01125{left:15.333333pt;}
.x3_c01125{left:26.133333pt;}
.xc_c01125{left:34.800000pt;}
.x7_c01125{left:46.133333pt;}
.xa_c01125{left:74.000000pt;}
.x9_c01125{left:80.933333pt;}
.xb_c01125{left:92.933333pt;}
.x6_c01125{left:94.800000pt;}
.x2_c01125{left:96.000000pt;}
.x1_c01125{left:97.200000pt;}
.x8_c01125{left:117.333333pt;}
.xe_c01125{left:253.801554pt;}
.xd_c01125{left:477.333333pt;}
}





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

.ir_c01126:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01126{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01126;src:url('chunks/assets/font_01d8f9fe01a47f498765c5c5.woff2')format("woff");}.ff1_c01126{font-family:ff1_c01126;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01126;src:url('chunks/assets/font_cc4899048e261de6ac39efd0.woff2')format("woff");}.ff2_c01126{font-family:ff2_c01126;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01126;src:url('chunks/assets/font_f639fe53ed7d2d35ae03a3ce.woff2')format("woff");}.ff3_c01126{font-family:ff3_c01126;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01126;src:url('chunks/assets/font_5a515e1895b5aec45c5770e0.woff2')format("woff");}.ff4_c01126{font-family:ff4_c01126;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01126;src:url('chunks/assets/font_f2917fc178cfaf661de6337a.woff2')format("woff");}.ff5_c01126{font-family:ff5_c01126;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01126;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c01126{font-family:ff6_c01126;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01126{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01126{vertical-align:0.000000px;}
.ls3_c01126{letter-spacing:0.000000px;}
.ls1_c01126{letter-spacing:1.500000px;}
.ls0_c01126{letter-spacing:8.280000px;}
.ls2_c01126{letter-spacing:18.216000px;}
.sc__c01126{text-shadow:none;}
.sc0_c01126{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01126{-webkit-text-stroke:0px transparent;}
.sc0_c01126{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01126{word-spacing:-18.075000px;}
.ws0_c01126{word-spacing:-17.352000px;}
.ws2_c01126{word-spacing:0.000000px;}
._18_c01126{margin-left:-21.546000px;}
._1e_c01126{margin-left:-19.029000px;}
._15_c01126{margin-left:-17.346000px;}
._d_c01126{margin-left:-14.994000px;}
._c_c01126{margin-left:-11.907000px;}
._8_c01126{margin-left:-10.026000px;}
._9_c01126{margin-left:-8.280000px;}
._3_c01126{margin-left:-6.723000px;}
._4_c01126{margin-left:-5.022000px;}
._6_c01126{margin-left:-3.600000px;}
._5_c01126{margin-left:-2.244000px;}
._a_c01126{margin-left:-1.218000px;}
._1_c01126{width:1.215000px;}
._0_c01126{width:2.997000px;}
._2_c01126{width:4.293000px;}
._7_c01126{width:6.189000px;}
._11_c01126{width:8.076000px;}
._f_c01126{width:9.243000px;}
._10_c01126{width:11.088000px;}
._e_c01126{width:13.452000px;}
._17_c01126{width:14.637000px;}
._13_c01126{width:16.092000px;}
._12_c01126{width:17.151000px;}
._1c_c01126{width:18.366000px;}
._1d_c01126{width:23.142000px;}
._1b_c01126{width:31.593000px;}
._1a_c01126{width:32.928000px;}
._16_c01126{width:76.356000px;}
._b_c01126{width:142.566000px;}
._1f_c01126{width:238.626000px;}
._19_c01126{width:278.562000px;}
._14_c01126{width:328.275000px;}
.fc2_c01126{color:transparent;}
.fc1_c01126{color:rgb(128,128,128);}
.fc0_c01126{color:rgb(0,0,0);}
.fs5_c01126{font-size:48.000000px;}
.fs1_c01126{font-size:72.000000px;}
.fs3_c01126{font-size:75.000000px;}
.fs0_c01126{font-size:81.000000px;}
.fs4_c01126{font-size:84.000000px;}
.fs2_c01126{font-size:87.000000px;}
.y0_c01126{bottom:0.000000px;}
.y23_c01126{bottom:3.105000px;}
.y22_c01126{bottom:7.228369px;}
.y21_c01126{bottom:65.520000px;}
.y20_c01126{bottom:92.520000px;}
.y1f_c01126{bottom:116.820000px;}
.y1e_c01126{bottom:141.720000px;}
.y1d_c01126{bottom:166.770000px;}
.y1c_c01126{bottom:190.920000px;}
.y1b_c01126{bottom:215.220000px;}
.y1a_c01126{bottom:239.670000px;}
.y19_c01126{bottom:263.820000px;}
.y18_c01126{bottom:287.820000px;}
.y17_c01126{bottom:311.820000px;}
.y16_c01126{bottom:336.120000px;}
.y15_c01126{bottom:360.120000px;}
.y14_c01126{bottom:383.670000px;}
.y13_c01126{bottom:408.270000px;}
.y12_c01126{bottom:432.270000px;}
.y11_c01126{bottom:456.270000px;}
.y10_c01126{bottom:490.020000px;}
.yf_c01126{bottom:519.720000px;}
.ye_c01126{bottom:548.370000px;}
.yd_c01126{bottom:598.620000px;}
.yc_c01126{bottom:622.620000px;}
.yb_c01126{bottom:646.920000px;}
.ya_c01126{bottom:670.620000px;}
.y9_c01126{bottom:695.520000px;}
.y8_c01126{bottom:719.520000px;}
.y7_c01126{bottom:742.770000px;}
.y6_c01126{bottom:767.070000px;}
.y5_c01126{bottom:791.670000px;}
.y4_c01126{bottom:815.670000px;}
.y3_c01126{bottom:840.420000px;}
.y2_c01126{bottom:863.370000px;}
.y1_c01126{bottom:888.270000px;}
.h9_c01126{height:13.200073px;}
.ha_c01126{height:43.804688px;}
.h4_c01126{height:79.497070px;}
.h8_c01126{height:82.400391px;}
.h7_c01126{height:82.441406px;}
.h2_c01126{height:84.269531px;}
.h3_c01126{height:91.160156px;}
.h5_c01126{height:91.176000px;}
.h6_c01126{height:94.958496px;}
.h1_c01126{height:986.250000px;}
.h0_c01126{height:986.550000px;}
.w1_c01126{width:104.875500px;}
.w0_c01126{width:672.000000px;}
.x0_c01126{left:0.000000px;}
.x2_c01126{left:57.600000px;}
.x3_c01126{left:59.400000px;}
.x1_c01126{left:60.750000px;}
.xb_c01126{left:61.800000px;}
.x4_c01126{left:70.950000px;}
.x5_c01126{left:121.200000px;}
.x7_c01126{left:181.950000px;}
.xa_c01126{left:184.650000px;}
.x6_c01126{left:185.700000px;}
.x8_c01126{left:187.650000px;}
.x9_c01126{left:189.000000px;}
.xd_c01126{left:287.814240px;}
.xc_c01126{left:448.950000px;}
@media print{
.v0_c01126{vertical-align:0.000000pt;}
.ls3_c01126{letter-spacing:0.000000pt;}
.ls1_c01126{letter-spacing:1.333333pt;}
.ls0_c01126{letter-spacing:7.360000pt;}
.ls2_c01126{letter-spacing:16.192000pt;}
.ws1_c01126{word-spacing:-16.066667pt;}
.ws0_c01126{word-spacing:-15.424000pt;}
.ws2_c01126{word-spacing:0.000000pt;}
._18_c01126{margin-left:-19.152000pt;}
._1e_c01126{margin-left:-16.914667pt;}
._15_c01126{margin-left:-15.418667pt;}
._d_c01126{margin-left:-13.328000pt;}
._c_c01126{margin-left:-10.584000pt;}
._8_c01126{margin-left:-8.912000pt;}
._9_c01126{margin-left:-7.360000pt;}
._3_c01126{margin-left:-5.976000pt;}
._4_c01126{margin-left:-4.464000pt;}
._6_c01126{margin-left:-3.200000pt;}
._5_c01126{margin-left:-1.994667pt;}
._a_c01126{margin-left:-1.082667pt;}
._1_c01126{width:1.080000pt;}
._0_c01126{width:2.664000pt;}
._2_c01126{width:3.816000pt;}
._7_c01126{width:5.501333pt;}
._11_c01126{width:7.178667pt;}
._f_c01126{width:8.216000pt;}
._10_c01126{width:9.856000pt;}
._e_c01126{width:11.957333pt;}
._17_c01126{width:13.010667pt;}
._13_c01126{width:14.304000pt;}
._12_c01126{width:15.245333pt;}
._1c_c01126{width:16.325333pt;}
._1d_c01126{width:20.570667pt;}
._1b_c01126{width:28.082667pt;}
._1a_c01126{width:29.269333pt;}
._16_c01126{width:67.872000pt;}
._b_c01126{width:126.725333pt;}
._1f_c01126{width:212.112000pt;}
._19_c01126{width:247.610667pt;}
._14_c01126{width:291.800000pt;}
.fs5_c01126{font-size:42.666667pt;}
.fs1_c01126{font-size:64.000000pt;}
.fs3_c01126{font-size:66.666667pt;}
.fs0_c01126{font-size:72.000000pt;}
.fs4_c01126{font-size:74.666667pt;}
.fs2_c01126{font-size:77.333333pt;}
.y0_c01126{bottom:0.000000pt;}
.y23_c01126{bottom:2.760000pt;}
.y22_c01126{bottom:6.425217pt;}
.y21_c01126{bottom:58.240000pt;}
.y20_c01126{bottom:82.240000pt;}
.y1f_c01126{bottom:103.840000pt;}
.y1e_c01126{bottom:125.973333pt;}
.y1d_c01126{bottom:148.240000pt;}
.y1c_c01126{bottom:169.706667pt;}
.y1b_c01126{bottom:191.306667pt;}
.y1a_c01126{bottom:213.040000pt;}
.y19_c01126{bottom:234.506667pt;}
.y18_c01126{bottom:255.840000pt;}
.y17_c01126{bottom:277.173333pt;}
.y16_c01126{bottom:298.773333pt;}
.y15_c01126{bottom:320.106667pt;}
.y14_c01126{bottom:341.040000pt;}
.y13_c01126{bottom:362.906667pt;}
.y12_c01126{bottom:384.240000pt;}
.y11_c01126{bottom:405.573333pt;}
.y10_c01126{bottom:435.573333pt;}
.yf_c01126{bottom:461.973333pt;}
.ye_c01126{bottom:487.440000pt;}
.yd_c01126{bottom:532.106667pt;}
.yc_c01126{bottom:553.440000pt;}
.yb_c01126{bottom:575.040000pt;}
.ya_c01126{bottom:596.106667pt;}
.y9_c01126{bottom:618.240000pt;}
.y8_c01126{bottom:639.573333pt;}
.y7_c01126{bottom:660.240000pt;}
.y6_c01126{bottom:681.840000pt;}
.y5_c01126{bottom:703.706667pt;}
.y4_c01126{bottom:725.040000pt;}
.y3_c01126{bottom:747.040000pt;}
.y2_c01126{bottom:767.440000pt;}
.y1_c01126{bottom:789.573333pt;}
.h9_c01126{height:11.733399pt;}
.ha_c01126{height:38.937500pt;}
.h4_c01126{height:70.664062pt;}
.h8_c01126{height:73.244792pt;}
.h7_c01126{height:73.281250pt;}
.h2_c01126{height:74.906250pt;}
.h3_c01126{height:81.031250pt;}
.h5_c01126{height:81.045333pt;}
.h6_c01126{height:84.407552pt;}
.h1_c01126{height:876.666667pt;}
.h0_c01126{height:876.933333pt;}
.w1_c01126{width:93.222667pt;}
.w0_c01126{width:597.333333pt;}
.x0_c01126{left:0.000000pt;}
.x2_c01126{left:51.200000pt;}
.x3_c01126{left:52.800000pt;}
.x1_c01126{left:54.000000pt;}
.xb_c01126{left:54.933333pt;}
.x4_c01126{left:63.066667pt;}
.x5_c01126{left:107.733333pt;}
.x7_c01126{left:161.733333pt;}
.xa_c01126{left:164.133333pt;}
.x6_c01126{left:165.066667pt;}
.x8_c01126{left:166.800000pt;}
.x9_c01126{left:168.000000pt;}
.xd_c01126{left:255.834880pt;}
.xc_c01126{left:399.066667pt;}
}





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

.ir_c01127:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01127{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01127;src:url('chunks/assets/font_8c8ad0929c85a8974c6834de.woff2')format("woff");}.ff1_c01127{font-family:ff1_c01127;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01127;src:url('chunks/assets/font_f258c21923628f3a7ccd9322.woff2')format("woff");}.ff2_c01127{font-family:ff2_c01127;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01127;src:url('chunks/assets/font_f70156858161112e0ae00f72.woff2')format("woff");}.ff3_c01127{font-family:ff3_c01127;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01127;src:url('chunks/assets/font_f0a2575809219a7189a74871.woff2')format("woff");}.ff4_c01127{font-family:ff4_c01127;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01127;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff5_c01127{font-family:ff5_c01127;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01127;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c01127{font-family:ff6_c01127;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01127{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01127{vertical-align:0.000000px;}
.ls3_c01127{letter-spacing:0.000000px;}
.ls1_c01127{letter-spacing:40.500000px;}
.ls0_c01127{letter-spacing:44.700000px;}
.ls2_c01127{letter-spacing:95.700000px;}
.sc__c01127{text-shadow:none;}
.sc0_c01127{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01127{-webkit-text-stroke:0px transparent;}
.sc0_c01127{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01127{word-spacing:-17.352000px;}
.ws2_c01127{word-spacing:0.000000px;}
.ws1_c01127{word-spacing:5.535000px;}
._d_c01127{margin-left:-25.839000px;}
._16_c01127{margin-left:-15.012000px;}
._3_c01127{margin-left:-12.312000px;}
._19_c01127{margin-left:-10.824000px;}
._21_c01127{margin-left:-9.072000px;}
._24_c01127{margin-left:-7.797000px;}
._22_c01127{margin-left:-6.480000px;}
._a_c01127{margin-left:-5.427000px;}
._2_c01127{margin-left:-4.050000px;}
._1e_c01127{margin-left:-2.844000px;}
._8_c01127{margin-left:-1.200000px;}
._0_c01127{width:1.458000px;}
._1_c01127{width:2.754000px;}
._4_c01127{width:3.807000px;}
._5_c01127{width:5.022000px;}
._6_c01127{width:6.237000px;}
._b_c01127{width:7.989000px;}
._10_c01127{width:9.537000px;}
._f_c01127{width:10.560000px;}
._14_c01127{width:12.363000px;}
._c_c01127{width:13.527000px;}
._12_c01127{width:14.913000px;}
._13_c01127{width:16.857000px;}
._1b_c01127{width:17.892000px;}
._11_c01127{width:19.452000px;}
._1d_c01127{width:20.772000px;}
._1a_c01127{width:22.014000px;}
._1f_c01127{width:23.361000px;}
._18_c01127{width:24.492000px;}
._1c_c01127{width:26.214000px;}
._20_c01127{width:28.038000px;}
._7_c01127{width:30.024000px;}
._9_c01127{width:52.083000px;}
._15_c01127{width:59.496000px;}
._e_c01127{width:156.816000px;}
._17_c01127{width:174.312000px;}
._23_c01127{width:461.091000px;}
.fc2_c01127{color:transparent;}
.fc1_c01127{color:rgb(128,128,128);}
.fc0_c01127{color:rgb(0,0,0);}
.fs2_c01127{font-size:45.000000px;}
.fs4_c01127{font-size:48.000000px;}
.fs3_c01127{font-size:54.000000px;}
.fs1_c01127{font-size:72.000000px;}
.fs0_c01127{font-size:81.000000px;}
.y0_c01127{bottom:0.000000px;}
.y24_c01127{bottom:3.105000px;}
.y23_c01127{bottom:7.228371px;}
.y22_c01127{bottom:83.715000px;}
.y21_c01127{bottom:109.815000px;}
.y20_c01127{bottom:134.415000px;}
.y1f_c01127{bottom:158.715000px;}
.y1e_c01127{bottom:183.315000px;}
.y1d_c01127{bottom:207.615000px;}
.y1c_c01127{bottom:231.615000px;}
.y1b_c01127{bottom:255.915000px;}
.y1a_c01127{bottom:280.515000px;}
.y19_c01127{bottom:304.815000px;}
.y18_c01127{bottom:328.815000px;}
.y17_c01127{bottom:353.115000px;}
.y16_c01127{bottom:378.315000px;}
.y15_c01127{bottom:403.365000px;}
.y14_c01127{bottom:426.915000px;}
.y13_c01127{bottom:449.865000px;}
.y12_c01127{bottom:473.865000px;}
.y11_c01127{bottom:497.865000px;}
.y10_c01127{bottom:521.565000px;}
.yf_c01127{bottom:545.715000px;}
.ye_c01127{bottom:570.165000px;}
.yd_c01127{bottom:594.465000px;}
.yc_c01127{bottom:618.765000px;}
.yb_c01127{bottom:643.365000px;}
.ya_c01127{bottom:667.215000px;}
.y9_c01127{bottom:691.215000px;}
.y8_c01127{bottom:714.915000px;}
.y7_c01127{bottom:739.215000px;}
.y6_c01127{bottom:763.515000px;}
.y5_c01127{bottom:787.065000px;}
.y4_c01127{bottom:810.465000px;}
.y3_c01127{bottom:834.615000px;}
.y2_c01127{bottom:857.265000px;}
.y1_c01127{bottom:882.615000px;}
.h8_c01127{height:13.200074px;}
.h9_c01127{height:43.804688px;}
.h7_c01127{height:44.143066px;}
.h5_c01127{height:44.165039px;}
.h4_c01127{height:54.421875px;}
.h2_c01127{height:79.497070px;}
.h3_c01127{height:84.269531px;}
.h6_c01127{height:91.160156px;}
.h1_c01127{height:986.250000px;}
.h0_c01127{height:986.325000px;}
.w2_c01127{width:104.875500px;}
.w0_c01127{width:667.425000px;}
.w1_c01127{width:667.500000px;}
.x0_c01127{left:0.000000px;}
.xa_c01127{left:42.750000px;}
.x2_c01127{left:46.500000px;}
.x9_c01127{left:48.300000px;}
.x4_c01127{left:64.800000px;}
.x3_c01127{left:89.250000px;}
.x8_c01127{left:128.850000px;}
.x6_c01127{left:130.650000px;}
.xb_c01127{left:135.000000px;}
.x1_c01127{left:136.050000px;}
.xc_c01127{left:137.250000px;}
.x5_c01127{left:138.750000px;}
.x7_c01127{left:140.700000px;}
.xd_c01127{left:285.526749px;}
@media print{
.v0_c01127{vertical-align:0.000000pt;}
.ls3_c01127{letter-spacing:0.000000pt;}
.ls1_c01127{letter-spacing:36.000000pt;}
.ls0_c01127{letter-spacing:39.733333pt;}
.ls2_c01127{letter-spacing:85.066667pt;}
.ws0_c01127{word-spacing:-15.424000pt;}
.ws2_c01127{word-spacing:0.000000pt;}
.ws1_c01127{word-spacing:4.920000pt;}
._d_c01127{margin-left:-22.968000pt;}
._16_c01127{margin-left:-13.344000pt;}
._3_c01127{margin-left:-10.944000pt;}
._19_c01127{margin-left:-9.621333pt;}
._21_c01127{margin-left:-8.064000pt;}
._24_c01127{margin-left:-6.930667pt;}
._22_c01127{margin-left:-5.760000pt;}
._a_c01127{margin-left:-4.824000pt;}
._2_c01127{margin-left:-3.600000pt;}
._1e_c01127{margin-left:-2.528000pt;}
._8_c01127{margin-left:-1.066667pt;}
._0_c01127{width:1.296000pt;}
._1_c01127{width:2.448000pt;}
._4_c01127{width:3.384000pt;}
._5_c01127{width:4.464000pt;}
._6_c01127{width:5.544000pt;}
._b_c01127{width:7.101333pt;}
._10_c01127{width:8.477333pt;}
._f_c01127{width:9.386667pt;}
._14_c01127{width:10.989333pt;}
._c_c01127{width:12.024000pt;}
._12_c01127{width:13.256000pt;}
._13_c01127{width:14.984000pt;}
._1b_c01127{width:15.904000pt;}
._11_c01127{width:17.290667pt;}
._1d_c01127{width:18.464000pt;}
._1a_c01127{width:19.568000pt;}
._1f_c01127{width:20.765333pt;}
._18_c01127{width:21.770667pt;}
._1c_c01127{width:23.301333pt;}
._20_c01127{width:24.922667pt;}
._7_c01127{width:26.688000pt;}
._9_c01127{width:46.296000pt;}
._15_c01127{width:52.885333pt;}
._e_c01127{width:139.392000pt;}
._17_c01127{width:154.944000pt;}
._23_c01127{width:409.858667pt;}
.fs2_c01127{font-size:40.000000pt;}
.fs4_c01127{font-size:42.666667pt;}
.fs3_c01127{font-size:48.000000pt;}
.fs1_c01127{font-size:64.000000pt;}
.fs0_c01127{font-size:72.000000pt;}
.y0_c01127{bottom:0.000000pt;}
.y24_c01127{bottom:2.760000pt;}
.y23_c01127{bottom:6.425219pt;}
.y22_c01127{bottom:74.413333pt;}
.y21_c01127{bottom:97.613333pt;}
.y20_c01127{bottom:119.480000pt;}
.y1f_c01127{bottom:141.080000pt;}
.y1e_c01127{bottom:162.946667pt;}
.y1d_c01127{bottom:184.546667pt;}
.y1c_c01127{bottom:205.880000pt;}
.y1b_c01127{bottom:227.480000pt;}
.y1a_c01127{bottom:249.346667pt;}
.y19_c01127{bottom:270.946667pt;}
.y18_c01127{bottom:292.280000pt;}
.y17_c01127{bottom:313.880000pt;}
.y16_c01127{bottom:336.280000pt;}
.y15_c01127{bottom:358.546667pt;}
.y14_c01127{bottom:379.480000pt;}
.y13_c01127{bottom:399.880000pt;}
.y12_c01127{bottom:421.213333pt;}
.y11_c01127{bottom:442.546667pt;}
.y10_c01127{bottom:463.613333pt;}
.yf_c01127{bottom:485.080000pt;}
.ye_c01127{bottom:506.813333pt;}
.yd_c01127{bottom:528.413333pt;}
.yc_c01127{bottom:550.013333pt;}
.yb_c01127{bottom:571.880000pt;}
.ya_c01127{bottom:593.080000pt;}
.y9_c01127{bottom:614.413333pt;}
.y8_c01127{bottom:635.480000pt;}
.y7_c01127{bottom:657.080000pt;}
.y6_c01127{bottom:678.680000pt;}
.y5_c01127{bottom:699.613333pt;}
.y4_c01127{bottom:720.413333pt;}
.y3_c01127{bottom:741.880000pt;}
.y2_c01127{bottom:762.013333pt;}
.y1_c01127{bottom:784.546667pt;}
.h8_c01127{height:11.733399pt;}
.h9_c01127{height:38.937500pt;}
.h7_c01127{height:39.238281pt;}
.h5_c01127{height:39.257812pt;}
.h4_c01127{height:48.375000pt;}
.h2_c01127{height:70.664062pt;}
.h3_c01127{height:74.906250pt;}
.h6_c01127{height:81.031250pt;}
.h1_c01127{height:876.666667pt;}
.h0_c01127{height:876.733333pt;}
.w2_c01127{width:93.222667pt;}
.w0_c01127{width:593.266667pt;}
.w1_c01127{width:593.333333pt;}
.x0_c01127{left:0.000000pt;}
.xa_c01127{left:38.000000pt;}
.x2_c01127{left:41.333333pt;}
.x9_c01127{left:42.933333pt;}
.x4_c01127{left:57.600000pt;}
.x3_c01127{left:79.333333pt;}
.x8_c01127{left:114.533333pt;}
.x6_c01127{left:116.133333pt;}
.xb_c01127{left:120.000000pt;}
.x1_c01127{left:120.933333pt;}
.xc_c01127{left:122.000000pt;}
.x5_c01127{left:123.333333pt;}
.x7_c01127{left:125.066667pt;}
.xd_c01127{left:253.801554pt;}
}





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

.ir_c01128:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01128{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01128;src:url('chunks/assets/font_264c08f520199538856b4e81.woff2')format("woff");}.ff1_c01128{font-family:ff1_c01128;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01128;src:url('chunks/assets/font_46373cb69a1a700effd25939.woff2')format("woff");}.ff2_c01128{font-family:ff2_c01128;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01128;src:url('chunks/assets/font_65f92ebad70372118760e149.woff2')format("woff");}.ff3_c01128{font-family:ff3_c01128;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01128;src:url('chunks/assets/font_0045d83fffd37f6579bacc9a.woff2')format("woff");}.ff4_c01128{font-family:ff4_c01128;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01128;src:url('chunks/assets/font_d568f963255450051c9c0f7e.woff2')format("woff");}.ff5_c01128{font-family:ff5_c01128;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01128;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff6_c01128{font-family:ff6_c01128;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01128;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c01128{font-family:ff7_c01128;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01128{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01128{vertical-align:0.000000px;}
.v1_c01128{vertical-align:63.600000px;}
.ls1_c01128{letter-spacing:0.000000px;}
.ls0_c01128{letter-spacing:3.000000px;}
.sc__c01128{text-shadow:none;}
.sc0_c01128{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01128{-webkit-text-stroke:0px transparent;}
.sc0_c01128{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01128{word-spacing:-38.364000px;}
.ws3_c01128{word-spacing:-33.000000px;}
.ws4_c01128{word-spacing:-20.250000px;}
.ws0_c01128{word-spacing:-19.065600px;}
.ws2_c01128{word-spacing:-17.352000px;}
.ws5_c01128{word-spacing:0.000000px;}
._11_c01128{margin-left:-30.843000px;}
._1e_c01128{margin-left:-29.727000px;}
._26_c01128{margin-left:-28.107000px;}
._a_c01128{margin-left:-23.760000px;}
._18_c01128{margin-left:-22.518000px;}
._6_c01128{margin-left:-17.127000px;}
._20_c01128{margin-left:-14.564400px;}
._29_c01128{margin-left:-12.474000px;}
._3_c01128{margin-left:-10.692000px;}
._1b_c01128{margin-left:-9.480600px;}
._0_c01128{margin-left:-7.722000px;}
._1_c01128{margin-left:-6.237000px;}
._e_c01128{margin-left:-4.320000px;}
._4_c01128{margin-left:-3.069000px;}
._2_c01128{margin-left:-1.980000px;}
._c_c01128{width:1.440000px;}
._d_c01128{width:2.592000px;}
._f_c01128{width:3.929400px;}
._15_c01128{width:5.328000px;}
._14_c01128{width:7.128000px;}
._1a_c01128{width:8.272800px;}
._12_c01128{width:9.639000px;}
._13_c01128{width:11.097000px;}
._27_c01128{width:12.112200px;}
._16_c01128{width:13.197600px;}
._9_c01128{width:15.345000px;}
._17_c01128{width:16.619400px;}
._8_c01128{width:18.414000px;}
._24_c01128{width:27.876600px;}
._25_c01128{width:32.619000px;}
._22_c01128{width:34.333200px;}
._21_c01128{width:39.867000px;}
._7_c01128{width:42.075000px;}
._2a_c01128{width:50.868000px;}
._2b_c01128{width:54.702000px;}
._19_c01128{width:59.049000px;}
._23_c01128{width:62.478000px;}
._2d_c01128{width:68.058000px;}
._28_c01128{width:80.256600px;}
._1c_c01128{width:82.377000px;}
._1f_c01128{width:84.483000px;}
._b_c01128{width:89.595000px;}
._5_c01128{width:97.515000px;}
._10_c01128{width:168.642000px;}
._1d_c01128{width:189.945000px;}
._2c_c01128{width:247.079400px;}
._2f_c01128{width:288.216000px;}
._2e_c01128{width:1133.487000px;}
.fc2_c01128{color:transparent;}
.fc1_c01128{color:rgb(128,128,128);}
.fc0_c01128{color:rgb(0,0,0);}
.fs6_c01128{font-size:48.000000px;}
.fs2_c01128{font-size:57.600000px;}
.fs5_c01128{font-size:66.000000px;}
.fs4_c01128{font-size:69.000000px;}
.fs1_c01128{font-size:72.000000px;}
.fs3_c01128{font-size:81.000000px;}
.fs0_c01128{font-size:99.000000px;}
.y0_c01128{bottom:0.000000px;}
.y23_c01128{bottom:3.105000px;}
.y22_c01128{bottom:7.228369px;}
.y21_c01128{bottom:54.270000px;}
.y20_c01128{bottom:76.320000px;}
.y1f_c01128{bottom:101.820000px;}
.y1e_c01128{bottom:126.120000px;}
.y1d_c01128{bottom:150.570000px;}
.y1c_c01128{bottom:247.620000px;}
.y1b_c01128{bottom:271.320000px;}
.y1a_c01128{bottom:295.620000px;}
.y19_c01128{bottom:320.520000px;}
.y18_c01128{bottom:344.820000px;}
.y17_c01128{bottom:368.820000px;}
.y16_c01128{bottom:392.820000px;}
.y15_c01128{bottom:417.120000px;}
.y14_c01128{bottom:441.120000px;}
.y13_c01128{bottom:464.370000px;}
.y12_c01128{bottom:488.370000px;}
.y11_c01128{bottom:512.670000px;}
.y10_c01128{bottom:536.670000px;}
.yf_c01128{bottom:560.220000px;}
.ye_c01128{bottom:584.820000px;}
.yd_c01128{bottom:607.770000px;}
.yc_c01128{bottom:631.470000px;}
.yb_c01128{bottom:655.320000px;}
.ya_c01128{bottom:679.020000px;}
.y9_c01128{bottom:704.070000px;}
.y8_c01128{bottom:727.320000px;}
.y7_c01128{bottom:752.670000px;}
.y6_c01128{bottom:775.620000px;}
.y5_c01128{bottom:800.220000px;}
.y4_c01128{bottom:824.220000px;}
.y3_c01128{bottom:853.770000px;}
.y2_c01128{bottom:872.370000px;}
.y1_c01128{bottom:905.820000px;}
.h8_c01128{height:13.200073px;}
.h9_c01128{height:43.804688px;}
.h4_c01128{height:69.539062px;}
.h5_c01128{height:79.497070px;}
.h3_c01128{height:84.269531px;}
.h6_c01128{height:91.160156px;}
.h2_c01128{height:115.870605px;}
.h7_c01128{height:143.097070px;}
.h1_c01128{height:986.250000px;}
.h0_c01128{height:986.550000px;}
.w1_c01128{width:104.875500px;}
.w0_c01128{width:672.000000px;}
.x0_c01128{left:0.000000px;}
.x5_c01128{left:47.550000px;}
.xa_c01128{left:50.550000px;}
.xe_c01128{left:52.350000px;}
.xd_c01128{left:64.350000px;}
.x8_c01128{left:65.700000px;}
.x6_c01128{left:66.750000px;}
.xb_c01128{left:68.550000px;}
.xf_c01128{left:69.900000px;}
.x10_c01128{left:72.150000px;}
.x7_c01128{left:73.800000px;}
.x9_c01128{left:75.150000px;}
.xc_c01128{left:76.200000px;}
.x4_c01128{left:83.400000px;}
.x2_c01128{left:121.200000px;}
.x1_c01128{left:223.800000px;}
.x11_c01128{left:287.814240px;}
.x3_c01128{left:462.750000px;}
@media print{
.v0_c01128{vertical-align:0.000000pt;}
.v1_c01128{vertical-align:56.533333pt;}
.ls1_c01128{letter-spacing:0.000000pt;}
.ls0_c01128{letter-spacing:2.666667pt;}
.ws1_c01128{word-spacing:-34.101333pt;}
.ws3_c01128{word-spacing:-29.333333pt;}
.ws4_c01128{word-spacing:-18.000000pt;}
.ws0_c01128{word-spacing:-16.947200pt;}
.ws2_c01128{word-spacing:-15.424000pt;}
.ws5_c01128{word-spacing:0.000000pt;}
._11_c01128{margin-left:-27.416000pt;}
._1e_c01128{margin-left:-26.424000pt;}
._26_c01128{margin-left:-24.984000pt;}
._a_c01128{margin-left:-21.120000pt;}
._18_c01128{margin-left:-20.016000pt;}
._6_c01128{margin-left:-15.224000pt;}
._20_c01128{margin-left:-12.946133pt;}
._29_c01128{margin-left:-11.088000pt;}
._3_c01128{margin-left:-9.504000pt;}
._1b_c01128{margin-left:-8.427200pt;}
._0_c01128{margin-left:-6.864000pt;}
._1_c01128{margin-left:-5.544000pt;}
._e_c01128{margin-left:-3.840000pt;}
._4_c01128{margin-left:-2.728000pt;}
._2_c01128{margin-left:-1.760000pt;}
._c_c01128{width:1.280000pt;}
._d_c01128{width:2.304000pt;}
._f_c01128{width:3.492800pt;}
._15_c01128{width:4.736000pt;}
._14_c01128{width:6.336000pt;}
._1a_c01128{width:7.353600pt;}
._12_c01128{width:8.568000pt;}
._13_c01128{width:9.864000pt;}
._27_c01128{width:10.766400pt;}
._16_c01128{width:11.731200pt;}
._9_c01128{width:13.640000pt;}
._17_c01128{width:14.772800pt;}
._8_c01128{width:16.368000pt;}
._24_c01128{width:24.779200pt;}
._25_c01128{width:28.994667pt;}
._22_c01128{width:30.518400pt;}
._21_c01128{width:35.437333pt;}
._7_c01128{width:37.400000pt;}
._2a_c01128{width:45.216000pt;}
._2b_c01128{width:48.624000pt;}
._19_c01128{width:52.488000pt;}
._23_c01128{width:55.536000pt;}
._2d_c01128{width:60.496000pt;}
._28_c01128{width:71.339200pt;}
._1c_c01128{width:73.224000pt;}
._1f_c01128{width:75.096000pt;}
._b_c01128{width:79.640000pt;}
._5_c01128{width:86.680000pt;}
._10_c01128{width:149.904000pt;}
._1d_c01128{width:168.840000pt;}
._2c_c01128{width:219.626133pt;}
._2f_c01128{width:256.192000pt;}
._2e_c01128{width:1007.544000pt;}
.fs6_c01128{font-size:42.666667pt;}
.fs2_c01128{font-size:51.200000pt;}
.fs5_c01128{font-size:58.666667pt;}
.fs4_c01128{font-size:61.333333pt;}
.fs1_c01128{font-size:64.000000pt;}
.fs3_c01128{font-size:72.000000pt;}
.fs0_c01128{font-size:88.000000pt;}
.y0_c01128{bottom:0.000000pt;}
.y23_c01128{bottom:2.760000pt;}
.y22_c01128{bottom:6.425217pt;}
.y21_c01128{bottom:48.240000pt;}
.y20_c01128{bottom:67.840000pt;}
.y1f_c01128{bottom:90.506667pt;}
.y1e_c01128{bottom:112.106667pt;}
.y1d_c01128{bottom:133.840000pt;}
.y1c_c01128{bottom:220.106667pt;}
.y1b_c01128{bottom:241.173333pt;}
.y1a_c01128{bottom:262.773333pt;}
.y19_c01128{bottom:284.906667pt;}
.y18_c01128{bottom:306.506667pt;}
.y17_c01128{bottom:327.840000pt;}
.y16_c01128{bottom:349.173333pt;}
.y15_c01128{bottom:370.773333pt;}
.y14_c01128{bottom:392.106667pt;}
.y13_c01128{bottom:412.773333pt;}
.y12_c01128{bottom:434.106667pt;}
.y11_c01128{bottom:455.706667pt;}
.y10_c01128{bottom:477.040000pt;}
.yf_c01128{bottom:497.973333pt;}
.ye_c01128{bottom:519.840000pt;}
.yd_c01128{bottom:540.240000pt;}
.yc_c01128{bottom:561.306667pt;}
.yb_c01128{bottom:582.506667pt;}
.ya_c01128{bottom:603.573333pt;}
.y9_c01128{bottom:625.840000pt;}
.y8_c01128{bottom:646.506667pt;}
.y7_c01128{bottom:669.040000pt;}
.y6_c01128{bottom:689.440000pt;}
.y5_c01128{bottom:711.306667pt;}
.y4_c01128{bottom:732.640000pt;}
.y3_c01128{bottom:758.906667pt;}
.y2_c01128{bottom:775.440000pt;}
.y1_c01128{bottom:805.173333pt;}
.h8_c01128{height:11.733399pt;}
.h9_c01128{height:38.937500pt;}
.h4_c01128{height:61.812500pt;}
.h5_c01128{height:70.664062pt;}
.h3_c01128{height:74.906250pt;}
.h6_c01128{height:81.031250pt;}
.h2_c01128{height:102.996094pt;}
.h7_c01128{height:127.197396pt;}
.h1_c01128{height:876.666667pt;}
.h0_c01128{height:876.933333pt;}
.w1_c01128{width:93.222667pt;}
.w0_c01128{width:597.333333pt;}
.x0_c01128{left:0.000000pt;}
.x5_c01128{left:42.266667pt;}
.xa_c01128{left:44.933333pt;}
.xe_c01128{left:46.533333pt;}
.xd_c01128{left:57.200000pt;}
.x8_c01128{left:58.400000pt;}
.x6_c01128{left:59.333333pt;}
.xb_c01128{left:60.933333pt;}
.xf_c01128{left:62.133333pt;}
.x10_c01128{left:64.133333pt;}
.x7_c01128{left:65.600000pt;}
.x9_c01128{left:66.800000pt;}
.xc_c01128{left:67.733333pt;}
.x4_c01128{left:74.133333pt;}
.x2_c01128{left:107.733333pt;}
.x1_c01128{left:198.933333pt;}
.x11_c01128{left:255.834880pt;}
.x3_c01128{left:411.333333pt;}
}





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

.ir_c01129:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01129{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01129;src:url('chunks/assets/font_98ebed624d1cc4f3eb504b56.woff2')format("woff");}.ff1_c01129{font-family:ff1_c01129;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01129;src:url('chunks/assets/font_627c148fd2c6e252b8de27d6.woff2')format("woff");}.ff2_c01129{font-family:ff2_c01129;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01129;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff3_c01129{font-family:ff3_c01129;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01129{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01129{vertical-align:0.000000px;}
.ls2_c01129{letter-spacing:-3.000000px;}
.ls0_c01129{letter-spacing:0.000000px;}
.ls1_c01129{letter-spacing:6.000000px;}
.sc__c01129{text-shadow:none;}
.sc0_c01129{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01129{-webkit-text-stroke:0px transparent;}
.sc0_c01129{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01129{word-spacing:-20.250000px;}
.ws0_c01129{word-spacing:-17.352000px;}
.ws2_c01129{word-spacing:0.000000px;}
._1a_c01129{margin-left:-19.800000px;}
._14_c01129{margin-left:-11.097000px;}
._18_c01129{margin-left:-8.235000px;}
._8_c01129{margin-left:-6.966000px;}
._10_c01129{margin-left:-5.670000px;}
._5_c01129{margin-left:-4.455000px;}
._1_c01129{margin-left:-3.402000px;}
._12_c01129{margin-left:-2.187000px;}
._6_c01129{margin-left:-1.053000px;}
._0_c01129{width:1.134000px;}
._4_c01129{width:2.187000px;}
._3_c01129{width:3.402000px;}
._2_c01129{width:5.427000px;}
._7_c01129{width:7.452000px;}
._b_c01129{width:8.667000px;}
._c_c01129{width:10.449000px;}
._a_c01129{width:11.502000px;}
._f_c01129{width:12.717000px;}
._9_c01129{width:14.742000px;}
._e_c01129{width:16.686000px;}
._1c_c01129{width:21.789000px;}
._17_c01129{width:23.799000px;}
._11_c01129{width:28.755000px;}
._d_c01129{width:30.456000px;}
._13_c01129{width:32.157000px;}
._19_c01129{width:34.029000px;}
._1f_c01129{width:35.559000px;}
._1d_c01129{width:43.059000px;}
._1b_c01129{width:44.550000px;}
._20_c01129{width:174.069000px;}
._1e_c01129{width:183.219000px;}
._16_c01129{width:248.616000px;}
._15_c01129{width:255.150000px;}
.fc2_c01129{color:transparent;}
.fc1_c01129{color:rgb(128,128,128);}
.fc0_c01129{color:rgb(0,0,0);}
.fs4_c01129{font-size:48.000000px;}
.fs2_c01129{font-size:63.000000px;}
.fs1_c01129{font-size:72.000000px;}
.fs3_c01129{font-size:75.000000px;}
.fs0_c01129{font-size:81.000000px;}
.y0_c01129{bottom:0.000000px;}
.y25_c01129{bottom:3.105000px;}
.y24_c01129{bottom:7.228355px;}
.y23_c01129{bottom:38.835000px;}
.y22_c01129{bottom:63.135000px;}
.y21_c01129{bottom:87.285000px;}
.y20_c01129{bottom:110.685000px;}
.y1f_c01129{bottom:135.885000px;}
.y1e_c01129{bottom:161.235000px;}
.y1d_c01129{bottom:184.935000px;}
.y1c_c01129{bottom:209.535000px;}
.y1b_c01129{bottom:233.835000px;}
.y1a_c01129{bottom:258.135000px;}
.y19_c01129{bottom:282.735000px;}
.y18_c01129{bottom:307.035000px;}
.y17_c01129{bottom:331.785000px;}
.y16_c01129{bottom:355.935000px;}
.y15_c01129{bottom:379.935000px;}
.y14_c01129{bottom:404.235000px;}
.y13_c01129{bottom:428.235000px;}
.y12_c01129{bottom:451.935000px;}
.y11_c01129{bottom:476.085000px;}
.y10_c01129{bottom:499.785000px;}
.yf_c01129{bottom:524.685000px;}
.ye_c01129{bottom:548.685000px;}
.yd_c01129{bottom:572.385000px;}
.yc_c01129{bottom:596.385000px;}
.yb_c01129{bottom:620.535000px;}
.ya_c01129{bottom:644.985000px;}
.y9_c01129{bottom:668.835000px;}
.y8_c01129{bottom:692.835000px;}
.y7_c01129{bottom:717.735000px;}
.y6_c01129{bottom:741.135000px;}
.y5_c01129{bottom:764.985000px;}
.y4_c01129{bottom:788.385000px;}
.y3_c01129{bottom:812.985000px;}
.y2_c01129{bottom:836.985000px;}
.y1_c01129{bottom:860.985000px;}
.h4_c01129{height:13.200074px;}
.h5_c01129{height:43.804688px;}
.h2_c01129{height:79.497070px;}
.h3_c01129{height:84.269531px;}
.h1_c01129{height:975.000000px;}
.h0_c01129{height:975.225000px;}
.w2_c01129{width:104.875500px;}
.w0_c01129{width:659.850000px;}
.w1_c01129{width:660.000000px;}
.x0_c01129{left:0.000000px;}
.x4_c01129{left:24.000000px;}
.x5_c01129{left:26.100000px;}
.x9_c01129{left:113.850000px;}
.x8_c01129{left:115.500000px;}
.x7_c01129{left:117.150000px;}
.x2_c01129{left:118.200000px;}
.x6_c01129{left:119.250000px;}
.x3_c01129{left:120.450000px;}
.xa_c01129{left:142.050000px;}
.x1_c01129{left:144.150000px;}
.xc_c01129{left:281.739258px;}
.xb_c01129{left:573.450000px;}
@media print{
.v0_c01129{vertical-align:0.000000pt;}
.ls2_c01129{letter-spacing:-2.666667pt;}
.ls0_c01129{letter-spacing:0.000000pt;}
.ls1_c01129{letter-spacing:5.333333pt;}
.ws1_c01129{word-spacing:-18.000000pt;}
.ws0_c01129{word-spacing:-15.424000pt;}
.ws2_c01129{word-spacing:0.000000pt;}
._1a_c01129{margin-left:-17.600000pt;}
._14_c01129{margin-left:-9.864000pt;}
._18_c01129{margin-left:-7.320000pt;}
._8_c01129{margin-left:-6.192000pt;}
._10_c01129{margin-left:-5.040000pt;}
._5_c01129{margin-left:-3.960000pt;}
._1_c01129{margin-left:-3.024000pt;}
._12_c01129{margin-left:-1.944000pt;}
._6_c01129{margin-left:-0.936000pt;}
._0_c01129{width:1.008000pt;}
._4_c01129{width:1.944000pt;}
._3_c01129{width:3.024000pt;}
._2_c01129{width:4.824000pt;}
._7_c01129{width:6.624000pt;}
._b_c01129{width:7.704000pt;}
._c_c01129{width:9.288000pt;}
._a_c01129{width:10.224000pt;}
._f_c01129{width:11.304000pt;}
._9_c01129{width:13.104000pt;}
._e_c01129{width:14.832000pt;}
._1c_c01129{width:19.368000pt;}
._17_c01129{width:21.154667pt;}
._11_c01129{width:25.560000pt;}
._d_c01129{width:27.072000pt;}
._13_c01129{width:28.584000pt;}
._19_c01129{width:30.248000pt;}
._1f_c01129{width:31.608000pt;}
._1d_c01129{width:38.274667pt;}
._1b_c01129{width:39.600000pt;}
._20_c01129{width:154.728000pt;}
._1e_c01129{width:162.861333pt;}
._16_c01129{width:220.992000pt;}
._15_c01129{width:226.800000pt;}
.fs4_c01129{font-size:42.666667pt;}
.fs2_c01129{font-size:56.000000pt;}
.fs1_c01129{font-size:64.000000pt;}
.fs3_c01129{font-size:66.666667pt;}
.fs0_c01129{font-size:72.000000pt;}
.y0_c01129{bottom:0.000000pt;}
.y25_c01129{bottom:2.760000pt;}
.y24_c01129{bottom:6.425204pt;}
.y23_c01129{bottom:34.520000pt;}
.y22_c01129{bottom:56.120000pt;}
.y21_c01129{bottom:77.586667pt;}
.y20_c01129{bottom:98.386667pt;}
.y1f_c01129{bottom:120.786667pt;}
.y1e_c01129{bottom:143.320000pt;}
.y1d_c01129{bottom:164.386667pt;}
.y1c_c01129{bottom:186.253333pt;}
.y1b_c01129{bottom:207.853333pt;}
.y1a_c01129{bottom:229.453333pt;}
.y19_c01129{bottom:251.320000pt;}
.y18_c01129{bottom:272.920000pt;}
.y17_c01129{bottom:294.920000pt;}
.y16_c01129{bottom:316.386667pt;}
.y15_c01129{bottom:337.720000pt;}
.y14_c01129{bottom:359.320000pt;}
.y13_c01129{bottom:380.653333pt;}
.y12_c01129{bottom:401.720000pt;}
.y11_c01129{bottom:423.186667pt;}
.y10_c01129{bottom:444.253333pt;}
.yf_c01129{bottom:466.386667pt;}
.ye_c01129{bottom:487.720000pt;}
.yd_c01129{bottom:508.786667pt;}
.yc_c01129{bottom:530.120000pt;}
.yb_c01129{bottom:551.586667pt;}
.ya_c01129{bottom:573.320000pt;}
.y9_c01129{bottom:594.520000pt;}
.y8_c01129{bottom:615.853333pt;}
.y7_c01129{bottom:637.986667pt;}
.y6_c01129{bottom:658.786667pt;}
.y5_c01129{bottom:679.986667pt;}
.y4_c01129{bottom:700.786667pt;}
.y3_c01129{bottom:722.653333pt;}
.y2_c01129{bottom:743.986667pt;}
.y1_c01129{bottom:765.320000pt;}
.h4_c01129{height:11.733399pt;}
.h5_c01129{height:38.937500pt;}
.h2_c01129{height:70.664062pt;}
.h3_c01129{height:74.906250pt;}
.h1_c01129{height:866.666667pt;}
.h0_c01129{height:866.866667pt;}
.w2_c01129{width:93.222667pt;}
.w0_c01129{width:586.533333pt;}
.w1_c01129{width:586.666667pt;}
.x0_c01129{left:0.000000pt;}
.x4_c01129{left:21.333333pt;}
.x5_c01129{left:23.200000pt;}
.x9_c01129{left:101.200000pt;}
.x8_c01129{left:102.666667pt;}
.x7_c01129{left:104.133333pt;}
.x2_c01129{left:105.066667pt;}
.x6_c01129{left:106.000000pt;}
.x3_c01129{left:107.066667pt;}
.xa_c01129{left:126.266667pt;}
.x1_c01129{left:128.133333pt;}
.xc_c01129{left:250.434896pt;}
.xb_c01129{left:509.733333pt;}
}





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

.ir_c01130:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01130{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01130;src:url('chunks/assets/font_1de2bc72bf2bcec3691e7f23.woff2')format("woff");}.ff1_c01130{font-family:ff1_c01130;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01130;src:url('chunks/assets/font_8518e4aa009411d63c1823e6.woff2')format("woff");}.ff2_c01130{font-family:ff2_c01130;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01130;src:url('chunks/assets/font_75191710c7feb9426e678826.woff2')format("woff");}.ff3_c01130{font-family:ff3_c01130;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01130;src:url('chunks/assets/font_74d9695dc50f011fe6e8b43c.woff2')format("woff");}.ff4_c01130{font-family:ff4_c01130;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01130;src:url('chunks/assets/font_91d69ca125ef13ebc9d58120.woff2')format("woff");}.ff5_c01130{font-family:ff5_c01130;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01130;src:url('chunks/assets/font_d3d95a840aeeb68e27429778.woff2')format("woff");}.ff6_c01130{font-family:ff6_c01130;line-height:1.437000;font-style:normal;font-weight: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_c01130;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c01130{font-family:ff7_c01130;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01130{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01130{vertical-align:0.000000px;}
.ls4_c01130{letter-spacing:0.000000px;}
.ls2_c01130{letter-spacing:3.000000px;}
.ls3_c01130{letter-spacing:6.000000px;}
.ls1_c01130{letter-spacing:7.800000px;}
.ls0_c01130{letter-spacing:11.400000px;}
.sc__c01130{text-shadow:none;}
.sc0_c01130{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01130{-webkit-text-stroke:0px transparent;}
.sc0_c01130{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c01130{word-spacing:-73.686000px;}
.ws1_c01130{word-spacing:-59.184000px;}
.ws0_c01130{word-spacing:-38.250000px;}
.ws3_c01130{word-spacing:-20.250000px;}
.ws2_c01130{word-spacing:-14.250000px;}
.ws5_c01130{word-spacing:0.000000px;}
._4_c01130{margin-left:-22.122000px;}
._1_c01130{margin-left:-12.648000px;}
._2_c01130{margin-left:-11.118000px;}
._1c_c01130{margin-left:-10.011000px;}
._14_c01130{margin-left:-7.869000px;}
._1b_c01130{margin-left:-6.594000px;}
._7_c01130{margin-left:-5.013000px;}
._a_c01130{margin-left:-3.747000px;}
._b_c01130{margin-left:-2.361000px;}
._13_c01130{margin-left:-1.017000px;}
._0_c01130{width:1.224000px;}
._3_c01130{width:2.448000px;}
._6_c01130{width:3.774000px;}
._8_c01130{width:5.103000px;}
._9_c01130{width:7.020000px;}
._f_c01130{width:8.181000px;}
._d_c01130{width:9.315000px;}
._10_c01130{width:10.638000px;}
._12_c01130{width:11.907000px;}
._11_c01130{width:13.746000px;}
._e_c01130{width:15.630000px;}
._17_c01130{width:16.719000px;}
._1e_c01130{width:19.137000px;}
._1f_c01130{width:20.595000px;}
._18_c01130{width:21.786000px;}
._16_c01130{width:24.927000px;}
._1a_c01130{width:27.630000px;}
._19_c01130{width:29.010000px;}
._15_c01130{width:30.684000px;}
._c_c01130{width:31.968000px;}
._23_c01130{width:37.083000px;}
._1d_c01130{width:38.382000px;}
._24_c01130{width:42.276000px;}
._22_c01130{width:44.442000px;}
._20_c01130{width:67.194000px;}
._21_c01130{width:98.820000px;}
._25_c01130{width:334.683000px;}
._5_c01130{width:381.786000px;}
.fc2_c01130{color:transparent;}
.fc1_c01130{color:rgb(128,128,128);}
.fc0_c01130{color:rgb(0,0,0);}
.fs7_c01130{font-size:48.000000px;}
.fs3_c01130{font-size:57.000000px;}
.fs4_c01130{font-size:60.000000px;}
.fs5_c01130{font-size:72.000000px;}
.fs2_c01130{font-size:81.000000px;}
.fs6_c01130{font-size:87.000000px;}
.fs0_c01130{font-size:102.000000px;}
.fs1_c01130{font-size:129.000000px;}
.y0_c01130{bottom:0.000000px;}
.y24_c01130{bottom:3.105000px;}
.y23_c01130{bottom:7.228369px;}
.y22_c01130{bottom:59.070000px;}
.y21_c01130{bottom:88.020000px;}
.y20_c01130{bottom:113.370000px;}
.y1f_c01130{bottom:138.270000px;}
.y1e_c01130{bottom:162.270000px;}
.y1d_c01130{bottom:186.270000px;}
.y1c_c01130{bottom:210.270000px;}
.y1b_c01130{bottom:234.270000px;}
.y1a_c01130{bottom:258.570000px;}
.y19_c01130{bottom:283.770000px;}
.y18_c01130{bottom:308.070000px;}
.y17_c01130{bottom:332.070000px;}
.y16_c01130{bottom:380.070000px;}
.y15_c01130{bottom:404.370000px;}
.y14_c01130{bottom:451.470000px;}
.y13_c01130{bottom:475.770000px;}
.y12_c01130{bottom:499.770000px;}
.y11_c01130{bottom:524.070000px;}
.y10_c01130{bottom:548.070000px;}
.yf_c01130{bottom:572.370000px;}
.ye_c01130{bottom:596.070000px;}
.yd_c01130{bottom:620.220000px;}
.yc_c01130{bottom:644.220000px;}
.yb_c01130{bottom:668.220000px;}
.ya_c01130{bottom:692.820000px;}
.y9_c01130{bottom:716.070000px;}
.y8_c01130{bottom:740.520000px;}
.y7_c01130{bottom:764.370000px;}
.y6_c01130{bottom:787.770000px;}
.y5_c01130{bottom:811.920000px;}
.y4_c01130{bottom:835.320000px;}
.y3_c01130{bottom:860.520000px;}
.y2_c01130{bottom:882.870000px;}
.y1_c01130{bottom:925.320000px;}
.h8_c01130{height:13.200073px;}
.h9_c01130{height:43.804688px;}
.h4_c01130{height:59.736000px;}
.h6_c01130{height:70.628906px;}
.h3_c01130{height:79.497070px;}
.h5_c01130{height:84.269531px;}
.h7_c01130{height:91.176000px;}
.h2_c01130{height:126.543457px;}
.h1_c01130{height:986.250000px;}
.h0_c01130{height:986.550000px;}
.w1_c01130{width:104.875500px;}
.w0_c01130{width:672.000000px;}
.x0_c01130{left:0.000000px;}
.x9_c01130{left:43.200000px;}
.x2_c01130{left:48.900000px;}
.x3_c01130{left:49.950000px;}
.x4_c01130{left:51.300000px;}
.x5_c01130{left:52.950000px;}
.x6_c01130{left:55.650000px;}
.xb_c01130{left:58.650000px;}
.xc_c01130{left:59.700000px;}
.xd_c01130{left:60.750000px;}
.xe_c01130{left:62.550000px;}
.xa_c01130{left:65.100000px;}
.x7_c01130{left:111.000000px;}
.x1_c01130{left:213.600000px;}
.x8_c01130{left:276.450000px;}
.x10_c01130{left:287.814240px;}
.xf_c01130{left:362.100000px;}
@media print{
.v0_c01130{vertical-align:0.000000pt;}
.ls4_c01130{letter-spacing:0.000000pt;}
.ls2_c01130{letter-spacing:2.666667pt;}
.ls3_c01130{letter-spacing:5.333333pt;}
.ls1_c01130{letter-spacing:6.933333pt;}
.ls0_c01130{letter-spacing:10.133333pt;}
.ws4_c01130{word-spacing:-65.498667pt;}
.ws1_c01130{word-spacing:-52.608000pt;}
.ws0_c01130{word-spacing:-34.000000pt;}
.ws3_c01130{word-spacing:-18.000000pt;}
.ws2_c01130{word-spacing:-12.666667pt;}
.ws5_c01130{word-spacing:0.000000pt;}
._4_c01130{margin-left:-19.664000pt;}
._1_c01130{margin-left:-11.242667pt;}
._2_c01130{margin-left:-9.882667pt;}
._1c_c01130{margin-left:-8.898667pt;}
._14_c01130{margin-left:-6.994667pt;}
._1b_c01130{margin-left:-5.861333pt;}
._7_c01130{margin-left:-4.456000pt;}
._a_c01130{margin-left:-3.330667pt;}
._b_c01130{margin-left:-2.098667pt;}
._13_c01130{margin-left:-0.904000pt;}
._0_c01130{width:1.088000pt;}
._3_c01130{width:2.176000pt;}
._6_c01130{width:3.354667pt;}
._8_c01130{width:4.536000pt;}
._9_c01130{width:6.240000pt;}
._f_c01130{width:7.272000pt;}
._d_c01130{width:8.280000pt;}
._10_c01130{width:9.456000pt;}
._12_c01130{width:10.584000pt;}
._11_c01130{width:12.218667pt;}
._e_c01130{width:13.893333pt;}
._17_c01130{width:14.861333pt;}
._1e_c01130{width:17.010667pt;}
._1f_c01130{width:18.306667pt;}
._18_c01130{width:19.365333pt;}
._16_c01130{width:22.157333pt;}
._1a_c01130{width:24.560000pt;}
._19_c01130{width:25.786667pt;}
._15_c01130{width:27.274667pt;}
._c_c01130{width:28.416000pt;}
._23_c01130{width:32.962667pt;}
._1d_c01130{width:34.117333pt;}
._24_c01130{width:37.578667pt;}
._22_c01130{width:39.504000pt;}
._20_c01130{width:59.728000pt;}
._21_c01130{width:87.840000pt;}
._25_c01130{width:297.496000pt;}
._5_c01130{width:339.365333pt;}
.fs7_c01130{font-size:42.666667pt;}
.fs3_c01130{font-size:50.666667pt;}
.fs4_c01130{font-size:53.333333pt;}
.fs5_c01130{font-size:64.000000pt;}
.fs2_c01130{font-size:72.000000pt;}
.fs6_c01130{font-size:77.333333pt;}
.fs0_c01130{font-size:90.666667pt;}
.fs1_c01130{font-size:114.666667pt;}
.y0_c01130{bottom:0.000000pt;}
.y24_c01130{bottom:2.760000pt;}
.y23_c01130{bottom:6.425217pt;}
.y22_c01130{bottom:52.506667pt;}
.y21_c01130{bottom:78.240000pt;}
.y20_c01130{bottom:100.773333pt;}
.y1f_c01130{bottom:122.906667pt;}
.y1e_c01130{bottom:144.240000pt;}
.y1d_c01130{bottom:165.573333pt;}
.y1c_c01130{bottom:186.906667pt;}
.y1b_c01130{bottom:208.240000pt;}
.y1a_c01130{bottom:229.840000pt;}
.y19_c01130{bottom:252.240000pt;}
.y18_c01130{bottom:273.840000pt;}
.y17_c01130{bottom:295.173333pt;}
.y16_c01130{bottom:337.840000pt;}
.y15_c01130{bottom:359.440000pt;}
.y14_c01130{bottom:401.306667pt;}
.y13_c01130{bottom:422.906667pt;}
.y12_c01130{bottom:444.240000pt;}
.y11_c01130{bottom:465.840000pt;}
.y10_c01130{bottom:487.173333pt;}
.yf_c01130{bottom:508.773333pt;}
.ye_c01130{bottom:529.840000pt;}
.yd_c01130{bottom:551.306667pt;}
.yc_c01130{bottom:572.640000pt;}
.yb_c01130{bottom:593.973333pt;}
.ya_c01130{bottom:615.840000pt;}
.y9_c01130{bottom:636.506667pt;}
.y8_c01130{bottom:658.240000pt;}
.y7_c01130{bottom:679.440000pt;}
.y6_c01130{bottom:700.240000pt;}
.y5_c01130{bottom:721.706667pt;}
.y4_c01130{bottom:742.506667pt;}
.y3_c01130{bottom:764.906667pt;}
.y2_c01130{bottom:784.773333pt;}
.y1_c01130{bottom:822.506667pt;}
.h8_c01130{height:11.733399pt;}
.h9_c01130{height:38.937500pt;}
.h4_c01130{height:53.098667pt;}
.h6_c01130{height:62.781250pt;}
.h3_c01130{height:70.664062pt;}
.h5_c01130{height:74.906250pt;}
.h7_c01130{height:81.045333pt;}
.h2_c01130{height:112.483073pt;}
.h1_c01130{height:876.666667pt;}
.h0_c01130{height:876.933333pt;}
.w1_c01130{width:93.222667pt;}
.w0_c01130{width:597.333333pt;}
.x0_c01130{left:0.000000pt;}
.x9_c01130{left:38.400000pt;}
.x2_c01130{left:43.466667pt;}
.x3_c01130{left:44.400000pt;}
.x4_c01130{left:45.600000pt;}
.x5_c01130{left:47.066667pt;}
.x6_c01130{left:49.466667pt;}
.xb_c01130{left:52.133333pt;}
.xc_c01130{left:53.066667pt;}
.xd_c01130{left:54.000000pt;}
.xe_c01130{left:55.600000pt;}
.xa_c01130{left:57.866667pt;}
.x7_c01130{left:98.666667pt;}
.x1_c01130{left:189.866667pt;}
.x8_c01130{left:245.733333pt;}
.x10_c01130{left:255.834880pt;}
.xf_c01130{left:321.866667pt;}
}





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

.ir_c01131:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01131{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01131;src:url('chunks/assets/font_cf6b2f6b13295cea898cd982.woff2')format("woff");}.ff1_c01131{font-family:ff1_c01131;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01131;src:url('chunks/assets/font_80bfbd1ce4101792d8c2cb03.woff2')format("woff");}.ff2_c01131{font-family:ff2_c01131;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01131;src:url('chunks/assets/font_c0d6888f395d7293f999b573.woff2')format("woff");}.ff3_c01131{font-family:ff3_c01131;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01131;src:url('chunks/assets/font_df21fb36aef475f23b50219b.woff2')format("woff");}.ff4_c01131{font-family:ff4_c01131;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01131;src:url('chunks/assets/font_3da9df79c8daabf5d6720cb3.woff2')format("woff");}.ff5_c01131{font-family:ff5_c01131;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01131;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff6_c01131{font-family:ff6_c01131;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01131;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c01131{font-family:ff7_c01131;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01131{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01131{vertical-align:0.000000px;}
.ls4_c01131{letter-spacing:0.000000px;}
.ls0_c01131{letter-spacing:0.966000px;}
.ls3_c01131{letter-spacing:4.500000px;}
.ls1_c01131{letter-spacing:5.100000px;}
.ls2_c01131{letter-spacing:6.000000px;}
.sc__c01131{text-shadow:none;}
.sc0_c01131{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01131{-webkit-text-stroke:0px transparent;}
.sc0_c01131{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01131{word-spacing:-17.352000px;}
.ws1_c01131{word-spacing:0.000000px;}
._20_c01131{margin-left:-31.266000px;}
._7_c01131{margin-left:-24.570000px;}
._6_c01131{margin-left:-16.590000px;}
._21_c01131{margin-left:-15.309000px;}
._9_c01131{margin-left:-13.860000px;}
._24_c01131{margin-left:-12.045000px;}
._1d_c01131{margin-left:-11.031000px;}
._16_c01131{margin-left:-9.891000px;}
._1a_c01131{margin-left:-8.424000px;}
._1_c01131{margin-left:-6.510000px;}
._2_c01131{margin-left:-5.040000px;}
._3_c01131{margin-left:-3.150000px;}
._e_c01131{margin-left:-1.755000px;}
._8_c01131{width:1.365000px;}
._a_c01131{width:2.415000px;}
._d_c01131{width:4.308000px;}
._12_c01131{width:5.322000px;}
._10_c01131{width:6.384000px;}
._f_c01131{width:7.533000px;}
._b_c01131{width:8.748000px;}
._11_c01131{width:9.963000px;}
._15_c01131{width:11.229000px;}
._19_c01131{width:12.894000px;}
._13_c01131{width:14.370000px;}
._18_c01131{width:15.849000px;}
._17_c01131{width:17.013000px;}
._5_c01131{width:18.270000px;}
._14_c01131{width:22.761000px;}
._1c_c01131{width:24.282000px;}
._22_c01131{width:26.592000px;}
._1e_c01131{width:34.839000px;}
._23_c01131{width:43.326000px;}
._c_c01131{width:53.784000px;}
._1f_c01131{width:67.980000px;}
._0_c01131{width:179.865000px;}
._4_c01131{width:224.280000px;}
._1b_c01131{width:492.435000px;}
.fc2_c01131{color:transparent;}
.fc1_c01131{color:rgb(128,128,128);}
.fc0_c01131{color:rgb(0,0,0);}
.fs5_c01131{font-size:48.000000px;}
.fs3_c01131{font-size:72.000000px;}
.fs2_c01131{font-size:81.000000px;}
.fs4_c01131{font-size:87.000000px;}
.fs0_c01131{font-size:99.000000px;}
.fs1_c01131{font-size:105.000000px;}
.y0_c01131{bottom:0.000000px;}
.y25_c01131{bottom:3.105000px;}
.y24_c01131{bottom:7.228363px;}
.y23_c01131{bottom:90.450000px;}
.y22_c01131{bottom:115.050000px;}
.y21_c01131{bottom:139.350000px;}
.y20_c01131{bottom:163.800000px;}
.y1f_c01131{bottom:186.750000px;}
.y1e_c01131{bottom:213.600000px;}
.y1d_c01131{bottom:237.000000px;}
.y1c_c01131{bottom:261.000000px;}
.y1b_c01131{bottom:285.600000px;}
.y1a_c01131{bottom:309.900000px;}
.y19_c01131{bottom:334.200000px;}
.y18_c01131{bottom:358.200000px;}
.y17_c01131{bottom:382.800000px;}
.y16_c01131{bottom:406.800000px;}
.y15_c01131{bottom:431.250000px;}
.y14_c01131{bottom:455.400000px;}
.y13_c01131{bottom:478.950000px;}
.y12_c01131{bottom:502.650000px;}
.y11_c01131{bottom:526.500000px;}
.y10_c01131{bottom:550.500000px;}
.yf_c01131{bottom:573.750000px;}
.ye_c01131{bottom:598.500000px;}
.yd_c01131{bottom:622.800000px;}
.yc_c01131{bottom:647.100000px;}
.yb_c01131{bottom:670.650000px;}
.ya_c01131{bottom:695.250000px;}
.y9_c01131{bottom:718.950000px;}
.y8_c01131{bottom:743.850000px;}
.y7_c01131{bottom:767.100000px;}
.y6_c01131{bottom:791.100000px;}
.y5_c01131{bottom:815.100000px;}
.y4_c01131{bottom:839.700000px;}
.y3_c01131{bottom:863.100000px;}
.y2_c01131{bottom:888.300000px;}
.y1_c01131{bottom:920.700000px;}
.h8_c01131{height:13.200074px;}
.h9_c01131{height:43.804688px;}
.h3_c01131{height:79.497070px;}
.h4_c01131{height:84.269531px;}
.h6_c01131{height:91.160156px;}
.h5_c01131{height:91.176000px;}
.h7_c01131{height:91.776000px;}
.h2_c01131{height:115.870605px;}
.h1_c01131{height:977.250000px;}
.h0_c01131{height:977.400000px;}
.w1_c01131{width:104.875500px;}
.w0_c01131{width:661.500000px;}
.x0_c01131{left:0.000000px;}
.xc_c01131{left:18.600000px;}
.x7_c01131{left:20.700000px;}
.x6_c01131{left:73.350000px;}
.x8_c01131{left:91.500000px;}
.x9_c01131{left:104.250000px;}
.xb_c01131{left:106.350000px;}
.xa_c01131{left:108.000000px;}
.x4_c01131{left:110.700000px;}
.x3_c01131{left:111.750000px;}
.x1_c01131{left:112.950000px;}
.x2_c01131{left:123.900000px;}
.x5_c01131{left:135.450000px;}
.xd_c01131{left:282.564240px;}
@media print{
.v0_c01131{vertical-align:0.000000pt;}
.ls4_c01131{letter-spacing:0.000000pt;}
.ls0_c01131{letter-spacing:0.858667pt;}
.ls3_c01131{letter-spacing:4.000000pt;}
.ls1_c01131{letter-spacing:4.533333pt;}
.ls2_c01131{letter-spacing:5.333333pt;}
.ws0_c01131{word-spacing:-15.424000pt;}
.ws1_c01131{word-spacing:0.000000pt;}
._20_c01131{margin-left:-27.792000pt;}
._7_c01131{margin-left:-21.840000pt;}
._6_c01131{margin-left:-14.746667pt;}
._21_c01131{margin-left:-13.608000pt;}
._9_c01131{margin-left:-12.320000pt;}
._24_c01131{margin-left:-10.706667pt;}
._1d_c01131{margin-left:-9.805333pt;}
._16_c01131{margin-left:-8.792000pt;}
._1a_c01131{margin-left:-7.488000pt;}
._1_c01131{margin-left:-5.786667pt;}
._2_c01131{margin-left:-4.480000pt;}
._3_c01131{margin-left:-2.800000pt;}
._e_c01131{margin-left:-1.560000pt;}
._8_c01131{width:1.213333pt;}
._a_c01131{width:2.146667pt;}
._d_c01131{width:3.829333pt;}
._12_c01131{width:4.730667pt;}
._10_c01131{width:5.674667pt;}
._f_c01131{width:6.696000pt;}
._b_c01131{width:7.776000pt;}
._11_c01131{width:8.856000pt;}
._15_c01131{width:9.981333pt;}
._19_c01131{width:11.461333pt;}
._13_c01131{width:12.773333pt;}
._18_c01131{width:14.088000pt;}
._17_c01131{width:15.122667pt;}
._5_c01131{width:16.240000pt;}
._14_c01131{width:20.232000pt;}
._1c_c01131{width:21.584000pt;}
._22_c01131{width:23.637333pt;}
._1e_c01131{width:30.968000pt;}
._23_c01131{width:38.512000pt;}
._c_c01131{width:47.808000pt;}
._1f_c01131{width:60.426667pt;}
._0_c01131{width:159.880000pt;}
._4_c01131{width:199.360000pt;}
._1b_c01131{width:437.720000pt;}
.fs5_c01131{font-size:42.666667pt;}
.fs3_c01131{font-size:64.000000pt;}
.fs2_c01131{font-size:72.000000pt;}
.fs4_c01131{font-size:77.333333pt;}
.fs0_c01131{font-size:88.000000pt;}
.fs1_c01131{font-size:93.333333pt;}
.y0_c01131{bottom:0.000000pt;}
.y25_c01131{bottom:2.760000pt;}
.y24_c01131{bottom:6.425212pt;}
.y23_c01131{bottom:80.400000pt;}
.y22_c01131{bottom:102.266667pt;}
.y21_c01131{bottom:123.866667pt;}
.y20_c01131{bottom:145.600000pt;}
.y1f_c01131{bottom:166.000000pt;}
.y1e_c01131{bottom:189.866667pt;}
.y1d_c01131{bottom:210.666667pt;}
.y1c_c01131{bottom:232.000000pt;}
.y1b_c01131{bottom:253.866667pt;}
.y1a_c01131{bottom:275.466667pt;}
.y19_c01131{bottom:297.066667pt;}
.y18_c01131{bottom:318.400000pt;}
.y17_c01131{bottom:340.266667pt;}
.y16_c01131{bottom:361.600000pt;}
.y15_c01131{bottom:383.333333pt;}
.y14_c01131{bottom:404.800000pt;}
.y13_c01131{bottom:425.733333pt;}
.y12_c01131{bottom:446.800000pt;}
.y11_c01131{bottom:468.000000pt;}
.y10_c01131{bottom:489.333333pt;}
.yf_c01131{bottom:510.000000pt;}
.ye_c01131{bottom:532.000000pt;}
.yd_c01131{bottom:553.600000pt;}
.yc_c01131{bottom:575.200000pt;}
.yb_c01131{bottom:596.133333pt;}
.ya_c01131{bottom:618.000000pt;}
.y9_c01131{bottom:639.066667pt;}
.y8_c01131{bottom:661.200000pt;}
.y7_c01131{bottom:681.866667pt;}
.y6_c01131{bottom:703.200000pt;}
.y5_c01131{bottom:724.533333pt;}
.y4_c01131{bottom:746.400000pt;}
.y3_c01131{bottom:767.200000pt;}
.y2_c01131{bottom:789.600000pt;}
.y1_c01131{bottom:818.400000pt;}
.h8_c01131{height:11.733399pt;}
.h9_c01131{height:38.937500pt;}
.h3_c01131{height:70.664062pt;}
.h4_c01131{height:74.906250pt;}
.h6_c01131{height:81.031250pt;}
.h5_c01131{height:81.045333pt;}
.h7_c01131{height:81.578667pt;}
.h2_c01131{height:102.996094pt;}
.h1_c01131{height:868.666667pt;}
.h0_c01131{height:868.800000pt;}
.w1_c01131{width:93.222667pt;}
.w0_c01131{width:588.000000pt;}
.x0_c01131{left:0.000000pt;}
.xc_c01131{left:16.533333pt;}
.x7_c01131{left:18.400000pt;}
.x6_c01131{left:65.200000pt;}
.x8_c01131{left:81.333333pt;}
.x9_c01131{left:92.666667pt;}
.xb_c01131{left:94.533333pt;}
.xa_c01131{left:96.000000pt;}
.x4_c01131{left:98.400000pt;}
.x3_c01131{left:99.333333pt;}
.x1_c01131{left:100.400000pt;}
.x2_c01131{left:110.133333pt;}
.x5_c01131{left:120.400000pt;}
.xd_c01131{left:251.168213pt;}
}





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

.ir_c01132:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01132{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01132;src:url('chunks/assets/font_f0e4fd23ea6084c89801dafd.woff2')format("woff");}.ff1_c01132{font-family:ff1_c01132;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01132;src:url('chunks/assets/font_3e89bb741d683f70859df506.woff2')format("woff");}.ff2_c01132{font-family:ff2_c01132;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01132;src:url('chunks/assets/font_8e7ece8d450b635c6a3c4c98.woff2')format("woff");}.ff3_c01132{font-family:ff3_c01132;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01132;src:url('chunks/assets/font_55c2270ab336469a68892830.woff2')format("woff");}.ff4_c01132{font-family:ff4_c01132;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01132;src:url('chunks/assets/font_fff6850b1c7c98bcf8669e18.woff2')format("woff");}.ff5_c01132{font-family:ff5_c01132;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01132;src:url('chunks/assets/font_1eb3e36386c8d9d611c10321.woff2')format("woff");}.ff6_c01132{font-family:ff6_c01132;line-height:1.437000;font-style:normal;font-weight: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_c01132;src:url('chunks/assets/font_6ba08b2bb2af7c3f30218e6d.woff2')format("woff");}.ff7_c01132{font-family:ff7_c01132;line-height:1.437000;font-style:normal;font-weight: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_c01132;src:url('chunks/assets/font_f8506c0c368f38aba7a28f3d.woff2')format("woff");}.ff8_c01132{font-family:ff8_c01132;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c01132;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff9_c01132{font-family:ff9_c01132;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01132{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01132{vertical-align:0.000000px;}
.ls5_c01132{letter-spacing:-9.000000px;}
.ls3_c01132{letter-spacing:0.000000px;}
.ls0_c01132{letter-spacing:3.000000px;}
.ls4_c01132{letter-spacing:6.000000px;}
.ls2_c01132{letter-spacing:19.092000px;}
.ls1_c01132{letter-spacing:38.550000px;}
.sc__c01132{text-shadow:none;}
.sc0_c01132{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01132{-webkit-text-stroke:0px transparent;}
.sc0_c01132{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c01132{word-spacing:-59.184000px;}
.ws0_c01132{word-spacing:-20.250000px;}
.ws3_c01132{word-spacing:-17.250000px;}
.ws5_c01132{word-spacing:0.000000px;}
.ws1_c01132{word-spacing:2.244000px;}
.ws2_c01132{word-spacing:10.104000px;}
._29_c01132{margin-left:-31.824000px;}
._17_c01132{margin-left:-21.372000px;}
._1e_c01132{margin-left:-18.132000px;}
._25_c01132{margin-left:-14.670000px;}
._26_c01132{margin-left:-12.216000px;}
._b_c01132{margin-left:-9.882000px;}
._5_c01132{margin-left:-8.667000px;}
._c_c01132{margin-left:-7.614000px;}
._4_c01132{margin-left:-6.156000px;}
._3_c01132{margin-left:-4.455000px;}
._2_c01132{margin-left:-2.997000px;}
._6_c01132{margin-left:-1.701000px;}
._0_c01132{width:1.782000px;}
._a_c01132{width:3.078000px;}
._7_c01132{width:4.374000px;}
._d_c01132{width:5.589000px;}
._9_c01132{width:6.966000px;}
._8_c01132{width:8.910000px;}
._27_c01132{width:9.912000px;}
._f_c01132{width:10.935000px;}
._12_c01132{width:12.105000px;}
._1_c01132{width:13.203000px;}
._e_c01132{width:15.471000px;}
._11_c01132{width:17.271000px;}
._13_c01132{width:18.795000px;}
._1b_c01132{width:19.875000px;}
._15_c01132{width:21.594000px;}
._14_c01132{width:23.667000px;}
._22_c01132{width:24.942000px;}
._1a_c01132{width:25.959000px;}
._28_c01132{width:27.006000px;}
._10_c01132{width:28.512000px;}
._1c_c01132{width:37.248000px;}
._1f_c01132{width:43.491000px;}
._19_c01132{width:63.348000px;}
._1d_c01132{width:88.377000px;}
._20_c01132{width:90.612000px;}
._18_c01132{width:172.161000px;}
._21_c01132{width:234.654000px;}
._16_c01132{width:274.848000px;}
._24_c01132{width:323.748000px;}
._23_c01132{width:345.123000px;}
._2a_c01132{width:348.138000px;}
.fc2_c01132{color:transparent;}
.fc1_c01132{color:rgb(128,128,128);}
.fc0_c01132{color:rgb(0,0,0);}
.fs4_c01132{font-size:27.000000px;}
.fs3_c01132{font-size:30.000000px;}
.fs8_c01132{font-size:48.000000px;}
.fs1_c01132{font-size:57.000000px;}
.fs6_c01132{font-size:66.000000px;}
.fs5_c01132{font-size:69.000000px;}
.fs7_c01132{font-size:72.000000px;}
.fs2_c01132{font-size:78.000000px;}
.fs0_c01132{font-size:81.000000px;}
.y0_c01132{bottom:0.000000px;}
.y22_c01132{bottom:3.105000px;}
.y21_c01132{bottom:7.228355px;}
.y20_c01132{bottom:51.285000px;}
.y1f_c01132{bottom:77.985000px;}
.y1e_c01132{bottom:103.635000px;}
.y1d_c01132{bottom:128.835000px;}
.y1c_c01132{bottom:152.535000px;}
.y1b_c01132{bottom:177.435000px;}
.y1a_c01132{bottom:274.635000px;}
.y19_c01132{bottom:299.385000px;}
.y18_c01132{bottom:323.235000px;}
.y17_c01132{bottom:347.835000px;}
.y16_c01132{bottom:370.935000px;}
.y15_c01132{bottom:395.085000px;}
.y14_c01132{bottom:419.385000px;}
.y13_c01132{bottom:445.485000px;}
.y12_c01132{bottom:469.335000px;}
.y11_c01132{bottom:492.735000px;}
.y10_c01132{bottom:515.685000px;}
.yf_c01132{bottom:540.585000px;}
.ye_c01132{bottom:562.935000px;}
.yd_c01132{bottom:587.835000px;}
.yc_c01132{bottom:610.485000px;}
.yb_c01132{bottom:635.085000px;}
.ya_c01132{bottom:661.035000px;}
.y9_c01132{bottom:684.135000px;}
.y8_c01132{bottom:706.335000px;}
.y7_c01132{bottom:732.735000px;}
.y6_c01132{bottom:754.935000px;}
.y5_c01132{bottom:780.885000px;}
.y4_c01132{bottom:804.585000px;}
.y3_c01132{bottom:828.885000px;}
.y2_c01132{bottom:851.535000px;}
.y1_c01132{bottom:876.735000px;}
.h8_c01132{height:13.200074px;}
.h9_c01132{height:43.804688px;}
.h3_c01132{height:57.445312px;}
.h6_c01132{height:66.515625px;}
.h5_c01132{height:72.312000px;}
.h2_c01132{height:79.497070px;}
.h4_c01132{height:83.226000px;}
.h7_c01132{height:84.269531px;}
.h0_c01132{height:980.625000px;}
.h1_c01132{height:981.000000px;}
.w2_c01132{width:104.875500px;}
.w0_c01132{width:667.425000px;}
.w1_c01132{width:667.500000px;}
.x0_c01132{left:0.000000px;}
.xe_c01132{left:31.650000px;}
.xd_c01132{left:33.750000px;}
.xc_c01132{left:35.400000px;}
.xa_c01132{left:37.500000px;}
.xb_c01132{left:39.750000px;}
.x9_c01132{left:42.450000px;}
.x8_c01132{left:43.500000px;}
.x7_c01132{left:44.550000px;}
.x6_c01132{left:46.200000px;}
.x5_c01132{left:47.250000px;}
.x4_c01132{left:48.900000px;}
.x3_c01132{left:49.950000px;}
.x2_c01132{left:51.000000px;}
.x1_c01132{left:52.650000px;}
.x10_c01132{left:285.526749px;}
.xf_c01132{left:400.950000px;}
@media print{
.v0_c01132{vertical-align:0.000000pt;}
.ls5_c01132{letter-spacing:-8.000000pt;}
.ls3_c01132{letter-spacing:0.000000pt;}
.ls0_c01132{letter-spacing:2.666667pt;}
.ls4_c01132{letter-spacing:5.333333pt;}
.ls2_c01132{letter-spacing:16.970667pt;}
.ls1_c01132{letter-spacing:34.266667pt;}
.ws4_c01132{word-spacing:-52.608000pt;}
.ws0_c01132{word-spacing:-18.000000pt;}
.ws3_c01132{word-spacing:-15.333333pt;}
.ws5_c01132{word-spacing:0.000000pt;}
.ws1_c01132{word-spacing:1.994667pt;}
.ws2_c01132{word-spacing:8.981333pt;}
._29_c01132{margin-left:-28.288000pt;}
._17_c01132{margin-left:-18.997333pt;}
._1e_c01132{margin-left:-16.117333pt;}
._25_c01132{margin-left:-13.040000pt;}
._26_c01132{margin-left:-10.858667pt;}
._b_c01132{margin-left:-8.784000pt;}
._5_c01132{margin-left:-7.704000pt;}
._c_c01132{margin-left:-6.768000pt;}
._4_c01132{margin-left:-5.472000pt;}
._3_c01132{margin-left:-3.960000pt;}
._2_c01132{margin-left:-2.664000pt;}
._6_c01132{margin-left:-1.512000pt;}
._0_c01132{width:1.584000pt;}
._a_c01132{width:2.736000pt;}
._7_c01132{width:3.888000pt;}
._d_c01132{width:4.968000pt;}
._9_c01132{width:6.192000pt;}
._8_c01132{width:7.920000pt;}
._27_c01132{width:8.810667pt;}
._f_c01132{width:9.720000pt;}
._12_c01132{width:10.760000pt;}
._1_c01132{width:11.736000pt;}
._e_c01132{width:13.752000pt;}
._11_c01132{width:15.352000pt;}
._13_c01132{width:16.706667pt;}
._1b_c01132{width:17.666667pt;}
._15_c01132{width:19.194667pt;}
._14_c01132{width:21.037333pt;}
._22_c01132{width:22.170667pt;}
._1a_c01132{width:23.074667pt;}
._28_c01132{width:24.005333pt;}
._10_c01132{width:25.344000pt;}
._1c_c01132{width:33.109333pt;}
._1f_c01132{width:38.658667pt;}
._19_c01132{width:56.309333pt;}
._1d_c01132{width:78.557333pt;}
._20_c01132{width:80.544000pt;}
._18_c01132{width:153.032000pt;}
._21_c01132{width:208.581333pt;}
._16_c01132{width:244.309333pt;}
._24_c01132{width:287.776000pt;}
._23_c01132{width:306.776000pt;}
._2a_c01132{width:309.456000pt;}
.fs4_c01132{font-size:24.000000pt;}
.fs3_c01132{font-size:26.666667pt;}
.fs8_c01132{font-size:42.666667pt;}
.fs1_c01132{font-size:50.666667pt;}
.fs6_c01132{font-size:58.666667pt;}
.fs5_c01132{font-size:61.333333pt;}
.fs7_c01132{font-size:64.000000pt;}
.fs2_c01132{font-size:69.333333pt;}
.fs0_c01132{font-size:72.000000pt;}
.y0_c01132{bottom:0.000000pt;}
.y22_c01132{bottom:2.760000pt;}
.y21_c01132{bottom:6.425204pt;}
.y20_c01132{bottom:45.586667pt;}
.y1f_c01132{bottom:69.320000pt;}
.y1e_c01132{bottom:92.120000pt;}
.y1d_c01132{bottom:114.520000pt;}
.y1c_c01132{bottom:135.586667pt;}
.y1b_c01132{bottom:157.720000pt;}
.y1a_c01132{bottom:244.120000pt;}
.y19_c01132{bottom:266.120000pt;}
.y18_c01132{bottom:287.320000pt;}
.y17_c01132{bottom:309.186667pt;}
.y16_c01132{bottom:329.720000pt;}
.y15_c01132{bottom:351.186667pt;}
.y14_c01132{bottom:372.786667pt;}
.y13_c01132{bottom:395.986667pt;}
.y12_c01132{bottom:417.186667pt;}
.y11_c01132{bottom:437.986667pt;}
.y10_c01132{bottom:458.386667pt;}
.yf_c01132{bottom:480.520000pt;}
.ye_c01132{bottom:500.386667pt;}
.yd_c01132{bottom:522.520000pt;}
.yc_c01132{bottom:542.653333pt;}
.yb_c01132{bottom:564.520000pt;}
.ya_c01132{bottom:587.586667pt;}
.y9_c01132{bottom:608.120000pt;}
.y8_c01132{bottom:627.853333pt;}
.y7_c01132{bottom:651.320000pt;}
.y6_c01132{bottom:671.053333pt;}
.y5_c01132{bottom:694.120000pt;}
.y4_c01132{bottom:715.186667pt;}
.y3_c01132{bottom:736.786667pt;}
.y2_c01132{bottom:756.920000pt;}
.y1_c01132{bottom:779.320000pt;}
.h8_c01132{height:11.733399pt;}
.h9_c01132{height:38.937500pt;}
.h3_c01132{height:51.062500pt;}
.h6_c01132{height:59.125000pt;}
.h5_c01132{height:64.277333pt;}
.h2_c01132{height:70.664062pt;}
.h4_c01132{height:73.978667pt;}
.h7_c01132{height:74.906250pt;}
.h0_c01132{height:871.666667pt;}
.h1_c01132{height:872.000000pt;}
.w2_c01132{width:93.222667pt;}
.w0_c01132{width:593.266667pt;}
.w1_c01132{width:593.333333pt;}
.x0_c01132{left:0.000000pt;}
.xe_c01132{left:28.133333pt;}
.xd_c01132{left:30.000000pt;}
.xc_c01132{left:31.466667pt;}
.xa_c01132{left:33.333333pt;}
.xb_c01132{left:35.333333pt;}
.x9_c01132{left:37.733333pt;}
.x8_c01132{left:38.666667pt;}
.x7_c01132{left:39.600000pt;}
.x6_c01132{left:41.066667pt;}
.x5_c01132{left:42.000000pt;}
.x4_c01132{left:43.466667pt;}
.x3_c01132{left:44.400000pt;}
.x2_c01132{left:45.333333pt;}
.x1_c01132{left:46.800000pt;}
.x10_c01132{left:253.801554pt;}
.xf_c01132{left:356.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_c01133 {
    display:none;
  }
  .loading-indicator_c01133.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01133 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01133 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01133" -> "#page-container .classname_c01133")
 */
.pf_c01133 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01133 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01133.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01133 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01133 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01133 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01133 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01133 {overflow:visible;}
  }
}
.c_c01133 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01133 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01133:after { /* webkit #35443 */
  content: '';
}
.t_c01133:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01133 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01133 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01133 { /* info for Javascript */
  display:none;
}
.l_c01133 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01133 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01133 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01133:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01133{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01133;src:url('chunks/assets/font_732df30dcdf9ccfe53fe5873.woff2')format("woff");}.ff1_c01133{font-family:ff1_c01133;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01133;src:url('chunks/assets/font_ee56f5567136d1977958ae7a.woff2')format("woff");}.ff2_c01133{font-family:ff2_c01133;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01133;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff3_c01133{font-family:ff3_c01133;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01133;src:url('chunks/assets/font_c721c3e92424f8aeeb601841.woff2')format("woff");}.ff4_c01133{font-family:ff4_c01133;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01133;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c01133{font-family:ff5_c01133;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01133{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01133{vertical-align:0.000000px;}
.ls0_c01133{letter-spacing:0.000000px;}
.ls1_c01133{letter-spacing:6.000000px;}
.sc__c01133{text-shadow:none;}
.sc0_c01133{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01133{-webkit-text-stroke:0px transparent;}
.sc0_c01133{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01133{word-spacing:-73.686000px;}
.ws3_c01133{word-spacing:-19.500000px;}
.ws1_c01133{word-spacing:-17.352000px;}
.ws6_c01133{word-spacing:0.000000px;}
.ws0_c01133{word-spacing:0.792000px;}
.ws5_c01133{word-spacing:5.253000px;}
.ws4_c01133{word-spacing:20.592000px;}
._c_c01133{margin-left:-18.711000px;}
._21_c01133{margin-left:-16.119000px;}
._19_c01133{margin-left:-13.527000px;}
._d_c01133{margin-left:-12.150000px;}
._18_c01133{margin-left:-10.290000px;}
._b_c01133{margin-left:-8.991000px;}
._17_c01133{margin-left:-7.695000px;}
._15_c01133{margin-left:-6.156000px;}
._8_c01133{margin-left:-4.941000px;}
._a_c01133{margin-left:-2.916000px;}
._9_c01133{margin-left:-1.458000px;}
._0_c01133{width:1.215000px;}
._6_c01133{width:2.754000px;}
._3_c01133{width:3.888000px;}
._5_c01133{width:4.941000px;}
._2_c01133{width:6.318000px;}
._4_c01133{width:7.452000px;}
._7_c01133{width:8.829000px;}
._11_c01133{width:10.125000px;}
._1_c01133{width:11.988000px;}
._20_c01133{width:13.122000px;}
._14_c01133{width:14.175000px;}
._e_c01133{width:15.228000px;}
._16_c01133{width:16.281000px;}
._12_c01133{width:18.468000px;}
._1c_c01133{width:21.678000px;}
._f_c01133{width:27.075000px;}
._1b_c01133{width:32.643000px;}
._1d_c01133{width:35.019000px;}
._13_c01133{width:37.746000px;}
._24_c01133{width:48.750000px;}
._23_c01133{width:64.350000px;}
._22_c01133{width:73.104000px;}
._1e_c01133{width:252.999000px;}
._10_c01133{width:257.337000px;}
._1a_c01133{width:307.962000px;}
._1f_c01133{width:470.853000px;}
.fc2_c01133{color:transparent;}
.fc1_c01133{color:rgb(128,128,128);}
.fc0_c01133{color:rgb(0,0,0);}
.fs5_c01133{font-size:48.000000px;}
.fs4_c01133{font-size:51.000000px;}
.fs1_c01133{font-size:72.000000px;}
.fs3_c01133{font-size:78.000000px;}
.fs0_c01133{font-size:81.000000px;}
.fs2_c01133{font-size:87.000000px;}
.y0_c01133{bottom:0.000000px;}
.y25_c01133{bottom:3.105000px;}
.y24_c01133{bottom:7.228371px;}
.y23_c01133{bottom:64.515000px;}
.y22_c01133{bottom:87.165000px;}
.y21_c01133{bottom:115.065000px;}
.y20_c01133{bottom:137.115000px;}
.y1f_c01133{bottom:162.765000px;}
.y1e_c01133{bottom:186.015000px;}
.y1d_c01133{bottom:210.315000px;}
.y1c_c01133{bottom:235.365000px;}
.y1b_c01133{bottom:259.515000px;}
.y1a_c01133{bottom:284.265000px;}
.y19_c01133{bottom:308.265000px;}
.y18_c01133{bottom:332.865000px;}
.y17_c01133{bottom:358.515000px;}
.y16_c01133{bottom:381.015000px;}
.y15_c01133{bottom:405.015000px;}
.y14_c01133{bottom:430.365000px;}
.y13_c01133{bottom:453.615000px;}
.y12_c01133{bottom:478.215000px;}
.y11_c01133{bottom:502.215000px;}
.y10_c01133{bottom:525.465000px;}
.yf_c01133{bottom:550.215000px;}
.ye_c01133{bottom:574.215000px;}
.yd_c01133{bottom:597.765000px;}
.yc_c01133{bottom:622.365000px;}
.yb_c01133{bottom:645.765000px;}
.ya_c01133{bottom:670.065000px;}
.y9_c01133{bottom:694.665000px;}
.y8_c01133{bottom:718.215000px;}
.y7_c01133{bottom:742.215000px;}
.y6_c01133{bottom:766.815000px;}
.y5_c01133{bottom:790.215000px;}
.y4_c01133{bottom:814.065000px;}
.y3_c01133{bottom:838.665000px;}
.y2_c01133{bottom:862.965000px;}
.y1_c01133{bottom:887.415000px;}
.h7_c01133{height:13.200074px;}
.h8_c01133{height:43.804688px;}
.h6_c01133{height:50.053711px;}
.h2_c01133{height:79.497070px;}
.h3_c01133{height:84.269531px;}
.h4_c01133{height:91.160156px;}
.h5_c01133{height:91.176000px;}
.h1_c01133{height:986.250000px;}
.h0_c01133{height:986.325000px;}
.w2_c01133{width:104.875500px;}
.w0_c01133{width:667.425000px;}
.w1_c01133{width:667.500000px;}
.x0_c01133{left:0.000000px;}
.x2_c01133{left:18.600000px;}
.x6_c01133{left:21.900000px;}
.x7_c01133{left:23.850000px;}
.x8_c01133{left:27.300000px;}
.x3_c01133{left:35.100000px;}
.x1_c01133{left:111.000000px;}
.x4_c01133{left:112.050000px;}
.x5_c01133{left:113.100000px;}
.x9_c01133{left:117.450000px;}
.xb_c01133{left:118.500000px;}
.xc_c01133{left:119.550000px;}
.xd_c01133{left:120.600000px;}
.xa_c01133{left:143.400000px;}
.xf_c01133{left:285.526749px;}
.xe_c01133{left:585.450000px;}
@media print{
.v0_c01133{vertical-align:0.000000pt;}
.ls0_c01133{letter-spacing:0.000000pt;}
.ls1_c01133{letter-spacing:5.333333pt;}
.ws2_c01133{word-spacing:-65.498667pt;}
.ws3_c01133{word-spacing:-17.333333pt;}
.ws1_c01133{word-spacing:-15.424000pt;}
.ws6_c01133{word-spacing:0.000000pt;}
.ws0_c01133{word-spacing:0.704000pt;}
.ws5_c01133{word-spacing:4.669333pt;}
.ws4_c01133{word-spacing:18.304000pt;}
._c_c01133{margin-left:-16.632000pt;}
._21_c01133{margin-left:-14.328000pt;}
._19_c01133{margin-left:-12.024000pt;}
._d_c01133{margin-left:-10.800000pt;}
._18_c01133{margin-left:-9.146667pt;}
._b_c01133{margin-left:-7.992000pt;}
._17_c01133{margin-left:-6.840000pt;}
._15_c01133{margin-left:-5.472000pt;}
._8_c01133{margin-left:-4.392000pt;}
._a_c01133{margin-left:-2.592000pt;}
._9_c01133{margin-left:-1.296000pt;}
._0_c01133{width:1.080000pt;}
._6_c01133{width:2.448000pt;}
._3_c01133{width:3.456000pt;}
._5_c01133{width:4.392000pt;}
._2_c01133{width:5.616000pt;}
._4_c01133{width:6.624000pt;}
._7_c01133{width:7.848000pt;}
._11_c01133{width:9.000000pt;}
._1_c01133{width:10.656000pt;}
._20_c01133{width:11.664000pt;}
._14_c01133{width:12.600000pt;}
._e_c01133{width:13.536000pt;}
._16_c01133{width:14.472000pt;}
._12_c01133{width:16.416000pt;}
._1c_c01133{width:19.269333pt;}
._f_c01133{width:24.066667pt;}
._1b_c01133{width:29.016000pt;}
._1d_c01133{width:31.128000pt;}
._13_c01133{width:33.552000pt;}
._24_c01133{width:43.333333pt;}
._23_c01133{width:57.200000pt;}
._22_c01133{width:64.981333pt;}
._1e_c01133{width:224.888000pt;}
._10_c01133{width:228.744000pt;}
._1a_c01133{width:273.744000pt;}
._1f_c01133{width:418.536000pt;}
.fs5_c01133{font-size:42.666667pt;}
.fs4_c01133{font-size:45.333333pt;}
.fs1_c01133{font-size:64.000000pt;}
.fs3_c01133{font-size:69.333333pt;}
.fs0_c01133{font-size:72.000000pt;}
.fs2_c01133{font-size:77.333333pt;}
.y0_c01133{bottom:0.000000pt;}
.y25_c01133{bottom:2.760000pt;}
.y24_c01133{bottom:6.425219pt;}
.y23_c01133{bottom:57.346667pt;}
.y22_c01133{bottom:77.480000pt;}
.y21_c01133{bottom:102.280000pt;}
.y20_c01133{bottom:121.880000pt;}
.y1f_c01133{bottom:144.680000pt;}
.y1e_c01133{bottom:165.346667pt;}
.y1d_c01133{bottom:186.946667pt;}
.y1c_c01133{bottom:209.213333pt;}
.y1b_c01133{bottom:230.680000pt;}
.y1a_c01133{bottom:252.680000pt;}
.y19_c01133{bottom:274.013333pt;}
.y18_c01133{bottom:295.880000pt;}
.y17_c01133{bottom:318.680000pt;}
.y16_c01133{bottom:338.680000pt;}
.y15_c01133{bottom:360.013333pt;}
.y14_c01133{bottom:382.546667pt;}
.y13_c01133{bottom:403.213333pt;}
.y12_c01133{bottom:425.080000pt;}
.y11_c01133{bottom:446.413333pt;}
.y10_c01133{bottom:467.080000pt;}
.yf_c01133{bottom:489.080000pt;}
.ye_c01133{bottom:510.413333pt;}
.yd_c01133{bottom:531.346667pt;}
.yc_c01133{bottom:553.213333pt;}
.yb_c01133{bottom:574.013333pt;}
.ya_c01133{bottom:595.613333pt;}
.y9_c01133{bottom:617.480000pt;}
.y8_c01133{bottom:638.413333pt;}
.y7_c01133{bottom:659.746667pt;}
.y6_c01133{bottom:681.613333pt;}
.y5_c01133{bottom:702.413333pt;}
.y4_c01133{bottom:723.613333pt;}
.y3_c01133{bottom:745.480000pt;}
.y2_c01133{bottom:767.080000pt;}
.y1_c01133{bottom:788.813333pt;}
.h7_c01133{height:11.733399pt;}
.h8_c01133{height:38.937500pt;}
.h6_c01133{height:44.492188pt;}
.h2_c01133{height:70.664062pt;}
.h3_c01133{height:74.906250pt;}
.h4_c01133{height:81.031250pt;}
.h5_c01133{height:81.045333pt;}
.h1_c01133{height:876.666667pt;}
.h0_c01133{height:876.733333pt;}
.w2_c01133{width:93.222667pt;}
.w0_c01133{width:593.266667pt;}
.w1_c01133{width:593.333333pt;}
.x0_c01133{left:0.000000pt;}
.x2_c01133{left:16.533333pt;}
.x6_c01133{left:19.466667pt;}
.x7_c01133{left:21.200000pt;}
.x8_c01133{left:24.266667pt;}
.x3_c01133{left:31.200000pt;}
.x1_c01133{left:98.666667pt;}
.x4_c01133{left:99.600000pt;}
.x5_c01133{left:100.533333pt;}
.x9_c01133{left:104.400000pt;}
.xb_c01133{left:105.333333pt;}
.xc_c01133{left:106.266667pt;}
.xd_c01133{left:107.200000pt;}
.xa_c01133{left:127.466667pt;}
.xf_c01133{left:253.801554pt;}
.xe_c01133{left:520.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_c01134 {
    display:none;
  }
  .loading-indicator_c01134.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01134 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01134 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01134" -> "#page-container .classname_c01134")
 */
.pf_c01134 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01134 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01134.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01134 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01134 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01134 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01134 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01134 {overflow:visible;}
  }
}
.c_c01134 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01134 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01134:after { /* webkit #35443 */
  content: '';
}
.t_c01134:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01134 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01134 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01134 { /* info for Javascript */
  display:none;
}
.l_c01134 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01134 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01134 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01134:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01134{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01134;src:url('chunks/assets/font_b11a9095b68f76ce5118e4fc.woff2')format("woff");}.ff1_c01134{font-family:ff1_c01134;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01134;src:url('chunks/assets/font_0ac4d01ea135958c3df08acb.woff2')format("woff");}.ff2_c01134{font-family:ff2_c01134;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01134;src:url('chunks/assets/font_839557ac6de1fd2f22e04bed.woff2')format("woff");}.ff3_c01134{font-family:ff3_c01134;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01134;src:url('chunks/assets/font_ed0d58a7aed24aa4e57d7283.woff2')format("woff");}.ff4_c01134{font-family:ff4_c01134;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01134;src:url('chunks/assets/font_57f6bf7997084007c2b8e721.woff2')format("woff");}.ff5_c01134{font-family:ff5_c01134;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01134;src:url('chunks/assets/font_12ff5efe8a59b08a35088a33.woff2')format("woff");}.ff6_c01134{font-family:ff6_c01134;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01134;src:url('chunks/assets/font_123ea9d9bef9bd831f25701d.woff2')format("woff");}.ff7_c01134{font-family:ff7_c01134;line-height:1.437000;font-style:normal;font-weight: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_c01134;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff8_c01134{font-family:ff8_c01134;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01134{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01134{vertical-align:0.000000px;}
.ls5_c01134{letter-spacing:0.000000px;}
.ls0_c01134{letter-spacing:0.600000px;}
.ls7_c01134{letter-spacing:3.000000px;}
.ls6_c01134{letter-spacing:6.000000px;}
.ls3_c01134{letter-spacing:21.816000px;}
.ls4_c01134{letter-spacing:27.600000px;}
.ls1_c01134{letter-spacing:158.202000px;}
.ls2_c01134{letter-spacing:197.586000px;}
.sc__c01134{text-shadow:none;}
.sc0_c01134{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01134{-webkit-text-stroke:0px transparent;}
.sc0_c01134{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01134{word-spacing:-73.686000px;}
.ws0_c01134{word-spacing:-59.184000px;}
.ws1_c01134{word-spacing:-46.854000px;}
.ws4_c01134{word-spacing:-42.984000px;}
.ws3_c01134{word-spacing:-33.630000px;}
.ws5_c01134{word-spacing:-20.250000px;}
.ws6_c01134{word-spacing:0.000000px;}
._1b_c01134{margin-left:-26.550000px;}
._14_c01134{margin-left:-17.142000px;}
._13_c01134{margin-left:-13.482000px;}
._0_c01134{margin-left:-11.064000px;}
._12_c01134{margin-left:-8.019000px;}
._a_c01134{margin-left:-6.723000px;}
._15_c01134{margin-left:-5.700000px;}
._4_c01134{margin-left:-4.050000px;}
._e_c01134{margin-left:-2.916000px;}
._8_c01134{margin-left:-1.701000px;}
._9_c01134{width:1.701000px;}
._6_c01134{width:3.321000px;}
._5_c01134{width:5.346000px;}
._1_c01134{width:7.209000px;}
._7_c01134{width:8.829000px;}
._b_c01134{width:10.692000px;}
._3_c01134{width:11.745000px;}
._2_c01134{width:12.879000px;}
._11_c01134{width:14.499000px;}
._18_c01134{width:15.714000px;}
._1e_c01134{width:17.640000px;}
._1d_c01134{width:19.221000px;}
._f_c01134{width:22.518000px;}
._1c_c01134{width:26.163000px;}
._20_c01134{width:28.593000px;}
._c_c01134{width:30.051000px;}
._10_c01134{width:37.260000px;}
._1f_c01134{width:38.640000px;}
._1a_c01134{width:131.382000px;}
._17_c01134{width:182.130000px;}
._16_c01134{width:183.270000px;}
._d_c01134{width:191.322000px;}
._19_c01134{width:792.204000px;}
.fc2_c01134{color:transparent;}
.fc1_c01134{color:rgb(128,128,128);}
.fc0_c01134{color:rgb(0,0,0);}
.fs8_c01134{font-size:48.000000px;}
.fs3_c01134{font-size:54.000000px;}
.fs4_c01134{font-size:57.000000px;}
.fs6_c01134{font-size:60.000000px;}
.fs1_c01134{font-size:66.000000px;}
.fs0_c01134{font-size:72.000000px;}
.fs5_c01134{font-size:78.000000px;}
.fs2_c01134{font-size:81.000000px;}
.fs7_c01134{font-size:87.000000px;}
.y0_c01134{bottom:0.000000px;}
.y26_c01134{bottom:3.105000px;}
.y25_c01134{bottom:7.228369px;}
.y24_c01134{bottom:51.870000px;}
.y23_c01134{bottom:76.320000px;}
.y22_c01134{bottom:101.520000px;}
.y21_c01134{bottom:125.520000px;}
.y20_c01134{bottom:149.820000px;}
.y1f_c01134{bottom:174.120000px;}
.y1e_c01134{bottom:198.420000px;}
.y1d_c01134{bottom:222.420000px;}
.y1c_c01134{bottom:247.020000px;}
.y1b_c01134{bottom:271.020000px;}
.y1a_c01134{bottom:295.020000px;}
.y19_c01134{bottom:320.220000px;}
.y18_c01134{bottom:343.470000px;}
.y17_c01134{bottom:367.470000px;}
.y16_c01134{bottom:393.120000px;}
.y15_c01134{bottom:415.170000px;}
.y14_c01134{bottom:439.470000px;}
.y13_c01134{bottom:463.020000px;}
.y12_c01134{bottom:487.620000px;}
.y11_c01134{bottom:511.320000px;}
.y10_c01134{bottom:535.170000px;}
.yf_c01134{bottom:560.520000px;}
.ye_c01134{bottom:582.570000px;}
.yd_c01134{bottom:606.120000px;}
.yc_c01134{bottom:632.820000px;}
.yb_c01134{bottom:653.970000px;}
.ya_c01134{bottom:677.970000px;}
.y9_c01134{bottom:701.970000px;}
.y8_c01134{bottom:725.970000px;}
.y7_c01134{bottom:750.570000px;}
.y6_c01134{bottom:775.470000px;}
.y5_c01134{bottom:800.220000px;}
.y1_c01134{bottom:816.120000px;}
.y4_c01134{bottom:823.020000px;}
.y3_c01134{bottom:846.720000px;}
.y2_c01134{bottom:870.420000px;}
.h7_c01134{height:13.200073px;}
.h8_c01134{height:43.804688px;}
.h3_c01134{height:79.497070px;}
.h2_c01134{height:84.269531px;}
.h5_c01134{height:91.160156px;}
.h6_c01134{height:91.176000px;}
.h4_c01134{height:98.756836px;}
.h1_c01134{height:986.250000px;}
.h0_c01134{height:986.550000px;}
.w1_c01134{width:104.875500px;}
.w0_c01134{width:672.000000px;}
.x0_c01134{left:0.000000px;}
.x2_c01134{left:58.050000px;}
.x3_c01134{left:59.700000px;}
.x4_c01134{left:60.750000px;}
.x5_c01134{left:61.800000px;}
.x6_c01134{left:86.400000px;}
.x8_c01134{left:287.814240px;}
.x7_c01134{left:511.950000px;}
.x1_c01134{left:598.050000px;}
@media print{
.v0_c01134{vertical-align:0.000000pt;}
.ls5_c01134{letter-spacing:0.000000pt;}
.ls0_c01134{letter-spacing:0.533333pt;}
.ls7_c01134{letter-spacing:2.666667pt;}
.ls6_c01134{letter-spacing:5.333333pt;}
.ls3_c01134{letter-spacing:19.392000pt;}
.ls4_c01134{letter-spacing:24.533333pt;}
.ls1_c01134{letter-spacing:140.624000pt;}
.ls2_c01134{letter-spacing:175.632000pt;}
.ws2_c01134{word-spacing:-65.498667pt;}
.ws0_c01134{word-spacing:-52.608000pt;}
.ws1_c01134{word-spacing:-41.648000pt;}
.ws4_c01134{word-spacing:-38.208000pt;}
.ws3_c01134{word-spacing:-29.893333pt;}
.ws5_c01134{word-spacing:-18.000000pt;}
.ws6_c01134{word-spacing:0.000000pt;}
._1b_c01134{margin-left:-23.600000pt;}
._14_c01134{margin-left:-15.237333pt;}
._13_c01134{margin-left:-11.984000pt;}
._0_c01134{margin-left:-9.834667pt;}
._12_c01134{margin-left:-7.128000pt;}
._a_c01134{margin-left:-5.976000pt;}
._15_c01134{margin-left:-5.066667pt;}
._4_c01134{margin-left:-3.600000pt;}
._e_c01134{margin-left:-2.592000pt;}
._8_c01134{margin-left:-1.512000pt;}
._9_c01134{width:1.512000pt;}
._6_c01134{width:2.952000pt;}
._5_c01134{width:4.752000pt;}
._1_c01134{width:6.408000pt;}
._7_c01134{width:7.848000pt;}
._b_c01134{width:9.504000pt;}
._3_c01134{width:10.440000pt;}
._2_c01134{width:11.448000pt;}
._11_c01134{width:12.888000pt;}
._18_c01134{width:13.968000pt;}
._1e_c01134{width:15.680000pt;}
._1d_c01134{width:17.085333pt;}
._f_c01134{width:20.016000pt;}
._1c_c01134{width:23.256000pt;}
._20_c01134{width:25.416000pt;}
._c_c01134{width:26.712000pt;}
._10_c01134{width:33.120000pt;}
._1f_c01134{width:34.346667pt;}
._1a_c01134{width:116.784000pt;}
._17_c01134{width:161.893333pt;}
._16_c01134{width:162.906667pt;}
._d_c01134{width:170.064000pt;}
._19_c01134{width:704.181333pt;}
.fs8_c01134{font-size:42.666667pt;}
.fs3_c01134{font-size:48.000000pt;}
.fs4_c01134{font-size:50.666667pt;}
.fs6_c01134{font-size:53.333333pt;}
.fs1_c01134{font-size:58.666667pt;}
.fs0_c01134{font-size:64.000000pt;}
.fs5_c01134{font-size:69.333333pt;}
.fs2_c01134{font-size:72.000000pt;}
.fs7_c01134{font-size:77.333333pt;}
.y0_c01134{bottom:0.000000pt;}
.y26_c01134{bottom:2.760000pt;}
.y25_c01134{bottom:6.425217pt;}
.y24_c01134{bottom:46.106667pt;}
.y23_c01134{bottom:67.840000pt;}
.y22_c01134{bottom:90.240000pt;}
.y21_c01134{bottom:111.573333pt;}
.y20_c01134{bottom:133.173333pt;}
.y1f_c01134{bottom:154.773333pt;}
.y1e_c01134{bottom:176.373333pt;}
.y1d_c01134{bottom:197.706667pt;}
.y1c_c01134{bottom:219.573333pt;}
.y1b_c01134{bottom:240.906667pt;}
.y1a_c01134{bottom:262.240000pt;}
.y19_c01134{bottom:284.640000pt;}
.y18_c01134{bottom:305.306667pt;}
.y17_c01134{bottom:326.640000pt;}
.y16_c01134{bottom:349.440000pt;}
.y15_c01134{bottom:369.040000pt;}
.y14_c01134{bottom:390.640000pt;}
.y13_c01134{bottom:411.573333pt;}
.y12_c01134{bottom:433.440000pt;}
.y11_c01134{bottom:454.506667pt;}
.y10_c01134{bottom:475.706667pt;}
.yf_c01134{bottom:498.240000pt;}
.ye_c01134{bottom:517.840000pt;}
.yd_c01134{bottom:538.773333pt;}
.yc_c01134{bottom:562.506667pt;}
.yb_c01134{bottom:581.306667pt;}
.ya_c01134{bottom:602.640000pt;}
.y9_c01134{bottom:623.973333pt;}
.y8_c01134{bottom:645.306667pt;}
.y7_c01134{bottom:667.173333pt;}
.y6_c01134{bottom:689.306667pt;}
.y5_c01134{bottom:711.306667pt;}
.y1_c01134{bottom:725.440000pt;}
.y4_c01134{bottom:731.573333pt;}
.y3_c01134{bottom:752.640000pt;}
.y2_c01134{bottom:773.706667pt;}
.h7_c01134{height:11.733399pt;}
.h8_c01134{height:38.937500pt;}
.h3_c01134{height:70.664062pt;}
.h2_c01134{height:74.906250pt;}
.h5_c01134{height:81.031250pt;}
.h6_c01134{height:81.045333pt;}
.h4_c01134{height:87.783854pt;}
.h1_c01134{height:876.666667pt;}
.h0_c01134{height:876.933333pt;}
.w1_c01134{width:93.222667pt;}
.w0_c01134{width:597.333333pt;}
.x0_c01134{left:0.000000pt;}
.x2_c01134{left:51.600000pt;}
.x3_c01134{left:53.066667pt;}
.x4_c01134{left:54.000000pt;}
.x5_c01134{left:54.933333pt;}
.x6_c01134{left:76.800000pt;}
.x8_c01134{left:255.834880pt;}
.x7_c01134{left:455.066667pt;}
.x1_c01134{left:531.600000pt;}
}





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

.ir_c01135:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01135{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01135;src:url('chunks/assets/font_abe8c30872fea3f4bf4d385c.woff2')format("woff");}.ff1_c01135{font-family:ff1_c01135;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01135;src:url('chunks/assets/font_da2c2068d92ad7ee0d7fdb25.woff2')format("woff");}.ff2_c01135{font-family:ff2_c01135;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01135;src:url('chunks/assets/font_7fb4fca8a6553bb859a6d53c.woff2')format("woff");}.ff3_c01135{font-family:ff3_c01135;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01135;src:url('chunks/assets/font_22b97b4ceaec45fb1ac7a757.woff2')format("woff");}.ff4_c01135{font-family:ff4_c01135;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01135;src:url('chunks/assets/font_82ee5bb18e757ec64d31177e.woff2')format("woff");}.ff5_c01135{font-family:ff5_c01135;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01135;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c01135{font-family:ff6_c01135;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01135{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01135{vertical-align:0.000000px;}
.ls1_c01135{letter-spacing:0.000000px;}
.ls2_c01135{letter-spacing:6.000000px;}
.ls0_c01135{letter-spacing:23.712000px;}
.sc__c01135{text-shadow:none;}
.sc0_c01135{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01135{-webkit-text-stroke:0px transparent;}
.sc0_c01135{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01135{word-spacing:-73.686000px;}
.ws2_c01135{word-spacing:-48.372000px;}
.ws0_c01135{word-spacing:-17.352000px;}
.ws3_c01135{word-spacing:0.000000px;}
._0_c01135{margin-left:-47.256000px;}
._30_c01135{margin-left:-37.260000px;}
._15_c01135{margin-left:-23.895000px;}
._1d_c01135{margin-left:-21.546000px;}
._11_c01135{margin-left:-16.686000px;}
._5_c01135{margin-left:-12.771000px;}
._1c_c01135{margin-left:-10.611000px;}
._29_c01135{margin-left:-9.396000px;}
._21_c01135{margin-left:-8.181000px;}
._6_c01135{margin-left:-6.336000px;}
._10_c01135{margin-left:-5.202000px;}
._1a_c01135{margin-left:-4.185000px;}
._b_c01135{margin-left:-2.871000px;}
._c_c01135{margin-left:-1.386000px;}
._2_c01135{width:1.980000px;}
._4_c01135{width:3.267000px;}
._f_c01135{width:4.419000px;}
._d_c01135{width:5.427000px;}
._9_c01135{width:6.633000px;}
._8_c01135{width:8.217000px;}
._2d_c01135{width:9.243000px;}
._e_c01135{width:10.278000px;}
._1_c01135{width:11.340000px;}
._a_c01135{width:12.870000px;}
._25_c01135{width:13.959000px;}
._7_c01135{width:15.147000px;}
._18_c01135{width:16.245000px;}
._13_c01135{width:18.153000px;}
._1f_c01135{width:22.527000px;}
._1b_c01135{width:23.832000px;}
._12_c01135{width:25.110000px;}
._23_c01135{width:27.522000px;}
._20_c01135{width:28.755000px;}
._22_c01135{width:32.796000px;}
._1e_c01135{width:45.180000px;}
._19_c01135{width:57.465000px;}
._2b_c01135{width:61.965000px;}
._2f_c01135{width:103.563000px;}
._28_c01135{width:107.541000px;}
._26_c01135{width:109.917000px;}
._3_c01135{width:127.908000px;}
._14_c01135{width:140.391000px;}
._16_c01135{width:168.723000px;}
._17_c01135{width:172.287000px;}
._31_c01135{width:192.186000px;}
._2e_c01135{width:205.722000px;}
._2c_c01135{width:214.326000px;}
._27_c01135{width:220.779000px;}
._24_c01135{width:231.432000px;}
._2a_c01135{width:262.170000px;}
.fc2_c01135{color:transparent;}
.fc1_c01135{color:rgb(128,128,128);}
.fc0_c01135{color:rgb(0,0,0);}
.fs5_c01135{font-size:48.000000px;}
.fs3_c01135{font-size:72.000000px;}
.fs2_c01135{font-size:81.000000px;}
.fs4_c01135{font-size:87.000000px;}
.fs1_c01135{font-size:99.000000px;}
.fs0_c01135{font-size:132.000000px;}
.y0_c01135{bottom:0.000000px;}
.y25_c01135{bottom:3.105000px;}
.y24_c01135{bottom:7.228355px;}
.y23_c01135{bottom:49.635000px;}
.y22_c01135{bottom:73.935000px;}
.y21_c01135{bottom:99.435000px;}
.y20_c01135{bottom:124.185000px;}
.y1f_c01135{bottom:172.485000px;}
.y1e_c01135{bottom:196.035000px;}
.y1d_c01135{bottom:220.335000px;}
.y1c_c01135{bottom:245.385000px;}
.y1b_c01135{bottom:269.685000px;}
.y1a_c01135{bottom:293.985000px;}
.y19_c01135{bottom:318.585000px;}
.y18_c01135{bottom:343.185000px;}
.y17_c01135{bottom:367.485000px;}
.y16_c01135{bottom:391.185000px;}
.y15_c01135{bottom:416.685000px;}
.y14_c01135{bottom:440.085000px;}
.y13_c01135{bottom:464.085000px;}
.y12_c01135{bottom:487.935000px;}
.y11_c01135{bottom:511.935000px;}
.y10_c01135{bottom:535.935000px;}
.yf_c01135{bottom:559.785000px;}
.ye_c01135{bottom:584.085000px;}
.yd_c01135{bottom:608.385000px;}
.yc_c01135{bottom:632.385000px;}
.yb_c01135{bottom:656.685000px;}
.ya_c01135{bottom:680.685000px;}
.y9_c01135{bottom:704.685000px;}
.y8_c01135{bottom:728.985000px;}
.y7_c01135{bottom:752.835000px;}
.y6_c01135{bottom:776.535000px;}
.y5_c01135{bottom:800.535000px;}
.y4_c01135{bottom:824.385000px;}
.y3_c01135{bottom:848.835000px;}
.y2_c01135{bottom:872.985000px;}
.y1_c01135{bottom:908.085000px;}
.h8_c01135{height:13.200074px;}
.h9_c01135{height:43.804688px;}
.h3_c01135{height:79.497070px;}
.h6_c01135{height:84.269531px;}
.h7_c01135{height:87.679688px;}
.h4_c01135{height:91.160156px;}
.h5_c01135{height:91.176000px;}
.h2_c01135{height:167.126953px;}
.h1_c01135{height:975.000000px;}
.h0_c01135{height:975.225000px;}
.w2_c01135{width:104.875500px;}
.w0_c01135{width:659.850000px;}
.w1_c01135{width:660.000000px;}
.x0_c01135{left:0.000000px;}
.x5_c01135{left:32.100000px;}
.xe_c01135{left:39.150000px;}
.xf_c01135{left:64.500000px;}
.x10_c01135{left:68.550000px;}
.x6_c01135{left:80.550000px;}
.xd_c01135{left:93.750000px;}
.x7_c01135{left:108.300000px;}
.x3_c01135{left:116.700000px;}
.x4_c01135{left:117.750000px;}
.x1_c01135{left:119.400000px;}
.x11_c01135{left:121.800000px;}
.xb_c01135{left:123.150000px;}
.x9_c01135{left:126.450000px;}
.xa_c01135{left:127.500000px;}
.x8_c01135{left:128.550000px;}
.xc_c01135{left:130.500000px;}
.x2_c01135{left:131.550000px;}
.x12_c01135{left:185.250000px;}
.x14_c01135{left:281.739258px;}
.x13_c01135{left:597.600000px;}
@media print{
.v0_c01135{vertical-align:0.000000pt;}
.ls1_c01135{letter-spacing:0.000000pt;}
.ls2_c01135{letter-spacing:5.333333pt;}
.ls0_c01135{letter-spacing:21.077333pt;}
.ws1_c01135{word-spacing:-65.498667pt;}
.ws2_c01135{word-spacing:-42.997333pt;}
.ws0_c01135{word-spacing:-15.424000pt;}
.ws3_c01135{word-spacing:0.000000pt;}
._0_c01135{margin-left:-42.005333pt;}
._30_c01135{margin-left:-33.120000pt;}
._15_c01135{margin-left:-21.240000pt;}
._1d_c01135{margin-left:-19.152000pt;}
._11_c01135{margin-left:-14.832000pt;}
._5_c01135{margin-left:-11.352000pt;}
._1c_c01135{margin-left:-9.432000pt;}
._29_c01135{margin-left:-8.352000pt;}
._21_c01135{margin-left:-7.272000pt;}
._6_c01135{margin-left:-5.632000pt;}
._10_c01135{margin-left:-4.624000pt;}
._1a_c01135{margin-left:-3.720000pt;}
._b_c01135{margin-left:-2.552000pt;}
._c_c01135{margin-left:-1.232000pt;}
._2_c01135{width:1.760000pt;}
._4_c01135{width:2.904000pt;}
._f_c01135{width:3.928000pt;}
._d_c01135{width:4.824000pt;}
._9_c01135{width:5.896000pt;}
._8_c01135{width:7.304000pt;}
._2d_c01135{width:8.216000pt;}
._e_c01135{width:9.136000pt;}
._1_c01135{width:10.080000pt;}
._a_c01135{width:11.440000pt;}
._25_c01135{width:12.408000pt;}
._7_c01135{width:13.464000pt;}
._18_c01135{width:14.440000pt;}
._13_c01135{width:16.136000pt;}
._1f_c01135{width:20.024000pt;}
._1b_c01135{width:21.184000pt;}
._12_c01135{width:22.320000pt;}
._23_c01135{width:24.464000pt;}
._20_c01135{width:25.560000pt;}
._22_c01135{width:29.152000pt;}
._1e_c01135{width:40.160000pt;}
._19_c01135{width:51.080000pt;}
._2b_c01135{width:55.080000pt;}
._2f_c01135{width:92.056000pt;}
._28_c01135{width:95.592000pt;}
._26_c01135{width:97.704000pt;}
._3_c01135{width:113.696000pt;}
._14_c01135{width:124.792000pt;}
._16_c01135{width:149.976000pt;}
._17_c01135{width:153.144000pt;}
._31_c01135{width:170.832000pt;}
._2e_c01135{width:182.864000pt;}
._2c_c01135{width:190.512000pt;}
._27_c01135{width:196.248000pt;}
._24_c01135{width:205.717333pt;}
._2a_c01135{width:233.040000pt;}
.fs5_c01135{font-size:42.666667pt;}
.fs3_c01135{font-size:64.000000pt;}
.fs2_c01135{font-size:72.000000pt;}
.fs4_c01135{font-size:77.333333pt;}
.fs1_c01135{font-size:88.000000pt;}
.fs0_c01135{font-size:117.333333pt;}
.y0_c01135{bottom:0.000000pt;}
.y25_c01135{bottom:2.760000pt;}
.y24_c01135{bottom:6.425204pt;}
.y23_c01135{bottom:44.120000pt;}
.y22_c01135{bottom:65.720000pt;}
.y21_c01135{bottom:88.386667pt;}
.y20_c01135{bottom:110.386667pt;}
.y1f_c01135{bottom:153.320000pt;}
.y1e_c01135{bottom:174.253333pt;}
.y1d_c01135{bottom:195.853333pt;}
.y1c_c01135{bottom:218.120000pt;}
.y1b_c01135{bottom:239.720000pt;}
.y1a_c01135{bottom:261.320000pt;}
.y19_c01135{bottom:283.186667pt;}
.y18_c01135{bottom:305.053333pt;}
.y17_c01135{bottom:326.653333pt;}
.y16_c01135{bottom:347.720000pt;}
.y15_c01135{bottom:370.386667pt;}
.y14_c01135{bottom:391.186667pt;}
.y13_c01135{bottom:412.520000pt;}
.y12_c01135{bottom:433.720000pt;}
.y11_c01135{bottom:455.053333pt;}
.y10_c01135{bottom:476.386667pt;}
.yf_c01135{bottom:497.586667pt;}
.ye_c01135{bottom:519.186667pt;}
.yd_c01135{bottom:540.786667pt;}
.yc_c01135{bottom:562.120000pt;}
.yb_c01135{bottom:583.720000pt;}
.ya_c01135{bottom:605.053333pt;}
.y9_c01135{bottom:626.386667pt;}
.y8_c01135{bottom:647.986667pt;}
.y7_c01135{bottom:669.186667pt;}
.y6_c01135{bottom:690.253333pt;}
.y5_c01135{bottom:711.586667pt;}
.y4_c01135{bottom:732.786667pt;}
.y3_c01135{bottom:754.520000pt;}
.y2_c01135{bottom:775.986667pt;}
.y1_c01135{bottom:807.186667pt;}
.h8_c01135{height:11.733399pt;}
.h9_c01135{height:38.937500pt;}
.h3_c01135{height:70.664062pt;}
.h6_c01135{height:74.906250pt;}
.h7_c01135{height:77.937500pt;}
.h4_c01135{height:81.031250pt;}
.h5_c01135{height:81.045333pt;}
.h2_c01135{height:148.557292pt;}
.h1_c01135{height:866.666667pt;}
.h0_c01135{height:866.866667pt;}
.w2_c01135{width:93.222667pt;}
.w0_c01135{width:586.533333pt;}
.w1_c01135{width:586.666667pt;}
.x0_c01135{left:0.000000pt;}
.x5_c01135{left:28.533333pt;}
.xe_c01135{left:34.800000pt;}
.xf_c01135{left:57.333333pt;}
.x10_c01135{left:60.933333pt;}
.x6_c01135{left:71.600000pt;}
.xd_c01135{left:83.333333pt;}
.x7_c01135{left:96.266667pt;}
.x3_c01135{left:103.733333pt;}
.x4_c01135{left:104.666667pt;}
.x1_c01135{left:106.133333pt;}
.x11_c01135{left:108.266667pt;}
.xb_c01135{left:109.466667pt;}
.x9_c01135{left:112.400000pt;}
.xa_c01135{left:113.333333pt;}
.x8_c01135{left:114.266667pt;}
.xc_c01135{left:116.000000pt;}
.x2_c01135{left:116.933333pt;}
.x12_c01135{left:164.666667pt;}
.x14_c01135{left:250.434896pt;}
.x13_c01135{left:531.200000pt;}
}





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

.ir_c01136:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01136{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01136;src:url('chunks/assets/font_10771940f5cf768ec56d2a2f.woff2')format("woff");}.ff1_c01136{font-family:ff1_c01136;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01136;src:url('chunks/assets/font_b3f8742d03edd27949a4bc55.woff2')format("woff");}.ff2_c01136{font-family:ff2_c01136;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01136;src:url('chunks/assets/font_9e5cce49da76d03cdc538526.woff2')format("woff");}.ff3_c01136{font-family:ff3_c01136;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01136;src:url('chunks/assets/font_ed64c1c9fd6b60d012e5c8ad.woff2')format("woff");}.ff4_c01136{font-family:ff4_c01136;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01136;src:url('chunks/assets/font_c3ce2f040f959b586f655875.woff2')format("woff");}.ff5_c01136{font-family:ff5_c01136;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01136;src:url('chunks/assets/font_7574e1ca1aeb2cf9f0ecfd51.woff2')format("woff");}.ff6_c01136{font-family:ff6_c01136;line-height:1.437000;font-style:normal;font-weight: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_c01136;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c01136{font-family:ff7_c01136;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01136{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01136{vertical-align:0.000000px;}
.ls4_c01136{letter-spacing:-6.000000px;}
.ls1_c01136{letter-spacing:0.000000px;}
.ls2_c01136{letter-spacing:3.000000px;}
.ls3_c01136{letter-spacing:6.000000px;}
.ls0_c01136{letter-spacing:14.700000px;}
.sc__c01136{text-shadow:none;}
.sc0_c01136{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01136{-webkit-text-stroke:0px transparent;}
.sc0_c01136{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01136{word-spacing:-73.686000px;}
.ws3_c01136{word-spacing:-20.250000px;}
.ws2_c01136{word-spacing:-18.798000px;}
.ws0_c01136{word-spacing:-18.000000px;}
.ws4_c01136{word-spacing:0.000000px;}
._0_c01136{margin-left:-18.549000px;}
._c_c01136{margin-left:-15.000000px;}
._d_c01136{margin-left:-12.600000px;}
._17_c01136{margin-left:-10.449000px;}
._14_c01136{margin-left:-9.234000px;}
._10_c01136{margin-left:-7.776000px;}
._16_c01136{margin-left:-6.723000px;}
._e_c01136{margin-left:-5.511000px;}
._3_c01136{margin-left:-3.564000px;}
._7_c01136{margin-left:-1.620000px;}
._4_c01136{width:1.134000px;}
._2_c01136{width:2.349000px;}
._1_c01136{width:3.564000px;}
._9_c01136{width:4.860000px;}
._5_c01136{width:6.075000px;}
._8_c01136{width:7.290000px;}
._13_c01136{width:9.153000px;}
._6_c01136{width:10.854000px;}
._f_c01136{width:11.907000px;}
._a_c01136{width:13.470000px;}
._b_c01136{width:15.498000px;}
._18_c01136{width:16.902000px;}
._11_c01136{width:18.225000px;}
._19_c01136{width:20.949000px;}
._1a_c01136{width:23.085000px;}
._12_c01136{width:25.839000px;}
._15_c01136{width:49.329000px;}
._1c_c01136{width:57.351000px;}
._1d_c01136{width:147.870000px;}
._1b_c01136{width:251.901000px;}
.fc2_c01136{color:transparent;}
.fc1_c01136{color:rgb(128,128,128);}
.fc0_c01136{color:rgb(0,0,0);}
.fs8_c01136{font-size:48.000000px;}
.fs3_c01136{font-size:51.000000px;}
.fs1_c01136{font-size:54.000000px;}
.fs2_c01136{font-size:60.000000px;}
.fs4_c01136{font-size:72.000000px;}
.fs5_c01136{font-size:78.000000px;}
.fs0_c01136{font-size:81.000000px;}
.fs7_c01136{font-size:87.000000px;}
.fs6_c01136{font-size:105.000000px;}
.y0_c01136{bottom:0.000000px;}
.y25_c01136{bottom:3.105000px;}
.y24_c01136{bottom:7.228369px;}
.y23_c01136{bottom:62.370000px;}
.y22_c01136{bottom:83.970000px;}
.y21_c01136{bottom:108.720000px;}
.y20_c01136{bottom:133.320000px;}
.y1f_c01136{bottom:157.620000px;}
.y1e_c01136{bottom:181.620000px;}
.y1d_c01136{bottom:205.920000px;}
.y1c_c01136{bottom:231.420000px;}
.y1b_c01136{bottom:254.520000px;}
.y1a_c01136{bottom:278.670000px;}
.y19_c01136{bottom:303.120000px;}
.y18_c01136{bottom:326.970000px;}
.y17_c01136{bottom:350.970000px;}
.y16_c01136{bottom:375.570000px;}
.y15_c01136{bottom:399.870000px;}
.y14_c01136{bottom:424.470000px;}
.y13_c01136{bottom:447.570000px;}
.y12_c01136{bottom:471.870000px;}
.y11_c01136{bottom:494.820000px;}
.y10_c01136{bottom:519.720000px;}
.yf_c01136{bottom:544.020000px;}
.ye_c01136{bottom:567.720000px;}
.yd_c01136{bottom:591.870000px;}
.yc_c01136{bottom:614.970000px;}
.yb_c01136{bottom:638.820000px;}
.ya_c01136{bottom:664.770000px;}
.y9_c01136{bottom:686.370000px;}
.y8_c01136{bottom:710.820000px;}
.y7_c01136{bottom:734.970000px;}
.y6_c01136{bottom:760.770000px;}
.y5_c01136{bottom:783.270000px;}
.y4_c01136{bottom:807.870000px;}
.y3_c01136{bottom:831.870000px;}
.y2_c01136{bottom:856.170000px;}
.y1_c01136{bottom:879.570000px;}
.h6_c01136{height:13.200073px;}
.h7_c01136{height:43.804688px;}
.h2_c01136{height:79.497070px;}
.h3_c01136{height:84.269531px;}
.h4_c01136{height:98.756836px;}
.h5_c01136{height:112.035000px;}
.h1_c01136{height:986.250000px;}
.h0_c01136{height:986.550000px;}
.w1_c01136{width:104.875500px;}
.w0_c01136{width:672.000000px;}
.x0_c01136{left:0.000000px;}
.x5_c01136{left:43.500000px;}
.x1_c01136{left:47.550000px;}
.x3_c01136{left:49.200000px;}
.x8_c01136{left:51.300000px;}
.x4_c01136{left:52.350000px;}
.x7_c01136{left:53.700000px;}
.x2_c01136{left:54.750000px;}
.x6_c01136{left:65.250000px;}
.xa_c01136{left:287.814240px;}
.x9_c01136{left:503.550000px;}
@media print{
.v0_c01136{vertical-align:0.000000pt;}
.ls4_c01136{letter-spacing:-5.333333pt;}
.ls1_c01136{letter-spacing:0.000000pt;}
.ls2_c01136{letter-spacing:2.666667pt;}
.ls3_c01136{letter-spacing:5.333333pt;}
.ls0_c01136{letter-spacing:13.066667pt;}
.ws1_c01136{word-spacing:-65.498667pt;}
.ws3_c01136{word-spacing:-18.000000pt;}
.ws2_c01136{word-spacing:-16.709333pt;}
.ws0_c01136{word-spacing:-16.000000pt;}
.ws4_c01136{word-spacing:0.000000pt;}
._0_c01136{margin-left:-16.488000pt;}
._c_c01136{margin-left:-13.333333pt;}
._d_c01136{margin-left:-11.200000pt;}
._17_c01136{margin-left:-9.288000pt;}
._14_c01136{margin-left:-8.208000pt;}
._10_c01136{margin-left:-6.912000pt;}
._16_c01136{margin-left:-5.976000pt;}
._e_c01136{margin-left:-4.898667pt;}
._3_c01136{margin-left:-3.168000pt;}
._7_c01136{margin-left:-1.440000pt;}
._4_c01136{width:1.008000pt;}
._2_c01136{width:2.088000pt;}
._1_c01136{width:3.168000pt;}
._9_c01136{width:4.320000pt;}
._5_c01136{width:5.400000pt;}
._8_c01136{width:6.480000pt;}
._13_c01136{width:8.136000pt;}
._6_c01136{width:9.648000pt;}
._f_c01136{width:10.584000pt;}
._a_c01136{width:11.973333pt;}
._b_c01136{width:13.776000pt;}
._18_c01136{width:15.024000pt;}
._11_c01136{width:16.200000pt;}
._19_c01136{width:18.621333pt;}
._1a_c01136{width:20.520000pt;}
._12_c01136{width:22.968000pt;}
._15_c01136{width:43.848000pt;}
._1c_c01136{width:50.978667pt;}
._1d_c01136{width:131.440000pt;}
._1b_c01136{width:223.912000pt;}
.fs8_c01136{font-size:42.666667pt;}
.fs3_c01136{font-size:45.333333pt;}
.fs1_c01136{font-size:48.000000pt;}
.fs2_c01136{font-size:53.333333pt;}
.fs4_c01136{font-size:64.000000pt;}
.fs5_c01136{font-size:69.333333pt;}
.fs0_c01136{font-size:72.000000pt;}
.fs7_c01136{font-size:77.333333pt;}
.fs6_c01136{font-size:93.333333pt;}
.y0_c01136{bottom:0.000000pt;}
.y25_c01136{bottom:2.760000pt;}
.y24_c01136{bottom:6.425217pt;}
.y23_c01136{bottom:55.440000pt;}
.y22_c01136{bottom:74.640000pt;}
.y21_c01136{bottom:96.640000pt;}
.y20_c01136{bottom:118.506667pt;}
.y1f_c01136{bottom:140.106667pt;}
.y1e_c01136{bottom:161.440000pt;}
.y1d_c01136{bottom:183.040000pt;}
.y1c_c01136{bottom:205.706667pt;}
.y1b_c01136{bottom:226.240000pt;}
.y1a_c01136{bottom:247.706667pt;}
.y19_c01136{bottom:269.440000pt;}
.y18_c01136{bottom:290.640000pt;}
.y17_c01136{bottom:311.973333pt;}
.y16_c01136{bottom:333.840000pt;}
.y15_c01136{bottom:355.440000pt;}
.y14_c01136{bottom:377.306667pt;}
.y13_c01136{bottom:397.840000pt;}
.y12_c01136{bottom:419.440000pt;}
.y11_c01136{bottom:439.840000pt;}
.y10_c01136{bottom:461.973333pt;}
.yf_c01136{bottom:483.573333pt;}
.ye_c01136{bottom:504.640000pt;}
.yd_c01136{bottom:526.106667pt;}
.yc_c01136{bottom:546.640000pt;}
.yb_c01136{bottom:567.840000pt;}
.ya_c01136{bottom:590.906667pt;}
.y9_c01136{bottom:610.106667pt;}
.y8_c01136{bottom:631.840000pt;}
.y7_c01136{bottom:653.306667pt;}
.y6_c01136{bottom:676.240000pt;}
.y5_c01136{bottom:696.240000pt;}
.y4_c01136{bottom:718.106667pt;}
.y3_c01136{bottom:739.440000pt;}
.y2_c01136{bottom:761.040000pt;}
.y1_c01136{bottom:781.840000pt;}
.h6_c01136{height:11.733399pt;}
.h7_c01136{height:38.937500pt;}
.h2_c01136{height:70.664062pt;}
.h3_c01136{height:74.906250pt;}
.h4_c01136{height:87.783854pt;}
.h5_c01136{height:99.586667pt;}
.h1_c01136{height:876.666667pt;}
.h0_c01136{height:876.933333pt;}
.w1_c01136{width:93.222667pt;}
.w0_c01136{width:597.333333pt;}
.x0_c01136{left:0.000000pt;}
.x5_c01136{left:38.666667pt;}
.x1_c01136{left:42.266667pt;}
.x3_c01136{left:43.733333pt;}
.x8_c01136{left:45.600000pt;}
.x4_c01136{left:46.533333pt;}
.x7_c01136{left:47.733333pt;}
.x2_c01136{left:48.666667pt;}
.x6_c01136{left:58.000000pt;}
.xa_c01136{left:255.834880pt;}
.x9_c01136{left:447.600000pt;}
}





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

.ir_c01137:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01137{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01137;src:url('chunks/assets/font_d5b98077a29f1c726b69b250.woff2')format("woff");}.ff1_c01137{font-family:ff1_c01137;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01137;src:url('chunks/assets/font_e35314e551c9a3958f656aa3.woff2')format("woff");}.ff2_c01137{font-family:ff2_c01137;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01137;src:url('chunks/assets/font_0391a3d52dbe8d86bdb4ed63.woff2')format("woff");}.ff3_c01137{font-family:ff3_c01137;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01137;src:url('chunks/assets/font_67cc6a30c67151d0e48875cd.woff2')format("woff");}.ff4_c01137{font-family:ff4_c01137;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01137;src:url('chunks/assets/font_f16dc6106747fddd8db6c714.woff2')format("woff");}.ff5_c01137{font-family:ff5_c01137;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01137;src:url('chunks/assets/font_cec74b4f022a373a596e1215.woff2')format("woff");}.ff6_c01137{font-family:ff6_c01137;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01137;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c01137{font-family:ff7_c01137;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01137{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01137{vertical-align:0.000000px;}
.ls2_c01137{letter-spacing:0.000000px;}
.ls0_c01137{letter-spacing:2.100000px;}
.ls1_c01137{letter-spacing:23.136000px;}
.sc__c01137{text-shadow:none;}
.sc0_c01137{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01137{-webkit-text-stroke:0px transparent;}
.sc0_c01137{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c01137{word-spacing:-23.832000px;}
.ws4_c01137{word-spacing:-19.065600px;}
.ws0_c01137{word-spacing:-18.000000px;}
.ws2_c01137{word-spacing:-17.352000px;}
.ws1_c01137{word-spacing:-13.737000px;}
.ws6_c01137{word-spacing:0.000000px;}
.ws5_c01137{word-spacing:5.184000px;}
._b_c01137{margin-left:-18.513000px;}
._11_c01137{margin-left:-15.228000px;}
._12_c01137{margin-left:-12.636000px;}
._18_c01137{margin-left:-10.341000px;}
._1a_c01137{margin-left:-8.928000px;}
._9_c01137{margin-left:-6.831000px;}
._5_c01137{margin-left:-5.544000px;}
._14_c01137{margin-left:-4.482000px;}
._8_c01137{margin-left:-3.366000px;}
._4_c01137{margin-left:-1.881000px;}
._6_c01137{width:1.584000px;}
._3_c01137{width:2.673000px;}
._a_c01137{width:4.059000px;}
._7_c01137{width:5.148000px;}
._c_c01137{width:6.570000px;}
._13_c01137{width:7.719000px;}
._10_c01137{width:8.811000px;}
._e_c01137{width:9.981000px;}
._1_c01137{width:11.187000px;}
._15_c01137{width:13.194000px;}
._0_c01137{width:14.454000px;}
._d_c01137{width:15.867000px;}
._19_c01137{width:17.463000px;}
._17_c01137{width:18.513000px;}
._16_c01137{width:21.375000px;}
._24_c01137{width:24.753000px;}
._1e_c01137{width:25.947000px;}
._1f_c01137{width:28.519200px;}
._f_c01137{width:29.799000px;}
._1d_c01137{width:31.401000px;}
._1b_c01137{width:33.951000px;}
._23_c01137{width:35.337000px;}
._2_c01137{width:73.656000px;}
._25_c01137{width:161.118000px;}
._21_c01137{width:164.316000px;}
._22_c01137{width:167.094000px;}
._1c_c01137{width:217.746000px;}
._20_c01137{width:276.768000px;}
.fc2_c01137{color:transparent;}
.fc1_c01137{color:rgb(128,128,128);}
.fc0_c01137{color:rgb(0,0,0);}
.fs7_c01137{font-size:48.000000px;}
.fs3_c01137{font-size:57.000000px;}
.fs6_c01137{font-size:57.600000px;}
.fs4_c01137{font-size:63.000000px;}
.fs2_c01137{font-size:72.000000px;}
.fs5_c01137{font-size:78.000000px;}
.fs1_c01137{font-size:81.000000px;}
.fs0_c01137{font-size:99.000000px;}
.y0_c01137{bottom:0.000000px;}
.y25_c01137{bottom:3.105000px;}
.y24_c01137{bottom:7.228371px;}
.y23_c01137{bottom:86.415000px;}
.y22_c01137{bottom:112.365000px;}
.y21_c01137{bottom:136.815000px;}
.y20_c01137{bottom:160.365000px;}
.y1f_c01137{bottom:184.965000px;}
.y1e_c01137{bottom:209.265000px;}
.y1d_c01137{bottom:233.565000px;}
.y1c_c01137{bottom:257.565000px;}
.y1b_c01137{bottom:283.515000px;}
.y1a_c01137{bottom:307.515000px;}
.y19_c01137{bottom:331.065000px;}
.y18_c01137{bottom:354.765000px;}
.y17_c01137{bottom:379.365000px;}
.y16_c01137{bottom:403.965000px;}
.y15_c01137{bottom:427.665000px;}
.y14_c01137{bottom:451.665000px;}
.y13_c01137{bottom:475.215000px;}
.y12_c01137{bottom:499.815000px;}
.y11_c01137{bottom:523.215000px;}
.y10_c01137{bottom:547.065000px;}
.yf_c01137{bottom:571.365000px;}
.ye_c01137{bottom:595.665000px;}
.yd_c01137{bottom:619.365000px;}
.yc_c01137{bottom:644.265000px;}
.yb_c01137{bottom:667.665000px;}
.ya_c01137{bottom:691.215000px;}
.y9_c01137{bottom:715.515000px;}
.y8_c01137{bottom:739.515000px;}
.y7_c01137{bottom:763.215000px;}
.y6_c01137{bottom:787.815000px;}
.y5_c01137{bottom:811.665000px;}
.y4_c01137{bottom:835.365000px;}
.y3_c01137{bottom:859.665000px;}
.y2_c01137{bottom:884.265000px;}
.y1_c01137{bottom:922.365000px;}
.h6_c01137{height:13.200074px;}
.h7_c01137{height:43.804688px;}
.h3_c01137{height:79.497070px;}
.h5_c01137{height:84.269531px;}
.h4_c01137{height:98.756836px;}
.h2_c01137{height:115.870605px;}
.h1_c01137{height:986.250000px;}
.h0_c01137{height:986.325000px;}
.w2_c01137{width:104.875500px;}
.w0_c01137{width:667.425000px;}
.w1_c01137{width:667.500000px;}
.x0_c01137{left:0.000000px;}
.x9_c01137{left:42.150000px;}
.xc_c01137{left:44.850000px;}
.xd_c01137{left:46.200000px;}
.xa_c01137{left:83.250000px;}
.x8_c01137{left:95.400000px;}
.x4_c01137{left:126.150000px;}
.x3_c01137{left:127.500000px;}
.x5_c01137{left:129.300000px;}
.x2_c01137{left:130.650000px;}
.x6_c01137{left:131.850000px;}
.x7_c01137{left:133.350000px;}
.x1_c01137{left:134.700000px;}
.xb_c01137{left:136.050000px;}
.xe_c01137{left:138.300000px;}
.xf_c01137{left:139.650000px;}
.x10_c01137{left:141.150000px;}
.x11_c01137{left:285.526749px;}
@media print{
.v0_c01137{vertical-align:0.000000pt;}
.ls2_c01137{letter-spacing:0.000000pt;}
.ls0_c01137{letter-spacing:1.866667pt;}
.ls1_c01137{letter-spacing:20.565333pt;}
.ws3_c01137{word-spacing:-21.184000pt;}
.ws4_c01137{word-spacing:-16.947200pt;}
.ws0_c01137{word-spacing:-16.000000pt;}
.ws2_c01137{word-spacing:-15.424000pt;}
.ws1_c01137{word-spacing:-12.210667pt;}
.ws6_c01137{word-spacing:0.000000pt;}
.ws5_c01137{word-spacing:4.608000pt;}
._b_c01137{margin-left:-16.456000pt;}
._11_c01137{margin-left:-13.536000pt;}
._12_c01137{margin-left:-11.232000pt;}
._18_c01137{margin-left:-9.192000pt;}
._1a_c01137{margin-left:-7.936000pt;}
._9_c01137{margin-left:-6.072000pt;}
._5_c01137{margin-left:-4.928000pt;}
._14_c01137{margin-left:-3.984000pt;}
._8_c01137{margin-left:-2.992000pt;}
._4_c01137{margin-left:-1.672000pt;}
._6_c01137{width:1.408000pt;}
._3_c01137{width:2.376000pt;}
._a_c01137{width:3.608000pt;}
._7_c01137{width:4.576000pt;}
._c_c01137{width:5.840000pt;}
._13_c01137{width:6.861333pt;}
._10_c01137{width:7.832000pt;}
._e_c01137{width:8.872000pt;}
._1_c01137{width:9.944000pt;}
._15_c01137{width:11.728000pt;}
._0_c01137{width:12.848000pt;}
._d_c01137{width:14.104000pt;}
._19_c01137{width:15.522667pt;}
._17_c01137{width:16.456000pt;}
._16_c01137{width:19.000000pt;}
._24_c01137{width:22.002667pt;}
._1e_c01137{width:23.064000pt;}
._1f_c01137{width:25.350400pt;}
._f_c01137{width:26.488000pt;}
._1d_c01137{width:27.912000pt;}
._1b_c01137{width:30.178667pt;}
._23_c01137{width:31.410667pt;}
._2_c01137{width:65.472000pt;}
._25_c01137{width:143.216000pt;}
._21_c01137{width:146.058667pt;}
._22_c01137{width:148.528000pt;}
._1c_c01137{width:193.552000pt;}
._20_c01137{width:246.016000pt;}
.fs7_c01137{font-size:42.666667pt;}
.fs3_c01137{font-size:50.666667pt;}
.fs6_c01137{font-size:51.200000pt;}
.fs4_c01137{font-size:56.000000pt;}
.fs2_c01137{font-size:64.000000pt;}
.fs5_c01137{font-size:69.333333pt;}
.fs1_c01137{font-size:72.000000pt;}
.fs0_c01137{font-size:88.000000pt;}
.y0_c01137{bottom:0.000000pt;}
.y25_c01137{bottom:2.760000pt;}
.y24_c01137{bottom:6.425219pt;}
.y23_c01137{bottom:76.813333pt;}
.y22_c01137{bottom:99.880000pt;}
.y21_c01137{bottom:121.613333pt;}
.y20_c01137{bottom:142.546667pt;}
.y1f_c01137{bottom:164.413333pt;}
.y1e_c01137{bottom:186.013333pt;}
.y1d_c01137{bottom:207.613333pt;}
.y1c_c01137{bottom:228.946667pt;}
.y1b_c01137{bottom:252.013333pt;}
.y1a_c01137{bottom:273.346667pt;}
.y19_c01137{bottom:294.280000pt;}
.y18_c01137{bottom:315.346667pt;}
.y17_c01137{bottom:337.213333pt;}
.y16_c01137{bottom:359.080000pt;}
.y15_c01137{bottom:380.146667pt;}
.y14_c01137{bottom:401.480000pt;}
.y13_c01137{bottom:422.413333pt;}
.y12_c01137{bottom:444.280000pt;}
.y11_c01137{bottom:465.080000pt;}
.y10_c01137{bottom:486.280000pt;}
.yf_c01137{bottom:507.880000pt;}
.ye_c01137{bottom:529.480000pt;}
.yd_c01137{bottom:550.546667pt;}
.yc_c01137{bottom:572.680000pt;}
.yb_c01137{bottom:593.480000pt;}
.ya_c01137{bottom:614.413333pt;}
.y9_c01137{bottom:636.013333pt;}
.y8_c01137{bottom:657.346667pt;}
.y7_c01137{bottom:678.413333pt;}
.y6_c01137{bottom:700.280000pt;}
.y5_c01137{bottom:721.480000pt;}
.y4_c01137{bottom:742.546667pt;}
.y3_c01137{bottom:764.146667pt;}
.y2_c01137{bottom:786.013333pt;}
.y1_c01137{bottom:819.880000pt;}
.h6_c01137{height:11.733399pt;}
.h7_c01137{height:38.937500pt;}
.h3_c01137{height:70.664062pt;}
.h5_c01137{height:74.906250pt;}
.h4_c01137{height:87.783854pt;}
.h2_c01137{height:102.996094pt;}
.h1_c01137{height:876.666667pt;}
.h0_c01137{height:876.733333pt;}
.w2_c01137{width:93.222667pt;}
.w0_c01137{width:593.266667pt;}
.w1_c01137{width:593.333333pt;}
.x0_c01137{left:0.000000pt;}
.x9_c01137{left:37.466667pt;}
.xc_c01137{left:39.866667pt;}
.xd_c01137{left:41.066667pt;}
.xa_c01137{left:74.000000pt;}
.x8_c01137{left:84.800000pt;}
.x4_c01137{left:112.133333pt;}
.x3_c01137{left:113.333333pt;}
.x5_c01137{left:114.933333pt;}
.x2_c01137{left:116.133333pt;}
.x6_c01137{left:117.200000pt;}
.x7_c01137{left:118.533333pt;}
.x1_c01137{left:119.733333pt;}
.xb_c01137{left:120.933333pt;}
.xe_c01137{left:122.933333pt;}
.xf_c01137{left:124.133333pt;}
.x10_c01137{left:125.466667pt;}
.x11_c01137{left:253.801554pt;}
}





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

.ir_c01138:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01138{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01138;src:url('chunks/assets/font_7ffcbe87e1555696efd28b10.woff2')format("woff");}.ff1_c01138{font-family:ff1_c01138;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01138;src:url('chunks/assets/font_1fc4daf11b18e45ec004354a.woff2')format("woff");}.ff2_c01138{font-family:ff2_c01138;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01138;src:url('chunks/assets/font_d88c1fc07b3bc72e2e69bc96.woff2')format("woff");}.ff3_c01138{font-family:ff3_c01138;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01138;src:url('chunks/assets/font_add2a9a9684dc2976275e00b.woff2')format("woff");}.ff4_c01138{font-family:ff4_c01138;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01138;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff5_c01138{font-family:ff5_c01138;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01138;src:url('chunks/assets/font_449a7bf2ce03d861156ee782.woff2')format("woff");}.ff6_c01138{font-family:ff6_c01138;line-height:1.437000;font-style:normal;font-weight: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_c01138;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c01138{font-family:ff7_c01138;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01138{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01138{vertical-align:0.000000px;}
.ls0_c01138{letter-spacing:0.000000px;}
.ls1_c01138{letter-spacing:6.000000px;}
.sc__c01138{text-shadow:none;}
.sc0_c01138{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01138{-webkit-text-stroke:0px transparent;}
.sc0_c01138{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01138{word-spacing:-73.686000px;}
.ws1_c01138{word-spacing:-33.000000px;}
.ws0_c01138{word-spacing:-17.352000px;}
.ws3_c01138{word-spacing:0.000000px;}
._22_c01138{margin-left:-19.485000px;}
._23_c01138{margin-left:-17.289000px;}
._1a_c01138{margin-left:-15.552000px;}
._24_c01138{margin-left:-12.870000px;}
._1_c01138{margin-left:-11.448000px;}
._13_c01138{margin-left:-9.891000px;}
._1c_c01138{margin-left:-8.082000px;}
._17_c01138{margin-left:-6.642000px;}
._f_c01138{margin-left:-5.058000px;}
._19_c01138{margin-left:-3.951000px;}
._b_c01138{margin-left:-2.835000px;}
._0_c01138{margin-left:-1.296000px;}
._18_c01138{width:1.080000px;}
._c_c01138{width:2.106000px;}
._d_c01138{width:3.888000px;}
._e_c01138{width:5.103000px;}
._a_c01138{width:6.885000px;}
._11_c01138{width:8.019000px;}
._5_c01138{width:9.648000px;}
._6_c01138{width:11.376000px;}
._14_c01138{width:12.777000px;}
._4_c01138{width:13.824000px;}
._15_c01138{width:15.075000px;}
._3_c01138{width:16.344000px;}
._12_c01138{width:17.514000px;}
._10_c01138{width:18.783000px;}
._8_c01138{width:20.016000px;}
._2_c01138{width:21.816000px;}
._1d_c01138{width:27.441000px;}
._1e_c01138{width:29.439000px;}
._7_c01138{width:31.176000px;}
._16_c01138{width:36.288000px;}
._21_c01138{width:41.100000px;}
._20_c01138{width:48.321000px;}
._1f_c01138{width:54.657000px;}
._1b_c01138{width:81.405000px;}
._9_c01138{width:228.441000px;}
.fc2_c01138{color:transparent;}
.fc1_c01138{color:rgb(128,128,128);}
.fc0_c01138{color:rgb(0,0,0);}
.fs3_c01138{font-size:48.000000px;}
.fs1_c01138{font-size:66.000000px;}
.fs0_c01138{font-size:72.000000px;}
.fs2_c01138{font-size:81.000000px;}
.fs4_c01138{font-size:87.000000px;}
.fs5_c01138{font-size:93.000000px;}
.y0_c01138{bottom:0.000000px;}
.y26_c01138{bottom:3.105000px;}
.y25_c01138{bottom:7.228369px;}
.y24_c01138{bottom:49.170000px;}
.y23_c01138{bottom:73.620000px;}
.y22_c01138{bottom:98.820000px;}
.y21_c01138{bottom:122.820000px;}
.y20_c01138{bottom:147.120000px;}
.y1f_c01138{bottom:171.420000px;}
.y1e_c01138{bottom:195.420000px;}
.y1d_c01138{bottom:219.720000px;}
.y1c_c01138{bottom:243.720000px;}
.y1b_c01138{bottom:267.870000px;}
.y1a_c01138{bottom:292.320000px;}
.y19_c01138{bottom:315.570000px;}
.y18_c01138{bottom:339.870000px;}
.y17_c01138{bottom:363.870000px;}
.y16_c01138{bottom:388.020000px;}
.y15_c01138{bottom:412.020000px;}
.y14_c01138{bottom:436.020000px;}
.y13_c01138{bottom:459.720000px;}
.y12_c01138{bottom:484.020000px;}
.y11_c01138{bottom:508.170000px;}
.y10_c01138{bottom:532.170000px;}
.yf_c01138{bottom:555.120000px;}
.ye_c01138{bottom:578.070000px;}
.yd_c01138{bottom:602.370000px;}
.yc_c01138{bottom:627.720000px;}
.yb_c01138{bottom:650.670000px;}
.ya_c01138{bottom:674.220000px;}
.y9_c01138{bottom:699.870000px;}
.y8_c01138{bottom:721.920000px;}
.y7_c01138{bottom:747.870000px;}
.y6_c01138{bottom:771.420000px;}
.y5_c01138{bottom:795.120000px;}
.y4_c01138{bottom:818.070000px;}
.y3_c01138{bottom:841.770000px;}
.y2_c01138{bottom:866.670000px;}
.y1_c01138{bottom:905.520000px;}
.h6_c01138{height:13.200073px;}
.h7_c01138{height:43.804688px;}
.h2_c01138{height:79.497070px;}
.h1_c01138{height:84.269531px;}
.h3_c01138{height:91.160156px;}
.h4_c01138{height:91.176000px;}
.h5_c01138{height:91.274414px;}
.h0_c01138{height:975.750000px;}
.w2_c01138{width:104.875500px;}
.w0_c01138{width:664.200000px;}
.w1_c01138{width:664.500000px;}
.x0_c01138{left:0.000000px;}
.x8_c01138{left:36.000000px;}
.x7_c01138{left:38.700000px;}
.x5_c01138{left:40.200000px;}
.x2_c01138{left:41.550000px;}
.x4_c01138{left:42.750000px;}
.x3_c01138{left:45.900000px;}
.x6_c01138{left:48.150000px;}
.x1_c01138{left:112.350000px;}
.xa_c01138{left:283.914230px;}
.x9_c01138{left:496.500000px;}
@media print{
.v0_c01138{vertical-align:0.000000pt;}
.ls0_c01138{letter-spacing:0.000000pt;}
.ls1_c01138{letter-spacing:5.333333pt;}
.ws2_c01138{word-spacing:-65.498667pt;}
.ws1_c01138{word-spacing:-29.333333pt;}
.ws0_c01138{word-spacing:-15.424000pt;}
.ws3_c01138{word-spacing:0.000000pt;}
._22_c01138{margin-left:-17.320000pt;}
._23_c01138{margin-left:-15.368000pt;}
._1a_c01138{margin-left:-13.824000pt;}
._24_c01138{margin-left:-11.440000pt;}
._1_c01138{margin-left:-10.176000pt;}
._13_c01138{margin-left:-8.792000pt;}
._1c_c01138{margin-left:-7.184000pt;}
._17_c01138{margin-left:-5.904000pt;}
._f_c01138{margin-left:-4.496000pt;}
._19_c01138{margin-left:-3.512000pt;}
._b_c01138{margin-left:-2.520000pt;}
._0_c01138{margin-left:-1.152000pt;}
._18_c01138{width:0.960000pt;}
._c_c01138{width:1.872000pt;}
._d_c01138{width:3.456000pt;}
._e_c01138{width:4.536000pt;}
._a_c01138{width:6.120000pt;}
._11_c01138{width:7.128000pt;}
._5_c01138{width:8.576000pt;}
._6_c01138{width:10.112000pt;}
._14_c01138{width:11.357333pt;}
._4_c01138{width:12.288000pt;}
._15_c01138{width:13.400000pt;}
._3_c01138{width:14.528000pt;}
._12_c01138{width:15.568000pt;}
._10_c01138{width:16.696000pt;}
._8_c01138{width:17.792000pt;}
._2_c01138{width:19.392000pt;}
._1d_c01138{width:24.392000pt;}
._1e_c01138{width:26.168000pt;}
._7_c01138{width:27.712000pt;}
._16_c01138{width:32.256000pt;}
._21_c01138{width:36.533333pt;}
._20_c01138{width:42.952000pt;}
._1f_c01138{width:48.584000pt;}
._1b_c01138{width:72.360000pt;}
._9_c01138{width:203.058667pt;}
.fs3_c01138{font-size:42.666667pt;}
.fs1_c01138{font-size:58.666667pt;}
.fs0_c01138{font-size:64.000000pt;}
.fs2_c01138{font-size:72.000000pt;}
.fs4_c01138{font-size:77.333333pt;}
.fs5_c01138{font-size:82.666667pt;}
.y0_c01138{bottom:0.000000pt;}
.y26_c01138{bottom:2.760000pt;}
.y25_c01138{bottom:6.425217pt;}
.y24_c01138{bottom:43.706667pt;}
.y23_c01138{bottom:65.440000pt;}
.y22_c01138{bottom:87.840000pt;}
.y21_c01138{bottom:109.173333pt;}
.y20_c01138{bottom:130.773333pt;}
.y1f_c01138{bottom:152.373333pt;}
.y1e_c01138{bottom:173.706667pt;}
.y1d_c01138{bottom:195.306667pt;}
.y1c_c01138{bottom:216.640000pt;}
.y1b_c01138{bottom:238.106667pt;}
.y1a_c01138{bottom:259.840000pt;}
.y19_c01138{bottom:280.506667pt;}
.y18_c01138{bottom:302.106667pt;}
.y17_c01138{bottom:323.440000pt;}
.y16_c01138{bottom:344.906667pt;}
.y15_c01138{bottom:366.240000pt;}
.y14_c01138{bottom:387.573333pt;}
.y13_c01138{bottom:408.640000pt;}
.y12_c01138{bottom:430.240000pt;}
.y11_c01138{bottom:451.706667pt;}
.y10_c01138{bottom:473.040000pt;}
.yf_c01138{bottom:493.440000pt;}
.ye_c01138{bottom:513.840000pt;}
.yd_c01138{bottom:535.440000pt;}
.yc_c01138{bottom:557.973333pt;}
.yb_c01138{bottom:578.373333pt;}
.ya_c01138{bottom:599.306667pt;}
.y9_c01138{bottom:622.106667pt;}
.y8_c01138{bottom:641.706667pt;}
.y7_c01138{bottom:664.773333pt;}
.y6_c01138{bottom:685.706667pt;}
.y5_c01138{bottom:706.773333pt;}
.y4_c01138{bottom:727.173333pt;}
.y3_c01138{bottom:748.240000pt;}
.y2_c01138{bottom:770.373333pt;}
.y1_c01138{bottom:804.906667pt;}
.h6_c01138{height:11.733399pt;}
.h7_c01138{height:38.937500pt;}
.h2_c01138{height:70.664062pt;}
.h1_c01138{height:74.906250pt;}
.h3_c01138{height:81.031250pt;}
.h4_c01138{height:81.045333pt;}
.h5_c01138{height:81.132812pt;}
.h0_c01138{height:867.333333pt;}
.w2_c01138{width:93.222667pt;}
.w0_c01138{width:590.400000pt;}
.w1_c01138{width:590.666667pt;}
.x0_c01138{left:0.000000pt;}
.x8_c01138{left:32.000000pt;}
.x7_c01138{left:34.400000pt;}
.x5_c01138{left:35.733333pt;}
.x2_c01138{left:36.933333pt;}
.x4_c01138{left:38.000000pt;}
.x3_c01138{left:40.800000pt;}
.x6_c01138{left:42.800000pt;}
.x1_c01138{left:99.866667pt;}
.xa_c01138{left:252.368205pt;}
.x9_c01138{left:441.333333pt;}
}





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

.ir_c01139:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01139{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01139;src:url('chunks/assets/font_5688b2b0d76d4fc90eb6daf1.woff2')format("woff");}.ff1_c01139{font-family:ff1_c01139;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01139;src:url('chunks/assets/font_8fe2e235bed072f3579c47f4.woff2')format("woff");}.ff2_c01139{font-family:ff2_c01139;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01139;src:url('chunks/assets/font_4555e7e85715d0ca8f330adc.woff2')format("woff");}.ff3_c01139{font-family:ff3_c01139;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01139;src:url('chunks/assets/font_9100d925c358cc2aefbf1637.woff2')format("woff");}.ff4_c01139{font-family:ff4_c01139;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01139;src:url('chunks/assets/font_96b9e8a62235fdd2f1abc054.woff2')format("woff");}.ff5_c01139{font-family:ff5_c01139;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01139;src:url('chunks/assets/font_28eab10b1882173a2ac9ec62.woff2')format("woff");}.ff6_c01139{font-family:ff6_c01139;line-height:1.311035;font-style:normal;font-weight: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_c01139;src:url('chunks/assets/font_2928c77487a86967ab247d09.woff2')format("woff");}.ff7_c01139{font-family:ff7_c01139;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c01139;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff8_c01139{font-family:ff8_c01139;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01139{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01139{vertical-align:0.000000px;}
.ls8_c01139{letter-spacing:-6.000000px;}
.ls7_c01139{letter-spacing:0.000000px;}
.ls3_c01139{letter-spacing:6.000000px;}
.ls6_c01139{letter-spacing:22.920000px;}
.ls0_c01139{letter-spacing:34.002000px;}
.ls1_c01139{letter-spacing:35.202000px;}
.ls4_c01139{letter-spacing:38.280000px;}
.ls5_c01139{letter-spacing:120.402000px;}
.ls2_c01139{letter-spacing:333.402000px;}
.sc__c01139{text-shadow:none;}
.sc0_c01139{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01139{-webkit-text-stroke:0px transparent;}
.sc0_c01139{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01139{word-spacing:-73.686000px;}
.ws1_c01139{word-spacing:-17.352000px;}
.ws0_c01139{word-spacing:-13.737000px;}
.ws3_c01139{word-spacing:0.000000px;}
._1f_c01139{margin-left:-38.700000px;}
._19_c01139{margin-left:-29.727000px;}
._15_c01139{margin-left:-24.882000px;}
._21_c01139{margin-left:-21.303000px;}
._14_c01139{margin-left:-18.111000px;}
._7_c01139{margin-left:-14.985000px;}
._24_c01139{margin-left:-13.608000px;}
._13_c01139{margin-left:-12.507000px;}
._12_c01139{margin-left:-9.825000px;}
._10_c01139{margin-left:-8.268000px;}
._11_c01139{margin-left:-6.948000px;}
._f_c01139{margin-left:-5.067000px;}
._b_c01139{margin-left:-3.957000px;}
._17_c01139{margin-left:-2.826000px;}
._a_c01139{margin-left:-1.455000px;}
._d_c01139{width:1.278000px;}
._9_c01139{width:2.517000px;}
._6_c01139{width:3.561000px;}
._8_c01139{width:4.743000px;}
._2_c01139{width:5.871000px;}
._3_c01139{width:7.809000px;}
._0_c01139{width:9.462000px;}
._1_c01139{width:10.545000px;}
._e_c01139{width:12.213000px;}
._16_c01139{width:13.308000px;}
._23_c01139{width:15.114000px;}
._4_c01139{width:16.245000px;}
._5_c01139{width:17.670000px;}
._1a_c01139{width:20.439000px;}
._25_c01139{width:24.927000px;}
._1c_c01139{width:30.600000px;}
._26_c01139{width:39.498000px;}
._18_c01139{width:50.118000px;}
._1e_c01139{width:86.091000px;}
._20_c01139{width:253.044000px;}
._c_c01139{width:255.786000px;}
._27_c01139{width:286.083000px;}
._22_c01139{width:310.068000px;}
._1d_c01139{width:448.152000px;}
._1b_c01139{width:809.595000px;}
.fc2_c01139{color:transparent;}
.fc1_c01139{color:rgb(128,128,128);}
.fc0_c01139{color:rgb(0,0,0);}
.fs7_c01139{font-size:48.000000px;}
.fs0_c01139{font-size:57.000000px;}
.fs3_c01139{font-size:72.000000px;}
.fs1_c01139{font-size:78.000000px;}
.fs2_c01139{font-size:81.000000px;}
.fs5_c01139{font-size:84.000000px;}
.fs4_c01139{font-size:87.000000px;}
.fs6_c01139{font-size:105.000000px;}
.y0_c01139{bottom:0.000000px;}
.y25_c01139{bottom:3.105000px;}
.y24_c01139{bottom:7.228355px;}
.y23_c01139{bottom:48.135000px;}
.y22_c01139{bottom:71.535000px;}
.y21_c01139{bottom:96.435000px;}
.y20_c01139{bottom:121.485000px;}
.y1f_c01139{bottom:145.335000px;}
.y1e_c01139{bottom:170.085000px;}
.y1d_c01139{bottom:194.385000px;}
.y1c_c01139{bottom:218.985000px;}
.y1b_c01139{bottom:243.285000px;}
.y1a_c01139{bottom:267.585000px;}
.y19_c01139{bottom:291.285000px;}
.y18_c01139{bottom:316.485000px;}
.y17_c01139{bottom:341.085000px;}
.y16_c01139{bottom:364.785000px;}
.y15_c01139{bottom:389.085000px;}
.y14_c01139{bottom:413.085000px;}
.y13_c01139{bottom:439.635000px;}
.y12_c01139{bottom:464.385000px;}
.y11_c01139{bottom:486.885000px;}
.y10_c01139{bottom:509.535000px;}
.yf_c01139{bottom:533.235000px;}
.ye_c01139{bottom:557.085000px;}
.yd_c01139{bottom:581.385000px;}
.yc_c01139{bottom:605.385000px;}
.yb_c01139{bottom:629.685000px;}
.ya_c01139{bottom:653.685000px;}
.y9_c01139{bottom:677.985000px;}
.y8_c01139{bottom:701.685000px;}
.y7_c01139{bottom:725.985000px;}
.y6_c01139{bottom:750.135000px;}
.y5_c01139{bottom:774.135000px;}
.y4_c01139{bottom:798.135000px;}
.y3_c01139{bottom:823.185000px;}
.y2_c01139{bottom:846.135000px;}
.y1_c01139{bottom:868.935000px;}
.ha_c01139{height:13.200074px;}
.hb_c01139{height:43.804688px;}
.h4_c01139{height:66.713379px;}
.h3_c01139{height:79.497070px;}
.h5_c01139{height:84.269531px;}
.h8_c01139{height:84.656250px;}
.h7_c01139{height:91.160156px;}
.h6_c01139{height:91.176000px;}
.h2_c01139{height:98.756836px;}
.h9_c01139{height:112.035000px;}
.h1_c01139{height:975.000000px;}
.h0_c01139{height:975.225000px;}
.w2_c01139{width:104.875500px;}
.w0_c01139{width:659.850000px;}
.w1_c01139{width:660.000000px;}
.x0_c01139{left:0.000000px;}
.x1_c01139{left:46.650000px;}
.x7_c01139{left:48.150000px;}
.x6_c01139{left:84.300000px;}
.x9_c01139{left:99.150000px;}
.x4_c01139{left:107.400000px;}
.x2_c01139{left:133.050000px;}
.x3_c01139{left:134.700000px;}
.x8_c01139{left:135.900000px;}
.x5_c01139{left:156.000000px;}
.xb_c01139{left:281.739258px;}
.xa_c01139{left:490.050000px;}
@media print{
.v0_c01139{vertical-align:0.000000pt;}
.ls8_c01139{letter-spacing:-5.333333pt;}
.ls7_c01139{letter-spacing:0.000000pt;}
.ls3_c01139{letter-spacing:5.333333pt;}
.ls6_c01139{letter-spacing:20.373333pt;}
.ls0_c01139{letter-spacing:30.224000pt;}
.ls1_c01139{letter-spacing:31.290667pt;}
.ls4_c01139{letter-spacing:34.026667pt;}
.ls5_c01139{letter-spacing:107.024000pt;}
.ls2_c01139{letter-spacing:296.357333pt;}
.ws2_c01139{word-spacing:-65.498667pt;}
.ws1_c01139{word-spacing:-15.424000pt;}
.ws0_c01139{word-spacing:-12.210667pt;}
.ws3_c01139{word-spacing:0.000000pt;}
._1f_c01139{margin-left:-34.400000pt;}
._19_c01139{margin-left:-26.424000pt;}
._15_c01139{margin-left:-22.117333pt;}
._21_c01139{margin-left:-18.936000pt;}
._14_c01139{margin-left:-16.098667pt;}
._7_c01139{margin-left:-13.320000pt;}
._24_c01139{margin-left:-12.096000pt;}
._13_c01139{margin-left:-11.117333pt;}
._12_c01139{margin-left:-8.733333pt;}
._10_c01139{margin-left:-7.349333pt;}
._11_c01139{margin-left:-6.176000pt;}
._f_c01139{margin-left:-4.504000pt;}
._b_c01139{margin-left:-3.517333pt;}
._17_c01139{margin-left:-2.512000pt;}
._a_c01139{margin-left:-1.293333pt;}
._d_c01139{width:1.136000pt;}
._9_c01139{width:2.237333pt;}
._6_c01139{width:3.165333pt;}
._8_c01139{width:4.216000pt;}
._2_c01139{width:5.218667pt;}
._3_c01139{width:6.941333pt;}
._0_c01139{width:8.410667pt;}
._1_c01139{width:9.373333pt;}
._e_c01139{width:10.856000pt;}
._16_c01139{width:11.829333pt;}
._23_c01139{width:13.434667pt;}
._4_c01139{width:14.440000pt;}
._5_c01139{width:15.706667pt;}
._1a_c01139{width:18.168000pt;}
._25_c01139{width:22.157333pt;}
._1c_c01139{width:27.200000pt;}
._26_c01139{width:35.109333pt;}
._18_c01139{width:44.549333pt;}
._1e_c01139{width:76.525333pt;}
._20_c01139{width:224.928000pt;}
._c_c01139{width:227.365333pt;}
._27_c01139{width:254.296000pt;}
._22_c01139{width:275.616000pt;}
._1d_c01139{width:398.357333pt;}
._1b_c01139{width:719.640000pt;}
.fs7_c01139{font-size:42.666667pt;}
.fs0_c01139{font-size:50.666667pt;}
.fs3_c01139{font-size:64.000000pt;}
.fs1_c01139{font-size:69.333333pt;}
.fs2_c01139{font-size:72.000000pt;}
.fs5_c01139{font-size:74.666667pt;}
.fs4_c01139{font-size:77.333333pt;}
.fs6_c01139{font-size:93.333333pt;}
.y0_c01139{bottom:0.000000pt;}
.y25_c01139{bottom:2.760000pt;}
.y24_c01139{bottom:6.425204pt;}
.y23_c01139{bottom:42.786667pt;}
.y22_c01139{bottom:63.586667pt;}
.y21_c01139{bottom:85.720000pt;}
.y20_c01139{bottom:107.986667pt;}
.y1f_c01139{bottom:129.186667pt;}
.y1e_c01139{bottom:151.186667pt;}
.y1d_c01139{bottom:172.786667pt;}
.y1c_c01139{bottom:194.653333pt;}
.y1b_c01139{bottom:216.253333pt;}
.y1a_c01139{bottom:237.853333pt;}
.y19_c01139{bottom:258.920000pt;}
.y18_c01139{bottom:281.320000pt;}
.y17_c01139{bottom:303.186667pt;}
.y16_c01139{bottom:324.253333pt;}
.y15_c01139{bottom:345.853333pt;}
.y14_c01139{bottom:367.186667pt;}
.y13_c01139{bottom:390.786667pt;}
.y12_c01139{bottom:412.786667pt;}
.y11_c01139{bottom:432.786667pt;}
.y10_c01139{bottom:452.920000pt;}
.yf_c01139{bottom:473.986667pt;}
.ye_c01139{bottom:495.186667pt;}
.yd_c01139{bottom:516.786667pt;}
.yc_c01139{bottom:538.120000pt;}
.yb_c01139{bottom:559.720000pt;}
.ya_c01139{bottom:581.053333pt;}
.y9_c01139{bottom:602.653333pt;}
.y8_c01139{bottom:623.720000pt;}
.y7_c01139{bottom:645.320000pt;}
.y6_c01139{bottom:666.786667pt;}
.y5_c01139{bottom:688.120000pt;}
.y4_c01139{bottom:709.453333pt;}
.y3_c01139{bottom:731.720000pt;}
.y2_c01139{bottom:752.120000pt;}
.y1_c01139{bottom:772.386667pt;}
.ha_c01139{height:11.733399pt;}
.hb_c01139{height:38.937500pt;}
.h4_c01139{height:59.300781pt;}
.h3_c01139{height:70.664062pt;}
.h5_c01139{height:74.906250pt;}
.h8_c01139{height:75.250000pt;}
.h7_c01139{height:81.031250pt;}
.h6_c01139{height:81.045333pt;}
.h2_c01139{height:87.783854pt;}
.h9_c01139{height:99.586667pt;}
.h1_c01139{height:866.666667pt;}
.h0_c01139{height:866.866667pt;}
.w2_c01139{width:93.222667pt;}
.w0_c01139{width:586.533333pt;}
.w1_c01139{width:586.666667pt;}
.x0_c01139{left:0.000000pt;}
.x1_c01139{left:41.466667pt;}
.x7_c01139{left:42.800000pt;}
.x6_c01139{left:74.933333pt;}
.x9_c01139{left:88.133333pt;}
.x4_c01139{left:95.466667pt;}
.x2_c01139{left:118.266667pt;}
.x3_c01139{left:119.733333pt;}
.x8_c01139{left:120.800000pt;}
.x5_c01139{left:138.666667pt;}
.xb_c01139{left:250.434896pt;}
.xa_c01139{left:435.600000pt;}
}





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

.ir_c01140:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01140{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01140;src:url('chunks/assets/font_c3dba03c5404bd27fa26fc20.woff2')format("woff");}.ff1_c01140{font-family:ff1_c01140;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01140;src:url('chunks/assets/font_68f13988ba20b94cd09782ba.woff2')format("woff");}.ff2_c01140{font-family:ff2_c01140;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01140;src:url('chunks/assets/font_3681bb10c81b8962eb40016a.woff2')format("woff");}.ff3_c01140{font-family:ff3_c01140;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01140;src:url('chunks/assets/font_d2f85c02c850e5857f42456f.woff2')format("woff");}.ff4_c01140{font-family:ff4_c01140;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01140;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c01140{font-family:ff5_c01140;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01140{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01140{vertical-align:0.000000px;}
.ls3_c01140{letter-spacing:0.000000px;}
.ls4_c01140{letter-spacing:6.000000px;}
.ls2_c01140{letter-spacing:15.597000px;}
.ls0_c01140{letter-spacing:29.946000px;}
.ls1_c01140{letter-spacing:111.750000px;}
.sc__c01140{text-shadow:none;}
.sc0_c01140{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01140{-webkit-text-stroke:0px transparent;}
.sc0_c01140{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01140{word-spacing:-44.097000px;}
.ws1_c01140{word-spacing:-18.798000px;}
.ws2_c01140{word-spacing:0.000000px;}
._1d_c01140{margin-left:-16.200000px;}
._d_c01140{margin-left:-11.514000px;}
._10_c01140{margin-left:-1.710000px;}
._c_c01140{width:1.596000px;}
._a_c01140{width:2.793000px;}
._7_c01140{width:4.275000px;}
._9_c01140{width:5.757000px;}
._1_c01140{width:6.954000px;}
._b_c01140{width:8.265000px;}
._0_c01140{width:9.747000px;}
._4_c01140{width:11.229000px;}
._2_c01140{width:12.939000px;}
._18_c01140{width:15.282000px;}
._3_c01140{width:16.302000px;}
._6_c01140{width:17.841000px;}
._13_c01140{width:19.488000px;}
._8_c01140{width:20.919000px;}
._5_c01140{width:22.344000px;}
._14_c01140{width:24.105000px;}
._17_c01140{width:25.251000px;}
._16_c01140{width:26.847000px;}
._15_c01140{width:28.791000px;}
._1b_c01140{width:30.711000px;}
._1c_c01140{width:31.962000px;}
._1a_c01140{width:39.996000px;}
._e_c01140{width:42.123000px;}
._19_c01140{width:45.702000px;}
._1e_c01140{width:73.710000px;}
._11_c01140{width:109.041000px;}
._12_c01140{width:326.838000px;}
._1f_c01140{width:676.767000px;}
._f_c01140{width:681.093000px;}
.fc2_c01140{color:transparent;}
.fc1_c01140{color:rgb(128,128,128);}
.fc0_c01140{color:rgb(0,0,0);}
.fs1_c01140{font-size:48.000000px;}
.fs0_c01140{font-size:57.000000px;}
.fs2_c01140{font-size:66.000000px;}
.fs3_c01140{font-size:78.000000px;}
.fs4_c01140{font-size:81.000000px;}
.y0_c01140{bottom:0.000000px;}
.y23_c01140{bottom:3.105000px;}
.y22_c01140{bottom:7.228369px;}
.y21_c01140{bottom:81.570000px;}
.y20_c01140{bottom:112.770000px;}
.y1f_c01140{bottom:136.620000px;}
.y1e_c01140{bottom:162.270000px;}
.y1d_c01140{bottom:186.570000px;}
.y1c_c01140{bottom:210.870000px;}
.y1b_c01140{bottom:235.620000px;}
.y1a_c01140{bottom:260.220000px;}
.y19_c01140{bottom:284.220000px;}
.y18_c01140{bottom:308.820000px;}
.y17_c01140{bottom:333.120000px;}
.y16_c01140{bottom:357.120000px;}
.y15_c01140{bottom:381.720000px;}
.y14_c01140{bottom:406.020000px;}
.y13_c01140{bottom:429.870000px;}
.y12_c01140{bottom:454.920000px;}
.y11_c01140{bottom:479.520000px;}
.y10_c01140{bottom:502.920000px;}
.yf_c01140{bottom:526.470000px;}
.ye_c01140{bottom:551.070000px;}
.yd_c01140{bottom:574.470000px;}
.yc_c01140{bottom:599.370000px;}
.yb_c01140{bottom:622.320000px;}
.ya_c01140{bottom:647.970000px;}
.y9_c01140{bottom:670.920000px;}
.y8_c01140{bottom:695.520000px;}
.y7_c01140{bottom:719.520000px;}
.y6_c01140{bottom:743.820000px;}
.y5_c01140{bottom:768.420000px;}
.y4_c01140{bottom:792.720000px;}
.y3_c01140{bottom:817.020000px;}
.y2_c01140{bottom:833.670000px;}
.y1_c01140{bottom:864.570000px;}
.h5_c01140{height:13.200073px;}
.h6_c01140{height:43.804688px;}
.h1_c01140{height:57.445312px;}
.h2_c01140{height:66.515625px;}
.h4_c01140{height:79.497070px;}
.h3_c01140{height:98.756836px;}
.h0_c01140{height:975.750000px;}
.w2_c01140{width:104.875500px;}
.w0_c01140{width:664.200000px;}
.w1_c01140{width:664.500000px;}
.x0_c01140{left:0.000000px;}
.x2_c01140{left:41.550000px;}
.x1_c01140{left:60.450000px;}
.x3_c01140{left:61.500000px;}
.x4_c01140{left:63.000000px;}
.x5_c01140{left:64.200000px;}
.x6_c01140{left:65.850000px;}
.xa_c01140{left:70.500000px;}
.x7_c01140{left:97.650000px;}
.x8_c01140{left:137.100000px;}
.x9_c01140{left:254.850000px;}
.xb_c01140{left:283.914230px;}
@media print{
.v0_c01140{vertical-align:0.000000pt;}
.ls3_c01140{letter-spacing:0.000000pt;}
.ls4_c01140{letter-spacing:5.333333pt;}
.ls2_c01140{letter-spacing:13.864000pt;}
.ls0_c01140{letter-spacing:26.618667pt;}
.ls1_c01140{letter-spacing:99.333333pt;}
.ws0_c01140{word-spacing:-39.197333pt;}
.ws1_c01140{word-spacing:-16.709333pt;}
.ws2_c01140{word-spacing:0.000000pt;}
._1d_c01140{margin-left:-14.400000pt;}
._d_c01140{margin-left:-10.234667pt;}
._10_c01140{margin-left:-1.520000pt;}
._c_c01140{width:1.418667pt;}
._a_c01140{width:2.482667pt;}
._7_c01140{width:3.800000pt;}
._9_c01140{width:5.117333pt;}
._1_c01140{width:6.181333pt;}
._b_c01140{width:7.346667pt;}
._0_c01140{width:8.664000pt;}
._4_c01140{width:9.981333pt;}
._2_c01140{width:11.501333pt;}
._18_c01140{width:13.584000pt;}
._3_c01140{width:14.490667pt;}
._6_c01140{width:15.858667pt;}
._13_c01140{width:17.322667pt;}
._8_c01140{width:18.594667pt;}
._5_c01140{width:19.861333pt;}
._14_c01140{width:21.426667pt;}
._17_c01140{width:22.445333pt;}
._16_c01140{width:23.864000pt;}
._15_c01140{width:25.592000pt;}
._1b_c01140{width:27.298667pt;}
._1c_c01140{width:28.410667pt;}
._1a_c01140{width:35.552000pt;}
._e_c01140{width:37.442667pt;}
._19_c01140{width:40.624000pt;}
._1e_c01140{width:65.520000pt;}
._11_c01140{width:96.925333pt;}
._12_c01140{width:290.522667pt;}
._1f_c01140{width:601.570667pt;}
._f_c01140{width:605.416000pt;}
.fs1_c01140{font-size:42.666667pt;}
.fs0_c01140{font-size:50.666667pt;}
.fs2_c01140{font-size:58.666667pt;}
.fs3_c01140{font-size:69.333333pt;}
.fs4_c01140{font-size:72.000000pt;}
.y0_c01140{bottom:0.000000pt;}
.y23_c01140{bottom:2.760000pt;}
.y22_c01140{bottom:6.425217pt;}
.y21_c01140{bottom:72.506667pt;}
.y20_c01140{bottom:100.240000pt;}
.y1f_c01140{bottom:121.440000pt;}
.y1e_c01140{bottom:144.240000pt;}
.y1d_c01140{bottom:165.840000pt;}
.y1c_c01140{bottom:187.440000pt;}
.y1b_c01140{bottom:209.440000pt;}
.y1a_c01140{bottom:231.306667pt;}
.y19_c01140{bottom:252.640000pt;}
.y18_c01140{bottom:274.506667pt;}
.y17_c01140{bottom:296.106667pt;}
.y16_c01140{bottom:317.440000pt;}
.y15_c01140{bottom:339.306667pt;}
.y14_c01140{bottom:360.906667pt;}
.y13_c01140{bottom:382.106667pt;}
.y12_c01140{bottom:404.373333pt;}
.y11_c01140{bottom:426.240000pt;}
.y10_c01140{bottom:447.040000pt;}
.yf_c01140{bottom:467.973333pt;}
.ye_c01140{bottom:489.840000pt;}
.yd_c01140{bottom:510.640000pt;}
.yc_c01140{bottom:532.773333pt;}
.yb_c01140{bottom:553.173333pt;}
.ya_c01140{bottom:575.973333pt;}
.y9_c01140{bottom:596.373333pt;}
.y8_c01140{bottom:618.240000pt;}
.y7_c01140{bottom:639.573333pt;}
.y6_c01140{bottom:661.173333pt;}
.y5_c01140{bottom:683.040000pt;}
.y4_c01140{bottom:704.640000pt;}
.y3_c01140{bottom:726.240000pt;}
.y2_c01140{bottom:741.040000pt;}
.y1_c01140{bottom:768.506667pt;}
.h5_c01140{height:11.733399pt;}
.h6_c01140{height:38.937500pt;}
.h1_c01140{height:51.062500pt;}
.h2_c01140{height:59.125000pt;}
.h4_c01140{height:70.664062pt;}
.h3_c01140{height:87.783854pt;}
.h0_c01140{height:867.333333pt;}
.w2_c01140{width:93.222667pt;}
.w0_c01140{width:590.400000pt;}
.w1_c01140{width:590.666667pt;}
.x0_c01140{left:0.000000pt;}
.x2_c01140{left:36.933333pt;}
.x1_c01140{left:53.733333pt;}
.x3_c01140{left:54.666667pt;}
.x4_c01140{left:56.000000pt;}
.x5_c01140{left:57.066667pt;}
.x6_c01140{left:58.533333pt;}
.xa_c01140{left:62.666667pt;}
.x7_c01140{left:86.800000pt;}
.x8_c01140{left:121.866667pt;}
.x9_c01140{left:226.533333pt;}
.xb_c01140{left:252.368205pt;}
}





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

.ir_c01141:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01141{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01141;src:url('chunks/assets/font_6e69440964ce6244cc4451d8.woff2')format("woff");}.ff1_c01141{font-family:ff1_c01141;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01141;src:url('chunks/assets/font_aa445b97232f46a23063ef5a.woff2')format("woff");}.ff2_c01141{font-family:ff2_c01141;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01141;src:url('chunks/assets/font_48c9b9a75ff83a73c54228f1.woff2')format("woff");}.ff3_c01141{font-family:ff3_c01141;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01141;src:url('chunks/assets/font_ca4458134931c282dbc6f5cc.woff2')format("woff");}.ff4_c01141{font-family:ff4_c01141;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01141;src:url('chunks/assets/font_63d4f4f9b100ed19f73b39c1.woff2')format("woff");}.ff5_c01141{font-family:ff5_c01141;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01141;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff6_c01141{font-family:ff6_c01141;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01141;src:url('chunks/assets/font_36be3a176d4532b62ce701cd.woff2')format("woff");}.ff7_c01141{font-family:ff7_c01141;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c01141;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff8_c01141{font-family:ff8_c01141;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01141{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01141{vertical-align:0.000000px;}
.v1_c01141{vertical-align:146.400000px;}
.ls6_c01141{letter-spacing:0.000000px;}
.ls5_c01141{letter-spacing:6.000000px;}
.ls1_c01141{letter-spacing:6.150000px;}
.ls3_c01141{letter-spacing:8.100000px;}
.ls0_c01141{letter-spacing:16.212000px;}
.ls4_c01141{letter-spacing:21.759000px;}
.ls2_c01141{letter-spacing:310.350000px;}
.sc__c01141{text-shadow:none;}
.sc0_c01141{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01141{-webkit-text-stroke:0px transparent;}
.sc0_c01141{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01141{word-spacing:-69.384000px;}
.ws3_c01141{word-spacing:-40.032000px;}
.ws5_c01141{word-spacing:-20.250000px;}
.ws1_c01141{word-spacing:-17.352000px;}
.ws2_c01141{word-spacing:-17.250000px;}
.ws6_c01141{word-spacing:0.000000px;}
.ws4_c01141{word-spacing:3.276000px;}
._1a_c01141{margin-left:-16.800000px;}
._1e_c01141{margin-left:-13.203000px;}
._19_c01141{margin-left:-12.099000px;}
._5_c01141{margin-left:-10.608000px;}
._3_c01141{margin-left:-8.424000px;}
._4_c01141{margin-left:-7.182000px;}
._0_c01141{margin-left:-5.700000px;}
._1_c01141{margin-left:-3.876000px;}
._2_c01141{margin-left:-2.052000px;}
._b_c01141{margin-left:-1.005000px;}
._7_c01141{width:1.419000px;}
._6_c01141{width:2.913000px;}
._9_c01141{width:3.978000px;}
._c_c01141{width:5.025000px;}
._8_c01141{width:6.075000px;}
._a_c01141{width:7.176000px;}
._e_c01141{width:8.259000px;}
._d_c01141{width:9.969000px;}
._f_c01141{width:11.619000px;}
._14_c01141{width:13.158000px;}
._10_c01141{width:14.463000px;}
._16_c01141{width:16.089000px;}
._12_c01141{width:17.187000px;}
._11_c01141{width:18.219000px;}
._13_c01141{width:22.524000px;}
._1c_c01141{width:24.060000px;}
._1f_c01141{width:25.104000px;}
._23_c01141{width:27.648000px;}
._20_c01141{width:29.247000px;}
._22_c01141{width:31.164000px;}
._1d_c01141{width:34.419000px;}
._21_c01141{width:36.864000px;}
._18_c01141{width:103.176000px;}
._15_c01141{width:153.351000px;}
._17_c01141{width:176.466000px;}
._1b_c01141{width:294.999000px;}
.fc2_c01141{color:transparent;}
.fc1_c01141{color:rgb(128,128,128);}
.fc0_c01141{color:rgb(0,0,0);}
.fs6_c01141{font-size:48.000000px;}
.fs2_c01141{font-size:69.000000px;}
.fs5_c01141{font-size:72.000000px;}
.fs1_c01141{font-size:78.000000px;}
.fs4_c01141{font-size:81.000000px;}
.fs0_c01141{font-size:114.000000px;}
.fs3_c01141{font-size:273.000000px;}
.y0_c01141{bottom:0.000000px;}
.y25_c01141{bottom:3.105000px;}
.y24_c01141{bottom:7.228363px;}
.y23_c01141{bottom:36.150000px;}
.y22_c01141{bottom:59.850000px;}
.y21_c01141{bottom:85.650000px;}
.y20_c01141{bottom:110.100000px;}
.y1f_c01141{bottom:135.000000px;}
.y1e_c01141{bottom:159.900000px;}
.y1d_c01141{bottom:184.650000px;}
.y1c_c01141{bottom:208.950000px;}
.y1b_c01141{bottom:233.850000px;}
.y1a_c01141{bottom:258.450000px;}
.y19_c01141{bottom:283.050000px;}
.y18_c01141{bottom:307.350000px;}
.y17_c01141{bottom:331.800000px;}
.y16_c01141{bottom:356.700000px;}
.y15_c01141{bottom:381.750000px;}
.y14_c01141{bottom:406.350000px;}
.y13_c01141{bottom:430.200000px;}
.y12_c01141{bottom:454.650000px;}
.y11_c01141{bottom:478.500000px;}
.y10_c01141{bottom:502.800000px;}
.yf_c01141{bottom:527.550000px;}
.ye_c01141{bottom:551.850000px;}
.yd_c01141{bottom:577.500000px;}
.yc_c01141{bottom:602.100000px;}
.yb_c01141{bottom:626.700000px;}
.ya_c01141{bottom:649.950000px;}
.y9_c01141{bottom:674.700000px;}
.y8_c01141{bottom:699.000000px;}
.y7_c01141{bottom:723.900000px;}
.y6_c01141{bottom:748.200000px;}
.y5_c01141{bottom:772.200000px;}
.y3_c01141{bottom:784.500000px;}
.y4_c01141{bottom:796.800000px;}
.y2_c01141{bottom:853.500000px;}
.y1_c01141{bottom:904.500000px;}
.h9_c01141{height:13.200074px;}
.ha_c01141{height:43.804688px;}
.h5_c01141{height:79.497070px;}
.h8_c01141{height:83.226000px;}
.h6_c01141{height:84.269531px;}
.h7_c01141{height:91.160156px;}
.h3_c01141{height:91.291992px;}
.h2_c01141{height:111.829102px;}
.h4_c01141{height:267.934570px;}
.h1_c01141{height:977.250000px;}
.h0_c01141{height:977.400000px;}
.w1_c01141{width:104.875500px;}
.w0_c01141{width:661.500000px;}
.x0_c01141{left:0.000000px;}
.x8_c01141{left:24.300000px;}
.xa_c01141{left:27.750000px;}
.x7_c01141{left:39.450000px;}
.x5_c01141{left:112.050000px;}
.x6_c01141{left:113.100000px;}
.xb_c01141{left:114.450000px;}
.xd_c01141{left:115.500000px;}
.xc_c01141{left:116.550000px;}
.x3_c01141{left:117.900000px;}
.x2_c01141{left:131.250000px;}
.x9_c01141{left:144.150000px;}
.x4_c01141{left:159.900000px;}
.x1_c01141{left:183.300000px;}
.xf_c01141{left:282.564240px;}
.xe_c01141{left:559.950000px;}
@media print{
.v0_c01141{vertical-align:0.000000pt;}
.v1_c01141{vertical-align:130.133333pt;}
.ls6_c01141{letter-spacing:0.000000pt;}
.ls5_c01141{letter-spacing:5.333333pt;}
.ls1_c01141{letter-spacing:5.466667pt;}
.ls3_c01141{letter-spacing:7.200000pt;}
.ls0_c01141{letter-spacing:14.410667pt;}
.ls4_c01141{letter-spacing:19.341333pt;}
.ls2_c01141{letter-spacing:275.866667pt;}
.ws0_c01141{word-spacing:-61.674667pt;}
.ws3_c01141{word-spacing:-35.584000pt;}
.ws5_c01141{word-spacing:-18.000000pt;}
.ws1_c01141{word-spacing:-15.424000pt;}
.ws2_c01141{word-spacing:-15.333333pt;}
.ws6_c01141{word-spacing:0.000000pt;}
.ws4_c01141{word-spacing:2.912000pt;}
._1a_c01141{margin-left:-14.933333pt;}
._1e_c01141{margin-left:-11.736000pt;}
._19_c01141{margin-left:-10.754667pt;}
._5_c01141{margin-left:-9.429333pt;}
._3_c01141{margin-left:-7.488000pt;}
._4_c01141{margin-left:-6.384000pt;}
._0_c01141{margin-left:-5.066667pt;}
._1_c01141{margin-left:-3.445333pt;}
._2_c01141{margin-left:-1.824000pt;}
._b_c01141{margin-left:-0.893333pt;}
._7_c01141{width:1.261333pt;}
._6_c01141{width:2.589333pt;}
._9_c01141{width:3.536000pt;}
._c_c01141{width:4.466667pt;}
._8_c01141{width:5.400000pt;}
._a_c01141{width:6.378667pt;}
._e_c01141{width:7.341333pt;}
._d_c01141{width:8.861333pt;}
._f_c01141{width:10.328000pt;}
._14_c01141{width:11.696000pt;}
._10_c01141{width:12.856000pt;}
._16_c01141{width:14.301333pt;}
._12_c01141{width:15.277333pt;}
._11_c01141{width:16.194667pt;}
._13_c01141{width:20.021333pt;}
._1c_c01141{width:21.386667pt;}
._1f_c01141{width:22.314667pt;}
._23_c01141{width:24.576000pt;}
._20_c01141{width:25.997333pt;}
._22_c01141{width:27.701333pt;}
._1d_c01141{width:30.594667pt;}
._21_c01141{width:32.768000pt;}
._18_c01141{width:91.712000pt;}
._15_c01141{width:136.312000pt;}
._17_c01141{width:156.858667pt;}
._1b_c01141{width:262.221333pt;}
.fs6_c01141{font-size:42.666667pt;}
.fs2_c01141{font-size:61.333333pt;}
.fs5_c01141{font-size:64.000000pt;}
.fs1_c01141{font-size:69.333333pt;}
.fs4_c01141{font-size:72.000000pt;}
.fs0_c01141{font-size:101.333333pt;}
.fs3_c01141{font-size:242.666667pt;}
.y0_c01141{bottom:0.000000pt;}
.y25_c01141{bottom:2.760000pt;}
.y24_c01141{bottom:6.425212pt;}
.y23_c01141{bottom:32.133333pt;}
.y22_c01141{bottom:53.200000pt;}
.y21_c01141{bottom:76.133333pt;}
.y20_c01141{bottom:97.866667pt;}
.y1f_c01141{bottom:120.000000pt;}
.y1e_c01141{bottom:142.133333pt;}
.y1d_c01141{bottom:164.133333pt;}
.y1c_c01141{bottom:185.733333pt;}
.y1b_c01141{bottom:207.866667pt;}
.y1a_c01141{bottom:229.733333pt;}
.y19_c01141{bottom:251.600000pt;}
.y18_c01141{bottom:273.200000pt;}
.y17_c01141{bottom:294.933333pt;}
.y16_c01141{bottom:317.066667pt;}
.y15_c01141{bottom:339.333333pt;}
.y14_c01141{bottom:361.200000pt;}
.y13_c01141{bottom:382.400000pt;}
.y12_c01141{bottom:404.133333pt;}
.y11_c01141{bottom:425.333333pt;}
.y10_c01141{bottom:446.933333pt;}
.yf_c01141{bottom:468.933333pt;}
.ye_c01141{bottom:490.533333pt;}
.yd_c01141{bottom:513.333333pt;}
.yc_c01141{bottom:535.200000pt;}
.yb_c01141{bottom:557.066667pt;}
.ya_c01141{bottom:577.733333pt;}
.y9_c01141{bottom:599.733333pt;}
.y8_c01141{bottom:621.333333pt;}
.y7_c01141{bottom:643.466667pt;}
.y6_c01141{bottom:665.066667pt;}
.y5_c01141{bottom:686.400000pt;}
.y3_c01141{bottom:697.333333pt;}
.y4_c01141{bottom:708.266667pt;}
.y2_c01141{bottom:758.666667pt;}
.y1_c01141{bottom:804.000000pt;}
.h9_c01141{height:11.733399pt;}
.ha_c01141{height:38.937500pt;}
.h5_c01141{height:70.664062pt;}
.h8_c01141{height:73.978667pt;}
.h6_c01141{height:74.906250pt;}
.h7_c01141{height:81.031250pt;}
.h3_c01141{height:81.148438pt;}
.h2_c01141{height:99.403646pt;}
.h4_c01141{height:238.164062pt;}
.h1_c01141{height:868.666667pt;}
.h0_c01141{height:868.800000pt;}
.w1_c01141{width:93.222667pt;}
.w0_c01141{width:588.000000pt;}
.x0_c01141{left:0.000000pt;}
.x8_c01141{left:21.600000pt;}
.xa_c01141{left:24.666667pt;}
.x7_c01141{left:35.066667pt;}
.x5_c01141{left:99.600000pt;}
.x6_c01141{left:100.533333pt;}
.xb_c01141{left:101.733333pt;}
.xd_c01141{left:102.666667pt;}
.xc_c01141{left:103.600000pt;}
.x3_c01141{left:104.800000pt;}
.x2_c01141{left:116.666667pt;}
.x9_c01141{left:128.133333pt;}
.x4_c01141{left:142.133333pt;}
.x1_c01141{left:162.933333pt;}
.xf_c01141{left:251.168213pt;}
.xe_c01141{left:497.733333pt;}
}





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

.ir_c01142:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01142{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01142;src:url('chunks/assets/font_aaaa5e5b9a4c98f06602c5a0.woff2')format("woff");}.ff1_c01142{font-family:ff1_c01142;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01142;src:url('chunks/assets/font_9459473b6861eaa69a9d9c84.woff2')format("woff");}.ff2_c01142{font-family:ff2_c01142;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01142;src:url('chunks/assets/font_68e705e2e63c19c10ff659ea.woff2')format("woff");}.ff3_c01142{font-family:ff3_c01142;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01142;src:url('chunks/assets/font_c6571cf8b496679a8a487ce5.woff2')format("woff");}.ff4_c01142{font-family:ff4_c01142;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01142;src:url('chunks/assets/font_86adf8a942f9bb5cebb3057b.woff2')format("woff");}.ff5_c01142{font-family:ff5_c01142;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01142;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c01142{font-family:ff6_c01142;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01142{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01142{vertical-align:0.000000px;}
.ls7_c01142{letter-spacing:-3.000000px;}
.ls5_c01142{letter-spacing:0.000000px;}
.ls4_c01142{letter-spacing:1.602000px;}
.ls3_c01142{letter-spacing:1.950000px;}
.ls6_c01142{letter-spacing:6.000000px;}
.ls0_c01142{letter-spacing:18.864000px;}
.ls2_c01142{letter-spacing:19.538400px;}
.ls1_c01142{letter-spacing:23.904000px;}
.sc__c01142{text-shadow:none;}
.sc0_c01142{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01142{-webkit-text-stroke:0px transparent;}
.sc0_c01142{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01142{word-spacing:-20.250000px;}
.ws1_c01142{word-spacing:-17.400000px;}
.ws3_c01142{word-spacing:-17.352000px;}
.ws4_c01142{word-spacing:0.000000px;}
.ws2_c01142{word-spacing:2.160000px;}
._10_c01142{margin-left:-22.224000px;}
._1b_c01142{margin-left:-17.091000px;}
._19_c01142{margin-left:-11.907000px;}
._9_c01142{margin-left:-9.963000px;}
._1e_c01142{margin-left:-7.983000px;}
._15_c01142{margin-left:-6.885000px;}
._8_c01142{margin-left:-5.832000px;}
._e_c01142{margin-left:-4.536000px;}
._7_c01142{margin-left:-2.592000px;}
._3_c01142{margin-left:-1.296000px;}
._0_c01142{width:1.215000px;}
._1_c01142{width:2.349000px;}
._2_c01142{width:3.402000px;}
._5_c01142{width:5.265000px;}
._b_c01142{width:6.642000px;}
._6_c01142{width:8.505000px;}
._4_c01142{width:9.963000px;}
._a_c01142{width:11.745000px;}
._f_c01142{width:12.960000px;}
._13_c01142{width:14.499000px;}
._11_c01142{width:16.362000px;}
._1f_c01142{width:17.820000px;}
._22_c01142{width:19.116000px;}
._24_c01142{width:21.384000px;}
._c_c01142{width:22.923000px;}
._20_c01142{width:26.082000px;}
._12_c01142{width:30.294000px;}
._16_c01142{width:31.671000px;}
._21_c01142{width:32.886000px;}
._25_c01142{width:34.113000px;}
._1d_c01142{width:40.152000px;}
._18_c01142{width:55.323000px;}
._17_c01142{width:57.996000px;}
._1a_c01142{width:62.613000px;}
._14_c01142{width:138.834000px;}
._1c_c01142{width:148.341000px;}
._d_c01142{width:155.655000px;}
._26_c01142{width:240.576000px;}
._23_c01142{width:820.935000px;}
.fc2_c01142{color:transparent;}
.fc1_c01142{color:rgb(128,128,128);}
.fc0_c01142{color:rgb(0,0,0);}
.fs4_c01142{font-size:45.600000px;}
.fs6_c01142{font-size:48.000000px;}
.fs3_c01142{font-size:57.000000px;}
.fs1_c01142{font-size:72.000000px;}
.fs2_c01142{font-size:78.000000px;}
.fs0_c01142{font-size:81.000000px;}
.fs5_c01142{font-size:87.000000px;}
.y0_c01142{bottom:0.000000px;}
.y25_c01142{bottom:3.105000px;}
.y24_c01142{bottom:7.228369px;}
.y23_c01142{bottom:62.070000px;}
.y22_c01142{bottom:86.370000px;}
.y21_c01142{bottom:111.420000px;}
.y20_c01142{bottom:136.020000px;}
.y1f_c01142{bottom:160.920000px;}
.y1e_c01142{bottom:185.520000px;}
.y1d_c01142{bottom:209.520000px;}
.y1c_c01142{bottom:234.270000px;}
.y1b_c01142{bottom:258.870000px;}
.y1a_c01142{bottom:283.170000px;}
.y19_c01142{bottom:307.470000px;}
.y18_c01142{bottom:330.420000px;}
.y17_c01142{bottom:356.070000px;}
.y16_c01142{bottom:380.670000px;}
.y15_c01142{bottom:404.970000px;}
.y14_c01142{bottom:429.270000px;}
.y13_c01142{bottom:453.270000px;}
.y12_c01142{bottom:477.570000px;}
.y11_c01142{bottom:501.570000px;}
.y10_c01142{bottom:526.170000px;}
.yf_c01142{bottom:550.020000px;}
.ye_c01142{bottom:573.420000px;}
.yd_c01142{bottom:597.270000px;}
.yc_c01142{bottom:621.720000px;}
.yb_c01142{bottom:645.270000px;}
.ya_c01142{bottom:669.270000px;}
.y9_c01142{bottom:693.570000px;}
.y8_c01142{bottom:718.170000px;}
.y7_c01142{bottom:742.470000px;}
.y6_c01142{bottom:766.020000px;}
.y5_c01142{bottom:790.770000px;}
.y4_c01142{bottom:814.770000px;}
.y3_c01142{bottom:839.070000px;}
.y2_c01142{bottom:862.920000px;}
.y1_c01142{bottom:886.620000px;}
.h7_c01142{height:13.200073px;}
.h8_c01142{height:43.804688px;}
.h3_c01142{height:79.497070px;}
.h5_c01142{height:87.679688px;}
.h2_c01142{height:91.160156px;}
.h4_c01142{height:98.756836px;}
.h6_c01142{height:110.151855px;}
.h1_c01142{height:986.250000px;}
.h0_c01142{height:986.550000px;}
.w1_c01142{width:104.875500px;}
.w0_c01142{width:672.000000px;}
.x0_c01142{left:0.000000px;}
.x1_c01142{left:56.400000px;}
.x2_c01142{left:57.600000px;}
.x3_c01142{left:58.650000px;}
.x4_c01142{left:60.300000px;}
.x5_c01142{left:61.800000px;}
.x7_c01142{left:63.000000px;}
.x8_c01142{left:64.350000px;}
.x6_c01142{left:69.750000px;}
.xa_c01142{left:287.814240px;}
.x9_c01142{left:400.500000px;}
@media print{
.v0_c01142{vertical-align:0.000000pt;}
.ls7_c01142{letter-spacing:-2.666667pt;}
.ls5_c01142{letter-spacing:0.000000pt;}
.ls4_c01142{letter-spacing:1.424000pt;}
.ls3_c01142{letter-spacing:1.733333pt;}
.ls6_c01142{letter-spacing:5.333333pt;}
.ls0_c01142{letter-spacing:16.768000pt;}
.ls2_c01142{letter-spacing:17.367467pt;}
.ls1_c01142{letter-spacing:21.248000pt;}
.ws0_c01142{word-spacing:-18.000000pt;}
.ws1_c01142{word-spacing:-15.466667pt;}
.ws3_c01142{word-spacing:-15.424000pt;}
.ws4_c01142{word-spacing:0.000000pt;}
.ws2_c01142{word-spacing:1.920000pt;}
._10_c01142{margin-left:-19.754667pt;}
._1b_c01142{margin-left:-15.192000pt;}
._19_c01142{margin-left:-10.584000pt;}
._9_c01142{margin-left:-8.856000pt;}
._1e_c01142{margin-left:-7.096000pt;}
._15_c01142{margin-left:-6.120000pt;}
._8_c01142{margin-left:-5.184000pt;}
._e_c01142{margin-left:-4.032000pt;}
._7_c01142{margin-left:-2.304000pt;}
._3_c01142{margin-left:-1.152000pt;}
._0_c01142{width:1.080000pt;}
._1_c01142{width:2.088000pt;}
._2_c01142{width:3.024000pt;}
._5_c01142{width:4.680000pt;}
._b_c01142{width:5.904000pt;}
._6_c01142{width:7.560000pt;}
._4_c01142{width:8.856000pt;}
._a_c01142{width:10.440000pt;}
._f_c01142{width:11.520000pt;}
._13_c01142{width:12.888000pt;}
._11_c01142{width:14.544000pt;}
._1f_c01142{width:15.840000pt;}
._22_c01142{width:16.992000pt;}
._24_c01142{width:19.008000pt;}
._c_c01142{width:20.376000pt;}
._20_c01142{width:23.184000pt;}
._12_c01142{width:26.928000pt;}
._16_c01142{width:28.152000pt;}
._21_c01142{width:29.232000pt;}
._25_c01142{width:30.322667pt;}
._1d_c01142{width:35.690667pt;}
._18_c01142{width:49.176000pt;}
._17_c01142{width:51.552000pt;}
._1a_c01142{width:55.656000pt;}
._14_c01142{width:123.408000pt;}
._1c_c01142{width:131.858667pt;}
._d_c01142{width:138.360000pt;}
._26_c01142{width:213.845333pt;}
._23_c01142{width:729.720000pt;}
.fs4_c01142{font-size:40.533333pt;}
.fs6_c01142{font-size:42.666667pt;}
.fs3_c01142{font-size:50.666667pt;}
.fs1_c01142{font-size:64.000000pt;}
.fs2_c01142{font-size:69.333333pt;}
.fs0_c01142{font-size:72.000000pt;}
.fs5_c01142{font-size:77.333333pt;}
.y0_c01142{bottom:0.000000pt;}
.y25_c01142{bottom:2.760000pt;}
.y24_c01142{bottom:6.425217pt;}
.y23_c01142{bottom:55.173333pt;}
.y22_c01142{bottom:76.773333pt;}
.y21_c01142{bottom:99.040000pt;}
.y20_c01142{bottom:120.906667pt;}
.y1f_c01142{bottom:143.040000pt;}
.y1e_c01142{bottom:164.906667pt;}
.y1d_c01142{bottom:186.240000pt;}
.y1c_c01142{bottom:208.240000pt;}
.y1b_c01142{bottom:230.106667pt;}
.y1a_c01142{bottom:251.706667pt;}
.y19_c01142{bottom:273.306667pt;}
.y18_c01142{bottom:293.706667pt;}
.y17_c01142{bottom:316.506667pt;}
.y16_c01142{bottom:338.373333pt;}
.y15_c01142{bottom:359.973333pt;}
.y14_c01142{bottom:381.573333pt;}
.y13_c01142{bottom:402.906667pt;}
.y12_c01142{bottom:424.506667pt;}
.y11_c01142{bottom:445.840000pt;}
.y10_c01142{bottom:467.706667pt;}
.yf_c01142{bottom:488.906667pt;}
.ye_c01142{bottom:509.706667pt;}
.yd_c01142{bottom:530.906667pt;}
.yc_c01142{bottom:552.640000pt;}
.yb_c01142{bottom:573.573333pt;}
.ya_c01142{bottom:594.906667pt;}
.y9_c01142{bottom:616.506667pt;}
.y8_c01142{bottom:638.373333pt;}
.y7_c01142{bottom:659.973333pt;}
.y6_c01142{bottom:680.906667pt;}
.y5_c01142{bottom:702.906667pt;}
.y4_c01142{bottom:724.240000pt;}
.y3_c01142{bottom:745.840000pt;}
.y2_c01142{bottom:767.040000pt;}
.y1_c01142{bottom:788.106667pt;}
.h7_c01142{height:11.733399pt;}
.h8_c01142{height:38.937500pt;}
.h3_c01142{height:70.664062pt;}
.h5_c01142{height:77.937500pt;}
.h2_c01142{height:81.031250pt;}
.h4_c01142{height:87.783854pt;}
.h6_c01142{height:97.912760pt;}
.h1_c01142{height:876.666667pt;}
.h0_c01142{height:876.933333pt;}
.w1_c01142{width:93.222667pt;}
.w0_c01142{width:597.333333pt;}
.x0_c01142{left:0.000000pt;}
.x1_c01142{left:50.133333pt;}
.x2_c01142{left:51.200000pt;}
.x3_c01142{left:52.133333pt;}
.x4_c01142{left:53.600000pt;}
.x5_c01142{left:54.933333pt;}
.x7_c01142{left:56.000000pt;}
.x8_c01142{left:57.200000pt;}
.x6_c01142{left:62.000000pt;}
.xa_c01142{left:255.834880pt;}
.x9_c01142{left:356.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_c01143 {
    display:none;
  }
  .loading-indicator_c01143.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01143 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01143 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01143" -> "#page-container .classname_c01143")
 */
.pf_c01143 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01143 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01143.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01143 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01143 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01143 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01143 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01143 {overflow:visible;}
  }
}
.c_c01143 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01143 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01143:after { /* webkit #35443 */
  content: '';
}
.t_c01143:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01143 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01143 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01143 { /* info for Javascript */
  display:none;
}
.l_c01143 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01143 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01143 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01143:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01143{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01143;src:url('chunks/assets/font_4aa5aeadbcc0cc48cf4667b4.woff2')format("woff");}.ff1_c01143{font-family:ff1_c01143;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01143;src:url('chunks/assets/font_a0a8da5f9c74a1114715073f.woff2')format("woff");}.ff2_c01143{font-family:ff2_c01143;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01143;src:url('chunks/assets/font_61fb315663b2b4697f2002f9.woff2')format("woff");}.ff3_c01143{font-family:ff3_c01143;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01143;src:url('chunks/assets/font_78d27923404748115a99958a.woff2')format("woff");}.ff4_c01143{font-family:ff4_c01143;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01143;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c01143{font-family:ff5_c01143;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01143{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c01143{vertical-align:-76.800000px;}
.v0_c01143{vertical-align:0.000000px;}
.ls1_c01143{letter-spacing:0.000000px;}
.ls0_c01143{letter-spacing:5.802000px;}
.ls2_c01143{letter-spacing:6.000000px;}
.sc__c01143{text-shadow:none;}
.sc0_c01143{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01143{-webkit-text-stroke:0px transparent;}
.sc0_c01143{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01143{word-spacing:-13.737000px;}
.ws1_c01143{word-spacing:0.000000px;}
._17_c01143{margin-left:-41.673000px;}
._d_c01143{margin-left:-19.278000px;}
._26_c01143{margin-left:-18.144000px;}
._15_c01143{margin-left:-14.271000px;}
._29_c01143{margin-left:-13.122000px;}
._10_c01143{margin-left:-12.012000px;}
._1d_c01143{margin-left:-10.839000px;}
._24_c01143{margin-left:-9.555000px;}
._c_c01143{margin-left:-8.019000px;}
._b_c01143{margin-left:-6.561000px;}
._16_c01143{margin-left:-5.208000px;}
._14_c01143{margin-left:-4.161000px;}
._7_c01143{margin-left:-3.078000px;}
._4_c01143{margin-left:-1.215000px;}
._6_c01143{width:1.782000px;}
._5_c01143{width:3.078000px;}
._2_c01143{width:4.779000px;}
._1_c01143{width:6.075000px;}
._3_c01143{width:7.857000px;}
._0_c01143{width:8.991000px;}
._a_c01143{width:10.206000px;}
._9_c01143{width:11.340000px;}
._12_c01143{width:12.567000px;}
._1e_c01143{width:13.734000px;}
._e_c01143{width:15.066000px;}
._1b_c01143{width:16.623000px;}
._1a_c01143{width:18.288000px;}
._19_c01143{width:19.743000px;}
._1c_c01143{width:20.823000px;}
._11_c01143{width:22.608000px;}
._13_c01143{width:24.213000px;}
._1f_c01143{width:25.434000px;}
._25_c01143{width:27.204000px;}
._f_c01143{width:30.423000px;}
._8_c01143{width:33.372000px;}
._27_c01143{width:102.708000px;}
._2a_c01143{width:122.229000px;}
._22_c01143{width:133.002000px;}
._23_c01143{width:134.445000px;}
._20_c01143{width:140.268000px;}
._21_c01143{width:237.654000px;}
._28_c01143{width:260.520000px;}
._18_c01143{width:639.222000px;}
._2b_c01143{width:1133.514000px;}
.fc2_c01143{color:transparent;}
.fc1_c01143{color:rgb(128,128,128);}
.fc0_c01143{color:rgb(0,0,0);}
.fs6_c01143{font-size:48.000000px;}
.fs1_c01143{font-size:57.000000px;}
.fs3_c01143{font-size:60.000000px;}
.fs5_c01143{font-size:72.000000px;}
.fs4_c01143{font-size:75.000000px;}
.fs2_c01143{font-size:78.000000px;}
.fs0_c01143{font-size:81.000000px;}
.y0_c01143{bottom:0.000000px;}
.y21_c01143{bottom:3.105000px;}
.y20_c01143{bottom:7.228369px;}
.y1f_c01143{bottom:53.670000px;}
.y1e_c01143{bottom:80.220000px;}
.y1d_c01143{bottom:104.970000px;}
.y1c_c01143{bottom:128.520000px;}
.y1b_c01143{bottom:154.170000px;}
.y1a_c01143{bottom:178.770000px;}
.y19_c01143{bottom:203.820000px;}
.y18_c01143{bottom:229.470000px;}
.y17_c01143{bottom:253.170000px;}
.y16_c01143{bottom:277.470000px;}
.y15_c01143{bottom:301.770000px;}
.y14_c01143{bottom:326.370000px;}
.y13_c01143{bottom:350.970000px;}
.y12_c01143{bottom:375.270000px;}
.y11_c01143{bottom:399.270000px;}
.y10_c01143{bottom:424.170000px;}
.yf_c01143{bottom:448.170000px;}
.ye_c01143{bottom:471.870000px;}
.yd_c01143{bottom:528.120000px;}
.yc_c01143{bottom:556.170000px;}
.yb_c01143{bottom:585.120000px;}
.ya_c01143{bottom:659.070000px;}
.y9_c01143{bottom:683.820000px;}
.y8_c01143{bottom:706.770000px;}
.y7_c01143{bottom:731.970000px;}
.y6_c01143{bottom:756.570000px;}
.y5_c01143{bottom:779.970000px;}
.y4_c01143{bottom:804.570000px;}
.y3_c01143{bottom:829.170000px;}
.y2_c01143{bottom:853.470000px;}
.y1_c01143{bottom:876.870000px;}
.h8_c01143{height:13.200073px;}
.h9_c01143{height:43.804688px;}
.h5_c01143{height:66.713379px;}
.h3_c01143{height:72.168457px;}
.h2_c01143{height:79.497070px;}
.h7_c01143{height:84.269531px;}
.h6_c01143{height:94.958496px;}
.h4_c01143{height:98.756836px;}
.h1_c01143{height:967.500000px;}
.h0_c01143{height:967.650000px;}
.w2_c01143{width:104.875500px;}
.w1_c01143{width:654.750000px;}
.w0_c01143{width:655.050000px;}
.x0_c01143{left:0.000000px;}
.xa_c01143{left:29.100000px;}
.xb_c01143{left:31.050000px;}
.x3_c01143{left:121.200000px;}
.x2_c01143{left:122.850000px;}
.x1_c01143{left:123.900000px;}
.xc_c01143{left:126.000000px;}
.x9_c01143{left:139.500000px;}
.x4_c01143{left:151.500000px;}
.x6_c01143{left:247.800000px;}
.x8_c01143{left:261.000000px;}
.xd_c01143{left:279.339249px;}
.x5_c01143{left:285.150000px;}
.x7_c01143{left:302.100000px;}
@media print{
.v1_c01143{vertical-align:-68.266667pt;}
.v0_c01143{vertical-align:0.000000pt;}
.ls1_c01143{letter-spacing:0.000000pt;}
.ls0_c01143{letter-spacing:5.157333pt;}
.ls2_c01143{letter-spacing:5.333333pt;}
.ws0_c01143{word-spacing:-12.210667pt;}
.ws1_c01143{word-spacing:0.000000pt;}
._17_c01143{margin-left:-37.042667pt;}
._d_c01143{margin-left:-17.136000pt;}
._26_c01143{margin-left:-16.128000pt;}
._15_c01143{margin-left:-12.685333pt;}
._29_c01143{margin-left:-11.664000pt;}
._10_c01143{margin-left:-10.677333pt;}
._1d_c01143{margin-left:-9.634667pt;}
._24_c01143{margin-left:-8.493333pt;}
._c_c01143{margin-left:-7.128000pt;}
._b_c01143{margin-left:-5.832000pt;}
._16_c01143{margin-left:-4.629333pt;}
._14_c01143{margin-left:-3.698667pt;}
._7_c01143{margin-left:-2.736000pt;}
._4_c01143{margin-left:-1.080000pt;}
._6_c01143{width:1.584000pt;}
._5_c01143{width:2.736000pt;}
._2_c01143{width:4.248000pt;}
._1_c01143{width:5.400000pt;}
._3_c01143{width:6.984000pt;}
._0_c01143{width:7.992000pt;}
._a_c01143{width:9.072000pt;}
._9_c01143{width:10.080000pt;}
._12_c01143{width:11.170667pt;}
._1e_c01143{width:12.208000pt;}
._e_c01143{width:13.392000pt;}
._1b_c01143{width:14.776000pt;}
._1a_c01143{width:16.256000pt;}
._19_c01143{width:17.549333pt;}
._1c_c01143{width:18.509333pt;}
._11_c01143{width:20.096000pt;}
._13_c01143{width:21.522667pt;}
._1f_c01143{width:22.608000pt;}
._25_c01143{width:24.181333pt;}
._f_c01143{width:27.042667pt;}
._8_c01143{width:29.664000pt;}
._27_c01143{width:91.296000pt;}
._2a_c01143{width:108.648000pt;}
._22_c01143{width:118.224000pt;}
._23_c01143{width:119.506667pt;}
._20_c01143{width:124.682667pt;}
._21_c01143{width:211.248000pt;}
._28_c01143{width:231.573333pt;}
._18_c01143{width:568.197333pt;}
._2b_c01143{width:1007.568000pt;}
.fs6_c01143{font-size:42.666667pt;}
.fs1_c01143{font-size:50.666667pt;}
.fs3_c01143{font-size:53.333333pt;}
.fs5_c01143{font-size:64.000000pt;}
.fs4_c01143{font-size:66.666667pt;}
.fs2_c01143{font-size:69.333333pt;}
.fs0_c01143{font-size:72.000000pt;}
.y0_c01143{bottom:0.000000pt;}
.y21_c01143{bottom:2.760000pt;}
.y20_c01143{bottom:6.425217pt;}
.y1f_c01143{bottom:47.706667pt;}
.y1e_c01143{bottom:71.306667pt;}
.y1d_c01143{bottom:93.306667pt;}
.y1c_c01143{bottom:114.240000pt;}
.y1b_c01143{bottom:137.040000pt;}
.y1a_c01143{bottom:158.906667pt;}
.y19_c01143{bottom:181.173333pt;}
.y18_c01143{bottom:203.973333pt;}
.y17_c01143{bottom:225.040000pt;}
.y16_c01143{bottom:246.640000pt;}
.y15_c01143{bottom:268.240000pt;}
.y14_c01143{bottom:290.106667pt;}
.y13_c01143{bottom:311.973333pt;}
.y12_c01143{bottom:333.573333pt;}
.y11_c01143{bottom:354.906667pt;}
.y10_c01143{bottom:377.040000pt;}
.yf_c01143{bottom:398.373333pt;}
.ye_c01143{bottom:419.440000pt;}
.yd_c01143{bottom:469.440000pt;}
.yc_c01143{bottom:494.373333pt;}
.yb_c01143{bottom:520.106667pt;}
.ya_c01143{bottom:585.840000pt;}
.y9_c01143{bottom:607.840000pt;}
.y8_c01143{bottom:628.240000pt;}
.y7_c01143{bottom:650.640000pt;}
.y6_c01143{bottom:672.506667pt;}
.y5_c01143{bottom:693.306667pt;}
.y4_c01143{bottom:715.173333pt;}
.y3_c01143{bottom:737.040000pt;}
.y2_c01143{bottom:758.640000pt;}
.y1_c01143{bottom:779.440000pt;}
.h8_c01143{height:11.733399pt;}
.h9_c01143{height:38.937500pt;}
.h5_c01143{height:59.300781pt;}
.h3_c01143{height:64.149740pt;}
.h2_c01143{height:70.664062pt;}
.h7_c01143{height:74.906250pt;}
.h6_c01143{height:84.407552pt;}
.h4_c01143{height:87.783854pt;}
.h1_c01143{height:860.000000pt;}
.h0_c01143{height:860.133333pt;}
.w2_c01143{width:93.222667pt;}
.w1_c01143{width:582.000000pt;}
.w0_c01143{width:582.266667pt;}
.x0_c01143{left:0.000000pt;}
.xa_c01143{left:25.866667pt;}
.xb_c01143{left:27.600000pt;}
.x3_c01143{left:107.733333pt;}
.x2_c01143{left:109.200000pt;}
.x1_c01143{left:110.133333pt;}
.xc_c01143{left:112.000000pt;}
.x9_c01143{left:124.000000pt;}
.x4_c01143{left:134.666667pt;}
.x6_c01143{left:220.266667pt;}
.x8_c01143{left:232.000000pt;}
.xd_c01143{left:248.301554pt;}
.x5_c01143{left:253.466667pt;}
.x7_c01143{left:268.533333pt;}
}





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

.ir_c01144:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01144{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01144;src:url('chunks/assets/font_133ff9806f2b0d9447625efd.woff2')format("woff");}.ff1_c01144{font-family:ff1_c01144;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01144;src:url('chunks/assets/font_e57b20cbfabdc4814fd3901c.woff2')format("woff");}.ff2_c01144{font-family:ff2_c01144;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01144;src:url('chunks/assets/font_e282101c7b4cc1407c039755.woff2')format("woff");}.ff3_c01144{font-family:ff3_c01144;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01144;src:url('chunks/assets/font_b6267fb19812a19f45c16828.woff2')format("woff");}.ff4_c01144{font-family:ff4_c01144;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01144;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff5_c01144{font-family:ff5_c01144;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01144;src:url('chunks/assets/font_f629d5855659d69eadad331a.woff2')format("woff");}.ff6_c01144{font-family:ff6_c01144;line-height:1.437000;font-style:normal;font-weight: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_c01144;src:url('chunks/assets/font_8dc387b3e52f58c7a7f1b0f9.woff2')format("woff");}.ff7_c01144{font-family:ff7_c01144;line-height:1.437000;font-style:normal;font-weight: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_c01144;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff8_c01144{font-family:ff8_c01144;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01144{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01144{vertical-align:0.000000px;}
.ls5_c01144{letter-spacing:0.000000px;}
.ls6_c01144{letter-spacing:3.000000px;}
.ls0_c01144{letter-spacing:5.400000px;}
.ls3_c01144{letter-spacing:6.000000px;}
.ls2_c01144{letter-spacing:8.280000px;}
.ls1_c01144{letter-spacing:8.400000px;}
.ls4_c01144{letter-spacing:12.000000px;}
.sc__c01144{text-shadow:none;}
.sc0_c01144{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01144{-webkit-text-stroke:0px transparent;}
.sc0_c01144{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01144{word-spacing:-73.686000px;}
.ws0_c01144{word-spacing:-17.352000px;}
.ws1_c01144{word-spacing:-16.500000px;}
.ws3_c01144{word-spacing:0.000000px;}
._29_c01144{margin-left:-38.118000px;}
._2a_c01144{margin-left:-33.855000px;}
._26_c01144{margin-left:-30.360000px;}
._19_c01144{margin-left:-26.796000px;}
._22_c01144{margin-left:-21.207000px;}
._1_c01144{margin-left:-19.860000px;}
._1c_c01144{margin-left:-15.744000px;}
._1b_c01144{margin-left:-13.932000px;}
._9_c01144{margin-left:-11.952000px;}
._1f_c01144{margin-left:-10.872000px;}
._c_c01144{margin-left:-8.952000px;}
._16_c01144{margin-left:-7.179000px;}
._0_c01144{margin-left:-5.280000px;}
._11_c01144{margin-left:-4.134000px;}
._13_c01144{margin-left:-3.126000px;}
._12_c01144{margin-left:-1.380000px;}
._15_c01144{width:1.017000px;}
._d_c01144{width:2.064000px;}
._a_c01144{width:3.264000px;}
._e_c01144{width:4.752000px;}
._b_c01144{width:6.624000px;}
._5_c01144{width:7.848000px;}
._21_c01144{width:8.991000px;}
._6_c01144{width:10.080000px;}
._4_c01144{width:12.168000px;}
._1a_c01144{width:13.443000px;}
._14_c01144{width:14.691000px;}
._7_c01144{width:16.056000px;}
._17_c01144{width:17.262000px;}
._8_c01144{width:18.792000px;}
._3_c01144{width:21.744000px;}
._28_c01144{width:25.515000px;}
._f_c01144{width:33.336000px;}
._24_c01144{width:37.683000px;}
._20_c01144{width:47.448000px;}
._1d_c01144{width:54.756000px;}
._23_c01144{width:83.919000px;}
._10_c01144{width:100.608000px;}
._2b_c01144{width:103.638000px;}
._25_c01144{width:108.864000px;}
._27_c01144{width:176.256000px;}
._2c_c01144{width:203.556000px;}
._1e_c01144{width:269.007000px;}
._2_c01144{width:422.100000px;}
._18_c01144{width:724.194000px;}
.fc2_c01144{color:transparent;}
.fc1_c01144{color:rgb(128,128,128);}
.fc0_c01144{color:rgb(0,0,0);}
.fs5_c01144{font-size:42.000000px;}
.fs7_c01144{font-size:48.000000px;}
.fs0_c01144{font-size:60.000000px;}
.fs2_c01144{font-size:66.000000px;}
.fs4_c01144{font-size:69.000000px;}
.fs1_c01144{font-size:72.000000px;}
.fs3_c01144{font-size:81.000000px;}
.fs6_c01144{font-size:87.000000px;}
.y0_c01144{bottom:0.000000px;}
.y25_c01144{bottom:3.105000px;}
.y24_c01144{bottom:7.228369px;}
.y23_c01144{bottom:73.620000px;}
.y22_c01144{bottom:99.570000px;}
.y21_c01144{bottom:124.170000px;}
.y20_c01144{bottom:147.420000px;}
.y1f_c01144{bottom:173.370000px;}
.y1e_c01144{bottom:198.420000px;}
.y1d_c01144{bottom:222.720000px;}
.y1c_c01144{bottom:246.720000px;}
.y1b_c01144{bottom:271.920000px;}
.y1a_c01144{bottom:295.620000px;}
.y19_c01144{bottom:320.220000px;}
.y18_c01144{bottom:344.520000px;}
.y17_c01144{bottom:368.820000px;}
.y16_c01144{bottom:392.820000px;}
.y15_c01144{bottom:417.720000px;}
.y14_c01144{bottom:442.170000px;}
.y13_c01144{bottom:466.020000px;}
.y12_c01144{bottom:490.620000px;}
.y11_c01144{bottom:514.920000px;}
.y10_c01144{bottom:538.920000px;}
.yf_c01144{bottom:562.920000px;}
.ye_c01144{bottom:586.170000px;}
.yd_c01144{bottom:611.220000px;}
.yc_c01144{bottom:635.070000px;}
.yb_c01144{bottom:658.020000px;}
.ya_c01144{bottom:683.070000px;}
.y9_c01144{bottom:707.370000px;}
.y8_c01144{bottom:731.670000px;}
.y7_c01144{bottom:757.020000px;}
.y6_c01144{bottom:781.020000px;}
.y5_c01144{bottom:804.570000px;}
.y4_c01144{bottom:829.470000px;}
.y3_c01144{bottom:855.120000px;}
.y2_c01144{bottom:878.820000px;}
.y1_c01144{bottom:912.870000px;}
.h6_c01144{height:13.200073px;}
.h7_c01144{height:43.804688px;}
.h3_c01144{height:79.497070px;}
.h2_c01144{height:84.269531px;}
.h4_c01144{height:91.160156px;}
.h5_c01144{height:91.176000px;}
.h1_c01144{height:986.250000px;}
.h0_c01144{height:986.550000px;}
.w1_c01144{width:104.875500px;}
.w0_c01144{width:672.000000px;}
.x0_c01144{left:0.000000px;}
.xf_c01144{left:45.600000px;}
.xe_c01144{left:47.550000px;}
.xd_c01144{left:51.300000px;}
.xc_c01144{left:52.650000px;}
.xb_c01144{left:54.900000px;}
.xa_c01144{left:55.950000px;}
.x8_c01144{left:57.750000px;}
.x9_c01144{left:58.950000px;}
.x4_c01144{left:60.450000px;}
.x5_c01144{left:61.650000px;}
.x3_c01144{left:62.700000px;}
.x2_c01144{left:64.050000px;}
.x6_c01144{left:84.750000px;}
.x1_c01144{left:86.100000px;}
.x7_c01144{left:128.250000px;}
.x10_c01144{left:287.814240px;}
@media print{
.v0_c01144{vertical-align:0.000000pt;}
.ls5_c01144{letter-spacing:0.000000pt;}
.ls6_c01144{letter-spacing:2.666667pt;}
.ls0_c01144{letter-spacing:4.800000pt;}
.ls3_c01144{letter-spacing:5.333333pt;}
.ls2_c01144{letter-spacing:7.360000pt;}
.ls1_c01144{letter-spacing:7.466667pt;}
.ls4_c01144{letter-spacing:10.666667pt;}
.ws2_c01144{word-spacing:-65.498667pt;}
.ws0_c01144{word-spacing:-15.424000pt;}
.ws1_c01144{word-spacing:-14.666667pt;}
.ws3_c01144{word-spacing:0.000000pt;}
._29_c01144{margin-left:-33.882667pt;}
._2a_c01144{margin-left:-30.093333pt;}
._26_c01144{margin-left:-26.986667pt;}
._19_c01144{margin-left:-23.818667pt;}
._22_c01144{margin-left:-18.850667pt;}
._1_c01144{margin-left:-17.653333pt;}
._1c_c01144{margin-left:-13.994667pt;}
._1b_c01144{margin-left:-12.384000pt;}
._9_c01144{margin-left:-10.624000pt;}
._1f_c01144{margin-left:-9.664000pt;}
._c_c01144{margin-left:-7.957333pt;}
._16_c01144{margin-left:-6.381333pt;}
._0_c01144{margin-left:-4.693333pt;}
._11_c01144{margin-left:-3.674667pt;}
._13_c01144{margin-left:-2.778667pt;}
._12_c01144{margin-left:-1.226667pt;}
._15_c01144{width:0.904000pt;}
._d_c01144{width:1.834667pt;}
._a_c01144{width:2.901333pt;}
._e_c01144{width:4.224000pt;}
._b_c01144{width:5.888000pt;}
._5_c01144{width:6.976000pt;}
._21_c01144{width:7.992000pt;}
._6_c01144{width:8.960000pt;}
._4_c01144{width:10.816000pt;}
._1a_c01144{width:11.949333pt;}
._14_c01144{width:13.058667pt;}
._7_c01144{width:14.272000pt;}
._17_c01144{width:15.344000pt;}
._8_c01144{width:16.704000pt;}
._3_c01144{width:19.328000pt;}
._28_c01144{width:22.680000pt;}
._f_c01144{width:29.632000pt;}
._24_c01144{width:33.496000pt;}
._20_c01144{width:42.176000pt;}
._1d_c01144{width:48.672000pt;}
._23_c01144{width:74.594667pt;}
._10_c01144{width:89.429333pt;}
._2b_c01144{width:92.122667pt;}
._25_c01144{width:96.768000pt;}
._27_c01144{width:156.672000pt;}
._2c_c01144{width:180.938667pt;}
._1e_c01144{width:239.117333pt;}
._2_c01144{width:375.200000pt;}
._18_c01144{width:643.728000pt;}
.fs5_c01144{font-size:37.333333pt;}
.fs7_c01144{font-size:42.666667pt;}
.fs0_c01144{font-size:53.333333pt;}
.fs2_c01144{font-size:58.666667pt;}
.fs4_c01144{font-size:61.333333pt;}
.fs1_c01144{font-size:64.000000pt;}
.fs3_c01144{font-size:72.000000pt;}
.fs6_c01144{font-size:77.333333pt;}
.y0_c01144{bottom:0.000000pt;}
.y25_c01144{bottom:2.760000pt;}
.y24_c01144{bottom:6.425217pt;}
.y23_c01144{bottom:65.440000pt;}
.y22_c01144{bottom:88.506667pt;}
.y21_c01144{bottom:110.373333pt;}
.y20_c01144{bottom:131.040000pt;}
.y1f_c01144{bottom:154.106667pt;}
.y1e_c01144{bottom:176.373333pt;}
.y1d_c01144{bottom:197.973333pt;}
.y1c_c01144{bottom:219.306667pt;}
.y1b_c01144{bottom:241.706667pt;}
.y1a_c01144{bottom:262.773333pt;}
.y19_c01144{bottom:284.640000pt;}
.y18_c01144{bottom:306.240000pt;}
.y17_c01144{bottom:327.840000pt;}
.y16_c01144{bottom:349.173333pt;}
.y15_c01144{bottom:371.306667pt;}
.y14_c01144{bottom:393.040000pt;}
.y13_c01144{bottom:414.240000pt;}
.y12_c01144{bottom:436.106667pt;}
.y11_c01144{bottom:457.706667pt;}
.y10_c01144{bottom:479.040000pt;}
.yf_c01144{bottom:500.373333pt;}
.ye_c01144{bottom:521.040000pt;}
.yd_c01144{bottom:543.306667pt;}
.yc_c01144{bottom:564.506667pt;}
.yb_c01144{bottom:584.906667pt;}
.ya_c01144{bottom:607.173333pt;}
.y9_c01144{bottom:628.773333pt;}
.y8_c01144{bottom:650.373333pt;}
.y7_c01144{bottom:672.906667pt;}
.y6_c01144{bottom:694.240000pt;}
.y5_c01144{bottom:715.173333pt;}
.y4_c01144{bottom:737.306667pt;}
.y3_c01144{bottom:760.106667pt;}
.y2_c01144{bottom:781.173333pt;}
.y1_c01144{bottom:811.440000pt;}
.h6_c01144{height:11.733399pt;}
.h7_c01144{height:38.937500pt;}
.h3_c01144{height:70.664062pt;}
.h2_c01144{height:74.906250pt;}
.h4_c01144{height:81.031250pt;}
.h5_c01144{height:81.045333pt;}
.h1_c01144{height:876.666667pt;}
.h0_c01144{height:876.933333pt;}
.w1_c01144{width:93.222667pt;}
.w0_c01144{width:597.333333pt;}
.x0_c01144{left:0.000000pt;}
.xf_c01144{left:40.533333pt;}
.xe_c01144{left:42.266667pt;}
.xd_c01144{left:45.600000pt;}
.xc_c01144{left:46.800000pt;}
.xb_c01144{left:48.800000pt;}
.xa_c01144{left:49.733333pt;}
.x8_c01144{left:51.333333pt;}
.x9_c01144{left:52.400000pt;}
.x4_c01144{left:53.733333pt;}
.x5_c01144{left:54.800000pt;}
.x3_c01144{left:55.733333pt;}
.x2_c01144{left:56.933333pt;}
.x6_c01144{left:75.333333pt;}
.x1_c01144{left:76.533333pt;}
.x7_c01144{left:114.000000pt;}
.x10_c01144{left:255.834880pt;}
}





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

.ir_c01145:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01145{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01145;src:url('chunks/assets/font_a97e69622e1c32ebb7c6ea5c.woff2')format("woff");}.ff1_c01145{font-family:ff1_c01145;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01145;src:url('chunks/assets/font_3109f7a413f67d11bde344f3.woff2')format("woff");}.ff2_c01145{font-family:ff2_c01145;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01145;src:url('chunks/assets/font_d3249fa62c403e184c54bfda.woff2')format("woff");}.ff3_c01145{font-family:ff3_c01145;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01145;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff4_c01145{font-family:ff4_c01145;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01145{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c01145{vertical-align:-15.000000px;}
.v0_c01145{vertical-align:0.000000px;}
.ls1_c01145{letter-spacing:0.000000px;}
.ls0_c01145{letter-spacing:136.560000px;}
.sc__c01145{text-shadow:none;}
.sc0_c01145{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01145{-webkit-text-stroke:0px transparent;}
.sc0_c01145{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01145{word-spacing:-20.250000px;}
.ws3_c01145{word-spacing:-18.798000px;}
.ws1_c01145{word-spacing:-17.352000px;}
.ws2_c01145{word-spacing:-13.737000px;}
.ws4_c01145{word-spacing:0.000000px;}
._1a_c01145{margin-left:-10.686000px;}
._0_c01145{margin-left:-8.415000px;}
._5_c01145{margin-left:-6.534000px;}
._f_c01145{margin-left:-5.265000px;}
._4_c01145{margin-left:-3.267000px;}
._d_c01145{margin-left:-2.241000px;}
._6_c01145{margin-left:-1.188000px;}
._3_c01145{width:1.188000px;}
._2_c01145{width:2.673000px;}
._a_c01145{width:4.617000px;}
._7_c01145{width:5.670000px;}
._8_c01145{width:7.209000px;}
._10_c01145{width:8.289000px;}
._9_c01145{width:9.315000px;}
._14_c01145{width:10.461000px;}
._16_c01145{width:11.664000px;}
._c_c01145{width:12.906000px;}
._12_c01145{width:14.877000px;}
._b_c01145{width:16.038000px;}
._15_c01145{width:17.445000px;}
._18_c01145{width:19.197000px;}
._13_c01145{width:20.646000px;}
._11_c01145{width:23.085000px;}
._17_c01145{width:24.165000px;}
._19_c01145{width:28.917000px;}
._e_c01145{width:35.289000px;}
._1e_c01145{width:37.158000px;}
._1f_c01145{width:43.875000px;}
._1_c01145{width:54.945000px;}
._1d_c01145{width:59.778000px;}
._1c_c01145{width:67.149000px;}
._1b_c01145{width:211.074000px;}
.fc2_c01145{color:transparent;}
.fc1_c01145{color:rgb(128,128,128);}
.fc0_c01145{color:rgb(0,0,0);}
.fs6_c01145{font-size:48.000000px;}
.fs2_c01145{font-size:57.000000px;}
.fs3_c01145{font-size:60.000000px;}
.fs4_c01145{font-size:72.000000px;}
.fs5_c01145{font-size:78.000000px;}
.fs1_c01145{font-size:81.000000px;}
.fs0_c01145{font-size:99.000000px;}
.y0_c01145{bottom:0.000000px;}
.y24_c01145{bottom:3.105000px;}
.y23_c01145{bottom:7.228363px;}
.y22_c01145{bottom:34.350000px;}
.y21_c01145{bottom:59.400000px;}
.y20_c01145{bottom:84.600000px;}
.y1f_c01145{bottom:110.250000px;}
.y1e_c01145{bottom:134.550000px;}
.y1d_c01145{bottom:159.600000px;}
.y1c_c01145{bottom:184.050000px;}
.y1b_c01145{bottom:208.800000px;}
.y1a_c01145{bottom:233.550000px;}
.y19_c01145{bottom:258.150000px;}
.y18_c01145{bottom:282.750000px;}
.y17_c01145{bottom:307.500000px;}
.y16_c01145{bottom:332.400000px;}
.y15_c01145{bottom:356.700000px;}
.y14_c01145{bottom:381.000000px;}
.y13_c01145{bottom:405.000000px;}
.y12_c01145{bottom:429.900000px;}
.y11_c01145{bottom:454.500000px;}
.y10_c01145{bottom:477.600000px;}
.yf_c01145{bottom:501.900000px;}
.ye_c01145{bottom:526.500000px;}
.yd_c01145{bottom:550.800000px;}
.yc_c01145{bottom:574.800000px;}
.yb_c01145{bottom:603.450000px;}
.ya_c01145{bottom:648.600000px;}
.y9_c01145{bottom:695.550000px;}
.y8_c01145{bottom:721.200000px;}
.y7_c01145{bottom:745.500000px;}
.y6_c01145{bottom:770.100000px;}
.y5_c01145{bottom:793.800000px;}
.y4_c01145{bottom:819.150000px;}
.y3_c01145{bottom:843.750000px;}
.y2_c01145{bottom:867.750000px;}
.y1_c01145{bottom:901.800000px;}
.h8_c01145{height:13.200074px;}
.h9_c01145{height:43.804688px;}
.h4_c01145{height:66.713379px;}
.h5_c01145{height:75.966797px;}
.h3_c01145{height:79.497070px;}
.h6_c01145{height:84.269531px;}
.h7_c01145{height:98.756836px;}
.h2_c01145{height:115.870605px;}
.h1_c01145{height:977.250000px;}
.h0_c01145{height:977.400000px;}
.w1_c01145{width:104.875500px;}
.w0_c01145{width:661.500000px;}
.x0_c01145{left:0.000000px;}
.xa_c01145{left:40.800000px;}
.xb_c01145{left:44.250000px;}
.x3_c01145{left:120.900000px;}
.x2_c01145{left:127.950000px;}
.x4_c01145{left:129.900000px;}
.x6_c01145{left:131.250000px;}
.xc_c01145{left:135.450000px;}
.x9_c01145{left:154.200000px;}
.x1_c01145{left:161.100000px;}
.x7_c01145{left:173.850000px;}
.x8_c01145{left:177.300000px;}
.x5_c01145{left:226.500000px;}
.xe_c01145{left:282.564240px;}
.xd_c01145{left:583.200000px;}
@media print{
.v1_c01145{vertical-align:-13.333333pt;}
.v0_c01145{vertical-align:0.000000pt;}
.ls1_c01145{letter-spacing:0.000000pt;}
.ls0_c01145{letter-spacing:121.386667pt;}
.ws0_c01145{word-spacing:-18.000000pt;}
.ws3_c01145{word-spacing:-16.709333pt;}
.ws1_c01145{word-spacing:-15.424000pt;}
.ws2_c01145{word-spacing:-12.210667pt;}
.ws4_c01145{word-spacing:0.000000pt;}
._1a_c01145{margin-left:-9.498667pt;}
._0_c01145{margin-left:-7.480000pt;}
._5_c01145{margin-left:-5.808000pt;}
._f_c01145{margin-left:-4.680000pt;}
._4_c01145{margin-left:-2.904000pt;}
._d_c01145{margin-left:-1.992000pt;}
._6_c01145{margin-left:-1.056000pt;}
._3_c01145{width:1.056000pt;}
._2_c01145{width:2.376000pt;}
._a_c01145{width:4.104000pt;}
._7_c01145{width:5.040000pt;}
._8_c01145{width:6.408000pt;}
._10_c01145{width:7.368000pt;}
._9_c01145{width:8.280000pt;}
._14_c01145{width:9.298667pt;}
._16_c01145{width:10.368000pt;}
._c_c01145{width:11.472000pt;}
._12_c01145{width:13.224000pt;}
._b_c01145{width:14.256000pt;}
._15_c01145{width:15.506667pt;}
._18_c01145{width:17.064000pt;}
._13_c01145{width:18.352000pt;}
._11_c01145{width:20.520000pt;}
._17_c01145{width:21.480000pt;}
._19_c01145{width:25.704000pt;}
._e_c01145{width:31.368000pt;}
._1e_c01145{width:33.029333pt;}
._1f_c01145{width:39.000000pt;}
._1_c01145{width:48.840000pt;}
._1d_c01145{width:53.136000pt;}
._1c_c01145{width:59.688000pt;}
._1b_c01145{width:187.621333pt;}
.fs6_c01145{font-size:42.666667pt;}
.fs2_c01145{font-size:50.666667pt;}
.fs3_c01145{font-size:53.333333pt;}
.fs4_c01145{font-size:64.000000pt;}
.fs5_c01145{font-size:69.333333pt;}
.fs1_c01145{font-size:72.000000pt;}
.fs0_c01145{font-size:88.000000pt;}
.y0_c01145{bottom:0.000000pt;}
.y24_c01145{bottom:2.760000pt;}
.y23_c01145{bottom:6.425212pt;}
.y22_c01145{bottom:30.533333pt;}
.y21_c01145{bottom:52.800000pt;}
.y20_c01145{bottom:75.200000pt;}
.y1f_c01145{bottom:98.000000pt;}
.y1e_c01145{bottom:119.600000pt;}
.y1d_c01145{bottom:141.866667pt;}
.y1c_c01145{bottom:163.600000pt;}
.y1b_c01145{bottom:185.600000pt;}
.y1a_c01145{bottom:207.600000pt;}
.y19_c01145{bottom:229.466667pt;}
.y18_c01145{bottom:251.333333pt;}
.y17_c01145{bottom:273.333333pt;}
.y16_c01145{bottom:295.466667pt;}
.y15_c01145{bottom:317.066667pt;}
.y14_c01145{bottom:338.666667pt;}
.y13_c01145{bottom:360.000000pt;}
.y12_c01145{bottom:382.133333pt;}
.y11_c01145{bottom:404.000000pt;}
.y10_c01145{bottom:424.533333pt;}
.yf_c01145{bottom:446.133333pt;}
.ye_c01145{bottom:468.000000pt;}
.yd_c01145{bottom:489.600000pt;}
.yc_c01145{bottom:510.933333pt;}
.yb_c01145{bottom:536.400000pt;}
.ya_c01145{bottom:576.533333pt;}
.y9_c01145{bottom:618.266667pt;}
.y8_c01145{bottom:641.066667pt;}
.y7_c01145{bottom:662.666667pt;}
.y6_c01145{bottom:684.533333pt;}
.y5_c01145{bottom:705.600000pt;}
.y4_c01145{bottom:728.133333pt;}
.y3_c01145{bottom:750.000000pt;}
.y2_c01145{bottom:771.333333pt;}
.y1_c01145{bottom:801.600000pt;}
.h8_c01145{height:11.733399pt;}
.h9_c01145{height:38.937500pt;}
.h4_c01145{height:59.300781pt;}
.h5_c01145{height:67.526042pt;}
.h3_c01145{height:70.664062pt;}
.h6_c01145{height:74.906250pt;}
.h7_c01145{height:87.783854pt;}
.h2_c01145{height:102.996094pt;}
.h1_c01145{height:868.666667pt;}
.h0_c01145{height:868.800000pt;}
.w1_c01145{width:93.222667pt;}
.w0_c01145{width:588.000000pt;}
.x0_c01145{left:0.000000pt;}
.xa_c01145{left:36.266667pt;}
.xb_c01145{left:39.333333pt;}
.x3_c01145{left:107.466667pt;}
.x2_c01145{left:113.733333pt;}
.x4_c01145{left:115.466667pt;}
.x6_c01145{left:116.666667pt;}
.xc_c01145{left:120.400000pt;}
.x9_c01145{left:137.066667pt;}
.x1_c01145{left:143.200000pt;}
.x7_c01145{left:154.533333pt;}
.x8_c01145{left:157.600000pt;}
.x5_c01145{left:201.333333pt;}
.xe_c01145{left:251.168213pt;}
.xd_c01145{left:518.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_c01146 {
    display:none;
  }
  .loading-indicator_c01146.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01146 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01146 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01146" -> "#page-container .classname_c01146")
 */
.pf_c01146 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01146 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01146.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01146 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01146 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01146 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01146 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01146 {overflow:visible;}
  }
}
.c_c01146 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01146 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01146:after { /* webkit #35443 */
  content: '';
}
.t_c01146:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01146 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01146 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01146 { /* info for Javascript */
  display:none;
}
.l_c01146 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01146 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01146 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01146:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01146{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01146;src:url('chunks/assets/font_aaa91c767c838b7ea48a225c.woff2')format("woff");}.ff1_c01146{font-family:ff1_c01146;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01146;src:url('chunks/assets/font_71ef9367353a11b4857ef304.woff2')format("woff");}.ff2_c01146{font-family:ff2_c01146;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01146;src:url('chunks/assets/font_9f600df103851c57482314ad.woff2')format("woff");}.ff3_c01146{font-family:ff3_c01146;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01146;src:url('chunks/assets/font_cf535313503d9dd3f3994e48.woff2')format("woff");}.ff4_c01146{font-family:ff4_c01146;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01146;src:url('chunks/assets/font_2095e1ddfac13e8018e73676.woff2')format("woff");}.ff5_c01146{font-family:ff5_c01146;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01146;src:url('chunks/assets/font_9843307e8d7f3333af4b1d9c.woff2')format("woff");}.ff6_c01146{font-family:ff6_c01146;line-height:1.284180;font-style:normal;font-weight: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_c01146;src:url('chunks/assets/font_122bb2f36169c6a6db5f20d0.woff2')format("woff");}.ff7_c01146{font-family:ff7_c01146;line-height:1.284180;font-style:normal;font-weight: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_c01146;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff8_c01146{font-family:ff8_c01146;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01146{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01146{vertical-align:0.000000px;}
.lsb_c01146{letter-spacing:-9.000000px;}
.lsa_c01146{letter-spacing:0.000000px;}
.ls5_c01146{letter-spacing:2.550000px;}
.ls9_c01146{letter-spacing:3.000000px;}
.ls8_c01146{letter-spacing:7.176000px;}
.ls2_c01146{letter-spacing:7.608000px;}
.ls3_c01146{letter-spacing:10.815000px;}
.lsc_c01146{letter-spacing:12.000000px;}
.ls0_c01146{letter-spacing:15.264000px;}
.ls4_c01146{letter-spacing:15.615000px;}
.ls1_c01146{letter-spacing:19.500000px;}
.ls6_c01146{letter-spacing:24.300000px;}
.ls7_c01146{letter-spacing:44.700000px;}
.sc__c01146{text-shadow:none;}
.sc0_c01146{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01146{-webkit-text-stroke:0px transparent;}
.sc0_c01146{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01146{word-spacing:-25.992000px;}
.ws2_c01146{word-spacing:-17.820000px;}
.ws4_c01146{word-spacing:-17.352000px;}
.ws5_c01146{word-spacing:-9.750000px;}
.ws0_c01146{word-spacing:-0.912000px;}
.ws6_c01146{word-spacing:0.000000px;}
.ws3_c01146{word-spacing:10.260000px;}
._23_c01146{margin-left:-20.391000px;}
._26_c01146{margin-left:-17.982000px;}
._5_c01146{margin-left:-16.830000px;}
._24_c01146{margin-left:-14.727000px;}
._28_c01146{margin-left:-13.173000px;}
._18_c01146{margin-left:-11.403000px;}
._21_c01146{margin-left:-10.230000px;}
._1f_c01146{margin-left:-7.545000px;}
._7_c01146{margin-left:-6.018000px;}
._11_c01146{margin-left:-5.004000px;}
._6_c01146{margin-left:-3.978000px;}
._c_c01146{margin-left:-2.673000px;}
._b_c01146{margin-left:-1.383000px;}
._d_c01146{width:1.371000px;}
._3_c01146{width:2.448000px;}
._4_c01146{width:4.182000px;}
._2_c01146{width:5.406000px;}
._e_c01146{width:6.561000px;}
._10_c01146{width:7.758000px;}
._14_c01146{width:9.285000px;}
._0_c01146{width:10.506000px;}
._13_c01146{width:11.667000px;}
._f_c01146{width:12.984000px;}
._1_c01146{width:14.688000px;}
._1a_c01146{width:15.744000px;}
._a_c01146{width:16.932000px;}
._17_c01146{width:18.207000px;}
._9_c01146{width:19.380000px;}
._19_c01146{width:20.412000px;}
._15_c01146{width:21.927000px;}
._1c_c01146{width:23.181000px;}
._1b_c01146{width:25.632000px;}
._16_c01146{width:28.776000px;}
._20_c01146{width:30.060000px;}
._1d_c01146{width:32.142000px;}
._27_c01146{width:34.404000px;}
._12_c01146{width:38.748000px;}
._1e_c01146{width:44.415000px;}
._22_c01146{width:48.441000px;}
._2a_c01146{width:88.656000px;}
._25_c01146{width:99.216000px;}
._8_c01146{width:179.010000px;}
._29_c01146{width:293.493000px;}
.fc2_c01146{color:transparent;}
.fc1_c01146{color:rgb(128,128,128);}
.fc0_c01146{color:rgb(0,0,0);}
.fs8_c01146{font-size:36.000000px;}
.fs6_c01146{font-size:45.000000px;}
.fsc_c01146{font-size:48.000000px;}
.fsb_c01146{font-size:51.000000px;}
.fs7_c01146{font-size:54.000000px;}
.fs5_c01146{font-size:57.000000px;}
.fs4_c01146{font-size:66.000000px;}
.fs2_c01146{font-size:72.000000px;}
.fs9_c01146{font-size:78.000000px;}
.fs1_c01146{font-size:81.000000px;}
.fs3_c01146{font-size:87.000000px;}
.fs0_c01146{font-size:102.000000px;}
.fsa_c01146{font-size:210.000000px;}
.y0_c01146{bottom:0.000000px;}
.y27_c01146{bottom:3.105000px;}
.y26_c01146{bottom:7.228371px;}
.y25_c01146{bottom:64.815000px;}
.y24_c01146{bottom:90.165000px;}
.y23_c01146{bottom:115.515000px;}
.y22_c01146{bottom:140.115000px;}
.y21_c01146{bottom:165.165000px;}
.y20_c01146{bottom:189.315000px;}
.y1f_c01146{bottom:214.365000px;}
.y1e_c01146{bottom:238.965000px;}
.y1d_c01146{bottom:263.715000px;}
.y1c_c01146{bottom:288.315000px;}
.y1b_c01146{bottom:312.615000px;}
.y1a_c01146{bottom:336.915000px;}
.y17_c01146{bottom:361.215000px;}
.y19_c01146{bottom:361.515000px;}
.y18_c01146{bottom:385.515000px;}
.y16_c01146{bottom:409.815000px;}
.y15_c01146{bottom:435.165000px;}
.y14_c01146{bottom:458.115000px;}
.y13_c01146{bottom:482.715000px;}
.y12_c01146{bottom:507.315000px;}
.y11_c01146{bottom:531.615000px;}
.y10_c01146{bottom:555.165000px;}
.yf_c01146{bottom:578.865000px;}
.ye_c01146{bottom:602.565000px;}
.yd_c01146{bottom:626.415000px;}
.yc_c01146{bottom:650.715000px;}
.yb_c01146{bottom:675.015000px;}
.ya_c01146{bottom:700.065000px;}
.y9_c01146{bottom:723.615000px;}
.y8_c01146{bottom:747.915000px;}
.y7_c01146{bottom:772.515000px;}
.y6_c01146{bottom:796.515000px;}
.y5_c01146{bottom:821.115000px;}
.y4_c01146{bottom:845.415000px;}
.y3_c01146{bottom:869.115000px;}
.y2_c01146{bottom:893.115000px;}
.y1_c01146{bottom:929.265000px;}
.hc_c01146{height:13.200074px;}
.hd_c01146{height:43.804688px;}
.h7_c01146{height:44.165039px;}
.hb_c01146{height:51.398438px;}
.h6_c01146{height:54.421875px;}
.h5_c01146{height:79.497070px;}
.h3_c01146{height:84.269531px;}
.h4_c01146{height:87.679688px;}
.ha_c01146{height:91.160156px;}
.h8_c01146{height:98.756836px;}
.h2_c01146{height:100.057617px;}
.h9_c01146{height:211.640625px;}
.h1_c01146{height:966.000000px;}
.h0_c01146{height:966.075000px;}
.w1_c01146{width:104.875500px;}
.w0_c01146{width:657.750000px;}
.x0_c01146{left:0.000000px;}
.x2_c01146{left:50.550000px;}
.x3_c01146{left:51.750000px;}
.x5_c01146{left:52.950000px;}
.x4_c01146{left:54.000000px;}
.x6_c01146{left:55.050000px;}
.x7_c01146{left:56.250000px;}
.x9_c01146{left:61.050000px;}
.x8_c01146{left:68.850000px;}
.xa_c01146{left:88.800000px;}
.x1_c01146{left:91.500000px;}
.xc_c01146{left:280.689240px;}
.xb_c01146{left:384.000000px;}
@media print{
.v0_c01146{vertical-align:0.000000pt;}
.lsb_c01146{letter-spacing:-8.000000pt;}
.lsa_c01146{letter-spacing:0.000000pt;}
.ls5_c01146{letter-spacing:2.266667pt;}
.ls9_c01146{letter-spacing:2.666667pt;}
.ls8_c01146{letter-spacing:6.378667pt;}
.ls2_c01146{letter-spacing:6.762667pt;}
.ls3_c01146{letter-spacing:9.613333pt;}
.lsc_c01146{letter-spacing:10.666667pt;}
.ls0_c01146{letter-spacing:13.568000pt;}
.ls4_c01146{letter-spacing:13.880000pt;}
.ls1_c01146{letter-spacing:17.333333pt;}
.ls6_c01146{letter-spacing:21.600000pt;}
.ls7_c01146{letter-spacing:39.733333pt;}
.ws1_c01146{word-spacing:-23.104000pt;}
.ws2_c01146{word-spacing:-15.840000pt;}
.ws4_c01146{word-spacing:-15.424000pt;}
.ws5_c01146{word-spacing:-8.666667pt;}
.ws0_c01146{word-spacing:-0.810667pt;}
.ws6_c01146{word-spacing:0.000000pt;}
.ws3_c01146{word-spacing:9.120000pt;}
._23_c01146{margin-left:-18.125333pt;}
._26_c01146{margin-left:-15.984000pt;}
._5_c01146{margin-left:-14.960000pt;}
._24_c01146{margin-left:-13.090667pt;}
._28_c01146{margin-left:-11.709333pt;}
._18_c01146{margin-left:-10.136000pt;}
._21_c01146{margin-left:-9.093333pt;}
._1f_c01146{margin-left:-6.706667pt;}
._7_c01146{margin-left:-5.349333pt;}
._11_c01146{margin-left:-4.448000pt;}
._6_c01146{margin-left:-3.536000pt;}
._c_c01146{margin-left:-2.376000pt;}
._b_c01146{margin-left:-1.229333pt;}
._d_c01146{width:1.218667pt;}
._3_c01146{width:2.176000pt;}
._4_c01146{width:3.717333pt;}
._2_c01146{width:4.805333pt;}
._e_c01146{width:5.832000pt;}
._10_c01146{width:6.896000pt;}
._14_c01146{width:8.253333pt;}
._0_c01146{width:9.338667pt;}
._13_c01146{width:10.370667pt;}
._f_c01146{width:11.541333pt;}
._1_c01146{width:13.056000pt;}
._1a_c01146{width:13.994667pt;}
._a_c01146{width:15.050667pt;}
._17_c01146{width:16.184000pt;}
._9_c01146{width:17.226667pt;}
._19_c01146{width:18.144000pt;}
._15_c01146{width:19.490667pt;}
._1c_c01146{width:20.605333pt;}
._1b_c01146{width:22.784000pt;}
._16_c01146{width:25.578667pt;}
._20_c01146{width:26.720000pt;}
._1d_c01146{width:28.570667pt;}
._27_c01146{width:30.581333pt;}
._12_c01146{width:34.442667pt;}
._1e_c01146{width:39.480000pt;}
._22_c01146{width:43.058667pt;}
._2a_c01146{width:78.805333pt;}
._25_c01146{width:88.192000pt;}
._8_c01146{width:159.120000pt;}
._29_c01146{width:260.882667pt;}
.fs8_c01146{font-size:32.000000pt;}
.fs6_c01146{font-size:40.000000pt;}
.fsc_c01146{font-size:42.666667pt;}
.fsb_c01146{font-size:45.333333pt;}
.fs7_c01146{font-size:48.000000pt;}
.fs5_c01146{font-size:50.666667pt;}
.fs4_c01146{font-size:58.666667pt;}
.fs2_c01146{font-size:64.000000pt;}
.fs9_c01146{font-size:69.333333pt;}
.fs1_c01146{font-size:72.000000pt;}
.fs3_c01146{font-size:77.333333pt;}
.fs0_c01146{font-size:90.666667pt;}
.fsa_c01146{font-size:186.666667pt;}
.y0_c01146{bottom:0.000000pt;}
.y27_c01146{bottom:2.760000pt;}
.y26_c01146{bottom:6.425219pt;}
.y25_c01146{bottom:57.613333pt;}
.y24_c01146{bottom:80.146667pt;}
.y23_c01146{bottom:102.680000pt;}
.y22_c01146{bottom:124.546667pt;}
.y21_c01146{bottom:146.813333pt;}
.y20_c01146{bottom:168.280000pt;}
.y1f_c01146{bottom:190.546667pt;}
.y1e_c01146{bottom:212.413333pt;}
.y1d_c01146{bottom:234.413333pt;}
.y1c_c01146{bottom:256.280000pt;}
.y1b_c01146{bottom:277.880000pt;}
.y1a_c01146{bottom:299.480000pt;}
.y17_c01146{bottom:321.080000pt;}
.y19_c01146{bottom:321.346667pt;}
.y18_c01146{bottom:342.680000pt;}
.y16_c01146{bottom:364.280000pt;}
.y15_c01146{bottom:386.813333pt;}
.y14_c01146{bottom:407.213333pt;}
.y13_c01146{bottom:429.080000pt;}
.y12_c01146{bottom:450.946667pt;}
.y11_c01146{bottom:472.546667pt;}
.y10_c01146{bottom:493.480000pt;}
.yf_c01146{bottom:514.546667pt;}
.ye_c01146{bottom:535.613333pt;}
.yd_c01146{bottom:556.813333pt;}
.yc_c01146{bottom:578.413333pt;}
.yb_c01146{bottom:600.013333pt;}
.ya_c01146{bottom:622.280000pt;}
.y9_c01146{bottom:643.213333pt;}
.y8_c01146{bottom:664.813333pt;}
.y7_c01146{bottom:686.680000pt;}
.y6_c01146{bottom:708.013333pt;}
.y5_c01146{bottom:729.880000pt;}
.y4_c01146{bottom:751.480000pt;}
.y3_c01146{bottom:772.546667pt;}
.y2_c01146{bottom:793.880000pt;}
.y1_c01146{bottom:826.013333pt;}
.hc_c01146{height:11.733399pt;}
.hd_c01146{height:38.937500pt;}
.h7_c01146{height:39.257812pt;}
.hb_c01146{height:45.687500pt;}
.h6_c01146{height:48.375000pt;}
.h5_c01146{height:70.664062pt;}
.h3_c01146{height:74.906250pt;}
.h4_c01146{height:77.937500pt;}
.ha_c01146{height:81.031250pt;}
.h8_c01146{height:87.783854pt;}
.h2_c01146{height:88.940104pt;}
.h9_c01146{height:188.125000pt;}
.h1_c01146{height:858.666667pt;}
.h0_c01146{height:858.733333pt;}
.w1_c01146{width:93.222667pt;}
.w0_c01146{width:584.666667pt;}
.x0_c01146{left:0.000000pt;}
.x2_c01146{left:44.933333pt;}
.x3_c01146{left:46.000000pt;}
.x5_c01146{left:47.066667pt;}
.x4_c01146{left:48.000000pt;}
.x6_c01146{left:48.933333pt;}
.x7_c01146{left:50.000000pt;}
.x9_c01146{left:54.266667pt;}
.x8_c01146{left:61.200000pt;}
.xa_c01146{left:78.933333pt;}
.x1_c01146{left:81.333333pt;}
.xc_c01146{left:249.501546pt;}
.xb_c01146{left:341.333333pt;}
}





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

.ir_c01147:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01147{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01147;src:url('chunks/assets/font_df704240422222df4cda8dee.woff2')format("woff");}.ff1_c01147{font-family:ff1_c01147;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01147;src:url('chunks/assets/font_7bd974364fef8707c87a5f92.woff2')format("woff");}.ff2_c01147{font-family:ff2_c01147;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01147;src:url('chunks/assets/font_3f3b3d9f8607db9e28c3d085.woff2')format("woff");}.ff3_c01147{font-family:ff3_c01147;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01147;src:url('chunks/assets/font_15216f652ccc7dede364a479.woff2')format("woff");}.ff4_c01147{font-family:ff4_c01147;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01147;src:url('chunks/assets/font_9fbbdcd3eb48079108937380.woff2')format("woff");}.ff5_c01147{font-family:ff5_c01147;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01147;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c01147{font-family:ff6_c01147;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01147{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01147{vertical-align:0.000000px;}
.ls2_c01147{letter-spacing:0.000000px;}
.ls1_c01147{letter-spacing:3.000000px;}
.ls0_c01147{letter-spacing:7.602000px;}
.sc__c01147{text-shadow:none;}
.sc0_c01147{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01147{-webkit-text-stroke:0px transparent;}
.sc0_c01147{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01147{word-spacing:-31.500000px;}
.ws0_c01147{word-spacing:-20.250000px;}
.ws2_c01147{word-spacing:0.000000px;}
._9_c01147{margin-left:-39.204000px;}
._23_c01147{margin-left:-26.130000px;}
._5_c01147{margin-left:-21.942000px;}
._0_c01147{margin-left:-20.700000px;}
._6_c01147{margin-left:-16.767000px;}
._3_c01147{margin-left:-13.938000px;}
._2_c01147{margin-left:-12.282000px;}
._25_c01147{margin-left:-11.154000px;}
._1f_c01147{margin-left:-9.408000px;}
._8_c01147{margin-left:-8.211000px;}
._22_c01147{margin-left:-7.170000px;}
._1e_c01147{margin-left:-6.003000px;}
._21_c01147{margin-left:-4.548000px;}
._1_c01147{margin-left:-2.277000px;}
._4_c01147{margin-left:-1.035000px;}
._d_c01147{width:1.881000px;}
._c_c01147{width:3.168000px;}
._e_c01147{width:4.356000px;}
._17_c01147{width:5.805000px;}
._11_c01147{width:7.407000px;}
._13_c01147{width:8.943000px;}
._12_c01147{width:9.975000px;}
._a_c01147{width:11.781000px;}
._10_c01147{width:12.882000px;}
._14_c01147{width:15.270000px;}
._f_c01147{width:16.872000px;}
._18_c01147{width:18.183000px;}
._1a_c01147{width:19.470000px;}
._1c_c01147{width:20.559000px;}
._16_c01147{width:21.969000px;}
._1d_c01147{width:23.103000px;}
._19_c01147{width:24.441000px;}
._15_c01147{width:26.277000px;}
._1b_c01147{width:28.068000px;}
._28_c01147{width:29.406000px;}
._20_c01147{width:41.343000px;}
._7_c01147{width:67.827000px;}
._24_c01147{width:81.354000px;}
._2a_c01147{width:104.880000px;}
._b_c01147{width:125.136000px;}
._26_c01147{width:144.372000px;}
._27_c01147{width:212.733000px;}
._2b_c01147{width:486.744000px;}
._29_c01147{width:571.224000px;}
._2c_c01147{width:1147.473000px;}
.fc2_c01147{color:transparent;}
.fc1_c01147{color:rgb(128,128,128);}
.fc0_c01147{color:rgb(0,0,0);}
.fs6_c01147{font-size:48.000000px;}
.fs4_c01147{font-size:57.000000px;}
.fs0_c01147{font-size:69.000000px;}
.fs5_c01147{font-size:78.000000px;}
.fs1_c01147{font-size:81.000000px;}
.fs3_c01147{font-size:99.000000px;}
.fs2_c01147{font-size:132.000000px;}
.y0_c01147{bottom:0.000000px;}
.y28_c01147{bottom:3.105000px;}
.y27_c01147{bottom:7.228355px;}
.y26_c01147{bottom:59.985000px;}
.y25_c01147{bottom:83.385000px;}
.y24_c01147{bottom:110.235000px;}
.y23_c01147{bottom:133.635000px;}
.y22_c01147{bottom:156.285000px;}
.y21_c01147{bottom:183.285000px;}
.y20_c01147{bottom:207.435000px;}
.y1f_c01147{bottom:231.735000px;}
.y1e_c01147{bottom:256.785000px;}
.y1d_c01147{bottom:281.085000px;}
.y1c_c01147{bottom:305.385000px;}
.y1b_c01147{bottom:330.435000px;}
.y1a_c01147{bottom:354.585000px;}
.y19_c01147{bottom:379.635000px;}
.y18_c01147{bottom:403.935000px;}
.y17_c01147{bottom:427.635000px;}
.y16_c01147{bottom:451.785000px;}
.y15_c01147{bottom:476.235000px;}
.y14_c01147{bottom:500.385000px;}
.y13_c01147{bottom:525.735000px;}
.y12_c01147{bottom:548.385000px;}
.y11_c01147{bottom:572.685000px;}
.y10_c01147{bottom:597.285000px;}
.yf_c01147{bottom:621.585000px;}
.ye_c01147{bottom:645.585000px;}
.yd_c01147{bottom:670.185000px;}
.yc_c01147{bottom:693.585000px;}
.yb_c01147{bottom:718.485000px;}
.ya_c01147{bottom:742.485000px;}
.y9_c01147{bottom:766.785000px;}
.y8_c01147{bottom:790.635000px;}
.y2_c01147{bottom:807.885000px;}
.y7_c01147{bottom:815.085000px;}
.y1_c01147{bottom:836.985000px;}
.y6_c01147{bottom:839.235000px;}
.y5_c01147{bottom:863.685000px;}
.y4_c01147{bottom:887.835000px;}
.y3_c01147{bottom:923.385000px;}
.h8_c01147{height:13.200074px;}
.h9_c01147{height:43.804688px;}
.h5_c01147{height:57.445312px;}
.h2_c01147{height:67.719727px;}
.h7_c01147{height:72.168457px;}
.h3_c01147{height:79.497070px;}
.h6_c01147{height:98.756836px;}
.h4_c01147{height:167.126953px;}
.h1_c01147{height:969.750000px;}
.h0_c01147{height:969.825000px;}
.w2_c01147{width:104.875500px;}
.w0_c01147{width:656.100000px;}
.w1_c01147{width:656.250000px;}
.x0_c01147{left:0.000000px;}
.x9_c01147{left:33.450000px;}
.x1_c01147{left:50.550000px;}
.xa_c01147{left:54.600000px;}
.xe_c01147{left:83.400000px;}
.x2_c01147{left:93.450000px;}
.xd_c01147{left:103.650000px;}
.xc_c01147{left:108.900000px;}
.xb_c01147{left:112.050000px;}
.x8_c01147{left:113.100000px;}
.x7_c01147{left:114.750000px;}
.x5_c01147{left:116.100000px;}
.x6_c01147{left:117.750000px;}
.x4_c01147{left:119.400000px;}
.x3_c01147{left:138.450000px;}
.xf_c01147{left:147.750000px;}
.x10_c01147{left:279.864258px;}
@media print{
.v0_c01147{vertical-align:0.000000pt;}
.ls2_c01147{letter-spacing:0.000000pt;}
.ls1_c01147{letter-spacing:2.666667pt;}
.ls0_c01147{letter-spacing:6.757333pt;}
.ws1_c01147{word-spacing:-28.000000pt;}
.ws0_c01147{word-spacing:-18.000000pt;}
.ws2_c01147{word-spacing:0.000000pt;}
._9_c01147{margin-left:-34.848000pt;}
._23_c01147{margin-left:-23.226667pt;}
._5_c01147{margin-left:-19.504000pt;}
._0_c01147{margin-left:-18.400000pt;}
._6_c01147{margin-left:-14.904000pt;}
._3_c01147{margin-left:-12.389333pt;}
._2_c01147{margin-left:-10.917333pt;}
._25_c01147{margin-left:-9.914667pt;}
._1f_c01147{margin-left:-8.362667pt;}
._8_c01147{margin-left:-7.298667pt;}
._22_c01147{margin-left:-6.373333pt;}
._1e_c01147{margin-left:-5.336000pt;}
._21_c01147{margin-left:-4.042667pt;}
._1_c01147{margin-left:-2.024000pt;}
._4_c01147{margin-left:-0.920000pt;}
._d_c01147{width:1.672000pt;}
._c_c01147{width:2.816000pt;}
._e_c01147{width:3.872000pt;}
._17_c01147{width:5.160000pt;}
._11_c01147{width:6.584000pt;}
._13_c01147{width:7.949333pt;}
._12_c01147{width:8.866667pt;}
._a_c01147{width:10.472000pt;}
._10_c01147{width:11.450667pt;}
._14_c01147{width:13.573333pt;}
._f_c01147{width:14.997333pt;}
._18_c01147{width:16.162667pt;}
._1a_c01147{width:17.306667pt;}
._1c_c01147{width:18.274667pt;}
._16_c01147{width:19.528000pt;}
._1d_c01147{width:20.536000pt;}
._19_c01147{width:21.725333pt;}
._15_c01147{width:23.357333pt;}
._1b_c01147{width:24.949333pt;}
._28_c01147{width:26.138667pt;}
._20_c01147{width:36.749333pt;}
._7_c01147{width:60.290667pt;}
._24_c01147{width:72.314667pt;}
._2a_c01147{width:93.226667pt;}
._b_c01147{width:111.232000pt;}
._26_c01147{width:128.330667pt;}
._27_c01147{width:189.096000pt;}
._2b_c01147{width:432.661333pt;}
._29_c01147{width:507.754667pt;}
._2c_c01147{width:1019.976000pt;}
.fs6_c01147{font-size:42.666667pt;}
.fs4_c01147{font-size:50.666667pt;}
.fs0_c01147{font-size:61.333333pt;}
.fs5_c01147{font-size:69.333333pt;}
.fs1_c01147{font-size:72.000000pt;}
.fs3_c01147{font-size:88.000000pt;}
.fs2_c01147{font-size:117.333333pt;}
.y0_c01147{bottom:0.000000pt;}
.y28_c01147{bottom:2.760000pt;}
.y27_c01147{bottom:6.425204pt;}
.y26_c01147{bottom:53.320000pt;}
.y25_c01147{bottom:74.120000pt;}
.y24_c01147{bottom:97.986667pt;}
.y23_c01147{bottom:118.786667pt;}
.y22_c01147{bottom:138.920000pt;}
.y21_c01147{bottom:162.920000pt;}
.y20_c01147{bottom:184.386667pt;}
.y1f_c01147{bottom:205.986667pt;}
.y1e_c01147{bottom:228.253333pt;}
.y1d_c01147{bottom:249.853333pt;}
.y1c_c01147{bottom:271.453333pt;}
.y1b_c01147{bottom:293.720000pt;}
.y1a_c01147{bottom:315.186667pt;}
.y19_c01147{bottom:337.453333pt;}
.y18_c01147{bottom:359.053333pt;}
.y17_c01147{bottom:380.120000pt;}
.y16_c01147{bottom:401.586667pt;}
.y15_c01147{bottom:423.320000pt;}
.y14_c01147{bottom:444.786667pt;}
.y13_c01147{bottom:467.320000pt;}
.y12_c01147{bottom:487.453333pt;}
.y11_c01147{bottom:509.053333pt;}
.y10_c01147{bottom:530.920000pt;}
.yf_c01147{bottom:552.520000pt;}
.ye_c01147{bottom:573.853333pt;}
.yd_c01147{bottom:595.720000pt;}
.yc_c01147{bottom:616.520000pt;}
.yb_c01147{bottom:638.653333pt;}
.ya_c01147{bottom:659.986667pt;}
.y9_c01147{bottom:681.586667pt;}
.y8_c01147{bottom:702.786667pt;}
.y2_c01147{bottom:718.120000pt;}
.y7_c01147{bottom:724.520000pt;}
.y1_c01147{bottom:743.986667pt;}
.y6_c01147{bottom:745.986667pt;}
.y5_c01147{bottom:767.720000pt;}
.y4_c01147{bottom:789.186667pt;}
.y3_c01147{bottom:820.786667pt;}
.h8_c01147{height:11.733399pt;}
.h9_c01147{height:38.937500pt;}
.h5_c01147{height:51.062500pt;}
.h2_c01147{height:60.195312pt;}
.h7_c01147{height:64.149740pt;}
.h3_c01147{height:70.664062pt;}
.h6_c01147{height:87.783854pt;}
.h4_c01147{height:148.557292pt;}
.h1_c01147{height:862.000000pt;}
.h0_c01147{height:862.066667pt;}
.w2_c01147{width:93.222667pt;}
.w0_c01147{width:583.200000pt;}
.w1_c01147{width:583.333333pt;}
.x0_c01147{left:0.000000pt;}
.x9_c01147{left:29.733333pt;}
.x1_c01147{left:44.933333pt;}
.xa_c01147{left:48.533333pt;}
.xe_c01147{left:74.133333pt;}
.x2_c01147{left:83.066667pt;}
.xd_c01147{left:92.133333pt;}
.xc_c01147{left:96.800000pt;}
.xb_c01147{left:99.600000pt;}
.x8_c01147{left:100.533333pt;}
.x7_c01147{left:102.000000pt;}
.x5_c01147{left:103.200000pt;}
.x6_c01147{left:104.666667pt;}
.x4_c01147{left:106.133333pt;}
.x3_c01147{left:123.066667pt;}
.xf_c01147{left:131.333333pt;}
.x10_c01147{left:248.768229pt;}
}





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

.ir_c01148:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01148{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01148;src:url('chunks/assets/font_cf7560b08f911ba93e0e98db.woff2')format("woff");}.ff1_c01148{font-family:ff1_c01148;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01148;src:url('chunks/assets/font_75d562eca1b8b5f07301c09c.woff2')format("woff");}.ff2_c01148{font-family:ff2_c01148;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01148;src:url('chunks/assets/font_1cfd542f779060468fb9e5a3.woff2')format("woff");}.ff3_c01148{font-family:ff3_c01148;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01148;src:url('chunks/assets/font_d36335c5937e564728f6e9bc.woff2')format("woff");}.ff4_c01148{font-family:ff4_c01148;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01148;src:url('chunks/assets/font_1fc4daf11b18e45ec004354a.woff2')format("woff");}.ff5_c01148{font-family:ff5_c01148;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01148;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c01148{font-family:ff6_c01148;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01148{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01148{vertical-align:0.000000px;}
.ls2_c01148{letter-spacing:0.000000px;}
.ls3_c01148{letter-spacing:12.000000px;}
.ls1_c01148{letter-spacing:16.200000px;}
.ls0_c01148{letter-spacing:32.202000px;}
.sc__c01148{text-shadow:none;}
.sc0_c01148{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01148{-webkit-text-stroke:0px transparent;}
.sc0_c01148{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01148{word-spacing:-33.000000px;}
.ws1_c01148{word-spacing:-31.500000px;}
.ws3_c01148{word-spacing:0.000000px;}
.ws0_c01148{word-spacing:0.342000px;}
._0_c01148{margin-left:-122.100000px;}
._2_c01148{margin-left:-118.140000px;}
._2b_c01148{margin-left:-40.437000px;}
._2d_c01148{margin-left:-39.366000px;}
._33_c01148{margin-left:-24.540000px;}
._8_c01148{margin-left:-22.869000px;}
._1e_c01148{margin-left:-21.333000px;}
._2f_c01148{margin-left:-19.683000px;}
._b_c01148{margin-left:-17.325000px;}
._9_c01148{margin-left:-14.916000px;}
._4_c01148{margin-left:-13.266000px;}
._2a_c01148{margin-left:-12.069000px;}
._7_c01148{margin-left:-10.560000px;}
._c_c01148{margin-left:-8.712000px;}
._1_c01148{margin-left:-7.260000px;}
._16_c01148{margin-left:-5.553000px;}
._17_c01148{margin-left:-4.410000px;}
._15_c01148{margin-left:-3.168000px;}
._10_c01148{margin-left:-1.386000px;}
._d_c01148{width:1.386000px;}
._21_c01148{width:2.430000px;}
._12_c01148{width:3.438000px;}
._13_c01148{width:4.950000px;}
._f_c01148{width:6.039000px;}
._a_c01148{width:7.326000px;}
._11_c01148{width:8.415000px;}
._14_c01148{width:9.522000px;}
._6_c01148{width:11.385000px;}
._5_c01148{width:12.672000px;}
._1c_c01148{width:13.950000px;}
._18_c01148{width:15.147000px;}
._1a_c01148{width:17.685000px;}
._31_c01148{width:20.250000px;}
._19_c01148{width:23.733000px;}
._27_c01148{width:26.703000px;}
._28_c01148{width:28.152000px;}
._24_c01148{width:29.241000px;}
._20_c01148{width:31.329000px;}
._1b_c01148{width:33.102000px;}
._1f_c01148{width:34.272000px;}
._e_c01148{width:53.856000px;}
._3_c01148{width:57.876000px;}
._2e_c01148{width:80.271000px;}
._23_c01148{width:116.637000px;}
._2c_c01148{width:142.965000px;}
._32_c01148{width:147.414000px;}
._30_c01148{width:149.418000px;}
._34_c01148{width:171.639000px;}
._29_c01148{width:188.460000px;}
._26_c01148{width:208.125000px;}
._22_c01148{width:214.236000px;}
._1d_c01148{width:302.274000px;}
._25_c01148{width:329.157000px;}
._35_c01148{width:398.049000px;}
.fc2_c01148{color:transparent;}
.fc1_c01148{color:rgb(128,128,128);}
.fc0_c01148{color:rgb(0,0,0);}
.fsa_c01148{font-size:48.000000px;}
.fs5_c01148{font-size:54.000000px;}
.fs4_c01148{font-size:57.000000px;}
.fs7_c01148{font-size:63.000000px;}
.fs6_c01148{font-size:66.000000px;}
.fs3_c01148{font-size:72.000000px;}
.fs8_c01148{font-size:78.000000px;}
.fs2_c01148{font-size:81.000000px;}
.fs9_c01148{font-size:84.000000px;}
.fs1_c01148{font-size:99.000000px;}
.fs0_c01148{font-size:132.000000px;}
.y0_c01148{bottom:0.000000px;}
.y26_c01148{bottom:3.105000px;}
.y25_c01148{bottom:7.228355px;}
.y24_c01148{bottom:58.635000px;}
.y23_c01148{bottom:83.385000px;}
.y22_c01148{bottom:109.035000px;}
.y21_c01148{bottom:133.935000px;}
.y20_c01148{bottom:157.935000px;}
.y1f_c01148{bottom:182.535000px;}
.y1e_c01148{bottom:206.535000px;}
.y1d_c01148{bottom:231.435000px;}
.y1c_c01148{bottom:257.535000px;}
.y1b_c01148{bottom:281.385000px;}
.y1a_c01148{bottom:304.335000px;}
.y19_c01148{bottom:329.385000px;}
.y18_c01148{bottom:352.335000px;}
.y17_c01148{bottom:377.985000px;}
.y16_c01148{bottom:401.535000px;}
.y15_c01148{bottom:426.285000px;}
.y14_c01148{bottom:449.835000px;}
.y13_c01148{bottom:475.785000px;}
.y12_c01148{bottom:498.435000px;}
.y11_c01148{bottom:523.785000px;}
.y10_c01148{bottom:546.435000px;}
.yf_c01148{bottom:571.335000px;}
.ye_c01148{bottom:596.685000px;}
.yd_c01148{bottom:617.985000px;}
.yc_c01148{bottom:643.935000px;}
.yb_c01148{bottom:668.235000px;}
.ya_c01148{bottom:690.885000px;}
.y9_c01148{bottom:715.785000px;}
.y8_c01148{bottom:739.785000px;}
.y7_c01148{bottom:765.735000px;}
.y6_c01148{bottom:788.385000px;}
.y5_c01148{bottom:813.285000px;}
.y4_c01148{bottom:837.885000px;}
.y3_c01148{bottom:860.985000px;}
.y2_c01148{bottom:885.885000px;}
.y1_c01148{bottom:922.035000px;}
.h8_c01148{height:13.200074px;}
.h9_c01148{height:43.804688px;}
.h5_c01148{height:72.168457px;}
.h3_c01148{height:79.497070px;}
.h4_c01148{height:84.269531px;}
.h7_c01148{height:84.656250px;}
.h6_c01148{height:98.756836px;}
.h2_c01148{height:167.126953px;}
.h0_c01148{height:980.625000px;}
.h1_c01148{height:981.000000px;}
.w2_c01148{width:104.875500px;}
.w0_c01148{width:667.425000px;}
.w1_c01148{width:667.500000px;}
.x0_c01148{left:0.000000px;}
.x9_c01148{left:29.400000px;}
.xa_c01148{left:32.700000px;}
.xe_c01148{left:43.500000px;}
.xd_c01148{left:46.650000px;}
.xc_c01148{left:49.350000px;}
.x8_c01148{left:52.650000px;}
.xb_c01148{left:54.750000px;}
.x7_c01148{left:55.800000px;}
.x6_c01148{left:57.000000px;}
.x4_c01148{left:59.700000px;}
.x3_c01148{left:61.800000px;}
.x2_c01148{left:63.450000px;}
.x5_c01148{left:65.100000px;}
.x1_c01148{left:75.300000px;}
.x10_c01148{left:285.526749px;}
.xf_c01148{left:362.550000px;}
@media print{
.v0_c01148{vertical-align:0.000000pt;}
.ls2_c01148{letter-spacing:0.000000pt;}
.ls3_c01148{letter-spacing:10.666667pt;}
.ls1_c01148{letter-spacing:14.400000pt;}
.ls0_c01148{letter-spacing:28.624000pt;}
.ws2_c01148{word-spacing:-29.333333pt;}
.ws1_c01148{word-spacing:-28.000000pt;}
.ws3_c01148{word-spacing:0.000000pt;}
.ws0_c01148{word-spacing:0.304000pt;}
._0_c01148{margin-left:-108.533333pt;}
._2_c01148{margin-left:-105.013333pt;}
._2b_c01148{margin-left:-35.944000pt;}
._2d_c01148{margin-left:-34.992000pt;}
._33_c01148{margin-left:-21.813333pt;}
._8_c01148{margin-left:-20.328000pt;}
._1e_c01148{margin-left:-18.962667pt;}
._2f_c01148{margin-left:-17.496000pt;}
._b_c01148{margin-left:-15.400000pt;}
._9_c01148{margin-left:-13.258667pt;}
._4_c01148{margin-left:-11.792000pt;}
._2a_c01148{margin-left:-10.728000pt;}
._7_c01148{margin-left:-9.386667pt;}
._c_c01148{margin-left:-7.744000pt;}
._1_c01148{margin-left:-6.453333pt;}
._16_c01148{margin-left:-4.936000pt;}
._17_c01148{margin-left:-3.920000pt;}
._15_c01148{margin-left:-2.816000pt;}
._10_c01148{margin-left:-1.232000pt;}
._d_c01148{width:1.232000pt;}
._21_c01148{width:2.160000pt;}
._12_c01148{width:3.056000pt;}
._13_c01148{width:4.400000pt;}
._f_c01148{width:5.368000pt;}
._a_c01148{width:6.512000pt;}
._11_c01148{width:7.480000pt;}
._14_c01148{width:8.464000pt;}
._6_c01148{width:10.120000pt;}
._5_c01148{width:11.264000pt;}
._1c_c01148{width:12.400000pt;}
._18_c01148{width:13.464000pt;}
._1a_c01148{width:15.720000pt;}
._31_c01148{width:18.000000pt;}
._19_c01148{width:21.096000pt;}
._27_c01148{width:23.736000pt;}
._28_c01148{width:25.024000pt;}
._24_c01148{width:25.992000pt;}
._20_c01148{width:27.848000pt;}
._1b_c01148{width:29.424000pt;}
._1f_c01148{width:30.464000pt;}
._e_c01148{width:47.872000pt;}
._3_c01148{width:51.445333pt;}
._2e_c01148{width:71.352000pt;}
._23_c01148{width:103.677333pt;}
._2c_c01148{width:127.080000pt;}
._32_c01148{width:131.034667pt;}
._30_c01148{width:132.816000pt;}
._34_c01148{width:152.568000pt;}
._29_c01148{width:167.520000pt;}
._26_c01148{width:185.000000pt;}
._22_c01148{width:190.432000pt;}
._1d_c01148{width:268.688000pt;}
._25_c01148{width:292.584000pt;}
._35_c01148{width:353.821333pt;}
.fsa_c01148{font-size:42.666667pt;}
.fs5_c01148{font-size:48.000000pt;}
.fs4_c01148{font-size:50.666667pt;}
.fs7_c01148{font-size:56.000000pt;}
.fs6_c01148{font-size:58.666667pt;}
.fs3_c01148{font-size:64.000000pt;}
.fs8_c01148{font-size:69.333333pt;}
.fs2_c01148{font-size:72.000000pt;}
.fs9_c01148{font-size:74.666667pt;}
.fs1_c01148{font-size:88.000000pt;}
.fs0_c01148{font-size:117.333333pt;}
.y0_c01148{bottom:0.000000pt;}
.y26_c01148{bottom:2.760000pt;}
.y25_c01148{bottom:6.425204pt;}
.y24_c01148{bottom:52.120000pt;}
.y23_c01148{bottom:74.120000pt;}
.y22_c01148{bottom:96.920000pt;}
.y21_c01148{bottom:119.053333pt;}
.y20_c01148{bottom:140.386667pt;}
.y1f_c01148{bottom:162.253333pt;}
.y1e_c01148{bottom:183.586667pt;}
.y1d_c01148{bottom:205.720000pt;}
.y1c_c01148{bottom:228.920000pt;}
.y1b_c01148{bottom:250.120000pt;}
.y1a_c01148{bottom:270.520000pt;}
.y19_c01148{bottom:292.786667pt;}
.y18_c01148{bottom:313.186667pt;}
.y17_c01148{bottom:335.986667pt;}
.y16_c01148{bottom:356.920000pt;}
.y15_c01148{bottom:378.920000pt;}
.y14_c01148{bottom:399.853333pt;}
.y13_c01148{bottom:422.920000pt;}
.y12_c01148{bottom:443.053333pt;}
.y11_c01148{bottom:465.586667pt;}
.y10_c01148{bottom:485.720000pt;}
.yf_c01148{bottom:507.853333pt;}
.ye_c01148{bottom:530.386667pt;}
.yd_c01148{bottom:549.320000pt;}
.yc_c01148{bottom:572.386667pt;}
.yb_c01148{bottom:593.986667pt;}
.ya_c01148{bottom:614.120000pt;}
.y9_c01148{bottom:636.253333pt;}
.y8_c01148{bottom:657.586667pt;}
.y7_c01148{bottom:680.653333pt;}
.y6_c01148{bottom:700.786667pt;}
.y5_c01148{bottom:722.920000pt;}
.y4_c01148{bottom:744.786667pt;}
.y3_c01148{bottom:765.320000pt;}
.y2_c01148{bottom:787.453333pt;}
.y1_c01148{bottom:819.586667pt;}
.h8_c01148{height:11.733399pt;}
.h9_c01148{height:38.937500pt;}
.h5_c01148{height:64.149740pt;}
.h3_c01148{height:70.664062pt;}
.h4_c01148{height:74.906250pt;}
.h7_c01148{height:75.250000pt;}
.h6_c01148{height:87.783854pt;}
.h2_c01148{height:148.557292pt;}
.h0_c01148{height:871.666667pt;}
.h1_c01148{height:872.000000pt;}
.w2_c01148{width:93.222667pt;}
.w0_c01148{width:593.266667pt;}
.w1_c01148{width:593.333333pt;}
.x0_c01148{left:0.000000pt;}
.x9_c01148{left:26.133333pt;}
.xa_c01148{left:29.066667pt;}
.xe_c01148{left:38.666667pt;}
.xd_c01148{left:41.466667pt;}
.xc_c01148{left:43.866667pt;}
.x8_c01148{left:46.800000pt;}
.xb_c01148{left:48.666667pt;}
.x7_c01148{left:49.600000pt;}
.x6_c01148{left:50.666667pt;}
.x4_c01148{left:53.066667pt;}
.x3_c01148{left:54.933333pt;}
.x2_c01148{left:56.400000pt;}
.x5_c01148{left:57.866667pt;}
.x1_c01148{left:66.933333pt;}
.x10_c01148{left:253.801554pt;}
.xf_c01148{left:322.266667pt;}
}





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

.ir_c01149:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01149{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01149;src:url('chunks/assets/font_bc2c09d67c8e8c272aa6b83c.woff2')format("woff");}.ff1_c01149{font-family:ff1_c01149;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01149;src:url('chunks/assets/font_6efe14f08be419ebbd265e46.woff2')format("woff");}.ff2_c01149{font-family:ff2_c01149;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01149;src:url('chunks/assets/font_4c2900de476262888ca2d3ad.woff2')format("woff");}.ff3_c01149{font-family:ff3_c01149;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01149;src:url('chunks/assets/font_dee1179e5b1ec6a30f441b7d.woff2')format("woff");}.ff4_c01149{font-family:ff4_c01149;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01149;src:url('chunks/assets/font_d64914434fea38d223340235.woff2')format("woff");}.ff5_c01149{font-family:ff5_c01149;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01149;src:url('chunks/assets/font_65065734603eb58f34bc18cb.woff2')format("woff");}.ff6_c01149{font-family:ff6_c01149;line-height:1.401855;font-style:normal;font-weight: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_c01149;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c01149{font-family:ff7_c01149;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01149{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c01149{vertical-align:-24.600000px;}
.v0_c01149{vertical-align:0.000000px;}
.ls4_c01149{letter-spacing:-6.000000px;}
.ls2_c01149{letter-spacing:0.000000px;}
.ls1_c01149{letter-spacing:1.602000px;}
.ls3_c01149{letter-spacing:3.000000px;}
.ls0_c01149{letter-spacing:27.402000px;}
.sc__c01149{text-shadow:none;}
.sc0_c01149{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01149{-webkit-text-stroke:0px transparent;}
.sc0_c01149{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c01149{word-spacing:-18.798000px;}
.ws5_c01149{word-spacing:-9.000000px;}
.ws2_c01149{word-spacing:-1.062000px;}
.ws0_c01149{word-spacing:-0.777000px;}
.ws9_c01149{word-spacing:0.000000px;}
.ws8_c01149{word-spacing:0.114000px;}
.ws3_c01149{word-spacing:0.228000px;}
.ws1_c01149{word-spacing:3.933000px;}
.ws6_c01149{word-spacing:5.538000px;}
.ws7_c01149{word-spacing:43.239000px;}
._22_c01149{margin-left:-26.193000px;}
._20_c01149{margin-left:-17.937000px;}
._1f_c01149{margin-left:-13.047000px;}
._1d_c01149{margin-left:-9.222000px;}
._a_c01149{margin-left:-6.840000px;}
._1e_c01149{margin-left:-5.772000px;}
._11_c01149{margin-left:-4.617000px;}
._1b_c01149{margin-left:-2.508000px;}
._21_c01149{margin-left:-1.140000px;}
._f_c01149{width:1.368000px;}
._5_c01149{width:2.850000px;}
._2_c01149{width:4.503000px;}
._6_c01149{width:6.498000px;}
._3_c01149{width:8.379000px;}
._4_c01149{width:10.317000px;}
._0_c01149{width:12.198000px;}
._b_c01149{width:13.224000px;}
._19_c01149{width:14.364000px;}
._7_c01149{width:16.131000px;}
._8_c01149{width:17.271000px;}
._9_c01149{width:18.981000px;}
._16_c01149{width:20.121000px;}
._1_c01149{width:21.147000px;}
._13_c01149{width:22.407000px;}
._d_c01149{width:23.484000px;}
._c_c01149{width:25.422000px;}
._18_c01149{width:26.448000px;}
._15_c01149{width:28.044000px;}
._10_c01149{width:30.624000px;}
._23_c01149{width:33.516000px;}
._1a_c01149{width:35.934000px;}
._e_c01149{width:38.019000px;}
._14_c01149{width:39.900000px;}
._17_c01149{width:41.838000px;}
._26_c01149{width:142.581000px;}
._24_c01149{width:171.741000px;}
._1c_c01149{width:220.779000px;}
._12_c01149{width:289.725000px;}
._25_c01149{width:364.173000px;}
.fc2_c01149{color:transparent;}
.fc1_c01149{color:rgb(128,128,128);}
.fc0_c01149{color:rgb(0,0,0);}
.fs7_c01149{font-size:48.000000px;}
.fs3_c01149{font-size:54.000000px;}
.fs0_c01149{font-size:57.000000px;}
.fs5_c01149{font-size:60.000000px;}
.fs4_c01149{font-size:63.000000px;}
.fs6_c01149{font-size:72.000000px;}
.fs1_c01149{font-size:75.000000px;}
.fs2_c01149{font-size:78.000000px;}
.y0_c01149{bottom:0.000000px;}
.y25_c01149{bottom:3.105000px;}
.y24_c01149{bottom:7.228371px;}
.y23_c01149{bottom:56.715000px;}
.y22_c01149{bottom:82.815000px;}
.y21_c01149{bottom:108.015000px;}
.y20_c01149{bottom:132.315000px;}
.y1f_c01149{bottom:156.915000px;}
.y1e_c01149{bottom:180.915000px;}
.y1d_c01149{bottom:205.665000px;}
.y1c_c01149{bottom:230.265000px;}
.y1b_c01149{bottom:261.015000px;}
.y1a_c01149{bottom:279.465000px;}
.y19_c01149{bottom:304.065000px;}
.y18_c01149{bottom:328.515000px;}
.y17_c01149{bottom:353.115000px;}
.y16_c01149{bottom:378.015000px;}
.y15_c01149{bottom:402.315000px;}
.y14_c01149{bottom:426.015000px;}
.y13_c01149{bottom:450.315000px;}
.y12_c01149{bottom:474.165000px;}
.y11_c01149{bottom:499.215000px;}
.y10_c01149{bottom:522.765000px;}
.yf_c01149{bottom:546.765000px;}
.ye_c01149{bottom:571.065000px;}
.yd_c01149{bottom:595.665000px;}
.yc_c01149{bottom:619.965000px;}
.yb_c01149{bottom:644.265000px;}
.ya_c01149{bottom:668.565000px;}
.y9_c01149{bottom:693.015000px;}
.y8_c01149{bottom:717.165000px;}
.y7_c01149{bottom:741.465000px;}
.y6_c01149{bottom:765.465000px;}
.y5_c01149{bottom:790.065000px;}
.y4_c01149{bottom:814.815000px;}
.y3_c01149{bottom:838.365000px;}
.y2_c01149{bottom:862.665000px;}
.y1_c01149{bottom:886.965000px;}
.h7_c01149{height:13.200074px;}
.h8_c01149{height:43.804688px;}
.h2_c01149{height:57.445312px;}
.h5_c01149{height:66.713379px;}
.h6_c01149{height:84.269531px;}
.h3_c01149{height:94.958496px;}
.h4_c01149{height:98.756836px;}
.h1_c01149{height:986.250000px;}
.h0_c01149{height:986.325000px;}
.w2_c01149{width:104.875500px;}
.w0_c01149{width:667.425000px;}
.w1_c01149{width:667.500000px;}
.x0_c01149{left:0.000000px;}
.x3_c01149{left:36.450000px;}
.x4_c01149{left:38.100000px;}
.x9_c01149{left:40.800000px;}
.xa_c01149{left:41.850000px;}
.xd_c01149{left:42.900000px;}
.xf_c01149{left:44.550000px;}
.x5_c01149{left:49.650000px;}
.x1_c01149{left:121.500000px;}
.x2_c01149{left:124.500000px;}
.x6_c01149{left:129.900000px;}
.x7_c01149{left:132.000000px;}
.x8_c01149{left:133.050000px;}
.xb_c01149{left:136.050000px;}
.xc_c01149{left:138.000000px;}
.xe_c01149{left:199.350000px;}
.x11_c01149{left:285.526749px;}
.x10_c01149{left:606.150000px;}
@media print{
.v1_c01149{vertical-align:-21.866667pt;}
.v0_c01149{vertical-align:0.000000pt;}
.ls4_c01149{letter-spacing:-5.333333pt;}
.ls2_c01149{letter-spacing:0.000000pt;}
.ls1_c01149{letter-spacing:1.424000pt;}
.ls3_c01149{letter-spacing:2.666667pt;}
.ls0_c01149{letter-spacing:24.357333pt;}
.ws4_c01149{word-spacing:-16.709333pt;}
.ws5_c01149{word-spacing:-8.000000pt;}
.ws2_c01149{word-spacing:-0.944000pt;}
.ws0_c01149{word-spacing:-0.690667pt;}
.ws9_c01149{word-spacing:0.000000pt;}
.ws8_c01149{word-spacing:0.101333pt;}
.ws3_c01149{word-spacing:0.202667pt;}
.ws1_c01149{word-spacing:3.496000pt;}
.ws6_c01149{word-spacing:4.922667pt;}
.ws7_c01149{word-spacing:38.434667pt;}
._22_c01149{margin-left:-23.282667pt;}
._20_c01149{margin-left:-15.944000pt;}
._1f_c01149{margin-left:-11.597333pt;}
._1d_c01149{margin-left:-8.197333pt;}
._a_c01149{margin-left:-6.080000pt;}
._1e_c01149{margin-left:-5.130667pt;}
._11_c01149{margin-left:-4.104000pt;}
._1b_c01149{margin-left:-2.229333pt;}
._21_c01149{margin-left:-1.013333pt;}
._f_c01149{width:1.216000pt;}
._5_c01149{width:2.533333pt;}
._2_c01149{width:4.002667pt;}
._6_c01149{width:5.776000pt;}
._3_c01149{width:7.448000pt;}
._4_c01149{width:9.170667pt;}
._0_c01149{width:10.842667pt;}
._b_c01149{width:11.754667pt;}
._19_c01149{width:12.768000pt;}
._7_c01149{width:14.338667pt;}
._8_c01149{width:15.352000pt;}
._9_c01149{width:16.872000pt;}
._16_c01149{width:17.885333pt;}
._1_c01149{width:18.797333pt;}
._13_c01149{width:19.917333pt;}
._d_c01149{width:20.874667pt;}
._c_c01149{width:22.597333pt;}
._18_c01149{width:23.509333pt;}
._15_c01149{width:24.928000pt;}
._10_c01149{width:27.221333pt;}
._23_c01149{width:29.792000pt;}
._1a_c01149{width:31.941333pt;}
._e_c01149{width:33.794667pt;}
._14_c01149{width:35.466667pt;}
._17_c01149{width:37.189333pt;}
._26_c01149{width:126.738667pt;}
._24_c01149{width:152.658667pt;}
._1c_c01149{width:196.248000pt;}
._12_c01149{width:257.533333pt;}
._25_c01149{width:323.709333pt;}
.fs7_c01149{font-size:42.666667pt;}
.fs3_c01149{font-size:48.000000pt;}
.fs0_c01149{font-size:50.666667pt;}
.fs5_c01149{font-size:53.333333pt;}
.fs4_c01149{font-size:56.000000pt;}
.fs6_c01149{font-size:64.000000pt;}
.fs1_c01149{font-size:66.666667pt;}
.fs2_c01149{font-size:69.333333pt;}
.y0_c01149{bottom:0.000000pt;}
.y25_c01149{bottom:2.760000pt;}
.y24_c01149{bottom:6.425219pt;}
.y23_c01149{bottom:50.413333pt;}
.y22_c01149{bottom:73.613333pt;}
.y21_c01149{bottom:96.013333pt;}
.y20_c01149{bottom:117.613333pt;}
.y1f_c01149{bottom:139.480000pt;}
.y1e_c01149{bottom:160.813333pt;}
.y1d_c01149{bottom:182.813333pt;}
.y1c_c01149{bottom:204.680000pt;}
.y1b_c01149{bottom:232.013333pt;}
.y1a_c01149{bottom:248.413333pt;}
.y19_c01149{bottom:270.280000pt;}
.y18_c01149{bottom:292.013333pt;}
.y17_c01149{bottom:313.880000pt;}
.y16_c01149{bottom:336.013333pt;}
.y15_c01149{bottom:357.613333pt;}
.y14_c01149{bottom:378.680000pt;}
.y13_c01149{bottom:400.280000pt;}
.y12_c01149{bottom:421.480000pt;}
.y11_c01149{bottom:443.746667pt;}
.y10_c01149{bottom:464.680000pt;}
.yf_c01149{bottom:486.013333pt;}
.ye_c01149{bottom:507.613333pt;}
.yd_c01149{bottom:529.480000pt;}
.yc_c01149{bottom:551.080000pt;}
.yb_c01149{bottom:572.680000pt;}
.ya_c01149{bottom:594.280000pt;}
.y9_c01149{bottom:616.013333pt;}
.y8_c01149{bottom:637.480000pt;}
.y7_c01149{bottom:659.080000pt;}
.y6_c01149{bottom:680.413333pt;}
.y5_c01149{bottom:702.280000pt;}
.y4_c01149{bottom:724.280000pt;}
.y3_c01149{bottom:745.213333pt;}
.y2_c01149{bottom:766.813333pt;}
.y1_c01149{bottom:788.413333pt;}
.h7_c01149{height:11.733399pt;}
.h8_c01149{height:38.937500pt;}
.h2_c01149{height:51.062500pt;}
.h5_c01149{height:59.300781pt;}
.h6_c01149{height:74.906250pt;}
.h3_c01149{height:84.407552pt;}
.h4_c01149{height:87.783854pt;}
.h1_c01149{height:876.666667pt;}
.h0_c01149{height:876.733333pt;}
.w2_c01149{width:93.222667pt;}
.w0_c01149{width:593.266667pt;}
.w1_c01149{width:593.333333pt;}
.x0_c01149{left:0.000000pt;}
.x3_c01149{left:32.400000pt;}
.x4_c01149{left:33.866667pt;}
.x9_c01149{left:36.266667pt;}
.xa_c01149{left:37.200000pt;}
.xd_c01149{left:38.133333pt;}
.xf_c01149{left:39.600000pt;}
.x5_c01149{left:44.133333pt;}
.x1_c01149{left:108.000000pt;}
.x2_c01149{left:110.666667pt;}
.x6_c01149{left:115.466667pt;}
.x7_c01149{left:117.333333pt;}
.x8_c01149{left:118.266667pt;}
.xb_c01149{left:120.933333pt;}
.xc_c01149{left:122.666667pt;}
.xe_c01149{left:177.200000pt;}
.x11_c01149{left:253.801554pt;}
.x10_c01149{left:538.800000pt;}
}





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

.ir_c01150:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01150{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01150;src:url('chunks/assets/font_c67927302e2acdf567bb3069.woff2')format("woff");}.ff1_c01150{font-family:ff1_c01150;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01150;src:url('chunks/assets/font_6a7fa86fdb37a92c5741a1d1.woff2')format("woff");}.ff2_c01150{font-family:ff2_c01150;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01150;src:url('chunks/assets/font_805ce1250c6311b4b30878b9.woff2')format("woff");}.ff3_c01150{font-family:ff3_c01150;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01150;src:url('chunks/assets/font_6a769308b5e21c72adfeb452.woff2')format("woff");}.ff4_c01150{font-family:ff4_c01150;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01150;src:url('chunks/assets/font_117bef15fd692c98bffd3cc3.woff2')format("woff");}.ff5_c01150{font-family:ff5_c01150;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01150;src:url('chunks/assets/font_ca548dfa3daf7db4888c9c63.woff2')format("woff");}.ff6_c01150{font-family:ff6_c01150;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01150;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c01150{font-family:ff7_c01150;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01150{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01150{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01150{vertical-align:0.000000px;}
.ls6_c01150{letter-spacing:-3.000000px;}
.ls5_c01150{letter-spacing:0.000000px;}
.ls3_c01150{letter-spacing:3.000000px;}
.ls2_c01150{letter-spacing:14.700000px;}
.ls1_c01150{letter-spacing:17.802000px;}
.ls0_c01150{letter-spacing:19.950000px;}
.ls4_c01150{letter-spacing:20.394000px;}
.sc__c01150{text-shadow:none;}
.sc0_c01150{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01150{-webkit-text-stroke:0px transparent;}
.sc0_c01150{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01150{word-spacing:-34.644000px;}
.ws0_c01150{word-spacing:-17.352000px;}
.ws3_c01150{word-spacing:-15.750000px;}
.ws1_c01150{word-spacing:-13.737000px;}
.ws4_c01150{word-spacing:0.000000px;}
._7_c01150{margin-left:-23.661000px;}
._9_c01150{margin-left:-21.384000px;}
._18_c01150{margin-left:-19.170000px;}
._16_c01150{margin-left:-15.699000px;}
._15_c01150{margin-left:-12.915000px;}
._28_c01150{margin-left:-10.431000px;}
._e_c01150{margin-left:-8.910000px;}
._1d_c01150{margin-left:-7.614000px;}
._f_c01150{margin-left:-6.534000px;}
._14_c01150{margin-left:-4.338000px;}
._a_c01150{margin-left:-3.069000px;}
._c_c01150{margin-left:-1.188000px;}
._8_c01150{width:1.881000px;}
._13_c01150{width:2.997000px;}
._12_c01150{width:4.212000px;}
._6_c01150{width:5.247000px;}
._2_c01150{width:7.029000px;}
._11_c01150{width:8.991000px;}
._5_c01150{width:10.395000px;}
._2c_c01150{width:11.406000px;}
._3_c01150{width:12.474000px;}
._1_c01150{width:13.761000px;}
._0_c01150{width:15.345000px;}
._30_c01150{width:16.410000px;}
._4_c01150{width:17.424000px;}
._21_c01150{width:18.792000px;}
._2f_c01150{width:19.893000px;}
._2d_c01150{width:21.900000px;}
._25_c01150{width:24.213000px;}
._20_c01150{width:25.632000px;}
._31_c01150{width:26.691000px;}
._1a_c01150{width:28.575000px;}
._2e_c01150{width:30.153000px;}
._1b_c01150{width:31.266000px;}
._19_c01150{width:33.597000px;}
._10_c01150{width:41.085000px;}
._22_c01150{width:43.272000px;}
._24_c01150{width:46.170000px;}
._32_c01150{width:50.787000px;}
._23_c01150{width:61.338000px;}
._b_c01150{width:110.187000px;}
._26_c01150{width:122.976000px;}
._d_c01150{width:175.032000px;}
._2a_c01150{width:195.588000px;}
._2b_c01150{width:238.626000px;}
._27_c01150{width:244.152000px;}
._1f_c01150{width:273.672000px;}
._17_c01150{width:288.666000px;}
._29_c01150{width:295.179000px;}
._1c_c01150{width:317.484000px;}
._1e_c01150{width:670.977000px;}
.fc2_c01150{color:transparent;}
.fc1_c01150{color:rgb(128,128,128);}
.fc0_c01150{color:rgb(0,0,0);}
.fs9_c01150{font-size:48.000000px;}
.fs3_c01150{font-size:54.000000px;}
.fs4_c01150{font-size:57.000000px;}
.fs7_c01150{font-size:69.000000px;}
.fs2_c01150{font-size:72.000000px;}
.fs6_c01150{font-size:75.000000px;}
.fs8_c01150{font-size:78.000000px;}
.fs1_c01150{font-size:81.000000px;}
.fs5_c01150{font-size:84.000000px;}
.fs0_c01150{font-size:99.000000px;}
.y0_c01150{bottom:0.000000px;}
.y26_c01150{bottom:3.105000px;}
.y25_c01150{bottom:7.228357px;}
.y24_c01150{bottom:40.830000px;}
.y23_c01150{bottom:65.430000px;}
.y22_c01150{bottom:91.080000px;}
.y21_c01150{bottom:115.530000px;}
.y20_c01150{bottom:141.030000px;}
.y1f_c01150{bottom:165.030000px;}
.y1e_c01150{bottom:189.630000px;}
.y1d_c01150{bottom:214.380000px;}
.y1c_c01150{bottom:238.980000px;}
.y1b_c01150{bottom:263.280000px;}
.y1a_c01150{bottom:287.580000px;}
.y19_c01150{bottom:311.880000px;}
.y18_c01150{bottom:336.180000px;}
.y17_c01150{bottom:361.230000px;}
.y16_c01150{bottom:384.480000px;}
.y15_c01150{bottom:409.080000px;}
.y14_c01150{bottom:433.380000px;}
.y13_c01150{bottom:457.980000px;}
.y12_c01150{bottom:482.280000px;}
.y11_c01150{bottom:507.630000px;}
.y10_c01150{bottom:529.980000px;}
.yf_c01150{bottom:554.130000px;}
.ye_c01150{bottom:577.830000px;}
.yd_c01150{bottom:601.530000px;}
.yc_c01150{bottom:625.830000px;}
.yb_c01150{bottom:652.080000px;}
.ya_c01150{bottom:674.430000px;}
.y9_c01150{bottom:699.030000px;}
.y8_c01150{bottom:721.680000px;}
.y7_c01150{bottom:746.280000px;}
.y6_c01150{bottom:770.130000px;}
.y5_c01150{bottom:794.880000px;}
.y4_c01150{bottom:819.180000px;}
.y3_c01150{bottom:843.180000px;}
.y2_c01150{bottom:867.780000px;}
.y1_c01150{bottom:907.980000px;}
.ha_c01150{height:13.200074px;}
.hb_c01150{height:43.804688px;}
.h7_c01150{height:57.445312px;}
.h8_c01150{height:72.312000px;}
.h6_c01150{height:73.608398px;}
.h3_c01150{height:79.497070px;}
.h5_c01150{height:82.441406px;}
.h4_c01150{height:84.269531px;}
.h9_c01150{height:98.756836px;}
.h2_c01150{height:115.870605px;}
.h1_c01150{height:973.500000px;}
.h0_c01150{height:973.650000px;}
.w2_c01150{width:104.875500px;}
.w1_c01150{width:662.250000px;}
.w0_c01150{width:662.550000px;}
.x0_c01150{left:0.000000px;}
.x6_c01150{left:30.750000px;}
.x7_c01150{left:45.000000px;}
.x8_c01150{left:46.500000px;}
.x2_c01150{left:47.550000px;}
.x3_c01150{left:49.500000px;}
.x5_c01150{left:51.300000px;}
.x9_c01150{left:70.500000px;}
.x4_c01150{left:76.500000px;}
.x1_c01150{left:96.000000px;}
.xb_c01150{left:283.089249px;}
.xa_c01150{left:520.200000px;}
@media print{
.v0_c01150{vertical-align:0.000000pt;}
.ls6_c01150{letter-spacing:-2.666667pt;}
.ls5_c01150{letter-spacing:0.000000pt;}
.ls3_c01150{letter-spacing:2.666667pt;}
.ls2_c01150{letter-spacing:13.066667pt;}
.ls1_c01150{letter-spacing:15.824000pt;}
.ls0_c01150{letter-spacing:17.733333pt;}
.ls4_c01150{letter-spacing:18.128000pt;}
.ws2_c01150{word-spacing:-30.794667pt;}
.ws0_c01150{word-spacing:-15.424000pt;}
.ws3_c01150{word-spacing:-14.000000pt;}
.ws1_c01150{word-spacing:-12.210667pt;}
.ws4_c01150{word-spacing:0.000000pt;}
._7_c01150{margin-left:-21.032000pt;}
._9_c01150{margin-left:-19.008000pt;}
._18_c01150{margin-left:-17.040000pt;}
._16_c01150{margin-left:-13.954667pt;}
._15_c01150{margin-left:-11.480000pt;}
._28_c01150{margin-left:-9.272000pt;}
._e_c01150{margin-left:-7.920000pt;}
._1d_c01150{margin-left:-6.768000pt;}
._f_c01150{margin-left:-5.808000pt;}
._14_c01150{margin-left:-3.856000pt;}
._a_c01150{margin-left:-2.728000pt;}
._c_c01150{margin-left:-1.056000pt;}
._8_c01150{width:1.672000pt;}
._13_c01150{width:2.664000pt;}
._12_c01150{width:3.744000pt;}
._6_c01150{width:4.664000pt;}
._2_c01150{width:6.248000pt;}
._11_c01150{width:7.992000pt;}
._5_c01150{width:9.240000pt;}
._2c_c01150{width:10.138667pt;}
._3_c01150{width:11.088000pt;}
._1_c01150{width:12.232000pt;}
._0_c01150{width:13.640000pt;}
._30_c01150{width:14.586667pt;}
._4_c01150{width:15.488000pt;}
._21_c01150{width:16.704000pt;}
._2f_c01150{width:17.682667pt;}
._2d_c01150{width:19.466667pt;}
._25_c01150{width:21.522667pt;}
._20_c01150{width:22.784000pt;}
._31_c01150{width:23.725333pt;}
._1a_c01150{width:25.400000pt;}
._2e_c01150{width:26.802667pt;}
._1b_c01150{width:27.792000pt;}
._19_c01150{width:29.864000pt;}
._10_c01150{width:36.520000pt;}
._22_c01150{width:38.464000pt;}
._24_c01150{width:41.040000pt;}
._32_c01150{width:45.144000pt;}
._23_c01150{width:54.522667pt;}
._b_c01150{width:97.944000pt;}
._26_c01150{width:109.312000pt;}
._d_c01150{width:155.584000pt;}
._2a_c01150{width:173.856000pt;}
._2b_c01150{width:212.112000pt;}
._27_c01150{width:217.024000pt;}
._1f_c01150{width:243.264000pt;}
._17_c01150{width:256.592000pt;}
._29_c01150{width:262.381333pt;}
._1c_c01150{width:282.208000pt;}
._1e_c01150{width:596.424000pt;}
.fs9_c01150{font-size:42.666667pt;}
.fs3_c01150{font-size:48.000000pt;}
.fs4_c01150{font-size:50.666667pt;}
.fs7_c01150{font-size:61.333333pt;}
.fs2_c01150{font-size:64.000000pt;}
.fs6_c01150{font-size:66.666667pt;}
.fs8_c01150{font-size:69.333333pt;}
.fs1_c01150{font-size:72.000000pt;}
.fs5_c01150{font-size:74.666667pt;}
.fs0_c01150{font-size:88.000000pt;}
.y0_c01150{bottom:0.000000pt;}
.y26_c01150{bottom:2.760000pt;}
.y25_c01150{bottom:6.425206pt;}
.y24_c01150{bottom:36.293333pt;}
.y23_c01150{bottom:58.160000pt;}
.y22_c01150{bottom:80.960000pt;}
.y21_c01150{bottom:102.693333pt;}
.y20_c01150{bottom:125.360000pt;}
.y1f_c01150{bottom:146.693333pt;}
.y1e_c01150{bottom:168.560000pt;}
.y1d_c01150{bottom:190.560000pt;}
.y1c_c01150{bottom:212.426667pt;}
.y1b_c01150{bottom:234.026667pt;}
.y1a_c01150{bottom:255.626667pt;}
.y19_c01150{bottom:277.226667pt;}
.y18_c01150{bottom:298.826667pt;}
.y17_c01150{bottom:321.093333pt;}
.y16_c01150{bottom:341.760000pt;}
.y15_c01150{bottom:363.626667pt;}
.y14_c01150{bottom:385.226667pt;}
.y13_c01150{bottom:407.093333pt;}
.y12_c01150{bottom:428.693333pt;}
.y11_c01150{bottom:451.226667pt;}
.y10_c01150{bottom:471.093333pt;}
.yf_c01150{bottom:492.560000pt;}
.ye_c01150{bottom:513.626667pt;}
.yd_c01150{bottom:534.693333pt;}
.yc_c01150{bottom:556.293333pt;}
.yb_c01150{bottom:579.626667pt;}
.ya_c01150{bottom:599.493333pt;}
.y9_c01150{bottom:621.360000pt;}
.y8_c01150{bottom:641.493333pt;}
.y7_c01150{bottom:663.360000pt;}
.y6_c01150{bottom:684.560000pt;}
.y5_c01150{bottom:706.560000pt;}
.y4_c01150{bottom:728.160000pt;}
.y3_c01150{bottom:749.493333pt;}
.y2_c01150{bottom:771.360000pt;}
.y1_c01150{bottom:807.093333pt;}
.ha_c01150{height:11.733399pt;}
.hb_c01150{height:38.937500pt;}
.h7_c01150{height:51.062500pt;}
.h8_c01150{height:64.277333pt;}
.h6_c01150{height:65.429688pt;}
.h3_c01150{height:70.664062pt;}
.h5_c01150{height:73.281250pt;}
.h4_c01150{height:74.906250pt;}
.h9_c01150{height:87.783854pt;}
.h2_c01150{height:102.996094pt;}
.h1_c01150{height:865.333333pt;}
.h0_c01150{height:865.466667pt;}
.w2_c01150{width:93.222667pt;}
.w1_c01150{width:588.666667pt;}
.w0_c01150{width:588.933333pt;}
.x0_c01150{left:0.000000pt;}
.x6_c01150{left:27.333333pt;}
.x7_c01150{left:40.000000pt;}
.x8_c01150{left:41.333333pt;}
.x2_c01150{left:42.266667pt;}
.x3_c01150{left:44.000000pt;}
.x5_c01150{left:45.600000pt;}
.x9_c01150{left:62.666667pt;}
.x4_c01150{left:68.000000pt;}
.x1_c01150{left:85.333333pt;}
.xb_c01150{left:251.634888pt;}
.xa_c01150{left:462.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_c01151 {
    display:none;
  }
  .loading-indicator_c01151.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01151 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01151 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01151" -> "#page-container .classname_c01151")
 */
.pf_c01151 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01151 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01151.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01151 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01151 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01151 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01151 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01151 {overflow:visible;}
  }
}
.c_c01151 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01151 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01151:after { /* webkit #35443 */
  content: '';
}
.t_c01151:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01151 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01151 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01151 { /* info for Javascript */
  display:none;
}
.l_c01151 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01151 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01151 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01151:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01151{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01151;src:url('chunks/assets/font_e9e9a71be95c787c7c4d20fc.woff2')format("woff");}.ff1_c01151{font-family:ff1_c01151;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01151;src:url('chunks/assets/font_69adbbe942d58e4beb21e090.woff2')format("woff");}.ff2_c01151{font-family:ff2_c01151;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01151;src:url('chunks/assets/font_c0ff5935824f4b2631cbe5a3.woff2')format("woff");}.ff3_c01151{font-family:ff3_c01151;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01151;src:url('chunks/assets/font_2373d5b897c5a023137d309c.woff2')format("woff");}.ff4_c01151{font-family:ff4_c01151;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01151;src:url('chunks/assets/font_2b1234af6112dba8e1d57ad2.woff2')format("woff");}.ff5_c01151{font-family:ff5_c01151;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01151;src:url('chunks/assets/font_c50b181e5d99c894a90d648b.woff2')format("woff");}.ff6_c01151{font-family:ff6_c01151;line-height:1.311035;font-style:normal;font-weight: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_c01151;src:url('chunks/assets/font_69dd216781fa6392b86de70e.woff2')format("woff");}.ff7_c01151{font-family:ff7_c01151;line-height:1.284180;font-style:normal;font-weight: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_c01151;src:url('chunks/assets/font_85e4f1a8cfc9cb77750ac377.woff2')format("woff");}.ff8_c01151{font-family:ff8_c01151;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c01151;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff9_c01151{font-family:ff9_c01151;line-height:1.219238;font-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_c01151{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m0_c01151{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c01151{vertical-align:-15.000000px;}
.v0_c01151{vertical-align:0.000000px;}
.lsa_c01151{letter-spacing:-9.000000px;}
.lsb_c01151{letter-spacing:-3.000000px;}
.ls7_c01151{letter-spacing:0.000000px;}
.ls1_c01151{letter-spacing:2.802000px;}
.ls9_c01151{letter-spacing:3.000000px;}
.ls8_c01151{letter-spacing:6.000000px;}
.ls0_c01151{letter-spacing:16.500000px;}
.ls4_c01151{letter-spacing:29.802000px;}
.ls3_c01151{letter-spacing:36.402000px;}
.ls2_c01151{letter-spacing:80.202000px;}
.ls6_c01151{letter-spacing:94.620000px;}
.ls5_c01151{letter-spacing:139.650000px;}
.sc__c01151{text-shadow:none;}
.sc0_c01151{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01151{-webkit-text-stroke:0px transparent;}
.sc0_c01151{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01151{word-spacing:-17.352000px;}
.ws1_c01151{word-spacing:-13.737000px;}
.ws4_c01151{word-spacing:0.000000px;}
.ws2_c01151{word-spacing:0.609000px;}
.ws3_c01151{word-spacing:15.273000px;}
._29_c01151{margin-left:-41.607000px;}
._36_c01151{margin-left:-31.491000px;}
._25_c01151{margin-left:-21.924000px;}
._16_c01151{margin-left:-17.415000px;}
._27_c01151{margin-left:-15.552000px;}
._28_c01151{margin-left:-14.013000px;}
._14_c01151{margin-left:-12.717000px;}
._22_c01151{margin-left:-11.016000px;}
._12_c01151{margin-left:-8.991000px;}
._2f_c01151{margin-left:-7.776000px;}
._11_c01151{margin-left:-6.237000px;}
._d_c01151{margin-left:-4.536000px;}
._10_c01151{margin-left:-3.483000px;}
._1_c01151{margin-left:-2.268000px;}
._8_c01151{margin-left:-1.134000px;}
._a_c01151{width:1.134000px;}
._0_c01151{width:2.430000px;}
._2_c01151{width:3.564000px;}
._c_c01151{width:4.698000px;}
._3_c01151{width:5.751000px;}
._5_c01151{width:6.885000px;}
._6_c01151{width:8.667000px;}
._4_c01151{width:10.449000px;}
._7_c01151{width:11.745000px;}
._f_c01151{width:12.960000px;}
._2e_c01151{width:14.013000px;}
._b_c01151{width:15.066000px;}
._13_c01151{width:17.010000px;}
._21_c01151{width:18.306000px;}
._32_c01151{width:19.557000px;}
._9_c01151{width:21.789000px;}
._33_c01151{width:23.670000px;}
._1b_c01151{width:25.515000px;}
._2a_c01151{width:26.778000px;}
._1d_c01151{width:29.187000px;}
._31_c01151{width:30.663000px;}
._15_c01151{width:32.886000px;}
._e_c01151{width:34.506000px;}
._34_c01151{width:35.574000px;}
._2b_c01151{width:38.439000px;}
._2d_c01151{width:40.176000px;}
._1c_c01151{width:47.484000px;}
._37_c01151{width:67.050000px;}
._18_c01151{width:82.134000px;}
._30_c01151{width:129.069000px;}
._19_c01151{width:144.585000px;}
._1e_c01151{width:154.341000px;}
._23_c01151{width:155.601000px;}
._17_c01151{width:164.592000px;}
._26_c01151{width:237.663000px;}
._2c_c01151{width:311.445000px;}
._1f_c01151{width:316.350000px;}
._1a_c01151{width:337.824000px;}
._24_c01151{width:383.727000px;}
._20_c01151{width:385.560000px;}
._35_c01151{width:1989.555000px;}
.fc2_c01151{color:transparent;}
.fc1_c01151{color:rgb(128,128,128);}
.fc0_c01151{color:rgb(0,0,0);}
.fsb_c01151{font-size:48.000000px;}
.fs4_c01151{font-size:51.000000px;}
.fs2_c01151{font-size:57.000000px;}
.fs7_c01151{font-size:60.000000px;}
.fs3_c01151{font-size:63.000000px;}
.fs9_c01151{font-size:69.000000px;}
.fs1_c01151{font-size:72.000000px;}
.fsa_c01151{font-size:75.000000px;}
.fs6_c01151{font-size:78.000000px;}
.fs0_c01151{font-size:81.000000px;}
.fs5_c01151{font-size:87.000000px;}
.fs8_c01151{font-size:93.000000px;}
.y0_c01151{bottom:0.000000px;}
.y25_c01151{bottom:3.105000px;}
.y24_c01151{bottom:7.228371px;}
.y23_c01151{bottom:35.415000px;}
.y22_c01151{bottom:60.465000px;}
.y21_c01151{bottom:86.115000px;}
.y20_c01151{bottom:115.215000px;}
.y1f_c01151{bottom:136.665000px;}
.y1e_c01151{bottom:160.665000px;}
.y1d_c01151{bottom:186.015000px;}
.y1c_c01151{bottom:210.915000px;}
.y1b_c01151{bottom:235.965000px;}
.y1a_c01151{bottom:260.865000px;}
.y19_c01151{bottom:284.865000px;}
.y18_c01151{bottom:309.615000px;}
.y17_c01151{bottom:334.215000px;}
.y16_c01151{bottom:360.165000px;}
.y15_c01151{bottom:383.115000px;}
.y14_c01151{bottom:409.365000px;}
.y13_c01151{bottom:432.315000px;}
.y12_c01151{bottom:456.615000px;}
.y11_c01151{bottom:480.615000px;}
.y10_c01151{bottom:501.615000px;}
.yf_c01151{bottom:526.965000px;}
.ye_c01151{bottom:553.815000px;}
.yd_c01151{bottom:579.465000px;}
.yc_c01151{bottom:603.765000px;}
.yb_c01151{bottom:626.115000px;}
.ya_c01151{bottom:651.765000px;}
.y9_c01151{bottom:675.315000px;}
.y8_c01151{bottom:699.615000px;}
.y7_c01151{bottom:723.615000px;}
.y6_c01151{bottom:748.215000px;}
.y5_c01151{bottom:772.215000px;}
.y4_c01151{bottom:797.715000px;}
.y3_c01151{bottom:821.565000px;}
.y2_c01151{bottom:845.415000px;}
.y1_c01151{bottom:869.715000px;}
.ha_c01151{height:13.200074px;}
.hb_c01151{height:43.804688px;}
.h8_c01151{height:50.053711px;}
.h4_c01151{height:66.713379px;}
.h6_c01151{height:75.966797px;}
.h2_c01151{height:79.497070px;}
.h9_c01151{height:80.758301px;}
.h3_c01151{height:84.269531px;}
.h7_c01151{height:91.229004px;}
.h5_c01151{height:98.756836px;}
.h0_c01151{height:963.375000px;}
.h1_c01151{height:963.750000px;}
.w1_c01151{width:104.875500px;}
.w0_c01151{width:651.750000px;}
.x0_c01151{left:0.000000px;}
.xb_c01151{left:13.500000px;}
.x5_c01151{left:15.900000px;}
.x7_c01151{left:18.450000px;}
.x3_c01151{left:21.300000px;}
.x8_c01151{left:43.500000px;}
.x4_c01151{left:74.850000px;}
.x2_c01151{left:106.650000px;}
.x1_c01151{left:108.300000px;}
.xa_c01151{left:109.350000px;}
.x6_c01151{left:110.400000px;}
.x9_c01151{left:123.150000px;}
.xc_c01151{left:139.950000px;}
.xf_c01151{left:277.689240px;}
.xd_c01151{left:394.800000px;}
.xe_c01151{left:406.950000px;}
@media print{
.v1_c01151{vertical-align:-13.333333pt;}
.v0_c01151{vertical-align:0.000000pt;}
.lsa_c01151{letter-spacing:-8.000000pt;}
.lsb_c01151{letter-spacing:-2.666667pt;}
.ls7_c01151{letter-spacing:0.000000pt;}
.ls1_c01151{letter-spacing:2.490667pt;}
.ls9_c01151{letter-spacing:2.666667pt;}
.ls8_c01151{letter-spacing:5.333333pt;}
.ls0_c01151{letter-spacing:14.666667pt;}
.ls4_c01151{letter-spacing:26.490667pt;}
.ls3_c01151{letter-spacing:32.357333pt;}
.ls2_c01151{letter-spacing:71.290667pt;}
.ls6_c01151{letter-spacing:84.106667pt;}
.ls5_c01151{letter-spacing:124.133333pt;}
.ws0_c01151{word-spacing:-15.424000pt;}
.ws1_c01151{word-spacing:-12.210667pt;}
.ws4_c01151{word-spacing:0.000000pt;}
.ws2_c01151{word-spacing:0.541333pt;}
.ws3_c01151{word-spacing:13.576000pt;}
._29_c01151{margin-left:-36.984000pt;}
._36_c01151{margin-left:-27.992000pt;}
._25_c01151{margin-left:-19.488000pt;}
._16_c01151{margin-left:-15.480000pt;}
._27_c01151{margin-left:-13.824000pt;}
._28_c01151{margin-left:-12.456000pt;}
._14_c01151{margin-left:-11.304000pt;}
._22_c01151{margin-left:-9.792000pt;}
._12_c01151{margin-left:-7.992000pt;}
._2f_c01151{margin-left:-6.912000pt;}
._11_c01151{margin-left:-5.544000pt;}
._d_c01151{margin-left:-4.032000pt;}
._10_c01151{margin-left:-3.096000pt;}
._1_c01151{margin-left:-2.016000pt;}
._8_c01151{margin-left:-1.008000pt;}
._a_c01151{width:1.008000pt;}
._0_c01151{width:2.160000pt;}
._2_c01151{width:3.168000pt;}
._c_c01151{width:4.176000pt;}
._3_c01151{width:5.112000pt;}
._5_c01151{width:6.120000pt;}
._6_c01151{width:7.704000pt;}
._4_c01151{width:9.288000pt;}
._7_c01151{width:10.440000pt;}
._f_c01151{width:11.520000pt;}
._2e_c01151{width:12.456000pt;}
._b_c01151{width:13.392000pt;}
._13_c01151{width:15.120000pt;}
._21_c01151{width:16.272000pt;}
._32_c01151{width:17.384000pt;}
._9_c01151{width:19.368000pt;}
._33_c01151{width:21.040000pt;}
._1b_c01151{width:22.680000pt;}
._2a_c01151{width:23.802667pt;}
._1d_c01151{width:25.944000pt;}
._31_c01151{width:27.256000pt;}
._15_c01151{width:29.232000pt;}
._e_c01151{width:30.672000pt;}
._34_c01151{width:31.621333pt;}
._2b_c01151{width:34.168000pt;}
._2d_c01151{width:35.712000pt;}
._1c_c01151{width:42.208000pt;}
._37_c01151{width:59.600000pt;}
._18_c01151{width:73.008000pt;}
._30_c01151{width:114.728000pt;}
._19_c01151{width:128.520000pt;}
._1e_c01151{width:137.192000pt;}
._23_c01151{width:138.312000pt;}
._17_c01151{width:146.304000pt;}
._26_c01151{width:211.256000pt;}
._2c_c01151{width:276.840000pt;}
._1f_c01151{width:281.200000pt;}
._1a_c01151{width:300.288000pt;}
._24_c01151{width:341.090667pt;}
._20_c01151{width:342.720000pt;}
._35_c01151{width:1768.493333pt;}
.fsb_c01151{font-size:42.666667pt;}
.fs4_c01151{font-size:45.333333pt;}
.fs2_c01151{font-size:50.666667pt;}
.fs7_c01151{font-size:53.333333pt;}
.fs3_c01151{font-size:56.000000pt;}
.fs9_c01151{font-size:61.333333pt;}
.fs1_c01151{font-size:64.000000pt;}
.fsa_c01151{font-size:66.666667pt;}
.fs6_c01151{font-size:69.333333pt;}
.fs0_c01151{font-size:72.000000pt;}
.fs5_c01151{font-size:77.333333pt;}
.fs8_c01151{font-size:82.666667pt;}
.y0_c01151{bottom:0.000000pt;}
.y25_c01151{bottom:2.760000pt;}
.y24_c01151{bottom:6.425219pt;}
.y23_c01151{bottom:31.480000pt;}
.y22_c01151{bottom:53.746667pt;}
.y21_c01151{bottom:76.546667pt;}
.y20_c01151{bottom:102.413333pt;}
.y1f_c01151{bottom:121.480000pt;}
.y1e_c01151{bottom:142.813333pt;}
.y1d_c01151{bottom:165.346667pt;}
.y1c_c01151{bottom:187.480000pt;}
.y1b_c01151{bottom:209.746667pt;}
.y1a_c01151{bottom:231.880000pt;}
.y19_c01151{bottom:253.213333pt;}
.y18_c01151{bottom:275.213333pt;}
.y17_c01151{bottom:297.080000pt;}
.y16_c01151{bottom:320.146667pt;}
.y15_c01151{bottom:340.546667pt;}
.y14_c01151{bottom:363.880000pt;}
.y13_c01151{bottom:384.280000pt;}
.y12_c01151{bottom:405.880000pt;}
.y11_c01151{bottom:427.213333pt;}
.y10_c01151{bottom:445.880000pt;}
.yf_c01151{bottom:468.413333pt;}
.ye_c01151{bottom:492.280000pt;}
.yd_c01151{bottom:515.080000pt;}
.yc_c01151{bottom:536.680000pt;}
.yb_c01151{bottom:556.546667pt;}
.ya_c01151{bottom:579.346667pt;}
.y9_c01151{bottom:600.280000pt;}
.y8_c01151{bottom:621.880000pt;}
.y7_c01151{bottom:643.213333pt;}
.y6_c01151{bottom:665.080000pt;}
.y5_c01151{bottom:686.413333pt;}
.y4_c01151{bottom:709.080000pt;}
.y3_c01151{bottom:730.280000pt;}
.y2_c01151{bottom:751.480000pt;}
.y1_c01151{bottom:773.080000pt;}
.ha_c01151{height:11.733399pt;}
.hb_c01151{height:38.937500pt;}
.h8_c01151{height:44.492188pt;}
.h4_c01151{height:59.300781pt;}
.h6_c01151{height:67.526042pt;}
.h2_c01151{height:70.664062pt;}
.h9_c01151{height:71.785156pt;}
.h3_c01151{height:74.906250pt;}
.h7_c01151{height:81.092448pt;}
.h5_c01151{height:87.783854pt;}
.h0_c01151{height:856.333333pt;}
.h1_c01151{height:856.666667pt;}
.w1_c01151{width:93.222667pt;}
.w0_c01151{width:579.333333pt;}
.x0_c01151{left:0.000000pt;}
.xb_c01151{left:12.000000pt;}
.x5_c01151{left:14.133333pt;}
.x7_c01151{left:16.400000pt;}
.x3_c01151{left:18.933333pt;}
.x8_c01151{left:38.666667pt;}
.x4_c01151{left:66.533333pt;}
.x2_c01151{left:94.800000pt;}
.x1_c01151{left:96.266667pt;}
.xa_c01151{left:97.200000pt;}
.x6_c01151{left:98.133333pt;}
.x9_c01151{left:109.466667pt;}
.xc_c01151{left:124.400000pt;}
.xf_c01151{left:246.834880pt;}
.xd_c01151{left:350.933333pt;}
.xe_c01151{left:361.733333pt;}
}





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

.ir_c01152:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01152{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01152;src:url('chunks/assets/font_71c6feb01775abaae9773bdc.woff2')format("woff");}.ff1_c01152{font-family:ff1_c01152;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01152;src:url('chunks/assets/font_73215681b88c715441dc0651.woff2')format("woff");}.ff2_c01152{font-family:ff2_c01152;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01152;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff3_c01152{font-family:ff3_c01152;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01152;src:url('chunks/assets/font_842e920da97103fd05c40e13.woff2')format("woff");}.ff4_c01152{font-family:ff4_c01152;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01152;src:url('chunks/assets/font_95eefca2949ebfd53592ec05.woff2')format("woff");}.ff5_c01152{font-family:ff5_c01152;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01152;src:url('chunks/assets/font_d300bfbd53854ca017ac9f08.woff2')format("woff");}.ff6_c01152{font-family:ff6_c01152;line-height:1.284180;font-style:normal;font-weight: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_c01152;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c01152{font-family:ff7_c01152;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01152{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01152{vertical-align:0.000000px;}
.ls4_c01152{letter-spacing:-12.000000px;}
.ls3_c01152{letter-spacing:0.000000px;}
.ls2_c01152{letter-spacing:3.000000px;}
.ls1_c01152{letter-spacing:36.300000px;}
.ls0_c01152{letter-spacing:37.602000px;}
.sc__c01152{text-shadow:none;}
.sc0_c01152{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01152{-webkit-text-stroke:0px transparent;}
.sc0_c01152{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c01152{word-spacing:-58.044000px;}
.ws5_c01152{word-spacing:-21.000000px;}
.ws2_c01152{word-spacing:-17.352000px;}
.ws4_c01152{word-spacing:-17.250000px;}
.ws1_c01152{word-spacing:-13.737000px;}
.ws3_c01152{word-spacing:-0.171000px;}
.ws7_c01152{word-spacing:0.000000px;}
.ws0_c01152{word-spacing:13.482000px;}
._27_c01152{margin-left:-25.848000px;}
._6_c01152{margin-left:-12.852000px;}
._18_c01152{margin-left:-11.640000px;}
._1_c01152{margin-left:-10.200000px;}
._19_c01152{margin-left:-8.517000px;}
._4_c01152{margin-left:-7.038000px;}
._a_c01152{margin-left:-5.508000px;}
._3_c01152{margin-left:-4.182000px;}
._2_c01152{margin-left:-2.856000px;}
._14_c01152{margin-left:-1.047000px;}
._b_c01152{width:1.938000px;}
._f_c01152{width:3.192000px;}
._7_c01152{width:4.488000px;}
._11_c01152{width:5.754000px;}
._8_c01152{width:7.242000px;}
._10_c01152{width:8.700000px;}
._c_c01152{width:9.705000px;}
._0_c01152{width:10.812000px;}
._16_c01152{width:12.261000px;}
._15_c01152{width:13.518000px;}
._12_c01152{width:15.420000px;}
._d_c01152{width:16.527000px;}
._13_c01152{width:17.856000px;}
._9_c01152{width:19.380000px;}
._22_c01152{width:20.487000px;}
._5_c01152{width:21.726000px;}
._1f_c01152{width:23.562000px;}
._1e_c01152{width:24.858000px;}
._24_c01152{width:25.980000px;}
._20_c01152{width:27.033000px;}
._1c_c01152{width:28.329000px;}
._e_c01152{width:34.587000px;}
._23_c01152{width:41.361000px;}
._25_c01152{width:42.699000px;}
._26_c01152{width:50.349000px;}
._28_c01152{width:56.376000px;}
._17_c01152{width:77.334000px;}
._1d_c01152{width:117.270000px;}
._21_c01152{width:223.383000px;}
._1b_c01152{width:323.358000px;}
._1a_c01152{width:738.990000px;}
._29_c01152{width:1678.350000px;}
.fc2_c01152{color:transparent;}
.fc1_c01152{color:rgb(128,128,128);}
.fc0_c01152{color:rgb(0,0,0);}
.fs8_c01152{font-size:48.000000px;}
.fs1_c01152{font-size:57.000000px;}
.fs5_c01152{font-size:66.000000px;}
.fs2_c01152{font-size:72.000000px;}
.fs3_c01152{font-size:78.000000px;}
.fs4_c01152{font-size:81.000000px;}
.fs6_c01152{font-size:84.000000px;}
.fs7_c01152{font-size:99.000000px;}
.fs0_c01152{font-size:102.000000px;}
.y0_c01152{bottom:0.000000px;}
.y26_c01152{bottom:3.105000px;}
.y25_c01152{bottom:7.228355px;}
.y24_c01152{bottom:65.385000px;}
.y23_c01152{bottom:89.085000px;}
.y22_c01152{bottom:113.985000px;}
.y21_c01152{bottom:141.285000px;}
.y20_c01152{bottom:162.885000px;}
.y1f_c01152{bottom:187.635000px;}
.y1e_c01152{bottom:211.635000px;}
.y1d_c01152{bottom:236.535000px;}
.y1c_c01152{bottom:260.835000px;}
.y1b_c01152{bottom:284.835000px;}
.y1a_c01152{bottom:309.135000px;}
.y19_c01152{bottom:334.035000px;}
.y18_c01152{bottom:359.685000px;}
.y17_c01152{bottom:382.935000px;}
.y16_c01152{bottom:406.935000px;}
.y15_c01152{bottom:431.235000px;}
.y14_c01152{bottom:455.535000px;}
.y13_c01152{bottom:479.235000px;}
.y12_c01152{bottom:503.835000px;}
.y11_c01152{bottom:528.435000px;}
.y10_c01152{bottom:552.435000px;}
.yf_c01152{bottom:571.035000px;}
.ye_c01152{bottom:599.385000px;}
.yd_c01152{bottom:623.985000px;}
.yc_c01152{bottom:647.685000px;}
.yb_c01152{bottom:671.835000px;}
.ya_c01152{bottom:695.835000px;}
.y9_c01152{bottom:721.185000px;}
.y8_c01152{bottom:746.085000px;}
.y7_c01152{bottom:770.535000px;}
.y6_c01152{bottom:795.435000px;}
.y5_c01152{bottom:819.735000px;}
.y4_c01152{bottom:842.985000px;}
.y3_c01152{bottom:866.685000px;}
.y2_c01152{bottom:891.885000px;}
.y1_c01152{bottom:926.385000px;}
.hc_c01152{height:13.200074px;}
.hd_c01152{height:43.804688px;}
.h8_c01152{height:57.445312px;}
.h9_c01152{height:66.515625px;}
.h3_c01152{height:72.168457px;}
.h7_c01152{height:79.497070px;}
.ha_c01152{height:82.441406px;}
.h4_c01152{height:84.269531px;}
.h6_c01152{height:91.160156px;}
.hb_c01152{height:97.114746px;}
.h5_c01152{height:98.756836px;}
.h2_c01152{height:100.057617px;}
.h0_c01152{height:980.625000px;}
.h1_c01152{height:981.000000px;}
.w2_c01152{width:104.875500px;}
.w0_c01152{width:667.425000px;}
.w1_c01152{width:667.500000px;}
.x0_c01152{left:0.000000px;}
.x4_c01152{left:40.200000px;}
.x6_c01152{left:41.850000px;}
.x2_c01152{left:42.900000px;}
.x3_c01152{left:44.850000px;}
.x5_c01152{left:67.500000px;}
.x1_c01152{left:175.950000px;}
.x7_c01152{left:285.526749px;}
@media print{
.v0_c01152{vertical-align:0.000000pt;}
.ls4_c01152{letter-spacing:-10.666667pt;}
.ls3_c01152{letter-spacing:0.000000pt;}
.ls2_c01152{letter-spacing:2.666667pt;}
.ls1_c01152{letter-spacing:32.266667pt;}
.ls0_c01152{letter-spacing:33.424000pt;}
.ws6_c01152{word-spacing:-51.594667pt;}
.ws5_c01152{word-spacing:-18.666667pt;}
.ws2_c01152{word-spacing:-15.424000pt;}
.ws4_c01152{word-spacing:-15.333333pt;}
.ws1_c01152{word-spacing:-12.210667pt;}
.ws3_c01152{word-spacing:-0.152000pt;}
.ws7_c01152{word-spacing:0.000000pt;}
.ws0_c01152{word-spacing:11.984000pt;}
._27_c01152{margin-left:-22.976000pt;}
._6_c01152{margin-left:-11.424000pt;}
._18_c01152{margin-left:-10.346667pt;}
._1_c01152{margin-left:-9.066667pt;}
._19_c01152{margin-left:-7.570667pt;}
._4_c01152{margin-left:-6.256000pt;}
._a_c01152{margin-left:-4.896000pt;}
._3_c01152{margin-left:-3.717333pt;}
._2_c01152{margin-left:-2.538667pt;}
._14_c01152{margin-left:-0.930667pt;}
._b_c01152{width:1.722667pt;}
._f_c01152{width:2.837333pt;}
._7_c01152{width:3.989333pt;}
._11_c01152{width:5.114667pt;}
._8_c01152{width:6.437333pt;}
._10_c01152{width:7.733333pt;}
._c_c01152{width:8.626667pt;}
._0_c01152{width:9.610667pt;}
._16_c01152{width:10.898667pt;}
._15_c01152{width:12.016000pt;}
._12_c01152{width:13.706667pt;}
._d_c01152{width:14.690667pt;}
._13_c01152{width:15.872000pt;}
._9_c01152{width:17.226667pt;}
._22_c01152{width:18.210667pt;}
._5_c01152{width:19.312000pt;}
._1f_c01152{width:20.944000pt;}
._1e_c01152{width:22.096000pt;}
._24_c01152{width:23.093333pt;}
._20_c01152{width:24.029333pt;}
._1c_c01152{width:25.181333pt;}
._e_c01152{width:30.744000pt;}
._23_c01152{width:36.765333pt;}
._25_c01152{width:37.954667pt;}
._26_c01152{width:44.754667pt;}
._28_c01152{width:50.112000pt;}
._17_c01152{width:68.741333pt;}
._1d_c01152{width:104.240000pt;}
._21_c01152{width:198.562667pt;}
._1b_c01152{width:287.429333pt;}
._1a_c01152{width:656.880000pt;}
._29_c01152{width:1491.866667pt;}
.fs8_c01152{font-size:42.666667pt;}
.fs1_c01152{font-size:50.666667pt;}
.fs5_c01152{font-size:58.666667pt;}
.fs2_c01152{font-size:64.000000pt;}
.fs3_c01152{font-size:69.333333pt;}
.fs4_c01152{font-size:72.000000pt;}
.fs6_c01152{font-size:74.666667pt;}
.fs7_c01152{font-size:88.000000pt;}
.fs0_c01152{font-size:90.666667pt;}
.y0_c01152{bottom:0.000000pt;}
.y26_c01152{bottom:2.760000pt;}
.y25_c01152{bottom:6.425204pt;}
.y24_c01152{bottom:58.120000pt;}
.y23_c01152{bottom:79.186667pt;}
.y22_c01152{bottom:101.320000pt;}
.y21_c01152{bottom:125.586667pt;}
.y20_c01152{bottom:144.786667pt;}
.y1f_c01152{bottom:166.786667pt;}
.y1e_c01152{bottom:188.120000pt;}
.y1d_c01152{bottom:210.253333pt;}
.y1c_c01152{bottom:231.853333pt;}
.y1b_c01152{bottom:253.186667pt;}
.y1a_c01152{bottom:274.786667pt;}
.y19_c01152{bottom:296.920000pt;}
.y18_c01152{bottom:319.720000pt;}
.y17_c01152{bottom:340.386667pt;}
.y16_c01152{bottom:361.720000pt;}
.y15_c01152{bottom:383.320000pt;}
.y14_c01152{bottom:404.920000pt;}
.y13_c01152{bottom:425.986667pt;}
.y12_c01152{bottom:447.853333pt;}
.y11_c01152{bottom:469.720000pt;}
.y10_c01152{bottom:491.053333pt;}
.yf_c01152{bottom:507.586667pt;}
.ye_c01152{bottom:532.786667pt;}
.yd_c01152{bottom:554.653333pt;}
.yc_c01152{bottom:575.720000pt;}
.yb_c01152{bottom:597.186667pt;}
.ya_c01152{bottom:618.520000pt;}
.y9_c01152{bottom:641.053333pt;}
.y8_c01152{bottom:663.186667pt;}
.y7_c01152{bottom:684.920000pt;}
.y6_c01152{bottom:707.053333pt;}
.y5_c01152{bottom:728.653333pt;}
.y4_c01152{bottom:749.320000pt;}
.y3_c01152{bottom:770.386667pt;}
.y2_c01152{bottom:792.786667pt;}
.y1_c01152{bottom:823.453333pt;}
.hc_c01152{height:11.733399pt;}
.hd_c01152{height:38.937500pt;}
.h8_c01152{height:51.062500pt;}
.h9_c01152{height:59.125000pt;}
.h3_c01152{height:64.149740pt;}
.h7_c01152{height:70.664062pt;}
.ha_c01152{height:73.281250pt;}
.h4_c01152{height:74.906250pt;}
.h6_c01152{height:81.031250pt;}
.hb_c01152{height:86.324219pt;}
.h5_c01152{height:87.783854pt;}
.h2_c01152{height:88.940104pt;}
.h0_c01152{height:871.666667pt;}
.h1_c01152{height:872.000000pt;}
.w2_c01152{width:93.222667pt;}
.w0_c01152{width:593.266667pt;}
.w1_c01152{width:593.333333pt;}
.x0_c01152{left:0.000000pt;}
.x4_c01152{left:35.733333pt;}
.x6_c01152{left:37.200000pt;}
.x2_c01152{left:38.133333pt;}
.x3_c01152{left:39.866667pt;}
.x5_c01152{left:60.000000pt;}
.x1_c01152{left:156.400000pt;}
.x7_c01152{left:253.801554pt;}
}





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

.ir_c01153:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01153{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01153;src:url('chunks/assets/font_05975eaf98df4c08b3bd172f.woff2')format("woff");}.ff1_c01153{font-family:ff1_c01153;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01153;src:url('chunks/assets/font_5c5cc3827a56a7064f69c74e.woff2')format("woff");}.ff2_c01153{font-family:ff2_c01153;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01153;src:url('chunks/assets/font_b6565d96fa2fb2e654de06ce.woff2')format("woff");}.ff3_c01153{font-family:ff3_c01153;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01153;src:url('chunks/assets/font_1fc4daf11b18e45ec004354a.woff2')format("woff");}.ff4_c01153{font-family:ff4_c01153;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01153;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff5_c01153{font-family:ff5_c01153;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01153;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c01153{font-family:ff6_c01153;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01153{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01153{vertical-align:0.000000px;}
.ls2_c01153{letter-spacing:0.000000px;}
.ls1_c01153{letter-spacing:3.000000px;}
.ls0_c01153{letter-spacing:112.602000px;}
.sc__c01153{text-shadow:none;}
.sc0_c01153{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01153{-webkit-text-stroke:0px transparent;}
.sc0_c01153{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01153{word-spacing:-33.000000px;}
.ws6_c01153{word-spacing:-23.250000px;}
.ws3_c01153{word-spacing:-20.250000px;}
.ws0_c01153{word-spacing:-17.352000px;}
.ws5_c01153{word-spacing:-3.459000px;}
.ws7_c01153{word-spacing:0.000000px;}
.ws4_c01153{word-spacing:6.327000px;}
.ws2_c01153{word-spacing:6.480000px;}
._28_c01153{margin-left:-19.404000px;}
._1e_c01153{margin-left:-15.390000px;}
._15_c01153{margin-left:-13.815000px;}
._29_c01153{margin-left:-12.798000px;}
._1c_c01153{margin-left:-11.688000px;}
._26_c01153{margin-left:-9.177000px;}
._1a_c01153{margin-left:-7.920000px;}
._13_c01153{margin-left:-6.597000px;}
._d_c01153{margin-left:-5.454000px;}
._a_c01153{margin-left:-4.365000px;}
._8_c01153{margin-left:-3.177000px;}
._4_c01153{margin-left:-1.773000px;}
._23_c01153{width:1.008000px;}
._3_c01153{width:2.016000px;}
._6_c01153{width:3.321000px;}
._5_c01153{width:4.779000px;}
._7_c01153{width:6.561000px;}
._c_c01153{width:7.569000px;}
._0_c01153{width:8.640000px;}
._18_c01153{width:9.681000px;}
._b_c01153{width:10.710000px;}
._2_c01153{width:11.736000px;}
._1_c01153{width:13.176000px;}
._9_c01153{width:15.003000px;}
._14_c01153{width:16.605000px;}
._10_c01153{width:17.820000px;}
._11_c01153{width:19.197000px;}
._17_c01153{width:21.360000px;}
._21_c01153{width:22.863000px;}
._2b_c01153{width:26.643000px;}
._12_c01153{width:30.915000px;}
._27_c01153{width:34.695000px;}
._1d_c01153{width:35.781000px;}
._f_c01153{width:38.565000px;}
._e_c01153{width:61.236000px;}
._1b_c01153{width:127.161000px;}
._22_c01153{width:198.594000px;}
._24_c01153{width:228.186000px;}
._1f_c01153{width:232.146000px;}
._16_c01153{width:271.278000px;}
._25_c01153{width:274.284000px;}
._2a_c01153{width:305.559000px;}
._20_c01153{width:309.465000px;}
._19_c01153{width:348.015000px;}
.fc2_c01153{color:transparent;}
.fc1_c01153{color:rgb(128,128,128);}
.fc0_c01153{color:rgb(0,0,0);}
.fs8_c01153{font-size:48.000000px;}
.fs2_c01153{font-size:51.000000px;}
.fs4_c01153{font-size:57.000000px;}
.fs3_c01153{font-size:66.000000px;}
.fs0_c01153{font-size:72.000000px;}
.fs5_c01153{font-size:78.000000px;}
.fs1_c01153{font-size:81.000000px;}
.fs6_c01153{font-size:84.000000px;}
.fs7_c01153{font-size:93.000000px;}
.y0_c01153{bottom:0.000000px;}
.y25_c01153{bottom:3.105000px;}
.y24_c01153{bottom:7.228371px;}
.y23_c01153{bottom:57.765000px;}
.y22_c01153{bottom:82.815000px;}
.y21_c01153{bottom:107.715000px;}
.y20_c01153{bottom:132.315000px;}
.y1f_c01153{bottom:157.665000px;}
.y1e_c01153{bottom:181.965000px;}
.y1d_c01153{bottom:207.015000px;}
.y1c_c01153{bottom:231.915000px;}
.y1b_c01153{bottom:256.515000px;}
.y1a_c01153{bottom:281.115000px;}
.y19_c01153{bottom:305.565000px;}
.y18_c01153{bottom:330.465000px;}
.y17_c01153{bottom:354.765000px;}
.y16_c01153{bottom:379.665000px;}
.y15_c01153{bottom:404.115000px;}
.y14_c01153{bottom:429.315000px;}
.y13_c01153{bottom:453.015000px;}
.y12_c01153{bottom:477.315000px;}
.y11_c01153{bottom:501.315000px;}
.y10_c01153{bottom:525.615000px;}
.yf_c01153{bottom:549.465000px;}
.ye_c01153{bottom:574.515000px;}
.yd_c01153{bottom:598.815000px;}
.yc_c01153{bottom:623.115000px;}
.yb_c01153{bottom:647.715000px;}
.ya_c01153{bottom:672.015000px;}
.y9_c01153{bottom:695.715000px;}
.y8_c01153{bottom:720.615000px;}
.y7_c01153{bottom:745.215000px;}
.y6_c01153{bottom:769.515000px;}
.y5_c01153{bottom:794.115000px;}
.y4_c01153{bottom:818.115000px;}
.y3_c01153{bottom:842.715000px;}
.y2_c01153{bottom:867.015000px;}
.y1_c01153{bottom:891.015000px;}
.h9_c01153{height:13.200074px;}
.ha_c01153{height:43.804688px;}
.h5_c01153{height:72.168457px;}
.h3_c01153{height:79.497070px;}
.h2_c01153{height:84.269531px;}
.h7_c01153{height:84.656250px;}
.h4_c01153{height:91.160156px;}
.h8_c01153{height:91.274414px;}
.h6_c01153{height:98.756836px;}
.h1_c01153{height:986.250000px;}
.h0_c01153{height:986.325000px;}
.w2_c01153{width:104.875500px;}
.w0_c01153{width:667.425000px;}
.w1_c01153{width:667.500000px;}
.x0_c01153{left:0.000000px;}
.x4_c01153{left:40.800000px;}
.x9_c01153{left:42.450000px;}
.x5_c01153{left:43.500000px;}
.x7_c01153{left:45.450000px;}
.x8_c01153{left:55.050000px;}
.x1_c01153{left:128.550000px;}
.x2_c01153{left:129.900000px;}
.x3_c01153{left:131.250000px;}
.x6_c01153{left:133.050000px;}
.xa_c01153{left:135.300000px;}
.xb_c01153{left:136.350000px;}
.xd_c01153{left:285.526749px;}
.xc_c01153{left:600.750000px;}
@media print{
.v0_c01153{vertical-align:0.000000pt;}
.ls2_c01153{letter-spacing:0.000000pt;}
.ls1_c01153{letter-spacing:2.666667pt;}
.ls0_c01153{letter-spacing:100.090667pt;}
.ws1_c01153{word-spacing:-29.333333pt;}
.ws6_c01153{word-spacing:-20.666667pt;}
.ws3_c01153{word-spacing:-18.000000pt;}
.ws0_c01153{word-spacing:-15.424000pt;}
.ws5_c01153{word-spacing:-3.074667pt;}
.ws7_c01153{word-spacing:0.000000pt;}
.ws4_c01153{word-spacing:5.624000pt;}
.ws2_c01153{word-spacing:5.760000pt;}
._28_c01153{margin-left:-17.248000pt;}
._1e_c01153{margin-left:-13.680000pt;}
._15_c01153{margin-left:-12.280000pt;}
._29_c01153{margin-left:-11.376000pt;}
._1c_c01153{margin-left:-10.389333pt;}
._26_c01153{margin-left:-8.157333pt;}
._1a_c01153{margin-left:-7.040000pt;}
._13_c01153{margin-left:-5.864000pt;}
._d_c01153{margin-left:-4.848000pt;}
._a_c01153{margin-left:-3.880000pt;}
._8_c01153{margin-left:-2.824000pt;}
._4_c01153{margin-left:-1.576000pt;}
._23_c01153{width:0.896000pt;}
._3_c01153{width:1.792000pt;}
._6_c01153{width:2.952000pt;}
._5_c01153{width:4.248000pt;}
._7_c01153{width:5.832000pt;}
._c_c01153{width:6.728000pt;}
._0_c01153{width:7.680000pt;}
._18_c01153{width:8.605333pt;}
._b_c01153{width:9.520000pt;}
._2_c01153{width:10.432000pt;}
._1_c01153{width:11.712000pt;}
._9_c01153{width:13.336000pt;}
._14_c01153{width:14.760000pt;}
._10_c01153{width:15.840000pt;}
._11_c01153{width:17.064000pt;}
._17_c01153{width:18.986667pt;}
._21_c01153{width:20.322667pt;}
._2b_c01153{width:23.682667pt;}
._12_c01153{width:27.480000pt;}
._27_c01153{width:30.840000pt;}
._1d_c01153{width:31.805333pt;}
._f_c01153{width:34.280000pt;}
._e_c01153{width:54.432000pt;}
._1b_c01153{width:113.032000pt;}
._22_c01153{width:176.528000pt;}
._24_c01153{width:202.832000pt;}
._1f_c01153{width:206.352000pt;}
._16_c01153{width:241.136000pt;}
._25_c01153{width:243.808000pt;}
._2a_c01153{width:271.608000pt;}
._20_c01153{width:275.080000pt;}
._19_c01153{width:309.346667pt;}
.fs8_c01153{font-size:42.666667pt;}
.fs2_c01153{font-size:45.333333pt;}
.fs4_c01153{font-size:50.666667pt;}
.fs3_c01153{font-size:58.666667pt;}
.fs0_c01153{font-size:64.000000pt;}
.fs5_c01153{font-size:69.333333pt;}
.fs1_c01153{font-size:72.000000pt;}
.fs6_c01153{font-size:74.666667pt;}
.fs7_c01153{font-size:82.666667pt;}
.y0_c01153{bottom:0.000000pt;}
.y25_c01153{bottom:2.760000pt;}
.y24_c01153{bottom:6.425219pt;}
.y23_c01153{bottom:51.346667pt;}
.y22_c01153{bottom:73.613333pt;}
.y21_c01153{bottom:95.746667pt;}
.y20_c01153{bottom:117.613333pt;}
.y1f_c01153{bottom:140.146667pt;}
.y1e_c01153{bottom:161.746667pt;}
.y1d_c01153{bottom:184.013333pt;}
.y1c_c01153{bottom:206.146667pt;}
.y1b_c01153{bottom:228.013333pt;}
.y1a_c01153{bottom:249.880000pt;}
.y19_c01153{bottom:271.613333pt;}
.y18_c01153{bottom:293.746667pt;}
.y17_c01153{bottom:315.346667pt;}
.y16_c01153{bottom:337.480000pt;}
.y15_c01153{bottom:359.213333pt;}
.y14_c01153{bottom:381.613333pt;}
.y13_c01153{bottom:402.680000pt;}
.y12_c01153{bottom:424.280000pt;}
.y11_c01153{bottom:445.613333pt;}
.y10_c01153{bottom:467.213333pt;}
.yf_c01153{bottom:488.413333pt;}
.ye_c01153{bottom:510.680000pt;}
.yd_c01153{bottom:532.280000pt;}
.yc_c01153{bottom:553.880000pt;}
.yb_c01153{bottom:575.746667pt;}
.ya_c01153{bottom:597.346667pt;}
.y9_c01153{bottom:618.413333pt;}
.y8_c01153{bottom:640.546667pt;}
.y7_c01153{bottom:662.413333pt;}
.y6_c01153{bottom:684.013333pt;}
.y5_c01153{bottom:705.880000pt;}
.y4_c01153{bottom:727.213333pt;}
.y3_c01153{bottom:749.080000pt;}
.y2_c01153{bottom:770.680000pt;}
.y1_c01153{bottom:792.013333pt;}
.h9_c01153{height:11.733399pt;}
.ha_c01153{height:38.937500pt;}
.h5_c01153{height:64.149740pt;}
.h3_c01153{height:70.664062pt;}
.h2_c01153{height:74.906250pt;}
.h7_c01153{height:75.250000pt;}
.h4_c01153{height:81.031250pt;}
.h8_c01153{height:81.132812pt;}
.h6_c01153{height:87.783854pt;}
.h1_c01153{height:876.666667pt;}
.h0_c01153{height:876.733333pt;}
.w2_c01153{width:93.222667pt;}
.w0_c01153{width:593.266667pt;}
.w1_c01153{width:593.333333pt;}
.x0_c01153{left:0.000000pt;}
.x4_c01153{left:36.266667pt;}
.x9_c01153{left:37.733333pt;}
.x5_c01153{left:38.666667pt;}
.x7_c01153{left:40.400000pt;}
.x8_c01153{left:48.933333pt;}
.x1_c01153{left:114.266667pt;}
.x2_c01153{left:115.466667pt;}
.x3_c01153{left:116.666667pt;}
.x6_c01153{left:118.266667pt;}
.xa_c01153{left:120.266667pt;}
.xb_c01153{left:121.200000pt;}
.xd_c01153{left:253.801554pt;}
.xc_c01153{left:534.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_c01154 {
    display:none;
  }
  .loading-indicator_c01154.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01154 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01154 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01154" -> "#page-container .classname_c01154")
 */
.pf_c01154 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01154 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01154.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01154 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01154 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01154 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01154 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01154 {overflow:visible;}
  }
}
.c_c01154 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01154 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01154:after { /* webkit #35443 */
  content: '';
}
.t_c01154:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01154 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01154 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01154 { /* info for Javascript */
  display:none;
}
.l_c01154 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01154 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01154 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01154:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01154{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01154;src:url('chunks/assets/font_81382eb478023a61c2d698d2.woff2')format("woff");}.ff1_c01154{font-family:ff1_c01154;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01154;src:url('chunks/assets/font_988b8a17498cc3bcb3f8cc77.woff2')format("woff");}.ff2_c01154{font-family:ff2_c01154;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01154;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff3_c01154{font-family:ff3_c01154;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01154;src:url('chunks/assets/font_07abd00ed105af7a54d5402b.woff2')format("woff");}.ff4_c01154{font-family:ff4_c01154;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01154;src:url('chunks/assets/font_ce4c102f3a8daa9899082381.woff2')format("woff");}.ff5_c01154{font-family:ff5_c01154;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01154;src:url('chunks/assets/font_28d6e32a382db75e76d39a95.woff2')format("woff");}.ff6_c01154{font-family:ff6_c01154;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01154;src:url('chunks/assets/font_582cbe96221b0faaf32b4bbc.woff2')format("woff");}.ff7_c01154{font-family:ff7_c01154;line-height:1.437000;font-style:normal;font-weight: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_c01154;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff8_c01154{font-family:ff8_c01154;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01154{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01154{vertical-align:0.000000px;}
.ls4_c01154{letter-spacing:0.000000px;}
.ls0_c01154{letter-spacing:3.000000px;}
.ls5_c01154{letter-spacing:6.000000px;}
.ls2_c01154{letter-spacing:23.748000px;}
.ls1_c01154{letter-spacing:30.300000px;}
.ls3_c01154{letter-spacing:59.700000px;}
.sc__c01154{text-shadow:none;}
.sc0_c01154{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01154{-webkit-text-stroke:0px transparent;}
.sc0_c01154{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c01154{word-spacing:-73.686000px;}
.ws1_c01154{word-spacing:-20.250000px;}
.ws0_c01154{word-spacing:-17.352000px;}
.ws2_c01154{word-spacing:-13.500000px;}
.ws4_c01154{word-spacing:0.000000px;}
._1e_c01154{margin-left:-25.434000px;}
._1f_c01154{margin-left:-22.203000px;}
._23_c01154{margin-left:-13.797000px;}
._22_c01154{margin-left:-12.132000px;}
._18_c01154{margin-left:-10.854000px;}
._17_c01154{margin-left:-8.934000px;}
._10_c01154{margin-left:-6.768000px;}
._d_c01154{margin-left:-4.941000px;}
._14_c01154{margin-left:-3.651000px;}
._f_c01154{margin-left:-1.944000px;}
._15_c01154{width:1.080000px;}
._a_c01154{width:2.106000px;}
._c_c01154{width:3.258000px;}
._b_c01154{width:4.329000px;}
._9_c01154{width:5.688000px;}
._e_c01154{width:6.813000px;}
._3_c01154{width:7.992000px;}
._8_c01154{width:9.000000px;}
._6_c01154{width:10.944000px;}
._4_c01154{width:12.024000px;}
._1_c01154{width:13.968000px;}
._0_c01154{width:15.552000px;}
._13_c01154{width:17.256000px;}
._16_c01154{width:18.294000px;}
._5_c01154{width:20.016000px;}
._7_c01154{width:21.528000px;}
._19_c01154{width:23.742000px;}
._1c_c01154{width:25.701000px;}
._28_c01154{width:27.342000px;}
._2_c01154{width:29.376000px;}
._12_c01154{width:30.408000px;}
._11_c01154{width:34.089000px;}
._1b_c01154{width:37.368000px;}
._24_c01154{width:38.439000px;}
._1a_c01154{width:39.456000px;}
._27_c01154{width:45.759000px;}
._26_c01154{width:71.595000px;}
._20_c01154{width:114.696000px;}
._21_c01154{width:212.940000px;}
._25_c01154{width:232.959000px;}
._1d_c01154{width:1185.687000px;}
.fc2_c01154{color:transparent;}
.fc1_c01154{color:rgb(128,128,128);}
.fc0_c01154{color:rgb(0,0,0);}
.fs2_c01154{font-size:42.000000px;}
.fs4_c01154{font-size:45.000000px;}
.fs6_c01154{font-size:48.000000px;}
.fs3_c01154{font-size:51.000000px;}
.fs0_c01154{font-size:72.000000px;}
.fs1_c01154{font-size:81.000000px;}
.fs5_c01154{font-size:87.000000px;}
.y0_c01154{bottom:0.000000px;}
.y26_c01154{bottom:3.105000px;}
.y25_c01154{bottom:7.228369px;}
.y24_c01154{bottom:58.620000px;}
.y23_c01154{bottom:81.870000px;}
.y22_c01154{bottom:106.920000px;}
.y21_c01154{bottom:131.970000px;}
.y20_c01154{bottom:156.570000px;}
.y1f_c01154{bottom:178.470000px;}
.y1e_c01154{bottom:204.570000px;}
.y1d_c01154{bottom:230.520000px;}
.y1c_c01154{bottom:255.420000px;}
.y1b_c01154{bottom:279.720000px;}
.y1a_c01154{bottom:303.420000px;}
.y19_c01154{bottom:327.720000px;}
.y18_c01154{bottom:352.320000px;}
.y17_c01154{bottom:376.920000px;}
.y16_c01154{bottom:400.920000px;}
.y15_c01154{bottom:425.820000px;}
.y14_c01154{bottom:450.270000px;}
.y13_c01154{bottom:474.120000px;}
.y12_c01154{bottom:500.520000px;}
.y11_c01154{bottom:522.720000px;}
.y10_c01154{bottom:541.320000px;}
.yf_c01154{bottom:569.970000px;}
.ye_c01154{bottom:593.670000px;}
.yd_c01154{bottom:617.970000px;}
.yc_c01154{bottom:641.820000px;}
.yb_c01154{bottom:666.120000px;}
.ya_c01154{bottom:690.870000px;}
.y9_c01154{bottom:714.420000px;}
.y8_c01154{bottom:739.020000px;}
.y7_c01154{bottom:763.470000px;}
.y6_c01154{bottom:791.370000px;}
.y5_c01154{bottom:811.920000px;}
.y4_c01154{bottom:836.670000px;}
.y3_c01154{bottom:860.670000px;}
.y2_c01154{bottom:885.870000px;}
.y1_c01154{bottom:920.070000px;}
.h6_c01154{height:13.200073px;}
.h7_c01154{height:43.804688px;}
.h3_c01154{height:79.497070px;}
.h2_c01154{height:84.269531px;}
.h4_c01154{height:91.160156px;}
.h5_c01154{height:91.176000px;}
.h1_c01154{height:986.250000px;}
.h0_c01154{height:986.550000px;}
.w1_c01154{width:104.875500px;}
.w0_c01154{width:672.000000px;}
.x0_c01154{left:0.000000px;}
.x5_c01154{left:24.900000px;}
.x2_c01154{left:40.800000px;}
.x3_c01154{left:41.850000px;}
.x4_c01154{left:43.200000px;}
.x6_c01154{left:46.500000px;}
.x7_c01154{left:66.900000px;}
.x1_c01154{left:87.750000px;}
.x9_c01154{left:287.814240px;}
.x8_c01154{left:481.650000px;}
@media print{
.v0_c01154{vertical-align:0.000000pt;}
.ls4_c01154{letter-spacing:0.000000pt;}
.ls0_c01154{letter-spacing:2.666667pt;}
.ls5_c01154{letter-spacing:5.333333pt;}
.ls2_c01154{letter-spacing:21.109333pt;}
.ls1_c01154{letter-spacing:26.933333pt;}
.ls3_c01154{letter-spacing:53.066667pt;}
.ws3_c01154{word-spacing:-65.498667pt;}
.ws1_c01154{word-spacing:-18.000000pt;}
.ws0_c01154{word-spacing:-15.424000pt;}
.ws2_c01154{word-spacing:-12.000000pt;}
.ws4_c01154{word-spacing:0.000000pt;}
._1e_c01154{margin-left:-22.608000pt;}
._1f_c01154{margin-left:-19.736000pt;}
._23_c01154{margin-left:-12.264000pt;}
._22_c01154{margin-left:-10.784000pt;}
._18_c01154{margin-left:-9.648000pt;}
._17_c01154{margin-left:-7.941333pt;}
._10_c01154{margin-left:-6.016000pt;}
._d_c01154{margin-left:-4.392000pt;}
._14_c01154{margin-left:-3.245333pt;}
._f_c01154{margin-left:-1.728000pt;}
._15_c01154{width:0.960000pt;}
._a_c01154{width:1.872000pt;}
._c_c01154{width:2.896000pt;}
._b_c01154{width:3.848000pt;}
._9_c01154{width:5.056000pt;}
._e_c01154{width:6.056000pt;}
._3_c01154{width:7.104000pt;}
._8_c01154{width:8.000000pt;}
._6_c01154{width:9.728000pt;}
._4_c01154{width:10.688000pt;}
._1_c01154{width:12.416000pt;}
._0_c01154{width:13.824000pt;}
._13_c01154{width:15.338667pt;}
._16_c01154{width:16.261333pt;}
._5_c01154{width:17.792000pt;}
._7_c01154{width:19.136000pt;}
._19_c01154{width:21.104000pt;}
._1c_c01154{width:22.845333pt;}
._28_c01154{width:24.304000pt;}
._2_c01154{width:26.112000pt;}
._12_c01154{width:27.029333pt;}
._11_c01154{width:30.301333pt;}
._1b_c01154{width:33.216000pt;}
._24_c01154{width:34.168000pt;}
._1a_c01154{width:35.072000pt;}
._27_c01154{width:40.674667pt;}
._26_c01154{width:63.640000pt;}
._20_c01154{width:101.952000pt;}
._21_c01154{width:189.280000pt;}
._25_c01154{width:207.074667pt;}
._1d_c01154{width:1053.944000pt;}
.fs2_c01154{font-size:37.333333pt;}
.fs4_c01154{font-size:40.000000pt;}
.fs6_c01154{font-size:42.666667pt;}
.fs3_c01154{font-size:45.333333pt;}
.fs0_c01154{font-size:64.000000pt;}
.fs1_c01154{font-size:72.000000pt;}
.fs5_c01154{font-size:77.333333pt;}
.y0_c01154{bottom:0.000000pt;}
.y26_c01154{bottom:2.760000pt;}
.y25_c01154{bottom:6.425217pt;}
.y24_c01154{bottom:52.106667pt;}
.y23_c01154{bottom:72.773333pt;}
.y22_c01154{bottom:95.040000pt;}
.y21_c01154{bottom:117.306667pt;}
.y20_c01154{bottom:139.173333pt;}
.y1f_c01154{bottom:158.640000pt;}
.y1e_c01154{bottom:181.840000pt;}
.y1d_c01154{bottom:204.906667pt;}
.y1c_c01154{bottom:227.040000pt;}
.y1b_c01154{bottom:248.640000pt;}
.y1a_c01154{bottom:269.706667pt;}
.y19_c01154{bottom:291.306667pt;}
.y18_c01154{bottom:313.173333pt;}
.y17_c01154{bottom:335.040000pt;}
.y16_c01154{bottom:356.373333pt;}
.y15_c01154{bottom:378.506667pt;}
.y14_c01154{bottom:400.240000pt;}
.y13_c01154{bottom:421.440000pt;}
.y12_c01154{bottom:444.906667pt;}
.y11_c01154{bottom:464.640000pt;}
.y10_c01154{bottom:481.173333pt;}
.yf_c01154{bottom:506.640000pt;}
.ye_c01154{bottom:527.706667pt;}
.yd_c01154{bottom:549.306667pt;}
.yc_c01154{bottom:570.506667pt;}
.yb_c01154{bottom:592.106667pt;}
.ya_c01154{bottom:614.106667pt;}
.y9_c01154{bottom:635.040000pt;}
.y8_c01154{bottom:656.906667pt;}
.y7_c01154{bottom:678.640000pt;}
.y6_c01154{bottom:703.440000pt;}
.y5_c01154{bottom:721.706667pt;}
.y4_c01154{bottom:743.706667pt;}
.y3_c01154{bottom:765.040000pt;}
.y2_c01154{bottom:787.440000pt;}
.y1_c01154{bottom:817.840000pt;}
.h6_c01154{height:11.733399pt;}
.h7_c01154{height:38.937500pt;}
.h3_c01154{height:70.664062pt;}
.h2_c01154{height:74.906250pt;}
.h4_c01154{height:81.031250pt;}
.h5_c01154{height:81.045333pt;}
.h1_c01154{height:876.666667pt;}
.h0_c01154{height:876.933333pt;}
.w1_c01154{width:93.222667pt;}
.w0_c01154{width:597.333333pt;}
.x0_c01154{left:0.000000pt;}
.x5_c01154{left:22.133333pt;}
.x2_c01154{left:36.266667pt;}
.x3_c01154{left:37.200000pt;}
.x4_c01154{left:38.400000pt;}
.x6_c01154{left:41.333333pt;}
.x7_c01154{left:59.466667pt;}
.x1_c01154{left:78.000000pt;}
.x9_c01154{left:255.834880pt;}
.x8_c01154{left:428.133333pt;}
}





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

.ir_c01155:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01155{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01155;src:url('chunks/assets/font_fe25367234b37c729973739e.woff2')format("woff");}.ff1_c01155{font-family:ff1_c01155;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01155;src:url('chunks/assets/font_4f710332daac0af13702d4ea.woff2')format("woff");}.ff2_c01155{font-family:ff2_c01155;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01155;src:url('chunks/assets/font_d05973ec0436d6a854aa3576.woff2')format("woff");}.ff3_c01155{font-family:ff3_c01155;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01155;src:url('chunks/assets/font_5c6e45e24020b6b4429322aa.woff2')format("woff");}.ff4_c01155{font-family:ff4_c01155;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01155;src:url('chunks/assets/font_a39d18a68f3b2afc270b31f2.woff2')format("woff");}.ff5_c01155{font-family:ff5_c01155;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01155;src:url('chunks/assets/font_ea70f1727f47d1cb894402f7.woff2')format("woff");}.ff6_c01155{font-family:ff6_c01155;line-height:1.311035;font-style:normal;font-weight: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_c01155;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c01155{font-family:ff7_c01155;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01155{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01155{vertical-align:0.000000px;}
.v1_c01155{vertical-align:141.600000px;}
.ls6_c01155{letter-spacing:0.000000px;}
.ls1_c01155{letter-spacing:1.802400px;}
.ls0_c01155{letter-spacing:3.570000px;}
.ls2_c01155{letter-spacing:4.026000px;}
.ls3_c01155{letter-spacing:4.923000px;}
.ls8_c01155{letter-spacing:6.000000px;}
.ls7_c01155{letter-spacing:21.000000px;}
.ls5_c01155{letter-spacing:206.802000px;}
.ls4_c01155{letter-spacing:215.202000px;}
.sc__c01155{text-shadow:none;}
.sc0_c01155{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01155{-webkit-text-stroke:0px transparent;}
.sc0_c01155{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c01155{word-spacing:-30.000000px;}
.ws5_c01155{word-spacing:-20.250000px;}
.ws2_c01155{word-spacing:-18.798000px;}
.ws0_c01155{word-spacing:-17.352000px;}
.ws3_c01155{word-spacing:-13.737000px;}
.ws6_c01155{word-spacing:0.000000px;}
.ws1_c01155{word-spacing:19.683000px;}
._24_c01155{margin-left:-31.410000px;}
._1a_c01155{margin-left:-24.804000px;}
._2b_c01155{margin-left:-18.054000px;}
._26_c01155{margin-left:-16.704000px;}
._13_c01155{margin-left:-14.742000px;}
._19_c01155{margin-left:-13.542000px;}
._14_c01155{margin-left:-11.907000px;}
._21_c01155{margin-left:-10.887000px;}
._20_c01155{margin-left:-8.877000px;}
._1c_c01155{margin-left:-7.344000px;}
._d_c01155{margin-left:-6.102000px;}
._17_c01155{margin-left:-4.941000px;}
._2_c01155{margin-left:-3.645000px;}
._3_c01155{margin-left:-1.971000px;}
._18_c01155{width:1.062000px;}
._1_c01155{width:2.106000px;}
._a_c01155{width:3.159000px;}
._0_c01155{width:4.212000px;}
._7_c01155{width:5.994000px;}
._9_c01155{width:7.128000px;}
._6_c01155{width:8.181000px;}
._5_c01155{width:9.801000px;}
._8_c01155{width:11.016000px;}
._c_c01155{width:12.879000px;}
._b_c01155{width:14.256000px;}
._e_c01155{width:16.686000px;}
._1e_c01155{width:18.081000px;}
._22_c01155{width:20.337000px;}
._1f_c01155{width:22.896000px;}
._10_c01155{width:24.867000px;}
._f_c01155{width:30.051000px;}
._4_c01155{width:33.006000px;}
._12_c01155{width:34.749000px;}
._15_c01155{width:40.905000px;}
._11_c01155{width:44.712000px;}
._2a_c01155{width:50.589000px;}
._1b_c01155{width:52.572000px;}
._25_c01155{width:78.876000px;}
._1d_c01155{width:103.761000px;}
._16_c01155{width:147.177000px;}
._28_c01155{width:263.268000px;}
._27_c01155{width:368.712000px;}
._29_c01155{width:555.516000px;}
._23_c01155{width:991.323000px;}
.fc2_c01155{color:transparent;}
.fc1_c01155{color:rgb(128,128,128);}
.fc0_c01155{color:rgb(0,0,0);}
.fs7_c01155{font-size:36.000000px;}
.fs5_c01155{font-size:45.600000px;}
.fs9_c01155{font-size:48.000000px;}
.fs4_c01155{font-size:57.000000px;}
.fs1_c01155{font-size:72.000000px;}
.fs8_c01155{font-size:75.000000px;}
.fs3_c01155{font-size:78.000000px;}
.fs0_c01155{font-size:81.000000px;}
.fs2_c01155{font-size:93.000000px;}
.fs6_c01155{font-size:267.000000px;}
.y0_c01155{bottom:0.000000px;}
.y24_c01155{bottom:3.105000px;}
.y23_c01155{bottom:7.228371px;}
.y22_c01155{bottom:58.065000px;}
.y21_c01155{bottom:78.015000px;}
.y20_c01155{bottom:103.365000px;}
.y1f_c01155{bottom:130.365000px;}
.y1e_c01155{bottom:153.315000px;}
.y1d_c01155{bottom:171.165000px;}
.y1c_c01155{bottom:179.565000px;}
.y1b_c01155{bottom:203.265000px;}
.y1a_c01155{bottom:229.515000px;}
.y18_c01155{bottom:244.815000px;}
.y19_c01155{bottom:254.265000px;}
.y17_c01155{bottom:327.765000px;}
.y16_c01155{bottom:351.765000px;}
.y15_c01155{bottom:400.365000px;}
.y14_c01155{bottom:425.565000px;}
.y13_c01155{bottom:450.015000px;}
.y12_c01155{bottom:475.515000px;}
.y11_c01155{bottom:499.515000px;}
.y10_c01155{bottom:522.915000px;}
.yf_c01155{bottom:547.215000px;}
.ye_c01155{bottom:570.765000px;}
.yd_c01155{bottom:594.765000px;}
.yc_c01155{bottom:620.115000px;}
.yb_c01155{bottom:644.265000px;}
.ya_c01155{bottom:668.715000px;}
.y9_c01155{bottom:693.015000px;}
.y8_c01155{bottom:718.515000px;}
.y7_c01155{bottom:741.915000px;}
.y6_c01155{bottom:765.915000px;}
.y5_c01155{bottom:790.515000px;}
.y4_c01155{bottom:814.815000px;}
.y3_c01155{bottom:839.415000px;}
.y2_c01155{bottom:863.415000px;}
.y1_c01155{bottom:887.715000px;}
.h9_c01155{height:13.200074px;}
.h8_c01155{height:36.281250px;}
.ha_c01155{height:43.804688px;}
.h6_c01155{height:66.713379px;}
.h3_c01155{height:79.497070px;}
.h2_c01155{height:84.269531px;}
.h4_c01155{height:91.274414px;}
.h5_c01155{height:98.756836px;}
.h7_c01155{height:262.045898px;}
.h1_c01155{height:986.250000px;}
.h0_c01155{height:986.325000px;}
.w2_c01155{width:104.875500px;}
.w0_c01155{width:667.425000px;}
.w1_c01155{width:667.500000px;}
.x0_c01155{left:0.000000px;}
.x6_c01155{left:43.950000px;}
.xd_c01155{left:45.900000px;}
.xf_c01155{left:46.950000px;}
.x7_c01155{left:70.200000px;}
.xe_c01155{left:111.600000px;}
.x2_c01155{left:128.550000px;}
.x1_c01155{left:129.600000px;}
.x4_c01155{left:130.650000px;}
.x5_c01155{left:132.000000px;}
.x9_c01155{left:133.350000px;}
.x3_c01155{left:134.400000px;}
.x8_c01155{left:135.600000px;}
.xa_c01155{left:137.400000px;}
.x10_c01155{left:143.400000px;}
.xc_c01155{left:185.550000px;}
.x12_c01155{left:285.526749px;}
.xb_c01155{left:338.100000px;}
.x11_c01155{left:613.650000px;}
@media print{
.v0_c01155{vertical-align:0.000000pt;}
.v1_c01155{vertical-align:125.866667pt;}
.ls6_c01155{letter-spacing:0.000000pt;}
.ls1_c01155{letter-spacing:1.602133pt;}
.ls0_c01155{letter-spacing:3.173333pt;}
.ls2_c01155{letter-spacing:3.578667pt;}
.ls3_c01155{letter-spacing:4.376000pt;}
.ls8_c01155{letter-spacing:5.333333pt;}
.ls7_c01155{letter-spacing:18.666667pt;}
.ls5_c01155{letter-spacing:183.824000pt;}
.ls4_c01155{letter-spacing:191.290667pt;}
.ws4_c01155{word-spacing:-26.666667pt;}
.ws5_c01155{word-spacing:-18.000000pt;}
.ws2_c01155{word-spacing:-16.709333pt;}
.ws0_c01155{word-spacing:-15.424000pt;}
.ws3_c01155{word-spacing:-12.210667pt;}
.ws6_c01155{word-spacing:0.000000pt;}
.ws1_c01155{word-spacing:17.496000pt;}
._24_c01155{margin-left:-27.920000pt;}
._1a_c01155{margin-left:-22.048000pt;}
._2b_c01155{margin-left:-16.048000pt;}
._26_c01155{margin-left:-14.848000pt;}
._13_c01155{margin-left:-13.104000pt;}
._19_c01155{margin-left:-12.037333pt;}
._14_c01155{margin-left:-10.584000pt;}
._21_c01155{margin-left:-9.677333pt;}
._20_c01155{margin-left:-7.890667pt;}
._1c_c01155{margin-left:-6.528000pt;}
._d_c01155{margin-left:-5.424000pt;}
._17_c01155{margin-left:-4.392000pt;}
._2_c01155{margin-left:-3.240000pt;}
._3_c01155{margin-left:-1.752000pt;}
._18_c01155{width:0.944000pt;}
._1_c01155{width:1.872000pt;}
._a_c01155{width:2.808000pt;}
._0_c01155{width:3.744000pt;}
._7_c01155{width:5.328000pt;}
._9_c01155{width:6.336000pt;}
._6_c01155{width:7.272000pt;}
._5_c01155{width:8.712000pt;}
._8_c01155{width:9.792000pt;}
._c_c01155{width:11.448000pt;}
._b_c01155{width:12.672000pt;}
._e_c01155{width:14.832000pt;}
._1e_c01155{width:16.072000pt;}
._22_c01155{width:18.077333pt;}
._1f_c01155{width:20.352000pt;}
._10_c01155{width:22.104000pt;}
._f_c01155{width:26.712000pt;}
._4_c01155{width:29.338667pt;}
._12_c01155{width:30.888000pt;}
._15_c01155{width:36.360000pt;}
._11_c01155{width:39.744000pt;}
._2a_c01155{width:44.968000pt;}
._1b_c01155{width:46.730667pt;}
._25_c01155{width:70.112000pt;}
._1d_c01155{width:92.232000pt;}
._16_c01155{width:130.824000pt;}
._28_c01155{width:234.016000pt;}
._27_c01155{width:327.744000pt;}
._29_c01155{width:493.792000pt;}
._23_c01155{width:881.176000pt;}
.fs7_c01155{font-size:32.000000pt;}
.fs5_c01155{font-size:40.533333pt;}
.fs9_c01155{font-size:42.666667pt;}
.fs4_c01155{font-size:50.666667pt;}
.fs1_c01155{font-size:64.000000pt;}
.fs8_c01155{font-size:66.666667pt;}
.fs3_c01155{font-size:69.333333pt;}
.fs0_c01155{font-size:72.000000pt;}
.fs2_c01155{font-size:82.666667pt;}
.fs6_c01155{font-size:237.333333pt;}
.y0_c01155{bottom:0.000000pt;}
.y24_c01155{bottom:2.760000pt;}
.y23_c01155{bottom:6.425219pt;}
.y22_c01155{bottom:51.613333pt;}
.y21_c01155{bottom:69.346667pt;}
.y20_c01155{bottom:91.880000pt;}
.y1f_c01155{bottom:115.880000pt;}
.y1e_c01155{bottom:136.280000pt;}
.y1d_c01155{bottom:152.146667pt;}
.y1c_c01155{bottom:159.613333pt;}
.y1b_c01155{bottom:180.680000pt;}
.y1a_c01155{bottom:204.013333pt;}
.y18_c01155{bottom:217.613333pt;}
.y19_c01155{bottom:226.013333pt;}
.y17_c01155{bottom:291.346667pt;}
.y16_c01155{bottom:312.680000pt;}
.y15_c01155{bottom:355.880000pt;}
.y14_c01155{bottom:378.280000pt;}
.y13_c01155{bottom:400.013333pt;}
.y12_c01155{bottom:422.680000pt;}
.y11_c01155{bottom:444.013333pt;}
.y10_c01155{bottom:464.813333pt;}
.yf_c01155{bottom:486.413333pt;}
.ye_c01155{bottom:507.346667pt;}
.yd_c01155{bottom:528.680000pt;}
.yc_c01155{bottom:551.213333pt;}
.yb_c01155{bottom:572.680000pt;}
.ya_c01155{bottom:594.413333pt;}
.y9_c01155{bottom:616.013333pt;}
.y8_c01155{bottom:638.680000pt;}
.y7_c01155{bottom:659.480000pt;}
.y6_c01155{bottom:680.813333pt;}
.y5_c01155{bottom:702.680000pt;}
.y4_c01155{bottom:724.280000pt;}
.y3_c01155{bottom:746.146667pt;}
.y2_c01155{bottom:767.480000pt;}
.y1_c01155{bottom:789.080000pt;}
.h9_c01155{height:11.733399pt;}
.h8_c01155{height:32.250000pt;}
.ha_c01155{height:38.937500pt;}
.h6_c01155{height:59.300781pt;}
.h3_c01155{height:70.664062pt;}
.h2_c01155{height:74.906250pt;}
.h4_c01155{height:81.132812pt;}
.h5_c01155{height:87.783854pt;}
.h7_c01155{height:232.929688pt;}
.h1_c01155{height:876.666667pt;}
.h0_c01155{height:876.733333pt;}
.w2_c01155{width:93.222667pt;}
.w0_c01155{width:593.266667pt;}
.w1_c01155{width:593.333333pt;}
.x0_c01155{left:0.000000pt;}
.x6_c01155{left:39.066667pt;}
.xd_c01155{left:40.800000pt;}
.xf_c01155{left:41.733333pt;}
.x7_c01155{left:62.400000pt;}
.xe_c01155{left:99.200000pt;}
.x2_c01155{left:114.266667pt;}
.x1_c01155{left:115.200000pt;}
.x4_c01155{left:116.133333pt;}
.x5_c01155{left:117.333333pt;}
.x9_c01155{left:118.533333pt;}
.x3_c01155{left:119.466667pt;}
.x8_c01155{left:120.533333pt;}
.xa_c01155{left:122.133333pt;}
.x10_c01155{left:127.466667pt;}
.xc_c01155{left:164.933333pt;}
.x12_c01155{left:253.801554pt;}
.xb_c01155{left:300.533333pt;}
.x11_c01155{left:545.466667pt;}
}





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

.ir_c01156:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01156{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01156;src:url('chunks/assets/font_05b9647533b2570650ba65e6.woff2')format("woff");}.ff1_c01156{font-family:ff1_c01156;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01156;src:url('chunks/assets/font_4c609674d1a2f0007d7c588e.woff2')format("woff");}.ff2_c01156{font-family:ff2_c01156;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01156;src:url('chunks/assets/font_30189834c641cb5505a16539.woff2')format("woff");}.ff3_c01156{font-family:ff3_c01156;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01156;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff4_c01156{font-family:ff4_c01156;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01156;src:url('chunks/assets/font_ae8c6955ddbfa8914f5d5c80.woff2')format("woff");}.ff5_c01156{font-family:ff5_c01156;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01156;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c01156{font-family:ff6_c01156;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01156{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01156{vertical-align:0.000000px;}
.ls4_c01156{letter-spacing:0.000000px;}
.ls0_c01156{letter-spacing:2.946000px;}
.ls3_c01156{letter-spacing:3.000000px;}
.ls1_c01156{letter-spacing:6.000000px;}
.ls2_c01156{letter-spacing:7.752000px;}
.sc__c01156{text-shadow:none;}
.sc0_c01156{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01156{-webkit-text-stroke:0px transparent;}
.sc0_c01156{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01156{word-spacing:0.000000px;}
._6_c01156{margin-left:-14.586000px;}
._8_c01156{margin-left:-13.056000px;}
._3_c01156{margin-left:-11.934000px;}
._17_c01156{margin-left:-7.890000px;}
._9_c01156{margin-left:-5.916000px;}
._a_c01156{margin-left:-4.590000px;}
._b_c01156{margin-left:-3.366000px;}
._1f_c01156{margin-left:-2.325000px;}
._7_c01156{margin-left:-1.224000px;}
._4_c01156{width:1.020000px;}
._5_c01156{width:2.142000px;}
._2_c01156{width:3.366000px;}
._19_c01156{width:4.395000px;}
._1_c01156{width:5.406000px;}
._d_c01156{width:6.528000px;}
._0_c01156{width:7.956000px;}
._13_c01156{width:9.648000px;}
._12_c01156{width:11.229000px;}
._e_c01156{width:12.768000px;}
._10_c01156{width:15.903000px;}
._f_c01156{width:17.784000px;}
._16_c01156{width:18.981000px;}
._18_c01156{width:20.325000px;}
._15_c01156{width:21.378000px;}
._11_c01156{width:22.923000px;}
._1c_c01156{width:23.937000px;}
._21_c01156{width:25.065000px;}
._1a_c01156{width:26.349000px;}
._14_c01156{width:27.711000px;}
._1d_c01156{width:28.866000px;}
._1e_c01156{width:32.028000px;}
._1b_c01156{width:37.707000px;}
._25_c01156{width:40.698000px;}
._27_c01156{width:42.435000px;}
._28_c01156{width:58.698000px;}
._24_c01156{width:81.189000px;}
._23_c01156{width:139.749000px;}
._22_c01156{width:161.607000px;}
._c_c01156{width:173.400000px;}
._26_c01156{width:246.171000px;}
._20_c01156{width:352.905000px;}
._29_c01156{width:358.782000px;}
.fc2_c01156{color:transparent;}
.fc1_c01156{color:rgb(128,128,128);}
.fc0_c01156{color:rgb(0,0,0);}
.fs5_c01156{font-size:48.000000px;}
.fs1_c01156{font-size:57.000000px;}
.fs3_c01156{font-size:66.000000px;}
.fs4_c01156{font-size:69.000000px;}
.fs2_c01156{font-size:84.000000px;}
.fs0_c01156{font-size:102.000000px;}
.y0_c01156{bottom:0.000000px;}
.y26_c01156{bottom:3.105000px;}
.y25_c01156{bottom:7.228369px;}
.y24_c01156{bottom:52.620000px;}
.y23_c01156{bottom:78.870000px;}
.y22_c01156{bottom:103.920000px;}
.y21_c01156{bottom:128.820000px;}
.y20_c01156{bottom:153.120000px;}
.y1f_c01156{bottom:178.470000px;}
.y1e_c01156{bottom:202.470000px;}
.y1d_c01156{bottom:227.070000px;}
.y1c_c01156{bottom:251.670000px;}
.y1b_c01156{bottom:275.670000px;}
.y1a_c01156{bottom:299.970000px;}
.y19_c01156{bottom:324.270000px;}
.y18_c01156{bottom:348.270000px;}
.y17_c01156{bottom:372.870000px;}
.y16_c01156{bottom:396.870000px;}
.y15_c01156{bottom:421.470000px;}
.y14_c01156{bottom:445.170000px;}
.y13_c01156{bottom:469.470000px;}
.y12_c01156{bottom:493.770000px;}
.y11_c01156{bottom:517.770000px;}
.y10_c01156{bottom:541.620000px;}
.yf_c01156{bottom:564.870000px;}
.ye_c01156{bottom:589.170000px;}
.yd_c01156{bottom:612.570000px;}
.yc_c01156{bottom:636.570000px;}
.yb_c01156{bottom:661.170000px;}
.ya_c01156{bottom:685.170000px;}
.y9_c01156{bottom:709.020000px;}
.y8_c01156{bottom:733.320000px;}
.y7_c01156{bottom:757.320000px;}
.y6_c01156{bottom:781.620000px;}
.y5_c01156{bottom:806.520000px;}
.y4_c01156{bottom:830.970000px;}
.y3_c01156{bottom:854.520000px;}
.y2_c01156{bottom:878.220000px;}
.y1_c01156{bottom:912.570000px;}
.h6_c01156{height:13.200073px;}
.h7_c01156{height:43.804688px;}
.h3_c01156{height:57.445312px;}
.h5_c01156{height:72.312000px;}
.h4_c01156{height:84.656250px;}
.h2_c01156{height:100.057617px;}
.h1_c01156{height:986.250000px;}
.h0_c01156{height:986.550000px;}
.w1_c01156{width:104.875500px;}
.w0_c01156{width:672.000000px;}
.x0_c01156{left:0.000000px;}
.x8_c01156{left:31.950000px;}
.x5_c01156{left:37.050000px;}
.x2_c01156{left:39.150000px;}
.x4_c01156{left:51.000000px;}
.x3_c01156{left:52.050000px;}
.x6_c01156{left:53.250000px;}
.x7_c01156{left:54.300000px;}
.x1_c01156{left:105.000000px;}
.xa_c01156{left:287.814240px;}
.x9_c01156{left:407.700000px;}
@media print{
.v0_c01156{vertical-align:0.000000pt;}
.ls4_c01156{letter-spacing:0.000000pt;}
.ls0_c01156{letter-spacing:2.618667pt;}
.ls3_c01156{letter-spacing:2.666667pt;}
.ls1_c01156{letter-spacing:5.333333pt;}
.ls2_c01156{letter-spacing:6.890667pt;}
.ws0_c01156{word-spacing:0.000000pt;}
._6_c01156{margin-left:-12.965333pt;}
._8_c01156{margin-left:-11.605333pt;}
._3_c01156{margin-left:-10.608000pt;}
._17_c01156{margin-left:-7.013333pt;}
._9_c01156{margin-left:-5.258667pt;}
._a_c01156{margin-left:-4.080000pt;}
._b_c01156{margin-left:-2.992000pt;}
._1f_c01156{margin-left:-2.066667pt;}
._7_c01156{margin-left:-1.088000pt;}
._4_c01156{width:0.906667pt;}
._5_c01156{width:1.904000pt;}
._2_c01156{width:2.992000pt;}
._19_c01156{width:3.906667pt;}
._1_c01156{width:4.805333pt;}
._d_c01156{width:5.802667pt;}
._0_c01156{width:7.072000pt;}
._13_c01156{width:8.576000pt;}
._12_c01156{width:9.981333pt;}
._e_c01156{width:11.349333pt;}
._10_c01156{width:14.136000pt;}
._f_c01156{width:15.808000pt;}
._16_c01156{width:16.872000pt;}
._18_c01156{width:18.066667pt;}
._15_c01156{width:19.002667pt;}
._11_c01156{width:20.376000pt;}
._1c_c01156{width:21.277333pt;}
._21_c01156{width:22.280000pt;}
._1a_c01156{width:23.421333pt;}
._14_c01156{width:24.632000pt;}
._1d_c01156{width:25.658667pt;}
._1e_c01156{width:28.469333pt;}
._1b_c01156{width:33.517333pt;}
._25_c01156{width:36.176000pt;}
._27_c01156{width:37.720000pt;}
._28_c01156{width:52.176000pt;}
._24_c01156{width:72.168000pt;}
._23_c01156{width:124.221333pt;}
._22_c01156{width:143.650667pt;}
._c_c01156{width:154.133333pt;}
._26_c01156{width:218.818667pt;}
._20_c01156{width:313.693333pt;}
._29_c01156{width:318.917333pt;}
.fs5_c01156{font-size:42.666667pt;}
.fs1_c01156{font-size:50.666667pt;}
.fs3_c01156{font-size:58.666667pt;}
.fs4_c01156{font-size:61.333333pt;}
.fs2_c01156{font-size:74.666667pt;}
.fs0_c01156{font-size:90.666667pt;}
.y0_c01156{bottom:0.000000pt;}
.y26_c01156{bottom:2.760000pt;}
.y25_c01156{bottom:6.425217pt;}
.y24_c01156{bottom:46.773333pt;}
.y23_c01156{bottom:70.106667pt;}
.y22_c01156{bottom:92.373333pt;}
.y21_c01156{bottom:114.506667pt;}
.y20_c01156{bottom:136.106667pt;}
.y1f_c01156{bottom:158.640000pt;}
.y1e_c01156{bottom:179.973333pt;}
.y1d_c01156{bottom:201.840000pt;}
.y1c_c01156{bottom:223.706667pt;}
.y1b_c01156{bottom:245.040000pt;}
.y1a_c01156{bottom:266.640000pt;}
.y19_c01156{bottom:288.240000pt;}
.y18_c01156{bottom:309.573333pt;}
.y17_c01156{bottom:331.440000pt;}
.y16_c01156{bottom:352.773333pt;}
.y15_c01156{bottom:374.640000pt;}
.y14_c01156{bottom:395.706667pt;}
.y13_c01156{bottom:417.306667pt;}
.y12_c01156{bottom:438.906667pt;}
.y11_c01156{bottom:460.240000pt;}
.y10_c01156{bottom:481.440000pt;}
.yf_c01156{bottom:502.106667pt;}
.ye_c01156{bottom:523.706667pt;}
.yd_c01156{bottom:544.506667pt;}
.yc_c01156{bottom:565.840000pt;}
.yb_c01156{bottom:587.706667pt;}
.ya_c01156{bottom:609.040000pt;}
.y9_c01156{bottom:630.240000pt;}
.y8_c01156{bottom:651.840000pt;}
.y7_c01156{bottom:673.173333pt;}
.y6_c01156{bottom:694.773333pt;}
.y5_c01156{bottom:716.906667pt;}
.y4_c01156{bottom:738.640000pt;}
.y3_c01156{bottom:759.573333pt;}
.y2_c01156{bottom:780.640000pt;}
.y1_c01156{bottom:811.173333pt;}
.h6_c01156{height:11.733399pt;}
.h7_c01156{height:38.937500pt;}
.h3_c01156{height:51.062500pt;}
.h5_c01156{height:64.277333pt;}
.h4_c01156{height:75.250000pt;}
.h2_c01156{height:88.940104pt;}
.h1_c01156{height:876.666667pt;}
.h0_c01156{height:876.933333pt;}
.w1_c01156{width:93.222667pt;}
.w0_c01156{width:597.333333pt;}
.x0_c01156{left:0.000000pt;}
.x8_c01156{left:28.400000pt;}
.x5_c01156{left:32.933333pt;}
.x2_c01156{left:34.800000pt;}
.x4_c01156{left:45.333333pt;}
.x3_c01156{left:46.266667pt;}
.x6_c01156{left:47.333333pt;}
.x7_c01156{left:48.266667pt;}
.x1_c01156{left:93.333333pt;}
.xa_c01156{left:255.834880pt;}
.x9_c01156{left:362.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_c01157 {
    display:none;
  }
  .loading-indicator_c01157.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01157 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01157 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01157" -> "#page-container .classname_c01157")
 */
.pf_c01157 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01157 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01157.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01157 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01157 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01157 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01157 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01157 {overflow:visible;}
  }
}
.c_c01157 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01157 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01157:after { /* webkit #35443 */
  content: '';
}
.t_c01157:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01157 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01157 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01157 { /* info for Javascript */
  display:none;
}
.l_c01157 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01157 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01157 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01157:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01157{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01157;src:url('chunks/assets/font_59105f9d1a11c89cca5ad07f.woff2')format("woff");}.ff1_c01157{font-family:ff1_c01157;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01157;src:url('chunks/assets/font_0b17d0af31936b553bac1231.woff2')format("woff");}.ff2_c01157{font-family:ff2_c01157;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01157;src:url('chunks/assets/font_186dea8e77395b2535a48063.woff2')format("woff");}.ff3_c01157{font-family:ff3_c01157;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01157;src:url('chunks/assets/font_4665a55a1eef124f0736f3b8.woff2')format("woff");}.ff4_c01157{font-family:ff4_c01157;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01157;src:url('chunks/assets/font_5972240fdf59bdb0b2d07637.woff2')format("woff");}.ff5_c01157{font-family:ff5_c01157;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01157;src:url('chunks/assets/font_f9771091be43153c835771b2.woff2')format("woff");}.ff6_c01157{font-family:ff6_c01157;line-height:1.284180;font-style:normal;font-weight: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_c01157;src:url('chunks/assets/font_cfe1595c96b890f7fc6c378f.woff2')format("woff");}.ff7_c01157{font-family:ff7_c01157;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c01157;src:url('chunks/assets/font_da7f0efc5176cfe1b6b4bb0d.woff2')format("woff");}.ff8_c01157{font-family:ff8_c01157;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c01157;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff9_c01157{font-family:ff9_c01157;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01157{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01157{vertical-align:0.000000px;}
.ls2_c01157{letter-spacing:-3.000000px;}
.ls0_c01157{letter-spacing:0.000000px;}
.ls1_c01157{letter-spacing:3.000000px;}
.ls3_c01157{letter-spacing:12.000000px;}
.ls4_c01157{letter-spacing:87.000000px;}
.sc__c01157{text-shadow:none;}
.sc0_c01157{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01157{-webkit-text-stroke:0px transparent;}
.sc0_c01157{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8_c01157{word-spacing:-76.116000px;}
.ws7_c01157{word-spacing:-31.500000px;}
.ws9_c01157{word-spacing:-20.250000px;}
.ws0_c01157{word-spacing:-20.130000px;}
.ws5_c01157{word-spacing:-17.535000px;}
.ws6_c01157{word-spacing:-16.926000px;}
.ws1_c01157{word-spacing:-2.337000px;}
.ws2_c01157{word-spacing:-0.285000px;}
.wsa_c01157{word-spacing:0.000000px;}
.ws4_c01157{word-spacing:0.909000px;}
.ws3_c01157{word-spacing:3.153000px;}
._23_c01157{margin-left:-68.880000px;}
._21_c01157{margin-left:-14.709000px;}
._1e_c01157{margin-left:-13.527000px;}
._22_c01157{margin-left:-12.246000px;}
._20_c01157{margin-left:-11.178000px;}
._1a_c01157{margin-left:-10.041000px;}
._1f_c01157{margin-left:-7.923000px;}
._18_c01157{margin-left:-6.468000px;}
._7_c01157{margin-left:-4.332000px;}
._10_c01157{margin-left:-2.109000px;}
._14_c01157{margin-left:-1.083000px;}
._17_c01157{width:1.026000px;}
._19_c01157{width:2.028000px;}
._3_c01157{width:3.078000px;}
._5_c01157{width:4.788000px;}
._13_c01157{width:5.871000px;}
._2_c01157{width:6.897000px;}
._a_c01157{width:8.265000px;}
._c_c01157{width:9.633000px;}
._8_c01157{width:10.659000px;}
._1_c01157{width:12.597000px;}
._1b_c01157{width:13.638000px;}
._d_c01157{width:15.561000px;}
._6_c01157{width:16.815000px;}
._9_c01157{width:18.069000px;}
._12_c01157{width:19.095000px;}
._b_c01157{width:20.292000px;}
._0_c01157{width:22.059000px;}
._f_c01157{width:23.655000px;}
._4_c01157{width:25.308000px;}
._1c_c01157{width:26.448000px;}
._15_c01157{width:27.873000px;}
._11_c01157{width:29.013000px;}
._16_c01157{width:32.319000px;}
._e_c01157{width:35.226000px;}
._1d_c01157{width:459.432000px;}
.fc2_c01157{color:transparent;}
.fc1_c01157{color:rgb(128,128,128);}
.fc0_c01157{color:rgb(0,0,0);}
.fs4_c01157{font-size:48.000000px;}
.fs2_c01157{font-size:51.000000px;}
.fs0_c01157{font-size:57.000000px;}
.fs1_c01157{font-size:78.000000px;}
.fs3_c01157{font-size:81.000000px;}
.y0_c01157{bottom:0.000000px;}
.y25_c01157{bottom:3.105000px;}
.y24_c01157{bottom:7.228355px;}
.y23_c01157{bottom:46.485000px;}
.y22_c01157{bottom:71.535000px;}
.y21_c01157{bottom:96.885000px;}
.y20_c01157{bottom:121.185000px;}
.y1f_c01157{bottom:146.085000px;}
.y1e_c01157{bottom:170.985000px;}
.y1d_c01157{bottom:194.985000px;}
.y1c_c01157{bottom:219.585000px;}
.y1b_c01157{bottom:244.335000px;}
.y1a_c01157{bottom:268.635000px;}
.y19_c01157{bottom:293.985000px;}
.y18_c01157{bottom:317.835000px;}
.y17_c01157{bottom:342.885000px;}
.y16_c01157{bottom:366.885000px;}
.y15_c01157{bottom:391.035000px;}
.y14_c01157{bottom:415.335000px;}
.y13_c01157{bottom:439.635000px;}
.y12_c01157{bottom:463.935000px;}
.y11_c01157{bottom:487.635000px;}
.y10_c01157{bottom:511.635000px;}
.yf_c01157{bottom:535.635000px;}
.ye_c01157{bottom:559.935000px;}
.yd_c01157{bottom:584.085000px;}
.yc_c01157{bottom:608.535000px;}
.yb_c01157{bottom:632.685000px;}
.ya_c01157{bottom:656.985000px;}
.y9_c01157{bottom:680.685000px;}
.y8_c01157{bottom:705.285000px;}
.y7_c01157{bottom:729.585000px;}
.y6_c01157{bottom:753.585000px;}
.y5_c01157{bottom:777.585000px;}
.y4_c01157{bottom:801.885000px;}
.y3_c01157{bottom:825.885000px;}
.y2_c01157{bottom:849.735000px;}
.y1_c01157{bottom:874.335000px;}
.h6_c01157{height:13.200074px;}
.h7_c01157{height:43.804688px;}
.h2_c01157{height:57.445312px;}
.h5_c01157{height:79.497070px;}
.h3_c01157{height:83.226000px;}
.h4_c01157{height:98.756836px;}
.h1_c01157{height:975.000000px;}
.h0_c01157{height:975.225000px;}
.w2_c01157{width:104.875500px;}
.w0_c01157{width:659.850000px;}
.w1_c01157{width:660.000000px;}
.x0_c01157{left:0.000000px;}
.x6_c01157{left:121.800000px;}
.x7_c01157{left:123.300000px;}
.x5_c01157{left:124.500000px;}
.x2_c01157{left:125.550000px;}
.x3_c01157{left:126.900000px;}
.x4_c01157{left:128.850000px;}
.x1_c01157{left:158.700000px;}
.x9_c01157{left:281.739258px;}
.x8_c01157{left:585.450000px;}
@media print{
.v0_c01157{vertical-align:0.000000pt;}
.ls2_c01157{letter-spacing:-2.666667pt;}
.ls0_c01157{letter-spacing:0.000000pt;}
.ls1_c01157{letter-spacing:2.666667pt;}
.ls3_c01157{letter-spacing:10.666667pt;}
.ls4_c01157{letter-spacing:77.333333pt;}
.ws8_c01157{word-spacing:-67.658667pt;}
.ws7_c01157{word-spacing:-28.000000pt;}
.ws9_c01157{word-spacing:-18.000000pt;}
.ws0_c01157{word-spacing:-17.893333pt;}
.ws5_c01157{word-spacing:-15.586667pt;}
.ws6_c01157{word-spacing:-15.045333pt;}
.ws1_c01157{word-spacing:-2.077333pt;}
.ws2_c01157{word-spacing:-0.253333pt;}
.wsa_c01157{word-spacing:0.000000pt;}
.ws4_c01157{word-spacing:0.808000pt;}
.ws3_c01157{word-spacing:2.802667pt;}
._23_c01157{margin-left:-61.226667pt;}
._21_c01157{margin-left:-13.074667pt;}
._1e_c01157{margin-left:-12.024000pt;}
._22_c01157{margin-left:-10.885333pt;}
._20_c01157{margin-left:-9.936000pt;}
._1a_c01157{margin-left:-8.925333pt;}
._1f_c01157{margin-left:-7.042667pt;}
._18_c01157{margin-left:-5.749333pt;}
._7_c01157{margin-left:-3.850667pt;}
._10_c01157{margin-left:-1.874667pt;}
._14_c01157{margin-left:-0.962667pt;}
._17_c01157{width:0.912000pt;}
._19_c01157{width:1.802667pt;}
._3_c01157{width:2.736000pt;}
._5_c01157{width:4.256000pt;}
._13_c01157{width:5.218667pt;}
._2_c01157{width:6.130667pt;}
._a_c01157{width:7.346667pt;}
._c_c01157{width:8.562667pt;}
._8_c01157{width:9.474667pt;}
._1_c01157{width:11.197333pt;}
._1b_c01157{width:12.122667pt;}
._d_c01157{width:13.832000pt;}
._6_c01157{width:14.946667pt;}
._9_c01157{width:16.061333pt;}
._12_c01157{width:16.973333pt;}
._b_c01157{width:18.037333pt;}
._0_c01157{width:19.608000pt;}
._f_c01157{width:21.026667pt;}
._4_c01157{width:22.496000pt;}
._1c_c01157{width:23.509333pt;}
._15_c01157{width:24.776000pt;}
._11_c01157{width:25.789333pt;}
._16_c01157{width:28.728000pt;}
._e_c01157{width:31.312000pt;}
._1d_c01157{width:408.384000pt;}
.fs4_c01157{font-size:42.666667pt;}
.fs2_c01157{font-size:45.333333pt;}
.fs0_c01157{font-size:50.666667pt;}
.fs1_c01157{font-size:69.333333pt;}
.fs3_c01157{font-size:72.000000pt;}
.y0_c01157{bottom:0.000000pt;}
.y25_c01157{bottom:2.760000pt;}
.y24_c01157{bottom:6.425204pt;}
.y23_c01157{bottom:41.320000pt;}
.y22_c01157{bottom:63.586667pt;}
.y21_c01157{bottom:86.120000pt;}
.y20_c01157{bottom:107.720000pt;}
.y1f_c01157{bottom:129.853333pt;}
.y1e_c01157{bottom:151.986667pt;}
.y1d_c01157{bottom:173.320000pt;}
.y1c_c01157{bottom:195.186667pt;}
.y1b_c01157{bottom:217.186667pt;}
.y1a_c01157{bottom:238.786667pt;}
.y19_c01157{bottom:261.320000pt;}
.y18_c01157{bottom:282.520000pt;}
.y17_c01157{bottom:304.786667pt;}
.y16_c01157{bottom:326.120000pt;}
.y15_c01157{bottom:347.586667pt;}
.y14_c01157{bottom:369.186667pt;}
.y13_c01157{bottom:390.786667pt;}
.y12_c01157{bottom:412.386667pt;}
.y11_c01157{bottom:433.453333pt;}
.y10_c01157{bottom:454.786667pt;}
.yf_c01157{bottom:476.120000pt;}
.ye_c01157{bottom:497.720000pt;}
.yd_c01157{bottom:519.186667pt;}
.yc_c01157{bottom:540.920000pt;}
.yb_c01157{bottom:562.386667pt;}
.ya_c01157{bottom:583.986667pt;}
.y9_c01157{bottom:605.053333pt;}
.y8_c01157{bottom:626.920000pt;}
.y7_c01157{bottom:648.520000pt;}
.y6_c01157{bottom:669.853333pt;}
.y5_c01157{bottom:691.186667pt;}
.y4_c01157{bottom:712.786667pt;}
.y3_c01157{bottom:734.120000pt;}
.y2_c01157{bottom:755.320000pt;}
.y1_c01157{bottom:777.186667pt;}
.h6_c01157{height:11.733399pt;}
.h7_c01157{height:38.937500pt;}
.h2_c01157{height:51.062500pt;}
.h5_c01157{height:70.664062pt;}
.h3_c01157{height:73.978667pt;}
.h4_c01157{height:87.783854pt;}
.h1_c01157{height:866.666667pt;}
.h0_c01157{height:866.866667pt;}
.w2_c01157{width:93.222667pt;}
.w0_c01157{width:586.533333pt;}
.w1_c01157{width:586.666667pt;}
.x0_c01157{left:0.000000pt;}
.x6_c01157{left:108.266667pt;}
.x7_c01157{left:109.600000pt;}
.x5_c01157{left:110.666667pt;}
.x2_c01157{left:111.600000pt;}
.x3_c01157{left:112.800000pt;}
.x4_c01157{left:114.533333pt;}
.x1_c01157{left:141.066667pt;}
.x9_c01157{left:250.434896pt;}
.x8_c01157{left:520.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_c01158 {
    display:none;
  }
  .loading-indicator_c01158.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01158 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01158 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01158" -> "#page-container .classname_c01158")
 */
.pf_c01158 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01158 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01158.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01158 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01158 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01158 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01158 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01158 {overflow:visible;}
  }
}
.c_c01158 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01158 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01158:after { /* webkit #35443 */
  content: '';
}
.t_c01158:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01158 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01158 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01158 { /* info for Javascript */
  display:none;
}
.l_c01158 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01158 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01158 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01158:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01158{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01158;src:url('chunks/assets/font_066de9bad56926ef5fbac155.woff2')format("woff");}.ff1_c01158{font-family:ff1_c01158;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01158;src:url('chunks/assets/font_cca823df68970c58b7024389.woff2')format("woff");}.ff2_c01158{font-family:ff2_c01158;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01158;src:url('chunks/assets/font_7d9539e7cb24bb7c845c65f6.woff2')format("woff");}.ff3_c01158{font-family:ff3_c01158;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01158;src:url('chunks/assets/font_67a98b5b0bbf10d20f662e02.woff2')format("woff");}.ff4_c01158{font-family:ff4_c01158;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01158;src:url('chunks/assets/font_9616c8d2beb86835b6cc52af.woff2')format("woff");}.ff5_c01158{font-family:ff5_c01158;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01158;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff6_c01158{font-family:ff6_c01158;line-height:1.311035;font-style:normal;font-weight: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_c01158;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c01158{font-family:ff7_c01158;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01158{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01158{vertical-align:0.000000px;}
.ls2_c01158{letter-spacing:-6.000000px;}
.ls1_c01158{letter-spacing:0.000000px;}
.ls0_c01158{letter-spacing:4.800000px;}
.sc__c01158{text-shadow:none;}
.sc0_c01158{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01158{-webkit-text-stroke:0px transparent;}
.sc0_c01158{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01158{word-spacing:-18.798000px;}
.ws0_c01158{word-spacing:-0.062400px;}
.ws2_c01158{word-spacing:0.000000px;}
._19_c01158{margin-left:-18.360000px;}
._1a_c01158{margin-left:-11.538000px;}
._6_c01158{margin-left:-9.126000px;}
._3_c01158{margin-left:-7.998000px;}
._d_c01158{margin-left:-6.474000px;}
._12_c01158{margin-left:-4.836000px;}
._5_c01158{margin-left:-3.510000px;}
._2_c01158{margin-left:-1.932000px;}
._1_c01158{width:1.326000px;}
._0_c01158{width:2.886000px;}
._7_c01158{width:4.212000px;}
._a_c01158{width:5.460000px;}
._c_c01158{width:7.020000px;}
._4_c01158{width:8.034000px;}
._b_c01158{width:9.048000px;}
._14_c01158{width:10.296000px;}
._8_c01158{width:11.310000px;}
._e_c01158{width:13.026000px;}
._16_c01158{width:14.100000px;}
._f_c01158{width:15.348000px;}
._9_c01158{width:17.376000px;}
._15_c01158{width:18.816000px;}
._11_c01158{width:22.230000px;}
._1d_c01158{width:23.370000px;}
._10_c01158{width:25.974000px;}
._1f_c01158{width:28.647000px;}
._17_c01158{width:30.363000px;}
._1b_c01158{width:32.850000px;}
._1c_c01158{width:34.620000px;}
._18_c01158{width:37.968000px;}
._1e_c01158{width:39.672000px;}
._13_c01158{width:107.772000px;}
._20_c01158{width:253.203000px;}
.fc2_c01158{color:transparent;}
.fc1_c01158{color:rgb(128,128,128);}
.fc0_c01158{color:rgb(0,0,0);}
.fs6_c01158{font-size:48.000000px;}
.fs2_c01158{font-size:62.400000px;}
.fs5_c01158{font-size:72.000000px;}
.fs0_c01158{font-size:78.000000px;}
.fs1_c01158{font-size:81.000000px;}
.fs4_c01158{font-size:96.000000px;}
.fs3_c01158{font-size:105.000000px;}
.y0_c01158{bottom:0.000000px;}
.y25_c01158{bottom:3.105000px;}
.y24_c01158{bottom:7.228369px;}
.y23_c01158{bottom:56.370000px;}
.y22_c01158{bottom:80.970000px;}
.y21_c01158{bottom:105.720000px;}
.y20_c01158{bottom:130.170000px;}
.y1f_c01158{bottom:154.620000px;}
.y1e_c01158{bottom:178.920000px;}
.y1d_c01158{bottom:204.120000px;}
.y1c_c01158{bottom:227.520000px;}
.y1b_c01158{bottom:252.120000px;}
.y1a_c01158{bottom:276.120000px;}
.y19_c01158{bottom:300.420000px;}
.y18_c01158{bottom:324.570000px;}
.y17_c01158{bottom:348.570000px;}
.y16_c01158{bottom:372.870000px;}
.y15_c01158{bottom:397.170000px;}
.y14_c01158{bottom:421.770000px;}
.y13_c01158{bottom:445.770000px;}
.y12_c01158{bottom:469.470000px;}
.y11_c01158{bottom:493.770000px;}
.y10_c01158{bottom:517.770000px;}
.yf_c01158{bottom:541.020000px;}
.ye_c01158{bottom:565.020000px;}
.yd_c01158{bottom:588.270000px;}
.yc_c01158{bottom:612.120000px;}
.yb_c01158{bottom:635.820000px;}
.ya_c01158{bottom:659.370000px;}
.y9_c01158{bottom:683.370000px;}
.y8_c01158{bottom:705.720000px;}
.y7_c01158{bottom:731.670000px;}
.y6_c01158{bottom:756.570000px;}
.y5_c01158{bottom:779.520000px;}
.y4_c01158{bottom:803.820000px;}
.y3_c01158{bottom:827.820000px;}
.y2_c01158{bottom:851.820000px;}
.y1_c01158{bottom:875.820000px;}
.h5_c01158{height:13.200073px;}
.h6_c01158{height:43.804688px;}
.h3_c01158{height:79.497070px;}
.h4_c01158{height:94.218750px;}
.h1_c01158{height:98.756836px;}
.h2_c01158{height:112.035000px;}
.h0_c01158{height:975.750000px;}
.w2_c01158{width:104.875500px;}
.w0_c01158{width:664.200000px;}
.w1_c01158{width:664.500000px;}
.x0_c01158{left:0.000000px;}
.x4_c01158{left:31.350000px;}
.x1_c01158{left:46.650000px;}
.x2_c01158{left:47.700000px;}
.x5_c01158{left:48.900000px;}
.x3_c01158{left:49.950000px;}
.x7_c01158{left:51.300000px;}
.x6_c01158{left:54.000000px;}
.x9_c01158{left:283.914230px;}
.x8_c01158{left:397.950000px;}
@media print{
.v0_c01158{vertical-align:0.000000pt;}
.ls2_c01158{letter-spacing:-5.333333pt;}
.ls1_c01158{letter-spacing:0.000000pt;}
.ls0_c01158{letter-spacing:4.266667pt;}
.ws1_c01158{word-spacing:-16.709333pt;}
.ws0_c01158{word-spacing:-0.055467pt;}
.ws2_c01158{word-spacing:0.000000pt;}
._19_c01158{margin-left:-16.320000pt;}
._1a_c01158{margin-left:-10.256000pt;}
._6_c01158{margin-left:-8.112000pt;}
._3_c01158{margin-left:-7.109333pt;}
._d_c01158{margin-left:-5.754667pt;}
._12_c01158{margin-left:-4.298667pt;}
._5_c01158{margin-left:-3.120000pt;}
._2_c01158{margin-left:-1.717333pt;}
._1_c01158{width:1.178667pt;}
._0_c01158{width:2.565333pt;}
._7_c01158{width:3.744000pt;}
._a_c01158{width:4.853333pt;}
._c_c01158{width:6.240000pt;}
._4_c01158{width:7.141333pt;}
._b_c01158{width:8.042667pt;}
._14_c01158{width:9.152000pt;}
._8_c01158{width:10.053333pt;}
._e_c01158{width:11.578667pt;}
._16_c01158{width:12.533333pt;}
._f_c01158{width:13.642667pt;}
._9_c01158{width:15.445333pt;}
._15_c01158{width:16.725333pt;}
._11_c01158{width:19.760000pt;}
._1d_c01158{width:20.773333pt;}
._10_c01158{width:23.088000pt;}
._1f_c01158{width:25.464000pt;}
._17_c01158{width:26.989333pt;}
._1b_c01158{width:29.200000pt;}
._1c_c01158{width:30.773333pt;}
._18_c01158{width:33.749333pt;}
._1e_c01158{width:35.264000pt;}
._13_c01158{width:95.797333pt;}
._20_c01158{width:225.069333pt;}
.fs6_c01158{font-size:42.666667pt;}
.fs2_c01158{font-size:55.466667pt;}
.fs5_c01158{font-size:64.000000pt;}
.fs0_c01158{font-size:69.333333pt;}
.fs1_c01158{font-size:72.000000pt;}
.fs4_c01158{font-size:85.333333pt;}
.fs3_c01158{font-size:93.333333pt;}
.y0_c01158{bottom:0.000000pt;}
.y25_c01158{bottom:2.760000pt;}
.y24_c01158{bottom:6.425217pt;}
.y23_c01158{bottom:50.106667pt;}
.y22_c01158{bottom:71.973333pt;}
.y21_c01158{bottom:93.973333pt;}
.y20_c01158{bottom:115.706667pt;}
.y1f_c01158{bottom:137.440000pt;}
.y1e_c01158{bottom:159.040000pt;}
.y1d_c01158{bottom:181.440000pt;}
.y1c_c01158{bottom:202.240000pt;}
.y1b_c01158{bottom:224.106667pt;}
.y1a_c01158{bottom:245.440000pt;}
.y19_c01158{bottom:267.040000pt;}
.y18_c01158{bottom:288.506667pt;}
.y17_c01158{bottom:309.840000pt;}
.y16_c01158{bottom:331.440000pt;}
.y15_c01158{bottom:353.040000pt;}
.y14_c01158{bottom:374.906667pt;}
.y13_c01158{bottom:396.240000pt;}
.y12_c01158{bottom:417.306667pt;}
.y11_c01158{bottom:438.906667pt;}
.y10_c01158{bottom:460.240000pt;}
.yf_c01158{bottom:480.906667pt;}
.ye_c01158{bottom:502.240000pt;}
.yd_c01158{bottom:522.906667pt;}
.yc_c01158{bottom:544.106667pt;}
.yb_c01158{bottom:565.173333pt;}
.ya_c01158{bottom:586.106667pt;}
.y9_c01158{bottom:607.440000pt;}
.y8_c01158{bottom:627.306667pt;}
.y7_c01158{bottom:650.373333pt;}
.y6_c01158{bottom:672.506667pt;}
.y5_c01158{bottom:692.906667pt;}
.y4_c01158{bottom:714.506667pt;}
.y3_c01158{bottom:735.840000pt;}
.y2_c01158{bottom:757.173333pt;}
.y1_c01158{bottom:778.506667pt;}
.h5_c01158{height:11.733399pt;}
.h6_c01158{height:38.937500pt;}
.h3_c01158{height:70.664062pt;}
.h4_c01158{height:83.750000pt;}
.h1_c01158{height:87.783854pt;}
.h2_c01158{height:99.586667pt;}
.h0_c01158{height:867.333333pt;}
.w2_c01158{width:93.222667pt;}
.w0_c01158{width:590.400000pt;}
.w1_c01158{width:590.666667pt;}
.x0_c01158{left:0.000000pt;}
.x4_c01158{left:27.866667pt;}
.x1_c01158{left:41.466667pt;}
.x2_c01158{left:42.400000pt;}
.x5_c01158{left:43.466667pt;}
.x3_c01158{left:44.400000pt;}
.x7_c01158{left:45.600000pt;}
.x6_c01158{left:48.000000pt;}
.x9_c01158{left:252.368205pt;}
.x8_c01158{left:353.733333pt;}
}





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

.ir_c01159:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01159{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01159;src:url('chunks/assets/font_47427f75c9952261e96eca6c.woff2')format("woff");}.ff1_c01159{font-family:ff1_c01159;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01159;src:url('chunks/assets/font_16665f8f9a650bc454126252.woff2')format("woff");}.ff2_c01159{font-family:ff2_c01159;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01159;src:url('chunks/assets/font_382669244cb17202ad8d9ccb.woff2')format("woff");}.ff3_c01159{font-family:ff3_c01159;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01159;src:url('chunks/assets/font_eaf973efc5411fa6efe295e5.woff2')format("woff");}.ff4_c01159{font-family:ff4_c01159;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01159;src:url('chunks/assets/font_67cc6a30c67151d0e48875cd.woff2')format("woff");}.ff5_c01159{font-family:ff5_c01159;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01159;src:url('chunks/assets/font_ab120780c098d26c57b3c805.woff2')format("woff");}.ff6_c01159{font-family:ff6_c01159;line-height:1.311035;font-style:normal;font-weight: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_c01159;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c01159{font-family:ff7_c01159;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01159{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01159{vertical-align:0.000000px;}
.ls5_c01159{letter-spacing:0.000000px;}
.ls3_c01159{letter-spacing:2.160000px;}
.ls1_c01159{letter-spacing:9.000000px;}
.ls2_c01159{letter-spacing:11.400000px;}
.ls4_c01159{letter-spacing:35.232000px;}
.ls0_c01159{letter-spacing:45.696000px;}
.ls6_c01159{letter-spacing:57.000000px;}
.sc__c01159{text-shadow:none;}
.sc0_c01159{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01159{-webkit-text-stroke:0px transparent;}
.sc0_c01159{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01159{word-spacing:-25.500000px;}
.ws0_c01159{word-spacing:-17.352000px;}
.ws1_c01159{word-spacing:-0.624000px;}
.ws3_c01159{word-spacing:0.000000px;}
._29_c01159{margin-left:-62.688000px;}
._26_c01159{margin-left:-59.280000px;}
._24_c01159{margin-left:-54.192000px;}
._2b_c01159{margin-left:-50.064000px;}
._22_c01159{margin-left:-31.968000px;}
._2a_c01159{margin-left:-30.768000px;}
._25_c01159{margin-left:-20.880000px;}
._17_c01159{margin-left:-17.091000px;}
._1d_c01159{margin-left:-14.580000px;}
._18_c01159{margin-left:-12.555000px;}
._b_c01159{margin-left:-11.421000px;}
._1f_c01159{margin-left:-9.477000px;}
._11_c01159{margin-left:-8.262000px;}
._e_c01159{margin-left:-7.209000px;}
._30_c01159{margin-left:-5.889000px;}
._7_c01159{margin-left:-4.860000px;}
._a_c01159{margin-left:-3.483000px;}
._6_c01159{margin-left:-2.187000px;}
._33_c01159{margin-left:-1.149000px;}
._4_c01159{width:1.701000px;}
._1_c01159{width:2.997000px;}
._2_c01159{width:4.374000px;}
._0_c01159{width:5.994000px;}
._9_c01159{width:7.452000px;}
._3_c01159{width:9.153000px;}
._8_c01159{width:10.368000px;}
._16_c01159{width:11.907000px;}
._5_c01159{width:12.960000px;}
._31_c01159{width:14.028000px;}
._13_c01159{width:15.147000px;}
._1a_c01159{width:16.443000px;}
._12_c01159{width:17.658000px;}
._14_c01159{width:19.035000px;}
._32_c01159{width:21.951000px;}
._37_c01159{width:23.061000px;}
._40_c01159{width:25.107000px;}
._28_c01159{width:26.496000px;}
._19_c01159{width:27.945000px;}
._15_c01159{width:29.160000px;}
._d_c01159{width:30.375000px;}
._2d_c01159{width:32.208000px;}
._1b_c01159{width:36.045000px;}
._38_c01159{width:38.877000px;}
._3f_c01159{width:45.078000px;}
._3a_c01159{width:59.055000px;}
._f_c01159{width:63.585000px;}
._3b_c01159{width:70.989000px;}
._27_c01159{width:82.608000px;}
._21_c01159{width:83.835000px;}
._20_c01159{width:90.024000px;}
._2c_c01159{width:121.440000px;}
._35_c01159{width:144.708000px;}
._23_c01159{width:150.384000px;}
._2f_c01159{width:174.717000px;}
._3c_c01159{width:176.553000px;}
._36_c01159{width:182.817000px;}
._10_c01159{width:212.544000px;}
._39_c01159{width:269.121000px;}
._1e_c01159{width:296.541000px;}
._3e_c01159{width:339.726000px;}
._34_c01159{width:356.400000px;}
._1c_c01159{width:403.755000px;}
._3d_c01159{width:409.212000px;}
._2e_c01159{width:443.403000px;}
._c_c01159{width:766.809000px;}
.fc2_c01159{color:transparent;}
.fc1_c01159{color:rgb(128,128,128);}
.fc0_c01159{color:rgb(0,0,0);}
.fs3_c01159{font-size:48.000000px;}
.fs4_c01159{font-size:51.000000px;}
.fs6_c01159{font-size:60.000000px;}
.fs2_c01159{font-size:66.000000px;}
.fs5_c01159{font-size:69.000000px;}
.fs1_c01159{font-size:72.000000px;}
.fs0_c01159{font-size:81.000000px;}
.y0_c01159{bottom:0.000000px;}
.y25_c01159{bottom:3.105000px;}
.y24_c01159{bottom:7.228371px;}
.y23_c01159{bottom:69.915000px;}
.y22_c01159{bottom:122.865000px;}
.y21_c01159{bottom:151.965000px;}
.y20_c01159{bottom:181.965000px;}
.y1f_c01159{bottom:207.915000px;}
.y1e_c01159{bottom:214.065000px;}
.y1d_c01159{bottom:232.665000px;}
.y1c_c01159{bottom:256.965000px;}
.y1b_c01159{bottom:281.865000px;}
.y1a_c01159{bottom:305.115000px;}
.y19_c01159{bottom:330.165000px;}
.y18_c01159{bottom:353.415000px;}
.y17_c01159{bottom:377.715000px;}
.y16_c01159{bottom:402.015000px;}
.y15_c01159{bottom:427.065000px;}
.y14_c01159{bottom:451.215000px;}
.y13_c01159{bottom:475.215000px;}
.y12_c01159{bottom:499.215000px;}
.y11_c01159{bottom:521.115000px;}
.y10_c01159{bottom:534.615000px;}
.yf_c01159{bottom:545.865000px;}
.ye_c01159{bottom:569.415000px;}
.yd_c01159{bottom:594.765000px;}
.yc_c01159{bottom:618.315000px;}
.yb_c01159{bottom:642.915000px;}
.ya_c01159{bottom:666.915000px;}
.y9_c01159{bottom:691.215000px;}
.y8_c01159{bottom:714.615000px;}
.y7_c01159{bottom:738.915000px;}
.y6_c01159{bottom:763.215000px;}
.y5_c01159{bottom:786.765000px;}
.y4_c01159{bottom:810.465000px;}
.y3_c01159{bottom:834.015000px;}
.y2_c01159{bottom:858.315000px;}
.y1_c01159{bottom:883.965000px;}
.h9_c01159{height:13.200074px;}
.ha_c01159{height:43.804688px;}
.h8_c01159{height:50.053711px;}
.h4_c01159{height:64.775391px;}
.h5_c01159{height:67.719727px;}
.h6_c01159{height:69.539062px;}
.h2_c01159{height:79.497070px;}
.h3_c01159{height:84.269531px;}
.h7_c01159{height:91.160156px;}
.h1_c01159{height:986.250000px;}
.h0_c01159{height:986.325000px;}
.w2_c01159{width:104.875500px;}
.w0_c01159{width:667.425000px;}
.w1_c01159{width:667.500000px;}
.x0_c01159{left:0.000000px;}
.xf_c01159{left:27.300000px;}
.xc_c01159{left:29.700000px;}
.x7_c01159{left:31.650000px;}
.x2_c01159{left:34.200000px;}
.xb_c01159{left:39.450000px;}
.xa_c01159{left:42.600000px;}
.xd_c01159{left:54.750000px;}
.x8_c01159{left:85.950000px;}
.x4_c01159{left:112.050000px;}
.xe_c01159{left:116.400000px;}
.x9_c01159{left:117.450000px;}
.x5_c01159{left:119.550000px;}
.x6_c01159{left:121.050000px;}
.x1_c01159{left:123.600000px;}
.x3_c01159{left:124.800000px;}
.x10_c01159{left:125.850000px;}
.x13_c01159{left:169.800000px;}
.x14_c01159{left:243.750000px;}
.x16_c01159{left:285.526749px;}
.x15_c01159{left:442.800000px;}
.x12_c01159{left:509.400000px;}
.x11_c01159{left:608.250000px;}
@media print{
.v0_c01159{vertical-align:0.000000pt;}
.ls5_c01159{letter-spacing:0.000000pt;}
.ls3_c01159{letter-spacing:1.920000pt;}
.ls1_c01159{letter-spacing:8.000000pt;}
.ls2_c01159{letter-spacing:10.133333pt;}
.ls4_c01159{letter-spacing:31.317333pt;}
.ls0_c01159{letter-spacing:40.618667pt;}
.ls6_c01159{letter-spacing:50.666667pt;}
.ws2_c01159{word-spacing:-22.666667pt;}
.ws0_c01159{word-spacing:-15.424000pt;}
.ws1_c01159{word-spacing:-0.554667pt;}
.ws3_c01159{word-spacing:0.000000pt;}
._29_c01159{margin-left:-55.722667pt;}
._26_c01159{margin-left:-52.693333pt;}
._24_c01159{margin-left:-48.170667pt;}
._2b_c01159{margin-left:-44.501333pt;}
._22_c01159{margin-left:-28.416000pt;}
._2a_c01159{margin-left:-27.349333pt;}
._25_c01159{margin-left:-18.560000pt;}
._17_c01159{margin-left:-15.192000pt;}
._1d_c01159{margin-left:-12.960000pt;}
._18_c01159{margin-left:-11.160000pt;}
._b_c01159{margin-left:-10.152000pt;}
._1f_c01159{margin-left:-8.424000pt;}
._11_c01159{margin-left:-7.344000pt;}
._e_c01159{margin-left:-6.408000pt;}
._30_c01159{margin-left:-5.234667pt;}
._7_c01159{margin-left:-4.320000pt;}
._a_c01159{margin-left:-3.096000pt;}
._6_c01159{margin-left:-1.944000pt;}
._33_c01159{margin-left:-1.021333pt;}
._4_c01159{width:1.512000pt;}
._1_c01159{width:2.664000pt;}
._2_c01159{width:3.888000pt;}
._0_c01159{width:5.328000pt;}
._9_c01159{width:6.624000pt;}
._3_c01159{width:8.136000pt;}
._8_c01159{width:9.216000pt;}
._16_c01159{width:10.584000pt;}
._5_c01159{width:11.520000pt;}
._31_c01159{width:12.469333pt;}
._13_c01159{width:13.464000pt;}
._1a_c01159{width:14.616000pt;}
._12_c01159{width:15.696000pt;}
._14_c01159{width:16.920000pt;}
._32_c01159{width:19.512000pt;}
._37_c01159{width:20.498667pt;}
._40_c01159{width:22.317333pt;}
._28_c01159{width:23.552000pt;}
._19_c01159{width:24.840000pt;}
._15_c01159{width:25.920000pt;}
._d_c01159{width:27.000000pt;}
._2d_c01159{width:28.629333pt;}
._1b_c01159{width:32.040000pt;}
._38_c01159{width:34.557333pt;}
._3f_c01159{width:40.069333pt;}
._3a_c01159{width:52.493333pt;}
._f_c01159{width:56.520000pt;}
._3b_c01159{width:63.101333pt;}
._27_c01159{width:73.429333pt;}
._21_c01159{width:74.520000pt;}
._20_c01159{width:80.021333pt;}
._2c_c01159{width:107.946667pt;}
._35_c01159{width:128.629333pt;}
._23_c01159{width:133.674667pt;}
._2f_c01159{width:155.304000pt;}
._3c_c01159{width:156.936000pt;}
._36_c01159{width:162.504000pt;}
._10_c01159{width:188.928000pt;}
._39_c01159{width:239.218667pt;}
._1e_c01159{width:263.592000pt;}
._3e_c01159{width:301.978667pt;}
._34_c01159{width:316.800000pt;}
._1c_c01159{width:358.893333pt;}
._3d_c01159{width:363.744000pt;}
._2e_c01159{width:394.136000pt;}
._c_c01159{width:681.608000pt;}
.fs3_c01159{font-size:42.666667pt;}
.fs4_c01159{font-size:45.333333pt;}
.fs6_c01159{font-size:53.333333pt;}
.fs2_c01159{font-size:58.666667pt;}
.fs5_c01159{font-size:61.333333pt;}
.fs1_c01159{font-size:64.000000pt;}
.fs0_c01159{font-size:72.000000pt;}
.y0_c01159{bottom:0.000000pt;}
.y25_c01159{bottom:2.760000pt;}
.y24_c01159{bottom:6.425219pt;}
.y23_c01159{bottom:62.146667pt;}
.y22_c01159{bottom:109.213333pt;}
.y21_c01159{bottom:135.080000pt;}
.y20_c01159{bottom:161.746667pt;}
.y1f_c01159{bottom:184.813333pt;}
.y1e_c01159{bottom:190.280000pt;}
.y1d_c01159{bottom:206.813333pt;}
.y1c_c01159{bottom:228.413333pt;}
.y1b_c01159{bottom:250.546667pt;}
.y1a_c01159{bottom:271.213333pt;}
.y19_c01159{bottom:293.480000pt;}
.y18_c01159{bottom:314.146667pt;}
.y17_c01159{bottom:335.746667pt;}
.y16_c01159{bottom:357.346667pt;}
.y15_c01159{bottom:379.613333pt;}
.y14_c01159{bottom:401.080000pt;}
.y13_c01159{bottom:422.413333pt;}
.y12_c01159{bottom:443.746667pt;}
.y11_c01159{bottom:463.213333pt;}
.y10_c01159{bottom:475.213333pt;}
.yf_c01159{bottom:485.213333pt;}
.ye_c01159{bottom:506.146667pt;}
.yd_c01159{bottom:528.680000pt;}
.yc_c01159{bottom:549.613333pt;}
.yb_c01159{bottom:571.480000pt;}
.ya_c01159{bottom:592.813333pt;}
.y9_c01159{bottom:614.413333pt;}
.y8_c01159{bottom:635.213333pt;}
.y7_c01159{bottom:656.813333pt;}
.y6_c01159{bottom:678.413333pt;}
.y5_c01159{bottom:699.346667pt;}
.y4_c01159{bottom:720.413333pt;}
.y3_c01159{bottom:741.346667pt;}
.y2_c01159{bottom:762.946667pt;}
.y1_c01159{bottom:785.746667pt;}
.h9_c01159{height:11.733399pt;}
.ha_c01159{height:38.937500pt;}
.h8_c01159{height:44.492188pt;}
.h4_c01159{height:57.578125pt;}
.h5_c01159{height:60.195312pt;}
.h6_c01159{height:61.812500pt;}
.h2_c01159{height:70.664062pt;}
.h3_c01159{height:74.906250pt;}
.h7_c01159{height:81.031250pt;}
.h1_c01159{height:876.666667pt;}
.h0_c01159{height:876.733333pt;}
.w2_c01159{width:93.222667pt;}
.w0_c01159{width:593.266667pt;}
.w1_c01159{width:593.333333pt;}
.x0_c01159{left:0.000000pt;}
.xf_c01159{left:24.266667pt;}
.xc_c01159{left:26.400000pt;}
.x7_c01159{left:28.133333pt;}
.x2_c01159{left:30.400000pt;}
.xb_c01159{left:35.066667pt;}
.xa_c01159{left:37.866667pt;}
.xd_c01159{left:48.666667pt;}
.x8_c01159{left:76.400000pt;}
.x4_c01159{left:99.600000pt;}
.xe_c01159{left:103.466667pt;}
.x9_c01159{left:104.400000pt;}
.x5_c01159{left:106.266667pt;}
.x6_c01159{left:107.600000pt;}
.x1_c01159{left:109.866667pt;}
.x3_c01159{left:110.933333pt;}
.x10_c01159{left:111.866667pt;}
.x13_c01159{left:150.933333pt;}
.x14_c01159{left:216.666667pt;}
.x16_c01159{left:253.801554pt;}
.x15_c01159{left:393.600000pt;}
.x12_c01159{left:452.800000pt;}
.x11_c01159{left:540.666667pt;}
}





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

.ir_c01160:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01160{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01160;src:url('chunks/assets/font_a8acff25ae590bda0089bbf8.woff2')format("woff");}.ff1_c01160{font-family:ff1_c01160;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01160;src:url('chunks/assets/font_022ff01c809eb8cb723c555b.woff2')format("woff");}.ff2_c01160{font-family:ff2_c01160;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01160;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff3_c01160{font-family:ff3_c01160;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01160;src:url('chunks/assets/font_d3968b21cc364b00a1c159c3.woff2')format("woff");}.ff4_c01160{font-family:ff4_c01160;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01160;src:url('chunks/assets/font_5664c2bd7db0b57ce24b44cf.woff2')format("woff");}.ff5_c01160{font-family:ff5_c01160;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01160;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c01160{font-family:ff6_c01160;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01160{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01160{vertical-align:0.000000px;}
.ls4_c01160{letter-spacing:0.000000px;}
.ls5_c01160{letter-spacing:3.000000px;}
.ls0_c01160{letter-spacing:3.986400px;}
.ls2_c01160{letter-spacing:5.346000px;}
.ls3_c01160{letter-spacing:6.000000px;}
.ls1_c01160{letter-spacing:39.900000px;}
.sc__c01160{text-shadow:none;}
.sc0_c01160{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01160{-webkit-text-stroke:0px transparent;}
.sc0_c01160{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01160{word-spacing:-1.140000px;}
.ws1_c01160{word-spacing:0.000000px;}
._1f_c01160{margin-left:-12.447000px;}
._4_c01160{margin-left:-9.975000px;}
._6_c01160{margin-left:-4.830000px;}
._5_c01160{margin-left:-3.150000px;}
._7_c01160{margin-left:-2.100000px;}
._14_c01160{width:1.095000px;}
._2_c01160{width:2.730000px;}
._3_c01160{width:4.305000px;}
._1_c01160{width:5.670000px;}
._0_c01160{width:7.665000px;}
._d_c01160{width:8.721000px;}
._12_c01160{width:10.146000px;}
._e_c01160{width:11.286000px;}
._c_c01160{width:12.939000px;}
._19_c01160{width:14.274000px;}
._10_c01160{width:15.276000px;}
._a_c01160{width:16.530000px;}
._9_c01160{width:18.411000px;}
._11_c01160{width:19.779000px;}
._13_c01160{width:21.552000px;}
._8_c01160{width:22.572000px;}
._1d_c01160{width:23.826000px;}
._f_c01160{width:24.909000px;}
._15_c01160{width:26.364000px;}
._b_c01160{width:28.044000px;}
._1e_c01160{width:35.712000px;}
._16_c01160{width:36.855000px;}
._17_c01160{width:41.751000px;}
._1c_c01160{width:44.376000px;}
._20_c01160{width:49.905000px;}
._1a_c01160{width:58.377000px;}
._18_c01160{width:113.517000px;}
._21_c01160{width:209.646000px;}
._22_c01160{width:293.562000px;}
._24_c01160{width:312.672000px;}
._1b_c01160{width:338.661000px;}
._23_c01160{width:349.623000px;}
.fc2_c01160{color:transparent;}
.fc1_c01160{color:rgb(128,128,128);}
.fc0_c01160{color:rgb(0,0,0);}
.fs4_c01160{font-size:40.800000px;}
.fs5_c01160{font-size:42.000000px;}
.fs6_c01160{font-size:48.000000px;}
.fs3_c01160{font-size:51.000000px;}
.fs1_c01160{font-size:57.000000px;}
.fs2_c01160{font-size:66.000000px;}
.fs0_c01160{font-size:105.000000px;}
.y0_c01160{bottom:0.000000px;}
.y26_c01160{bottom:3.105000px;}
.y25_c01160{bottom:7.228369px;}
.y24_c01160{bottom:45.570000px;}
.y23_c01160{bottom:72.120000px;}
.y22_c01160{bottom:97.470000px;}
.y21_c01160{bottom:122.520000px;}
.y20_c01160{bottom:147.120000px;}
.y1f_c01160{bottom:171.720000px;}
.y1e_c01160{bottom:196.320000px;}
.y1d_c01160{bottom:221.370000px;}
.y1c_c01160{bottom:245.970000px;}
.y1b_c01160{bottom:270.570000px;}
.y1a_c01160{bottom:294.570000px;}
.y19_c01160{bottom:319.620000px;}
.y18_c01160{bottom:343.920000px;}
.y17_c01160{bottom:368.220000px;}
.y16_c01160{bottom:392.520000px;}
.y15_c01160{bottom:416.820000px;}
.y14_c01160{bottom:441.120000px;}
.y13_c01160{bottom:465.420000px;}
.y12_c01160{bottom:490.320000px;}
.y11_c01160{bottom:515.670000px;}
.y10_c01160{bottom:538.320000px;}
.yf_c01160{bottom:562.170000px;}
.ye_c01160{bottom:585.870000px;}
.yd_c01160{bottom:610.470000px;}
.yc_c01160{bottom:633.720000px;}
.yb_c01160{bottom:658.170000px;}
.ya_c01160{bottom:682.470000px;}
.y9_c01160{bottom:706.770000px;}
.y8_c01160{bottom:731.670000px;}
.y7_c01160{bottom:756.270000px;}
.y6_c01160{bottom:780.570000px;}
.y5_c01160{bottom:805.320000px;}
.y4_c01160{bottom:829.920000px;}
.y3_c01160{bottom:853.770000px;}
.y2_c01160{bottom:878.070000px;}
.y1_c01160{bottom:919.320000px;}
.h5_c01160{height:13.200073px;}
.h6_c01160{height:43.804688px;}
.h3_c01160{height:57.445312px;}
.h4_c01160{height:66.515625px;}
.h2_c01160{height:103.000488px;}
.h1_c01160{height:986.250000px;}
.h0_c01160{height:986.550000px;}
.w1_c01160{width:104.875500px;}
.w0_c01160{width:672.000000px;}
.x0_c01160{left:0.000000px;}
.x6_c01160{left:49.200000px;}
.x7_c01160{left:50.550000px;}
.x8_c01160{left:51.750000px;}
.x9_c01160{left:53.400000px;}
.x1_c01160{left:81.750000px;}
.x2_c01160{left:204.150000px;}
.x4_c01160{left:212.400000px;}
.x5_c01160{left:214.050000px;}
.x3_c01160{left:215.100000px;}
.xb_c01160{left:287.814240px;}
.xa_c01160{left:406.800000px;}
@media print{
.v0_c01160{vertical-align:0.000000pt;}
.ls4_c01160{letter-spacing:0.000000pt;}
.ls5_c01160{letter-spacing:2.666667pt;}
.ls0_c01160{letter-spacing:3.543467pt;}
.ls2_c01160{letter-spacing:4.752000pt;}
.ls3_c01160{letter-spacing:5.333333pt;}
.ls1_c01160{letter-spacing:35.466667pt;}
.ws0_c01160{word-spacing:-1.013333pt;}
.ws1_c01160{word-spacing:0.000000pt;}
._1f_c01160{margin-left:-11.064000pt;}
._4_c01160{margin-left:-8.866667pt;}
._6_c01160{margin-left:-4.293333pt;}
._5_c01160{margin-left:-2.800000pt;}
._7_c01160{margin-left:-1.866667pt;}
._14_c01160{width:0.973333pt;}
._2_c01160{width:2.426667pt;}
._3_c01160{width:3.826667pt;}
._1_c01160{width:5.040000pt;}
._0_c01160{width:6.813333pt;}
._d_c01160{width:7.752000pt;}
._12_c01160{width:9.018667pt;}
._e_c01160{width:10.032000pt;}
._c_c01160{width:11.501333pt;}
._19_c01160{width:12.688000pt;}
._10_c01160{width:13.578667pt;}
._a_c01160{width:14.693333pt;}
._9_c01160{width:16.365333pt;}
._11_c01160{width:17.581333pt;}
._13_c01160{width:19.157333pt;}
._8_c01160{width:20.064000pt;}
._1d_c01160{width:21.178667pt;}
._f_c01160{width:22.141333pt;}
._15_c01160{width:23.434667pt;}
._b_c01160{width:24.928000pt;}
._1e_c01160{width:31.744000pt;}
._16_c01160{width:32.760000pt;}
._17_c01160{width:37.112000pt;}
._1c_c01160{width:39.445333pt;}
._20_c01160{width:44.360000pt;}
._1a_c01160{width:51.890667pt;}
._18_c01160{width:100.904000pt;}
._21_c01160{width:186.352000pt;}
._22_c01160{width:260.944000pt;}
._24_c01160{width:277.930667pt;}
._1b_c01160{width:301.032000pt;}
._23_c01160{width:310.776000pt;}
.fs4_c01160{font-size:36.266667pt;}
.fs5_c01160{font-size:37.333333pt;}
.fs6_c01160{font-size:42.666667pt;}
.fs3_c01160{font-size:45.333333pt;}
.fs1_c01160{font-size:50.666667pt;}
.fs2_c01160{font-size:58.666667pt;}
.fs0_c01160{font-size:93.333333pt;}
.y0_c01160{bottom:0.000000pt;}
.y26_c01160{bottom:2.760000pt;}
.y25_c01160{bottom:6.425217pt;}
.y24_c01160{bottom:40.506667pt;}
.y23_c01160{bottom:64.106667pt;}
.y22_c01160{bottom:86.640000pt;}
.y21_c01160{bottom:108.906667pt;}
.y20_c01160{bottom:130.773333pt;}
.y1f_c01160{bottom:152.640000pt;}
.y1e_c01160{bottom:174.506667pt;}
.y1d_c01160{bottom:196.773333pt;}
.y1c_c01160{bottom:218.640000pt;}
.y1b_c01160{bottom:240.506667pt;}
.y1a_c01160{bottom:261.840000pt;}
.y19_c01160{bottom:284.106667pt;}
.y18_c01160{bottom:305.706667pt;}
.y17_c01160{bottom:327.306667pt;}
.y16_c01160{bottom:348.906667pt;}
.y15_c01160{bottom:370.506667pt;}
.y14_c01160{bottom:392.106667pt;}
.y13_c01160{bottom:413.706667pt;}
.y12_c01160{bottom:435.840000pt;}
.y11_c01160{bottom:458.373333pt;}
.y10_c01160{bottom:478.506667pt;}
.yf_c01160{bottom:499.706667pt;}
.ye_c01160{bottom:520.773333pt;}
.yd_c01160{bottom:542.640000pt;}
.yc_c01160{bottom:563.306667pt;}
.yb_c01160{bottom:585.040000pt;}
.ya_c01160{bottom:606.640000pt;}
.y9_c01160{bottom:628.240000pt;}
.y8_c01160{bottom:650.373333pt;}
.y7_c01160{bottom:672.240000pt;}
.y6_c01160{bottom:693.840000pt;}
.y5_c01160{bottom:715.840000pt;}
.y4_c01160{bottom:737.706667pt;}
.y3_c01160{bottom:758.906667pt;}
.y2_c01160{bottom:780.506667pt;}
.y1_c01160{bottom:817.173333pt;}
.h5_c01160{height:11.733399pt;}
.h6_c01160{height:38.937500pt;}
.h3_c01160{height:51.062500pt;}
.h4_c01160{height:59.125000pt;}
.h2_c01160{height:91.555990pt;}
.h1_c01160{height:876.666667pt;}
.h0_c01160{height:876.933333pt;}
.w1_c01160{width:93.222667pt;}
.w0_c01160{width:597.333333pt;}
.x0_c01160{left:0.000000pt;}
.x6_c01160{left:43.733333pt;}
.x7_c01160{left:44.933333pt;}
.x8_c01160{left:46.000000pt;}
.x9_c01160{left:47.466667pt;}
.x1_c01160{left:72.666667pt;}
.x2_c01160{left:181.466667pt;}
.x4_c01160{left:188.800000pt;}
.x5_c01160{left:190.266667pt;}
.x3_c01160{left:191.200000pt;}
.xb_c01160{left:255.834880pt;}
.xa_c01160{left:361.600000pt;}
}





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

.ir_c01161:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01161{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01161;src:url('chunks/assets/font_61a8115fae3850c7f4a95194.woff2')format("woff");}.ff1_c01161{font-family:ff1_c01161;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01161;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff2_c01161{font-family:ff2_c01161;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01161;src:url('chunks/assets/font_2f6f3d6b0ad7deb4f685fab9.woff2')format("woff");}.ff3_c01161{font-family:ff3_c01161;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01161;src:url('chunks/assets/font_529a0fe66b8b799225d094c2.woff2')format("woff");}.ff4_c01161{font-family:ff4_c01161;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01161;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c01161{font-family:ff5_c01161;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01161{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01161{vertical-align:0.000000px;}
.ls2_c01161{letter-spacing:0.000000px;}
.ls0_c01161{letter-spacing:4.554000px;}
.ls3_c01161{letter-spacing:9.000000px;}
.ls1_c01161{letter-spacing:76.146000px;}
.sc__c01161{text-shadow:none;}
.sc0_c01161{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01161{-webkit-text-stroke:0px transparent;}
.sc0_c01161{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01161{word-spacing:0.000000px;}
.ws0_c01161{word-spacing:0.171000px;}
._1f_c01161{margin-left:-13.452000px;}
._a_c01161{margin-left:-6.783000px;}
._1b_c01161{margin-left:-4.476000px;}
._1a_c01161{margin-left:-2.820000px;}
._15_c01161{margin-left:-1.398000px;}
._14_c01161{width:1.425000px;}
._c_c01161{width:2.451000px;}
._5_c01161{width:3.876000px;}
._9_c01161{width:5.871000px;}
._2_c01161{width:7.524000px;}
._3_c01161{width:8.664000px;}
._8_c01161{width:9.975000px;}
._d_c01161{width:11.082000px;}
._1_c01161{width:12.141000px;}
._4_c01161{width:13.167000px;}
._11_c01161{width:15.627000px;}
._6_c01161{width:16.644000px;}
._e_c01161{width:17.760000px;}
._0_c01161{width:19.266000px;}
._f_c01161{width:20.715000px;}
._b_c01161{width:22.173000px;}
._12_c01161{width:24.204000px;}
._10_c01161{width:25.788000px;}
._7_c01161{width:26.904000px;}
._1d_c01161{width:27.945000px;}
._13_c01161{width:29.229000px;}
._1c_c01161{width:31.746000px;}
._17_c01161{width:39.858000px;}
._1e_c01161{width:43.464000px;}
._16_c01161{width:192.252000px;}
._19_c01161{width:254.847000px;}
._18_c01161{width:313.785000px;}
.fc2_c01161{color:transparent;}
.fc1_c01161{color:rgb(128,128,128);}
.fc0_c01161{color:rgb(0,0,0);}
.fs2_c01161{font-size:48.000000px;}
.fs1_c01161{font-size:54.000000px;}
.fs0_c01161{font-size:57.000000px;}
.y0_c01161{bottom:0.000000px;}
.y23_c01161{bottom:3.105000px;}
.y22_c01161{bottom:7.228371px;}
.y21_c01161{bottom:97.965000px;}
.y20_c01161{bottom:123.165000px;}
.y1f_c01161{bottom:147.615000px;}
.y1e_c01161{bottom:172.515000px;}
.y1d_c01161{bottom:197.415000px;}
.y1c_c01161{bottom:222.165000px;}
.y1b_c01161{bottom:247.065000px;}
.y1a_c01161{bottom:271.665000px;}
.y19_c01161{bottom:297.015000px;}
.y18_c01161{bottom:321.015000px;}
.y17_c01161{bottom:345.315000px;}
.y16_c01161{bottom:370.665000px;}
.y15_c01161{bottom:394.665000px;}
.y14_c01161{bottom:419.265000px;}
.y13_c01161{bottom:443.565000px;}
.y12_c01161{bottom:468.165000px;}
.y11_c01161{bottom:491.865000px;}
.y10_c01161{bottom:517.065000px;}
.yf_c01161{bottom:540.015000px;}
.ye_c01161{bottom:564.315000px;}
.yd_c01161{bottom:588.915000px;}
.yc_c01161{bottom:613.215000px;}
.yb_c01161{bottom:637.515000px;}
.ya_c01161{bottom:661.815000px;}
.y9_c01161{bottom:685.515000px;}
.y8_c01161{bottom:710.565000px;}
.y7_c01161{bottom:734.715000px;}
.y6_c01161{bottom:758.115000px;}
.y5_c01161{bottom:783.315000px;}
.y4_c01161{bottom:807.315000px;}
.y3_c01161{bottom:832.065000px;}
.y2_c01161{bottom:855.915000px;}
.y1_c01161{bottom:880.665000px;}
.h6_c01161{height:13.200074px;}
.h7_c01161{height:43.804688px;}
.h4_c01161{height:55.914551px;}
.h3_c01161{height:55.942383px;}
.h2_c01161{height:57.445312px;}
.h5_c01161{height:68.370117px;}
.h1_c01161{height:986.250000px;}
.h0_c01161{height:986.325000px;}
.w2_c01161{width:104.875500px;}
.w0_c01161{width:667.425000px;}
.w1_c01161{width:667.500000px;}
.x0_c01161{left:0.000000px;}
.x10_c01161{left:12.900000px;}
.xd_c01161{left:13.950000px;}
.x8_c01161{left:16.200000px;}
.x5_c01161{left:17.250000px;}
.x4_c01161{left:18.300000px;}
.x9_c01161{left:29.400000px;}
.x13_c01161{left:90.750000px;}
.x12_c01161{left:100.650000px;}
.x11_c01161{left:102.000000px;}
.xf_c01161{left:103.050000px;}
.xe_c01161{left:104.250000px;}
.xc_c01161{left:105.300000px;}
.xb_c01161{left:106.950000px;}
.xa_c01161{left:108.300000px;}
.x7_c01161{left:109.350000px;}
.x1_c01161{left:110.400000px;}
.x6_c01161{left:111.450000px;}
.x2_c01161{left:114.750000px;}
.x3_c01161{left:117.150000px;}
.x14_c01161{left:285.526749px;}
@media print{
.v0_c01161{vertical-align:0.000000pt;}
.ls2_c01161{letter-spacing:0.000000pt;}
.ls0_c01161{letter-spacing:4.048000pt;}
.ls3_c01161{letter-spacing:8.000000pt;}
.ls1_c01161{letter-spacing:67.685333pt;}
.ws1_c01161{word-spacing:0.000000pt;}
.ws0_c01161{word-spacing:0.152000pt;}
._1f_c01161{margin-left:-11.957333pt;}
._a_c01161{margin-left:-6.029333pt;}
._1b_c01161{margin-left:-3.978667pt;}
._1a_c01161{margin-left:-2.506667pt;}
._15_c01161{margin-left:-1.242667pt;}
._14_c01161{width:1.266667pt;}
._c_c01161{width:2.178667pt;}
._5_c01161{width:3.445333pt;}
._9_c01161{width:5.218667pt;}
._2_c01161{width:6.688000pt;}
._3_c01161{width:7.701333pt;}
._8_c01161{width:8.866667pt;}
._d_c01161{width:9.850667pt;}
._1_c01161{width:10.792000pt;}
._4_c01161{width:11.704000pt;}
._11_c01161{width:13.890667pt;}
._6_c01161{width:14.794667pt;}
._e_c01161{width:15.786667pt;}
._0_c01161{width:17.125333pt;}
._f_c01161{width:18.413333pt;}
._b_c01161{width:19.709333pt;}
._12_c01161{width:21.514667pt;}
._10_c01161{width:22.922667pt;}
._7_c01161{width:23.914667pt;}
._1d_c01161{width:24.840000pt;}
._13_c01161{width:25.981333pt;}
._1c_c01161{width:28.218667pt;}
._17_c01161{width:35.429333pt;}
._1e_c01161{width:38.634667pt;}
._16_c01161{width:170.890667pt;}
._19_c01161{width:226.530667pt;}
._18_c01161{width:278.920000pt;}
.fs2_c01161{font-size:42.666667pt;}
.fs1_c01161{font-size:48.000000pt;}
.fs0_c01161{font-size:50.666667pt;}
.y0_c01161{bottom:0.000000pt;}
.y23_c01161{bottom:2.760000pt;}
.y22_c01161{bottom:6.425219pt;}
.y21_c01161{bottom:87.080000pt;}
.y20_c01161{bottom:109.480000pt;}
.y1f_c01161{bottom:131.213333pt;}
.y1e_c01161{bottom:153.346667pt;}
.y1d_c01161{bottom:175.480000pt;}
.y1c_c01161{bottom:197.480000pt;}
.y1b_c01161{bottom:219.613333pt;}
.y1a_c01161{bottom:241.480000pt;}
.y19_c01161{bottom:264.013333pt;}
.y18_c01161{bottom:285.346667pt;}
.y17_c01161{bottom:306.946667pt;}
.y16_c01161{bottom:329.480000pt;}
.y15_c01161{bottom:350.813333pt;}
.y14_c01161{bottom:372.680000pt;}
.y13_c01161{bottom:394.280000pt;}
.y12_c01161{bottom:416.146667pt;}
.y11_c01161{bottom:437.213333pt;}
.y10_c01161{bottom:459.613333pt;}
.yf_c01161{bottom:480.013333pt;}
.ye_c01161{bottom:501.613333pt;}
.yd_c01161{bottom:523.480000pt;}
.yc_c01161{bottom:545.080000pt;}
.yb_c01161{bottom:566.680000pt;}
.ya_c01161{bottom:588.280000pt;}
.y9_c01161{bottom:609.346667pt;}
.y8_c01161{bottom:631.613333pt;}
.y7_c01161{bottom:653.080000pt;}
.y6_c01161{bottom:673.880000pt;}
.y5_c01161{bottom:696.280000pt;}
.y4_c01161{bottom:717.613333pt;}
.y3_c01161{bottom:739.613333pt;}
.y2_c01161{bottom:760.813333pt;}
.y1_c01161{bottom:782.813333pt;}
.h6_c01161{height:11.733399pt;}
.h7_c01161{height:38.937500pt;}
.h4_c01161{height:49.701823pt;}
.h3_c01161{height:49.726562pt;}
.h2_c01161{height:51.062500pt;}
.h5_c01161{height:60.773438pt;}
.h1_c01161{height:876.666667pt;}
.h0_c01161{height:876.733333pt;}
.w2_c01161{width:93.222667pt;}
.w0_c01161{width:593.266667pt;}
.w1_c01161{width:593.333333pt;}
.x0_c01161{left:0.000000pt;}
.x10_c01161{left:11.466667pt;}
.xd_c01161{left:12.400000pt;}
.x8_c01161{left:14.400000pt;}
.x5_c01161{left:15.333333pt;}
.x4_c01161{left:16.266667pt;}
.x9_c01161{left:26.133333pt;}
.x13_c01161{left:80.666667pt;}
.x12_c01161{left:89.466667pt;}
.x11_c01161{left:90.666667pt;}
.xf_c01161{left:91.600000pt;}
.xe_c01161{left:92.666667pt;}
.xc_c01161{left:93.600000pt;}
.xb_c01161{left:95.066667pt;}
.xa_c01161{left:96.266667pt;}
.x7_c01161{left:97.200000pt;}
.x1_c01161{left:98.133333pt;}
.x6_c01161{left:99.066667pt;}
.x2_c01161{left:102.000000pt;}
.x3_c01161{left:104.133333pt;}
.x14_c01161{left:253.801554pt;}
}





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

.ir_c01162:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01162{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01162;src:url('chunks/assets/font_e92e0c8b7edf0e1299a5ff52.woff2')format("woff");}.ff1_c01162{font-family:ff1_c01162;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01162;src:url('chunks/assets/font_e15b2b8331c97e25dbbdb317.woff2')format("woff");}.ff2_c01162{font-family:ff2_c01162;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01162;src:url('chunks/assets/font_7442eb4d543543b70cf88562.woff2')format("woff");}.ff3_c01162{font-family:ff3_c01162;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01162;src:url('chunks/assets/font_f125aa124d26be2ff73ea7f2.woff2')format("woff");}.ff4_c01162{font-family:ff4_c01162;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01162;src:url('chunks/assets/font_edc21d3f3b24801dde1fa174.woff2')format("woff");}.ff5_c01162{font-family:ff5_c01162;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01162;src:url('chunks/assets/font_03b526f535172caf1f2d7a05.woff2')format("woff");}.ff6_c01162{font-family:ff6_c01162;line-height:1.284668;font-style:normal;font-weight: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_c01162;src:url('chunks/assets/font_75f7b05a8082438bbfffc2ae.woff2')format("woff");}.ff7_c01162{font-family:ff7_c01162;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c01162;src:url('chunks/assets/font_3cc959d340fa9063fe37c299.woff2')format("woff");}.ff8_c01162{font-family:ff8_c01162;line-height:1.284180;font-style:normal;font-weight: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_c01162;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff9_c01162{font-family:ff9_c01162;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01162{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01162{vertical-align:0.000000px;}
.v1_c01162{vertical-align:172.200000px;}
.ls7_c01162{letter-spacing:-12.000000px;}
.ls8_c01162{letter-spacing:-9.000000px;}
.ls6_c01162{letter-spacing:0.000000px;}
.ls1_c01162{letter-spacing:2.400000px;}
.ls0_c01162{letter-spacing:7.200000px;}
.ls4_c01162{letter-spacing:8.202000px;}
.ls5_c01162{letter-spacing:20.202000px;}
.ls2_c01162{letter-spacing:25.500000px;}
.ls3_c01162{letter-spacing:41.700000px;}
.ls9_c01162{letter-spacing:45.000000px;}
.sc__c01162{text-shadow:none;}
.sc0_c01162{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01162{-webkit-text-stroke:0px transparent;}
.sc0_c01162{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01162{word-spacing:-64.449000px;}
.ws3_c01162{word-spacing:-59.250000px;}
.ws1_c01162{word-spacing:-18.798000px;}
.ws8_c01162{word-spacing:-15.750000px;}
.ws9_c01162{word-spacing:-14.250000px;}
.ws4_c01162{word-spacing:-13.737000px;}
.ws5_c01162{word-spacing:-0.570000px;}
.wsa_c01162{word-spacing:0.000000px;}
.ws0_c01162{word-spacing:1.287000px;}
.ws7_c01162{word-spacing:1.938000px;}
.ws6_c01162{word-spacing:5.415000px;}
._b_c01162{margin-left:-39.438000px;}
._a_c01162{margin-left:-12.324000px;}
._29_c01162{margin-left:-11.142000px;}
._4_c01162{margin-left:-9.204000px;}
._5_c01162{margin-left:-8.112000px;}
._9_c01162{margin-left:-6.942000px;}
._1d_c01162{margin-left:-4.023000px;}
._2_c01162{margin-left:-2.964000px;}
._3_c01162{margin-left:-1.170000px;}
._0_c01162{width:1.386000px;}
._7_c01162{width:3.036000px;}
._10_c01162{width:5.070000px;}
._19_c01162{width:6.087000px;}
._f_c01162{width:7.140000px;}
._c_c01162{width:8.265000px;}
._17_c01162{width:9.387000px;}
._e_c01162{width:10.545000px;}
._6_c01162{width:12.390000px;}
._21_c01162{width:14.118000px;}
._8_c01162{width:15.153000px;}
._16_c01162{width:16.587000px;}
._12_c01162{width:17.964000px;}
._d_c01162{width:19.437000px;}
._1b_c01162{width:20.628000px;}
._13_c01162{width:21.897000px;}
._22_c01162{width:23.256000px;}
._1a_c01162{width:24.294000px;}
._11_c01162{width:25.707000px;}
._14_c01162{width:26.799000px;}
._15_c01162{width:28.209000px;}
._18_c01162{width:29.235000px;}
._1f_c01162{width:31.545000px;}
._27_c01162{width:33.582000px;}
._1e_c01162{width:35.208000px;}
._1c_c01162{width:37.350000px;}
._25_c01162{width:41.625000px;}
._24_c01162{width:46.059000px;}
._28_c01162{width:50.406000px;}
._1_c01162{width:70.794000px;}
._26_c01162{width:74.556000px;}
._20_c01162{width:116.259000px;}
._23_c01162{width:235.626000px;}
._2a_c01162{width:338.856000px;}
.fc2_c01162{color:transparent;}
.fc1_c01162{color:rgb(128,128,128);}
.fc0_c01162{color:rgb(0,0,0);}
.fs8_c01162{font-size:45.000000px;}
.fsb_c01162{font-size:48.000000px;}
.fs9_c01162{font-size:54.000000px;}
.fs5_c01162{font-size:57.000000px;}
.fsa_c01162{font-size:63.000000px;}
.fs3_c01162{font-size:69.000000px;}
.fs2_c01162{font-size:78.000000px;}
.fs6_c01162{font-size:84.000000px;}
.fs0_c01162{font-size:99.000000px;}
.fs1_c01162{font-size:102.000000px;}
.fs7_c01162{font-size:105.000000px;}
.fs4_c01162{font-size:297.000000px;}
.y0_c01162{bottom:0.000000px;}
.y25_c01162{bottom:3.105000px;}
.y24_c01162{bottom:7.228355px;}
.y23_c01162{bottom:41.835000px;}
.y22_c01162{bottom:68.085000px;}
.y21_c01162{bottom:92.835000px;}
.y20_c01162{bottom:117.435000px;}
.y1f_c01162{bottom:142.635000px;}
.y1e_c01162{bottom:166.935000px;}
.y1d_c01162{bottom:191.985000px;}
.y1c_c01162{bottom:216.585000px;}
.y1b_c01162{bottom:241.335000px;}
.y1a_c01162{bottom:265.635000px;}
.y19_c01162{bottom:289.935000px;}
.y18_c01162{bottom:314.535000px;}
.y17_c01162{bottom:338.535000px;}
.y16_c01162{bottom:363.435000px;}
.y15_c01162{bottom:387.735000px;}
.y14_c01162{bottom:411.435000px;}
.y13_c01162{bottom:436.635000px;}
.y12_c01162{bottom:460.635000px;}
.y11_c01162{bottom:484.935000px;}
.y10_c01162{bottom:509.235000px;}
.yf_c01162{bottom:532.935000px;}
.ye_c01162{bottom:557.085000px;}
.yd_c01162{bottom:581.535000px;}
.yc_c01162{bottom:604.785000px;}
.yb_c01162{bottom:628.635000px;}
.ya_c01162{bottom:652.635000px;}
.y9_c01162{bottom:677.385000px;}
.y8_c01162{bottom:700.935000px;}
.y7_c01162{bottom:725.235000px;}
.y6_c01162{bottom:750.585000px;}
.y5_c01162{bottom:774.135000px;}
.y3_c01162{bottom:779.985000px;}
.y4_c01162{bottom:798.735000px;}
.y2_c01162{bottom:871.635000px;}
.y1_c01162{bottom:907.785000px;}
.hb_c01162{height:13.200074px;}
.hc_c01162{height:43.804688px;}
.h5_c01162{height:57.445312px;}
.ha_c01162{height:66.713379px;}
.h9_c01162{height:72.168457px;}
.h7_c01162{height:84.656250px;}
.h3_c01162{height:91.291992px;}
.h6_c01162{height:98.756836px;}
.h8_c01162{height:112.035000px;}
.h2_c01162{height:115.870605px;}
.h4_c01162{height:316.899000px;}
.h0_c01162{height:980.625000px;}
.h1_c01162{height:981.000000px;}
.w2_c01162{width:104.875500px;}
.w0_c01162{width:667.425000px;}
.w1_c01162{width:667.500000px;}
.x0_c01162{left:0.000000px;}
.x6_c01162{left:47.700000px;}
.x3_c01162{left:49.350000px;}
.x7_c01162{left:51.000000px;}
.x8_c01162{left:52.050000px;}
.x9_c01162{left:54.300000px;}
.xa_c01162{left:55.350000px;}
.xb_c01162{left:57.600000px;}
.xc_c01162{left:58.800000px;}
.xd_c01162{left:60.450000px;}
.xe_c01162{left:62.100000px;}
.xf_c01162{left:63.900000px;}
.x10_c01162{left:65.100000px;}
.x1_c01162{left:66.150000px;}
.x11_c01162{left:68.100000px;}
.x5_c01162{left:102.900000px;}
.x4_c01162{left:108.000000px;}
.x2_c01162{left:120.600000px;}
.x13_c01162{left:285.526749px;}
.x12_c01162{left:406.950000px;}
@media print{
.v0_c01162{vertical-align:0.000000pt;}
.v1_c01162{vertical-align:153.066667pt;}
.ls7_c01162{letter-spacing:-10.666667pt;}
.ls8_c01162{letter-spacing:-8.000000pt;}
.ls6_c01162{letter-spacing:0.000000pt;}
.ls1_c01162{letter-spacing:2.133333pt;}
.ls0_c01162{letter-spacing:6.400000pt;}
.ls4_c01162{letter-spacing:7.290667pt;}
.ls5_c01162{letter-spacing:17.957333pt;}
.ls2_c01162{letter-spacing:22.666667pt;}
.ls3_c01162{letter-spacing:37.066667pt;}
.ls9_c01162{letter-spacing:40.000000pt;}
.ws2_c01162{word-spacing:-57.288000pt;}
.ws3_c01162{word-spacing:-52.666667pt;}
.ws1_c01162{word-spacing:-16.709333pt;}
.ws8_c01162{word-spacing:-14.000000pt;}
.ws9_c01162{word-spacing:-12.666667pt;}
.ws4_c01162{word-spacing:-12.210667pt;}
.ws5_c01162{word-spacing:-0.506667pt;}
.wsa_c01162{word-spacing:0.000000pt;}
.ws0_c01162{word-spacing:1.144000pt;}
.ws7_c01162{word-spacing:1.722667pt;}
.ws6_c01162{word-spacing:4.813333pt;}
._b_c01162{margin-left:-35.056000pt;}
._a_c01162{margin-left:-10.954667pt;}
._29_c01162{margin-left:-9.904000pt;}
._4_c01162{margin-left:-8.181333pt;}
._5_c01162{margin-left:-7.210667pt;}
._9_c01162{margin-left:-6.170667pt;}
._1d_c01162{margin-left:-3.576000pt;}
._2_c01162{margin-left:-2.634667pt;}
._3_c01162{margin-left:-1.040000pt;}
._0_c01162{width:1.232000pt;}
._7_c01162{width:2.698667pt;}
._10_c01162{width:4.506667pt;}
._19_c01162{width:5.410667pt;}
._f_c01162{width:6.346667pt;}
._c_c01162{width:7.346667pt;}
._17_c01162{width:8.344000pt;}
._e_c01162{width:9.373333pt;}
._6_c01162{width:11.013333pt;}
._21_c01162{width:12.549333pt;}
._8_c01162{width:13.469333pt;}
._16_c01162{width:14.744000pt;}
._12_c01162{width:15.968000pt;}
._d_c01162{width:17.277333pt;}
._1b_c01162{width:18.336000pt;}
._13_c01162{width:19.464000pt;}
._22_c01162{width:20.672000pt;}
._1a_c01162{width:21.594667pt;}
._11_c01162{width:22.850667pt;}
._14_c01162{width:23.821333pt;}
._15_c01162{width:25.074667pt;}
._18_c01162{width:25.986667pt;}
._1f_c01162{width:28.040000pt;}
._27_c01162{width:29.850667pt;}
._1e_c01162{width:31.296000pt;}
._1c_c01162{width:33.200000pt;}
._25_c01162{width:37.000000pt;}
._24_c01162{width:40.941333pt;}
._28_c01162{width:44.805333pt;}
._1_c01162{width:62.928000pt;}
._26_c01162{width:66.272000pt;}
._20_c01162{width:103.341333pt;}
._23_c01162{width:209.445333pt;}
._2a_c01162{width:301.205333pt;}
.fs8_c01162{font-size:40.000000pt;}
.fsb_c01162{font-size:42.666667pt;}
.fs9_c01162{font-size:48.000000pt;}
.fs5_c01162{font-size:50.666667pt;}
.fsa_c01162{font-size:56.000000pt;}
.fs3_c01162{font-size:61.333333pt;}
.fs2_c01162{font-size:69.333333pt;}
.fs6_c01162{font-size:74.666667pt;}
.fs0_c01162{font-size:88.000000pt;}
.fs1_c01162{font-size:90.666667pt;}
.fs7_c01162{font-size:93.333333pt;}
.fs4_c01162{font-size:264.000000pt;}
.y0_c01162{bottom:0.000000pt;}
.y25_c01162{bottom:2.760000pt;}
.y24_c01162{bottom:6.425204pt;}
.y23_c01162{bottom:37.186667pt;}
.y22_c01162{bottom:60.520000pt;}
.y21_c01162{bottom:82.520000pt;}
.y20_c01162{bottom:104.386667pt;}
.y1f_c01162{bottom:126.786667pt;}
.y1e_c01162{bottom:148.386667pt;}
.y1d_c01162{bottom:170.653333pt;}
.y1c_c01162{bottom:192.520000pt;}
.y1b_c01162{bottom:214.520000pt;}
.y1a_c01162{bottom:236.120000pt;}
.y19_c01162{bottom:257.720000pt;}
.y18_c01162{bottom:279.586667pt;}
.y17_c01162{bottom:300.920000pt;}
.y16_c01162{bottom:323.053333pt;}
.y15_c01162{bottom:344.653333pt;}
.y14_c01162{bottom:365.720000pt;}
.y13_c01162{bottom:388.120000pt;}
.y12_c01162{bottom:409.453333pt;}
.y11_c01162{bottom:431.053333pt;}
.y10_c01162{bottom:452.653333pt;}
.yf_c01162{bottom:473.720000pt;}
.ye_c01162{bottom:495.186667pt;}
.yd_c01162{bottom:516.920000pt;}
.yc_c01162{bottom:537.586667pt;}
.yb_c01162{bottom:558.786667pt;}
.ya_c01162{bottom:580.120000pt;}
.y9_c01162{bottom:602.120000pt;}
.y8_c01162{bottom:623.053333pt;}
.y7_c01162{bottom:644.653333pt;}
.y6_c01162{bottom:667.186667pt;}
.y5_c01162{bottom:688.120000pt;}
.y3_c01162{bottom:693.320000pt;}
.y4_c01162{bottom:709.986667pt;}
.y2_c01162{bottom:774.786667pt;}
.y1_c01162{bottom:806.920000pt;}
.hb_c01162{height:11.733399pt;}
.hc_c01162{height:38.937500pt;}
.h5_c01162{height:51.062500pt;}
.ha_c01162{height:59.300781pt;}
.h9_c01162{height:64.149740pt;}
.h7_c01162{height:75.250000pt;}
.h3_c01162{height:81.148438pt;}
.h6_c01162{height:87.783854pt;}
.h8_c01162{height:99.586667pt;}
.h2_c01162{height:102.996094pt;}
.h4_c01162{height:281.688000pt;}
.h0_c01162{height:871.666667pt;}
.h1_c01162{height:872.000000pt;}
.w2_c01162{width:93.222667pt;}
.w0_c01162{width:593.266667pt;}
.w1_c01162{width:593.333333pt;}
.x0_c01162{left:0.000000pt;}
.x6_c01162{left:42.400000pt;}
.x3_c01162{left:43.866667pt;}
.x7_c01162{left:45.333333pt;}
.x8_c01162{left:46.266667pt;}
.x9_c01162{left:48.266667pt;}
.xa_c01162{left:49.200000pt;}
.xb_c01162{left:51.200000pt;}
.xc_c01162{left:52.266667pt;}
.xd_c01162{left:53.733333pt;}
.xe_c01162{left:55.200000pt;}
.xf_c01162{left:56.800000pt;}
.x10_c01162{left:57.866667pt;}
.x1_c01162{left:58.800000pt;}
.x11_c01162{left:60.533333pt;}
.x5_c01162{left:91.466667pt;}
.x4_c01162{left:96.000000pt;}
.x2_c01162{left:107.200000pt;}
.x13_c01162{left:253.801554pt;}
.x12_c01162{left:361.733333pt;}
}





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

.ir_c01163:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01163{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01163;src:url('chunks/assets/font_86f995bdf5c921656ff5f1e7.woff2')format("woff");}.ff1_c01163{font-family:ff1_c01163;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01163;src:url('chunks/assets/font_cc3d08da9fce7d0ce6756786.woff2')format("woff");}.ff2_c01163{font-family:ff2_c01163;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01163;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff3_c01163{font-family:ff3_c01163;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01163;src:url('chunks/assets/font_2f6886e60eff70b981dac552.woff2')format("woff");}.ff4_c01163{font-family:ff4_c01163;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01163;src:url('chunks/assets/font_f86da4794b3412b268c3a944.woff2')format("woff");}.ff5_c01163{font-family:ff5_c01163;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01163;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c01163{font-family:ff6_c01163;line-height:1.219238;font-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_c01163{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m0_c01163{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01163{vertical-align:0.000000px;}
.ls9_c01163{letter-spacing:-3.000000px;}
.ls7_c01163{letter-spacing:0.000000px;}
.ls0_c01163{letter-spacing:3.150000px;}
.ls5_c01163{letter-spacing:5.250000px;}
.ls6_c01163{letter-spacing:8.400000px;}
.ls8_c01163{letter-spacing:9.000000px;}
.ls3_c01163{letter-spacing:34.950000px;}
.ls2_c01163{letter-spacing:45.750000px;}
.ls1_c01163{letter-spacing:110.946000px;}
.ls4_c01163{letter-spacing:219.150000px;}
.sc__c01163{text-shadow:none;}
.sc0_c01163{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01163{-webkit-text-stroke:0px transparent;}
.sc0_c01163{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c01163{word-spacing:-27.000000px;}
.ws1_c01163{word-spacing:-26.250000px;}
.ws3_c01163{word-spacing:-14.250000px;}
.ws5_c01163{word-spacing:0.000000px;}
.ws2_c01163{word-spacing:1.254000px;}
.ws0_c01163{word-spacing:10.317000px;}
._26_c01163{margin-left:-16.014000px;}
._20_c01163{margin-left:-14.274000px;}
._25_c01163{margin-left:-13.164000px;}
._23_c01163{margin-left:-11.253000px;}
._27_c01163{margin-left:-10.059000px;}
._28_c01163{margin-left:-7.038000px;}
._24_c01163{margin-left:-5.451000px;}
._1b_c01163{margin-left:-3.732000px;}
._1c_c01163{margin-left:-2.070000px;}
._2_c01163{margin-left:-1.035000px;}
._0_c01163{width:1.518000px;}
._1_c01163{width:2.829000px;}
._f_c01163{width:4.500000px;}
._7_c01163{width:6.156000px;}
._4_c01163{width:7.239000px;}
._d_c01163{width:8.829000px;}
._8_c01163{width:9.861000px;}
._3_c01163{width:10.866000px;}
._1e_c01163{width:11.880000px;}
._6_c01163{width:12.882000px;}
._9_c01163{width:15.846000px;}
._c_c01163{width:17.157000px;}
._5_c01163{width:18.546000px;}
._10_c01163{width:19.899000px;}
._13_c01163{width:21.288000px;}
._11_c01163{width:22.479000px;}
._17_c01163{width:24.375000px;}
._a_c01163{width:25.629000px;}
._b_c01163{width:28.386000px;}
._22_c01163{width:30.252000px;}
._16_c01163{width:31.743000px;}
._14_c01163{width:33.765000px;}
._12_c01163{width:40.065000px;}
._1d_c01163{width:42.288000px;}
._19_c01163{width:88.806000px;}
._1f_c01163{width:157.929000px;}
._15_c01163{width:188.814000px;}
._21_c01163{width:246.147000px;}
._e_c01163{width:303.468000px;}
._1a_c01163{width:367.032000px;}
._18_c01163{width:395.766000px;}
.fc2_c01163{color:transparent;}
.fc1_c01163{color:rgb(128,128,128);}
.fc0_c01163{color:rgb(0,0,0);}
.fs4_c01163{font-size:48.000000px;}
.fs1_c01163{font-size:57.000000px;}
.fs3_c01163{font-size:66.000000px;}
.fs0_c01163{font-size:69.000000px;}
.fs2_c01163{font-size:108.000000px;}
.y0_c01163{bottom:0.000000px;}
.y25_c01163{bottom:3.105000px;}
.y24_c01163{bottom:7.228371px;}
.y23_c01163{bottom:49.365000px;}
.y22_c01163{bottom:73.665000px;}
.y21_c01163{bottom:98.865000px;}
.y20_c01163{bottom:123.315000px;}
.y1f_c01163{bottom:147.615000px;}
.y1e_c01163{bottom:172.215000px;}
.y1d_c01163{bottom:196.815000px;}
.y1c_c01163{bottom:221.115000px;}
.y1b_c01163{bottom:246.015000px;}
.y1a_c01163{bottom:270.315000px;}
.y19_c01163{bottom:295.365000px;}
.y18_c01163{bottom:318.915000px;}
.y17_c01163{bottom:343.365000px;}
.y16_c01163{bottom:367.215000px;}
.y15_c01163{bottom:391.965000px;}
.y14_c01163{bottom:416.565000px;}
.y13_c01163{bottom:441.915000px;}
.y12_c01163{bottom:464.715000px;}
.y11_c01163{bottom:489.165000px;}
.y10_c01163{bottom:513.015000px;}
.yf_c01163{bottom:536.715000px;}
.ye_c01163{bottom:561.015000px;}
.yd_c01163{bottom:586.365000px;}
.yc_c01163{bottom:609.615000px;}
.yb_c01163{bottom:633.915000px;}
.ya_c01163{bottom:658.215000px;}
.y9_c01163{bottom:682.065000px;}
.y8_c01163{bottom:706.365000px;}
.y7_c01163{bottom:730.665000px;}
.y6_c01163{bottom:754.665000px;}
.y5_c01163{bottom:778.365000px;}
.y4_c01163{bottom:803.715000px;}
.y3_c01163{bottom:828.015000px;}
.y2_c01163{bottom:851.565000px;}
.y1_c01163{bottom:875.565000px;}
.h6_c01163{height:13.200074px;}
.h7_c01163{height:43.804688px;}
.h3_c01163{height:57.445312px;}
.h5_c01163{height:69.539062px;}
.h2_c01163{height:72.312000px;}
.h4_c01163{height:108.843750px;}
.h1_c01163{height:986.250000px;}
.h0_c01163{height:986.325000px;}
.w2_c01163{width:104.875500px;}
.w0_c01163{width:667.425000px;}
.w1_c01163{width:667.500000px;}
.x0_c01163{left:0.000000px;}
.xa_c01163{left:14.100000px;}
.xe_c01163{left:15.900000px;}
.x3_c01163{left:21.900000px;}
.x8_c01163{left:56.250000px;}
.x7_c01163{left:74.250000px;}
.x2_c01163{left:81.450000px;}
.x10_c01163{left:107.400000px;}
.x12_c01163{left:108.750000px;}
.x11_c01163{left:109.800000px;}
.xf_c01163{left:111.000000px;}
.xc_c01163{left:112.500000px;}
.x9_c01163{left:114.000000px;}
.x6_c01163{left:115.050000px;}
.x5_c01163{left:116.400000px;}
.x4_c01163{left:118.800000px;}
.x1_c01163{left:122.850000px;}
.x13_c01163{left:130.350000px;}
.xd_c01163{left:137.250000px;}
.x15_c01163{left:285.526749px;}
.x14_c01163{left:561.300000px;}
.xb_c01163{left:595.350000px;}
@media print{
.v0_c01163{vertical-align:0.000000pt;}
.ls9_c01163{letter-spacing:-2.666667pt;}
.ls7_c01163{letter-spacing:0.000000pt;}
.ls0_c01163{letter-spacing:2.800000pt;}
.ls5_c01163{letter-spacing:4.666667pt;}
.ls6_c01163{letter-spacing:7.466667pt;}
.ls8_c01163{letter-spacing:8.000000pt;}
.ls3_c01163{letter-spacing:31.066667pt;}
.ls2_c01163{letter-spacing:40.666667pt;}
.ls1_c01163{letter-spacing:98.618667pt;}
.ls4_c01163{letter-spacing:194.800000pt;}
.ws4_c01163{word-spacing:-24.000000pt;}
.ws1_c01163{word-spacing:-23.333333pt;}
.ws3_c01163{word-spacing:-12.666667pt;}
.ws5_c01163{word-spacing:0.000000pt;}
.ws2_c01163{word-spacing:1.114667pt;}
.ws0_c01163{word-spacing:9.170667pt;}
._26_c01163{margin-left:-14.234667pt;}
._20_c01163{margin-left:-12.688000pt;}
._25_c01163{margin-left:-11.701333pt;}
._23_c01163{margin-left:-10.002667pt;}
._27_c01163{margin-left:-8.941333pt;}
._28_c01163{margin-left:-6.256000pt;}
._24_c01163{margin-left:-4.845333pt;}
._1b_c01163{margin-left:-3.317333pt;}
._1c_c01163{margin-left:-1.840000pt;}
._2_c01163{margin-left:-0.920000pt;}
._0_c01163{width:1.349333pt;}
._1_c01163{width:2.514667pt;}
._f_c01163{width:4.000000pt;}
._7_c01163{width:5.472000pt;}
._4_c01163{width:6.434667pt;}
._d_c01163{width:7.848000pt;}
._8_c01163{width:8.765333pt;}
._3_c01163{width:9.658667pt;}
._1e_c01163{width:10.560000pt;}
._6_c01163{width:11.450667pt;}
._9_c01163{width:14.085333pt;}
._c_c01163{width:15.250667pt;}
._5_c01163{width:16.485333pt;}
._10_c01163{width:17.688000pt;}
._13_c01163{width:18.922667pt;}
._11_c01163{width:19.981333pt;}
._17_c01163{width:21.666667pt;}
._a_c01163{width:22.781333pt;}
._b_c01163{width:25.232000pt;}
._22_c01163{width:26.890667pt;}
._16_c01163{width:28.216000pt;}
._14_c01163{width:30.013333pt;}
._12_c01163{width:35.613333pt;}
._1d_c01163{width:37.589333pt;}
._19_c01163{width:78.938667pt;}
._1f_c01163{width:140.381333pt;}
._15_c01163{width:167.834667pt;}
._21_c01163{width:218.797333pt;}
._e_c01163{width:269.749333pt;}
._1a_c01163{width:326.250667pt;}
._18_c01163{width:351.792000pt;}
.fs4_c01163{font-size:42.666667pt;}
.fs1_c01163{font-size:50.666667pt;}
.fs3_c01163{font-size:58.666667pt;}
.fs0_c01163{font-size:61.333333pt;}
.fs2_c01163{font-size:96.000000pt;}
.y0_c01163{bottom:0.000000pt;}
.y25_c01163{bottom:2.760000pt;}
.y24_c01163{bottom:6.425219pt;}
.y23_c01163{bottom:43.880000pt;}
.y22_c01163{bottom:65.480000pt;}
.y21_c01163{bottom:87.880000pt;}
.y20_c01163{bottom:109.613333pt;}
.y1f_c01163{bottom:131.213333pt;}
.y1e_c01163{bottom:153.080000pt;}
.y1d_c01163{bottom:174.946667pt;}
.y1c_c01163{bottom:196.546667pt;}
.y1b_c01163{bottom:218.680000pt;}
.y1a_c01163{bottom:240.280000pt;}
.y19_c01163{bottom:262.546667pt;}
.y18_c01163{bottom:283.480000pt;}
.y17_c01163{bottom:305.213333pt;}
.y16_c01163{bottom:326.413333pt;}
.y15_c01163{bottom:348.413333pt;}
.y14_c01163{bottom:370.280000pt;}
.y13_c01163{bottom:392.813333pt;}
.y12_c01163{bottom:413.080000pt;}
.y11_c01163{bottom:434.813333pt;}
.y10_c01163{bottom:456.013333pt;}
.yf_c01163{bottom:477.080000pt;}
.ye_c01163{bottom:498.680000pt;}
.yd_c01163{bottom:521.213333pt;}
.yc_c01163{bottom:541.880000pt;}
.yb_c01163{bottom:563.480000pt;}
.ya_c01163{bottom:585.080000pt;}
.y9_c01163{bottom:606.280000pt;}
.y8_c01163{bottom:627.880000pt;}
.y7_c01163{bottom:649.480000pt;}
.y6_c01163{bottom:670.813333pt;}
.y5_c01163{bottom:691.880000pt;}
.y4_c01163{bottom:714.413333pt;}
.y3_c01163{bottom:736.013333pt;}
.y2_c01163{bottom:756.946667pt;}
.y1_c01163{bottom:778.280000pt;}
.h6_c01163{height:11.733399pt;}
.h7_c01163{height:38.937500pt;}
.h3_c01163{height:51.062500pt;}
.h5_c01163{height:61.812500pt;}
.h2_c01163{height:64.277333pt;}
.h4_c01163{height:96.750000pt;}
.h1_c01163{height:876.666667pt;}
.h0_c01163{height:876.733333pt;}
.w2_c01163{width:93.222667pt;}
.w0_c01163{width:593.266667pt;}
.w1_c01163{width:593.333333pt;}
.x0_c01163{left:0.000000pt;}
.xa_c01163{left:12.533333pt;}
.xe_c01163{left:14.133333pt;}
.x3_c01163{left:19.466667pt;}
.x8_c01163{left:50.000000pt;}
.x7_c01163{left:66.000000pt;}
.x2_c01163{left:72.400000pt;}
.x10_c01163{left:95.466667pt;}
.x12_c01163{left:96.666667pt;}
.x11_c01163{left:97.600000pt;}
.xf_c01163{left:98.666667pt;}
.xc_c01163{left:100.000000pt;}
.x9_c01163{left:101.333333pt;}
.x6_c01163{left:102.266667pt;}
.x5_c01163{left:103.466667pt;}
.x4_c01163{left:105.600000pt;}
.x1_c01163{left:109.200000pt;}
.x13_c01163{left:115.866667pt;}
.xd_c01163{left:122.000000pt;}
.x15_c01163{left:253.801554pt;}
.x14_c01163{left:498.933333pt;}
.xb_c01163{left:529.200000pt;}
}





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

.ir_c01164:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01164{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01164;src:url('chunks/assets/font_dea5d069093bd1aee647e62b.woff2')format("woff");}.ff1_c01164{font-family:ff1_c01164;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01164;src:url('chunks/assets/font_a31586e6933ce818f0639109.woff2')format("woff");}.ff2_c01164{font-family:ff2_c01164;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01164;src:url('chunks/assets/font_09efd0505b1dbf3fd613548a.woff2')format("woff");}.ff3_c01164{font-family:ff3_c01164;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01164;src:url('chunks/assets/font_59d8af80c9247f4f7d4650b8.woff2')format("woff");}.ff4_c01164{font-family:ff4_c01164;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01164;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c01164{font-family:ff5_c01164;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01164{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01164{vertical-align:0.000000px;}
.ls1_c01164{letter-spacing:0.000000px;}
.ls0_c01164{letter-spacing:4.650000px;}
.sc__c01164{text-shadow:none;}
.sc0_c01164{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01164{-webkit-text-stroke:0px transparent;}
.sc0_c01164{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01164{word-spacing:-2.187000px;}
.ws2_c01164{word-spacing:0.000000px;}
.ws0_c01164{word-spacing:0.198000px;}
._2c_c01164{margin-left:-15.930000px;}
._20_c01164{margin-left:-9.306000px;}
._25_c01164{margin-left:-7.293000px;}
._2a_c01164{margin-left:-6.210000px;}
._23_c01164{margin-left:-5.082000px;}
._a_c01164{margin-left:-3.819000px;}
._24_c01164{margin-left:-2.400000px;}
._13_c01164{margin-left:-1.197000px;}
._10_c01164{width:1.254000px;}
._d_c01164{width:2.850000px;}
._8_c01164{width:4.161000px;}
._3_c01164{width:6.156000px;}
._6_c01164{width:7.353000px;}
._9_c01164{width:8.493000px;}
._4_c01164{width:9.576000px;}
._0_c01164{width:11.001000px;}
._7_c01164{width:12.654000px;}
._5_c01164{width:15.276000px;}
._1_c01164{width:17.100000px;}
._2_c01164{width:19.038000px;}
._f_c01164{width:20.376000px;}
._17_c01164{width:21.489000px;}
._c_c01164{width:22.629000px;}
._11_c01164{width:23.976000px;}
._e_c01164{width:26.070000px;}
._1b_c01164{width:28.044000px;}
._16_c01164{width:30.552000px;}
._1a_c01164{width:32.775000px;}
._14_c01164{width:34.485000px;}
._2b_c01164{width:35.772000px;}
._1d_c01164{width:37.335000px;}
._21_c01164{width:38.676000px;}
._22_c01164{width:40.002000px;}
._18_c01164{width:41.325000px;}
._12_c01164{width:42.579000px;}
._1e_c01164{width:50.202000px;}
._28_c01164{width:58.230000px;}
._b_c01164{width:105.735000px;}
._26_c01164{width:111.960000px;}
._15_c01164{width:122.094000px;}
._1f_c01164{width:216.087000px;}
._1c_c01164{width:241.830000px;}
._19_c01164{width:262.713000px;}
._2d_c01164{width:326.070000px;}
._27_c01164{width:336.060000px;}
._29_c01164{width:585.630000px;}
.fc2_c01164{color:transparent;}
.fc1_c01164{color:rgb(128,128,128);}
.fc0_c01164{color:rgb(0,0,0);}
.fs6_c01164{font-size:48.000000px;}
.fs0_c01164{font-size:57.000000px;}
.fs3_c01164{font-size:63.000000px;}
.fs1_c01164{font-size:66.000000px;}
.fs2_c01164{font-size:72.000000px;}
.fs4_c01164{font-size:75.000000px;}
.fs5_c01164{font-size:90.000000px;}
.y0_c01164{bottom:0.000000px;}
.y25_c01164{bottom:3.105000px;}
.y24_c01164{bottom:7.228369px;}
.y23_c01164{bottom:37.020000px;}
.y22_c01164{bottom:60.420000px;}
.y21_c01164{bottom:85.320000px;}
.y20_c01164{bottom:109.620000px;}
.y1f_c01164{bottom:136.320000px;}
.y1e_c01164{bottom:159.570000px;}
.y1d_c01164{bottom:184.920000px;}
.y1c_c01164{bottom:207.870000px;}
.y1b_c01164{bottom:232.770000px;}
.y1a_c01164{bottom:258.870000px;}
.y19_c01164{bottom:282.870000px;}
.y18_c01164{bottom:306.120000px;}
.y17_c01164{bottom:330.420000px;}
.y16_c01164{bottom:354.720000px;}
.y15_c01164{bottom:378.720000px;}
.y14_c01164{bottom:403.920000px;}
.y13_c01164{bottom:427.620000px;}
.y12_c01164{bottom:451.620000px;}
.y11_c01164{bottom:474.120000px;}
.y10_c01164{bottom:500.220000px;}
.yf_c01164{bottom:524.070000px;}
.ye_c01164{bottom:547.770000px;}
.yd_c01164{bottom:573.420000px;}
.yc_c01164{bottom:597.720000px;}
.yb_c01164{bottom:620.220000px;}
.ya_c01164{bottom:643.920000px;}
.y9_c01164{bottom:667.920000px;}
.y8_c01164{bottom:692.520000px;}
.y7_c01164{bottom:716.520000px;}
.y6_c01164{bottom:740.520000px;}
.y5_c01164{bottom:765.420000px;}
.y4_c01164{bottom:792.420000px;}
.y3_c01164{bottom:814.320000px;}
.y2_c01164{bottom:837.720000px;}
.y1_c01164{bottom:862.620000px;}
.h7_c01164{height:13.200073px;}
.h8_c01164{height:43.804688px;}
.h2_c01164{height:57.445312px;}
.h3_c01164{height:66.515625px;}
.h4_c01164{height:72.562500px;}
.h5_c01164{height:81.300000px;}
.h6_c01164{height:88.330078px;}
.h0_c01164{height:970.350000px;}
.h1_c01164{height:970.500000px;}
.w2_c01164{width:104.875500px;}
.w0_c01164{width:660.450000px;}
.w1_c01164{width:660.750000px;}
.x0_c01164{left:0.000000px;}
.x2_c01164{left:15.900000px;}
.x8_c01164{left:20.850000px;}
.xf_c01164{left:33.750000px;}
.xe_c01164{left:35.400000px;}
.xd_c01164{left:36.450000px;}
.xc_c01164{left:37.500000px;}
.xa_c01164{left:38.700000px;}
.xb_c01164{left:39.750000px;}
.x9_c01164{left:40.800000px;}
.x7_c01164{left:41.850000px;}
.x6_c01164{left:42.900000px;}
.x5_c01164{left:45.000000px;}
.x4_c01164{left:46.200000px;}
.x3_c01164{left:47.250000px;}
.x1_c01164{left:48.300000px;}
.x10_c01164{left:58.650000px;}
.x11_c01164{left:282.039230px;}
@media print{
.v0_c01164{vertical-align:0.000000pt;}
.ls1_c01164{letter-spacing:0.000000pt;}
.ls0_c01164{letter-spacing:4.133333pt;}
.ws1_c01164{word-spacing:-1.944000pt;}
.ws2_c01164{word-spacing:0.000000pt;}
.ws0_c01164{word-spacing:0.176000pt;}
._2c_c01164{margin-left:-14.160000pt;}
._20_c01164{margin-left:-8.272000pt;}
._25_c01164{margin-left:-6.482667pt;}
._2a_c01164{margin-left:-5.520000pt;}
._23_c01164{margin-left:-4.517333pt;}
._a_c01164{margin-left:-3.394667pt;}
._24_c01164{margin-left:-2.133333pt;}
._13_c01164{margin-left:-1.064000pt;}
._10_c01164{width:1.114667pt;}
._d_c01164{width:2.533333pt;}
._8_c01164{width:3.698667pt;}
._3_c01164{width:5.472000pt;}
._6_c01164{width:6.536000pt;}
._9_c01164{width:7.549333pt;}
._4_c01164{width:8.512000pt;}
._0_c01164{width:9.778667pt;}
._7_c01164{width:11.248000pt;}
._5_c01164{width:13.578667pt;}
._1_c01164{width:15.200000pt;}
._2_c01164{width:16.922667pt;}
._f_c01164{width:18.112000pt;}
._17_c01164{width:19.101333pt;}
._c_c01164{width:20.114667pt;}
._11_c01164{width:21.312000pt;}
._e_c01164{width:23.173333pt;}
._1b_c01164{width:24.928000pt;}
._16_c01164{width:27.157333pt;}
._1a_c01164{width:29.133333pt;}
._14_c01164{width:30.653333pt;}
._2b_c01164{width:31.797333pt;}
._1d_c01164{width:33.186667pt;}
._21_c01164{width:34.378667pt;}
._22_c01164{width:35.557333pt;}
._18_c01164{width:36.733333pt;}
._12_c01164{width:37.848000pt;}
._1e_c01164{width:44.624000pt;}
._28_c01164{width:51.760000pt;}
._b_c01164{width:93.986667pt;}
._26_c01164{width:99.520000pt;}
._15_c01164{width:108.528000pt;}
._1f_c01164{width:192.077333pt;}
._1c_c01164{width:214.960000pt;}
._19_c01164{width:233.522667pt;}
._2d_c01164{width:289.840000pt;}
._27_c01164{width:298.720000pt;}
._29_c01164{width:520.560000pt;}
.fs6_c01164{font-size:42.666667pt;}
.fs0_c01164{font-size:50.666667pt;}
.fs3_c01164{font-size:56.000000pt;}
.fs1_c01164{font-size:58.666667pt;}
.fs2_c01164{font-size:64.000000pt;}
.fs4_c01164{font-size:66.666667pt;}
.fs5_c01164{font-size:80.000000pt;}
.y0_c01164{bottom:0.000000pt;}
.y25_c01164{bottom:2.760000pt;}
.y24_c01164{bottom:6.425217pt;}
.y23_c01164{bottom:32.906667pt;}
.y22_c01164{bottom:53.706667pt;}
.y21_c01164{bottom:75.840000pt;}
.y20_c01164{bottom:97.440000pt;}
.y1f_c01164{bottom:121.173333pt;}
.y1e_c01164{bottom:141.840000pt;}
.y1d_c01164{bottom:164.373333pt;}
.y1c_c01164{bottom:184.773333pt;}
.y1b_c01164{bottom:206.906667pt;}
.y1a_c01164{bottom:230.106667pt;}
.y19_c01164{bottom:251.440000pt;}
.y18_c01164{bottom:272.106667pt;}
.y17_c01164{bottom:293.706667pt;}
.y16_c01164{bottom:315.306667pt;}
.y15_c01164{bottom:336.640000pt;}
.y14_c01164{bottom:359.040000pt;}
.y13_c01164{bottom:380.106667pt;}
.y12_c01164{bottom:401.440000pt;}
.y11_c01164{bottom:421.440000pt;}
.y10_c01164{bottom:444.640000pt;}
.yf_c01164{bottom:465.840000pt;}
.ye_c01164{bottom:486.906667pt;}
.yd_c01164{bottom:509.706667pt;}
.yc_c01164{bottom:531.306667pt;}
.yb_c01164{bottom:551.306667pt;}
.ya_c01164{bottom:572.373333pt;}
.y9_c01164{bottom:593.706667pt;}
.y8_c01164{bottom:615.573333pt;}
.y7_c01164{bottom:636.906667pt;}
.y6_c01164{bottom:658.240000pt;}
.y5_c01164{bottom:680.373333pt;}
.y4_c01164{bottom:704.373333pt;}
.y3_c01164{bottom:723.840000pt;}
.y2_c01164{bottom:744.640000pt;}
.y1_c01164{bottom:766.773333pt;}
.h7_c01164{height:11.733399pt;}
.h8_c01164{height:38.937500pt;}
.h2_c01164{height:51.062500pt;}
.h3_c01164{height:59.125000pt;}
.h4_c01164{height:64.500000pt;}
.h5_c01164{height:72.266667pt;}
.h6_c01164{height:78.515625pt;}
.h0_c01164{height:862.533333pt;}
.h1_c01164{height:862.666667pt;}
.w2_c01164{width:93.222667pt;}
.w0_c01164{width:587.066667pt;}
.w1_c01164{width:587.333333pt;}
.x0_c01164{left:0.000000pt;}
.x2_c01164{left:14.133333pt;}
.x8_c01164{left:18.533333pt;}
.xf_c01164{left:30.000000pt;}
.xe_c01164{left:31.466667pt;}
.xd_c01164{left:32.400000pt;}
.xc_c01164{left:33.333333pt;}
.xa_c01164{left:34.400000pt;}
.xb_c01164{left:35.333333pt;}
.x9_c01164{left:36.266667pt;}
.x7_c01164{left:37.200000pt;}
.x6_c01164{left:38.133333pt;}
.x5_c01164{left:40.000000pt;}
.x4_c01164{left:41.066667pt;}
.x3_c01164{left:42.000000pt;}
.x1_c01164{left:42.933333pt;}
.x10_c01164{left:52.133333pt;}
.x11_c01164{left:250.701538pt;}
}





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

.ir_c01165:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01165{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01165;src:url('chunks/assets/font_431dd7c8fd4bb57fef528b71.woff2')format("woff");}.ff1_c01165{font-family:ff1_c01165;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01165;src:url('chunks/assets/font_8253ce2e7f64333ad87f2203.woff2')format("woff");}.ff2_c01165{font-family:ff2_c01165;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01165;src:url('chunks/assets/font_3c3feea47d0ed6d921be7ef7.woff2')format("woff");}.ff3_c01165{font-family:ff3_c01165;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01165;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff4_c01165{font-family:ff4_c01165;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01165{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01165{vertical-align:0.000000px;}
.ls2_c01165{letter-spacing:0.000000px;}
.ls1_c01165{letter-spacing:11.550000px;}
.ls0_c01165{letter-spacing:16.173000px;}
.ls3_c01165{letter-spacing:45.000000px;}
.ls4_c01165{letter-spacing:48.000000px;}
.sc__c01165{text-shadow:none;}
.sc0_c01165{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01165{-webkit-text-stroke:0px transparent;}
.sc0_c01165{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c01165{word-spacing:-62.250000px;}
.ws1_c01165{word-spacing:-59.250000px;}
.ws2_c01165{word-spacing:-3.135000px;}
.ws5_c01165{word-spacing:-2.793000px;}
.ws7_c01165{word-spacing:-1.710000px;}
.ws0_c01165{word-spacing:-0.798000px;}
.ws8_c01165{word-spacing:0.000000px;}
.ws3_c01165{word-spacing:0.057000px;}
.ws6_c01165{word-spacing:0.342000px;}
._1e_c01165{margin-left:-42.006000px;}
._1d_c01165{margin-left:-33.735000px;}
._1f_c01165{margin-left:-10.659000px;}
._13_c01165{margin-left:-9.120000px;}
._24_c01165{margin-left:-5.556000px;}
._27_c01165{margin-left:-4.134000px;}
._18_c01165{margin-left:-2.907000px;}
._12_c01165{margin-left:-1.254000px;}
._5_c01165{width:1.083000px;}
._e_c01165{width:2.622000px;}
._3_c01165{width:4.047000px;}
._9_c01165{width:5.187000px;}
._4_c01165{width:6.270000px;}
._1_c01165{width:7.581000px;}
._b_c01165{width:8.835000px;}
._6_c01165{width:9.861000px;}
._8_c01165{width:11.628000px;}
._2_c01165{width:13.053000px;}
._a_c01165{width:15.276000px;}
._0_c01165{width:16.302000px;}
._c_c01165{width:17.385000px;}
._11_c01165{width:18.639000px;}
._f_c01165{width:19.950000px;}
._7_c01165{width:21.147000px;}
._16_c01165{width:22.914000px;}
._1b_c01165{width:23.940000px;}
._d_c01165{width:25.365000px;}
._15_c01165{width:26.961000px;}
._17_c01165{width:28.272000px;}
._1c_c01165{width:30.666000px;}
._10_c01165{width:39.615000px;}
._22_c01165{width:41.553000px;}
._23_c01165{width:43.377000px;}
._28_c01165{width:46.011000px;}
._19_c01165{width:50.160000px;}
._20_c01165{width:51.990000px;}
._21_c01165{width:59.793000px;}
._2a_c01165{width:61.560000px;}
._25_c01165{width:67.089000px;}
._1a_c01165{width:70.944000px;}
._14_c01165{width:190.779000px;}
._26_c01165{width:262.998000px;}
._29_c01165{width:313.899000px;}
.fc2_c01165{color:transparent;}
.fc1_c01165{color:rgb(128,128,128);}
.fc0_c01165{color:rgb(0,0,0);}
.fs1_c01165{font-size:48.000000px;}
.fs0_c01165{font-size:57.000000px;}
.y0_c01165{bottom:0.000000px;}
.y24_c01165{bottom:3.105000px;}
.y23_c01165{bottom:7.228363px;}
.y22_c01165{bottom:45.150000px;}
.y21_c01165{bottom:69.150000px;}
.y20_c01165{bottom:94.500000px;}
.y1f_c01165{bottom:119.100000px;}
.y1e_c01165{bottom:143.850000px;}
.y1d_c01165{bottom:168.450000px;}
.y1c_c01165{bottom:193.650000px;}
.y1b_c01165{bottom:217.800000px;}
.y1a_c01165{bottom:241.650000px;}
.y19_c01165{bottom:266.250000px;}
.y18_c01165{bottom:291.600000px;}
.y17_c01165{bottom:316.200000px;}
.y16_c01165{bottom:341.100000px;}
.y15_c01165{bottom:365.250000px;}
.y14_c01165{bottom:390.450000px;}
.y13_c01165{bottom:414.750000px;}
.y12_c01165{bottom:439.350000px;}
.y11_c01165{bottom:463.500000px;}
.y10_c01165{bottom:486.750000px;}
.yf_c01165{bottom:511.350000px;}
.ye_c01165{bottom:535.200000px;}
.yd_c01165{bottom:559.200000px;}
.yc_c01165{bottom:583.800000px;}
.yb_c01165{bottom:608.400000px;}
.ya_c01165{bottom:632.400000px;}
.y9_c01165{bottom:657.000000px;}
.y8_c01165{bottom:681.450000px;}
.y7_c01165{bottom:705.000000px;}
.y6_c01165{bottom:753.600000px;}
.y5_c01165{bottom:777.900000px;}
.y4_c01165{bottom:802.200000px;}
.y3_c01165{bottom:825.750000px;}
.y2_c01165{bottom:850.950000px;}
.y1_c01165{bottom:875.700000px;}
.h5_c01165{height:13.200074px;}
.h6_c01165{height:43.804688px;}
.h4_c01165{height:55.914551px;}
.h3_c01165{height:55.942383px;}
.h2_c01165{height:57.445312px;}
.h0_c01165{height:980.100000px;}
.h1_c01165{height:980.250000px;}
.w2_c01165{width:104.875500px;}
.w1_c01165{width:663.000000px;}
.w0_c01165{width:663.150000px;}
.x0_c01165{left:0.000000px;}
.x2_c01165{left:7.500000px;}
.xb_c01165{left:16.650000px;}
.xd_c01165{left:18.600000px;}
.xe_c01165{left:21.000000px;}
.xf_c01165{left:23.400000px;}
.x1_c01165{left:103.950000px;}
.x3_c01165{left:106.350000px;}
.x7_c01165{left:109.050000px;}
.x6_c01165{left:111.450000px;}
.x8_c01165{left:112.800000px;}
.x9_c01165{left:115.200000px;}
.xa_c01165{left:116.400000px;}
.xc_c01165{left:118.800000px;}
.x10_c01165{left:121.500000px;}
.x11_c01165{left:122.550000px;}
.x4_c01165{left:179.550000px;}
.x13_c01165{left:283.389267px;}
.x5_c01165{left:315.600000px;}
.x12_c01165{left:604.800000px;}
@media print{
.v0_c01165{vertical-align:0.000000pt;}
.ls2_c01165{letter-spacing:0.000000pt;}
.ls1_c01165{letter-spacing:10.266667pt;}
.ls0_c01165{letter-spacing:14.376000pt;}
.ls3_c01165{letter-spacing:40.000000pt;}
.ls4_c01165{letter-spacing:42.666667pt;}
.ws4_c01165{word-spacing:-55.333333pt;}
.ws1_c01165{word-spacing:-52.666667pt;}
.ws2_c01165{word-spacing:-2.786667pt;}
.ws5_c01165{word-spacing:-2.482667pt;}
.ws7_c01165{word-spacing:-1.520000pt;}
.ws0_c01165{word-spacing:-0.709333pt;}
.ws8_c01165{word-spacing:0.000000pt;}
.ws3_c01165{word-spacing:0.050667pt;}
.ws6_c01165{word-spacing:0.304000pt;}
._1e_c01165{margin-left:-37.338667pt;}
._1d_c01165{margin-left:-29.986667pt;}
._1f_c01165{margin-left:-9.474667pt;}
._13_c01165{margin-left:-8.106667pt;}
._24_c01165{margin-left:-4.938667pt;}
._27_c01165{margin-left:-3.674667pt;}
._18_c01165{margin-left:-2.584000pt;}
._12_c01165{margin-left:-1.114667pt;}
._5_c01165{width:0.962667pt;}
._e_c01165{width:2.330667pt;}
._3_c01165{width:3.597333pt;}
._9_c01165{width:4.610667pt;}
._4_c01165{width:5.573333pt;}
._1_c01165{width:6.738667pt;}
._b_c01165{width:7.853333pt;}
._6_c01165{width:8.765333pt;}
._8_c01165{width:10.336000pt;}
._2_c01165{width:11.602667pt;}
._a_c01165{width:13.578667pt;}
._0_c01165{width:14.490667pt;}
._c_c01165{width:15.453333pt;}
._11_c01165{width:16.568000pt;}
._f_c01165{width:17.733333pt;}
._7_c01165{width:18.797333pt;}
._16_c01165{width:20.368000pt;}
._1b_c01165{width:21.280000pt;}
._d_c01165{width:22.546667pt;}
._15_c01165{width:23.965333pt;}
._17_c01165{width:25.130667pt;}
._1c_c01165{width:27.258667pt;}
._10_c01165{width:35.213333pt;}
._22_c01165{width:36.936000pt;}
._23_c01165{width:38.557333pt;}
._28_c01165{width:40.898667pt;}
._19_c01165{width:44.586667pt;}
._20_c01165{width:46.213333pt;}
._21_c01165{width:53.149333pt;}
._2a_c01165{width:54.720000pt;}
._25_c01165{width:59.634667pt;}
._1a_c01165{width:63.061333pt;}
._14_c01165{width:169.581333pt;}
._26_c01165{width:233.776000pt;}
._29_c01165{width:279.021333pt;}
.fs1_c01165{font-size:42.666667pt;}
.fs0_c01165{font-size:50.666667pt;}
.y0_c01165{bottom:0.000000pt;}
.y24_c01165{bottom:2.760000pt;}
.y23_c01165{bottom:6.425212pt;}
.y22_c01165{bottom:40.133333pt;}
.y21_c01165{bottom:61.466667pt;}
.y20_c01165{bottom:84.000000pt;}
.y1f_c01165{bottom:105.866667pt;}
.y1e_c01165{bottom:127.866667pt;}
.y1d_c01165{bottom:149.733333pt;}
.y1c_c01165{bottom:172.133333pt;}
.y1b_c01165{bottom:193.600000pt;}
.y1a_c01165{bottom:214.800000pt;}
.y19_c01165{bottom:236.666667pt;}
.y18_c01165{bottom:259.200000pt;}
.y17_c01165{bottom:281.066667pt;}
.y16_c01165{bottom:303.200000pt;}
.y15_c01165{bottom:324.666667pt;}
.y14_c01165{bottom:347.066667pt;}
.y13_c01165{bottom:368.666667pt;}
.y12_c01165{bottom:390.533333pt;}
.y11_c01165{bottom:412.000000pt;}
.y10_c01165{bottom:432.666667pt;}
.yf_c01165{bottom:454.533333pt;}
.ye_c01165{bottom:475.733333pt;}
.yd_c01165{bottom:497.066667pt;}
.yc_c01165{bottom:518.933333pt;}
.yb_c01165{bottom:540.800000pt;}
.ya_c01165{bottom:562.133333pt;}
.y9_c01165{bottom:584.000000pt;}
.y8_c01165{bottom:605.733333pt;}
.y7_c01165{bottom:626.666667pt;}
.y6_c01165{bottom:669.866667pt;}
.y5_c01165{bottom:691.466667pt;}
.y4_c01165{bottom:713.066667pt;}
.y3_c01165{bottom:734.000000pt;}
.y2_c01165{bottom:756.400000pt;}
.y1_c01165{bottom:778.400000pt;}
.h5_c01165{height:11.733399pt;}
.h6_c01165{height:38.937500pt;}
.h4_c01165{height:49.701823pt;}
.h3_c01165{height:49.726562pt;}
.h2_c01165{height:51.062500pt;}
.h0_c01165{height:871.200000pt;}
.h1_c01165{height:871.333333pt;}
.w2_c01165{width:93.222667pt;}
.w1_c01165{width:589.333333pt;}
.w0_c01165{width:589.466667pt;}
.x0_c01165{left:0.000000pt;}
.x2_c01165{left:6.666667pt;}
.xb_c01165{left:14.800000pt;}
.xd_c01165{left:16.533333pt;}
.xe_c01165{left:18.666667pt;}
.xf_c01165{left:20.800000pt;}
.x1_c01165{left:92.400000pt;}
.x3_c01165{left:94.533333pt;}
.x7_c01165{left:96.933333pt;}
.x6_c01165{left:99.066667pt;}
.x8_c01165{left:100.266667pt;}
.x9_c01165{left:102.400000pt;}
.xa_c01165{left:103.466667pt;}
.xc_c01165{left:105.600000pt;}
.x10_c01165{left:108.000000pt;}
.x11_c01165{left:108.933333pt;}
.x4_c01165{left:159.600000pt;}
.x13_c01165{left:251.901571pt;}
.x5_c01165{left:280.533333pt;}
.x12_c01165{left:537.600000pt;}
}





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

.ir_c01166:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01166{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01166;src:url('chunks/assets/font_e6d7ced6ebd827791e8ef2df.woff2')format("woff");}.ff1_c01166{font-family:ff1_c01166;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01166;src:url('chunks/assets/font_34a65c8b723f3c8f09609f86.woff2')format("woff");}.ff2_c01166{font-family:ff2_c01166;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01166;src:url('chunks/assets/font_b4b4ed4e3ca872c542d45797.woff2')format("woff");}.ff3_c01166{font-family:ff3_c01166;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01166;src:url('chunks/assets/font_f2ea783b1dc10b3549e2c361.woff2')format("woff");}.ff4_c01166{font-family:ff4_c01166;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01166;src:url('chunks/assets/font_8b51ac0f5463e6ee9273bd79.woff2')format("woff");}.ff5_c01166{font-family:ff5_c01166;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01166;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c01166{font-family:ff6_c01166;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01166{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01166{vertical-align:0.000000px;}
.ls1_c01166{letter-spacing:0.000000px;}
.ls0_c01166{letter-spacing:6.000000px;}
.sc__c01166{text-shadow:none;}
.sc0_c01166{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01166{-webkit-text-stroke:0px transparent;}
.sc0_c01166{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c01166{word-spacing:-36.915000px;}
.ws1_c01166{word-spacing:-2.850000px;}
.ws3_c01166{word-spacing:-2.280000px;}
.ws2_c01166{word-spacing:-1.368000px;}
.ws0_c01166{word-spacing:-1.254000px;}
.ws6_c01166{word-spacing:0.000000px;}
.ws5_c01166{word-spacing:0.456000px;}
._3_c01166{margin-left:-16.800000px;}
._19_c01166{margin-left:-11.982000px;}
._a_c01166{margin-left:-7.140000px;}
._6_c01166{margin-left:-5.145000px;}
._7_c01166{margin-left:-3.780000px;}
._8_c01166{margin-left:-2.100000px;}
._15_c01166{width:1.107000px;}
._4_c01166{width:2.625000px;}
._5_c01166{width:4.515000px;}
._f_c01166{width:6.399000px;}
._d_c01166{width:7.611000px;}
._c_c01166{width:9.462000px;}
._2_c01166{width:11.130000px;}
._1_c01166{width:12.915000px;}
._11_c01166{width:14.532000px;}
._12_c01166{width:15.564000px;}
._0_c01166{width:16.695000px;}
._b_c01166{width:17.883000px;}
._e_c01166{width:19.137000px;}
._13_c01166{width:20.562000px;}
._17_c01166{width:21.852000px;}
._16_c01166{width:23.544000px;}
._14_c01166{width:24.870000px;}
._18_c01166{width:26.325000px;}
._10_c01166{width:27.603000px;}
._1a_c01166{width:29.331000px;}
._1d_c01166{width:35.676000px;}
._1b_c01166{width:48.468000px;}
._9_c01166{width:57.855000px;}
._1c_c01166{width:133.500000px;}
.fc2_c01166{color:transparent;}
.fc1_c01166{color:rgb(128,128,128);}
.fc0_c01166{color:rgb(0,0,0);}
.fs5_c01166{font-size:48.000000px;}
.fs1_c01166{font-size:57.000000px;}
.fs2_c01166{font-size:66.000000px;}
.fs4_c01166{font-size:69.000000px;}
.fs3_c01166{font-size:78.000000px;}
.fs0_c01166{font-size:105.000000px;}
.y0_c01166{bottom:0.000000px;}
.y26_c01166{bottom:3.105000px;}
.y25_c01166{bottom:7.228369px;}
.y24_c01166{bottom:54.270000px;}
.y23_c01166{bottom:77.220000px;}
.y22_c01166{bottom:102.870000px;}
.y21_c01166{bottom:127.920000px;}
.y20_c01166{bottom:152.520000px;}
.y1f_c01166{bottom:177.420000px;}
.y1e_c01166{bottom:203.820000px;}
.y1d_c01166{bottom:226.470000px;}
.y1c_c01166{bottom:251.820000px;}
.y1b_c01166{bottom:275.670000px;}
.y1a_c01166{bottom:300.270000px;}
.y19_c01166{bottom:324.720000px;}
.y18_c01166{bottom:349.020000px;}
.y17_c01166{bottom:373.320000px;}
.y16_c01166{bottom:398.820000px;}
.y15_c01166{bottom:423.270000px;}
.y14_c01166{bottom:448.470000px;}
.y13_c01166{bottom:471.120000px;}
.y12_c01166{bottom:495.420000px;}
.y11_c01166{bottom:519.720000px;}
.y10_c01166{bottom:543.720000px;}
.yf_c01166{bottom:567.570000px;}
.ye_c01166{bottom:591.270000px;}
.yd_c01166{bottom:615.570000px;}
.yc_c01166{bottom:639.270000px;}
.yb_c01166{bottom:663.420000px;}
.ya_c01166{bottom:687.870000px;}
.y9_c01166{bottom:713.070000px;}
.y8_c01166{bottom:736.470000px;}
.y7_c01166{bottom:761.370000px;}
.y6_c01166{bottom:785.970000px;}
.y5_c01166{bottom:810.570000px;}
.y4_c01166{bottom:834.270000px;}
.y3_c01166{bottom:859.170000px;}
.y2_c01166{bottom:883.920000px;}
.y1_c01166{bottom:918.720000px;}
.h7_c01166{height:13.200073px;}
.h8_c01166{height:43.804688px;}
.h4_c01166{height:57.445312px;}
.h3_c01166{height:66.515625px;}
.h6_c01166{height:72.312000px;}
.h5_c01166{height:76.552734px;}
.h2_c01166{height:103.000488px;}
.h1_c01166{height:986.250000px;}
.h0_c01166{height:986.550000px;}
.w1_c01166{width:104.875500px;}
.w0_c01166{width:672.000000px;}
.x0_c01166{left:0.000000px;}
.x6_c01166{left:51.300000px;}
.x3_c01166{left:52.350000px;}
.x5_c01166{left:54.000000px;}
.x2_c01166{left:55.650000px;}
.x4_c01166{left:62.100000px;}
.x1_c01166{left:78.000000px;}
.x8_c01166{left:287.814240px;}
.x7_c01166{left:514.350000px;}
@media print{
.v0_c01166{vertical-align:0.000000pt;}
.ls1_c01166{letter-spacing:0.000000pt;}
.ls0_c01166{letter-spacing:5.333333pt;}
.ws4_c01166{word-spacing:-32.813333pt;}
.ws1_c01166{word-spacing:-2.533333pt;}
.ws3_c01166{word-spacing:-2.026667pt;}
.ws2_c01166{word-spacing:-1.216000pt;}
.ws0_c01166{word-spacing:-1.114667pt;}
.ws6_c01166{word-spacing:0.000000pt;}
.ws5_c01166{word-spacing:0.405333pt;}
._3_c01166{margin-left:-14.933333pt;}
._19_c01166{margin-left:-10.650667pt;}
._a_c01166{margin-left:-6.346667pt;}
._6_c01166{margin-left:-4.573333pt;}
._7_c01166{margin-left:-3.360000pt;}
._8_c01166{margin-left:-1.866667pt;}
._15_c01166{width:0.984000pt;}
._4_c01166{width:2.333333pt;}
._5_c01166{width:4.013333pt;}
._f_c01166{width:5.688000pt;}
._d_c01166{width:6.765333pt;}
._c_c01166{width:8.410667pt;}
._2_c01166{width:9.893333pt;}
._1_c01166{width:11.480000pt;}
._11_c01166{width:12.917333pt;}
._12_c01166{width:13.834667pt;}
._0_c01166{width:14.840000pt;}
._b_c01166{width:15.896000pt;}
._e_c01166{width:17.010667pt;}
._13_c01166{width:18.277333pt;}
._17_c01166{width:19.424000pt;}
._16_c01166{width:20.928000pt;}
._14_c01166{width:22.106667pt;}
._18_c01166{width:23.400000pt;}
._10_c01166{width:24.536000pt;}
._1a_c01166{width:26.072000pt;}
._1d_c01166{width:31.712000pt;}
._1b_c01166{width:43.082667pt;}
._9_c01166{width:51.426667pt;}
._1c_c01166{width:118.666667pt;}
.fs5_c01166{font-size:42.666667pt;}
.fs1_c01166{font-size:50.666667pt;}
.fs2_c01166{font-size:58.666667pt;}
.fs4_c01166{font-size:61.333333pt;}
.fs3_c01166{font-size:69.333333pt;}
.fs0_c01166{font-size:93.333333pt;}
.y0_c01166{bottom:0.000000pt;}
.y26_c01166{bottom:2.760000pt;}
.y25_c01166{bottom:6.425217pt;}
.y24_c01166{bottom:48.240000pt;}
.y23_c01166{bottom:68.640000pt;}
.y22_c01166{bottom:91.440000pt;}
.y21_c01166{bottom:113.706667pt;}
.y20_c01166{bottom:135.573333pt;}
.y1f_c01166{bottom:157.706667pt;}
.y1e_c01166{bottom:181.173333pt;}
.y1d_c01166{bottom:201.306667pt;}
.y1c_c01166{bottom:223.840000pt;}
.y1b_c01166{bottom:245.040000pt;}
.y1a_c01166{bottom:266.906667pt;}
.y19_c01166{bottom:288.640000pt;}
.y18_c01166{bottom:310.240000pt;}
.y17_c01166{bottom:331.840000pt;}
.y16_c01166{bottom:354.506667pt;}
.y15_c01166{bottom:376.240000pt;}
.y14_c01166{bottom:398.640000pt;}
.y13_c01166{bottom:418.773333pt;}
.y12_c01166{bottom:440.373333pt;}
.y11_c01166{bottom:461.973333pt;}
.y10_c01166{bottom:483.306667pt;}
.yf_c01166{bottom:504.506667pt;}
.ye_c01166{bottom:525.573333pt;}
.yd_c01166{bottom:547.173333pt;}
.yc_c01166{bottom:568.240000pt;}
.yb_c01166{bottom:589.706667pt;}
.ya_c01166{bottom:611.440000pt;}
.y9_c01166{bottom:633.840000pt;}
.y8_c01166{bottom:654.640000pt;}
.y7_c01166{bottom:676.773333pt;}
.y6_c01166{bottom:698.640000pt;}
.y5_c01166{bottom:720.506667pt;}
.y4_c01166{bottom:741.573333pt;}
.y3_c01166{bottom:763.706667pt;}
.y2_c01166{bottom:785.706667pt;}
.y1_c01166{bottom:816.640000pt;}
.h7_c01166{height:11.733399pt;}
.h8_c01166{height:38.937500pt;}
.h4_c01166{height:51.062500pt;}
.h3_c01166{height:59.125000pt;}
.h6_c01166{height:64.277333pt;}
.h5_c01166{height:68.046875pt;}
.h2_c01166{height:91.555990pt;}
.h1_c01166{height:876.666667pt;}
.h0_c01166{height:876.933333pt;}
.w1_c01166{width:93.222667pt;}
.w0_c01166{width:597.333333pt;}
.x0_c01166{left:0.000000pt;}
.x6_c01166{left:45.600000pt;}
.x3_c01166{left:46.533333pt;}
.x5_c01166{left:48.000000pt;}
.x2_c01166{left:49.466667pt;}
.x4_c01166{left:55.200000pt;}
.x1_c01166{left:69.333333pt;}
.x8_c01166{left:255.834880pt;}
.x7_c01166{left:457.200000pt;}
}





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

.ir_c01167:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01167{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01167;src:url('chunks/assets/font_1e3b6cebb702456dbb60c1fb.woff2')format("woff");}.ff1_c01167{font-family:ff1_c01167;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01167;src:url('chunks/assets/font_089510d0d6d8c3460deb1b9c.woff2')format("woff");}.ff2_c01167{font-family:ff2_c01167;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01167;src:url('chunks/assets/font_e01afc97776dc8ec2e65d260.woff2')format("woff");}.ff3_c01167{font-family:ff3_c01167;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01167;src:url('chunks/assets/font_8b7d6aec589b7014c5027822.woff2')format("woff");}.ff4_c01167{font-family:ff4_c01167;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01167;src:url('chunks/assets/font_d27f3fc15acfc9bcd98d17a2.woff2')format("woff");}.ff5_c01167{font-family:ff5_c01167;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01167;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c01167{font-family:ff6_c01167;line-height:1.219238;font-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_c01167{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m2_c01167{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m0_c01167{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c01167{vertical-align:-36.000000px;}
.v0_c01167{vertical-align:0.000000px;}
.ls7_c01167{letter-spacing:-12.000000px;}
.ls5_c01167{letter-spacing:-3.000000px;}
.ls3_c01167{letter-spacing:0.000000px;}
.ls4_c01167{letter-spacing:3.000000px;}
.ls6_c01167{letter-spacing:6.000000px;}
.ls2_c01167{letter-spacing:12.546000px;}
.ls1_c01167{letter-spacing:19.500000px;}
.ls0_c01167{letter-spacing:30.108000px;}
.sc__c01167{text-shadow:none;}
.sc0_c01167{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01167{-webkit-text-stroke:0px transparent;}
.sc0_c01167{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01167{word-spacing:-49.320000px;}
.ws7_c01167{word-spacing:-27.000000px;}
.ws1_c01167{word-spacing:-4.224000px;}
.ws3_c01167{word-spacing:-2.622000px;}
.ws5_c01167{word-spacing:-1.767000px;}
.ws0_c01167{word-spacing:-0.057000px;}
.ws8_c01167{word-spacing:0.000000px;}
.ws4_c01167{word-spacing:4.332000px;}
.ws6_c01167{word-spacing:20.778000px;}
._1c_c01167{margin-left:-20.520000px;}
._22_c01167{margin-left:-19.437000px;}
._2c_c01167{margin-left:-15.942000px;}
._28_c01167{margin-left:-9.765000px;}
._23_c01167{margin-left:-8.664000px;}
._25_c01167{margin-left:-6.696000px;}
._12_c01167{margin-left:-5.358000px;}
._15_c01167{margin-left:-4.332000px;}
._1b_c01167{margin-left:-2.280000px;}
._10_c01167{margin-left:-1.026000px;}
._e_c01167{width:1.026000px;}
._a_c01167{width:2.907000px;}
._d_c01167{width:4.674000px;}
._1_c01167{width:5.871000px;}
._0_c01167{width:7.809000px;}
._3_c01167{width:9.690000px;}
._2_c01167{width:11.001000px;}
._f_c01167{width:12.084000px;}
._9_c01167{width:13.167000px;}
._2d_c01167{width:14.571000px;}
._8_c01167{width:16.017000px;}
._5_c01167{width:17.328000px;}
._4_c01167{width:19.266000px;}
._13_c01167{width:20.520000px;}
._6_c01167{width:21.546000px;}
._b_c01167{width:22.914000px;}
._7_c01167{width:24.624000px;}
._11_c01167{width:26.448000px;}
._19_c01167{width:27.816000px;}
._c_c01167{width:29.868000px;}
._26_c01167{width:32.586000px;}
._2f_c01167{width:34.257000px;}
._2b_c01167{width:36.063000px;}
._16_c01167{width:40.128000px;}
._2e_c01167{width:41.268000px;}
._1a_c01167{width:44.403000px;}
._14_c01167{width:46.920000px;}
._30_c01167{width:53.178000px;}
._1e_c01167{width:77.814000px;}
._32_c01167{width:84.075000px;}
._27_c01167{width:90.915000px;}
._34_c01167{width:91.941000px;}
._35_c01167{width:95.844000px;}
._24_c01167{width:120.948000px;}
._1f_c01167{width:135.618000px;}
._20_c01167{width:145.929000px;}
._1d_c01167{width:177.156000px;}
._33_c01167{width:185.421000px;}
._18_c01167{width:317.946000px;}
._2a_c01167{width:748.980000px;}
._17_c01167{width:989.157000px;}
._21_c01167{width:1033.518000px;}
._31_c01167{width:1128.144000px;}
._29_c01167{width:1294.863000px;}
.fc2_c01167{color:transparent;}
.fc1_c01167{color:rgb(128,128,128);}
.fc0_c01167{color:rgb(0,0,0);}
.fs1_c01167{font-size:36.000000px;}
.fs6_c01167{font-size:42.000000px;}
.fs4_c01167{font-size:45.000000px;}
.fs8_c01167{font-size:48.000000px;}
.fs0_c01167{font-size:57.000000px;}
.fs2_c01167{font-size:60.000000px;}
.fs3_c01167{font-size:66.000000px;}
.fs5_c01167{font-size:93.000000px;}
.fs7_c01167{font-size:108.000000px;}
.y0_c01167{bottom:0.000000px;}
.y29_c01167{bottom:3.105000px;}
.y28_c01167{bottom:7.228371px;}
.y27_c01167{bottom:54.765000px;}
.y26_c01167{bottom:76.965000px;}
.y25_c01167{bottom:103.065000px;}
.y24_c01167{bottom:128.715000px;}
.y23_c01167{bottom:150.165000px;}
.y22_c01167{bottom:175.515000px;}
.y21_c01167{bottom:190.365000px;}
.y1f_c01167{bottom:194.715000px;}
.y1e_c01167{bottom:204.315000px;}
.y20_c01167{bottom:209.265000px;}
.y1d_c01167{bottom:228.915000px;}
.y1c_c01167{bottom:252.765000px;}
.y1b_c01167{bottom:277.215000px;}
.y1a_c01167{bottom:290.265000px;}
.y19_c01167{bottom:304.215000px;}
.y18_c01167{bottom:326.115000px;}
.y17_c01167{bottom:350.715000px;}
.y16_c01167{bottom:376.665000px;}
.y15_c01167{bottom:400.065000px;}
.y14_c01167{bottom:424.365000px;}
.y13_c01167{bottom:449.265000px;}
.y12_c01167{bottom:472.215000px;}
.y11_c01167{bottom:497.565000px;}
.y10_c01167{bottom:522.165000px;}
.yf_c01167{bottom:545.715000px;}
.ye_c01167{bottom:569.415000px;}
.yd_c01167{bottom:594.465000px;}
.yc_c01167{bottom:618.615000px;}
.yb_c01167{bottom:642.915000px;}
.ya_c01167{bottom:667.215000px;}
.y9_c01167{bottom:691.215000px;}
.y8_c01167{bottom:715.515000px;}
.y7_c01167{bottom:739.815000px;}
.y6_c01167{bottom:763.815000px;}
.y5_c01167{bottom:787.815000px;}
.y4_c01167{bottom:811.665000px;}
.y3_c01167{bottom:836.115000px;}
.y2_c01167{bottom:860.265000px;}
.y1_c01167{bottom:884.715000px;}
.h9_c01167{height:13.200074px;}
.h3_c01167{height:36.281250px;}
.ha_c01167{height:43.804688px;}
.h7_c01167{height:55.914551px;}
.h2_c01167{height:57.445312px;}
.h6_c01167{height:58.886719px;}
.h4_c01167{height:70.224609px;}
.h5_c01167{height:93.726562px;}
.h8_c01167{height:108.843750px;}
.h1_c01167{height:986.250000px;}
.h0_c01167{height:986.325000px;}
.w2_c01167{width:104.875500px;}
.w0_c01167{width:667.425000px;}
.w1_c01167{width:667.500000px;}
.x0_c01167{left:0.000000px;}
.x9_c01167{left:31.800000px;}
.xc_c01167{left:33.750000px;}
.x13_c01167{left:34.800000px;}
.x12_c01167{left:45.600000px;}
.x10_c01167{left:47.250000px;}
.xf_c01167{left:52.200000px;}
.xd_c01167{left:58.350000px;}
.x11_c01167{left:66.600000px;}
.xa_c01167{left:76.650000px;}
.xe_c01167{left:81.900000px;}
.xb_c01167{left:93.750000px;}
.x2_c01167{left:110.400000px;}
.x5_c01167{left:115.500000px;}
.x1_c01167{left:118.800000px;}
.x3_c01167{left:120.450000px;}
.x4_c01167{left:121.500000px;}
.x6_c01167{left:122.550000px;}
.x7_c01167{left:148.200000px;}
.x8_c01167{left:225.750000px;}
.x15_c01167{left:285.526749px;}
.x14_c01167{left:573.300000px;}
@media print{
.v1_c01167{vertical-align:-32.000000pt;}
.v0_c01167{vertical-align:0.000000pt;}
.ls7_c01167{letter-spacing:-10.666667pt;}
.ls5_c01167{letter-spacing:-2.666667pt;}
.ls3_c01167{letter-spacing:0.000000pt;}
.ls4_c01167{letter-spacing:2.666667pt;}
.ls6_c01167{letter-spacing:5.333333pt;}
.ls2_c01167{letter-spacing:11.152000pt;}
.ls1_c01167{letter-spacing:17.333333pt;}
.ls0_c01167{letter-spacing:26.762667pt;}
.ws2_c01167{word-spacing:-43.840000pt;}
.ws7_c01167{word-spacing:-24.000000pt;}
.ws1_c01167{word-spacing:-3.754667pt;}
.ws3_c01167{word-spacing:-2.330667pt;}
.ws5_c01167{word-spacing:-1.570667pt;}
.ws0_c01167{word-spacing:-0.050667pt;}
.ws8_c01167{word-spacing:0.000000pt;}
.ws4_c01167{word-spacing:3.850667pt;}
.ws6_c01167{word-spacing:18.469333pt;}
._1c_c01167{margin-left:-18.240000pt;}
._22_c01167{margin-left:-17.277333pt;}
._2c_c01167{margin-left:-14.170667pt;}
._28_c01167{margin-left:-8.680000pt;}
._23_c01167{margin-left:-7.701333pt;}
._25_c01167{margin-left:-5.952000pt;}
._12_c01167{margin-left:-4.762667pt;}
._15_c01167{margin-left:-3.850667pt;}
._1b_c01167{margin-left:-2.026667pt;}
._10_c01167{margin-left:-0.912000pt;}
._e_c01167{width:0.912000pt;}
._a_c01167{width:2.584000pt;}
._d_c01167{width:4.154667pt;}
._1_c01167{width:5.218667pt;}
._0_c01167{width:6.941333pt;}
._3_c01167{width:8.613333pt;}
._2_c01167{width:9.778667pt;}
._f_c01167{width:10.741333pt;}
._9_c01167{width:11.704000pt;}
._2d_c01167{width:12.952000pt;}
._8_c01167{width:14.237333pt;}
._5_c01167{width:15.402667pt;}
._4_c01167{width:17.125333pt;}
._13_c01167{width:18.240000pt;}
._6_c01167{width:19.152000pt;}
._b_c01167{width:20.368000pt;}
._7_c01167{width:21.888000pt;}
._11_c01167{width:23.509333pt;}
._19_c01167{width:24.725333pt;}
._c_c01167{width:26.549333pt;}
._26_c01167{width:28.965333pt;}
._2f_c01167{width:30.450667pt;}
._2b_c01167{width:32.056000pt;}
._16_c01167{width:35.669333pt;}
._2e_c01167{width:36.682667pt;}
._1a_c01167{width:39.469333pt;}
._14_c01167{width:41.706667pt;}
._30_c01167{width:47.269333pt;}
._1e_c01167{width:69.168000pt;}
._32_c01167{width:74.733333pt;}
._27_c01167{width:80.813333pt;}
._34_c01167{width:81.725333pt;}
._35_c01167{width:85.194667pt;}
._24_c01167{width:107.509333pt;}
._1f_c01167{width:120.549333pt;}
._20_c01167{width:129.714667pt;}
._1d_c01167{width:157.472000pt;}
._33_c01167{width:164.818667pt;}
._18_c01167{width:282.618667pt;}
._2a_c01167{width:665.760000pt;}
._17_c01167{width:879.250667pt;}
._21_c01167{width:918.682667pt;}
._31_c01167{width:1002.794667pt;}
._29_c01167{width:1150.989333pt;}
.fs1_c01167{font-size:32.000000pt;}
.fs6_c01167{font-size:37.333333pt;}
.fs4_c01167{font-size:40.000000pt;}
.fs8_c01167{font-size:42.666667pt;}
.fs0_c01167{font-size:50.666667pt;}
.fs2_c01167{font-size:53.333333pt;}
.fs3_c01167{font-size:58.666667pt;}
.fs5_c01167{font-size:82.666667pt;}
.fs7_c01167{font-size:96.000000pt;}
.y0_c01167{bottom:0.000000pt;}
.y29_c01167{bottom:2.760000pt;}
.y28_c01167{bottom:6.425219pt;}
.y27_c01167{bottom:48.680000pt;}
.y26_c01167{bottom:68.413333pt;}
.y25_c01167{bottom:91.613333pt;}
.y24_c01167{bottom:114.413333pt;}
.y23_c01167{bottom:133.480000pt;}
.y22_c01167{bottom:156.013333pt;}
.y21_c01167{bottom:169.213333pt;}
.y1f_c01167{bottom:173.080000pt;}
.y1e_c01167{bottom:181.613333pt;}
.y20_c01167{bottom:186.013333pt;}
.y1d_c01167{bottom:203.480000pt;}
.y1c_c01167{bottom:224.680000pt;}
.y1b_c01167{bottom:246.413333pt;}
.y1a_c01167{bottom:258.013333pt;}
.y19_c01167{bottom:270.413333pt;}
.y18_c01167{bottom:289.880000pt;}
.y17_c01167{bottom:311.746667pt;}
.y16_c01167{bottom:334.813333pt;}
.y15_c01167{bottom:355.613333pt;}
.y14_c01167{bottom:377.213333pt;}
.y13_c01167{bottom:399.346667pt;}
.y12_c01167{bottom:419.746667pt;}
.y11_c01167{bottom:442.280000pt;}
.y10_c01167{bottom:464.146667pt;}
.yf_c01167{bottom:485.080000pt;}
.ye_c01167{bottom:506.146667pt;}
.yd_c01167{bottom:528.413333pt;}
.yc_c01167{bottom:549.880000pt;}
.yb_c01167{bottom:571.480000pt;}
.ya_c01167{bottom:593.080000pt;}
.y9_c01167{bottom:614.413333pt;}
.y8_c01167{bottom:636.013333pt;}
.y7_c01167{bottom:657.613333pt;}
.y6_c01167{bottom:678.946667pt;}
.y5_c01167{bottom:700.280000pt;}
.y4_c01167{bottom:721.480000pt;}
.y3_c01167{bottom:743.213333pt;}
.y2_c01167{bottom:764.680000pt;}
.y1_c01167{bottom:786.413333pt;}
.h9_c01167{height:11.733399pt;}
.h3_c01167{height:32.250000pt;}
.ha_c01167{height:38.937500pt;}
.h7_c01167{height:49.701823pt;}
.h2_c01167{height:51.062500pt;}
.h6_c01167{height:52.343750pt;}
.h4_c01167{height:62.421875pt;}
.h5_c01167{height:83.312500pt;}
.h8_c01167{height:96.750000pt;}
.h1_c01167{height:876.666667pt;}
.h0_c01167{height:876.733333pt;}
.w2_c01167{width:93.222667pt;}
.w0_c01167{width:593.266667pt;}
.w1_c01167{width:593.333333pt;}
.x0_c01167{left:0.000000pt;}
.x9_c01167{left:28.266667pt;}
.xc_c01167{left:30.000000pt;}
.x13_c01167{left:30.933333pt;}
.x12_c01167{left:40.533333pt;}
.x10_c01167{left:42.000000pt;}
.xf_c01167{left:46.400000pt;}
.xd_c01167{left:51.866667pt;}
.x11_c01167{left:59.200000pt;}
.xa_c01167{left:68.133333pt;}
.xe_c01167{left:72.800000pt;}
.xb_c01167{left:83.333333pt;}
.x2_c01167{left:98.133333pt;}
.x5_c01167{left:102.666667pt;}
.x1_c01167{left:105.600000pt;}
.x3_c01167{left:107.066667pt;}
.x4_c01167{left:108.000000pt;}
.x6_c01167{left:108.933333pt;}
.x7_c01167{left:131.733333pt;}
.x8_c01167{left:200.666667pt;}
.x15_c01167{left:253.801554pt;}
.x14_c01167{left:509.600000pt;}
}





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

.ir_c01168:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01168{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01168;src:url('chunks/assets/font_ba0a30639659384102c602f3.woff2')format("woff");}.ff1_c01168{font-family:ff1_c01168;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01168;src:url('chunks/assets/font_6b6d9f03d8a7be833458674f.woff2')format("woff");}.ff2_c01168{font-family:ff2_c01168;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01168;src:url('chunks/assets/font_885c55d27d5166b628b7d603.woff2')format("woff");}.ff3_c01168{font-family:ff3_c01168;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01168;src:url('chunks/assets/font_50c03c581ee0b6600fbc9a21.woff2')format("woff");}.ff4_c01168{font-family:ff4_c01168;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01168;src:url('chunks/assets/font_b62bf1caf2da597bbac91185.woff2')format("woff");}.ff5_c01168{font-family:ff5_c01168;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01168;src:url('chunks/assets/font_3c51df77bb77cd58d25967ff.woff2')format("woff");}.ff6_c01168{font-family:ff6_c01168;line-height:1.284668;font-style:normal;font-weight: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_c01168;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c01168{font-family:ff7_c01168;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01168{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01168{vertical-align:0.000000px;}
.ls3_c01168{letter-spacing:0.000000px;}
.ls2_c01168{letter-spacing:6.000000px;}
.ls1_c01168{letter-spacing:20.100000px;}
.ls0_c01168{letter-spacing:26.448000px;}
.sc__c01168{text-shadow:none;}
.sc0_c01168{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01168{-webkit-text-stroke:0px transparent;}
.sc0_c01168{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01168{word-spacing:-59.184000px;}
.ws1_c01168{word-spacing:-16.926000px;}
.ws2_c01168{word-spacing:0.000000px;}
._24_c01168{margin-left:-27.612000px;}
._1c_c01168{margin-left:-25.506000px;}
._1a_c01168{margin-left:-17.082000px;}
._19_c01168{margin-left:-15.108000px;}
._17_c01168{margin-left:-10.440000px;}
._f_c01168{margin-left:-7.956000px;}
._d_c01168{margin-left:-6.630000px;}
._e_c01168{margin-left:-5.382000px;}
._7_c01168{margin-left:-3.822000px;}
._8_c01168{margin-left:-2.340000px;}
._6_c01168{margin-left:-1.326000px;}
._b_c01168{width:1.092000px;}
._a_c01168{width:2.262000px;}
._c_c01168{width:3.588000px;}
._9_c01168{width:5.304000px;}
._11_c01168{width:6.708000px;}
._15_c01168{width:7.956000px;}
._12_c01168{width:9.882000px;}
._1f_c01168{width:11.115000px;}
._13_c01168{width:12.168000px;}
._1e_c01168{width:13.200000px;}
._4_c01168{width:15.300000px;}
._3_c01168{width:16.920000px;}
._14_c01168{width:18.486000px;}
._20_c01168{width:19.536000px;}
._1d_c01168{width:21.498000px;}
._1_c01168{width:23.460000px;}
._0_c01168{width:26.100000px;}
._22_c01168{width:27.711000px;}
._25_c01168{width:30.288000px;}
._23_c01168{width:32.703000px;}
._2_c01168{width:34.980000px;}
._5_c01168{width:54.600000px;}
._18_c01168{width:122.460000px;}
._26_c01168{width:164.475000px;}
._21_c01168{width:173.907000px;}
._16_c01168{width:280.638000px;}
._1b_c01168{width:292.944000px;}
._10_c01168{width:363.792000px;}
._27_c01168{width:1744.182000px;}
.fc2_c01168{color:transparent;}
.fc1_c01168{color:rgb(128,128,128);}
.fc0_c01168{color:rgb(0,0,0);}
.fs4_c01168{font-size:48.000000px;}
.fs3_c01168{font-size:57.000000px;}
.fs0_c01168{font-size:60.000000px;}
.fs2_c01168{font-size:72.000000px;}
.fs1_c01168{font-size:78.000000px;}
.y0_c01168{bottom:0.000000px;}
.y24_c01168{bottom:3.105000px;}
.y23_c01168{bottom:7.228369px;}
.y22_c01168{bottom:64.020000px;}
.y21_c01168{bottom:87.720000px;}
.y20_c01168{bottom:112.770000px;}
.y1f_c01168{bottom:136.320000px;}
.y1e_c01168{bottom:160.620000px;}
.y1d_c01168{bottom:185.520000px;}
.y1c_c01168{bottom:209.520000px;}
.y1b_c01168{bottom:234.570000px;}
.y1a_c01168{bottom:258.570000px;}
.y19_c01168{bottom:282.720000px;}
.y18_c01168{bottom:307.170000px;}
.y17_c01168{bottom:331.020000px;}
.y16_c01168{bottom:355.020000px;}
.y15_c01168{bottom:380.970000px;}
.y14_c01168{bottom:403.620000px;}
.y13_c01168{bottom:427.620000px;}
.y12_c01168{bottom:452.220000px;}
.y11_c01168{bottom:475.770000px;}
.y10_c01168{bottom:500.070000px;}
.yf_c01168{bottom:523.170000px;}
.ye_c01168{bottom:547.320000px;}
.yd_c01168{bottom:571.620000px;}
.yc_c01168{bottom:594.720000px;}
.yb_c01168{bottom:619.920000px;}
.ya_c01168{bottom:639.270000px;}
.y9_c01168{bottom:667.470000px;}
.y8_c01168{bottom:691.920000px;}
.y7_c01168{bottom:714.720000px;}
.y6_c01168{bottom:740.520000px;}
.y5_c01168{bottom:762.420000px;}
.y4_c01168{bottom:787.620000px;}
.y3_c01168{bottom:811.020000px;}
.y2_c01168{bottom:835.620000px;}
.y1_c01168{bottom:918.270000px;}
.h6_c01168{height:13.200073px;}
.h7_c01168{height:43.804688px;}
.h5_c01168{height:57.445312px;}
.h2_c01168{height:58.857422px;}
.h3_c01168{height:83.226000px;}
.h4_c01168{height:84.269531px;}
.h1_c01168{height:986.250000px;}
.h0_c01168{height:986.550000px;}
.w1_c01168{width:104.875500px;}
.w0_c01168{width:672.000000px;}
.x0_c01168{left:0.000000px;}
.x3_c01168{left:28.800000px;}
.x9_c01168{left:47.550000px;}
.x5_c01168{left:49.050000px;}
.x4_c01168{left:50.250000px;}
.xa_c01168{left:54.000000px;}
.x8_c01168{left:55.350000px;}
.x6_c01168{left:56.400000px;}
.x2_c01168{left:57.450000px;}
.x7_c01168{left:81.000000px;}
.xb_c01168{left:287.814240px;}
.x1_c01168{left:333.900000px;}
@media print{
.v0_c01168{vertical-align:0.000000pt;}
.ls3_c01168{letter-spacing:0.000000pt;}
.ls2_c01168{letter-spacing:5.333333pt;}
.ls1_c01168{letter-spacing:17.866667pt;}
.ls0_c01168{letter-spacing:23.509333pt;}
.ws0_c01168{word-spacing:-52.608000pt;}
.ws1_c01168{word-spacing:-15.045333pt;}
.ws2_c01168{word-spacing:0.000000pt;}
._24_c01168{margin-left:-24.544000pt;}
._1c_c01168{margin-left:-22.672000pt;}
._1a_c01168{margin-left:-15.184000pt;}
._19_c01168{margin-left:-13.429333pt;}
._17_c01168{margin-left:-9.280000pt;}
._f_c01168{margin-left:-7.072000pt;}
._d_c01168{margin-left:-5.893333pt;}
._e_c01168{margin-left:-4.784000pt;}
._7_c01168{margin-left:-3.397333pt;}
._8_c01168{margin-left:-2.080000pt;}
._6_c01168{margin-left:-1.178667pt;}
._b_c01168{width:0.970667pt;}
._a_c01168{width:2.010667pt;}
._c_c01168{width:3.189333pt;}
._9_c01168{width:4.714667pt;}
._11_c01168{width:5.962667pt;}
._15_c01168{width:7.072000pt;}
._12_c01168{width:8.784000pt;}
._1f_c01168{width:9.880000pt;}
._13_c01168{width:10.816000pt;}
._1e_c01168{width:11.733333pt;}
._4_c01168{width:13.600000pt;}
._3_c01168{width:15.040000pt;}
._14_c01168{width:16.432000pt;}
._20_c01168{width:17.365333pt;}
._1d_c01168{width:19.109333pt;}
._1_c01168{width:20.853333pt;}
._0_c01168{width:23.200000pt;}
._22_c01168{width:24.632000pt;}
._25_c01168{width:26.922667pt;}
._23_c01168{width:29.069333pt;}
._2_c01168{width:31.093333pt;}
._5_c01168{width:48.533333pt;}
._18_c01168{width:108.853333pt;}
._26_c01168{width:146.200000pt;}
._21_c01168{width:154.584000pt;}
._16_c01168{width:249.456000pt;}
._1b_c01168{width:260.394667pt;}
._10_c01168{width:323.370667pt;}
._27_c01168{width:1550.384000pt;}
.fs4_c01168{font-size:42.666667pt;}
.fs3_c01168{font-size:50.666667pt;}
.fs0_c01168{font-size:53.333333pt;}
.fs2_c01168{font-size:64.000000pt;}
.fs1_c01168{font-size:69.333333pt;}
.y0_c01168{bottom:0.000000pt;}
.y24_c01168{bottom:2.760000pt;}
.y23_c01168{bottom:6.425217pt;}
.y22_c01168{bottom:56.906667pt;}
.y21_c01168{bottom:77.973333pt;}
.y20_c01168{bottom:100.240000pt;}
.y1f_c01168{bottom:121.173333pt;}
.y1e_c01168{bottom:142.773333pt;}
.y1d_c01168{bottom:164.906667pt;}
.y1c_c01168{bottom:186.240000pt;}
.y1b_c01168{bottom:208.506667pt;}
.y1a_c01168{bottom:229.840000pt;}
.y19_c01168{bottom:251.306667pt;}
.y18_c01168{bottom:273.040000pt;}
.y17_c01168{bottom:294.240000pt;}
.y16_c01168{bottom:315.573333pt;}
.y15_c01168{bottom:338.640000pt;}
.y14_c01168{bottom:358.773333pt;}
.y13_c01168{bottom:380.106667pt;}
.y12_c01168{bottom:401.973333pt;}
.y11_c01168{bottom:422.906667pt;}
.y10_c01168{bottom:444.506667pt;}
.yf_c01168{bottom:465.040000pt;}
.ye_c01168{bottom:486.506667pt;}
.yd_c01168{bottom:508.106667pt;}
.yc_c01168{bottom:528.640000pt;}
.yb_c01168{bottom:551.040000pt;}
.ya_c01168{bottom:568.240000pt;}
.y9_c01168{bottom:593.306667pt;}
.y8_c01168{bottom:615.040000pt;}
.y7_c01168{bottom:635.306667pt;}
.y6_c01168{bottom:658.240000pt;}
.y5_c01168{bottom:677.706667pt;}
.y4_c01168{bottom:700.106667pt;}
.y3_c01168{bottom:720.906667pt;}
.y2_c01168{bottom:742.773333pt;}
.y1_c01168{bottom:816.240000pt;}
.h6_c01168{height:11.733399pt;}
.h7_c01168{height:38.937500pt;}
.h5_c01168{height:51.062500pt;}
.h2_c01168{height:52.317708pt;}
.h3_c01168{height:73.978667pt;}
.h4_c01168{height:74.906250pt;}
.h1_c01168{height:876.666667pt;}
.h0_c01168{height:876.933333pt;}
.w1_c01168{width:93.222667pt;}
.w0_c01168{width:597.333333pt;}
.x0_c01168{left:0.000000pt;}
.x3_c01168{left:25.600000pt;}
.x9_c01168{left:42.266667pt;}
.x5_c01168{left:43.600000pt;}
.x4_c01168{left:44.666667pt;}
.xa_c01168{left:48.000000pt;}
.x8_c01168{left:49.200000pt;}
.x6_c01168{left:50.133333pt;}
.x2_c01168{left:51.066667pt;}
.x7_c01168{left:72.000000pt;}
.xb_c01168{left:255.834880pt;}
.x1_c01168{left:296.800000pt;}
}





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

.ir_c01169:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01169{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01169;src:url('chunks/assets/font_2a4cf352de8b3640308104a5.woff2')format("woff");}.ff1_c01169{font-family:ff1_c01169;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01169;src:url('chunks/assets/font_337f89e41ab805c4f7ccc61c.woff2')format("woff");}.ff2_c01169{font-family:ff2_c01169;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01169;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff3_c01169{font-family:ff3_c01169;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01169;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff4_c01169{font-family:ff4_c01169;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01169{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01169{vertical-align:0.000000px;}
.ls1_c01169{letter-spacing:0.000000px;}
.ls0_c01169{letter-spacing:12.300000px;}
.sc__c01169{text-shadow:none;}
.sc0_c01169{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01169{-webkit-text-stroke:0px transparent;}
.sc0_c01169{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c01169{word-spacing:-2.682000px;}
.ws1_c01169{word-spacing:-0.564000px;}
.ws4_c01169{word-spacing:0.000000px;}
.ws0_c01169{word-spacing:1.368000px;}
.ws2_c01169{word-spacing:2.223000px;}
._1c_c01169{margin-left:-14.544000px;}
._f_c01169{margin-left:-2.856000px;}
._11_c01169{margin-left:-1.767000px;}
._16_c01169{width:1.704000px;}
._18_c01169{width:2.763000px;}
._10_c01169{width:4.053000px;}
._e_c01169{width:5.706000px;}
._a_c01169{width:7.176000px;}
._1_c01169{width:8.892000px;}
._6_c01169{width:10.545000px;}
._9_c01169{width:12.426000px;}
._8_c01169{width:15.282000px;}
._7_c01169{width:16.815000px;}
._4_c01169{width:17.898000px;}
._2_c01169{width:19.323000px;}
._3_c01169{width:20.805000px;}
._c_c01169{width:22.401000px;}
._0_c01169{width:24.225000px;}
._13_c01169{width:25.251000px;}
._5_c01169{width:26.619000px;}
._d_c01169{width:28.443000px;}
._12_c01169{width:29.496000px;}
._17_c01169{width:31.935000px;}
._15_c01169{width:34.206000px;}
._1a_c01169{width:36.786000px;}
._b_c01169{width:44.580000px;}
._19_c01169{width:101.043000px;}
._1d_c01169{width:167.586000px;}
._1b_c01169{width:183.534000px;}
._14_c01169{width:268.071000px;}
.fc2_c01169{color:transparent;}
.fc1_c01169{color:rgb(128,128,128);}
.fc0_c01169{color:rgb(0,0,0);}
.fs1_c01169{font-size:48.000000px;}
.fs0_c01169{font-size:57.000000px;}
.y0_c01169{bottom:0.000000px;}
.y23_c01169{bottom:3.105000px;}
.y22_c01169{bottom:7.228371px;}
.y21_c01169{bottom:109.665000px;}
.y20_c01169{bottom:134.715000px;}
.y1f_c01169{bottom:159.615000px;}
.y1e_c01169{bottom:184.365000px;}
.y1d_c01169{bottom:208.665000px;}
.y1c_c01169{bottom:232.965000px;}
.y1b_c01169{bottom:257.565000px;}
.y1a_c01169{bottom:281.865000px;}
.y19_c01169{bottom:306.165000px;}
.y18_c01169{bottom:330.765000px;}
.y17_c01169{bottom:355.365000px;}
.y16_c01169{bottom:379.065000px;}
.y15_c01169{bottom:404.115000px;}
.y14_c01169{bottom:427.665000px;}
.y13_c01169{bottom:451.965000px;}
.y12_c01169{bottom:475.965000px;}
.y11_c01169{bottom:499.815000px;}
.y10_c01169{bottom:524.115000px;}
.yf_c01169{bottom:547.815000px;}
.ye_c01169{bottom:571.515000px;}
.yd_c01169{bottom:596.415000px;}
.yc_c01169{bottom:620.415000px;}
.yb_c01169{bottom:644.715000px;}
.ya_c01169{bottom:667.665000px;}
.y9_c01169{bottom:692.265000px;}
.y8_c01169{bottom:716.565000px;}
.y7_c01169{bottom:741.165000px;}
.y6_c01169{bottom:765.465000px;}
.y5_c01169{bottom:789.165000px;}
.y4_c01169{bottom:813.465000px;}
.y3_c01169{bottom:837.465000px;}
.y2_c01169{bottom:861.615000px;}
.y1_c01169{bottom:885.915000px;}
.h3_c01169{height:13.200074px;}
.h4_c01169{height:43.804688px;}
.h2_c01169{height:57.445312px;}
.h1_c01169{height:986.250000px;}
.h0_c01169{height:986.325000px;}
.w2_c01169{width:104.875500px;}
.w0_c01169{width:667.425000px;}
.w1_c01169{width:667.500000px;}
.x0_c01169{left:0.000000px;}
.x8_c01169{left:25.650000px;}
.x9_c01169{left:28.650000px;}
.x1_c01169{left:29.700000px;}
.x2_c01169{left:87.150000px;}
.x7_c01169{left:109.800000px;}
.x6_c01169{left:112.350000px;}
.x5_c01169{left:115.350000px;}
.x3_c01169{left:117.150000px;}
.x4_c01169{left:118.350000px;}
.xa_c01169{left:285.526749px;}
@media print{
.v0_c01169{vertical-align:0.000000pt;}
.ls1_c01169{letter-spacing:0.000000pt;}
.ls0_c01169{letter-spacing:10.933333pt;}
.ws3_c01169{word-spacing:-2.384000pt;}
.ws1_c01169{word-spacing:-0.501333pt;}
.ws4_c01169{word-spacing:0.000000pt;}
.ws0_c01169{word-spacing:1.216000pt;}
.ws2_c01169{word-spacing:1.976000pt;}
._1c_c01169{margin-left:-12.928000pt;}
._f_c01169{margin-left:-2.538667pt;}
._11_c01169{margin-left:-1.570667pt;}
._16_c01169{width:1.514667pt;}
._18_c01169{width:2.456000pt;}
._10_c01169{width:3.602667pt;}
._e_c01169{width:5.072000pt;}
._a_c01169{width:6.378667pt;}
._1_c01169{width:7.904000pt;}
._6_c01169{width:9.373333pt;}
._9_c01169{width:11.045333pt;}
._8_c01169{width:13.584000pt;}
._7_c01169{width:14.946667pt;}
._4_c01169{width:15.909333pt;}
._2_c01169{width:17.176000pt;}
._3_c01169{width:18.493333pt;}
._c_c01169{width:19.912000pt;}
._0_c01169{width:21.533333pt;}
._13_c01169{width:22.445333pt;}
._5_c01169{width:23.661333pt;}
._d_c01169{width:25.282667pt;}
._12_c01169{width:26.218667pt;}
._17_c01169{width:28.386667pt;}
._15_c01169{width:30.405333pt;}
._1a_c01169{width:32.698667pt;}
._b_c01169{width:39.626667pt;}
._19_c01169{width:89.816000pt;}
._1d_c01169{width:148.965333pt;}
._1b_c01169{width:163.141333pt;}
._14_c01169{width:238.285333pt;}
.fs1_c01169{font-size:42.666667pt;}
.fs0_c01169{font-size:50.666667pt;}
.y0_c01169{bottom:0.000000pt;}
.y23_c01169{bottom:2.760000pt;}
.y22_c01169{bottom:6.425219pt;}
.y21_c01169{bottom:97.480000pt;}
.y20_c01169{bottom:119.746667pt;}
.y1f_c01169{bottom:141.880000pt;}
.y1e_c01169{bottom:163.880000pt;}
.y1d_c01169{bottom:185.480000pt;}
.y1c_c01169{bottom:207.080000pt;}
.y1b_c01169{bottom:228.946667pt;}
.y1a_c01169{bottom:250.546667pt;}
.y19_c01169{bottom:272.146667pt;}
.y18_c01169{bottom:294.013333pt;}
.y17_c01169{bottom:315.880000pt;}
.y16_c01169{bottom:336.946667pt;}
.y15_c01169{bottom:359.213333pt;}
.y14_c01169{bottom:380.146667pt;}
.y13_c01169{bottom:401.746667pt;}
.y12_c01169{bottom:423.080000pt;}
.y11_c01169{bottom:444.280000pt;}
.y10_c01169{bottom:465.880000pt;}
.yf_c01169{bottom:486.946667pt;}
.ye_c01169{bottom:508.013333pt;}
.yd_c01169{bottom:530.146667pt;}
.yc_c01169{bottom:551.480000pt;}
.yb_c01169{bottom:573.080000pt;}
.ya_c01169{bottom:593.480000pt;}
.y9_c01169{bottom:615.346667pt;}
.y8_c01169{bottom:636.946667pt;}
.y7_c01169{bottom:658.813333pt;}
.y6_c01169{bottom:680.413333pt;}
.y5_c01169{bottom:701.480000pt;}
.y4_c01169{bottom:723.080000pt;}
.y3_c01169{bottom:744.413333pt;}
.y2_c01169{bottom:765.880000pt;}
.y1_c01169{bottom:787.480000pt;}
.h3_c01169{height:11.733399pt;}
.h4_c01169{height:38.937500pt;}
.h2_c01169{height:51.062500pt;}
.h1_c01169{height:876.666667pt;}
.h0_c01169{height:876.733333pt;}
.w2_c01169{width:93.222667pt;}
.w0_c01169{width:593.266667pt;}
.w1_c01169{width:593.333333pt;}
.x0_c01169{left:0.000000pt;}
.x8_c01169{left:22.800000pt;}
.x9_c01169{left:25.466667pt;}
.x1_c01169{left:26.400000pt;}
.x2_c01169{left:77.466667pt;}
.x7_c01169{left:97.600000pt;}
.x6_c01169{left:99.866667pt;}
.x5_c01169{left:102.533333pt;}
.x3_c01169{left:104.133333pt;}
.x4_c01169{left:105.200000pt;}
.xa_c01169{left:253.801554pt;}
}





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

.ir_c01170:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01170{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01170;src:url('chunks/assets/font_e7b0f4c96e81816b94f26b35.woff2')format("woff");}.ff1_c01170{font-family:ff1_c01170;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01170;src:url('chunks/assets/font_6e6394a63b02780ba94a1f01.woff2')format("woff");}.ff2_c01170{font-family:ff2_c01170;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01170;src:url('chunks/assets/font_c909a64ce30fb813b38b25b9.woff2')format("woff");}.ff3_c01170{font-family:ff3_c01170;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01170;src:url('chunks/assets/font_aa10a0b11f5b8757878f6e20.woff2')format("woff");}.ff4_c01170{font-family:ff4_c01170;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01170;src:url('chunks/assets/font_98dadf564126de77afa56f1a.woff2')format("woff");}.ff5_c01170{font-family:ff5_c01170;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01170;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c01170{font-family:ff6_c01170;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01170{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01170{vertical-align:0.000000px;}
.v1_c01170{vertical-align:2.400000px;}
.ls2_c01170{letter-spacing:-9.000000px;}
.ls1_c01170{letter-spacing:0.000000px;}
.ls3_c01170{letter-spacing:3.000000px;}
.ls0_c01170{letter-spacing:146.220000px;}
.sc__c01170{text-shadow:none;}
.sc0_c01170{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01170{-webkit-text-stroke:0px transparent;}
.sc0_c01170{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01170{word-spacing:-14.250000px;}
.ws3_c01170{word-spacing:-1.995000px;}
.ws4_c01170{word-spacing:-0.741000px;}
.ws5_c01170{word-spacing:0.000000px;}
.ws2_c01170{word-spacing:2.850000px;}
.ws1_c01170{word-spacing:7.107000px;}
._8_c01170{margin-left:-18.876000px;}
._16_c01170{margin-left:-15.105000px;}
._1_c01170{margin-left:-13.959000px;}
._9_c01170{margin-left:-12.804000px;}
._25_c01170{margin-left:-10.821000px;}
._20_c01170{margin-left:-9.231000px;}
._3_c01170{margin-left:-8.217000px;}
._5_c01170{margin-left:-6.732000px;}
._4_c01170{margin-left:-5.346000px;}
._6_c01170{margin-left:-2.970000px;}
._2_c01170{margin-left:-1.287000px;}
._1c_c01170{width:1.605000px;}
._f_c01170{width:2.736000px;}
._e_c01170{width:4.335000px;}
._12_c01170{width:5.526000px;}
._b_c01170{width:6.669000px;}
._10_c01170{width:7.752000px;}
._11_c01170{width:9.720000px;}
._d_c01170{width:10.773000px;}
._a_c01170{width:12.756000px;}
._0_c01170{width:14.256000px;}
._14_c01170{width:15.276000px;}
._c_c01170{width:17.100000px;}
._17_c01170{width:18.309000px;}
._1d_c01170{width:19.425000px;}
._15_c01170{width:20.664000px;}
._19_c01170{width:22.329000px;}
._1e_c01170{width:23.502000px;}
._18_c01170{width:24.579000px;}
._22_c01170{width:26.382000px;}
._1b_c01170{width:27.615000px;}
._13_c01170{width:28.728000px;}
._26_c01170{width:31.575000px;}
._27_c01170{width:36.009000px;}
._21_c01170{width:49.263000px;}
._1f_c01170{width:55.887000px;}
._1a_c01170{width:57.411000px;}
._7_c01170{width:84.810000px;}
._24_c01170{width:95.967000px;}
._23_c01170{width:136.002000px;}
.fc2_c01170{color:transparent;}
.fc1_c01170{color:rgb(128,128,128);}
.fc0_c01170{color:rgb(0,0,0);}
.fs5_c01170{font-size:48.000000px;}
.fs2_c01170{font-size:57.000000px;}
.fs3_c01170{font-size:60.000000px;}
.fs4_c01170{font-size:63.000000px;}
.fs0_c01170{font-size:99.000000px;}
.fs1_c01170{font-size:132.000000px;}
.y0_c01170{bottom:0.000000px;}
.y25_c01170{bottom:3.105000px;}
.y24_c01170{bottom:7.228355px;}
.y23_c01170{bottom:49.635000px;}
.y22_c01170{bottom:73.485000px;}
.y21_c01170{bottom:98.235000px;}
.y20_c01170{bottom:123.435000px;}
.y1f_c01170{bottom:148.185000px;}
.y1e_c01170{bottom:173.085000px;}
.y1d_c01170{bottom:197.685000px;}
.y1c_c01170{bottom:222.435000px;}
.y1b_c01170{bottom:246.285000px;}
.y1a_c01170{bottom:271.035000px;}
.y19_c01170{bottom:295.185000px;}
.y18_c01170{bottom:319.935000px;}
.y17_c01170{bottom:343.185000px;}
.y16_c01170{bottom:368.085000px;}
.y15_c01170{bottom:391.785000px;}
.y14_c01170{bottom:418.185000px;}
.y13_c01170{bottom:440.385000px;}
.y12_c01170{bottom:464.385000px;}
.y11_c01170{bottom:488.685000px;}
.y10_c01170{bottom:512.685000px;}
.yf_c01170{bottom:536.985000px;}
.ye_c01170{bottom:559.935000px;}
.yd_c01170{bottom:584.835000px;}
.yc_c01170{bottom:607.485000px;}
.yb_c01170{bottom:631.485000px;}
.ya_c01170{bottom:655.035000px;}
.y9_c01170{bottom:679.635000px;}
.y8_c01170{bottom:703.635000px;}
.y7_c01170{bottom:728.235000px;}
.y6_c01170{bottom:751.935000px;}
.y5_c01170{bottom:776.535000px;}
.y4_c01170{bottom:800.085000px;}
.y3_c01170{bottom:823.935000px;}
.y2_c01170{bottom:861.885000px;}
.y1_c01170{bottom:913.485000px;}
.h7_c01170{height:13.200074px;}
.h8_c01170{height:43.804688px;}
.h6_c01170{height:55.942383px;}
.h3_c01170{height:57.445312px;}
.h4_c01170{height:59.845313px;}
.h5_c01170{height:70.224609px;}
.h2_c01170{height:167.126953px;}
.h0_c01170{height:977.925000px;}
.h1_c01170{height:978.000000px;}
.w2_c01170{width:104.875500px;}
.w0_c01170{width:665.850000px;}
.w1_c01170{width:666.000000px;}
.x0_c01170{left:0.000000px;}
.xc_c01170{left:40.200000px;}
.xb_c01170{left:42.150000px;}
.xa_c01170{left:43.500000px;}
.x9_c01170{left:45.150000px;}
.x8_c01170{left:46.200000px;}
.x7_c01170{left:47.550000px;}
.x5_c01170{left:48.900000px;}
.x6_c01170{left:50.250000px;}
.x3_c01170{left:54.900000px;}
.x2_c01170{left:84.300000px;}
.x4_c01170{left:85.650000px;}
.x1_c01170{left:181.800000px;}
.xe_c01170{left:284.739258px;}
.xd_c01170{left:497.100000px;}
@media print{
.v0_c01170{vertical-align:0.000000pt;}
.v1_c01170{vertical-align:2.133333pt;}
.ls2_c01170{letter-spacing:-8.000000pt;}
.ls1_c01170{letter-spacing:0.000000pt;}
.ls3_c01170{letter-spacing:2.666667pt;}
.ls0_c01170{letter-spacing:129.973333pt;}
.ws0_c01170{word-spacing:-12.666667pt;}
.ws3_c01170{word-spacing:-1.773333pt;}
.ws4_c01170{word-spacing:-0.658667pt;}
.ws5_c01170{word-spacing:0.000000pt;}
.ws2_c01170{word-spacing:2.533333pt;}
.ws1_c01170{word-spacing:6.317333pt;}
._8_c01170{margin-left:-16.778667pt;}
._16_c01170{margin-left:-13.426667pt;}
._1_c01170{margin-left:-12.408000pt;}
._9_c01170{margin-left:-11.381333pt;}
._25_c01170{margin-left:-9.618667pt;}
._20_c01170{margin-left:-8.205333pt;}
._3_c01170{margin-left:-7.304000pt;}
._5_c01170{margin-left:-5.984000pt;}
._4_c01170{margin-left:-4.752000pt;}
._6_c01170{margin-left:-2.640000pt;}
._2_c01170{margin-left:-1.144000pt;}
._1c_c01170{width:1.426667pt;}
._f_c01170{width:2.432000pt;}
._e_c01170{width:3.853333pt;}
._12_c01170{width:4.912000pt;}
._b_c01170{width:5.928000pt;}
._10_c01170{width:6.890667pt;}
._11_c01170{width:8.640000pt;}
._d_c01170{width:9.576000pt;}
._a_c01170{width:11.338667pt;}
._0_c01170{width:12.672000pt;}
._14_c01170{width:13.578667pt;}
._c_c01170{width:15.200000pt;}
._17_c01170{width:16.274667pt;}
._1d_c01170{width:17.266667pt;}
._15_c01170{width:18.368000pt;}
._19_c01170{width:19.848000pt;}
._1e_c01170{width:20.890667pt;}
._18_c01170{width:21.848000pt;}
._22_c01170{width:23.450667pt;}
._1b_c01170{width:24.546667pt;}
._13_c01170{width:25.536000pt;}
._26_c01170{width:28.066667pt;}
._27_c01170{width:32.008000pt;}
._21_c01170{width:43.789333pt;}
._1f_c01170{width:49.677333pt;}
._1a_c01170{width:51.032000pt;}
._7_c01170{width:75.386667pt;}
._24_c01170{width:85.304000pt;}
._23_c01170{width:120.890667pt;}
.fs5_c01170{font-size:42.666667pt;}
.fs2_c01170{font-size:50.666667pt;}
.fs3_c01170{font-size:53.333333pt;}
.fs4_c01170{font-size:56.000000pt;}
.fs0_c01170{font-size:88.000000pt;}
.fs1_c01170{font-size:117.333333pt;}
.y0_c01170{bottom:0.000000pt;}
.y25_c01170{bottom:2.760000pt;}
.y24_c01170{bottom:6.425204pt;}
.y23_c01170{bottom:44.120000pt;}
.y22_c01170{bottom:65.320000pt;}
.y21_c01170{bottom:87.320000pt;}
.y20_c01170{bottom:109.720000pt;}
.y1f_c01170{bottom:131.720000pt;}
.y1e_c01170{bottom:153.853333pt;}
.y1d_c01170{bottom:175.720000pt;}
.y1c_c01170{bottom:197.720000pt;}
.y1b_c01170{bottom:218.920000pt;}
.y1a_c01170{bottom:240.920000pt;}
.y19_c01170{bottom:262.386667pt;}
.y18_c01170{bottom:284.386667pt;}
.y17_c01170{bottom:305.053333pt;}
.y16_c01170{bottom:327.186667pt;}
.y15_c01170{bottom:348.253333pt;}
.y14_c01170{bottom:371.720000pt;}
.y13_c01170{bottom:391.453333pt;}
.y12_c01170{bottom:412.786667pt;}
.y11_c01170{bottom:434.386667pt;}
.y10_c01170{bottom:455.720000pt;}
.yf_c01170{bottom:477.320000pt;}
.ye_c01170{bottom:497.720000pt;}
.yd_c01170{bottom:519.853333pt;}
.yc_c01170{bottom:539.986667pt;}
.yb_c01170{bottom:561.320000pt;}
.ya_c01170{bottom:582.253333pt;}
.y9_c01170{bottom:604.120000pt;}
.y8_c01170{bottom:625.453333pt;}
.y7_c01170{bottom:647.320000pt;}
.y6_c01170{bottom:668.386667pt;}
.y5_c01170{bottom:690.253333pt;}
.y4_c01170{bottom:711.186667pt;}
.y3_c01170{bottom:732.386667pt;}
.y2_c01170{bottom:766.120000pt;}
.y1_c01170{bottom:811.986667pt;}
.h7_c01170{height:11.733399pt;}
.h8_c01170{height:38.937500pt;}
.h6_c01170{height:49.726562pt;}
.h3_c01170{height:51.062500pt;}
.h4_c01170{height:53.195833pt;}
.h5_c01170{height:62.421875pt;}
.h2_c01170{height:148.557292pt;}
.h0_c01170{height:869.266667pt;}
.h1_c01170{height:869.333333pt;}
.w2_c01170{width:93.222667pt;}
.w0_c01170{width:591.866667pt;}
.w1_c01170{width:592.000000pt;}
.x0_c01170{left:0.000000pt;}
.xc_c01170{left:35.733333pt;}
.xb_c01170{left:37.466667pt;}
.xa_c01170{left:38.666667pt;}
.x9_c01170{left:40.133333pt;}
.x8_c01170{left:41.066667pt;}
.x7_c01170{left:42.266667pt;}
.x5_c01170{left:43.466667pt;}
.x6_c01170{left:44.666667pt;}
.x3_c01170{left:48.800000pt;}
.x2_c01170{left:74.933333pt;}
.x4_c01170{left:76.133333pt;}
.x1_c01170{left:161.600000pt;}
.xe_c01170{left:253.101563pt;}
.xd_c01170{left:441.866667pt;}
}





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

.ir_c01171:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01171{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01171;src:url('chunks/assets/font_091cf37035374e81dc13dee8.woff2')format("woff");}.ff1_c01171{font-family:ff1_c01171;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01171;src:url('chunks/assets/font_e30225e11f6f20f14d6b4f72.woff2')format("woff");}.ff2_c01171{font-family:ff2_c01171;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01171;src:url('chunks/assets/font_28d446ef29d0a3f8722b5f92.woff2')format("woff");}.ff3_c01171{font-family:ff3_c01171;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01171;src:url('chunks/assets/font_15643ee0eb34c226d04a3d9c.woff2')format("woff");}.ff4_c01171{font-family:ff4_c01171;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01171;src:url('chunks/assets/font_db0f87967965150c8df6f76b.woff2')format("woff");}.ff5_c01171{font-family:ff5_c01171;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01171;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c01171{font-family:ff6_c01171;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01171{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01171{vertical-align:0.000000px;}
.ls6_c01171{letter-spacing:0.000000px;}
.ls5_c01171{letter-spacing:1.500000px;}
.ls1_c01171{letter-spacing:4.392000px;}
.ls2_c01171{letter-spacing:8.250000px;}
.ls3_c01171{letter-spacing:14.520000px;}
.ls0_c01171{letter-spacing:16.050000px;}
.ls4_c01171{letter-spacing:26.100000px;}
.sc__c01171{text-shadow:none;}
.sc0_c01171{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01171{-webkit-text-stroke:0px transparent;}
.sc0_c01171{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01171{word-spacing:-66.744000px;}
.ws2_c01171{word-spacing:-20.565600px;}
.ws0_c01171{word-spacing:-15.750000px;}
.ws3_c01171{word-spacing:-14.250000px;}
.ws4_c01171{word-spacing:-0.456000px;}
.ws5_c01171{word-spacing:0.000000px;}
._1f_c01171{margin-left:-24.984000px;}
._21_c01171{margin-left:-18.972000px;}
._20_c01171{margin-left:-12.276000px;}
._22_c01171{margin-left:-9.393000px;}
._23_c01171{margin-left:-7.615200px;}
._1d_c01171{margin-left:-5.820000px;}
._1a_c01171{margin-left:-4.032000px;}
._11_c01171{margin-left:-2.538000px;}
._1b_c01171{margin-left:-1.086000px;}
._e_c01171{width:1.653000px;}
._c_c01171{width:2.679000px;}
._b_c01171{width:3.876000px;}
._a_c01171{width:5.301000px;}
._5_c01171{width:6.384000px;}
._2_c01171{width:7.866000px;}
._0_c01171{width:9.234000px;}
._7_c01171{width:10.488000px;}
._4_c01171{width:11.742000px;}
._9_c01171{width:12.882000px;}
._16_c01171{width:14.298000px;}
._3_c01171{width:15.675000px;}
._6_c01171{width:17.328000px;}
._8_c01171{width:18.867000px;}
._1_c01171{width:20.178000px;}
._15_c01171{width:21.432000px;}
._17_c01171{width:22.914000px;}
._d_c01171{width:24.510000px;}
._27_c01171{width:25.764000px;}
._10_c01171{width:26.847000px;}
._25_c01171{width:28.293000px;}
._2b_c01171{width:29.526000px;}
._12_c01171{width:31.350000px;}
._14_c01171{width:32.436000px;}
._13_c01171{width:35.421000px;}
._24_c01171{width:37.743000px;}
._2a_c01171{width:40.464000px;}
._f_c01171{width:41.982000px;}
._28_c01171{width:75.354000px;}
._18_c01171{width:108.486000px;}
._1c_c01171{width:159.972000px;}
._26_c01171{width:178.518000px;}
._2d_c01171{width:186.381000px;}
._1e_c01171{width:194.046000px;}
._29_c01171{width:202.527000px;}
._19_c01171{width:210.690000px;}
._2c_c01171{width:238.941000px;}
._2e_c01171{width:412.572000px;}
._2f_c01171{width:574.881000px;}
.fc2_c01171{color:transparent;}
.fc1_c01171{color:rgb(128,128,128);}
.fc0_c01171{color:rgb(0,0,0);}
.fs3_c01171{font-size:45.600000px;}
.fs4_c01171{font-size:48.000000px;}
.fs0_c01171{font-size:57.000000px;}
.fs1_c01171{font-size:63.000000px;}
.fs2_c01171{font-size:72.000000px;}
.y0_c01171{bottom:0.000000px;}
.y25_c01171{bottom:3.105000px;}
.y24_c01171{bottom:7.228371px;}
.y23_c01171{bottom:63.165000px;}
.y22_c01171{bottom:83.715000px;}
.y21_c01171{bottom:110.115000px;}
.y20_c01171{bottom:134.715000px;}
.y1f_c01171{bottom:160.065000px;}
.y1e_c01171{bottom:184.965000px;}
.y1d_c01171{bottom:208.365000px;}
.y1c_c01171{bottom:233.265000px;}
.y1b_c01171{bottom:258.165000px;}
.y1a_c01171{bottom:282.465000px;}
.y19_c01171{bottom:306.915000px;}
.y18_c01171{bottom:331.215000px;}
.y17_c01171{bottom:355.365000px;}
.y16_c01171{bottom:380.715000px;}
.y15_c01171{bottom:403.965000px;}
.y14_c01171{bottom:427.365000px;}
.y13_c01171{bottom:452.265000px;}
.y12_c01171{bottom:476.265000px;}
.y11_c01171{bottom:501.315000px;}
.y10_c01171{bottom:524.565000px;}
.yf_c01171{bottom:547.815000px;}
.ye_c01171{bottom:572.415000px;}
.yd_c01171{bottom:596.415000px;}
.yc_c01171{bottom:620.415000px;}
.yb_c01171{bottom:644.415000px;}
.ya_c01171{bottom:669.315000px;}
.y9_c01171{bottom:691.515000px;}
.y8_c01171{bottom:716.865000px;}
.y7_c01171{bottom:741.165000px;}
.y6_c01171{bottom:764.565000px;}
.y5_c01171{bottom:789.465000px;}
.y4_c01171{bottom:814.365000px;}
.y3_c01171{bottom:837.465000px;}
.y2_c01171{bottom:862.365000px;}
.y1_c01171{bottom:885.915000px;}
.h5_c01171{height:13.200074px;}
.h6_c01171{height:43.804688px;}
.h2_c01171{height:57.445312px;}
.h4_c01171{height:61.831055px;}
.h3_c01171{height:91.160156px;}
.h1_c01171{height:986.250000px;}
.h0_c01171{height:986.325000px;}
.w2_c01171{width:104.875500px;}
.w0_c01171{width:667.425000px;}
.w1_c01171{width:667.500000px;}
.x0_c01171{left:0.000000px;}
.x3_c01171{left:13.800000px;}
.x4_c01171{left:16.650000px;}
.xf_c01171{left:29.700000px;}
.x10_c01171{left:31.500000px;}
.x7_c01171{left:94.200000px;}
.x1_c01171{left:102.300000px;}
.x2_c01171{left:103.350000px;}
.x5_c01171{left:106.050000px;}
.x6_c01171{left:107.100000px;}
.x8_c01171{left:109.650000px;}
.x9_c01171{left:111.450000px;}
.xb_c01171{left:112.800000px;}
.xa_c01171{left:114.150000px;}
.xc_c01171{left:115.200000px;}
.xd_c01171{left:116.400000px;}
.xe_c01171{left:118.200000px;}
.x11_c01171{left:121.200000px;}
.x13_c01171{left:122.550000px;}
.x14_c01171{left:123.900000px;}
.x15_c01171{left:125.550000px;}
.x16_c01171{left:127.200000px;}
.x12_c01171{left:147.150000px;}
.x18_c01171{left:285.526749px;}
.x17_c01171{left:576.150000px;}
@media print{
.v0_c01171{vertical-align:0.000000pt;}
.ls6_c01171{letter-spacing:0.000000pt;}
.ls5_c01171{letter-spacing:1.333333pt;}
.ls1_c01171{letter-spacing:3.904000pt;}
.ls2_c01171{letter-spacing:7.333333pt;}
.ls3_c01171{letter-spacing:12.906667pt;}
.ls0_c01171{letter-spacing:14.266667pt;}
.ls4_c01171{letter-spacing:23.200000pt;}
.ws1_c01171{word-spacing:-59.328000pt;}
.ws2_c01171{word-spacing:-18.280533pt;}
.ws0_c01171{word-spacing:-14.000000pt;}
.ws3_c01171{word-spacing:-12.666667pt;}
.ws4_c01171{word-spacing:-0.405333pt;}
.ws5_c01171{word-spacing:0.000000pt;}
._1f_c01171{margin-left:-22.208000pt;}
._21_c01171{margin-left:-16.864000pt;}
._20_c01171{margin-left:-10.912000pt;}
._22_c01171{margin-left:-8.349333pt;}
._23_c01171{margin-left:-6.769067pt;}
._1d_c01171{margin-left:-5.173333pt;}
._1a_c01171{margin-left:-3.584000pt;}
._11_c01171{margin-left:-2.256000pt;}
._1b_c01171{margin-left:-0.965333pt;}
._e_c01171{width:1.469333pt;}
._c_c01171{width:2.381333pt;}
._b_c01171{width:3.445333pt;}
._a_c01171{width:4.712000pt;}
._5_c01171{width:5.674667pt;}
._2_c01171{width:6.992000pt;}
._0_c01171{width:8.208000pt;}
._7_c01171{width:9.322667pt;}
._4_c01171{width:10.437333pt;}
._9_c01171{width:11.450667pt;}
._16_c01171{width:12.709333pt;}
._3_c01171{width:13.933333pt;}
._6_c01171{width:15.402667pt;}
._8_c01171{width:16.770667pt;}
._1_c01171{width:17.936000pt;}
._15_c01171{width:19.050667pt;}
._17_c01171{width:20.368000pt;}
._d_c01171{width:21.786667pt;}
._27_c01171{width:22.901333pt;}
._10_c01171{width:23.864000pt;}
._25_c01171{width:25.149333pt;}
._2b_c01171{width:26.245333pt;}
._12_c01171{width:27.866667pt;}
._14_c01171{width:28.832000pt;}
._13_c01171{width:31.485333pt;}
._24_c01171{width:33.549333pt;}
._2a_c01171{width:35.968000pt;}
._f_c01171{width:37.317333pt;}
._28_c01171{width:66.981333pt;}
._18_c01171{width:96.432000pt;}
._1c_c01171{width:142.197333pt;}
._26_c01171{width:158.682667pt;}
._2d_c01171{width:165.672000pt;}
._1e_c01171{width:172.485333pt;}
._29_c01171{width:180.024000pt;}
._19_c01171{width:187.280000pt;}
._2c_c01171{width:212.392000pt;}
._2e_c01171{width:366.730667pt;}
._2f_c01171{width:511.005333pt;}
.fs3_c01171{font-size:40.533333pt;}
.fs4_c01171{font-size:42.666667pt;}
.fs0_c01171{font-size:50.666667pt;}
.fs1_c01171{font-size:56.000000pt;}
.fs2_c01171{font-size:64.000000pt;}
.y0_c01171{bottom:0.000000pt;}
.y25_c01171{bottom:2.760000pt;}
.y24_c01171{bottom:6.425219pt;}
.y23_c01171{bottom:56.146667pt;}
.y22_c01171{bottom:74.413333pt;}
.y21_c01171{bottom:97.880000pt;}
.y20_c01171{bottom:119.746667pt;}
.y1f_c01171{bottom:142.280000pt;}
.y1e_c01171{bottom:164.413333pt;}
.y1d_c01171{bottom:185.213333pt;}
.y1c_c01171{bottom:207.346667pt;}
.y1b_c01171{bottom:229.480000pt;}
.y1a_c01171{bottom:251.080000pt;}
.y19_c01171{bottom:272.813333pt;}
.y18_c01171{bottom:294.413333pt;}
.y17_c01171{bottom:315.880000pt;}
.y16_c01171{bottom:338.413333pt;}
.y15_c01171{bottom:359.080000pt;}
.y14_c01171{bottom:379.880000pt;}
.y13_c01171{bottom:402.013333pt;}
.y12_c01171{bottom:423.346667pt;}
.y11_c01171{bottom:445.613333pt;}
.y10_c01171{bottom:466.280000pt;}
.yf_c01171{bottom:486.946667pt;}
.ye_c01171{bottom:508.813333pt;}
.yd_c01171{bottom:530.146667pt;}
.yc_c01171{bottom:551.480000pt;}
.yb_c01171{bottom:572.813333pt;}
.ya_c01171{bottom:594.946667pt;}
.y9_c01171{bottom:614.680000pt;}
.y8_c01171{bottom:637.213333pt;}
.y7_c01171{bottom:658.813333pt;}
.y6_c01171{bottom:679.613333pt;}
.y5_c01171{bottom:701.746667pt;}
.y4_c01171{bottom:723.880000pt;}
.y3_c01171{bottom:744.413333pt;}
.y2_c01171{bottom:766.546667pt;}
.y1_c01171{bottom:787.480000pt;}
.h5_c01171{height:11.733399pt;}
.h6_c01171{height:38.937500pt;}
.h2_c01171{height:51.062500pt;}
.h4_c01171{height:54.960938pt;}
.h3_c01171{height:81.031250pt;}
.h1_c01171{height:876.666667pt;}
.h0_c01171{height:876.733333pt;}
.w2_c01171{width:93.222667pt;}
.w0_c01171{width:593.266667pt;}
.w1_c01171{width:593.333333pt;}
.x0_c01171{left:0.000000pt;}
.x3_c01171{left:12.266667pt;}
.x4_c01171{left:14.800000pt;}
.xf_c01171{left:26.400000pt;}
.x10_c01171{left:28.000000pt;}
.x7_c01171{left:83.733333pt;}
.x1_c01171{left:90.933333pt;}
.x2_c01171{left:91.866667pt;}
.x5_c01171{left:94.266667pt;}
.x6_c01171{left:95.200000pt;}
.x8_c01171{left:97.466667pt;}
.x9_c01171{left:99.066667pt;}
.xb_c01171{left:100.266667pt;}
.xa_c01171{left:101.466667pt;}
.xc_c01171{left:102.400000pt;}
.xd_c01171{left:103.466667pt;}
.xe_c01171{left:105.066667pt;}
.x11_c01171{left:107.733333pt;}
.x13_c01171{left:108.933333pt;}
.x14_c01171{left:110.133333pt;}
.x15_c01171{left:111.600000pt;}
.x16_c01171{left:113.066667pt;}
.x12_c01171{left:130.800000pt;}
.x18_c01171{left:253.801554pt;}
.x17_c01171{left:512.133333pt;}
}





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

.ir_c01172:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01172{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01172;src:url('chunks/assets/font_fb306dc3e682bbf90636a760.woff2')format("woff");}.ff1_c01172{font-family:ff1_c01172;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01172;src:url('chunks/assets/font_0e603f2229200f6d970bfda0.woff2')format("woff");}.ff2_c01172{font-family:ff2_c01172;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01172;src:url('chunks/assets/font_b453aff2cf035bf7872ed836.woff2')format("woff");}.ff3_c01172{font-family:ff3_c01172;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01172;src:url('chunks/assets/font_1cc7c4dfcbb4f7a534a99a5c.woff2')format("woff");}.ff4_c01172{font-family:ff4_c01172;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01172;src:url('chunks/assets/font_d8bc17ca80b1e63f4ae5beb0.woff2')format("woff");}.ff5_c01172{font-family:ff5_c01172;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01172;src:url('chunks/assets/font_6799c2d283fff2ff39cc9f34.woff2')format("woff");}.ff6_c01172{font-family:ff6_c01172;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01172;src:url('chunks/assets/font_4ec38c785b170a0e32dca37f.woff2')format("woff");}.ff7_c01172{font-family:ff7_c01172;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c01172;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff8_c01172{font-family:ff8_c01172;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01172{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01172{vertical-align:0.000000px;}
.ls5_c01172{letter-spacing:0.000000px;}
.ls4_c01172{letter-spacing:1.002000px;}
.ls7_c01172{letter-spacing:3.000000px;}
.ls2_c01172{letter-spacing:8.154000px;}
.ls6_c01172{letter-spacing:45.000000px;}
.ls0_c01172{letter-spacing:218.202000px;}
.ls3_c01172{letter-spacing:224.202000px;}
.ls1_c01172{letter-spacing:316.602000px;}
.sc__c01172{text-shadow:none;}
.sc0_c01172{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01172{-webkit-text-stroke:0px transparent;}
.sc0_c01172{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01172{word-spacing:-46.980000px;}
.ws4_c01172{word-spacing:-29.250000px;}
.ws1_c01172{word-spacing:-13.737000px;}
.ws5_c01172{word-spacing:0.000000px;}
.ws3_c01172{word-spacing:0.114000px;}
.ws2_c01172{word-spacing:3.534000px;}
._24_c01172{margin-left:-47.094000px;}
._1e_c01172{margin-left:-27.816000px;}
._19_c01172{margin-left:-23.427000px;}
._20_c01172{margin-left:-11.571000px;}
._14_c01172{margin-left:-8.922000px;}
._1b_c01172{margin-left:-7.245000px;}
._22_c01172{margin-left:-6.111000px;}
._23_c01172{margin-left:-5.028000px;}
._1d_c01172{margin-left:-3.006000px;}
._1c_c01172{margin-left:-1.797000px;}
._1a_c01172{width:1.218000px;}
._9_c01172{width:2.304000px;}
._3_c01172{width:3.441000px;}
._2_c01172{width:4.743000px;}
._4_c01172{width:5.859000px;}
._5_c01172{width:6.882000px;}
._1_c01172{width:7.998000px;}
._6_c01172{width:9.486000px;}
._11_c01172{width:10.509000px;}
._0_c01172{width:11.625000px;}
._b_c01172{width:12.765000px;}
._8_c01172{width:15.153000px;}
._15_c01172{width:16.554000px;}
._a_c01172{width:17.646000px;}
._f_c01172{width:19.329000px;}
._12_c01172{width:20.601000px;}
._e_c01172{width:22.233000px;}
._10_c01172{width:23.484000px;}
._c_c01172{width:25.188000px;}
._17_c01172{width:26.646000px;}
._18_c01172{width:28.284000px;}
._13_c01172{width:29.895000px;}
._16_c01172{width:31.047000px;}
._28_c01172{width:33.060000px;}
._2c_c01172{width:38.499000px;}
._2b_c01172{width:44.277000px;}
._2f_c01172{width:45.549000px;}
._29_c01172{width:50.250000px;}
._7_c01172{width:56.172000px;}
._2a_c01172{width:58.095000px;}
._26_c01172{width:59.175000px;}
._31_c01172{width:67.779000px;}
._27_c01172{width:71.679000px;}
._2e_c01172{width:123.417000px;}
._2d_c01172{width:146.922000px;}
._1f_c01172{width:149.754000px;}
._21_c01172{width:172.653000px;}
._30_c01172{width:224.889000px;}
._25_c01172{width:229.602000px;}
._d_c01172{width:321.162000px;}
._32_c01172{width:410.550000px;}
.fc2_c01172{color:transparent;}
.fc1_c01172{color:rgb(128,128,128);}
.fc0_c01172{color:rgb(0,0,0);}
.fs7_c01172{font-size:48.000000px;}
.fs2_c01172{font-size:57.000000px;}
.fs4_c01172{font-size:60.000000px;}
.fs3_c01172{font-size:78.000000px;}
.fs6_c01172{font-size:90.000000px;}
.fs0_c01172{font-size:93.000000px;}
.fs5_c01172{font-size:105.000000px;}
.fs1_c01172{font-size:108.000000px;}
.y0_c01172{bottom:0.000000px;}
.y26_c01172{bottom:3.105000px;}
.y25_c01172{bottom:7.228369px;}
.y24_c01172{bottom:60.420000px;}
.y23_c01172{bottom:85.320000px;}
.y22_c01172{bottom:110.070000px;}
.y21_c01172{bottom:134.670000px;}
.y20_c01172{bottom:158.970000px;}
.y1f_c01172{bottom:183.570000px;}
.y1e_c01172{bottom:207.870000px;}
.y1d_c01172{bottom:231.870000px;}
.y1c_c01172{bottom:256.170000px;}
.y1b_c01172{bottom:280.470000px;}
.y1a_c01172{bottom:304.770000px;}
.y19_c01172{bottom:328.770000px;}
.y18_c01172{bottom:352.920000px;}
.y17_c01172{bottom:376.620000px;}
.y16_c01172{bottom:400.620000px;}
.y15_c01172{bottom:424.920000px;}
.y14_c01172{bottom:448.920000px;}
.y13_c01172{bottom:473.220000px;}
.y12_c01172{bottom:497.370000px;}
.y11_c01172{bottom:521.370000px;}
.y10_c01172{bottom:545.370000px;}
.yf_c01172{bottom:568.320000px;}
.ye_c01172{bottom:592.020000px;}
.yd_c01172{bottom:615.870000px;}
.yc_c01172{bottom:639.870000px;}
.yb_c01172{bottom:665.220000px;}
.ya_c01172{bottom:687.720000px;}
.y9_c01172{bottom:711.720000px;}
.y8_c01172{bottom:736.770000px;}
.y7_c01172{bottom:760.770000px;}
.y6_c01172{bottom:784.020000px;}
.y5_c01172{bottom:808.920000px;}
.y4_c01172{bottom:832.170000px;}
.y3_c01172{bottom:856.170000px;}
.y2_c01172{bottom:880.170000px;}
.y1_c01172{bottom:917.370000px;}
.h7_c01172{height:13.200073px;}
.h8_c01172{height:43.804688px;}
.h3_c01172{height:57.445312px;}
.h4_c01172{height:66.713379px;}
.h5_c01172{height:98.756836px;}
.h6_c01172{height:103.000488px;}
.h2_c01172{height:113.184000px;}
.h1_c01172{height:986.250000px;}
.h0_c01172{height:986.550000px;}
.w1_c01172{width:104.875500px;}
.w0_c01172{width:672.000000px;}
.x0_c01172{left:0.000000px;}
.xe_c01172{left:31.800000px;}
.x5_c01172{left:36.150000px;}
.x2_c01172{left:41.850000px;}
.x3_c01172{left:42.900000px;}
.x4_c01172{left:43.950000px;}
.x6_c01172{left:46.200000px;}
.x7_c01172{left:48.000000px;}
.x8_c01172{left:49.050000px;}
.x9_c01172{left:51.600000px;}
.xa_c01172{left:52.650000px;}
.xb_c01172{left:54.000000px;}
.xf_c01172{left:56.400000px;}
.xc_c01172{left:58.050000px;}
.x10_c01172{left:59.700000px;}
.x11_c01172{left:60.750000px;}
.x1_c01172{left:66.150000px;}
.xd_c01172{left:79.950000px;}
.x13_c01172{left:287.814240px;}
.x12_c01172{left:377.400000px;}
@media print{
.v0_c01172{vertical-align:0.000000pt;}
.ls5_c01172{letter-spacing:0.000000pt;}
.ls4_c01172{letter-spacing:0.890667pt;}
.ls7_c01172{letter-spacing:2.666667pt;}
.ls2_c01172{letter-spacing:7.248000pt;}
.ls6_c01172{letter-spacing:40.000000pt;}
.ls0_c01172{letter-spacing:193.957333pt;}
.ls3_c01172{letter-spacing:199.290667pt;}
.ls1_c01172{letter-spacing:281.424000pt;}
.ws0_c01172{word-spacing:-41.760000pt;}
.ws4_c01172{word-spacing:-26.000000pt;}
.ws1_c01172{word-spacing:-12.210667pt;}
.ws5_c01172{word-spacing:0.000000pt;}
.ws3_c01172{word-spacing:0.101333pt;}
.ws2_c01172{word-spacing:3.141333pt;}
._24_c01172{margin-left:-41.861333pt;}
._1e_c01172{margin-left:-24.725333pt;}
._19_c01172{margin-left:-20.824000pt;}
._20_c01172{margin-left:-10.285333pt;}
._14_c01172{margin-left:-7.930667pt;}
._1b_c01172{margin-left:-6.440000pt;}
._22_c01172{margin-left:-5.432000pt;}
._23_c01172{margin-left:-4.469333pt;}
._1d_c01172{margin-left:-2.672000pt;}
._1c_c01172{margin-left:-1.597333pt;}
._1a_c01172{width:1.082667pt;}
._9_c01172{width:2.048000pt;}
._3_c01172{width:3.058667pt;}
._2_c01172{width:4.216000pt;}
._4_c01172{width:5.208000pt;}
._5_c01172{width:6.117333pt;}
._1_c01172{width:7.109333pt;}
._6_c01172{width:8.432000pt;}
._11_c01172{width:9.341333pt;}
._0_c01172{width:10.333333pt;}
._b_c01172{width:11.346667pt;}
._8_c01172{width:13.469333pt;}
._15_c01172{width:14.714667pt;}
._a_c01172{width:15.685333pt;}
._f_c01172{width:17.181333pt;}
._12_c01172{width:18.312000pt;}
._e_c01172{width:19.762667pt;}
._10_c01172{width:20.874667pt;}
._c_c01172{width:22.389333pt;}
._17_c01172{width:23.685333pt;}
._18_c01172{width:25.141333pt;}
._13_c01172{width:26.573333pt;}
._16_c01172{width:27.597333pt;}
._28_c01172{width:29.386667pt;}
._2c_c01172{width:34.221333pt;}
._2b_c01172{width:39.357333pt;}
._2f_c01172{width:40.488000pt;}
._29_c01172{width:44.666667pt;}
._7_c01172{width:49.930667pt;}
._2a_c01172{width:51.640000pt;}
._26_c01172{width:52.600000pt;}
._31_c01172{width:60.248000pt;}
._27_c01172{width:63.714667pt;}
._2e_c01172{width:109.704000pt;}
._2d_c01172{width:130.597333pt;}
._1f_c01172{width:133.114667pt;}
._21_c01172{width:153.469333pt;}
._30_c01172{width:199.901333pt;}
._25_c01172{width:204.090667pt;}
._d_c01172{width:285.477333pt;}
._32_c01172{width:364.933333pt;}
.fs7_c01172{font-size:42.666667pt;}
.fs2_c01172{font-size:50.666667pt;}
.fs4_c01172{font-size:53.333333pt;}
.fs3_c01172{font-size:69.333333pt;}
.fs6_c01172{font-size:80.000000pt;}
.fs0_c01172{font-size:82.666667pt;}
.fs5_c01172{font-size:93.333333pt;}
.fs1_c01172{font-size:96.000000pt;}
.y0_c01172{bottom:0.000000pt;}
.y26_c01172{bottom:2.760000pt;}
.y25_c01172{bottom:6.425217pt;}
.y24_c01172{bottom:53.706667pt;}
.y23_c01172{bottom:75.840000pt;}
.y22_c01172{bottom:97.840000pt;}
.y21_c01172{bottom:119.706667pt;}
.y20_c01172{bottom:141.306667pt;}
.y1f_c01172{bottom:163.173333pt;}
.y1e_c01172{bottom:184.773333pt;}
.y1d_c01172{bottom:206.106667pt;}
.y1c_c01172{bottom:227.706667pt;}
.y1b_c01172{bottom:249.306667pt;}
.y1a_c01172{bottom:270.906667pt;}
.y19_c01172{bottom:292.240000pt;}
.y18_c01172{bottom:313.706667pt;}
.y17_c01172{bottom:334.773333pt;}
.y16_c01172{bottom:356.106667pt;}
.y15_c01172{bottom:377.706667pt;}
.y14_c01172{bottom:399.040000pt;}
.y13_c01172{bottom:420.640000pt;}
.y12_c01172{bottom:442.106667pt;}
.y11_c01172{bottom:463.440000pt;}
.y10_c01172{bottom:484.773333pt;}
.yf_c01172{bottom:505.173333pt;}
.ye_c01172{bottom:526.240000pt;}
.yd_c01172{bottom:547.440000pt;}
.yc_c01172{bottom:568.773333pt;}
.yb_c01172{bottom:591.306667pt;}
.ya_c01172{bottom:611.306667pt;}
.y9_c01172{bottom:632.640000pt;}
.y8_c01172{bottom:654.906667pt;}
.y7_c01172{bottom:676.240000pt;}
.y6_c01172{bottom:696.906667pt;}
.y5_c01172{bottom:719.040000pt;}
.y4_c01172{bottom:739.706667pt;}
.y3_c01172{bottom:761.040000pt;}
.y2_c01172{bottom:782.373333pt;}
.y1_c01172{bottom:815.440000pt;}
.h7_c01172{height:11.733399pt;}
.h8_c01172{height:38.937500pt;}
.h3_c01172{height:51.062500pt;}
.h4_c01172{height:59.300781pt;}
.h5_c01172{height:87.783854pt;}
.h6_c01172{height:91.555990pt;}
.h2_c01172{height:100.608000pt;}
.h1_c01172{height:876.666667pt;}
.h0_c01172{height:876.933333pt;}
.w1_c01172{width:93.222667pt;}
.w0_c01172{width:597.333333pt;}
.x0_c01172{left:0.000000pt;}
.xe_c01172{left:28.266667pt;}
.x5_c01172{left:32.133333pt;}
.x2_c01172{left:37.200000pt;}
.x3_c01172{left:38.133333pt;}
.x4_c01172{left:39.066667pt;}
.x6_c01172{left:41.066667pt;}
.x7_c01172{left:42.666667pt;}
.x8_c01172{left:43.600000pt;}
.x9_c01172{left:45.866667pt;}
.xa_c01172{left:46.800000pt;}
.xb_c01172{left:48.000000pt;}
.xf_c01172{left:50.133333pt;}
.xc_c01172{left:51.600000pt;}
.x10_c01172{left:53.066667pt;}
.x11_c01172{left:54.000000pt;}
.x1_c01172{left:58.800000pt;}
.xd_c01172{left:71.066667pt;}
.x13_c01172{left:255.834880pt;}
.x12_c01172{left:335.466667pt;}
}





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

.ir_c01173:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01173{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01173;src:url('chunks/assets/font_1f1e37ed9fb33a22d2f386fc.woff2')format("woff");}.ff1_c01173{font-family:ff1_c01173;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01173;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff2_c01173{font-family:ff2_c01173;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01173;src:url('chunks/assets/font_71ccd7c208dbb3c9b3a956bd.woff2')format("woff");}.ff3_c01173{font-family:ff3_c01173;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01173;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff4_c01173{font-family:ff4_c01173;line-height:1.219238;font-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_c01173{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m0_c01173{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01173{vertical-align:0.000000px;}
.ls1_c01173{letter-spacing:-12.000000px;}
.ls0_c01173{letter-spacing:0.000000px;}
.sc__c01173{text-shadow:none;}
.sc0_c01173{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01173{-webkit-text-stroke:0px transparent;}
.sc0_c01173{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c01173{word-spacing:-27.000000px;}
.ws5_c01173{word-spacing:-14.250000px;}
.ws2_c01173{word-spacing:-3.135000px;}
.ws0_c01173{word-spacing:-2.337000px;}
.ws4_c01173{word-spacing:-0.237000px;}
.ws7_c01173{word-spacing:0.000000px;}
.ws3_c01173{word-spacing:17.829000px;}
.ws1_c01173{word-spacing:21.747000px;}
._17_c01173{margin-left:-19.038000px;}
._24_c01173{margin-left:-14.421000px;}
._20_c01173{margin-left:-8.094000px;}
._19_c01173{margin-left:-5.187000px;}
._e_c01173{margin-left:-3.306000px;}
._12_c01173{margin-left:-1.938000px;}
._2_c01173{width:2.109000px;}
._8_c01173{width:3.192000px;}
._5_c01173{width:4.845000px;}
._0_c01173{width:6.156000px;}
._b_c01173{width:7.353000px;}
._4_c01173{width:8.607000px;}
._9_c01173{width:9.861000px;}
._1_c01173{width:10.887000px;}
._7_c01173{width:12.483000px;}
._c_c01173{width:15.447000px;}
._a_c01173{width:16.758000px;}
._3_c01173{width:18.639000px;}
._d_c01173{width:20.121000px;}
._15_c01173{width:21.603000px;}
._f_c01173{width:23.085000px;}
._11_c01173{width:24.681000px;}
._6_c01173{width:25.707000px;}
._14_c01173{width:27.417000px;}
._23_c01173{width:28.842000px;}
._1b_c01173{width:29.925000px;}
._30_c01173{width:31.635000px;}
._13_c01173{width:32.718000px;}
._10_c01173{width:35.340000px;}
._1e_c01173{width:36.540000px;}
._2a_c01173{width:37.734000px;}
._1c_c01173{width:42.807000px;}
._2e_c01173{width:45.087000px;}
._1a_c01173{width:65.835000px;}
._2f_c01173{width:96.663000px;}
._2d_c01173{width:102.285000px;}
._27_c01173{width:103.455000px;}
._1f_c01173{width:151.563000px;}
._25_c01173{width:174.477000px;}
._2c_c01173{width:197.448000px;}
._2b_c01173{width:208.266000px;}
._26_c01173{width:216.492000px;}
._18_c01173{width:219.165000px;}
._29_c01173{width:270.924000px;}
._1d_c01173{width:317.013000px;}
._21_c01173{width:327.123000px;}
._16_c01173{width:417.354000px;}
._28_c01173{width:498.963000px;}
._22_c01173{width:549.807000px;}
.fc2_c01173{color:transparent;}
.fc1_c01173{color:rgb(128,128,128);}
.fc0_c01173{color:rgb(0,0,0);}
.fs3_c01173{font-size:48.000000px;}
.fs0_c01173{font-size:57.000000px;}
.fs1_c01173{font-size:72.000000px;}
.fs2_c01173{font-size:108.000000px;}
.y0_c01173{bottom:0.000000px;}
.y23_c01173{bottom:3.105000px;}
.y22_c01173{bottom:7.228371px;}
.y21_c01173{bottom:60.165000px;}
.y20_c01173{bottom:81.765000px;}
.y1f_c01173{bottom:106.665000px;}
.y1e_c01173{bottom:130.665000px;}
.y1d_c01173{bottom:154.965000px;}
.y1c_c01173{bottom:180.315000px;}
.y1b_c01173{bottom:204.615000px;}
.y1a_c01173{bottom:227.865000px;}
.y19_c01173{bottom:252.465000px;}
.y18_c01173{bottom:275.865000px;}
.y17_c01173{bottom:300.015000px;}
.y16_c01173{bottom:325.365000px;}
.y15_c01173{bottom:349.965000px;}
.y14_c01173{bottom:373.665000px;}
.y13_c01173{bottom:396.615000px;}
.y12_c01173{bottom:422.565000px;}
.y11_c01173{bottom:444.615000px;}
.y10_c01173{bottom:505.665000px;}
.yf_c01173{bottom:541.365000px;}
.ye_c01173{bottom:565.065000px;}
.yd_c01173{bottom:589.965000px;}
.yc_c01173{bottom:613.215000px;}
.yb_c01173{bottom:637.665000px;}
.ya_c01173{bottom:661.515000px;}
.y9_c01173{bottom:685.815000px;}
.y8_c01173{bottom:709.515000px;}
.y7_c01173{bottom:733.065000px;}
.y6_c01173{bottom:757.815000px;}
.y5_c01173{bottom:781.365000px;}
.y4_c01173{bottom:805.365000px;}
.y3_c01173{bottom:829.965000px;}
.y2_c01173{bottom:853.665000px;}
.y1_c01173{bottom:878.565000px;}
.h6_c01173{height:13.200074px;}
.h7_c01173{height:43.804688px;}
.h4_c01173{height:55.914551px;}
.h2_c01173{height:57.445312px;}
.h3_c01173{height:72.562500px;}
.h5_c01173{height:108.843750px;}
.h1_c01173{height:986.250000px;}
.h0_c01173{height:986.325000px;}
.w2_c01173{width:104.875500px;}
.w0_c01173{width:667.425000px;}
.w1_c01173{width:667.500000px;}
.x0_c01173{left:0.000000px;}
.xf_c01173{left:18.300000px;}
.xb_c01173{left:19.350000px;}
.x7_c01173{left:21.900000px;}
.xa_c01173{left:23.250000px;}
.x6_c01173{left:25.350000px;}
.xc_c01173{left:32.400000px;}
.x8_c01173{left:75.900000px;}
.xe_c01173{left:106.650000px;}
.x10_c01173{left:110.100000px;}
.xd_c01173{left:111.150000px;}
.x9_c01173{left:113.700000px;}
.x4_c01173{left:115.050000px;}
.x2_c01173{left:116.100000px;}
.x1_c01173{left:117.150000px;}
.x3_c01173{left:141.750000px;}
.x5_c01173{left:158.400000px;}
.x12_c01173{left:285.526749px;}
.x11_c01173{left:562.050000px;}
@media print{
.v0_c01173{vertical-align:0.000000pt;}
.ls1_c01173{letter-spacing:-10.666667pt;}
.ls0_c01173{letter-spacing:0.000000pt;}
.ws6_c01173{word-spacing:-24.000000pt;}
.ws5_c01173{word-spacing:-12.666667pt;}
.ws2_c01173{word-spacing:-2.786667pt;}
.ws0_c01173{word-spacing:-2.077333pt;}
.ws4_c01173{word-spacing:-0.210667pt;}
.ws7_c01173{word-spacing:0.000000pt;}
.ws3_c01173{word-spacing:15.848000pt;}
.ws1_c01173{word-spacing:19.330667pt;}
._17_c01173{margin-left:-16.922667pt;}
._24_c01173{margin-left:-12.818667pt;}
._20_c01173{margin-left:-7.194667pt;}
._19_c01173{margin-left:-4.610667pt;}
._e_c01173{margin-left:-2.938667pt;}
._12_c01173{margin-left:-1.722667pt;}
._2_c01173{width:1.874667pt;}
._8_c01173{width:2.837333pt;}
._5_c01173{width:4.306667pt;}
._0_c01173{width:5.472000pt;}
._b_c01173{width:6.536000pt;}
._4_c01173{width:7.650667pt;}
._9_c01173{width:8.765333pt;}
._1_c01173{width:9.677333pt;}
._7_c01173{width:11.096000pt;}
._c_c01173{width:13.730667pt;}
._a_c01173{width:14.896000pt;}
._3_c01173{width:16.568000pt;}
._d_c01173{width:17.885333pt;}
._15_c01173{width:19.202667pt;}
._f_c01173{width:20.520000pt;}
._11_c01173{width:21.938667pt;}
._6_c01173{width:22.850667pt;}
._14_c01173{width:24.370667pt;}
._23_c01173{width:25.637333pt;}
._1b_c01173{width:26.600000pt;}
._30_c01173{width:28.120000pt;}
._13_c01173{width:29.082667pt;}
._10_c01173{width:31.413333pt;}
._1e_c01173{width:32.480000pt;}
._2a_c01173{width:33.541333pt;}
._1c_c01173{width:38.050667pt;}
._2e_c01173{width:40.077333pt;}
._1a_c01173{width:58.520000pt;}
._2f_c01173{width:85.922667pt;}
._2d_c01173{width:90.920000pt;}
._27_c01173{width:91.960000pt;}
._1f_c01173{width:134.722667pt;}
._25_c01173{width:155.090667pt;}
._2c_c01173{width:175.509333pt;}
._2b_c01173{width:185.125333pt;}
._26_c01173{width:192.437333pt;}
._18_c01173{width:194.813333pt;}
._29_c01173{width:240.821333pt;}
._1d_c01173{width:281.789333pt;}
._21_c01173{width:290.776000pt;}
._16_c01173{width:370.981333pt;}
._28_c01173{width:443.522667pt;}
._22_c01173{width:488.717333pt;}
.fs3_c01173{font-size:42.666667pt;}
.fs0_c01173{font-size:50.666667pt;}
.fs1_c01173{font-size:64.000000pt;}
.fs2_c01173{font-size:96.000000pt;}
.y0_c01173{bottom:0.000000pt;}
.y23_c01173{bottom:2.760000pt;}
.y22_c01173{bottom:6.425219pt;}
.y21_c01173{bottom:53.480000pt;}
.y20_c01173{bottom:72.680000pt;}
.y1f_c01173{bottom:94.813333pt;}
.y1e_c01173{bottom:116.146667pt;}
.y1d_c01173{bottom:137.746667pt;}
.y1c_c01173{bottom:160.280000pt;}
.y1b_c01173{bottom:181.880000pt;}
.y1a_c01173{bottom:202.546667pt;}
.y19_c01173{bottom:224.413333pt;}
.y18_c01173{bottom:245.213333pt;}
.y17_c01173{bottom:266.680000pt;}
.y16_c01173{bottom:289.213333pt;}
.y15_c01173{bottom:311.080000pt;}
.y14_c01173{bottom:332.146667pt;}
.y13_c01173{bottom:352.546667pt;}
.y12_c01173{bottom:375.613333pt;}
.y11_c01173{bottom:395.213333pt;}
.y10_c01173{bottom:449.480000pt;}
.yf_c01173{bottom:481.213333pt;}
.ye_c01173{bottom:502.280000pt;}
.yd_c01173{bottom:524.413333pt;}
.yc_c01173{bottom:545.080000pt;}
.yb_c01173{bottom:566.813333pt;}
.ya_c01173{bottom:588.013333pt;}
.y9_c01173{bottom:609.613333pt;}
.y8_c01173{bottom:630.680000pt;}
.y7_c01173{bottom:651.613333pt;}
.y6_c01173{bottom:673.613333pt;}
.y5_c01173{bottom:694.546667pt;}
.y4_c01173{bottom:715.880000pt;}
.y3_c01173{bottom:737.746667pt;}
.y2_c01173{bottom:758.813333pt;}
.y1_c01173{bottom:780.946667pt;}
.h6_c01173{height:11.733399pt;}
.h7_c01173{height:38.937500pt;}
.h4_c01173{height:49.701823pt;}
.h2_c01173{height:51.062500pt;}
.h3_c01173{height:64.500000pt;}
.h5_c01173{height:96.750000pt;}
.h1_c01173{height:876.666667pt;}
.h0_c01173{height:876.733333pt;}
.w2_c01173{width:93.222667pt;}
.w0_c01173{width:593.266667pt;}
.w1_c01173{width:593.333333pt;}
.x0_c01173{left:0.000000pt;}
.xf_c01173{left:16.266667pt;}
.xb_c01173{left:17.200000pt;}
.x7_c01173{left:19.466667pt;}
.xa_c01173{left:20.666667pt;}
.x6_c01173{left:22.533333pt;}
.xc_c01173{left:28.800000pt;}
.x8_c01173{left:67.466667pt;}
.xe_c01173{left:94.800000pt;}
.x10_c01173{left:97.866667pt;}
.xd_c01173{left:98.800000pt;}
.x9_c01173{left:101.066667pt;}
.x4_c01173{left:102.266667pt;}
.x2_c01173{left:103.200000pt;}
.x1_c01173{left:104.133333pt;}
.x3_c01173{left:126.000000pt;}
.x5_c01173{left:140.800000pt;}
.x12_c01173{left:253.801554pt;}
.x11_c01173{left:499.600000pt;}
}





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

.ir_c01174:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01174{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01174;src:url('chunks/assets/font_9cde0f093584b486e3e9e03f.woff2')format("woff");}.ff1_c01174{font-family:ff1_c01174;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01174;src:url('chunks/assets/font_fd59068de47cd5ff67d44de9.woff2')format("woff");}.ff2_c01174{font-family:ff2_c01174;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01174;src:url('chunks/assets/font_80aec8a5b1975a5f55b49ee5.woff2')format("woff");}.ff3_c01174{font-family:ff3_c01174;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01174;src:url('chunks/assets/font_a937ed8c88fa63dc0437a328.woff2')format("woff");}.ff4_c01174{font-family:ff4_c01174;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01174;src:url('chunks/assets/font_c1ced8d4a62b6f0284e065b3.woff2')format("woff");}.ff5_c01174{font-family:ff5_c01174;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01174;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c01174{font-family:ff6_c01174;line-height:1.219238;font-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_c01174{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m0_c01174{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01174{vertical-align:0.000000px;}
.v1_c01174{vertical-align:2.400000px;}
.ls4_c01174{letter-spacing:-3.000000px;}
.ls6_c01174{letter-spacing:0.000000px;}
.ls7_c01174{letter-spacing:3.000000px;}
.ls1_c01174{letter-spacing:17.400000px;}
.ls0_c01174{letter-spacing:17.856000px;}
.ls3_c01174{letter-spacing:19.092000px;}
.ls5_c01174{letter-spacing:21.000000px;}
.ls2_c01174{letter-spacing:153.480000px;}
.sc__c01174{text-shadow:none;}
.sc0_c01174{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01174{-webkit-text-stroke:0px transparent;}
.sc0_c01174{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01174{word-spacing:-44.859000px;}
.ws1_c01174{word-spacing:-18.000000px;}
.ws2_c01174{word-spacing:-14.250000px;}
.ws3_c01174{word-spacing:-1.197000px;}
.ws4_c01174{word-spacing:0.000000px;}
._1d_c01174{margin-left:-7.200000px;}
._3_c01174{margin-left:-6.096000px;}
._2_c01174{margin-left:-4.059000px;}
._1_c01174{margin-left:-2.970000px;}
._0_c01174{margin-left:-1.485000px;}
._1a_c01174{width:1.314000px;}
._19_c01174{width:2.790000px;}
._e_c01174{width:4.419000px;}
._17_c01174{width:5.544000px;}
._c_c01174{width:7.056000px;}
._f_c01174{width:8.721000px;}
._a_c01174{width:10.089000px;}
._4_c01174{width:11.442000px;}
._8_c01174{width:13.110000px;}
._9_c01174{width:16.017000px;}
._b_c01174{width:17.841000px;}
._14_c01174{width:19.779000px;}
._10_c01174{width:21.567000px;}
._7_c01174{width:23.598000px;}
._16_c01174{width:25.065000px;}
._15_c01174{width:26.892000px;}
._1b_c01174{width:28.338000px;}
._d_c01174{width:30.108000px;}
._12_c01174{width:32.889000px;}
._1e_c01174{width:36.771000px;}
._22_c01174{width:39.534000px;}
._23_c01174{width:42.156000px;}
._20_c01174{width:43.500000px;}
._5_c01174{width:53.064000px;}
._6_c01174{width:79.794000px;}
._21_c01174{width:88.863000px;}
._1f_c01174{width:154.929000px;}
._11_c01174{width:173.070000px;}
._18_c01174{width:176.610000px;}
._13_c01174{width:205.029000px;}
._1c_c01174{width:213.255000px;}
.fc2_c01174{color:transparent;}
.fc1_c01174{color:rgb(128,128,128);}
.fc0_c01174{color:rgb(0,0,0);}
.fs8_c01174{font-size:48.000000px;}
.fs3_c01174{font-size:57.000000px;}
.fs6_c01174{font-size:60.000000px;}
.fs0_c01174{font-size:69.000000px;}
.fs4_c01174{font-size:72.000000px;}
.fs5_c01174{font-size:75.000000px;}
.fs2_c01174{font-size:99.000000px;}
.fs7_c01174{font-size:108.000000px;}
.fs1_c01174{font-size:132.000000px;}
.y0_c01174{bottom:0.000000px;}
.y26_c01174{bottom:3.105000px;}
.y25_c01174{bottom:7.228357px;}
.y24_c01174{bottom:50.580000px;}
.y23_c01174{bottom:75.330000px;}
.y22_c01174{bottom:100.980000px;}
.y21_c01174{bottom:125.280000px;}
.y20_c01174{bottom:150.180000px;}
.y1f_c01174{bottom:174.780000px;}
.y1e_c01174{bottom:198.780000px;}
.y1d_c01174{bottom:223.080000px;}
.y1c_c01174{bottom:247.380000px;}
.y1b_c01174{bottom:271.680000px;}
.y1a_c01174{bottom:295.680000px;}
.y19_c01174{bottom:319.680000px;}
.y18_c01174{bottom:343.680000px;}
.y17_c01174{bottom:367.830000px;}
.y16_c01174{bottom:391.530000px;}
.y15_c01174{bottom:416.130000px;}
.y14_c01174{bottom:439.830000px;}
.y13_c01174{bottom:464.130000px;}
.y12_c01174{bottom:488.130000px;}
.y11_c01174{bottom:511.980000px;}
.y10_c01174{bottom:535.380000px;}
.yf_c01174{bottom:558.630000px;}
.ye_c01174{bottom:582.480000px;}
.yd_c01174{bottom:606.480000px;}
.yc_c01174{bottom:630.780000px;}
.yb_c01174{bottom:653.130000px;}
.ya_c01174{bottom:678.330000px;}
.y9_c01174{bottom:723.930000px;}
.y8_c01174{bottom:748.980000px;}
.y7_c01174{bottom:772.980000px;}
.y6_c01174{bottom:797.280000px;}
.y5_c01174{bottom:821.130000px;}
.y4_c01174{bottom:845.130000px;}
.y3_c01174{bottom:869.130000px;}
.y2_c01174{bottom:904.830000px;}
.y1_c01174{bottom:928.830000px;}
.h8_c01174{height:13.200074px;}
.h9_c01174{height:43.804688px;}
.h3_c01174{height:57.445312px;}
.h6_c01174{height:59.845312px;}
.h1_c01174{height:69.539062px;}
.h4_c01174{height:72.562500px;}
.h5_c01174{height:73.571777px;}
.h7_c01174{height:108.843750px;}
.h2_c01174{height:167.126953px;}
.h0_c01174{height:968.250000px;}
.w2_c01174{width:104.875500px;}
.w1_c01174{width:659.250000px;}
.w0_c01174{width:659.325000px;}
.x0_c01174{left:0.000000px;}
.x3_c01174{left:50.550000px;}
.x4_c01174{left:51.600000px;}
.x5_c01174{left:52.650000px;}
.x6_c01174{left:54.750000px;}
.xa_c01174{left:56.250000px;}
.xb_c01174{left:57.750000px;}
.xc_c01174{left:59.400000px;}
.x8_c01174{left:61.050000px;}
.xd_c01174{left:62.400000px;}
.x2_c01174{left:64.800000px;}
.x9_c01174{left:108.900000px;}
.x7_c01174{left:145.200000px;}
.x10_c01174{left:281.476730px;}
.xe_c01174{left:390.450000px;}
.xf_c01174{left:505.950000px;}
.x1_c01174{left:544.950000px;}
@media print{
.v0_c01174{vertical-align:0.000000pt;}
.v1_c01174{vertical-align:2.133333pt;}
.ls4_c01174{letter-spacing:-2.666667pt;}
.ls6_c01174{letter-spacing:0.000000pt;}
.ls7_c01174{letter-spacing:2.666667pt;}
.ls1_c01174{letter-spacing:15.466667pt;}
.ls0_c01174{letter-spacing:15.872000pt;}
.ls3_c01174{letter-spacing:16.970667pt;}
.ls5_c01174{letter-spacing:18.666667pt;}
.ls2_c01174{letter-spacing:136.426667pt;}
.ws0_c01174{word-spacing:-39.874667pt;}
.ws1_c01174{word-spacing:-16.000000pt;}
.ws2_c01174{word-spacing:-12.666667pt;}
.ws3_c01174{word-spacing:-1.064000pt;}
.ws4_c01174{word-spacing:0.000000pt;}
._1d_c01174{margin-left:-6.400000pt;}
._3_c01174{margin-left:-5.418667pt;}
._2_c01174{margin-left:-3.608000pt;}
._1_c01174{margin-left:-2.640000pt;}
._0_c01174{margin-left:-1.320000pt;}
._1a_c01174{width:1.168000pt;}
._19_c01174{width:2.480000pt;}
._e_c01174{width:3.928000pt;}
._17_c01174{width:4.928000pt;}
._c_c01174{width:6.272000pt;}
._f_c01174{width:7.752000pt;}
._a_c01174{width:8.968000pt;}
._4_c01174{width:10.170667pt;}
._8_c01174{width:11.653333pt;}
._9_c01174{width:14.237333pt;}
._b_c01174{width:15.858667pt;}
._14_c01174{width:17.581333pt;}
._10_c01174{width:19.170667pt;}
._7_c01174{width:20.976000pt;}
._16_c01174{width:22.280000pt;}
._15_c01174{width:23.904000pt;}
._1b_c01174{width:25.189333pt;}
._d_c01174{width:26.762667pt;}
._12_c01174{width:29.234667pt;}
._1e_c01174{width:32.685333pt;}
._22_c01174{width:35.141333pt;}
._23_c01174{width:37.472000pt;}
._20_c01174{width:38.666667pt;}
._5_c01174{width:47.168000pt;}
._6_c01174{width:70.928000pt;}
._21_c01174{width:78.989333pt;}
._1f_c01174{width:137.714667pt;}
._11_c01174{width:153.840000pt;}
._18_c01174{width:156.986667pt;}
._13_c01174{width:182.248000pt;}
._1c_c01174{width:189.560000pt;}
.fs8_c01174{font-size:42.666667pt;}
.fs3_c01174{font-size:50.666667pt;}
.fs6_c01174{font-size:53.333333pt;}
.fs0_c01174{font-size:61.333333pt;}
.fs4_c01174{font-size:64.000000pt;}
.fs5_c01174{font-size:66.666667pt;}
.fs2_c01174{font-size:88.000000pt;}
.fs7_c01174{font-size:96.000000pt;}
.fs1_c01174{font-size:117.333333pt;}
.y0_c01174{bottom:0.000000pt;}
.y26_c01174{bottom:2.760000pt;}
.y25_c01174{bottom:6.425206pt;}
.y24_c01174{bottom:44.960000pt;}
.y23_c01174{bottom:66.960000pt;}
.y22_c01174{bottom:89.760000pt;}
.y21_c01174{bottom:111.360000pt;}
.y20_c01174{bottom:133.493333pt;}
.y1f_c01174{bottom:155.360000pt;}
.y1e_c01174{bottom:176.693333pt;}
.y1d_c01174{bottom:198.293333pt;}
.y1c_c01174{bottom:219.893333pt;}
.y1b_c01174{bottom:241.493333pt;}
.y1a_c01174{bottom:262.826667pt;}
.y19_c01174{bottom:284.160000pt;}
.y18_c01174{bottom:305.493333pt;}
.y17_c01174{bottom:326.960000pt;}
.y16_c01174{bottom:348.026667pt;}
.y15_c01174{bottom:369.893333pt;}
.y14_c01174{bottom:390.960000pt;}
.y13_c01174{bottom:412.560000pt;}
.y12_c01174{bottom:433.893333pt;}
.y11_c01174{bottom:455.093333pt;}
.y10_c01174{bottom:475.893333pt;}
.yf_c01174{bottom:496.560000pt;}
.ye_c01174{bottom:517.760000pt;}
.yd_c01174{bottom:539.093333pt;}
.yc_c01174{bottom:560.693333pt;}
.yb_c01174{bottom:580.560000pt;}
.ya_c01174{bottom:602.960000pt;}
.y9_c01174{bottom:643.493333pt;}
.y8_c01174{bottom:665.760000pt;}
.y7_c01174{bottom:687.093333pt;}
.y6_c01174{bottom:708.693333pt;}
.y5_c01174{bottom:729.893333pt;}
.y4_c01174{bottom:751.226667pt;}
.y3_c01174{bottom:772.560000pt;}
.y2_c01174{bottom:804.293333pt;}
.y1_c01174{bottom:825.626667pt;}
.h8_c01174{height:11.733399pt;}
.h9_c01174{height:38.937500pt;}
.h3_c01174{height:51.062500pt;}
.h6_c01174{height:53.195833pt;}
.h1_c01174{height:61.812500pt;}
.h4_c01174{height:64.500000pt;}
.h5_c01174{height:65.397135pt;}
.h7_c01174{height:96.750000pt;}
.h2_c01174{height:148.557292pt;}
.h0_c01174{height:860.666667pt;}
.w2_c01174{width:93.222667pt;}
.w1_c01174{width:586.000000pt;}
.w0_c01174{width:586.066667pt;}
.x0_c01174{left:0.000000pt;}
.x3_c01174{left:44.933333pt;}
.x4_c01174{left:45.866667pt;}
.x5_c01174{left:46.800000pt;}
.x6_c01174{left:48.666667pt;}
.xa_c01174{left:50.000000pt;}
.xb_c01174{left:51.333333pt;}
.xc_c01174{left:52.800000pt;}
.x8_c01174{left:54.266667pt;}
.xd_c01174{left:55.466667pt;}
.x2_c01174{left:57.600000pt;}
.x9_c01174{left:96.800000pt;}
.x7_c01174{left:129.066667pt;}
.x10_c01174{left:250.201538pt;}
.xe_c01174{left:347.066667pt;}
.xf_c01174{left:449.733333pt;}
.x1_c01174{left:484.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_c01175 {
    display:none;
  }
  .loading-indicator_c01175.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01175 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01175 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01175" -> "#page-container .classname_c01175")
 */
.pf_c01175 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01175 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01175.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01175 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01175 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01175 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01175 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01175 {overflow:visible;}
  }
}
.c_c01175 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01175 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01175:after { /* webkit #35443 */
  content: '';
}
.t_c01175:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01175 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01175 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01175 { /* info for Javascript */
  display:none;
}
.l_c01175 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01175 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01175 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01175:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01175{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01175;src:url('chunks/assets/font_bb9130b54a0189ba1132b4ed.woff2')format("woff");}.ff1_c01175{font-family:ff1_c01175;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01175;src:url('chunks/assets/font_50a1cd19caad126ed8e3d75c.woff2')format("woff");}.ff2_c01175{font-family:ff2_c01175;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01175;src:url('chunks/assets/font_556f4a39ecd58d5d718cb27b.woff2')format("woff");}.ff3_c01175{font-family:ff3_c01175;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01175;src:url('chunks/assets/font_bc9ac9edc9d8b1063407f3e8.woff2')format("woff");}.ff4_c01175{font-family:ff4_c01175;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01175;src:url('chunks/assets/font_1d0df685674c71bb44ba9f68.woff2')format("woff");}.ff5_c01175{font-family:ff5_c01175;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01175;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c01175{font-family:ff6_c01175;line-height:1.219238;font-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_c01175{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m0_c01175{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01175{vertical-align:0.000000px;}
.ls0_c01175{letter-spacing:0.000000px;}
.ls1_c01175{letter-spacing:45.000000px;}
.sc__c01175{text-shadow:none;}
.sc0_c01175{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01175{-webkit-text-stroke:0px transparent;}
.sc0_c01175{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01175{word-spacing:-59.250000px;}
.ws0_c01175{word-spacing:-1.938000px;}
.ws1_c01175{word-spacing:-1.083000px;}
.ws3_c01175{word-spacing:0.000000px;}
._28_c01175{margin-left:-80.997000px;}
._2a_c01175{margin-left:-75.342000px;}
._24_c01175{margin-left:-57.402000px;}
._25_c01175{margin-left:-28.764000px;}
._10_c01175{margin-left:-24.795000px;}
._19_c01175{margin-left:-22.743000px;}
._26_c01175{margin-left:-13.311000px;}
._20_c01175{margin-left:-11.457000px;}
._12_c01175{margin-left:-5.871000px;}
._1f_c01175{margin-left:-4.047000px;}
._1d_c01175{margin-left:-2.235000px;}
._e_c01175{width:1.653000px;}
._5_c01175{width:3.591000px;}
._6_c01175{width:4.617000px;}
._7_c01175{width:6.042000px;}
._1_c01175{width:7.239000px;}
._0_c01175{width:9.177000px;}
._3_c01175{width:10.374000px;}
._9_c01175{width:11.400000px;}
._2_c01175{width:12.483000px;}
._29_c01175{width:14.703000px;}
._4_c01175{width:15.846000px;}
._b_c01175{width:16.872000px;}
._d_c01175{width:17.955000px;}
._18_c01175{width:19.152000px;}
._14_c01175{width:20.190000px;}
._15_c01175{width:21.261000px;}
._8_c01175{width:22.686000px;}
._1b_c01175{width:23.712000px;}
._a_c01175{width:24.909000px;}
._17_c01175{width:26.253000px;}
._21_c01175{width:27.759000px;}
._c_c01175{width:29.241000px;}
._1e_c01175{width:30.723000px;}
._1c_c01175{width:32.205000px;}
._13_c01175{width:34.371000px;}
._11_c01175{width:38.817000px;}
._23_c01175{width:47.424000px;}
._22_c01175{width:51.837000px;}
._f_c01175{width:103.341000px;}
._1a_c01175{width:226.689000px;}
._16_c01175{width:306.318000px;}
._27_c01175{width:477.978000px;}
._2b_c01175{width:628.227000px;}
.fc2_c01175{color:transparent;}
.fc1_c01175{color:rgb(128,128,128);}
.fc0_c01175{color:rgb(0,0,0);}
.fs0_c01175{font-size:24.000000px;}
.fs4_c01175{font-size:48.000000px;}
.fs1_c01175{font-size:57.000000px;}
.fs3_c01175{font-size:87.000000px;}
.fs2_c01175{font-size:108.000000px;}
.y0_c01175{bottom:0.000000px;}
.y26_c01175{bottom:3.105000px;}
.y25_c01175{bottom:7.228371px;}
.y24_c01175{bottom:58.065000px;}
.y23_c01175{bottom:82.365000px;}
.y22_c01175{bottom:107.115000px;}
.y21_c01175{bottom:132.315000px;}
.y20_c01175{bottom:156.015000px;}
.y1f_c01175{bottom:180.615000px;}
.y1e_c01175{bottom:204.915000px;}
.y1d_c01175{bottom:228.915000px;}
.y1c_c01175{bottom:253.515000px;}
.y1b_c01175{bottom:277.815000px;}
.y1a_c01175{bottom:302.115000px;}
.y19_c01175{bottom:327.465000px;}
.y18_c01175{bottom:350.115000px;}
.y17_c01175{bottom:375.615000px;}
.y16_c01175{bottom:399.015000px;}
.y15_c01175{bottom:422.865000px;}
.y14_c01175{bottom:446.565000px;}
.y13_c01175{bottom:470.565000px;}
.y12_c01175{bottom:494.415000px;}
.y11_c01175{bottom:519.165000px;}
.y10_c01175{bottom:541.665000px;}
.yf_c01175{bottom:565.365000px;}
.ye_c01175{bottom:589.365000px;}
.yd_c01175{bottom:613.665000px;}
.yc_c01175{bottom:638.265000px;}
.yb_c01175{bottom:662.565000px;}
.ya_c01175{bottom:686.115000px;}
.y9_c01175{bottom:710.415000px;}
.y8_c01175{bottom:734.715000px;}
.y7_c01175{bottom:759.465000px;}
.y6_c01175{bottom:782.415000px;}
.y5_c01175{bottom:805.665000px;}
.y4_c01175{bottom:829.665000px;}
.y3_c01175{bottom:854.265000px;}
.y2_c01175{bottom:878.265000px;}
.y1_c01175{bottom:938.265000px;}
.h6_c01175{height:13.200074px;}
.h2_c01175{height:25.608000px;}
.h7_c01175{height:43.804688px;}
.h3_c01175{height:57.445312px;}
.h4_c01175{height:108.843750px;}
.h5_c01175{height:110.151855px;}
.h1_c01175{height:986.250000px;}
.h0_c01175{height:986.325000px;}
.w2_c01175{width:104.875500px;}
.w0_c01175{width:667.425000px;}
.w1_c01175{width:667.500000px;}
.x0_c01175{left:0.000000px;}
.xb_c01175{left:23.400000px;}
.xc_c01175{left:24.600000px;}
.x7_c01175{left:27.300000px;}
.x6_c01175{left:30.000000px;}
.x4_c01175{left:60.750000px;}
.x12_c01175{left:94.800000px;}
.x5_c01175{left:101.250000px;}
.xa_c01175{left:102.900000px;}
.xe_c01175{left:103.950000px;}
.x14_c01175{left:106.050000px;}
.x13_c01175{left:107.100000px;}
.x11_c01175{left:108.300000px;}
.x10_c01175{left:109.350000px;}
.xf_c01175{left:111.000000px;}
.x9_c01175{left:112.500000px;}
.x8_c01175{left:113.700000px;}
.xd_c01175{left:115.350000px;}
.x2_c01175{left:117.000000px;}
.x3_c01175{left:122.850000px;}
.x15_c01175{left:140.100000px;}
.x16_c01175{left:277.800000px;}
.x17_c01175{left:285.526749px;}
.x1_c01175{left:535.500000px;}
@media print{
.v0_c01175{vertical-align:0.000000pt;}
.ls0_c01175{letter-spacing:0.000000pt;}
.ls1_c01175{letter-spacing:40.000000pt;}
.ws2_c01175{word-spacing:-52.666667pt;}
.ws0_c01175{word-spacing:-1.722667pt;}
.ws1_c01175{word-spacing:-0.962667pt;}
.ws3_c01175{word-spacing:0.000000pt;}
._28_c01175{margin-left:-71.997333pt;}
._2a_c01175{margin-left:-66.970667pt;}
._24_c01175{margin-left:-51.024000pt;}
._25_c01175{margin-left:-25.568000pt;}
._10_c01175{margin-left:-22.040000pt;}
._19_c01175{margin-left:-20.216000pt;}
._26_c01175{margin-left:-11.832000pt;}
._20_c01175{margin-left:-10.184000pt;}
._12_c01175{margin-left:-5.218667pt;}
._1f_c01175{margin-left:-3.597333pt;}
._1d_c01175{margin-left:-1.986667pt;}
._e_c01175{width:1.469333pt;}
._5_c01175{width:3.192000pt;}
._6_c01175{width:4.104000pt;}
._7_c01175{width:5.370667pt;}
._1_c01175{width:6.434667pt;}
._0_c01175{width:8.157333pt;}
._3_c01175{width:9.221333pt;}
._9_c01175{width:10.133333pt;}
._2_c01175{width:11.096000pt;}
._29_c01175{width:13.069333pt;}
._4_c01175{width:14.085333pt;}
._b_c01175{width:14.997333pt;}
._d_c01175{width:15.960000pt;}
._18_c01175{width:17.024000pt;}
._14_c01175{width:17.946667pt;}
._15_c01175{width:18.898667pt;}
._8_c01175{width:20.165333pt;}
._1b_c01175{width:21.077333pt;}
._a_c01175{width:22.141333pt;}
._17_c01175{width:23.336000pt;}
._21_c01175{width:24.674667pt;}
._c_c01175{width:25.992000pt;}
._1e_c01175{width:27.309333pt;}
._1c_c01175{width:28.626667pt;}
._13_c01175{width:30.552000pt;}
._11_c01175{width:34.504000pt;}
._23_c01175{width:42.154667pt;}
._22_c01175{width:46.077333pt;}
._f_c01175{width:91.858667pt;}
._1a_c01175{width:201.501333pt;}
._16_c01175{width:272.282667pt;}
._27_c01175{width:424.869333pt;}
._2b_c01175{width:558.424000pt;}
.fs0_c01175{font-size:21.333333pt;}
.fs4_c01175{font-size:42.666667pt;}
.fs1_c01175{font-size:50.666667pt;}
.fs3_c01175{font-size:77.333333pt;}
.fs2_c01175{font-size:96.000000pt;}
.y0_c01175{bottom:0.000000pt;}
.y26_c01175{bottom:2.760000pt;}
.y25_c01175{bottom:6.425219pt;}
.y24_c01175{bottom:51.613333pt;}
.y23_c01175{bottom:73.213333pt;}
.y22_c01175{bottom:95.213333pt;}
.y21_c01175{bottom:117.613333pt;}
.y20_c01175{bottom:138.680000pt;}
.y1f_c01175{bottom:160.546667pt;}
.y1e_c01175{bottom:182.146667pt;}
.y1d_c01175{bottom:203.480000pt;}
.y1c_c01175{bottom:225.346667pt;}
.y1b_c01175{bottom:246.946667pt;}
.y1a_c01175{bottom:268.546667pt;}
.y19_c01175{bottom:291.080000pt;}
.y18_c01175{bottom:311.213333pt;}
.y17_c01175{bottom:333.880000pt;}
.y16_c01175{bottom:354.680000pt;}
.y15_c01175{bottom:375.880000pt;}
.y14_c01175{bottom:396.946667pt;}
.y13_c01175{bottom:418.280000pt;}
.y12_c01175{bottom:439.480000pt;}
.y11_c01175{bottom:461.480000pt;}
.y10_c01175{bottom:481.480000pt;}
.yf_c01175{bottom:502.546667pt;}
.ye_c01175{bottom:523.880000pt;}
.yd_c01175{bottom:545.480000pt;}
.yc_c01175{bottom:567.346667pt;}
.yb_c01175{bottom:588.946667pt;}
.ya_c01175{bottom:609.880000pt;}
.y9_c01175{bottom:631.480000pt;}
.y8_c01175{bottom:653.080000pt;}
.y7_c01175{bottom:675.080000pt;}
.y6_c01175{bottom:695.480000pt;}
.y5_c01175{bottom:716.146667pt;}
.y4_c01175{bottom:737.480000pt;}
.y3_c01175{bottom:759.346667pt;}
.y2_c01175{bottom:780.680000pt;}
.y1_c01175{bottom:834.013333pt;}
.h6_c01175{height:11.733399pt;}
.h2_c01175{height:22.762667pt;}
.h7_c01175{height:38.937500pt;}
.h3_c01175{height:51.062500pt;}
.h4_c01175{height:96.750000pt;}
.h5_c01175{height:97.912760pt;}
.h1_c01175{height:876.666667pt;}
.h0_c01175{height:876.733333pt;}
.w2_c01175{width:93.222667pt;}
.w0_c01175{width:593.266667pt;}
.w1_c01175{width:593.333333pt;}
.x0_c01175{left:0.000000pt;}
.xb_c01175{left:20.800000pt;}
.xc_c01175{left:21.866667pt;}
.x7_c01175{left:24.266667pt;}
.x6_c01175{left:26.666667pt;}
.x4_c01175{left:54.000000pt;}
.x12_c01175{left:84.266667pt;}
.x5_c01175{left:90.000000pt;}
.xa_c01175{left:91.466667pt;}
.xe_c01175{left:92.400000pt;}
.x14_c01175{left:94.266667pt;}
.x13_c01175{left:95.200000pt;}
.x11_c01175{left:96.266667pt;}
.x10_c01175{left:97.200000pt;}
.xf_c01175{left:98.666667pt;}
.x9_c01175{left:100.000000pt;}
.x8_c01175{left:101.066667pt;}
.xd_c01175{left:102.533333pt;}
.x2_c01175{left:104.000000pt;}
.x3_c01175{left:109.200000pt;}
.x15_c01175{left:124.533333pt;}
.x16_c01175{left:246.933333pt;}
.x17_c01175{left:253.801554pt;}
.x1_c01175{left:476.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_c01176 {
    display:none;
  }
  .loading-indicator_c01176.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01176 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01176 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01176" -> "#page-container .classname_c01176")
 */
.pf_c01176 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01176 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01176.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01176 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01176 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01176 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01176 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01176 {overflow:visible;}
  }
}
.c_c01176 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01176 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01176:after { /* webkit #35443 */
  content: '';
}
.t_c01176:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01176 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01176 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01176 { /* info for Javascript */
  display:none;
}
.l_c01176 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01176 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01176 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01176:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01176{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01176;src:url('chunks/assets/font_0284edcbb535750f1457067a.woff2')format("woff");}.ff1_c01176{font-family:ff1_c01176;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01176;src:url('chunks/assets/font_9c6e8f1e4fc68887ad627432.woff2')format("woff");}.ff2_c01176{font-family:ff2_c01176;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01176;src:url('chunks/assets/font_26afcc4c9ef995ba6da642de.woff2')format("woff");}.ff3_c01176{font-family:ff3_c01176;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01176;src:url('chunks/assets/font_67062e4d30d8a723a9555026.woff2')format("woff");}.ff4_c01176{font-family:ff4_c01176;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01176;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c01176{font-family:ff5_c01176;line-height:1.219238;font-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_c01176{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m0_c01176{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01176{vertical-align:0.000000px;}
.ls2_c01176{letter-spacing:-9.000000px;}
.ls0_c01176{letter-spacing:0.000000px;}
.ls3_c01176{letter-spacing:9.000000px;}
.ls1_c01176{letter-spacing:45.000000px;}
.sc__c01176{text-shadow:none;}
.sc0_c01176{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01176{-webkit-text-stroke:0px transparent;}
.sc0_c01176{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01176{word-spacing:0.000000px;}
._1b_c01176{margin-left:-22.515000px;}
._1c_c01176{margin-left:-13.800000px;}
._f_c01176{margin-left:-7.524000px;}
._c_c01176{margin-left:-5.832000px;}
._1e_c01176{margin-left:-3.888000px;}
._19_c01176{margin-left:-1.767000px;}
._18_c01176{width:1.596000px;}
._2_c01176{width:2.850000px;}
._14_c01176{width:3.990000px;}
._5_c01176{width:5.244000px;}
._8_c01176{width:6.384000px;}
._7_c01176{width:7.695000px;}
._d_c01176{width:8.778000px;}
._1_c01176{width:10.089000px;}
._6_c01176{width:11.628000px;}
._0_c01176{width:12.996000px;}
._e_c01176{width:15.846000px;}
._4_c01176{width:16.929000px;}
._a_c01176{width:18.012000px;}
._3_c01176{width:19.437000px;}
._9_c01176{width:20.691000px;}
._13_c01176{width:22.572000px;}
._12_c01176{width:23.883000px;}
._1a_c01176{width:25.023000px;}
._16_c01176{width:26.847000px;}
._11_c01176{width:27.873000px;}
._10_c01176{width:30.210000px;}
._17_c01176{width:33.231000px;}
._b_c01176{width:60.705000px;}
._15_c01176{width:343.767000px;}
._1d_c01176{width:513.000000px;}
.fc2_c01176{color:transparent;}
.fc1_c01176{color:rgb(128,128,128);}
.fc0_c01176{color:rgb(0,0,0);}
.fs3_c01176{font-size:48.000000px;}
.fs0_c01176{font-size:57.000000px;}
.fs1_c01176{font-size:105.000000px;}
.fs2_c01176{font-size:108.000000px;}
.y0_c01176{bottom:0.000000px;}
.y25_c01176{bottom:3.105000px;}
.y24_c01176{bottom:7.228369px;}
.y23_c01176{bottom:37.770000px;}
.y22_c01176{bottom:64.470000px;}
.y21_c01176{bottom:89.670000px;}
.y20_c01176{bottom:113.070000px;}
.y1f_c01176{bottom:139.470000px;}
.y1e_c01176{bottom:163.920000px;}
.y1d_c01176{bottom:188.370000px;}
.y1c_c01176{bottom:212.220000px;}
.y1b_c01176{bottom:236.220000px;}
.y1a_c01176{bottom:261.270000px;}
.y19_c01176{bottom:285.120000px;}
.y18_c01176{bottom:309.120000px;}
.y17_c01176{bottom:334.170000px;}
.y16_c01176{bottom:356.970000px;}
.y15_c01176{bottom:380.370000px;}
.y14_c01176{bottom:405.720000px;}
.y13_c01176{bottom:429.870000px;}
.y12_c01176{bottom:453.870000px;}
.y11_c01176{bottom:477.270000px;}
.y10_c01176{bottom:501.570000px;}
.yf_c01176{bottom:525.120000px;}
.ye_c01176{bottom:548.820000px;}
.yd_c01176{bottom:572.370000px;}
.yc_c01176{bottom:596.370000px;}
.yb_c01176{bottom:619.920000px;}
.ya_c01176{bottom:643.620000px;}
.y9_c01176{bottom:667.920000px;}
.y8_c01176{bottom:692.520000px;}
.y7_c01176{bottom:716.070000px;}
.y6_c01176{bottom:741.720000px;}
.y5_c01176{bottom:764.670000px;}
.y4_c01176{bottom:788.670000px;}
.y3_c01176{bottom:812.970000px;}
.y2_c01176{bottom:836.970000px;}
.y1_c01176{bottom:860.970000px;}
.h6_c01176{height:13.200073px;}
.h7_c01176{height:43.804688px;}
.h2_c01176{height:57.445312px;}
.h4_c01176{height:108.843750px;}
.h3_c01176{height:112.035000px;}
.h5_c01176{height:122.893066px;}
.h1_c01176{height:986.250000px;}
.h0_c01176{height:986.550000px;}
.w1_c01176{width:104.875500px;}
.w0_c01176{width:672.000000px;}
.x0_c01176{left:0.000000px;}
.x6_c01176{left:48.600000px;}
.x9_c01176{left:52.350000px;}
.x1_c01176{left:63.150000px;}
.x2_c01176{left:64.800000px;}
.x3_c01176{left:65.850000px;}
.x4_c01176{left:66.900000px;}
.x5_c01176{left:68.550000px;}
.x7_c01176{left:70.200000px;}
.x8_c01176{left:71.550000px;}
.xa_c01176{left:72.900000px;}
.xb_c01176{left:74.250000px;}
.xc_c01176{left:75.300000px;}
.x10_c01176{left:287.814240px;}
.xd_c01176{left:367.950000px;}
.xe_c01176{left:410.700000px;}
.xf_c01176{left:421.200000px;}
@media print{
.v0_c01176{vertical-align:0.000000pt;}
.ls2_c01176{letter-spacing:-8.000000pt;}
.ls0_c01176{letter-spacing:0.000000pt;}
.ls3_c01176{letter-spacing:8.000000pt;}
.ls1_c01176{letter-spacing:40.000000pt;}
.ws0_c01176{word-spacing:0.000000pt;}
._1b_c01176{margin-left:-20.013333pt;}
._1c_c01176{margin-left:-12.266667pt;}
._f_c01176{margin-left:-6.688000pt;}
._c_c01176{margin-left:-5.184000pt;}
._1e_c01176{margin-left:-3.456000pt;}
._19_c01176{margin-left:-1.570667pt;}
._18_c01176{width:1.418667pt;}
._2_c01176{width:2.533333pt;}
._14_c01176{width:3.546667pt;}
._5_c01176{width:4.661333pt;}
._8_c01176{width:5.674667pt;}
._7_c01176{width:6.840000pt;}
._d_c01176{width:7.802667pt;}
._1_c01176{width:8.968000pt;}
._6_c01176{width:10.336000pt;}
._0_c01176{width:11.552000pt;}
._e_c01176{width:14.085333pt;}
._4_c01176{width:15.048000pt;}
._a_c01176{width:16.010667pt;}
._3_c01176{width:17.277333pt;}
._9_c01176{width:18.392000pt;}
._13_c01176{width:20.064000pt;}
._12_c01176{width:21.229333pt;}
._1a_c01176{width:22.242667pt;}
._16_c01176{width:23.864000pt;}
._11_c01176{width:24.776000pt;}
._10_c01176{width:26.853333pt;}
._17_c01176{width:29.538667pt;}
._b_c01176{width:53.960000pt;}
._15_c01176{width:305.570667pt;}
._1d_c01176{width:456.000000pt;}
.fs3_c01176{font-size:42.666667pt;}
.fs0_c01176{font-size:50.666667pt;}
.fs1_c01176{font-size:93.333333pt;}
.fs2_c01176{font-size:96.000000pt;}
.y0_c01176{bottom:0.000000pt;}
.y25_c01176{bottom:2.760000pt;}
.y24_c01176{bottom:6.425217pt;}
.y23_c01176{bottom:33.573333pt;}
.y22_c01176{bottom:57.306667pt;}
.y21_c01176{bottom:79.706667pt;}
.y20_c01176{bottom:100.506667pt;}
.y1f_c01176{bottom:123.973333pt;}
.y1e_c01176{bottom:145.706667pt;}
.y1d_c01176{bottom:167.440000pt;}
.y1c_c01176{bottom:188.640000pt;}
.y1b_c01176{bottom:209.973333pt;}
.y1a_c01176{bottom:232.240000pt;}
.y19_c01176{bottom:253.440000pt;}
.y18_c01176{bottom:274.773333pt;}
.y17_c01176{bottom:297.040000pt;}
.y16_c01176{bottom:317.306667pt;}
.y15_c01176{bottom:338.106667pt;}
.y14_c01176{bottom:360.640000pt;}
.y13_c01176{bottom:382.106667pt;}
.y12_c01176{bottom:403.440000pt;}
.y11_c01176{bottom:424.240000pt;}
.y10_c01176{bottom:445.840000pt;}
.yf_c01176{bottom:466.773333pt;}
.ye_c01176{bottom:487.840000pt;}
.yd_c01176{bottom:508.773333pt;}
.yc_c01176{bottom:530.106667pt;}
.yb_c01176{bottom:551.040000pt;}
.ya_c01176{bottom:572.106667pt;}
.y9_c01176{bottom:593.706667pt;}
.y8_c01176{bottom:615.573333pt;}
.y7_c01176{bottom:636.506667pt;}
.y6_c01176{bottom:659.306667pt;}
.y5_c01176{bottom:679.706667pt;}
.y4_c01176{bottom:701.040000pt;}
.y3_c01176{bottom:722.640000pt;}
.y2_c01176{bottom:743.973333pt;}
.y1_c01176{bottom:765.306667pt;}
.h6_c01176{height:11.733399pt;}
.h7_c01176{height:38.937500pt;}
.h2_c01176{height:51.062500pt;}
.h4_c01176{height:96.750000pt;}
.h3_c01176{height:99.586667pt;}
.h5_c01176{height:109.238281pt;}
.h1_c01176{height:876.666667pt;}
.h0_c01176{height:876.933333pt;}
.w1_c01176{width:93.222667pt;}
.w0_c01176{width:597.333333pt;}
.x0_c01176{left:0.000000pt;}
.x6_c01176{left:43.200000pt;}
.x9_c01176{left:46.533333pt;}
.x1_c01176{left:56.133333pt;}
.x2_c01176{left:57.600000pt;}
.x3_c01176{left:58.533333pt;}
.x4_c01176{left:59.466667pt;}
.x5_c01176{left:60.933333pt;}
.x7_c01176{left:62.400000pt;}
.x8_c01176{left:63.600000pt;}
.xa_c01176{left:64.800000pt;}
.xb_c01176{left:66.000000pt;}
.xc_c01176{left:66.933333pt;}
.x10_c01176{left:255.834880pt;}
.xd_c01176{left:327.066667pt;}
.xe_c01176{left:365.066667pt;}
.xf_c01176{left:374.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_c01177 {
    display:none;
  }
  .loading-indicator_c01177.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01177 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01177 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01177" -> "#page-container .classname_c01177")
 */
.pf_c01177 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01177 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01177.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01177 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01177 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01177 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01177 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01177 {overflow:visible;}
  }
}
.c_c01177 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01177 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01177:after { /* webkit #35443 */
  content: '';
}
.t_c01177:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01177 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01177 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01177 { /* info for Javascript */
  display:none;
}
.l_c01177 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01177 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01177 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01177:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01177{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01177;src:url('chunks/assets/font_54e3e967dfcca914b3e6f170.woff2')format("woff");}.ff1_c01177{font-family:ff1_c01177;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01177;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff2_c01177{font-family:ff2_c01177;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01177;src:url('chunks/assets/font_49813ca724d38829a28b0868.woff2')format("woff");}.ff3_c01177{font-family:ff3_c01177;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01177;src:url('chunks/assets/font_57d36600596b93002f46eca8.woff2')format("woff");}.ff4_c01177{font-family:ff4_c01177;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01177;src:url('chunks/assets/font_698402d0e234d8a4ced1e36f.woff2')format("woff");}.ff5_c01177{font-family:ff5_c01177;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01177;src:url('chunks/assets/font_720ad67657dba6d3539edea8.woff2')format("woff");}.ff6_c01177{font-family:ff6_c01177;line-height:1.284180;font-style:normal;font-weight: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_c01177;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c01177{font-family:ff7_c01177;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01177{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01177{vertical-align:0.000000px;}
.ls7_c01177{letter-spacing:0.000000px;}
.ls1_c01177{letter-spacing:2.550000px;}
.ls8_c01177{letter-spacing:3.000000px;}
.ls6_c01177{letter-spacing:13.746000px;}
.ls0_c01177{letter-spacing:16.350000px;}
.ls3_c01177{letter-spacing:16.773000px;}
.ls5_c01177{letter-spacing:32.508000px;}
.ls4_c01177{letter-spacing:33.415200px;}
.ls2_c01177{letter-spacing:35.550000px;}
.sc__c01177{text-shadow:none;}
.sc0_c01177{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01177{-webkit-text-stroke:0px transparent;}
.sc0_c01177{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01177{word-spacing:-32.923200px;}
.ws0_c01177{word-spacing:-17.250000px;}
.ws3_c01177{word-spacing:-14.250000px;}
.ws4_c01177{word-spacing:0.000000px;}
.ws1_c01177{word-spacing:1.995000px;}
._26_c01177{margin-left:-28.291200px;}
._2d_c01177{margin-left:-14.856000px;}
._27_c01177{margin-left:-13.134000px;}
._21_c01177{margin-left:-12.108000px;}
._28_c01177{margin-left:-10.788000px;}
._1e_c01177{margin-left:-9.240000px;}
._1c_c01177{margin-left:-7.500000px;}
._29_c01177{margin-left:-6.282000px;}
._1a_c01177{margin-left:-5.175000px;}
._1b_c01177{margin-left:-3.933000px;}
._1f_c01177{margin-left:-2.778000px;}
._16_c01177{margin-left:-1.368000px;}
._12_c01177{width:2.046000px;}
._11_c01177{width:3.681000px;}
._6_c01177{width:4.959000px;}
._7_c01177{width:6.384000px;}
._f_c01177{width:7.581000px;}
._4_c01177{width:8.949000px;}
._2_c01177{width:10.089000px;}
._b_c01177{width:11.628000px;}
._1_c01177{width:12.825000px;}
._5_c01177{width:15.504000px;}
._0_c01177{width:16.587000px;}
._e_c01177{width:17.898000px;}
._9_c01177{width:19.152000px;}
._a_c01177{width:20.805000px;}
._10_c01177{width:21.831000px;}
._14_c01177{width:23.031000px;}
._3_c01177{width:24.225000px;}
._d_c01177{width:25.251000px;}
._18_c01177{width:26.643000px;}
._13_c01177{width:27.999000px;}
._19_c01177{width:29.550000px;}
._2a_c01177{width:39.795000px;}
._17_c01177{width:42.750000px;}
._2c_c01177{width:44.061000px;}
._8_c01177{width:45.144000px;}
._15_c01177{width:56.646000px;}
._1d_c01177{width:73.302000px;}
._25_c01177{width:109.455000px;}
._c_c01177{width:135.402000px;}
._24_c01177{width:169.437000px;}
._23_c01177{width:273.942000px;}
._22_c01177{width:303.330000px;}
._20_c01177{width:324.618000px;}
._2b_c01177{width:462.954000px;}
.fc2_c01177{color:transparent;}
.fc1_c01177{color:rgb(128,128,128);}
.fc0_c01177{color:rgb(0,0,0);}
.fs2_c01177{font-size:45.600000px;}
.fs3_c01177{font-size:48.000000px;}
.fs0_c01177{font-size:57.000000px;}
.fs1_c01177{font-size:69.000000px;}
.y0_c01177{bottom:0.000000px;}
.y21_c01177{bottom:3.105000px;}
.y20_c01177{bottom:7.228371px;}
.y1f_c01177{bottom:79.065000px;}
.y1e_c01177{bottom:108.465000px;}
.y1d_c01177{bottom:127.665000px;}
.y1c_c01177{bottom:153.315000px;}
.y1b_c01177{bottom:177.315000px;}
.y1a_c01177{bottom:201.915000px;}
.y19_c01177{bottom:253.515000px;}
.y18_c01177{bottom:281.115000px;}
.y17_c01177{bottom:310.215000px;}
.y16_c01177{bottom:339.315000px;}
.y15_c01177{bottom:389.265000px;}
.y14_c01177{bottom:413.415000px;}
.y13_c01177{bottom:437.115000px;}
.y12_c01177{bottom:461.715000px;}
.y11_c01177{bottom:485.115000px;}
.y10_c01177{bottom:509.265000px;}
.yf_c01177{bottom:532.365000px;}
.ye_c01177{bottom:555.915000px;}
.yd_c01177{bottom:582.315000px;}
.yc_c01177{bottom:603.165000px;}
.yb_c01177{bottom:628.065000px;}
.ya_c01177{bottom:652.365000px;}
.y9_c01177{bottom:676.065000px;}
.y8_c01177{bottom:699.765000px;}
.y7_c01177{bottom:723.615000px;}
.y6_c01177{bottom:747.615000px;}
.y5_c01177{bottom:771.615000px;}
.y4_c01177{bottom:795.615000px;}
.y3_c01177{bottom:819.915000px;}
.y2_c01177{bottom:845.565000px;}
.y1_c01177{bottom:868.365000px;}
.h7_c01177{height:13.200074px;}
.h8_c01177{height:43.804688px;}
.h6_c01177{height:55.914551px;}
.h5_c01177{height:55.942383px;}
.h2_c01177{height:57.445312px;}
.h3_c01177{height:69.539062px;}
.h4_c01177{height:72.312000px;}
.h1_c01177{height:986.250000px;}
.h0_c01177{height:986.325000px;}
.w2_c01177{width:104.875500px;}
.w0_c01177{width:667.425000px;}
.w1_c01177{width:667.500000px;}
.x0_c01177{left:0.000000px;}
.x2_c01177{left:12.150000px;}
.x5_c01177{left:15.900000px;}
.x7_c01177{left:18.450000px;}
.x6_c01177{left:28.650000px;}
.xa_c01177{left:55.650000px;}
.x1_c01177{left:100.200000px;}
.x3_c01177{left:101.550000px;}
.x4_c01177{left:102.600000px;}
.x8_c01177{left:104.850000px;}
.x9_c01177{left:106.200000px;}
.xb_c01177{left:114.000000px;}
.xc_c01177{left:148.050000px;}
.x11_c01177{left:217.650000px;}
.xd_c01177{left:223.050000px;}
.xf_c01177{left:226.350000px;}
.xe_c01177{left:231.900000px;}
.x10_c01177{left:245.250000px;}
.x12_c01177{left:285.526749px;}
@media print{
.v0_c01177{vertical-align:0.000000pt;}
.ls7_c01177{letter-spacing:0.000000pt;}
.ls1_c01177{letter-spacing:2.266667pt;}
.ls8_c01177{letter-spacing:2.666667pt;}
.ls6_c01177{letter-spacing:12.218667pt;}
.ls0_c01177{letter-spacing:14.533333pt;}
.ls3_c01177{letter-spacing:14.909333pt;}
.ls5_c01177{letter-spacing:28.896000pt;}
.ls4_c01177{letter-spacing:29.702400pt;}
.ls2_c01177{letter-spacing:31.600000pt;}
.ws2_c01177{word-spacing:-29.265067pt;}
.ws0_c01177{word-spacing:-15.333333pt;}
.ws3_c01177{word-spacing:-12.666667pt;}
.ws4_c01177{word-spacing:0.000000pt;}
.ws1_c01177{word-spacing:1.773333pt;}
._26_c01177{margin-left:-25.147733pt;}
._2d_c01177{margin-left:-13.205333pt;}
._27_c01177{margin-left:-11.674667pt;}
._21_c01177{margin-left:-10.762667pt;}
._28_c01177{margin-left:-9.589333pt;}
._1e_c01177{margin-left:-8.213333pt;}
._1c_c01177{margin-left:-6.666667pt;}
._29_c01177{margin-left:-5.584000pt;}
._1a_c01177{margin-left:-4.600000pt;}
._1b_c01177{margin-left:-3.496000pt;}
._1f_c01177{margin-left:-2.469333pt;}
._16_c01177{margin-left:-1.216000pt;}
._12_c01177{width:1.818667pt;}
._11_c01177{width:3.272000pt;}
._6_c01177{width:4.408000pt;}
._7_c01177{width:5.674667pt;}
._f_c01177{width:6.738667pt;}
._4_c01177{width:7.954667pt;}
._2_c01177{width:8.968000pt;}
._b_c01177{width:10.336000pt;}
._1_c01177{width:11.400000pt;}
._5_c01177{width:13.781333pt;}
._0_c01177{width:14.744000pt;}
._e_c01177{width:15.909333pt;}
._9_c01177{width:17.024000pt;}
._a_c01177{width:18.493333pt;}
._10_c01177{width:19.405333pt;}
._14_c01177{width:20.472000pt;}
._3_c01177{width:21.533333pt;}
._d_c01177{width:22.445333pt;}
._18_c01177{width:23.682667pt;}
._13_c01177{width:24.888000pt;}
._19_c01177{width:26.266667pt;}
._2a_c01177{width:35.373333pt;}
._17_c01177{width:38.000000pt;}
._2c_c01177{width:39.165333pt;}
._8_c01177{width:40.128000pt;}
._15_c01177{width:50.352000pt;}
._1d_c01177{width:65.157333pt;}
._25_c01177{width:97.293333pt;}
._c_c01177{width:120.357333pt;}
._24_c01177{width:150.610667pt;}
._23_c01177{width:243.504000pt;}
._22_c01177{width:269.626667pt;}
._20_c01177{width:288.549333pt;}
._2b_c01177{width:411.514667pt;}
.fs2_c01177{font-size:40.533333pt;}
.fs3_c01177{font-size:42.666667pt;}
.fs0_c01177{font-size:50.666667pt;}
.fs1_c01177{font-size:61.333333pt;}
.y0_c01177{bottom:0.000000pt;}
.y21_c01177{bottom:2.760000pt;}
.y20_c01177{bottom:6.425219pt;}
.y1f_c01177{bottom:70.280000pt;}
.y1e_c01177{bottom:96.413333pt;}
.y1d_c01177{bottom:113.480000pt;}
.y1c_c01177{bottom:136.280000pt;}
.y1b_c01177{bottom:157.613333pt;}
.y1a_c01177{bottom:179.480000pt;}
.y19_c01177{bottom:225.346667pt;}
.y18_c01177{bottom:249.880000pt;}
.y17_c01177{bottom:275.746667pt;}
.y16_c01177{bottom:301.613333pt;}
.y15_c01177{bottom:346.013333pt;}
.y14_c01177{bottom:367.480000pt;}
.y13_c01177{bottom:388.546667pt;}
.y12_c01177{bottom:410.413333pt;}
.y11_c01177{bottom:431.213333pt;}
.y10_c01177{bottom:452.680000pt;}
.yf_c01177{bottom:473.213333pt;}
.ye_c01177{bottom:494.146667pt;}
.yd_c01177{bottom:517.613333pt;}
.yc_c01177{bottom:536.146667pt;}
.yb_c01177{bottom:558.280000pt;}
.ya_c01177{bottom:579.880000pt;}
.y9_c01177{bottom:600.946667pt;}
.y8_c01177{bottom:622.013333pt;}
.y7_c01177{bottom:643.213333pt;}
.y6_c01177{bottom:664.546667pt;}
.y5_c01177{bottom:685.880000pt;}
.y4_c01177{bottom:707.213333pt;}
.y3_c01177{bottom:728.813333pt;}
.y2_c01177{bottom:751.613333pt;}
.y1_c01177{bottom:771.880000pt;}
.h7_c01177{height:11.733399pt;}
.h8_c01177{height:38.937500pt;}
.h6_c01177{height:49.701823pt;}
.h5_c01177{height:49.726562pt;}
.h2_c01177{height:51.062500pt;}
.h3_c01177{height:61.812500pt;}
.h4_c01177{height:64.277333pt;}
.h1_c01177{height:876.666667pt;}
.h0_c01177{height:876.733333pt;}
.w2_c01177{width:93.222667pt;}
.w0_c01177{width:593.266667pt;}
.w1_c01177{width:593.333333pt;}
.x0_c01177{left:0.000000pt;}
.x2_c01177{left:10.800000pt;}
.x5_c01177{left:14.133333pt;}
.x7_c01177{left:16.400000pt;}
.x6_c01177{left:25.466667pt;}
.xa_c01177{left:49.466667pt;}
.x1_c01177{left:89.066667pt;}
.x3_c01177{left:90.266667pt;}
.x4_c01177{left:91.200000pt;}
.x8_c01177{left:93.200000pt;}
.x9_c01177{left:94.400000pt;}
.xb_c01177{left:101.333333pt;}
.xc_c01177{left:131.600000pt;}
.x11_c01177{left:193.466667pt;}
.xd_c01177{left:198.266667pt;}
.xf_c01177{left:201.200000pt;}
.xe_c01177{left:206.133333pt;}
.x10_c01177{left:218.000000pt;}
.x12_c01177{left:253.801554pt;}
}





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

.ir_c01178:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01178{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01178;src:url('chunks/assets/font_6891065378dad994a3f5cb26.woff2')format("woff");}.ff1_c01178{font-family:ff1_c01178;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01178;src:url('chunks/assets/font_d5e4b50ac6de3d6ca7c23069.woff2')format("woff");}.ff2_c01178{font-family:ff2_c01178;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01178;src:url('chunks/assets/font_0e451bfe1f615f2924666493.woff2')format("woff");}.ff3_c01178{font-family:ff3_c01178;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01178;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff4_c01178{font-family:ff4_c01178;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01178;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff5_c01178{font-family:ff5_c01178;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01178;src:url('chunks/assets/font_40c3eb0cbfc8168c0c023c0d.woff2')format("woff");}.ff6_c01178{font-family:ff6_c01178;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01178;src:url('chunks/assets/font_bd34d5ebff4a63cd8bc0596b.woff2')format("woff");}.ff7_c01178{font-family:ff7_c01178;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c01178;src:url('chunks/assets/font_023ebca971ae8788f38c4687.woff2')format("woff");}.ff8_c01178{font-family:ff8_c01178;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c01178;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff9_c01178{font-family:ff9_c01178;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01178{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01178{vertical-align:0.000000px;}
.v1_c01178{vertical-align:143.400000px;}
.ls4_c01178{letter-spacing:-6.000000px;}
.ls2_c01178{letter-spacing:0.000000px;}
.ls3_c01178{letter-spacing:3.000000px;}
.ls0_c01178{letter-spacing:12.300000px;}
.ls1_c01178{letter-spacing:28.500000px;}
.sc__c01178{text-shadow:none;}
.sc0_c01178{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01178{-webkit-text-stroke:0px transparent;}
.sc0_c01178{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c01178{word-spacing:-75.294000px;}
.ws0_c01178{word-spacing:-29.718000px;}
.ws3_c01178{word-spacing:-22.098000px;}
.ws2_c01178{word-spacing:-18.798000px;}
.ws1_c01178{word-spacing:-12.798000px;}
.ws4_c01178{word-spacing:-12.750000px;}
.ws6_c01178{word-spacing:0.000000px;}
._10_c01178{margin-left:-37.653000px;}
._e_c01178{margin-left:-33.345000px;}
._1_c01178{margin-left:-30.087000px;}
._d_c01178{margin-left:-27.711000px;}
._a_c01178{margin-left:-26.442000px;}
._9_c01178{margin-left:-24.336000px;}
._b_c01178{margin-left:-22.674000px;}
._6_c01178{margin-left:-20.616000px;}
._29_c01178{margin-left:-19.098000px;}
._7_c01178{margin-left:-17.199000px;}
._f_c01178{margin-left:-15.795000px;}
._c_c01178{margin-left:-14.508000px;}
._2_c01178{margin-left:-13.245000px;}
._11_c01178{margin-left:-12.126000px;}
._8_c01178{margin-left:-11.115000px;}
._13_c01178{margin-left:-9.828000px;}
._1c_c01178{margin-left:-8.262000px;}
._3_c01178{margin-left:-7.134000px;}
._21_c01178{margin-left:-5.823000px;}
._19_c01178{margin-left:-4.392000px;}
._1f_c01178{margin-left:-2.415000px;}
._20_c01178{margin-left:-1.092000px;}
._15_c01178{width:1.326000px;}
._1d_c01178{width:2.652000px;}
._23_c01178{width:3.711000px;}
._16_c01178{width:4.947000px;}
._5_c01178{width:6.177000px;}
._17_c01178{width:7.554000px;}
._14_c01178{width:8.670000px;}
._18_c01178{width:10.353000px;}
._4_c01178{width:11.832000px;}
._1a_c01178{width:13.785000px;}
._25_c01178{width:14.922000px;}
._27_c01178{width:16.563000px;}
._1e_c01178{width:17.808000px;}
._2a_c01178{width:18.909000px;}
._2e_c01178{width:20.124000px;}
._1b_c01178{width:22.389000px;}
._24_c01178{width:29.190000px;}
._2d_c01178{width:31.161000px;}
._26_c01178{width:32.505000px;}
._2b_c01178{width:36.684000px;}
._0_c01178{width:43.587000px;}
._2c_c01178{width:57.465000px;}
._12_c01178{width:111.969000px;}
._2f_c01178{width:154.047000px;}
._28_c01178{width:168.822000px;}
._22_c01178{width:273.651000px;}
.fc2_c01178{color:transparent;}
.fc1_c01178{color:rgb(128,128,128);}
.fc0_c01178{color:rgb(0,0,0);}
.fs3_c01178{font-size:42.000000px;}
.fs7_c01178{font-size:48.000000px;}
.fs2_c01178{font-size:51.000000px;}
.fs5_c01178{font-size:57.000000px;}
.fs4_c01178{font-size:78.000000px;}
.fs0_c01178{font-size:87.000000px;}
.fs1_c01178{font-size:117.000000px;}
.fs6_c01178{font-size:282.000000px;}
.y0_c01178{bottom:0.000000px;}
.y24_c01178{bottom:3.105000px;}
.y23_c01178{bottom:7.228369px;}
.y22_c01178{bottom:57.420000px;}
.y21_c01178{bottom:83.070000px;}
.y20_c01178{bottom:107.370000px;}
.y1f_c01178{bottom:132.570000px;}
.y1d_c01178{bottom:145.770000px;}
.y1e_c01178{bottom:156.870000px;}
.y1c_c01178{bottom:229.770000px;}
.y1b_c01178{bottom:277.320000px;}
.y1a_c01178{bottom:301.620000px;}
.y19_c01178{bottom:326.070000px;}
.y18_c01178{bottom:351.270000px;}
.y17_c01178{bottom:374.220000px;}
.y16_c01178{bottom:398.220000px;}
.y15_c01178{bottom:422.220000px;}
.y14_c01178{bottom:446.220000px;}
.y13_c01178{bottom:470.370000px;}
.y12_c01178{bottom:494.670000px;}
.y11_c01178{bottom:518.070000px;}
.y10_c01178{bottom:541.320000px;}
.yf_c01178{bottom:564.870000px;}
.ye_c01178{bottom:588.870000px;}
.yd_c01178{bottom:613.170000px;}
.yc_c01178{bottom:636.120000px;}
.yb_c01178{bottom:660.120000px;}
.ya_c01178{bottom:684.420000px;}
.y9_c01178{bottom:708.420000px;}
.y8_c01178{bottom:732.720000px;}
.y7_c01178{bottom:756.720000px;}
.y6_c01178{bottom:780.570000px;}
.y5_c01178{bottom:804.570000px;}
.y4_c01178{bottom:830.220000px;}
.y3_c01178{bottom:853.170000px;}
.y2_c01178{bottom:877.170000px;}
.y1_c01178{bottom:910.620000px;}
.h6_c01178{height:13.200073px;}
.h7_c01178{height:43.804688px;}
.h2_c01178{height:50.053711px;}
.h3_c01178{height:98.756836px;}
.h4_c01178{height:110.151855px;}
.h1_c01178{height:136.937988px;}
.h5_c01178{height:300.894000px;}
.h0_c01178{height:975.750000px;}
.w2_c01178{width:104.875500px;}
.w0_c01178{width:664.200000px;}
.w1_c01178{width:664.500000px;}
.x0_c01178{left:0.000000px;}
.xe_c01178{left:45.900000px;}
.x3_c01178{left:53.100000px;}
.x2_c01178{left:54.300000px;}
.x4_c01178{left:55.650000px;}
.x5_c01178{left:57.450000px;}
.x6_c01178{left:58.950000px;}
.x7_c01178{left:61.050000px;}
.x9_c01178{left:62.850000px;}
.x8_c01178{left:65.100000px;}
.xb_c01178{left:67.800000px;}
.xd_c01178{left:70.500000px;}
.x1_c01178{left:89.400000px;}
.xc_c01178{left:103.500000px;}
.xa_c01178{left:110.400000px;}
.x10_c01178{left:283.914230px;}
.xf_c01178{left:438.750000px;}
@media print{
.v0_c01178{vertical-align:0.000000pt;}
.v1_c01178{vertical-align:127.466667pt;}
.ls4_c01178{letter-spacing:-5.333333pt;}
.ls2_c01178{letter-spacing:0.000000pt;}
.ls3_c01178{letter-spacing:2.666667pt;}
.ls0_c01178{letter-spacing:10.933333pt;}
.ls1_c01178{letter-spacing:25.333333pt;}
.ws5_c01178{word-spacing:-66.928000pt;}
.ws0_c01178{word-spacing:-26.416000pt;}
.ws3_c01178{word-spacing:-19.642667pt;}
.ws2_c01178{word-spacing:-16.709333pt;}
.ws1_c01178{word-spacing:-11.376000pt;}
.ws4_c01178{word-spacing:-11.333333pt;}
.ws6_c01178{word-spacing:0.000000pt;}
._10_c01178{margin-left:-33.469333pt;}
._e_c01178{margin-left:-29.640000pt;}
._1_c01178{margin-left:-26.744000pt;}
._d_c01178{margin-left:-24.632000pt;}
._a_c01178{margin-left:-23.504000pt;}
._9_c01178{margin-left:-21.632000pt;}
._b_c01178{margin-left:-20.154667pt;}
._6_c01178{margin-left:-18.325333pt;}
._29_c01178{margin-left:-16.976000pt;}
._7_c01178{margin-left:-15.288000pt;}
._f_c01178{margin-left:-14.040000pt;}
._c_c01178{margin-left:-12.896000pt;}
._2_c01178{margin-left:-11.773333pt;}
._11_c01178{margin-left:-10.778667pt;}
._8_c01178{margin-left:-9.880000pt;}
._13_c01178{margin-left:-8.736000pt;}
._1c_c01178{margin-left:-7.344000pt;}
._3_c01178{margin-left:-6.341333pt;}
._21_c01178{margin-left:-5.176000pt;}
._19_c01178{margin-left:-3.904000pt;}
._1f_c01178{margin-left:-2.146667pt;}
._20_c01178{margin-left:-0.970667pt;}
._15_c01178{width:1.178667pt;}
._1d_c01178{width:2.357333pt;}
._23_c01178{width:3.298667pt;}
._16_c01178{width:4.397333pt;}
._5_c01178{width:5.490667pt;}
._17_c01178{width:6.714667pt;}
._14_c01178{width:7.706667pt;}
._18_c01178{width:9.202667pt;}
._4_c01178{width:10.517333pt;}
._1a_c01178{width:12.253333pt;}
._25_c01178{width:13.264000pt;}
._27_c01178{width:14.722667pt;}
._1e_c01178{width:15.829333pt;}
._2a_c01178{width:16.808000pt;}
._2e_c01178{width:17.888000pt;}
._1b_c01178{width:19.901333pt;}
._24_c01178{width:25.946667pt;}
._2d_c01178{width:27.698667pt;}
._26_c01178{width:28.893333pt;}
._2b_c01178{width:32.608000pt;}
._0_c01178{width:38.744000pt;}
._2c_c01178{width:51.080000pt;}
._12_c01178{width:99.528000pt;}
._2f_c01178{width:136.930667pt;}
._28_c01178{width:150.064000pt;}
._22_c01178{width:243.245333pt;}
.fs3_c01178{font-size:37.333333pt;}
.fs7_c01178{font-size:42.666667pt;}
.fs2_c01178{font-size:45.333333pt;}
.fs5_c01178{font-size:50.666667pt;}
.fs4_c01178{font-size:69.333333pt;}
.fs0_c01178{font-size:77.333333pt;}
.fs1_c01178{font-size:104.000000pt;}
.fs6_c01178{font-size:250.666667pt;}
.y0_c01178{bottom:0.000000pt;}
.y24_c01178{bottom:2.760000pt;}
.y23_c01178{bottom:6.425217pt;}
.y22_c01178{bottom:51.040000pt;}
.y21_c01178{bottom:73.840000pt;}
.y20_c01178{bottom:95.440000pt;}
.y1f_c01178{bottom:117.840000pt;}
.y1d_c01178{bottom:129.573333pt;}
.y1e_c01178{bottom:139.440000pt;}
.y1c_c01178{bottom:204.240000pt;}
.y1b_c01178{bottom:246.506667pt;}
.y1a_c01178{bottom:268.106667pt;}
.y19_c01178{bottom:289.840000pt;}
.y18_c01178{bottom:312.240000pt;}
.y17_c01178{bottom:332.640000pt;}
.y16_c01178{bottom:353.973333pt;}
.y15_c01178{bottom:375.306667pt;}
.y14_c01178{bottom:396.640000pt;}
.y13_c01178{bottom:418.106667pt;}
.y12_c01178{bottom:439.706667pt;}
.y11_c01178{bottom:460.506667pt;}
.y10_c01178{bottom:481.173333pt;}
.yf_c01178{bottom:502.106667pt;}
.ye_c01178{bottom:523.440000pt;}
.yd_c01178{bottom:545.040000pt;}
.yc_c01178{bottom:565.440000pt;}
.yb_c01178{bottom:586.773333pt;}
.ya_c01178{bottom:608.373333pt;}
.y9_c01178{bottom:629.706667pt;}
.y8_c01178{bottom:651.306667pt;}
.y7_c01178{bottom:672.640000pt;}
.y6_c01178{bottom:693.840000pt;}
.y5_c01178{bottom:715.173333pt;}
.y4_c01178{bottom:737.973333pt;}
.y3_c01178{bottom:758.373333pt;}
.y2_c01178{bottom:779.706667pt;}
.y1_c01178{bottom:809.440000pt;}
.h6_c01178{height:11.733399pt;}
.h7_c01178{height:38.937500pt;}
.h2_c01178{height:44.492188pt;}
.h3_c01178{height:87.783854pt;}
.h4_c01178{height:97.912760pt;}
.h1_c01178{height:121.722656pt;}
.h5_c01178{height:267.461333pt;}
.h0_c01178{height:867.333333pt;}
.w2_c01178{width:93.222667pt;}
.w0_c01178{width:590.400000pt;}
.w1_c01178{width:590.666667pt;}
.x0_c01178{left:0.000000pt;}
.xe_c01178{left:40.800000pt;}
.x3_c01178{left:47.200000pt;}
.x2_c01178{left:48.266667pt;}
.x4_c01178{left:49.466667pt;}
.x5_c01178{left:51.066667pt;}
.x6_c01178{left:52.400000pt;}
.x7_c01178{left:54.266667pt;}
.x9_c01178{left:55.866667pt;}
.x8_c01178{left:57.866667pt;}
.xb_c01178{left:60.266667pt;}
.xd_c01178{left:62.666667pt;}
.x1_c01178{left:79.466667pt;}
.xc_c01178{left:92.000000pt;}
.xa_c01178{left:98.133333pt;}
.x10_c01178{left:252.368205pt;}
.xf_c01178{left:390.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_c01179 {
    display:none;
  }
  .loading-indicator_c01179.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01179 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01179 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01179" -> "#page-container .classname_c01179")
 */
.pf_c01179 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01179 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01179.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01179 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01179 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01179 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01179 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01179 {overflow:visible;}
  }
}
.c_c01179 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01179 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01179:after { /* webkit #35443 */
  content: '';
}
.t_c01179:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01179 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01179 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01179 { /* info for Javascript */
  display:none;
}
.l_c01179 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01179 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01179 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01179:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01179{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01179;src:url('chunks/assets/font_d4592cd831dcba8ba4df5920.woff2')format("woff");}.ff1_c01179{font-family:ff1_c01179;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01179;src:url('chunks/assets/font_488f3cd674997b7afd0bb4ae.woff2')format("woff");}.ff2_c01179{font-family:ff2_c01179;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01179;src:url('chunks/assets/font_a32ad668bfbe6b11ac58d17d.woff2')format("woff");}.ff3_c01179{font-family:ff3_c01179;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01179;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff4_c01179{font-family:ff4_c01179;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01179;src:url('chunks/assets/font_3f461a30e1b00a8c1221d95b.woff2')format("woff");}.ff5_c01179{font-family:ff5_c01179;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01179;src:url('chunks/assets/font_a12ed86cbbfc5a7da3c431ab.woff2')format("woff");}.ff6_c01179{font-family:ff6_c01179;line-height:1.284180;font-style:normal;font-weight: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_c01179;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c01179{font-family:ff7_c01179;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01179{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01179{vertical-align:0.000000px;}
.ls5_c01179{letter-spacing:-9.000000px;}
.ls4_c01179{letter-spacing:0.000000px;}
.ls6_c01179{letter-spacing:3.000000px;}
.ls3_c01179{letter-spacing:6.900000px;}
.ls2_c01179{letter-spacing:7.500000px;}
.ls1_c01179{letter-spacing:16.500000px;}
.ls0_c01179{letter-spacing:33.900000px;}
.sc__c01179{text-shadow:none;}
.sc0_c01179{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01179{-webkit-text-stroke:0px transparent;}
.sc0_c01179{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01179{word-spacing:-23.859000px;}
.ws2_c01179{word-spacing:-14.250000px;}
.ws3_c01179{word-spacing:-1.173000px;}
.ws6_c01179{word-spacing:0.000000px;}
.ws4_c01179{word-spacing:1.710000px;}
.ws5_c01179{word-spacing:2.280000px;}
.ws1_c01179{word-spacing:4.641000px;}
._8_c01179{margin-left:-8.217000px;}
._7_c01179{margin-left:-5.478000px;}
._1_c01179{margin-left:-3.861000px;}
._0_c01179{margin-left:-2.376000px;}
._16_c01179{margin-left:-1.071000px;}
._3_c01179{width:1.584000px;}
._5_c01179{width:3.069000px;}
._2_c01179{width:4.587000px;}
._4_c01179{width:5.595000px;}
._b_c01179{width:6.876000px;}
._6_c01179{width:8.415000px;}
._9_c01179{width:10.395000px;}
._e_c01179{width:11.400000px;}
._a_c01179{width:12.540000px;}
._1e_c01179{width:14.268000px;}
._c_c01179{width:15.420000px;}
._f_c01179{width:16.494000px;}
._11_c01179{width:17.988000px;}
._13_c01179{width:19.902000px;}
._18_c01179{width:21.477000px;}
._10_c01179{width:22.590000px;}
._d_c01179{width:24.576000px;}
._14_c01179{width:26.049000px;}
._12_c01179{width:27.102000px;}
._1c_c01179{width:28.980000px;}
._1d_c01179{width:30.387000px;}
._1b_c01179{width:31.479000px;}
._23_c01179{width:35.121000px;}
._17_c01179{width:40.005000px;}
._15_c01179{width:41.085000px;}
._25_c01179{width:42.750000px;}
._29_c01179{width:43.776000px;}
._20_c01179{width:45.837000px;}
._22_c01179{width:47.847000px;}
._28_c01179{width:48.879000px;}
._27_c01179{width:52.896000px;}
._26_c01179{width:81.087000px;}
._1a_c01179{width:161.976000px;}
._21_c01179{width:169.302000px;}
._1f_c01179{width:176.238000px;}
._24_c01179{width:229.959000px;}
._19_c01179{width:245.223000px;}
.fc2_c01179{color:transparent;}
.fc1_c01179{color:rgb(128,128,128);}
.fc0_c01179{color:rgb(0,0,0);}
.fs4_c01179{font-size:42.000000px;}
.fs6_c01179{font-size:48.000000px;}
.fs3_c01179{font-size:51.000000px;}
.fs2_c01179{font-size:57.000000px;}
.fs5_c01179{font-size:75.000000px;}
.fs0_c01179{font-size:99.000000px;}
.fs1_c01179{font-size:132.000000px;}
.y0_c01179{bottom:0.000000px;}
.y26_c01179{bottom:3.105000px;}
.y25_c01179{bottom:7.228355px;}
.y24_c01179{bottom:62.385000px;}
.y23_c01179{bottom:88.035000px;}
.y22_c01179{bottom:112.635000px;}
.y21_c01179{bottom:136.635000px;}
.y20_c01179{bottom:161.235000px;}
.y1f_c01179{bottom:185.835000px;}
.y1e_c01179{bottom:209.835000px;}
.y1d_c01179{bottom:234.435000px;}
.y1c_c01179{bottom:258.735000px;}
.y1b_c01179{bottom:283.035000px;}
.y1a_c01179{bottom:306.135000px;}
.y19_c01179{bottom:331.635000px;}
.y18_c01179{bottom:355.935000px;}
.y17_c01179{bottom:379.935000px;}
.y16_c01179{bottom:404.535000px;}
.y15_c01179{bottom:429.285000px;}
.y14_c01179{bottom:451.785000px;}
.y13_c01179{bottom:475.185000px;}
.y12_c01179{bottom:499.035000px;}
.y11_c01179{bottom:523.035000px;}
.y10_c01179{bottom:546.435000px;}
.yf_c01179{bottom:570.585000px;}
.ye_c01179{bottom:594.585000px;}
.yd_c01179{bottom:618.885000px;}
.yc_c01179{bottom:642.285000px;}
.yb_c01179{bottom:666.585000px;}
.ya_c01179{bottom:690.735000px;}
.y9_c01179{bottom:714.435000px;}
.y8_c01179{bottom:739.035000px;}
.y7_c01179{bottom:762.285000px;}
.y6_c01179{bottom:786.285000px;}
.y5_c01179{bottom:809.985000px;}
.y4_c01179{bottom:833.985000px;}
.y3_c01179{bottom:857.835000px;}
.y2_c01179{bottom:882.135000px;}
.y1_c01179{bottom:916.635000px;}
.h6_c01179{height:13.200074px;}
.h7_c01179{height:43.804688px;}
.h4_c01179{height:50.053711px;}
.h3_c01179{height:57.445312px;}
.h5_c01179{height:75.585938px;}
.h2_c01179{height:167.126953px;}
.h1_c01179{height:969.750000px;}
.h0_c01179{height:969.825000px;}
.w2_c01179{width:104.875500px;}
.w0_c01179{width:656.100000px;}
.w1_c01179{width:656.250000px;}
.x0_c01179{left:0.000000px;}
.x8_c01179{left:13.950000px;}
.xa_c01179{left:15.300000px;}
.x4_c01179{left:16.500000px;}
.x5_c01179{left:18.000000px;}
.xb_c01179{left:20.850000px;}
.x6_c01179{left:61.500000px;}
.x9_c01179{left:106.050000px;}
.x2_c01179{left:107.100000px;}
.x7_c01179{left:108.300000px;}
.x3_c01179{left:110.400000px;}
.x1_c01179{left:205.500000px;}
.xd_c01179{left:279.864258px;}
.xc_c01179{left:545.400000px;}
@media print{
.v0_c01179{vertical-align:0.000000pt;}
.ls5_c01179{letter-spacing:-8.000000pt;}
.ls4_c01179{letter-spacing:0.000000pt;}
.ls6_c01179{letter-spacing:2.666667pt;}
.ls3_c01179{letter-spacing:6.133333pt;}
.ls2_c01179{letter-spacing:6.666667pt;}
.ls1_c01179{letter-spacing:14.666667pt;}
.ls0_c01179{letter-spacing:30.133333pt;}
.ws0_c01179{word-spacing:-21.208000pt;}
.ws2_c01179{word-spacing:-12.666667pt;}
.ws3_c01179{word-spacing:-1.042667pt;}
.ws6_c01179{word-spacing:0.000000pt;}
.ws4_c01179{word-spacing:1.520000pt;}
.ws5_c01179{word-spacing:2.026667pt;}
.ws1_c01179{word-spacing:4.125333pt;}
._8_c01179{margin-left:-7.304000pt;}
._7_c01179{margin-left:-4.869333pt;}
._1_c01179{margin-left:-3.432000pt;}
._0_c01179{margin-left:-2.112000pt;}
._16_c01179{margin-left:-0.952000pt;}
._3_c01179{width:1.408000pt;}
._5_c01179{width:2.728000pt;}
._2_c01179{width:4.077333pt;}
._4_c01179{width:4.973333pt;}
._b_c01179{width:6.112000pt;}
._6_c01179{width:7.480000pt;}
._9_c01179{width:9.240000pt;}
._e_c01179{width:10.133333pt;}
._a_c01179{width:11.146667pt;}
._1e_c01179{width:12.682667pt;}
._c_c01179{width:13.706667pt;}
._f_c01179{width:14.661333pt;}
._11_c01179{width:15.989333pt;}
._13_c01179{width:17.690667pt;}
._18_c01179{width:19.090667pt;}
._10_c01179{width:20.080000pt;}
._d_c01179{width:21.845333pt;}
._14_c01179{width:23.154667pt;}
._12_c01179{width:24.090667pt;}
._1c_c01179{width:25.760000pt;}
._1d_c01179{width:27.010667pt;}
._1b_c01179{width:27.981333pt;}
._23_c01179{width:31.218667pt;}
._17_c01179{width:35.560000pt;}
._15_c01179{width:36.520000pt;}
._25_c01179{width:38.000000pt;}
._29_c01179{width:38.912000pt;}
._20_c01179{width:40.744000pt;}
._22_c01179{width:42.530667pt;}
._28_c01179{width:43.448000pt;}
._27_c01179{width:47.018667pt;}
._26_c01179{width:72.077333pt;}
._1a_c01179{width:143.978667pt;}
._21_c01179{width:150.490667pt;}
._1f_c01179{width:156.656000pt;}
._24_c01179{width:204.408000pt;}
._19_c01179{width:217.976000pt;}
.fs4_c01179{font-size:37.333333pt;}
.fs6_c01179{font-size:42.666667pt;}
.fs3_c01179{font-size:45.333333pt;}
.fs2_c01179{font-size:50.666667pt;}
.fs5_c01179{font-size:66.666667pt;}
.fs0_c01179{font-size:88.000000pt;}
.fs1_c01179{font-size:117.333333pt;}
.y0_c01179{bottom:0.000000pt;}
.y26_c01179{bottom:2.760000pt;}
.y25_c01179{bottom:6.425204pt;}
.y24_c01179{bottom:55.453333pt;}
.y23_c01179{bottom:78.253333pt;}
.y22_c01179{bottom:100.120000pt;}
.y21_c01179{bottom:121.453333pt;}
.y20_c01179{bottom:143.320000pt;}
.y1f_c01179{bottom:165.186667pt;}
.y1e_c01179{bottom:186.520000pt;}
.y1d_c01179{bottom:208.386667pt;}
.y1c_c01179{bottom:229.986667pt;}
.y1b_c01179{bottom:251.586667pt;}
.y1a_c01179{bottom:272.120000pt;}
.y19_c01179{bottom:294.786667pt;}
.y18_c01179{bottom:316.386667pt;}
.y17_c01179{bottom:337.720000pt;}
.y16_c01179{bottom:359.586667pt;}
.y15_c01179{bottom:381.586667pt;}
.y14_c01179{bottom:401.586667pt;}
.y13_c01179{bottom:422.386667pt;}
.y12_c01179{bottom:443.586667pt;}
.y11_c01179{bottom:464.920000pt;}
.y10_c01179{bottom:485.720000pt;}
.yf_c01179{bottom:507.186667pt;}
.ye_c01179{bottom:528.520000pt;}
.yd_c01179{bottom:550.120000pt;}
.yc_c01179{bottom:570.920000pt;}
.yb_c01179{bottom:592.520000pt;}
.ya_c01179{bottom:613.986667pt;}
.y9_c01179{bottom:635.053333pt;}
.y8_c01179{bottom:656.920000pt;}
.y7_c01179{bottom:677.586667pt;}
.y6_c01179{bottom:698.920000pt;}
.y5_c01179{bottom:719.986667pt;}
.y4_c01179{bottom:741.320000pt;}
.y3_c01179{bottom:762.520000pt;}
.y2_c01179{bottom:784.120000pt;}
.y1_c01179{bottom:814.786667pt;}
.h6_c01179{height:11.733399pt;}
.h7_c01179{height:38.937500pt;}
.h4_c01179{height:44.492188pt;}
.h3_c01179{height:51.062500pt;}
.h5_c01179{height:67.187500pt;}
.h2_c01179{height:148.557292pt;}
.h1_c01179{height:862.000000pt;}
.h0_c01179{height:862.066667pt;}
.w2_c01179{width:93.222667pt;}
.w0_c01179{width:583.200000pt;}
.w1_c01179{width:583.333333pt;}
.x0_c01179{left:0.000000pt;}
.x8_c01179{left:12.400000pt;}
.xa_c01179{left:13.600000pt;}
.x4_c01179{left:14.666667pt;}
.x5_c01179{left:16.000000pt;}
.xb_c01179{left:18.533333pt;}
.x6_c01179{left:54.666667pt;}
.x9_c01179{left:94.266667pt;}
.x2_c01179{left:95.200000pt;}
.x7_c01179{left:96.266667pt;}
.x3_c01179{left:98.133333pt;}
.x1_c01179{left:182.666667pt;}
.xd_c01179{left:248.768229pt;}
.xc_c01179{left:484.800000pt;}
}





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

.ir_c01180:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01180{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01180;src:url('chunks/assets/font_56db5f956b22d317bbeb4289.woff2')format("woff");}.ff1_c01180{font-family:ff1_c01180;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01180;src:url('chunks/assets/font_850b95cb4d7a37aac358e1cc.woff2')format("woff");}.ff2_c01180{font-family:ff2_c01180;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01180;src:url('chunks/assets/font_ed0ce3778ed164ff4a00f85c.woff2')format("woff");}.ff3_c01180{font-family:ff3_c01180;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01180;src:url('chunks/assets/font_bfe6e20cd7defdd64e595eb2.woff2')format("woff");}.ff4_c01180{font-family:ff4_c01180;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01180;src:url('chunks/assets/font_597dbc87ef739bf077c7235c.woff2')format("woff");}.ff5_c01180{font-family:ff5_c01180;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01180;src:url('chunks/assets/font_e2b9fab9b5405281064f9b62.woff2')format("woff");}.ff6_c01180{font-family:ff6_c01180;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01180;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c01180{font-family:ff7_c01180;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01180{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01180{vertical-align:0.000000px;}
.ls2_c01180{letter-spacing:0.000000px;}
.ls0_c01180{letter-spacing:9.600000px;}
.ls1_c01180{letter-spacing:21.900000px;}
.ls3_c01180{letter-spacing:45.000000px;}
.sc__c01180{text-shadow:none;}
.sc0_c01180{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01180{-webkit-text-stroke:0px transparent;}
.sc0_c01180{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01180{word-spacing:-59.250000px;}
.ws0_c01180{word-spacing:-14.250000px;}
.ws2_c01180{word-spacing:0.000000px;}
._1e_c01180{margin-left:-58.041000px;}
._8_c01180{margin-left:-22.452000px;}
._15_c01180{margin-left:-9.198000px;}
._4_c01180{margin-left:-6.633000px;}
._13_c01180{margin-left:-5.430000px;}
._1_c01180{margin-left:-3.663000px;}
._2_c01180{margin-left:-2.475000px;}
._3_c01180{margin-left:-1.386000px;}
._0_c01180{width:1.584000px;}
._14_c01180{width:2.736000px;}
._16_c01180{width:4.149000px;}
._e_c01180{width:5.244000px;}
._c_c01180{width:6.897000px;}
._10_c01180{width:8.109000px;}
._9_c01180{width:9.522000px;}
._a_c01180{width:10.737000px;}
._12_c01180{width:11.778000px;}
._7_c01180{width:12.852000px;}
._f_c01180{width:15.372000px;}
._d_c01180{width:17.175000px;}
._11_c01180{width:18.669000px;}
._6_c01180{width:19.896000px;}
._b_c01180{width:21.261000px;}
._19_c01180{width:22.563000px;}
._18_c01180{width:24.549000px;}
._17_c01180{width:25.593000px;}
._1a_c01180{width:26.640000px;}
._1b_c01180{width:28.281000px;}
._1f_c01180{width:29.337000px;}
._20_c01180{width:35.091000px;}
._1c_c01180{width:46.362000px;}
._5_c01180{width:130.779000px;}
._1d_c01180{width:214.404000px;}
.fc2_c01180{color:transparent;}
.fc1_c01180{color:rgb(128,128,128);}
.fc0_c01180{color:rgb(0,0,0);}
.fs4_c01180{font-size:48.000000px;}
.fs2_c01180{font-size:57.000000px;}
.fs3_c01180{font-size:78.000000px;}
.fs0_c01180{font-size:99.000000px;}
.fs1_c01180{font-size:102.000000px;}
.y0_c01180{bottom:0.000000px;}
.y25_c01180{bottom:3.105000px;}
.y24_c01180{bottom:7.228369px;}
.y23_c01180{bottom:87.120000px;}
.y22_c01180{bottom:112.320000px;}
.y21_c01180{bottom:136.920000px;}
.y20_c01180{bottom:160.920000px;}
.y1f_c01180{bottom:184.920000px;}
.y1e_c01180{bottom:209.520000px;}
.y1d_c01180{bottom:233.220000px;}
.y1c_c01180{bottom:258.420000px;}
.y1b_c01180{bottom:281.820000px;}
.y1a_c01180{bottom:305.670000px;}
.y19_c01180{bottom:329.670000px;}
.y18_c01180{bottom:353.970000px;}
.y17_c01180{bottom:377.670000px;}
.y16_c01180{bottom:401.970000px;}
.y15_c01180{bottom:425.970000px;}
.y14_c01180{bottom:449.820000px;}
.y13_c01180{bottom:473.520000px;}
.y12_c01180{bottom:498.120000px;}
.y11_c01180{bottom:521.370000px;}
.y10_c01180{bottom:545.370000px;}
.yf_c01180{bottom:568.620000px;}
.ye_c01180{bottom:592.320000px;}
.yd_c01180{bottom:616.320000px;}
.yc_c01180{bottom:639.570000px;}
.yb_c01180{bottom:663.870000px;}
.ya_c01180{bottom:687.720000px;}
.y9_c01180{bottom:711.720000px;}
.y8_c01180{bottom:735.420000px;}
.y7_c01180{bottom:759.720000px;}
.y6_c01180{bottom:783.570000px;}
.y5_c01180{bottom:807.570000px;}
.y4_c01180{bottom:830.970000px;}
.y3_c01180{bottom:855.120000px;}
.y2_c01180{bottom:879.120000px;}
.y1_c01180{bottom:919.920000px;}
.h8_c01180{height:13.200073px;}
.h9_c01180{height:43.804688px;}
.h6_c01180{height:57.445312px;}
.h5_c01180{height:66.713379px;}
.h4_c01180{height:72.168457px;}
.h7_c01180{height:98.756836px;}
.h3_c01180{height:104.839927px;}
.h2_c01180{height:115.870605px;}
.h1_c01180{height:986.250000px;}
.h0_c01180{height:986.550000px;}
.w1_c01180{width:104.875500px;}
.w0_c01180{width:672.000000px;}
.x0_c01180{left:0.000000px;}
.x7_c01180{left:48.900000px;}
.x4_c01180{left:51.000000px;}
.x3_c01180{left:52.350000px;}
.x2_c01180{left:54.300000px;}
.x6_c01180{left:55.350000px;}
.x5_c01180{left:77.250000px;}
.x1_c01180{left:169.800000px;}
.x8_c01180{left:287.814240px;}
@media print{
.v0_c01180{vertical-align:0.000000pt;}
.ls2_c01180{letter-spacing:0.000000pt;}
.ls0_c01180{letter-spacing:8.533333pt;}
.ls1_c01180{letter-spacing:19.466667pt;}
.ls3_c01180{letter-spacing:40.000000pt;}
.ws1_c01180{word-spacing:-52.666667pt;}
.ws0_c01180{word-spacing:-12.666667pt;}
.ws2_c01180{word-spacing:0.000000pt;}
._1e_c01180{margin-left:-51.592000pt;}
._8_c01180{margin-left:-19.957333pt;}
._15_c01180{margin-left:-8.176000pt;}
._4_c01180{margin-left:-5.896000pt;}
._13_c01180{margin-left:-4.826667pt;}
._1_c01180{margin-left:-3.256000pt;}
._2_c01180{margin-left:-2.200000pt;}
._3_c01180{margin-left:-1.232000pt;}
._0_c01180{width:1.408000pt;}
._14_c01180{width:2.432000pt;}
._16_c01180{width:3.688000pt;}
._e_c01180{width:4.661333pt;}
._c_c01180{width:6.130667pt;}
._10_c01180{width:7.208000pt;}
._9_c01180{width:8.464000pt;}
._a_c01180{width:9.544000pt;}
._12_c01180{width:10.469333pt;}
._7_c01180{width:11.424000pt;}
._f_c01180{width:13.664000pt;}
._d_c01180{width:15.266667pt;}
._11_c01180{width:16.594667pt;}
._6_c01180{width:17.685333pt;}
._b_c01180{width:18.898667pt;}
._19_c01180{width:20.056000pt;}
._18_c01180{width:21.821333pt;}
._17_c01180{width:22.749333pt;}
._1a_c01180{width:23.680000pt;}
._1b_c01180{width:25.138667pt;}
._1f_c01180{width:26.077333pt;}
._20_c01180{width:31.192000pt;}
._1c_c01180{width:41.210667pt;}
._5_c01180{width:116.248000pt;}
._1d_c01180{width:190.581333pt;}
.fs4_c01180{font-size:42.666667pt;}
.fs2_c01180{font-size:50.666667pt;}
.fs3_c01180{font-size:69.333333pt;}
.fs0_c01180{font-size:88.000000pt;}
.fs1_c01180{font-size:90.666667pt;}
.y0_c01180{bottom:0.000000pt;}
.y25_c01180{bottom:2.760000pt;}
.y24_c01180{bottom:6.425217pt;}
.y23_c01180{bottom:77.440000pt;}
.y22_c01180{bottom:99.840000pt;}
.y21_c01180{bottom:121.706667pt;}
.y20_c01180{bottom:143.040000pt;}
.y1f_c01180{bottom:164.373333pt;}
.y1e_c01180{bottom:186.240000pt;}
.y1d_c01180{bottom:207.306667pt;}
.y1c_c01180{bottom:229.706667pt;}
.y1b_c01180{bottom:250.506667pt;}
.y1a_c01180{bottom:271.706667pt;}
.y19_c01180{bottom:293.040000pt;}
.y18_c01180{bottom:314.640000pt;}
.y17_c01180{bottom:335.706667pt;}
.y16_c01180{bottom:357.306667pt;}
.y15_c01180{bottom:378.640000pt;}
.y14_c01180{bottom:399.840000pt;}
.y13_c01180{bottom:420.906667pt;}
.y12_c01180{bottom:442.773333pt;}
.y11_c01180{bottom:463.440000pt;}
.y10_c01180{bottom:484.773333pt;}
.yf_c01180{bottom:505.440000pt;}
.ye_c01180{bottom:526.506667pt;}
.yd_c01180{bottom:547.840000pt;}
.yc_c01180{bottom:568.506667pt;}
.yb_c01180{bottom:590.106667pt;}
.ya_c01180{bottom:611.306667pt;}
.y9_c01180{bottom:632.640000pt;}
.y8_c01180{bottom:653.706667pt;}
.y7_c01180{bottom:675.306667pt;}
.y6_c01180{bottom:696.506667pt;}
.y5_c01180{bottom:717.840000pt;}
.y4_c01180{bottom:738.640000pt;}
.y3_c01180{bottom:760.106667pt;}
.y2_c01180{bottom:781.440000pt;}
.y1_c01180{bottom:817.706667pt;}
.h8_c01180{height:11.733399pt;}
.h9_c01180{height:38.937500pt;}
.h6_c01180{height:51.062500pt;}
.h5_c01180{height:59.300781pt;}
.h4_c01180{height:64.149740pt;}
.h7_c01180{height:87.783854pt;}
.h3_c01180{height:93.191046pt;}
.h2_c01180{height:102.996094pt;}
.h1_c01180{height:876.666667pt;}
.h0_c01180{height:876.933333pt;}
.w1_c01180{width:93.222667pt;}
.w0_c01180{width:597.333333pt;}
.x0_c01180{left:0.000000pt;}
.x7_c01180{left:43.466667pt;}
.x4_c01180{left:45.333333pt;}
.x3_c01180{left:46.533333pt;}
.x2_c01180{left:48.266667pt;}
.x6_c01180{left:49.200000pt;}
.x5_c01180{left:68.666667pt;}
.x1_c01180{left:150.933333pt;}
.x8_c01180{left:255.834880pt;}
}





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

.ir_c01181:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01181{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01181;src:url('chunks/assets/font_8094ba134302610e3dad182f.woff2')format("woff");}.ff1_c01181{font-family:ff1_c01181;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01181;src:url('chunks/assets/font_ae2f1d4120c4267c6c0c397f.woff2')format("woff");}.ff2_c01181{font-family:ff2_c01181;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01181;src:url('chunks/assets/font_f9abbfd0b582a7f092da1511.woff2')format("woff");}.ff3_c01181{font-family:ff3_c01181;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01181;src:url('chunks/assets/font_629bd9decfcd5c212690d225.woff2')format("woff");}.ff4_c01181{font-family:ff4_c01181;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01181;src:url('chunks/assets/font_2f24f0f95a0edba44f75397e.woff2')format("woff");}.ff5_c01181{font-family:ff5_c01181;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01181;src:url('chunks/assets/font_78ba9e19bb4f1d0ed9d329a5.woff2')format("woff");}.ff6_c01181{font-family:ff6_c01181;line-height:1.437000;font-style:normal;font-weight: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_c01181;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff7_c01181{font-family:ff7_c01181;line-height:1.311035;font-style:normal;font-weight: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_c01181;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff8_c01181{font-family:ff8_c01181;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c01181;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff9_c01181{font-family:ff9_c01181;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01181{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01181{vertical-align:0.000000px;}
.ls2_c01181{letter-spacing:0.000000px;}
.ls0_c01181{letter-spacing:14.100000px;}
.ls3_c01181{letter-spacing:15.000000px;}
.ls1_c01181{letter-spacing:28.950000px;}
.sc__c01181{text-shadow:none;}
.sc0_c01181{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01181{-webkit-text-stroke:0px transparent;}
.sc0_c01181{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01181{word-spacing:-44.346000px;}
.ws2_c01181{word-spacing:-32.352000px;}
.ws0_c01181{word-spacing:-17.352000px;}
.ws3_c01181{word-spacing:0.000000px;}
._26_c01181{margin-left:-26.400000px;}
._14_c01181{margin-left:-24.672000px;}
._21_c01181{margin-left:-13.992000px;}
._13_c01181{margin-left:-10.896000px;}
._5_c01181{margin-left:-9.438000px;}
._2_c01181{margin-left:-7.722000px;}
._b_c01181{margin-left:-5.694000px;}
._a_c01181{margin-left:-4.212000px;}
._7_c01181{margin-left:-2.808000px;}
._1_c01181{margin-left:-1.716000px;}
._0_c01181{width:1.482000px;}
._3_c01181{width:2.808000px;}
._c_c01181{width:4.134000px;}
._4_c01181{width:5.382000px;}
._9_c01181{width:6.474000px;}
._16_c01181{width:7.644000px;}
._6_c01181{width:9.204000px;}
._10_c01181{width:10.476000px;}
._1c_c01181{width:11.622000px;}
._19_c01181{width:12.636000px;}
._12_c01181{width:13.650000px;}
._8_c01181{width:14.976000px;}
._17_c01181{width:18.144000px;}
._1e_c01181{width:19.188000px;}
._d_c01181{width:20.202000px;}
._1a_c01181{width:21.762000px;}
._1b_c01181{width:23.946000px;}
._24_c01181{width:28.470000px;}
._e_c01181{width:31.122000px;}
._1f_c01181{width:35.157000px;}
._25_c01181{width:36.660000px;}
._18_c01181{width:41.292000px;}
._f_c01181{width:77.844000px;}
._15_c01181{width:133.380000px;}
._11_c01181{width:190.710000px;}
._20_c01181{width:206.262000px;}
._22_c01181{width:208.638000px;}
._23_c01181{width:214.680000px;}
._1d_c01181{width:251.604000px;}
._27_c01181{width:1610.976000px;}
.fc2_c01181{color:transparent;}
.fc1_c01181{color:rgb(128,128,128);}
.fc0_c01181{color:rgb(0,0,0);}
.fs6_c01181{font-size:48.000000px;}
.fs4_c01181{font-size:57.000000px;}
.fs1_c01181{font-size:72.000000px;}
.fs3_c01181{font-size:75.000000px;}
.fs0_c01181{font-size:78.000000px;}
.fs2_c01181{font-size:84.000000px;}
.fs5_c01181{font-size:96.000000px;}
.y0_c01181{bottom:0.000000px;}
.y25_c01181{bottom:3.105000px;}
.y24_c01181{bottom:7.228371px;}
.y23_c01181{bottom:72.015000px;}
.y22_c01181{bottom:93.915000px;}
.y21_c01181{bottom:119.115000px;}
.y20_c01181{bottom:143.565000px;}
.y1f_c01181{bottom:167.715000px;}
.y1e_c01181{bottom:191.715000px;}
.y1d_c01181{bottom:215.715000px;}
.y1c_c01181{bottom:240.315000px;}
.y1b_c01181{bottom:264.915000px;}
.y1a_c01181{bottom:288.315000px;}
.y19_c01181{bottom:312.915000px;}
.y18_c01181{bottom:336.915000px;}
.y17_c01181{bottom:360.765000px;}
.y16_c01181{bottom:384.165000px;}
.y15_c01181{bottom:408.465000px;}
.y14_c01181{bottom:434.115000px;}
.y13_c01181{bottom:456.615000px;}
.y12_c01181{bottom:480.315000px;}
.y11_c01181{bottom:504.015000px;}
.y10_c01181{bottom:527.565000px;}
.yf_c01181{bottom:551.115000px;}
.ye_c01181{bottom:575.415000px;}
.yd_c01181{bottom:599.115000px;}
.yc_c01181{bottom:623.115000px;}
.yb_c01181{bottom:646.965000px;}
.ya_c01181{bottom:671.715000px;}
.y9_c01181{bottom:693.615000px;}
.y8_c01181{bottom:718.665000px;}
.y7_c01181{bottom:742.965000px;}
.y6_c01181{bottom:766.515000px;}
.y5_c01181{bottom:790.815000px;}
.y4_c01181{bottom:814.365000px;}
.y3_c01181{bottom:838.665000px;}
.y2_c01181{bottom:861.615000px;}
.y1_c01181{bottom:885.615000px;}
.h6_c01181{height:13.200074px;}
.h7_c01181{height:43.804688px;}
.h2_c01181{height:83.226000px;}
.h3_c01181{height:84.269531px;}
.h4_c01181{height:91.160156px;}
.h5_c01181{height:94.218750px;}
.h1_c01181{height:986.250000px;}
.h0_c01181{height:986.325000px;}
.w2_c01181{width:104.875500px;}
.w0_c01181{width:667.425000px;}
.w1_c01181{width:667.500000px;}
.x0_c01181{left:0.000000px;}
.x3_c01181{left:41.550000px;}
.x4_c01181{left:42.750000px;}
.x5_c01181{left:44.550000px;}
.xa_c01181{left:48.300000px;}
.xb_c01181{left:59.850000px;}
.xd_c01181{left:79.350000px;}
.xc_c01181{left:100.650000px;}
.x1_c01181{left:129.600000px;}
.x2_c01181{left:131.250000px;}
.x6_c01181{left:132.300000px;}
.x7_c01181{left:133.350000px;}
.x9_c01181{left:135.300000px;}
.x8_c01181{left:159.750000px;}
.xe_c01181{left:188.700000px;}
.xf_c01181{left:285.526749px;}
@media print{
.v0_c01181{vertical-align:0.000000pt;}
.ls2_c01181{letter-spacing:0.000000pt;}
.ls0_c01181{letter-spacing:12.533333pt;}
.ls3_c01181{letter-spacing:13.333333pt;}
.ls1_c01181{letter-spacing:25.733333pt;}
.ws1_c01181{word-spacing:-39.418667pt;}
.ws2_c01181{word-spacing:-28.757333pt;}
.ws0_c01181{word-spacing:-15.424000pt;}
.ws3_c01181{word-spacing:0.000000pt;}
._26_c01181{margin-left:-23.466667pt;}
._14_c01181{margin-left:-21.930667pt;}
._21_c01181{margin-left:-12.437333pt;}
._13_c01181{margin-left:-9.685333pt;}
._5_c01181{margin-left:-8.389333pt;}
._2_c01181{margin-left:-6.864000pt;}
._b_c01181{margin-left:-5.061333pt;}
._a_c01181{margin-left:-3.744000pt;}
._7_c01181{margin-left:-2.496000pt;}
._1_c01181{margin-left:-1.525333pt;}
._0_c01181{width:1.317333pt;}
._3_c01181{width:2.496000pt;}
._c_c01181{width:3.674667pt;}
._4_c01181{width:4.784000pt;}
._9_c01181{width:5.754667pt;}
._16_c01181{width:6.794667pt;}
._6_c01181{width:8.181333pt;}
._10_c01181{width:9.312000pt;}
._1c_c01181{width:10.330667pt;}
._19_c01181{width:11.232000pt;}
._12_c01181{width:12.133333pt;}
._8_c01181{width:13.312000pt;}
._17_c01181{width:16.128000pt;}
._1e_c01181{width:17.056000pt;}
._d_c01181{width:17.957333pt;}
._1a_c01181{width:19.344000pt;}
._1b_c01181{width:21.285333pt;}
._24_c01181{width:25.306667pt;}
._e_c01181{width:27.664000pt;}
._1f_c01181{width:31.250667pt;}
._25_c01181{width:32.586667pt;}
._18_c01181{width:36.704000pt;}
._f_c01181{width:69.194667pt;}
._15_c01181{width:118.560000pt;}
._11_c01181{width:169.520000pt;}
._20_c01181{width:183.344000pt;}
._22_c01181{width:185.456000pt;}
._23_c01181{width:190.826667pt;}
._1d_c01181{width:223.648000pt;}
._27_c01181{width:1431.978667pt;}
.fs6_c01181{font-size:42.666667pt;}
.fs4_c01181{font-size:50.666667pt;}
.fs1_c01181{font-size:64.000000pt;}
.fs3_c01181{font-size:66.666667pt;}
.fs0_c01181{font-size:69.333333pt;}
.fs2_c01181{font-size:74.666667pt;}
.fs5_c01181{font-size:85.333333pt;}
.y0_c01181{bottom:0.000000pt;}
.y25_c01181{bottom:2.760000pt;}
.y24_c01181{bottom:6.425219pt;}
.y23_c01181{bottom:64.013333pt;}
.y22_c01181{bottom:83.480000pt;}
.y21_c01181{bottom:105.880000pt;}
.y20_c01181{bottom:127.613333pt;}
.y1f_c01181{bottom:149.080000pt;}
.y1e_c01181{bottom:170.413333pt;}
.y1d_c01181{bottom:191.746667pt;}
.y1c_c01181{bottom:213.613333pt;}
.y1b_c01181{bottom:235.480000pt;}
.y1a_c01181{bottom:256.280000pt;}
.y19_c01181{bottom:278.146667pt;}
.y18_c01181{bottom:299.480000pt;}
.y17_c01181{bottom:320.680000pt;}
.y16_c01181{bottom:341.480000pt;}
.y15_c01181{bottom:363.080000pt;}
.y14_c01181{bottom:385.880000pt;}
.y13_c01181{bottom:405.880000pt;}
.y12_c01181{bottom:426.946667pt;}
.y11_c01181{bottom:448.013333pt;}
.y10_c01181{bottom:468.946667pt;}
.yf_c01181{bottom:489.880000pt;}
.ye_c01181{bottom:511.480000pt;}
.yd_c01181{bottom:532.546667pt;}
.yc_c01181{bottom:553.880000pt;}
.yb_c01181{bottom:575.080000pt;}
.ya_c01181{bottom:597.080000pt;}
.y9_c01181{bottom:616.546667pt;}
.y8_c01181{bottom:638.813333pt;}
.y7_c01181{bottom:660.413333pt;}
.y6_c01181{bottom:681.346667pt;}
.y5_c01181{bottom:702.946667pt;}
.y4_c01181{bottom:723.880000pt;}
.y3_c01181{bottom:745.480000pt;}
.y2_c01181{bottom:765.880000pt;}
.y1_c01181{bottom:787.213333pt;}
.h6_c01181{height:11.733399pt;}
.h7_c01181{height:38.937500pt;}
.h2_c01181{height:73.978667pt;}
.h3_c01181{height:74.906250pt;}
.h4_c01181{height:81.031250pt;}
.h5_c01181{height:83.750000pt;}
.h1_c01181{height:876.666667pt;}
.h0_c01181{height:876.733333pt;}
.w2_c01181{width:93.222667pt;}
.w0_c01181{width:593.266667pt;}
.w1_c01181{width:593.333333pt;}
.x0_c01181{left:0.000000pt;}
.x3_c01181{left:36.933333pt;}
.x4_c01181{left:38.000000pt;}
.x5_c01181{left:39.600000pt;}
.xa_c01181{left:42.933333pt;}
.xb_c01181{left:53.200000pt;}
.xd_c01181{left:70.533333pt;}
.xc_c01181{left:89.466667pt;}
.x1_c01181{left:115.200000pt;}
.x2_c01181{left:116.666667pt;}
.x6_c01181{left:117.600000pt;}
.x7_c01181{left:118.533333pt;}
.x9_c01181{left:120.266667pt;}
.x8_c01181{left:142.000000pt;}
.xe_c01181{left:167.733333pt;}
.xf_c01181{left:253.801554pt;}
}





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

.ir_c01182:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01182{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01182;src:url('chunks/assets/font_65092c5636b6d0f85780f7d1.woff2')format("woff");}.ff1_c01182{font-family:ff1_c01182;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01182;src:url('chunks/assets/font_d9f6be1b858ed94699177f91.woff2')format("woff");}.ff2_c01182{font-family:ff2_c01182;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01182;src:url('chunks/assets/font_c1d3100baef71ff1f76d2299.woff2')format("woff");}.ff3_c01182{font-family:ff3_c01182;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01182;src:url('chunks/assets/font_d5b46df33f2e29f17addda58.woff2')format("woff");}.ff4_c01182{font-family:ff4_c01182;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01182;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff5_c01182{font-family:ff5_c01182;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01182;src:url('chunks/assets/font_fa840682efb2875a129b7331.woff2')format("woff");}.ff6_c01182{font-family:ff6_c01182;line-height:1.284180;font-style:normal;font-weight: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_c01182;src:url('chunks/assets/font_5f3f9f306a747026abd1113a.woff2')format("woff");}.ff7_c01182{font-family:ff7_c01182;line-height:1.311035;font-style:normal;font-weight: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_c01182;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff8_c01182{font-family:ff8_c01182;line-height:1.284668;font-style:normal;font-weight: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_c01182;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff9_c01182{font-family:ff9_c01182;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01182{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01182{vertical-align:0.000000px;}
.ls1_c01182{letter-spacing:0.000000px;}
.ls2_c01182{letter-spacing:3.000000px;}
.ls0_c01182{letter-spacing:6.000000px;}
.sc__c01182{text-shadow:none;}
.sc0_c01182{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01182{-webkit-text-stroke:0px transparent;}
.sc0_c01182{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01182{word-spacing:-17.352000px;}
.ws1_c01182{word-spacing:0.000000px;}
._6_c01182{margin-left:-37.518000px;}
._5_c01182{margin-left:-32.523000px;}
._8_c01182{margin-left:-31.413000px;}
._a_c01182{margin-left:-28.305000px;}
._1_c01182{margin-left:-26.973000px;}
._2_c01182{margin-left:-25.308000px;}
._4_c01182{margin-left:-21.090000px;}
._0_c01182{margin-left:-17.871000px;}
._7_c01182{margin-left:-16.650000px;}
._3_c01182{margin-left:-14.430000px;}
._23_c01182{margin-left:-11.232000px;}
._29_c01182{margin-left:-9.672000px;}
._25_c01182{margin-left:-8.424000px;}
._2a_c01182{margin-left:-7.176000px;}
._24_c01182{margin-left:-5.850000px;}
._28_c01182{margin-left:-4.848000px;}
._15_c01182{margin-left:-3.120000px;}
._f_c01182{margin-left:-1.794000px;}
._d_c01182{width:1.560000px;}
._b_c01182{width:2.808000px;}
._c_c01182{width:4.680000px;}
._16_c01182{width:6.006000px;}
._12_c01182{width:7.098000px;}
._19_c01182{width:8.892000px;}
._27_c01182{width:9.951000px;}
._1e_c01182{width:10.998000px;}
._1f_c01182{width:12.168000px;}
._17_c01182{width:13.806000px;}
._10_c01182{width:15.444000px;}
._2b_c01182{width:17.289000px;}
._e_c01182{width:18.486000px;}
._11_c01182{width:20.202000px;}
._14_c01182{width:21.450000px;}
._22_c01182{width:22.854000px;}
._18_c01182{width:24.102000px;}
._1d_c01182{width:26.130000px;}
._1b_c01182{width:28.860000px;}
._13_c01182{width:30.420000px;}
._1c_c01182{width:31.590000px;}
._1a_c01182{width:32.682000px;}
._21_c01182{width:34.086000px;}
._20_c01182{width:36.348000px;}
._26_c01182{width:38.820000px;}
._2e_c01182{width:42.399000px;}
._2d_c01182{width:47.424000px;}
._2c_c01182{width:59.202000px;}
._9_c01182{width:124.764000px;}
.fc2_c01182{color:transparent;}
.fc1_c01182{color:rgb(128,128,128);}
.fc0_c01182{color:rgb(0,0,0);}
.fs4_c01182{font-size:42.000000px;}
.fs5_c01182{font-size:48.000000px;}
.fs3_c01182{font-size:51.000000px;}
.fs2_c01182{font-size:72.000000px;}
.fs1_c01182{font-size:78.000000px;}
.fs0_c01182{font-size:111.000000px;}
.y0_c01182{bottom:0.000000px;}
.y25_c01182{bottom:3.105000px;}
.y24_c01182{bottom:7.228357px;}
.y23_c01182{bottom:50.730000px;}
.y22_c01182{bottom:73.980000px;}
.y21_c01182{bottom:98.880000px;}
.y20_c01182{bottom:123.180000px;}
.y1f_c01182{bottom:147.480000px;}
.y1e_c01182{bottom:171.780000px;}
.y1d_c01182{bottom:196.080000px;}
.y1c_c01182{bottom:219.480000px;}
.y1b_c01182{bottom:244.380000px;}
.y1a_c01182{bottom:268.380000px;}
.y19_c01182{bottom:292.230000px;}
.y18_c01182{bottom:316.230000px;}
.y17_c01182{bottom:340.230000px;}
.y16_c01182{bottom:364.230000px;}
.y15_c01182{bottom:388.080000px;}
.y14_c01182{bottom:412.080000px;}
.y13_c01182{bottom:458.730000px;}
.y12_c01182{bottom:483.030000px;}
.y11_c01182{bottom:507.030000px;}
.y10_c01182{bottom:530.580000px;}
.yf_c01182{bottom:554.280000px;}
.ye_c01182{bottom:578.130000px;}
.yd_c01182{bottom:601.830000px;}
.yc_c01182{bottom:624.480000px;}
.yb_c01182{bottom:649.080000px;}
.ya_c01182{bottom:672.630000px;}
.y9_c01182{bottom:696.330000px;}
.y8_c01182{bottom:720.330000px;}
.y7_c01182{bottom:744.180000px;}
.y6_c01182{bottom:767.880000px;}
.y5_c01182{bottom:791.880000px;}
.y4_c01182{bottom:815.430000px;}
.y3_c01182{bottom:838.980000px;}
.y2_c01182{bottom:862.980000px;}
.y1_c01182{bottom:901.230000px;}
.h7_c01182{height:13.200074px;}
.h8_c01182{height:43.804688px;}
.h4_c01182{height:50.028809px;}
.h5_c01182{height:50.053711px;}
.h2_c01182{height:83.226000px;}
.h6_c01182{height:84.269531px;}
.h3_c01182{height:91.160156px;}
.h1_c01182{height:129.915527px;}
.h0_c01182{height:968.250000px;}
.w2_c01182{width:104.875500px;}
.w1_c01182{width:659.250000px;}
.w0_c01182{width:659.325000px;}
.x0_c01182{left:0.000000px;}
.xe_c01182{left:21.600000px;}
.xa_c01182{left:25.350000px;}
.xd_c01182{left:33.750000px;}
.xf_c01182{left:37.500000px;}
.xc_c01182{left:39.150000px;}
.xb_c01182{left:40.200000px;}
.x9_c01182{left:41.850000px;}
.x6_c01182{left:43.800000px;}
.x5_c01182{left:44.850000px;}
.x4_c01182{left:46.200000px;}
.x3_c01182{left:47.250000px;}
.x2_c01182{left:48.300000px;}
.x8_c01182{left:78.300000px;}
.x1_c01182{left:97.500000px;}
.x7_c01182{left:132.000000px;}
.x11_c01182{left:281.476730px;}
.x10_c01182{left:483.600000px;}
@media print{
.v0_c01182{vertical-align:0.000000pt;}
.ls1_c01182{letter-spacing:0.000000pt;}
.ls2_c01182{letter-spacing:2.666667pt;}
.ls0_c01182{letter-spacing:5.333333pt;}
.ws0_c01182{word-spacing:-15.424000pt;}
.ws1_c01182{word-spacing:0.000000pt;}
._6_c01182{margin-left:-33.349333pt;}
._5_c01182{margin-left:-28.909333pt;}
._8_c01182{margin-left:-27.922667pt;}
._a_c01182{margin-left:-25.160000pt;}
._1_c01182{margin-left:-23.976000pt;}
._2_c01182{margin-left:-22.496000pt;}
._4_c01182{margin-left:-18.746667pt;}
._0_c01182{margin-left:-15.885333pt;}
._7_c01182{margin-left:-14.800000pt;}
._3_c01182{margin-left:-12.826667pt;}
._23_c01182{margin-left:-9.984000pt;}
._29_c01182{margin-left:-8.597333pt;}
._25_c01182{margin-left:-7.488000pt;}
._2a_c01182{margin-left:-6.378667pt;}
._24_c01182{margin-left:-5.200000pt;}
._28_c01182{margin-left:-4.309333pt;}
._15_c01182{margin-left:-2.773333pt;}
._f_c01182{margin-left:-1.594667pt;}
._d_c01182{width:1.386667pt;}
._b_c01182{width:2.496000pt;}
._c_c01182{width:4.160000pt;}
._16_c01182{width:5.338667pt;}
._12_c01182{width:6.309333pt;}
._19_c01182{width:7.904000pt;}
._27_c01182{width:8.845333pt;}
._1e_c01182{width:9.776000pt;}
._1f_c01182{width:10.816000pt;}
._17_c01182{width:12.272000pt;}
._10_c01182{width:13.728000pt;}
._2b_c01182{width:15.368000pt;}
._e_c01182{width:16.432000pt;}
._11_c01182{width:17.957333pt;}
._14_c01182{width:19.066667pt;}
._22_c01182{width:20.314667pt;}
._18_c01182{width:21.424000pt;}
._1d_c01182{width:23.226667pt;}
._1b_c01182{width:25.653333pt;}
._13_c01182{width:27.040000pt;}
._1c_c01182{width:28.080000pt;}
._1a_c01182{width:29.050667pt;}
._21_c01182{width:30.298667pt;}
._20_c01182{width:32.309333pt;}
._26_c01182{width:34.506667pt;}
._2e_c01182{width:37.688000pt;}
._2d_c01182{width:42.154667pt;}
._2c_c01182{width:52.624000pt;}
._9_c01182{width:110.901333pt;}
.fs4_c01182{font-size:37.333333pt;}
.fs5_c01182{font-size:42.666667pt;}
.fs3_c01182{font-size:45.333333pt;}
.fs2_c01182{font-size:64.000000pt;}
.fs1_c01182{font-size:69.333333pt;}
.fs0_c01182{font-size:98.666667pt;}
.y0_c01182{bottom:0.000000pt;}
.y25_c01182{bottom:2.760000pt;}
.y24_c01182{bottom:6.425206pt;}
.y23_c01182{bottom:45.093333pt;}
.y22_c01182{bottom:65.760000pt;}
.y21_c01182{bottom:87.893333pt;}
.y20_c01182{bottom:109.493333pt;}
.y1f_c01182{bottom:131.093333pt;}
.y1e_c01182{bottom:152.693333pt;}
.y1d_c01182{bottom:174.293333pt;}
.y1c_c01182{bottom:195.093333pt;}
.y1b_c01182{bottom:217.226667pt;}
.y1a_c01182{bottom:238.560000pt;}
.y19_c01182{bottom:259.760000pt;}
.y18_c01182{bottom:281.093333pt;}
.y17_c01182{bottom:302.426667pt;}
.y16_c01182{bottom:323.760000pt;}
.y15_c01182{bottom:344.960000pt;}
.y14_c01182{bottom:366.293333pt;}
.y13_c01182{bottom:407.760000pt;}
.y12_c01182{bottom:429.360000pt;}
.y11_c01182{bottom:450.693333pt;}
.y10_c01182{bottom:471.626667pt;}
.yf_c01182{bottom:492.693333pt;}
.ye_c01182{bottom:513.893333pt;}
.yd_c01182{bottom:534.960000pt;}
.yc_c01182{bottom:555.093333pt;}
.yb_c01182{bottom:576.960000pt;}
.ya_c01182{bottom:597.893333pt;}
.y9_c01182{bottom:618.960000pt;}
.y8_c01182{bottom:640.293333pt;}
.y7_c01182{bottom:661.493333pt;}
.y6_c01182{bottom:682.560000pt;}
.y5_c01182{bottom:703.893333pt;}
.y4_c01182{bottom:724.826667pt;}
.y3_c01182{bottom:745.760000pt;}
.y2_c01182{bottom:767.093333pt;}
.y1_c01182{bottom:801.093333pt;}
.h7_c01182{height:11.733399pt;}
.h8_c01182{height:38.937500pt;}
.h4_c01182{height:44.470052pt;}
.h5_c01182{height:44.492188pt;}
.h2_c01182{height:73.978667pt;}
.h6_c01182{height:74.906250pt;}
.h3_c01182{height:81.031250pt;}
.h1_c01182{height:115.480469pt;}
.h0_c01182{height:860.666667pt;}
.w2_c01182{width:93.222667pt;}
.w1_c01182{width:586.000000pt;}
.w0_c01182{width:586.066667pt;}
.x0_c01182{left:0.000000pt;}
.xe_c01182{left:19.200000pt;}
.xa_c01182{left:22.533333pt;}
.xd_c01182{left:30.000000pt;}
.xf_c01182{left:33.333333pt;}
.xc_c01182{left:34.800000pt;}
.xb_c01182{left:35.733333pt;}
.x9_c01182{left:37.200000pt;}
.x6_c01182{left:38.933333pt;}
.x5_c01182{left:39.866667pt;}
.x4_c01182{left:41.066667pt;}
.x3_c01182{left:42.000000pt;}
.x2_c01182{left:42.933333pt;}
.x8_c01182{left:69.600000pt;}
.x1_c01182{left:86.666667pt;}
.x7_c01182{left:117.333333pt;}
.x11_c01182{left:250.201538pt;}
.x10_c01182{left:429.866667pt;}
}





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

.ir_c01183:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01183{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01183;src:url('chunks/assets/font_00026bb32fd10c5647ed8903.woff2')format("woff");}.ff1_c01183{font-family:ff1_c01183;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01183;src:url('chunks/assets/font_f538ac68e234d020125f07e7.woff2')format("woff");}.ff2_c01183{font-family:ff2_c01183;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01183;src:url('chunks/assets/font_40f30b0d2031f292dd09c0ec.woff2')format("woff");}.ff3_c01183{font-family:ff3_c01183;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01183;src:url('chunks/assets/font_1f86ce759ba171ac675d242a.woff2')format("woff");}.ff4_c01183{font-family:ff4_c01183;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01183;src:url('chunks/assets/font_57ec47141c555901129e850b.woff2')format("woff");}.ff5_c01183{font-family:ff5_c01183;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01183;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c01183{font-family:ff6_c01183;line-height:1.219238;font-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_c01183{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m0_c01183{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01183{vertical-align:0.000000px;}
.ls2_c01183{letter-spacing:0.000000px;}
.ls1_c01183{letter-spacing:2.880000px;}
.ls0_c01183{letter-spacing:5.202000px;}
.sc__c01183{text-shadow:none;}
.sc0_c01183{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01183{-webkit-text-stroke:0px transparent;}
.sc0_c01183{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01183{word-spacing:-17.352000px;}
.ws1_c01183{word-spacing:-13.737000px;}
.ws2_c01183{word-spacing:0.000000px;}
._c_c01183{margin-left:-33.774000px;}
._19_c01183{margin-left:-25.536000px;}
._17_c01183{margin-left:-21.918000px;}
._15_c01183{margin-left:-18.288000px;}
._0_c01183{margin-left:-16.896000px;}
._20_c01183{margin-left:-13.881000px;}
._1e_c01183{margin-left:-10.452000px;}
._21_c01183{margin-left:-8.580000px;}
._22_c01183{margin-left:-7.482000px;}
._12_c01183{margin-left:-6.474000px;}
._13_c01183{margin-left:-4.836000px;}
._1b_c01183{margin-left:-3.672000px;}
._4_c01183{margin-left:-2.652000px;}
._5_c01183{margin-left:-1.014000px;}
._f_c01183{width:1.170000px;}
._3_c01183{width:2.184000px;}
._6_c01183{width:3.198000px;}
._2_c01183{width:4.212000px;}
._8_c01183{width:5.304000px;}
._11_c01183{width:6.942000px;}
._7_c01183{width:8.112000px;}
._b_c01183{width:10.203000px;}
._a_c01183{width:11.463000px;}
._9_c01183{width:12.654000px;}
._10_c01183{width:14.040000px;}
._14_c01183{width:15.444000px;}
._1d_c01183{width:18.258000px;}
._e_c01183{width:19.614000px;}
._1c_c01183{width:21.336000px;}
._1f_c01183{width:22.428000px;}
._18_c01183{width:23.868000px;}
._1a_c01183{width:43.368000px;}
._16_c01183{width:51.168000px;}
._27_c01183{width:53.730000px;}
._26_c01183{width:62.712000px;}
._25_c01183{width:71.370000px;}
._23_c01183{width:100.932000px;}
._1_c01183{width:162.162000px;}
._24_c01183{width:242.208000px;}
._d_c01183{width:546.780000px;}
.fc2_c01183{color:transparent;}
.fc1_c01183{color:rgb(128,128,128);}
.fc0_c01183{color:rgb(0,0,0);}
.fs4_c01183{font-size:48.000000px;}
.fs2_c01183{font-size:57.000000px;}
.fs0_c01183{font-size:72.000000px;}
.fs1_c01183{font-size:78.000000px;}
.fs3_c01183{font-size:87.000000px;}
.y0_c01183{bottom:0.000000px;}
.y24_c01183{bottom:3.105000px;}
.y23_c01183{bottom:7.228371px;}
.y22_c01183{bottom:83.115000px;}
.y21_c01183{bottom:109.065000px;}
.y20_c01183{bottom:133.665000px;}
.y1f_c01183{bottom:158.265000px;}
.y1e_c01183{bottom:182.265000px;}
.y1d_c01183{bottom:206.865000px;}
.y1c_c01183{bottom:231.165000px;}
.y1b_c01183{bottom:255.615000px;}
.y1a_c01183{bottom:280.215000px;}
.y19_c01183{bottom:304.065000px;}
.y18_c01183{bottom:328.365000px;}
.y17_c01183{bottom:353.715000px;}
.y16_c01183{bottom:376.665000px;}
.y15_c01183{bottom:400.365000px;}
.y14_c01183{bottom:424.665000px;}
.y13_c01183{bottom:448.665000px;}
.y12_c01183{bottom:472.515000px;}
.y11_c01183{bottom:496.215000px;}
.y10_c01183{bottom:520.065000px;}
.yf_c01183{bottom:543.465000px;}
.ye_c01183{bottom:567.015000px;}
.yd_c01183{bottom:591.015000px;}
.yc_c01183{bottom:615.615000px;}
.yb_c01183{bottom:639.915000px;}
.ya_c01183{bottom:662.865000px;}
.y9_c01183{bottom:686.565000px;}
.y8_c01183{bottom:710.865000px;}
.y7_c01183{bottom:734.415000px;}
.y6_c01183{bottom:758.415000px;}
.y5_c01183{bottom:782.415000px;}
.y4_c01183{bottom:806.265000px;}
.y3_c01183{bottom:830.715000px;}
.y2_c01183{bottom:855.915000px;}
.y1_c01183{bottom:878.565000px;}
.h7_c01183{height:13.200074px;}
.h8_c01183{height:43.804688px;}
.h5_c01183{height:83.226000px;}
.h2_c01183{height:84.269531px;}
.h4_c01183{height:87.679688px;}
.h6_c01183{height:91.160156px;}
.h3_c01183{height:98.756836px;}
.h1_c01183{height:986.250000px;}
.h0_c01183{height:986.325000px;}
.w2_c01183{width:104.875500px;}
.w0_c01183{width:667.425000px;}
.w1_c01183{width:667.500000px;}
.x0_c01183{left:0.000000px;}
.x2_c01183{left:19.350000px;}
.x10_c01183{left:39.150000px;}
.x19_c01183{left:46.650000px;}
.x1a_c01183{left:49.350000px;}
.x1_c01183{left:57.300000px;}
.x3_c01183{left:87.750000px;}
.x4_c01183{left:94.200000px;}
.x5_c01183{left:109.350000px;}
.x6_c01183{left:110.700000px;}
.x7_c01183{left:112.500000px;}
.x8_c01183{left:113.700000px;}
.x9_c01183{left:115.200000px;}
.xa_c01183{left:116.400000px;}
.xb_c01183{left:118.500000px;}
.xc_c01183{left:120.450000px;}
.xd_c01183{left:121.500000px;}
.xf_c01183{left:123.300000px;}
.xe_c01183{left:125.550000px;}
.x11_c01183{left:126.600000px;}
.x12_c01183{left:128.700000px;}
.x16_c01183{left:130.350000px;}
.x17_c01183{left:132.600000px;}
.x18_c01183{left:133.650000px;}
.x15_c01183{left:150.600000px;}
.x1b_c01183{left:285.526749px;}
.x13_c01183{left:570.150000px;}
.x14_c01183{left:580.200000px;}
@media print{
.v0_c01183{vertical-align:0.000000pt;}
.ls2_c01183{letter-spacing:0.000000pt;}
.ls1_c01183{letter-spacing:2.560000pt;}
.ls0_c01183{letter-spacing:4.624000pt;}
.ws0_c01183{word-spacing:-15.424000pt;}
.ws1_c01183{word-spacing:-12.210667pt;}
.ws2_c01183{word-spacing:0.000000pt;}
._c_c01183{margin-left:-30.021333pt;}
._19_c01183{margin-left:-22.698667pt;}
._17_c01183{margin-left:-19.482667pt;}
._15_c01183{margin-left:-16.256000pt;}
._0_c01183{margin-left:-15.018667pt;}
._20_c01183{margin-left:-12.338667pt;}
._1e_c01183{margin-left:-9.290667pt;}
._21_c01183{margin-left:-7.626667pt;}
._22_c01183{margin-left:-6.650667pt;}
._12_c01183{margin-left:-5.754667pt;}
._13_c01183{margin-left:-4.298667pt;}
._1b_c01183{margin-left:-3.264000pt;}
._4_c01183{margin-left:-2.357333pt;}
._5_c01183{margin-left:-0.901333pt;}
._f_c01183{width:1.040000pt;}
._3_c01183{width:1.941333pt;}
._6_c01183{width:2.842667pt;}
._2_c01183{width:3.744000pt;}
._8_c01183{width:4.714667pt;}
._11_c01183{width:6.170667pt;}
._7_c01183{width:7.210667pt;}
._b_c01183{width:9.069333pt;}
._a_c01183{width:10.189333pt;}
._9_c01183{width:11.248000pt;}
._10_c01183{width:12.480000pt;}
._14_c01183{width:13.728000pt;}
._1d_c01183{width:16.229333pt;}
._e_c01183{width:17.434667pt;}
._1c_c01183{width:18.965333pt;}
._1f_c01183{width:19.936000pt;}
._18_c01183{width:21.216000pt;}
._1a_c01183{width:38.549333pt;}
._16_c01183{width:45.482667pt;}
._27_c01183{width:47.760000pt;}
._26_c01183{width:55.744000pt;}
._25_c01183{width:63.440000pt;}
._23_c01183{width:89.717333pt;}
._1_c01183{width:144.144000pt;}
._24_c01183{width:215.296000pt;}
._d_c01183{width:486.026667pt;}
.fs4_c01183{font-size:42.666667pt;}
.fs2_c01183{font-size:50.666667pt;}
.fs0_c01183{font-size:64.000000pt;}
.fs1_c01183{font-size:69.333333pt;}
.fs3_c01183{font-size:77.333333pt;}
.y0_c01183{bottom:0.000000pt;}
.y24_c01183{bottom:2.760000pt;}
.y23_c01183{bottom:6.425219pt;}
.y22_c01183{bottom:73.880000pt;}
.y21_c01183{bottom:96.946667pt;}
.y20_c01183{bottom:118.813333pt;}
.y1f_c01183{bottom:140.680000pt;}
.y1e_c01183{bottom:162.013333pt;}
.y1d_c01183{bottom:183.880000pt;}
.y1c_c01183{bottom:205.480000pt;}
.y1b_c01183{bottom:227.213333pt;}
.y1a_c01183{bottom:249.080000pt;}
.y19_c01183{bottom:270.280000pt;}
.y18_c01183{bottom:291.880000pt;}
.y17_c01183{bottom:314.413333pt;}
.y16_c01183{bottom:334.813333pt;}
.y15_c01183{bottom:355.880000pt;}
.y14_c01183{bottom:377.480000pt;}
.y13_c01183{bottom:398.813333pt;}
.y12_c01183{bottom:420.013333pt;}
.y11_c01183{bottom:441.080000pt;}
.y10_c01183{bottom:462.280000pt;}
.yf_c01183{bottom:483.080000pt;}
.ye_c01183{bottom:504.013333pt;}
.yd_c01183{bottom:525.346667pt;}
.yc_c01183{bottom:547.213333pt;}
.yb_c01183{bottom:568.813333pt;}
.ya_c01183{bottom:589.213333pt;}
.y9_c01183{bottom:610.280000pt;}
.y8_c01183{bottom:631.880000pt;}
.y7_c01183{bottom:652.813333pt;}
.y6_c01183{bottom:674.146667pt;}
.y5_c01183{bottom:695.480000pt;}
.y4_c01183{bottom:716.680000pt;}
.y3_c01183{bottom:738.413333pt;}
.y2_c01183{bottom:760.813333pt;}
.y1_c01183{bottom:780.946667pt;}
.h7_c01183{height:11.733399pt;}
.h8_c01183{height:38.937500pt;}
.h5_c01183{height:73.978667pt;}
.h2_c01183{height:74.906250pt;}
.h4_c01183{height:77.937500pt;}
.h6_c01183{height:81.031250pt;}
.h3_c01183{height:87.783854pt;}
.h1_c01183{height:876.666667pt;}
.h0_c01183{height:876.733333pt;}
.w2_c01183{width:93.222667pt;}
.w0_c01183{width:593.266667pt;}
.w1_c01183{width:593.333333pt;}
.x0_c01183{left:0.000000pt;}
.x2_c01183{left:17.200000pt;}
.x10_c01183{left:34.800000pt;}
.x19_c01183{left:41.466667pt;}
.x1a_c01183{left:43.866667pt;}
.x1_c01183{left:50.933333pt;}
.x3_c01183{left:78.000000pt;}
.x4_c01183{left:83.733333pt;}
.x5_c01183{left:97.200000pt;}
.x6_c01183{left:98.400000pt;}
.x7_c01183{left:100.000000pt;}
.x8_c01183{left:101.066667pt;}
.x9_c01183{left:102.400000pt;}
.xa_c01183{left:103.466667pt;}
.xb_c01183{left:105.333333pt;}
.xc_c01183{left:107.066667pt;}
.xd_c01183{left:108.000000pt;}
.xf_c01183{left:109.600000pt;}
.xe_c01183{left:111.600000pt;}
.x11_c01183{left:112.533333pt;}
.x12_c01183{left:114.400000pt;}
.x16_c01183{left:115.866667pt;}
.x17_c01183{left:117.866667pt;}
.x18_c01183{left:118.800000pt;}
.x15_c01183{left:133.866667pt;}
.x1b_c01183{left:253.801554pt;}
.x13_c01183{left:506.800000pt;}
.x14_c01183{left:515.733333pt;}
}





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

.ir_c01184:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01184{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01184;src:url('chunks/assets/font_68ad6d0dc49d82c8c397cbff.woff2')format("woff");}.ff1_c01184{font-family:ff1_c01184;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01184;src:url('chunks/assets/font_a78e64d57ea6c3768c19f8bb.woff2')format("woff");}.ff2_c01184{font-family:ff2_c01184;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01184;src:url('chunks/assets/font_5672fa5b564d5bae0be6aa6d.woff2')format("woff");}.ff3_c01184{font-family:ff3_c01184;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01184;src:url('chunks/assets/font_8cf8f8bc274522e05dfb6868.woff2')format("woff");}.ff4_c01184{font-family:ff4_c01184;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01184;src:url('chunks/assets/font_d480df378db947d4e4fc6e95.woff2')format("woff");}.ff5_c01184{font-family:ff5_c01184;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01184;src:url('chunks/assets/font_9addb5639b3cb95faf266b0a.woff2')format("woff");}.ff6_c01184{font-family:ff6_c01184;line-height:1.284668;font-style:normal;font-weight: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_c01184;src:url('chunks/assets/font_961e759b2aadad25447d2f2f.woff2')format("woff");}.ff7_c01184{font-family:ff7_c01184;line-height:1.284180;font-style:normal;font-weight: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_c01184;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff8_c01184{font-family:ff8_c01184;line-height:1.219238;font-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_c01184{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m0_c01184{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01184{vertical-align:0.000000px;}
.ls1_c01184{letter-spacing:0.000000px;}
.ls0_c01184{letter-spacing:3.000000px;}
.ls2_c01184{letter-spacing:15.000000px;}
.sc__c01184{text-shadow:none;}
.sc0_c01184{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01184{-webkit-text-stroke:0px transparent;}
.sc0_c01184{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01184{word-spacing:-32.352000px;}
.ws0_c01184{word-spacing:-21.750000px;}
.ws2_c01184{word-spacing:-14.250000px;}
.ws3_c01184{word-spacing:-0.909000px;}
.ws4_c01184{word-spacing:0.000000px;}
._1d_c01184{margin-left:-30.708000px;}
._4_c01184{margin-left:-13.500000px;}
._3_c01184{margin-left:-11.970000px;}
._17_c01184{margin-left:-10.524000px;}
._6_c01184{margin-left:-9.360000px;}
._18_c01184{margin-left:-8.028000px;}
._1a_c01184{margin-left:-6.786000px;}
._7_c01184{margin-left:-5.130000px;}
._12_c01184{margin-left:-3.948000px;}
._9_c01184{margin-left:-2.610000px;}
._c_c01184{margin-left:-1.008000px;}
._11_c01184{width:1.014000px;}
._5_c01184{width:2.070000px;}
._8_c01184{width:3.600000px;}
._2_c01184{width:5.490000px;}
._f_c01184{width:6.504000px;}
._e_c01184{width:8.034000px;}
._1b_c01184{width:9.180000px;}
._1_c01184{width:10.440000px;}
._10_c01184{width:12.132000px;}
._0_c01184{width:13.500000px;}
._d_c01184{width:15.822000px;}
._b_c01184{width:18.900000px;}
._1f_c01184{width:20.226000px;}
._15_c01184{width:21.468000px;}
._13_c01184{width:23.118000px;}
._14_c01184{width:24.804000px;}
._1c_c01184{width:27.024000px;}
._19_c01184{width:31.278000px;}
._16_c01184{width:114.804000px;}
._a_c01184{width:116.640000px;}
._20_c01184{width:250.173000px;}
._1e_c01184{width:376.011000px;}
._21_c01184{width:1561.038000px;}
.fc2_c01184{color:transparent;}
.fc1_c01184{color:rgb(128,128,128);}
.fc0_c01184{color:rgb(0,0,0);}
.fs7_c01184{font-size:42.000000px;}
.fs8_c01184{font-size:48.000000px;}
.fs6_c01184{font-size:51.000000px;}
.fs5_c01184{font-size:57.000000px;}
.fs4_c01184{font-size:60.000000px;}
.fs2_c01184{font-size:72.000000px;}
.fs1_c01184{font-size:78.000000px;}
.fs3_c01184{font-size:87.000000px;}
.fs0_c01184{font-size:90.000000px;}
.y0_c01184{bottom:0.000000px;}
.y26_c01184{bottom:3.105000px;}
.y25_c01184{bottom:7.228369px;}
.y24_c01184{bottom:59.070000px;}
.y23_c01184{bottom:83.370000px;}
.y22_c01184{bottom:107.970000px;}
.y21_c01184{bottom:132.570000px;}
.y20_c01184{bottom:156.870000px;}
.y1f_c01184{bottom:181.620000px;}
.y1e_c01184{bottom:205.770000px;}
.y1d_c01184{bottom:230.070000px;}
.y1c_c01184{bottom:254.070000px;}
.y1b_c01184{bottom:278.370000px;}
.y1a_c01184{bottom:302.670000px;}
.y19_c01184{bottom:326.670000px;}
.y18_c01184{bottom:350.970000px;}
.y17_c01184{bottom:374.970000px;}
.y16_c01184{bottom:399.270000px;}
.y15_c01184{bottom:423.270000px;}
.y14_c01184{bottom:447.120000px;}
.y13_c01184{bottom:471.120000px;}
.y12_c01184{bottom:494.670000px;}
.y11_c01184{bottom:519.720000px;}
.y10_c01184{bottom:544.320000px;}
.yf_c01184{bottom:566.970000px;}
.ye_c01184{bottom:592.320000px;}
.yd_c01184{bottom:615.270000px;}
.yc_c01184{bottom:639.270000px;}
.yb_c01184{bottom:662.820000px;}
.ya_c01184{bottom:687.120000px;}
.y9_c01184{bottom:711.420000px;}
.y8_c01184{bottom:736.470000px;}
.y7_c01184{bottom:759.420000px;}
.y6_c01184{bottom:783.570000px;}
.y5_c01184{bottom:807.270000px;}
.y4_c01184{bottom:831.870000px;}
.y3_c01184{bottom:855.870000px;}
.y2_c01184{bottom:879.570000px;}
.y1_c01184{bottom:913.170000px;}
.h8_c01184{height:13.200073px;}
.h9_c01184{height:43.804688px;}
.h7_c01184{height:57.445312px;}
.h6_c01184{height:58.886719px;}
.h3_c01184{height:83.226000px;}
.h5_c01184{height:84.269531px;}
.h4_c01184{height:87.679688px;}
.h2_c01184{height:88.286133px;}
.h0_c01184{height:970.350000px;}
.h1_c01184{height:970.500000px;}
.w2_c01184{width:104.875500px;}
.w0_c01184{width:660.450000px;}
.w1_c01184{width:660.750000px;}
.x0_c01184{left:0.000000px;}
.x5_c01184{left:26.700000px;}
.xa_c01184{left:29.700000px;}
.x10_c01184{left:35.100000px;}
.xf_c01184{left:36.150000px;}
.x6_c01184{left:37.350000px;}
.xc_c01184{left:39.750000px;}
.xb_c01184{left:41.100000px;}
.x9_c01184{left:42.900000px;}
.x8_c01184{left:44.550000px;}
.x7_c01184{left:46.500000px;}
.x4_c01184{left:47.550000px;}
.x3_c01184{left:48.600000px;}
.x2_c01184{left:49.950000px;}
.x1_c01184{left:92.100000px;}
.xd_c01184{left:221.700000px;}
.xe_c01184{left:231.450000px;}
.x11_c01184{left:282.039230px;}
@media print{
.v0_c01184{vertical-align:0.000000pt;}
.ls1_c01184{letter-spacing:0.000000pt;}
.ls0_c01184{letter-spacing:2.666667pt;}
.ls2_c01184{letter-spacing:13.333333pt;}
.ws1_c01184{word-spacing:-28.757333pt;}
.ws0_c01184{word-spacing:-19.333333pt;}
.ws2_c01184{word-spacing:-12.666667pt;}
.ws3_c01184{word-spacing:-0.808000pt;}
.ws4_c01184{word-spacing:0.000000pt;}
._1d_c01184{margin-left:-27.296000pt;}
._4_c01184{margin-left:-12.000000pt;}
._3_c01184{margin-left:-10.640000pt;}
._17_c01184{margin-left:-9.354667pt;}
._6_c01184{margin-left:-8.320000pt;}
._18_c01184{margin-left:-7.136000pt;}
._1a_c01184{margin-left:-6.032000pt;}
._7_c01184{margin-left:-4.560000pt;}
._12_c01184{margin-left:-3.509333pt;}
._9_c01184{margin-left:-2.320000pt;}
._c_c01184{margin-left:-0.896000pt;}
._11_c01184{width:0.901333pt;}
._5_c01184{width:1.840000pt;}
._8_c01184{width:3.200000pt;}
._2_c01184{width:4.880000pt;}
._f_c01184{width:5.781333pt;}
._e_c01184{width:7.141333pt;}
._1b_c01184{width:8.160000pt;}
._1_c01184{width:9.280000pt;}
._10_c01184{width:10.784000pt;}
._0_c01184{width:12.000000pt;}
._d_c01184{width:14.064000pt;}
._b_c01184{width:16.800000pt;}
._1f_c01184{width:17.978667pt;}
._15_c01184{width:19.082667pt;}
._13_c01184{width:20.549333pt;}
._14_c01184{width:22.048000pt;}
._1c_c01184{width:24.021333pt;}
._19_c01184{width:27.802667pt;}
._16_c01184{width:102.048000pt;}
._a_c01184{width:103.680000pt;}
._20_c01184{width:222.376000pt;}
._1e_c01184{width:334.232000pt;}
._21_c01184{width:1387.589333pt;}
.fs7_c01184{font-size:37.333333pt;}
.fs8_c01184{font-size:42.666667pt;}
.fs6_c01184{font-size:45.333333pt;}
.fs5_c01184{font-size:50.666667pt;}
.fs4_c01184{font-size:53.333333pt;}
.fs2_c01184{font-size:64.000000pt;}
.fs1_c01184{font-size:69.333333pt;}
.fs3_c01184{font-size:77.333333pt;}
.fs0_c01184{font-size:80.000000pt;}
.y0_c01184{bottom:0.000000pt;}
.y26_c01184{bottom:2.760000pt;}
.y25_c01184{bottom:6.425217pt;}
.y24_c01184{bottom:52.506667pt;}
.y23_c01184{bottom:74.106667pt;}
.y22_c01184{bottom:95.973333pt;}
.y21_c01184{bottom:117.840000pt;}
.y20_c01184{bottom:139.440000pt;}
.y1f_c01184{bottom:161.440000pt;}
.y1e_c01184{bottom:182.906667pt;}
.y1d_c01184{bottom:204.506667pt;}
.y1c_c01184{bottom:225.840000pt;}
.y1b_c01184{bottom:247.440000pt;}
.y1a_c01184{bottom:269.040000pt;}
.y19_c01184{bottom:290.373333pt;}
.y18_c01184{bottom:311.973333pt;}
.y17_c01184{bottom:333.306667pt;}
.y16_c01184{bottom:354.906667pt;}
.y15_c01184{bottom:376.240000pt;}
.y14_c01184{bottom:397.440000pt;}
.y13_c01184{bottom:418.773333pt;}
.y12_c01184{bottom:439.706667pt;}
.y11_c01184{bottom:461.973333pt;}
.y10_c01184{bottom:483.840000pt;}
.yf_c01184{bottom:503.973333pt;}
.ye_c01184{bottom:526.506667pt;}
.yd_c01184{bottom:546.906667pt;}
.yc_c01184{bottom:568.240000pt;}
.yb_c01184{bottom:589.173333pt;}
.ya_c01184{bottom:610.773333pt;}
.y9_c01184{bottom:632.373333pt;}
.y8_c01184{bottom:654.640000pt;}
.y7_c01184{bottom:675.040000pt;}
.y6_c01184{bottom:696.506667pt;}
.y5_c01184{bottom:717.573333pt;}
.y4_c01184{bottom:739.440000pt;}
.y3_c01184{bottom:760.773333pt;}
.y2_c01184{bottom:781.840000pt;}
.y1_c01184{bottom:811.706667pt;}
.h8_c01184{height:11.733399pt;}
.h9_c01184{height:38.937500pt;}
.h7_c01184{height:51.062500pt;}
.h6_c01184{height:52.343750pt;}
.h3_c01184{height:73.978667pt;}
.h5_c01184{height:74.906250pt;}
.h4_c01184{height:77.937500pt;}
.h2_c01184{height:78.476562pt;}
.h0_c01184{height:862.533333pt;}
.h1_c01184{height:862.666667pt;}
.w2_c01184{width:93.222667pt;}
.w0_c01184{width:587.066667pt;}
.w1_c01184{width:587.333333pt;}
.x0_c01184{left:0.000000pt;}
.x5_c01184{left:23.733333pt;}
.xa_c01184{left:26.400000pt;}
.x10_c01184{left:31.200000pt;}
.xf_c01184{left:32.133333pt;}
.x6_c01184{left:33.200000pt;}
.xc_c01184{left:35.333333pt;}
.xb_c01184{left:36.533333pt;}
.x9_c01184{left:38.133333pt;}
.x8_c01184{left:39.600000pt;}
.x7_c01184{left:41.333333pt;}
.x4_c01184{left:42.266667pt;}
.x3_c01184{left:43.200000pt;}
.x2_c01184{left:44.400000pt;}
.x1_c01184{left:81.866667pt;}
.xd_c01184{left:197.066667pt;}
.xe_c01184{left:205.733333pt;}
.x11_c01184{left:250.701538pt;}
}





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

.ir_c01185:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01185{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01185;src:url('chunks/assets/font_3b33ec46618b0d25c4ba5b4e.woff2')format("woff");}.ff1_c01185{font-family:ff1_c01185;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01185;src:url('chunks/assets/font_bd6fbae05e42ed45d7088222.woff2')format("woff");}.ff2_c01185{font-family:ff2_c01185;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01185;src:url('chunks/assets/font_1f271ed4a3e058521ab225c6.woff2')format("woff");}.ff3_c01185{font-family:ff3_c01185;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01185;src:url('chunks/assets/font_09c69f25f08751a79901ff07.woff2')format("woff");}.ff4_c01185{font-family:ff4_c01185;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01185;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff5_c01185{font-family:ff5_c01185;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01185;src:url('chunks/assets/font_00abbf2f71fc58dd316ef758.woff2')format("woff");}.ff6_c01185{font-family:ff6_c01185;line-height:1.437000;font-style:normal;font-weight: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_c01185;src:url('chunks/assets/font_3708c835b92fafd2d8ea1887.woff2')format("woff");}.ff7_c01185{font-family:ff7_c01185;line-height:1.437000;font-style:normal;font-weight: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_c01185;src:url('chunks/assets/font_e43e9f680c7e2986256883b4.woff2')format("woff");}.ff8_c01185{font-family:ff8_c01185;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c01185;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff9_c01185{font-family:ff9_c01185;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01185{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01185{vertical-align:0.000000px;}
.ls7_c01185{letter-spacing:-12.000000px;}
.ls5_c01185{letter-spacing:0.000000px;}
.ls0_c01185{letter-spacing:3.300000px;}
.ls6_c01185{letter-spacing:9.000000px;}
.ls2_c01185{letter-spacing:9.402000px;}
.ls4_c01185{letter-spacing:21.750000px;}
.ls3_c01185{letter-spacing:37.950000px;}
.ls1_c01185{letter-spacing:39.402000px;}
.sc__c01185{text-shadow:none;}
.sc0_c01185{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01185{-webkit-text-stroke:0px transparent;}
.sc0_c01185{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01185{word-spacing:-22.737000px;}
.ws1_c01185{word-spacing:-13.737000px;}
.ws6_c01185{word-spacing:-10.887000px;}
.ws3_c01185{word-spacing:-2.208000px;}
.ws5_c01185{word-spacing:-0.069000px;}
.ws4_c01185{word-spacing:-0.055200px;}
.ws8_c01185{word-spacing:0.000000px;}
.ws7_c01185{word-spacing:11.748000px;}
.ws0_c01185{word-spacing:11.799000px;}
._22_c01185{margin-left:-50.148000px;}
._17_c01185{margin-left:-11.628000px;}
._16_c01185{margin-left:-6.360000px;}
._1b_c01185{margin-left:-4.830000px;}
._1a_c01185{margin-left:-3.648000px;}
._10_c01185{margin-left:-2.223000px;}
._1d_c01185{margin-left:-1.031400px;}
._5_c01185{width:1.995000px;}
._3_c01185{width:3.933000px;}
._2_c01185{width:5.529000px;}
._0_c01185{width:7.239000px;}
._7_c01185{width:8.436000px;}
._8_c01185{width:9.633000px;}
._a_c01185{width:10.773000px;}
._1_c01185{width:12.312000px;}
._9_c01185{width:15.960000px;}
._f_c01185{width:16.986000px;}
._6_c01185{width:18.255000px;}
._c_c01185{width:19.815000px;}
._b_c01185{width:21.567000px;}
._12_c01185{width:22.857000px;}
._e_c01185{width:23.976000px;}
._d_c01185{width:25.065000px;}
._15_c01185{width:26.070000px;}
._21_c01185{width:27.510000px;}
._11_c01185{width:29.697000px;}
._1c_c01185{width:38.883000px;}
._20_c01185{width:43.242000px;}
._1e_c01185{width:45.600000px;}
._13_c01185{width:102.120000px;}
._19_c01185{width:124.839000px;}
._1f_c01185{width:141.363000px;}
._4_c01185{width:181.773000px;}
._14_c01185{width:224.160000px;}
._18_c01185{width:247.218000px;}
.fc2_c01185{color:transparent;}
.fc1_c01185{color:rgb(128,128,128);}
.fc0_c01185{color:rgb(0,0,0);}
.fs6_c01185{font-size:48.000000px;}
.fs4_c01185{font-size:55.200000px;}
.fs0_c01185{font-size:57.000000px;}
.fs1_c01185{font-size:63.000000px;}
.fs3_c01185{font-size:69.000000px;}
.fs2_c01185{font-size:78.000000px;}
.fs5_c01185{font-size:252.000000px;}
.y0_c01185{bottom:0.000000px;}
.y25_c01185{bottom:3.105000px;}
.y24_c01185{bottom:7.228371px;}
.y22_c01185{bottom:90.765000px;}
.y21_c01185{bottom:116.565000px;}
.y20_c01185{bottom:139.515000px;}
.y1f_c01185{bottom:164.115000px;}
.y1e_c01185{bottom:188.415000px;}
.y1d_c01185{bottom:213.015000px;}
.y1c_c01185{bottom:237.015000px;}
.y1b_c01185{bottom:261.915000px;}
.y1a_c01185{bottom:285.915000px;}
.y19_c01185{bottom:309.915000px;}
.y18_c01185{bottom:334.215000px;}
.y17_c01185{bottom:358.815000px;}
.y16_c01185{bottom:382.815000px;}
.y15_c01185{bottom:406.665000px;}
.y23_c01185{bottom:422.565000px;}
.y14_c01185{bottom:433.815000px;}
.y13_c01185{bottom:455.265000px;}
.y12_c01185{bottom:479.265000px;}
.y11_c01185{bottom:502.965000px;}
.y10_c01185{bottom:549.165000px;}
.yf_c01185{bottom:574.215000px;}
.ye_c01185{bottom:599.115000px;}
.y1_c01185{bottom:600.465000px;}
.yd_c01185{bottom:621.465000px;}
.yc_c01185{bottom:646.365000px;}
.yb_c01185{bottom:669.615000px;}
.ya_c01185{bottom:693.615000px;}
.y9_c01185{bottom:717.315000px;}
.y8_c01185{bottom:741.165000px;}
.y7_c01185{bottom:765.165000px;}
.y6_c01185{bottom:788.715000px;}
.y5_c01185{bottom:812.715000px;}
.y4_c01185{bottom:837.315000px;}
.y3_c01185{bottom:861.015000px;}
.y2_c01185{bottom:885.015000px;}
.h8_c01185{height:13.200074px;}
.h9_c01185{height:43.804688px;}
.h2_c01185{height:57.445312px;}
.h5_c01185{height:66.713379px;}
.h3_c01185{height:72.168457px;}
.h6_c01185{height:72.312000px;}
.h4_c01185{height:98.756836px;}
.h7_c01185{height:268.884000px;}
.h1_c01185{height:986.250000px;}
.h0_c01185{height:986.325000px;}
.w2_c01185{width:104.875500px;}
.w0_c01185{width:667.425000px;}
.w1_c01185{width:667.500000px;}
.x0_c01185{left:0.000000px;}
.x1_c01185{left:33.450000px;}
.xe_c01185{left:34.800000px;}
.x10_c01185{left:36.150000px;}
.xf_c01185{left:37.200000px;}
.x8_c01185{left:63.900000px;}
.x2_c01185{left:121.050000px;}
.x4_c01185{left:122.400000px;}
.x5_c01185{left:123.900000px;}
.x6_c01185{left:125.250000px;}
.x7_c01185{left:126.450000px;}
.xd_c01185{left:130.350000px;}
.x11_c01185{left:132.300000px;}
.x12_c01185{left:133.350000px;}
.x14_c01185{left:134.400000px;}
.x13_c01185{left:135.450000px;}
.x9_c01185{left:157.050000px;}
.xc_c01185{left:169.500000px;}
.xb_c01185{left:171.750000px;}
.x3_c01185{left:223.050000px;}
.x15_c01185{left:285.526749px;}
.xa_c01185{left:296.400000px;}
@media print{
.v0_c01185{vertical-align:0.000000pt;}
.ls7_c01185{letter-spacing:-10.666667pt;}
.ls5_c01185{letter-spacing:0.000000pt;}
.ls0_c01185{letter-spacing:2.933333pt;}
.ls6_c01185{letter-spacing:8.000000pt;}
.ls2_c01185{letter-spacing:8.357333pt;}
.ls4_c01185{letter-spacing:19.333333pt;}
.ls3_c01185{letter-spacing:33.733333pt;}
.ls1_c01185{letter-spacing:35.024000pt;}
.ws2_c01185{word-spacing:-20.210667pt;}
.ws1_c01185{word-spacing:-12.210667pt;}
.ws6_c01185{word-spacing:-9.677333pt;}
.ws3_c01185{word-spacing:-1.962667pt;}
.ws5_c01185{word-spacing:-0.061333pt;}
.ws4_c01185{word-spacing:-0.049067pt;}
.ws8_c01185{word-spacing:0.000000pt;}
.ws7_c01185{word-spacing:10.442667pt;}
.ws0_c01185{word-spacing:10.488000pt;}
._22_c01185{margin-left:-44.576000pt;}
._17_c01185{margin-left:-10.336000pt;}
._16_c01185{margin-left:-5.653333pt;}
._1b_c01185{margin-left:-4.293333pt;}
._1a_c01185{margin-left:-3.242667pt;}
._10_c01185{margin-left:-1.976000pt;}
._1d_c01185{margin-left:-0.916800pt;}
._5_c01185{width:1.773333pt;}
._3_c01185{width:3.496000pt;}
._2_c01185{width:4.914667pt;}
._0_c01185{width:6.434667pt;}
._7_c01185{width:7.498667pt;}
._8_c01185{width:8.562667pt;}
._a_c01185{width:9.576000pt;}
._1_c01185{width:10.944000pt;}
._9_c01185{width:14.186667pt;}
._f_c01185{width:15.098667pt;}
._6_c01185{width:16.226667pt;}
._c_c01185{width:17.613333pt;}
._b_c01185{width:19.170667pt;}
._12_c01185{width:20.317333pt;}
._e_c01185{width:21.312000pt;}
._d_c01185{width:22.280000pt;}
._15_c01185{width:23.173333pt;}
._21_c01185{width:24.453333pt;}
._11_c01185{width:26.397333pt;}
._1c_c01185{width:34.562667pt;}
._20_c01185{width:38.437333pt;}
._1e_c01185{width:40.533333pt;}
._13_c01185{width:90.773333pt;}
._19_c01185{width:110.968000pt;}
._1f_c01185{width:125.656000pt;}
._4_c01185{width:161.576000pt;}
._14_c01185{width:199.253333pt;}
._18_c01185{width:219.749333pt;}
.fs6_c01185{font-size:42.666667pt;}
.fs4_c01185{font-size:49.066667pt;}
.fs0_c01185{font-size:50.666667pt;}
.fs1_c01185{font-size:56.000000pt;}
.fs3_c01185{font-size:61.333333pt;}
.fs2_c01185{font-size:69.333333pt;}
.fs5_c01185{font-size:224.000000pt;}
.y0_c01185{bottom:0.000000pt;}
.y25_c01185{bottom:2.760000pt;}
.y24_c01185{bottom:6.425219pt;}
.y22_c01185{bottom:80.680000pt;}
.y21_c01185{bottom:103.613333pt;}
.y20_c01185{bottom:124.013333pt;}
.y1f_c01185{bottom:145.880000pt;}
.y1e_c01185{bottom:167.480000pt;}
.y1d_c01185{bottom:189.346667pt;}
.y1c_c01185{bottom:210.680000pt;}
.y1b_c01185{bottom:232.813333pt;}
.y1a_c01185{bottom:254.146667pt;}
.y19_c01185{bottom:275.480000pt;}
.y18_c01185{bottom:297.080000pt;}
.y17_c01185{bottom:318.946667pt;}
.y16_c01185{bottom:340.280000pt;}
.y15_c01185{bottom:361.480000pt;}
.y23_c01185{bottom:375.613333pt;}
.y14_c01185{bottom:385.613333pt;}
.y13_c01185{bottom:404.680000pt;}
.y12_c01185{bottom:426.013333pt;}
.y11_c01185{bottom:447.080000pt;}
.y10_c01185{bottom:488.146667pt;}
.yf_c01185{bottom:510.413333pt;}
.ye_c01185{bottom:532.546667pt;}
.y1_c01185{bottom:533.746667pt;}
.yd_c01185{bottom:552.413333pt;}
.yc_c01185{bottom:574.546667pt;}
.yb_c01185{bottom:595.213333pt;}
.ya_c01185{bottom:616.546667pt;}
.y9_c01185{bottom:637.613333pt;}
.y8_c01185{bottom:658.813333pt;}
.y7_c01185{bottom:680.146667pt;}
.y6_c01185{bottom:701.080000pt;}
.y5_c01185{bottom:722.413333pt;}
.y4_c01185{bottom:744.280000pt;}
.y3_c01185{bottom:765.346667pt;}
.y2_c01185{bottom:786.680000pt;}
.h8_c01185{height:11.733399pt;}
.h9_c01185{height:38.937500pt;}
.h2_c01185{height:51.062500pt;}
.h5_c01185{height:59.300781pt;}
.h3_c01185{height:64.149740pt;}
.h6_c01185{height:64.277333pt;}
.h4_c01185{height:87.783854pt;}
.h7_c01185{height:239.008000pt;}
.h1_c01185{height:876.666667pt;}
.h0_c01185{height:876.733333pt;}
.w2_c01185{width:93.222667pt;}
.w0_c01185{width:593.266667pt;}
.w1_c01185{width:593.333333pt;}
.x0_c01185{left:0.000000pt;}
.x1_c01185{left:29.733333pt;}
.xe_c01185{left:30.933333pt;}
.x10_c01185{left:32.133333pt;}
.xf_c01185{left:33.066667pt;}
.x8_c01185{left:56.800000pt;}
.x2_c01185{left:107.600000pt;}
.x4_c01185{left:108.800000pt;}
.x5_c01185{left:110.133333pt;}
.x6_c01185{left:111.333333pt;}
.x7_c01185{left:112.400000pt;}
.xd_c01185{left:115.866667pt;}
.x11_c01185{left:117.600000pt;}
.x12_c01185{left:118.533333pt;}
.x14_c01185{left:119.466667pt;}
.x13_c01185{left:120.400000pt;}
.x9_c01185{left:139.600000pt;}
.xc_c01185{left:150.666667pt;}
.xb_c01185{left:152.666667pt;}
.x3_c01185{left:198.266667pt;}
.x15_c01185{left:253.801554pt;}
.xa_c01185{left:263.466667pt;}
}





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

.ir_c01186:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01186{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01186;src:url('chunks/assets/font_8d1a5b1512b3217a743abe4c.woff2')format("woff");}.ff1_c01186{font-family:ff1_c01186;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01186;src:url('chunks/assets/font_1dbc092b5baa2d889b39c837.woff2')format("woff");}.ff2_c01186{font-family:ff2_c01186;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01186;src:url('chunks/assets/font_ff477e5c6cd6dda59b39fc9e.woff2')format("woff");}.ff3_c01186{font-family:ff3_c01186;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01186;src:url('chunks/assets/font_7b2f8a0fa621de6afaa48198.woff2')format("woff");}.ff4_c01186{font-family:ff4_c01186;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01186;src:url('chunks/assets/font_03c6aa27d611acbd327e9315.woff2')format("woff");}.ff5_c01186{font-family:ff5_c01186;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01186;src:url('chunks/assets/font_bf9880b63adce7b0ee481985.woff2')format("woff");}.ff6_c01186{font-family:ff6_c01186;line-height:1.284180;font-style:normal;font-weight: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_c01186;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c01186{font-family:ff7_c01186;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01186{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01186{vertical-align:0.000000px;}
.ls3_c01186{letter-spacing:-6.000000px;}
.ls4_c01186{letter-spacing:0.000000px;}
.ls0_c01186{letter-spacing:2.292000px;}
.ls1_c01186{letter-spacing:5.346000px;}
.ls2_c01186{letter-spacing:14.700000px;}
.sc__c01186{text-shadow:none;}
.sc0_c01186{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01186{-webkit-text-stroke:0px transparent;}
.sc0_c01186{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01186{word-spacing:-39.312000px;}
.ws2_c01186{word-spacing:-32.923200px;}
.ws3_c01186{word-spacing:-26.619000px;}
.ws1_c01186{word-spacing:-14.250000px;}
.ws4_c01186{word-spacing:0.000000px;}
._0_c01186{margin-left:-22.752000px;}
._24_c01186{margin-left:-16.926000px;}
._a_c01186{margin-left:-12.882000px;}
._3_c01186{margin-left:-11.253000px;}
._1_c01186{margin-left:-9.984000px;}
._d_c01186{margin-left:-8.436000px;}
._c_c01186{margin-left:-4.731000px;}
._2b_c01186{margin-left:-3.600600px;}
._2_c01186{margin-left:-2.112000px;}
._5_c01186{width:1.116000px;}
._4_c01186{width:2.139000px;}
._1a_c01186{width:3.684000px;}
._15_c01186{width:4.959000px;}
._6_c01186{width:6.231000px;}
._1c_c01186{width:7.269000px;}
._11_c01186{width:8.436000px;}
._18_c01186{width:9.462000px;}
._10_c01186{width:10.641000px;}
._17_c01186{width:11.970000px;}
._12_c01186{width:13.152000px;}
._13_c01186{width:15.903000px;}
._19_c01186{width:16.929000px;}
._9_c01186{width:18.414000px;}
._16_c01186{width:19.425000px;}
._22_c01186{width:20.691000px;}
._1b_c01186{width:21.870000px;}
._20_c01186{width:23.028000px;}
._1e_c01186{width:24.792000px;}
._14_c01186{width:26.619000px;}
._8_c01186{width:28.458000px;}
._21_c01186{width:30.612000px;}
._2c_c01186{width:32.250000px;}
._28_c01186{width:34.809000px;}
._26_c01186{width:37.587000px;}
._e_c01186{width:43.947000px;}
._25_c01186{width:48.426000px;}
._7_c01186{width:97.686000px;}
._27_c01186{width:99.948000px;}
._b_c01186{width:104.562000px;}
._1f_c01186{width:123.444000px;}
._23_c01186{width:127.293000px;}
._1d_c01186{width:136.725000px;}
._29_c01186{width:156.996000px;}
._2d_c01186{width:207.750000px;}
._2a_c01186{width:257.541000px;}
._f_c01186{width:293.973000px;}
.fc2_c01186{color:transparent;}
.fc1_c01186{color:rgb(128,128,128);}
.fc0_c01186{color:rgb(0,0,0);}
.fs4_c01186{font-size:45.600000px;}
.fs5_c01186{font-size:48.000000px;}
.fs2_c01186{font-size:57.000000px;}
.fs3_c01186{font-size:72.000000px;}
.fs0_c01186{font-size:93.000000px;}
.fs1_c01186{font-size:96.000000px;}
.y0_c01186{bottom:0.000000px;}
.y27_c01186{bottom:3.105000px;}
.y26_c01186{bottom:7.228369px;}
.y25_c01186{bottom:69.420000px;}
.y24_c01186{bottom:92.520000px;}
.y23_c01186{bottom:118.470000px;}
.y22_c01186{bottom:142.770000px;}
.y21_c01186{bottom:167.070000px;}
.y20_c01186{bottom:191.070000px;}
.y1f_c01186{bottom:215.970000px;}
.y1e_c01186{bottom:240.570000px;}
.y1d_c01186{bottom:264.570000px;}
.y1c_c01186{bottom:288.870000px;}
.y1b_c01186{bottom:312.870000px;}
.y1a_c01186{bottom:336.720000px;}
.y19_c01186{bottom:359.670000px;}
.y18_c01186{bottom:383.970000px;}
.y17_c01186{bottom:407.670000px;}
.y16_c01186{bottom:432.720000px;}
.y15_c01186{bottom:456.570000px;}
.y14_c01186{bottom:479.220000px;}
.y13_c01186{bottom:503.220000px;}
.y12_c01186{bottom:527.220000px;}
.y11_c01186{bottom:551.520000px;}
.y10_c01186{bottom:575.370000px;}
.yf_c01186{bottom:599.070000px;}
.ye_c01186{bottom:623.070000px;}
.yd_c01186{bottom:646.920000px;}
.yc_c01186{bottom:672.270000px;}
.yb_c01186{bottom:695.520000px;}
.ya_c01186{bottom:719.820000px;}
.y9_c01186{bottom:742.470000px;}
.y8_c01186{bottom:766.470000px;}
.y7_c01186{bottom:790.320000px;}
.y6_c01186{bottom:815.070000px;}
.y5_c01186{bottom:838.620000px;}
.y4_c01186{bottom:863.220000px;}
.y3_c01186{bottom:886.170000px;}
.y2_c01186{bottom:910.170000px;}
.y1_c01186{bottom:920.970000px;}
.h5_c01186{height:13.200073px;}
.h6_c01186{height:43.804688px;}
.h3_c01186{height:57.445312px;}
.h4_c01186{height:72.562500px;}
.h2_c01186{height:112.359375px;}
.h1_c01186{height:986.250000px;}
.h0_c01186{height:986.550000px;}
.w1_c01186{width:104.875500px;}
.w0_c01186{width:672.000000px;}
.x0_c01186{left:0.000000px;}
.x3_c01186{left:36.150000px;}
.x5_c01186{left:38.100000px;}
.x6_c01186{left:39.150000px;}
.x7_c01186{left:40.800000px;}
.x8_c01186{left:41.850000px;}
.x4_c01186{left:43.200000px;}
.x2_c01186{left:54.300000px;}
.x1_c01186{left:75.300000px;}
.xa_c01186{left:287.814240px;}
.x9_c01186{left:478.500000px;}
@media print{
.v0_c01186{vertical-align:0.000000pt;}
.ls3_c01186{letter-spacing:-5.333333pt;}
.ls4_c01186{letter-spacing:0.000000pt;}
.ls0_c01186{letter-spacing:2.037333pt;}
.ls1_c01186{letter-spacing:4.752000pt;}
.ls2_c01186{letter-spacing:13.066667pt;}
.ws0_c01186{word-spacing:-34.944000pt;}
.ws2_c01186{word-spacing:-29.265067pt;}
.ws3_c01186{word-spacing:-23.661333pt;}
.ws1_c01186{word-spacing:-12.666667pt;}
.ws4_c01186{word-spacing:0.000000pt;}
._0_c01186{margin-left:-20.224000pt;}
._24_c01186{margin-left:-15.045333pt;}
._a_c01186{margin-left:-11.450667pt;}
._3_c01186{margin-left:-10.002667pt;}
._1_c01186{margin-left:-8.874667pt;}
._d_c01186{margin-left:-7.498667pt;}
._c_c01186{margin-left:-4.205333pt;}
._2b_c01186{margin-left:-3.200533pt;}
._2_c01186{margin-left:-1.877333pt;}
._5_c01186{width:0.992000pt;}
._4_c01186{width:1.901333pt;}
._1a_c01186{width:3.274667pt;}
._15_c01186{width:4.408000pt;}
._6_c01186{width:5.538667pt;}
._1c_c01186{width:6.461333pt;}
._11_c01186{width:7.498667pt;}
._18_c01186{width:8.410667pt;}
._10_c01186{width:9.458667pt;}
._17_c01186{width:10.640000pt;}
._12_c01186{width:11.690667pt;}
._13_c01186{width:14.136000pt;}
._19_c01186{width:15.048000pt;}
._9_c01186{width:16.368000pt;}
._16_c01186{width:17.266667pt;}
._22_c01186{width:18.392000pt;}
._1b_c01186{width:19.440000pt;}
._20_c01186{width:20.469333pt;}
._1e_c01186{width:22.037333pt;}
._14_c01186{width:23.661333pt;}
._8_c01186{width:25.296000pt;}
._21_c01186{width:27.210667pt;}
._2c_c01186{width:28.666667pt;}
._28_c01186{width:30.941333pt;}
._26_c01186{width:33.410667pt;}
._e_c01186{width:39.064000pt;}
._25_c01186{width:43.045333pt;}
._7_c01186{width:86.832000pt;}
._27_c01186{width:88.842667pt;}
._b_c01186{width:92.944000pt;}
._1f_c01186{width:109.728000pt;}
._23_c01186{width:113.149333pt;}
._1d_c01186{width:121.533333pt;}
._29_c01186{width:139.552000pt;}
._2d_c01186{width:184.666667pt;}
._2a_c01186{width:228.925333pt;}
._f_c01186{width:261.309333pt;}
.fs4_c01186{font-size:40.533333pt;}
.fs5_c01186{font-size:42.666667pt;}
.fs2_c01186{font-size:50.666667pt;}
.fs3_c01186{font-size:64.000000pt;}
.fs0_c01186{font-size:82.666667pt;}
.fs1_c01186{font-size:85.333333pt;}
.y0_c01186{bottom:0.000000pt;}
.y27_c01186{bottom:2.760000pt;}
.y26_c01186{bottom:6.425217pt;}
.y25_c01186{bottom:61.706667pt;}
.y24_c01186{bottom:82.240000pt;}
.y23_c01186{bottom:105.306667pt;}
.y22_c01186{bottom:126.906667pt;}
.y21_c01186{bottom:148.506667pt;}
.y20_c01186{bottom:169.840000pt;}
.y1f_c01186{bottom:191.973333pt;}
.y1e_c01186{bottom:213.840000pt;}
.y1d_c01186{bottom:235.173333pt;}
.y1c_c01186{bottom:256.773333pt;}
.y1b_c01186{bottom:278.106667pt;}
.y1a_c01186{bottom:299.306667pt;}
.y19_c01186{bottom:319.706667pt;}
.y18_c01186{bottom:341.306667pt;}
.y17_c01186{bottom:362.373333pt;}
.y16_c01186{bottom:384.640000pt;}
.y15_c01186{bottom:405.840000pt;}
.y14_c01186{bottom:425.973333pt;}
.y13_c01186{bottom:447.306667pt;}
.y12_c01186{bottom:468.640000pt;}
.y11_c01186{bottom:490.240000pt;}
.y10_c01186{bottom:511.440000pt;}
.yf_c01186{bottom:532.506667pt;}
.ye_c01186{bottom:553.840000pt;}
.yd_c01186{bottom:575.040000pt;}
.yc_c01186{bottom:597.573333pt;}
.yb_c01186{bottom:618.240000pt;}
.ya_c01186{bottom:639.840000pt;}
.y9_c01186{bottom:659.973333pt;}
.y8_c01186{bottom:681.306667pt;}
.y7_c01186{bottom:702.506667pt;}
.y6_c01186{bottom:724.506667pt;}
.y5_c01186{bottom:745.440000pt;}
.y4_c01186{bottom:767.306667pt;}
.y3_c01186{bottom:787.706667pt;}
.y2_c01186{bottom:809.040000pt;}
.y1_c01186{bottom:818.640000pt;}
.h5_c01186{height:11.733399pt;}
.h6_c01186{height:38.937500pt;}
.h3_c01186{height:51.062500pt;}
.h4_c01186{height:64.500000pt;}
.h2_c01186{height:99.875000pt;}
.h1_c01186{height:876.666667pt;}
.h0_c01186{height:876.933333pt;}
.w1_c01186{width:93.222667pt;}
.w0_c01186{width:597.333333pt;}
.x0_c01186{left:0.000000pt;}
.x3_c01186{left:32.133333pt;}
.x5_c01186{left:33.866667pt;}
.x6_c01186{left:34.800000pt;}
.x7_c01186{left:36.266667pt;}
.x8_c01186{left:37.200000pt;}
.x4_c01186{left:38.400000pt;}
.x2_c01186{left:48.266667pt;}
.x1_c01186{left:66.933333pt;}
.xa_c01186{left:255.834880pt;}
.x9_c01186{left:425.333333pt;}
}





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

.ir_c01187:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01187{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01187;src:url('chunks/assets/font_4c2d8094897ffcbcccf145f6.woff2')format("woff");}.ff1_c01187{font-family:ff1_c01187;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01187;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff2_c01187{font-family:ff2_c01187;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01187;src:url('chunks/assets/font_491c837f4027690a500b573a.woff2')format("woff");}.ff3_c01187{font-family:ff3_c01187;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01187;src:url('chunks/assets/font_f3d4958c8008d77d4fa3f657.woff2')format("woff");}.ff4_c01187{font-family:ff4_c01187;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01187;src:url('chunks/assets/font_2ab966961b5254c49c7135cb.woff2')format("woff");}.ff5_c01187{font-family:ff5_c01187;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01187;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c01187{font-family:ff6_c01187;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01187{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01187{vertical-align:0.000000px;}
.ls1_c01187{letter-spacing:0.000000px;}
.ls0_c01187{letter-spacing:2.202000px;}
.ls2_c01187{letter-spacing:3.000000px;}
.sc__c01187{text-shadow:none;}
.sc0_c01187{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01187{-webkit-text-stroke:0px transparent;}
.sc0_c01187{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01187{word-spacing:-28.500000px;}
.ws0_c01187{word-spacing:-15.846000px;}
.ws2_c01187{word-spacing:0.000000px;}
._1a_c01187{margin-left:-35.400000px;}
._1b_c01187{margin-left:-9.861000px;}
._16_c01187{margin-left:-6.498000px;}
._17_c01187{margin-left:-3.852000px;}
._18_c01187{margin-left:-1.344000px;}
._12_c01187{width:1.254000px;}
._11_c01187{width:2.508000px;}
._b_c01187{width:3.876000px;}
._8_c01187{width:5.472000px;}
._10_c01187{width:6.555000px;}
._0_c01187{width:7.581000px;}
._5_c01187{width:8.664000px;}
._1_c01187{width:10.032000px;}
._a_c01187{width:11.913000px;}
._2_c01187{width:12.996000px;}
._3_c01187{width:15.390000px;}
._4_c01187{width:16.872000px;}
._6_c01187{width:18.696000px;}
._7_c01187{width:20.235000px;}
._1e_c01187{width:21.318000px;}
._9_c01187{width:22.401000px;}
._c_c01187{width:23.598000px;}
._f_c01187{width:24.624000px;}
._15_c01187{width:25.650000px;}
._e_c01187{width:26.904000px;}
._1c_c01187{width:28.044000px;}
._14_c01187{width:30.381000px;}
._1d_c01187{width:31.407000px;}
._d_c01187{width:33.402000px;}
._1f_c01187{width:34.599000px;}
._22_c01187{width:36.879000px;}
._21_c01187{width:37.962000px;}
._13_c01187{width:40.812000px;}
._20_c01187{width:106.224000px;}
._19_c01187{width:115.896000px;}
._23_c01187{width:131.019000px;}
.fc2_c01187{color:transparent;}
.fc1_c01187{color:rgb(128,128,128);}
.fc0_c01187{color:rgb(0,0,0);}
.fs2_c01187{font-size:42.000000px;}
.fs3_c01187{font-size:48.000000px;}
.fs0_c01187{font-size:57.000000px;}
.fs1_c01187{font-size:78.000000px;}
.y0_c01187{bottom:0.000000px;}
.y24_c01187{bottom:3.105000px;}
.y23_c01187{bottom:7.228371px;}
.y22_c01187{bottom:86.115000px;}
.y21_c01187{bottom:111.165000px;}
.y20_c01187{bottom:136.365000px;}
.y1f_c01187{bottom:163.665000px;}
.y1e_c01187{bottom:186.615000px;}
.y1d_c01187{bottom:209.265000px;}
.y1c_c01187{bottom:233.565000px;}
.y1b_c01187{bottom:257.865000px;}
.y1a_c01187{bottom:281.865000px;}
.y19_c01187{bottom:306.165000px;}
.y18_c01187{bottom:331.065000px;}
.y17_c01187{bottom:354.765000px;}
.y16_c01187{bottom:378.765000px;}
.y15_c01187{bottom:403.065000px;}
.y14_c01187{bottom:427.065000px;}
.y13_c01187{bottom:451.215000px;}
.y12_c01187{bottom:474.915000px;}
.y11_c01187{bottom:497.565000px;}
.y10_c01187{bottom:521.865000px;}
.yf_c01187{bottom:546.765000px;}
.ye_c01187{bottom:570.015000px;}
.yd_c01187{bottom:594.315000px;}
.yc_c01187{bottom:618.015000px;}
.yb_c01187{bottom:642.315000px;}
.ya_c01187{bottom:666.315000px;}
.y9_c01187{bottom:690.315000px;}
.y8_c01187{bottom:714.465000px;}
.y7_c01187{bottom:738.165000px;}
.y6_c01187{bottom:762.165000px;}
.y5_c01187{bottom:786.165000px;}
.y4_c01187{bottom:810.465000px;}
.y3_c01187{bottom:834.615000px;}
.y2_c01187{bottom:858.615000px;}
.y1_c01187{bottom:883.215000px;}
.h4_c01187{height:13.200074px;}
.h5_c01187{height:43.804688px;}
.h2_c01187{height:57.445312px;}
.h3_c01187{height:98.756836px;}
.h1_c01187{height:986.250000px;}
.h0_c01187{height:986.325000px;}
.w2_c01187{width:104.875500px;}
.w0_c01187{width:667.425000px;}
.w1_c01187{width:667.500000px;}
.x0_c01187{left:0.000000px;}
.xa_c01187{left:41.550000px;}
.x9_c01187{left:45.900000px;}
.x13_c01187{left:50.550000px;}
.x12_c01187{left:51.900000px;}
.xf_c01187{left:99.600000px;}
.x1_c01187{left:115.200000px;}
.x2_c01187{left:116.700000px;}
.x3_c01187{left:119.100000px;}
.x4_c01187{left:120.150000px;}
.x5_c01187{left:121.800000px;}
.x6_c01187{left:123.750000px;}
.x7_c01187{left:126.150000px;}
.x8_c01187{left:127.800000px;}
.xb_c01187{left:130.200000px;}
.xd_c01187{left:131.250000px;}
.xe_c01187{left:132.300000px;}
.x10_c01187{left:133.950000px;}
.x11_c01187{left:135.300000px;}
.x14_c01187{left:137.400000px;}
.xc_c01187{left:159.000000px;}
.x15_c01187{left:285.526749px;}
@media print{
.v0_c01187{vertical-align:0.000000pt;}
.ls1_c01187{letter-spacing:0.000000pt;}
.ls0_c01187{letter-spacing:1.957333pt;}
.ls2_c01187{letter-spacing:2.666667pt;}
.ws1_c01187{word-spacing:-25.333333pt;}
.ws0_c01187{word-spacing:-14.085333pt;}
.ws2_c01187{word-spacing:0.000000pt;}
._1a_c01187{margin-left:-31.466667pt;}
._1b_c01187{margin-left:-8.765333pt;}
._16_c01187{margin-left:-5.776000pt;}
._17_c01187{margin-left:-3.424000pt;}
._18_c01187{margin-left:-1.194667pt;}
._12_c01187{width:1.114667pt;}
._11_c01187{width:2.229333pt;}
._b_c01187{width:3.445333pt;}
._8_c01187{width:4.864000pt;}
._10_c01187{width:5.826667pt;}
._0_c01187{width:6.738667pt;}
._5_c01187{width:7.701333pt;}
._1_c01187{width:8.917333pt;}
._a_c01187{width:10.589333pt;}
._2_c01187{width:11.552000pt;}
._3_c01187{width:13.680000pt;}
._4_c01187{width:14.997333pt;}
._6_c01187{width:16.618667pt;}
._7_c01187{width:17.986667pt;}
._1e_c01187{width:18.949333pt;}
._9_c01187{width:19.912000pt;}
._c_c01187{width:20.976000pt;}
._f_c01187{width:21.888000pt;}
._15_c01187{width:22.800000pt;}
._e_c01187{width:23.914667pt;}
._1c_c01187{width:24.928000pt;}
._14_c01187{width:27.005333pt;}
._1d_c01187{width:27.917333pt;}
._d_c01187{width:29.690667pt;}
._1f_c01187{width:30.754667pt;}
._22_c01187{width:32.781333pt;}
._21_c01187{width:33.744000pt;}
._13_c01187{width:36.277333pt;}
._20_c01187{width:94.421333pt;}
._19_c01187{width:103.018667pt;}
._23_c01187{width:116.461333pt;}
.fs2_c01187{font-size:37.333333pt;}
.fs3_c01187{font-size:42.666667pt;}
.fs0_c01187{font-size:50.666667pt;}
.fs1_c01187{font-size:69.333333pt;}
.y0_c01187{bottom:0.000000pt;}
.y24_c01187{bottom:2.760000pt;}
.y23_c01187{bottom:6.425219pt;}
.y22_c01187{bottom:76.546667pt;}
.y21_c01187{bottom:98.813333pt;}
.y20_c01187{bottom:121.213333pt;}
.y1f_c01187{bottom:145.480000pt;}
.y1e_c01187{bottom:165.880000pt;}
.y1d_c01187{bottom:186.013333pt;}
.y1c_c01187{bottom:207.613333pt;}
.y1b_c01187{bottom:229.213333pt;}
.y1a_c01187{bottom:250.546667pt;}
.y19_c01187{bottom:272.146667pt;}
.y18_c01187{bottom:294.280000pt;}
.y17_c01187{bottom:315.346667pt;}
.y16_c01187{bottom:336.680000pt;}
.y15_c01187{bottom:358.280000pt;}
.y14_c01187{bottom:379.613333pt;}
.y13_c01187{bottom:401.080000pt;}
.y12_c01187{bottom:422.146667pt;}
.y11_c01187{bottom:442.280000pt;}
.y10_c01187{bottom:463.880000pt;}
.yf_c01187{bottom:486.013333pt;}
.ye_c01187{bottom:506.680000pt;}
.yd_c01187{bottom:528.280000pt;}
.yc_c01187{bottom:549.346667pt;}
.yb_c01187{bottom:570.946667pt;}
.ya_c01187{bottom:592.280000pt;}
.y9_c01187{bottom:613.613333pt;}
.y8_c01187{bottom:635.080000pt;}
.y7_c01187{bottom:656.146667pt;}
.y6_c01187{bottom:677.480000pt;}
.y5_c01187{bottom:698.813333pt;}
.y4_c01187{bottom:720.413333pt;}
.y3_c01187{bottom:741.880000pt;}
.y2_c01187{bottom:763.213333pt;}
.y1_c01187{bottom:785.080000pt;}
.h4_c01187{height:11.733399pt;}
.h5_c01187{height:38.937500pt;}
.h2_c01187{height:51.062500pt;}
.h3_c01187{height:87.783854pt;}
.h1_c01187{height:876.666667pt;}
.h0_c01187{height:876.733333pt;}
.w2_c01187{width:93.222667pt;}
.w0_c01187{width:593.266667pt;}
.w1_c01187{width:593.333333pt;}
.x0_c01187{left:0.000000pt;}
.xa_c01187{left:36.933333pt;}
.x9_c01187{left:40.800000pt;}
.x13_c01187{left:44.933333pt;}
.x12_c01187{left:46.133333pt;}
.xf_c01187{left:88.533333pt;}
.x1_c01187{left:102.400000pt;}
.x2_c01187{left:103.733333pt;}
.x3_c01187{left:105.866667pt;}
.x4_c01187{left:106.800000pt;}
.x5_c01187{left:108.266667pt;}
.x6_c01187{left:110.000000pt;}
.x7_c01187{left:112.133333pt;}
.x8_c01187{left:113.600000pt;}
.xb_c01187{left:115.733333pt;}
.xd_c01187{left:116.666667pt;}
.xe_c01187{left:117.600000pt;}
.x10_c01187{left:119.066667pt;}
.x11_c01187{left:120.266667pt;}
.x14_c01187{left:122.133333pt;}
.xc_c01187{left:141.333333pt;}
.x15_c01187{left:253.801554pt;}
}





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

.ir_c01188:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01188{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01188;src:url('chunks/assets/font_6efe14f08be419ebbd265e46.woff2')format("woff");}.ff1_c01188{font-family:ff1_c01188;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01188;src:url('chunks/assets/font_9397a53a9e596a0a95584ecc.woff2')format("woff");}.ff2_c01188{font-family:ff2_c01188;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01188;src:url('chunks/assets/font_83ef2e5cfa0b7177e668518e.woff2')format("woff");}.ff3_c01188{font-family:ff3_c01188;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01188;src:url('chunks/assets/font_35495b3cbcbebc8f16e94b18.woff2')format("woff");}.ff4_c01188{font-family:ff4_c01188;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01188;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff5_c01188{font-family:ff5_c01188;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01188;src:url('chunks/assets/font_e0c0b2be922bc161295ee960.woff2')format("woff");}.ff6_c01188{font-family:ff6_c01188;line-height:1.437000;font-style:normal;font-weight: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_c01188;src:url('chunks/assets/font_b682fcbbd9cc8ee829f7c77f.woff2')format("woff");}.ff7_c01188{font-family:ff7_c01188;line-height:1.437000;font-style:normal;font-weight: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_c01188;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff8_c01188{font-family:ff8_c01188;line-height:1.219238;font-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_c01188{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m0_c01188{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01188{vertical-align:0.000000px;}
.ls5_c01188{letter-spacing:0.000000px;}
.ls4_c01188{letter-spacing:2.802000px;}
.ls2_c01188{letter-spacing:9.300000px;}
.ls1_c01188{letter-spacing:19.500000px;}
.ls0_c01188{letter-spacing:22.500000px;}
.ls3_c01188{letter-spacing:23.100000px;}
.sc__c01188{text-shadow:none;}
.sc0_c01188{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01188{-webkit-text-stroke:0px transparent;}
.sc0_c01188{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c01188{word-spacing:-53.682000px;}
.ws0_c01188{word-spacing:-14.250000px;}
.ws1_c01188{word-spacing:-2.622000px;}
.ws5_c01188{word-spacing:0.000000px;}
.ws4_c01188{word-spacing:0.171000px;}
.ws2_c01188{word-spacing:5.871000px;}
._1b_c01188{margin-left:-16.797000px;}
._1f_c01188{margin-left:-12.699000px;}
._1d_c01188{margin-left:-11.100000px;}
._16_c01188{margin-left:-9.525000px;}
._13_c01188{margin-left:-7.353000px;}
._14_c01188{margin-left:-6.327000px;}
._22_c01188{margin-left:-5.244000px;}
._15_c01188{margin-left:-3.249000px;}
._23_c01188{margin-left:-1.113000px;}
._f_c01188{width:1.425000px;}
._6_c01188{width:2.850000px;}
._28_c01188{width:3.876000px;}
._1_c01188{width:4.902000px;}
._9_c01188{width:6.441000px;}
._b_c01188{width:7.467000px;}
._7_c01188{width:8.493000px;}
._0_c01188{width:9.519000px;}
._5_c01188{width:11.286000px;}
._8_c01188{width:12.939000px;}
._3_c01188{width:15.618000px;}
._4_c01188{width:17.499000px;}
._e_c01188{width:18.639000px;}
._d_c01188{width:20.691000px;}
._a_c01188{width:22.059000px;}
._c_c01188{width:23.598000px;}
._19_c01188{width:24.624000px;}
._11_c01188{width:25.707000px;}
._2_c01188{width:27.246000px;}
._24_c01188{width:28.842000px;}
._18_c01188{width:30.267000px;}
._2c_c01188{width:32.661000px;}
._26_c01188{width:41.694000px;}
._12_c01188{width:43.149000px;}
._25_c01188{width:47.340000px;}
._1c_c01188{width:48.876000px;}
._2a_c01188{width:54.063000px;}
._1e_c01188{width:59.223000px;}
._20_c01188{width:67.032000px;}
._29_c01188{width:168.711000px;}
._17_c01188{width:180.447000px;}
._21_c01188{width:209.589000px;}
._1a_c01188{width:241.650000px;}
._10_c01188{width:272.004000px;}
._27_c01188{width:298.095000px;}
._2d_c01188{width:314.790000px;}
._2b_c01188{width:678.300000px;}
.fc2_c01188{color:transparent;}
.fc1_c01188{color:rgb(128,128,128);}
.fc0_c01188{color:rgb(0,0,0);}
.fs4_c01188{font-size:48.000000px;}
.fs0_c01188{font-size:57.000000px;}
.fs2_c01188{font-size:69.000000px;}
.fs1_c01188{font-size:78.000000px;}
.fs3_c01188{font-size:108.000000px;}
.y0_c01188{bottom:0.000000px;}
.y25_c01188{bottom:3.105000px;}
.y24_c01188{bottom:7.228369px;}
.y23_c01188{bottom:54.720000px;}
.y22_c01188{bottom:79.920000px;}
.y21_c01188{bottom:105.870000px;}
.y20_c01188{bottom:130.920000px;}
.y1f_c01188{bottom:157.170000px;}
.y1e_c01188{bottom:179.520000px;}
.y1d_c01188{bottom:204.420000px;}
.y1c_c01188{bottom:229.770000px;}
.y1b_c01188{bottom:255.120000px;}
.y1a_c01188{bottom:279.420000px;}
.y19_c01188{bottom:304.020000px;}
.y18_c01188{bottom:328.020000px;}
.y17_c01188{bottom:353.670000px;}
.y16_c01188{bottom:378.270000px;}
.y15_c01188{bottom:402.570000px;}
.y14_c01188{bottom:427.320000px;}
.y13_c01188{bottom:451.920000px;}
.y12_c01188{bottom:476.520000px;}
.y11_c01188{bottom:501.570000px;}
.y10_c01188{bottom:525.720000px;}
.yf_c01188{bottom:550.170000px;}
.ye_c01188{bottom:574.470000px;}
.yd_c01188{bottom:598.770000px;}
.yc_c01188{bottom:623.070000px;}
.yb_c01188{bottom:648.570000px;}
.ya_c01188{bottom:671.970000px;}
.y9_c01188{bottom:696.570000px;}
.y8_c01188{bottom:721.470000px;}
.y7_c01188{bottom:745.770000px;}
.y6_c01188{bottom:770.820000px;}
.y5_c01188{bottom:794.070000px;}
.y4_c01188{bottom:819.720000px;}
.y3_c01188{bottom:844.470000px;}
.y2_c01188{bottom:869.070000px;}
.y1_c01188{bottom:893.670000px;}
.h6_c01188{height:13.200073px;}
.h7_c01188{height:43.804688px;}
.h2_c01188{height:57.445312px;}
.h4_c01188{height:72.312000px;}
.h3_c01188{height:98.756836px;}
.h5_c01188{height:108.843750px;}
.h1_c01188{height:986.250000px;}
.h0_c01188{height:986.550000px;}
.w1_c01188{width:104.875500px;}
.w0_c01188{width:672.000000px;}
.x0_c01188{left:0.000000px;}
.x1_c01188{left:54.450000px;}
.x2_c01188{left:56.400000px;}
.x3_c01188{left:57.750000px;}
.x4_c01188{left:58.950000px;}
.x5_c01188{left:60.150000px;}
.x7_c01188{left:61.500000px;}
.x6_c01188{left:85.800000px;}
.x9_c01188{left:287.814240px;}
.x8_c01188{left:435.000000px;}
@media print{
.v0_c01188{vertical-align:0.000000pt;}
.ls5_c01188{letter-spacing:0.000000pt;}
.ls4_c01188{letter-spacing:2.490667pt;}
.ls2_c01188{letter-spacing:8.266667pt;}
.ls1_c01188{letter-spacing:17.333333pt;}
.ls0_c01188{letter-spacing:20.000000pt;}
.ls3_c01188{letter-spacing:20.533333pt;}
.ws3_c01188{word-spacing:-47.717333pt;}
.ws0_c01188{word-spacing:-12.666667pt;}
.ws1_c01188{word-spacing:-2.330667pt;}
.ws5_c01188{word-spacing:0.000000pt;}
.ws4_c01188{word-spacing:0.152000pt;}
.ws2_c01188{word-spacing:5.218667pt;}
._1b_c01188{margin-left:-14.930667pt;}
._1f_c01188{margin-left:-11.288000pt;}
._1d_c01188{margin-left:-9.866667pt;}
._16_c01188{margin-left:-8.466667pt;}
._13_c01188{margin-left:-6.536000pt;}
._14_c01188{margin-left:-5.624000pt;}
._22_c01188{margin-left:-4.661333pt;}
._15_c01188{margin-left:-2.888000pt;}
._23_c01188{margin-left:-0.989333pt;}
._f_c01188{width:1.266667pt;}
._6_c01188{width:2.533333pt;}
._28_c01188{width:3.445333pt;}
._1_c01188{width:4.357333pt;}
._9_c01188{width:5.725333pt;}
._b_c01188{width:6.637333pt;}
._7_c01188{width:7.549333pt;}
._0_c01188{width:8.461333pt;}
._5_c01188{width:10.032000pt;}
._8_c01188{width:11.501333pt;}
._3_c01188{width:13.882667pt;}
._4_c01188{width:15.554667pt;}
._e_c01188{width:16.568000pt;}
._d_c01188{width:18.392000pt;}
._a_c01188{width:19.608000pt;}
._c_c01188{width:20.976000pt;}
._19_c01188{width:21.888000pt;}
._11_c01188{width:22.850667pt;}
._2_c01188{width:24.218667pt;}
._24_c01188{width:25.637333pt;}
._18_c01188{width:26.904000pt;}
._2c_c01188{width:29.032000pt;}
._26_c01188{width:37.061333pt;}
._12_c01188{width:38.354667pt;}
._25_c01188{width:42.080000pt;}
._1c_c01188{width:43.445333pt;}
._2a_c01188{width:48.056000pt;}
._1e_c01188{width:52.642667pt;}
._20_c01188{width:59.584000pt;}
._29_c01188{width:149.965333pt;}
._17_c01188{width:160.397333pt;}
._21_c01188{width:186.301333pt;}
._1a_c01188{width:214.800000pt;}
._10_c01188{width:241.781333pt;}
._27_c01188{width:264.973333pt;}
._2d_c01188{width:279.813333pt;}
._2b_c01188{width:602.933333pt;}
.fs4_c01188{font-size:42.666667pt;}
.fs0_c01188{font-size:50.666667pt;}
.fs2_c01188{font-size:61.333333pt;}
.fs1_c01188{font-size:69.333333pt;}
.fs3_c01188{font-size:96.000000pt;}
.y0_c01188{bottom:0.000000pt;}
.y25_c01188{bottom:2.760000pt;}
.y24_c01188{bottom:6.425217pt;}
.y23_c01188{bottom:48.640000pt;}
.y22_c01188{bottom:71.040000pt;}
.y21_c01188{bottom:94.106667pt;}
.y20_c01188{bottom:116.373333pt;}
.y1f_c01188{bottom:139.706667pt;}
.y1e_c01188{bottom:159.573333pt;}
.y1d_c01188{bottom:181.706667pt;}
.y1c_c01188{bottom:204.240000pt;}
.y1b_c01188{bottom:226.773333pt;}
.y1a_c01188{bottom:248.373333pt;}
.y19_c01188{bottom:270.240000pt;}
.y18_c01188{bottom:291.573333pt;}
.y17_c01188{bottom:314.373333pt;}
.y16_c01188{bottom:336.240000pt;}
.y15_c01188{bottom:357.840000pt;}
.y14_c01188{bottom:379.840000pt;}
.y13_c01188{bottom:401.706667pt;}
.y12_c01188{bottom:423.573333pt;}
.y11_c01188{bottom:445.840000pt;}
.y10_c01188{bottom:467.306667pt;}
.yf_c01188{bottom:489.040000pt;}
.ye_c01188{bottom:510.640000pt;}
.yd_c01188{bottom:532.240000pt;}
.yc_c01188{bottom:553.840000pt;}
.yb_c01188{bottom:576.506667pt;}
.ya_c01188{bottom:597.306667pt;}
.y9_c01188{bottom:619.173333pt;}
.y8_c01188{bottom:641.306667pt;}
.y7_c01188{bottom:662.906667pt;}
.y6_c01188{bottom:685.173333pt;}
.y5_c01188{bottom:705.840000pt;}
.y4_c01188{bottom:728.640000pt;}
.y3_c01188{bottom:750.640000pt;}
.y2_c01188{bottom:772.506667pt;}
.y1_c01188{bottom:794.373333pt;}
.h6_c01188{height:11.733399pt;}
.h7_c01188{height:38.937500pt;}
.h2_c01188{height:51.062500pt;}
.h4_c01188{height:64.277333pt;}
.h3_c01188{height:87.783854pt;}
.h5_c01188{height:96.750000pt;}
.h1_c01188{height:876.666667pt;}
.h0_c01188{height:876.933333pt;}
.w1_c01188{width:93.222667pt;}
.w0_c01188{width:597.333333pt;}
.x0_c01188{left:0.000000pt;}
.x1_c01188{left:48.400000pt;}
.x2_c01188{left:50.133333pt;}
.x3_c01188{left:51.333333pt;}
.x4_c01188{left:52.400000pt;}
.x5_c01188{left:53.466667pt;}
.x7_c01188{left:54.666667pt;}
.x6_c01188{left:76.266667pt;}
.x9_c01188{left:255.834880pt;}
.x8_c01188{left:386.666667pt;}
}





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

.ir_c01189:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01189{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01189;src:url('chunks/assets/font_691b48f9a9c6173913c8cc4c.woff2')format("woff");}.ff1_c01189{font-family:ff1_c01189;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01189;src:url('chunks/assets/font_11270a03af07196af7a639d6.woff2')format("woff");}.ff2_c01189{font-family:ff2_c01189;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01189;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff3_c01189{font-family:ff3_c01189;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01189;src:url('chunks/assets/font_96604bc00f7487176f66fd99.woff2')format("woff");}.ff4_c01189{font-family:ff4_c01189;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01189;src:url('chunks/assets/font_c74d094d966bb425ee73d8d0.woff2')format("woff");}.ff5_c01189{font-family:ff5_c01189;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01189;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c01189{font-family:ff6_c01189;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01189{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01189{vertical-align:0.000000px;}
.ls3_c01189{letter-spacing:0.000000px;}
.ls1_c01189{letter-spacing:24.708000px;}
.ls0_c01189{letter-spacing:27.492000px;}
.ls4_c01189{letter-spacing:48.000000px;}
.ls2_c01189{letter-spacing:222.150000px;}
.sc__c01189{text-shadow:none;}
.sc0_c01189{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01189{-webkit-text-stroke:0px transparent;}
.sc0_c01189{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c01189{word-spacing:-43.953000px;}
.ws2_c01189{word-spacing:-19.927200px;}
.ws6_c01189{word-spacing:-14.250000px;}
.ws3_c01189{word-spacing:-2.718000px;}
.ws1_c01189{word-spacing:-2.703000px;}
.ws7_c01189{word-spacing:-1.482000px;}
.ws8_c01189{word-spacing:0.000000px;}
.ws5_c01189{word-spacing:0.741000px;}
.ws0_c01189{word-spacing:4.104000px;}
._20_c01189{margin-left:-45.156000px;}
._1f_c01189{margin-left:-35.055000px;}
._26_c01189{margin-left:-15.618000px;}
._24_c01189{margin-left:-12.312000px;}
._11_c01189{margin-left:-9.006000px;}
._1c_c01189{margin-left:-4.713000px;}
._12_c01189{margin-left:-3.420000px;}
._16_c01189{margin-left:-1.920000px;}
._13_c01189{width:1.407000px;}
._6_c01189{width:2.679000px;}
._2_c01189{width:4.047000px;}
._f_c01189{width:5.091000px;}
._9_c01189{width:6.213000px;}
._7_c01189{width:7.296000px;}
._15_c01189{width:8.304000px;}
._4_c01189{width:9.348000px;}
._1_c01189{width:10.944000px;}
._5_c01189{width:12.540000px;}
._0_c01189{width:16.017000px;}
._a_c01189{width:17.328000px;}
._8_c01189{width:19.266000px;}
._18_c01189{width:20.595000px;}
._c_c01189{width:21.603000px;}
._1a_c01189{width:22.674000px;}
._3_c01189{width:23.940000px;}
._14_c01189{width:25.137000px;}
._d_c01189{width:26.415000px;}
._17_c01189{width:28.215000px;}
._19_c01189{width:30.813000px;}
._e_c01189{width:32.661000px;}
._28_c01189{width:34.371000px;}
._b_c01189{width:36.195000px;}
._23_c01189{width:45.336000px;}
._27_c01189{width:48.450000px;}
._25_c01189{width:55.974000px;}
._10_c01189{width:65.493000px;}
._1d_c01189{width:119.128800px;}
._21_c01189{width:137.559000px;}
._1b_c01189{width:221.751000px;}
._22_c01189{width:227.448000px;}
._1e_c01189{width:278.559000px;}
.fc2_c01189{color:transparent;}
.fc1_c01189{color:rgb(128,128,128);}
.fc0_c01189{color:rgb(0,0,0);}
.fs1_c01189{font-size:45.600000px;}
.fs3_c01189{font-size:48.000000px;}
.fs0_c01189{font-size:57.000000px;}
.fs2_c01189{font-size:78.000000px;}
.y0_c01189{bottom:0.000000px;}
.y25_c01189{bottom:3.105000px;}
.y24_c01189{bottom:7.228371px;}
.y23_c01189{bottom:56.415000px;}
.y22_c01189{bottom:81.015000px;}
.y21_c01189{bottom:104.415000px;}
.y20_c01189{bottom:130.065000px;}
.y1f_c01189{bottom:154.665000px;}
.y1e_c01189{bottom:179.265000px;}
.y1d_c01189{bottom:204.315000px;}
.y1c_c01189{bottom:228.465000px;}
.y1b_c01189{bottom:254.115000px;}
.y1a_c01189{bottom:278.565000px;}
.y19_c01189{bottom:302.865000px;}
.y18_c01189{bottom:327.765000px;}
.y17_c01189{bottom:352.665000px;}
.y16_c01189{bottom:376.965000px;}
.y15_c01189{bottom:402.015000px;}
.y14_c01189{bottom:426.615000px;}
.y13_c01189{bottom:451.365000px;}
.y12_c01189{bottom:476.265000px;}
.y11_c01189{bottom:500.565000px;}
.y10_c01189{bottom:525.165000px;}
.yf_c01189{bottom:548.415000px;}
.ye_c01189{bottom:572.415000px;}
.yd_c01189{bottom:597.465000px;}
.yc_c01189{bottom:622.365000px;}
.yb_c01189{bottom:646.965000px;}
.ya_c01189{bottom:671.415000px;}
.y9_c01189{bottom:696.015000px;}
.y8_c01189{bottom:720.915000px;}
.y7_c01189{bottom:745.215000px;}
.y6_c01189{bottom:769.965000px;}
.y5_c01189{bottom:794.115000px;}
.y4_c01189{bottom:818.865000px;}
.y3_c01189{bottom:842.115000px;}
.y2_c01189{bottom:867.165000px;}
.y1_c01189{bottom:892.365000px;}
.h4_c01189{height:13.200074px;}
.h5_c01189{height:43.804688px;}
.h2_c01189{height:57.445312px;}
.h3_c01189{height:98.756836px;}
.h1_c01189{height:986.250000px;}
.h0_c01189{height:986.325000px;}
.w2_c01189{width:104.875500px;}
.w0_c01189{width:667.425000px;}
.w1_c01189{width:667.500000px;}
.x0_c01189{left:0.000000px;}
.xb_c01189{left:28.050000px;}
.xa_c01189{left:30.150000px;}
.x9_c01189{left:32.100000px;}
.x7_c01189{left:33.150000px;}
.x6_c01189{left:34.500000px;}
.x2_c01189{left:36.750000px;}
.xe_c01189{left:66.450000px;}
.xd_c01189{left:120.750000px;}
.xc_c01189{left:122.250000px;}
.x8_c01189{left:124.500000px;}
.x4_c01189{left:126.600000px;}
.x3_c01189{left:127.650000px;}
.x1_c01189{left:128.700000px;}
.x5_c01189{left:153.000000px;}
.x10_c01189{left:285.526749px;}
.xf_c01189{left:578.850000px;}
@media print{
.v0_c01189{vertical-align:0.000000pt;}
.ls3_c01189{letter-spacing:0.000000pt;}
.ls1_c01189{letter-spacing:21.962667pt;}
.ls0_c01189{letter-spacing:24.437333pt;}
.ls4_c01189{letter-spacing:42.666667pt;}
.ls2_c01189{letter-spacing:197.466667pt;}
.ws4_c01189{word-spacing:-39.069333pt;}
.ws2_c01189{word-spacing:-17.713067pt;}
.ws6_c01189{word-spacing:-12.666667pt;}
.ws3_c01189{word-spacing:-2.416000pt;}
.ws1_c01189{word-spacing:-2.402667pt;}
.ws7_c01189{word-spacing:-1.317333pt;}
.ws8_c01189{word-spacing:0.000000pt;}
.ws5_c01189{word-spacing:0.658667pt;}
.ws0_c01189{word-spacing:3.648000pt;}
._20_c01189{margin-left:-40.138667pt;}
._1f_c01189{margin-left:-31.160000pt;}
._26_c01189{margin-left:-13.882667pt;}
._24_c01189{margin-left:-10.944000pt;}
._11_c01189{margin-left:-8.005333pt;}
._1c_c01189{margin-left:-4.189333pt;}
._12_c01189{margin-left:-3.040000pt;}
._16_c01189{margin-left:-1.706667pt;}
._13_c01189{width:1.250667pt;}
._6_c01189{width:2.381333pt;}
._2_c01189{width:3.597333pt;}
._f_c01189{width:4.525333pt;}
._9_c01189{width:5.522667pt;}
._7_c01189{width:6.485333pt;}
._15_c01189{width:7.381333pt;}
._4_c01189{width:8.309333pt;}
._1_c01189{width:9.728000pt;}
._5_c01189{width:11.146667pt;}
._0_c01189{width:14.237333pt;}
._a_c01189{width:15.402667pt;}
._8_c01189{width:17.125333pt;}
._18_c01189{width:18.306667pt;}
._c_c01189{width:19.202667pt;}
._1a_c01189{width:20.154667pt;}
._3_c01189{width:21.280000pt;}
._14_c01189{width:22.344000pt;}
._d_c01189{width:23.480000pt;}
._17_c01189{width:25.080000pt;}
._19_c01189{width:27.389333pt;}
._e_c01189{width:29.032000pt;}
._28_c01189{width:30.552000pt;}
._b_c01189{width:32.173333pt;}
._23_c01189{width:40.298667pt;}
._27_c01189{width:43.066667pt;}
._25_c01189{width:49.754667pt;}
._10_c01189{width:58.216000pt;}
._1d_c01189{width:105.892267pt;}
._21_c01189{width:122.274667pt;}
._1b_c01189{width:197.112000pt;}
._22_c01189{width:202.176000pt;}
._1e_c01189{width:247.608000pt;}
.fs1_c01189{font-size:40.533333pt;}
.fs3_c01189{font-size:42.666667pt;}
.fs0_c01189{font-size:50.666667pt;}
.fs2_c01189{font-size:69.333333pt;}
.y0_c01189{bottom:0.000000pt;}
.y25_c01189{bottom:2.760000pt;}
.y24_c01189{bottom:6.425219pt;}
.y23_c01189{bottom:50.146667pt;}
.y22_c01189{bottom:72.013333pt;}
.y21_c01189{bottom:92.813333pt;}
.y20_c01189{bottom:115.613333pt;}
.y1f_c01189{bottom:137.480000pt;}
.y1e_c01189{bottom:159.346667pt;}
.y1d_c01189{bottom:181.613333pt;}
.y1c_c01189{bottom:203.080000pt;}
.y1b_c01189{bottom:225.880000pt;}
.y1a_c01189{bottom:247.613333pt;}
.y19_c01189{bottom:269.213333pt;}
.y18_c01189{bottom:291.346667pt;}
.y17_c01189{bottom:313.480000pt;}
.y16_c01189{bottom:335.080000pt;}
.y15_c01189{bottom:357.346667pt;}
.y14_c01189{bottom:379.213333pt;}
.y13_c01189{bottom:401.213333pt;}
.y12_c01189{bottom:423.346667pt;}
.y11_c01189{bottom:444.946667pt;}
.y10_c01189{bottom:466.813333pt;}
.yf_c01189{bottom:487.480000pt;}
.ye_c01189{bottom:508.813333pt;}
.yd_c01189{bottom:531.080000pt;}
.yc_c01189{bottom:553.213333pt;}
.yb_c01189{bottom:575.080000pt;}
.ya_c01189{bottom:596.813333pt;}
.y9_c01189{bottom:618.680000pt;}
.y8_c01189{bottom:640.813333pt;}
.y7_c01189{bottom:662.413333pt;}
.y6_c01189{bottom:684.413333pt;}
.y5_c01189{bottom:705.880000pt;}
.y4_c01189{bottom:727.880000pt;}
.y3_c01189{bottom:748.546667pt;}
.y2_c01189{bottom:770.813333pt;}
.y1_c01189{bottom:793.213333pt;}
.h4_c01189{height:11.733399pt;}
.h5_c01189{height:38.937500pt;}
.h2_c01189{height:51.062500pt;}
.h3_c01189{height:87.783854pt;}
.h1_c01189{height:876.666667pt;}
.h0_c01189{height:876.733333pt;}
.w2_c01189{width:93.222667pt;}
.w0_c01189{width:593.266667pt;}
.w1_c01189{width:593.333333pt;}
.x0_c01189{left:0.000000pt;}
.xb_c01189{left:24.933333pt;}
.xa_c01189{left:26.800000pt;}
.x9_c01189{left:28.533333pt;}
.x7_c01189{left:29.466667pt;}
.x6_c01189{left:30.666667pt;}
.x2_c01189{left:32.666667pt;}
.xe_c01189{left:59.066667pt;}
.xd_c01189{left:107.333333pt;}
.xc_c01189{left:108.666667pt;}
.x8_c01189{left:110.666667pt;}
.x4_c01189{left:112.533333pt;}
.x3_c01189{left:113.466667pt;}
.x1_c01189{left:114.400000pt;}
.x5_c01189{left:136.000000pt;}
.x10_c01189{left:253.801554pt;}
.xf_c01189{left:514.533333pt;}
}





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

.ir_c01190:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01190{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01190;src:url('chunks/assets/font_19cc5e52921c8e31d28bdb4b.woff2')format("woff");}.ff1_c01190{font-family:ff1_c01190;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01190;src:url('chunks/assets/font_6451cb4856f2809b4bf4de48.woff2')format("woff");}.ff2_c01190{font-family:ff2_c01190;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01190;src:url('chunks/assets/font_086582fefe44224efa79efa9.woff2')format("woff");}.ff3_c01190{font-family:ff3_c01190;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01190;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff4_c01190{font-family:ff4_c01190;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01190{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01190{vertical-align:0.000000px;}
.ls2_c01190{letter-spacing:0.000000px;}
.ls1_c01190{letter-spacing:0.600000px;}
.ls0_c01190{letter-spacing:4.800000px;}
.sc__c01190{text-shadow:none;}
.sc0_c01190{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01190{-webkit-text-stroke:0px transparent;}
.sc0_c01190{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01190{word-spacing:-18.750000px;}
.ws2_c01190{word-spacing:-1.311000px;}
.ws3_c01190{word-spacing:0.000000px;}
.ws1_c01190{word-spacing:2.736000px;}
._1d_c01190{margin-left:-12.300000px;}
._1b_c01190{margin-left:-9.063000px;}
._13_c01190{margin-left:-6.300000px;}
._14_c01190{margin-left:-4.896000px;}
._5_c01190{margin-left:-3.525000px;}
._12_c01190{margin-left:-2.394000px;}
._15_c01190{margin-left:-1.065000px;}
._4_c01190{width:1.971000px;}
._6_c01190{width:3.900000px;}
._3_c01190{width:4.929000px;}
._b_c01190{width:6.330000px;}
._1_c01190{width:7.410000px;}
._1c_c01190{width:8.439000px;}
._2_c01190{width:9.462000px;}
._7_c01190{width:11.190000px;}
._0_c01190{width:12.198000px;}
._d_c01190{width:13.242000px;}
._8_c01190{width:15.675000px;}
._a_c01190{width:16.854000px;}
._c_c01190{width:18.096000px;}
._16_c01190{width:19.116000px;}
._f_c01190{width:20.121000px;}
._18_c01190{width:21.306000px;}
._11_c01190{width:22.935000px;}
._9_c01190{width:24.411000px;}
._1a_c01190{width:26.085000px;}
._e_c01190{width:28.068000px;}
._23_c01190{width:29.271000px;}
._17_c01190{width:31.959000px;}
._19_c01190{width:36.621000px;}
._22_c01190{width:42.042000px;}
._1e_c01190{width:51.159000px;}
._10_c01190{width:98.325000px;}
._21_c01190{width:117.183000px;}
._1f_c01190{width:209.448000px;}
._20_c01190{width:247.467000px;}
._24_c01190{width:294.483000px;}
.fc2_c01190{color:transparent;}
.fc1_c01190{color:rgb(128,128,128);}
.fc0_c01190{color:rgb(0,0,0);}
.fs4_c01190{font-size:48.000000px;}
.fs0_c01190{font-size:57.000000px;}
.fs2_c01190{font-size:72.000000px;}
.fs1_c01190{font-size:75.000000px;}
.fs3_c01190{font-size:84.000000px;}
.y0_c01190{bottom:0.000000px;}
.y25_c01190{bottom:3.105000px;}
.y24_c01190{bottom:7.228369px;}
.y23_c01190{bottom:49.620000px;}
.y22_c01190{bottom:73.470000px;}
.y21_c01190{bottom:98.820000px;}
.y20_c01190{bottom:123.420000px;}
.y1f_c01190{bottom:147.870000px;}
.y1e_c01190{bottom:172.470000px;}
.y1d_c01190{bottom:196.770000px;}
.y1c_c01190{bottom:221.670000px;}
.y1b_c01190{bottom:246.270000px;}
.y1a_c01190{bottom:269.220000px;}
.y19_c01190{bottom:295.020000px;}
.y18_c01190{bottom:319.620000px;}
.y17_c01190{bottom:343.620000px;}
.y16_c01190{bottom:368.520000px;}
.y15_c01190{bottom:393.120000px;}
.y14_c01190{bottom:417.420000px;}
.y13_c01190{bottom:442.170000px;}
.y12_c01190{bottom:466.770000px;}
.y11_c01190{bottom:490.770000px;}
.y10_c01190{bottom:514.920000px;}
.yf_c01190{bottom:538.920000px;}
.ye_c01190{bottom:563.220000px;}
.yd_c01190{bottom:586.920000px;}
.yc_c01190{bottom:611.520000px;}
.yb_c01190{bottom:635.820000px;}
.ya_c01190{bottom:660.120000px;}
.y9_c01190{bottom:684.720000px;}
.y8_c01190{bottom:709.020000px;}
.y7_c01190{bottom:734.370000px;}
.y6_c01190{bottom:758.070000px;}
.y5_c01190{bottom:782.670000px;}
.y4_c01190{bottom:807.570000px;}
.y3_c01190{bottom:831.570000px;}
.y2_c01190{bottom:855.870000px;}
.y1_c01190{bottom:880.470000px;}
.h7_c01190{height:13.200073px;}
.h8_c01190{height:43.804688px;}
.h3_c01190{height:57.445312px;}
.h6_c01190{height:72.562500px;}
.h2_c01190{height:73.571777px;}
.h4_c01190{height:73.608398px;}
.h5_c01190{height:82.441406px;}
.h0_c01190{height:970.350000px;}
.h1_c01190{height:970.500000px;}
.w2_c01190{width:104.875500px;}
.w0_c01190{width:660.450000px;}
.w1_c01190{width:660.750000px;}
.x0_c01190{left:0.000000px;}
.x6_c01190{left:57.450000px;}
.x5_c01190{left:59.100000px;}
.x1_c01190{left:60.750000px;}
.x2_c01190{left:61.800000px;}
.x3_c01190{left:63.150000px;}
.x4_c01190{left:87.450000px;}
.x8_c01190{left:282.039230px;}
.x7_c01190{left:389.100000px;}
@media print{
.v0_c01190{vertical-align:0.000000pt;}
.ls2_c01190{letter-spacing:0.000000pt;}
.ls1_c01190{letter-spacing:0.533333pt;}
.ls0_c01190{letter-spacing:4.266667pt;}
.ws0_c01190{word-spacing:-16.666667pt;}
.ws2_c01190{word-spacing:-1.165333pt;}
.ws3_c01190{word-spacing:0.000000pt;}
.ws1_c01190{word-spacing:2.432000pt;}
._1d_c01190{margin-left:-10.933333pt;}
._1b_c01190{margin-left:-8.056000pt;}
._13_c01190{margin-left:-5.600000pt;}
._14_c01190{margin-left:-4.352000pt;}
._5_c01190{margin-left:-3.133333pt;}
._12_c01190{margin-left:-2.128000pt;}
._15_c01190{margin-left:-0.946667pt;}
._4_c01190{width:1.752000pt;}
._6_c01190{width:3.466667pt;}
._3_c01190{width:4.381333pt;}
._b_c01190{width:5.626667pt;}
._1_c01190{width:6.586667pt;}
._1c_c01190{width:7.501333pt;}
._2_c01190{width:8.410667pt;}
._7_c01190{width:9.946667pt;}
._0_c01190{width:10.842667pt;}
._d_c01190{width:11.770667pt;}
._8_c01190{width:13.933333pt;}
._a_c01190{width:14.981333pt;}
._c_c01190{width:16.085333pt;}
._16_c01190{width:16.992000pt;}
._f_c01190{width:17.885333pt;}
._18_c01190{width:18.938667pt;}
._11_c01190{width:20.386667pt;}
._9_c01190{width:21.698667pt;}
._1a_c01190{width:23.186667pt;}
._e_c01190{width:24.949333pt;}
._23_c01190{width:26.018667pt;}
._17_c01190{width:28.408000pt;}
._19_c01190{width:32.552000pt;}
._22_c01190{width:37.370667pt;}
._1e_c01190{width:45.474667pt;}
._10_c01190{width:87.400000pt;}
._21_c01190{width:104.162667pt;}
._1f_c01190{width:186.176000pt;}
._20_c01190{width:219.970667pt;}
._24_c01190{width:261.762667pt;}
.fs4_c01190{font-size:42.666667pt;}
.fs0_c01190{font-size:50.666667pt;}
.fs2_c01190{font-size:64.000000pt;}
.fs1_c01190{font-size:66.666667pt;}
.fs3_c01190{font-size:74.666667pt;}
.y0_c01190{bottom:0.000000pt;}
.y25_c01190{bottom:2.760000pt;}
.y24_c01190{bottom:6.425217pt;}
.y23_c01190{bottom:44.106667pt;}
.y22_c01190{bottom:65.306667pt;}
.y21_c01190{bottom:87.840000pt;}
.y20_c01190{bottom:109.706667pt;}
.y1f_c01190{bottom:131.440000pt;}
.y1e_c01190{bottom:153.306667pt;}
.y1d_c01190{bottom:174.906667pt;}
.y1c_c01190{bottom:197.040000pt;}
.y1b_c01190{bottom:218.906667pt;}
.y1a_c01190{bottom:239.306667pt;}
.y19_c01190{bottom:262.240000pt;}
.y18_c01190{bottom:284.106667pt;}
.y17_c01190{bottom:305.440000pt;}
.y16_c01190{bottom:327.573333pt;}
.y15_c01190{bottom:349.440000pt;}
.y14_c01190{bottom:371.040000pt;}
.y13_c01190{bottom:393.040000pt;}
.y12_c01190{bottom:414.906667pt;}
.y11_c01190{bottom:436.240000pt;}
.y10_c01190{bottom:457.706667pt;}
.yf_c01190{bottom:479.040000pt;}
.ye_c01190{bottom:500.640000pt;}
.yd_c01190{bottom:521.706667pt;}
.yc_c01190{bottom:543.573333pt;}
.yb_c01190{bottom:565.173333pt;}
.ya_c01190{bottom:586.773333pt;}
.y9_c01190{bottom:608.640000pt;}
.y8_c01190{bottom:630.240000pt;}
.y7_c01190{bottom:652.773333pt;}
.y6_c01190{bottom:673.840000pt;}
.y5_c01190{bottom:695.706667pt;}
.y4_c01190{bottom:717.840000pt;}
.y3_c01190{bottom:739.173333pt;}
.y2_c01190{bottom:760.773333pt;}
.y1_c01190{bottom:782.640000pt;}
.h7_c01190{height:11.733399pt;}
.h8_c01190{height:38.937500pt;}
.h3_c01190{height:51.062500pt;}
.h6_c01190{height:64.500000pt;}
.h2_c01190{height:65.397135pt;}
.h4_c01190{height:65.429688pt;}
.h5_c01190{height:73.281250pt;}
.h0_c01190{height:862.533333pt;}
.h1_c01190{height:862.666667pt;}
.w2_c01190{width:93.222667pt;}
.w0_c01190{width:587.066667pt;}
.w1_c01190{width:587.333333pt;}
.x0_c01190{left:0.000000pt;}
.x6_c01190{left:51.066667pt;}
.x5_c01190{left:52.533333pt;}
.x1_c01190{left:54.000000pt;}
.x2_c01190{left:54.933333pt;}
.x3_c01190{left:56.133333pt;}
.x4_c01190{left:77.733333pt;}
.x8_c01190{left:250.701538pt;}
.x7_c01190{left:345.866667pt;}
}





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

.ir_c01191:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01191{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01191;src:url('chunks/assets/font_8b9d218d0d75382381f09edb.woff2')format("woff");}.ff1_c01191{font-family:ff1_c01191;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01191;src:url('chunks/assets/font_b3e563bb597c51fc6456c710.woff2')format("woff");}.ff2_c01191{font-family:ff2_c01191;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01191;src:url('chunks/assets/font_b8d15507288cd7eba1e9c11a.woff2')format("woff");}.ff3_c01191{font-family:ff3_c01191;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01191;src:url('chunks/assets/font_1809d65d6b15c62a0bf8e910.woff2')format("woff");}.ff4_c01191{font-family:ff4_c01191;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01191;src:url('chunks/assets/font_8b8742a30a0cdad223c06f50.woff2')format("woff");}.ff5_c01191{font-family:ff5_c01191;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01191;src:url('chunks/assets/font_d51b28316e6d5a002e3f153e.woff2')format("woff");}.ff6_c01191{font-family:ff6_c01191;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01191;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c01191{font-family:ff7_c01191;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01191{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01191{vertical-align:0.000000px;}
.ls2_c01191{letter-spacing:0.000000px;}
.ls3_c01191{letter-spacing:3.000000px;}
.ls0_c01191{letter-spacing:10.002000px;}
.ls4_c01191{letter-spacing:15.000000px;}
.ls1_c01191{letter-spacing:18.900000px;}
.sc__c01191{text-shadow:none;}
.sc0_c01191{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01191{-webkit-text-stroke:0px transparent;}
.sc0_c01191{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c01191{word-spacing:-18.075000px;}
.ws4_c01191{word-spacing:-14.250000px;}
.ws1_c01191{word-spacing:-1.488000px;}
.ws3_c01191{word-spacing:-0.189000px;}
.ws6_c01191{word-spacing:0.000000px;}
.ws0_c01191{word-spacing:0.171000px;}
.ws2_c01191{word-spacing:7.809000px;}
._26_c01191{margin-left:-22.968000px;}
._20_c01191{margin-left:-16.965000px;}
._2f_c01191{margin-left:-15.675000px;}
._24_c01191{margin-left:-14.547000px;}
._25_c01191{margin-left:-13.137000px;}
._1d_c01191{margin-left:-11.895000px;}
._21_c01191{margin-left:-9.570000px;}
._2e_c01191{margin-left:-7.890000px;}
._1e_c01191{margin-left:-6.525000px;}
._e_c01191{margin-left:-4.530000px;}
._4_c01191{margin-left:-3.306000px;}
._12_c01191{margin-left:-2.103000px;}
._8_c01191{width:1.311000px;}
._10_c01191{width:2.631000px;}
._5_c01191{width:4.047000px;}
._3_c01191{width:5.325000px;}
._2_c01191{width:7.182000px;}
._17_c01191{width:8.271000px;}
._0_c01191{width:9.348000px;}
._7_c01191{width:10.863000px;}
._1_c01191{width:11.970000px;}
._a_c01191{width:13.110000px;}
._18_c01191{width:14.136000px;}
._11_c01191{width:15.276000px;}
._9_c01191{width:16.302000px;}
._b_c01191{width:18.003000px;}
._d_c01191{width:19.608000px;}
._13_c01191{width:21.090000px;}
._23_c01191{width:22.515000px;}
._f_c01191{width:23.541000px;}
._14_c01191{width:25.284000px;}
._19_c01191{width:27.417000px;}
._c_c01191{width:29.583000px;}
._22_c01191{width:31.254000px;}
._2a_c01191{width:32.457000px;}
._1b_c01191{width:34.821000px;}
._6_c01191{width:40.584000px;}
._1c_c01191{width:44.337000px;}
._16_c01191{width:49.989000px;}
._15_c01191{width:59.736000px;}
._2c_c01191{width:91.050000px;}
._27_c01191{width:95.523000px;}
._2d_c01191{width:111.000000px;}
._28_c01191{width:173.232000px;}
._1f_c01191{width:193.158000px;}
._1a_c01191{width:197.073000px;}
._29_c01191{width:284.721000px;}
._2b_c01191{width:1279.926000px;}
.fc2_c01191{color:transparent;}
.fc1_c01191{color:rgb(128,128,128);}
.fc0_c01191{color:rgb(0,0,0);}
.fs4_c01191{font-size:42.000000px;}
.fs6_c01191{font-size:48.000000px;}
.fs0_c01191{font-size:57.000000px;}
.fs3_c01191{font-size:63.000000px;}
.fs5_c01191{font-size:75.000000px;}
.fs1_c01191{font-size:78.000000px;}
.fs2_c01191{font-size:87.000000px;}
.y0_c01191{bottom:0.000000px;}
.y25_c01191{bottom:3.105000px;}
.y24_c01191{bottom:7.228371px;}
.y23_c01191{bottom:54.315000px;}
.y22_c01191{bottom:76.965000px;}
.y21_c01191{bottom:97.515000px;}
.y20_c01191{bottom:127.215000px;}
.y1f_c01191{bottom:151.665000px;}
.y1e_c01191{bottom:177.165000px;}
.y1d_c01191{bottom:201.165000px;}
.y1c_c01191{bottom:225.915000px;}
.y1b_c01191{bottom:252.465000px;}
.y1a_c01191{bottom:276.465000px;}
.y19_c01191{bottom:300.465000px;}
.y18_c01191{bottom:325.365000px;}
.y17_c01191{bottom:349.965000px;}
.y16_c01191{bottom:374.715000px;}
.y15_c01191{bottom:400.065000px;}
.y14_c01191{bottom:424.365000px;}
.y13_c01191{bottom:448.515000px;}
.y12_c01191{bottom:473.265000px;}
.y11_c01191{bottom:497.565000px;}
.y10_c01191{bottom:523.215000px;}
.yf_c01191{bottom:546.165000px;}
.ye_c01191{bottom:571.815000px;}
.yd_c01191{bottom:595.665000px;}
.yc_c01191{bottom:620.415000px;}
.yb_c01191{bottom:644.715000px;}
.ya_c01191{bottom:669.615000px;}
.y9_c01191{bottom:693.915000px;}
.y8_c01191{bottom:720.015000px;}
.y7_c01191{bottom:743.565000px;}
.y6_c01191{bottom:768.465000px;}
.y5_c01191{bottom:793.215000px;}
.y4_c01191{bottom:816.765000px;}
.y3_c01191{bottom:841.515000px;}
.y2_c01191{bottom:867.015000px;}
.y1_c01191{bottom:890.715000px;}
.h8_c01191{height:13.200074px;}
.h9_c01191{height:43.804688px;}
.h3_c01191{height:57.445312px;}
.h5_c01191{height:61.831055px;}
.h6_c01191{height:66.713379px;}
.h7_c01191{height:94.958496px;}
.h2_c01191{height:98.756836px;}
.h4_c01191{height:110.151855px;}
.h1_c01191{height:986.250000px;}
.h0_c01191{height:986.325000px;}
.w2_c01191{width:104.875500px;}
.w0_c01191{width:667.425000px;}
.w1_c01191{width:667.500000px;}
.x0_c01191{left:0.000000px;}
.x1_c01191{left:19.650000px;}
.x4_c01191{left:21.300000px;}
.x7_c01191{left:24.000000px;}
.x8_c01191{left:28.800000px;}
.x5_c01191{left:112.650000px;}
.x6_c01191{left:113.700000px;}
.x2_c01191{left:115.200000px;}
.xa_c01191{left:116.400000px;}
.xb_c01191{left:117.450000px;}
.x9_c01191{left:118.500000px;}
.x3_c01191{left:139.050000px;}
.xd_c01191{left:285.526749px;}
.xc_c01191{left:555.900000px;}
@media print{
.v0_c01191{vertical-align:0.000000pt;}
.ls2_c01191{letter-spacing:0.000000pt;}
.ls3_c01191{letter-spacing:2.666667pt;}
.ls0_c01191{letter-spacing:8.890667pt;}
.ls4_c01191{letter-spacing:13.333333pt;}
.ls1_c01191{letter-spacing:16.800000pt;}
.ws5_c01191{word-spacing:-16.066667pt;}
.ws4_c01191{word-spacing:-12.666667pt;}
.ws1_c01191{word-spacing:-1.322667pt;}
.ws3_c01191{word-spacing:-0.168000pt;}
.ws6_c01191{word-spacing:0.000000pt;}
.ws0_c01191{word-spacing:0.152000pt;}
.ws2_c01191{word-spacing:6.941333pt;}
._26_c01191{margin-left:-20.416000pt;}
._20_c01191{margin-left:-15.080000pt;}
._2f_c01191{margin-left:-13.933333pt;}
._24_c01191{margin-left:-12.930667pt;}
._25_c01191{margin-left:-11.677333pt;}
._1d_c01191{margin-left:-10.573333pt;}
._21_c01191{margin-left:-8.506667pt;}
._2e_c01191{margin-left:-7.013333pt;}
._1e_c01191{margin-left:-5.800000pt;}
._e_c01191{margin-left:-4.026667pt;}
._4_c01191{margin-left:-2.938667pt;}
._12_c01191{margin-left:-1.869333pt;}
._8_c01191{width:1.165333pt;}
._10_c01191{width:2.338667pt;}
._5_c01191{width:3.597333pt;}
._3_c01191{width:4.733333pt;}
._2_c01191{width:6.384000pt;}
._17_c01191{width:7.352000pt;}
._0_c01191{width:8.309333pt;}
._7_c01191{width:9.656000pt;}
._1_c01191{width:10.640000pt;}
._a_c01191{width:11.653333pt;}
._18_c01191{width:12.565333pt;}
._11_c01191{width:13.578667pt;}
._9_c01191{width:14.490667pt;}
._b_c01191{width:16.002667pt;}
._d_c01191{width:17.429333pt;}
._13_c01191{width:18.746667pt;}
._23_c01191{width:20.013333pt;}
._f_c01191{width:20.925333pt;}
._14_c01191{width:22.474667pt;}
._19_c01191{width:24.370667pt;}
._c_c01191{width:26.296000pt;}
._22_c01191{width:27.781333pt;}
._2a_c01191{width:28.850667pt;}
._1b_c01191{width:30.952000pt;}
._6_c01191{width:36.074667pt;}
._1c_c01191{width:39.410667pt;}
._16_c01191{width:44.434667pt;}
._15_c01191{width:53.098667pt;}
._2c_c01191{width:80.933333pt;}
._27_c01191{width:84.909333pt;}
._2d_c01191{width:98.666667pt;}
._28_c01191{width:153.984000pt;}
._1f_c01191{width:171.696000pt;}
._1a_c01191{width:175.176000pt;}
._29_c01191{width:253.085333pt;}
._2b_c01191{width:1137.712000pt;}
.fs4_c01191{font-size:37.333333pt;}
.fs6_c01191{font-size:42.666667pt;}
.fs0_c01191{font-size:50.666667pt;}
.fs3_c01191{font-size:56.000000pt;}
.fs5_c01191{font-size:66.666667pt;}
.fs1_c01191{font-size:69.333333pt;}
.fs2_c01191{font-size:77.333333pt;}
.y0_c01191{bottom:0.000000pt;}
.y25_c01191{bottom:2.760000pt;}
.y24_c01191{bottom:6.425219pt;}
.y23_c01191{bottom:48.280000pt;}
.y22_c01191{bottom:68.413333pt;}
.y21_c01191{bottom:86.680000pt;}
.y20_c01191{bottom:113.080000pt;}
.y1f_c01191{bottom:134.813333pt;}
.y1e_c01191{bottom:157.480000pt;}
.y1d_c01191{bottom:178.813333pt;}
.y1c_c01191{bottom:200.813333pt;}
.y1b_c01191{bottom:224.413333pt;}
.y1a_c01191{bottom:245.746667pt;}
.y19_c01191{bottom:267.080000pt;}
.y18_c01191{bottom:289.213333pt;}
.y17_c01191{bottom:311.080000pt;}
.y16_c01191{bottom:333.080000pt;}
.y15_c01191{bottom:355.613333pt;}
.y14_c01191{bottom:377.213333pt;}
.y13_c01191{bottom:398.680000pt;}
.y12_c01191{bottom:420.680000pt;}
.y11_c01191{bottom:442.280000pt;}
.y10_c01191{bottom:465.080000pt;}
.yf_c01191{bottom:485.480000pt;}
.ye_c01191{bottom:508.280000pt;}
.yd_c01191{bottom:529.480000pt;}
.yc_c01191{bottom:551.480000pt;}
.yb_c01191{bottom:573.080000pt;}
.ya_c01191{bottom:595.213333pt;}
.y9_c01191{bottom:616.813333pt;}
.y8_c01191{bottom:640.013333pt;}
.y7_c01191{bottom:660.946667pt;}
.y6_c01191{bottom:683.080000pt;}
.y5_c01191{bottom:705.080000pt;}
.y4_c01191{bottom:726.013333pt;}
.y3_c01191{bottom:748.013333pt;}
.y2_c01191{bottom:770.680000pt;}
.y1_c01191{bottom:791.746667pt;}
.h8_c01191{height:11.733399pt;}
.h9_c01191{height:38.937500pt;}
.h3_c01191{height:51.062500pt;}
.h5_c01191{height:54.960938pt;}
.h6_c01191{height:59.300781pt;}
.h7_c01191{height:84.407552pt;}
.h2_c01191{height:87.783854pt;}
.h4_c01191{height:97.912760pt;}
.h1_c01191{height:876.666667pt;}
.h0_c01191{height:876.733333pt;}
.w2_c01191{width:93.222667pt;}
.w0_c01191{width:593.266667pt;}
.w1_c01191{width:593.333333pt;}
.x0_c01191{left:0.000000pt;}
.x1_c01191{left:17.466667pt;}
.x4_c01191{left:18.933333pt;}
.x7_c01191{left:21.333333pt;}
.x8_c01191{left:25.600000pt;}
.x5_c01191{left:100.133333pt;}
.x6_c01191{left:101.066667pt;}
.x2_c01191{left:102.400000pt;}
.xa_c01191{left:103.466667pt;}
.xb_c01191{left:104.400000pt;}
.x9_c01191{left:105.333333pt;}
.x3_c01191{left:123.600000pt;}
.xd_c01191{left:253.801554pt;}
.xc_c01191{left:494.133333pt;}
}





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

.ir_c01192:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01192{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01192;src:url('chunks/assets/font_f66f875bf5da424b6eb5c46f.woff2')format("woff");}.ff1_c01192{font-family:ff1_c01192;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01192;src:url('chunks/assets/font_409dbfbb2232cce555466149.woff2')format("woff");}.ff2_c01192{font-family:ff2_c01192;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01192;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff3_c01192{font-family:ff3_c01192;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01192;src:url('chunks/assets/font_4aa4b0f17cb63280422748d8.woff2')format("woff");}.ff4_c01192{font-family:ff4_c01192;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01192;src:url('chunks/assets/font_6ece80b775cae2639b754425.woff2')format("woff");}.ff5_c01192{font-family:ff5_c01192;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01192;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c01192{font-family:ff6_c01192;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01192{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01192{vertical-align:0.000000px;}
.ls2_c01192{letter-spacing:-3.000000px;}
.ls1_c01192{letter-spacing:0.000000px;}
.ls0_c01192{letter-spacing:5.400000px;}
.sc__c01192{text-shadow:none;}
.sc0_c01192{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01192{-webkit-text-stroke:0px transparent;}
.sc0_c01192{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01192{word-spacing:-14.250000px;}
.ws1_c01192{word-spacing:-0.285000px;}
.ws2_c01192{word-spacing:0.000000px;}
._1a_c01192{margin-left:-19.194000px;}
._1b_c01192{margin-left:-12.630000px;}
._a_c01192{margin-left:-9.282000px;}
._6_c01192{margin-left:-7.140000px;}
._9_c01192{margin-left:-5.304000px;}
._b_c01192{margin-left:-3.876000px;}
._13_c01192{margin-left:-2.523000px;}
._14_c01192{margin-left:-1.218000px;}
._7_c01192{width:1.734000px;}
._8_c01192{width:3.060000px;}
._d_c01192{width:4.488000px;}
._c_c01192{width:6.324000px;}
._3_c01192{width:7.956000px;}
._11_c01192{width:9.660000px;}
._5_c01192{width:11.628000px;}
._4_c01192{width:12.852000px;}
._1_c01192{width:14.382000px;}
._2_c01192{width:16.218000px;}
._12_c01192{width:17.574000px;}
._0_c01192{width:19.584000px;}
._10_c01192{width:21.624000px;}
._18_c01192{width:22.800000px;}
._f_c01192{width:24.072000px;}
._15_c01192{width:25.899000px;}
._19_c01192{width:27.591000px;}
._1d_c01192{width:29.175000px;}
._17_c01192{width:30.723000px;}
._1c_c01192{width:32.034000px;}
._1e_c01192{width:33.165000px;}
._1f_c01192{width:34.203000px;}
._20_c01192{width:47.244000px;}
._e_c01192{width:139.434000px;}
._16_c01192{width:493.965000px;}
.fc2_c01192{color:transparent;}
.fc1_c01192{color:rgb(128,128,128);}
.fc0_c01192{color:rgb(0,0,0);}
.fs6_c01192{font-size:48.000000px;}
.fs1_c01192{font-size:57.000000px;}
.fs5_c01192{font-size:72.000000px;}
.fs4_c01192{font-size:78.000000px;}
.fs2_c01192{font-size:87.000000px;}
.fs3_c01192{font-size:90.000000px;}
.fs0_c01192{font-size:102.000000px;}
.y0_c01192{bottom:0.000000px;}
.y24_c01192{bottom:3.105000px;}
.y23_c01192{bottom:7.228369px;}
.y21_c01192{bottom:70.920000px;}
.y20_c01192{bottom:94.470000px;}
.y1f_c01192{bottom:119.820000px;}
.y1e_c01192{bottom:143.820000px;}
.y1d_c01192{bottom:169.020000px;}
.y1c_c01192{bottom:194.670000px;}
.y1b_c01192{bottom:218.070000px;}
.y1a_c01192{bottom:241.620000px;}
.y19_c01192{bottom:265.920000px;}
.y18_c01192{bottom:290.970000px;}
.y22_c01192{bottom:313.170000px;}
.y17_c01192{bottom:314.820000px;}
.y16_c01192{bottom:339.120000px;}
.y15_c01192{bottom:364.170000px;}
.y14_c01192{bottom:388.770000px;}
.y13_c01192{bottom:412.470000px;}
.y12_c01192{bottom:436.620000px;}
.y11_c01192{bottom:460.620000px;}
.y10_c01192{bottom:484.920000px;}
.yf_c01192{bottom:508.920000px;}
.ye_c01192{bottom:532.470000px;}
.yd_c01192{bottom:591.870000px;}
.yc_c01192{bottom:620.370000px;}
.yb_c01192{bottom:649.320000px;}
.ya_c01192{bottom:694.170000px;}
.y9_c01192{bottom:720.570000px;}
.y8_c01192{bottom:744.870000px;}
.y7_c01192{bottom:768.870000px;}
.y6_c01192{bottom:793.470000px;}
.y5_c01192{bottom:817.470000px;}
.y4_c01192{bottom:842.070000px;}
.y3_c01192{bottom:865.920000px;}
.y2_c01192{bottom:890.370000px;}
.y1_c01192{bottom:929.820000px;}
.h8_c01192{height:13.200073px;}
.h9_c01192{height:43.804688px;}
.h7_c01192{height:55.914551px;}
.h2_c01192{height:57.445312px;}
.h6_c01192{height:72.562500px;}
.h5_c01192{height:88.286133px;}
.h4_c01192{height:88.330078px;}
.h3_c01192{height:92.829000px;}
.h1_c01192{height:100.057617px;}
.h0_c01192{height:975.750000px;}
.w2_c01192{width:104.875500px;}
.w0_c01192{width:664.200000px;}
.w1_c01192{width:664.500000px;}
.x0_c01192{left:0.000000px;}
.x2_c01192{left:59.100000px;}
.x3_c01192{left:60.150000px;}
.xa_c01192{left:61.800000px;}
.xb_c01192{left:63.150000px;}
.x4_c01192{left:79.650000px;}
.x1_c01192{left:94.800000px;}
.x5_c01192{left:117.150000px;}
.x9_c01192{left:192.750000px;}
.x7_c01192{left:194.700000px;}
.x8_c01192{left:196.200000px;}
.x6_c01192{left:264.300000px;}
.xe_c01192{left:283.914230px;}
.xc_c01192{left:385.800000px;}
.xd_c01192{left:594.000000px;}
@media print{
.v0_c01192{vertical-align:0.000000pt;}
.ls2_c01192{letter-spacing:-2.666667pt;}
.ls1_c01192{letter-spacing:0.000000pt;}
.ls0_c01192{letter-spacing:4.800000pt;}
.ws0_c01192{word-spacing:-12.666667pt;}
.ws1_c01192{word-spacing:-0.253333pt;}
.ws2_c01192{word-spacing:0.000000pt;}
._1a_c01192{margin-left:-17.061333pt;}
._1b_c01192{margin-left:-11.226667pt;}
._a_c01192{margin-left:-8.250667pt;}
._6_c01192{margin-left:-6.346667pt;}
._9_c01192{margin-left:-4.714667pt;}
._b_c01192{margin-left:-3.445333pt;}
._13_c01192{margin-left:-2.242667pt;}
._14_c01192{margin-left:-1.082667pt;}
._7_c01192{width:1.541333pt;}
._8_c01192{width:2.720000pt;}
._d_c01192{width:3.989333pt;}
._c_c01192{width:5.621333pt;}
._3_c01192{width:7.072000pt;}
._11_c01192{width:8.586667pt;}
._5_c01192{width:10.336000pt;}
._4_c01192{width:11.424000pt;}
._1_c01192{width:12.784000pt;}
._2_c01192{width:14.416000pt;}
._12_c01192{width:15.621333pt;}
._0_c01192{width:17.408000pt;}
._10_c01192{width:19.221333pt;}
._18_c01192{width:20.266667pt;}
._f_c01192{width:21.397333pt;}
._15_c01192{width:23.021333pt;}
._19_c01192{width:24.525333pt;}
._1d_c01192{width:25.933333pt;}
._17_c01192{width:27.309333pt;}
._1c_c01192{width:28.474667pt;}
._1e_c01192{width:29.480000pt;}
._1f_c01192{width:30.402667pt;}
._20_c01192{width:41.994667pt;}
._e_c01192{width:123.941333pt;}
._16_c01192{width:439.080000pt;}
.fs6_c01192{font-size:42.666667pt;}
.fs1_c01192{font-size:50.666667pt;}
.fs5_c01192{font-size:64.000000pt;}
.fs4_c01192{font-size:69.333333pt;}
.fs2_c01192{font-size:77.333333pt;}
.fs3_c01192{font-size:80.000000pt;}
.fs0_c01192{font-size:90.666667pt;}
.y0_c01192{bottom:0.000000pt;}
.y24_c01192{bottom:2.760000pt;}
.y23_c01192{bottom:6.425217pt;}
.y21_c01192{bottom:63.040000pt;}
.y20_c01192{bottom:83.973333pt;}
.y1f_c01192{bottom:106.506667pt;}
.y1e_c01192{bottom:127.840000pt;}
.y1d_c01192{bottom:150.240000pt;}
.y1c_c01192{bottom:173.040000pt;}
.y1b_c01192{bottom:193.840000pt;}
.y1a_c01192{bottom:214.773333pt;}
.y19_c01192{bottom:236.373333pt;}
.y18_c01192{bottom:258.640000pt;}
.y22_c01192{bottom:278.373333pt;}
.y17_c01192{bottom:279.840000pt;}
.y16_c01192{bottom:301.440000pt;}
.y15_c01192{bottom:323.706667pt;}
.y14_c01192{bottom:345.573333pt;}
.y13_c01192{bottom:366.640000pt;}
.y12_c01192{bottom:388.106667pt;}
.y11_c01192{bottom:409.440000pt;}
.y10_c01192{bottom:431.040000pt;}
.yf_c01192{bottom:452.373333pt;}
.ye_c01192{bottom:473.306667pt;}
.yd_c01192{bottom:526.106667pt;}
.yc_c01192{bottom:551.440000pt;}
.yb_c01192{bottom:577.173333pt;}
.ya_c01192{bottom:617.040000pt;}
.y9_c01192{bottom:640.506667pt;}
.y8_c01192{bottom:662.106667pt;}
.y7_c01192{bottom:683.440000pt;}
.y6_c01192{bottom:705.306667pt;}
.y5_c01192{bottom:726.640000pt;}
.y4_c01192{bottom:748.506667pt;}
.y3_c01192{bottom:769.706667pt;}
.y2_c01192{bottom:791.440000pt;}
.y1_c01192{bottom:826.506667pt;}
.h8_c01192{height:11.733399pt;}
.h9_c01192{height:38.937500pt;}
.h7_c01192{height:49.701823pt;}
.h2_c01192{height:51.062500pt;}
.h6_c01192{height:64.500000pt;}
.h5_c01192{height:78.476562pt;}
.h4_c01192{height:78.515625pt;}
.h3_c01192{height:82.514667pt;}
.h1_c01192{height:88.940104pt;}
.h0_c01192{height:867.333333pt;}
.w2_c01192{width:93.222667pt;}
.w0_c01192{width:590.400000pt;}
.w1_c01192{width:590.666667pt;}
.x0_c01192{left:0.000000pt;}
.x2_c01192{left:52.533333pt;}
.x3_c01192{left:53.466667pt;}
.xa_c01192{left:54.933333pt;}
.xb_c01192{left:56.133333pt;}
.x4_c01192{left:70.800000pt;}
.x1_c01192{left:84.266667pt;}
.x5_c01192{left:104.133333pt;}
.x9_c01192{left:171.333333pt;}
.x7_c01192{left:173.066667pt;}
.x8_c01192{left:174.400000pt;}
.x6_c01192{left:234.933333pt;}
.xe_c01192{left:252.368205pt;}
.xc_c01192{left:342.933333pt;}
.xd_c01192{left:528.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_c01193 {
    display:none;
  }
  .loading-indicator_c01193.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01193 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01193 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01193" -> "#page-container .classname_c01193")
 */
.pf_c01193 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01193 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01193.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01193 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01193 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01193 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01193 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01193 {overflow:visible;}
  }
}
.c_c01193 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01193 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01193:after { /* webkit #35443 */
  content: '';
}
.t_c01193:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01193 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01193 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01193 { /* info for Javascript */
  display:none;
}
.l_c01193 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01193 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01193 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01193:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01193{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01193;src:url('chunks/assets/font_82c8b6823a3d48552edbc4cf.woff2')format("woff");}.ff1_c01193{font-family:ff1_c01193;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01193;src:url('chunks/assets/font_545009e25d95cd88d1172ca5.woff2')format("woff");}.ff2_c01193{font-family:ff2_c01193;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01193;src:url('chunks/assets/font_8a3e59425a23365e8adfde31.woff2')format("woff");}.ff3_c01193{font-family:ff3_c01193;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01193;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff4_c01193{font-family:ff4_c01193;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01193;src:url('chunks/assets/font_a72a9f2c123fa8514e2fad46.woff2')format("woff");}.ff5_c01193{font-family:ff5_c01193;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01193;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c01193{font-family:ff6_c01193;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01193{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01193{vertical-align:0.000000px;}
.ls2_c01193{letter-spacing:-9.000000px;}
.ls3_c01193{letter-spacing:0.000000px;}
.ls0_c01193{letter-spacing:11.061000px;}
.ls1_c01193{letter-spacing:19.446000px;}
.ls4_c01193{letter-spacing:33.000000px;}
.sc__c01193{text-shadow:none;}
.sc0_c01193{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01193{-webkit-text-stroke:0px transparent;}
.sc0_c01193{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01193{word-spacing:-81.378000px;}
.ws1_c01193{word-spacing:-14.250000px;}
.ws5_c01193{word-spacing:0.000000px;}
.ws4_c01193{word-spacing:1.938000px;}
.ws2_c01193{word-spacing:2.223000px;}
.ws3_c01193{word-spacing:366.741000px;}
._22_c01193{margin-left:-26.505000px;}
._1f_c01193{margin-left:-21.774000px;}
._20_c01193{margin-left:-20.121000px;}
._1_c01193{margin-left:-18.480000px;}
._21_c01193{margin-left:-15.537000px;}
._0_c01193{margin-left:-14.124000px;}
._2b_c01193{margin-left:-11.100000px;}
._12_c01193{margin-left:-9.519000px;}
._24_c01193{margin-left:-7.074000px;}
._26_c01193{margin-left:-5.529000px;}
._25_c01193{margin-left:-4.014000px;}
._17_c01193{margin-left:-2.508000px;}
._23_c01193{margin-left:-1.419000px;}
._3_c01193{width:1.782000px;}
._5_c01193{width:2.970000px;}
._4_c01193{width:4.455000px;}
._6_c01193{width:5.643000px;}
._14_c01193{width:7.068000px;}
._e_c01193{width:8.151000px;}
._11_c01193{width:10.032000px;}
._a_c01193{width:11.115000px;}
._f_c01193{width:12.198000px;}
._1c_c01193{width:13.200000px;}
._29_c01193{width:14.403000px;}
._d_c01193{width:15.618000px;}
._10_c01193{width:17.100000px;}
._8_c01193{width:18.924000px;}
._c_c01193{width:20.406000px;}
._b_c01193{width:21.717000px;}
._1d_c01193{width:23.544000px;}
._9_c01193{width:24.738000px;}
._18_c01193{width:25.878000px;}
._1b_c01193{width:27.930000px;}
._19_c01193{width:29.298000px;}
._7_c01193{width:31.407000px;}
._1a_c01193{width:36.081000px;}
._15_c01193{width:38.019000px;}
._2_c01193{width:44.148000px;}
._28_c01193{width:46.629000px;}
._1e_c01193{width:74.961000px;}
._16_c01193{width:146.892000px;}
._27_c01193{width:202.635000px;}
._13_c01193{width:297.819000px;}
._2a_c01193{width:367.374000px;}
.fc2_c01193{color:transparent;}
.fc1_c01193{color:rgb(128,128,128);}
.fc0_c01193{color:rgb(0,0,0);}
.fs4_c01193{font-size:48.000000px;}
.fs2_c01193{font-size:57.000000px;}
.fs3_c01193{font-size:78.000000px;}
.fs0_c01193{font-size:99.000000px;}
.fs1_c01193{font-size:132.000000px;}
.y0_c01193{bottom:0.000000px;}
.y23_c01193{bottom:3.105000px;}
.y22_c01193{bottom:7.228371px;}
.y21_c01193{bottom:146.565000px;}
.y20_c01193{bottom:171.465000px;}
.y1f_c01193{bottom:195.765000px;}
.y1e_c01193{bottom:220.515000px;}
.y1d_c01193{bottom:245.415000px;}
.y1c_c01193{bottom:269.715000px;}
.y1b_c01193{bottom:294.015000px;}
.y1a_c01193{bottom:318.615000px;}
.y19_c01193{bottom:343.365000px;}
.y18_c01193{bottom:367.515000px;}
.y17_c01193{bottom:391.965000px;}
.y16_c01193{bottom:416.565000px;}
.y15_c01193{bottom:440.565000px;}
.y14_c01193{bottom:464.715000px;}
.y13_c01193{bottom:488.415000px;}
.y12_c01193{bottom:512.415000px;}
.y11_c01193{bottom:536.715000px;}
.y10_c01193{bottom:560.715000px;}
.yf_c01193{bottom:584.865000px;}
.ye_c01193{bottom:609.315000px;}
.yd_c01193{bottom:633.615000px;}
.yc_c01193{bottom:657.165000px;}
.yb_c01193{bottom:681.765000px;}
.ya_c01193{bottom:706.365000px;}
.y9_c01193{bottom:730.665000px;}
.y8_c01193{bottom:754.965000px;}
.y7_c01193{bottom:778.665000px;}
.y6_c01193{bottom:803.265000px;}
.y5_c01193{bottom:827.265000px;}
.y4_c01193{bottom:852.315000px;}
.y3_c01193{bottom:877.515000px;}
.y2_c01193{bottom:899.865000px;}
.y1_c01193{bottom:937.965000px;}
.h6_c01193{height:13.200074px;}
.h7_c01193{height:43.804688px;}
.h4_c01193{height:55.942383px;}
.h3_c01193{height:57.445312px;}
.h5_c01193{height:98.756836px;}
.h2_c01193{height:167.126953px;}
.h1_c01193{height:986.250000px;}
.h0_c01193{height:986.325000px;}
.w2_c01193{width:104.875500px;}
.w0_c01193{width:667.425000px;}
.w1_c01193{width:667.500000px;}
.x0_c01193{left:0.000000px;}
.x3_c01193{left:21.300000px;}
.x6_c01193{left:23.250000px;}
.xb_c01193{left:26.400000px;}
.x5_c01193{left:63.900000px;}
.xa_c01193{left:73.350000px;}
.x2_c01193{left:116.400000px;}
.x1_c01193{left:118.050000px;}
.x4_c01193{left:119.100000px;}
.x7_c01193{left:120.150000px;}
.x8_c01193{left:121.200000px;}
.x9_c01193{left:123.150000px;}
.xc_c01193{left:124.200000px;}
.xd_c01193{left:285.526749px;}
@media print{
.v0_c01193{vertical-align:0.000000pt;}
.ls2_c01193{letter-spacing:-8.000000pt;}
.ls3_c01193{letter-spacing:0.000000pt;}
.ls0_c01193{letter-spacing:9.832000pt;}
.ls1_c01193{letter-spacing:17.285333pt;}
.ls4_c01193{letter-spacing:29.333333pt;}
.ws0_c01193{word-spacing:-72.336000pt;}
.ws1_c01193{word-spacing:-12.666667pt;}
.ws5_c01193{word-spacing:0.000000pt;}
.ws4_c01193{word-spacing:1.722667pt;}
.ws2_c01193{word-spacing:1.976000pt;}
.ws3_c01193{word-spacing:325.992000pt;}
._22_c01193{margin-left:-23.560000pt;}
._1f_c01193{margin-left:-19.354667pt;}
._20_c01193{margin-left:-17.885333pt;}
._1_c01193{margin-left:-16.426667pt;}
._21_c01193{margin-left:-13.810667pt;}
._0_c01193{margin-left:-12.554667pt;}
._2b_c01193{margin-left:-9.866667pt;}
._12_c01193{margin-left:-8.461333pt;}
._24_c01193{margin-left:-6.288000pt;}
._26_c01193{margin-left:-4.914667pt;}
._25_c01193{margin-left:-3.568000pt;}
._17_c01193{margin-left:-2.229333pt;}
._23_c01193{margin-left:-1.261333pt;}
._3_c01193{width:1.584000pt;}
._5_c01193{width:2.640000pt;}
._4_c01193{width:3.960000pt;}
._6_c01193{width:5.016000pt;}
._14_c01193{width:6.282667pt;}
._e_c01193{width:7.245333pt;}
._11_c01193{width:8.917333pt;}
._a_c01193{width:9.880000pt;}
._f_c01193{width:10.842667pt;}
._1c_c01193{width:11.733333pt;}
._29_c01193{width:12.802667pt;}
._d_c01193{width:13.882667pt;}
._10_c01193{width:15.200000pt;}
._8_c01193{width:16.821333pt;}
._c_c01193{width:18.138667pt;}
._b_c01193{width:19.304000pt;}
._1d_c01193{width:20.928000pt;}
._9_c01193{width:21.989333pt;}
._18_c01193{width:23.002667pt;}
._1b_c01193{width:24.826667pt;}
._19_c01193{width:26.042667pt;}
._7_c01193{width:27.917333pt;}
._1a_c01193{width:32.072000pt;}
._15_c01193{width:33.794667pt;}
._2_c01193{width:39.242667pt;}
._28_c01193{width:41.448000pt;}
._1e_c01193{width:66.632000pt;}
._16_c01193{width:130.570667pt;}
._27_c01193{width:180.120000pt;}
._13_c01193{width:264.728000pt;}
._2a_c01193{width:326.554667pt;}
.fs4_c01193{font-size:42.666667pt;}
.fs2_c01193{font-size:50.666667pt;}
.fs3_c01193{font-size:69.333333pt;}
.fs0_c01193{font-size:88.000000pt;}
.fs1_c01193{font-size:117.333333pt;}
.y0_c01193{bottom:0.000000pt;}
.y23_c01193{bottom:2.760000pt;}
.y22_c01193{bottom:6.425219pt;}
.y21_c01193{bottom:130.280000pt;}
.y20_c01193{bottom:152.413333pt;}
.y1f_c01193{bottom:174.013333pt;}
.y1e_c01193{bottom:196.013333pt;}
.y1d_c01193{bottom:218.146667pt;}
.y1c_c01193{bottom:239.746667pt;}
.y1b_c01193{bottom:261.346667pt;}
.y1a_c01193{bottom:283.213333pt;}
.y19_c01193{bottom:305.213333pt;}
.y18_c01193{bottom:326.680000pt;}
.y17_c01193{bottom:348.413333pt;}
.y16_c01193{bottom:370.280000pt;}
.y15_c01193{bottom:391.613333pt;}
.y14_c01193{bottom:413.080000pt;}
.y13_c01193{bottom:434.146667pt;}
.y12_c01193{bottom:455.480000pt;}
.y11_c01193{bottom:477.080000pt;}
.y10_c01193{bottom:498.413333pt;}
.yf_c01193{bottom:519.880000pt;}
.ye_c01193{bottom:541.613333pt;}
.yd_c01193{bottom:563.213333pt;}
.yc_c01193{bottom:584.146667pt;}
.yb_c01193{bottom:606.013333pt;}
.ya_c01193{bottom:627.880000pt;}
.y9_c01193{bottom:649.480000pt;}
.y8_c01193{bottom:671.080000pt;}
.y7_c01193{bottom:692.146667pt;}
.y6_c01193{bottom:714.013333pt;}
.y5_c01193{bottom:735.346667pt;}
.y4_c01193{bottom:757.613333pt;}
.y3_c01193{bottom:780.013333pt;}
.y2_c01193{bottom:799.880000pt;}
.y1_c01193{bottom:833.746667pt;}
.h6_c01193{height:11.733399pt;}
.h7_c01193{height:38.937500pt;}
.h4_c01193{height:49.726562pt;}
.h3_c01193{height:51.062500pt;}
.h5_c01193{height:87.783854pt;}
.h2_c01193{height:148.557292pt;}
.h1_c01193{height:876.666667pt;}
.h0_c01193{height:876.733333pt;}
.w2_c01193{width:93.222667pt;}
.w0_c01193{width:593.266667pt;}
.w1_c01193{width:593.333333pt;}
.x0_c01193{left:0.000000pt;}
.x3_c01193{left:18.933333pt;}
.x6_c01193{left:20.666667pt;}
.xb_c01193{left:23.466667pt;}
.x5_c01193{left:56.800000pt;}
.xa_c01193{left:65.200000pt;}
.x2_c01193{left:103.466667pt;}
.x1_c01193{left:104.933333pt;}
.x4_c01193{left:105.866667pt;}
.x7_c01193{left:106.800000pt;}
.x8_c01193{left:107.733333pt;}
.x9_c01193{left:109.466667pt;}
.xc_c01193{left:110.400000pt;}
.xd_c01193{left:253.801554pt;}
}





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

.ir_c01194:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01194{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01194;src:url('chunks/assets/font_c8c8f242932305c9c64c8d62.woff2')format("woff");}.ff1_c01194{font-family:ff1_c01194;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01194;src:url('chunks/assets/font_5469c29110687eddb6da5e36.woff2')format("woff");}.ff2_c01194{font-family:ff2_c01194;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01194;src:url('chunks/assets/font_1b18d0ac6d4dc65cb0e1c837.woff2')format("woff");}.ff3_c01194{font-family:ff3_c01194;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01194;src:url('chunks/assets/font_2732dae2a94025e567cdd476.woff2')format("woff");}.ff4_c01194{font-family:ff4_c01194;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01194;src:url('chunks/assets/font_f6015dd5ec8d7ed6ae6b7690.woff2')format("woff");}.ff5_c01194{font-family:ff5_c01194;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01194;src:url('chunks/assets/font_086b2cd148ec2597a4370954.woff2')format("woff");}.ff6_c01194{font-family:ff6_c01194;line-height:1.284180;font-style:normal;font-weight: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_c01194;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c01194{font-family:ff7_c01194;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01194{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01194{vertical-align:0.000000px;}
.v1_c01194{vertical-align:176.400000px;}
.ls3_c01194{letter-spacing:-3.000000px;}
.ls2_c01194{letter-spacing:0.000000px;}
.ls0_c01194{letter-spacing:4.002000px;}
.ls1_c01194{letter-spacing:12.300000px;}
.sc__c01194{text-shadow:none;}
.sc0_c01194{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01194{-webkit-text-stroke:0px transparent;}
.sc0_c01194{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01194{word-spacing:-79.356000px;}
.ws1_c01194{word-spacing:-72.000000px;}
.ws4_c01194{word-spacing:-15.158400px;}
.ws2_c01194{word-spacing:-14.250000px;}
.ws3_c01194{word-spacing:-2.679000px;}
.ws5_c01194{word-spacing:0.000000px;}
._2d_c01194{margin-left:-26.220000px;}
._2f_c01194{margin-left:-23.700000px;}
._8_c01194{margin-left:-19.899000px;}
._0_c01194{margin-left:-14.751000px;}
._9_c01194{margin-left:-12.672000px;}
._27_c01194{margin-left:-10.353000px;}
._22_c01194{margin-left:-8.325000px;}
._6_c01194{margin-left:-6.039000px;}
._3_c01194{margin-left:-4.752000px;}
._7_c01194{margin-left:-3.465000px;}
._4_c01194{margin-left:-2.079000px;}
._2_c01194{width:1.089000px;}
._16_c01194{width:2.964000px;}
._13_c01194{width:4.332000px;}
._d_c01194{width:6.156000px;}
._11_c01194{width:7.980000px;}
._14_c01194{width:9.804000px;}
._c_c01194{width:11.685000px;}
._17_c01194{width:12.711000px;}
._b_c01194{width:14.076000px;}
._f_c01194{width:15.960000px;}
._1b_c01194{width:17.157000px;}
._e_c01194{width:18.183000px;}
._12_c01194{width:19.437000px;}
._15_c01194{width:20.688000px;}
._18_c01194{width:21.831000px;}
._1d_c01194{width:23.067000px;}
._1e_c01194{width:24.225000px;}
._1f_c01194{width:25.365000px;}
._1c_c01194{width:27.474000px;}
._1a_c01194{width:35.118000px;}
._10_c01194{width:36.147000px;}
._2a_c01194{width:37.782000px;}
._1_c01194{width:48.510000px;}
._26_c01194{width:99.519000px;}
._24_c01194{width:110.088000px;}
._a_c01194{width:111.447000px;}
._23_c01194{width:133.923000px;}
._30_c01194{width:169.173000px;}
._21_c01194{width:184.161000px;}
._25_c01194{width:185.481000px;}
._19_c01194{width:190.143000px;}
._2c_c01194{width:221.058000px;}
._29_c01194{width:252.294000px;}
._28_c01194{width:263.895000px;}
._20_c01194{width:282.969000px;}
._5_c01194{width:290.070000px;}
._31_c01194{width:328.500000px;}
._2b_c01194{width:351.412200px;}
._2e_c01194{width:1163.625000px;}
.fc2_c01194{color:transparent;}
.fc1_c01194{color:rgb(128,128,128);}
.fc0_c01194{color:rgb(0,0,0);}
.fs4_c01194{font-size:45.600000px;}
.fs6_c01194{font-size:48.000000px;}
.fs2_c01194{font-size:57.000000px;}
.fs5_c01194{font-size:60.000000px;}
.fs0_c01194{font-size:99.000000px;}
.fs1_c01194{font-size:102.000000px;}
.fs3_c01194{font-size:288.000000px;}
.y0_c01194{bottom:0.000000px;}
.y27_c01194{bottom:3.105000px;}
.y26_c01194{bottom:7.228371px;}
.y25_c01194{bottom:40.965000px;}
.y24_c01194{bottom:46.965000px;}
.y23_c01194{bottom:72.015000px;}
.y22_c01194{bottom:96.615000px;}
.y21_c01194{bottom:121.515000px;}
.y20_c01194{bottom:145.215000px;}
.y1f_c01194{bottom:169.215000px;}
.y1e_c01194{bottom:193.365000px;}
.y1d_c01194{bottom:217.665000px;}
.y1c_c01194{bottom:241.965000px;}
.y1b_c01194{bottom:266.415000px;}
.y1a_c01194{bottom:290.565000px;}
.y19_c01194{bottom:314.565000px;}
.y18_c01194{bottom:338.865000px;}
.y17_c01194{bottom:362.865000px;}
.y16_c01194{bottom:386.865000px;}
.y15_c01194{bottom:411.165000px;}
.y14_c01194{bottom:435.165000px;}
.y13_c01194{bottom:459.015000px;}
.y12_c01194{bottom:483.315000px;}
.y11_c01194{bottom:507.615000px;}
.y10_c01194{bottom:530.865000px;}
.yf_c01194{bottom:554.865000px;}
.ye_c01194{bottom:578.865000px;}
.yd_c01194{bottom:602.565000px;}
.yc_c01194{bottom:628.215000px;}
.yb_c01194{bottom:650.415000px;}
.ya_c01194{bottom:674.115000px;}
.y9_c01194{bottom:698.715000px;}
.y8_c01194{bottom:722.265000px;}
.y7_c01194{bottom:746.565000px;}
.y6_c01194{bottom:770.865000px;}
.y5_c01194{bottom:796.515000px;}
.y3_c01194{bottom:799.965000px;}
.y4_c01194{bottom:818.415000px;}
.y2_c01194{bottom:869.115000px;}
.y1_c01194{bottom:904.965000px;}
.h6_c01194{height:13.200074px;}
.h7_c01194{height:43.804688px;}
.h3_c01194{height:57.445312px;}
.h5_c01194{height:58.886719px;}
.h2_c01194{height:115.870605px;}
.h4_c01194{height:282.656250px;}
.h1_c01194{height:966.000000px;}
.h0_c01194{height:966.075000px;}
.w1_c01194{width:104.875500px;}
.w0_c01194{width:657.750000px;}
.x0_c01194{left:0.000000px;}
.x8_c01194{left:51.300000px;}
.x7_c01194{left:52.350000px;}
.x6_c01194{left:53.700000px;}
.x5_c01194{left:55.650000px;}
.x3_c01194{left:57.750000px;}
.x1_c01194{left:75.300000px;}
.xa_c01194{left:86.700000px;}
.x4_c01194{left:96.300000px;}
.x2_c01194{left:167.100000px;}
.xb_c01194{left:280.689240px;}
.x9_c01194{left:386.100000px;}
@media print{
.v0_c01194{vertical-align:0.000000pt;}
.v1_c01194{vertical-align:156.800000pt;}
.ls3_c01194{letter-spacing:-2.666667pt;}
.ls2_c01194{letter-spacing:0.000000pt;}
.ls0_c01194{letter-spacing:3.557333pt;}
.ls1_c01194{letter-spacing:10.933333pt;}
.ws0_c01194{word-spacing:-70.538667pt;}
.ws1_c01194{word-spacing:-64.000000pt;}
.ws4_c01194{word-spacing:-13.474133pt;}
.ws2_c01194{word-spacing:-12.666667pt;}
.ws3_c01194{word-spacing:-2.381333pt;}
.ws5_c01194{word-spacing:0.000000pt;}
._2d_c01194{margin-left:-23.306667pt;}
._2f_c01194{margin-left:-21.066667pt;}
._8_c01194{margin-left:-17.688000pt;}
._0_c01194{margin-left:-13.112000pt;}
._9_c01194{margin-left:-11.264000pt;}
._27_c01194{margin-left:-9.202667pt;}
._22_c01194{margin-left:-7.400000pt;}
._6_c01194{margin-left:-5.368000pt;}
._3_c01194{margin-left:-4.224000pt;}
._7_c01194{margin-left:-3.080000pt;}
._4_c01194{margin-left:-1.848000pt;}
._2_c01194{width:0.968000pt;}
._16_c01194{width:2.634667pt;}
._13_c01194{width:3.850667pt;}
._d_c01194{width:5.472000pt;}
._11_c01194{width:7.093333pt;}
._14_c01194{width:8.714667pt;}
._c_c01194{width:10.386667pt;}
._17_c01194{width:11.298667pt;}
._b_c01194{width:12.512000pt;}
._f_c01194{width:14.186667pt;}
._1b_c01194{width:15.250667pt;}
._e_c01194{width:16.162667pt;}
._12_c01194{width:17.277333pt;}
._15_c01194{width:18.389333pt;}
._18_c01194{width:19.405333pt;}
._1d_c01194{width:20.504000pt;}
._1e_c01194{width:21.533333pt;}
._1f_c01194{width:22.546667pt;}
._1c_c01194{width:24.421333pt;}
._1a_c01194{width:31.216000pt;}
._10_c01194{width:32.130667pt;}
._2a_c01194{width:33.584000pt;}
._1_c01194{width:43.120000pt;}
._26_c01194{width:88.461333pt;}
._24_c01194{width:97.856000pt;}
._a_c01194{width:99.064000pt;}
._23_c01194{width:119.042667pt;}
._30_c01194{width:150.376000pt;}
._21_c01194{width:163.698667pt;}
._25_c01194{width:164.872000pt;}
._19_c01194{width:169.016000pt;}
._2c_c01194{width:196.496000pt;}
._29_c01194{width:224.261333pt;}
._28_c01194{width:234.573333pt;}
._20_c01194{width:251.528000pt;}
._5_c01194{width:257.840000pt;}
._31_c01194{width:292.000000pt;}
._2b_c01194{width:312.366400pt;}
._2e_c01194{width:1034.333333pt;}
.fs4_c01194{font-size:40.533333pt;}
.fs6_c01194{font-size:42.666667pt;}
.fs2_c01194{font-size:50.666667pt;}
.fs5_c01194{font-size:53.333333pt;}
.fs0_c01194{font-size:88.000000pt;}
.fs1_c01194{font-size:90.666667pt;}
.fs3_c01194{font-size:256.000000pt;}
.y0_c01194{bottom:0.000000pt;}
.y27_c01194{bottom:2.760000pt;}
.y26_c01194{bottom:6.425219pt;}
.y25_c01194{bottom:36.413333pt;}
.y24_c01194{bottom:41.746667pt;}
.y23_c01194{bottom:64.013333pt;}
.y22_c01194{bottom:85.880000pt;}
.y21_c01194{bottom:108.013333pt;}
.y20_c01194{bottom:129.080000pt;}
.y1f_c01194{bottom:150.413333pt;}
.y1e_c01194{bottom:171.880000pt;}
.y1d_c01194{bottom:193.480000pt;}
.y1c_c01194{bottom:215.080000pt;}
.y1b_c01194{bottom:236.813333pt;}
.y1a_c01194{bottom:258.280000pt;}
.y19_c01194{bottom:279.613333pt;}
.y18_c01194{bottom:301.213333pt;}
.y17_c01194{bottom:322.546667pt;}
.y16_c01194{bottom:343.880000pt;}
.y15_c01194{bottom:365.480000pt;}
.y14_c01194{bottom:386.813333pt;}
.y13_c01194{bottom:408.013333pt;}
.y12_c01194{bottom:429.613333pt;}
.y11_c01194{bottom:451.213333pt;}
.y10_c01194{bottom:471.880000pt;}
.yf_c01194{bottom:493.213333pt;}
.ye_c01194{bottom:514.546667pt;}
.yd_c01194{bottom:535.613333pt;}
.yc_c01194{bottom:558.413333pt;}
.yb_c01194{bottom:578.146667pt;}
.ya_c01194{bottom:599.213333pt;}
.y9_c01194{bottom:621.080000pt;}
.y8_c01194{bottom:642.013333pt;}
.y7_c01194{bottom:663.613333pt;}
.y6_c01194{bottom:685.213333pt;}
.y5_c01194{bottom:708.013333pt;}
.y3_c01194{bottom:711.080000pt;}
.y4_c01194{bottom:727.480000pt;}
.y2_c01194{bottom:772.546667pt;}
.y1_c01194{bottom:804.413333pt;}
.h6_c01194{height:11.733399pt;}
.h7_c01194{height:38.937500pt;}
.h3_c01194{height:51.062500pt;}
.h5_c01194{height:52.343750pt;}
.h2_c01194{height:102.996094pt;}
.h4_c01194{height:251.250000pt;}
.h1_c01194{height:858.666667pt;}
.h0_c01194{height:858.733333pt;}
.w1_c01194{width:93.222667pt;}
.w0_c01194{width:584.666667pt;}
.x0_c01194{left:0.000000pt;}
.x8_c01194{left:45.600000pt;}
.x7_c01194{left:46.533333pt;}
.x6_c01194{left:47.733333pt;}
.x5_c01194{left:49.466667pt;}
.x3_c01194{left:51.333333pt;}
.x1_c01194{left:66.933333pt;}
.xa_c01194{left:77.066667pt;}
.x4_c01194{left:85.600000pt;}
.x2_c01194{left:148.533333pt;}
.xb_c01194{left:249.501546pt;}
.x9_c01194{left:343.200000pt;}
}





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

.ir_c01195:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01195{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01195;src:url('chunks/assets/font_ad67d5e3187124a1457cdd9c.woff2')format("woff");}.ff1_c01195{font-family:ff1_c01195;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01195;src:url('chunks/assets/font_9c6e8f1e4fc68887ad627432.woff2')format("woff");}.ff2_c01195{font-family:ff2_c01195;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01195;src:url('chunks/assets/font_89ead6543d6addfd06c89624.woff2')format("woff");}.ff3_c01195{font-family:ff3_c01195;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01195;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff4_c01195{font-family:ff4_c01195;line-height:1.219238;font-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_c01195{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m0_c01195{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01195{vertical-align:0.000000px;}
.ls1_c01195{letter-spacing:0.000000px;}
.ls0_c01195{letter-spacing:24.300000px;}
.sc__c01195{text-shadow:none;}
.sc0_c01195{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01195{-webkit-text-stroke:0px transparent;}
.sc0_c01195{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01195{word-spacing:-27.000000px;}
.ws1_c01195{word-spacing:-14.250000px;}
.ws3_c01195{word-spacing:0.000000px;}
.ws0_c01195{word-spacing:1.938000px;}
._18_c01195{margin-left:-16.815000px;}
._12_c01195{margin-left:-9.348000px;}
._15_c01195{margin-left:-8.208000px;}
._1c_c01195{margin-left:-3.648000px;}
._13_c01195{margin-left:-2.166000px;}
._d_c01195{width:1.425000px;}
._6_c01195{width:3.420000px;}
._1_c01195{width:4.788000px;}
._c_c01195{width:6.156000px;}
._3_c01195{width:7.353000px;}
._9_c01195{width:8.379000px;}
._2_c01195{width:10.317000px;}
._0_c01195{width:11.571000px;}
._4_c01195{width:13.167000px;}
._7_c01195{width:15.504000px;}
._e_c01195{width:16.530000px;}
._b_c01195{width:18.240000px;}
._8_c01195{width:19.779000px;}
._5_c01195{width:21.204000px;}
._14_c01195{width:22.287000px;}
._11_c01195{width:23.313000px;}
._a_c01195{width:24.567000px;}
._10_c01195{width:26.391000px;}
._f_c01195{width:28.443000px;}
._1b_c01195{width:30.552000px;}
._16_c01195{width:34.257000px;}
._1d_c01195{width:42.381000px;}
._1a_c01195{width:49.818000px;}
._17_c01195{width:138.825000px;}
._1e_c01195{width:141.432000px;}
._19_c01195{width:202.977000px;}
.fc2_c01195{color:transparent;}
.fc1_c01195{color:rgb(128,128,128);}
.fc0_c01195{color:rgb(0,0,0);}
.fs2_c01195{font-size:48.000000px;}
.fs0_c01195{font-size:57.000000px;}
.fs1_c01195{font-size:108.000000px;}
.y0_c01195{bottom:0.000000px;}
.y25_c01195{bottom:3.105000px;}
.y24_c01195{bottom:7.228355px;}
.y23_c01195{bottom:54.285000px;}
.y22_c01195{bottom:78.285000px;}
.y21_c01195{bottom:102.885000px;}
.y20_c01195{bottom:127.485000px;}
.y1f_c01195{bottom:152.535000px;}
.y1e_c01195{bottom:176.835000px;}
.y1d_c01195{bottom:201.135000px;}
.y1c_c01195{bottom:224.985000px;}
.y1b_c01195{bottom:249.435000px;}
.y1a_c01195{bottom:274.635000px;}
.y19_c01195{bottom:298.635000px;}
.y18_c01195{bottom:322.935000px;}
.y17_c01195{bottom:347.535000px;}
.y16_c01195{bottom:372.135000px;}
.y15_c01195{bottom:396.435000px;}
.y14_c01195{bottom:420.735000px;}
.y13_c01195{bottom:445.185000px;}
.y12_c01195{bottom:469.485000px;}
.y11_c01195{bottom:493.335000px;}
.y10_c01195{bottom:517.035000px;}
.yf_c01195{bottom:541.035000px;}
.ye_c01195{bottom:564.285000px;}
.yd_c01195{bottom:589.635000px;}
.yc_c01195{bottom:613.785000px;}
.yb_c01195{bottom:638.235000px;}
.ya_c01195{bottom:662.085000px;}
.y9_c01195{bottom:686.385000px;}
.y8_c01195{bottom:710.685000px;}
.y7_c01195{bottom:734.985000px;}
.y6_c01195{bottom:759.285000px;}
.y5_c01195{bottom:782.535000px;}
.y4_c01195{bottom:806.985000px;}
.y3_c01195{bottom:831.285000px;}
.y2_c01195{bottom:855.585000px;}
.y1_c01195{bottom:879.735000px;}
.h4_c01195{height:13.200074px;}
.h5_c01195{height:43.804688px;}
.h2_c01195{height:57.445312px;}
.h3_c01195{height:108.843750px;}
.h1_c01195{height:975.000000px;}
.h0_c01195{height:975.225000px;}
.w2_c01195{width:104.875500px;}
.w0_c01195{width:659.850000px;}
.w1_c01195{width:660.000000px;}
.x0_c01195{left:0.000000px;}
.x7_c01195{left:25.950000px;}
.xa_c01195{left:28.950000px;}
.x11_c01195{left:31.500000px;}
.x6_c01195{left:79.350000px;}
.x1_c01195{left:111.000000px;}
.x2_c01195{left:112.500000px;}
.x3_c01195{left:113.850000px;}
.x4_c01195{left:115.050000px;}
.x5_c01195{left:117.750000px;}
.x8_c01195{left:119.100000px;}
.x9_c01195{left:120.450000px;}
.xb_c01195{left:121.500000px;}
.xd_c01195{left:122.550000px;}
.xe_c01195{left:124.800000px;}
.xf_c01195{left:125.850000px;}
.x10_c01195{left:130.200000px;}
.xc_c01195{left:146.850000px;}
.x13_c01195{left:281.739258px;}
.x12_c01195{left:579.150000px;}
@media print{
.v0_c01195{vertical-align:0.000000pt;}
.ls1_c01195{letter-spacing:0.000000pt;}
.ls0_c01195{letter-spacing:21.600000pt;}
.ws2_c01195{word-spacing:-24.000000pt;}
.ws1_c01195{word-spacing:-12.666667pt;}
.ws3_c01195{word-spacing:0.000000pt;}
.ws0_c01195{word-spacing:1.722667pt;}
._18_c01195{margin-left:-14.946667pt;}
._12_c01195{margin-left:-8.309333pt;}
._15_c01195{margin-left:-7.296000pt;}
._1c_c01195{margin-left:-3.242667pt;}
._13_c01195{margin-left:-1.925333pt;}
._d_c01195{width:1.266667pt;}
._6_c01195{width:3.040000pt;}
._1_c01195{width:4.256000pt;}
._c_c01195{width:5.472000pt;}
._3_c01195{width:6.536000pt;}
._9_c01195{width:7.448000pt;}
._2_c01195{width:9.170667pt;}
._0_c01195{width:10.285333pt;}
._4_c01195{width:11.704000pt;}
._7_c01195{width:13.781333pt;}
._e_c01195{width:14.693333pt;}
._b_c01195{width:16.213333pt;}
._8_c01195{width:17.581333pt;}
._5_c01195{width:18.848000pt;}
._14_c01195{width:19.810667pt;}
._11_c01195{width:20.722667pt;}
._a_c01195{width:21.837333pt;}
._10_c01195{width:23.458667pt;}
._f_c01195{width:25.282667pt;}
._1b_c01195{width:27.157333pt;}
._16_c01195{width:30.450667pt;}
._1d_c01195{width:37.672000pt;}
._1a_c01195{width:44.282667pt;}
._17_c01195{width:123.400000pt;}
._1e_c01195{width:125.717333pt;}
._19_c01195{width:180.424000pt;}
.fs2_c01195{font-size:42.666667pt;}
.fs0_c01195{font-size:50.666667pt;}
.fs1_c01195{font-size:96.000000pt;}
.y0_c01195{bottom:0.000000pt;}
.y25_c01195{bottom:2.760000pt;}
.y24_c01195{bottom:6.425204pt;}
.y23_c01195{bottom:48.253333pt;}
.y22_c01195{bottom:69.586667pt;}
.y21_c01195{bottom:91.453333pt;}
.y20_c01195{bottom:113.320000pt;}
.y1f_c01195{bottom:135.586667pt;}
.y1e_c01195{bottom:157.186667pt;}
.y1d_c01195{bottom:178.786667pt;}
.y1c_c01195{bottom:199.986667pt;}
.y1b_c01195{bottom:221.720000pt;}
.y1a_c01195{bottom:244.120000pt;}
.y19_c01195{bottom:265.453333pt;}
.y18_c01195{bottom:287.053333pt;}
.y17_c01195{bottom:308.920000pt;}
.y16_c01195{bottom:330.786667pt;}
.y15_c01195{bottom:352.386667pt;}
.y14_c01195{bottom:373.986667pt;}
.y13_c01195{bottom:395.720000pt;}
.y12_c01195{bottom:417.320000pt;}
.y11_c01195{bottom:438.520000pt;}
.y10_c01195{bottom:459.586667pt;}
.yf_c01195{bottom:480.920000pt;}
.ye_c01195{bottom:501.586667pt;}
.yd_c01195{bottom:524.120000pt;}
.yc_c01195{bottom:545.586667pt;}
.yb_c01195{bottom:567.320000pt;}
.ya_c01195{bottom:588.520000pt;}
.y9_c01195{bottom:610.120000pt;}
.y8_c01195{bottom:631.720000pt;}
.y7_c01195{bottom:653.320000pt;}
.y6_c01195{bottom:674.920000pt;}
.y5_c01195{bottom:695.586667pt;}
.y4_c01195{bottom:717.320000pt;}
.y3_c01195{bottom:738.920000pt;}
.y2_c01195{bottom:760.520000pt;}
.y1_c01195{bottom:781.986667pt;}
.h4_c01195{height:11.733399pt;}
.h5_c01195{height:38.937500pt;}
.h2_c01195{height:51.062500pt;}
.h3_c01195{height:96.750000pt;}
.h1_c01195{height:866.666667pt;}
.h0_c01195{height:866.866667pt;}
.w2_c01195{width:93.222667pt;}
.w0_c01195{width:586.533333pt;}
.w1_c01195{width:586.666667pt;}
.x0_c01195{left:0.000000pt;}
.x7_c01195{left:23.066667pt;}
.xa_c01195{left:25.733333pt;}
.x11_c01195{left:28.000000pt;}
.x6_c01195{left:70.533333pt;}
.x1_c01195{left:98.666667pt;}
.x2_c01195{left:100.000000pt;}
.x3_c01195{left:101.200000pt;}
.x4_c01195{left:102.266667pt;}
.x5_c01195{left:104.666667pt;}
.x8_c01195{left:105.866667pt;}
.x9_c01195{left:107.066667pt;}
.xb_c01195{left:108.000000pt;}
.xd_c01195{left:108.933333pt;}
.xe_c01195{left:110.933333pt;}
.xf_c01195{left:111.866667pt;}
.x10_c01195{left:115.733333pt;}
.xc_c01195{left:130.533333pt;}
.x13_c01195{left:250.434896pt;}
.x12_c01195{left:514.800000pt;}
}





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

.ir_c01196:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01196{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01196;src:url('chunks/assets/font_24ba4df1983cfad96fda69af.woff2')format("woff");}.ff1_c01196{font-family:ff1_c01196;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01196;src:url('chunks/assets/font_89ac42dbfa293fc3a74ee383.woff2')format("woff");}.ff2_c01196{font-family:ff2_c01196;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01196;src:url('chunks/assets/font_d73314c15f871414f84d9c60.woff2')format("woff");}.ff3_c01196{font-family:ff3_c01196;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01196;src:url('chunks/assets/font_72dd77c454384a050f335f0a.woff2')format("woff");}.ff4_c01196{font-family:ff4_c01196;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01196;src:url('chunks/assets/font_f1178d5ed29ab8af735b61eb.woff2')format("woff");}.ff5_c01196{font-family:ff5_c01196;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01196;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c01196{font-family:ff6_c01196;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01196{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01196{vertical-align:0.000000px;}
.ls2_c01196{letter-spacing:0.000000px;}
.ls1_c01196{letter-spacing:3.150000px;}
.ls0_c01196{letter-spacing:16.876800px;}
.ls3_c01196{letter-spacing:45.000000px;}
.sc__c01196{text-shadow:none;}
.sc0_c01196{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01196{-webkit-text-stroke:0px transparent;}
.sc0_c01196{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01196{word-spacing:-28.500000px;}
.ws5_c01196{word-spacing:-20.163000px;}
.ws4_c01196{word-spacing:-14.250000px;}
.ws1_c01196{word-spacing:-14.079000px;}
.ws2_c01196{word-spacing:-12.027000px;}
.ws7_c01196{word-spacing:0.000000px;}
.ws6_c01196{word-spacing:0.741000px;}
.ws3_c01196{word-spacing:66.777000px;}
._1f_c01196{margin-left:-29.358000px;}
._20_c01196{margin-left:-8.100000px;}
._0_c01196{margin-left:-3.441000px;}
._1_c01196{margin-left:-2.139000px;}
._2_c01196{margin-left:-1.023000px;}
._f_c01196{width:1.083000px;}
._4_c01196{width:2.139000px;}
._3_c01196{width:3.720000px;}
._c_c01196{width:4.731000px;}
._7_c01196{width:6.231000px;}
._b_c01196{width:7.353000px;}
._5_c01196{width:8.556000px;}
._11_c01196{width:9.930000px;}
._d_c01196{width:11.286000px;}
._e_c01196{width:13.167000px;}
._a_c01196{width:15.789000px;}
._6_c01196{width:17.019000px;}
._9_c01196{width:18.879000px;}
._1c_c01196{width:19.890000px;}
._13_c01196{width:20.976000px;}
._10_c01196{width:22.818000px;}
._14_c01196{width:24.726000px;}
._15_c01196{width:25.965000px;}
._23_c01196{width:27.108000px;}
._17_c01196{width:28.431000px;}
._18_c01196{width:29.646000px;}
._12_c01196{width:30.792000px;}
._24_c01196{width:31.842000px;}
._26_c01196{width:33.372000px;}
._16_c01196{width:35.478000px;}
._22_c01196{width:37.497000px;}
._25_c01196{width:39.651000px;}
._1b_c01196{width:42.720000px;}
._19_c01196{width:48.174000px;}
._1e_c01196{width:52.758000px;}
._1d_c01196{width:55.407000px;}
._8_c01196{width:108.903000px;}
._21_c01196{width:151.431000px;}
._1a_c01196{width:229.464000px;}
._27_c01196{width:250.272000px;}
._28_c01196{width:346.191000px;}
.fc2_c01196{color:transparent;}
.fc1_c01196{color:rgb(128,128,128);}
.fc0_c01196{color:rgb(0,0,0);}
.fs2_c01196{font-size:45.600000px;}
.fs3_c01196{font-size:48.000000px;}
.fs1_c01196{font-size:57.000000px;}
.fs0_c01196{font-size:93.000000px;}
.y0_c01196{bottom:0.000000px;}
.y26_c01196{bottom:3.105000px;}
.y25_c01196{bottom:7.228355px;}
.y24_c01196{bottom:49.485000px;}
.y23_c01196{bottom:73.185000px;}
.y22_c01196{bottom:98.835000px;}
.y21_c01196{bottom:122.835000px;}
.y20_c01196{bottom:147.435000px;}
.y1f_c01196{bottom:171.435000px;}
.y1e_c01196{bottom:196.035000px;}
.y1d_c01196{bottom:220.335000px;}
.y1c_c01196{bottom:244.935000px;}
.y1b_c01196{bottom:269.235000px;}
.y1a_c01196{bottom:293.985000px;}
.y19_c01196{bottom:318.135000px;}
.y18_c01196{bottom:342.435000px;}
.y17_c01196{bottom:366.885000px;}
.y16_c01196{bottom:391.185000px;}
.y15_c01196{bottom:415.785000px;}
.y14_c01196{bottom:439.785000px;}
.y13_c01196{bottom:464.385000px;}
.y12_c01196{bottom:487.935000px;}
.y11_c01196{bottom:512.685000px;}
.y10_c01196{bottom:537.585000px;}
.yf_c01196{bottom:560.835000px;}
.ye_c01196{bottom:584.535000px;}
.yd_c01196{bottom:608.535000px;}
.yc_c01196{bottom:632.835000px;}
.yb_c01196{bottom:657.435000px;}
.ya_c01196{bottom:681.735000px;}
.y9_c01196{bottom:705.285000px;}
.y8_c01196{bottom:729.585000px;}
.y7_c01196{bottom:754.185000px;}
.y6_c01196{bottom:777.885000px;}
.y5_c01196{bottom:802.185000px;}
.y4_c01196{bottom:826.485000px;}
.y3_c01196{bottom:850.485000px;}
.y2_c01196{bottom:874.785000px;}
.y1_c01196{bottom:910.185000px;}
.h4_c01196{height:13.200074px;}
.h5_c01196{height:43.804688px;}
.h3_c01196{height:57.445312px;}
.h2_c01196{height:97.464000px;}
.h0_c01196{height:977.925000px;}
.h1_c01196{height:978.000000px;}
.w2_c01196{width:104.875500px;}
.w0_c01196{width:665.850000px;}
.w1_c01196{width:666.000000px;}
.x0_c01196{left:0.000000px;}
.x8_c01196{left:46.950000px;}
.x2_c01196{left:52.200000px;}
.x3_c01196{left:54.300000px;}
.x4_c01196{left:55.950000px;}
.x5_c01196{left:57.000000px;}
.x6_c01196{left:58.950000px;}
.x7_c01196{left:60.000000px;}
.x9_c01196{left:61.050000px;}
.xa_c01196{left:63.150000px;}
.xb_c01196{left:64.350000px;}
.xc_c01196{left:65.700000px;}
.x1_c01196{left:92.700000px;}
.xe_c01196{left:284.739258px;}
.xd_c01196{left:345.600000px;}
@media print{
.v0_c01196{vertical-align:0.000000pt;}
.ls2_c01196{letter-spacing:0.000000pt;}
.ls1_c01196{letter-spacing:2.800000pt;}
.ls0_c01196{letter-spacing:15.001600pt;}
.ls3_c01196{letter-spacing:40.000000pt;}
.ws0_c01196{word-spacing:-25.333333pt;}
.ws5_c01196{word-spacing:-17.922667pt;}
.ws4_c01196{word-spacing:-12.666667pt;}
.ws1_c01196{word-spacing:-12.514667pt;}
.ws2_c01196{word-spacing:-10.690667pt;}
.ws7_c01196{word-spacing:0.000000pt;}
.ws6_c01196{word-spacing:0.658667pt;}
.ws3_c01196{word-spacing:59.357333pt;}
._1f_c01196{margin-left:-26.096000pt;}
._20_c01196{margin-left:-7.200000pt;}
._0_c01196{margin-left:-3.058667pt;}
._1_c01196{margin-left:-1.901333pt;}
._2_c01196{margin-left:-0.909333pt;}
._f_c01196{width:0.962667pt;}
._4_c01196{width:1.901333pt;}
._3_c01196{width:3.306667pt;}
._c_c01196{width:4.205333pt;}
._7_c01196{width:5.538667pt;}
._b_c01196{width:6.536000pt;}
._5_c01196{width:7.605333pt;}
._11_c01196{width:8.826667pt;}
._d_c01196{width:10.032000pt;}
._e_c01196{width:11.704000pt;}
._a_c01196{width:14.034667pt;}
._6_c01196{width:15.128000pt;}
._9_c01196{width:16.781333pt;}
._1c_c01196{width:17.680000pt;}
._13_c01196{width:18.645333pt;}
._10_c01196{width:20.282667pt;}
._14_c01196{width:21.978667pt;}
._15_c01196{width:23.080000pt;}
._23_c01196{width:24.096000pt;}
._17_c01196{width:25.272000pt;}
._18_c01196{width:26.352000pt;}
._12_c01196{width:27.370667pt;}
._24_c01196{width:28.304000pt;}
._26_c01196{width:29.664000pt;}
._16_c01196{width:31.536000pt;}
._22_c01196{width:33.330667pt;}
._25_c01196{width:35.245333pt;}
._1b_c01196{width:37.973333pt;}
._19_c01196{width:42.821333pt;}
._1e_c01196{width:46.896000pt;}
._1d_c01196{width:49.250667pt;}
._8_c01196{width:96.802667pt;}
._21_c01196{width:134.605333pt;}
._1a_c01196{width:203.968000pt;}
._27_c01196{width:222.464000pt;}
._28_c01196{width:307.725333pt;}
.fs2_c01196{font-size:40.533333pt;}
.fs3_c01196{font-size:42.666667pt;}
.fs1_c01196{font-size:50.666667pt;}
.fs0_c01196{font-size:82.666667pt;}
.y0_c01196{bottom:0.000000pt;}
.y26_c01196{bottom:2.760000pt;}
.y25_c01196{bottom:6.425204pt;}
.y24_c01196{bottom:43.986667pt;}
.y23_c01196{bottom:65.053333pt;}
.y22_c01196{bottom:87.853333pt;}
.y21_c01196{bottom:109.186667pt;}
.y20_c01196{bottom:131.053333pt;}
.y1f_c01196{bottom:152.386667pt;}
.y1e_c01196{bottom:174.253333pt;}
.y1d_c01196{bottom:195.853333pt;}
.y1c_c01196{bottom:217.720000pt;}
.y1b_c01196{bottom:239.320000pt;}
.y1a_c01196{bottom:261.320000pt;}
.y19_c01196{bottom:282.786667pt;}
.y18_c01196{bottom:304.386667pt;}
.y17_c01196{bottom:326.120000pt;}
.y16_c01196{bottom:347.720000pt;}
.y15_c01196{bottom:369.586667pt;}
.y14_c01196{bottom:390.920000pt;}
.y13_c01196{bottom:412.786667pt;}
.y12_c01196{bottom:433.720000pt;}
.y11_c01196{bottom:455.720000pt;}
.y10_c01196{bottom:477.853333pt;}
.yf_c01196{bottom:498.520000pt;}
.ye_c01196{bottom:519.586667pt;}
.yd_c01196{bottom:540.920000pt;}
.yc_c01196{bottom:562.520000pt;}
.yb_c01196{bottom:584.386667pt;}
.ya_c01196{bottom:605.986667pt;}
.y9_c01196{bottom:626.920000pt;}
.y8_c01196{bottom:648.520000pt;}
.y7_c01196{bottom:670.386667pt;}
.y6_c01196{bottom:691.453333pt;}
.y5_c01196{bottom:713.053333pt;}
.y4_c01196{bottom:734.653333pt;}
.y3_c01196{bottom:755.986667pt;}
.y2_c01196{bottom:777.586667pt;}
.y1_c01196{bottom:809.053333pt;}
.h4_c01196{height:11.733399pt;}
.h5_c01196{height:38.937500pt;}
.h3_c01196{height:51.062500pt;}
.h2_c01196{height:86.634667pt;}
.h0_c01196{height:869.266667pt;}
.h1_c01196{height:869.333333pt;}
.w2_c01196{width:93.222667pt;}
.w0_c01196{width:591.866667pt;}
.w1_c01196{width:592.000000pt;}
.x0_c01196{left:0.000000pt;}
.x8_c01196{left:41.733333pt;}
.x2_c01196{left:46.400000pt;}
.x3_c01196{left:48.266667pt;}
.x4_c01196{left:49.733333pt;}
.x5_c01196{left:50.666667pt;}
.x6_c01196{left:52.400000pt;}
.x7_c01196{left:53.333333pt;}
.x9_c01196{left:54.266667pt;}
.xa_c01196{left:56.133333pt;}
.xb_c01196{left:57.200000pt;}
.xc_c01196{left:58.400000pt;}
.x1_c01196{left:82.400000pt;}
.xe_c01196{left:253.101563pt;}
.xd_c01196{left:307.200000pt;}
}





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

.ir_c01197:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01197{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01197;src:url('chunks/assets/font_be021b3ccee93dcf35de716c.woff2')format("woff");}.ff1_c01197{font-family:ff1_c01197;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01197;src:url('chunks/assets/font_9c6e8f1e4fc68887ad627432.woff2')format("woff");}.ff2_c01197{font-family:ff2_c01197;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01197;src:url('chunks/assets/font_17f564374ff68fc1bcf66429.woff2')format("woff");}.ff3_c01197{font-family:ff3_c01197;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01197;src:url('chunks/assets/font_1b1389f089f71b116371cab1.woff2')format("woff");}.ff4_c01197{font-family:ff4_c01197;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01197;src:url('chunks/assets/font_0b013e38eae7a9927311ee3a.woff2')format("woff");}.ff5_c01197{font-family:ff5_c01197;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01197;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c01197{font-family:ff6_c01197;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01197{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01197{vertical-align:0.000000px;}
.ls7_c01197{letter-spacing:0.000000px;}
.ls8_c01197{letter-spacing:9.000000px;}
.ls2_c01197{letter-spacing:12.546000px;}
.ls6_c01197{letter-spacing:23.100000px;}
.ls4_c01197{letter-spacing:26.100000px;}
.ls1_c01197{letter-spacing:30.450000px;}
.ls0_c01197{letter-spacing:34.554000px;}
.ls3_c01197{letter-spacing:35.661000px;}
.ls9_c01197{letter-spacing:45.000000px;}
.ls5_c01197{letter-spacing:233.100000px;}
.sc__c01197{text-shadow:none;}
.sc0_c01197{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01197{-webkit-text-stroke:0px transparent;}
.sc0_c01197{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01197{word-spacing:-21.750000px;}
.ws5_c01197{word-spacing:-14.079000px;}
.ws3_c01197{word-spacing:-12.027000px;}
.ws6_c01197{word-spacing:-2.448000px;}
.ws4_c01197{word-spacing:-2.427000px;}
.ws2_c01197{word-spacing:-1.824000px;}
.ws1_c01197{word-spacing:-0.040800px;}
.ws7_c01197{word-spacing:0.000000px;}
._1e_c01197{margin-left:-22.305600px;}
._17_c01197{margin-left:-9.810000px;}
._1f_c01197{margin-left:-8.607000px;}
._16_c01197{margin-left:-5.262000px;}
._1d_c01197{margin-left:-4.248000px;}
._12_c01197{margin-left:-1.824000px;}
._b_c01197{width:1.083000px;}
._f_c01197{width:3.174000px;}
._8_c01197{width:4.788000px;}
._10_c01197{width:6.174000px;}
._3_c01197{width:7.182000px;}
._0_c01197{width:8.892000px;}
._9_c01197{width:9.975000px;}
._4_c01197{width:11.286000px;}
._1_c01197{width:12.939000px;}
._6_c01197{width:15.447000px;}
._7_c01197{width:17.328000px;}
._a_c01197{width:18.468000px;}
._1c_c01197{width:19.473000px;}
._5_c01197{width:20.520000px;}
._2_c01197{width:22.116000px;}
._c_c01197{width:23.484000px;}
._1a_c01197{width:24.624600px;}
._d_c01197{width:25.821000px;}
._11_c01197{width:27.777000px;}
._13_c01197{width:29.130000px;}
._14_c01197{width:30.456000px;}
._e_c01197{width:32.718000px;}
._1b_c01197{width:41.573400px;}
._18_c01197{width:132.090000px;}
._15_c01197{width:195.048000px;}
._19_c01197{width:255.774000px;}
._20_c01197{width:1474.665000px;}
.fc2_c01197{color:transparent;}
.fc1_c01197{color:rgb(128,128,128);}
.fc0_c01197{color:rgb(0,0,0);}
.fs3_c01197{font-size:40.800000px;}
.fs4_c01197{font-size:42.000000px;}
.fs5_c01197{font-size:48.000000px;}
.fs2_c01197{font-size:51.000000px;}
.fs0_c01197{font-size:57.000000px;}
.fs1_c01197{font-size:72.000000px;}
.y0_c01197{bottom:0.000000px;}
.y25_c01197{bottom:3.105000px;}
.y24_c01197{bottom:7.228371px;}
.y23_c01197{bottom:59.115000px;}
.y22_c01197{bottom:81.315000px;}
.y21_c01197{bottom:106.065000px;}
.y20_c01197{bottom:131.715000px;}
.y1f_c01197{bottom:156.615000px;}
.y1e_c01197{bottom:179.265000px;}
.y1d_c01197{bottom:203.265000px;}
.y1c_c01197{bottom:227.865000px;}
.y1b_c01197{bottom:251.565000px;}
.y1a_c01197{bottom:276.765000px;}
.y19_c01197{bottom:301.365000px;}
.y18_c01197{bottom:325.815000px;}
.y17_c01197{bottom:350.115000px;}
.y16_c01197{bottom:374.265000px;}
.y15_c01197{bottom:398.565000px;}
.y14_c01197{bottom:423.015000px;}
.y13_c01197{bottom:447.315000px;}
.y12_c01197{bottom:471.465000px;}
.y11_c01197{bottom:495.465000px;}
.y10_c01197{bottom:519.465000px;}
.yf_c01197{bottom:543.015000px;}
.ye_c01197{bottom:567.765000px;}
.yd_c01197{bottom:592.365000px;}
.yc_c01197{bottom:615.315000px;}
.yb_c01197{bottom:640.665000px;}
.ya_c01197{bottom:664.665000px;}
.y9_c01197{bottom:688.815000px;}
.y8_c01197{bottom:712.815000px;}
.y7_c01197{bottom:737.115000px;}
.y6_c01197{bottom:761.415000px;}
.y5_c01197{bottom:785.415000px;}
.y4_c01197{bottom:809.715000px;}
.y3_c01197{bottom:833.715000px;}
.y2_c01197{bottom:857.715000px;}
.y1_c01197{bottom:881.865000px;}
.h4_c01197{height:13.200074px;}
.h5_c01197{height:43.804688px;}
.h2_c01197{height:57.445312px;}
.h3_c01197{height:72.562500px;}
.h1_c01197{height:986.250000px;}
.h0_c01197{height:986.325000px;}
.w2_c01197{width:104.875500px;}
.w0_c01197{width:667.425000px;}
.w1_c01197{width:667.500000px;}
.x0_c01197{left:0.000000px;}
.x6_c01197{left:31.350000px;}
.x8_c01197{left:34.050000px;}
.x5_c01197{left:35.850000px;}
.xf_c01197{left:45.150000px;}
.x10_c01197{left:113.100000px;}
.xe_c01197{left:114.450000px;}
.xc_c01197{left:116.400000px;}
.xb_c01197{left:117.450000px;}
.xa_c01197{left:118.800000px;}
.x9_c01197{left:120.450000px;}
.x7_c01197{left:121.800000px;}
.x4_c01197{left:123.300000px;}
.x2_c01197{left:125.250000px;}
.x1_c01197{left:127.950000px;}
.xd_c01197{left:141.000000px;}
.x3_c01197{left:149.250000px;}
.x11_c01197{left:178.200000px;}
.x12_c01197{left:285.526749px;}
@media print{
.v0_c01197{vertical-align:0.000000pt;}
.ls7_c01197{letter-spacing:0.000000pt;}
.ls8_c01197{letter-spacing:8.000000pt;}
.ls2_c01197{letter-spacing:11.152000pt;}
.ls6_c01197{letter-spacing:20.533333pt;}
.ls4_c01197{letter-spacing:23.200000pt;}
.ls1_c01197{letter-spacing:27.066667pt;}
.ls0_c01197{letter-spacing:30.714667pt;}
.ls3_c01197{letter-spacing:31.698667pt;}
.ls9_c01197{letter-spacing:40.000000pt;}
.ls5_c01197{letter-spacing:207.200000pt;}
.ws0_c01197{word-spacing:-19.333333pt;}
.ws5_c01197{word-spacing:-12.514667pt;}
.ws3_c01197{word-spacing:-10.690667pt;}
.ws6_c01197{word-spacing:-2.176000pt;}
.ws4_c01197{word-spacing:-2.157333pt;}
.ws2_c01197{word-spacing:-1.621333pt;}
.ws1_c01197{word-spacing:-0.036267pt;}
.ws7_c01197{word-spacing:0.000000pt;}
._1e_c01197{margin-left:-19.827200pt;}
._17_c01197{margin-left:-8.720000pt;}
._1f_c01197{margin-left:-7.650667pt;}
._16_c01197{margin-left:-4.677333pt;}
._1d_c01197{margin-left:-3.776000pt;}
._12_c01197{margin-left:-1.621333pt;}
._b_c01197{width:0.962667pt;}
._f_c01197{width:2.821333pt;}
._8_c01197{width:4.256000pt;}
._10_c01197{width:5.488000pt;}
._3_c01197{width:6.384000pt;}
._0_c01197{width:7.904000pt;}
._9_c01197{width:8.866667pt;}
._4_c01197{width:10.032000pt;}
._1_c01197{width:11.501333pt;}
._6_c01197{width:13.730667pt;}
._7_c01197{width:15.402667pt;}
._a_c01197{width:16.416000pt;}
._1c_c01197{width:17.309333pt;}
._5_c01197{width:18.240000pt;}
._2_c01197{width:19.658667pt;}
._c_c01197{width:20.874667pt;}
._1a_c01197{width:21.888533pt;}
._d_c01197{width:22.952000pt;}
._11_c01197{width:24.690667pt;}
._13_c01197{width:25.893333pt;}
._14_c01197{width:27.072000pt;}
._e_c01197{width:29.082667pt;}
._1b_c01197{width:36.954133pt;}
._18_c01197{width:117.413333pt;}
._15_c01197{width:173.376000pt;}
._19_c01197{width:227.354667pt;}
._20_c01197{width:1310.813333pt;}
.fs3_c01197{font-size:36.266667pt;}
.fs4_c01197{font-size:37.333333pt;}
.fs5_c01197{font-size:42.666667pt;}
.fs2_c01197{font-size:45.333333pt;}
.fs0_c01197{font-size:50.666667pt;}
.fs1_c01197{font-size:64.000000pt;}
.y0_c01197{bottom:0.000000pt;}
.y25_c01197{bottom:2.760000pt;}
.y24_c01197{bottom:6.425219pt;}
.y23_c01197{bottom:52.546667pt;}
.y22_c01197{bottom:72.280000pt;}
.y21_c01197{bottom:94.280000pt;}
.y20_c01197{bottom:117.080000pt;}
.y1f_c01197{bottom:139.213333pt;}
.y1e_c01197{bottom:159.346667pt;}
.y1d_c01197{bottom:180.680000pt;}
.y1c_c01197{bottom:202.546667pt;}
.y1b_c01197{bottom:223.613333pt;}
.y1a_c01197{bottom:246.013333pt;}
.y19_c01197{bottom:267.880000pt;}
.y18_c01197{bottom:289.613333pt;}
.y17_c01197{bottom:311.213333pt;}
.y16_c01197{bottom:332.680000pt;}
.y15_c01197{bottom:354.280000pt;}
.y14_c01197{bottom:376.013333pt;}
.y13_c01197{bottom:397.613333pt;}
.y12_c01197{bottom:419.080000pt;}
.y11_c01197{bottom:440.413333pt;}
.y10_c01197{bottom:461.746667pt;}
.yf_c01197{bottom:482.680000pt;}
.ye_c01197{bottom:504.680000pt;}
.yd_c01197{bottom:526.546667pt;}
.yc_c01197{bottom:546.946667pt;}
.yb_c01197{bottom:569.480000pt;}
.ya_c01197{bottom:590.813333pt;}
.y9_c01197{bottom:612.280000pt;}
.y8_c01197{bottom:633.613333pt;}
.y7_c01197{bottom:655.213333pt;}
.y6_c01197{bottom:676.813333pt;}
.y5_c01197{bottom:698.146667pt;}
.y4_c01197{bottom:719.746667pt;}
.y3_c01197{bottom:741.080000pt;}
.y2_c01197{bottom:762.413333pt;}
.y1_c01197{bottom:783.880000pt;}
.h4_c01197{height:11.733399pt;}
.h5_c01197{height:38.937500pt;}
.h2_c01197{height:51.062500pt;}
.h3_c01197{height:64.500000pt;}
.h1_c01197{height:876.666667pt;}
.h0_c01197{height:876.733333pt;}
.w2_c01197{width:93.222667pt;}
.w0_c01197{width:593.266667pt;}
.w1_c01197{width:593.333333pt;}
.x0_c01197{left:0.000000pt;}
.x6_c01197{left:27.866667pt;}
.x8_c01197{left:30.266667pt;}
.x5_c01197{left:31.866667pt;}
.xf_c01197{left:40.133333pt;}
.x10_c01197{left:100.533333pt;}
.xe_c01197{left:101.733333pt;}
.xc_c01197{left:103.466667pt;}
.xb_c01197{left:104.400000pt;}
.xa_c01197{left:105.600000pt;}
.x9_c01197{left:107.066667pt;}
.x7_c01197{left:108.266667pt;}
.x4_c01197{left:109.600000pt;}
.x2_c01197{left:111.333333pt;}
.x1_c01197{left:113.733333pt;}
.xd_c01197{left:125.333333pt;}
.x3_c01197{left:132.666667pt;}
.x11_c01197{left:158.400000pt;}
.x12_c01197{left:253.801554pt;}
}





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

.ir_c01198:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01198{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01198;src:url('chunks/assets/font_209d18bf8488e2e5a63e4c97.woff2')format("woff");}.ff1_c01198{font-family:ff1_c01198;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01198;src:url('chunks/assets/font_e3f3aeb1d51bfaf8ff7f3328.woff2')format("woff");}.ff2_c01198{font-family:ff2_c01198;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01198;src:url('chunks/assets/font_74a0b11d34b84a1ce1152452.woff2')format("woff");}.ff3_c01198{font-family:ff3_c01198;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01198;src:url('chunks/assets/font_3cf880b428e9deb282e5d1c7.woff2')format("woff");}.ff4_c01198{font-family:ff4_c01198;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01198;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff5_c01198{font-family:ff5_c01198;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01198;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c01198{font-family:ff6_c01198;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01198{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01198{vertical-align:0.000000px;}
.ls2_c01198{letter-spacing:0.000000px;}
.ls3_c01198{letter-spacing:6.000000px;}
.ls1_c01198{letter-spacing:9.006000px;}
.ls0_c01198{letter-spacing:140.802000px;}
.sc__c01198{text-shadow:none;}
.sc0_c01198{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01198{-webkit-text-stroke:0px transparent;}
.sc0_c01198{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01198{word-spacing:-23.256000px;}
.ws2_c01198{word-spacing:-14.250000px;}
.ws0_c01198{word-spacing:-2.508000px;}
.ws3_c01198{word-spacing:0.000000px;}
._4_c01198{margin-left:-12.672000px;}
._3_c01198{margin-left:-10.692000px;}
._0_c01198{margin-left:-9.603000px;}
._8_c01198{margin-left:-8.118000px;}
._6_c01198{margin-left:-7.029000px;}
._5_c01198{margin-left:-4.158000px;}
._9_c01198{margin-left:-3.069000px;}
._2_c01198{margin-left:-1.485000px;}
._7_c01198{width:1.683000px;}
._1b_c01198{width:3.318000px;}
._14_c01198{width:4.959000px;}
._12_c01198{width:6.042000px;}
._b_c01198{width:7.581000px;}
._a_c01198{width:8.607000px;}
._1_c01198{width:9.801000px;}
._c_c01198{width:11.571000px;}
._e_c01198{width:13.110000px;}
._10_c01198{width:15.621000px;}
._d_c01198{width:16.815000px;}
._15_c01198{width:17.955000px;}
._19_c01198{width:19.092000px;}
._f_c01198{width:20.919000px;}
._17_c01198{width:22.521000px;}
._11_c01198{width:23.598000px;}
._1e_c01198{width:25.422000px;}
._1a_c01198{width:26.511000px;}
._18_c01198{width:28.275000px;}
._26_c01198{width:29.811000px;}
._1c_c01198{width:31.056000px;}
._13_c01198{width:32.100000px;}
._1d_c01198{width:34.752000px;}
._16_c01198{width:35.799000px;}
._20_c01198{width:36.972000px;}
._27_c01198{width:39.042000px;}
._1f_c01198{width:40.431000px;}
._22_c01198{width:58.710000px;}
._23_c01198{width:59.859000px;}
._25_c01198{width:87.618000px;}
._24_c01198{width:96.618000px;}
._21_c01198{width:169.470000px;}
.fc2_c01198{color:transparent;}
.fc1_c01198{color:rgb(128,128,128);}
.fc0_c01198{color:rgb(0,0,0);}
.fs4_c01198{font-size:48.000000px;}
.fs1_c01198{font-size:57.000000px;}
.fs3_c01198{font-size:60.000000px;}
.fs2_c01198{font-size:78.000000px;}
.fs0_c01198{font-size:99.000000px;}
.y0_c01198{bottom:0.000000px;}
.y26_c01198{bottom:3.105000px;}
.y25_c01198{bottom:7.228357px;}
.y24_c01198{bottom:68.580000px;}
.y23_c01198{bottom:92.130000px;}
.y22_c01198{bottom:117.780000px;}
.y21_c01198{bottom:141.780000px;}
.y20_c01198{bottom:166.380000px;}
.y1f_c01198{bottom:190.680000px;}
.y1e_c01198{bottom:215.430000px;}
.y1d_c01198{bottom:239.580000px;}
.y1c_c01198{bottom:263.580000px;}
.y1b_c01198{bottom:288.330000px;}
.y1a_c01198{bottom:312.480000px;}
.y19_c01198{bottom:336.780000px;}
.y18_c01198{bottom:361.230000px;}
.y17_c01198{bottom:385.380000px;}
.y16_c01198{bottom:409.380000px;}
.y15_c01198{bottom:433.980000px;}
.y14_c01198{bottom:457.680000px;}
.y13_c01198{bottom:481.680000px;}
.y12_c01198{bottom:505.680000px;}
.y11_c01198{bottom:529.530000px;}
.y10_c01198{bottom:553.230000px;}
.yf_c01198{bottom:577.530000px;}
.ye_c01198{bottom:601.080000px;}
.yd_c01198{bottom:625.080000px;}
.yc_c01198{bottom:649.080000px;}
.yb_c01198{bottom:672.630000px;}
.ya_c01198{bottom:697.230000px;}
.y9_c01198{bottom:720.930000px;}
.y8_c01198{bottom:745.230000px;}
.y7_c01198{bottom:769.230000px;}
.y6_c01198{bottom:793.530000px;}
.y5_c01198{bottom:817.380000px;}
.y4_c01198{bottom:841.380000px;}
.y3_c01198{bottom:865.680000px;}
.y2_c01198{bottom:889.980000px;}
.y1_c01198{bottom:923.730000px;}
.h5_c01198{height:13.200074px;}
.h6_c01198{height:43.804688px;}
.h2_c01198{height:57.445312px;}
.h4_c01198{height:58.886719px;}
.h3_c01198{height:98.756836px;}
.h1_c01198{height:115.870605px;}
.h0_c01198{height:968.250000px;}
.w2_c01198{width:104.875500px;}
.w1_c01198{width:659.250000px;}
.w0_c01198{width:659.325000px;}
.x0_c01198{left:0.000000px;}
.x2_c01198{left:41.550000px;}
.x3_c01198{left:42.750000px;}
.x4_c01198{left:44.100000px;}
.x5_c01198{left:45.600000px;}
.x6_c01198{left:46.950000px;}
.x7_c01198{left:48.600000px;}
.x8_c01198{left:50.550000px;}
.xb_c01198{left:51.900000px;}
.xc_c01198{left:52.950000px;}
.xd_c01198{left:54.000000px;}
.xe_c01198{left:55.050000px;}
.x9_c01198{left:56.700000px;}
.xa_c01198{left:58.950000px;}
.x1_c01198{left:78.600000px;}
.x10_c01198{left:281.476730px;}
.xf_c01198{left:501.450000px;}
@media print{
.v0_c01198{vertical-align:0.000000pt;}
.ls2_c01198{letter-spacing:0.000000pt;}
.ls3_c01198{letter-spacing:5.333333pt;}
.ls1_c01198{letter-spacing:8.005333pt;}
.ls0_c01198{letter-spacing:125.157333pt;}
.ws1_c01198{word-spacing:-20.672000pt;}
.ws2_c01198{word-spacing:-12.666667pt;}
.ws0_c01198{word-spacing:-2.229333pt;}
.ws3_c01198{word-spacing:0.000000pt;}
._4_c01198{margin-left:-11.264000pt;}
._3_c01198{margin-left:-9.504000pt;}
._0_c01198{margin-left:-8.536000pt;}
._8_c01198{margin-left:-7.216000pt;}
._6_c01198{margin-left:-6.248000pt;}
._5_c01198{margin-left:-3.696000pt;}
._9_c01198{margin-left:-2.728000pt;}
._2_c01198{margin-left:-1.320000pt;}
._7_c01198{width:1.496000pt;}
._1b_c01198{width:2.949333pt;}
._14_c01198{width:4.408000pt;}
._12_c01198{width:5.370667pt;}
._b_c01198{width:6.738667pt;}
._a_c01198{width:7.650667pt;}
._1_c01198{width:8.712000pt;}
._c_c01198{width:10.285333pt;}
._e_c01198{width:11.653333pt;}
._10_c01198{width:13.885333pt;}
._d_c01198{width:14.946667pt;}
._15_c01198{width:15.960000pt;}
._19_c01198{width:16.970667pt;}
._f_c01198{width:18.594667pt;}
._17_c01198{width:20.018667pt;}
._11_c01198{width:20.976000pt;}
._1e_c01198{width:22.597333pt;}
._1a_c01198{width:23.565333pt;}
._18_c01198{width:25.133333pt;}
._26_c01198{width:26.498667pt;}
._1c_c01198{width:27.605333pt;}
._13_c01198{width:28.533333pt;}
._1d_c01198{width:30.890667pt;}
._16_c01198{width:31.821333pt;}
._20_c01198{width:32.864000pt;}
._27_c01198{width:34.704000pt;}
._1f_c01198{width:35.938667pt;}
._22_c01198{width:52.186667pt;}
._23_c01198{width:53.208000pt;}
._25_c01198{width:77.882667pt;}
._24_c01198{width:85.882667pt;}
._21_c01198{width:150.640000pt;}
.fs4_c01198{font-size:42.666667pt;}
.fs1_c01198{font-size:50.666667pt;}
.fs3_c01198{font-size:53.333333pt;}
.fs2_c01198{font-size:69.333333pt;}
.fs0_c01198{font-size:88.000000pt;}
.y0_c01198{bottom:0.000000pt;}
.y26_c01198{bottom:2.760000pt;}
.y25_c01198{bottom:6.425206pt;}
.y24_c01198{bottom:60.960000pt;}
.y23_c01198{bottom:81.893333pt;}
.y22_c01198{bottom:104.693333pt;}
.y21_c01198{bottom:126.026667pt;}
.y20_c01198{bottom:147.893333pt;}
.y1f_c01198{bottom:169.493333pt;}
.y1e_c01198{bottom:191.493333pt;}
.y1d_c01198{bottom:212.960000pt;}
.y1c_c01198{bottom:234.293333pt;}
.y1b_c01198{bottom:256.293333pt;}
.y1a_c01198{bottom:277.760000pt;}
.y19_c01198{bottom:299.360000pt;}
.y18_c01198{bottom:321.093333pt;}
.y17_c01198{bottom:342.560000pt;}
.y16_c01198{bottom:363.893333pt;}
.y15_c01198{bottom:385.760000pt;}
.y14_c01198{bottom:406.826667pt;}
.y13_c01198{bottom:428.160000pt;}
.y12_c01198{bottom:449.493333pt;}
.y11_c01198{bottom:470.693333pt;}
.y10_c01198{bottom:491.760000pt;}
.yf_c01198{bottom:513.360000pt;}
.ye_c01198{bottom:534.293333pt;}
.yd_c01198{bottom:555.626667pt;}
.yc_c01198{bottom:576.960000pt;}
.yb_c01198{bottom:597.893333pt;}
.ya_c01198{bottom:619.760000pt;}
.y9_c01198{bottom:640.826667pt;}
.y8_c01198{bottom:662.426667pt;}
.y7_c01198{bottom:683.760000pt;}
.y6_c01198{bottom:705.360000pt;}
.y5_c01198{bottom:726.560000pt;}
.y4_c01198{bottom:747.893333pt;}
.y3_c01198{bottom:769.493333pt;}
.y2_c01198{bottom:791.093333pt;}
.y1_c01198{bottom:821.093333pt;}
.h5_c01198{height:11.733399pt;}
.h6_c01198{height:38.937500pt;}
.h2_c01198{height:51.062500pt;}
.h4_c01198{height:52.343750pt;}
.h3_c01198{height:87.783854pt;}
.h1_c01198{height:102.996094pt;}
.h0_c01198{height:860.666667pt;}
.w2_c01198{width:93.222667pt;}
.w1_c01198{width:586.000000pt;}
.w0_c01198{width:586.066667pt;}
.x0_c01198{left:0.000000pt;}
.x2_c01198{left:36.933333pt;}
.x3_c01198{left:38.000000pt;}
.x4_c01198{left:39.200000pt;}
.x5_c01198{left:40.533333pt;}
.x6_c01198{left:41.733333pt;}
.x7_c01198{left:43.200000pt;}
.x8_c01198{left:44.933333pt;}
.xb_c01198{left:46.133333pt;}
.xc_c01198{left:47.066667pt;}
.xd_c01198{left:48.000000pt;}
.xe_c01198{left:48.933333pt;}
.x9_c01198{left:50.400000pt;}
.xa_c01198{left:52.400000pt;}
.x1_c01198{left:69.866667pt;}
.x10_c01198{left:250.201538pt;}
.xf_c01198{left:445.733333pt;}
}





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

.ir_c01199:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01199{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01199;src:url('chunks/assets/font_a7cbeb5c84657b0db63af247.woff2')format("woff");}.ff1_c01199{font-family:ff1_c01199;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01199;src:url('chunks/assets/font_a03468c5e283851bac369c38.woff2')format("woff");}.ff2_c01199{font-family:ff2_c01199;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01199;src:url('chunks/assets/font_d6fe5e75dbcf96e86a972707.woff2')format("woff");}.ff3_c01199{font-family:ff3_c01199;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01199;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff4_c01199{font-family:ff4_c01199;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01199{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01199{vertical-align:0.000000px;}
.v1_c01199{vertical-align:2.400000px;}
.ls2_c01199{letter-spacing:0.000000px;}
.ls1_c01199{letter-spacing:2.592000px;}
.ls0_c01199{letter-spacing:178.080000px;}
.sc__c01199{text-shadow:none;}
.sc0_c01199{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01199{-webkit-text-stroke:0px transparent;}
.sc0_c01199{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01199{word-spacing:-28.500000px;}
.ws0_c01199{word-spacing:-11.628000px;}
.ws2_c01199{word-spacing:-8.721000px;}
.ws3_c01199{word-spacing:-1.482000px;}
.ws4_c01199{word-spacing:0.000000px;}
._1f_c01199{margin-left:-16.188000px;}
._f_c01199{margin-left:-12.084000px;}
._1a_c01199{margin-left:-9.291000px;}
._1e_c01199{margin-left:-7.467000px;}
._22_c01199{margin-left:-6.099000px;}
._19_c01199{margin-left:-2.508000px;}
._20_c01199{width:1.938000px;}
._d_c01199{width:3.534000px;}
._a_c01199{width:4.674000px;}
._3_c01199{width:6.213000px;}
._4_c01199{width:7.524000px;}
._b_c01199{width:8.550000px;}
._2_c01199{width:9.633000px;}
._16_c01199{width:10.716000px;}
._5_c01199{width:11.970000px;}
._8_c01199{width:13.110000px;}
._1_c01199{width:16.017000px;}
._7_c01199{width:17.271000px;}
._0_c01199{width:18.924000px;}
._6_c01199{width:20.121000px;}
._c_c01199{width:21.774000px;}
._1b_c01199{width:22.800000px;}
._1c_c01199{width:23.826000px;}
._9_c01199{width:25.251000px;}
._1d_c01199{width:26.505000px;}
._11_c01199{width:28.101000px;}
._21_c01199{width:29.298000px;}
._12_c01199{width:30.324000px;}
._14_c01199{width:31.464000px;}
._18_c01199{width:32.946000px;}
._15_c01199{width:35.283000px;}
._e_c01199{width:36.309000px;}
._13_c01199{width:38.076000px;}
._10_c01199{width:39.786000px;}
._17_c01199{width:42.807000px;}
._24_c01199{width:47.538000px;}
._23_c01199{width:178.770000px;}
._25_c01199{width:191.349000px;}
.fc2_c01199{color:transparent;}
.fc1_c01199{color:rgb(128,128,128);}
.fc0_c01199{color:rgb(0,0,0);}
.fs3_c01199{font-size:48.000000px;}
.fs0_c01199{font-size:57.000000px;}
.fs1_c01199{font-size:60.000000px;}
.fs2_c01199{font-size:72.000000px;}
.y0_c01199{bottom:0.000000px;}
.y22_c01199{bottom:3.105000px;}
.y21_c01199{bottom:7.228371px;}
.y20_c01199{bottom:105.315000px;}
.y1f_c01199{bottom:129.315000px;}
.y1e_c01199{bottom:153.915000px;}
.y1d_c01199{bottom:178.515000px;}
.y1c_c01199{bottom:202.815000px;}
.y1b_c01199{bottom:226.215000px;}
.y1a_c01199{bottom:275.115000px;}
.y19_c01199{bottom:324.315000px;}
.y18_c01199{bottom:348.315000px;}
.y17_c01199{bottom:373.065000px;}
.y16_c01199{bottom:397.365000px;}
.y15_c01199{bottom:421.965000px;}
.y14_c01199{bottom:446.265000px;}
.y13_c01199{bottom:469.815000px;}
.y12_c01199{bottom:494.115000px;}
.y11_c01199{bottom:517.815000px;}
.y10_c01199{bottom:542.115000px;}
.yf_c01199{bottom:566.415000px;}
.ye_c01199{bottom:590.415000px;}
.yd_c01199{bottom:614.715000px;}
.yc_c01199{bottom:639.615000px;}
.yb_c01199{bottom:663.315000px;}
.ya_c01199{bottom:687.915000px;}
.y9_c01199{bottom:711.915000px;}
.y8_c01199{bottom:736.065000px;}
.y7_c01199{bottom:760.365000px;}
.y6_c01199{bottom:784.665000px;}
.y5_c01199{bottom:808.665000px;}
.y4_c01199{bottom:832.665000px;}
.y3_c01199{bottom:856.665000px;}
.y2_c01199{bottom:881.565000px;}
.y1_c01199{bottom:905.565000px;}
.h5_c01199{height:13.200074px;}
.h6_c01199{height:43.804688px;}
.h2_c01199{height:57.445312px;}
.h3_c01199{height:59.845312px;}
.h4_c01199{height:72.562500px;}
.h1_c01199{height:986.250000px;}
.h0_c01199{height:986.325000px;}
.w2_c01199{width:104.875500px;}
.w0_c01199{width:667.425000px;}
.w1_c01199{width:667.500000px;}
.x0_c01199{left:0.000000px;}
.x8_c01199{left:22.950000px;}
.x7_c01199{left:24.000000px;}
.xf_c01199{left:26.100000px;}
.xe_c01199{left:72.300000px;}
.x1_c01199{left:104.250000px;}
.x3_c01199{left:106.350000px;}
.x2_c01199{left:107.400000px;}
.x4_c01199{left:108.750000px;}
.x5_c01199{left:109.800000px;}
.x6_c01199{left:111.000000px;}
.x9_c01199{left:112.800000px;}
.xa_c01199{left:114.450000px;}
.xc_c01199{left:116.850000px;}
.xd_c01199{left:172.200000px;}
.x11_c01199{left:285.526749px;}
.xb_c01199{left:337.200000px;}
.x10_c01199{left:588.600000px;}
@media print{
.v0_c01199{vertical-align:0.000000pt;}
.v1_c01199{vertical-align:2.133333pt;}
.ls2_c01199{letter-spacing:0.000000pt;}
.ls1_c01199{letter-spacing:2.304000pt;}
.ls0_c01199{letter-spacing:158.293333pt;}
.ws1_c01199{word-spacing:-25.333333pt;}
.ws0_c01199{word-spacing:-10.336000pt;}
.ws2_c01199{word-spacing:-7.752000pt;}
.ws3_c01199{word-spacing:-1.317333pt;}
.ws4_c01199{word-spacing:0.000000pt;}
._1f_c01199{margin-left:-14.389333pt;}
._f_c01199{margin-left:-10.741333pt;}
._1a_c01199{margin-left:-8.258667pt;}
._1e_c01199{margin-left:-6.637333pt;}
._22_c01199{margin-left:-5.421333pt;}
._19_c01199{margin-left:-2.229333pt;}
._20_c01199{width:1.722667pt;}
._d_c01199{width:3.141333pt;}
._a_c01199{width:4.154667pt;}
._3_c01199{width:5.522667pt;}
._4_c01199{width:6.688000pt;}
._b_c01199{width:7.600000pt;}
._2_c01199{width:8.562667pt;}
._16_c01199{width:9.525333pt;}
._5_c01199{width:10.640000pt;}
._8_c01199{width:11.653333pt;}
._1_c01199{width:14.237333pt;}
._7_c01199{width:15.352000pt;}
._0_c01199{width:16.821333pt;}
._6_c01199{width:17.885333pt;}
._c_c01199{width:19.354667pt;}
._1b_c01199{width:20.266667pt;}
._1c_c01199{width:21.178667pt;}
._9_c01199{width:22.445333pt;}
._1d_c01199{width:23.560000pt;}
._11_c01199{width:24.978667pt;}
._21_c01199{width:26.042667pt;}
._12_c01199{width:26.954667pt;}
._14_c01199{width:27.968000pt;}
._18_c01199{width:29.285333pt;}
._15_c01199{width:31.362667pt;}
._e_c01199{width:32.274667pt;}
._13_c01199{width:33.845333pt;}
._10_c01199{width:35.365333pt;}
._17_c01199{width:38.050667pt;}
._24_c01199{width:42.256000pt;}
._23_c01199{width:158.906667pt;}
._25_c01199{width:170.088000pt;}
.fs3_c01199{font-size:42.666667pt;}
.fs0_c01199{font-size:50.666667pt;}
.fs1_c01199{font-size:53.333333pt;}
.fs2_c01199{font-size:64.000000pt;}
.y0_c01199{bottom:0.000000pt;}
.y22_c01199{bottom:2.760000pt;}
.y21_c01199{bottom:6.425219pt;}
.y20_c01199{bottom:93.613333pt;}
.y1f_c01199{bottom:114.946667pt;}
.y1e_c01199{bottom:136.813333pt;}
.y1d_c01199{bottom:158.680000pt;}
.y1c_c01199{bottom:180.280000pt;}
.y1b_c01199{bottom:201.080000pt;}
.y1a_c01199{bottom:244.546667pt;}
.y19_c01199{bottom:288.280000pt;}
.y18_c01199{bottom:309.613333pt;}
.y17_c01199{bottom:331.613333pt;}
.y16_c01199{bottom:353.213333pt;}
.y15_c01199{bottom:375.080000pt;}
.y14_c01199{bottom:396.680000pt;}
.y13_c01199{bottom:417.613333pt;}
.y12_c01199{bottom:439.213333pt;}
.y11_c01199{bottom:460.280000pt;}
.y10_c01199{bottom:481.880000pt;}
.yf_c01199{bottom:503.480000pt;}
.ye_c01199{bottom:524.813333pt;}
.yd_c01199{bottom:546.413333pt;}
.yc_c01199{bottom:568.546667pt;}
.yb_c01199{bottom:589.613333pt;}
.ya_c01199{bottom:611.480000pt;}
.y9_c01199{bottom:632.813333pt;}
.y8_c01199{bottom:654.280000pt;}
.y7_c01199{bottom:675.880000pt;}
.y6_c01199{bottom:697.480000pt;}
.y5_c01199{bottom:718.813333pt;}
.y4_c01199{bottom:740.146667pt;}
.y3_c01199{bottom:761.480000pt;}
.y2_c01199{bottom:783.613333pt;}
.y1_c01199{bottom:804.946667pt;}
.h5_c01199{height:11.733399pt;}
.h6_c01199{height:38.937500pt;}
.h2_c01199{height:51.062500pt;}
.h3_c01199{height:53.195833pt;}
.h4_c01199{height:64.500000pt;}
.h1_c01199{height:876.666667pt;}
.h0_c01199{height:876.733333pt;}
.w2_c01199{width:93.222667pt;}
.w0_c01199{width:593.266667pt;}
.w1_c01199{width:593.333333pt;}
.x0_c01199{left:0.000000pt;}
.x8_c01199{left:20.400000pt;}
.x7_c01199{left:21.333333pt;}
.xf_c01199{left:23.200000pt;}
.xe_c01199{left:64.266667pt;}
.x1_c01199{left:92.666667pt;}
.x3_c01199{left:94.533333pt;}
.x2_c01199{left:95.466667pt;}
.x4_c01199{left:96.666667pt;}
.x5_c01199{left:97.600000pt;}
.x6_c01199{left:98.666667pt;}
.x9_c01199{left:100.266667pt;}
.xa_c01199{left:101.733333pt;}
.xc_c01199{left:103.866667pt;}
.xd_c01199{left:153.066667pt;}
.x11_c01199{left:253.801554pt;}
.xb_c01199{left:299.733333pt;}
.x10_c01199{left:523.200000pt;}
}





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

.ir_c01200:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01200{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01200;src:url('chunks/assets/font_c4a72bfd9ad220112f80fc13.woff2')format("woff");}.ff1_c01200{font-family:ff1_c01200;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01200;src:url('chunks/assets/font_f7bfd3e26aaf614d6f3ddab2.woff2')format("woff");}.ff2_c01200{font-family:ff2_c01200;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01200;src:url('chunks/assets/font_993e0b9ad90ed04fda8b2d5a.woff2')format("woff");}.ff3_c01200{font-family:ff3_c01200;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01200;src:url('chunks/assets/font_ae5b55b10e4b1842ba9489e5.woff2')format("woff");}.ff4_c01200{font-family:ff4_c01200;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01200;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c01200{font-family:ff5_c01200;line-height:1.219238;font-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_c01200{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m0_c01200{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01200{vertical-align:0.000000px;}
.ls0_c01200{letter-spacing:0.000000px;}
.sc__c01200{text-shadow:none;}
.sc0_c01200{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01200{-webkit-text-stroke:0px transparent;}
.sc0_c01200{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01200{word-spacing:-46.854000px;}
.ws2_c01200{word-spacing:-27.000000px;}
.ws3_c01200{word-spacing:-20.250000px;}
.ws4_c01200{word-spacing:0.000000px;}
.ws0_c01200{word-spacing:4.047000px;}
._1e_c01200{margin-left:-13.827000px;}
._20_c01200{margin-left:-10.320000px;}
._1c_c01200{margin-left:-7.353000px;}
._16_c01200{margin-left:-5.016000px;}
._12_c01200{margin-left:-2.679000px;}
._1f_c01200{margin-left:-1.254000px;}
._e_c01200{width:1.767000px;}
._19_c01200{width:3.078000px;}
._d_c01200{width:4.161000px;}
._b_c01200{width:5.928000px;}
._c_c01200{width:7.239000px;}
._14_c01200{width:8.265000px;}
._8_c01200{width:9.348000px;}
._5_c01200{width:10.545000px;}
._10_c01200{width:11.628000px;}
._2_c01200{width:13.053000px;}
._6_c01200{width:15.447000px;}
._0_c01200{width:16.701000px;}
._3_c01200{width:17.898000px;}
._4_c01200{width:19.494000px;}
._18_c01200{width:20.577000px;}
._1_c01200{width:21.717000px;}
._f_c01200{width:23.769000px;}
._1d_c01200{width:24.795000px;}
._a_c01200{width:26.049000px;}
._7_c01200{width:28.272000px;}
._17_c01200{width:35.133000px;}
._11_c01200{width:43.377000px;}
._1a_c01200{width:51.039000px;}
._1b_c01200{width:149.625000px;}
._13_c01200{width:178.068000px;}
._15_c01200{width:180.387000px;}
._9_c01200{width:186.960000px;}
.fc2_c01200{color:transparent;}
.fc1_c01200{color:rgb(128,128,128);}
.fc0_c01200{color:rgb(0,0,0);}
.fs3_c01200{font-size:48.000000px;}
.fs0_c01200{font-size:57.000000px;}
.fs2_c01200{font-size:81.000000px;}
.fs1_c01200{font-size:108.000000px;}
.y0_c01200{bottom:0.000000px;}
.y26_c01200{bottom:3.105000px;}
.y25_c01200{bottom:7.228369px;}
.y23_c01200{bottom:57.420000px;}
.y22_c01200{bottom:83.070000px;}
.y21_c01200{bottom:109.920000px;}
.y20_c01200{bottom:134.970000px;}
.y1f_c01200{bottom:159.270000px;}
.y1e_c01200{bottom:184.170000px;}
.y1d_c01200{bottom:208.620000px;}
.y1c_c01200{bottom:233.520000px;}
.y1b_c01200{bottom:258.570000px;}
.y1a_c01200{bottom:282.870000px;}
.y19_c01200{bottom:307.770000px;}
.y18_c01200{bottom:332.070000px;}
.y17_c01200{bottom:356.970000px;}
.y16_c01200{bottom:381.420000px;}
.y15_c01200{bottom:406.020000px;}
.y14_c01200{bottom:430.620000px;}
.y13_c01200{bottom:455.520000px;}
.y24_c01200{bottom:469.170000px;}
.y12_c01200{bottom:479.820000px;}
.y11_c01200{bottom:504.270000px;}
.y10_c01200{bottom:528.570000px;}
.yf_c01200{bottom:552.720000px;}
.ye_c01200{bottom:577.170000px;}
.yd_c01200{bottom:601.470000px;}
.yc_c01200{bottom:625.770000px;}
.yb_c01200{bottom:650.070000px;}
.ya_c01200{bottom:674.670000px;}
.y9_c01200{bottom:699.270000px;}
.y8_c01200{bottom:724.170000px;}
.y7_c01200{bottom:748.470000px;}
.y6_c01200{bottom:773.820000px;}
.y5_c01200{bottom:797.220000px;}
.y4_c01200{bottom:822.420000px;}
.y3_c01200{bottom:849.120000px;}
.y2_c01200{bottom:871.470000px;}
.y1_c01200{bottom:897.720000px;}
.h6_c01200{height:13.200073px;}
.h7_c01200{height:43.804688px;}
.h2_c01200{height:57.445312px;}
.h3_c01200{height:66.713379px;}
.h5_c01200{height:79.497070px;}
.h4_c01200{height:108.843750px;}
.h1_c01200{height:986.250000px;}
.h0_c01200{height:986.550000px;}
.w1_c01200{width:104.875500px;}
.w0_c01200{width:672.000000px;}
.x0_c01200{left:0.000000px;}
.x1_c01200{left:34.350000px;}
.x2_c01200{left:37.800000px;}
.x3_c01200{left:39.450000px;}
.x4_c01200{left:40.950000px;}
.x6_c01200{left:42.300000px;}
.x5_c01200{left:62.100000px;}
.xb_c01200{left:287.814240px;}
.x7_c01200{left:320.700000px;}
.x8_c01200{left:394.650000px;}
.x9_c01200{left:485.400000px;}
.xa_c01200{left:603.900000px;}
@media print{
.v0_c01200{vertical-align:0.000000pt;}
.ls0_c01200{letter-spacing:0.000000pt;}
.ws1_c01200{word-spacing:-41.648000pt;}
.ws2_c01200{word-spacing:-24.000000pt;}
.ws3_c01200{word-spacing:-18.000000pt;}
.ws4_c01200{word-spacing:0.000000pt;}
.ws0_c01200{word-spacing:3.597333pt;}
._1e_c01200{margin-left:-12.290667pt;}
._20_c01200{margin-left:-9.173333pt;}
._1c_c01200{margin-left:-6.536000pt;}
._16_c01200{margin-left:-4.458667pt;}
._12_c01200{margin-left:-2.381333pt;}
._1f_c01200{margin-left:-1.114667pt;}
._e_c01200{width:1.570667pt;}
._19_c01200{width:2.736000pt;}
._d_c01200{width:3.698667pt;}
._b_c01200{width:5.269333pt;}
._c_c01200{width:6.434667pt;}
._14_c01200{width:7.346667pt;}
._8_c01200{width:8.309333pt;}
._5_c01200{width:9.373333pt;}
._10_c01200{width:10.336000pt;}
._2_c01200{width:11.602667pt;}
._6_c01200{width:13.730667pt;}
._0_c01200{width:14.845333pt;}
._3_c01200{width:15.909333pt;}
._4_c01200{width:17.328000pt;}
._18_c01200{width:18.290667pt;}
._1_c01200{width:19.304000pt;}
._f_c01200{width:21.128000pt;}
._1d_c01200{width:22.040000pt;}
._a_c01200{width:23.154667pt;}
._7_c01200{width:25.130667pt;}
._17_c01200{width:31.229333pt;}
._11_c01200{width:38.557333pt;}
._1a_c01200{width:45.368000pt;}
._1b_c01200{width:133.000000pt;}
._13_c01200{width:158.282667pt;}
._15_c01200{width:160.344000pt;}
._9_c01200{width:166.186667pt;}
.fs3_c01200{font-size:42.666667pt;}
.fs0_c01200{font-size:50.666667pt;}
.fs2_c01200{font-size:72.000000pt;}
.fs1_c01200{font-size:96.000000pt;}
.y0_c01200{bottom:0.000000pt;}
.y26_c01200{bottom:2.760000pt;}
.y25_c01200{bottom:6.425217pt;}
.y23_c01200{bottom:51.040000pt;}
.y22_c01200{bottom:73.840000pt;}
.y21_c01200{bottom:97.706667pt;}
.y20_c01200{bottom:119.973333pt;}
.y1f_c01200{bottom:141.573333pt;}
.y1e_c01200{bottom:163.706667pt;}
.y1d_c01200{bottom:185.440000pt;}
.y1c_c01200{bottom:207.573333pt;}
.y1b_c01200{bottom:229.840000pt;}
.y1a_c01200{bottom:251.440000pt;}
.y19_c01200{bottom:273.573333pt;}
.y18_c01200{bottom:295.173333pt;}
.y17_c01200{bottom:317.306667pt;}
.y16_c01200{bottom:339.040000pt;}
.y15_c01200{bottom:360.906667pt;}
.y14_c01200{bottom:382.773333pt;}
.y13_c01200{bottom:404.906667pt;}
.y24_c01200{bottom:417.040000pt;}
.y12_c01200{bottom:426.506667pt;}
.y11_c01200{bottom:448.240000pt;}
.y10_c01200{bottom:469.840000pt;}
.yf_c01200{bottom:491.306667pt;}
.ye_c01200{bottom:513.040000pt;}
.yd_c01200{bottom:534.640000pt;}
.yc_c01200{bottom:556.240000pt;}
.yb_c01200{bottom:577.840000pt;}
.ya_c01200{bottom:599.706667pt;}
.y9_c01200{bottom:621.573333pt;}
.y8_c01200{bottom:643.706667pt;}
.y7_c01200{bottom:665.306667pt;}
.y6_c01200{bottom:687.840000pt;}
.y5_c01200{bottom:708.640000pt;}
.y4_c01200{bottom:731.040000pt;}
.y3_c01200{bottom:754.773333pt;}
.y2_c01200{bottom:774.640000pt;}
.y1_c01200{bottom:797.973333pt;}
.h6_c01200{height:11.733399pt;}
.h7_c01200{height:38.937500pt;}
.h2_c01200{height:51.062500pt;}
.h3_c01200{height:59.300781pt;}
.h5_c01200{height:70.664062pt;}
.h4_c01200{height:96.750000pt;}
.h1_c01200{height:876.666667pt;}
.h0_c01200{height:876.933333pt;}
.w1_c01200{width:93.222667pt;}
.w0_c01200{width:597.333333pt;}
.x0_c01200{left:0.000000pt;}
.x1_c01200{left:30.533333pt;}
.x2_c01200{left:33.600000pt;}
.x3_c01200{left:35.066667pt;}
.x4_c01200{left:36.400000pt;}
.x6_c01200{left:37.600000pt;}
.x5_c01200{left:55.200000pt;}
.xb_c01200{left:255.834880pt;}
.x7_c01200{left:285.066667pt;}
.x8_c01200{left:350.800000pt;}
.x9_c01200{left:431.466667pt;}
.xa_c01200{left:536.800000pt;}
}





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

.ir_c01201:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01201{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01201;src:url('chunks/assets/font_d798474e01fa7647c616a76d.woff2')format("woff");}.ff1_c01201{font-family:ff1_c01201;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01201;src:url('chunks/assets/font_99dd3411015901f168063f34.woff2')format("woff");}.ff2_c01201{font-family:ff2_c01201;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01201;src:url('chunks/assets/font_d6963587c8fbd1a6fa9304ef.woff2')format("woff");}.ff3_c01201{font-family:ff3_c01201;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01201;src:url('chunks/assets/font_436eb1642817adf400735766.woff2')format("woff");}.ff4_c01201{font-family:ff4_c01201;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01201;src:url('chunks/assets/font_132f0f71ef1a3588b913e66b.woff2')format("woff");}.ff5_c01201{font-family:ff5_c01201;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01201;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c01201{font-family:ff6_c01201;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01201{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01201{vertical-align:0.000000px;}
.ls4_c01201{letter-spacing:-3.000000px;}
.ls2_c01201{letter-spacing:0.000000px;}
.ls3_c01201{letter-spacing:3.000000px;}
.ls0_c01201{letter-spacing:4.773000px;}
.ls1_c01201{letter-spacing:25.602000px;}
.sc__c01201{text-shadow:none;}
.sc0_c01201{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01201{-webkit-text-stroke:0px transparent;}
.sc0_c01201{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01201{word-spacing:-18.750000px;}
.ws1_c01201{word-spacing:-1.254000px;}
.ws2_c01201{word-spacing:0.000000px;}
._13_c01201{margin-left:-11.628000px;}
._1a_c01201{margin-left:-10.092000px;}
._12_c01201{margin-left:-6.498000px;}
._17_c01201{margin-left:-4.842000px;}
._16_c01201{margin-left:-3.345000px;}
._f_c01201{margin-left:-1.881000px;}
._8_c01201{width:1.482000px;}
._c_c01201{width:3.363000px;}
._9_c01201{width:5.187000px;}
._3_c01201{width:6.384000px;}
._d_c01201{width:7.410000px;}
._4_c01201{width:8.664000px;}
._a_c01201{width:9.804000px;}
._0_c01201{width:11.685000px;}
._2_c01201{width:12.711000px;}
._5_c01201{width:16.017000px;}
._7_c01201{width:17.214000px;}
._1_c01201{width:18.525000px;}
._e_c01201{width:20.577000px;}
._10_c01201{width:22.458000px;}
._18_c01201{width:24.396000px;}
._6_c01201{width:26.391000px;}
._11_c01201{width:27.531000px;}
._b_c01201{width:28.728000px;}
._15_c01201{width:30.210000px;}
._19_c01201{width:32.661000px;}
._14_c01201{width:240.753000px;}
.fc2_c01201{color:transparent;}
.fc1_c01201{color:rgb(128,128,128);}
.fc0_c01201{color:rgb(0,0,0);}
.fs4_c01201{font-size:42.000000px;}
.fs5_c01201{font-size:48.000000px;}
.fs0_c01201{font-size:57.000000px;}
.fs3_c01201{font-size:60.000000px;}
.fs1_c01201{font-size:63.000000px;}
.fs2_c01201{font-size:78.000000px;}
.y0_c01201{bottom:0.000000px;}
.y25_c01201{bottom:3.105000px;}
.y24_c01201{bottom:7.228371px;}
.y23_c01201{bottom:54.015000px;}
.y22_c01201{bottom:76.365000px;}
.y21_c01201{bottom:102.015000px;}
.y20_c01201{bottom:126.315000px;}
.y1f_c01201{bottom:151.515000px;}
.y1e_c01201{bottom:175.965000px;}
.y1d_c01201{bottom:201.165000px;}
.y1c_c01201{bottom:225.765000px;}
.y1b_c01201{bottom:250.215000px;}
.y1a_c01201{bottom:276.465000px;}
.y19_c01201{bottom:299.715000px;}
.y18_c01201{bottom:324.465000px;}
.y17_c01201{bottom:349.665000px;}
.y16_c01201{bottom:373.665000px;}
.y15_c01201{bottom:398.265000px;}
.y14_c01201{bottom:423.315000px;}
.y13_c01201{bottom:448.215000px;}
.y12_c01201{bottom:471.915000px;}
.y11_c01201{bottom:496.515000px;}
.y10_c01201{bottom:521.415000px;}
.yf_c01201{bottom:545.415000px;}
.ye_c01201{bottom:569.715000px;}
.yd_c01201{bottom:594.315000px;}
.yc_c01201{bottom:618.315000px;}
.yb_c01201{bottom:643.065000px;}
.ya_c01201{bottom:667.965000px;}
.y9_c01201{bottom:692.565000px;}
.y8_c01201{bottom:717.165000px;}
.y7_c01201{bottom:741.615000px;}
.y6_c01201{bottom:765.915000px;}
.y5_c01201{bottom:791.415000px;}
.y4_c01201{bottom:815.415000px;}
.y3_c01201{bottom:840.015000px;}
.y2_c01201{bottom:864.315000px;}
.y1_c01201{bottom:889.065000px;}
.h7_c01201{height:13.200074px;}
.h8_c01201{height:43.804688px;}
.h2_c01201{height:57.445312px;}
.h6_c01201{height:58.886719px;}
.h3_c01201{height:63.492188px;}
.h5_c01201{height:72.168457px;}
.h4_c01201{height:98.756836px;}
.h1_c01201{height:986.250000px;}
.h0_c01201{height:986.325000px;}
.w2_c01201{width:104.875500px;}
.w0_c01201{width:667.425000px;}
.w1_c01201{width:667.500000px;}
.x0_c01201{left:0.000000px;}
.x3_c01201{left:15.750000px;}
.xa_c01201{left:101.550000px;}
.x9_c01201{left:102.600000px;}
.x8_c01201{left:103.650000px;}
.x7_c01201{left:105.000000px;}
.x5_c01201{left:106.350000px;}
.x4_c01201{left:107.700000px;}
.x2_c01201{left:108.750000px;}
.x1_c01201{left:111.450000px;}
.xb_c01201{left:129.000000px;}
.x6_c01201{left:131.400000px;}
.xd_c01201{left:285.526749px;}
.xc_c01201{left:558.000000px;}
@media print{
.v0_c01201{vertical-align:0.000000pt;}
.ls4_c01201{letter-spacing:-2.666667pt;}
.ls2_c01201{letter-spacing:0.000000pt;}
.ls3_c01201{letter-spacing:2.666667pt;}
.ls0_c01201{letter-spacing:4.242667pt;}
.ls1_c01201{letter-spacing:22.757333pt;}
.ws0_c01201{word-spacing:-16.666667pt;}
.ws1_c01201{word-spacing:-1.114667pt;}
.ws2_c01201{word-spacing:0.000000pt;}
._13_c01201{margin-left:-10.336000pt;}
._1a_c01201{margin-left:-8.970667pt;}
._12_c01201{margin-left:-5.776000pt;}
._17_c01201{margin-left:-4.304000pt;}
._16_c01201{margin-left:-2.973333pt;}
._f_c01201{margin-left:-1.672000pt;}
._8_c01201{width:1.317333pt;}
._c_c01201{width:2.989333pt;}
._9_c01201{width:4.610667pt;}
._3_c01201{width:5.674667pt;}
._d_c01201{width:6.586667pt;}
._4_c01201{width:7.701333pt;}
._a_c01201{width:8.714667pt;}
._0_c01201{width:10.386667pt;}
._2_c01201{width:11.298667pt;}
._5_c01201{width:14.237333pt;}
._7_c01201{width:15.301333pt;}
._1_c01201{width:16.466667pt;}
._e_c01201{width:18.290667pt;}
._10_c01201{width:19.962667pt;}
._18_c01201{width:21.685333pt;}
._6_c01201{width:23.458667pt;}
._11_c01201{width:24.472000pt;}
._b_c01201{width:25.536000pt;}
._15_c01201{width:26.853333pt;}
._19_c01201{width:29.032000pt;}
._14_c01201{width:214.002667pt;}
.fs4_c01201{font-size:37.333333pt;}
.fs5_c01201{font-size:42.666667pt;}
.fs0_c01201{font-size:50.666667pt;}
.fs3_c01201{font-size:53.333333pt;}
.fs1_c01201{font-size:56.000000pt;}
.fs2_c01201{font-size:69.333333pt;}
.y0_c01201{bottom:0.000000pt;}
.y25_c01201{bottom:2.760000pt;}
.y24_c01201{bottom:6.425219pt;}
.y23_c01201{bottom:48.013333pt;}
.y22_c01201{bottom:67.880000pt;}
.y21_c01201{bottom:90.680000pt;}
.y20_c01201{bottom:112.280000pt;}
.y1f_c01201{bottom:134.680000pt;}
.y1e_c01201{bottom:156.413333pt;}
.y1d_c01201{bottom:178.813333pt;}
.y1c_c01201{bottom:200.680000pt;}
.y1b_c01201{bottom:222.413333pt;}
.y1a_c01201{bottom:245.746667pt;}
.y19_c01201{bottom:266.413333pt;}
.y18_c01201{bottom:288.413333pt;}
.y17_c01201{bottom:310.813333pt;}
.y16_c01201{bottom:332.146667pt;}
.y15_c01201{bottom:354.013333pt;}
.y14_c01201{bottom:376.280000pt;}
.y13_c01201{bottom:398.413333pt;}
.y12_c01201{bottom:419.480000pt;}
.y11_c01201{bottom:441.346667pt;}
.y10_c01201{bottom:463.480000pt;}
.yf_c01201{bottom:484.813333pt;}
.ye_c01201{bottom:506.413333pt;}
.yd_c01201{bottom:528.280000pt;}
.yc_c01201{bottom:549.613333pt;}
.yb_c01201{bottom:571.613333pt;}
.ya_c01201{bottom:593.746667pt;}
.y9_c01201{bottom:615.613333pt;}
.y8_c01201{bottom:637.480000pt;}
.y7_c01201{bottom:659.213333pt;}
.y6_c01201{bottom:680.813333pt;}
.y5_c01201{bottom:703.480000pt;}
.y4_c01201{bottom:724.813333pt;}
.y3_c01201{bottom:746.680000pt;}
.y2_c01201{bottom:768.280000pt;}
.y1_c01201{bottom:790.280000pt;}
.h7_c01201{height:11.733399pt;}
.h8_c01201{height:38.937500pt;}
.h2_c01201{height:51.062500pt;}
.h6_c01201{height:52.343750pt;}
.h3_c01201{height:56.437500pt;}
.h5_c01201{height:64.149740pt;}
.h4_c01201{height:87.783854pt;}
.h1_c01201{height:876.666667pt;}
.h0_c01201{height:876.733333pt;}
.w2_c01201{width:93.222667pt;}
.w0_c01201{width:593.266667pt;}
.w1_c01201{width:593.333333pt;}
.x0_c01201{left:0.000000pt;}
.x3_c01201{left:14.000000pt;}
.xa_c01201{left:90.266667pt;}
.x9_c01201{left:91.200000pt;}
.x8_c01201{left:92.133333pt;}
.x7_c01201{left:93.333333pt;}
.x5_c01201{left:94.533333pt;}
.x4_c01201{left:95.733333pt;}
.x2_c01201{left:96.666667pt;}
.x1_c01201{left:99.066667pt;}
.xb_c01201{left:114.666667pt;}
.x6_c01201{left:116.800000pt;}
.xd_c01201{left:253.801554pt;}
.xc_c01201{left:496.000000pt;}
}





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

.ir_c01202:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01202{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01202;src:url('chunks/assets/font_6fc77b1b502503d5f3f29d1f.woff2')format("woff");}.ff1_c01202{font-family:ff1_c01202;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01202;src:url('chunks/assets/font_a9599d48988a96799ea5e44f.woff2')format("woff");}.ff2_c01202{font-family:ff2_c01202;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01202;src:url('chunks/assets/font_bfec2d227fd4d4b918eafafa.woff2')format("woff");}.ff3_c01202{font-family:ff3_c01202;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01202;src:url('chunks/assets/font_0122901af4a72ba4597db7a1.woff2')format("woff");}.ff4_c01202{font-family:ff4_c01202;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01202;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c01202{font-family:ff5_c01202;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01202{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01202{vertical-align:0.000000px;}
.ls3_c01202{letter-spacing:-3.000000px;}
.ls2_c01202{letter-spacing:0.000000px;}
.ls0_c01202{letter-spacing:2.700000px;}
.ls1_c01202{letter-spacing:5.754000px;}
.ls4_c01202{letter-spacing:15.000000px;}
.sc__c01202{text-shadow:none;}
.sc0_c01202{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01202{-webkit-text-stroke:0px transparent;}
.sc0_c01202{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01202{word-spacing:-15.000000px;}
.ws2_c01202{word-spacing:-14.250000px;}
.ws4_c01202{word-spacing:-1.140000px;}
.ws3_c01202{word-spacing:-0.513000px;}
.ws6_c01202{word-spacing:0.000000px;}
.ws5_c01202{word-spacing:0.114000px;}
.ws1_c01202{word-spacing:2.280000px;}
._19_c01202{margin-left:-14.322000px;}
._18_c01202{margin-left:-11.964000px;}
._1b_c01202{margin-left:-10.017000px;}
._1_c01202{margin-left:-6.552000px;}
._1c_c01202{margin-left:-5.133000px;}
._11_c01202{margin-left:-3.858000px;}
._1f_c01202{margin-left:-2.721000px;}
._0_c01202{margin-left:-1.296000px;}
._c_c01202{width:1.425000px;}
._12_c01202{width:2.964000px;}
._4_c01202{width:3.990000px;}
._16_c01202{width:5.229000px;}
._6_c01202{width:6.327000px;}
._5_c01202{width:7.695000px;}
._d_c01202{width:9.177000px;}
._f_c01202{width:10.374000px;}
._2_c01202{width:11.913000px;}
._e_c01202{width:12.939000px;}
._1a_c01202{width:13.944000px;}
._9_c01202{width:15.504000px;}
._13_c01202{width:16.587000px;}
._8_c01202{width:17.670000px;}
._a_c01202{width:19.608000px;}
._7_c01202{width:20.919000px;}
._3_c01202{width:22.857000px;}
._15_c01202{width:24.378000px;}
._22_c01202{width:25.707000px;}
._b_c01202{width:27.246000px;}
._29_c01202{width:28.386000px;}
._2b_c01202{width:29.583000px;}
._14_c01202{width:31.749000px;}
._28_c01202{width:32.862000px;}
._2a_c01202{width:35.868000px;}
._17_c01202{width:44.520000px;}
._1e_c01202{width:49.347000px;}
._27_c01202{width:54.537000px;}
._20_c01202{width:56.907000px;}
._25_c01202{width:59.517000px;}
._24_c01202{width:65.577000px;}
._26_c01202{width:69.816000px;}
._10_c01202{width:119.586000px;}
._21_c01202{width:153.159000px;}
._23_c01202{width:179.622000px;}
._1d_c01202{width:559.740000px;}
.fc2_c01202{color:transparent;}
.fc1_c01202{color:rgb(128,128,128);}
.fc0_c01202{color:rgb(0,0,0);}
.fs6_c01202{font-size:48.000000px;}
.fs1_c01202{font-size:57.000000px;}
.fs2_c01202{font-size:60.000000px;}
.fs0_c01202{font-size:72.000000px;}
.fs5_c01202{font-size:78.000000px;}
.fs3_c01202{font-size:81.000000px;}
.fs4_c01202{font-size:90.000000px;}
.y0_c01202{bottom:0.000000px;}
.y24_c01202{bottom:3.105000px;}
.y23_c01202{bottom:7.228369px;}
.y21_c01202{bottom:49.170000px;}
.y20_c01202{bottom:72.120000px;}
.y1f_c01202{bottom:97.770000px;}
.y1e_c01202{bottom:122.520000px;}
.y1d_c01202{bottom:147.120000px;}
.y1c_c01202{bottom:172.170000px;}
.y1b_c01202{bottom:196.320000px;}
.y1a_c01202{bottom:220.770000px;}
.y19_c01202{bottom:245.370000px;}
.y18_c01202{bottom:269.970000px;}
.y17_c01202{bottom:294.570000px;}
.y16_c01202{bottom:319.320000px;}
.y15_c01202{bottom:343.620000px;}
.y14_c01202{bottom:367.470000px;}
.y13_c01202{bottom:392.070000px;}
.y12_c01202{bottom:416.820000px;}
.y11_c01202{bottom:441.120000px;}
.y10_c01202{bottom:466.020000px;}
.yf_c01202{bottom:490.770000px;}
.y22_c01202{bottom:495.120000px;}
.ye_c01202{bottom:515.070000px;}
.yd_c01202{bottom:538.920000px;}
.yc_c01202{bottom:563.520000px;}
.yb_c01202{bottom:587.520000px;}
.ya_c01202{bottom:611.820000px;}
.y9_c01202{bottom:643.920000px;}
.y8_c01202{bottom:673.320000px;}
.y7_c01202{bottom:702.720000px;}
.y6_c01202{bottom:752.220000px;}
.y5_c01202{bottom:778.620000px;}
.y4_c01202{bottom:802.920000px;}
.y3_c01202{bottom:827.520000px;}
.y2_c01202{bottom:852.120000px;}
.y1_c01202{bottom:876.720000px;}
.h8_c01202{height:13.200073px;}
.h9_c01202{height:43.804688px;}
.h3_c01202{height:57.445312px;}
.h6_c01202{height:58.857422px;}
.h2_c01202{height:72.562500px;}
.h5_c01202{height:79.497070px;}
.h4_c01202{height:88.286133px;}
.h7_c01202{height:91.291992px;}
.h0_c01202{height:970.350000px;}
.h1_c01202{height:970.500000px;}
.w2_c01202{width:104.875500px;}
.w0_c01202{width:660.450000px;}
.w1_c01202{width:660.750000px;}
.x0_c01202{left:0.000000px;}
.x1_c01202{left:48.600000px;}
.x2_c01202{left:49.650000px;}
.x3_c01202{left:50.700000px;}
.x5_c01202{left:51.900000px;}
.x4_c01202{left:52.950000px;}
.xb_c01202{left:54.750000px;}
.xc_c01202{left:56.400000px;}
.xd_c01202{left:57.750000px;}
.x6_c01202{left:92.850000px;}
.x7_c01202{left:136.350000px;}
.x9_c01202{left:167.850000px;}
.xa_c01202{left:190.350000px;}
.x8_c01202{left:191.400000px;}
.xf_c01202{left:282.039230px;}
.xe_c01202{left:482.250000px;}
@media print{
.v0_c01202{vertical-align:0.000000pt;}
.ls3_c01202{letter-spacing:-2.666667pt;}
.ls2_c01202{letter-spacing:0.000000pt;}
.ls0_c01202{letter-spacing:2.400000pt;}
.ls1_c01202{letter-spacing:5.114667pt;}
.ls4_c01202{letter-spacing:13.333333pt;}
.ws0_c01202{word-spacing:-13.333333pt;}
.ws2_c01202{word-spacing:-12.666667pt;}
.ws4_c01202{word-spacing:-1.013333pt;}
.ws3_c01202{word-spacing:-0.456000pt;}
.ws6_c01202{word-spacing:0.000000pt;}
.ws5_c01202{word-spacing:0.101333pt;}
.ws1_c01202{word-spacing:2.026667pt;}
._19_c01202{margin-left:-12.730667pt;}
._18_c01202{margin-left:-10.634667pt;}
._1b_c01202{margin-left:-8.904000pt;}
._1_c01202{margin-left:-5.824000pt;}
._1c_c01202{margin-left:-4.562667pt;}
._11_c01202{margin-left:-3.429333pt;}
._1f_c01202{margin-left:-2.418667pt;}
._0_c01202{margin-left:-1.152000pt;}
._c_c01202{width:1.266667pt;}
._12_c01202{width:2.634667pt;}
._4_c01202{width:3.546667pt;}
._16_c01202{width:4.648000pt;}
._6_c01202{width:5.624000pt;}
._5_c01202{width:6.840000pt;}
._d_c01202{width:8.157333pt;}
._f_c01202{width:9.221333pt;}
._2_c01202{width:10.589333pt;}
._e_c01202{width:11.501333pt;}
._1a_c01202{width:12.394667pt;}
._9_c01202{width:13.781333pt;}
._13_c01202{width:14.744000pt;}
._8_c01202{width:15.706667pt;}
._a_c01202{width:17.429333pt;}
._7_c01202{width:18.594667pt;}
._3_c01202{width:20.317333pt;}
._15_c01202{width:21.669333pt;}
._22_c01202{width:22.850667pt;}
._b_c01202{width:24.218667pt;}
._29_c01202{width:25.232000pt;}
._2b_c01202{width:26.296000pt;}
._14_c01202{width:28.221333pt;}
._28_c01202{width:29.210667pt;}
._2a_c01202{width:31.882667pt;}
._17_c01202{width:39.573333pt;}
._1e_c01202{width:43.864000pt;}
._27_c01202{width:48.477333pt;}
._20_c01202{width:50.584000pt;}
._25_c01202{width:52.904000pt;}
._24_c01202{width:58.290667pt;}
._26_c01202{width:62.058667pt;}
._10_c01202{width:106.298667pt;}
._21_c01202{width:136.141333pt;}
._23_c01202{width:159.664000pt;}
._1d_c01202{width:497.546667pt;}
.fs6_c01202{font-size:42.666667pt;}
.fs1_c01202{font-size:50.666667pt;}
.fs2_c01202{font-size:53.333333pt;}
.fs0_c01202{font-size:64.000000pt;}
.fs5_c01202{font-size:69.333333pt;}
.fs3_c01202{font-size:72.000000pt;}
.fs4_c01202{font-size:80.000000pt;}
.y0_c01202{bottom:0.000000pt;}
.y24_c01202{bottom:2.760000pt;}
.y23_c01202{bottom:6.425217pt;}
.y21_c01202{bottom:43.706667pt;}
.y20_c01202{bottom:64.106667pt;}
.y1f_c01202{bottom:86.906667pt;}
.y1e_c01202{bottom:108.906667pt;}
.y1d_c01202{bottom:130.773333pt;}
.y1c_c01202{bottom:153.040000pt;}
.y1b_c01202{bottom:174.506667pt;}
.y1a_c01202{bottom:196.240000pt;}
.y19_c01202{bottom:218.106667pt;}
.y18_c01202{bottom:239.973333pt;}
.y17_c01202{bottom:261.840000pt;}
.y16_c01202{bottom:283.840000pt;}
.y15_c01202{bottom:305.440000pt;}
.y14_c01202{bottom:326.640000pt;}
.y13_c01202{bottom:348.506667pt;}
.y12_c01202{bottom:370.506667pt;}
.y11_c01202{bottom:392.106667pt;}
.y10_c01202{bottom:414.240000pt;}
.yf_c01202{bottom:436.240000pt;}
.y22_c01202{bottom:440.106667pt;}
.ye_c01202{bottom:457.840000pt;}
.yd_c01202{bottom:479.040000pt;}
.yc_c01202{bottom:500.906667pt;}
.yb_c01202{bottom:522.240000pt;}
.ya_c01202{bottom:543.840000pt;}
.y9_c01202{bottom:572.373333pt;}
.y8_c01202{bottom:598.506667pt;}
.y7_c01202{bottom:624.640000pt;}
.y6_c01202{bottom:668.640000pt;}
.y5_c01202{bottom:692.106667pt;}
.y4_c01202{bottom:713.706667pt;}
.y3_c01202{bottom:735.573333pt;}
.y2_c01202{bottom:757.440000pt;}
.y1_c01202{bottom:779.306667pt;}
.h8_c01202{height:11.733399pt;}
.h9_c01202{height:38.937500pt;}
.h3_c01202{height:51.062500pt;}
.h6_c01202{height:52.317708pt;}
.h2_c01202{height:64.500000pt;}
.h5_c01202{height:70.664062pt;}
.h4_c01202{height:78.476562pt;}
.h7_c01202{height:81.148438pt;}
.h0_c01202{height:862.533333pt;}
.h1_c01202{height:862.666667pt;}
.w2_c01202{width:93.222667pt;}
.w0_c01202{width:587.066667pt;}
.w1_c01202{width:587.333333pt;}
.x0_c01202{left:0.000000pt;}
.x1_c01202{left:43.200000pt;}
.x2_c01202{left:44.133333pt;}
.x3_c01202{left:45.066667pt;}
.x5_c01202{left:46.133333pt;}
.x4_c01202{left:47.066667pt;}
.xb_c01202{left:48.666667pt;}
.xc_c01202{left:50.133333pt;}
.xd_c01202{left:51.333333pt;}
.x6_c01202{left:82.533333pt;}
.x7_c01202{left:121.200000pt;}
.x9_c01202{left:149.200000pt;}
.xa_c01202{left:169.200000pt;}
.x8_c01202{left:170.133333pt;}
.xf_c01202{left:250.701538pt;}
.xe_c01202{left:428.666667pt;}
}





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

.ir_c01203:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01203{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01203;src:url('chunks/assets/font_e947d624b4133329979199a0.woff2')format("woff");}.ff1_c01203{font-family:ff1_c01203;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01203;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff2_c01203{font-family:ff2_c01203;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01203;src:url('chunks/assets/font_25f19f465792761871b7f1f3.woff2')format("woff");}.ff3_c01203{font-family:ff3_c01203;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01203;src:url('chunks/assets/font_f5ad641a4f2e057c2ce462b0.woff2')format("woff");}.ff4_c01203{font-family:ff4_c01203;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01203;src:url('chunks/assets/font_13de3bcfeed7eef1b9b1a79c.woff2')format("woff");}.ff5_c01203{font-family:ff5_c01203;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01203;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c01203{font-family:ff6_c01203;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01203{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01203{vertical-align:0.000000px;}
.ls1_c01203{letter-spacing:0.000000px;}
.ls0_c01203{letter-spacing:49.002000px;}
.sc__c01203{text-shadow:none;}
.sc0_c01203{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01203{-webkit-text-stroke:0px transparent;}
.sc0_c01203{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01203{word-spacing:-2.565000px;}
.ws4_c01203{word-spacing:-1.653000px;}
.ws5_c01203{word-spacing:0.000000px;}
.ws0_c01203{word-spacing:0.627000px;}
.ws3_c01203{word-spacing:0.741000px;}
.ws1_c01203{word-spacing:5.187000px;}
._1f_c01203{margin-left:-17.625000px;}
._20_c01203{margin-left:-14.976000px;}
._1c_c01203{margin-left:-13.890000px;}
._1e_c01203{margin-left:-9.402000px;}
._19_c01203{margin-left:-6.789000px;}
._1d_c01203{margin-left:-4.716000px;}
._13_c01203{margin-left:-2.799000px;}
._8_c01203{margin-left:-1.311000px;}
._9_c01203{width:1.767000px;}
._11_c01203{width:2.895000px;}
._4_c01203{width:4.332000px;}
._6_c01203{width:5.643000px;}
._f_c01203{width:7.017000px;}
._2_c01203{width:8.151000px;}
._7_c01203{width:9.576000px;}
._a_c01203{width:10.773000px;}
._5_c01203{width:12.369000px;}
._27_c01203{width:14.307000px;}
._3_c01203{width:15.333000px;}
._1_c01203{width:17.214000px;}
._c_c01203{width:19.032000px;}
._b_c01203{width:20.634000px;}
._12_c01203{width:21.849000px;}
._d_c01203{width:22.914000px;}
._0_c01203{width:24.795000px;}
._10_c01203{width:26.619000px;}
._15_c01203{width:29.100000px;}
._21_c01203{width:64.863000px;}
._23_c01203{width:88.731000px;}
._1b_c01203{width:92.958000px;}
._22_c01203{width:121.110000px;}
._e_c01203{width:122.664000px;}
._26_c01203{width:129.492000px;}
._18_c01203{width:132.975000px;}
._14_c01203{width:167.979000px;}
._24_c01203{width:276.456000px;}
._25_c01203{width:277.791000px;}
._1a_c01203{width:312.417000px;}
._17_c01203{width:337.443000px;}
._16_c01203{width:493.329000px;}
.fc2_c01203{color:transparent;}
.fc1_c01203{color:rgb(128,128,128);}
.fc0_c01203{color:rgb(0,0,0);}
.fs2_c01203{font-size:48.000000px;}
.fs0_c01203{font-size:57.000000px;}
.fs1_c01203{font-size:78.000000px;}
.y0_c01203{bottom:0.000000px;}
.y25_c01203{bottom:3.105000px;}
.y24_c01203{bottom:7.228369px;}
.y23_c01203{bottom:43.470000px;}
.y22_c01203{bottom:65.820000px;}
.y21_c01203{bottom:91.770000px;}
.y20_c01203{bottom:117.420000px;}
.y1f_c01203{bottom:141.120000px;}
.y1e_c01203{bottom:165.420000px;}
.y1d_c01203{bottom:191.370000px;}
.y1c_c01203{bottom:214.620000px;}
.y1b_c01203{bottom:239.670000px;}
.y1a_c01203{bottom:264.270000px;}
.y19_c01203{bottom:288.870000px;}
.y18_c01203{bottom:313.470000px;}
.y17_c01203{bottom:338.220000px;}
.y16_c01203{bottom:363.420000px;}
.y15_c01203{bottom:388.020000px;}
.y14_c01203{bottom:413.070000px;}
.y13_c01203{bottom:437.070000px;}
.y12_c01203{bottom:461.670000px;}
.y11_c01203{bottom:485.970000px;}
.y10_c01203{bottom:509.970000px;}
.yf_c01203{bottom:533.970000px;}
.ye_c01203{bottom:558.270000px;}
.yd_c01203{bottom:582.870000px;}
.yc_c01203{bottom:609.570000px;}
.yb_c01203{bottom:633.420000px;}
.ya_c01203{bottom:656.370000px;}
.y9_c01203{bottom:680.970000px;}
.y8_c01203{bottom:705.270000px;}
.y7_c01203{bottom:730.020000px;}
.y6_c01203{bottom:754.320000px;}
.y5_c01203{bottom:778.920000px;}
.y4_c01203{bottom:803.520000px;}
.y3_c01203{bottom:829.170000px;}
.y2_c01203{bottom:853.770000px;}
.y1_c01203{bottom:876.720000px;}
.h7_c01203{height:13.200073px;}
.h8_c01203{height:43.804688px;}
.h6_c01203{height:55.942383px;}
.h2_c01203{height:57.445312px;}
.h5_c01203{height:66.713379px;}
.h4_c01203{height:72.168457px;}
.h3_c01203{height:98.756836px;}
.h1_c01203{height:967.500000px;}
.h0_c01203{height:967.650000px;}
.w2_c01203{width:104.875500px;}
.w1_c01203{width:654.750000px;}
.w0_c01203{width:655.050000px;}
.x0_c01203{left:0.000000px;}
.x9_c01203{left:19.350000px;}
.x2_c01203{left:23.250000px;}
.x3_c01203{left:25.200000px;}
.x6_c01203{left:48.300000px;}
.x5_c01203{left:63.450000px;}
.x4_c01203{left:113.100000px;}
.x1_c01203{left:114.300000px;}
.x7_c01203{left:116.100000px;}
.xa_c01203{left:117.750000px;}
.x8_c01203{left:141.450000px;}
.xc_c01203{left:279.339249px;}
.xb_c01203{left:540.450000px;}
@media print{
.v0_c01203{vertical-align:0.000000pt;}
.ls1_c01203{letter-spacing:0.000000pt;}
.ls0_c01203{letter-spacing:43.557333pt;}
.ws2_c01203{word-spacing:-2.280000pt;}
.ws4_c01203{word-spacing:-1.469333pt;}
.ws5_c01203{word-spacing:0.000000pt;}
.ws0_c01203{word-spacing:0.557333pt;}
.ws3_c01203{word-spacing:0.658667pt;}
.ws1_c01203{word-spacing:4.610667pt;}
._1f_c01203{margin-left:-15.666667pt;}
._20_c01203{margin-left:-13.312000pt;}
._1c_c01203{margin-left:-12.346667pt;}
._1e_c01203{margin-left:-8.357333pt;}
._19_c01203{margin-left:-6.034667pt;}
._1d_c01203{margin-left:-4.192000pt;}
._13_c01203{margin-left:-2.488000pt;}
._8_c01203{margin-left:-1.165333pt;}
._9_c01203{width:1.570667pt;}
._11_c01203{width:2.573333pt;}
._4_c01203{width:3.850667pt;}
._6_c01203{width:5.016000pt;}
._f_c01203{width:6.237333pt;}
._2_c01203{width:7.245333pt;}
._7_c01203{width:8.512000pt;}
._a_c01203{width:9.576000pt;}
._5_c01203{width:10.994667pt;}
._27_c01203{width:12.717333pt;}
._3_c01203{width:13.629333pt;}
._1_c01203{width:15.301333pt;}
._c_c01203{width:16.917333pt;}
._b_c01203{width:18.341333pt;}
._12_c01203{width:19.421333pt;}
._d_c01203{width:20.368000pt;}
._0_c01203{width:22.040000pt;}
._10_c01203{width:23.661333pt;}
._15_c01203{width:25.866667pt;}
._21_c01203{width:57.656000pt;}
._23_c01203{width:78.872000pt;}
._1b_c01203{width:82.629333pt;}
._22_c01203{width:107.653333pt;}
._e_c01203{width:109.034667pt;}
._26_c01203{width:115.104000pt;}
._18_c01203{width:118.200000pt;}
._14_c01203{width:149.314667pt;}
._24_c01203{width:245.738667pt;}
._25_c01203{width:246.925333pt;}
._1a_c01203{width:277.704000pt;}
._17_c01203{width:299.949333pt;}
._16_c01203{width:438.514667pt;}
.fs2_c01203{font-size:42.666667pt;}
.fs0_c01203{font-size:50.666667pt;}
.fs1_c01203{font-size:69.333333pt;}
.y0_c01203{bottom:0.000000pt;}
.y25_c01203{bottom:2.760000pt;}
.y24_c01203{bottom:6.425217pt;}
.y23_c01203{bottom:38.640000pt;}
.y22_c01203{bottom:58.506667pt;}
.y21_c01203{bottom:81.573333pt;}
.y20_c01203{bottom:104.373333pt;}
.y1f_c01203{bottom:125.440000pt;}
.y1e_c01203{bottom:147.040000pt;}
.y1d_c01203{bottom:170.106667pt;}
.y1c_c01203{bottom:190.773333pt;}
.y1b_c01203{bottom:213.040000pt;}
.y1a_c01203{bottom:234.906667pt;}
.y19_c01203{bottom:256.773333pt;}
.y18_c01203{bottom:278.640000pt;}
.y17_c01203{bottom:300.640000pt;}
.y16_c01203{bottom:323.040000pt;}
.y15_c01203{bottom:344.906667pt;}
.y14_c01203{bottom:367.173333pt;}
.y13_c01203{bottom:388.506667pt;}
.y12_c01203{bottom:410.373333pt;}
.y11_c01203{bottom:431.973333pt;}
.y10_c01203{bottom:453.306667pt;}
.yf_c01203{bottom:474.640000pt;}
.ye_c01203{bottom:496.240000pt;}
.yd_c01203{bottom:518.106667pt;}
.yc_c01203{bottom:541.840000pt;}
.yb_c01203{bottom:563.040000pt;}
.ya_c01203{bottom:583.440000pt;}
.y9_c01203{bottom:605.306667pt;}
.y8_c01203{bottom:626.906667pt;}
.y7_c01203{bottom:648.906667pt;}
.y6_c01203{bottom:670.506667pt;}
.y5_c01203{bottom:692.373333pt;}
.y4_c01203{bottom:714.240000pt;}
.y3_c01203{bottom:737.040000pt;}
.y2_c01203{bottom:758.906667pt;}
.y1_c01203{bottom:779.306667pt;}
.h7_c01203{height:11.733399pt;}
.h8_c01203{height:38.937500pt;}
.h6_c01203{height:49.726562pt;}
.h2_c01203{height:51.062500pt;}
.h5_c01203{height:59.300781pt;}
.h4_c01203{height:64.149740pt;}
.h3_c01203{height:87.783854pt;}
.h1_c01203{height:860.000000pt;}
.h0_c01203{height:860.133333pt;}
.w2_c01203{width:93.222667pt;}
.w1_c01203{width:582.000000pt;}
.w0_c01203{width:582.266667pt;}
.x0_c01203{left:0.000000pt;}
.x9_c01203{left:17.200000pt;}
.x2_c01203{left:20.666667pt;}
.x3_c01203{left:22.400000pt;}
.x6_c01203{left:42.933333pt;}
.x5_c01203{left:56.400000pt;}
.x4_c01203{left:100.533333pt;}
.x1_c01203{left:101.600000pt;}
.x7_c01203{left:103.200000pt;}
.xa_c01203{left:104.666667pt;}
.x8_c01203{left:125.733333pt;}
.xc_c01203{left:248.301554pt;}
.xb_c01203{left:480.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_c01204 {
    display:none;
  }
  .loading-indicator_c01204.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01204 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01204 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01204" -> "#page-container .classname_c01204")
 */
.pf_c01204 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01204 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01204.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01204 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01204 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01204 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01204 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01204 {overflow:visible;}
  }
}
.c_c01204 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01204 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01204:after { /* webkit #35443 */
  content: '';
}
.t_c01204:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01204 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01204 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01204 { /* info for Javascript */
  display:none;
}
.l_c01204 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01204 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01204 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01204:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01204{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01204;src:url('chunks/assets/font_eb4019629d2f7af6da9ad35f.woff2')format("woff");}.ff1_c01204{font-family:ff1_c01204;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01204;src:url('chunks/assets/font_ba130c2236251b8a93d3b135.woff2')format("woff");}.ff2_c01204{font-family:ff2_c01204;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01204;src:url('chunks/assets/font_9c6e8f1e4fc68887ad627432.woff2')format("woff");}.ff3_c01204{font-family:ff3_c01204;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01204;src:url('chunks/assets/font_781ea8685819b87868e11b7c.woff2')format("woff");}.ff4_c01204{font-family:ff4_c01204;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01204;src:url('chunks/assets/font_8d7469e5ba28fad7b90b983d.woff2')format("woff");}.ff5_c01204{font-family:ff5_c01204;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01204;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c01204{font-family:ff6_c01204;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01204{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01204{vertical-align:0.000000px;}
.ls3_c01204{letter-spacing:0.000000px;}
.ls1_c01204{letter-spacing:2.400000px;}
.ls2_c01204{letter-spacing:7.002000px;}
.ls0_c01204{letter-spacing:35.508000px;}
.sc__c01204{text-shadow:none;}
.sc0_c01204{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01204{-webkit-text-stroke:0px transparent;}
.sc0_c01204{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c01204{word-spacing:-14.535000px;}
.ws2_c01204{word-spacing:-13.737000px;}
.ws0_c01204{word-spacing:-6.897000px;}
.ws1_c01204{word-spacing:-0.798000px;}
.ws4_c01204{word-spacing:0.000000px;}
._2a_c01204{margin-left:-24.609000px;}
._2c_c01204{margin-left:-23.232000px;}
._2b_c01204{margin-left:-20.649000px;}
._25_c01204{margin-left:-14.397000px;}
._22_c01204{margin-left:-13.212000px;}
._17_c01204{margin-left:-11.514000px;}
._27_c01204{margin-left:-10.317000px;}
._1c_c01204{margin-left:-7.713000px;}
._1a_c01204{margin-left:-6.042000px;}
._29_c01204{margin-left:-4.848000px;}
._1e_c01204{margin-left:-3.627000px;}
._15_c01204{margin-left:-2.565000px;}
._10_c01204{margin-left:-1.311000px;}
._19_c01204{width:1.119000px;}
._e_c01204{width:2.451000px;}
._f_c01204{width:4.161000px;}
._12_c01204{width:5.301000px;}
._c_c01204{width:6.612000px;}
._b_c01204{width:7.923000px;}
._8_c01204{width:9.519000px;}
._1_c01204{width:10.944000px;}
._4_c01204{width:12.027000px;}
._9_c01204{width:13.110000px;}
._2_c01204{width:14.934000px;}
._a_c01204{width:16.530000px;}
._5_c01204{width:17.670000px;}
._3_c01204{width:19.095000px;}
._6_c01204{width:20.235000px;}
._d_c01204{width:21.489000px;}
._1b_c01204{width:22.914000px;}
._13_c01204{width:24.168000px;}
._21_c01204{width:26.184000px;}
._11_c01204{width:27.474000px;}
._0_c01204{width:29.469000px;}
._7_c01204{width:31.122000px;}
._20_c01204{width:33.444000px;}
._18_c01204{width:37.335000px;}
._16_c01204{width:47.538000px;}
._26_c01204{width:50.331000px;}
._24_c01204{width:55.212000px;}
._2d_c01204{width:74.631000px;}
._28_c01204{width:80.313000px;}
._14_c01204{width:118.104000px;}
._23_c01204{width:152.874000px;}
._1f_c01204{width:198.474000px;}
._1d_c01204{width:294.504000px;}
._2e_c01204{width:317.763000px;}
.fc2_c01204{color:transparent;}
.fc1_c01204{color:rgb(128,128,128);}
.fc0_c01204{color:rgb(0,0,0);}
.fs3_c01204{font-size:48.000000px;}
.fs0_c01204{font-size:57.000000px;}
.fs2_c01204{font-size:60.000000px;}
.fs1_c01204{font-size:78.000000px;}
.y0_c01204{bottom:0.000000px;}
.y24_c01204{bottom:3.105000px;}
.y23_c01204{bottom:7.228369px;}
.y22_c01204{bottom:72.870000px;}
.y21_c01204{bottom:121.170000px;}
.y20_c01204{bottom:145.770000px;}
.y1f_c01204{bottom:170.370000px;}
.y1e_c01204{bottom:194.670000px;}
.y1d_c01204{bottom:218.970000px;}
.y1c_c01204{bottom:243.570000px;}
.y1b_c01204{bottom:267.570000px;}
.y1a_c01204{bottom:291.870000px;}
.y19_c01204{bottom:315.870000px;}
.y18_c01204{bottom:339.870000px;}
.y17_c01204{bottom:363.720000px;}
.y16_c01204{bottom:387.420000px;}
.y15_c01204{bottom:412.020000px;}
.y14_c01204{bottom:435.420000px;}
.y13_c01204{bottom:459.270000px;}
.y12_c01204{bottom:482.970000px;}
.y11_c01204{bottom:506.820000px;}
.y10_c01204{bottom:531.120000px;}
.yf_c01204{bottom:554.220000px;}
.ye_c01204{bottom:578.370000px;}
.yd_c01204{bottom:602.370000px;}
.yc_c01204{bottom:626.370000px;}
.yb_c01204{bottom:650.970000px;}
.ya_c01204{bottom:674.670000px;}
.y9_c01204{bottom:697.920000px;}
.y8_c01204{bottom:722.220000px;}
.y7_c01204{bottom:746.220000px;}
.y6_c01204{bottom:768.870000px;}
.y5_c01204{bottom:794.520000px;}
.y4_c01204{bottom:818.370000px;}
.y3_c01204{bottom:842.670000px;}
.y2_c01204{bottom:867.270000px;}
.y1_c01204{bottom:901.170000px;}
.h6_c01204{height:13.200073px;}
.h7_c01204{height:43.804688px;}
.h2_c01204{height:55.914551px;}
.h3_c01204{height:57.445312px;}
.h4_c01204{height:72.168457px;}
.h5_c01204{height:98.756836px;}
.h1_c01204{height:986.250000px;}
.h0_c01204{height:986.550000px;}
.w1_c01204{width:104.875500px;}
.w0_c01204{width:672.000000px;}
.x0_c01204{left:0.000000px;}
.x2_c01204{left:55.050000px;}
.x3_c01204{left:56.100000px;}
.x4_c01204{left:58.800000px;}
.x5_c01204{left:60.300000px;}
.x6_c01204{left:61.800000px;}
.x8_c01204{left:63.750000px;}
.x9_c01204{left:65.400000px;}
.x7_c01204{left:118.500000px;}
.x1_c01204{left:121.800000px;}
.xb_c01204{left:287.814240px;}
.xa_c01204{left:404.250000px;}
@media print{
.v0_c01204{vertical-align:0.000000pt;}
.ls3_c01204{letter-spacing:0.000000pt;}
.ls1_c01204{letter-spacing:2.133333pt;}
.ls2_c01204{letter-spacing:6.224000pt;}
.ls0_c01204{letter-spacing:31.562667pt;}
.ws3_c01204{word-spacing:-12.920000pt;}
.ws2_c01204{word-spacing:-12.210667pt;}
.ws0_c01204{word-spacing:-6.130667pt;}
.ws1_c01204{word-spacing:-0.709333pt;}
.ws4_c01204{word-spacing:0.000000pt;}
._2a_c01204{margin-left:-21.874667pt;}
._2c_c01204{margin-left:-20.650667pt;}
._2b_c01204{margin-left:-18.354667pt;}
._25_c01204{margin-left:-12.797333pt;}
._22_c01204{margin-left:-11.744000pt;}
._17_c01204{margin-left:-10.234667pt;}
._27_c01204{margin-left:-9.170667pt;}
._1c_c01204{margin-left:-6.856000pt;}
._1a_c01204{margin-left:-5.370667pt;}
._29_c01204{margin-left:-4.309333pt;}
._1e_c01204{margin-left:-3.224000pt;}
._15_c01204{margin-left:-2.280000pt;}
._10_c01204{margin-left:-1.165333pt;}
._19_c01204{width:0.994667pt;}
._e_c01204{width:2.178667pt;}
._f_c01204{width:3.698667pt;}
._12_c01204{width:4.712000pt;}
._c_c01204{width:5.877333pt;}
._b_c01204{width:7.042667pt;}
._8_c01204{width:8.461333pt;}
._1_c01204{width:9.728000pt;}
._4_c01204{width:10.690667pt;}
._9_c01204{width:11.653333pt;}
._2_c01204{width:13.274667pt;}
._a_c01204{width:14.693333pt;}
._5_c01204{width:15.706667pt;}
._3_c01204{width:16.973333pt;}
._6_c01204{width:17.986667pt;}
._d_c01204{width:19.101333pt;}
._1b_c01204{width:20.368000pt;}
._13_c01204{width:21.482667pt;}
._21_c01204{width:23.274667pt;}
._11_c01204{width:24.421333pt;}
._0_c01204{width:26.194667pt;}
._7_c01204{width:27.664000pt;}
._20_c01204{width:29.728000pt;}
._18_c01204{width:33.186667pt;}
._16_c01204{width:42.256000pt;}
._26_c01204{width:44.738667pt;}
._24_c01204{width:49.077333pt;}
._2d_c01204{width:66.338667pt;}
._28_c01204{width:71.389333pt;}
._14_c01204{width:104.981333pt;}
._23_c01204{width:135.888000pt;}
._1f_c01204{width:176.421333pt;}
._1d_c01204{width:261.781333pt;}
._2e_c01204{width:282.456000pt;}
.fs3_c01204{font-size:42.666667pt;}
.fs0_c01204{font-size:50.666667pt;}
.fs2_c01204{font-size:53.333333pt;}
.fs1_c01204{font-size:69.333333pt;}
.y0_c01204{bottom:0.000000pt;}
.y24_c01204{bottom:2.760000pt;}
.y23_c01204{bottom:6.425217pt;}
.y22_c01204{bottom:64.773333pt;}
.y21_c01204{bottom:107.706667pt;}
.y20_c01204{bottom:129.573333pt;}
.y1f_c01204{bottom:151.440000pt;}
.y1e_c01204{bottom:173.040000pt;}
.y1d_c01204{bottom:194.640000pt;}
.y1c_c01204{bottom:216.506667pt;}
.y1b_c01204{bottom:237.840000pt;}
.y1a_c01204{bottom:259.440000pt;}
.y19_c01204{bottom:280.773333pt;}
.y18_c01204{bottom:302.106667pt;}
.y17_c01204{bottom:323.306667pt;}
.y16_c01204{bottom:344.373333pt;}
.y15_c01204{bottom:366.240000pt;}
.y14_c01204{bottom:387.040000pt;}
.y13_c01204{bottom:408.240000pt;}
.y12_c01204{bottom:429.306667pt;}
.y11_c01204{bottom:450.506667pt;}
.y10_c01204{bottom:472.106667pt;}
.yf_c01204{bottom:492.640000pt;}
.ye_c01204{bottom:514.106667pt;}
.yd_c01204{bottom:535.440000pt;}
.yc_c01204{bottom:556.773333pt;}
.yb_c01204{bottom:578.640000pt;}
.ya_c01204{bottom:599.706667pt;}
.y9_c01204{bottom:620.373333pt;}
.y8_c01204{bottom:641.973333pt;}
.y7_c01204{bottom:663.306667pt;}
.y6_c01204{bottom:683.440000pt;}
.y5_c01204{bottom:706.240000pt;}
.y4_c01204{bottom:727.440000pt;}
.y3_c01204{bottom:749.040000pt;}
.y2_c01204{bottom:770.906667pt;}
.y1_c01204{bottom:801.040000pt;}
.h6_c01204{height:11.733399pt;}
.h7_c01204{height:38.937500pt;}
.h2_c01204{height:49.701823pt;}
.h3_c01204{height:51.062500pt;}
.h4_c01204{height:64.149740pt;}
.h5_c01204{height:87.783854pt;}
.h1_c01204{height:876.666667pt;}
.h0_c01204{height:876.933333pt;}
.w1_c01204{width:93.222667pt;}
.w0_c01204{width:597.333333pt;}
.x0_c01204{left:0.000000pt;}
.x2_c01204{left:48.933333pt;}
.x3_c01204{left:49.866667pt;}
.x4_c01204{left:52.266667pt;}
.x5_c01204{left:53.600000pt;}
.x6_c01204{left:54.933333pt;}
.x8_c01204{left:56.666667pt;}
.x9_c01204{left:58.133333pt;}
.x7_c01204{left:105.333333pt;}
.x1_c01204{left:108.266667pt;}
.xb_c01204{left:255.834880pt;}
.xa_c01204{left:359.333333pt;}
}





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

.ir_c01205:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01205{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01205;src:url('chunks/assets/font_18e3f6c7d503b8edec2e9fdc.woff2')format("woff");}.ff1_c01205{font-family:ff1_c01205;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01205;src:url('chunks/assets/font_b2cd5f3f0f37cf0d53533d2b.woff2')format("woff");}.ff2_c01205{font-family:ff2_c01205;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01205;src:url('chunks/assets/font_4b70eecde4447914e32d6244.woff2')format("woff");}.ff3_c01205{font-family:ff3_c01205;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01205;src:url('chunks/assets/font_61240c1aa8491e1f51bf24f5.woff2')format("woff");}.ff4_c01205{font-family:ff4_c01205;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01205;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c01205{font-family:ff5_c01205;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01205{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01205{vertical-align:0.000000px;}
.ls1_c01205{letter-spacing:-9.000000px;}
.ls0_c01205{letter-spacing:0.000000px;}
.sc__c01205{text-shadow:none;}
.sc0_c01205{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01205{-webkit-text-stroke:0px transparent;}
.sc0_c01205{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01205{word-spacing:-0.741000px;}
.ws1_c01205{word-spacing:-0.456000px;}
.ws2_c01205{word-spacing:0.000000px;}
._22_c01205{margin-left:-11.343000px;}
._4_c01205{margin-left:-9.747000px;}
._e_c01205{margin-left:-2.835000px;}
._d_c01205{margin-left:-1.773000px;}
._7_c01205{width:1.938000px;}
._8_c01205{width:3.192000px;}
._1_c01205{width:4.788000px;}
._0_c01205{width:6.612000px;}
._3_c01205{width:8.607000px;}
._12_c01205{width:9.690000px;}
._6_c01205{width:10.830000px;}
._b_c01205{width:11.856000px;}
._5_c01205{width:12.882000px;}
._1a_c01205{width:15.276000px;}
._a_c01205{width:16.302000px;}
._1b_c01205{width:17.613000px;}
._c_c01205{width:18.810000px;}
._11_c01205{width:19.950000px;}
._f_c01205{width:21.204000px;}
._26_c01205{width:22.344000px;}
._13_c01205{width:23.484000px;}
._9_c01205{width:24.567000px;}
._1e_c01205{width:25.650000px;}
._2_c01205{width:27.018000px;}
._1f_c01205{width:28.272000px;}
._20_c01205{width:30.267000px;}
._14_c01205{width:32.091000px;}
._23_c01205{width:33.516000px;}
._24_c01205{width:35.226000px;}
._27_c01205{width:36.993000px;}
._28_c01205{width:38.190000px;}
._19_c01205{width:39.705000px;}
._25_c01205{width:42.180000px;}
._17_c01205{width:44.973000px;}
._21_c01205{width:46.626000px;}
._29_c01205{width:47.766000px;}
._10_c01205{width:82.935000px;}
._16_c01205{width:98.553000px;}
._18_c01205{width:244.929000px;}
._1d_c01205{width:326.268000px;}
._1c_c01205{width:549.438000px;}
._15_c01205{width:835.131000px;}
.fc2_c01205{color:transparent;}
.fc1_c01205{color:rgb(128,128,128);}
.fc0_c01205{color:rgb(0,0,0);}
.fs3_c01205{font-size:48.000000px;}
.fs1_c01205{font-size:57.000000px;}
.fs0_c01205{font-size:60.000000px;}
.fs2_c01205{font-size:105.000000px;}
.y0_c01205{bottom:0.000000px;}
.y25_c01205{bottom:3.105000px;}
.y24_c01205{bottom:7.228369px;}
.y23_c01205{bottom:38.370000px;}
.y22_c01205{bottom:60.120000px;}
.y21_c01205{bottom:85.620000px;}
.y20_c01205{bottom:110.370000px;}
.y1f_c01205{bottom:134.970000px;}
.y1e_c01205{bottom:158.970000px;}
.y1d_c01205{bottom:183.570000px;}
.y1c_c01205{bottom:208.470000px;}
.y1b_c01205{bottom:232.470000px;}
.y1a_c01205{bottom:256.770000px;}
.y19_c01205{bottom:281.520000px;}
.y18_c01205{bottom:305.670000px;}
.y17_c01205{bottom:331.470000px;}
.y16_c01205{bottom:354.420000px;}
.y15_c01205{bottom:378.720000px;}
.y14_c01205{bottom:403.320000px;}
.y13_c01205{bottom:427.320000px;}
.y12_c01205{bottom:451.470000px;}
.y11_c01205{bottom:475.770000px;}
.y10_c01205{bottom:499.470000px;}
.yf_c01205{bottom:523.770000px;}
.ye_c01205{bottom:547.320000px;}
.yd_c01205{bottom:571.620000px;}
.yc_c01205{bottom:595.920000px;}
.yb_c01205{bottom:618.870000px;}
.ya_c01205{bottom:643.920000px;}
.y9_c01205{bottom:668.970000px;}
.y8_c01205{bottom:690.870000px;}
.y7_c01205{bottom:717.120000px;}
.y6_c01205{bottom:741.420000px;}
.y5_c01205{bottom:762.420000px;}
.y1_c01205{bottom:780.870000px;}
.y4_c01205{bottom:789.720000px;}
.y3_c01205{bottom:814.020000px;}
.y2_c01205{bottom:847.470000px;}
.h6_c01205{height:13.200073px;}
.h7_c01205{height:43.804688px;}
.h3_c01205{height:55.914551px;}
.h5_c01205{height:57.445312px;}
.h2_c01205{height:58.886719px;}
.h4_c01205{height:112.035000px;}
.h1_c01205{height:967.500000px;}
.h0_c01205{height:967.650000px;}
.w2_c01205{width:104.875500px;}
.w1_c01205{width:654.750000px;}
.w0_c01205{width:655.050000px;}
.x0_c01205{left:0.000000px;}
.x4_c01205{left:11.250000px;}
.x5_c01205{left:24.600000px;}
.x6_c01205{left:103.650000px;}
.x1_c01205{left:106.350000px;}
.x8_c01205{left:107.700000px;}
.x9_c01205{left:109.650000px;}
.xa_c01205{left:112.950000px;}
.x7_c01205{left:129.600000px;}
.x3_c01205{left:166.500000px;}
.x2_c01205{left:279.150000px;}
.xb_c01205{left:553.200000px;}
@media print{
.v0_c01205{vertical-align:0.000000pt;}
.ls1_c01205{letter-spacing:-8.000000pt;}
.ls0_c01205{letter-spacing:0.000000pt;}
.ws0_c01205{word-spacing:-0.658667pt;}
.ws1_c01205{word-spacing:-0.405333pt;}
.ws2_c01205{word-spacing:0.000000pt;}
._22_c01205{margin-left:-10.082667pt;}
._4_c01205{margin-left:-8.664000pt;}
._e_c01205{margin-left:-2.520000pt;}
._d_c01205{margin-left:-1.576000pt;}
._7_c01205{width:1.722667pt;}
._8_c01205{width:2.837333pt;}
._1_c01205{width:4.256000pt;}
._0_c01205{width:5.877333pt;}
._3_c01205{width:7.650667pt;}
._12_c01205{width:8.613333pt;}
._6_c01205{width:9.626667pt;}
._b_c01205{width:10.538667pt;}
._5_c01205{width:11.450667pt;}
._1a_c01205{width:13.578667pt;}
._a_c01205{width:14.490667pt;}
._1b_c01205{width:15.656000pt;}
._c_c01205{width:16.720000pt;}
._11_c01205{width:17.733333pt;}
._f_c01205{width:18.848000pt;}
._26_c01205{width:19.861333pt;}
._13_c01205{width:20.874667pt;}
._9_c01205{width:21.837333pt;}
._1e_c01205{width:22.800000pt;}
._2_c01205{width:24.016000pt;}
._1f_c01205{width:25.130667pt;}
._20_c01205{width:26.904000pt;}
._14_c01205{width:28.525333pt;}
._23_c01205{width:29.792000pt;}
._24_c01205{width:31.312000pt;}
._27_c01205{width:32.882667pt;}
._28_c01205{width:33.946667pt;}
._19_c01205{width:35.293333pt;}
._25_c01205{width:37.493333pt;}
._17_c01205{width:39.976000pt;}
._21_c01205{width:41.445333pt;}
._29_c01205{width:42.458667pt;}
._10_c01205{width:73.720000pt;}
._16_c01205{width:87.602667pt;}
._18_c01205{width:217.714667pt;}
._1d_c01205{width:290.016000pt;}
._1c_c01205{width:488.389333pt;}
._15_c01205{width:742.338667pt;}
.fs3_c01205{font-size:42.666667pt;}
.fs1_c01205{font-size:50.666667pt;}
.fs0_c01205{font-size:53.333333pt;}
.fs2_c01205{font-size:93.333333pt;}
.y0_c01205{bottom:0.000000pt;}
.y25_c01205{bottom:2.760000pt;}
.y24_c01205{bottom:6.425217pt;}
.y23_c01205{bottom:34.106667pt;}
.y22_c01205{bottom:53.440000pt;}
.y21_c01205{bottom:76.106667pt;}
.y20_c01205{bottom:98.106667pt;}
.y1f_c01205{bottom:119.973333pt;}
.y1e_c01205{bottom:141.306667pt;}
.y1d_c01205{bottom:163.173333pt;}
.y1c_c01205{bottom:185.306667pt;}
.y1b_c01205{bottom:206.640000pt;}
.y1a_c01205{bottom:228.240000pt;}
.y19_c01205{bottom:250.240000pt;}
.y18_c01205{bottom:271.706667pt;}
.y17_c01205{bottom:294.640000pt;}
.y16_c01205{bottom:315.040000pt;}
.y15_c01205{bottom:336.640000pt;}
.y14_c01205{bottom:358.506667pt;}
.y13_c01205{bottom:379.840000pt;}
.y12_c01205{bottom:401.306667pt;}
.y11_c01205{bottom:422.906667pt;}
.y10_c01205{bottom:443.973333pt;}
.yf_c01205{bottom:465.573333pt;}
.ye_c01205{bottom:486.506667pt;}
.yd_c01205{bottom:508.106667pt;}
.yc_c01205{bottom:529.706667pt;}
.yb_c01205{bottom:550.106667pt;}
.ya_c01205{bottom:572.373333pt;}
.y9_c01205{bottom:594.640000pt;}
.y8_c01205{bottom:614.106667pt;}
.y7_c01205{bottom:637.440000pt;}
.y6_c01205{bottom:659.040000pt;}
.y5_c01205{bottom:677.706667pt;}
.y1_c01205{bottom:694.106667pt;}
.y4_c01205{bottom:701.973333pt;}
.y3_c01205{bottom:723.573333pt;}
.y2_c01205{bottom:753.306667pt;}
.h6_c01205{height:11.733399pt;}
.h7_c01205{height:38.937500pt;}
.h3_c01205{height:49.701823pt;}
.h5_c01205{height:51.062500pt;}
.h2_c01205{height:52.343750pt;}
.h4_c01205{height:99.586667pt;}
.h1_c01205{height:860.000000pt;}
.h0_c01205{height:860.133333pt;}
.w2_c01205{width:93.222667pt;}
.w1_c01205{width:582.000000pt;}
.w0_c01205{width:582.266667pt;}
.x0_c01205{left:0.000000pt;}
.x4_c01205{left:10.000000pt;}
.x5_c01205{left:21.866667pt;}
.x6_c01205{left:92.133333pt;}
.x1_c01205{left:94.533333pt;}
.x8_c01205{left:95.733333pt;}
.x9_c01205{left:97.466667pt;}
.xa_c01205{left:100.400000pt;}
.x7_c01205{left:115.200000pt;}
.x3_c01205{left:148.000000pt;}
.x2_c01205{left:248.133333pt;}
.xb_c01205{left:491.733333pt;}
}





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

.ir_c01206:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01206{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01206;src:url('chunks/assets/font_0baa6be86b28aecbeca6017e.woff2')format("woff");}.ff1_c01206{font-family:ff1_c01206;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01206;src:url('chunks/assets/font_1f91658bb433d549a2fef5ac.woff2')format("woff");}.ff2_c01206{font-family:ff2_c01206;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01206;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff3_c01206{font-family:ff3_c01206;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01206;src:url('chunks/assets/font_b252cfa848e812445f0563a6.woff2')format("woff");}.ff4_c01206{font-family:ff4_c01206;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01206;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c01206{font-family:ff5_c01206;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01206{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01206{vertical-align:0.000000px;}
.ls0_c01206{letter-spacing:0.000000px;}
.ls1_c01206{letter-spacing:15.000000px;}
.sc__c01206{text-shadow:none;}
.sc0_c01206{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01206{-webkit-text-stroke:0px transparent;}
.sc0_c01206{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01206{word-spacing:-10.944000px;}
.ws2_c01206{word-spacing:0.000000px;}
.ws1_c01206{word-spacing:3.021000px;}
._1c_c01206{margin-left:-14.667000px;}
._1a_c01206{margin-left:-8.859000px;}
._3_c01206{margin-left:-5.247000px;}
._5_c01206{margin-left:-3.960000px;}
._4_c01206{margin-left:-2.673000px;}
._14_c01206{margin-left:-1.032000px;}
._17_c01206{width:1.155000px;}
._1_c01206{width:2.178000px;}
._2_c01206{width:4.257000px;}
._0_c01206{width:5.445000px;}
._11_c01206{width:6.669000px;}
._b_c01206{width:8.151000px;}
._9_c01206{width:9.690000px;}
._f_c01206{width:11.400000px;}
._d_c01206{width:12.540000px;}
._8_c01206{width:15.561000px;}
._c_c01206{width:16.587000px;}
._a_c01206{width:18.240000px;}
._15_c01206{width:19.266000px;}
._12_c01206{width:20.328000px;}
._10_c01206{width:22.173000px;}
._21_c01206{width:23.214000px;}
._e_c01206{width:24.225000px;}
._7_c01206{width:26.364000px;}
._1f_c01206{width:27.930000px;}
._16_c01206{width:29.184000px;}
._1d_c01206{width:30.324000px;}
._22_c01206{width:31.716000px;}
._23_c01206{width:35.673000px;}
._24_c01206{width:39.273000px;}
._20_c01206{width:44.247000px;}
._1e_c01206{width:47.106000px;}
._13_c01206{width:77.031000px;}
._18_c01206{width:101.964000px;}
._19_c01206{width:127.110000px;}
._1b_c01206{width:170.979000px;}
._6_c01206{width:181.248000px;}
._25_c01206{width:295.686000px;}
.fc2_c01206{color:transparent;}
.fc1_c01206{color:rgb(128,128,128);}
.fc0_c01206{color:rgb(0,0,0);}
.fs3_c01206{font-size:48.000000px;}
.fs2_c01206{font-size:57.000000px;}
.fs1_c01206{font-size:78.000000px;}
.fs0_c01206{font-size:99.000000px;}
.y0_c01206{bottom:0.000000px;}
.y26_c01206{bottom:3.105000px;}
.y25_c01206{bottom:7.228369px;}
.y24_c01206{bottom:67.470000px;}
.y23_c01206{bottom:92.070000px;}
.y22_c01206{bottom:116.820000px;}
.y21_c01206{bottom:141.120000px;}
.y20_c01206{bottom:165.270000px;}
.y1f_c01206{bottom:189.720000px;}
.y1e_c01206{bottom:214.320000px;}
.y1d_c01206{bottom:238.170000px;}
.y1c_c01206{bottom:262.470000px;}
.y1b_c01206{bottom:286.170000px;}
.y1a_c01206{bottom:310.470000px;}
.y19_c01206{bottom:334.770000px;}
.y18_c01206{bottom:358.770000px;}
.y17_c01206{bottom:382.770000px;}
.y16_c01206{bottom:406.920000px;}
.y15_c01206{bottom:430.620000px;}
.y14_c01206{bottom:454.320000px;}
.y13_c01206{bottom:477.570000px;}
.y12_c01206{bottom:502.920000px;}
.y11_c01206{bottom:527.220000px;}
.y10_c01206{bottom:550.020000px;}
.yf_c01206{bottom:573.720000px;}
.ye_c01206{bottom:598.620000px;}
.yd_c01206{bottom:621.270000px;}
.yc_c01206{bottom:645.270000px;}
.yb_c01206{bottom:669.570000px;}
.ya_c01206{bottom:693.120000px;}
.y9_c01206{bottom:717.420000px;}
.y8_c01206{bottom:741.420000px;}
.y7_c01206{bottom:765.720000px;}
.y6_c01206{bottom:789.420000px;}
.y5_c01206{bottom:813.420000px;}
.y4_c01206{bottom:838.320000px;}
.y3_c01206{bottom:861.570000px;}
.y2_c01206{bottom:885.870000px;}
.y1_c01206{bottom:926.070000px;}
.h4_c01206{height:13.200073px;}
.h5_c01206{height:43.804688px;}
.h3_c01206{height:57.445312px;}
.h2_c01206{height:115.870605px;}
.h1_c01206{height:986.250000px;}
.h0_c01206{height:986.550000px;}
.w1_c01206{width:104.875500px;}
.w0_c01206{width:672.000000px;}
.x0_c01206{left:0.000000px;}
.x2_c01206{left:59.700000px;}
.x3_c01206{left:61.650000px;}
.x4_c01206{left:63.000000px;}
.x5_c01206{left:64.500000px;}
.x6_c01206{left:66.600000px;}
.x7_c01206{left:67.950000px;}
.x8_c01206{left:70.200000px;}
.xa_c01206{left:71.250000px;}
.xb_c01206{left:72.300000px;}
.xc_c01206{left:74.250000px;}
.xd_c01206{left:75.300000px;}
.xe_c01206{left:76.950000px;}
.xf_c01206{left:78.600000px;}
.x10_c01206{left:80.100000px;}
.x9_c01206{left:86.400000px;}
.x1_c01206{left:98.550000px;}
.x12_c01206{left:287.814240px;}
.x11_c01206{left:421.950000px;}
@media print{
.v0_c01206{vertical-align:0.000000pt;}
.ls0_c01206{letter-spacing:0.000000pt;}
.ls1_c01206{letter-spacing:13.333333pt;}
.ws0_c01206{word-spacing:-9.728000pt;}
.ws2_c01206{word-spacing:0.000000pt;}
.ws1_c01206{word-spacing:2.685333pt;}
._1c_c01206{margin-left:-13.037333pt;}
._1a_c01206{margin-left:-7.874667pt;}
._3_c01206{margin-left:-4.664000pt;}
._5_c01206{margin-left:-3.520000pt;}
._4_c01206{margin-left:-2.376000pt;}
._14_c01206{margin-left:-0.917333pt;}
._17_c01206{width:1.026667pt;}
._1_c01206{width:1.936000pt;}
._2_c01206{width:3.784000pt;}
._0_c01206{width:4.840000pt;}
._11_c01206{width:5.928000pt;}
._b_c01206{width:7.245333pt;}
._9_c01206{width:8.613333pt;}
._f_c01206{width:10.133333pt;}
._d_c01206{width:11.146667pt;}
._8_c01206{width:13.832000pt;}
._c_c01206{width:14.744000pt;}
._a_c01206{width:16.213333pt;}
._15_c01206{width:17.125333pt;}
._12_c01206{width:18.069333pt;}
._10_c01206{width:19.709333pt;}
._21_c01206{width:20.634667pt;}
._e_c01206{width:21.533333pt;}
._7_c01206{width:23.434667pt;}
._1f_c01206{width:24.826667pt;}
._16_c01206{width:25.941333pt;}
._1d_c01206{width:26.954667pt;}
._22_c01206{width:28.192000pt;}
._23_c01206{width:31.709333pt;}
._24_c01206{width:34.909333pt;}
._20_c01206{width:39.330667pt;}
._1e_c01206{width:41.872000pt;}
._13_c01206{width:68.472000pt;}
._18_c01206{width:90.634667pt;}
._19_c01206{width:112.986667pt;}
._1b_c01206{width:151.981333pt;}
._6_c01206{width:161.109333pt;}
._25_c01206{width:262.832000pt;}
.fs3_c01206{font-size:42.666667pt;}
.fs2_c01206{font-size:50.666667pt;}
.fs1_c01206{font-size:69.333333pt;}
.fs0_c01206{font-size:88.000000pt;}
.y0_c01206{bottom:0.000000pt;}
.y26_c01206{bottom:2.760000pt;}
.y25_c01206{bottom:6.425217pt;}
.y24_c01206{bottom:59.973333pt;}
.y23_c01206{bottom:81.840000pt;}
.y22_c01206{bottom:103.840000pt;}
.y21_c01206{bottom:125.440000pt;}
.y20_c01206{bottom:146.906667pt;}
.y1f_c01206{bottom:168.640000pt;}
.y1e_c01206{bottom:190.506667pt;}
.y1d_c01206{bottom:211.706667pt;}
.y1c_c01206{bottom:233.306667pt;}
.y1b_c01206{bottom:254.373333pt;}
.y1a_c01206{bottom:275.973333pt;}
.y19_c01206{bottom:297.573333pt;}
.y18_c01206{bottom:318.906667pt;}
.y17_c01206{bottom:340.240000pt;}
.y16_c01206{bottom:361.706667pt;}
.y15_c01206{bottom:382.773333pt;}
.y14_c01206{bottom:403.840000pt;}
.y13_c01206{bottom:424.506667pt;}
.y12_c01206{bottom:447.040000pt;}
.y11_c01206{bottom:468.640000pt;}
.y10_c01206{bottom:488.906667pt;}
.yf_c01206{bottom:509.973333pt;}
.ye_c01206{bottom:532.106667pt;}
.yd_c01206{bottom:552.240000pt;}
.yc_c01206{bottom:573.573333pt;}
.yb_c01206{bottom:595.173333pt;}
.ya_c01206{bottom:616.106667pt;}
.y9_c01206{bottom:637.706667pt;}
.y8_c01206{bottom:659.040000pt;}
.y7_c01206{bottom:680.640000pt;}
.y6_c01206{bottom:701.706667pt;}
.y5_c01206{bottom:723.040000pt;}
.y4_c01206{bottom:745.173333pt;}
.y3_c01206{bottom:765.840000pt;}
.y2_c01206{bottom:787.440000pt;}
.y1_c01206{bottom:823.173333pt;}
.h4_c01206{height:11.733399pt;}
.h5_c01206{height:38.937500pt;}
.h3_c01206{height:51.062500pt;}
.h2_c01206{height:102.996094pt;}
.h1_c01206{height:876.666667pt;}
.h0_c01206{height:876.933333pt;}
.w1_c01206{width:93.222667pt;}
.w0_c01206{width:597.333333pt;}
.x0_c01206{left:0.000000pt;}
.x2_c01206{left:53.066667pt;}
.x3_c01206{left:54.800000pt;}
.x4_c01206{left:56.000000pt;}
.x5_c01206{left:57.333333pt;}
.x6_c01206{left:59.200000pt;}
.x7_c01206{left:60.400000pt;}
.x8_c01206{left:62.400000pt;}
.xa_c01206{left:63.333333pt;}
.xb_c01206{left:64.266667pt;}
.xc_c01206{left:66.000000pt;}
.xd_c01206{left:66.933333pt;}
.xe_c01206{left:68.400000pt;}
.xf_c01206{left:69.866667pt;}
.x10_c01206{left:71.200000pt;}
.x9_c01206{left:76.800000pt;}
.x1_c01206{left:87.600000pt;}
.x12_c01206{left:255.834880pt;}
.x11_c01206{left:375.066667pt;}
}





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

.ir_c01207:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01207{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01207;src:url('chunks/assets/font_66ef2e758c58939625e6d260.woff2')format("woff");}.ff1_c01207{font-family:ff1_c01207;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01207;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff2_c01207{font-family:ff2_c01207;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01207;src:url('chunks/assets/font_d0e2af813eef1b62c990ad85.woff2')format("woff");}.ff3_c01207{font-family:ff3_c01207;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01207;src:url('chunks/assets/font_7e96fa9bb0c4e9b4159e5c81.woff2')format("woff");}.ff4_c01207{font-family:ff4_c01207;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01207;src:url('chunks/assets/font_e74b20dc59272b8a73208d8c.woff2')format("woff");}.ff5_c01207{font-family:ff5_c01207;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01207;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c01207{font-family:ff6_c01207;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01207{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01207{vertical-align:0.000000px;}
.ls8_c01207{letter-spacing:0.000000px;}
.ls1_c01207{letter-spacing:5.586000px;}
.ls3_c01207{letter-spacing:5.700000px;}
.ls2_c01207{letter-spacing:7.800000px;}
.ls9_c01207{letter-spacing:9.000000px;}
.ls7_c01207{letter-spacing:10.092000px;}
.ls4_c01207{letter-spacing:15.108000px;}
.ls5_c01207{letter-spacing:17.700000px;}
.ls0_c01207{letter-spacing:22.146000px;}
.ls6_c01207{letter-spacing:36.786000px;}
.sc__c01207{text-shadow:none;}
.sc0_c01207{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01207{-webkit-text-stroke:0px transparent;}
.sc0_c01207{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01207{word-spacing:-47.700000px;}
.ws2_c01207{word-spacing:-0.741000px;}
.ws3_c01207{word-spacing:0.000000px;}
.ws0_c01207{word-spacing:3.762000px;}
._1f_c01207{margin-left:-23.400000px;}
._2d_c01207{margin-left:-16.929000px;}
._19_c01207{margin-left:-14.364000px;}
._1a_c01207{margin-left:-12.528000px;}
._20_c01207{margin-left:-10.575000px;}
._32_c01207{margin-left:-9.390000px;}
._28_c01207{margin-left:-6.897000px;}
._33_c01207{margin-left:-5.724000px;}
._12_c01207{margin-left:-4.674000px;}
._21_c01207{margin-left:-3.594000px;}
._0_c01207{margin-left:-1.482000px;}
._1_c01207{width:1.254000px;}
._c_c01207{width:2.337000px;}
._9_c01207{width:3.990000px;}
._8_c01207{width:5.301000px;}
._a_c01207{width:7.239000px;}
._5_c01207{width:8.322000px;}
._3_c01207{width:9.690000px;}
._10_c01207{width:10.944000px;}
._2_c01207{width:12.027000px;}
._7_c01207{width:13.224000px;}
._4_c01207{width:15.675000px;}
._17_c01207{width:16.701000px;}
._6_c01207{width:17.784000px;}
._b_c01207{width:19.152000px;}
._1e_c01207{width:20.235000px;}
._f_c01207{width:21.489000px;}
._18_c01207{width:22.914000px;}
._d_c01207{width:24.624000px;}
._26_c01207{width:27.120000px;}
._1d_c01207{width:28.443000px;}
._15_c01207{width:31.122000px;}
._e_c01207{width:32.205000px;}
._1c_c01207{width:33.573000px;}
._23_c01207{width:34.998000px;}
._16_c01207{width:40.641000px;}
._1b_c01207{width:42.768000px;}
._24_c01207{width:47.253000px;}
._2a_c01207{width:48.651000px;}
._13_c01207{width:53.865000px;}
._2b_c01207{width:57.855000px;}
._27_c01207{width:81.825000px;}
._2f_c01207{width:102.726000px;}
._35_c01207{width:107.730000px;}
._2c_c01207{width:116.907000px;}
._31_c01207{width:122.493000px;}
._2e_c01207{width:141.789000px;}
._11_c01207{width:152.931000px;}
._25_c01207{width:177.042000px;}
._29_c01207{width:187.644000px;}
._22_c01207{width:210.582000px;}
._14_c01207{width:220.590000px;}
._34_c01207{width:236.265000px;}
._30_c01207{width:290.223000px;}
.fc2_c01207{color:transparent;}
.fc1_c01207{color:rgb(128,128,128);}
.fc0_c01207{color:rgb(0,0,0);}
.fs4_c01207{font-size:48.000000px;}
.fs1_c01207{font-size:54.000000px;}
.fs0_c01207{font-size:57.000000px;}
.fs2_c01207{font-size:60.000000px;}
.fs3_c01207{font-size:75.000000px;}
.y0_c01207{bottom:0.000000px;}
.y25_c01207{bottom:3.105000px;}
.y24_c01207{bottom:7.228363px;}
.y23_c01207{bottom:63.750000px;}
.y22_c01207{bottom:90.450000px;}
.y21_c01207{bottom:112.800000px;}
.y20_c01207{bottom:137.700000px;}
.y1f_c01207{bottom:162.300000px;}
.y1e_c01207{bottom:186.000000px;}
.y1d_c01207{bottom:209.550000px;}
.y1c_c01207{bottom:236.550000px;}
.y1b_c01207{bottom:258.300000px;}
.y1a_c01207{bottom:283.800000px;}
.y19_c01207{bottom:308.250000px;}
.y18_c01207{bottom:332.400000px;}
.y17_c01207{bottom:356.700000px;}
.y16_c01207{bottom:381.750000px;}
.y15_c01207{bottom:405.450000px;}
.y14_c01207{bottom:429.300000px;}
.y13_c01207{bottom:453.600000px;}
.y12_c01207{bottom:477.300000px;}
.y11_c01207{bottom:500.850000px;}
.y10_c01207{bottom:524.850000px;}
.yf_c01207{bottom:549.900000px;}
.ye_c01207{bottom:572.100000px;}
.yd_c01207{bottom:597.450000px;}
.yc_c01207{bottom:621.000000px;}
.yb_c01207{bottom:645.750000px;}
.ya_c01207{bottom:669.600000px;}
.y9_c01207{bottom:693.300000px;}
.y8_c01207{bottom:717.900000px;}
.y7_c01207{bottom:741.900000px;}
.y6_c01207{bottom:765.750000px;}
.y5_c01207{bottom:789.750000px;}
.y4_c01207{bottom:814.950000px;}
.y3_c01207{bottom:838.350000px;}
.y2_c01207{bottom:860.700000px;}
.y1_c01207{bottom:885.300000px;}
.h7_c01207{height:13.200074px;}
.h8_c01207{height:43.804688px;}
.h6_c01207{height:55.914551px;}
.h2_c01207{height:57.445312px;}
.h4_c01207{height:65.040000px;}
.h3_c01207{height:68.370117px;}
.h5_c01207{height:75.585938px;}
.h1_c01207{height:977.250000px;}
.h0_c01207{height:977.400000px;}
.w1_c01207{width:104.875500px;}
.w0_c01207{width:661.500000px;}
.x0_c01207{left:0.000000px;}
.xb_c01207{left:3.000000px;}
.x8_c01207{left:7.350000px;}
.x7_c01207{left:12.150000px;}
.x3_c01207{left:16.500000px;}
.x2_c01207{left:17.550000px;}
.xa_c01207{left:34.050000px;}
.x10_c01207{left:47.250000px;}
.x9_c01207{left:73.500000px;}
.x4_c01207{left:82.050000px;}
.x11_c01207{left:94.500000px;}
.xf_c01207{left:97.200000px;}
.xe_c01207{left:98.850000px;}
.xd_c01207{left:99.900000px;}
.xc_c01207{left:100.950000px;}
.x6_c01207{left:102.900000px;}
.x5_c01207{left:105.000000px;}
.x1_c01207{left:107.700000px;}
.x12_c01207{left:120.750000px;}
.x15_c01207{left:282.564240px;}
.x13_c01207{left:553.500000px;}
.x14_c01207{left:619.650000px;}
@media print{
.v0_c01207{vertical-align:0.000000pt;}
.ls8_c01207{letter-spacing:0.000000pt;}
.ls1_c01207{letter-spacing:4.965333pt;}
.ls3_c01207{letter-spacing:5.066667pt;}
.ls2_c01207{letter-spacing:6.933333pt;}
.ls9_c01207{letter-spacing:8.000000pt;}
.ls7_c01207{letter-spacing:8.970667pt;}
.ls4_c01207{letter-spacing:13.429333pt;}
.ls5_c01207{letter-spacing:15.733333pt;}
.ls0_c01207{letter-spacing:19.685333pt;}
.ls6_c01207{letter-spacing:32.698667pt;}
.ws1_c01207{word-spacing:-42.400000pt;}
.ws2_c01207{word-spacing:-0.658667pt;}
.ws3_c01207{word-spacing:0.000000pt;}
.ws0_c01207{word-spacing:3.344000pt;}
._1f_c01207{margin-left:-20.800000pt;}
._2d_c01207{margin-left:-15.048000pt;}
._19_c01207{margin-left:-12.768000pt;}
._1a_c01207{margin-left:-11.136000pt;}
._20_c01207{margin-left:-9.400000pt;}
._32_c01207{margin-left:-8.346667pt;}
._28_c01207{margin-left:-6.130667pt;}
._33_c01207{margin-left:-5.088000pt;}
._12_c01207{margin-left:-4.154667pt;}
._21_c01207{margin-left:-3.194667pt;}
._0_c01207{margin-left:-1.317333pt;}
._1_c01207{width:1.114667pt;}
._c_c01207{width:2.077333pt;}
._9_c01207{width:3.546667pt;}
._8_c01207{width:4.712000pt;}
._a_c01207{width:6.434667pt;}
._5_c01207{width:7.397333pt;}
._3_c01207{width:8.613333pt;}
._10_c01207{width:9.728000pt;}
._2_c01207{width:10.690667pt;}
._7_c01207{width:11.754667pt;}
._4_c01207{width:13.933333pt;}
._17_c01207{width:14.845333pt;}
._6_c01207{width:15.808000pt;}
._b_c01207{width:17.024000pt;}
._1e_c01207{width:17.986667pt;}
._f_c01207{width:19.101333pt;}
._18_c01207{width:20.368000pt;}
._d_c01207{width:21.888000pt;}
._26_c01207{width:24.106667pt;}
._1d_c01207{width:25.282667pt;}
._15_c01207{width:27.664000pt;}
._e_c01207{width:28.626667pt;}
._1c_c01207{width:29.842667pt;}
._23_c01207{width:31.109333pt;}
._16_c01207{width:36.125333pt;}
._1b_c01207{width:38.016000pt;}
._24_c01207{width:42.002667pt;}
._2a_c01207{width:43.245333pt;}
._13_c01207{width:47.880000pt;}
._2b_c01207{width:51.426667pt;}
._27_c01207{width:72.733333pt;}
._2f_c01207{width:91.312000pt;}
._35_c01207{width:95.760000pt;}
._2c_c01207{width:103.917333pt;}
._31_c01207{width:108.882667pt;}
._2e_c01207{width:126.034667pt;}
._11_c01207{width:135.938667pt;}
._25_c01207{width:157.370667pt;}
._29_c01207{width:166.794667pt;}
._22_c01207{width:187.184000pt;}
._14_c01207{width:196.080000pt;}
._34_c01207{width:210.013333pt;}
._30_c01207{width:257.976000pt;}
.fs4_c01207{font-size:42.666667pt;}
.fs1_c01207{font-size:48.000000pt;}
.fs0_c01207{font-size:50.666667pt;}
.fs2_c01207{font-size:53.333333pt;}
.fs3_c01207{font-size:66.666667pt;}
.y0_c01207{bottom:0.000000pt;}
.y25_c01207{bottom:2.760000pt;}
.y24_c01207{bottom:6.425212pt;}
.y23_c01207{bottom:56.666667pt;}
.y22_c01207{bottom:80.400000pt;}
.y21_c01207{bottom:100.266667pt;}
.y20_c01207{bottom:122.400000pt;}
.y1f_c01207{bottom:144.266667pt;}
.y1e_c01207{bottom:165.333333pt;}
.y1d_c01207{bottom:186.266667pt;}
.y1c_c01207{bottom:210.266667pt;}
.y1b_c01207{bottom:229.600000pt;}
.y1a_c01207{bottom:252.266667pt;}
.y19_c01207{bottom:274.000000pt;}
.y18_c01207{bottom:295.466667pt;}
.y17_c01207{bottom:317.066667pt;}
.y16_c01207{bottom:339.333333pt;}
.y15_c01207{bottom:360.400000pt;}
.y14_c01207{bottom:381.600000pt;}
.y13_c01207{bottom:403.200000pt;}
.y12_c01207{bottom:424.266667pt;}
.y11_c01207{bottom:445.200000pt;}
.y10_c01207{bottom:466.533333pt;}
.yf_c01207{bottom:488.800000pt;}
.ye_c01207{bottom:508.533333pt;}
.yd_c01207{bottom:531.066667pt;}
.yc_c01207{bottom:552.000000pt;}
.yb_c01207{bottom:574.000000pt;}
.ya_c01207{bottom:595.200000pt;}
.y9_c01207{bottom:616.266667pt;}
.y8_c01207{bottom:638.133333pt;}
.y7_c01207{bottom:659.466667pt;}
.y6_c01207{bottom:680.666667pt;}
.y5_c01207{bottom:702.000000pt;}
.y4_c01207{bottom:724.400000pt;}
.y3_c01207{bottom:745.200000pt;}
.y2_c01207{bottom:765.066667pt;}
.y1_c01207{bottom:786.933333pt;}
.h7_c01207{height:11.733399pt;}
.h8_c01207{height:38.937500pt;}
.h6_c01207{height:49.701823pt;}
.h2_c01207{height:51.062500pt;}
.h4_c01207{height:57.813333pt;}
.h3_c01207{height:60.773438pt;}
.h5_c01207{height:67.187500pt;}
.h1_c01207{height:868.666667pt;}
.h0_c01207{height:868.800000pt;}
.w1_c01207{width:93.222667pt;}
.w0_c01207{width:588.000000pt;}
.x0_c01207{left:0.000000pt;}
.xb_c01207{left:2.666667pt;}
.x8_c01207{left:6.533333pt;}
.x7_c01207{left:10.800000pt;}
.x3_c01207{left:14.666667pt;}
.x2_c01207{left:15.600000pt;}
.xa_c01207{left:30.266667pt;}
.x10_c01207{left:42.000000pt;}
.x9_c01207{left:65.333333pt;}
.x4_c01207{left:72.933333pt;}
.x11_c01207{left:84.000000pt;}
.xf_c01207{left:86.400000pt;}
.xe_c01207{left:87.866667pt;}
.xd_c01207{left:88.800000pt;}
.xc_c01207{left:89.733333pt;}
.x6_c01207{left:91.466667pt;}
.x5_c01207{left:93.333333pt;}
.x1_c01207{left:95.733333pt;}
.x12_c01207{left:107.333333pt;}
.x15_c01207{left:251.168213pt;}
.x13_c01207{left:492.000000pt;}
.x14_c01207{left:550.800000pt;}
}





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

.ir_c01208:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01208{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01208;src:url('chunks/assets/font_29e79be43af7c8e5dcac00f0.woff2')format("woff");}.ff1_c01208{font-family:ff1_c01208;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01208;src:url('chunks/assets/font_2f075c8dde34a604feb9fab6.woff2')format("woff");}.ff2_c01208{font-family:ff2_c01208;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01208;src:url('chunks/assets/font_d554a3076875caaf2f9a6701.woff2')format("woff");}.ff3_c01208{font-family:ff3_c01208;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01208;src:url('chunks/assets/font_4f3c669a87336d0ae44e2819.woff2')format("woff");}.ff4_c01208{font-family:ff4_c01208;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01208;src:url('chunks/assets/font_89ba9fa46ee66a1bc94045cf.woff2')format("woff");}.ff5_c01208{font-family:ff5_c01208;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01208;src:url('chunks/assets/font_0fc6335e142963dd80e553ab.woff2')format("woff");}.ff6_c01208{font-family:ff6_c01208;line-height:1.401855;font-style:normal;font-weight: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_c01208;src:url('chunks/assets/font_f3ae0e3fcdec7be38c0899ed.woff2')format("woff");}.ff7_c01208{font-family:ff7_c01208;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c01208;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff8_c01208{font-family:ff8_c01208;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01208{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01208{vertical-align:0.000000px;}
.ls3_c01208{letter-spacing:-15.000000px;}
.ls2_c01208{letter-spacing:0.000000px;}
.ls1_c01208{letter-spacing:6.000000px;}
.ls0_c01208{letter-spacing:25.950000px;}
.sc__c01208{text-shadow:none;}
.sc0_c01208{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01208{-webkit-text-stroke:0px transparent;}
.sc0_c01208{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c01208{word-spacing:-56.100000px;}
.ws1_c01208{word-spacing:-19.824000px;}
.ws2_c01208{word-spacing:-14.250000px;}
.ws0_c01208{word-spacing:-1.653000px;}
.ws4_c01208{word-spacing:0.000000px;}
._13_c01208{margin-left:-8.607000px;}
._1e_c01208{margin-left:-7.353000px;}
._17_c01208{margin-left:-5.835000px;}
._14_c01208{margin-left:-4.332000px;}
._11_c01208{margin-left:-2.508000px;}
._12_c01208{margin-left:-1.368000px;}
._19_c01208{width:1.140000px;}
._7_c01208{width:2.223000px;}
._3_c01208{width:3.705000px;}
._e_c01208{width:5.244000px;}
._2_c01208{width:6.612000px;}
._10_c01208{width:7.866000px;}
._4_c01208{width:8.949000px;}
._6_c01208{width:10.431000px;}
._5_c01208{width:11.571000px;}
._0_c01208{width:12.597000px;}
._1_c01208{width:15.390000px;}
._9_c01208{width:16.815000px;}
._a_c01208{width:18.468000px;}
._8_c01208{width:19.950000px;}
._15_c01208{width:21.261000px;}
._d_c01208{width:22.458000px;}
._f_c01208{width:23.769000px;}
._c_c01208{width:25.251000px;}
._18_c01208{width:26.334000px;}
._b_c01208{width:28.272000px;}
._1c_c01208{width:31.920000px;}
._1d_c01208{width:34.341000px;}
._1a_c01208{width:37.101000px;}
._1b_c01208{width:43.092000px;}
._1f_c01208{width:174.012000px;}
._16_c01208{width:233.265000px;}
.fc2_c01208{color:transparent;}
.fc1_c01208{color:rgb(128,128,128);}
.fc0_c01208{color:rgb(0,0,0);}
.fs6_c01208{font-size:48.000000px;}
.fs4_c01208{font-size:54.000000px;}
.fs0_c01208{font-size:57.000000px;}
.fs3_c01208{font-size:69.000000px;}
.fs1_c01208{font-size:75.000000px;}
.fs2_c01208{font-size:84.000000px;}
.fs5_c01208{font-size:102.000000px;}
.y0_c01208{bottom:0.000000px;}
.y25_c01208{bottom:3.105000px;}
.y24_c01208{bottom:7.228357px;}
.y23_c01208{bottom:60.030000px;}
.y22_c01208{bottom:83.130000px;}
.y21_c01208{bottom:108.030000px;}
.y20_c01208{bottom:131.730000px;}
.y1f_c01208{bottom:155.880000px;}
.y1e_c01208{bottom:180.330000px;}
.y1d_c01208{bottom:203.580000px;}
.y1c_c01208{bottom:227.580000px;}
.y1b_c01208{bottom:251.430000px;}
.y1a_c01208{bottom:275.430000px;}
.y19_c01208{bottom:299.130000px;}
.y18_c01208{bottom:323.430000px;}
.y17_c01208{bottom:346.680000px;}
.y16_c01208{bottom:370.680000px;}
.y15_c01208{bottom:394.230000px;}
.y14_c01208{bottom:417.930000px;}
.y13_c01208{bottom:442.080000px;}
.y12_c01208{bottom:465.030000px;}
.y11_c01208{bottom:488.130000px;}
.y10_c01208{bottom:511.680000px;}
.yf_c01208{bottom:535.230000px;}
.ye_c01208{bottom:558.330000px;}
.yd_c01208{bottom:581.880000px;}
.yc_c01208{bottom:605.130000px;}
.yb_c01208{bottom:628.530000px;}
.ya_c01208{bottom:652.680000px;}
.y9_c01208{bottom:676.080000px;}
.y8_c01208{bottom:699.930000px;}
.y7_c01208{bottom:723.630000px;}
.y6_c01208{bottom:747.330000px;}
.y5_c01208{bottom:771.480000px;}
.y4_c01208{bottom:794.880000px;}
.y3_c01208{bottom:818.430000px;}
.y2_c01208{bottom:841.830000px;}
.y1_c01208{bottom:865.680000px;}
.h6_c01208{height:13.200074px;}
.h7_c01208{height:43.804688px;}
.h1_c01208{height:57.445312px;}
.h4_c01208{height:72.312000px;}
.h2_c01208{height:81.300000px;}
.h3_c01208{height:82.441406px;}
.h5_c01208{height:104.839927px;}
.h0_c01208{height:968.250000px;}
.w2_c01208{width:104.875500px;}
.w1_c01208{width:659.250000px;}
.w0_c01208{width:659.325000px;}
.x0_c01208{left:0.000000px;}
.x5_c01208{left:35.700000px;}
.x2_c01208{left:49.200000px;}
.x1_c01208{left:50.250000px;}
.x3_c01208{left:51.300000px;}
.x6_c01208{left:52.650000px;}
.x7_c01208{left:54.000000px;}
.x8_c01208{left:55.050000px;}
.x9_c01208{left:56.700000px;}
.xa_c01208{left:58.950000px;}
.xc_c01208{left:61.050000px;}
.xb_c01208{left:65.400000px;}
.x4_c01208{left:76.950000px;}
.xe_c01208{left:281.476730px;}
.xd_c01208{left:406.650000px;}
@media print{
.v0_c01208{vertical-align:0.000000pt;}
.ls3_c01208{letter-spacing:-13.333333pt;}
.ls2_c01208{letter-spacing:0.000000pt;}
.ls1_c01208{letter-spacing:5.333333pt;}
.ls0_c01208{letter-spacing:23.066667pt;}
.ws3_c01208{word-spacing:-49.866667pt;}
.ws1_c01208{word-spacing:-17.621333pt;}
.ws2_c01208{word-spacing:-12.666667pt;}
.ws0_c01208{word-spacing:-1.469333pt;}
.ws4_c01208{word-spacing:0.000000pt;}
._13_c01208{margin-left:-7.650667pt;}
._1e_c01208{margin-left:-6.536000pt;}
._17_c01208{margin-left:-5.186667pt;}
._14_c01208{margin-left:-3.850667pt;}
._11_c01208{margin-left:-2.229333pt;}
._12_c01208{margin-left:-1.216000pt;}
._19_c01208{width:1.013333pt;}
._7_c01208{width:1.976000pt;}
._3_c01208{width:3.293333pt;}
._e_c01208{width:4.661333pt;}
._2_c01208{width:5.877333pt;}
._10_c01208{width:6.992000pt;}
._4_c01208{width:7.954667pt;}
._6_c01208{width:9.272000pt;}
._5_c01208{width:10.285333pt;}
._0_c01208{width:11.197333pt;}
._1_c01208{width:13.680000pt;}
._9_c01208{width:14.946667pt;}
._a_c01208{width:16.416000pt;}
._8_c01208{width:17.733333pt;}
._15_c01208{width:18.898667pt;}
._d_c01208{width:19.962667pt;}
._f_c01208{width:21.128000pt;}
._c_c01208{width:22.445333pt;}
._18_c01208{width:23.408000pt;}
._b_c01208{width:25.130667pt;}
._1c_c01208{width:28.373333pt;}
._1d_c01208{width:30.525333pt;}
._1a_c01208{width:32.978667pt;}
._1b_c01208{width:38.304000pt;}
._1f_c01208{width:154.677333pt;}
._16_c01208{width:207.346667pt;}
.fs6_c01208{font-size:42.666667pt;}
.fs4_c01208{font-size:48.000000pt;}
.fs0_c01208{font-size:50.666667pt;}
.fs3_c01208{font-size:61.333333pt;}
.fs1_c01208{font-size:66.666667pt;}
.fs2_c01208{font-size:74.666667pt;}
.fs5_c01208{font-size:90.666667pt;}
.y0_c01208{bottom:0.000000pt;}
.y25_c01208{bottom:2.760000pt;}
.y24_c01208{bottom:6.425206pt;}
.y23_c01208{bottom:53.360000pt;}
.y22_c01208{bottom:73.893333pt;}
.y21_c01208{bottom:96.026667pt;}
.y20_c01208{bottom:117.093333pt;}
.y1f_c01208{bottom:138.560000pt;}
.y1e_c01208{bottom:160.293333pt;}
.y1d_c01208{bottom:180.960000pt;}
.y1c_c01208{bottom:202.293333pt;}
.y1b_c01208{bottom:223.493333pt;}
.y1a_c01208{bottom:244.826667pt;}
.y19_c01208{bottom:265.893333pt;}
.y18_c01208{bottom:287.493333pt;}
.y17_c01208{bottom:308.160000pt;}
.y16_c01208{bottom:329.493333pt;}
.y15_c01208{bottom:350.426667pt;}
.y14_c01208{bottom:371.493333pt;}
.y13_c01208{bottom:392.960000pt;}
.y12_c01208{bottom:413.360000pt;}
.y11_c01208{bottom:433.893333pt;}
.y10_c01208{bottom:454.826667pt;}
.yf_c01208{bottom:475.760000pt;}
.ye_c01208{bottom:496.293333pt;}
.yd_c01208{bottom:517.226667pt;}
.yc_c01208{bottom:537.893333pt;}
.yb_c01208{bottom:558.693333pt;}
.ya_c01208{bottom:580.160000pt;}
.y9_c01208{bottom:600.960000pt;}
.y8_c01208{bottom:622.160000pt;}
.y7_c01208{bottom:643.226667pt;}
.y6_c01208{bottom:664.293333pt;}
.y5_c01208{bottom:685.760000pt;}
.y4_c01208{bottom:706.560000pt;}
.y3_c01208{bottom:727.493333pt;}
.y2_c01208{bottom:748.293333pt;}
.y1_c01208{bottom:769.493333pt;}
.h6_c01208{height:11.733399pt;}
.h7_c01208{height:38.937500pt;}
.h1_c01208{height:51.062500pt;}
.h4_c01208{height:64.277333pt;}
.h2_c01208{height:72.266667pt;}
.h3_c01208{height:73.281250pt;}
.h5_c01208{height:93.191046pt;}
.h0_c01208{height:860.666667pt;}
.w2_c01208{width:93.222667pt;}
.w1_c01208{width:586.000000pt;}
.w0_c01208{width:586.066667pt;}
.x0_c01208{left:0.000000pt;}
.x5_c01208{left:31.733333pt;}
.x2_c01208{left:43.733333pt;}
.x1_c01208{left:44.666667pt;}
.x3_c01208{left:45.600000pt;}
.x6_c01208{left:46.800000pt;}
.x7_c01208{left:48.000000pt;}
.x8_c01208{left:48.933333pt;}
.x9_c01208{left:50.400000pt;}
.xa_c01208{left:52.400000pt;}
.xc_c01208{left:54.266667pt;}
.xb_c01208{left:58.133333pt;}
.x4_c01208{left:68.400000pt;}
.xe_c01208{left:250.201538pt;}
.xd_c01208{left:361.466667pt;}
}





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

.ir_c01209:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01209{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01209;src:url('chunks/assets/font_350d995fefcf71872e838dee.woff2')format("woff");}.ff1_c01209{font-family:ff1_c01209;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01209;src:url('chunks/assets/font_5f6409622cfc78985cb8addb.woff2')format("woff");}.ff2_c01209{font-family:ff2_c01209;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01209;src:url('chunks/assets/font_f88d9932103f75fb76eb6323.woff2')format("woff");}.ff3_c01209{font-family:ff3_c01209;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01209;src:url('chunks/assets/font_2f82e7a7e2c7286f25d8daac.woff2')format("woff");}.ff4_c01209{font-family:ff4_c01209;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01209;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c01209{font-family:ff5_c01209;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01209{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01209{vertical-align:0.000000px;}
.v1_c01209{vertical-align:174.000000px;}
.ls1_c01209{letter-spacing:0.000000px;}
.ls0_c01209{letter-spacing:235.350000px;}
.sc__c01209{text-shadow:none;}
.sc0_c01209{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01209{-webkit-text-stroke:0px transparent;}
.sc0_c01209{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01209{word-spacing:-71.250000px;}
.ws7_c01209{word-spacing:-3.021000px;}
.ws5_c01209{word-spacing:-2.850000px;}
.ws2_c01209{word-spacing:-2.265000px;}
.ws4_c01209{word-spacing:-2.166000px;}
.ws3_c01209{word-spacing:-1.995000px;}
.wsa_c01209{word-spacing:0.000000px;}
.ws6_c01209{word-spacing:0.456000px;}
.ws8_c01209{word-spacing:2.565000px;}
.ws0_c01209{word-spacing:4.047000px;}
.ws9_c01209{word-spacing:7.695000px;}
._23_c01209{margin-left:-17.640000px;}
._34_c01209{margin-left:-15.216000px;}
._33_c01209{margin-left:-11.274000px;}
._11_c01209{margin-left:-8.664000px;}
._d_c01209{margin-left:-7.044000px;}
._21_c01209{margin-left:-5.985000px;}
._26_c01209{margin-left:-4.860000px;}
._a_c01209{margin-left:-3.420000px;}
._14_c01209{margin-left:-2.223000px;}
._25_c01209{margin-left:-1.011000px;}
._b_c01209{width:1.083000px;}
._10_c01209{width:2.451000px;}
._4_c01209{width:3.534000px;}
._6_c01209{width:5.016000px;}
._13_c01209{width:6.042000px;}
._5_c01209{width:7.068000px;}
._c_c01209{width:8.493000px;}
._0_c01209{width:10.260000px;}
._9_c01209{width:11.628000px;}
._8_c01209{width:12.939000px;}
._29_c01209{width:14.022000px;}
._2_c01209{width:15.219000px;}
._7_c01209{width:16.986000px;}
._e_c01209{width:18.240000px;}
._27_c01209{width:19.380000px;}
._f_c01209{width:20.406000px;}
._1_c01209{width:22.173000px;}
._18_c01209{width:23.484000px;}
._2b_c01209{width:24.624000px;}
._12_c01209{width:25.650000px;}
._16_c01209{width:27.246000px;}
._20_c01209{width:28.386000px;}
._1e_c01209{width:30.300000px;}
._2e_c01209{width:33.711000px;}
._2a_c01209{width:39.687000px;}
._3_c01209{width:40.944000px;}
._1b_c01209{width:42.180000px;}
._28_c01209{width:43.455000px;}
._19_c01209{width:47.001000px;}
._2d_c01209{width:48.495000px;}
._1a_c01209{width:50.502000px;}
._1c_c01209{width:69.477000px;}
._2f_c01209{width:74.235000px;}
._31_c01209{width:125.262000px;}
._32_c01209{width:138.429000px;}
._2c_c01209{width:150.081000px;}
._15_c01209{width:162.735000px;}
._30_c01209{width:183.747000px;}
._17_c01209{width:198.417000px;}
._1f_c01209{width:238.431000px;}
._1d_c01209{width:306.261000px;}
._22_c01209{width:348.783000px;}
._24_c01209{width:673.200000px;}
.fc2_c01209{color:transparent;}
.fc1_c01209{color:rgb(128,128,128);}
.fc0_c01209{color:rgb(0,0,0);}
.fs5_c01209{font-size:48.000000px;}
.fs0_c01209{font-size:57.000000px;}
.fs4_c01209{font-size:66.000000px;}
.fs2_c01209{font-size:72.000000px;}
.fs1_c01209{font-size:93.000000px;}
.fs3_c01209{font-size:285.000000px;}
.y0_c01209{bottom:0.000000px;}
.y24_c01209{bottom:3.105000px;}
.y23_c01209{bottom:7.228355px;}
.y22_c01209{bottom:47.835000px;}
.y21_c01209{bottom:69.885000px;}
.y20_c01209{bottom:96.435000px;}
.y1f_c01209{bottom:119.835000px;}
.y1e_c01209{bottom:144.435000px;}
.y1d_c01209{bottom:169.635000px;}
.y1c_c01209{bottom:192.735000px;}
.y1b_c01209{bottom:216.885000px;}
.y1a_c01209{bottom:240.585000px;}
.y19_c01209{bottom:264.885000px;}
.y18_c01209{bottom:289.185000px;}
.y17_c01209{bottom:312.885000px;}
.y16_c01209{bottom:336.735000px;}
.y15_c01209{bottom:361.035000px;}
.y14_c01209{bottom:385.635000px;}
.y13_c01209{bottom:409.035000px;}
.y12_c01209{bottom:432.885000px;}
.y10_c01209{bottom:437.085000px;}
.y11_c01209{bottom:456.885000px;}
.yf_c01209{bottom:503.235000px;}
.ye_c01209{bottom:549.735000px;}
.yd_c01209{bottom:574.335000px;}
.yc_c01209{bottom:598.635000px;}
.yb_c01209{bottom:622.635000px;}
.ya_c01209{bottom:646.335000px;}
.y9_c01209{bottom:673.185000px;}
.y8_c01209{bottom:696.135000px;}
.y7_c01209{bottom:718.185000px;}
.y6_c01209{bottom:742.185000px;}
.y5_c01209{bottom:765.735000px;}
.y4_c01209{bottom:792.135000px;}
.y3_c01209{bottom:814.035000px;}
.y2_c01209{bottom:838.335000px;}
.y1_c01209{bottom:864.285000px;}
.h8_c01209{height:13.200074px;}
.h9_c01209{height:43.804688px;}
.h7_c01209{height:55.914551px;}
.h3_c01209{height:57.445312px;}
.h6_c01209{height:66.515625px;}
.h4_c01209{height:72.562500px;}
.h2_c01209{height:91.274414px;}
.h5_c01209{height:279.711914px;}
.h1_c01209{height:975.000000px;}
.h0_c01209{height:975.225000px;}
.w2_c01209{width:104.875500px;}
.w0_c01209{width:659.850000px;}
.w1_c01209{width:660.000000px;}
.x0_c01209{left:0.000000px;}
.xc_c01209{left:18.600000px;}
.x9_c01209{left:20.250000px;}
.xa_c01209{left:22.200000px;}
.x5_c01209{left:23.250000px;}
.xe_c01209{left:24.300000px;}
.x1_c01209{left:26.250000px;}
.x3_c01209{left:63.150000px;}
.x4_c01209{left:77.550000px;}
.xd_c01209{left:114.750000px;}
.x8_c01209{left:115.800000px;}
.x2_c01209{left:119.250000px;}
.x6_c01209{left:121.500000px;}
.x7_c01209{left:123.150000px;}
.xb_c01209{left:154.800000px;}
.x10_c01209{left:281.739258px;}
.xf_c01209{left:573.000000px;}
@media print{
.v0_c01209{vertical-align:0.000000pt;}
.v1_c01209{vertical-align:154.666667pt;}
.ls1_c01209{letter-spacing:0.000000pt;}
.ls0_c01209{letter-spacing:209.200000pt;}
.ws1_c01209{word-spacing:-63.333333pt;}
.ws7_c01209{word-spacing:-2.685333pt;}
.ws5_c01209{word-spacing:-2.533333pt;}
.ws2_c01209{word-spacing:-2.013333pt;}
.ws4_c01209{word-spacing:-1.925333pt;}
.ws3_c01209{word-spacing:-1.773333pt;}
.wsa_c01209{word-spacing:0.000000pt;}
.ws6_c01209{word-spacing:0.405333pt;}
.ws8_c01209{word-spacing:2.280000pt;}
.ws0_c01209{word-spacing:3.597333pt;}
.ws9_c01209{word-spacing:6.840000pt;}
._23_c01209{margin-left:-15.680000pt;}
._34_c01209{margin-left:-13.525333pt;}
._33_c01209{margin-left:-10.021333pt;}
._11_c01209{margin-left:-7.701333pt;}
._d_c01209{margin-left:-6.261333pt;}
._21_c01209{margin-left:-5.320000pt;}
._26_c01209{margin-left:-4.320000pt;}
._a_c01209{margin-left:-3.040000pt;}
._14_c01209{margin-left:-1.976000pt;}
._25_c01209{margin-left:-0.898667pt;}
._b_c01209{width:0.962667pt;}
._10_c01209{width:2.178667pt;}
._4_c01209{width:3.141333pt;}
._6_c01209{width:4.458667pt;}
._13_c01209{width:5.370667pt;}
._5_c01209{width:6.282667pt;}
._c_c01209{width:7.549333pt;}
._0_c01209{width:9.120000pt;}
._9_c01209{width:10.336000pt;}
._8_c01209{width:11.501333pt;}
._29_c01209{width:12.464000pt;}
._2_c01209{width:13.528000pt;}
._7_c01209{width:15.098667pt;}
._e_c01209{width:16.213333pt;}
._27_c01209{width:17.226667pt;}
._f_c01209{width:18.138667pt;}
._1_c01209{width:19.709333pt;}
._18_c01209{width:20.874667pt;}
._2b_c01209{width:21.888000pt;}
._12_c01209{width:22.800000pt;}
._16_c01209{width:24.218667pt;}
._20_c01209{width:25.232000pt;}
._1e_c01209{width:26.933333pt;}
._2e_c01209{width:29.965333pt;}
._2a_c01209{width:35.277333pt;}
._3_c01209{width:36.394667pt;}
._1b_c01209{width:37.493333pt;}
._28_c01209{width:38.626667pt;}
._19_c01209{width:41.778667pt;}
._2d_c01209{width:43.106667pt;}
._1a_c01209{width:44.890667pt;}
._1c_c01209{width:61.757333pt;}
._2f_c01209{width:65.986667pt;}
._31_c01209{width:111.344000pt;}
._32_c01209{width:123.048000pt;}
._2c_c01209{width:133.405333pt;}
._15_c01209{width:144.653333pt;}
._30_c01209{width:163.330667pt;}
._17_c01209{width:176.370667pt;}
._1f_c01209{width:211.938667pt;}
._1d_c01209{width:272.232000pt;}
._22_c01209{width:310.029333pt;}
._24_c01209{width:598.400000pt;}
.fs5_c01209{font-size:42.666667pt;}
.fs0_c01209{font-size:50.666667pt;}
.fs4_c01209{font-size:58.666667pt;}
.fs2_c01209{font-size:64.000000pt;}
.fs1_c01209{font-size:82.666667pt;}
.fs3_c01209{font-size:253.333333pt;}
.y0_c01209{bottom:0.000000pt;}
.y24_c01209{bottom:2.760000pt;}
.y23_c01209{bottom:6.425204pt;}
.y22_c01209{bottom:42.520000pt;}
.y21_c01209{bottom:62.120000pt;}
.y20_c01209{bottom:85.720000pt;}
.y1f_c01209{bottom:106.520000pt;}
.y1e_c01209{bottom:128.386667pt;}
.y1d_c01209{bottom:150.786667pt;}
.y1c_c01209{bottom:171.320000pt;}
.y1b_c01209{bottom:192.786667pt;}
.y1a_c01209{bottom:213.853333pt;}
.y19_c01209{bottom:235.453333pt;}
.y18_c01209{bottom:257.053333pt;}
.y17_c01209{bottom:278.120000pt;}
.y16_c01209{bottom:299.320000pt;}
.y15_c01209{bottom:320.920000pt;}
.y14_c01209{bottom:342.786667pt;}
.y13_c01209{bottom:363.586667pt;}
.y12_c01209{bottom:384.786667pt;}
.y10_c01209{bottom:388.520000pt;}
.y11_c01209{bottom:406.120000pt;}
.yf_c01209{bottom:447.320000pt;}
.ye_c01209{bottom:488.653333pt;}
.yd_c01209{bottom:510.520000pt;}
.yc_c01209{bottom:532.120000pt;}
.yb_c01209{bottom:553.453333pt;}
.ya_c01209{bottom:574.520000pt;}
.y9_c01209{bottom:598.386667pt;}
.y8_c01209{bottom:618.786667pt;}
.y7_c01209{bottom:638.386667pt;}
.y6_c01209{bottom:659.720000pt;}
.y5_c01209{bottom:680.653333pt;}
.y4_c01209{bottom:704.120000pt;}
.y3_c01209{bottom:723.586667pt;}
.y2_c01209{bottom:745.186667pt;}
.y1_c01209{bottom:768.253333pt;}
.h8_c01209{height:11.733399pt;}
.h9_c01209{height:38.937500pt;}
.h7_c01209{height:49.701823pt;}
.h3_c01209{height:51.062500pt;}
.h6_c01209{height:59.125000pt;}
.h4_c01209{height:64.500000pt;}
.h2_c01209{height:81.132812pt;}
.h5_c01209{height:248.632812pt;}
.h1_c01209{height:866.666667pt;}
.h0_c01209{height:866.866667pt;}
.w2_c01209{width:93.222667pt;}
.w0_c01209{width:586.533333pt;}
.w1_c01209{width:586.666667pt;}
.x0_c01209{left:0.000000pt;}
.xc_c01209{left:16.533333pt;}
.x9_c01209{left:18.000000pt;}
.xa_c01209{left:19.733333pt;}
.x5_c01209{left:20.666667pt;}
.xe_c01209{left:21.600000pt;}
.x1_c01209{left:23.333333pt;}
.x3_c01209{left:56.133333pt;}
.x4_c01209{left:68.933333pt;}
.xd_c01209{left:102.000000pt;}
.x8_c01209{left:102.933333pt;}
.x2_c01209{left:106.000000pt;}
.x6_c01209{left:108.000000pt;}
.x7_c01209{left:109.466667pt;}
.xb_c01209{left:137.600000pt;}
.x10_c01209{left:250.434896pt;}
.xf_c01209{left:509.333333pt;}
}





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

.ir_c01210:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01210{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01210;src:url('chunks/assets/font_22d67989f28e0d38f677f621.woff2')format("woff");}.ff1_c01210{font-family:ff1_c01210;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01210;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff2_c01210{font-family:ff2_c01210;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01210;src:url('chunks/assets/font_2870800045509fc095022c96.woff2')format("woff");}.ff3_c01210{font-family:ff3_c01210;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01210;src:url('chunks/assets/font_b02af7adb90a6cdd80345831.woff2')format("woff");}.ff4_c01210{font-family:ff4_c01210;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01210;src:url('chunks/assets/font_24150e5e482b994c05c40c01.woff2')format("woff");}.ff5_c01210{font-family:ff5_c01210;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01210;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c01210{font-family:ff6_c01210;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01210{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01210{vertical-align:0.000000px;}
.ls4_c01210{letter-spacing:0.000000px;}
.ls2_c01210{letter-spacing:2.619000px;}
.ls1_c01210{letter-spacing:3.819000px;}
.ls3_c01210{letter-spacing:10.692000px;}
.ls0_c01210{letter-spacing:35.202000px;}
.sc__c01210{text-shadow:none;}
.sc0_c01210{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01210{-webkit-text-stroke:0px transparent;}
.sc0_c01210{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01210{word-spacing:-13.737000px;}
.ws1_c01210{word-spacing:0.000000px;}
._10_c01210{margin-left:-5.703000px;}
._13_c01210{margin-left:-1.539000px;}
._e_c01210{width:1.482000px;}
._9_c01210{width:2.508000px;}
._5_c01210{width:3.819000px;}
._1_c01210{width:5.472000px;}
._3_c01210{width:7.353000px;}
._0_c01210{width:8.892000px;}
._2_c01210{width:10.602000px;}
._6_c01210{width:11.799000px;}
._4_c01210{width:12.996000px;}
._8_c01210{width:16.074000px;}
._7_c01210{width:17.442000px;}
._c_c01210{width:19.209000px;}
._b_c01210{width:20.463000px;}
._d_c01210{width:22.515000px;}
._16_c01210{width:23.712000px;}
._f_c01210{width:24.795000px;}
._11_c01210{width:26.220000px;}
._a_c01210{width:28.101000px;}
._18_c01210{width:29.925000px;}
._14_c01210{width:40.413000px;}
._17_c01210{width:71.592000px;}
._19_c01210{width:242.022000px;}
._12_c01210{width:273.018000px;}
._15_c01210{width:306.717000px;}
.fc2_c01210{color:transparent;}
.fc1_c01210{color:rgb(128,128,128);}
.fc0_c01210{color:rgb(0,0,0);}
.fs2_c01210{font-size:48.000000px;}
.fs0_c01210{font-size:57.000000px;}
.fs1_c01210{font-size:78.000000px;}
.y0_c01210{bottom:0.000000px;}
.y25_c01210{bottom:3.105000px;}
.y24_c01210{bottom:7.228369px;}
.y23_c01210{bottom:78.570000px;}
.y22_c01210{bottom:102.270000px;}
.y21_c01210{bottom:127.170000px;}
.y20_c01210{bottom:151.770000px;}
.y1f_c01210{bottom:176.070000px;}
.y1e_c01210{bottom:200.070000px;}
.y1d_c01210{bottom:224.370000px;}
.y1c_c01210{bottom:248.970000px;}
.y1b_c01210{bottom:272.970000px;}
.y1a_c01210{bottom:296.970000px;}
.y19_c01210{bottom:320.820000px;}
.y18_c01210{bottom:344.820000px;}
.y17_c01210{bottom:368.820000px;}
.y16_c01210{bottom:392.520000px;}
.y15_c01210{bottom:416.520000px;}
.y14_c01210{bottom:440.070000px;}
.y13_c01210{bottom:463.770000px;}
.y12_c01210{bottom:487.920000px;}
.y11_c01210{bottom:511.020000px;}
.y10_c01210{bottom:535.320000px;}
.yf_c01210{bottom:558.570000px;}
.ye_c01210{bottom:582.120000px;}
.yd_c01210{bottom:605.820000px;}
.yc_c01210{bottom:629.820000px;}
.yb_c01210{bottom:653.070000px;}
.ya_c01210{bottom:676.920000px;}
.y9_c01210{bottom:701.370000px;}
.y8_c01210{bottom:724.620000px;}
.y7_c01210{bottom:748.920000px;}
.y6_c01210{bottom:772.770000px;}
.y5_c01210{bottom:796.470000px;}
.y4_c01210{bottom:820.170000px;}
.y3_c01210{bottom:844.620000px;}
.y2_c01210{bottom:868.620000px;}
.y1_c01210{bottom:892.620000px;}
.h5_c01210{height:13.200073px;}
.h6_c01210{height:43.804688px;}
.h2_c01210{height:57.445312px;}
.h3_c01210{height:72.168457px;}
.h4_c01210{height:98.756836px;}
.h1_c01210{height:986.250000px;}
.h0_c01210{height:986.550000px;}
.w1_c01210{width:104.875500px;}
.w0_c01210{width:672.000000px;}
.x0_c01210{left:0.000000px;}
.x2_c01210{left:73.500000px;}
.x1_c01210{left:74.700000px;}
.x3_c01210{left:75.900000px;}
.x4_c01210{left:77.250000px;}
.x6_c01210{left:287.814240px;}
.x5_c01210{left:424.650000px;}
@media print{
.v0_c01210{vertical-align:0.000000pt;}
.ls4_c01210{letter-spacing:0.000000pt;}
.ls2_c01210{letter-spacing:2.328000pt;}
.ls1_c01210{letter-spacing:3.394667pt;}
.ls3_c01210{letter-spacing:9.504000pt;}
.ls0_c01210{letter-spacing:31.290667pt;}
.ws0_c01210{word-spacing:-12.210667pt;}
.ws1_c01210{word-spacing:0.000000pt;}
._10_c01210{margin-left:-5.069333pt;}
._13_c01210{margin-left:-1.368000pt;}
._e_c01210{width:1.317333pt;}
._9_c01210{width:2.229333pt;}
._5_c01210{width:3.394667pt;}
._1_c01210{width:4.864000pt;}
._3_c01210{width:6.536000pt;}
._0_c01210{width:7.904000pt;}
._2_c01210{width:9.424000pt;}
._6_c01210{width:10.488000pt;}
._4_c01210{width:11.552000pt;}
._8_c01210{width:14.288000pt;}
._7_c01210{width:15.504000pt;}
._c_c01210{width:17.074667pt;}
._b_c01210{width:18.189333pt;}
._d_c01210{width:20.013333pt;}
._16_c01210{width:21.077333pt;}
._f_c01210{width:22.040000pt;}
._11_c01210{width:23.306667pt;}
._a_c01210{width:24.978667pt;}
._18_c01210{width:26.600000pt;}
._14_c01210{width:35.922667pt;}
._17_c01210{width:63.637333pt;}
._19_c01210{width:215.130667pt;}
._12_c01210{width:242.682667pt;}
._15_c01210{width:272.637333pt;}
.fs2_c01210{font-size:42.666667pt;}
.fs0_c01210{font-size:50.666667pt;}
.fs1_c01210{font-size:69.333333pt;}
.y0_c01210{bottom:0.000000pt;}
.y25_c01210{bottom:2.760000pt;}
.y24_c01210{bottom:6.425217pt;}
.y23_c01210{bottom:69.840000pt;}
.y22_c01210{bottom:90.906667pt;}
.y21_c01210{bottom:113.040000pt;}
.y20_c01210{bottom:134.906667pt;}
.y1f_c01210{bottom:156.506667pt;}
.y1e_c01210{bottom:177.840000pt;}
.y1d_c01210{bottom:199.440000pt;}
.y1c_c01210{bottom:221.306667pt;}
.y1b_c01210{bottom:242.640000pt;}
.y1a_c01210{bottom:263.973333pt;}
.y19_c01210{bottom:285.173333pt;}
.y18_c01210{bottom:306.506667pt;}
.y17_c01210{bottom:327.840000pt;}
.y16_c01210{bottom:348.906667pt;}
.y15_c01210{bottom:370.240000pt;}
.y14_c01210{bottom:391.173333pt;}
.y13_c01210{bottom:412.240000pt;}
.y12_c01210{bottom:433.706667pt;}
.y11_c01210{bottom:454.240000pt;}
.y10_c01210{bottom:475.840000pt;}
.yf_c01210{bottom:496.506667pt;}
.ye_c01210{bottom:517.440000pt;}
.yd_c01210{bottom:538.506667pt;}
.yc_c01210{bottom:559.840000pt;}
.yb_c01210{bottom:580.506667pt;}
.ya_c01210{bottom:601.706667pt;}
.y9_c01210{bottom:623.440000pt;}
.y8_c01210{bottom:644.106667pt;}
.y7_c01210{bottom:665.706667pt;}
.y6_c01210{bottom:686.906667pt;}
.y5_c01210{bottom:707.973333pt;}
.y4_c01210{bottom:729.040000pt;}
.y3_c01210{bottom:750.773333pt;}
.y2_c01210{bottom:772.106667pt;}
.y1_c01210{bottom:793.440000pt;}
.h5_c01210{height:11.733399pt;}
.h6_c01210{height:38.937500pt;}
.h2_c01210{height:51.062500pt;}
.h3_c01210{height:64.149740pt;}
.h4_c01210{height:87.783854pt;}
.h1_c01210{height:876.666667pt;}
.h0_c01210{height:876.933333pt;}
.w1_c01210{width:93.222667pt;}
.w0_c01210{width:597.333333pt;}
.x0_c01210{left:0.000000pt;}
.x2_c01210{left:65.333333pt;}
.x1_c01210{left:66.400000pt;}
.x3_c01210{left:67.466667pt;}
.x4_c01210{left:68.666667pt;}
.x6_c01210{left:255.834880pt;}
.x5_c01210{left:377.466667pt;}
}





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

.ir_c01211:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01211{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01211;src:url('chunks/assets/font_35d4c40abcc579a89ac09eff.woff2')format("woff");}.ff1_c01211{font-family:ff1_c01211;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01211;src:url('chunks/assets/font_2c126be03ae1d45beca58409.woff2')format("woff");}.ff2_c01211{font-family:ff2_c01211;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01211;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff3_c01211{font-family:ff3_c01211;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01211;src:url('chunks/assets/font_9941db93c6aa8f52bf49f490.woff2')format("woff");}.ff4_c01211{font-family:ff4_c01211;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01211;src:url('chunks/assets/font_66a3d6a75862d86f66388896.woff2')format("woff");}.ff5_c01211{font-family:ff5_c01211;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01211;src:url('chunks/assets/font_cea9c4315cc33bd752201408.woff2')format("woff");}.ff6_c01211{font-family:ff6_c01211;line-height:1.311035;font-style:normal;font-weight: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_c01211;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c01211{font-family:ff7_c01211;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01211{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01211{vertical-align:0.000000px;}
.ls6_c01211{letter-spacing:0.000000px;}
.ls7_c01211{letter-spacing:6.000000px;}
.ls4_c01211{letter-spacing:13.746000px;}
.ls3_c01211{letter-spacing:14.100000px;}
.ls0_c01211{letter-spacing:23.892000px;}
.ls1_c01211{letter-spacing:33.402000px;}
.ls5_c01211{letter-spacing:34.602000px;}
.ls2_c01211{letter-spacing:40.002000px;}
.sc__c01211{text-shadow:none;}
.sc0_c01211{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01211{-webkit-text-stroke:0px transparent;}
.sc0_c01211{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c01211{word-spacing:-19.200000px;}
.ws0_c01211{word-spacing:-14.250000px;}
.ws1_c01211{word-spacing:-13.737000px;}
.ws2_c01211{word-spacing:-0.228000px;}
.ws4_c01211{word-spacing:0.000000px;}
._1b_c01211{margin-left:-11.172000px;}
._24_c01211{margin-left:-7.923000px;}
._22_c01211{margin-left:-6.099000px;}
._14_c01211{margin-left:-3.543000px;}
._18_c01211{margin-left:-1.530000px;}
._c_c01211{width:1.938000px;}
._1_c01211{width:3.648000px;}
._4_c01211{width:4.959000px;}
._0_c01211{width:6.327000px;}
._6_c01211{width:7.635000px;}
._3_c01211{width:9.006000px;}
._2_c01211{width:10.404000px;}
._7_c01211{width:11.970000px;}
._a_c01211{width:13.011000px;}
._b_c01211{width:15.333000px;}
._9_c01211{width:16.365000px;}
._d_c01211{width:18.012000px;}
._8_c01211{width:19.206000px;}
._f_c01211{width:20.478000px;}
._17_c01211{width:22.464000px;}
._10_c01211{width:23.655000px;}
._11_c01211{width:25.422000px;}
._1d_c01211{width:26.571000px;}
._1a_c01211{width:27.672000px;}
._e_c01211{width:30.498000px;}
._21_c01211{width:36.624000px;}
._19_c01211{width:38.040000px;}
._12_c01211{width:39.486000px;}
._15_c01211{width:41.793000px;}
._16_c01211{width:44.109000px;}
._1f_c01211{width:51.867000px;}
._1c_c01211{width:86.868000px;}
._23_c01211{width:164.844000px;}
._13_c01211{width:244.977000px;}
._5_c01211{width:250.656000px;}
._20_c01211{width:258.099000px;}
._1e_c01211{width:297.144000px;}
._25_c01211{width:1209.426000px;}
.fc2_c01211{color:transparent;}
.fc1_c01211{color:rgb(128,128,128);}
.fc0_c01211{color:rgb(0,0,0);}
.fs4_c01211{font-size:48.000000px;}
.fs2_c01211{font-size:52.800000px;}
.fs0_c01211{font-size:57.000000px;}
.fs3_c01211{font-size:66.000000px;}
.fs1_c01211{font-size:78.000000px;}
.y0_c01211{bottom:0.000000px;}
.y25_c01211{bottom:3.105000px;}
.y24_c01211{bottom:7.228371px;}
.y23_c01211{bottom:63.465000px;}
.y22_c01211{bottom:88.515000px;}
.y21_c01211{bottom:113.115000px;}
.y20_c01211{bottom:136.665000px;}
.y1f_c01211{bottom:161.115000px;}
.y1e_c01211{bottom:185.415000px;}
.y1d_c01211{bottom:210.015000px;}
.y1c_c01211{bottom:234.315000px;}
.y1b_c01211{bottom:258.315000px;}
.y1a_c01211{bottom:282.615000px;}
.y19_c01211{bottom:306.915000px;}
.y18_c01211{bottom:331.515000px;}
.y17_c01211{bottom:356.115000px;}
.y16_c01211{bottom:379.365000px;}
.y15_c01211{bottom:403.365000px;}
.y14_c01211{bottom:427.965000px;}
.y13_c01211{bottom:451.365000px;}
.y12_c01211{bottom:475.215000px;}
.y11_c01211{bottom:498.915000px;}
.y10_c01211{bottom:522.465000px;}
.yf_c01211{bottom:546.765000px;}
.ye_c01211{bottom:570.765000px;}
.yd_c01211{bottom:594.315000px;}
.yc_c01211{bottom:618.765000px;}
.yb_c01211{bottom:642.615000px;}
.ya_c01211{bottom:666.615000px;}
.y9_c01211{bottom:690.315000px;}
.y8_c01211{bottom:714.165000px;}
.y7_c01211{bottom:737.115000px;}
.y6_c01211{bottom:762.465000px;}
.y5_c01211{bottom:784.665000px;}
.y4_c01211{bottom:809.715000px;}
.y3_c01211{bottom:834.015000px;}
.y2_c01211{bottom:858.915000px;}
.y1_c01211{bottom:880.665000px;}
.h6_c01211{height:13.200074px;}
.h7_c01211{height:43.804688px;}
.h2_c01211{height:57.445312px;}
.h5_c01211{height:66.515625px;}
.h4_c01211{height:72.168457px;}
.h3_c01211{height:98.756836px;}
.h1_c01211{height:986.250000px;}
.h0_c01211{height:986.325000px;}
.w2_c01211{width:104.875500px;}
.w0_c01211{width:667.425000px;}
.w1_c01211{width:667.500000px;}
.x0_c01211{left:0.000000px;}
.x1_c01211{left:12.450000px;}
.x5_c01211{left:16.650000px;}
.x9_c01211{left:19.350000px;}
.xa_c01211{left:21.300000px;}
.xc_c01211{left:85.350000px;}
.x2_c01211{left:108.000000px;}
.x3_c01211{left:109.050000px;}
.x6_c01211{left:110.100000px;}
.x7_c01211{left:111.150000px;}
.x8_c01211{left:113.100000px;}
.xd_c01211{left:114.150000px;}
.xb_c01211{left:115.200000px;}
.xf_c01211{left:116.850000px;}
.xe_c01211{left:117.900000px;}
.x4_c01211{left:135.750000px;}
.x10_c01211{left:139.950000px;}
.x11_c01211{left:201.450000px;}
.x12_c01211{left:285.526749px;}
@media print{
.v0_c01211{vertical-align:0.000000pt;}
.ls6_c01211{letter-spacing:0.000000pt;}
.ls7_c01211{letter-spacing:5.333333pt;}
.ls4_c01211{letter-spacing:12.218667pt;}
.ls3_c01211{letter-spacing:12.533333pt;}
.ls0_c01211{letter-spacing:21.237333pt;}
.ls1_c01211{letter-spacing:29.690667pt;}
.ls5_c01211{letter-spacing:30.757333pt;}
.ls2_c01211{letter-spacing:35.557333pt;}
.ws3_c01211{word-spacing:-17.066667pt;}
.ws0_c01211{word-spacing:-12.666667pt;}
.ws1_c01211{word-spacing:-12.210667pt;}
.ws2_c01211{word-spacing:-0.202667pt;}
.ws4_c01211{word-spacing:0.000000pt;}
._1b_c01211{margin-left:-9.930667pt;}
._24_c01211{margin-left:-7.042667pt;}
._22_c01211{margin-left:-5.421333pt;}
._14_c01211{margin-left:-3.149333pt;}
._18_c01211{margin-left:-1.360000pt;}
._c_c01211{width:1.722667pt;}
._1_c01211{width:3.242667pt;}
._4_c01211{width:4.408000pt;}
._0_c01211{width:5.624000pt;}
._6_c01211{width:6.786667pt;}
._3_c01211{width:8.005333pt;}
._2_c01211{width:9.248000pt;}
._7_c01211{width:10.640000pt;}
._a_c01211{width:11.565333pt;}
._b_c01211{width:13.629333pt;}
._9_c01211{width:14.546667pt;}
._d_c01211{width:16.010667pt;}
._8_c01211{width:17.072000pt;}
._f_c01211{width:18.202667pt;}
._17_c01211{width:19.968000pt;}
._10_c01211{width:21.026667pt;}
._11_c01211{width:22.597333pt;}
._1d_c01211{width:23.618667pt;}
._1a_c01211{width:24.597333pt;}
._e_c01211{width:27.109333pt;}
._21_c01211{width:32.554667pt;}
._19_c01211{width:33.813333pt;}
._12_c01211{width:35.098667pt;}
._15_c01211{width:37.149333pt;}
._16_c01211{width:39.208000pt;}
._1f_c01211{width:46.104000pt;}
._1c_c01211{width:77.216000pt;}
._23_c01211{width:146.528000pt;}
._13_c01211{width:217.757333pt;}
._5_c01211{width:222.805333pt;}
._20_c01211{width:229.421333pt;}
._1e_c01211{width:264.128000pt;}
._25_c01211{width:1075.045333pt;}
.fs4_c01211{font-size:42.666667pt;}
.fs2_c01211{font-size:46.933333pt;}
.fs0_c01211{font-size:50.666667pt;}
.fs3_c01211{font-size:58.666667pt;}
.fs1_c01211{font-size:69.333333pt;}
.y0_c01211{bottom:0.000000pt;}
.y25_c01211{bottom:2.760000pt;}
.y24_c01211{bottom:6.425219pt;}
.y23_c01211{bottom:56.413333pt;}
.y22_c01211{bottom:78.680000pt;}
.y21_c01211{bottom:100.546667pt;}
.y20_c01211{bottom:121.480000pt;}
.y1f_c01211{bottom:143.213333pt;}
.y1e_c01211{bottom:164.813333pt;}
.y1d_c01211{bottom:186.680000pt;}
.y1c_c01211{bottom:208.280000pt;}
.y1b_c01211{bottom:229.613333pt;}
.y1a_c01211{bottom:251.213333pt;}
.y19_c01211{bottom:272.813333pt;}
.y18_c01211{bottom:294.680000pt;}
.y17_c01211{bottom:316.546667pt;}
.y16_c01211{bottom:337.213333pt;}
.y15_c01211{bottom:358.546667pt;}
.y14_c01211{bottom:380.413333pt;}
.y13_c01211{bottom:401.213333pt;}
.y12_c01211{bottom:422.413333pt;}
.y11_c01211{bottom:443.480000pt;}
.y10_c01211{bottom:464.413333pt;}
.yf_c01211{bottom:486.013333pt;}
.ye_c01211{bottom:507.346667pt;}
.yd_c01211{bottom:528.280000pt;}
.yc_c01211{bottom:550.013333pt;}
.yb_c01211{bottom:571.213333pt;}
.ya_c01211{bottom:592.546667pt;}
.y9_c01211{bottom:613.613333pt;}
.y8_c01211{bottom:634.813333pt;}
.y7_c01211{bottom:655.213333pt;}
.y6_c01211{bottom:677.746667pt;}
.y5_c01211{bottom:697.480000pt;}
.y4_c01211{bottom:719.746667pt;}
.y3_c01211{bottom:741.346667pt;}
.y2_c01211{bottom:763.480000pt;}
.y1_c01211{bottom:782.813333pt;}
.h6_c01211{height:11.733399pt;}
.h7_c01211{height:38.937500pt;}
.h2_c01211{height:51.062500pt;}
.h5_c01211{height:59.125000pt;}
.h4_c01211{height:64.149740pt;}
.h3_c01211{height:87.783854pt;}
.h1_c01211{height:876.666667pt;}
.h0_c01211{height:876.733333pt;}
.w2_c01211{width:93.222667pt;}
.w0_c01211{width:593.266667pt;}
.w1_c01211{width:593.333333pt;}
.x0_c01211{left:0.000000pt;}
.x1_c01211{left:11.066667pt;}
.x5_c01211{left:14.800000pt;}
.x9_c01211{left:17.200000pt;}
.xa_c01211{left:18.933333pt;}
.xc_c01211{left:75.866667pt;}
.x2_c01211{left:96.000000pt;}
.x3_c01211{left:96.933333pt;}
.x6_c01211{left:97.866667pt;}
.x7_c01211{left:98.800000pt;}
.x8_c01211{left:100.533333pt;}
.xd_c01211{left:101.466667pt;}
.xb_c01211{left:102.400000pt;}
.xf_c01211{left:103.866667pt;}
.xe_c01211{left:104.800000pt;}
.x4_c01211{left:120.666667pt;}
.x10_c01211{left:124.400000pt;}
.x11_c01211{left:179.066667pt;}
.x12_c01211{left:253.801554pt;}
}





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

.ir_c01212:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01212{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01212;src:url('chunks/assets/font_512a373c464c24e1e3cc04e8.woff2')format("woff");}.ff1_c01212{font-family:ff1_c01212;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01212;src:url('chunks/assets/font_dc4182d7b9bb440acecff00e.woff2')format("woff");}.ff2_c01212{font-family:ff2_c01212;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01212;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff3_c01212{font-family:ff3_c01212;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01212;src:url('chunks/assets/font_2a61725f55d9518a8e26f0f6.woff2')format("woff");}.ff4_c01212{font-family:ff4_c01212;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01212;src:url('chunks/assets/font_c29ac43f9d81f5c6f6836fed.woff2')format("woff");}.ff5_c01212{font-family:ff5_c01212;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01212;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c01212{font-family:ff6_c01212;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01212{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01212{vertical-align:0.000000px;}
.ls1_c01212{letter-spacing:0.000000px;}
.ls0_c01212{letter-spacing:29.427000px;}
.sc__c01212{text-shadow:none;}
.sc0_c01212{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01212{-webkit-text-stroke:0px transparent;}
.sc0_c01212{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01212{word-spacing:-3.135000px;}
.ws1_c01212{word-spacing:-2.736000px;}
.ws2_c01212{word-spacing:0.000000px;}
._8_c01212{margin-left:-5.742000px;}
._7_c01212{margin-left:-4.158000px;}
._5_c01212{margin-left:-2.772000px;}
._4_c01212{margin-left:-1.188000px;}
._3_c01212{width:1.089000px;}
._2_c01212{width:2.376000px;}
._6_c01212{width:3.465000px;}
._1_c01212{width:4.950000px;}
._0_c01212{width:6.336000px;}
._c_c01212{width:8.151000px;}
._d_c01212{width:9.348000px;}
._b_c01212{width:10.716000px;}
._13_c01212{width:11.793000px;}
._a_c01212{width:13.110000px;}
._e_c01212{width:15.903000px;}
._12_c01212{width:16.929000px;}
._f_c01212{width:18.156000px;}
._1d_c01212{width:19.374000px;}
._10_c01212{width:20.418000px;}
._16_c01212{width:21.954000px;}
._18_c01212{width:23.085000px;}
._20_c01212{width:24.339000px;}
._11_c01212{width:26.049000px;}
._22_c01212{width:27.414000px;}
._14_c01212{width:29.397000px;}
._21_c01212{width:31.305000px;}
._1b_c01212{width:33.663000px;}
._1f_c01212{width:34.671000px;}
._1e_c01212{width:38.157000px;}
._17_c01212{width:39.285000px;}
._24_c01212{width:41.943000px;}
._23_c01212{width:54.489000px;}
._19_c01212{width:58.689000px;}
._15_c01212{width:152.487000px;}
._1c_c01212{width:154.284000px;}
._9_c01212{width:168.795000px;}
._1a_c01212{width:285.123000px;}
._25_c01212{width:436.077000px;}
.fc2_c01212{color:transparent;}
.fc1_c01212{color:rgb(128,128,128);}
.fc0_c01212{color:rgb(0,0,0);}
.fs3_c01212{font-size:48.000000px;}
.fs1_c01212{font-size:57.000000px;}
.fs2_c01212{font-size:78.000000px;}
.fs0_c01212{font-size:99.000000px;}
.y0_c01212{bottom:0.000000px;}
.y26_c01212{bottom:3.105000px;}
.y25_c01212{bottom:7.228369px;}
.y24_c01212{bottom:43.770000px;}
.y23_c01212{bottom:67.170000px;}
.y22_c01212{bottom:92.370000px;}
.y21_c01212{bottom:116.820000px;}
.y20_c01212{bottom:140.970000px;}
.y1f_c01212{bottom:165.420000px;}
.y1e_c01212{bottom:190.020000px;}
.y1d_c01212{bottom:213.570000px;}
.y1c_c01212{bottom:237.870000px;}
.y1b_c01212{bottom:262.620000px;}
.y1a_c01212{bottom:286.170000px;}
.y19_c01212{bottom:310.770000px;}
.y18_c01212{bottom:334.170000px;}
.y17_c01212{bottom:358.470000px;}
.y16_c01212{bottom:382.320000px;}
.y15_c01212{bottom:406.920000px;}
.y14_c01212{bottom:429.870000px;}
.y13_c01212{bottom:453.870000px;}
.y12_c01212{bottom:478.470000px;}
.y11_c01212{bottom:502.770000px;}
.y10_c01212{bottom:527.070000px;}
.yf_c01212{bottom:548.820000px;}
.ye_c01212{bottom:572.970000px;}
.yd_c01212{bottom:596.370000px;}
.yc_c01212{bottom:620.370000px;}
.yb_c01212{bottom:644.220000px;}
.ya_c01212{bottom:668.520000px;}
.y9_c01212{bottom:691.770000px;}
.y8_c01212{bottom:716.070000px;}
.y7_c01212{bottom:741.420000px;}
.y6_c01212{bottom:766.020000px;}
.y5_c01212{bottom:787.770000px;}
.y4_c01212{bottom:813.270000px;}
.y3_c01212{bottom:836.370000px;}
.y2_c01212{bottom:860.220000px;}
.y1_c01212{bottom:899.820000px;}
.h5_c01212{height:13.200073px;}
.h6_c01212{height:43.804688px;}
.h3_c01212{height:57.445312px;}
.h4_c01212{height:98.756836px;}
.h2_c01212{height:115.870605px;}
.h0_c01212{height:970.350000px;}
.h1_c01212{height:970.500000px;}
.w2_c01212{width:104.875500px;}
.w0_c01212{width:660.450000px;}
.w1_c01212{width:660.750000px;}
.x0_c01212{left:0.000000px;}
.x6_c01212{left:53.250000px;}
.x5_c01212{left:54.300000px;}
.x4_c01212{left:55.350000px;}
.x2_c01212{left:56.400000px;}
.x3_c01212{left:57.450000px;}
.x8_c01212{left:58.950000px;}
.x7_c01212{left:78.000000px;}
.x1_c01212{left:91.500000px;}
.xa_c01212{left:282.039230px;}
.x9_c01212{left:384.300000px;}
@media print{
.v0_c01212{vertical-align:0.000000pt;}
.ls1_c01212{letter-spacing:0.000000pt;}
.ls0_c01212{letter-spacing:26.157333pt;}
.ws0_c01212{word-spacing:-2.786667pt;}
.ws1_c01212{word-spacing:-2.432000pt;}
.ws2_c01212{word-spacing:0.000000pt;}
._8_c01212{margin-left:-5.104000pt;}
._7_c01212{margin-left:-3.696000pt;}
._5_c01212{margin-left:-2.464000pt;}
._4_c01212{margin-left:-1.056000pt;}
._3_c01212{width:0.968000pt;}
._2_c01212{width:2.112000pt;}
._6_c01212{width:3.080000pt;}
._1_c01212{width:4.400000pt;}
._0_c01212{width:5.632000pt;}
._c_c01212{width:7.245333pt;}
._d_c01212{width:8.309333pt;}
._b_c01212{width:9.525333pt;}
._13_c01212{width:10.482667pt;}
._a_c01212{width:11.653333pt;}
._e_c01212{width:14.136000pt;}
._12_c01212{width:15.048000pt;}
._f_c01212{width:16.138667pt;}
._1d_c01212{width:17.221333pt;}
._10_c01212{width:18.149333pt;}
._16_c01212{width:19.514667pt;}
._18_c01212{width:20.520000pt;}
._20_c01212{width:21.634667pt;}
._11_c01212{width:23.154667pt;}
._22_c01212{width:24.368000pt;}
._14_c01212{width:26.130667pt;}
._21_c01212{width:27.826667pt;}
._1b_c01212{width:29.922667pt;}
._1f_c01212{width:30.818667pt;}
._1e_c01212{width:33.917333pt;}
._17_c01212{width:34.920000pt;}
._24_c01212{width:37.282667pt;}
._23_c01212{width:48.434667pt;}
._19_c01212{width:52.168000pt;}
._15_c01212{width:135.544000pt;}
._1c_c01212{width:137.141333pt;}
._9_c01212{width:150.040000pt;}
._1a_c01212{width:253.442667pt;}
._25_c01212{width:387.624000pt;}
.fs3_c01212{font-size:42.666667pt;}
.fs1_c01212{font-size:50.666667pt;}
.fs2_c01212{font-size:69.333333pt;}
.fs0_c01212{font-size:88.000000pt;}
.y0_c01212{bottom:0.000000pt;}
.y26_c01212{bottom:2.760000pt;}
.y25_c01212{bottom:6.425217pt;}
.y24_c01212{bottom:38.906667pt;}
.y23_c01212{bottom:59.706667pt;}
.y22_c01212{bottom:82.106667pt;}
.y21_c01212{bottom:103.840000pt;}
.y20_c01212{bottom:125.306667pt;}
.y1f_c01212{bottom:147.040000pt;}
.y1e_c01212{bottom:168.906667pt;}
.y1d_c01212{bottom:189.840000pt;}
.y1c_c01212{bottom:211.440000pt;}
.y1b_c01212{bottom:233.440000pt;}
.y1a_c01212{bottom:254.373333pt;}
.y19_c01212{bottom:276.240000pt;}
.y18_c01212{bottom:297.040000pt;}
.y17_c01212{bottom:318.640000pt;}
.y16_c01212{bottom:339.840000pt;}
.y15_c01212{bottom:361.706667pt;}
.y14_c01212{bottom:382.106667pt;}
.y13_c01212{bottom:403.440000pt;}
.y12_c01212{bottom:425.306667pt;}
.y11_c01212{bottom:446.906667pt;}
.y10_c01212{bottom:468.506667pt;}
.yf_c01212{bottom:487.840000pt;}
.ye_c01212{bottom:509.306667pt;}
.yd_c01212{bottom:530.106667pt;}
.yc_c01212{bottom:551.440000pt;}
.yb_c01212{bottom:572.640000pt;}
.ya_c01212{bottom:594.240000pt;}
.y9_c01212{bottom:614.906667pt;}
.y8_c01212{bottom:636.506667pt;}
.y7_c01212{bottom:659.040000pt;}
.y6_c01212{bottom:680.906667pt;}
.y5_c01212{bottom:700.240000pt;}
.y4_c01212{bottom:722.906667pt;}
.y3_c01212{bottom:743.440000pt;}
.y2_c01212{bottom:764.640000pt;}
.y1_c01212{bottom:799.840000pt;}
.h5_c01212{height:11.733399pt;}
.h6_c01212{height:38.937500pt;}
.h3_c01212{height:51.062500pt;}
.h4_c01212{height:87.783854pt;}
.h2_c01212{height:102.996094pt;}
.h0_c01212{height:862.533333pt;}
.h1_c01212{height:862.666667pt;}
.w2_c01212{width:93.222667pt;}
.w0_c01212{width:587.066667pt;}
.w1_c01212{width:587.333333pt;}
.x0_c01212{left:0.000000pt;}
.x6_c01212{left:47.333333pt;}
.x5_c01212{left:48.266667pt;}
.x4_c01212{left:49.200000pt;}
.x2_c01212{left:50.133333pt;}
.x3_c01212{left:51.066667pt;}
.x8_c01212{left:52.400000pt;}
.x7_c01212{left:69.333333pt;}
.x1_c01212{left:81.333333pt;}
.xa_c01212{left:250.701538pt;}
.x9_c01212{left:341.600000pt;}
}





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

.ir_c01213:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01213{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01213;src:url('chunks/assets/font_e6f0ac092fe39b42808c33f3.woff2')format("woff");}.ff1_c01213{font-family:ff1_c01213;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01213;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff2_c01213{font-family:ff2_c01213;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01213;src:url('chunks/assets/font_af95e9db09f3834d4e6cfcee.woff2')format("woff");}.ff3_c01213{font-family:ff3_c01213;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01213;src:url('chunks/assets/font_2e387d71f253845ec5facd1a.woff2')format("woff");}.ff4_c01213{font-family:ff4_c01213;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01213;src:url('chunks/assets/font_73b92591d0c84eab584c858e.woff2')format("woff");}.ff5_c01213{font-family:ff5_c01213;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01213;src:url('chunks/assets/font_06c9ceba3867acc1589ec50b.woff2')format("woff");}.ff6_c01213{font-family:ff6_c01213;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01213;src:url('chunks/assets/font_14f0ca49de751c9e6a3bfd58.woff2')format("woff");}.ff7_c01213{font-family:ff7_c01213;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c01213;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff8_c01213{font-family:ff8_c01213;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01213{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01213{vertical-align:0.000000px;}
.ls3_c01213{letter-spacing:-15.000000px;}
.ls2_c01213{letter-spacing:-3.000000px;}
.ls1_c01213{letter-spacing:0.000000px;}
.ls0_c01213{letter-spacing:2.700000px;}
.sc__c01213{text-shadow:none;}
.sc0_c01213{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01213{-webkit-text-stroke:0px transparent;}
.sc0_c01213{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01213{word-spacing:-13.737000px;}
.ws2_c01213{word-spacing:-2.907000px;}
.ws3_c01213{word-spacing:0.000000px;}
.ws0_c01213{word-spacing:1.368000px;}
._14_c01213{margin-left:-25.236000px;}
._13_c01213{margin-left:-18.804000px;}
._20_c01213{margin-left:-16.155000px;}
._21_c01213{margin-left:-15.054000px;}
._22_c01213{margin-left:-13.953000px;}
._15_c01213{margin-left:-11.379000px;}
._12_c01213{margin-left:-9.117000px;}
._11_c01213{margin-left:-7.500000px;}
._10_c01213{margin-left:-5.310000px;}
._16_c01213{margin-left:-4.191000px;}
._8_c01213{margin-left:-3.021000px;}
._f_c01213{margin-left:-1.824000px;}
._3_c01213{width:1.197000px;}
._d_c01213{width:2.736000px;}
._7_c01213{width:4.047000px;}
._9_c01213{width:5.358000px;}
._2_c01213{width:6.612000px;}
._a_c01213{width:7.809000px;}
._4_c01213{width:8.892000px;}
._6_c01213{width:10.773000px;}
._1_c01213{width:12.654000px;}
._17_c01213{width:13.899000px;}
._0_c01213{width:16.017000px;}
._c_c01213{width:17.727000px;}
._e_c01213{width:18.981000px;}
._b_c01213{width:20.121000px;}
._5_c01213{width:21.717000px;}
._19_c01213{width:22.743000px;}
._18_c01213{width:24.567000px;}
._1a_c01213{width:26.049000px;}
._1d_c01213{width:28.443000px;}
._1b_c01213{width:29.811000px;}
._23_c01213{width:32.892000px;}
._24_c01213{width:35.568000px;}
._1c_c01213{width:40.605000px;}
._1f_c01213{width:203.832000px;}
._1e_c01213{width:255.531000px;}
.fc2_c01213{color:transparent;}
.fc1_c01213{color:rgb(128,128,128);}
.fc0_c01213{color:rgb(0,0,0);}
.fs7_c01213{font-size:48.000000px;}
.fs6_c01213{font-size:51.000000px;}
.fs0_c01213{font-size:57.000000px;}
.fs5_c01213{font-size:63.000000px;}
.fs4_c01213{font-size:69.000000px;}
.fs3_c01213{font-size:78.000000px;}
.fs1_c01213{font-size:90.000000px;}
.fs2_c01213{font-size:102.000000px;}
.y0_c01213{bottom:0.000000px;}
.y22_c01213{bottom:3.105000px;}
.y21_c01213{bottom:7.228371px;}
.y20_c01213{bottom:58.515000px;}
.y1f_c01213{bottom:88.515000px;}
.y1e_c01213{bottom:114.165000px;}
.y1d_c01213{bottom:139.365000px;}
.y1c_c01213{bottom:163.665000px;}
.y1b_c01213{bottom:188.715000px;}
.y1a_c01213{bottom:214.365000px;}
.y19_c01213{bottom:238.665000px;}
.y18_c01213{bottom:262.665000px;}
.y17_c01213{bottom:288.015000px;}
.y16_c01213{bottom:312.615000px;}
.y15_c01213{bottom:336.465000px;}
.y14_c01213{bottom:360.765000px;}
.y13_c01213{bottom:386.865000px;}
.y12_c01213{bottom:410.865000px;}
.y11_c01213{bottom:433.365000px;}
.y10_c01213{bottom:457.365000px;}
.yf_c01213{bottom:480.915000px;}
.ye_c01213{bottom:505.215000px;}
.yd_c01213{bottom:528.615000px;}
.yc_c01213{bottom:552.615000px;}
.yb_c01213{bottom:577.215000px;}
.ya_c01213{bottom:601.815000px;}
.y9_c01213{bottom:626.115000px;}
.y8_c01213{bottom:649.815000px;}
.y7_c01213{bottom:702.015000px;}
.y6_c01213{bottom:731.715000px;}
.y5_c01213{bottom:760.515000px;}
.y4_c01213{bottom:789.765000px;}
.y3_c01213{bottom:839.715000px;}
.y2_c01213{bottom:864.015000px;}
.y1_c01213{bottom:887.715000px;}
.hb_c01213{height:13.200074px;}
.hc_c01213{height:43.804688px;}
.ha_c01213{height:55.942383px;}
.h2_c01213{height:57.445312px;}
.h6_c01213{height:66.713379px;}
.h9_c01213{height:67.686035px;}
.h7_c01213{height:72.168457px;}
.h5_c01213{height:88.286133px;}
.h4_c01213{height:88.330078px;}
.h8_c01213{height:98.756836px;}
.h3_c01213{height:104.839927px;}
.h1_c01213{height:986.250000px;}
.h0_c01213{height:986.325000px;}
.w2_c01213{width:104.875500px;}
.w0_c01213{width:667.425000px;}
.w1_c01213{width:667.500000px;}
.x0_c01213{left:0.000000px;}
.x9_c01213{left:33.750000px;}
.xa_c01213{left:35.850000px;}
.x2_c01213{left:119.100000px;}
.x3_c01213{left:122.250000px;}
.x8_c01213{left:124.500000px;}
.xb_c01213{left:127.200000px;}
.xc_c01213{left:128.850000px;}
.xe_c01213{left:129.900000px;}
.xd_c01213{left:130.950000px;}
.xf_c01213{left:134.700000px;}
.x1_c01213{left:138.000000px;}
.x4_c01213{left:175.200000px;}
.x5_c01213{left:242.100000px;}
.x6_c01213{left:244.800000px;}
.x7_c01213{left:246.000000px;}
.x10_c01213{left:285.526749px;}
@media print{
.v0_c01213{vertical-align:0.000000pt;}
.ls3_c01213{letter-spacing:-13.333333pt;}
.ls2_c01213{letter-spacing:-2.666667pt;}
.ls1_c01213{letter-spacing:0.000000pt;}
.ls0_c01213{letter-spacing:2.400000pt;}
.ws1_c01213{word-spacing:-12.210667pt;}
.ws2_c01213{word-spacing:-2.584000pt;}
.ws3_c01213{word-spacing:0.000000pt;}
.ws0_c01213{word-spacing:1.216000pt;}
._14_c01213{margin-left:-22.432000pt;}
._13_c01213{margin-left:-16.714667pt;}
._20_c01213{margin-left:-14.360000pt;}
._21_c01213{margin-left:-13.381333pt;}
._22_c01213{margin-left:-12.402667pt;}
._15_c01213{margin-left:-10.114667pt;}
._12_c01213{margin-left:-8.104000pt;}
._11_c01213{margin-left:-6.666667pt;}
._10_c01213{margin-left:-4.720000pt;}
._16_c01213{margin-left:-3.725333pt;}
._8_c01213{margin-left:-2.685333pt;}
._f_c01213{margin-left:-1.621333pt;}
._3_c01213{width:1.064000pt;}
._d_c01213{width:2.432000pt;}
._7_c01213{width:3.597333pt;}
._9_c01213{width:4.762667pt;}
._2_c01213{width:5.877333pt;}
._a_c01213{width:6.941333pt;}
._4_c01213{width:7.904000pt;}
._6_c01213{width:9.576000pt;}
._1_c01213{width:11.248000pt;}
._17_c01213{width:12.354667pt;}
._0_c01213{width:14.237333pt;}
._c_c01213{width:15.757333pt;}
._e_c01213{width:16.872000pt;}
._b_c01213{width:17.885333pt;}
._5_c01213{width:19.304000pt;}
._19_c01213{width:20.216000pt;}
._18_c01213{width:21.837333pt;}
._1a_c01213{width:23.154667pt;}
._1d_c01213{width:25.282667pt;}
._1b_c01213{width:26.498667pt;}
._23_c01213{width:29.237333pt;}
._24_c01213{width:31.616000pt;}
._1c_c01213{width:36.093333pt;}
._1f_c01213{width:181.184000pt;}
._1e_c01213{width:227.138667pt;}
.fs7_c01213{font-size:42.666667pt;}
.fs6_c01213{font-size:45.333333pt;}
.fs0_c01213{font-size:50.666667pt;}
.fs5_c01213{font-size:56.000000pt;}
.fs4_c01213{font-size:61.333333pt;}
.fs3_c01213{font-size:69.333333pt;}
.fs1_c01213{font-size:80.000000pt;}
.fs2_c01213{font-size:90.666667pt;}
.y0_c01213{bottom:0.000000pt;}
.y22_c01213{bottom:2.760000pt;}
.y21_c01213{bottom:6.425219pt;}
.y20_c01213{bottom:52.013333pt;}
.y1f_c01213{bottom:78.680000pt;}
.y1e_c01213{bottom:101.480000pt;}
.y1d_c01213{bottom:123.880000pt;}
.y1c_c01213{bottom:145.480000pt;}
.y1b_c01213{bottom:167.746667pt;}
.y1a_c01213{bottom:190.546667pt;}
.y19_c01213{bottom:212.146667pt;}
.y18_c01213{bottom:233.480000pt;}
.y17_c01213{bottom:256.013333pt;}
.y16_c01213{bottom:277.880000pt;}
.y15_c01213{bottom:299.080000pt;}
.y14_c01213{bottom:320.680000pt;}
.y13_c01213{bottom:343.880000pt;}
.y12_c01213{bottom:365.213333pt;}
.y11_c01213{bottom:385.213333pt;}
.y10_c01213{bottom:406.546667pt;}
.yf_c01213{bottom:427.480000pt;}
.ye_c01213{bottom:449.080000pt;}
.yd_c01213{bottom:469.880000pt;}
.yc_c01213{bottom:491.213333pt;}
.yb_c01213{bottom:513.080000pt;}
.ya_c01213{bottom:534.946667pt;}
.y9_c01213{bottom:556.546667pt;}
.y8_c01213{bottom:577.613333pt;}
.y7_c01213{bottom:624.013333pt;}
.y6_c01213{bottom:650.413333pt;}
.y5_c01213{bottom:676.013333pt;}
.y4_c01213{bottom:702.013333pt;}
.y3_c01213{bottom:746.413333pt;}
.y2_c01213{bottom:768.013333pt;}
.y1_c01213{bottom:789.080000pt;}
.hb_c01213{height:11.733399pt;}
.hc_c01213{height:38.937500pt;}
.ha_c01213{height:49.726562pt;}
.h2_c01213{height:51.062500pt;}
.h6_c01213{height:59.300781pt;}
.h9_c01213{height:60.165365pt;}
.h7_c01213{height:64.149740pt;}
.h5_c01213{height:78.476562pt;}
.h4_c01213{height:78.515625pt;}
.h8_c01213{height:87.783854pt;}
.h3_c01213{height:93.191046pt;}
.h1_c01213{height:876.666667pt;}
.h0_c01213{height:876.733333pt;}
.w2_c01213{width:93.222667pt;}
.w0_c01213{width:593.266667pt;}
.w1_c01213{width:593.333333pt;}
.x0_c01213{left:0.000000pt;}
.x9_c01213{left:30.000000pt;}
.xa_c01213{left:31.866667pt;}
.x2_c01213{left:105.866667pt;}
.x3_c01213{left:108.666667pt;}
.x8_c01213{left:110.666667pt;}
.xb_c01213{left:113.066667pt;}
.xc_c01213{left:114.533333pt;}
.xe_c01213{left:115.466667pt;}
.xd_c01213{left:116.400000pt;}
.xf_c01213{left:119.733333pt;}
.x1_c01213{left:122.666667pt;}
.x4_c01213{left:155.733333pt;}
.x5_c01213{left:215.200000pt;}
.x6_c01213{left:217.600000pt;}
.x7_c01213{left:218.666667pt;}
.x10_c01213{left:253.801554pt;}
}





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

.ir_c01214:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01214{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01214;src:url('chunks/assets/font_09e500abbac40428750de63e.woff2')format("woff");}.ff1_c01214{font-family:ff1_c01214;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01214;src:url('chunks/assets/font_080f9029d144939d990106a6.woff2')format("woff");}.ff2_c01214{font-family:ff2_c01214;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01214;src:url('chunks/assets/font_9858dbd61467428e26499b84.woff2')format("woff");}.ff3_c01214{font-family:ff3_c01214;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01214;src:url('chunks/assets/font_ce999d92d23e32bb14e4d06a.woff2')format("woff");}.ff4_c01214{font-family:ff4_c01214;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01214;src:url('chunks/assets/font_1520fc375cf3c5022b0b8f15.woff2')format("woff");}.ff5_c01214{font-family:ff5_c01214;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01214;src:url('chunks/assets/font_6abdc0d147682002bc02880f.woff2')format("woff");}.ff6_c01214{font-family:ff6_c01214;line-height:1.284180;font-style:normal;font-weight: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_c01214;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c01214{font-family:ff7_c01214;line-height:1.219238;font-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_c01214{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m0_c01214{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01214{vertical-align:0.000000px;}
.v1_c01214{vertical-align:163.200000px;}
.ls4_c01214{letter-spacing:-9.000000px;}
.ls2_c01214{letter-spacing:0.000000px;}
.ls3_c01214{letter-spacing:3.000000px;}
.ls1_c01214{letter-spacing:16.554000px;}
.ls0_c01214{letter-spacing:46.146000px;}
.sc__c01214{text-shadow:none;}
.sc0_c01214{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01214{-webkit-text-stroke:0px transparent;}
.sc0_c01214{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01214{word-spacing:-76.095000px;}
.ws3_c01214{word-spacing:-27.000000px;}
.ws1_c01214{word-spacing:-3.855000px;}
.ws2_c01214{word-spacing:-2.451000px;}
.ws4_c01214{word-spacing:0.000000px;}
._9_c01214{margin-left:-22.605000px;}
._8_c01214{margin-left:-13.485000px;}
._2_c01214{margin-left:-12.276000px;}
._17_c01214{margin-left:-9.858000px;}
._22_c01214{margin-left:-7.887000px;}
._1b_c01214{margin-left:-5.676000px;}
._20_c01214{margin-left:-4.674000px;}
._3_c01214{margin-left:-2.970000px;}
._4_c01214{margin-left:-1.386000px;}
._5_c01214{width:1.140000px;}
._6_c01214{width:2.202000px;}
._1_c01214{width:3.366000px;}
._0_c01214{width:4.851000px;}
._11_c01214{width:6.012000px;}
._7_c01214{width:7.836000px;}
._e_c01214{width:9.462000px;}
._12_c01214{width:10.527000px;}
._c_c01214{width:12.483000px;}
._10_c01214{width:15.960000px;}
._14_c01214{width:17.691000px;}
._a_c01214{width:19.437000px;}
._13_c01214{width:20.718000px;}
._b_c01214{width:22.431000px;}
._d_c01214{width:23.484000px;}
._f_c01214{width:24.762000px;}
._15_c01214{width:26.043000px;}
._23_c01214{width:27.159000px;}
._1d_c01214{width:28.194000px;}
._1f_c01214{width:31.215000px;}
._21_c01214{width:33.231000px;}
._1e_c01214{width:35.286000px;}
._1a_c01214{width:38.175000px;}
._16_c01214{width:40.623000px;}
._18_c01214{width:157.377000px;}
._1c_c01214{width:179.664000px;}
._19_c01214{width:300.495000px;}
.fc2_c01214{color:transparent;}
.fc1_c01214{color:rgb(128,128,128);}
.fc0_c01214{color:rgb(0,0,0);}
.fs6_c01214{font-size:48.000000px;}
.fs1_c01214{font-size:57.000000px;}
.fs3_c01214{font-size:78.000000px;}
.fs0_c01214{font-size:99.000000px;}
.fs5_c01214{font-size:108.000000px;}
.fs4_c01214{font-size:132.000000px;}
.fs2_c01214{font-size:285.000000px;}
.y0_c01214{bottom:0.000000px;}
.y25_c01214{bottom:3.105000px;}
.y24_c01214{bottom:7.228371px;}
.y23_c01214{bottom:55.815000px;}
.y22_c01214{bottom:79.065000px;}
.y21_c01214{bottom:104.265000px;}
.y20_c01214{bottom:128.265000px;}
.y1f_c01214{bottom:152.565000px;}
.y1e_c01214{bottom:176.865000px;}
.y1d_c01214{bottom:200.865000px;}
.y1c_c01214{bottom:224.865000px;}
.y1b_c01214{bottom:249.465000px;}
.y1a_c01214{bottom:272.715000px;}
.y19_c01214{bottom:297.015000px;}
.y18_c01214{bottom:321.015000px;}
.y17_c01214{bottom:345.015000px;}
.y16_c01214{bottom:369.015000px;}
.y15_c01214{bottom:393.165000px;}
.y14_c01214{bottom:416.865000px;}
.y13_c01214{bottom:439.815000px;}
.y12_c01214{bottom:464.715000px;}
.y11_c01214{bottom:489.165000px;}
.y10_c01214{bottom:513.465000px;}
.yf_c01214{bottom:536.715000px;}
.ye_c01214{bottom:560.715000px;}
.yd_c01214{bottom:584.565000px;}
.yc_c01214{bottom:608.565000px;}
.yb_c01214{bottom:632.865000px;}
.ya_c01214{bottom:657.165000px;}
.y9_c01214{bottom:680.865000px;}
.y8_c01214{bottom:704.715000px;}
.y7_c01214{bottom:729.765000px;}
.y6_c01214{bottom:753.015000px;}
.y5_c01214{bottom:777.015000px;}
.y3_c01214{bottom:784.065000px;}
.y4_c01214{bottom:800.865000px;}
.y2_c01214{bottom:855.915000px;}
.y1_c01214{bottom:905.565000px;}
.h9_c01214{height:13.200074px;}
.ha_c01214{height:43.804688px;}
.h5_c01214{height:57.445312px;}
.h3_c01214{height:66.713379px;}
.h6_c01214{height:98.756836px;}
.h8_c01214{height:108.843750px;}
.h2_c01214{height:115.870605px;}
.h7_c01214{height:167.126953px;}
.h4_c01214{height:304.095000px;}
.h1_c01214{height:966.000000px;}
.h0_c01214{height:966.075000px;}
.w1_c01214{width:104.875500px;}
.w0_c01214{width:657.750000px;}
.x0_c01214{left:0.000000px;}
.x8_c01214{left:40.200000px;}
.xf_c01214{left:56.700000px;}
.xe_c01214{left:57.750000px;}
.xd_c01214{left:58.950000px;}
.xc_c01214{left:60.300000px;}
.xb_c01214{left:61.350000px;}
.xa_c01214{left:63.000000px;}
.x7_c01214{left:64.350000px;}
.x3_c01214{left:65.700000px;}
.x6_c01214{left:66.750000px;}
.x5_c01214{left:67.800000px;}
.x9_c01214{left:80.250000px;}
.x4_c01214{left:99.600000px;}
.x1_c01214{left:133.200000px;}
.x2_c01214{left:203.850000px;}
.x11_c01214{left:280.689240px;}
.x10_c01214{left:507.150000px;}
@media print{
.v0_c01214{vertical-align:0.000000pt;}
.v1_c01214{vertical-align:145.066667pt;}
.ls4_c01214{letter-spacing:-8.000000pt;}
.ls2_c01214{letter-spacing:0.000000pt;}
.ls3_c01214{letter-spacing:2.666667pt;}
.ls1_c01214{letter-spacing:14.714667pt;}
.ls0_c01214{letter-spacing:41.018667pt;}
.ws0_c01214{word-spacing:-67.640000pt;}
.ws3_c01214{word-spacing:-24.000000pt;}
.ws1_c01214{word-spacing:-3.426667pt;}
.ws2_c01214{word-spacing:-2.178667pt;}
.ws4_c01214{word-spacing:0.000000pt;}
._9_c01214{margin-left:-20.093333pt;}
._8_c01214{margin-left:-11.986667pt;}
._2_c01214{margin-left:-10.912000pt;}
._17_c01214{margin-left:-8.762667pt;}
._22_c01214{margin-left:-7.010667pt;}
._1b_c01214{margin-left:-5.045333pt;}
._20_c01214{margin-left:-4.154667pt;}
._3_c01214{margin-left:-2.640000pt;}
._4_c01214{margin-left:-1.232000pt;}
._5_c01214{width:1.013333pt;}
._6_c01214{width:1.957333pt;}
._1_c01214{width:2.992000pt;}
._0_c01214{width:4.312000pt;}
._11_c01214{width:5.344000pt;}
._7_c01214{width:6.965333pt;}
._e_c01214{width:8.410667pt;}
._12_c01214{width:9.357333pt;}
._c_c01214{width:11.096000pt;}
._10_c01214{width:14.186667pt;}
._14_c01214{width:15.725333pt;}
._a_c01214{width:17.277333pt;}
._13_c01214{width:18.416000pt;}
._b_c01214{width:19.938667pt;}
._d_c01214{width:20.874667pt;}
._f_c01214{width:22.010667pt;}
._15_c01214{width:23.149333pt;}
._23_c01214{width:24.141333pt;}
._1d_c01214{width:25.061333pt;}
._1f_c01214{width:27.746667pt;}
._21_c01214{width:29.538667pt;}
._1e_c01214{width:31.365333pt;}
._1a_c01214{width:33.933333pt;}
._16_c01214{width:36.109333pt;}
._18_c01214{width:139.890667pt;}
._1c_c01214{width:159.701333pt;}
._19_c01214{width:267.106667pt;}
.fs6_c01214{font-size:42.666667pt;}
.fs1_c01214{font-size:50.666667pt;}
.fs3_c01214{font-size:69.333333pt;}
.fs0_c01214{font-size:88.000000pt;}
.fs5_c01214{font-size:96.000000pt;}
.fs4_c01214{font-size:117.333333pt;}
.fs2_c01214{font-size:253.333333pt;}
.y0_c01214{bottom:0.000000pt;}
.y25_c01214{bottom:2.760000pt;}
.y24_c01214{bottom:6.425219pt;}
.y23_c01214{bottom:49.613333pt;}
.y22_c01214{bottom:70.280000pt;}
.y21_c01214{bottom:92.680000pt;}
.y20_c01214{bottom:114.013333pt;}
.y1f_c01214{bottom:135.613333pt;}
.y1e_c01214{bottom:157.213333pt;}
.y1d_c01214{bottom:178.546667pt;}
.y1c_c01214{bottom:199.880000pt;}
.y1b_c01214{bottom:221.746667pt;}
.y1a_c01214{bottom:242.413333pt;}
.y19_c01214{bottom:264.013333pt;}
.y18_c01214{bottom:285.346667pt;}
.y17_c01214{bottom:306.680000pt;}
.y16_c01214{bottom:328.013333pt;}
.y15_c01214{bottom:349.480000pt;}
.y14_c01214{bottom:370.546667pt;}
.y13_c01214{bottom:390.946667pt;}
.y12_c01214{bottom:413.080000pt;}
.y11_c01214{bottom:434.813333pt;}
.y10_c01214{bottom:456.413333pt;}
.yf_c01214{bottom:477.080000pt;}
.ye_c01214{bottom:498.413333pt;}
.yd_c01214{bottom:519.613333pt;}
.yc_c01214{bottom:540.946667pt;}
.yb_c01214{bottom:562.546667pt;}
.ya_c01214{bottom:584.146667pt;}
.y9_c01214{bottom:605.213333pt;}
.y8_c01214{bottom:626.413333pt;}
.y7_c01214{bottom:648.680000pt;}
.y6_c01214{bottom:669.346667pt;}
.y5_c01214{bottom:690.680000pt;}
.y3_c01214{bottom:696.946667pt;}
.y4_c01214{bottom:711.880000pt;}
.y2_c01214{bottom:760.813333pt;}
.y1_c01214{bottom:804.946667pt;}
.h9_c01214{height:11.733399pt;}
.ha_c01214{height:38.937500pt;}
.h5_c01214{height:51.062500pt;}
.h3_c01214{height:59.300781pt;}
.h6_c01214{height:87.783854pt;}
.h8_c01214{height:96.750000pt;}
.h2_c01214{height:102.996094pt;}
.h7_c01214{height:148.557292pt;}
.h4_c01214{height:270.306667pt;}
.h1_c01214{height:858.666667pt;}
.h0_c01214{height:858.733333pt;}
.w1_c01214{width:93.222667pt;}
.w0_c01214{width:584.666667pt;}
.x0_c01214{left:0.000000pt;}
.x8_c01214{left:35.733333pt;}
.xf_c01214{left:50.400000pt;}
.xe_c01214{left:51.333333pt;}
.xd_c01214{left:52.400000pt;}
.xc_c01214{left:53.600000pt;}
.xb_c01214{left:54.533333pt;}
.xa_c01214{left:56.000000pt;}
.x7_c01214{left:57.200000pt;}
.x3_c01214{left:58.400000pt;}
.x6_c01214{left:59.333333pt;}
.x5_c01214{left:60.266667pt;}
.x9_c01214{left:71.333333pt;}
.x4_c01214{left:88.533333pt;}
.x1_c01214{left:118.400000pt;}
.x2_c01214{left:181.200000pt;}
.x11_c01214{left:249.501546pt;}
.x10_c01214{left:450.800000pt;}
}





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

.ir_c01215:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01215{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01215;src:url('chunks/assets/font_76ffe021ce73cbb71fa374b2.woff2')format("woff");}.ff1_c01215{font-family:ff1_c01215;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01215;src:url('chunks/assets/font_8392dd27188dcf3551b06d1e.woff2')format("woff");}.ff2_c01215{font-family:ff2_c01215;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01215;src:url('chunks/assets/font_03c6aa27d611acbd327e9315.woff2')format("woff");}.ff3_c01215{font-family:ff3_c01215;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01215;src:url('chunks/assets/font_fcf4bfa34c443bea8ec89932.woff2')format("woff");}.ff4_c01215{font-family:ff4_c01215;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01215;src:url('chunks/assets/font_f5813d18dcbc9fda9c177d5d.woff2')format("woff");}.ff5_c01215{font-family:ff5_c01215;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01215;src:url('chunks/assets/font_6fa17ab163f56fe996532313.woff2')format("woff");}.ff6_c01215{font-family:ff6_c01215;line-height:1.311035;font-style:normal;font-weight: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_c01215;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c01215{font-family:ff7_c01215;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01215{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01215{vertical-align:0.000000px;}
.ls6_c01215{letter-spacing:0.000000px;}
.ls9_c01215{letter-spacing:3.000000px;}
.ls4_c01215{letter-spacing:3.750000px;}
.lsa_c01215{letter-spacing:6.000000px;}
.ls2_c01215{letter-spacing:6.954000px;}
.ls3_c01215{letter-spacing:8.154000px;}
.ls1_c01215{letter-spacing:10.500000px;}
.ls7_c01215{letter-spacing:21.000000px;}
.ls0_c01215{letter-spacing:23.550000px;}
.ls8_c01215{letter-spacing:45.000000px;}
.ls5_c01215{letter-spacing:1023.150000px;}
.sc__c01215{text-shadow:none;}
.sc0_c01215{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01215{-webkit-text-stroke:0px transparent;}
.sc0_c01215{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c01215{word-spacing:-44.346000px;}
.ws1_c01215{word-spacing:-35.250000px;}
.ws7_c01215{word-spacing:-20.967000px;}
.ws6_c01215{word-spacing:-17.400000px;}
.ws0_c01215{word-spacing:-14.250000px;}
.ws4_c01215{word-spacing:-1.212000px;}
.ws8_c01215{word-spacing:0.000000px;}
.ws2_c01215{word-spacing:3.762000px;}
.ws3_c01215{word-spacing:9.906000px;}
._f_c01215{margin-left:-28.443000px;}
._19_c01215{margin-left:-12.654000px;}
._1a_c01215{margin-left:-9.291000px;}
._1c_c01215{margin-left:-8.142000px;}
._2c_c01215{margin-left:-6.867000px;}
._27_c01215{margin-left:-4.269000px;}
._1d_c01215{margin-left:-2.859000px;}
._6_c01215{margin-left:-1.278000px;}
._1_c01215{width:1.836000px;}
._2_c01215{width:3.237000px;}
._0_c01215{width:4.503000px;}
._8_c01215{width:5.835000px;}
._4_c01215{width:7.239000px;}
._9_c01215{width:8.283000px;}
._7_c01215{width:9.918000px;}
._5_c01215{width:11.286000px;}
._e_c01215{width:12.495000px;}
._3_c01215{width:15.483000px;}
._c_c01215{width:16.608000px;}
._b_c01215{width:18.240000px;}
._17_c01215{width:20.202000px;}
._d_c01215{width:21.432000px;}
._11_c01215{width:23.010000px;}
._12_c01215{width:24.624000px;}
._25_c01215{width:26.049000px;}
._13_c01215{width:27.534000px;}
._14_c01215{width:29.298000px;}
._15_c01215{width:31.770000px;}
._1e_c01215{width:34.038000px;}
._24_c01215{width:35.775000px;}
._a_c01215{width:37.377000px;}
._23_c01215{width:38.685000px;}
._1f_c01215{width:48.147000px;}
._22_c01215{width:49.326000px;}
._20_c01215{width:51.384000px;}
._26_c01215{width:56.814000px;}
._21_c01215{width:60.117000px;}
._28_c01215{width:76.584000px;}
._2a_c01215{width:126.165000px;}
._18_c01215{width:214.554000px;}
._1b_c01215{width:244.017000px;}
._16_c01215{width:280.131000px;}
._2b_c01215{width:296.949000px;}
._29_c01215{width:321.153000px;}
._10_c01215{width:356.250000px;}
.fc2_c01215{color:transparent;}
.fc1_c01215{color:rgb(128,128,128);}
.fc0_c01215{color:rgb(0,0,0);}
.fs1_c01215{font-size:27.000000px;}
.fs3_c01215{font-size:45.600000px;}
.fs5_c01215{font-size:48.000000px;}
.fs0_c01215{font-size:57.000000px;}
.fs2_c01215{font-size:78.000000px;}
.fs4_c01215{font-size:87.000000px;}
.y0_c01215{bottom:0.000000px;}
.y25_c01215{bottom:3.105000px;}
.y24_c01215{bottom:7.228371px;}
.y23_c01215{bottom:69.165000px;}
.y22_c01215{bottom:90.915000px;}
.y21_c01215{bottom:114.765000px;}
.y20_c01215{bottom:143.865000px;}
.y1f_c01215{bottom:166.065000px;}
.y1e_c01215{bottom:189.765000px;}
.y1d_c01215{bottom:212.415000px;}
.y1c_c01215{bottom:237.315000px;}
.y1b_c01215{bottom:260.565000px;}
.y1a_c01215{bottom:285.615000px;}
.y19_c01215{bottom:309.165000px;}
.y18_c01215{bottom:332.865000px;}
.y17_c01215{bottom:356.865000px;}
.y16_c01215{bottom:381.165000px;}
.y15_c01215{bottom:404.715000px;}
.y14_c01215{bottom:429.015000px;}
.y13_c01215{bottom:453.015000px;}
.y12_c01215{bottom:476.865000px;}
.y11_c01215{bottom:500.865000px;}
.y10_c01215{bottom:523.815000px;}
.yf_c01215{bottom:547.815000px;}
.ye_c01215{bottom:571.365000px;}
.yd_c01215{bottom:595.365000px;}
.yc_c01215{bottom:619.365000px;}
.yb_c01215{bottom:643.065000px;}
.ya_c01215{bottom:667.365000px;}
.y9_c01215{bottom:693.015000px;}
.y8_c01215{bottom:715.515000px;}
.y7_c01215{bottom:739.515000px;}
.y6_c01215{bottom:765.765000px;}
.y5_c01215{bottom:787.365000px;}
.y4_c01215{bottom:811.365000px;}
.y3_c01215{bottom:835.365000px;}
.y2_c01215{bottom:859.365000px;}
.y1_c01215{bottom:882.915000px;}
.h5_c01215{height:13.200074px;}
.h6_c01215{height:43.804688px;}
.h2_c01215{height:57.445312px;}
.h3_c01215{height:98.756836px;}
.h4_c01215{height:110.151855px;}
.h1_c01215{height:986.250000px;}
.h0_c01215{height:986.325000px;}
.w2_c01215{width:104.875500px;}
.w0_c01215{width:667.425000px;}
.w1_c01215{width:667.500000px;}
.x0_c01215{left:0.000000px;}
.x5_c01215{left:33.750000px;}
.x1_c01215{left:35.100000px;}
.xe_c01215{left:38.100000px;}
.xd_c01215{left:39.600000px;}
.xc_c01215{left:41.250000px;}
.x3_c01215{left:121.050000px;}
.x2_c01215{left:126.300000px;}
.x4_c01215{left:128.850000px;}
.x6_c01215{left:130.200000px;}
.x9_c01215{left:131.250000px;}
.xa_c01215{left:132.300000px;}
.xb_c01215{left:133.950000px;}
.x7_c01215{left:135.750000px;}
.x8_c01215{left:155.250000px;}
.x10_c01215{left:285.526749px;}
.xf_c01215{left:604.200000px;}
@media print{
.v0_c01215{vertical-align:0.000000pt;}
.ls6_c01215{letter-spacing:0.000000pt;}
.ls9_c01215{letter-spacing:2.666667pt;}
.ls4_c01215{letter-spacing:3.333333pt;}
.lsa_c01215{letter-spacing:5.333333pt;}
.ls2_c01215{letter-spacing:6.181333pt;}
.ls3_c01215{letter-spacing:7.248000pt;}
.ls1_c01215{letter-spacing:9.333333pt;}
.ls7_c01215{letter-spacing:18.666667pt;}
.ls0_c01215{letter-spacing:20.933333pt;}
.ls8_c01215{letter-spacing:40.000000pt;}
.ls5_c01215{letter-spacing:909.466667pt;}
.ws5_c01215{word-spacing:-39.418667pt;}
.ws1_c01215{word-spacing:-31.333333pt;}
.ws7_c01215{word-spacing:-18.637333pt;}
.ws6_c01215{word-spacing:-15.466667pt;}
.ws0_c01215{word-spacing:-12.666667pt;}
.ws4_c01215{word-spacing:-1.077333pt;}
.ws8_c01215{word-spacing:0.000000pt;}
.ws2_c01215{word-spacing:3.344000pt;}
.ws3_c01215{word-spacing:8.805333pt;}
._f_c01215{margin-left:-25.282667pt;}
._19_c01215{margin-left:-11.248000pt;}
._1a_c01215{margin-left:-8.258667pt;}
._1c_c01215{margin-left:-7.237333pt;}
._2c_c01215{margin-left:-6.104000pt;}
._27_c01215{margin-left:-3.794667pt;}
._1d_c01215{margin-left:-2.541333pt;}
._6_c01215{margin-left:-1.136000pt;}
._1_c01215{width:1.632000pt;}
._2_c01215{width:2.877333pt;}
._0_c01215{width:4.002667pt;}
._8_c01215{width:5.186667pt;}
._4_c01215{width:6.434667pt;}
._9_c01215{width:7.362667pt;}
._7_c01215{width:8.816000pt;}
._5_c01215{width:10.032000pt;}
._e_c01215{width:11.106667pt;}
._3_c01215{width:13.762667pt;}
._c_c01215{width:14.762667pt;}
._b_c01215{width:16.213333pt;}
._17_c01215{width:17.957333pt;}
._d_c01215{width:19.050667pt;}
._11_c01215{width:20.453333pt;}
._12_c01215{width:21.888000pt;}
._25_c01215{width:23.154667pt;}
._13_c01215{width:24.474667pt;}
._14_c01215{width:26.042667pt;}
._15_c01215{width:28.240000pt;}
._1e_c01215{width:30.256000pt;}
._24_c01215{width:31.800000pt;}
._a_c01215{width:33.224000pt;}
._23_c01215{width:34.386667pt;}
._1f_c01215{width:42.797333pt;}
._22_c01215{width:43.845333pt;}
._20_c01215{width:45.674667pt;}
._26_c01215{width:50.501333pt;}
._21_c01215{width:53.437333pt;}
._28_c01215{width:68.074667pt;}
._2a_c01215{width:112.146667pt;}
._18_c01215{width:190.714667pt;}
._1b_c01215{width:216.904000pt;}
._16_c01215{width:249.005333pt;}
._2b_c01215{width:263.954667pt;}
._29_c01215{width:285.469333pt;}
._10_c01215{width:316.666667pt;}
.fs1_c01215{font-size:24.000000pt;}
.fs3_c01215{font-size:40.533333pt;}
.fs5_c01215{font-size:42.666667pt;}
.fs0_c01215{font-size:50.666667pt;}
.fs2_c01215{font-size:69.333333pt;}
.fs4_c01215{font-size:77.333333pt;}
.y0_c01215{bottom:0.000000pt;}
.y25_c01215{bottom:2.760000pt;}
.y24_c01215{bottom:6.425219pt;}
.y23_c01215{bottom:61.480000pt;}
.y22_c01215{bottom:80.813333pt;}
.y21_c01215{bottom:102.013333pt;}
.y20_c01215{bottom:127.880000pt;}
.y1f_c01215{bottom:147.613333pt;}
.y1e_c01215{bottom:168.680000pt;}
.y1d_c01215{bottom:188.813333pt;}
.y1c_c01215{bottom:210.946667pt;}
.y1b_c01215{bottom:231.613333pt;}
.y1a_c01215{bottom:253.880000pt;}
.y19_c01215{bottom:274.813333pt;}
.y18_c01215{bottom:295.880000pt;}
.y17_c01215{bottom:317.213333pt;}
.y16_c01215{bottom:338.813333pt;}
.y15_c01215{bottom:359.746667pt;}
.y14_c01215{bottom:381.346667pt;}
.y13_c01215{bottom:402.680000pt;}
.y12_c01215{bottom:423.880000pt;}
.y11_c01215{bottom:445.213333pt;}
.y10_c01215{bottom:465.613333pt;}
.yf_c01215{bottom:486.946667pt;}
.ye_c01215{bottom:507.880000pt;}
.yd_c01215{bottom:529.213333pt;}
.yc_c01215{bottom:550.546667pt;}
.yb_c01215{bottom:571.613333pt;}
.ya_c01215{bottom:593.213333pt;}
.y9_c01215{bottom:616.013333pt;}
.y8_c01215{bottom:636.013333pt;}
.y7_c01215{bottom:657.346667pt;}
.y6_c01215{bottom:680.680000pt;}
.y5_c01215{bottom:699.880000pt;}
.y4_c01215{bottom:721.213333pt;}
.y3_c01215{bottom:742.546667pt;}
.y2_c01215{bottom:763.880000pt;}
.y1_c01215{bottom:784.813333pt;}
.h5_c01215{height:11.733399pt;}
.h6_c01215{height:38.937500pt;}
.h2_c01215{height:51.062500pt;}
.h3_c01215{height:87.783854pt;}
.h4_c01215{height:97.912760pt;}
.h1_c01215{height:876.666667pt;}
.h0_c01215{height:876.733333pt;}
.w2_c01215{width:93.222667pt;}
.w0_c01215{width:593.266667pt;}
.w1_c01215{width:593.333333pt;}
.x0_c01215{left:0.000000pt;}
.x5_c01215{left:30.000000pt;}
.x1_c01215{left:31.200000pt;}
.xe_c01215{left:33.866667pt;}
.xd_c01215{left:35.200000pt;}
.xc_c01215{left:36.666667pt;}
.x3_c01215{left:107.600000pt;}
.x2_c01215{left:112.266667pt;}
.x4_c01215{left:114.533333pt;}
.x6_c01215{left:115.733333pt;}
.x9_c01215{left:116.666667pt;}
.xa_c01215{left:117.600000pt;}
.xb_c01215{left:119.066667pt;}
.x7_c01215{left:120.666667pt;}
.x8_c01215{left:138.000000pt;}
.x10_c01215{left:253.801554pt;}
.xf_c01215{left:537.066667pt;}
}





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

.ir_c01216:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01216{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01216;src:url('chunks/assets/font_6e889accb563c9748db19253.woff2')format("woff");}.ff1_c01216{font-family:ff1_c01216;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01216;src:url('chunks/assets/font_21ff4380ff979e0a955ff4e2.woff2')format("woff");}.ff2_c01216{font-family:ff2_c01216;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01216;src:url('chunks/assets/font_58acc4d9bbb8e6493c3249ac.woff2')format("woff");}.ff3_c01216{font-family:ff3_c01216;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01216;src:url('chunks/assets/font_40d0afc70e705dd671a0bc6c.woff2')format("woff");}.ff4_c01216{font-family:ff4_c01216;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01216;src:url('chunks/assets/font_6339a348c8e141a99ecf3fee.woff2')format("woff");}.ff5_c01216{font-family:ff5_c01216;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01216;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff6_c01216{font-family:ff6_c01216;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01216;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c01216{font-family:ff7_c01216;line-height:1.219238;font-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_c01216{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m0_c01216{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01216{vertical-align:0.000000px;}
.v1_c01216{vertical-align:10.800000px;}
.ls8_c01216{letter-spacing:0.000000px;}
.ls9_c01216{letter-spacing:3.000000px;}
.ls7_c01216{letter-spacing:4.002000px;}
.ls4_c01216{letter-spacing:5.802000px;}
.ls6_c01216{letter-spacing:11.700000px;}
.ls0_c01216{letter-spacing:16.020000px;}
.ls2_c01216{letter-spacing:16.500000px;}
.ls5_c01216{letter-spacing:18.300000px;}
.ls3_c01216{letter-spacing:30.150000px;}
.ls1_c01216{letter-spacing:35.202000px;}
.lsa_c01216{letter-spacing:45.000000px;}
.sc__c01216{text-shadow:none;}
.sc0_c01216{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01216{-webkit-text-stroke:0px transparent;}
.sc0_c01216{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01216{word-spacing:-59.250000px;}
.ws1_c01216{word-spacing:-27.000000px;}
.ws4_c01216{word-spacing:-14.763000px;}
.ws0_c01216{word-spacing:-14.364000px;}
.ws5_c01216{word-spacing:-13.737000px;}
.ws6_c01216{word-spacing:-1.254000px;}
.ws7_c01216{word-spacing:0.000000px;}
.ws3_c01216{word-spacing:0.627000px;}
._27_c01216{margin-left:-48.900000px;}
._1f_c01216{margin-left:-19.746000px;}
._7_c01216{margin-left:-18.054000px;}
._e_c01216{margin-left:-16.524000px;}
._2_c01216{margin-left:-13.464000px;}
._5_c01216{margin-left:-12.342000px;}
._2a_c01216{margin-left:-10.686000px;}
._23_c01216{margin-left:-9.471000px;}
._6_c01216{margin-left:-7.752000px;}
._21_c01216{margin-left:-6.654000px;}
._b_c01216{margin-left:-4.794000px;}
._28_c01216{margin-left:-3.126000px;}
._1c_c01216{margin-left:-1.737000px;}
._10_c01216{width:1.326000px;}
._f_c01216{width:2.448000px;}
._c_c01216{width:4.182000px;}
._d_c01216{width:5.202000px;}
._1a_c01216{width:6.273000px;}
._1_c01216{width:7.446000px;}
._3_c01216{width:8.772000px;}
._0_c01216{width:9.996000px;}
._4_c01216{width:11.628000px;}
._16_c01216{width:13.110000px;}
._15_c01216{width:15.309000px;}
._9_c01216{width:17.238000px;}
._19_c01216{width:19.098000px;}
._14_c01216{width:20.976000px;}
._17_c01216{width:22.338000px;}
._1d_c01216{width:23.541000px;}
._18_c01216{width:24.918000px;}
._1b_c01216{width:26.271000px;}
._22_c01216{width:28.230000px;}
._2b_c01216{width:29.298000px;}
._24_c01216{width:30.495000px;}
._8_c01216{width:31.824000px;}
._a_c01216{width:35.088000px;}
._12_c01216{width:37.536000px;}
._1e_c01216{width:39.726000px;}
._13_c01216{width:41.301000px;}
._26_c01216{width:96.762000px;}
._11_c01216{width:215.628000px;}
._2c_c01216{width:219.102000px;}
._25_c01216{width:285.801000px;}
._2d_c01216{width:333.969000px;}
._20_c01216{width:336.756000px;}
._29_c01216{width:1204.008000px;}
.fc2_c01216{color:transparent;}
.fc1_c01216{color:rgb(128,128,128);}
.fc0_c01216{color:rgb(0,0,0);}
.fs6_c01216{font-size:48.000000px;}
.fs1_c01216{font-size:57.000000px;}
.fs3_c01216{font-size:60.000000px;}
.fs5_c01216{font-size:63.000000px;}
.fs4_c01216{font-size:78.000000px;}
.fs0_c01216{font-size:102.000000px;}
.fs2_c01216{font-size:108.000000px;}
.y0_c01216{bottom:0.000000px;}
.y26_c01216{bottom:3.105000px;}
.y25_c01216{bottom:7.228369px;}
.y24_c01216{bottom:66.120000px;}
.y23_c01216{bottom:89.820000px;}
.y22_c01216{bottom:115.470000px;}
.y21_c01216{bottom:140.670000px;}
.y20_c01216{bottom:164.670000px;}
.y1f_c01216{bottom:187.920000px;}
.y1e_c01216{bottom:211.920000px;}
.y1d_c01216{bottom:236.820000px;}
.y1c_c01216{bottom:260.820000px;}
.y1b_c01216{bottom:285.120000px;}
.y1a_c01216{bottom:309.720000px;}
.y19_c01216{bottom:334.170000px;}
.y18_c01216{bottom:357.720000px;}
.y17_c01216{bottom:382.620000px;}
.y16_c01216{bottom:406.620000px;}
.y15_c01216{bottom:430.020000px;}
.y14_c01216{bottom:453.870000px;}
.y13_c01216{bottom:478.170000px;}
.y12_c01216{bottom:502.170000px;}
.y11_c01216{bottom:526.170000px;}
.y10_c01216{bottom:550.020000px;}
.yf_c01216{bottom:575.070000px;}
.ye_c01216{bottom:597.420000px;}
.yd_c01216{bottom:621.270000px;}
.yc_c01216{bottom:645.870000px;}
.yb_c01216{bottom:670.320000px;}
.ya_c01216{bottom:693.270000px;}
.y9_c01216{bottom:718.470000px;}
.y8_c01216{bottom:741.720000px;}
.y7_c01216{bottom:765.420000px;}
.y6_c01216{bottom:789.720000px;}
.y5_c01216{bottom:811.020000px;}
.y4_c01216{bottom:838.020000px;}
.y3_c01216{bottom:862.020000px;}
.y2_c01216{bottom:886.320000px;}
.y1_c01216{bottom:921.270000px;}
.h8_c01216{height:13.200073px;}
.h9_c01216{height:43.804688px;}
.h3_c01216{height:57.445312px;}
.h7_c01216{height:66.713379px;}
.h5_c01216{height:68.245312px;}
.h6_c01216{height:98.756836px;}
.h2_c01216{height:100.057617px;}
.h4_c01216{height:108.843750px;}
.h1_c01216{height:986.250000px;}
.h0_c01216{height:986.550000px;}
.w1_c01216{width:104.875500px;}
.w0_c01216{width:672.000000px;}
.x0_c01216{left:0.000000px;}
.xf_c01216{left:50.250000px;}
.xe_c01216{left:52.950000px;}
.xd_c01216{left:54.450000px;}
.xa_c01216{left:56.100000px;}
.xb_c01216{left:57.150000px;}
.x9_c01216{left:59.400000px;}
.x8_c01216{left:61.050000px;}
.x6_c01216{left:63.150000px;}
.x5_c01216{left:64.800000px;}
.x3_c01216{left:65.850000px;}
.x2_c01216{left:69.150000px;}
.x7_c01216{left:72.150000px;}
.xc_c01216{left:82.050000px;}
.x1_c01216{left:115.650000px;}
.x11_c01216{left:287.814240px;}
.x10_c01216{left:473.250000px;}
.x4_c01216{left:517.050000px;}
@media print{
.v0_c01216{vertical-align:0.000000pt;}
.v1_c01216{vertical-align:9.600000pt;}
.ls8_c01216{letter-spacing:0.000000pt;}
.ls9_c01216{letter-spacing:2.666667pt;}
.ls7_c01216{letter-spacing:3.557333pt;}
.ls4_c01216{letter-spacing:5.157333pt;}
.ls6_c01216{letter-spacing:10.400000pt;}
.ls0_c01216{letter-spacing:14.240000pt;}
.ls2_c01216{letter-spacing:14.666667pt;}
.ls5_c01216{letter-spacing:16.266667pt;}
.ls3_c01216{letter-spacing:26.800000pt;}
.ls1_c01216{letter-spacing:31.290667pt;}
.lsa_c01216{letter-spacing:40.000000pt;}
.ws2_c01216{word-spacing:-52.666667pt;}
.ws1_c01216{word-spacing:-24.000000pt;}
.ws4_c01216{word-spacing:-13.122667pt;}
.ws0_c01216{word-spacing:-12.768000pt;}
.ws5_c01216{word-spacing:-12.210667pt;}
.ws6_c01216{word-spacing:-1.114667pt;}
.ws7_c01216{word-spacing:0.000000pt;}
.ws3_c01216{word-spacing:0.557333pt;}
._27_c01216{margin-left:-43.466667pt;}
._1f_c01216{margin-left:-17.552000pt;}
._7_c01216{margin-left:-16.048000pt;}
._e_c01216{margin-left:-14.688000pt;}
._2_c01216{margin-left:-11.968000pt;}
._5_c01216{margin-left:-10.970667pt;}
._2a_c01216{margin-left:-9.498667pt;}
._23_c01216{margin-left:-8.418667pt;}
._6_c01216{margin-left:-6.890667pt;}
._21_c01216{margin-left:-5.914667pt;}
._b_c01216{margin-left:-4.261333pt;}
._28_c01216{margin-left:-2.778667pt;}
._1c_c01216{margin-left:-1.544000pt;}
._10_c01216{width:1.178667pt;}
._f_c01216{width:2.176000pt;}
._c_c01216{width:3.717333pt;}
._d_c01216{width:4.624000pt;}
._1a_c01216{width:5.576000pt;}
._1_c01216{width:6.618667pt;}
._3_c01216{width:7.797333pt;}
._0_c01216{width:8.885333pt;}
._4_c01216{width:10.336000pt;}
._16_c01216{width:11.653333pt;}
._15_c01216{width:13.608000pt;}
._9_c01216{width:15.322667pt;}
._19_c01216{width:16.976000pt;}
._14_c01216{width:18.645333pt;}
._17_c01216{width:19.856000pt;}
._1d_c01216{width:20.925333pt;}
._18_c01216{width:22.149333pt;}
._1b_c01216{width:23.352000pt;}
._22_c01216{width:25.093333pt;}
._2b_c01216{width:26.042667pt;}
._24_c01216{width:27.106667pt;}
._8_c01216{width:28.288000pt;}
._a_c01216{width:31.189333pt;}
._12_c01216{width:33.365333pt;}
._1e_c01216{width:35.312000pt;}
._13_c01216{width:36.712000pt;}
._26_c01216{width:86.010667pt;}
._11_c01216{width:191.669333pt;}
._2c_c01216{width:194.757333pt;}
._25_c01216{width:254.045333pt;}
._2d_c01216{width:296.861333pt;}
._20_c01216{width:299.338667pt;}
._29_c01216{width:1070.229333pt;}
.fs6_c01216{font-size:42.666667pt;}
.fs1_c01216{font-size:50.666667pt;}
.fs3_c01216{font-size:53.333333pt;}
.fs5_c01216{font-size:56.000000pt;}
.fs4_c01216{font-size:69.333333pt;}
.fs0_c01216{font-size:90.666667pt;}
.fs2_c01216{font-size:96.000000pt;}
.y0_c01216{bottom:0.000000pt;}
.y26_c01216{bottom:2.760000pt;}
.y25_c01216{bottom:6.425217pt;}
.y24_c01216{bottom:58.773333pt;}
.y23_c01216{bottom:79.840000pt;}
.y22_c01216{bottom:102.640000pt;}
.y21_c01216{bottom:125.040000pt;}
.y20_c01216{bottom:146.373333pt;}
.y1f_c01216{bottom:167.040000pt;}
.y1e_c01216{bottom:188.373333pt;}
.y1d_c01216{bottom:210.506667pt;}
.y1c_c01216{bottom:231.840000pt;}
.y1b_c01216{bottom:253.440000pt;}
.y1a_c01216{bottom:275.306667pt;}
.y19_c01216{bottom:297.040000pt;}
.y18_c01216{bottom:317.973333pt;}
.y17_c01216{bottom:340.106667pt;}
.y16_c01216{bottom:361.440000pt;}
.y15_c01216{bottom:382.240000pt;}
.y14_c01216{bottom:403.440000pt;}
.y13_c01216{bottom:425.040000pt;}
.y12_c01216{bottom:446.373333pt;}
.y11_c01216{bottom:467.706667pt;}
.y10_c01216{bottom:488.906667pt;}
.yf_c01216{bottom:511.173333pt;}
.ye_c01216{bottom:531.040000pt;}
.yd_c01216{bottom:552.240000pt;}
.yc_c01216{bottom:574.106667pt;}
.yb_c01216{bottom:595.840000pt;}
.ya_c01216{bottom:616.240000pt;}
.y9_c01216{bottom:638.640000pt;}
.y8_c01216{bottom:659.306667pt;}
.y7_c01216{bottom:680.373333pt;}
.y6_c01216{bottom:701.973333pt;}
.y5_c01216{bottom:720.906667pt;}
.y4_c01216{bottom:744.906667pt;}
.y3_c01216{bottom:766.240000pt;}
.y2_c01216{bottom:787.840000pt;}
.y1_c01216{bottom:818.906667pt;}
.h8_c01216{height:11.733399pt;}
.h9_c01216{height:38.937500pt;}
.h3_c01216{height:51.062500pt;}
.h7_c01216{height:59.300781pt;}
.h5_c01216{height:60.662500pt;}
.h6_c01216{height:87.783854pt;}
.h2_c01216{height:88.940104pt;}
.h4_c01216{height:96.750000pt;}
.h1_c01216{height:876.666667pt;}
.h0_c01216{height:876.933333pt;}
.w1_c01216{width:93.222667pt;}
.w0_c01216{width:597.333333pt;}
.x0_c01216{left:0.000000pt;}
.xf_c01216{left:44.666667pt;}
.xe_c01216{left:47.066667pt;}
.xd_c01216{left:48.400000pt;}
.xa_c01216{left:49.866667pt;}
.xb_c01216{left:50.800000pt;}
.x9_c01216{left:52.800000pt;}
.x8_c01216{left:54.266667pt;}
.x6_c01216{left:56.133333pt;}
.x5_c01216{left:57.600000pt;}
.x3_c01216{left:58.533333pt;}
.x2_c01216{left:61.466667pt;}
.x7_c01216{left:64.133333pt;}
.xc_c01216{left:72.933333pt;}
.x1_c01216{left:102.800000pt;}
.x11_c01216{left:255.834880pt;}
.x10_c01216{left:420.666667pt;}
.x4_c01216{left:459.600000pt;}
}





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

.ir_c01217:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01217{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01217;src:url('chunks/assets/font_a14a4667ea49fcb4b1f3e0d0.woff2')format("woff");}.ff1_c01217{font-family:ff1_c01217;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01217;src:url('chunks/assets/font_03c6aa27d611acbd327e9315.woff2')format("woff");}.ff2_c01217{font-family:ff2_c01217;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01217;src:url('chunks/assets/font_7908705c528786f1fba8c7b7.woff2')format("woff");}.ff3_c01217{font-family:ff3_c01217;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01217;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff4_c01217{font-family:ff4_c01217;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01217{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01217{vertical-align:0.000000px;}
.ls1_c01217{letter-spacing:0.000000px;}
.ls2_c01217{letter-spacing:3.000000px;}
.ls0_c01217{letter-spacing:18.900000px;}
.ls3_c01217{letter-spacing:36.000000px;}
.sc__c01217{text-shadow:none;}
.sc0_c01217{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01217{-webkit-text-stroke:0px transparent;}
.sc0_c01217{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01217{word-spacing:-50.250000px;}
.ws1_c01217{word-spacing:-21.000000px;}
.ws2_c01217{word-spacing:0.000000px;}
._4_c01217{margin-left:-11.400000px;}
._23_c01217{margin-left:-8.820000px;}
._24_c01217{margin-left:-5.190000px;}
._1d_c01217{margin-left:-4.047000px;}
._2_c01217{margin-left:-2.793000px;}
._15_c01217{margin-left:-1.140000px;}
._17_c01217{width:1.653000px;}
._1f_c01217{width:2.736000px;}
._7_c01217{width:3.876000px;}
._a_c01217{width:5.244000px;}
._f_c01217{width:6.384000px;}
._8_c01217{width:7.752000px;}
._9_c01217{width:8.892000px;}
._18_c01217{width:9.918000px;}
._c_c01217{width:10.944000px;}
._d_c01217{width:11.970000px;}
._6_c01217{width:13.110000px;}
._b_c01217{width:16.017000px;}
._11_c01217{width:18.012000px;}
._19_c01217{width:19.209000px;}
._10_c01217{width:20.919000px;}
._22_c01217{width:22.002000px;}
._e_c01217{width:23.142000px;}
._1c_c01217{width:24.339000px;}
._16_c01217{width:25.650000px;}
._1b_c01217{width:26.733000px;}
._26_c01217{width:28.173000px;}
._14_c01217{width:29.184000px;}
._13_c01217{width:30.267000px;}
._21_c01217{width:31.464000px;}
._5_c01217{width:33.459000px;}
._12_c01217{width:35.112000px;}
._1e_c01217{width:38.304000px;}
._1_c01217{width:40.641000px;}
._0_c01217{width:43.092000px;}
._3_c01217{width:67.944000px;}
._25_c01217{width:233.529000px;}
._1a_c01217{width:240.255000px;}
._20_c01217{width:362.862000px;}
.fc2_c01217{color:transparent;}
.fc1_c01217{color:rgb(128,128,128);}
.fc0_c01217{color:rgb(0,0,0);}
.fs2_c01217{font-size:42.000000px;}
.fs4_c01217{font-size:48.000000px;}
.fs0_c01217{font-size:57.000000px;}
.fs3_c01217{font-size:84.000000px;}
.fs1_c01217{font-size:105.000000px;}
.y0_c01217{bottom:0.000000px;}
.y23_c01217{bottom:3.105000px;}
.y22_c01217{bottom:7.228355px;}
.y21_c01217{bottom:69.435000px;}
.y20_c01217{bottom:92.385000px;}
.y1f_c01217{bottom:117.435000px;}
.y1e_c01217{bottom:141.435000px;}
.y1d_c01217{bottom:166.035000px;}
.y1c_c01217{bottom:190.635000px;}
.y1b_c01217{bottom:214.935000px;}
.y1a_c01217{bottom:241.185000px;}
.y19_c01217{bottom:264.285000px;}
.y18_c01217{bottom:288.585000px;}
.y17_c01217{bottom:313.485000px;}
.y16_c01217{bottom:337.785000px;}
.y15_c01217{bottom:362.385000px;}
.y14_c01217{bottom:386.385000px;}
.y13_c01217{bottom:410.985000px;}
.y12_c01217{bottom:436.335000px;}
.y11_c01217{bottom:459.585000px;}
.y10_c01217{bottom:484.935000px;}
.yf_c01217{bottom:507.585000px;}
.ye_c01217{bottom:531.435000px;}
.yd_c01217{bottom:555.885000px;}
.yc_c01217{bottom:580.035000px;}
.yb_c01217{bottom:604.485000px;}
.ya_c01217{bottom:628.785000px;}
.y9_c01217{bottom:653.085000px;}
.y8_c01217{bottom:676.935000px;}
.y7_c01217{bottom:701.535000px;}
.y6_c01217{bottom:726.585000px;}
.y5_c01217{bottom:750.285000px;}
.y4_c01217{bottom:774.435000px;}
.y3_c01217{bottom:798.885000px;}
.y2_c01217{bottom:823.485000px;}
.y1_c01217{bottom:847.485000px;}
.h5_c01217{height:13.200074px;}
.h6_c01217{height:43.804688px;}
.h2_c01217{height:57.445312px;}
.h4_c01217{height:84.656250px;}
.h3_c01217{height:105.820312px;}
.h1_c01217{height:969.750000px;}
.h0_c01217{height:969.825000px;}
.w2_c01217{width:104.875500px;}
.w0_c01217{width:656.100000px;}
.w1_c01217{width:656.250000px;}
.x0_c01217{left:0.000000px;}
.x5_c01217{left:40.800000px;}
.x1_c01217{left:44.550000px;}
.x4_c01217{left:47.250000px;}
.x8_c01217{left:51.900000px;}
.x2_c01217{left:138.000000px;}
.x3_c01217{left:139.050000px;}
.x6_c01217{left:140.400000px;}
.x7_c01217{left:141.450000px;}
.x9_c01217{left:142.650000px;}
.xb_c01217{left:279.864258px;}
.xa_c01217{left:599.400000px;}
@media print{
.v0_c01217{vertical-align:0.000000pt;}
.ls1_c01217{letter-spacing:0.000000pt;}
.ls2_c01217{letter-spacing:2.666667pt;}
.ls0_c01217{letter-spacing:16.800000pt;}
.ls3_c01217{letter-spacing:32.000000pt;}
.ws0_c01217{word-spacing:-44.666667pt;}
.ws1_c01217{word-spacing:-18.666667pt;}
.ws2_c01217{word-spacing:0.000000pt;}
._4_c01217{margin-left:-10.133333pt;}
._23_c01217{margin-left:-7.840000pt;}
._24_c01217{margin-left:-4.613333pt;}
._1d_c01217{margin-left:-3.597333pt;}
._2_c01217{margin-left:-2.482667pt;}
._15_c01217{margin-left:-1.013333pt;}
._17_c01217{width:1.469333pt;}
._1f_c01217{width:2.432000pt;}
._7_c01217{width:3.445333pt;}
._a_c01217{width:4.661333pt;}
._f_c01217{width:5.674667pt;}
._8_c01217{width:6.890667pt;}
._9_c01217{width:7.904000pt;}
._18_c01217{width:8.816000pt;}
._c_c01217{width:9.728000pt;}
._d_c01217{width:10.640000pt;}
._6_c01217{width:11.653333pt;}
._b_c01217{width:14.237333pt;}
._11_c01217{width:16.010667pt;}
._19_c01217{width:17.074667pt;}
._10_c01217{width:18.594667pt;}
._22_c01217{width:19.557333pt;}
._e_c01217{width:20.570667pt;}
._1c_c01217{width:21.634667pt;}
._16_c01217{width:22.800000pt;}
._1b_c01217{width:23.762667pt;}
._26_c01217{width:25.042667pt;}
._14_c01217{width:25.941333pt;}
._13_c01217{width:26.904000pt;}
._21_c01217{width:27.968000pt;}
._5_c01217{width:29.741333pt;}
._12_c01217{width:31.210667pt;}
._1e_c01217{width:34.048000pt;}
._1_c01217{width:36.125333pt;}
._0_c01217{width:38.304000pt;}
._3_c01217{width:60.394667pt;}
._25_c01217{width:207.581333pt;}
._1a_c01217{width:213.560000pt;}
._20_c01217{width:322.544000pt;}
.fs2_c01217{font-size:37.333333pt;}
.fs4_c01217{font-size:42.666667pt;}
.fs0_c01217{font-size:50.666667pt;}
.fs3_c01217{font-size:74.666667pt;}
.fs1_c01217{font-size:93.333333pt;}
.y0_c01217{bottom:0.000000pt;}
.y23_c01217{bottom:2.760000pt;}
.y22_c01217{bottom:6.425204pt;}
.y21_c01217{bottom:61.720000pt;}
.y20_c01217{bottom:82.120000pt;}
.y1f_c01217{bottom:104.386667pt;}
.y1e_c01217{bottom:125.720000pt;}
.y1d_c01217{bottom:147.586667pt;}
.y1c_c01217{bottom:169.453333pt;}
.y1b_c01217{bottom:191.053333pt;}
.y1a_c01217{bottom:214.386667pt;}
.y19_c01217{bottom:234.920000pt;}
.y18_c01217{bottom:256.520000pt;}
.y17_c01217{bottom:278.653333pt;}
.y16_c01217{bottom:300.253333pt;}
.y15_c01217{bottom:322.120000pt;}
.y14_c01217{bottom:343.453333pt;}
.y13_c01217{bottom:365.320000pt;}
.y12_c01217{bottom:387.853333pt;}
.y11_c01217{bottom:408.520000pt;}
.y10_c01217{bottom:431.053333pt;}
.yf_c01217{bottom:451.186667pt;}
.ye_c01217{bottom:472.386667pt;}
.yd_c01217{bottom:494.120000pt;}
.yc_c01217{bottom:515.586667pt;}
.yb_c01217{bottom:537.320000pt;}
.ya_c01217{bottom:558.920000pt;}
.y9_c01217{bottom:580.520000pt;}
.y8_c01217{bottom:601.720000pt;}
.y7_c01217{bottom:623.586667pt;}
.y6_c01217{bottom:645.853333pt;}
.y5_c01217{bottom:666.920000pt;}
.y4_c01217{bottom:688.386667pt;}
.y3_c01217{bottom:710.120000pt;}
.y2_c01217{bottom:731.986667pt;}
.y1_c01217{bottom:753.320000pt;}
.h5_c01217{height:11.733399pt;}
.h6_c01217{height:38.937500pt;}
.h2_c01217{height:51.062500pt;}
.h4_c01217{height:75.250000pt;}
.h3_c01217{height:94.062500pt;}
.h1_c01217{height:862.000000pt;}
.h0_c01217{height:862.066667pt;}
.w2_c01217{width:93.222667pt;}
.w0_c01217{width:583.200000pt;}
.w1_c01217{width:583.333333pt;}
.x0_c01217{left:0.000000pt;}
.x5_c01217{left:36.266667pt;}
.x1_c01217{left:39.600000pt;}
.x4_c01217{left:42.000000pt;}
.x8_c01217{left:46.133333pt;}
.x2_c01217{left:122.666667pt;}
.x3_c01217{left:123.600000pt;}
.x6_c01217{left:124.800000pt;}
.x7_c01217{left:125.733333pt;}
.x9_c01217{left:126.800000pt;}
.xb_c01217{left:248.768229pt;}
.xa_c01217{left:532.800000pt;}
}





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

.ir_c01218:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01218{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01218;src:url('chunks/assets/font_5d4ff4db3420ead874a68d81.woff2')format("woff");}.ff1_c01218{font-family:ff1_c01218;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01218;src:url('chunks/assets/font_fb1305f860a32f71e8a4e905.woff2')format("woff");}.ff2_c01218{font-family:ff2_c01218;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01218;src:url('chunks/assets/font_bbf978cf9cd75b7469e6d775.woff2')format("woff");}.ff3_c01218{font-family:ff3_c01218;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01218;src:url('chunks/assets/font_00e4753fe7e0140eaaa2f8b1.woff2')format("woff");}.ff4_c01218{font-family:ff4_c01218;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01218;src:url('chunks/assets/font_2a2f2e48b5c44d6386614783.woff2')format("woff");}.ff5_c01218{font-family:ff5_c01218;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01218;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c01218{font-family:ff6_c01218;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01218{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01218{vertical-align:0.000000px;}
.ls0_c01218{letter-spacing:0.000000px;}
.sc__c01218{text-shadow:none;}
.sc0_c01218{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01218{-webkit-text-stroke:0px transparent;}
.sc0_c01218{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01218{word-spacing:-25.179000px;}
.ws3_c01218{word-spacing:-23.250000px;}
.ws2_c01218{word-spacing:-22.891200px;}
.ws4_c01218{word-spacing:0.000000px;}
.ws0_c01218{word-spacing:3.024000px;}
._1d_c01218{margin-left:-11.229000px;}
._3_c01218{margin-left:-9.951000px;}
._1_c01218{margin-left:-7.440000px;}
._8_c01218{margin-left:-5.301000px;}
._2_c01218{margin-left:-4.278000px;}
._4_c01218{margin-left:-3.255000px;}
._0_c01218{margin-left:-2.139000px;}
._6_c01218{margin-left:-1.116000px;}
._5_c01218{width:1.581000px;}
._e_c01218{width:3.078000px;}
._7_c01218{width:4.743000px;}
._c_c01218{width:6.669000px;}
._a_c01218{width:8.487000px;}
._b_c01218{width:10.089000px;}
._d_c01218{width:11.940000px;}
._14_c01218{width:13.047000px;}
._13_c01218{width:15.375000px;}
._12_c01218{width:16.758000px;}
._f_c01218{width:18.198000px;}
._15_c01218{width:19.740000px;}
._9_c01218{width:20.952000px;}
._11_c01218{width:22.800000px;}
._18_c01218{width:24.549000px;}
._16_c01218{width:26.010000px;}
._17_c01218{width:27.222000px;}
._1a_c01218{width:28.506000px;}
._1e_c01218{width:29.913000px;}
._10_c01218{width:32.661000px;}
._19_c01218{width:36.078000px;}
._1b_c01218{width:38.541000px;}
._20_c01218{width:50.235000px;}
._1c_c01218{width:318.219000px;}
._1f_c01218{width:335.574000px;}
.fc2_c01218{color:transparent;}
.fc1_c01218{color:rgb(128,128,128);}
.fc0_c01218{color:rgb(0,0,0);}
.fs4_c01218{font-size:45.600000px;}
.fs5_c01218{font-size:48.000000px;}
.fs1_c01218{font-size:54.000000px;}
.fs2_c01218{font-size:57.000000px;}
.fs3_c01218{font-size:78.000000px;}
.fs0_c01218{font-size:93.000000px;}
.y0_c01218{bottom:0.000000px;}
.y25_c01218{bottom:3.105000px;}
.y24_c01218{bottom:7.228357px;}
.y23_c01218{bottom:40.230000px;}
.y22_c01218{bottom:63.780000px;}
.y21_c01218{bottom:89.430000px;}
.y20_c01218{bottom:113.730000px;}
.y1f_c01218{bottom:138.330000px;}
.y1e_c01218{bottom:162.630000px;}
.y1d_c01218{bottom:187.980000px;}
.y1c_c01218{bottom:211.380000px;}
.y1b_c01218{bottom:235.680000px;}
.y1a_c01218{bottom:260.280000px;}
.y19_c01218{bottom:284.280000px;}
.y18_c01218{bottom:309.180000px;}
.y17_c01218{bottom:332.880000px;}
.y16_c01218{bottom:357.030000px;}
.y15_c01218{bottom:381.330000px;}
.y14_c01218{bottom:405.630000px;}
.y13_c01218{bottom:429.630000px;}
.y12_c01218{bottom:453.630000px;}
.y11_c01218{bottom:477.630000px;}
.y10_c01218{bottom:501.630000px;}
.yf_c01218{bottom:525.480000px;}
.ye_c01218{bottom:549.180000px;}
.yd_c01218{bottom:573.030000px;}
.yc_c01218{bottom:597.030000px;}
.yb_c01218{bottom:620.730000px;}
.ya_c01218{bottom:644.730000px;}
.y9_c01218{bottom:668.880000px;}
.y8_c01218{bottom:692.880000px;}
.y7_c01218{bottom:716.580000px;}
.y6_c01218{bottom:741.930000px;}
.y5_c01218{bottom:766.080000px;}
.y4_c01218{bottom:790.080000px;}
.y3_c01218{bottom:813.330000px;}
.y2_c01218{bottom:839.130000px;}
.y1_c01218{bottom:862.680000px;}
.h5_c01218{height:13.200074px;}
.h6_c01218{height:43.804688px;}
.h3_c01218{height:57.445312px;}
.h2_c01218{height:91.274414px;}
.h4_c01218{height:98.756836px;}
.h1_c01218{height:973.500000px;}
.h0_c01218{height:973.650000px;}
.w2_c01218{width:104.875500px;}
.w1_c01218{width:662.250000px;}
.w0_c01218{width:662.550000px;}
.x0_c01218{left:0.000000px;}
.x5_c01218{left:35.700000px;}
.x6_c01218{left:37.350000px;}
.x7_c01218{left:45.000000px;}
.x1_c01218{left:53.250000px;}
.x2_c01218{left:54.750000px;}
.x4_c01218{left:56.250000px;}
.x8_c01218{left:58.050000px;}
.x3_c01218{left:77.550000px;}
.xa_c01218{left:283.089249px;}
.x9_c01218{left:494.400000px;}
@media print{
.v0_c01218{vertical-align:0.000000pt;}
.ls0_c01218{letter-spacing:0.000000pt;}
.ws1_c01218{word-spacing:-22.381333pt;}
.ws3_c01218{word-spacing:-20.666667pt;}
.ws2_c01218{word-spacing:-20.347733pt;}
.ws4_c01218{word-spacing:0.000000pt;}
.ws0_c01218{word-spacing:2.688000pt;}
._1d_c01218{margin-left:-9.981333pt;}
._3_c01218{margin-left:-8.845333pt;}
._1_c01218{margin-left:-6.613333pt;}
._8_c01218{margin-left:-4.712000pt;}
._2_c01218{margin-left:-3.802667pt;}
._4_c01218{margin-left:-2.893333pt;}
._0_c01218{margin-left:-1.901333pt;}
._6_c01218{margin-left:-0.992000pt;}
._5_c01218{width:1.405333pt;}
._e_c01218{width:2.736000pt;}
._7_c01218{width:4.216000pt;}
._c_c01218{width:5.928000pt;}
._a_c01218{width:7.544000pt;}
._b_c01218{width:8.968000pt;}
._d_c01218{width:10.613333pt;}
._14_c01218{width:11.597333pt;}
._13_c01218{width:13.666667pt;}
._12_c01218{width:14.896000pt;}
._f_c01218{width:16.176000pt;}
._15_c01218{width:17.546667pt;}
._9_c01218{width:18.624000pt;}
._11_c01218{width:20.266667pt;}
._18_c01218{width:21.821333pt;}
._16_c01218{width:23.120000pt;}
._17_c01218{width:24.197333pt;}
._1a_c01218{width:25.338667pt;}
._1e_c01218{width:26.589333pt;}
._10_c01218{width:29.032000pt;}
._19_c01218{width:32.069333pt;}
._1b_c01218{width:34.258667pt;}
._20_c01218{width:44.653333pt;}
._1c_c01218{width:282.861333pt;}
._1f_c01218{width:298.288000pt;}
.fs4_c01218{font-size:40.533333pt;}
.fs5_c01218{font-size:42.666667pt;}
.fs1_c01218{font-size:48.000000pt;}
.fs2_c01218{font-size:50.666667pt;}
.fs3_c01218{font-size:69.333333pt;}
.fs0_c01218{font-size:82.666667pt;}
.y0_c01218{bottom:0.000000pt;}
.y25_c01218{bottom:2.760000pt;}
.y24_c01218{bottom:6.425206pt;}
.y23_c01218{bottom:35.760000pt;}
.y22_c01218{bottom:56.693333pt;}
.y21_c01218{bottom:79.493333pt;}
.y20_c01218{bottom:101.093333pt;}
.y1f_c01218{bottom:122.960000pt;}
.y1e_c01218{bottom:144.560000pt;}
.y1d_c01218{bottom:167.093333pt;}
.y1c_c01218{bottom:187.893333pt;}
.y1b_c01218{bottom:209.493333pt;}
.y1a_c01218{bottom:231.360000pt;}
.y19_c01218{bottom:252.693333pt;}
.y18_c01218{bottom:274.826667pt;}
.y17_c01218{bottom:295.893333pt;}
.y16_c01218{bottom:317.360000pt;}
.y15_c01218{bottom:338.960000pt;}
.y14_c01218{bottom:360.560000pt;}
.y13_c01218{bottom:381.893333pt;}
.y12_c01218{bottom:403.226667pt;}
.y11_c01218{bottom:424.560000pt;}
.y10_c01218{bottom:445.893333pt;}
.yf_c01218{bottom:467.093333pt;}
.ye_c01218{bottom:488.160000pt;}
.yd_c01218{bottom:509.360000pt;}
.yc_c01218{bottom:530.693333pt;}
.yb_c01218{bottom:551.760000pt;}
.ya_c01218{bottom:573.093333pt;}
.y9_c01218{bottom:594.560000pt;}
.y8_c01218{bottom:615.893333pt;}
.y7_c01218{bottom:636.960000pt;}
.y6_c01218{bottom:659.493333pt;}
.y5_c01218{bottom:680.960000pt;}
.y4_c01218{bottom:702.293333pt;}
.y3_c01218{bottom:722.960000pt;}
.y2_c01218{bottom:745.893333pt;}
.y1_c01218{bottom:766.826667pt;}
.h5_c01218{height:11.733399pt;}
.h6_c01218{height:38.937500pt;}
.h3_c01218{height:51.062500pt;}
.h2_c01218{height:81.132812pt;}
.h4_c01218{height:87.783854pt;}
.h1_c01218{height:865.333333pt;}
.h0_c01218{height:865.466667pt;}
.w2_c01218{width:93.222667pt;}
.w1_c01218{width:588.666667pt;}
.w0_c01218{width:588.933333pt;}
.x0_c01218{left:0.000000pt;}
.x5_c01218{left:31.733333pt;}
.x6_c01218{left:33.200000pt;}
.x7_c01218{left:40.000000pt;}
.x1_c01218{left:47.333333pt;}
.x2_c01218{left:48.666667pt;}
.x4_c01218{left:50.000000pt;}
.x8_c01218{left:51.600000pt;}
.x3_c01218{left:68.933333pt;}
.xa_c01218{left:251.634888pt;}
.x9_c01218{left:439.466667pt;}
}





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

.ir_c01219:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01219{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01219;src:url('chunks/assets/font_47721da83689ef5ffee82207.woff2')format("woff");}.ff1_c01219{font-family:ff1_c01219;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01219;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff2_c01219{font-family:ff2_c01219;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01219;src:url('chunks/assets/font_6ee05bf255ce91327d52089c.woff2')format("woff");}.ff3_c01219{font-family:ff3_c01219;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01219;src:url('chunks/assets/font_66b4c6a09d7734af23e3857a.woff2')format("woff");}.ff4_c01219{font-family:ff4_c01219;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01219;src:url('chunks/assets/font_3c3bcfbddeb38acf8050a62c.woff2')format("woff");}.ff5_c01219{font-family:ff5_c01219;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01219;src:url('chunks/assets/font_e833e1b9646829aa7a9b0486.woff2')format("woff");}.ff6_c01219{font-family:ff6_c01219;line-height:1.437000;font-style:normal;font-weight: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_c01219;src:url('chunks/assets/font_2a3cc67c919b579fc0849982.woff2')format("woff");}.ff7_c01219{font-family:ff7_c01219;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c01219;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff8_c01219{font-family:ff8_c01219;line-height:1.219238;font-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_c01219{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m0_c01219{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01219{vertical-align:0.000000px;}
.ls1_c01219{letter-spacing:0.000000px;}
.ls2_c01219{letter-spacing:3.000000px;}
.ls0_c01219{letter-spacing:5.006400px;}
.ls3_c01219{letter-spacing:9.000000px;}
.sc__c01219{text-shadow:none;}
.sc0_c01219{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01219{-webkit-text-stroke:0px transparent;}
.sc0_c01219{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c01219{word-spacing:-95.310000px;}
.ws3_c01219{word-spacing:-53.682000px;}
.ws1_c01219{word-spacing:-51.984000px;}
.ws2_c01219{word-spacing:-41.587200px;}
.ws7_c01219{word-spacing:-27.000000px;}
.ws4_c01219{word-spacing:-20.250000px;}
.ws0_c01219{word-spacing:-1.767000px;}
.ws8_c01219{word-spacing:0.000000px;}
.ws5_c01219{word-spacing:0.057000px;}
._22_c01219{margin-left:-31.080000px;}
._13_c01219{margin-left:-24.852000px;}
._23_c01219{margin-left:-18.846000px;}
._1f_c01219{margin-left:-14.001000px;}
._21_c01219{margin-left:-12.897000px;}
._20_c01219{margin-left:-10.641000px;}
._16_c01219{margin-left:-8.598000px;}
._24_c01219{margin-left:-7.236000px;}
._1b_c01219{margin-left:-6.156000px;}
._17_c01219{margin-left:-4.722000px;}
._4_c01219{margin-left:-2.736000px;}
._d_c01219{margin-left:-1.425000px;}
._14_c01219{width:1.254000px;}
._a_c01219{width:2.280000px;}
._b_c01219{width:3.933000px;}
._2_c01219{width:5.130000px;}
._0_c01219{width:6.498000px;}
._c_c01219{width:7.923000px;}
._1_c01219{width:9.234000px;}
._8_c01219{width:10.431000px;}
._3_c01219{width:11.856000px;}
._9_c01219{width:12.939000px;}
._12_c01219{width:13.965000px;}
._7_c01219{width:15.561000px;}
._6_c01219{width:17.499000px;}
._1e_c01219{width:18.639000px;}
._e_c01219{width:19.665000px;}
._f_c01219{width:21.147000px;}
._5_c01219{width:22.743000px;}
._10_c01219{width:24.054000px;}
._1a_c01219{width:25.251000px;}
._15_c01219{width:26.676000px;}
._11_c01219{width:28.101000px;}
._1c_c01219{width:46.170000px;}
._1d_c01219{width:56.877000px;}
._19_c01219{width:230.907000px;}
._18_c01219{width:258.905400px;}
.fc2_c01219{color:transparent;}
.fc1_c01219{color:rgb(128,128,128);}
.fc0_c01219{color:rgb(0,0,0);}
.fs9_c01219{font-size:48.000000px;}
.fs0_c01219{font-size:57.000000px;}
.fs4_c01219{font-size:57.600000px;}
.fs6_c01219{font-size:63.000000px;}
.fs5_c01219{font-size:69.000000px;}
.fs3_c01219{font-size:72.000000px;}
.fs7_c01219{font-size:78.000000px;}
.fs8_c01219{font-size:105.000000px;}
.fs1_c01219{font-size:108.000000px;}
.fs2_c01219{font-size:144.000000px;}
.y0_c01219{bottom:0.000000px;}
.y25_c01219{bottom:3.105000px;}
.y24_c01219{bottom:7.228371px;}
.y23_c01219{bottom:36.915000px;}
.y22_c01219{bottom:58.815000px;}
.y21_c01219{bottom:85.515000px;}
.y20_c01219{bottom:110.115000px;}
.y1f_c01219{bottom:135.315000px;}
.y1e_c01219{bottom:159.615000px;}
.y1d_c01219{bottom:184.065000px;}
.y1c_c01219{bottom:208.965000px;}
.y1b_c01219{bottom:233.565000px;}
.y1a_c01219{bottom:257.865000px;}
.y19_c01219{bottom:282.465000px;}
.y18_c01219{bottom:306.765000px;}
.y17_c01219{bottom:331.215000px;}
.y16_c01219{bottom:355.515000px;}
.y15_c01219{bottom:380.115000px;}
.y14_c01219{bottom:404.115000px;}
.y13_c01219{bottom:428.415000px;}
.y12_c01219{bottom:453.015000px;}
.y11_c01219{bottom:477.315000px;}
.y10_c01219{bottom:500.865000px;}
.yf_c01219{bottom:524.865000px;}
.ye_c01219{bottom:548.565000px;}
.yd_c01219{bottom:572.865000px;}
.yc_c01219{bottom:596.715000px;}
.yb_c01219{bottom:621.315000px;}
.ya_c01219{bottom:645.015000px;}
.y9_c01219{bottom:669.615000px;}
.y5_c01219{bottom:687.165000px;}
.y8_c01219{bottom:693.915000px;}
.y7_c01219{bottom:717.915000px;}
.y6_c01219{bottom:742.215000px;}
.y4_c01219{bottom:790.515000px;}
.y3_c01219{bottom:814.515000px;}
.y2_c01219{bottom:839.415000px;}
.y1_c01219{bottom:863.415000px;}
.hb_c01219{height:13.200074px;}
.hc_c01219{height:43.804688px;}
.h2_c01219{height:57.445312px;}
.h7_c01219{height:63.492188px;}
.h6_c01219{height:69.539062px;}
.h8_c01219{height:72.312000px;}
.h5_c01219{height:72.562500px;}
.h9_c01219{height:98.756836px;}
.h3_c01219{height:108.843750px;}
.ha_c01219{height:122.893066px;}
.h4_c01219{height:182.320312px;}
.h1_c01219{height:986.250000px;}
.h0_c01219{height:986.325000px;}
.w2_c01219{width:104.875500px;}
.w0_c01219{width:667.425000px;}
.w1_c01219{width:667.500000px;}
.x0_c01219{left:0.000000px;}
.x11_c01219{left:43.650000px;}
.x13_c01219{left:46.350000px;}
.xf_c01219{left:111.750000px;}
.x7_c01219{left:116.100000px;}
.x1_c01219{left:123.450000px;}
.x2_c01219{left:124.500000px;}
.xb_c01219{left:125.850000px;}
.x8_c01219{left:126.900000px;}
.xc_c01219{left:128.700000px;}
.xd_c01219{left:129.900000px;}
.xe_c01219{left:130.950000px;}
.x10_c01219{left:132.750000px;}
.x12_c01219{left:133.950000px;}
.xa_c01219{left:175.800000px;}
.x9_c01219{left:198.450000px;}
.x15_c01219{left:285.526749px;}
.x3_c01219{left:422.850000px;}
.x4_c01219{left:459.300000px;}
.x5_c01219{left:547.200000px;}
.x14_c01219{left:561.000000px;}
.x6_c01219{left:572.850000px;}
@media print{
.v0_c01219{vertical-align:0.000000pt;}
.ls1_c01219{letter-spacing:0.000000pt;}
.ls2_c01219{letter-spacing:2.666667pt;}
.ls0_c01219{letter-spacing:4.450133pt;}
.ls3_c01219{letter-spacing:8.000000pt;}
.ws6_c01219{word-spacing:-84.720000pt;}
.ws3_c01219{word-spacing:-47.717333pt;}
.ws1_c01219{word-spacing:-46.208000pt;}
.ws2_c01219{word-spacing:-36.966400pt;}
.ws7_c01219{word-spacing:-24.000000pt;}
.ws4_c01219{word-spacing:-18.000000pt;}
.ws0_c01219{word-spacing:-1.570667pt;}
.ws8_c01219{word-spacing:0.000000pt;}
.ws5_c01219{word-spacing:0.050667pt;}
._22_c01219{margin-left:-27.626667pt;}
._13_c01219{margin-left:-22.090667pt;}
._23_c01219{margin-left:-16.752000pt;}
._1f_c01219{margin-left:-12.445333pt;}
._21_c01219{margin-left:-11.464000pt;}
._20_c01219{margin-left:-9.458667pt;}
._16_c01219{margin-left:-7.642667pt;}
._24_c01219{margin-left:-6.432000pt;}
._1b_c01219{margin-left:-5.472000pt;}
._17_c01219{margin-left:-4.197333pt;}
._4_c01219{margin-left:-2.432000pt;}
._d_c01219{margin-left:-1.266667pt;}
._14_c01219{width:1.114667pt;}
._a_c01219{width:2.026667pt;}
._b_c01219{width:3.496000pt;}
._2_c01219{width:4.560000pt;}
._0_c01219{width:5.776000pt;}
._c_c01219{width:7.042667pt;}
._1_c01219{width:8.208000pt;}
._8_c01219{width:9.272000pt;}
._3_c01219{width:10.538667pt;}
._9_c01219{width:11.501333pt;}
._12_c01219{width:12.413333pt;}
._7_c01219{width:13.832000pt;}
._6_c01219{width:15.554667pt;}
._1e_c01219{width:16.568000pt;}
._e_c01219{width:17.480000pt;}
._f_c01219{width:18.797333pt;}
._5_c01219{width:20.216000pt;}
._10_c01219{width:21.381333pt;}
._1a_c01219{width:22.445333pt;}
._15_c01219{width:23.712000pt;}
._11_c01219{width:24.978667pt;}
._1c_c01219{width:41.040000pt;}
._1d_c01219{width:50.557333pt;}
._19_c01219{width:205.250667pt;}
._18_c01219{width:230.138133pt;}
.fs9_c01219{font-size:42.666667pt;}
.fs0_c01219{font-size:50.666667pt;}
.fs4_c01219{font-size:51.200000pt;}
.fs6_c01219{font-size:56.000000pt;}
.fs5_c01219{font-size:61.333333pt;}
.fs3_c01219{font-size:64.000000pt;}
.fs7_c01219{font-size:69.333333pt;}
.fs8_c01219{font-size:93.333333pt;}
.fs1_c01219{font-size:96.000000pt;}
.fs2_c01219{font-size:128.000000pt;}
.y0_c01219{bottom:0.000000pt;}
.y25_c01219{bottom:2.760000pt;}
.y24_c01219{bottom:6.425219pt;}
.y23_c01219{bottom:32.813333pt;}
.y22_c01219{bottom:52.280000pt;}
.y21_c01219{bottom:76.013333pt;}
.y20_c01219{bottom:97.880000pt;}
.y1f_c01219{bottom:120.280000pt;}
.y1e_c01219{bottom:141.880000pt;}
.y1d_c01219{bottom:163.613333pt;}
.y1c_c01219{bottom:185.746667pt;}
.y1b_c01219{bottom:207.613333pt;}
.y1a_c01219{bottom:229.213333pt;}
.y19_c01219{bottom:251.080000pt;}
.y18_c01219{bottom:272.680000pt;}
.y17_c01219{bottom:294.413333pt;}
.y16_c01219{bottom:316.013333pt;}
.y15_c01219{bottom:337.880000pt;}
.y14_c01219{bottom:359.213333pt;}
.y13_c01219{bottom:380.813333pt;}
.y12_c01219{bottom:402.680000pt;}
.y11_c01219{bottom:424.280000pt;}
.y10_c01219{bottom:445.213333pt;}
.yf_c01219{bottom:466.546667pt;}
.ye_c01219{bottom:487.613333pt;}
.yd_c01219{bottom:509.213333pt;}
.yc_c01219{bottom:530.413333pt;}
.yb_c01219{bottom:552.280000pt;}
.ya_c01219{bottom:573.346667pt;}
.y9_c01219{bottom:595.213333pt;}
.y5_c01219{bottom:610.813333pt;}
.y8_c01219{bottom:616.813333pt;}
.y7_c01219{bottom:638.146667pt;}
.y6_c01219{bottom:659.746667pt;}
.y4_c01219{bottom:702.680000pt;}
.y3_c01219{bottom:724.013333pt;}
.y2_c01219{bottom:746.146667pt;}
.y1_c01219{bottom:767.480000pt;}
.hb_c01219{height:11.733399pt;}
.hc_c01219{height:38.937500pt;}
.h2_c01219{height:51.062500pt;}
.h7_c01219{height:56.437500pt;}
.h6_c01219{height:61.812500pt;}
.h8_c01219{height:64.277333pt;}
.h5_c01219{height:64.500000pt;}
.h9_c01219{height:87.783854pt;}
.h3_c01219{height:96.750000pt;}
.ha_c01219{height:109.238281pt;}
.h4_c01219{height:162.062500pt;}
.h1_c01219{height:876.666667pt;}
.h0_c01219{height:876.733333pt;}
.w2_c01219{width:93.222667pt;}
.w0_c01219{width:593.266667pt;}
.w1_c01219{width:593.333333pt;}
.x0_c01219{left:0.000000pt;}
.x11_c01219{left:38.800000pt;}
.x13_c01219{left:41.200000pt;}
.xf_c01219{left:99.333333pt;}
.x7_c01219{left:103.200000pt;}
.x1_c01219{left:109.733333pt;}
.x2_c01219{left:110.666667pt;}
.xb_c01219{left:111.866667pt;}
.x8_c01219{left:112.800000pt;}
.xc_c01219{left:114.400000pt;}
.xd_c01219{left:115.466667pt;}
.xe_c01219{left:116.400000pt;}
.x10_c01219{left:118.000000pt;}
.x12_c01219{left:119.066667pt;}
.xa_c01219{left:156.266667pt;}
.x9_c01219{left:176.400000pt;}
.x15_c01219{left:253.801554pt;}
.x3_c01219{left:375.866667pt;}
.x4_c01219{left:408.266667pt;}
.x5_c01219{left:486.400000pt;}
.x14_c01219{left:498.666667pt;}
.x6_c01219{left:509.200000pt;}
}





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

.ir_c01220:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01220{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01220;src:url('chunks/assets/font_6fcd380c4cef309eb2f492b1.woff2')format("woff");}.ff1_c01220{font-family:ff1_c01220;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01220;src:url('chunks/assets/font_8ab1a85c5dad2aa9720346a0.woff2')format("woff");}.ff2_c01220{font-family:ff2_c01220;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01220;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff3_c01220{font-family:ff3_c01220;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01220;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff4_c01220{font-family:ff4_c01220;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01220{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01220{vertical-align:0.000000px;}
.ls0_c01220{letter-spacing:0.000000px;}
.sc__c01220{text-shadow:none;}
.sc0_c01220{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01220{-webkit-text-stroke:0px transparent;}
.sc0_c01220{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01220{word-spacing:-17.352000px;}
.ws1_c01220{word-spacing:0.000000px;}
._16_c01220{margin-left:-26.325000px;}
._14_c01220{margin-left:-21.303000px;}
._17_c01220{margin-left:-16.698000px;}
._d_c01220{margin-left:-15.471000px;}
._1f_c01220{margin-left:-11.745000px;}
._20_c01220{margin-left:-10.044000px;}
._23_c01220{margin-left:-8.613000px;}
._1_c01220{margin-left:-7.452000px;}
._4_c01220{margin-left:-5.589000px;}
._10_c01220{margin-left:-4.455000px;}
._6_c01220{margin-left:-2.835000px;}
._7_c01220{margin-left:-1.782000px;}
._5_c01220{width:1.215000px;}
._3_c01220{width:2.349000px;}
._2_c01220{width:4.212000px;}
._0_c01220{width:5.427000px;}
._a_c01220{width:6.642000px;}
._b_c01220{width:8.100000px;}
._9_c01220{width:9.234000px;}
._8_c01220{width:10.368000px;}
._c_c01220{width:12.231000px;}
._e_c01220{width:13.446000px;}
._25_c01220{width:16.008000px;}
._f_c01220{width:17.052000px;}
._22_c01220{width:18.666000px;}
._24_c01220{width:20.097000px;}
._1a_c01220{width:22.773000px;}
._19_c01220{width:24.099000px;}
._12_c01220{width:25.731000px;}
._15_c01220{width:51.111000px;}
._13_c01220{width:52.488000px;}
._18_c01220{width:57.024000px;}
._1e_c01220{width:75.735000px;}
._1d_c01220{width:128.628000px;}
._21_c01220{width:138.675000px;}
._11_c01220{width:160.704000px;}
._1b_c01220{width:196.992000px;}
._26_c01220{width:310.743000px;}
._1c_c01220{width:321.003000px;}
.fc2_c01220{color:transparent;}
.fc1_c01220{color:rgb(128,128,128);}
.fc0_c01220{color:rgb(0,0,0);}
.fs2_c01220{font-size:48.000000px;}
.fs1_c01220{font-size:72.000000px;}
.fs0_c01220{font-size:81.000000px;}
.y0_c01220{bottom:0.000000px;}
.y25_c01220{bottom:3.105000px;}
.y24_c01220{bottom:7.228357px;}
.y23_c01220{bottom:76.980000px;}
.y22_c01220{bottom:100.980000px;}
.y21_c01220{bottom:125.880000px;}
.y20_c01220{bottom:150.480000px;}
.y1f_c01220{bottom:174.930000px;}
.y1e_c01220{bottom:199.530000px;}
.y1d_c01220{bottom:223.830000px;}
.y1c_c01220{bottom:248.130000px;}
.y1b_c01220{bottom:272.430000px;}
.y1a_c01220{bottom:296.730000px;}
.y19_c01220{bottom:321.030000px;}
.y18_c01220{bottom:345.030000px;}
.y17_c01220{bottom:369.630000px;}
.y16_c01220{bottom:393.630000px;}
.y15_c01220{bottom:417.780000px;}
.y14_c01220{bottom:441.480000px;}
.y13_c01220{bottom:465.480000px;}
.y12_c01220{bottom:489.780000px;}
.y11_c01220{bottom:513.780000px;}
.y10_c01220{bottom:537.030000px;}
.yf_c01220{bottom:560.580000px;}
.ye_c01220{bottom:584.880000px;}
.yd_c01220{bottom:608.280000px;}
.yc_c01220{bottom:632.130000px;}
.yb_c01220{bottom:656.130000px;}
.ya_c01220{bottom:679.830000px;}
.y9_c01220{bottom:704.280000px;}
.y8_c01220{bottom:728.280000px;}
.y7_c01220{bottom:752.280000px;}
.y6_c01220{bottom:776.280000px;}
.y5_c01220{bottom:801.180000px;}
.y4_c01220{bottom:824.130000px;}
.y3_c01220{bottom:848.430000px;}
.y2_c01220{bottom:871.830000px;}
.y1_c01220{bottom:896.430000px;}
.h4_c01220{height:13.200074px;}
.h5_c01220{height:43.804688px;}
.h1_c01220{height:79.497070px;}
.h2_c01220{height:84.269531px;}
.h3_c01220{height:91.160156px;}
.h0_c01220{height:968.250000px;}
.w2_c01220{width:104.875500px;}
.w1_c01220{width:659.250000px;}
.w0_c01220{width:659.325000px;}
.x0_c01220{left:0.000000px;}
.x1_c01220{left:49.500000px;}
.x2_c01220{left:50.550000px;}
.x6_c01220{left:51.600000px;}
.x3_c01220{left:52.650000px;}
.x4_c01220{left:54.300000px;}
.x5_c01220{left:77.700000px;}
.x8_c01220{left:281.476730px;}
.x7_c01220{left:355.350000px;}
@media print{
.v0_c01220{vertical-align:0.000000pt;}
.ls0_c01220{letter-spacing:0.000000pt;}
.ws0_c01220{word-spacing:-15.424000pt;}
.ws1_c01220{word-spacing:0.000000pt;}
._16_c01220{margin-left:-23.400000pt;}
._14_c01220{margin-left:-18.936000pt;}
._17_c01220{margin-left:-14.842667pt;}
._d_c01220{margin-left:-13.752000pt;}
._1f_c01220{margin-left:-10.440000pt;}
._20_c01220{margin-left:-8.928000pt;}
._23_c01220{margin-left:-7.656000pt;}
._1_c01220{margin-left:-6.624000pt;}
._4_c01220{margin-left:-4.968000pt;}
._10_c01220{margin-left:-3.960000pt;}
._6_c01220{margin-left:-2.520000pt;}
._7_c01220{margin-left:-1.584000pt;}
._5_c01220{width:1.080000pt;}
._3_c01220{width:2.088000pt;}
._2_c01220{width:3.744000pt;}
._0_c01220{width:4.824000pt;}
._a_c01220{width:5.904000pt;}
._b_c01220{width:7.200000pt;}
._9_c01220{width:8.208000pt;}
._8_c01220{width:9.216000pt;}
._c_c01220{width:10.872000pt;}
._e_c01220{width:11.952000pt;}
._25_c01220{width:14.229333pt;}
._f_c01220{width:15.157333pt;}
._22_c01220{width:16.592000pt;}
._24_c01220{width:17.864000pt;}
._1a_c01220{width:20.242667pt;}
._19_c01220{width:21.421333pt;}
._12_c01220{width:22.872000pt;}
._15_c01220{width:45.432000pt;}
._13_c01220{width:46.656000pt;}
._18_c01220{width:50.688000pt;}
._1e_c01220{width:67.320000pt;}
._1d_c01220{width:114.336000pt;}
._21_c01220{width:123.266667pt;}
._11_c01220{width:142.848000pt;}
._1b_c01220{width:175.104000pt;}
._26_c01220{width:276.216000pt;}
._1c_c01220{width:285.336000pt;}
.fs2_c01220{font-size:42.666667pt;}
.fs1_c01220{font-size:64.000000pt;}
.fs0_c01220{font-size:72.000000pt;}
.y0_c01220{bottom:0.000000pt;}
.y25_c01220{bottom:2.760000pt;}
.y24_c01220{bottom:6.425206pt;}
.y23_c01220{bottom:68.426667pt;}
.y22_c01220{bottom:89.760000pt;}
.y21_c01220{bottom:111.893333pt;}
.y20_c01220{bottom:133.760000pt;}
.y1f_c01220{bottom:155.493333pt;}
.y1e_c01220{bottom:177.360000pt;}
.y1d_c01220{bottom:198.960000pt;}
.y1c_c01220{bottom:220.560000pt;}
.y1b_c01220{bottom:242.160000pt;}
.y1a_c01220{bottom:263.760000pt;}
.y19_c01220{bottom:285.360000pt;}
.y18_c01220{bottom:306.693333pt;}
.y17_c01220{bottom:328.560000pt;}
.y16_c01220{bottom:349.893333pt;}
.y15_c01220{bottom:371.360000pt;}
.y14_c01220{bottom:392.426667pt;}
.y13_c01220{bottom:413.760000pt;}
.y12_c01220{bottom:435.360000pt;}
.y11_c01220{bottom:456.693333pt;}
.y10_c01220{bottom:477.360000pt;}
.yf_c01220{bottom:498.293333pt;}
.ye_c01220{bottom:519.893333pt;}
.yd_c01220{bottom:540.693333pt;}
.yc_c01220{bottom:561.893333pt;}
.yb_c01220{bottom:583.226667pt;}
.ya_c01220{bottom:604.293333pt;}
.y9_c01220{bottom:626.026667pt;}
.y8_c01220{bottom:647.360000pt;}
.y7_c01220{bottom:668.693333pt;}
.y6_c01220{bottom:690.026667pt;}
.y5_c01220{bottom:712.160000pt;}
.y4_c01220{bottom:732.560000pt;}
.y3_c01220{bottom:754.160000pt;}
.y2_c01220{bottom:774.960000pt;}
.y1_c01220{bottom:796.826667pt;}
.h4_c01220{height:11.733399pt;}
.h5_c01220{height:38.937500pt;}
.h1_c01220{height:70.664062pt;}
.h2_c01220{height:74.906250pt;}
.h3_c01220{height:81.031250pt;}
.h0_c01220{height:860.666667pt;}
.w2_c01220{width:93.222667pt;}
.w1_c01220{width:586.000000pt;}
.w0_c01220{width:586.066667pt;}
.x0_c01220{left:0.000000pt;}
.x1_c01220{left:44.000000pt;}
.x2_c01220{left:44.933333pt;}
.x6_c01220{left:45.866667pt;}
.x3_c01220{left:46.800000pt;}
.x4_c01220{left:48.266667pt;}
.x5_c01220{left:69.066667pt;}
.x8_c01220{left:250.201538pt;}
.x7_c01220{left:315.866667pt;}
}





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

.ir_c01221:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01221{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01221;src:url('chunks/assets/font_2977a7f5b1f86cecee708cfc.woff2')format("woff");}.ff1_c01221{font-family:ff1_c01221;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01221;src:url('chunks/assets/font_b7e674102ec867362ce0a1c4.woff2')format("woff");}.ff2_c01221{font-family:ff2_c01221;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01221;src:url('chunks/assets/font_54a5c30968bec12a24d0c226.woff2')format("woff");}.ff3_c01221{font-family:ff3_c01221;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01221;src:url('chunks/assets/font_fd672ddab36e3101b0dbb0f4.woff2')format("woff");}.ff4_c01221{font-family:ff4_c01221;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01221;src:url('chunks/assets/font_640b7c4b7e08da7ba7783f9d.woff2')format("woff");}.ff5_c01221{font-family:ff5_c01221;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01221;src:url('chunks/assets/font_84b61b2e1525494b4d494540.woff2')format("woff");}.ff6_c01221{font-family:ff6_c01221;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01221;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c01221{font-family:ff7_c01221;line-height:1.219238;font-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_c01221{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m0_c01221{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01221{vertical-align:0.000000px;}
.ls1_c01221{letter-spacing:0.000000px;}
.ls0_c01221{letter-spacing:3.000000px;}
.ls2_c01221{letter-spacing:12.000000px;}
.sc__c01221{text-shadow:none;}
.sc0_c01221{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01221{-webkit-text-stroke:0px transparent;}
.sc0_c01221{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c01221{word-spacing:-20.250000px;}
.ws0_c01221{word-spacing:-17.352000px;}
.ws3_c01221{word-spacing:-13.737000px;}
.ws1_c01221{word-spacing:-0.720000px;}
.ws6_c01221{word-spacing:0.000000px;}
.ws4_c01221{word-spacing:0.057000px;}
.ws2_c01221{word-spacing:26.244000px;}
._17_c01221{margin-left:-20.499000px;}
._15_c01221{margin-left:-17.253000px;}
._19_c01221{margin-left:-14.256000px;}
._12_c01221{margin-left:-13.143000px;}
._1a_c01221{margin-left:-11.679000px;}
._b_c01221{margin-left:-9.864000px;}
._1f_c01221{margin-left:-8.841000px;}
._f_c01221{margin-left:-7.371000px;}
._7_c01221{margin-left:-5.508000px;}
._3_c01221{margin-left:-3.888000px;}
._2_c01221{margin-left:-1.944000px;}
._8_c01221{width:1.053000px;}
._1_c01221{width:2.673000px;}
._0_c01221{width:4.212000px;}
._4_c01221{width:5.751000px;}
._6_c01221{width:7.776000px;}
._9_c01221{width:8.991000px;}
._11_c01221{width:10.311000px;}
._c_c01221{width:11.583000px;}
._10_c01221{width:12.879000px;}
._5_c01221{width:14.823000px;}
._a_c01221{width:16.497000px;}
._13_c01221{width:18.792000px;}
._d_c01221{width:22.170000px;}
._1e_c01221{width:23.586000px;}
._1d_c01221{width:25.758000px;}
._20_c01221{width:31.560000px;}
._1c_c01221{width:41.472000px;}
._1b_c01221{width:66.582000px;}
._16_c01221{width:89.829000px;}
._14_c01221{width:164.835000px;}
._e_c01221{width:165.969000px;}
._18_c01221{width:222.426000px;}
._21_c01221{width:281.499000px;}
.fc2_c01221{color:transparent;}
.fc1_c01221{color:rgb(128,128,128);}
.fc0_c01221{color:rgb(0,0,0);}
.fs8_c01221{font-size:48.000000px;}
.fs1_c01221{font-size:54.000000px;}
.fs3_c01221{font-size:57.000000px;}
.fs4_c01221{font-size:63.000000px;}
.fs2_c01221{font-size:72.000000px;}
.fs6_c01221{font-size:78.000000px;}
.fs0_c01221{font-size:81.000000px;}
.fs5_c01221{font-size:87.000000px;}
.fs7_c01221{font-size:108.000000px;}
.y0_c01221{bottom:0.000000px;}
.y25_c01221{bottom:3.105000px;}
.y24_c01221{bottom:7.228371px;}
.y23_c01221{bottom:81.465000px;}
.y22_c01221{bottom:104.415000px;}
.y21_c01221{bottom:129.315000px;}
.y20_c01221{bottom:154.965000px;}
.y1f_c01221{bottom:178.665000px;}
.y1e_c01221{bottom:202.515000px;}
.y1d_c01221{bottom:226.215000px;}
.y1c_c01221{bottom:251.115000px;}
.y1b_c01221{bottom:275.415000px;}
.y1a_c01221{bottom:302.115000px;}
.y19_c01221{bottom:324.315000px;}
.y18_c01221{bottom:348.315000px;}
.y17_c01221{bottom:372.315000px;}
.y16_c01221{bottom:396.915000px;}
.y15_c01221{bottom:421.065000px;}
.y14_c01221{bottom:444.915000px;}
.y13_c01221{bottom:468.765000px;}
.y12_c01221{bottom:492.765000px;}
.y11_c01221{bottom:515.115000px;}
.y10_c01221{bottom:541.065000px;}
.yf_c01221{bottom:564.615000px;}
.ye_c01221{bottom:588.615000px;}
.yd_c01221{bottom:613.365000px;}
.yc_c01221{bottom:636.915000px;}
.yb_c01221{bottom:660.615000px;}
.ya_c01221{bottom:684.915000px;}
.y9_c01221{bottom:709.215000px;}
.y8_c01221{bottom:733.515000px;}
.y7_c01221{bottom:758.115000px;}
.y6_c01221{bottom:782.415000px;}
.y5_c01221{bottom:805.065000px;}
.y4_c01221{bottom:829.965000px;}
.y3_c01221{bottom:853.215000px;}
.y2_c01221{bottom:877.215000px;}
.y1_c01221{bottom:901.215000px;}
.h9_c01221{height:13.200074px;}
.ha_c01221{height:43.804688px;}
.h5_c01221{height:66.713379px;}
.h7_c01221{height:72.168457px;}
.h2_c01221{height:79.497070px;}
.h3_c01221{height:84.269531px;}
.h6_c01221{height:98.756836px;}
.h8_c01221{height:108.843750px;}
.h4_c01221{height:110.151855px;}
.h1_c01221{height:986.250000px;}
.h0_c01221{height:986.325000px;}
.w2_c01221{width:104.875500px;}
.w0_c01221{width:667.425000px;}
.w1_c01221{width:667.500000px;}
.x0_c01221{left:0.000000px;}
.x6_c01221{left:28.650000px;}
.x9_c01221{left:30.750000px;}
.x2_c01221{left:32.700000px;}
.x5_c01221{left:49.650000px;}
.x1_c01221{left:118.050000px;}
.x3_c01221{left:120.750000px;}
.x4_c01221{left:121.800000px;}
.x7_c01221{left:122.850000px;}
.x8_c01221{left:124.800000px;}
.xc_c01221{left:285.526749px;}
.xa_c01221{left:361.500000px;}
.xb_c01221{left:563.250000px;}
@media print{
.v0_c01221{vertical-align:0.000000pt;}
.ls1_c01221{letter-spacing:0.000000pt;}
.ls0_c01221{letter-spacing:2.666667pt;}
.ls2_c01221{letter-spacing:10.666667pt;}
.ws5_c01221{word-spacing:-18.000000pt;}
.ws0_c01221{word-spacing:-15.424000pt;}
.ws3_c01221{word-spacing:-12.210667pt;}
.ws1_c01221{word-spacing:-0.640000pt;}
.ws6_c01221{word-spacing:0.000000pt;}
.ws4_c01221{word-spacing:0.050667pt;}
.ws2_c01221{word-spacing:23.328000pt;}
._17_c01221{margin-left:-18.221333pt;}
._15_c01221{margin-left:-15.336000pt;}
._19_c01221{margin-left:-12.672000pt;}
._12_c01221{margin-left:-11.682667pt;}
._1a_c01221{margin-left:-10.381333pt;}
._b_c01221{margin-left:-8.768000pt;}
._1f_c01221{margin-left:-7.858667pt;}
._f_c01221{margin-left:-6.552000pt;}
._7_c01221{margin-left:-4.896000pt;}
._3_c01221{margin-left:-3.456000pt;}
._2_c01221{margin-left:-1.728000pt;}
._8_c01221{width:0.936000pt;}
._1_c01221{width:2.376000pt;}
._0_c01221{width:3.744000pt;}
._4_c01221{width:5.112000pt;}
._6_c01221{width:6.912000pt;}
._9_c01221{width:7.992000pt;}
._11_c01221{width:9.165333pt;}
._c_c01221{width:10.296000pt;}
._10_c01221{width:11.448000pt;}
._5_c01221{width:13.176000pt;}
._a_c01221{width:14.664000pt;}
._13_c01221{width:16.704000pt;}
._d_c01221{width:19.706667pt;}
._1e_c01221{width:20.965333pt;}
._1d_c01221{width:22.896000pt;}
._20_c01221{width:28.053333pt;}
._1c_c01221{width:36.864000pt;}
._1b_c01221{width:59.184000pt;}
._16_c01221{width:79.848000pt;}
._14_c01221{width:146.520000pt;}
._e_c01221{width:147.528000pt;}
._18_c01221{width:197.712000pt;}
._21_c01221{width:250.221333pt;}
.fs8_c01221{font-size:42.666667pt;}
.fs1_c01221{font-size:48.000000pt;}
.fs3_c01221{font-size:50.666667pt;}
.fs4_c01221{font-size:56.000000pt;}
.fs2_c01221{font-size:64.000000pt;}
.fs6_c01221{font-size:69.333333pt;}
.fs0_c01221{font-size:72.000000pt;}
.fs5_c01221{font-size:77.333333pt;}
.fs7_c01221{font-size:96.000000pt;}
.y0_c01221{bottom:0.000000pt;}
.y25_c01221{bottom:2.760000pt;}
.y24_c01221{bottom:6.425219pt;}
.y23_c01221{bottom:72.413333pt;}
.y22_c01221{bottom:92.813333pt;}
.y21_c01221{bottom:114.946667pt;}
.y20_c01221{bottom:137.746667pt;}
.y1f_c01221{bottom:158.813333pt;}
.y1e_c01221{bottom:180.013333pt;}
.y1d_c01221{bottom:201.080000pt;}
.y1c_c01221{bottom:223.213333pt;}
.y1b_c01221{bottom:244.813333pt;}
.y1a_c01221{bottom:268.546667pt;}
.y19_c01221{bottom:288.280000pt;}
.y18_c01221{bottom:309.613333pt;}
.y17_c01221{bottom:330.946667pt;}
.y16_c01221{bottom:352.813333pt;}
.y15_c01221{bottom:374.280000pt;}
.y14_c01221{bottom:395.480000pt;}
.y13_c01221{bottom:416.680000pt;}
.y12_c01221{bottom:438.013333pt;}
.y11_c01221{bottom:457.880000pt;}
.y10_c01221{bottom:480.946667pt;}
.yf_c01221{bottom:501.880000pt;}
.ye_c01221{bottom:523.213333pt;}
.yd_c01221{bottom:545.213333pt;}
.yc_c01221{bottom:566.146667pt;}
.yb_c01221{bottom:587.213333pt;}
.ya_c01221{bottom:608.813333pt;}
.y9_c01221{bottom:630.413333pt;}
.y8_c01221{bottom:652.013333pt;}
.y7_c01221{bottom:673.880000pt;}
.y6_c01221{bottom:695.480000pt;}
.y5_c01221{bottom:715.613333pt;}
.y4_c01221{bottom:737.746667pt;}
.y3_c01221{bottom:758.413333pt;}
.y2_c01221{bottom:779.746667pt;}
.y1_c01221{bottom:801.080000pt;}
.h9_c01221{height:11.733399pt;}
.ha_c01221{height:38.937500pt;}
.h5_c01221{height:59.300781pt;}
.h7_c01221{height:64.149740pt;}
.h2_c01221{height:70.664062pt;}
.h3_c01221{height:74.906250pt;}
.h6_c01221{height:87.783854pt;}
.h8_c01221{height:96.750000pt;}
.h4_c01221{height:97.912760pt;}
.h1_c01221{height:876.666667pt;}
.h0_c01221{height:876.733333pt;}
.w2_c01221{width:93.222667pt;}
.w0_c01221{width:593.266667pt;}
.w1_c01221{width:593.333333pt;}
.x0_c01221{left:0.000000pt;}
.x6_c01221{left:25.466667pt;}
.x9_c01221{left:27.333333pt;}
.x2_c01221{left:29.066667pt;}
.x5_c01221{left:44.133333pt;}
.x1_c01221{left:104.933333pt;}
.x3_c01221{left:107.333333pt;}
.x4_c01221{left:108.266667pt;}
.x7_c01221{left:109.200000pt;}
.x8_c01221{left:110.933333pt;}
.xc_c01221{left:253.801554pt;}
.xa_c01221{left:321.333333pt;}
.xb_c01221{left:500.666667pt;}
}





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

.ir_c01222:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01222{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01222;src:url('chunks/assets/font_b3522ebbb39b95c8ae7cf2b2.woff2')format("woff");}.ff1_c01222{font-family:ff1_c01222;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01222;src:url('chunks/assets/font_dd3f967e5c5dd52a7fd5c816.woff2')format("woff");}.ff2_c01222{font-family:ff2_c01222;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01222;src:url('chunks/assets/font_fbefd452a6cd2785f74ab8ba.woff2')format("woff");}.ff3_c01222{font-family:ff3_c01222;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01222;src:url('chunks/assets/font_200bc3f05bc7003f9429d162.woff2')format("woff");}.ff4_c01222{font-family:ff4_c01222;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01222;src:url('chunks/assets/font_1e0474f9dd20be84a50f7225.woff2')format("woff");}.ff5_c01222{font-family:ff5_c01222;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01222;src:url('chunks/assets/font_d9ff6385dcbb6cb9ab259840.woff2')format("woff");}.ff6_c01222{font-family:ff6_c01222;line-height:1.311035;font-style:normal;font-weight: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_c01222;src:url('chunks/assets/font_20667068351d452e219a596d.woff2')format("woff");}.ff7_c01222{font-family:ff7_c01222;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c01222;src:url('chunks/assets/font_f92484f045477e5b9cecb9de.woff2')format("woff");}.ff8_c01222{font-family:ff8_c01222;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c01222;src:url('chunks/assets/font_63bad184208cc5638f23b9e9.woff2')format("woff");}.ff9_c01222{font-family:ff9_c01222;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c01222;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ffa_c01222{font-family:ffa_c01222;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01222{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2_c01222{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m1_c01222{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m3_c01222{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.v1_c01222{vertical-align:-15.000000px;}
.v0_c01222{vertical-align:0.000000px;}
.ls6_c01222{letter-spacing:-9.000000px;}
.ls4_c01222{letter-spacing:0.000000px;}
.ls5_c01222{letter-spacing:3.000000px;}
.ls0_c01222{letter-spacing:3.021600px;}
.ls1_c01222{letter-spacing:4.950000px;}
.ls2_c01222{letter-spacing:6.750000px;}
.ls3_c01222{letter-spacing:188.580000px;}
.sc__c01222{text-shadow:none;}
.sc0_c01222{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01222{-webkit-text-stroke:0px transparent;}
.sc0_c01222{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c01222{word-spacing:-21.798000px;}
.ws1_c01222{word-spacing:-20.250000px;}
.ws2_c01222{word-spacing:-17.250000px;}
.ws0_c01222{word-spacing:-16.200000px;}
.ws5_c01222{word-spacing:-15.000000px;}
.ws6_c01222{word-spacing:-13.737000px;}
.ws3_c01222{word-spacing:-9.000000px;}
.ws7_c01222{word-spacing:0.000000px;}
._14_c01222{margin-left:-33.366600px;}
._7_c01222{margin-left:-28.458000px;}
._1a_c01222{margin-left:-26.244000px;}
._4_c01222{margin-left:-17.748000px;}
._11_c01222{margin-left:-14.445000px;}
._3_c01222{margin-left:-11.934000px;}
._2_c01222{margin-left:-10.302000px;}
._1d_c01222{margin-left:-8.928000px;}
._15_c01222{margin-left:-7.779000px;}
._e_c01222{margin-left:-6.381000px;}
._1b_c01222{margin-left:-5.376000px;}
._c_c01222{margin-left:-4.359000px;}
._b_c01222{margin-left:-3.138000px;}
._a_c01222{margin-left:-2.007000px;}
._1_c01222{width:1.734000px;}
._0_c01222{width:3.060000px;}
._9_c01222{width:4.794000px;}
._d_c01222{width:5.988000px;}
._6_c01222{width:7.242000px;}
._12_c01222{width:8.301000px;}
._10_c01222{width:9.618000px;}
._f_c01222{width:10.752000px;}
._5_c01222{width:12.342000px;}
._18_c01222{width:13.371000px;}
._16_c01222{width:14.832000px;}
._13_c01222{width:16.059000px;}
._19_c01222{width:19.029000px;}
._1c_c01222{width:28.428000px;}
._1e_c01222{width:30.942000px;}
._17_c01222{width:41.844000px;}
._8_c01222{width:206.856000px;}
._1f_c01222{width:246.516000px;}
.fc2_c01222{color:transparent;}
.fc1_c01222{color:rgb(128,128,128);}
.fc0_c01222{color:rgb(0,0,0);}
.fs4_c01222{font-size:36.000000px;}
.fs8_c01222{font-size:48.000000px;}
.fs7_c01222{font-size:57.000000px;}
.fs6_c01222{font-size:60.000000px;}
.fs2_c01222{font-size:64.800000px;}
.fs3_c01222{font-size:69.000000px;}
.fs5_c01222{font-size:78.000000px;}
.fs0_c01222{font-size:81.000000px;}
.fs1_c01222{font-size:102.000000px;}
.y0_c01222{bottom:0.000000px;}
.y26_c01222{bottom:3.105000px;}
.y25_c01222{bottom:7.228369px;}
.y24_c01222{bottom:69.420000px;}
.y23_c01222{bottom:93.420000px;}
.y22_c01222{bottom:119.070000px;}
.y21_c01222{bottom:147.120000px;}
.y20_c01222{bottom:168.720000px;}
.y1f_c01222{bottom:189.720000px;}
.y1e_c01222{bottom:214.920000px;}
.y1d_c01222{bottom:239.670000px;}
.y1c_c01222{bottom:264.270000px;}
.y1b_c01222{bottom:287.820000px;}
.y1a_c01222{bottom:312.570000px;}
.y19_c01222{bottom:336.120000px;}
.y18_c01222{bottom:384.720000px;}
.y17_c01222{bottom:408.270000px;}
.y16_c01222{bottom:432.720000px;}
.y15_c01222{bottom:456.570000px;}
.y14_c01222{bottom:480.270000px;}
.y13_c01222{bottom:504.570000px;}
.y12_c01222{bottom:528.120000px;}
.y11_c01222{bottom:551.520000px;}
.y10_c01222{bottom:575.070000px;}
.yf_c01222{bottom:599.370000px;}
.ye_c01222{bottom:622.320000px;}
.yd_c01222{bottom:646.020000px;}
.yc_c01222{bottom:669.870000px;}
.yb_c01222{bottom:694.170000px;}
.ya_c01222{bottom:717.120000px;}
.y9_c01222{bottom:742.170000px;}
.y8_c01222{bottom:765.120000px;}
.y7_c01222{bottom:789.420000px;}
.y6_c01222{bottom:813.420000px;}
.y5_c01222{bottom:838.920000px;}
.y4_c01222{bottom:861.270000px;}
.y3_c01222{bottom:885.270000px;}
.y2_c01222{bottom:922.020000px;}
.y1_c01222{bottom:949.320000px;}
.h9_c01222{height:13.200073px;}
.h5_c01222{height:36.281250px;}
.ha_c01222{height:43.804688px;}
.h4_c01222{height:72.312000px;}
.h7_c01222{height:75.966797px;}
.h2_c01222{height:79.497070px;}
.h6_c01222{height:98.756836px;}
.h3_c01222{height:100.057617px;}
.h8_c01222{height:104.839927px;}
.h1_c01222{height:986.250000px;}
.h0_c01222{height:986.550000px;}
.w1_c01222{width:104.875500px;}
.w0_c01222{width:672.000000px;}
.x0_c01222{left:0.000000px;}
.x7_c01222{left:61.200000px;}
.xd_c01222{left:62.700000px;}
.x8_c01222{left:63.900000px;}
.x5_c01222{left:65.100000px;}
.x4_c01222{left:66.150000px;}
.x3_c01222{left:67.950000px;}
.xf_c01222{left:69.900000px;}
.x6_c01222{left:92.100000px;}
.xe_c01222{left:128.250000px;}
.x2_c01222{left:132.150000px;}
.xc_c01222{left:136.050000px;}
.x11_c01222{left:287.814240px;}
.x10_c01222{left:385.200000px;}
.x9_c01222{left:414.750000px;}
.xa_c01222{left:438.750000px;}
.x1_c01222{left:488.250000px;}
.xb_c01222{left:498.150000px;}
@media print{
.v1_c01222{vertical-align:-13.333333pt;}
.v0_c01222{vertical-align:0.000000pt;}
.ls6_c01222{letter-spacing:-8.000000pt;}
.ls4_c01222{letter-spacing:0.000000pt;}
.ls5_c01222{letter-spacing:2.666667pt;}
.ls0_c01222{letter-spacing:2.685867pt;}
.ls1_c01222{letter-spacing:4.400000pt;}
.ls2_c01222{letter-spacing:6.000000pt;}
.ls3_c01222{letter-spacing:167.626667pt;}
.ws4_c01222{word-spacing:-19.376000pt;}
.ws1_c01222{word-spacing:-18.000000pt;}
.ws2_c01222{word-spacing:-15.333333pt;}
.ws0_c01222{word-spacing:-14.400000pt;}
.ws5_c01222{word-spacing:-13.333333pt;}
.ws6_c01222{word-spacing:-12.210667pt;}
.ws3_c01222{word-spacing:-8.000000pt;}
.ws7_c01222{word-spacing:0.000000pt;}
._14_c01222{margin-left:-29.659200pt;}
._7_c01222{margin-left:-25.296000pt;}
._1a_c01222{margin-left:-23.328000pt;}
._4_c01222{margin-left:-15.776000pt;}
._11_c01222{margin-left:-12.840000pt;}
._3_c01222{margin-left:-10.608000pt;}
._2_c01222{margin-left:-9.157333pt;}
._1d_c01222{margin-left:-7.936000pt;}
._15_c01222{margin-left:-6.914667pt;}
._e_c01222{margin-left:-5.672000pt;}
._1b_c01222{margin-left:-4.778667pt;}
._c_c01222{margin-left:-3.874667pt;}
._b_c01222{margin-left:-2.789333pt;}
._a_c01222{margin-left:-1.784000pt;}
._1_c01222{width:1.541333pt;}
._0_c01222{width:2.720000pt;}
._9_c01222{width:4.261333pt;}
._d_c01222{width:5.322667pt;}
._6_c01222{width:6.437333pt;}
._12_c01222{width:7.378667pt;}
._10_c01222{width:8.549333pt;}
._f_c01222{width:9.557333pt;}
._5_c01222{width:10.970667pt;}
._18_c01222{width:11.885333pt;}
._16_c01222{width:13.184000pt;}
._13_c01222{width:14.274667pt;}
._19_c01222{width:16.914667pt;}
._1c_c01222{width:25.269333pt;}
._1e_c01222{width:27.504000pt;}
._17_c01222{width:37.194667pt;}
._8_c01222{width:183.872000pt;}
._1f_c01222{width:219.125333pt;}
.fs4_c01222{font-size:32.000000pt;}
.fs8_c01222{font-size:42.666667pt;}
.fs7_c01222{font-size:50.666667pt;}
.fs6_c01222{font-size:53.333333pt;}
.fs2_c01222{font-size:57.600000pt;}
.fs3_c01222{font-size:61.333333pt;}
.fs5_c01222{font-size:69.333333pt;}
.fs0_c01222{font-size:72.000000pt;}
.fs1_c01222{font-size:90.666667pt;}
.y0_c01222{bottom:0.000000pt;}
.y26_c01222{bottom:2.760000pt;}
.y25_c01222{bottom:6.425217pt;}
.y24_c01222{bottom:61.706667pt;}
.y23_c01222{bottom:83.040000pt;}
.y22_c01222{bottom:105.840000pt;}
.y21_c01222{bottom:130.773333pt;}
.y20_c01222{bottom:149.973333pt;}
.y1f_c01222{bottom:168.640000pt;}
.y1e_c01222{bottom:191.040000pt;}
.y1d_c01222{bottom:213.040000pt;}
.y1c_c01222{bottom:234.906667pt;}
.y1b_c01222{bottom:255.840000pt;}
.y1a_c01222{bottom:277.840000pt;}
.y19_c01222{bottom:298.773333pt;}
.y18_c01222{bottom:341.973333pt;}
.y17_c01222{bottom:362.906667pt;}
.y16_c01222{bottom:384.640000pt;}
.y15_c01222{bottom:405.840000pt;}
.y14_c01222{bottom:426.906667pt;}
.y13_c01222{bottom:448.506667pt;}
.y12_c01222{bottom:469.440000pt;}
.y11_c01222{bottom:490.240000pt;}
.y10_c01222{bottom:511.173333pt;}
.yf_c01222{bottom:532.773333pt;}
.ye_c01222{bottom:553.173333pt;}
.yd_c01222{bottom:574.240000pt;}
.yc_c01222{bottom:595.440000pt;}
.yb_c01222{bottom:617.040000pt;}
.ya_c01222{bottom:637.440000pt;}
.y9_c01222{bottom:659.706667pt;}
.y8_c01222{bottom:680.106667pt;}
.y7_c01222{bottom:701.706667pt;}
.y6_c01222{bottom:723.040000pt;}
.y5_c01222{bottom:745.706667pt;}
.y4_c01222{bottom:765.573333pt;}
.y3_c01222{bottom:786.906667pt;}
.y2_c01222{bottom:819.573333pt;}
.y1_c01222{bottom:843.840000pt;}
.h9_c01222{height:11.733399pt;}
.h5_c01222{height:32.250000pt;}
.ha_c01222{height:38.937500pt;}
.h4_c01222{height:64.277333pt;}
.h7_c01222{height:67.526042pt;}
.h2_c01222{height:70.664062pt;}
.h6_c01222{height:87.783854pt;}
.h3_c01222{height:88.940104pt;}
.h8_c01222{height:93.191046pt;}
.h1_c01222{height:876.666667pt;}
.h0_c01222{height:876.933333pt;}
.w1_c01222{width:93.222667pt;}
.w0_c01222{width:597.333333pt;}
.x0_c01222{left:0.000000pt;}
.x7_c01222{left:54.400000pt;}
.xd_c01222{left:55.733333pt;}
.x8_c01222{left:56.800000pt;}
.x5_c01222{left:57.866667pt;}
.x4_c01222{left:58.800000pt;}
.x3_c01222{left:60.400000pt;}
.xf_c01222{left:62.133333pt;}
.x6_c01222{left:81.866667pt;}
.xe_c01222{left:114.000000pt;}
.x2_c01222{left:117.466667pt;}
.xc_c01222{left:120.933333pt;}
.x11_c01222{left:255.834880pt;}
.x10_c01222{left:342.400000pt;}
.x9_c01222{left:368.666667pt;}
.xa_c01222{left:390.000000pt;}
.x1_c01222{left:434.000000pt;}
.xb_c01222{left:442.800000pt;}
}





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

.ir_c01223:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01223{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01223;src:url('chunks/assets/font_af272e87d98e7f7c08e2332b.woff2')format("woff");}.ff1_c01223{font-family:ff1_c01223;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01223;src:url('chunks/assets/font_5e4aae22880f31a146ed51a4.woff2')format("woff");}.ff2_c01223{font-family:ff2_c01223;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01223;src:url('chunks/assets/font_a08dfa9fa2f1d9cc9f66d5c1.woff2')format("woff");}.ff3_c01223{font-family:ff3_c01223;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01223;src:url('chunks/assets/font_71f34455be7c5d0309c9fa7f.woff2')format("woff");}.ff4_c01223{font-family:ff4_c01223;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01223;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c01223{font-family:ff5_c01223;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01223{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c01223{vertical-align:-22.800000px;}
.v0_c01223{vertical-align:0.000000px;}
.ls3_c01223{letter-spacing:0.000000px;}
.ls4_c01223{letter-spacing:3.000000px;}
.ls2_c01223{letter-spacing:25.002000px;}
.ls1_c01223{letter-spacing:31.002000px;}
.ls0_c01223{letter-spacing:63.402000px;}
.sc__c01223{text-shadow:none;}
.sc0_c01223{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01223{-webkit-text-stroke:0px transparent;}
.sc0_c01223{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01223{word-spacing:-20.250000px;}
.ws0_c01223{word-spacing:-13.737000px;}
.ws1_c01223{word-spacing:-0.264000px;}
.ws3_c01223{word-spacing:0.000000px;}
._17_c01223{margin-left:-21.561000px;}
._1e_c01223{margin-left:-20.151000px;}
._12_c01223{margin-left:-11.340000px;}
._10_c01223{margin-left:-9.669000px;}
._11_c01223{margin-left:-7.593000px;}
._2_c01223{margin-left:-6.156000px;}
._a_c01223{margin-left:-4.542000px;}
._8_c01223{margin-left:-3.156000px;}
._7_c01223{margin-left:-1.164000px;}
._9_c01223{width:1.824000px;}
._1_c01223{width:3.240000px;}
._6_c01223{width:4.293000px;}
._0_c01223{width:5.427000px;}
._4_c01223{width:6.885000px;}
._d_c01223{width:8.619000px;}
._3_c01223{width:9.963000px;}
._5_c01223{width:11.664000px;}
._1d_c01223{width:13.284000px;}
._13_c01223{width:14.514000px;}
._b_c01223{width:16.149000px;}
._c_c01223{width:17.277000px;}
._f_c01223{width:19.374000px;}
._1b_c01223{width:20.817000px;}
._e_c01223{width:22.914000px;}
._19_c01223{width:25.218000px;}
._14_c01223{width:28.065000px;}
._18_c01223{width:29.565000px;}
._1a_c01223{width:56.745000px;}
._16_c01223{width:93.966000px;}
._15_c01223{width:316.281000px;}
._1c_c01223{width:438.471000px;}
.fc2_c01223{color:transparent;}
.fc1_c01223{color:rgb(128,128,128);}
.fc0_c01223{color:rgb(0,0,0);}
.fs5_c01223{font-size:48.000000px;}
.fs2_c01223{font-size:57.000000px;}
.fs4_c01223{font-size:63.000000px;}
.fs1_c01223{font-size:72.000000px;}
.fs3_c01223{font-size:78.000000px;}
.fs0_c01223{font-size:81.000000px;}
.y0_c01223{bottom:0.000000px;}
.y24_c01223{bottom:3.105000px;}
.y23_c01223{bottom:7.228371px;}
.y22_c01223{bottom:59.865000px;}
.y21_c01223{bottom:83.115000px;}
.y20_c01223{bottom:108.015000px;}
.y1f_c01223{bottom:132.615000px;}
.y1e_c01223{bottom:156.915000px;}
.y1d_c01223{bottom:181.215000px;}
.y1c_c01223{bottom:205.515000px;}
.y1b_c01223{bottom:230.865000px;}
.y1a_c01223{bottom:255.465000px;}
.y19_c01223{bottom:283.815000px;}
.y18_c01223{bottom:303.165000px;}
.y17_c01223{bottom:326.715000px;}
.y16_c01223{bottom:351.015000px;}
.y15_c01223{bottom:399.015000px;}
.y14_c01223{bottom:422.865000px;}
.y13_c01223{bottom:446.865000px;}
.y12_c01223{bottom:471.165000px;}
.y11_c01223{bottom:495.165000px;}
.y10_c01223{bottom:519.165000px;}
.yf_c01223{bottom:543.015000px;}
.ye_c01223{bottom:567.015000px;}
.yd_c01223{bottom:591.315000px;}
.yc_c01223{bottom:615.615000px;}
.yb_c01223{bottom:639.915000px;}
.ya_c01223{bottom:664.215000px;}
.y9_c01223{bottom:687.915000px;}
.y8_c01223{bottom:712.515000px;}
.y7_c01223{bottom:736.065000px;}
.y6_c01223{bottom:760.065000px;}
.y5_c01223{bottom:784.065000px;}
.y4_c01223{bottom:807.765000px;}
.y3_c01223{bottom:831.915000px;}
.y2_c01223{bottom:855.615000px;}
.y1_c01223{bottom:879.165000px;}
.h7_c01223{height:13.200074px;}
.h8_c01223{height:43.804688px;}
.h6_c01223{height:66.713379px;}
.h3_c01223{height:72.168457px;}
.h5_c01223{height:79.497070px;}
.h2_c01223{height:91.160156px;}
.h4_c01223{height:98.756836px;}
.h1_c01223{height:986.250000px;}
.h0_c01223{height:986.325000px;}
.w2_c01223{width:104.875500px;}
.w0_c01223{width:667.425000px;}
.w1_c01223{width:667.500000px;}
.x0_c01223{left:0.000000px;}
.x9_c01223{left:31.350000px;}
.xa_c01223{left:34.500000px;}
.x6_c01223{left:36.150000px;}
.x8_c01223{left:44.250000px;}
.x1_c01223{left:121.200000px;}
.x2_c01223{left:123.750000px;}
.x3_c01223{left:125.250000px;}
.x4_c01223{left:126.300000px;}
.x5_c01223{left:127.950000px;}
.x7_c01223{left:153.900000px;}
.xc_c01223{left:285.526749px;}
.xb_c01223{left:567.750000px;}
@media print{
.v1_c01223{vertical-align:-20.266667pt;}
.v0_c01223{vertical-align:0.000000pt;}
.ls3_c01223{letter-spacing:0.000000pt;}
.ls4_c01223{letter-spacing:2.666667pt;}
.ls2_c01223{letter-spacing:22.224000pt;}
.ls1_c01223{letter-spacing:27.557333pt;}
.ls0_c01223{letter-spacing:56.357333pt;}
.ws2_c01223{word-spacing:-18.000000pt;}
.ws0_c01223{word-spacing:-12.210667pt;}
.ws1_c01223{word-spacing:-0.234667pt;}
.ws3_c01223{word-spacing:0.000000pt;}
._17_c01223{margin-left:-19.165333pt;}
._1e_c01223{margin-left:-17.912000pt;}
._12_c01223{margin-left:-10.080000pt;}
._10_c01223{margin-left:-8.594667pt;}
._11_c01223{margin-left:-6.749333pt;}
._2_c01223{margin-left:-5.472000pt;}
._a_c01223{margin-left:-4.037333pt;}
._8_c01223{margin-left:-2.805333pt;}
._7_c01223{margin-left:-1.034667pt;}
._9_c01223{width:1.621333pt;}
._1_c01223{width:2.880000pt;}
._6_c01223{width:3.816000pt;}
._0_c01223{width:4.824000pt;}
._4_c01223{width:6.120000pt;}
._d_c01223{width:7.661333pt;}
._3_c01223{width:8.856000pt;}
._5_c01223{width:10.368000pt;}
._1d_c01223{width:11.808000pt;}
._13_c01223{width:12.901333pt;}
._b_c01223{width:14.354667pt;}
._c_c01223{width:15.357333pt;}
._f_c01223{width:17.221333pt;}
._1b_c01223{width:18.504000pt;}
._e_c01223{width:20.368000pt;}
._19_c01223{width:22.416000pt;}
._14_c01223{width:24.946667pt;}
._18_c01223{width:26.280000pt;}
._1a_c01223{width:50.440000pt;}
._16_c01223{width:83.525333pt;}
._15_c01223{width:281.138667pt;}
._1c_c01223{width:389.752000pt;}
.fs5_c01223{font-size:42.666667pt;}
.fs2_c01223{font-size:50.666667pt;}
.fs4_c01223{font-size:56.000000pt;}
.fs1_c01223{font-size:64.000000pt;}
.fs3_c01223{font-size:69.333333pt;}
.fs0_c01223{font-size:72.000000pt;}
.y0_c01223{bottom:0.000000pt;}
.y24_c01223{bottom:2.760000pt;}
.y23_c01223{bottom:6.425219pt;}
.y22_c01223{bottom:53.213333pt;}
.y21_c01223{bottom:73.880000pt;}
.y20_c01223{bottom:96.013333pt;}
.y1f_c01223{bottom:117.880000pt;}
.y1e_c01223{bottom:139.480000pt;}
.y1d_c01223{bottom:161.080000pt;}
.y1c_c01223{bottom:182.680000pt;}
.y1b_c01223{bottom:205.213333pt;}
.y1a_c01223{bottom:227.080000pt;}
.y19_c01223{bottom:252.280000pt;}
.y18_c01223{bottom:269.480000pt;}
.y17_c01223{bottom:290.413333pt;}
.y16_c01223{bottom:312.013333pt;}
.y15_c01223{bottom:354.680000pt;}
.y14_c01223{bottom:375.880000pt;}
.y13_c01223{bottom:397.213333pt;}
.y12_c01223{bottom:418.813333pt;}
.y11_c01223{bottom:440.146667pt;}
.y10_c01223{bottom:461.480000pt;}
.yf_c01223{bottom:482.680000pt;}
.ye_c01223{bottom:504.013333pt;}
.yd_c01223{bottom:525.613333pt;}
.yc_c01223{bottom:547.213333pt;}
.yb_c01223{bottom:568.813333pt;}
.ya_c01223{bottom:590.413333pt;}
.y9_c01223{bottom:611.480000pt;}
.y8_c01223{bottom:633.346667pt;}
.y7_c01223{bottom:654.280000pt;}
.y6_c01223{bottom:675.613333pt;}
.y5_c01223{bottom:696.946667pt;}
.y4_c01223{bottom:718.013333pt;}
.y3_c01223{bottom:739.480000pt;}
.y2_c01223{bottom:760.546667pt;}
.y1_c01223{bottom:781.480000pt;}
.h7_c01223{height:11.733399pt;}
.h8_c01223{height:38.937500pt;}
.h6_c01223{height:59.300781pt;}
.h3_c01223{height:64.149740pt;}
.h5_c01223{height:70.664062pt;}
.h2_c01223{height:81.031250pt;}
.h4_c01223{height:87.783854pt;}
.h1_c01223{height:876.666667pt;}
.h0_c01223{height:876.733333pt;}
.w2_c01223{width:93.222667pt;}
.w0_c01223{width:593.266667pt;}
.w1_c01223{width:593.333333pt;}
.x0_c01223{left:0.000000pt;}
.x9_c01223{left:27.866667pt;}
.xa_c01223{left:30.666667pt;}
.x6_c01223{left:32.133333pt;}
.x8_c01223{left:39.333333pt;}
.x1_c01223{left:107.733333pt;}
.x2_c01223{left:110.000000pt;}
.x3_c01223{left:111.333333pt;}
.x4_c01223{left:112.266667pt;}
.x5_c01223{left:113.733333pt;}
.x7_c01223{left:136.800000pt;}
.xc_c01223{left:253.801554pt;}
.xb_c01223{left:504.666667pt;}
}





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

.ir_c01224:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01224{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01224;src:url('chunks/assets/font_589dba849a3e26ca4007ff5e.woff2')format("woff");}.ff1_c01224{font-family:ff1_c01224;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01224;src:url('chunks/assets/font_ea7505cd2e1083ef3ce478c2.woff2')format("woff");}.ff2_c01224{font-family:ff2_c01224;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01224;src:url('chunks/assets/font_3f49652ac1b97dc09180f4c6.woff2')format("woff");}.ff3_c01224{font-family:ff3_c01224;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01224;src:url('chunks/assets/font_b9f6390e08d6e0b437bc2cb1.woff2')format("woff");}.ff4_c01224{font-family:ff4_c01224;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01224;src:url('chunks/assets/font_ca4e1a611d8e89753a482483.woff2')format("woff");}.ff5_c01224{font-family:ff5_c01224;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01224;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c01224{font-family:ff6_c01224;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01224{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01224{vertical-align:0.000000px;}
.ls1_c01224{letter-spacing:0.000000px;}
.ls0_c01224{letter-spacing:3.000000px;}
.ls2_c01224{letter-spacing:9.000000px;}
.sc__c01224{text-shadow:none;}
.sc0_c01224{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01224{-webkit-text-stroke:0px transparent;}
.sc0_c01224{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01224{word-spacing:-67.686000px;}
.ws0_c01224{word-spacing:-42.000000px;}
.ws2_c01224{word-spacing:0.000000px;}
._e_c01224{margin-left:-33.396000px;}
._6_c01224{margin-left:-22.968000px;}
._19_c01224{margin-left:-20.208000px;}
._5_c01224{margin-left:-18.513000px;}
._c_c01224{margin-left:-14.916000px;}
._d_c01224{margin-left:-13.464000px;}
._14_c01224{margin-left:-9.711000px;}
._b_c01224{margin-left:-8.052000px;}
._1_c01224{margin-left:-6.831000px;}
._17_c01224{margin-left:-5.229000px;}
._9_c01224{margin-left:-3.168000px;}
._10_c01224{margin-left:-1.701000px;}
._0_c01224{width:1.881000px;}
._8_c01224{width:3.564000px;}
._f_c01224{width:4.860000px;}
._11_c01224{width:5.913000px;}
._7_c01224{width:6.930000px;}
._15_c01224{width:7.974000px;}
._12_c01224{width:9.792000px;}
._2_c01224{width:11.286000px;}
._18_c01224{width:12.393000px;}
._13_c01224{width:14.337000px;}
._16_c01224{width:15.453000px;}
._1a_c01224{width:16.614000px;}
._4_c01224{width:20.196000px;}
._3_c01224{width:26.334000px;}
._1b_c01224{width:41.922000px;}
._a_c01224{width:127.152000px;}
._1c_c01224{width:333.408000px;}
.fc2_c01224{color:transparent;}
.fc1_c01224{color:rgb(128,128,128);}
.fc0_c01224{color:rgb(0,0,0);}
.fs7_c01224{font-size:48.000000px;}
.fs5_c01224{font-size:66.000000px;}
.fs3_c01224{font-size:72.000000px;}
.fs4_c01224{font-size:78.000000px;}
.fs2_c01224{font-size:81.000000px;}
.fs6_c01224{font-size:87.000000px;}
.fs0_c01224{font-size:99.000000px;}
.fs1_c01224{font-size:132.000000px;}
.y0_c01224{bottom:0.000000px;}
.y26_c01224{bottom:3.105000px;}
.y25_c01224{bottom:7.228369px;}
.y24_c01224{bottom:77.670000px;}
.y23_c01224{bottom:102.870000px;}
.y22_c01224{bottom:127.920000px;}
.y21_c01224{bottom:152.520000px;}
.y20_c01224{bottom:177.420000px;}
.y1f_c01224{bottom:202.170000px;}
.y1e_c01224{bottom:227.070000px;}
.y1d_c01224{bottom:252.120000px;}
.y1c_c01224{bottom:276.120000px;}
.y1b_c01224{bottom:300.720000px;}
.y1a_c01224{bottom:325.320000px;}
.y19_c01224{bottom:349.620000px;}
.y18_c01224{bottom:374.970000px;}
.y17_c01224{bottom:399.270000px;}
.y16_c01224{bottom:423.270000px;}
.y15_c01224{bottom:447.570000px;}
.y14_c01224{bottom:472.170000px;}
.y13_c01224{bottom:496.470000px;}
.y12_c01224{bottom:520.770000px;}
.y11_c01224{bottom:544.620000px;}
.y10_c01224{bottom:568.920000px;}
.yf_c01224{bottom:593.220000px;}
.ye_c01224{bottom:616.920000px;}
.yd_c01224{bottom:640.920000px;}
.yc_c01224{bottom:665.220000px;}
.yb_c01224{bottom:689.520000px;}
.ya_c01224{bottom:714.120000px;}
.y9_c01224{bottom:738.120000px;}
.y8_c01224{bottom:762.720000px;}
.y7_c01224{bottom:786.720000px;}
.y6_c01224{bottom:811.020000px;}
.y5_c01224{bottom:835.320000px;}
.y4_c01224{bottom:859.920000px;}
.y3_c01224{bottom:884.220000px;}
.y2_c01224{bottom:908.820000px;}
.y1_c01224{bottom:941.520000px;}
.h8_c01224{height:13.200073px;}
.h9_c01224{height:43.804688px;}
.h3_c01224{height:79.497070px;}
.h6_c01224{height:84.269531px;}
.h4_c01224{height:91.160156px;}
.h7_c01224{height:91.176000px;}
.h5_c01224{height:98.756836px;}
.h2_c01224{height:167.126953px;}
.h1_c01224{height:986.250000px;}
.h0_c01224{height:986.550000px;}
.w1_c01224{width:104.875500px;}
.w0_c01224{width:672.000000px;}
.x0_c01224{left:0.000000px;}
.x4_c01224{left:74.550000px;}
.x2_c01224{left:75.900000px;}
.x5_c01224{left:76.950000px;}
.x6_c01224{left:78.000000px;}
.x3_c01224{left:99.600000px;}
.x1_c01224{left:122.400000px;}
.x8_c01224{left:287.814240px;}
.x7_c01224{left:412.050000px;}
@media print{
.v0_c01224{vertical-align:0.000000pt;}
.ls1_c01224{letter-spacing:0.000000pt;}
.ls0_c01224{letter-spacing:2.666667pt;}
.ls2_c01224{letter-spacing:8.000000pt;}
.ws1_c01224{word-spacing:-60.165333pt;}
.ws0_c01224{word-spacing:-37.333333pt;}
.ws2_c01224{word-spacing:0.000000pt;}
._e_c01224{margin-left:-29.685333pt;}
._6_c01224{margin-left:-20.416000pt;}
._19_c01224{margin-left:-17.962667pt;}
._5_c01224{margin-left:-16.456000pt;}
._c_c01224{margin-left:-13.258667pt;}
._d_c01224{margin-left:-11.968000pt;}
._14_c01224{margin-left:-8.632000pt;}
._b_c01224{margin-left:-7.157333pt;}
._1_c01224{margin-left:-6.072000pt;}
._17_c01224{margin-left:-4.648000pt;}
._9_c01224{margin-left:-2.816000pt;}
._10_c01224{margin-left:-1.512000pt;}
._0_c01224{width:1.672000pt;}
._8_c01224{width:3.168000pt;}
._f_c01224{width:4.320000pt;}
._11_c01224{width:5.256000pt;}
._7_c01224{width:6.160000pt;}
._15_c01224{width:7.088000pt;}
._12_c01224{width:8.704000pt;}
._2_c01224{width:10.032000pt;}
._18_c01224{width:11.016000pt;}
._13_c01224{width:12.744000pt;}
._16_c01224{width:13.736000pt;}
._1a_c01224{width:14.768000pt;}
._4_c01224{width:17.952000pt;}
._3_c01224{width:23.408000pt;}
._1b_c01224{width:37.264000pt;}
._a_c01224{width:113.024000pt;}
._1c_c01224{width:296.362667pt;}
.fs7_c01224{font-size:42.666667pt;}
.fs5_c01224{font-size:58.666667pt;}
.fs3_c01224{font-size:64.000000pt;}
.fs4_c01224{font-size:69.333333pt;}
.fs2_c01224{font-size:72.000000pt;}
.fs6_c01224{font-size:77.333333pt;}
.fs0_c01224{font-size:88.000000pt;}
.fs1_c01224{font-size:117.333333pt;}
.y0_c01224{bottom:0.000000pt;}
.y26_c01224{bottom:2.760000pt;}
.y25_c01224{bottom:6.425217pt;}
.y24_c01224{bottom:69.040000pt;}
.y23_c01224{bottom:91.440000pt;}
.y22_c01224{bottom:113.706667pt;}
.y21_c01224{bottom:135.573333pt;}
.y20_c01224{bottom:157.706667pt;}
.y1f_c01224{bottom:179.706667pt;}
.y1e_c01224{bottom:201.840000pt;}
.y1d_c01224{bottom:224.106667pt;}
.y1c_c01224{bottom:245.440000pt;}
.y1b_c01224{bottom:267.306667pt;}
.y1a_c01224{bottom:289.173333pt;}
.y19_c01224{bottom:310.773333pt;}
.y18_c01224{bottom:333.306667pt;}
.y17_c01224{bottom:354.906667pt;}
.y16_c01224{bottom:376.240000pt;}
.y15_c01224{bottom:397.840000pt;}
.y14_c01224{bottom:419.706667pt;}
.y13_c01224{bottom:441.306667pt;}
.y12_c01224{bottom:462.906667pt;}
.y11_c01224{bottom:484.106667pt;}
.y10_c01224{bottom:505.706667pt;}
.yf_c01224{bottom:527.306667pt;}
.ye_c01224{bottom:548.373333pt;}
.yd_c01224{bottom:569.706667pt;}
.yc_c01224{bottom:591.306667pt;}
.yb_c01224{bottom:612.906667pt;}
.ya_c01224{bottom:634.773333pt;}
.y9_c01224{bottom:656.106667pt;}
.y8_c01224{bottom:677.973333pt;}
.y7_c01224{bottom:699.306667pt;}
.y6_c01224{bottom:720.906667pt;}
.y5_c01224{bottom:742.506667pt;}
.y4_c01224{bottom:764.373333pt;}
.y3_c01224{bottom:785.973333pt;}
.y2_c01224{bottom:807.840000pt;}
.y1_c01224{bottom:836.906667pt;}
.h8_c01224{height:11.733399pt;}
.h9_c01224{height:38.937500pt;}
.h3_c01224{height:70.664062pt;}
.h6_c01224{height:74.906250pt;}
.h4_c01224{height:81.031250pt;}
.h7_c01224{height:81.045333pt;}
.h5_c01224{height:87.783854pt;}
.h2_c01224{height:148.557292pt;}
.h1_c01224{height:876.666667pt;}
.h0_c01224{height:876.933333pt;}
.w1_c01224{width:93.222667pt;}
.w0_c01224{width:597.333333pt;}
.x0_c01224{left:0.000000pt;}
.x4_c01224{left:66.266667pt;}
.x2_c01224{left:67.466667pt;}
.x5_c01224{left:68.400000pt;}
.x6_c01224{left:69.333333pt;}
.x3_c01224{left:88.533333pt;}
.x1_c01224{left:108.800000pt;}
.x8_c01224{left:255.834880pt;}
.x7_c01224{left:366.266667pt;}
}





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

.ir_c01225:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01225{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01225;src:url('chunks/assets/font_6c3a0b6f2724bf1656e0f403.woff2')format("woff");}.ff1_c01225{font-family:ff1_c01225;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01225;src:url('chunks/assets/font_7d07280f6f9e38ee63be1123.woff2')format("woff");}.ff2_c01225{font-family:ff2_c01225;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01225;src:url('chunks/assets/font_325f266aab6f28f7da3c8a40.woff2')format("woff");}.ff3_c01225{font-family:ff3_c01225;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01225;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff4_c01225{font-family:ff4_c01225;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01225;src:url('chunks/assets/font_8aff50a329c6eb77b68fdb2b.woff2')format("woff");}.ff5_c01225{font-family:ff5_c01225;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01225;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c01225{font-family:ff6_c01225;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01225{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c01225{vertical-align:-97.200000px;}
.v0_c01225{vertical-align:0.000000px;}
.ls2_c01225{letter-spacing:-9.000000px;}
.ls1_c01225{letter-spacing:0.000000px;}
.ls0_c01225{letter-spacing:9.480000px;}
.sc__c01225{text-shadow:none;}
.sc0_c01225{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01225{-webkit-text-stroke:0px transparent;}
.sc0_c01225{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01225{word-spacing:-47.100000px;}
.ws0_c01225{word-spacing:-20.250000px;}
.ws1_c01225{word-spacing:-17.352000px;}
.ws3_c01225{word-spacing:0.000000px;}
._11_c01225{margin-left:-26.082000px;}
._10_c01225{margin-left:-12.585000px;}
._16_c01225{margin-left:-11.097000px;}
._1d_c01225{margin-left:-9.543000px;}
._1e_c01225{margin-left:-8.442000px;}
._6_c01225{margin-left:-6.966000px;}
._c_c01225{margin-left:-5.919000px;}
._4_c01225{margin-left:-4.779000px;}
._0_c01225{margin-left:-3.159000px;}
._7_c01225{margin-left:-1.701000px;}
._5_c01225{width:1.068000px;}
._2_c01225{width:2.268000px;}
._3_c01225{width:4.212000px;}
._e_c01225{width:5.265000px;}
._1_c01225{width:6.318000px;}
._13_c01225{width:7.344000px;}
._9_c01225{width:8.424000px;}
._8_c01225{width:10.029000px;}
._b_c01225{width:11.487000px;}
._a_c01225{width:12.879000px;}
._12_c01225{width:14.094000px;}
._f_c01225{width:15.249000px;}
._1c_c01225{width:17.091000px;}
._20_c01225{width:18.144000px;}
._1f_c01225{width:25.839000px;}
._22_c01225{width:28.107000px;}
._19_c01225{width:51.489000px;}
._18_c01225{width:55.647000px;}
._1b_c01225{width:81.432000px;}
._1a_c01225{width:102.096000px;}
._14_c01225{width:145.572000px;}
._21_c01225{width:180.792000px;}
._d_c01225{width:185.187000px;}
._15_c01225{width:197.352000px;}
._24_c01225{width:200.076000px;}
._25_c01225{width:215.922000px;}
._17_c01225{width:248.508000px;}
._23_c01225{width:323.028000px;}
.fc2_c01225{color:transparent;}
.fc1_c01225{color:rgb(128,128,128);}
.fc0_c01225{color:rgb(0,0,0);}
.fs3_c01225{font-size:48.000000px;}
.fs0_c01225{font-size:72.000000px;}
.fs1_c01225{font-size:81.000000px;}
.fs2_c01225{font-size:102.000000px;}
.y0_c01225{bottom:0.000000px;}
.y24_c01225{bottom:3.105000px;}
.y23_c01225{bottom:7.228371px;}
.y22_c01225{bottom:88.065000px;}
.y21_c01225{bottom:114.165000px;}
.y20_c01225{bottom:138.165000px;}
.y1f_c01225{bottom:163.365000px;}
.y1e_c01225{bottom:187.665000px;}
.y1d_c01225{bottom:212.265000px;}
.y1c_c01225{bottom:237.315000px;}
.y1b_c01225{bottom:261.915000px;}
.y1a_c01225{bottom:286.665000px;}
.y19_c01225{bottom:311.865000px;}
.y18_c01225{bottom:336.165000px;}
.y17_c01225{bottom:360.765000px;}
.y16_c01225{bottom:385.065000px;}
.y15_c01225{bottom:409.815000px;}
.y14_c01225{bottom:435.765000px;}
.y13_c01225{bottom:458.715000px;}
.y12_c01225{bottom:483.015000px;}
.y11_c01225{bottom:506.715000px;}
.y10_c01225{bottom:531.315000px;}
.yf_c01225{bottom:555.915000px;}
.ye_c01225{bottom:580.215000px;}
.yd_c01225{bottom:604.815000px;}
.yc_c01225{bottom:629.415000px;}
.yb_c01225{bottom:653.865000px;}
.ya_c01225{bottom:678.015000px;}
.y9_c01225{bottom:702.465000px;}
.y8_c01225{bottom:726.765000px;}
.y7_c01225{bottom:751.665000px;}
.y6_c01225{bottom:776.265000px;}
.y5_c01225{bottom:801.015000px;}
.y4_c01225{bottom:825.165000px;}
.y3_c01225{bottom:849.465000px;}
.y2_c01225{bottom:873.765000px;}
.y1_c01225{bottom:898.215000px;}
.h6_c01225{height:13.200074px;}
.h7_c01225{height:43.804688px;}
.h4_c01225{height:79.497070px;}
.h3_c01225{height:81.632812px;}
.h2_c01225{height:84.269531px;}
.h5_c01225{height:91.160156px;}
.h1_c01225{height:986.250000px;}
.h0_c01225{height:986.325000px;}
.w2_c01225{width:104.875500px;}
.w0_c01225{width:667.425000px;}
.w1_c01225{width:667.500000px;}
.x0_c01225{left:0.000000px;}
.xa_c01225{left:21.300000px;}
.x3_c01225{left:29.100000px;}
.x7_c01225{left:36.900000px;}
.x9_c01225{left:119.700000px;}
.x8_c01225{left:120.750000px;}
.x6_c01225{left:121.950000px;}
.x1_c01225{left:123.150000px;}
.x4_c01225{left:124.650000px;}
.x5_c01225{left:147.600000px;}
.x2_c01225{left:160.350000px;}
.xb_c01225{left:285.526749px;}
@media print{
.v1_c01225{vertical-align:-86.400000pt;}
.v0_c01225{vertical-align:0.000000pt;}
.ls2_c01225{letter-spacing:-8.000000pt;}
.ls1_c01225{letter-spacing:0.000000pt;}
.ls0_c01225{letter-spacing:8.426667pt;}
.ws2_c01225{word-spacing:-41.866667pt;}
.ws0_c01225{word-spacing:-18.000000pt;}
.ws1_c01225{word-spacing:-15.424000pt;}
.ws3_c01225{word-spacing:0.000000pt;}
._11_c01225{margin-left:-23.184000pt;}
._10_c01225{margin-left:-11.186667pt;}
._16_c01225{margin-left:-9.864000pt;}
._1d_c01225{margin-left:-8.482667pt;}
._1e_c01225{margin-left:-7.504000pt;}
._6_c01225{margin-left:-6.192000pt;}
._c_c01225{margin-left:-5.261333pt;}
._4_c01225{margin-left:-4.248000pt;}
._0_c01225{margin-left:-2.808000pt;}
._7_c01225{margin-left:-1.512000pt;}
._5_c01225{width:0.949333pt;}
._2_c01225{width:2.016000pt;}
._3_c01225{width:3.744000pt;}
._e_c01225{width:4.680000pt;}
._1_c01225{width:5.616000pt;}
._13_c01225{width:6.528000pt;}
._9_c01225{width:7.488000pt;}
._8_c01225{width:8.914667pt;}
._b_c01225{width:10.210667pt;}
._a_c01225{width:11.448000pt;}
._12_c01225{width:12.528000pt;}
._f_c01225{width:13.554667pt;}
._1c_c01225{width:15.192000pt;}
._20_c01225{width:16.128000pt;}
._1f_c01225{width:22.968000pt;}
._22_c01225{width:24.984000pt;}
._19_c01225{width:45.768000pt;}
._18_c01225{width:49.464000pt;}
._1b_c01225{width:72.384000pt;}
._1a_c01225{width:90.752000pt;}
._14_c01225{width:129.397333pt;}
._21_c01225{width:160.704000pt;}
._d_c01225{width:164.610667pt;}
._15_c01225{width:175.424000pt;}
._24_c01225{width:177.845333pt;}
._25_c01225{width:191.930667pt;}
._17_c01225{width:220.896000pt;}
._23_c01225{width:287.136000pt;}
.fs3_c01225{font-size:42.666667pt;}
.fs0_c01225{font-size:64.000000pt;}
.fs1_c01225{font-size:72.000000pt;}
.fs2_c01225{font-size:90.666667pt;}
.y0_c01225{bottom:0.000000pt;}
.y24_c01225{bottom:2.760000pt;}
.y23_c01225{bottom:6.425219pt;}
.y22_c01225{bottom:78.280000pt;}
.y21_c01225{bottom:101.480000pt;}
.y20_c01225{bottom:122.813333pt;}
.y1f_c01225{bottom:145.213333pt;}
.y1e_c01225{bottom:166.813333pt;}
.y1d_c01225{bottom:188.680000pt;}
.y1c_c01225{bottom:210.946667pt;}
.y1b_c01225{bottom:232.813333pt;}
.y1a_c01225{bottom:254.813333pt;}
.y19_c01225{bottom:277.213333pt;}
.y18_c01225{bottom:298.813333pt;}
.y17_c01225{bottom:320.680000pt;}
.y16_c01225{bottom:342.280000pt;}
.y15_c01225{bottom:364.280000pt;}
.y14_c01225{bottom:387.346667pt;}
.y13_c01225{bottom:407.746667pt;}
.y12_c01225{bottom:429.346667pt;}
.y11_c01225{bottom:450.413333pt;}
.y10_c01225{bottom:472.280000pt;}
.yf_c01225{bottom:494.146667pt;}
.ye_c01225{bottom:515.746667pt;}
.yd_c01225{bottom:537.613333pt;}
.yc_c01225{bottom:559.480000pt;}
.yb_c01225{bottom:581.213333pt;}
.ya_c01225{bottom:602.680000pt;}
.y9_c01225{bottom:624.413333pt;}
.y8_c01225{bottom:646.013333pt;}
.y7_c01225{bottom:668.146667pt;}
.y6_c01225{bottom:690.013333pt;}
.y5_c01225{bottom:712.013333pt;}
.y4_c01225{bottom:733.480000pt;}
.y3_c01225{bottom:755.080000pt;}
.y2_c01225{bottom:776.680000pt;}
.y1_c01225{bottom:798.413333pt;}
.h6_c01225{height:11.733399pt;}
.h7_c01225{height:38.937500pt;}
.h4_c01225{height:70.664062pt;}
.h3_c01225{height:72.562500pt;}
.h2_c01225{height:74.906250pt;}
.h5_c01225{height:81.031250pt;}
.h1_c01225{height:876.666667pt;}
.h0_c01225{height:876.733333pt;}
.w2_c01225{width:93.222667pt;}
.w0_c01225{width:593.266667pt;}
.w1_c01225{width:593.333333pt;}
.x0_c01225{left:0.000000pt;}
.xa_c01225{left:18.933333pt;}
.x3_c01225{left:25.866667pt;}
.x7_c01225{left:32.800000pt;}
.x9_c01225{left:106.400000pt;}
.x8_c01225{left:107.333333pt;}
.x6_c01225{left:108.400000pt;}
.x1_c01225{left:109.466667pt;}
.x4_c01225{left:110.800000pt;}
.x5_c01225{left:131.200000pt;}
.x2_c01225{left:142.533333pt;}
.xb_c01225{left:253.801554pt;}
}





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

.ir_c01226:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01226{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01226;src:url('chunks/assets/font_0012ba980fb0eab2b5401495.woff2')format("woff");}.ff1_c01226{font-family:ff1_c01226;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01226;src:url('chunks/assets/font_7be8861a164ce292f736b0b1.woff2')format("woff");}.ff2_c01226{font-family:ff2_c01226;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01226;src:url('chunks/assets/font_c1d48b2ed180390f35cd62a5.woff2')format("woff");}.ff3_c01226{font-family:ff3_c01226;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01226;src:url('chunks/assets/font_c52325b5502b61c4f7b07ae2.woff2')format("woff");}.ff4_c01226{font-family:ff4_c01226;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01226;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff5_c01226{font-family:ff5_c01226;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01226;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c01226{font-family:ff6_c01226;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01226{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01226{vertical-align:0.000000px;}
.ls0_c01226{letter-spacing:0.000000px;}
.ls1_c01226{letter-spacing:3.000000px;}
.sc__c01226{text-shadow:none;}
.sc0_c01226{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01226{-webkit-text-stroke:0px transparent;}
.sc0_c01226{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01226{word-spacing:-67.686000px;}
.ws1_c01226{word-spacing:-17.352000px;}
.ws2_c01226{word-spacing:0.000000px;}
._0_c01226{margin-left:-29.079000px;}
._21_c01226{margin-left:-22.920000px;}
._17_c01226{margin-left:-20.997000px;}
._19_c01226{margin-left:-19.620000px;}
._22_c01226{margin-left:-17.880000px;}
._23_c01226{margin-left:-15.720000px;}
._25_c01226{margin-left:-13.803000px;}
._1b_c01226{margin-left:-12.798000px;}
._24_c01226{margin-left:-10.560000px;}
._15_c01226{margin-left:-9.396000px;}
._16_c01226{margin-left:-7.209000px;}
._28_c01226{margin-left:-5.922000px;}
._10_c01226{margin-left:-4.887000px;}
._18_c01226{margin-left:-3.618000px;}
._11_c01226{margin-left:-1.593000px;}
._12_c01226{width:1.134000px;}
._13_c01226{width:2.457000px;}
._f_c01226{width:3.591000px;}
._5_c01226{width:5.400000px;}
._4_c01226{width:6.624000px;}
._3_c01226{width:7.920000px;}
._e_c01226{width:8.991000px;}
._b_c01226{width:10.440000px;}
._29_c01226{width:11.466000px;}
._7_c01226{width:12.528000px;}
._1f_c01226{width:13.806000px;}
._2_c01226{width:14.832000px;}
._1c_c01226{width:17.046000px;}
._8_c01226{width:18.360000px;}
._9_c01226{width:20.232000px;}
._6_c01226{width:22.248000px;}
._c_c01226{width:24.432000px;}
._20_c01226{width:25.947000px;}
._a_c01226{width:29.664000px;}
._1d_c01226{width:35.109000px;}
._27_c01226{width:52.002000px;}
._2a_c01226{width:78.840000px;}
._14_c01226{width:81.675000px;}
._1a_c01226{width:86.832000px;}
._1_c01226{width:168.747000px;}
._d_c01226{width:268.029000px;}
._26_c01226{width:273.411000px;}
._2b_c01226{width:288.735000px;}
._1e_c01226{width:313.659000px;}
.fc2_c01226{color:transparent;}
.fc1_c01226{color:rgb(128,128,128);}
.fc0_c01226{color:rgb(0,0,0);}
.fs4_c01226{font-size:48.000000px;}
.fs1_c01226{font-size:72.000000px;}
.fs0_c01226{font-size:81.000000px;}
.fs2_c01226{font-size:87.000000px;}
.fs3_c01226{font-size:120.000000px;}
.y0_c01226{bottom:0.000000px;}
.y26_c01226{bottom:3.105000px;}
.y25_c01226{bottom:7.228369px;}
.y24_c01226{bottom:53.970000px;}
.y23_c01226{bottom:78.870000px;}
.y22_c01226{bottom:104.670000px;}
.y21_c01226{bottom:129.570000px;}
.y20_c01226{bottom:154.470000px;}
.y1f_c01226{bottom:178.920000px;}
.y1e_c01226{bottom:203.820000px;}
.y1d_c01226{bottom:228.870000px;}
.y1c_c01226{bottom:253.020000px;}
.y1b_c01226{bottom:277.770000px;}
.y1a_c01226{bottom:301.770000px;}
.y19_c01226{bottom:326.670000px;}
.y18_c01226{bottom:351.570000px;}
.y17_c01226{bottom:375.570000px;}
.y16_c01226{bottom:399.870000px;}
.y15_c01226{bottom:424.620000px;}
.y14_c01226{bottom:448.920000px;}
.y13_c01226{bottom:473.070000px;}
.y12_c01226{bottom:497.820000px;}
.y11_c01226{bottom:521.820000px;}
.y10_c01226{bottom:545.070000px;}
.yf_c01226{bottom:569.370000px;}
.ye_c01226{bottom:593.370000px;}
.yd_c01226{bottom:619.320000px;}
.yc_c01226{bottom:642.270000px;}
.yb_c01226{bottom:666.120000px;}
.ya_c01226{bottom:691.470000px;}
.y9_c01226{bottom:714.720000px;}
.y8_c01226{bottom:741.420000px;}
.y7_c01226{bottom:763.470000px;}
.y6_c01226{bottom:789.720000px;}
.y5_c01226{bottom:812.670000px;}
.y4_c01226{bottom:836.970000px;}
.y3_c01226{bottom:862.020000px;}
.y2_c01226{bottom:885.870000px;}
.y1_c01226{bottom:926.670000px;}
.h7_c01226{height:13.200073px;}
.h8_c01226{height:43.804688px;}
.h3_c01226{height:79.497070px;}
.h2_c01226{height:84.269531px;}
.h6_c01226{height:91.160156px;}
.h4_c01226{height:91.176000px;}
.h5_c01226{height:120.937500px;}
.h1_c01226{height:986.250000px;}
.h0_c01226{height:986.550000px;}
.w1_c01226{width:104.875500px;}
.w0_c01226{width:672.000000px;}
.x0_c01226{left:0.000000px;}
.xc_c01226{left:51.900000px;}
.xb_c01226{left:53.700000px;}
.xa_c01226{left:55.650000px;}
.x9_c01226{left:56.700000px;}
.x8_c01226{left:58.650000px;}
.x6_c01226{left:60.300000px;}
.x4_c01226{left:61.350000px;}
.x3_c01226{left:63.450000px;}
.x7_c01226{left:65.850000px;}
.x1_c01226{left:75.300000px;}
.x5_c01226{left:85.050000px;}
.x2_c01226{left:89.100000px;}
.xe_c01226{left:287.814240px;}
.xd_c01226{left:381.300000px;}
@media print{
.v0_c01226{vertical-align:0.000000pt;}
.ls0_c01226{letter-spacing:0.000000pt;}
.ls1_c01226{letter-spacing:2.666667pt;}
.ws0_c01226{word-spacing:-60.165333pt;}
.ws1_c01226{word-spacing:-15.424000pt;}
.ws2_c01226{word-spacing:0.000000pt;}
._0_c01226{margin-left:-25.848000pt;}
._21_c01226{margin-left:-20.373333pt;}
._17_c01226{margin-left:-18.664000pt;}
._19_c01226{margin-left:-17.440000pt;}
._22_c01226{margin-left:-15.893333pt;}
._23_c01226{margin-left:-13.973333pt;}
._25_c01226{margin-left:-12.269333pt;}
._1b_c01226{margin-left:-11.376000pt;}
._24_c01226{margin-left:-9.386667pt;}
._15_c01226{margin-left:-8.352000pt;}
._16_c01226{margin-left:-6.408000pt;}
._28_c01226{margin-left:-5.264000pt;}
._10_c01226{margin-left:-4.344000pt;}
._18_c01226{margin-left:-3.216000pt;}
._11_c01226{margin-left:-1.416000pt;}
._12_c01226{width:1.008000pt;}
._13_c01226{width:2.184000pt;}
._f_c01226{width:3.192000pt;}
._5_c01226{width:4.800000pt;}
._4_c01226{width:5.888000pt;}
._3_c01226{width:7.040000pt;}
._e_c01226{width:7.992000pt;}
._b_c01226{width:9.280000pt;}
._29_c01226{width:10.192000pt;}
._7_c01226{width:11.136000pt;}
._1f_c01226{width:12.272000pt;}
._2_c01226{width:13.184000pt;}
._1c_c01226{width:15.152000pt;}
._8_c01226{width:16.320000pt;}
._9_c01226{width:17.984000pt;}
._6_c01226{width:19.776000pt;}
._c_c01226{width:21.717333pt;}
._20_c01226{width:23.064000pt;}
._a_c01226{width:26.368000pt;}
._1d_c01226{width:31.208000pt;}
._27_c01226{width:46.224000pt;}
._2a_c01226{width:70.080000pt;}
._14_c01226{width:72.600000pt;}
._1a_c01226{width:77.184000pt;}
._1_c01226{width:149.997333pt;}
._d_c01226{width:238.248000pt;}
._26_c01226{width:243.032000pt;}
._2b_c01226{width:256.653333pt;}
._1e_c01226{width:278.808000pt;}
.fs4_c01226{font-size:42.666667pt;}
.fs1_c01226{font-size:64.000000pt;}
.fs0_c01226{font-size:72.000000pt;}
.fs2_c01226{font-size:77.333333pt;}
.fs3_c01226{font-size:106.666667pt;}
.y0_c01226{bottom:0.000000pt;}
.y26_c01226{bottom:2.760000pt;}
.y25_c01226{bottom:6.425217pt;}
.y24_c01226{bottom:47.973333pt;}
.y23_c01226{bottom:70.106667pt;}
.y22_c01226{bottom:93.040000pt;}
.y21_c01226{bottom:115.173333pt;}
.y20_c01226{bottom:137.306667pt;}
.y1f_c01226{bottom:159.040000pt;}
.y1e_c01226{bottom:181.173333pt;}
.y1d_c01226{bottom:203.440000pt;}
.y1c_c01226{bottom:224.906667pt;}
.y1b_c01226{bottom:246.906667pt;}
.y1a_c01226{bottom:268.240000pt;}
.y19_c01226{bottom:290.373333pt;}
.y18_c01226{bottom:312.506667pt;}
.y17_c01226{bottom:333.840000pt;}
.y16_c01226{bottom:355.440000pt;}
.y15_c01226{bottom:377.440000pt;}
.y14_c01226{bottom:399.040000pt;}
.y13_c01226{bottom:420.506667pt;}
.y12_c01226{bottom:442.506667pt;}
.y11_c01226{bottom:463.840000pt;}
.y10_c01226{bottom:484.506667pt;}
.yf_c01226{bottom:506.106667pt;}
.ye_c01226{bottom:527.440000pt;}
.yd_c01226{bottom:550.506667pt;}
.yc_c01226{bottom:570.906667pt;}
.yb_c01226{bottom:592.106667pt;}
.ya_c01226{bottom:614.640000pt;}
.y9_c01226{bottom:635.306667pt;}
.y8_c01226{bottom:659.040000pt;}
.y7_c01226{bottom:678.640000pt;}
.y6_c01226{bottom:701.973333pt;}
.y5_c01226{bottom:722.373333pt;}
.y4_c01226{bottom:743.973333pt;}
.y3_c01226{bottom:766.240000pt;}
.y2_c01226{bottom:787.440000pt;}
.y1_c01226{bottom:823.706667pt;}
.h7_c01226{height:11.733399pt;}
.h8_c01226{height:38.937500pt;}
.h3_c01226{height:70.664062pt;}
.h2_c01226{height:74.906250pt;}
.h6_c01226{height:81.031250pt;}
.h4_c01226{height:81.045333pt;}
.h5_c01226{height:107.500000pt;}
.h1_c01226{height:876.666667pt;}
.h0_c01226{height:876.933333pt;}
.w1_c01226{width:93.222667pt;}
.w0_c01226{width:597.333333pt;}
.x0_c01226{left:0.000000pt;}
.xc_c01226{left:46.133333pt;}
.xb_c01226{left:47.733333pt;}
.xa_c01226{left:49.466667pt;}
.x9_c01226{left:50.400000pt;}
.x8_c01226{left:52.133333pt;}
.x6_c01226{left:53.600000pt;}
.x4_c01226{left:54.533333pt;}
.x3_c01226{left:56.400000pt;}
.x7_c01226{left:58.533333pt;}
.x1_c01226{left:66.933333pt;}
.x5_c01226{left:75.600000pt;}
.x2_c01226{left:79.200000pt;}
.xe_c01226{left:255.834880pt;}
.xd_c01226{left:338.933333pt;}
}





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

.ir_c01227:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01227{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01227;src:url('chunks/assets/font_7401c748b1695e9ef78ba19c.woff2')format("woff");}.ff1_c01227{font-family:ff1_c01227;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01227;src:url('chunks/assets/font_8b0cd4b91ddac885b7ebe51e.woff2')format("woff");}.ff2_c01227{font-family:ff2_c01227;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01227;src:url('chunks/assets/font_f364d70dbc33977937299b86.woff2')format("woff");}.ff3_c01227{font-family:ff3_c01227;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01227;src:url('chunks/assets/font_1982ce954ba13d7add682762.woff2')format("woff");}.ff4_c01227{font-family:ff4_c01227;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01227;src:url('chunks/assets/font_39dc829b97d1aec578f639b7.woff2')format("woff");}.ff5_c01227{font-family:ff5_c01227;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01227;src:url('chunks/assets/font_9d9a8456a53a2ab8b7c38ce4.woff2')format("woff");}.ff6_c01227{font-family:ff6_c01227;line-height:1.311035;font-style:normal;font-weight: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_c01227;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c01227{font-family:ff7_c01227;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01227{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01227{vertical-align:0.000000px;}
.ls2_c01227{letter-spacing:0.000000px;}
.ls1_c01227{letter-spacing:3.000000px;}
.ls4_c01227{letter-spacing:9.000000px;}
.ls0_c01227{letter-spacing:29.802000px;}
.ls3_c01227{letter-spacing:78.000000px;}
.sc__c01227{text-shadow:none;}
.sc0_c01227{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01227{-webkit-text-stroke:0px transparent;}
.sc0_c01227{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01227{word-spacing:-95.352000px;}
.ws5_c01227{word-spacing:-37.500000px;}
.ws4_c01227{word-spacing:-20.250000px;}
.ws1_c01227{word-spacing:-17.352000px;}
.ws0_c01227{word-spacing:-13.737000px;}
.ws3_c01227{word-spacing:-0.055200px;}
.ws6_c01227{word-spacing:0.000000px;}
._18_c01227{margin-left:-24.867000px;}
._20_c01227{margin-left:-23.112000px;}
._1d_c01227{margin-left:-21.060000px;}
._1f_c01227{margin-left:-19.545000px;}
._25_c01227{margin-left:-16.983000px;}
._21_c01227{margin-left:-14.661000px;}
._16_c01227{margin-left:-13.059000px;}
._17_c01227{margin-left:-9.234000px;}
._11_c01227{margin-left:-7.992000px;}
._14_c01227{margin-left:-6.057000px;}
._f_c01227{margin-left:-4.617000px;}
._10_c01227{margin-left:-2.673000px;}
._7_c01227{margin-left:-1.539000px;}
._5_c01227{width:1.863000px;}
._8_c01227{width:2.916000px;}
._3_c01227{width:4.050000px;}
._0_c01227{width:5.427000px;}
._1_c01227{width:7.452000px;}
._2_c01227{width:8.667000px;}
._d_c01227{width:10.125000px;}
._6_c01227{width:11.826000px;}
._1b_c01227{width:13.041000px;}
._b_c01227{width:14.256000px;}
._4_c01227{width:15.552000px;}
._1a_c01227{width:16.605000px;}
._c_c01227{width:18.063000px;}
._29_c01227{width:19.710000px;}
._23_c01227{width:21.384000px;}
._12_c01227{width:22.824000px;}
._9_c01227{width:23.979000px;}
._27_c01227{width:26.454000px;}
._15_c01227{width:47.772000px;}
._e_c01227{width:54.360000px;}
._a_c01227{width:73.467000px;}
._19_c01227{width:94.785000px;}
._1c_c01227{width:136.605000px;}
._26_c01227{width:137.997000px;}
._13_c01227{width:218.406000px;}
._22_c01227{width:247.212000px;}
._1e_c01227{width:350.844000px;}
._24_c01227{width:462.168000px;}
._28_c01227{width:464.373000px;}
.fc2_c01227{color:transparent;}
.fc1_c01227{color:rgb(128,128,128);}
.fc0_c01227{color:rgb(0,0,0);}
.fs8_c01227{font-size:48.000000px;}
.fs6_c01227{font-size:55.200000px;}
.fs1_c01227{font-size:57.000000px;}
.fs4_c01227{font-size:66.000000px;}
.fs5_c01227{font-size:69.000000px;}
.fs3_c01227{font-size:72.000000px;}
.fs7_c01227{font-size:75.000000px;}
.fs2_c01227{font-size:78.000000px;}
.fs0_c01227{font-size:81.000000px;}
.y0_c01227{bottom:0.000000px;}
.y27_c01227{bottom:3.105000px;}
.y26_c01227{bottom:7.228371px;}
.y23_c01227{bottom:47.565000px;}
.y22_c01227{bottom:71.265000px;}
.y21_c01227{bottom:96.615000px;}
.y25_c01227{bottom:109.815000px;}
.y20_c01227{bottom:120.615000px;}
.y24_c01227{bottom:136.065000px;}
.y1f_c01227{bottom:145.815000px;}
.y1e_c01227{bottom:169.515000px;}
.y1d_c01227{bottom:195.765000px;}
.y1c_c01227{bottom:220.065000px;}
.y1b_c01227{bottom:245.115000px;}
.y1a_c01227{bottom:269.415000px;}
.y19_c01227{bottom:294.315000px;}
.y18_c01227{bottom:318.915000px;}
.y17_c01227{bottom:344.265000px;}
.y16_c01227{bottom:368.265000px;}
.y15_c01227{bottom:392.565000px;}
.y14_c01227{bottom:417.165000px;}
.y13_c01227{bottom:441.765000px;}
.y12_c01227{bottom:467.115000px;}
.y11_c01227{bottom:489.765000px;}
.y10_c01227{bottom:513.765000px;}
.yf_c01227{bottom:538.365000px;}
.ye_c01227{bottom:562.965000px;}
.yd_c01227{bottom:586.665000px;}
.yc_c01227{bottom:611.265000px;}
.yb_c01227{bottom:636.165000px;}
.ya_c01227{bottom:660.165000px;}
.y9_c01227{bottom:684.765000px;}
.y8_c01227{bottom:708.465000px;}
.y7_c01227{bottom:732.465000px;}
.y6_c01227{bottom:757.365000px;}
.y5_c01227{bottom:781.965000px;}
.y4_c01227{bottom:806.265000px;}
.y3_c01227{bottom:831.315000px;}
.y2_c01227{bottom:855.915000px;}
.y1_c01227{bottom:881.265000px;}
.h8_c01227{height:13.200074px;}
.h9_c01227{height:43.804688px;}
.h6_c01227{height:69.539062px;}
.h7_c01227{height:73.571777px;}
.h2_c01227{height:79.497070px;}
.h4_c01227{height:84.269531px;}
.h5_c01227{height:91.160156px;}
.h3_c01227{height:98.756836px;}
.h1_c01227{height:986.250000px;}
.h0_c01227{height:986.325000px;}
.w2_c01227{width:104.875500px;}
.w0_c01227{width:667.425000px;}
.w1_c01227{width:667.500000px;}
.x0_c01227{left:0.000000px;}
.x2_c01227{left:7.800000px;}
.x3_c01227{left:10.500000px;}
.x4_c01227{left:12.750000px;}
.x6_c01227{left:14.550000px;}
.x5_c01227{left:16.500000px;}
.xa_c01227{left:23.250000px;}
.xe_c01227{left:30.150000px;}
.x14_c01227{left:32.400000px;}
.x13_c01227{left:33.750000px;}
.x15_c01227{left:58.500000px;}
.x1_c01227{left:108.000000px;}
.x16_c01227{left:111.150000px;}
.x9_c01227{left:112.650000px;}
.x8_c01227{left:113.700000px;}
.xb_c01227{left:118.200000px;}
.xc_c01227{left:120.150000px;}
.xd_c01227{left:121.500000px;}
.x10_c01227{left:123.900000px;}
.x11_c01227{left:125.250000px;}
.x12_c01227{left:126.450000px;}
.x7_c01227{left:138.300000px;}
.xf_c01227{left:161.100000px;}
.x18_c01227{left:285.526749px;}
.x17_c01227{left:552.900000px;}
@media print{
.v0_c01227{vertical-align:0.000000pt;}
.ls2_c01227{letter-spacing:0.000000pt;}
.ls1_c01227{letter-spacing:2.666667pt;}
.ls4_c01227{letter-spacing:8.000000pt;}
.ls0_c01227{letter-spacing:26.490667pt;}
.ls3_c01227{letter-spacing:69.333333pt;}
.ws2_c01227{word-spacing:-84.757333pt;}
.ws5_c01227{word-spacing:-33.333333pt;}
.ws4_c01227{word-spacing:-18.000000pt;}
.ws1_c01227{word-spacing:-15.424000pt;}
.ws0_c01227{word-spacing:-12.210667pt;}
.ws3_c01227{word-spacing:-0.049067pt;}
.ws6_c01227{word-spacing:0.000000pt;}
._18_c01227{margin-left:-22.104000pt;}
._20_c01227{margin-left:-20.544000pt;}
._1d_c01227{margin-left:-18.720000pt;}
._1f_c01227{margin-left:-17.373333pt;}
._25_c01227{margin-left:-15.096000pt;}
._21_c01227{margin-left:-13.032000pt;}
._16_c01227{margin-left:-11.608000pt;}
._17_c01227{margin-left:-8.208000pt;}
._11_c01227{margin-left:-7.104000pt;}
._14_c01227{margin-left:-5.384000pt;}
._f_c01227{margin-left:-4.104000pt;}
._10_c01227{margin-left:-2.376000pt;}
._7_c01227{margin-left:-1.368000pt;}
._5_c01227{width:1.656000pt;}
._8_c01227{width:2.592000pt;}
._3_c01227{width:3.600000pt;}
._0_c01227{width:4.824000pt;}
._1_c01227{width:6.624000pt;}
._2_c01227{width:7.704000pt;}
._d_c01227{width:9.000000pt;}
._6_c01227{width:10.512000pt;}
._1b_c01227{width:11.592000pt;}
._b_c01227{width:12.672000pt;}
._4_c01227{width:13.824000pt;}
._1a_c01227{width:14.760000pt;}
._c_c01227{width:16.056000pt;}
._29_c01227{width:17.520000pt;}
._23_c01227{width:19.008000pt;}
._12_c01227{width:20.288000pt;}
._9_c01227{width:21.314667pt;}
._27_c01227{width:23.514667pt;}
._15_c01227{width:42.464000pt;}
._e_c01227{width:48.320000pt;}
._a_c01227{width:65.304000pt;}
._19_c01227{width:84.253333pt;}
._1c_c01227{width:121.426667pt;}
._26_c01227{width:122.664000pt;}
._13_c01227{width:194.138667pt;}
._22_c01227{width:219.744000pt;}
._1e_c01227{width:311.861333pt;}
._24_c01227{width:410.816000pt;}
._28_c01227{width:412.776000pt;}
.fs8_c01227{font-size:42.666667pt;}
.fs6_c01227{font-size:49.066667pt;}
.fs1_c01227{font-size:50.666667pt;}
.fs4_c01227{font-size:58.666667pt;}
.fs5_c01227{font-size:61.333333pt;}
.fs3_c01227{font-size:64.000000pt;}
.fs7_c01227{font-size:66.666667pt;}
.fs2_c01227{font-size:69.333333pt;}
.fs0_c01227{font-size:72.000000pt;}
.y0_c01227{bottom:0.000000pt;}
.y27_c01227{bottom:2.760000pt;}
.y26_c01227{bottom:6.425219pt;}
.y23_c01227{bottom:42.280000pt;}
.y22_c01227{bottom:63.346667pt;}
.y21_c01227{bottom:85.880000pt;}
.y25_c01227{bottom:97.613333pt;}
.y20_c01227{bottom:107.213333pt;}
.y24_c01227{bottom:120.946667pt;}
.y1f_c01227{bottom:129.613333pt;}
.y1e_c01227{bottom:150.680000pt;}
.y1d_c01227{bottom:174.013333pt;}
.y1c_c01227{bottom:195.613333pt;}
.y1b_c01227{bottom:217.880000pt;}
.y1a_c01227{bottom:239.480000pt;}
.y19_c01227{bottom:261.613333pt;}
.y18_c01227{bottom:283.480000pt;}
.y17_c01227{bottom:306.013333pt;}
.y16_c01227{bottom:327.346667pt;}
.y15_c01227{bottom:348.946667pt;}
.y14_c01227{bottom:370.813333pt;}
.y13_c01227{bottom:392.680000pt;}
.y12_c01227{bottom:415.213333pt;}
.y11_c01227{bottom:435.346667pt;}
.y10_c01227{bottom:456.680000pt;}
.yf_c01227{bottom:478.546667pt;}
.ye_c01227{bottom:500.413333pt;}
.yd_c01227{bottom:521.480000pt;}
.yc_c01227{bottom:543.346667pt;}
.yb_c01227{bottom:565.480000pt;}
.ya_c01227{bottom:586.813333pt;}
.y9_c01227{bottom:608.680000pt;}
.y8_c01227{bottom:629.746667pt;}
.y7_c01227{bottom:651.080000pt;}
.y6_c01227{bottom:673.213333pt;}
.y5_c01227{bottom:695.080000pt;}
.y4_c01227{bottom:716.680000pt;}
.y3_c01227{bottom:738.946667pt;}
.y2_c01227{bottom:760.813333pt;}
.y1_c01227{bottom:783.346667pt;}
.h8_c01227{height:11.733399pt;}
.h9_c01227{height:38.937500pt;}
.h6_c01227{height:61.812500pt;}
.h7_c01227{height:65.397135pt;}
.h2_c01227{height:70.664062pt;}
.h4_c01227{height:74.906250pt;}
.h5_c01227{height:81.031250pt;}
.h3_c01227{height:87.783854pt;}
.h1_c01227{height:876.666667pt;}
.h0_c01227{height:876.733333pt;}
.w2_c01227{width:93.222667pt;}
.w0_c01227{width:593.266667pt;}
.w1_c01227{width:593.333333pt;}
.x0_c01227{left:0.000000pt;}
.x2_c01227{left:6.933333pt;}
.x3_c01227{left:9.333333pt;}
.x4_c01227{left:11.333333pt;}
.x6_c01227{left:12.933333pt;}
.x5_c01227{left:14.666667pt;}
.xa_c01227{left:20.666667pt;}
.xe_c01227{left:26.800000pt;}
.x14_c01227{left:28.800000pt;}
.x13_c01227{left:30.000000pt;}
.x15_c01227{left:52.000000pt;}
.x1_c01227{left:96.000000pt;}
.x16_c01227{left:98.800000pt;}
.x9_c01227{left:100.133333pt;}
.x8_c01227{left:101.066667pt;}
.xb_c01227{left:105.066667pt;}
.xc_c01227{left:106.800000pt;}
.xd_c01227{left:108.000000pt;}
.x10_c01227{left:110.133333pt;}
.x11_c01227{left:111.333333pt;}
.x12_c01227{left:112.400000pt;}
.x7_c01227{left:122.933333pt;}
.xf_c01227{left:143.200000pt;}
.x18_c01227{left:253.801554pt;}
.x17_c01227{left:491.466667pt;}
}





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

.ir_c01228:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01228{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01228;src:url('chunks/assets/font_dde1eaf42d14c03f1b2ac9c7.woff2')format("woff");}.ff1_c01228{font-family:ff1_c01228;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01228;src:url('chunks/assets/font_5989d9bcc6b1de59b2a6ae1f.woff2')format("woff");}.ff2_c01228{font-family:ff2_c01228;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01228;src:url('chunks/assets/font_6a151b9c7dd546576f86ec4f.woff2')format("woff");}.ff3_c01228{font-family:ff3_c01228;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01228;src:url('chunks/assets/font_fb240d9672442aa326177aee.woff2')format("woff");}.ff4_c01228{font-family:ff4_c01228;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01228;src:url('chunks/assets/font_3a74d63d5e7783f609f1f6ac.woff2')format("woff");}.ff5_c01228{font-family:ff5_c01228;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01228;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c01228{font-family:ff6_c01228;line-height:1.219238;font-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_c01228{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m0_c01228{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c01228{vertical-align:-6.600000px;}
.v0_c01228{vertical-align:0.000000px;}
.ls0_c01228{letter-spacing:0.000000px;}
.ls1_c01228{letter-spacing:18.000000px;}
.sc__c01228{text-shadow:none;}
.sc0_c01228{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01228{-webkit-text-stroke:0px transparent;}
.sc0_c01228{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01228{word-spacing:-67.686000px;}
.ws0_c01228{word-spacing:-45.000000px;}
.ws1_c01228{word-spacing:-20.250000px;}
.ws3_c01228{word-spacing:0.000000px;}
._1c_c01228{margin-left:-30.600000px;}
._1e_c01228{margin-left:-21.750000px;}
._5_c01228{margin-left:-15.345000px;}
._1f_c01228{margin-left:-14.100000px;}
._19_c01228{margin-left:-10.449000px;}
._6_c01228{margin-left:-8.910000px;}
._9_c01228{margin-left:-6.732000px;}
._8_c01228{margin-left:-4.950000px;}
._7_c01228{margin-left:-3.861000px;}
._0_c01228{margin-left:-2.376000px;}
._1_c01228{margin-left:-1.188000px;}
._14_c01228{width:1.233000px;}
._2_c01228{width:2.277000px;}
._c_c01228{width:3.762000px;}
._d_c01228{width:4.860000px;}
._3_c01228{width:6.237000px;}
._4_c01228{width:7.623000px;}
._12_c01228{width:9.522000px;}
._11_c01228{width:11.097000px;}
._b_c01228{width:12.375000px;}
._e_c01228{width:13.446000px;}
._10_c01228{width:14.598000px;}
._17_c01228{width:16.272000px;}
._16_c01228{width:18.216000px;}
._18_c01228{width:20.310000px;}
._f_c01228{width:26.568000px;}
._13_c01228{width:34.812000px;}
._15_c01228{width:36.504000px;}
._1a_c01228{width:47.232000px;}
._1d_c01228{width:90.870000px;}
._a_c01228{width:182.457000px;}
._1b_c01228{width:446.562000px;}
.fc2_c01228{color:transparent;}
.fc1_c01228{color:rgb(128,128,128);}
.fc0_c01228{color:rgb(0,0,0);}
.fs6_c01228{font-size:48.000000px;}
.fs2_c01228{font-size:72.000000px;}
.fs1_c01228{font-size:81.000000px;}
.fs5_c01228{font-size:87.000000px;}
.fs0_c01228{font-size:99.000000px;}
.fs4_c01228{font-size:102.000000px;}
.fs3_c01228{font-size:108.000000px;}
.y0_c01228{bottom:0.000000px;}
.y13_c01228{bottom:3.105000px;}
.y12_c01228{bottom:7.228369px;}
.y11_c01228{bottom:92.070000px;}
.y10_c01228{bottom:289.620000px;}
.yf_c01228{bottom:499.470000px;}
.ye_c01228{bottom:595.620000px;}
.yd_c01228{bottom:618.870000px;}
.yc_c01228{bottom:643.170000px;}
.yb_c01228{bottom:666.870000px;}
.ya_c01228{bottom:691.920000px;}
.y9_c01228{bottom:716.220000px;}
.y8_c01228{bottom:740.820000px;}
.y7_c01228{bottom:765.120000px;}
.y6_c01228{bottom:790.020000px;}
.y5_c01228{bottom:814.620000px;}
.y4_c01228{bottom:838.920000px;}
.y3_c01228{bottom:863.370000px;}
.y2_c01228{bottom:887.670000px;}
.y1_c01228{bottom:924.120000px;}
.h7_c01228{height:13.200073px;}
.h8_c01228{height:43.804688px;}
.h3_c01228{height:79.497070px;}
.h4_c01228{height:84.269531px;}
.h5_c01228{height:108.843750px;}
.h2_c01228{height:115.870605px;}
.h6_c01228{height:129.143555px;}
.h1_c01228{height:986.250000px;}
.h0_c01228{height:986.550000px;}
.w1_c01228{width:104.875500px;}
.w0_c01228{width:672.000000px;}
.x0_c01228{left:0.000000px;}
.x2_c01228{left:49.350000px;}
.x3_c01228{left:51.300000px;}
.x4_c01228{left:52.950000px;}
.x5_c01228{left:75.600000px;}
.x6_c01228{left:90.000000px;}
.x1_c01228{left:105.600000px;}
.x7_c01228{left:113.100000px;}
.x8_c01228{left:155.550000px;}
.x9_c01228{left:256.050000px;}
.xa_c01228{left:288.150000px;}
.xb_c01228{left:317.250000px;}
.xc_c01228{left:457.650000px;}
@media print{
.v1_c01228{vertical-align:-5.866667pt;}
.v0_c01228{vertical-align:0.000000pt;}
.ls0_c01228{letter-spacing:0.000000pt;}
.ls1_c01228{letter-spacing:16.000000pt;}
.ws2_c01228{word-spacing:-60.165333pt;}
.ws0_c01228{word-spacing:-40.000000pt;}
.ws1_c01228{word-spacing:-18.000000pt;}
.ws3_c01228{word-spacing:0.000000pt;}
._1c_c01228{margin-left:-27.200000pt;}
._1e_c01228{margin-left:-19.333333pt;}
._5_c01228{margin-left:-13.640000pt;}
._1f_c01228{margin-left:-12.533333pt;}
._19_c01228{margin-left:-9.288000pt;}
._6_c01228{margin-left:-7.920000pt;}
._9_c01228{margin-left:-5.984000pt;}
._8_c01228{margin-left:-4.400000pt;}
._7_c01228{margin-left:-3.432000pt;}
._0_c01228{margin-left:-2.112000pt;}
._1_c01228{margin-left:-1.056000pt;}
._14_c01228{width:1.096000pt;}
._2_c01228{width:2.024000pt;}
._c_c01228{width:3.344000pt;}
._d_c01228{width:4.320000pt;}
._3_c01228{width:5.544000pt;}
._4_c01228{width:6.776000pt;}
._12_c01228{width:8.464000pt;}
._11_c01228{width:9.864000pt;}
._b_c01228{width:11.000000pt;}
._e_c01228{width:11.952000pt;}
._10_c01228{width:12.976000pt;}
._17_c01228{width:14.464000pt;}
._16_c01228{width:16.192000pt;}
._18_c01228{width:18.053333pt;}
._f_c01228{width:23.616000pt;}
._13_c01228{width:30.944000pt;}
._15_c01228{width:32.448000pt;}
._1a_c01228{width:41.984000pt;}
._1d_c01228{width:80.773333pt;}
._a_c01228{width:162.184000pt;}
._1b_c01228{width:396.944000pt;}
.fs6_c01228{font-size:42.666667pt;}
.fs2_c01228{font-size:64.000000pt;}
.fs1_c01228{font-size:72.000000pt;}
.fs5_c01228{font-size:77.333333pt;}
.fs0_c01228{font-size:88.000000pt;}
.fs4_c01228{font-size:90.666667pt;}
.fs3_c01228{font-size:96.000000pt;}
.y0_c01228{bottom:0.000000pt;}
.y13_c01228{bottom:2.760000pt;}
.y12_c01228{bottom:6.425217pt;}
.y11_c01228{bottom:81.840000pt;}
.y10_c01228{bottom:257.440000pt;}
.yf_c01228{bottom:443.973333pt;}
.ye_c01228{bottom:529.440000pt;}
.yd_c01228{bottom:550.106667pt;}
.yc_c01228{bottom:571.706667pt;}
.yb_c01228{bottom:592.773333pt;}
.ya_c01228{bottom:615.040000pt;}
.y9_c01228{bottom:636.640000pt;}
.y8_c01228{bottom:658.506667pt;}
.y7_c01228{bottom:680.106667pt;}
.y6_c01228{bottom:702.240000pt;}
.y5_c01228{bottom:724.106667pt;}
.y4_c01228{bottom:745.706667pt;}
.y3_c01228{bottom:767.440000pt;}
.y2_c01228{bottom:789.040000pt;}
.y1_c01228{bottom:821.440000pt;}
.h7_c01228{height:11.733399pt;}
.h8_c01228{height:38.937500pt;}
.h3_c01228{height:70.664062pt;}
.h4_c01228{height:74.906250pt;}
.h5_c01228{height:96.750000pt;}
.h2_c01228{height:102.996094pt;}
.h6_c01228{height:114.794271pt;}
.h1_c01228{height:876.666667pt;}
.h0_c01228{height:876.933333pt;}
.w1_c01228{width:93.222667pt;}
.w0_c01228{width:597.333333pt;}
.x0_c01228{left:0.000000pt;}
.x2_c01228{left:43.866667pt;}
.x3_c01228{left:45.600000pt;}
.x4_c01228{left:47.066667pt;}
.x5_c01228{left:67.200000pt;}
.x6_c01228{left:80.000000pt;}
.x1_c01228{left:93.866667pt;}
.x7_c01228{left:100.533333pt;}
.x8_c01228{left:138.266667pt;}
.x9_c01228{left:227.600000pt;}
.xa_c01228{left:256.133333pt;}
.xb_c01228{left:282.000000pt;}
.xc_c01228{left:406.800000pt;}
}





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

.ir_c01229:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01229{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01229;src:url('chunks/assets/font_579fa49dbac1d2d36ce43e5d.woff2')format("woff");}.ff1_c01229{font-family:ff1_c01229;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01229;src:url('chunks/assets/font_06fc70c0ecf384bb3ae76fbc.woff2')format("woff");}.ff2_c01229{font-family:ff2_c01229;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01229;src:url('chunks/assets/font_e777cd7bc94387c880375836.woff2')format("woff");}.ff3_c01229{font-family:ff3_c01229;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01229;src:url('chunks/assets/font_3e5594a2e6c8f37d56855698.woff2')format("woff");}.ff4_c01229{font-family:ff4_c01229;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01229;src:url('chunks/assets/font_b6cd706902183318c657ad07.woff2')format("woff");}.ff5_c01229{font-family:ff5_c01229;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01229;src:url('chunks/assets/font_92ec42dad4f42b3f142cfd6d.woff2')format("woff");}.ff6_c01229{font-family:ff6_c01229;line-height:1.284668;font-style:normal;font-weight: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_c01229;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff7_c01229{font-family:ff7_c01229;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c01229;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff8_c01229{font-family:ff8_c01229;line-height:1.219238;font-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_c01229{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m0_c01229{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01229{vertical-align:0.000000px;}
.ls5_c01229{letter-spacing:-3.000000px;}
.ls0_c01229{letter-spacing:0.000000px;}
.ls1_c01229{letter-spacing:9.000000px;}
.ls4_c01229{letter-spacing:12.000000px;}
.ls2_c01229{letter-spacing:18.000000px;}
.ls3_c01229{letter-spacing:21.000000px;}
.sc__c01229{text-shadow:none;}
.sc0_c01229{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01229{-webkit-text-stroke:0px transparent;}
.sc0_c01229{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01229{word-spacing:-59.184000px;}
.ws1_c01229{word-spacing:-25.500000px;}
.ws2_c01229{word-spacing:-23.292000px;}
.ws4_c01229{word-spacing:-23.250000px;}
.ws3_c01229{word-spacing:-20.250000px;}
.ws5_c01229{word-spacing:0.000000px;}
._8_c01229{margin-left:-18.522000px;}
._10_c01229{margin-left:-16.728000px;}
._1d_c01229{margin-left:-14.634000px;}
._9_c01229{margin-left:-13.608000px;}
._13_c01229{margin-left:-10.911000px;}
._c_c01229{margin-left:-9.639000px;}
._b_c01229{margin-left:-7.749000px;}
._1a_c01229{margin-left:-6.093000px;}
._1c_c01229{margin-left:-4.974000px;}
._d_c01229{margin-left:-3.969000px;}
._e_c01229{margin-left:-2.835000px;}
._2_c01229{margin-left:-1.656000px;}
._1_c01229{width:1.656000px;}
._0_c01229{width:2.880000px;}
._a_c01229{width:4.347000px;}
._14_c01229{width:5.616000px;}
._18_c01229{width:6.696000px;}
._16_c01229{width:7.836000px;}
._15_c01229{width:8.916000px;}
._11_c01229{width:10.200000px;}
._7_c01229{width:11.664000px;}
._17_c01229{width:12.939000px;}
._f_c01229{width:14.076000px;}
._6_c01229{width:16.416000px;}
._12_c01229{width:17.508000px;}
._1b_c01229{width:18.747000px;}
._3_c01229{width:20.196000px;}
._5_c01229{width:21.708000px;}
._1e_c01229{width:24.543000px;}
._4_c01229{width:63.702000px;}
._19_c01229{width:106.092000px;}
.fc2_c01229{color:transparent;}
.fc1_c01229{color:rgb(128,128,128);}
.fc0_c01229{color:rgb(0,0,0);}
.fs8_c01229{font-size:48.000000px;}
.fs1_c01229{font-size:66.000000px;}
.fs0_c01229{font-size:72.000000px;}
.fs5_c01229{font-size:81.000000px;}
.fs6_c01229{font-size:84.000000px;}
.fs4_c01229{font-size:102.000000px;}
.fs7_c01229{font-size:105.000000px;}
.fs2_c01229{font-size:108.000000px;}
.fs3_c01229{font-size:189.000000px;}
.y0_c01229{bottom:0.000000px;}
.y21_c01229{bottom:3.105000px;}
.y20_c01229{bottom:7.228371px;}
.y1d_c01229{bottom:49.365000px;}
.y1c_c01229{bottom:72.915000px;}
.y1b_c01229{bottom:98.265000px;}
.y1a_c01229{bottom:123.915000px;}
.y19_c01229{bottom:148.515000px;}
.y1_c01229{bottom:169.815000px;}
.y18_c01229{bottom:173.265000px;}
.y17_c01229{bottom:197.865000px;}
.y16_c01229{bottom:233.565000px;}
.y1f_c01229{bottom:259.665000px;}
.y15_c01229{bottom:263.565000px;}
.y1e_c01229{bottom:288.315000px;}
.y14_c01229{bottom:293.715000px;}
.y13_c01229{bottom:342.315000px;}
.y12_c01229{bottom:368.565000px;}
.y11_c01229{bottom:394.965000px;}
.y10_c01229{bottom:418.815000px;}
.yf_c01229{bottom:442.515000px;}
.ye_c01229{bottom:467.415000px;}
.yd_c01229{bottom:491.415000px;}
.yc_c01229{bottom:516.015000px;}
.yb_c01229{bottom:540.765000px;}
.ya_c01229{bottom:565.065000px;}
.y9_c01229{bottom:589.365000px;}
.y8_c01229{bottom:614.265000px;}
.y7_c01229{bottom:638.265000px;}
.y6_c01229{bottom:678.465000px;}
.y5_c01229{bottom:707.415000px;}
.y4_c01229{bottom:736.815000px;}
.y3_c01229{bottom:769.515000px;}
.y2_c01229{bottom:817.515000px;}
.hb_c01229{height:13.200074px;}
.hc_c01229{height:43.804688px;}
.h6_c01229{height:79.497070px;}
.h8_c01229{height:82.400391px;}
.h7_c01229{height:82.441406px;}
.h2_c01229{height:84.269531px;}
.h9_c01229{height:91.160156px;}
.ha_c01229{height:103.000488px;}
.h5_c01229{height:104.839927px;}
.h3_c01229{height:108.843750px;}
.h4_c01229{height:198.072000px;}
.h1_c01229{height:986.250000px;}
.h0_c01229{height:986.325000px;}
.w2_c01229{width:104.875500px;}
.w0_c01229{width:667.425000px;}
.w1_c01229{width:667.500000px;}
.x0_c01229{left:0.000000px;}
.x1_c01229{left:24.600000px;}
.xd_c01229{left:125.550000px;}
.xc_c01229{left:126.600000px;}
.xb_c01229{left:127.800000px;}
.xa_c01229{left:128.850000px;}
.x3_c01229{left:139.950000px;}
.x18_c01229{left:153.600000px;}
.x4_c01229{left:175.500000px;}
.xf_c01229{left:181.200000px;}
.x2_c01229{left:232.200000px;}
.x10_c01229{left:256.800000px;}
.x16_c01229{left:260.250000px;}
.x15_c01229{left:261.450000px;}
.x14_c01229{left:263.850000px;}
.x13_c01229{left:265.200000px;}
.x12_c01229{left:266.400000px;}
.x11_c01229{left:267.600000px;}
.x9_c01229{left:273.600000px;}
.xe_c01229{left:274.950000px;}
.x19_c01229{left:285.526749px;}
.x8_c01229{left:303.450000px;}
.x5_c01229{left:354.300000px;}
.x6_c01229{left:381.300000px;}
.x17_c01229{left:554.400000px;}
.x7_c01229{left:578.850000px;}
@media print{
.v0_c01229{vertical-align:0.000000pt;}
.ls5_c01229{letter-spacing:-2.666667pt;}
.ls0_c01229{letter-spacing:0.000000pt;}
.ls1_c01229{letter-spacing:8.000000pt;}
.ls4_c01229{letter-spacing:10.666667pt;}
.ls2_c01229{letter-spacing:16.000000pt;}
.ls3_c01229{letter-spacing:18.666667pt;}
.ws0_c01229{word-spacing:-52.608000pt;}
.ws1_c01229{word-spacing:-22.666667pt;}
.ws2_c01229{word-spacing:-20.704000pt;}
.ws4_c01229{word-spacing:-20.666667pt;}
.ws3_c01229{word-spacing:-18.000000pt;}
.ws5_c01229{word-spacing:0.000000pt;}
._8_c01229{margin-left:-16.464000pt;}
._10_c01229{margin-left:-14.869333pt;}
._1d_c01229{margin-left:-13.008000pt;}
._9_c01229{margin-left:-12.096000pt;}
._13_c01229{margin-left:-9.698667pt;}
._c_c01229{margin-left:-8.568000pt;}
._b_c01229{margin-left:-6.888000pt;}
._1a_c01229{margin-left:-5.416000pt;}
._1c_c01229{margin-left:-4.421333pt;}
._d_c01229{margin-left:-3.528000pt;}
._e_c01229{margin-left:-2.520000pt;}
._2_c01229{margin-left:-1.472000pt;}
._1_c01229{width:1.472000pt;}
._0_c01229{width:2.560000pt;}
._a_c01229{width:3.864000pt;}
._14_c01229{width:4.992000pt;}
._18_c01229{width:5.952000pt;}
._16_c01229{width:6.965333pt;}
._15_c01229{width:7.925333pt;}
._11_c01229{width:9.066667pt;}
._7_c01229{width:10.368000pt;}
._17_c01229{width:11.501333pt;}
._f_c01229{width:12.512000pt;}
._6_c01229{width:14.592000pt;}
._12_c01229{width:15.562667pt;}
._1b_c01229{width:16.664000pt;}
._3_c01229{width:17.952000pt;}
._5_c01229{width:19.296000pt;}
._1e_c01229{width:21.816000pt;}
._4_c01229{width:56.624000pt;}
._19_c01229{width:94.304000pt;}
.fs8_c01229{font-size:42.666667pt;}
.fs1_c01229{font-size:58.666667pt;}
.fs0_c01229{font-size:64.000000pt;}
.fs5_c01229{font-size:72.000000pt;}
.fs6_c01229{font-size:74.666667pt;}
.fs4_c01229{font-size:90.666667pt;}
.fs7_c01229{font-size:93.333333pt;}
.fs2_c01229{font-size:96.000000pt;}
.fs3_c01229{font-size:168.000000pt;}
.y0_c01229{bottom:0.000000pt;}
.y21_c01229{bottom:2.760000pt;}
.y20_c01229{bottom:6.425219pt;}
.y1d_c01229{bottom:43.880000pt;}
.y1c_c01229{bottom:64.813333pt;}
.y1b_c01229{bottom:87.346667pt;}
.y1a_c01229{bottom:110.146667pt;}
.y19_c01229{bottom:132.013333pt;}
.y1_c01229{bottom:150.946667pt;}
.y18_c01229{bottom:154.013333pt;}
.y17_c01229{bottom:175.880000pt;}
.y16_c01229{bottom:207.613333pt;}
.y1f_c01229{bottom:230.813333pt;}
.y15_c01229{bottom:234.280000pt;}
.y1e_c01229{bottom:256.280000pt;}
.y14_c01229{bottom:261.080000pt;}
.y13_c01229{bottom:304.280000pt;}
.y12_c01229{bottom:327.613333pt;}
.y11_c01229{bottom:351.080000pt;}
.y10_c01229{bottom:372.280000pt;}
.yf_c01229{bottom:393.346667pt;}
.ye_c01229{bottom:415.480000pt;}
.yd_c01229{bottom:436.813333pt;}
.yc_c01229{bottom:458.680000pt;}
.yb_c01229{bottom:480.680000pt;}
.ya_c01229{bottom:502.280000pt;}
.y9_c01229{bottom:523.880000pt;}
.y8_c01229{bottom:546.013333pt;}
.y7_c01229{bottom:567.346667pt;}
.y6_c01229{bottom:603.080000pt;}
.y5_c01229{bottom:628.813333pt;}
.y4_c01229{bottom:654.946667pt;}
.y3_c01229{bottom:684.013333pt;}
.y2_c01229{bottom:726.680000pt;}
.hb_c01229{height:11.733399pt;}
.hc_c01229{height:38.937500pt;}
.h6_c01229{height:70.664062pt;}
.h8_c01229{height:73.244792pt;}
.h7_c01229{height:73.281250pt;}
.h2_c01229{height:74.906250pt;}
.h9_c01229{height:81.031250pt;}
.ha_c01229{height:91.555990pt;}
.h5_c01229{height:93.191046pt;}
.h3_c01229{height:96.750000pt;}
.h4_c01229{height:176.064000pt;}
.h1_c01229{height:876.666667pt;}
.h0_c01229{height:876.733333pt;}
.w2_c01229{width:93.222667pt;}
.w0_c01229{width:593.266667pt;}
.w1_c01229{width:593.333333pt;}
.x0_c01229{left:0.000000pt;}
.x1_c01229{left:21.866667pt;}
.xd_c01229{left:111.600000pt;}
.xc_c01229{left:112.533333pt;}
.xb_c01229{left:113.600000pt;}
.xa_c01229{left:114.533333pt;}
.x3_c01229{left:124.400000pt;}
.x18_c01229{left:136.533333pt;}
.x4_c01229{left:156.000000pt;}
.xf_c01229{left:161.066667pt;}
.x2_c01229{left:206.400000pt;}
.x10_c01229{left:228.266667pt;}
.x16_c01229{left:231.333333pt;}
.x15_c01229{left:232.400000pt;}
.x14_c01229{left:234.533333pt;}
.x13_c01229{left:235.733333pt;}
.x12_c01229{left:236.800000pt;}
.x11_c01229{left:237.866667pt;}
.x9_c01229{left:243.200000pt;}
.xe_c01229{left:244.400000pt;}
.x19_c01229{left:253.801554pt;}
.x8_c01229{left:269.733333pt;}
.x5_c01229{left:314.933333pt;}
.x6_c01229{left:338.933333pt;}
.x17_c01229{left:492.800000pt;}
.x7_c01229{left:514.533333pt;}
}





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

.ir_c01230:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01230{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01230;src:url('chunks/assets/font_e559afda094c61bc17368ccb.woff2')format("woff");}.ff1_c01230{font-family:ff1_c01230;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01230;src:url('chunks/assets/font_783eeffdeb4f828179d5474c.woff2')format("woff");}.ff2_c01230{font-family:ff2_c01230;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01230;src:url('chunks/assets/font_1fd017c1af2a1f279a32d032.woff2')format("woff");}.ff3_c01230{font-family:ff3_c01230;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01230;src:url('chunks/assets/font_62a17992f4d649d02d7fb330.woff2')format("woff");}.ff4_c01230{font-family:ff4_c01230;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01230;src:url('chunks/assets/font_22689d79c47f5284e731c5fd.woff2')format("woff");}.ff5_c01230{font-family:ff5_c01230;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01230;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff6_c01230{font-family:ff6_c01230;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01230;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c01230{font-family:ff7_c01230;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01230{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01230{vertical-align:0.000000px;}
.ls1_c01230{letter-spacing:0.000000px;}
.ls2_c01230{letter-spacing:3.000000px;}
.ls0_c01230{letter-spacing:17.100000px;}
.sc__c01230{text-shadow:none;}
.sc0_c01230{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01230{-webkit-text-stroke:0px transparent;}
.sc0_c01230{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01230{word-spacing:-54.000000px;}
.ws2_c01230{word-spacing:-20.250000px;}
.ws1_c01230{word-spacing:-0.144000px;}
.ws3_c01230{word-spacing:0.000000px;}
._18_c01230{margin-left:-40.176000px;}
._11_c01230{margin-left:-21.789000px;}
._e_c01230{margin-left:-16.362000px;}
._10_c01230{margin-left:-13.689000px;}
._17_c01230{margin-left:-10.968000px;}
._14_c01230{margin-left:-9.558000px;}
._d_c01230{margin-left:-7.110000px;}
._12_c01230{margin-left:-5.856000px;}
._0_c01230{margin-left:-4.725000px;}
._1_c01230{margin-left:-3.045000px;}
._2_c01230{margin-left:-1.890000px;}
._9_c01230{width:1.428000px;}
._a_c01230{width:2.652000px;}
._b_c01230{width:4.002000px;}
._c_c01230{width:5.058000px;}
._4_c01230{width:6.426000px;}
._7_c01230{width:8.058000px;}
._6_c01230{width:9.486000px;}
._5_c01230{width:11.322000px;}
._3_c01230{width:12.465000px;}
._f_c01230{width:14.025000px;}
._1e_c01230{width:15.096000px;}
._8_c01230{width:16.116000px;}
._15_c01230{width:17.121000px;}
._1b_c01230{width:18.570000px;}
._1d_c01230{width:21.384000px;}
._25_c01230{width:23.124000px;}
._1a_c01230{width:24.786000px;}
._1f_c01230{width:26.808000px;}
._22_c01230{width:28.590000px;}
._24_c01230{width:29.598000px;}
._20_c01230{width:30.789000px;}
._16_c01230{width:32.193000px;}
._26_c01230{width:34.293000px;}
._21_c01230{width:37.005000px;}
._23_c01230{width:43.521000px;}
._19_c01230{width:48.579000px;}
._1c_c01230{width:52.881000px;}
._13_c01230{width:135.108000px;}
.fc2_c01230{color:transparent;}
.fc1_c01230{color:rgb(128,128,128);}
.fc0_c01230{color:rgb(0,0,0);}
.fs5_c01230{font-size:48.000000px;}
.fs4_c01230{font-size:72.000000px;}
.fs2_c01230{font-size:81.000000px;}
.fs3_c01230{font-size:87.000000px;}
.fs1_c01230{font-size:102.000000px;}
.fs0_c01230{font-size:105.000000px;}
.y0_c01230{bottom:0.000000px;}
.y26_c01230{bottom:3.105000px;}
.y25_c01230{bottom:7.228369px;}
.y24_c01230{bottom:62.820000px;}
.y23_c01230{bottom:88.320000px;}
.y22_c01230{bottom:113.970000px;}
.y21_c01230{bottom:138.720000px;}
.y20_c01230{bottom:163.620000px;}
.y1f_c01230{bottom:187.920000px;}
.y1e_c01230{bottom:212.220000px;}
.y1d_c01230{bottom:236.970000px;}
.y1c_c01230{bottom:262.170000px;}
.y1b_c01230{bottom:286.470000px;}
.y1a_c01230{bottom:311.070000px;}
.y19_c01230{bottom:335.520000px;}
.y18_c01230{bottom:360.420000px;}
.y17_c01230{bottom:385.020000px;}
.y16_c01230{bottom:409.620000px;}
.y15_c01230{bottom:433.620000px;}
.y14_c01230{bottom:457.920000px;}
.y13_c01230{bottom:482.220000px;}
.y12_c01230{bottom:506.970000px;}
.y11_c01230{bottom:530.820000px;}
.y10_c01230{bottom:555.120000px;}
.yf_c01230{bottom:579.420000px;}
.ye_c01230{bottom:603.420000px;}
.yd_c01230{bottom:627.720000px;}
.yc_c01230{bottom:651.720000px;}
.yb_c01230{bottom:676.020000px;}
.ya_c01230{bottom:700.320000px;}
.y9_c01230{bottom:724.920000px;}
.y8_c01230{bottom:749.220000px;}
.y7_c01230{bottom:773.820000px;}
.y6_c01230{bottom:798.420000px;}
.y5_c01230{bottom:822.720000px;}
.y4_c01230{bottom:846.420000px;}
.y3_c01230{bottom:872.070000px;}
.y2_c01230{bottom:896.070000px;}
.y1_c01230{bottom:931.770000px;}
.h6_c01230{height:13.200073px;}
.h7_c01230{height:43.804688px;}
.h3_c01230{height:79.497070px;}
.h5_c01230{height:91.160156px;}
.h4_c01230{height:91.176000px;}
.h2_c01230{height:122.893066px;}
.h0_c01230{height:970.350000px;}
.h1_c01230{height:970.500000px;}
.w2_c01230{width:104.875500px;}
.w0_c01230{width:660.450000px;}
.w1_c01230{width:660.750000px;}
.x0_c01230{left:0.000000px;}
.x7_c01230{left:41.550000px;}
.x8_c01230{left:46.200000px;}
.x4_c01230{left:48.600000px;}
.xa_c01230{left:50.700000px;}
.x9_c01230{left:52.650000px;}
.x2_c01230{left:54.300000px;}
.x3_c01230{left:55.350000px;}
.x5_c01230{left:57.000000px;}
.x6_c01230{left:81.300000px;}
.x1_c01230{left:129.300000px;}
.xc_c01230{left:282.039230px;}
.xb_c01230{left:485.400000px;}
@media print{
.v0_c01230{vertical-align:0.000000pt;}
.ls1_c01230{letter-spacing:0.000000pt;}
.ls2_c01230{letter-spacing:2.666667pt;}
.ls0_c01230{letter-spacing:15.200000pt;}
.ws0_c01230{word-spacing:-48.000000pt;}
.ws2_c01230{word-spacing:-18.000000pt;}
.ws1_c01230{word-spacing:-0.128000pt;}
.ws3_c01230{word-spacing:0.000000pt;}
._18_c01230{margin-left:-35.712000pt;}
._11_c01230{margin-left:-19.368000pt;}
._e_c01230{margin-left:-14.544000pt;}
._10_c01230{margin-left:-12.168000pt;}
._17_c01230{margin-left:-9.749333pt;}
._14_c01230{margin-left:-8.496000pt;}
._d_c01230{margin-left:-6.320000pt;}
._12_c01230{margin-left:-5.205333pt;}
._0_c01230{margin-left:-4.200000pt;}
._1_c01230{margin-left:-2.706667pt;}
._2_c01230{margin-left:-1.680000pt;}
._9_c01230{width:1.269333pt;}
._a_c01230{width:2.357333pt;}
._b_c01230{width:3.557333pt;}
._c_c01230{width:4.496000pt;}
._4_c01230{width:5.712000pt;}
._7_c01230{width:7.162667pt;}
._6_c01230{width:8.432000pt;}
._5_c01230{width:10.064000pt;}
._3_c01230{width:11.080000pt;}
._f_c01230{width:12.466667pt;}
._1e_c01230{width:13.418667pt;}
._8_c01230{width:14.325333pt;}
._15_c01230{width:15.218667pt;}
._1b_c01230{width:16.506667pt;}
._1d_c01230{width:19.008000pt;}
._25_c01230{width:20.554667pt;}
._1a_c01230{width:22.032000pt;}
._1f_c01230{width:23.829333pt;}
._22_c01230{width:25.413333pt;}
._24_c01230{width:26.309333pt;}
._20_c01230{width:27.368000pt;}
._16_c01230{width:28.616000pt;}
._26_c01230{width:30.482667pt;}
._21_c01230{width:32.893333pt;}
._23_c01230{width:38.685333pt;}
._19_c01230{width:43.181333pt;}
._1c_c01230{width:47.005333pt;}
._13_c01230{width:120.096000pt;}
.fs5_c01230{font-size:42.666667pt;}
.fs4_c01230{font-size:64.000000pt;}
.fs2_c01230{font-size:72.000000pt;}
.fs3_c01230{font-size:77.333333pt;}
.fs1_c01230{font-size:90.666667pt;}
.fs0_c01230{font-size:93.333333pt;}
.y0_c01230{bottom:0.000000pt;}
.y26_c01230{bottom:2.760000pt;}
.y25_c01230{bottom:6.425217pt;}
.y24_c01230{bottom:55.840000pt;}
.y23_c01230{bottom:78.506667pt;}
.y22_c01230{bottom:101.306667pt;}
.y21_c01230{bottom:123.306667pt;}
.y20_c01230{bottom:145.440000pt;}
.y1f_c01230{bottom:167.040000pt;}
.y1e_c01230{bottom:188.640000pt;}
.y1d_c01230{bottom:210.640000pt;}
.y1c_c01230{bottom:233.040000pt;}
.y1b_c01230{bottom:254.640000pt;}
.y1a_c01230{bottom:276.506667pt;}
.y19_c01230{bottom:298.240000pt;}
.y18_c01230{bottom:320.373333pt;}
.y17_c01230{bottom:342.240000pt;}
.y16_c01230{bottom:364.106667pt;}
.y15_c01230{bottom:385.440000pt;}
.y14_c01230{bottom:407.040000pt;}
.y13_c01230{bottom:428.640000pt;}
.y12_c01230{bottom:450.640000pt;}
.y11_c01230{bottom:471.840000pt;}
.y10_c01230{bottom:493.440000pt;}
.yf_c01230{bottom:515.040000pt;}
.ye_c01230{bottom:536.373333pt;}
.yd_c01230{bottom:557.973333pt;}
.yc_c01230{bottom:579.306667pt;}
.yb_c01230{bottom:600.906667pt;}
.ya_c01230{bottom:622.506667pt;}
.y9_c01230{bottom:644.373333pt;}
.y8_c01230{bottom:665.973333pt;}
.y7_c01230{bottom:687.840000pt;}
.y6_c01230{bottom:709.706667pt;}
.y5_c01230{bottom:731.306667pt;}
.y4_c01230{bottom:752.373333pt;}
.y3_c01230{bottom:775.173333pt;}
.y2_c01230{bottom:796.506667pt;}
.y1_c01230{bottom:828.240000pt;}
.h6_c01230{height:11.733399pt;}
.h7_c01230{height:38.937500pt;}
.h3_c01230{height:70.664062pt;}
.h5_c01230{height:81.031250pt;}
.h4_c01230{height:81.045333pt;}
.h2_c01230{height:109.238281pt;}
.h0_c01230{height:862.533333pt;}
.h1_c01230{height:862.666667pt;}
.w2_c01230{width:93.222667pt;}
.w0_c01230{width:587.066667pt;}
.w1_c01230{width:587.333333pt;}
.x0_c01230{left:0.000000pt;}
.x7_c01230{left:36.933333pt;}
.x8_c01230{left:41.066667pt;}
.x4_c01230{left:43.200000pt;}
.xa_c01230{left:45.066667pt;}
.x9_c01230{left:46.800000pt;}
.x2_c01230{left:48.266667pt;}
.x3_c01230{left:49.200000pt;}
.x5_c01230{left:50.666667pt;}
.x6_c01230{left:72.266667pt;}
.x1_c01230{left:114.933333pt;}
.xc_c01230{left:250.701538pt;}
.xb_c01230{left:431.466667pt;}
}





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

.ir_c01231:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01231{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01231;src:url('chunks/assets/font_e1679d6dfa8782836db3a8c8.woff2')format("woff");}.ff1_c01231{font-family:ff1_c01231;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01231;src:url('chunks/assets/font_d3819b39680ad6316af21139.woff2')format("woff");}.ff2_c01231{font-family:ff2_c01231;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01231;src:url('chunks/assets/font_3e3db1859ccc3b88226a49eb.woff2')format("woff");}.ff3_c01231{font-family:ff3_c01231;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01231;src:url('chunks/assets/font_93082763d1efa927808ce53a.woff2')format("woff");}.ff4_c01231{font-family:ff4_c01231;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01231;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c01231{font-family:ff5_c01231;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01231{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01231{vertical-align:0.000000px;}
.ls2_c01231{letter-spacing:0.000000px;}
.ls1_c01231{letter-spacing:6.000000px;}
.ls0_c01231{letter-spacing:6.888000px;}
.sc__c01231{text-shadow:none;}
.sc0_c01231{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01231{-webkit-text-stroke:0px transparent;}
.sc0_c01231{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01231{word-spacing:-67.686000px;}
.ws2_c01231{word-spacing:-20.250000px;}
.ws0_c01231{word-spacing:-17.352000px;}
.ws3_c01231{word-spacing:0.000000px;}
._17_c01231{margin-left:-23.976000px;}
._20_c01231{margin-left:-17.253000px;}
._2_c01231{margin-left:-14.796000px;}
._14_c01231{margin-left:-13.356000px;}
._23_c01231{margin-left:-11.448000px;}
._1c_c01231{margin-left:-9.555000px;}
._5_c01231{margin-left:-8.100000px;}
._3_c01231{margin-left:-5.832000px;}
._4_c01231{margin-left:-4.644000px;}
._0_c01231{margin-left:-3.564000px;}
._1_c01231{margin-left:-2.376000px;}
._e_c01231{margin-left:-1.299000px;}
._12_c01231{width:1.389000px;}
._a_c01231{width:2.430000px;}
._8_c01231{width:3.645000px;}
._c_c01231{width:4.902000px;}
._9_c01231{width:6.237000px;}
._f_c01231{width:7.455000px;}
._10_c01231{width:8.565000px;}
._b_c01231{width:9.639000px;}
._11_c01231{width:11.055000px;}
._7_c01231{width:12.270000px;}
._6_c01231{width:13.704000px;}
._13_c01231{width:15.657000px;}
._d_c01231{width:17.805000px;}
._1b_c01231{width:18.999000px;}
._21_c01231{width:21.513000px;}
._1a_c01231{width:24.786000px;}
._27_c01231{width:26.001000px;}
._25_c01231{width:27.804000px;}
._15_c01231{width:29.160000px;}
._26_c01231{width:32.820000px;}
._19_c01231{width:37.236000px;}
._24_c01231{width:52.983000px;}
._1d_c01231{width:61.749000px;}
._22_c01231{width:84.666000px;}
._16_c01231{width:178.449000px;}
._1f_c01231{width:255.579000px;}
._1e_c01231{width:256.632000px;}
._18_c01231{width:269.244000px;}
.fc2_c01231{color:transparent;}
.fc1_c01231{color:rgb(128,128,128);}
.fc0_c01231{color:rgb(0,0,0);}
.fs4_c01231{font-size:48.000000px;}
.fs2_c01231{font-size:72.000000px;}
.fs1_c01231{font-size:81.000000px;}
.fs3_c01231{font-size:87.000000px;}
.fs0_c01231{font-size:108.000000px;}
.y0_c01231{bottom:0.000000px;}
.y26_c01231{bottom:3.105000px;}
.y25_c01231{bottom:7.228363px;}
.y24_c01231{bottom:63.450000px;}
.y23_c01231{bottom:86.400000px;}
.y22_c01231{bottom:111.750000px;}
.y21_c01231{bottom:136.350000px;}
.y20_c01231{bottom:161.100000px;}
.y1f_c01231{bottom:186.000000px;}
.y1e_c01231{bottom:210.900000px;}
.y1d_c01231{bottom:235.650000px;}
.y1c_c01231{bottom:260.250000px;}
.y1b_c01231{bottom:284.250000px;}
.y1a_c01231{bottom:308.850000px;}
.y19_c01231{bottom:334.350000px;}
.y18_c01231{bottom:360.750000px;}
.y17_c01231{bottom:383.850000px;}
.y16_c01231{bottom:410.700000px;}
.y15_c01231{bottom:435.600000px;}
.y14_c01231{bottom:456.750000px;}
.y13_c01231{bottom:481.650000px;}
.y12_c01231{bottom:506.250000px;}
.y11_c01231{bottom:529.500000px;}
.y10_c01231{bottom:554.550000px;}
.yf_c01231{bottom:578.550000px;}
.ye_c01231{bottom:603.000000px;}
.yd_c01231{bottom:627.450000px;}
.yc_c01231{bottom:654.750000px;}
.yb_c01231{bottom:676.650000px;}
.ya_c01231{bottom:699.600000px;}
.y9_c01231{bottom:725.400000px;}
.y8_c01231{bottom:750.000000px;}
.y7_c01231{bottom:774.300000px;}
.y6_c01231{bottom:798.900000px;}
.y5_c01231{bottom:823.050000px;}
.y4_c01231{bottom:847.500000px;}
.y3_c01231{bottom:871.800000px;}
.y2_c01231{bottom:896.100000px;}
.y1_c01231{bottom:931.800000px;}
.h6_c01231{height:13.200074px;}
.h7_c01231{height:43.804688px;}
.h4_c01231{height:79.497070px;}
.h3_c01231{height:84.269531px;}
.h5_c01231{height:91.176000px;}
.h2_c01231{height:105.943359px;}
.h0_c01231{height:980.100000px;}
.h1_c01231{height:980.250000px;}
.w2_c01231{width:104.875500px;}
.w1_c01231{width:663.000000px;}
.w0_c01231{width:663.150000px;}
.x0_c01231{left:0.000000px;}
.x9_c01231{left:42.300000px;}
.x7_c01231{left:45.600000px;}
.xf_c01231{left:46.650000px;}
.xe_c01231{left:48.000000px;}
.xd_c01231{left:51.000000px;}
.x8_c01231{left:62.550000px;}
.xc_c01231{left:113.850000px;}
.x2_c01231{left:132.300000px;}
.x4_c01231{left:134.700000px;}
.x3_c01231{left:136.350000px;}
.x5_c01231{left:137.400000px;}
.x6_c01231{left:139.050000px;}
.xa_c01231{left:140.100000px;}
.xb_c01231{left:141.450000px;}
.x11_c01231{left:143.400000px;}
.x10_c01231{left:144.450000px;}
.x1_c01231{left:221.700000px;}
.x13_c01231{left:283.389267px;}
.x12_c01231{left:573.000000px;}
@media print{
.v0_c01231{vertical-align:0.000000pt;}
.ls2_c01231{letter-spacing:0.000000pt;}
.ls1_c01231{letter-spacing:5.333333pt;}
.ls0_c01231{letter-spacing:6.122667pt;}
.ws1_c01231{word-spacing:-60.165333pt;}
.ws2_c01231{word-spacing:-18.000000pt;}
.ws0_c01231{word-spacing:-15.424000pt;}
.ws3_c01231{word-spacing:0.000000pt;}
._17_c01231{margin-left:-21.312000pt;}
._20_c01231{margin-left:-15.336000pt;}
._2_c01231{margin-left:-13.152000pt;}
._14_c01231{margin-left:-11.872000pt;}
._23_c01231{margin-left:-10.176000pt;}
._1c_c01231{margin-left:-8.493333pt;}
._5_c01231{margin-left:-7.200000pt;}
._3_c01231{margin-left:-5.184000pt;}
._4_c01231{margin-left:-4.128000pt;}
._0_c01231{margin-left:-3.168000pt;}
._1_c01231{margin-left:-2.112000pt;}
._e_c01231{margin-left:-1.154667pt;}
._12_c01231{width:1.234667pt;}
._a_c01231{width:2.160000pt;}
._8_c01231{width:3.240000pt;}
._c_c01231{width:4.357333pt;}
._9_c01231{width:5.544000pt;}
._f_c01231{width:6.626667pt;}
._10_c01231{width:7.613333pt;}
._b_c01231{width:8.568000pt;}
._11_c01231{width:9.826667pt;}
._7_c01231{width:10.906667pt;}
._6_c01231{width:12.181333pt;}
._13_c01231{width:13.917333pt;}
._d_c01231{width:15.826667pt;}
._1b_c01231{width:16.888000pt;}
._21_c01231{width:19.122667pt;}
._1a_c01231{width:22.032000pt;}
._27_c01231{width:23.112000pt;}
._25_c01231{width:24.714667pt;}
._15_c01231{width:25.920000pt;}
._26_c01231{width:29.173333pt;}
._19_c01231{width:33.098667pt;}
._24_c01231{width:47.096000pt;}
._1d_c01231{width:54.888000pt;}
._22_c01231{width:75.258667pt;}
._16_c01231{width:158.621333pt;}
._1f_c01231{width:227.181333pt;}
._1e_c01231{width:228.117333pt;}
._18_c01231{width:239.328000pt;}
.fs4_c01231{font-size:42.666667pt;}
.fs2_c01231{font-size:64.000000pt;}
.fs1_c01231{font-size:72.000000pt;}
.fs3_c01231{font-size:77.333333pt;}
.fs0_c01231{font-size:96.000000pt;}
.y0_c01231{bottom:0.000000pt;}
.y26_c01231{bottom:2.760000pt;}
.y25_c01231{bottom:6.425212pt;}
.y24_c01231{bottom:56.400000pt;}
.y23_c01231{bottom:76.800000pt;}
.y22_c01231{bottom:99.333333pt;}
.y21_c01231{bottom:121.200000pt;}
.y20_c01231{bottom:143.200000pt;}
.y1f_c01231{bottom:165.333333pt;}
.y1e_c01231{bottom:187.466667pt;}
.y1d_c01231{bottom:209.466667pt;}
.y1c_c01231{bottom:231.333333pt;}
.y1b_c01231{bottom:252.666667pt;}
.y1a_c01231{bottom:274.533333pt;}
.y19_c01231{bottom:297.200000pt;}
.y18_c01231{bottom:320.666667pt;}
.y17_c01231{bottom:341.200000pt;}
.y16_c01231{bottom:365.066667pt;}
.y15_c01231{bottom:387.200000pt;}
.y14_c01231{bottom:406.000000pt;}
.y13_c01231{bottom:428.133333pt;}
.y12_c01231{bottom:450.000000pt;}
.y11_c01231{bottom:470.666667pt;}
.y10_c01231{bottom:492.933333pt;}
.yf_c01231{bottom:514.266667pt;}
.ye_c01231{bottom:536.000000pt;}
.yd_c01231{bottom:557.733333pt;}
.yc_c01231{bottom:582.000000pt;}
.yb_c01231{bottom:601.466667pt;}
.ya_c01231{bottom:621.866667pt;}
.y9_c01231{bottom:644.800000pt;}
.y8_c01231{bottom:666.666667pt;}
.y7_c01231{bottom:688.266667pt;}
.y6_c01231{bottom:710.133333pt;}
.y5_c01231{bottom:731.600000pt;}
.y4_c01231{bottom:753.333333pt;}
.y3_c01231{bottom:774.933333pt;}
.y2_c01231{bottom:796.533333pt;}
.y1_c01231{bottom:828.266667pt;}
.h6_c01231{height:11.733399pt;}
.h7_c01231{height:38.937500pt;}
.h4_c01231{height:70.664062pt;}
.h3_c01231{height:74.906250pt;}
.h5_c01231{height:81.045333pt;}
.h2_c01231{height:94.171875pt;}
.h0_c01231{height:871.200000pt;}
.h1_c01231{height:871.333333pt;}
.w2_c01231{width:93.222667pt;}
.w1_c01231{width:589.333333pt;}
.w0_c01231{width:589.466667pt;}
.x0_c01231{left:0.000000pt;}
.x9_c01231{left:37.600000pt;}
.x7_c01231{left:40.533333pt;}
.xf_c01231{left:41.466667pt;}
.xe_c01231{left:42.666667pt;}
.xd_c01231{left:45.333333pt;}
.x8_c01231{left:55.600000pt;}
.xc_c01231{left:101.200000pt;}
.x2_c01231{left:117.600000pt;}
.x4_c01231{left:119.733333pt;}
.x3_c01231{left:121.200000pt;}
.x5_c01231{left:122.133333pt;}
.x6_c01231{left:123.600000pt;}
.xa_c01231{left:124.533333pt;}
.xb_c01231{left:125.733333pt;}
.x11_c01231{left:127.466667pt;}
.x10_c01231{left:128.400000pt;}
.x1_c01231{left:197.066667pt;}
.x13_c01231{left:251.901571pt;}
.x12_c01231{left:509.333333pt;}
}





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

.ir_c01232:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01232{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01232;src:url('chunks/assets/font_7983a4da1629c02f4173e554.woff2')format("woff");}.ff1_c01232{font-family:ff1_c01232;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01232;src:url('chunks/assets/font_e1f98798a6cb385670ffa7c3.woff2')format("woff");}.ff2_c01232{font-family:ff2_c01232;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01232;src:url('chunks/assets/font_4c123903959f875b1be59c08.woff2')format("woff");}.ff3_c01232{font-family:ff3_c01232;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01232;src:url('chunks/assets/font_04e1143ed71bf63303096701.woff2')format("woff");}.ff4_c01232{font-family:ff4_c01232;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01232;src:url('chunks/assets/font_1d2523ea921909f5acac78e0.woff2')format("woff");}.ff5_c01232{font-family:ff5_c01232;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01232;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff6_c01232{font-family:ff6_c01232;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01232;src:url('chunks/assets/font_1ee6404f01dd0b35575798b3.woff2')format("woff");}.ff7_c01232{font-family:ff7_c01232;line-height:1.284180;font-style:normal;font-weight: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_c01232;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff8_c01232{font-family:ff8_c01232;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01232{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01232{vertical-align:0.000000px;}
.ls2_c01232{letter-spacing:0.000000px;}
.ls3_c01232{letter-spacing:9.000000px;}
.ls1_c01232{letter-spacing:11.400000px;}
.ls0_c01232{letter-spacing:22.512000px;}
.sc__c01232{text-shadow:none;}
.sc0_c01232{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01232{-webkit-text-stroke:0px transparent;}
.sc0_c01232{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01232{word-spacing:-67.686000px;}
.ws2_c01232{word-spacing:-42.000000px;}
.ws3_c01232{word-spacing:-20.250000px;}
.ws1_c01232{word-spacing:-17.352000px;}
.ws4_c01232{word-spacing:0.000000px;}
._26_c01232{margin-left:-24.078000px;}
._12_c01232{margin-left:-21.789000px;}
._1c_c01232{margin-left:-17.895000px;}
._13_c01232{margin-left:-14.091000px;}
._16_c01232{margin-left:-12.396000px;}
._e_c01232{margin-left:-9.774000px;}
._b_c01232{margin-left:-8.403000px;}
._14_c01232{margin-left:-7.371000px;}
._4_c01232{margin-left:-5.913000px;}
._f_c01232{margin-left:-4.797000px;}
._7_c01232{margin-left:-3.759000px;}
._0_c01232{margin-left:-2.625000px;}
._1_c01232{margin-left:-1.500000px;}
._c_c01232{width:1.125000px;}
._3_c01232{width:2.130000px;}
._2_c01232{width:3.396000px;}
._8_c01232{width:4.572000px;}
._6_c01232{width:5.784000px;}
._5_c01232{width:6.978000px;}
._1a_c01232{width:7.983000px;}
._9_c01232{width:9.003000px;}
._15_c01232{width:10.365000px;}
._d_c01232{width:11.508000px;}
._a_c01232{width:13.203000px;}
._28_c01232{width:14.781000px;}
._23_c01232{width:16.110000px;}
._17_c01232{width:17.658000px;}
._18_c01232{width:19.185000px;}
._19_c01232{width:21.678000px;}
._1d_c01232{width:34.338000px;}
._1e_c01232{width:36.633000px;}
._20_c01232{width:41.565000px;}
._21_c01232{width:43.290000px;}
._25_c01232{width:45.549000px;}
._22_c01232{width:49.389000px;}
._24_c01232{width:52.422000px;}
._11_c01232{width:90.633000px;}
._1b_c01232{width:228.981000px;}
._1f_c01232{width:242.418000px;}
._27_c01232{width:247.236000px;}
._10_c01232{width:267.987000px;}
.fc2_c01232{color:transparent;}
.fc1_c01232{color:rgb(128,128,128);}
.fc0_c01232{color:rgb(0,0,0);}
.fs5_c01232{font-size:48.000000px;}
.fs4_c01232{font-size:66.000000px;}
.fs3_c01232{font-size:72.000000px;}
.fs0_c01232{font-size:75.000000px;}
.fs1_c01232{font-size:81.000000px;}
.fs2_c01232{font-size:87.000000px;}
.y0_c01232{bottom:0.000000px;}
.y25_c01232{bottom:3.105000px;}
.y24_c01232{bottom:7.228355px;}
.y23_c01232{bottom:59.685000px;}
.y22_c01232{bottom:84.585000px;}
.y21_c01232{bottom:110.235000px;}
.y20_c01232{bottom:134.385000px;}
.y1f_c01232{bottom:158.835000px;}
.y1e_c01232{bottom:183.285000px;}
.y1d_c01232{bottom:207.585000px;}
.y1c_c01232{bottom:231.435000px;}
.y1b_c01232{bottom:256.485000px;}
.y1a_c01232{bottom:280.785000px;}
.y19_c01232{bottom:304.335000px;}
.y18_c01232{bottom:329.085000px;}
.y17_c01232{bottom:352.335000px;}
.y16_c01232{bottom:377.535000px;}
.y15_c01232{bottom:401.985000px;}
.y14_c01232{bottom:426.135000px;}
.y13_c01232{bottom:450.435000px;}
.y12_c01232{bottom:474.135000px;}
.y11_c01232{bottom:498.135000px;}
.y10_c01232{bottom:523.035000px;}
.yf_c01232{bottom:546.435000px;}
.ye_c01232{bottom:570.585000px;}
.yd_c01232{bottom:594.585000px;}
.yc_c01232{bottom:618.585000px;}
.yb_c01232{bottom:643.185000px;}
.ya_c01232{bottom:666.885000px;}
.y9_c01232{bottom:691.785000px;}
.y8_c01232{bottom:715.785000px;}
.y7_c01232{bottom:740.085000px;}
.y6_c01232{bottom:763.335000px;}
.y5_c01232{bottom:787.635000px;}
.y4_c01232{bottom:811.635000px;}
.y3_c01232{bottom:834.585000px;}
.y2_c01232{bottom:859.185000px;}
.y1_c01232{bottom:883.185000px;}
.h7_c01232{height:13.200074px;}
.h8_c01232{height:43.804688px;}
.h3_c01232{height:79.497070px;}
.h6_c01232{height:84.269531px;}
.h5_c01232{height:91.160156px;}
.h4_c01232{height:91.176000px;}
.h2_c01232{height:94.958496px;}
.h0_c01232{height:977.925000px;}
.h1_c01232{height:978.000000px;}
.w2_c01232{width:104.875500px;}
.w0_c01232{width:665.850000px;}
.w1_c01232{width:666.000000px;}
.x0_c01232{left:0.000000px;}
.x7_c01232{left:59.400000px;}
.x1_c01232{left:60.750000px;}
.x2_c01232{left:61.800000px;}
.x4_c01232{left:63.000000px;}
.x6_c01232{left:64.500000px;}
.x5_c01232{left:66.150000px;}
.x3_c01232{left:86.400000px;}
.x9_c01232{left:284.739258px;}
.x8_c01232{left:465.450000px;}
@media print{
.v0_c01232{vertical-align:0.000000pt;}
.ls2_c01232{letter-spacing:0.000000pt;}
.ls3_c01232{letter-spacing:8.000000pt;}
.ls1_c01232{letter-spacing:10.133333pt;}
.ls0_c01232{letter-spacing:20.010667pt;}
.ws0_c01232{word-spacing:-60.165333pt;}
.ws2_c01232{word-spacing:-37.333333pt;}
.ws3_c01232{word-spacing:-18.000000pt;}
.ws1_c01232{word-spacing:-15.424000pt;}
.ws4_c01232{word-spacing:0.000000pt;}
._26_c01232{margin-left:-21.402667pt;}
._12_c01232{margin-left:-19.368000pt;}
._1c_c01232{margin-left:-15.906667pt;}
._13_c01232{margin-left:-12.525333pt;}
._16_c01232{margin-left:-11.018667pt;}
._e_c01232{margin-left:-8.688000pt;}
._b_c01232{margin-left:-7.469333pt;}
._14_c01232{margin-left:-6.552000pt;}
._4_c01232{margin-left:-5.256000pt;}
._f_c01232{margin-left:-4.264000pt;}
._7_c01232{margin-left:-3.341333pt;}
._0_c01232{margin-left:-2.333333pt;}
._1_c01232{margin-left:-1.333333pt;}
._c_c01232{width:1.000000pt;}
._3_c01232{width:1.893333pt;}
._2_c01232{width:3.018667pt;}
._8_c01232{width:4.064000pt;}
._6_c01232{width:5.141333pt;}
._5_c01232{width:6.202667pt;}
._1a_c01232{width:7.096000pt;}
._9_c01232{width:8.002667pt;}
._15_c01232{width:9.213333pt;}
._d_c01232{width:10.229333pt;}
._a_c01232{width:11.736000pt;}
._28_c01232{width:13.138667pt;}
._23_c01232{width:14.320000pt;}
._17_c01232{width:15.696000pt;}
._18_c01232{width:17.053333pt;}
._19_c01232{width:19.269333pt;}
._1d_c01232{width:30.522667pt;}
._1e_c01232{width:32.562667pt;}
._20_c01232{width:36.946667pt;}
._21_c01232{width:38.480000pt;}
._25_c01232{width:40.488000pt;}
._22_c01232{width:43.901333pt;}
._24_c01232{width:46.597333pt;}
._11_c01232{width:80.562667pt;}
._1b_c01232{width:203.538667pt;}
._1f_c01232{width:215.482667pt;}
._27_c01232{width:219.765333pt;}
._10_c01232{width:238.210667pt;}
.fs5_c01232{font-size:42.666667pt;}
.fs4_c01232{font-size:58.666667pt;}
.fs3_c01232{font-size:64.000000pt;}
.fs0_c01232{font-size:66.666667pt;}
.fs1_c01232{font-size:72.000000pt;}
.fs2_c01232{font-size:77.333333pt;}
.y0_c01232{bottom:0.000000pt;}
.y25_c01232{bottom:2.760000pt;}
.y24_c01232{bottom:6.425204pt;}
.y23_c01232{bottom:53.053333pt;}
.y22_c01232{bottom:75.186667pt;}
.y21_c01232{bottom:97.986667pt;}
.y20_c01232{bottom:119.453333pt;}
.y1f_c01232{bottom:141.186667pt;}
.y1e_c01232{bottom:162.920000pt;}
.y1d_c01232{bottom:184.520000pt;}
.y1c_c01232{bottom:205.720000pt;}
.y1b_c01232{bottom:227.986667pt;}
.y1a_c01232{bottom:249.586667pt;}
.y19_c01232{bottom:270.520000pt;}
.y18_c01232{bottom:292.520000pt;}
.y17_c01232{bottom:313.186667pt;}
.y16_c01232{bottom:335.586667pt;}
.y15_c01232{bottom:357.320000pt;}
.y14_c01232{bottom:378.786667pt;}
.y13_c01232{bottom:400.386667pt;}
.y12_c01232{bottom:421.453333pt;}
.y11_c01232{bottom:442.786667pt;}
.y10_c01232{bottom:464.920000pt;}
.yf_c01232{bottom:485.720000pt;}
.ye_c01232{bottom:507.186667pt;}
.yd_c01232{bottom:528.520000pt;}
.yc_c01232{bottom:549.853333pt;}
.yb_c01232{bottom:571.720000pt;}
.ya_c01232{bottom:592.786667pt;}
.y9_c01232{bottom:614.920000pt;}
.y8_c01232{bottom:636.253333pt;}
.y7_c01232{bottom:657.853333pt;}
.y6_c01232{bottom:678.520000pt;}
.y5_c01232{bottom:700.120000pt;}
.y4_c01232{bottom:721.453333pt;}
.y3_c01232{bottom:741.853333pt;}
.y2_c01232{bottom:763.720000pt;}
.y1_c01232{bottom:785.053333pt;}
.h7_c01232{height:11.733399pt;}
.h8_c01232{height:38.937500pt;}
.h3_c01232{height:70.664062pt;}
.h6_c01232{height:74.906250pt;}
.h5_c01232{height:81.031250pt;}
.h4_c01232{height:81.045333pt;}
.h2_c01232{height:84.407552pt;}
.h0_c01232{height:869.266667pt;}
.h1_c01232{height:869.333333pt;}
.w2_c01232{width:93.222667pt;}
.w0_c01232{width:591.866667pt;}
.w1_c01232{width:592.000000pt;}
.x0_c01232{left:0.000000pt;}
.x7_c01232{left:52.800000pt;}
.x1_c01232{left:54.000000pt;}
.x2_c01232{left:54.933333pt;}
.x4_c01232{left:56.000000pt;}
.x6_c01232{left:57.333333pt;}
.x5_c01232{left:58.800000pt;}
.x3_c01232{left:76.800000pt;}
.x9_c01232{left:253.101563pt;}
.x8_c01232{left:413.733333pt;}
}





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

.ir_c01233:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01233{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01233;src:url('chunks/assets/font_1b85b4539b76c930c68b4c66.woff2')format("woff");}.ff1_c01233{font-family:ff1_c01233;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01233;src:url('chunks/assets/font_eb6cc7593ab47d4428bee948.woff2')format("woff");}.ff2_c01233{font-family:ff2_c01233;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01233;src:url('chunks/assets/font_78fbb4375384f861288e03b3.woff2')format("woff");}.ff3_c01233{font-family:ff3_c01233;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01233;src:url('chunks/assets/font_8c2075987e09d2088bbc084a.woff2')format("woff");}.ff4_c01233{font-family:ff4_c01233;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01233;src:url('chunks/assets/font_e0c6138c0f6ab2788cbc257c.woff2')format("woff");}.ff5_c01233{font-family:ff5_c01233;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01233;src:url('chunks/assets/font_0a78fac19230d7c4fcaaa90b.woff2')format("woff");}.ff6_c01233{font-family:ff6_c01233;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01233;src:url('chunks/assets/font_3ae015dca7cdea123bdb4c0a.woff2')format("woff");}.ff7_c01233{font-family:ff7_c01233;line-height:1.284180;font-style:normal;font-weight: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_c01233;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff8_c01233{font-family:ff8_c01233;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01233{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01233{vertical-align:0.000000px;}
.ls6_c01233{letter-spacing:0.000000px;}
.ls7_c01233{letter-spacing:3.000000px;}
.ls4_c01233{letter-spacing:3.900000px;}
.ls1_c01233{letter-spacing:6.000000px;}
.ls5_c01233{letter-spacing:13.500000px;}
.ls8_c01233{letter-spacing:15.000000px;}
.ls2_c01233{letter-spacing:21.900000px;}
.ls0_c01233{letter-spacing:29.700000px;}
.ls3_c01233{letter-spacing:33.900000px;}
.sc__c01233{text-shadow:none;}
.sc0_c01233{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01233{-webkit-text-stroke:0px transparent;}
.sc0_c01233{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01233{word-spacing:-66.048000px;}
.ws6_c01233{word-spacing:-20.250000px;}
.ws0_c01233{word-spacing:-2.100000px;}
.ws7_c01233{word-spacing:0.000000px;}
.ws5_c01233{word-spacing:0.045000px;}
.ws3_c01233{word-spacing:1.035000px;}
.ws2_c01233{word-spacing:5.265000px;}
.ws4_c01233{word-spacing:10.350000px;}
._1c_c01233{margin-left:-36.933000px;}
._2_c01233{margin-left:-23.100000px;}
._13_c01233{margin-left:-16.767000px;}
._3_c01233{margin-left:-15.444000px;}
._21_c01233{margin-left:-14.247000px;}
._17_c01233{margin-left:-13.050000px;}
._16_c01233{margin-left:-11.013000px;}
._1b_c01233{margin-left:-9.567000px;}
._15_c01233{margin-left:-8.037000px;}
._e_c01233{margin-left:-6.984000px;}
._1a_c01233{margin-left:-5.787000px;}
._0_c01233{margin-left:-4.488000px;}
._9_c01233{margin-left:-3.333000px;}
._a_c01233{margin-left:-1.782000px;}
._b_c01233{width:1.053000px;}
._7_c01233{width:2.376000px;}
._6_c01233{width:4.356000px;}
._4_c01233{width:5.643000px;}
._5_c01233{width:6.930000px;}
._c_c01233{width:8.112000px;}
._8_c01233{width:9.603000px;}
._10_c01233{width:10.881000px;}
._d_c01233{width:12.420000px;}
._19_c01233{width:13.452000px;}
._f_c01233{width:14.817000px;}
._1d_c01233{width:15.972000px;}
._12_c01233{width:17.391000px;}
._11_c01233{width:18.549000px;}
._1e_c01233{width:20.133000px;}
._22_c01233{width:21.399000px;}
._20_c01233{width:23.580000px;}
._14_c01233{width:71.253000px;}
._1f_c01233{width:96.183000px;}
._1_c01233{width:106.260000px;}
._18_c01233{width:109.536000px;}
.fc2_c01233{color:transparent;}
.fc1_c01233{color:rgb(128,128,128);}
.fc0_c01233{color:rgb(0,0,0);}
.fs3_c01233{font-size:45.000000px;}
.fs8_c01233{font-size:48.000000px;}
.fs4_c01233{font-size:54.000000px;}
.fs7_c01233{font-size:66.000000px;}
.fs5_c01233{font-size:75.000000px;}
.fs2_c01233{font-size:81.000000px;}
.fs1_c01233{font-size:99.000000px;}
.fs6_c01233{font-size:108.000000px;}
.fs0_c01233{font-size:132.000000px;}
.y0_c01233{bottom:0.000000px;}
.y26_c01233{bottom:3.105000px;}
.y25_c01233{bottom:7.228371px;}
.y24_c01233{bottom:50.415000px;}
.y23_c01233{bottom:71.565000px;}
.y22_c01233{bottom:96.315000px;}
.y21_c01233{bottom:121.515000px;}
.y20_c01233{bottom:145.515000px;}
.y1f_c01233{bottom:169.815000px;}
.y1e_c01233{bottom:194.715000px;}
.y1d_c01233{bottom:218.415000px;}
.y1c_c01233{bottom:243.015000px;}
.y1b_c01233{bottom:267.315000px;}
.y1a_c01233{bottom:291.615000px;}
.y19_c01233{bottom:317.715000px;}
.y18_c01233{bottom:342.015000px;}
.y17_c01233{bottom:365.265000px;}
.y16_c01233{bottom:388.515000px;}
.y15_c01233{bottom:413.115000px;}
.y14_c01233{bottom:437.415000px;}
.y13_c01233{bottom:461.115000px;}
.y12_c01233{bottom:483.615000px;}
.y11_c01233{bottom:510.015000px;}
.y10_c01233{bottom:532.965000px;}
.yf_c01233{bottom:556.515000px;}
.ye_c01233{bottom:581.565000px;}
.yd_c01233{bottom:605.115000px;}
.yc_c01233{bottom:629.115000px;}
.yb_c01233{bottom:653.415000px;}
.ya_c01233{bottom:677.715000px;}
.y9_c01233{bottom:701.415000px;}
.y8_c01233{bottom:726.615000px;}
.y7_c01233{bottom:749.265000px;}
.y6_c01233{bottom:773.565000px;}
.y5_c01233{bottom:797.565000px;}
.y4_c01233{bottom:822.165000px;}
.y3_c01233{bottom:846.165000px;}
.y2_c01233{bottom:869.715000px;}
.y1_c01233{bottom:905.265000px;}
.h8_c01233{height:13.200074px;}
.h9_c01233{height:43.804688px;}
.h7_c01233{height:44.143066px;}
.h6_c01233{height:44.165039px;}
.h3_c01233{height:79.497070px;}
.h4_c01233{height:94.958496px;}
.h5_c01233{height:105.996094px;}
.h2_c01233{height:167.126953px;}
.h1_c01233{height:986.250000px;}
.h0_c01233{height:986.325000px;}
.w2_c01233{width:104.875500px;}
.w0_c01233{width:667.425000px;}
.w1_c01233{width:667.500000px;}
.x0_c01233{left:0.000000px;}
.x9_c01233{left:41.400000px;}
.x5_c01233{left:43.800000px;}
.x4_c01233{left:45.150000px;}
.xf_c01233{left:123.150000px;}
.xe_c01233{left:124.200000px;}
.xd_c01233{left:125.250000px;}
.xa_c01233{left:126.900000px;}
.xc_c01233{left:127.950000px;}
.xb_c01233{left:129.000000px;}
.x8_c01233{left:130.500000px;}
.x7_c01233{left:131.550000px;}
.x6_c01233{left:133.350000px;}
.x3_c01233{left:135.300000px;}
.x1_c01233{left:136.350000px;}
.x2_c01233{left:137.400000px;}
.x11_c01233{left:285.526749px;}
.x10_c01233{left:568.050000px;}
@media print{
.v0_c01233{vertical-align:0.000000pt;}
.ls6_c01233{letter-spacing:0.000000pt;}
.ls7_c01233{letter-spacing:2.666667pt;}
.ls4_c01233{letter-spacing:3.466667pt;}
.ls1_c01233{letter-spacing:5.333333pt;}
.ls5_c01233{letter-spacing:12.000000pt;}
.ls8_c01233{letter-spacing:13.333333pt;}
.ls2_c01233{letter-spacing:19.466667pt;}
.ls0_c01233{letter-spacing:26.400000pt;}
.ls3_c01233{letter-spacing:30.133333pt;}
.ws1_c01233{word-spacing:-58.709333pt;}
.ws6_c01233{word-spacing:-18.000000pt;}
.ws0_c01233{word-spacing:-1.866667pt;}
.ws7_c01233{word-spacing:0.000000pt;}
.ws5_c01233{word-spacing:0.040000pt;}
.ws3_c01233{word-spacing:0.920000pt;}
.ws2_c01233{word-spacing:4.680000pt;}
.ws4_c01233{word-spacing:9.200000pt;}
._1c_c01233{margin-left:-32.829333pt;}
._2_c01233{margin-left:-20.533333pt;}
._13_c01233{margin-left:-14.904000pt;}
._3_c01233{margin-left:-13.728000pt;}
._21_c01233{margin-left:-12.664000pt;}
._17_c01233{margin-left:-11.600000pt;}
._16_c01233{margin-left:-9.789333pt;}
._1b_c01233{margin-left:-8.504000pt;}
._15_c01233{margin-left:-7.144000pt;}
._e_c01233{margin-left:-6.208000pt;}
._1a_c01233{margin-left:-5.144000pt;}
._0_c01233{margin-left:-3.989333pt;}
._9_c01233{margin-left:-2.962667pt;}
._a_c01233{margin-left:-1.584000pt;}
._b_c01233{width:0.936000pt;}
._7_c01233{width:2.112000pt;}
._6_c01233{width:3.872000pt;}
._4_c01233{width:5.016000pt;}
._5_c01233{width:6.160000pt;}
._c_c01233{width:7.210667pt;}
._8_c01233{width:8.536000pt;}
._10_c01233{width:9.672000pt;}
._d_c01233{width:11.040000pt;}
._19_c01233{width:11.957333pt;}
._f_c01233{width:13.170667pt;}
._1d_c01233{width:14.197333pt;}
._12_c01233{width:15.458667pt;}
._11_c01233{width:16.488000pt;}
._1e_c01233{width:17.896000pt;}
._22_c01233{width:19.021333pt;}
._20_c01233{width:20.960000pt;}
._14_c01233{width:63.336000pt;}
._1f_c01233{width:85.496000pt;}
._1_c01233{width:94.453333pt;}
._18_c01233{width:97.365333pt;}
.fs3_c01233{font-size:40.000000pt;}
.fs8_c01233{font-size:42.666667pt;}
.fs4_c01233{font-size:48.000000pt;}
.fs7_c01233{font-size:58.666667pt;}
.fs5_c01233{font-size:66.666667pt;}
.fs2_c01233{font-size:72.000000pt;}
.fs1_c01233{font-size:88.000000pt;}
.fs6_c01233{font-size:96.000000pt;}
.fs0_c01233{font-size:117.333333pt;}
.y0_c01233{bottom:0.000000pt;}
.y26_c01233{bottom:2.760000pt;}
.y25_c01233{bottom:6.425219pt;}
.y24_c01233{bottom:44.813333pt;}
.y23_c01233{bottom:63.613333pt;}
.y22_c01233{bottom:85.613333pt;}
.y21_c01233{bottom:108.013333pt;}
.y20_c01233{bottom:129.346667pt;}
.y1f_c01233{bottom:150.946667pt;}
.y1e_c01233{bottom:173.080000pt;}
.y1d_c01233{bottom:194.146667pt;}
.y1c_c01233{bottom:216.013333pt;}
.y1b_c01233{bottom:237.613333pt;}
.y1a_c01233{bottom:259.213333pt;}
.y19_c01233{bottom:282.413333pt;}
.y18_c01233{bottom:304.013333pt;}
.y17_c01233{bottom:324.680000pt;}
.y16_c01233{bottom:345.346667pt;}
.y15_c01233{bottom:367.213333pt;}
.y14_c01233{bottom:388.813333pt;}
.y13_c01233{bottom:409.880000pt;}
.y12_c01233{bottom:429.880000pt;}
.y11_c01233{bottom:453.346667pt;}
.y10_c01233{bottom:473.746667pt;}
.yf_c01233{bottom:494.680000pt;}
.ye_c01233{bottom:516.946667pt;}
.yd_c01233{bottom:537.880000pt;}
.yc_c01233{bottom:559.213333pt;}
.yb_c01233{bottom:580.813333pt;}
.ya_c01233{bottom:602.413333pt;}
.y9_c01233{bottom:623.480000pt;}
.y8_c01233{bottom:645.880000pt;}
.y7_c01233{bottom:666.013333pt;}
.y6_c01233{bottom:687.613333pt;}
.y5_c01233{bottom:708.946667pt;}
.y4_c01233{bottom:730.813333pt;}
.y3_c01233{bottom:752.146667pt;}
.y2_c01233{bottom:773.080000pt;}
.y1_c01233{bottom:804.680000pt;}
.h8_c01233{height:11.733399pt;}
.h9_c01233{height:38.937500pt;}
.h7_c01233{height:39.238281pt;}
.h6_c01233{height:39.257812pt;}
.h3_c01233{height:70.664062pt;}
.h4_c01233{height:84.407552pt;}
.h5_c01233{height:94.218750pt;}
.h2_c01233{height:148.557292pt;}
.h1_c01233{height:876.666667pt;}
.h0_c01233{height:876.733333pt;}
.w2_c01233{width:93.222667pt;}
.w0_c01233{width:593.266667pt;}
.w1_c01233{width:593.333333pt;}
.x0_c01233{left:0.000000pt;}
.x9_c01233{left:36.800000pt;}
.x5_c01233{left:38.933333pt;}
.x4_c01233{left:40.133333pt;}
.xf_c01233{left:109.466667pt;}
.xe_c01233{left:110.400000pt;}
.xd_c01233{left:111.333333pt;}
.xa_c01233{left:112.800000pt;}
.xc_c01233{left:113.733333pt;}
.xb_c01233{left:114.666667pt;}
.x8_c01233{left:116.000000pt;}
.x7_c01233{left:116.933333pt;}
.x6_c01233{left:118.533333pt;}
.x3_c01233{left:120.266667pt;}
.x1_c01233{left:121.200000pt;}
.x2_c01233{left:122.133333pt;}
.x11_c01233{left:253.801554pt;}
.x10_c01233{left:504.933333pt;}
}





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

.ir_c01234:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01234{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01234;src:url('chunks/assets/font_3162585e765b35acc163b535.woff2')format("woff");}.ff1_c01234{font-family:ff1_c01234;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01234;src:url('chunks/assets/font_855fc533c47b01a16023a341.woff2')format("woff");}.ff2_c01234{font-family:ff2_c01234;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01234;src:url('chunks/assets/font_978afe852bd7aa15b03daf33.woff2')format("woff");}.ff3_c01234{font-family:ff3_c01234;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01234;src:url('chunks/assets/font_0c26a0c46431f6b7e7343b82.woff2')format("woff");}.ff4_c01234{font-family:ff4_c01234;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01234;src:url('chunks/assets/font_16b5d75251900ee68fd9434e.woff2')format("woff");}.ff5_c01234{font-family:ff5_c01234;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01234;src:url('chunks/assets/font_7675c391c27b110d75177615.woff2')format("woff");}.ff6_c01234{font-family:ff6_c01234;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01234;src:url('chunks/assets/font_03b85ecf7809e1f136d7ad56.woff2')format("woff");}.ff7_c01234{font-family:ff7_c01234;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c01234;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff8_c01234{font-family:ff8_c01234;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01234{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01234{vertical-align:0.000000px;}
.v1_c01234{vertical-align:157.800000px;}
.ls3_c01234{letter-spacing:0.000000px;}
.ls5_c01234{letter-spacing:3.000000px;}
.ls1_c01234{letter-spacing:4.308000px;}
.ls4_c01234{letter-spacing:9.000000px;}
.ls0_c01234{letter-spacing:11.640000px;}
.ls2_c01234{letter-spacing:18.402000px;}
.sc__c01234{text-shadow:none;}
.sc0_c01234{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01234{-webkit-text-stroke:0px transparent;}
.sc0_c01234{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01234{word-spacing:-72.000000px;}
.ws0_c01234{word-spacing:-27.750000px;}
.ws4_c01234{word-spacing:-20.250000px;}
.ws3_c01234{word-spacing:-19.065600px;}
.ws2_c01234{word-spacing:-17.352000px;}
.ws5_c01234{word-spacing:0.000000px;}
._16_c01234{margin-left:-22.356000px;}
._b_c01234{margin-left:-19.926000px;}
._21_c01234{margin-left:-17.334000px;}
._10_c01234{margin-left:-15.876000px;}
._15_c01234{margin-left:-14.310000px;}
._1f_c01234{margin-left:-13.284000px;}
._f_c01234{margin-left:-11.988000px;}
._e_c01234{margin-left:-8.100000px;}
._14_c01234{margin-left:-6.237000px;}
._1a_c01234{margin-left:-5.184000px;}
._a_c01234{margin-left:-4.131000px;}
._19_c01234{margin-left:-3.109800px;}
._8_c01234{margin-left:-2.106000px;}
._4_c01234{margin-left:-1.053000px;}
._7_c01234{width:1.134000px;}
._6_c01234{width:2.997000px;}
._2_c01234{width:4.212000px;}
._0_c01234{width:5.427000px;}
._5_c01234{width:6.885000px;}
._1_c01234{width:8.667000px;}
._11_c01234{width:10.692000px;}
._13_c01234{width:12.717000px;}
._c_c01234{width:14.094000px;}
._d_c01234{width:16.200000px;}
._12_c01234{width:17.658000px;}
._22_c01234{width:19.035000px;}
._3_c01234{width:23.733000px;}
._18_c01234{width:25.128000px;}
._9_c01234{width:26.892000px;}
._1d_c01234{width:28.998000px;}
._1e_c01234{width:32.319000px;}
._1c_c01234{width:37.248600px;}
._17_c01234{width:66.987000px;}
._1b_c01234{width:82.728000px;}
._20_c01234{width:99.094800px;}
.fc2_c01234{color:transparent;}
.fc1_c01234{color:rgb(128,128,128);}
.fc0_c01234{color:rgb(0,0,0);}
.fs6_c01234{font-size:48.000000px;}
.fs4_c01234{font-size:57.600000px;}
.fs1_c01234{font-size:72.000000px;}
.fs2_c01234{font-size:75.000000px;}
.fs5_c01234{font-size:78.000000px;}
.fs0_c01234{font-size:81.000000px;}
.fs3_c01234{font-size:288.000000px;}
.y0_c01234{bottom:0.000000px;}
.y23_c01234{bottom:3.105000px;}
.y22_c01234{bottom:7.228369px;}
.y21_c01234{bottom:77.520000px;}
.y20_c01234{bottom:104.220000px;}
.y1f_c01234{bottom:129.270000px;}
.y1e_c01234{bottom:153.570000px;}
.y1d_c01234{bottom:178.170000px;}
.y1c_c01234{bottom:201.870000px;}
.y1b_c01234{bottom:226.470000px;}
.y1a_c01234{bottom:250.470000px;}
.y19_c01234{bottom:275.370000px;}
.y18_c01234{bottom:298.620000px;}
.y17_c01234{bottom:323.370000px;}
.y16_c01234{bottom:347.970000px;}
.y15_c01234{bottom:371.970000px;}
.y14_c01234{bottom:396.270000px;}
.y13_c01234{bottom:420.420000px;}
.y12_c01234{bottom:444.120000px;}
.y11_c01234{bottom:468.120000px;}
.y10_c01234{bottom:492.120000px;}
.yf_c01234{bottom:516.420000px;}
.ye_c01234{bottom:539.970000px;}
.yd_c01234{bottom:563.970000px;}
.yc_c01234{bottom:587.970000px;}
.yb_c01234{bottom:612.120000px;}
.y9_c01234{bottom:620.370000px;}
.ya_c01234{bottom:636.120000px;}
.y8_c01234{bottom:709.320000px;}
.y7_c01234{bottom:756.570000px;}
.y6_c01234{bottom:780.870000px;}
.y5_c01234{bottom:804.870000px;}
.y4_c01234{bottom:829.170000px;}
.y3_c01234{bottom:852.870000px;}
.y2_c01234{bottom:876.870000px;}
.y1_c01234{bottom:899.820000px;}
.h8_c01234{height:13.200073px;}
.h9_c01234{height:43.804688px;}
.h3_c01234{height:73.571777px;}
.h2_c01234{height:79.497070px;}
.h5_c01234{height:84.269531px;}
.h6_c01234{height:91.160156px;}
.h7_c01234{height:98.756836px;}
.h4_c01234{height:282.656250px;}
.h1_c01234{height:986.250000px;}
.h0_c01234{height:986.550000px;}
.w1_c01234{width:104.875500px;}
.w0_c01234{width:672.000000px;}
.x0_c01234{left:0.000000px;}
.x9_c01234{left:41.100000px;}
.x1_c01234{left:67.800000px;}
.x2_c01234{left:69.900000px;}
.x4_c01234{left:70.950000px;}
.x5_c01234{left:72.300000px;}
.x7_c01234{left:73.800000px;}
.x3_c01234{left:94.200000px;}
.x8_c01234{left:112.950000px;}
.x6_c01234{left:179.850000px;}
.xb_c01234{left:287.814240px;}
.xa_c01234{left:498.450000px;}
@media print{
.v0_c01234{vertical-align:0.000000pt;}
.v1_c01234{vertical-align:140.266667pt;}
.ls3_c01234{letter-spacing:0.000000pt;}
.ls5_c01234{letter-spacing:2.666667pt;}
.ls1_c01234{letter-spacing:3.829333pt;}
.ls4_c01234{letter-spacing:8.000000pt;}
.ls0_c01234{letter-spacing:10.346667pt;}
.ls2_c01234{letter-spacing:16.357333pt;}
.ws1_c01234{word-spacing:-64.000000pt;}
.ws0_c01234{word-spacing:-24.666667pt;}
.ws4_c01234{word-spacing:-18.000000pt;}
.ws3_c01234{word-spacing:-16.947200pt;}
.ws2_c01234{word-spacing:-15.424000pt;}
.ws5_c01234{word-spacing:0.000000pt;}
._16_c01234{margin-left:-19.872000pt;}
._b_c01234{margin-left:-17.712000pt;}
._21_c01234{margin-left:-15.408000pt;}
._10_c01234{margin-left:-14.112000pt;}
._15_c01234{margin-left:-12.720000pt;}
._1f_c01234{margin-left:-11.808000pt;}
._f_c01234{margin-left:-10.656000pt;}
._e_c01234{margin-left:-7.200000pt;}
._14_c01234{margin-left:-5.544000pt;}
._1a_c01234{margin-left:-4.608000pt;}
._a_c01234{margin-left:-3.672000pt;}
._19_c01234{margin-left:-2.764267pt;}
._8_c01234{margin-left:-1.872000pt;}
._4_c01234{margin-left:-0.936000pt;}
._7_c01234{width:1.008000pt;}
._6_c01234{width:2.664000pt;}
._2_c01234{width:3.744000pt;}
._0_c01234{width:4.824000pt;}
._5_c01234{width:6.120000pt;}
._1_c01234{width:7.704000pt;}
._11_c01234{width:9.504000pt;}
._13_c01234{width:11.304000pt;}
._c_c01234{width:12.528000pt;}
._d_c01234{width:14.400000pt;}
._12_c01234{width:15.696000pt;}
._22_c01234{width:16.920000pt;}
._3_c01234{width:21.096000pt;}
._18_c01234{width:22.336000pt;}
._9_c01234{width:23.904000pt;}
._1d_c01234{width:25.776000pt;}
._1e_c01234{width:28.728000pt;}
._1c_c01234{width:33.109867pt;}
._17_c01234{width:59.544000pt;}
._1b_c01234{width:73.536000pt;}
._20_c01234{width:88.084267pt;}
.fs6_c01234{font-size:42.666667pt;}
.fs4_c01234{font-size:51.200000pt;}
.fs1_c01234{font-size:64.000000pt;}
.fs2_c01234{font-size:66.666667pt;}
.fs5_c01234{font-size:69.333333pt;}
.fs0_c01234{font-size:72.000000pt;}
.fs3_c01234{font-size:256.000000pt;}
.y0_c01234{bottom:0.000000pt;}
.y23_c01234{bottom:2.760000pt;}
.y22_c01234{bottom:6.425217pt;}
.y21_c01234{bottom:68.906667pt;}
.y20_c01234{bottom:92.640000pt;}
.y1f_c01234{bottom:114.906667pt;}
.y1e_c01234{bottom:136.506667pt;}
.y1d_c01234{bottom:158.373333pt;}
.y1c_c01234{bottom:179.440000pt;}
.y1b_c01234{bottom:201.306667pt;}
.y1a_c01234{bottom:222.640000pt;}
.y19_c01234{bottom:244.773333pt;}
.y18_c01234{bottom:265.440000pt;}
.y17_c01234{bottom:287.440000pt;}
.y16_c01234{bottom:309.306667pt;}
.y15_c01234{bottom:330.640000pt;}
.y14_c01234{bottom:352.240000pt;}
.y13_c01234{bottom:373.706667pt;}
.y12_c01234{bottom:394.773333pt;}
.y11_c01234{bottom:416.106667pt;}
.y10_c01234{bottom:437.440000pt;}
.yf_c01234{bottom:459.040000pt;}
.ye_c01234{bottom:479.973333pt;}
.yd_c01234{bottom:501.306667pt;}
.yc_c01234{bottom:522.640000pt;}
.yb_c01234{bottom:544.106667pt;}
.y9_c01234{bottom:551.440000pt;}
.ya_c01234{bottom:565.440000pt;}
.y8_c01234{bottom:630.506667pt;}
.y7_c01234{bottom:672.506667pt;}
.y6_c01234{bottom:694.106667pt;}
.y5_c01234{bottom:715.440000pt;}
.y4_c01234{bottom:737.040000pt;}
.y3_c01234{bottom:758.106667pt;}
.y2_c01234{bottom:779.440000pt;}
.y1_c01234{bottom:799.840000pt;}
.h8_c01234{height:11.733399pt;}
.h9_c01234{height:38.937500pt;}
.h3_c01234{height:65.397135pt;}
.h2_c01234{height:70.664062pt;}
.h5_c01234{height:74.906250pt;}
.h6_c01234{height:81.031250pt;}
.h7_c01234{height:87.783854pt;}
.h4_c01234{height:251.250000pt;}
.h1_c01234{height:876.666667pt;}
.h0_c01234{height:876.933333pt;}
.w1_c01234{width:93.222667pt;}
.w0_c01234{width:597.333333pt;}
.x0_c01234{left:0.000000pt;}
.x9_c01234{left:36.533333pt;}
.x1_c01234{left:60.266667pt;}
.x2_c01234{left:62.133333pt;}
.x4_c01234{left:63.066667pt;}
.x5_c01234{left:64.266667pt;}
.x7_c01234{left:65.600000pt;}
.x3_c01234{left:83.733333pt;}
.x8_c01234{left:100.400000pt;}
.x6_c01234{left:159.866667pt;}
.xb_c01234{left:255.834880pt;}
.xa_c01234{left:443.066667pt;}
}





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

.ir_c01235:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01235{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01235;src:url('chunks/assets/font_677ad066b196803eacb4454f.woff2')format("woff");}.ff1_c01235{font-family:ff1_c01235;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01235;src:url('chunks/assets/font_d882e63b98a4073b53f48cd9.woff2')format("woff");}.ff2_c01235{font-family:ff2_c01235;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01235;src:url('chunks/assets/font_dc98b6a366c7a9c1af8c599d.woff2')format("woff");}.ff3_c01235{font-family:ff3_c01235;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01235;src:url('chunks/assets/font_cf0334c580a7dbb13411fba8.woff2')format("woff");}.ff4_c01235{font-family:ff4_c01235;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01235;src:url('chunks/assets/font_f05f6ecc32624fbc37688976.woff2')format("woff");}.ff5_c01235{font-family:ff5_c01235;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01235;src:url('chunks/assets/font_02e53136d4820e1693bc549e.woff2')format("woff");}.ff6_c01235{font-family:ff6_c01235;line-height:1.437000;font-style:normal;font-weight: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_c01235;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c01235{font-family:ff7_c01235;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01235{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01235{vertical-align:0.000000px;}
.ls1_c01235{letter-spacing:0.000000px;}
.ls2_c01235{letter-spacing:3.000000px;}
.ls0_c01235{letter-spacing:6.300000px;}
.ls3_c01235{letter-spacing:12.000000px;}
.sc__c01235{text-shadow:none;}
.sc0_c01235{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01235{-webkit-text-stroke:0px transparent;}
.sc0_c01235{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01235{word-spacing:-20.250000px;}
.ws0_c01235{word-spacing:-17.352000px;}
.ws2_c01235{word-spacing:0.000000px;}
._1d_c01235{margin-left:-41.118000px;}
._1f_c01235{margin-left:-22.194000px;}
._23_c01235{margin-left:-21.060000px;}
._1c_c01235{margin-left:-18.558000px;}
._21_c01235{margin-left:-17.496000px;}
._18_c01235{margin-left:-14.781000px;}
._a_c01235{margin-left:-13.446000px;}
._6_c01235{margin-left:-11.259000px;}
._9_c01235{margin-left:-8.100000px;}
._8_c01235{margin-left:-6.885000px;}
._2_c01235{margin-left:-4.860000px;}
._e_c01235{margin-left:-3.564000px;}
._4_c01235{margin-left:-2.430000px;}
._13_c01235{margin-left:-1.098000px;}
._1_c01235{width:1.539000px;}
._0_c01235{width:2.754000px;}
._3_c01235{width:3.888000px;}
._d_c01235{width:4.941000px;}
._5_c01235{width:6.075000px;}
._7_c01235{width:7.857000px;}
._11_c01235{width:8.910000px;}
._c_c01235{width:10.935000px;}
._f_c01235{width:12.798000px;}
._12_c01235{width:14.256000px;}
._19_c01235{width:15.876000px;}
._17_c01235{width:18.564000px;}
._16_c01235{width:20.706000px;}
._15_c01235{width:22.977000px;}
._10_c01235{width:25.818000px;}
._14_c01235{width:29.229000px;}
._22_c01235{width:36.531000px;}
._1e_c01235{width:47.505000px;}
._24_c01235{width:58.713000px;}
._20_c01235{width:66.150000px;}
._1b_c01235{width:119.232000px;}
._b_c01235{width:426.141000px;}
._1a_c01235{width:472.434000px;}
.fc2_c01235{color:transparent;}
.fc1_c01235{color:rgb(128,128,128);}
.fc0_c01235{color:rgb(0,0,0);}
.fs2_c01235{font-size:42.000000px;}
.fs5_c01235{font-size:48.000000px;}
.fs1_c01235{font-size:72.000000px;}
.fs0_c01235{font-size:81.000000px;}
.fs4_c01235{font-size:87.000000px;}
.fs3_c01235{font-size:102.000000px;}
.y0_c01235{bottom:0.000000px;}
.y25_c01235{bottom:3.105000px;}
.y24_c01235{bottom:7.228363px;}
.y23_c01235{bottom:78.300000px;}
.y22_c01235{bottom:100.200000px;}
.y21_c01235{bottom:124.950000px;}
.y20_c01235{bottom:149.850000px;}
.y1f_c01235{bottom:173.850000px;}
.y1e_c01235{bottom:198.750000px;}
.y1d_c01235{bottom:222.750000px;}
.y1c_c01235{bottom:247.500000px;}
.y1b_c01235{bottom:271.800000px;}
.y1a_c01235{bottom:296.100000px;}
.y19_c01235{bottom:320.700000px;}
.y18_c01235{bottom:345.000000px;}
.y17_c01235{bottom:369.300000px;}
.y16_c01235{bottom:393.600000px;}
.y15_c01235{bottom:417.600000px;}
.y14_c01235{bottom:441.900000px;}
.y13_c01235{bottom:466.200000px;}
.y12_c01235{bottom:489.450000px;}
.y11_c01235{bottom:513.450000px;}
.y10_c01235{bottom:537.600000px;}
.yf_c01235{bottom:561.300000px;}
.ye_c01235{bottom:586.200000px;}
.yd_c01235{bottom:609.900000px;}
.yc_c01235{bottom:635.250000px;}
.yb_c01235{bottom:658.500000px;}
.ya_c01235{bottom:682.200000px;}
.y9_c01235{bottom:706.500000px;}
.y8_c01235{bottom:731.100000px;}
.y7_c01235{bottom:755.700000px;}
.y6_c01235{bottom:780.600000px;}
.y5_c01235{bottom:804.300000px;}
.y4_c01235{bottom:828.300000px;}
.y3_c01235{bottom:852.150000px;}
.y2_c01235{bottom:876.150000px;}
.y1_c01235{bottom:899.100000px;}
.h6_c01235{height:13.200074px;}
.h7_c01235{height:43.804688px;}
.h2_c01235{height:79.497070px;}
.h3_c01235{height:84.269531px;}
.h5_c01235{height:91.176000px;}
.h4_c01235{height:104.839927px;}
.h1_c01235{height:977.250000px;}
.h0_c01235{height:977.400000px;}
.w1_c01235{width:104.875500px;}
.w0_c01235{width:661.500000px;}
.x0_c01235{left:0.000000px;}
.x3_c01235{left:19.950000px;}
.x2_c01235{left:21.000000px;}
.x4_c01235{left:22.350000px;}
.x6_c01235{left:92.550000px;}
.xc_c01235{left:103.650000px;}
.xb_c01235{left:105.600000px;}
.xa_c01235{left:108.900000px;}
.x9_c01235{left:110.100000px;}
.x1_c01235{left:111.450000px;}
.x5_c01235{left:112.500000px;}
.x7_c01235{left:118.200000px;}
.x8_c01235{left:136.800000px;}
.xe_c01235{left:282.564240px;}
.xd_c01235{left:554.250000px;}
@media print{
.v0_c01235{vertical-align:0.000000pt;}
.ls1_c01235{letter-spacing:0.000000pt;}
.ls2_c01235{letter-spacing:2.666667pt;}
.ls0_c01235{letter-spacing:5.600000pt;}
.ls3_c01235{letter-spacing:10.666667pt;}
.ws1_c01235{word-spacing:-18.000000pt;}
.ws0_c01235{word-spacing:-15.424000pt;}
.ws2_c01235{word-spacing:0.000000pt;}
._1d_c01235{margin-left:-36.549333pt;}
._1f_c01235{margin-left:-19.728000pt;}
._23_c01235{margin-left:-18.720000pt;}
._1c_c01235{margin-left:-16.496000pt;}
._21_c01235{margin-left:-15.552000pt;}
._18_c01235{margin-left:-13.138667pt;}
._a_c01235{margin-left:-11.952000pt;}
._6_c01235{margin-left:-10.008000pt;}
._9_c01235{margin-left:-7.200000pt;}
._8_c01235{margin-left:-6.120000pt;}
._2_c01235{margin-left:-4.320000pt;}
._e_c01235{margin-left:-3.168000pt;}
._4_c01235{margin-left:-2.160000pt;}
._13_c01235{margin-left:-0.976000pt;}
._1_c01235{width:1.368000pt;}
._0_c01235{width:2.448000pt;}
._3_c01235{width:3.456000pt;}
._d_c01235{width:4.392000pt;}
._5_c01235{width:5.400000pt;}
._7_c01235{width:6.984000pt;}
._11_c01235{width:7.920000pt;}
._c_c01235{width:9.720000pt;}
._f_c01235{width:11.376000pt;}
._12_c01235{width:12.672000pt;}
._19_c01235{width:14.112000pt;}
._17_c01235{width:16.501333pt;}
._16_c01235{width:18.405333pt;}
._15_c01235{width:20.424000pt;}
._10_c01235{width:22.949333pt;}
._14_c01235{width:25.981333pt;}
._22_c01235{width:32.472000pt;}
._1e_c01235{width:42.226667pt;}
._24_c01235{width:52.189333pt;}
._20_c01235{width:58.800000pt;}
._1b_c01235{width:105.984000pt;}
._b_c01235{width:378.792000pt;}
._1a_c01235{width:419.941333pt;}
.fs2_c01235{font-size:37.333333pt;}
.fs5_c01235{font-size:42.666667pt;}
.fs1_c01235{font-size:64.000000pt;}
.fs0_c01235{font-size:72.000000pt;}
.fs4_c01235{font-size:77.333333pt;}
.fs3_c01235{font-size:90.666667pt;}
.y0_c01235{bottom:0.000000pt;}
.y25_c01235{bottom:2.760000pt;}
.y24_c01235{bottom:6.425212pt;}
.y23_c01235{bottom:69.600000pt;}
.y22_c01235{bottom:89.066667pt;}
.y21_c01235{bottom:111.066667pt;}
.y20_c01235{bottom:133.200000pt;}
.y1f_c01235{bottom:154.533333pt;}
.y1e_c01235{bottom:176.666667pt;}
.y1d_c01235{bottom:198.000000pt;}
.y1c_c01235{bottom:220.000000pt;}
.y1b_c01235{bottom:241.600000pt;}
.y1a_c01235{bottom:263.200000pt;}
.y19_c01235{bottom:285.066667pt;}
.y18_c01235{bottom:306.666667pt;}
.y17_c01235{bottom:328.266667pt;}
.y16_c01235{bottom:349.866667pt;}
.y15_c01235{bottom:371.200000pt;}
.y14_c01235{bottom:392.800000pt;}
.y13_c01235{bottom:414.400000pt;}
.y12_c01235{bottom:435.066667pt;}
.y11_c01235{bottom:456.400000pt;}
.y10_c01235{bottom:477.866667pt;}
.yf_c01235{bottom:498.933333pt;}
.ye_c01235{bottom:521.066667pt;}
.yd_c01235{bottom:542.133333pt;}
.yc_c01235{bottom:564.666667pt;}
.yb_c01235{bottom:585.333333pt;}
.ya_c01235{bottom:606.400000pt;}
.y9_c01235{bottom:628.000000pt;}
.y8_c01235{bottom:649.866667pt;}
.y7_c01235{bottom:671.733333pt;}
.y6_c01235{bottom:693.866667pt;}
.y5_c01235{bottom:714.933333pt;}
.y4_c01235{bottom:736.266667pt;}
.y3_c01235{bottom:757.466667pt;}
.y2_c01235{bottom:778.800000pt;}
.y1_c01235{bottom:799.200000pt;}
.h6_c01235{height:11.733399pt;}
.h7_c01235{height:38.937500pt;}
.h2_c01235{height:70.664062pt;}
.h3_c01235{height:74.906250pt;}
.h5_c01235{height:81.045333pt;}
.h4_c01235{height:93.191046pt;}
.h1_c01235{height:868.666667pt;}
.h0_c01235{height:868.800000pt;}
.w1_c01235{width:93.222667pt;}
.w0_c01235{width:588.000000pt;}
.x0_c01235{left:0.000000pt;}
.x3_c01235{left:17.733333pt;}
.x2_c01235{left:18.666667pt;}
.x4_c01235{left:19.866667pt;}
.x6_c01235{left:82.266667pt;}
.xc_c01235{left:92.133333pt;}
.xb_c01235{left:93.866667pt;}
.xa_c01235{left:96.800000pt;}
.x9_c01235{left:97.866667pt;}
.x1_c01235{left:99.066667pt;}
.x5_c01235{left:100.000000pt;}
.x7_c01235{left:105.066667pt;}
.x8_c01235{left:121.600000pt;}
.xe_c01235{left:251.168213pt;}
.xd_c01235{left:492.666667pt;}
}





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

.ir_c01236:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01236{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01236;src:url('chunks/assets/font_059b32147c04caf929d39b4f.woff2')format("woff");}.ff1_c01236{font-family:ff1_c01236;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01236;src:url('chunks/assets/font_a885184e4691cbc050c9496f.woff2')format("woff");}.ff2_c01236{font-family:ff2_c01236;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01236;src:url('chunks/assets/font_5bd9b04d58a5a28baa7a16ce.woff2')format("woff");}.ff3_c01236{font-family:ff3_c01236;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01236;src:url('chunks/assets/font_f9b399e84d027875fee79af3.woff2')format("woff");}.ff4_c01236{font-family:ff4_c01236;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01236;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff5_c01236{font-family:ff5_c01236;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01236;src:url('chunks/assets/font_5e037a2a5e3b4ae1a762eeef.woff2')format("woff");}.ff6_c01236{font-family:ff6_c01236;line-height:1.284180;font-style:normal;font-weight: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_c01236;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c01236{font-family:ff7_c01236;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01236{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01236{vertical-align:0.000000px;}
.ls2_c01236{letter-spacing:0.000000px;}
.ls1_c01236{letter-spacing:3.000000px;}
.ls4_c01236{letter-spacing:9.000000px;}
.ls0_c01236{letter-spacing:39.000000px;}
.ls3_c01236{letter-spacing:78.000000px;}
.sc__c01236{text-shadow:none;}
.sc0_c01236{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01236{-webkit-text-stroke:0px transparent;}
.sc0_c01236{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01236{word-spacing:-56.352000px;}
.ws1_c01236{word-spacing:-42.000000px;}
.ws0_c01236{word-spacing:-17.352000px;}
.ws3_c01236{word-spacing:0.000000px;}
._10_c01236{margin-left:-30.294000px;}
._d_c01236{margin-left:-22.416000px;}
._1d_c01236{margin-left:-20.517000px;}
._1_c01236{margin-left:-19.200000px;}
._26_c01236{margin-left:-17.856000px;}
._23_c01236{margin-left:-16.020000px;}
._a_c01236{margin-left:-14.688000px;}
._b_c01236{margin-left:-13.566000px;}
._25_c01236{margin-left:-12.225000px;}
._1c_c01236{margin-left:-10.935000px;}
._4_c01236{margin-left:-9.282000px;}
._7_c01236{margin-left:-7.140000px;}
._c_c01236{margin-left:-5.322000px;}
._2_c01236{margin-left:-3.690000px;}
._14_c01236{margin-left:-2.214000px;}
._8_c01236{margin-left:-1.122000px;}
._13_c01236{width:1.116000px;}
._0_c01236{width:2.160000px;}
._9_c01236{width:3.570000px;}
._f_c01236{width:5.154000px;}
._e_c01236{width:7.011000px;}
._6_c01236{width:8.976000px;}
._5_c01236{width:10.200000px;}
._15_c01236{width:12.234000px;}
._3_c01236{width:13.974000px;}
._12_c01236{width:15.162000px;}
._16_c01236{width:17.127000px;}
._17_c01236{width:18.615000px;}
._2a_c01236{width:22.059000px;}
._11_c01236{width:23.250000px;}
._24_c01236{width:24.801000px;}
._1a_c01236{width:26.082000px;}
._29_c01236{width:28.185000px;}
._1f_c01236{width:29.937000px;}
._1e_c01236{width:33.495000px;}
._28_c01236{width:35.784000px;}
._27_c01236{width:44.241000px;}
._18_c01236{width:45.762000px;}
._2b_c01236{width:51.141000px;}
._19_c01236{width:56.910000px;}
._1b_c01236{width:161.265000px;}
._22_c01236{width:210.516000px;}
._20_c01236{width:261.156000px;}
._21_c01236{width:289.557000px;}
._2d_c01236{width:365.706000px;}
._2c_c01236{width:1030.806000px;}
.fc2_c01236{color:transparent;}
.fc1_c01236{color:rgb(128,128,128);}
.fc0_c01236{color:rgb(0,0,0);}
.fs6_c01236{font-size:48.000000px;}
.fs5_c01236{font-size:66.000000px;}
.fs4_c01236{font-size:72.000000px;}
.fs2_c01236{font-size:81.000000px;}
.fs3_c01236{font-size:93.000000px;}
.fs1_c01236{font-size:102.000000px;}
.fs0_c01236{font-size:120.000000px;}
.y0_c01236{bottom:0.000000px;}
.y26_c01236{bottom:3.105000px;}
.y25_c01236{bottom:7.228369px;}
.y24_c01236{bottom:47.820000px;}
.y23_c01236{bottom:71.220000px;}
.y22_c01236{bottom:96.420000px;}
.y21_c01236{bottom:121.620000px;}
.y20_c01236{bottom:146.520000px;}
.y1f_c01236{bottom:171.420000px;}
.y1e_c01236{bottom:196.320000px;}
.y1d_c01236{bottom:220.770000px;}
.y1c_c01236{bottom:245.370000px;}
.y1b_c01236{bottom:269.970000px;}
.y1a_c01236{bottom:294.870000px;}
.y19_c01236{bottom:319.320000px;}
.y18_c01236{bottom:342.570000px;}
.y17_c01236{bottom:368.220000px;}
.y16_c01236{bottom:392.820000px;}
.y15_c01236{bottom:417.120000px;}
.y14_c01236{bottom:441.420000px;}
.y13_c01236{bottom:465.720000px;}
.y12_c01236{bottom:490.020000px;}
.y11_c01236{bottom:514.020000px;}
.y10_c01236{bottom:538.020000px;}
.yf_c01236{bottom:562.620000px;}
.ye_c01236{bottom:586.470000px;}
.yd_c01236{bottom:610.770000px;}
.yc_c01236{bottom:634.770000px;}
.yb_c01236{bottom:659.070000px;}
.ya_c01236{bottom:682.470000px;}
.y9_c01236{bottom:708.120000px;}
.y8_c01236{bottom:732.270000px;}
.y7_c01236{bottom:757.320000px;}
.y6_c01236{bottom:780.870000px;}
.y5_c01236{bottom:804.570000px;}
.y4_c01236{bottom:829.170000px;}
.y3_c01236{bottom:853.170000px;}
.y2_c01236{bottom:879.570000px;}
.y1_c01236{bottom:912.270000px;}
.h7_c01236{height:13.200073px;}
.h8_c01236{height:43.804688px;}
.h4_c01236{height:79.497070px;}
.h6_c01236{height:84.269531px;}
.h5_c01236{height:91.160156px;}
.h3_c01236{height:91.274414px;}
.h2_c01236{height:120.937500px;}
.h1_c01236{height:986.250000px;}
.h0_c01236{height:986.550000px;}
.w1_c01236{width:104.875500px;}
.w0_c01236{width:672.000000px;}
.x0_c01236{left:0.000000px;}
.x2_c01236{left:42.900000px;}
.x3_c01236{left:48.000000px;}
.x9_c01236{left:52.050000px;}
.x8_c01236{left:53.550000px;}
.x7_c01236{left:54.600000px;}
.x6_c01236{left:55.950000px;}
.x5_c01236{left:57.000000px;}
.x4_c01236{left:58.050000px;}
.x1_c01236{left:59.100000px;}
.xa_c01236{left:63.900000px;}
.xb_c01236{left:287.814240px;}
@media print{
.v0_c01236{vertical-align:0.000000pt;}
.ls2_c01236{letter-spacing:0.000000pt;}
.ls1_c01236{letter-spacing:2.666667pt;}
.ls4_c01236{letter-spacing:8.000000pt;}
.ls0_c01236{letter-spacing:34.666667pt;}
.ls3_c01236{letter-spacing:69.333333pt;}
.ws2_c01236{word-spacing:-50.090667pt;}
.ws1_c01236{word-spacing:-37.333333pt;}
.ws0_c01236{word-spacing:-15.424000pt;}
.ws3_c01236{word-spacing:0.000000pt;}
._10_c01236{margin-left:-26.928000pt;}
._d_c01236{margin-left:-19.925333pt;}
._1d_c01236{margin-left:-18.237333pt;}
._1_c01236{margin-left:-17.066667pt;}
._26_c01236{margin-left:-15.872000pt;}
._23_c01236{margin-left:-14.240000pt;}
._a_c01236{margin-left:-13.056000pt;}
._b_c01236{margin-left:-12.058667pt;}
._25_c01236{margin-left:-10.866667pt;}
._1c_c01236{margin-left:-9.720000pt;}
._4_c01236{margin-left:-8.250667pt;}
._7_c01236{margin-left:-6.346667pt;}
._c_c01236{margin-left:-4.730667pt;}
._2_c01236{margin-left:-3.280000pt;}
._14_c01236{margin-left:-1.968000pt;}
._8_c01236{margin-left:-0.997333pt;}
._13_c01236{width:0.992000pt;}
._0_c01236{width:1.920000pt;}
._9_c01236{width:3.173333pt;}
._f_c01236{width:4.581333pt;}
._e_c01236{width:6.232000pt;}
._6_c01236{width:7.978667pt;}
._5_c01236{width:9.066667pt;}
._15_c01236{width:10.874667pt;}
._3_c01236{width:12.421333pt;}
._12_c01236{width:13.477333pt;}
._16_c01236{width:15.224000pt;}
._17_c01236{width:16.546667pt;}
._2a_c01236{width:19.608000pt;}
._11_c01236{width:20.666667pt;}
._24_c01236{width:22.045333pt;}
._1a_c01236{width:23.184000pt;}
._29_c01236{width:25.053333pt;}
._1f_c01236{width:26.610667pt;}
._1e_c01236{width:29.773333pt;}
._28_c01236{width:31.808000pt;}
._27_c01236{width:39.325333pt;}
._18_c01236{width:40.677333pt;}
._2b_c01236{width:45.458667pt;}
._19_c01236{width:50.586667pt;}
._1b_c01236{width:143.346667pt;}
._22_c01236{width:187.125333pt;}
._20_c01236{width:232.138667pt;}
._21_c01236{width:257.384000pt;}
._2d_c01236{width:325.072000pt;}
._2c_c01236{width:916.272000pt;}
.fs6_c01236{font-size:42.666667pt;}
.fs5_c01236{font-size:58.666667pt;}
.fs4_c01236{font-size:64.000000pt;}
.fs2_c01236{font-size:72.000000pt;}
.fs3_c01236{font-size:82.666667pt;}
.fs1_c01236{font-size:90.666667pt;}
.fs0_c01236{font-size:106.666667pt;}
.y0_c01236{bottom:0.000000pt;}
.y26_c01236{bottom:2.760000pt;}
.y25_c01236{bottom:6.425217pt;}
.y24_c01236{bottom:42.506667pt;}
.y23_c01236{bottom:63.306667pt;}
.y22_c01236{bottom:85.706667pt;}
.y21_c01236{bottom:108.106667pt;}
.y20_c01236{bottom:130.240000pt;}
.y1f_c01236{bottom:152.373333pt;}
.y1e_c01236{bottom:174.506667pt;}
.y1d_c01236{bottom:196.240000pt;}
.y1c_c01236{bottom:218.106667pt;}
.y1b_c01236{bottom:239.973333pt;}
.y1a_c01236{bottom:262.106667pt;}
.y19_c01236{bottom:283.840000pt;}
.y18_c01236{bottom:304.506667pt;}
.y17_c01236{bottom:327.306667pt;}
.y16_c01236{bottom:349.173333pt;}
.y15_c01236{bottom:370.773333pt;}
.y14_c01236{bottom:392.373333pt;}
.y13_c01236{bottom:413.973333pt;}
.y12_c01236{bottom:435.573333pt;}
.y11_c01236{bottom:456.906667pt;}
.y10_c01236{bottom:478.240000pt;}
.yf_c01236{bottom:500.106667pt;}
.ye_c01236{bottom:521.306667pt;}
.yd_c01236{bottom:542.906667pt;}
.yc_c01236{bottom:564.240000pt;}
.yb_c01236{bottom:585.840000pt;}
.ya_c01236{bottom:606.640000pt;}
.y9_c01236{bottom:629.440000pt;}
.y8_c01236{bottom:650.906667pt;}
.y7_c01236{bottom:673.173333pt;}
.y6_c01236{bottom:694.106667pt;}
.y5_c01236{bottom:715.173333pt;}
.y4_c01236{bottom:737.040000pt;}
.y3_c01236{bottom:758.373333pt;}
.y2_c01236{bottom:781.840000pt;}
.y1_c01236{bottom:810.906667pt;}
.h7_c01236{height:11.733399pt;}
.h8_c01236{height:38.937500pt;}
.h4_c01236{height:70.664062pt;}
.h6_c01236{height:74.906250pt;}
.h5_c01236{height:81.031250pt;}
.h3_c01236{height:81.132812pt;}
.h2_c01236{height:107.500000pt;}
.h1_c01236{height:876.666667pt;}
.h0_c01236{height:876.933333pt;}
.w1_c01236{width:93.222667pt;}
.w0_c01236{width:597.333333pt;}
.x0_c01236{left:0.000000pt;}
.x2_c01236{left:38.133333pt;}
.x3_c01236{left:42.666667pt;}
.x9_c01236{left:46.266667pt;}
.x8_c01236{left:47.600000pt;}
.x7_c01236{left:48.533333pt;}
.x6_c01236{left:49.733333pt;}
.x5_c01236{left:50.666667pt;}
.x4_c01236{left:51.600000pt;}
.x1_c01236{left:52.533333pt;}
.xa_c01236{left:56.800000pt;}
.xb_c01236{left:255.834880pt;}
}





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

.ir_c01237:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01237{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01237;src:url('chunks/assets/font_a8d70f2e7222a0693f078e3a.woff2')format("woff");}.ff1_c01237{font-family:ff1_c01237;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01237;src:url('chunks/assets/font_4701a3e9657e2b5bb180d163.woff2')format("woff");}.ff2_c01237{font-family:ff2_c01237;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01237;src:url('chunks/assets/font_7fa08c26b4229aea06c2bec6.woff2')format("woff");}.ff3_c01237{font-family:ff3_c01237;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01237;src:url('chunks/assets/font_cf88ac12be8a821b84a41208.woff2')format("woff");}.ff4_c01237{font-family:ff4_c01237;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01237;src:url('chunks/assets/font_65af2c9124388b83cb19658f.woff2')format("woff");}.ff5_c01237{font-family:ff5_c01237;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01237;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff6_c01237{font-family:ff6_c01237;line-height:1.311035;font-style:normal;font-weight: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_c01237;src:url('chunks/assets/font_26553f64cad80ce47c4a85a7.woff2')format("woff");}.ff7_c01237{font-family:ff7_c01237;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c01237;src:url('chunks/assets/font_ce6249d51c697d8a3fba7059.woff2')format("woff");}.ff8_c01237{font-family:ff8_c01237;line-height:1.437000;font-style:normal;font-weight: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_c01237;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff9_c01237{font-family:ff9_c01237;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01237{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01237{vertical-align:0.000000px;}
.ls3_c01237{letter-spacing:0.000000px;}
.ls2_c01237{letter-spacing:6.768000px;}
.ls1_c01237{letter-spacing:13.800000px;}
.ls0_c01237{letter-spacing:48.900000px;}
.sc__c01237{text-shadow:none;}
.sc0_c01237{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01237{-webkit-text-stroke:0px transparent;}
.sc0_c01237{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01237{word-spacing:-67.686000px;}
.ws3_c01237{word-spacing:-23.250000px;}
.ws0_c01237{word-spacing:-18.014400px;}
.ws1_c01237{word-spacing:-17.352000px;}
.ws4_c01237{word-spacing:0.000000px;}
._25_c01237{margin-left:-42.744000px;}
._2a_c01237{margin-left:-29.097000px;}
._2c_c01237{margin-left:-27.717000px;}
._23_c01237{margin-left:-20.124000px;}
._11_c01237{margin-left:-18.549000px;}
._29_c01237{margin-left:-14.418000px;}
._18_c01237{margin-left:-12.879000px;}
._1c_c01237{margin-left:-10.356000px;}
._e_c01237{margin-left:-8.262000px;}
._16_c01237{margin-left:-6.480000px;}
._a_c01237{margin-left:-5.169000px;}
._0_c01237{margin-left:-3.888000px;}
._4_c01237{margin-left:-2.349000px;}
._f_c01237{margin-left:-1.296000px;}
._3_c01237{width:1.296000px;}
._1_c01237{width:2.835000px;}
._7_c01237{width:3.888000px;}
._2_c01237{width:4.941000px;}
._6_c01237{width:6.318000px;}
._b_c01237{width:7.714800px;}
._9_c01237{width:8.991000px;}
._8_c01237{width:10.044000px;}
._c_c01237{width:11.563200px;}
._10_c01237{width:12.778200px;}
._5_c01237{width:14.013000px;}
._17_c01237{width:15.031200px;}
._20_c01237{width:16.485000px;}
._15_c01237{width:18.474600px;}
._28_c01237{width:20.196000px;}
._1b_c01237{width:21.210000px;}
._1d_c01237{width:22.680000px;}
._1f_c01237{width:27.801000px;}
._2d_c01237{width:34.506000px;}
._1e_c01237{width:37.719600px;}
._13_c01237{width:49.572000px;}
._d_c01237{width:59.940000px;}
._14_c01237{width:66.177000px;}
._19_c01237{width:73.629000px;}
._2b_c01237{width:76.950000px;}
._26_c01237{width:81.198000px;}
._1a_c01237{width:105.786000px;}
._27_c01237{width:132.603000px;}
._12_c01237{width:162.162000px;}
._24_c01237{width:179.556000px;}
._2e_c01237{width:221.859000px;}
._21_c01237{width:252.339000px;}
._22_c01237{width:507.975000px;}
.fc2_c01237{color:transparent;}
.fc1_c01237{color:rgb(128,128,128);}
.fc0_c01237{color:rgb(0,0,0);}
.fs3_c01237{font-size:45.000000px;}
.fs9_c01237{font-size:48.000000px;}
.fs4_c01237{font-size:54.000000px;}
.fs1_c01237{font-size:64.800000px;}
.fs6_c01237{font-size:66.000000px;}
.fs5_c01237{font-size:72.000000px;}
.fs2_c01237{font-size:78.000000px;}
.fs0_c01237{font-size:81.000000px;}
.fs7_c01237{font-size:87.000000px;}
.fs8_c01237{font-size:93.000000px;}
.y0_c01237{bottom:0.000000px;}
.y25_c01237{bottom:3.105000px;}
.y24_c01237{bottom:7.228355px;}
.y23_c01237{bottom:48.285000px;}
.y22_c01237{bottom:69.735000px;}
.y21_c01237{bottom:96.885000px;}
.y20_c01237{bottom:120.735000px;}
.y1f_c01237{bottom:145.485000px;}
.y1e_c01237{bottom:170.385000px;}
.y1d_c01237{bottom:195.285000px;}
.y1c_c01237{bottom:219.585000px;}
.y1b_c01237{bottom:244.935000px;}
.y1a_c01237{bottom:268.935000px;}
.y19_c01237{bottom:293.985000px;}
.y18_c01237{bottom:319.185000px;}
.y17_c01237{bottom:342.585000px;}
.y16_c01237{bottom:366.885000px;}
.y15_c01237{bottom:391.185000px;}
.y14_c01237{bottom:419.385000px;}
.y13_c01237{bottom:444.435000px;}
.y12_c01237{bottom:464.385000px;}
.y11_c01237{bottom:490.935000px;}
.y10_c01237{bottom:514.035000px;}
.yf_c01237{bottom:538.185000px;}
.ye_c01237{bottom:562.635000px;}
.yd_c01237{bottom:586.935000px;}
.yc_c01237{bottom:611.235000px;}
.yb_c01237{bottom:635.835000px;}
.ya_c01237{bottom:659.835000px;}
.y9_c01237{bottom:684.435000px;}
.y8_c01237{bottom:708.735000px;}
.y7_c01237{bottom:733.335000px;}
.y6_c01237{bottom:757.635000px;}
.y5_c01237{bottom:781.185000px;}
.y4_c01237{bottom:806.535000px;}
.y3_c01237{bottom:830.235000px;}
.y2_c01237{bottom:854.235000px;}
.y1_c01237{bottom:878.835000px;}
.h7_c01237{height:13.200074px;}
.h8_c01237{height:43.804688px;}
.h2_c01237{height:79.497070px;}
.h3_c01237{height:83.226000px;}
.h5_c01237{height:84.269531px;}
.h4_c01237{height:91.176000px;}
.h6_c01237{height:91.274414px;}
.h1_c01237{height:969.750000px;}
.h0_c01237{height:969.825000px;}
.w2_c01237{width:104.875500px;}
.w0_c01237{width:656.100000px;}
.w1_c01237{width:656.250000px;}
.x0_c01237{left:0.000000px;}
.x3_c01237{left:19.950000px;}
.x11_c01237{left:23.250000px;}
.xc_c01237{left:24.300000px;}
.xa_c01237{left:25.650000px;}
.x9_c01237{left:27.000000px;}
.xb_c01237{left:37.350000px;}
.xe_c01237{left:57.300000px;}
.xf_c01237{left:69.150000px;}
.x6_c01237{left:73.950000px;}
.x7_c01237{left:103.200000px;}
.x10_c01237{left:108.300000px;}
.x1_c01237{left:112.050000px;}
.x4_c01237{left:113.100000px;}
.x8_c01237{left:115.050000px;}
.x5_c01237{left:116.700000px;}
.xd_c01237{left:117.750000px;}
.x2_c01237{left:154.200000px;}
.x13_c01237{left:279.864258px;}
.x12_c01237{left:572.100000px;}
@media print{
.v0_c01237{vertical-align:0.000000pt;}
.ls3_c01237{letter-spacing:0.000000pt;}
.ls2_c01237{letter-spacing:6.016000pt;}
.ls1_c01237{letter-spacing:12.266667pt;}
.ls0_c01237{letter-spacing:43.466667pt;}
.ws2_c01237{word-spacing:-60.165333pt;}
.ws3_c01237{word-spacing:-20.666667pt;}
.ws0_c01237{word-spacing:-16.012800pt;}
.ws1_c01237{word-spacing:-15.424000pt;}
.ws4_c01237{word-spacing:0.000000pt;}
._25_c01237{margin-left:-37.994667pt;}
._2a_c01237{margin-left:-25.864000pt;}
._2c_c01237{margin-left:-24.637333pt;}
._23_c01237{margin-left:-17.888000pt;}
._11_c01237{margin-left:-16.488000pt;}
._29_c01237{margin-left:-12.816000pt;}
._18_c01237{margin-left:-11.448000pt;}
._1c_c01237{margin-left:-9.205333pt;}
._e_c01237{margin-left:-7.344000pt;}
._16_c01237{margin-left:-5.760000pt;}
._a_c01237{margin-left:-4.594667pt;}
._0_c01237{margin-left:-3.456000pt;}
._4_c01237{margin-left:-2.088000pt;}
._f_c01237{margin-left:-1.152000pt;}
._3_c01237{width:1.152000pt;}
._1_c01237{width:2.520000pt;}
._7_c01237{width:3.456000pt;}
._2_c01237{width:4.392000pt;}
._6_c01237{width:5.616000pt;}
._b_c01237{width:6.857600pt;}
._9_c01237{width:7.992000pt;}
._8_c01237{width:8.928000pt;}
._c_c01237{width:10.278400pt;}
._10_c01237{width:11.358400pt;}
._5_c01237{width:12.456000pt;}
._17_c01237{width:13.361067pt;}
._20_c01237{width:14.653333pt;}
._15_c01237{width:16.421867pt;}
._28_c01237{width:17.952000pt;}
._1b_c01237{width:18.853333pt;}
._1d_c01237{width:20.160000pt;}
._1f_c01237{width:24.712000pt;}
._2d_c01237{width:30.672000pt;}
._1e_c01237{width:33.528533pt;}
._13_c01237{width:44.064000pt;}
._d_c01237{width:53.280000pt;}
._14_c01237{width:58.824000pt;}
._19_c01237{width:65.448000pt;}
._2b_c01237{width:68.400000pt;}
._26_c01237{width:72.176000pt;}
._1a_c01237{width:94.032000pt;}
._27_c01237{width:117.869333pt;}
._12_c01237{width:144.144000pt;}
._24_c01237{width:159.605333pt;}
._2e_c01237{width:197.208000pt;}
._21_c01237{width:224.301333pt;}
._22_c01237{width:451.533333pt;}
.fs3_c01237{font-size:40.000000pt;}
.fs9_c01237{font-size:42.666667pt;}
.fs4_c01237{font-size:48.000000pt;}
.fs1_c01237{font-size:57.600000pt;}
.fs6_c01237{font-size:58.666667pt;}
.fs5_c01237{font-size:64.000000pt;}
.fs2_c01237{font-size:69.333333pt;}
.fs0_c01237{font-size:72.000000pt;}
.fs7_c01237{font-size:77.333333pt;}
.fs8_c01237{font-size:82.666667pt;}
.y0_c01237{bottom:0.000000pt;}
.y25_c01237{bottom:2.760000pt;}
.y24_c01237{bottom:6.425204pt;}
.y23_c01237{bottom:42.920000pt;}
.y22_c01237{bottom:61.986667pt;}
.y21_c01237{bottom:86.120000pt;}
.y20_c01237{bottom:107.320000pt;}
.y1f_c01237{bottom:129.320000pt;}
.y1e_c01237{bottom:151.453333pt;}
.y1d_c01237{bottom:173.586667pt;}
.y1c_c01237{bottom:195.186667pt;}
.y1b_c01237{bottom:217.720000pt;}
.y1a_c01237{bottom:239.053333pt;}
.y19_c01237{bottom:261.320000pt;}
.y18_c01237{bottom:283.720000pt;}
.y17_c01237{bottom:304.520000pt;}
.y16_c01237{bottom:326.120000pt;}
.y15_c01237{bottom:347.720000pt;}
.y14_c01237{bottom:372.786667pt;}
.y13_c01237{bottom:395.053333pt;}
.y12_c01237{bottom:412.786667pt;}
.y11_c01237{bottom:436.386667pt;}
.y10_c01237{bottom:456.920000pt;}
.yf_c01237{bottom:478.386667pt;}
.ye_c01237{bottom:500.120000pt;}
.yd_c01237{bottom:521.720000pt;}
.yc_c01237{bottom:543.320000pt;}
.yb_c01237{bottom:565.186667pt;}
.ya_c01237{bottom:586.520000pt;}
.y9_c01237{bottom:608.386667pt;}
.y8_c01237{bottom:629.986667pt;}
.y7_c01237{bottom:651.853333pt;}
.y6_c01237{bottom:673.453333pt;}
.y5_c01237{bottom:694.386667pt;}
.y4_c01237{bottom:716.920000pt;}
.y3_c01237{bottom:737.986667pt;}
.y2_c01237{bottom:759.320000pt;}
.y1_c01237{bottom:781.186667pt;}
.h7_c01237{height:11.733399pt;}
.h8_c01237{height:38.937500pt;}
.h2_c01237{height:70.664062pt;}
.h3_c01237{height:73.978667pt;}
.h5_c01237{height:74.906250pt;}
.h4_c01237{height:81.045333pt;}
.h6_c01237{height:81.132812pt;}
.h1_c01237{height:862.000000pt;}
.h0_c01237{height:862.066667pt;}
.w2_c01237{width:93.222667pt;}
.w0_c01237{width:583.200000pt;}
.w1_c01237{width:583.333333pt;}
.x0_c01237{left:0.000000pt;}
.x3_c01237{left:17.733333pt;}
.x11_c01237{left:20.666667pt;}
.xc_c01237{left:21.600000pt;}
.xa_c01237{left:22.800000pt;}
.x9_c01237{left:24.000000pt;}
.xb_c01237{left:33.200000pt;}
.xe_c01237{left:50.933333pt;}
.xf_c01237{left:61.466667pt;}
.x6_c01237{left:65.733333pt;}
.x7_c01237{left:91.733333pt;}
.x10_c01237{left:96.266667pt;}
.x1_c01237{left:99.600000pt;}
.x4_c01237{left:100.533333pt;}
.x8_c01237{left:102.266667pt;}
.x5_c01237{left:103.733333pt;}
.xd_c01237{left:104.666667pt;}
.x2_c01237{left:137.066667pt;}
.x13_c01237{left:248.768229pt;}
.x12_c01237{left:508.533333pt;}
}





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

.ir_c01238:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01238{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01238;src:url('chunks/assets/font_f4e3704d54715d25f7819939.woff2')format("woff");}.ff1_c01238{font-family:ff1_c01238;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01238;src:url('chunks/assets/font_56741c386eacdd9302373900.woff2')format("woff");}.ff2_c01238{font-family:ff2_c01238;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01238;src:url('chunks/assets/font_528cac4811263779161017b8.woff2')format("woff");}.ff3_c01238{font-family:ff3_c01238;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01238;src:url('chunks/assets/font_cf14af2099e872498c478b1b.woff2')format("woff");}.ff4_c01238{font-family:ff4_c01238;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01238;src:url('chunks/assets/font_9918a9ca5cefd672eac9de30.woff2')format("woff");}.ff5_c01238{font-family:ff5_c01238;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01238;src:url('chunks/assets/font_4eb3a4742374cc28b39db240.woff2')format("woff");}.ff6_c01238{font-family:ff6_c01238;line-height:1.437000;font-style:normal;font-weight: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_c01238;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff7_c01238{font-family:ff7_c01238;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c01238;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff8_c01238{font-family:ff8_c01238;line-height:1.219238;font-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_c01238{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m0_c01238{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01238{vertical-align:0.000000px;}
.ls5_c01238{letter-spacing:0.000000px;}
.ls2_c01238{letter-spacing:2.100000px;}
.ls0_c01238{letter-spacing:3.000000px;}
.ls1_c01238{letter-spacing:12.000000px;}
.ls3_c01238{letter-spacing:13.080000px;}
.ls4_c01238{letter-spacing:15.600000px;}
.sc__c01238{text-shadow:none;}
.sc0_c01238{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01238{-webkit-text-stroke:0px transparent;}
.sc0_c01238{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01238{word-spacing:-17.352000px;}
.ws0_c01238{word-spacing:-0.054000px;}
.ws2_c01238{word-spacing:0.000000px;}
._28_c01238{margin-left:-45.927000px;}
._2a_c01238{margin-left:-24.300000px;}
._2b_c01238{margin-left:-22.473000px;}
._24_c01238{margin-left:-20.049000px;}
._1e_c01238{margin-left:-17.553000px;}
._18_c01238{margin-left:-16.017000px;}
._1c_c01238{margin-left:-14.355000px;}
._19_c01238{margin-left:-12.162000px;}
._1d_c01238{margin-left:-10.680000px;}
._25_c01238{margin-left:-9.345000px;}
._16_c01238{margin-left:-7.980000px;}
._17_c01238{margin-left:-6.255000px;}
._15_c01238{margin-left:-5.178000px;}
._14_c01238{margin-left:-3.171000px;}
._12_c01238{margin-left:-1.863000px;}
._13_c01238{width:1.449000px;}
._9_c01238{width:2.601000px;}
._8_c01238{width:3.723000px;}
._1a_c01238{width:4.737000px;}
._5_c01238{width:5.814000px;}
._23_c01238{width:6.849000px;}
._3_c01238{width:8.058000px;}
._1_c01238{width:9.231000px;}
._22_c01238{width:10.518000px;}
._2_c01238{width:11.526000px;}
._20_c01238{width:12.627000px;}
._4_c01238{width:13.821000px;}
._b_c01238{width:14.841000px;}
._6_c01238{width:15.861000px;}
._0_c01238{width:17.085000px;}
._7_c01238{width:18.462000px;}
._10_c01238{width:19.530000px;}
._c_c01238{width:20.553000px;}
._f_c01238{width:21.627000px;}
._e_c01238{width:23.103000px;}
._a_c01238{width:24.378000px;}
._21_c01238{width:26.418000px;}
._11_c01238{width:27.900000px;}
._d_c01238{width:31.008000px;}
._1f_c01238{width:32.706000px;}
._2c_c01238{width:34.545000px;}
._27_c01238{width:38.868000px;}
._29_c01238{width:71.538000px;}
._26_c01238{width:173.595000px;}
._1b_c01238{width:236.175000px;}
._2d_c01238{width:453.480000px;}
.fc2_c01238{color:transparent;}
.fc1_c01238{color:rgb(128,128,128);}
.fc0_c01238{color:rgb(0,0,0);}
.fs7_c01238{font-size:48.000000px;}
.fs0_c01238{font-size:51.000000px;}
.fs2_c01238{font-size:54.000000px;}
.fs1_c01238{font-size:69.000000px;}
.fs3_c01238{font-size:72.000000px;}
.fs4_c01238{font-size:81.000000px;}
.fs5_c01238{font-size:87.000000px;}
.fs6_c01238{font-size:108.000000px;}
.y0_c01238{bottom:0.000000px;}
.y23_c01238{bottom:3.105000px;}
.y22_c01238{bottom:7.228357px;}
.y21_c01238{bottom:43.980000px;}
.y20_c01238{bottom:68.580000px;}
.y1f_c01238{bottom:93.180000px;}
.y1e_c01238{bottom:118.080000px;}
.y1d_c01238{bottom:142.080000px;}
.y1c_c01238{bottom:167.130000px;}
.y1b_c01238{bottom:191.130000px;}
.y1a_c01238{bottom:215.430000px;}
.y19_c01238{bottom:240.330000px;}
.y18_c01238{bottom:264.330000px;}
.y17_c01238{bottom:288.930000px;}
.y16_c01238{bottom:313.230000px;}
.y15_c01238{bottom:336.780000px;}
.y14_c01238{bottom:361.830000px;}
.y13_c01238{bottom:386.130000px;}
.y12_c01238{bottom:410.430000px;}
.y11_c01238{bottom:434.430000px;}
.y10_c01238{bottom:457.680000px;}
.yf_c01238{bottom:506.880000px;}
.ye_c01238{bottom:553.830000px;}
.yd_c01238{bottom:577.530000px;}
.yc_c01238{bottom:601.830000px;}
.yb_c01238{bottom:626.130000px;}
.ya_c01238{bottom:650.130000px;}
.y9_c01238{bottom:674.430000px;}
.y8_c01238{bottom:698.730000px;}
.y7_c01238{bottom:723.030000px;}
.y6_c01238{bottom:748.530000px;}
.y5_c01238{bottom:772.980000px;}
.y4_c01238{bottom:795.930000px;}
.y3_c01238{bottom:820.830000px;}
.y2_c01238{bottom:844.530000px;}
.y1_c01238{bottom:868.830000px;}
.ha_c01238{height:13.200074px;}
.hb_c01238{height:43.804688px;}
.h2_c01238{height:51.398438px;}
.h7_c01238{height:67.686035px;}
.h3_c01238{height:72.562500px;}
.h5_c01238{height:79.497070px;}
.h4_c01238{height:84.269531px;}
.h8_c01238{height:91.160156px;}
.h6_c01238{height:91.176000px;}
.h9_c01238{height:108.843750px;}
.h1_c01238{height:973.500000px;}
.h0_c01238{height:973.650000px;}
.w2_c01238{width:104.875500px;}
.w1_c01238{width:662.250000px;}
.w0_c01238{width:662.550000px;}
.x0_c01238{left:0.000000px;}
.x1_c01238{left:61.200000px;}
.x2_c01238{left:63.000000px;}
.x6_c01238{left:64.800000px;}
.x3_c01238{left:116.850000px;}
.x5_c01238{left:125.850000px;}
.x4_c01238{left:134.100000px;}
.x8_c01238{left:283.089249px;}
.x7_c01238{left:384.450000px;}
@media print{
.v0_c01238{vertical-align:0.000000pt;}
.ls5_c01238{letter-spacing:0.000000pt;}
.ls2_c01238{letter-spacing:1.866667pt;}
.ls0_c01238{letter-spacing:2.666667pt;}
.ls1_c01238{letter-spacing:10.666667pt;}
.ls3_c01238{letter-spacing:11.626667pt;}
.ls4_c01238{letter-spacing:13.866667pt;}
.ws1_c01238{word-spacing:-15.424000pt;}
.ws0_c01238{word-spacing:-0.048000pt;}
.ws2_c01238{word-spacing:0.000000pt;}
._28_c01238{margin-left:-40.824000pt;}
._2a_c01238{margin-left:-21.600000pt;}
._2b_c01238{margin-left:-19.976000pt;}
._24_c01238{margin-left:-17.821333pt;}
._1e_c01238{margin-left:-15.602667pt;}
._18_c01238{margin-left:-14.237333pt;}
._1c_c01238{margin-left:-12.760000pt;}
._19_c01238{margin-left:-10.810667pt;}
._1d_c01238{margin-left:-9.493333pt;}
._25_c01238{margin-left:-8.306667pt;}
._16_c01238{margin-left:-7.093333pt;}
._17_c01238{margin-left:-5.560000pt;}
._15_c01238{margin-left:-4.602667pt;}
._14_c01238{margin-left:-2.818667pt;}
._12_c01238{margin-left:-1.656000pt;}
._13_c01238{width:1.288000pt;}
._9_c01238{width:2.312000pt;}
._8_c01238{width:3.309333pt;}
._1a_c01238{width:4.210667pt;}
._5_c01238{width:5.168000pt;}
._23_c01238{width:6.088000pt;}
._3_c01238{width:7.162667pt;}
._1_c01238{width:8.205333pt;}
._22_c01238{width:9.349333pt;}
._2_c01238{width:10.245333pt;}
._20_c01238{width:11.224000pt;}
._4_c01238{width:12.285333pt;}
._b_c01238{width:13.192000pt;}
._6_c01238{width:14.098667pt;}
._0_c01238{width:15.186667pt;}
._7_c01238{width:16.410667pt;}
._10_c01238{width:17.360000pt;}
._c_c01238{width:18.269333pt;}
._f_c01238{width:19.224000pt;}
._e_c01238{width:20.536000pt;}
._a_c01238{width:21.669333pt;}
._21_c01238{width:23.482667pt;}
._11_c01238{width:24.800000pt;}
._d_c01238{width:27.562667pt;}
._1f_c01238{width:29.072000pt;}
._2c_c01238{width:30.706667pt;}
._27_c01238{width:34.549333pt;}
._29_c01238{width:63.589333pt;}
._26_c01238{width:154.306667pt;}
._1b_c01238{width:209.933333pt;}
._2d_c01238{width:403.093333pt;}
.fs7_c01238{font-size:42.666667pt;}
.fs0_c01238{font-size:45.333333pt;}
.fs2_c01238{font-size:48.000000pt;}
.fs1_c01238{font-size:61.333333pt;}
.fs3_c01238{font-size:64.000000pt;}
.fs4_c01238{font-size:72.000000pt;}
.fs5_c01238{font-size:77.333333pt;}
.fs6_c01238{font-size:96.000000pt;}
.y0_c01238{bottom:0.000000pt;}
.y23_c01238{bottom:2.760000pt;}
.y22_c01238{bottom:6.425206pt;}
.y21_c01238{bottom:39.093333pt;}
.y20_c01238{bottom:60.960000pt;}
.y1f_c01238{bottom:82.826667pt;}
.y1e_c01238{bottom:104.960000pt;}
.y1d_c01238{bottom:126.293333pt;}
.y1c_c01238{bottom:148.560000pt;}
.y1b_c01238{bottom:169.893333pt;}
.y1a_c01238{bottom:191.493333pt;}
.y19_c01238{bottom:213.626667pt;}
.y18_c01238{bottom:234.960000pt;}
.y17_c01238{bottom:256.826667pt;}
.y16_c01238{bottom:278.426667pt;}
.y15_c01238{bottom:299.360000pt;}
.y14_c01238{bottom:321.626667pt;}
.y13_c01238{bottom:343.226667pt;}
.y12_c01238{bottom:364.826667pt;}
.y11_c01238{bottom:386.160000pt;}
.y10_c01238{bottom:406.826667pt;}
.yf_c01238{bottom:450.560000pt;}
.ye_c01238{bottom:492.293333pt;}
.yd_c01238{bottom:513.360000pt;}
.yc_c01238{bottom:534.960000pt;}
.yb_c01238{bottom:556.560000pt;}
.ya_c01238{bottom:577.893333pt;}
.y9_c01238{bottom:599.493333pt;}
.y8_c01238{bottom:621.093333pt;}
.y7_c01238{bottom:642.693333pt;}
.y6_c01238{bottom:665.360000pt;}
.y5_c01238{bottom:687.093333pt;}
.y4_c01238{bottom:707.493333pt;}
.y3_c01238{bottom:729.626667pt;}
.y2_c01238{bottom:750.693333pt;}
.y1_c01238{bottom:772.293333pt;}
.ha_c01238{height:11.733399pt;}
.hb_c01238{height:38.937500pt;}
.h2_c01238{height:45.687500pt;}
.h7_c01238{height:60.165365pt;}
.h3_c01238{height:64.500000pt;}
.h5_c01238{height:70.664062pt;}
.h4_c01238{height:74.906250pt;}
.h8_c01238{height:81.031250pt;}
.h6_c01238{height:81.045333pt;}
.h9_c01238{height:96.750000pt;}
.h1_c01238{height:865.333333pt;}
.h0_c01238{height:865.466667pt;}
.w2_c01238{width:93.222667pt;}
.w1_c01238{width:588.666667pt;}
.w0_c01238{width:588.933333pt;}
.x0_c01238{left:0.000000pt;}
.x1_c01238{left:54.400000pt;}
.x2_c01238{left:56.000000pt;}
.x6_c01238{left:57.600000pt;}
.x3_c01238{left:103.866667pt;}
.x5_c01238{left:111.866667pt;}
.x4_c01238{left:119.200000pt;}
.x8_c01238{left:251.634888pt;}
.x7_c01238{left:341.733333pt;}
}





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

.ir_c01239:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01239{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01239;src:url('chunks/assets/font_f9564fdac3fc3064e9246516.woff2')format("woff");}.ff1_c01239{font-family:ff1_c01239;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01239;src:url('chunks/assets/font_79a4cc84db705fbc57720d2d.woff2')format("woff");}.ff2_c01239{font-family:ff2_c01239;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01239;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff3_c01239{font-family:ff3_c01239;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01239;src:url('chunks/assets/font_88daa2f2871904a5af9b400f.woff2')format("woff");}.ff4_c01239{font-family:ff4_c01239;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01239;src:url('chunks/assets/font_6a8cb8782fa761720ed3500f.woff2')format("woff");}.ff5_c01239{font-family:ff5_c01239;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01239;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c01239{font-family:ff6_c01239;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01239{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01239{vertical-align:0.000000px;}
.ls1_c01239{letter-spacing:0.000000px;}
.ls0_c01239{letter-spacing:86.874000px;}
.sc__c01239{text-shadow:none;}
.sc0_c01239{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01239{-webkit-text-stroke:0px transparent;}
.sc0_c01239{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01239{word-spacing:-20.250000px;}
.ws0_c01239{word-spacing:-17.352000px;}
.ws1_c01239{word-spacing:-16.926000px;}
.ws3_c01239{word-spacing:0.000000px;}
._13_c01239{margin-left:-22.437000px;}
._1c_c01239{margin-left:-17.901000px;}
._10_c01239{margin-left:-16.686000px;}
._e_c01239{margin-left:-14.985000px;}
._f_c01239{margin-left:-13.122000px;}
._11_c01239{margin-left:-11.907000px;}
._1b_c01239{margin-left:-10.773000px;}
._5_c01239{margin-left:-9.072000px;}
._9_c01239{margin-left:-7.290000px;}
._8_c01239{margin-left:-5.508000px;}
._7_c01239{margin-left:-3.726000px;}
._4_c01239{margin-left:-2.349000px;}
._b_c01239{margin-left:-1.134000px;}
._a_c01239{width:1.215000px;}
._6_c01239{width:2.511000px;}
._0_c01239{width:3.888000px;}
._1_c01239{width:5.184000px;}
._2_c01239{width:6.804000px;}
._3_c01239{width:8.424000px;}
._d_c01239{width:9.882000px;}
._12_c01239{width:11.421000px;}
._15_c01239{width:13.284000px;}
._1d_c01239{width:15.309000px;}
._14_c01239{width:16.362000px;}
._1e_c01239{width:17.496000px;}
._18_c01239{width:18.963000px;}
._22_c01239{width:21.546000px;}
._c_c01239{width:23.895000px;}
._17_c01239{width:26.487000px;}
._16_c01239{width:28.674000px;}
._20_c01239{width:31.347000px;}
._21_c01239{width:32.481000px;}
._19_c01239{width:36.246000px;}
._1f_c01239{width:165.078000px;}
._1a_c01239{width:221.604000px;}
.fc2_c01239{color:transparent;}
.fc1_c01239{color:rgb(128,128,128);}
.fc0_c01239{color:rgb(0,0,0);}
.fs4_c01239{font-size:48.000000px;}
.fs2_c01239{font-size:60.000000px;}
.fs1_c01239{font-size:72.000000px;}
.fs3_c01239{font-size:78.000000px;}
.fs0_c01239{font-size:81.000000px;}
.y0_c01239{bottom:0.000000px;}
.y25_c01239{bottom:3.105000px;}
.y24_c01239{bottom:7.228371px;}
.y23_c01239{bottom:42.915000px;}
.y22_c01239{bottom:65.565000px;}
.y21_c01239{bottom:90.915000px;}
.y20_c01239{bottom:115.815000px;}
.y1f_c01239{bottom:140.715000px;}
.y1e_c01239{bottom:165.015000px;}
.y1d_c01239{bottom:190.365000px;}
.y1c_c01239{bottom:215.115000px;}
.y1b_c01239{bottom:239.265000px;}
.y1a_c01239{bottom:263.565000px;}
.y19_c01239{bottom:288.615000px;}
.y18_c01239{bottom:312.615000px;}
.y17_c01239{bottom:337.515000px;}
.y16_c01239{bottom:362.265000px;}
.y15_c01239{bottom:387.165000px;}
.y14_c01239{bottom:410.865000px;}
.y13_c01239{bottom:434.715000px;}
.y12_c01239{bottom:460.065000px;}
.y11_c01239{bottom:482.715000px;}
.y10_c01239{bottom:507.615000px;}
.yf_c01239{bottom:531.615000px;}
.ye_c01239{bottom:555.615000px;}
.yd_c01239{bottom:580.215000px;}
.yc_c01239{bottom:604.515000px;}
.yb_c01239{bottom:629.115000px;}
.ya_c01239{bottom:652.815000px;}
.y9_c01239{bottom:676.665000px;}
.y8_c01239{bottom:700.965000px;}
.y7_c01239{bottom:725.265000px;}
.y6_c01239{bottom:749.565000px;}
.y5_c01239{bottom:773.865000px;}
.y4_c01239{bottom:798.615000px;}
.y3_c01239{bottom:822.915000px;}
.y2_c01239{bottom:846.915000px;}
.y1_c01239{bottom:871.215000px;}
.h5_c01239{height:13.200074px;}
.h6_c01239{height:43.804688px;}
.h2_c01239{height:79.497070px;}
.h4_c01239{height:84.269531px;}
.h3_c01239{height:91.160156px;}
.h1_c01239{height:986.250000px;}
.h0_c01239{height:986.325000px;}
.w2_c01239{width:104.875500px;}
.w0_c01239{width:667.425000px;}
.w1_c01239{width:667.500000px;}
.x0_c01239{left:0.000000px;}
.x6_c01239{left:32.400000px;}
.x5_c01239{left:33.450000px;}
.x8_c01239{left:64.500000px;}
.xa_c01239{left:123.300000px;}
.x9_c01239{left:124.950000px;}
.x1_c01239{left:126.150000px;}
.x2_c01239{left:127.200000px;}
.x3_c01239{left:128.250000px;}
.x4_c01239{left:129.300000px;}
.x7_c01239{left:156.000000px;}
.xc_c01239{left:285.526749px;}
.xb_c01239{left:583.950000px;}
@media print{
.v0_c01239{vertical-align:0.000000pt;}
.ls1_c01239{letter-spacing:0.000000pt;}
.ls0_c01239{letter-spacing:77.221333pt;}
.ws2_c01239{word-spacing:-18.000000pt;}
.ws0_c01239{word-spacing:-15.424000pt;}
.ws1_c01239{word-spacing:-15.045333pt;}
.ws3_c01239{word-spacing:0.000000pt;}
._13_c01239{margin-left:-19.944000pt;}
._1c_c01239{margin-left:-15.912000pt;}
._10_c01239{margin-left:-14.832000pt;}
._e_c01239{margin-left:-13.320000pt;}
._f_c01239{margin-left:-11.664000pt;}
._11_c01239{margin-left:-10.584000pt;}
._1b_c01239{margin-left:-9.576000pt;}
._5_c01239{margin-left:-8.064000pt;}
._9_c01239{margin-left:-6.480000pt;}
._8_c01239{margin-left:-4.896000pt;}
._7_c01239{margin-left:-3.312000pt;}
._4_c01239{margin-left:-2.088000pt;}
._b_c01239{margin-left:-1.008000pt;}
._a_c01239{width:1.080000pt;}
._6_c01239{width:2.232000pt;}
._0_c01239{width:3.456000pt;}
._1_c01239{width:4.608000pt;}
._2_c01239{width:6.048000pt;}
._3_c01239{width:7.488000pt;}
._d_c01239{width:8.784000pt;}
._12_c01239{width:10.152000pt;}
._15_c01239{width:11.808000pt;}
._1d_c01239{width:13.608000pt;}
._14_c01239{width:14.544000pt;}
._1e_c01239{width:15.552000pt;}
._18_c01239{width:16.856000pt;}
._22_c01239{width:19.152000pt;}
._c_c01239{width:21.240000pt;}
._17_c01239{width:23.544000pt;}
._16_c01239{width:25.488000pt;}
._20_c01239{width:27.864000pt;}
._21_c01239{width:28.872000pt;}
._19_c01239{width:32.218667pt;}
._1f_c01239{width:146.736000pt;}
._1a_c01239{width:196.981333pt;}
.fs4_c01239{font-size:42.666667pt;}
.fs2_c01239{font-size:53.333333pt;}
.fs1_c01239{font-size:64.000000pt;}
.fs3_c01239{font-size:69.333333pt;}
.fs0_c01239{font-size:72.000000pt;}
.y0_c01239{bottom:0.000000pt;}
.y25_c01239{bottom:2.760000pt;}
.y24_c01239{bottom:6.425219pt;}
.y23_c01239{bottom:38.146667pt;}
.y22_c01239{bottom:58.280000pt;}
.y21_c01239{bottom:80.813333pt;}
.y20_c01239{bottom:102.946667pt;}
.y1f_c01239{bottom:125.080000pt;}
.y1e_c01239{bottom:146.680000pt;}
.y1d_c01239{bottom:169.213333pt;}
.y1c_c01239{bottom:191.213333pt;}
.y1b_c01239{bottom:212.680000pt;}
.y1a_c01239{bottom:234.280000pt;}
.y19_c01239{bottom:256.546667pt;}
.y18_c01239{bottom:277.880000pt;}
.y17_c01239{bottom:300.013333pt;}
.y16_c01239{bottom:322.013333pt;}
.y15_c01239{bottom:344.146667pt;}
.y14_c01239{bottom:365.213333pt;}
.y13_c01239{bottom:386.413333pt;}
.y12_c01239{bottom:408.946667pt;}
.y11_c01239{bottom:429.080000pt;}
.y10_c01239{bottom:451.213333pt;}
.yf_c01239{bottom:472.546667pt;}
.ye_c01239{bottom:493.880000pt;}
.yd_c01239{bottom:515.746667pt;}
.yc_c01239{bottom:537.346667pt;}
.yb_c01239{bottom:559.213333pt;}
.ya_c01239{bottom:580.280000pt;}
.y9_c01239{bottom:601.480000pt;}
.y8_c01239{bottom:623.080000pt;}
.y7_c01239{bottom:644.680000pt;}
.y6_c01239{bottom:666.280000pt;}
.y5_c01239{bottom:687.880000pt;}
.y4_c01239{bottom:709.880000pt;}
.y3_c01239{bottom:731.480000pt;}
.y2_c01239{bottom:752.813333pt;}
.y1_c01239{bottom:774.413333pt;}
.h5_c01239{height:11.733399pt;}
.h6_c01239{height:38.937500pt;}
.h2_c01239{height:70.664062pt;}
.h4_c01239{height:74.906250pt;}
.h3_c01239{height:81.031250pt;}
.h1_c01239{height:876.666667pt;}
.h0_c01239{height:876.733333pt;}
.w2_c01239{width:93.222667pt;}
.w0_c01239{width:593.266667pt;}
.w1_c01239{width:593.333333pt;}
.x0_c01239{left:0.000000pt;}
.x6_c01239{left:28.800000pt;}
.x5_c01239{left:29.733333pt;}
.x8_c01239{left:57.333333pt;}
.xa_c01239{left:109.600000pt;}
.x9_c01239{left:111.066667pt;}
.x1_c01239{left:112.133333pt;}
.x2_c01239{left:113.066667pt;}
.x3_c01239{left:114.000000pt;}
.x4_c01239{left:114.933333pt;}
.x7_c01239{left:138.666667pt;}
.xc_c01239{left:253.801554pt;}
.xb_c01239{left:519.066667pt;}
}





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

.ir_c01240:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01240{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01240;src:url('chunks/assets/font_c7649d36dc41edbc98679bfd.woff2')format("woff");}.ff1_c01240{font-family:ff1_c01240;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01240;src:url('chunks/assets/font_11e9333f4aa8d6fe5fd47f93.woff2')format("woff");}.ff2_c01240{font-family:ff2_c01240;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01240;src:url('chunks/assets/font_c87d02b3359c55ab5d9d2337.woff2')format("woff");}.ff3_c01240{font-family:ff3_c01240;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01240;src:url('chunks/assets/font_a3ee8773efb1e6f3bb6c6022.woff2')format("woff");}.ff4_c01240{font-family:ff4_c01240;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01240;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c01240{font-family:ff5_c01240;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01240{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01240{vertical-align:0.000000px;}
.ls1_c01240{letter-spacing:0.000000px;}
.ls0_c01240{letter-spacing:7.680000px;}
.sc__c01240{text-shadow:none;}
.sc0_c01240{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01240{-webkit-text-stroke:0px transparent;}
.sc0_c01240{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01240{word-spacing:-59.184000px;}
.ws1_c01240{word-spacing:0.000000px;}
._9_c01240{margin-left:-21.681000px;}
._12_c01240{margin-left:-11.988000px;}
._13_c01240{margin-left:-9.792000px;}
._8_c01240{margin-left:-7.425000px;}
._5_c01240{margin-left:-5.247000px;}
._14_c01240{margin-left:-4.077000px;}
._10_c01240{margin-left:-2.646000px;}
._d_c01240{margin-left:-1.485000px;}
._16_c01240{width:1.044000px;}
._7_c01240{width:2.079000px;}
._a_c01240{width:3.663000px;}
._b_c01240{width:4.950000px;}
._c_c01240{width:6.138000px;}
._f_c01240{width:7.209000px;}
._3_c01240{width:8.217000px;}
._4_c01240{width:9.405000px;}
._11_c01240{width:10.719000px;}
._e_c01240{width:11.916000px;}
._15_c01240{width:13.041000px;}
._1_c01240{width:15.147000px;}
._2_c01240{width:16.830000px;}
._18_c01240{width:18.576000px;}
._6_c01240{width:20.394000px;}
._0_c01240{width:22.770000px;}
._1b_c01240{width:31.608000px;}
._19_c01240{width:32.994000px;}
._1a_c01240{width:35.370000px;}
._17_c01240{width:42.003000px;}
._1c_c01240{width:265.287000px;}
.fc2_c01240{color:transparent;}
.fc1_c01240{color:rgb(128,128,128);}
.fc0_c01240{color:rgb(0,0,0);}
.fs4_c01240{font-size:48.000000px;}
.fs3_c01240{font-size:51.000000px;}
.fs2_c01240{font-size:72.000000px;}
.fs1_c01240{font-size:81.000000px;}
.fs0_c01240{font-size:99.000000px;}
.y0_c01240{bottom:0.000000px;}
.y26_c01240{bottom:3.105000px;}
.y25_c01240{bottom:7.228369px;}
.y24_c01240{bottom:51.870000px;}
.y23_c01240{bottom:74.520000px;}
.y22_c01240{bottom:98.820000px;}
.y21_c01240{bottom:123.870000px;}
.y20_c01240{bottom:147.720000px;}
.y1f_c01240{bottom:171.720000px;}
.y1e_c01240{bottom:196.020000px;}
.y1d_c01240{bottom:220.320000px;}
.y1c_c01240{bottom:244.020000px;}
.y1b_c01240{bottom:268.620000px;}
.y1a_c01240{bottom:292.920000px;}
.y19_c01240{bottom:316.620000px;}
.y18_c01240{bottom:340.770000px;}
.y17_c01240{bottom:365.220000px;}
.y16_c01240{bottom:388.470000px;}
.y15_c01240{bottom:412.770000px;}
.y14_c01240{bottom:436.620000px;}
.y13_c01240{bottom:459.720000px;}
.y12_c01240{bottom:484.620000px;}
.y11_c01240{bottom:508.320000px;}
.y10_c01240{bottom:532.620000px;}
.yf_c01240{bottom:556.170000px;}
.ye_c01240{bottom:581.070000px;}
.yd_c01240{bottom:604.170000px;}
.yc_c01240{bottom:627.720000px;}
.yb_c01240{bottom:652.020000px;}
.ya_c01240{bottom:676.020000px;}
.y9_c01240{bottom:700.620000px;}
.y8_c01240{bottom:724.620000px;}
.y7_c01240{bottom:748.620000px;}
.y6_c01240{bottom:772.770000px;}
.y5_c01240{bottom:797.070000px;}
.y4_c01240{bottom:821.370000px;}
.y3_c01240{bottom:846.120000px;}
.y2_c01240{bottom:870.120000px;}
.y1_c01240{bottom:903.720000px;}
.h5_c01240{height:13.200073px;}
.h6_c01240{height:43.804688px;}
.h4_c01240{height:51.398438px;}
.h2_c01240{height:79.497070px;}
.h3_c01240{height:84.269531px;}
.h1_c01240{height:103.752000px;}
.h0_c01240{height:975.750000px;}
.w2_c01240{width:104.875500px;}
.w0_c01240{width:664.200000px;}
.w1_c01240{width:664.500000px;}
.x0_c01240{left:0.000000px;}
.x5_c01240{left:36.750000px;}
.x4_c01240{left:38.250000px;}
.xc_c01240{left:40.950000px;}
.x2_c01240{left:52.650000px;}
.x3_c01240{left:53.700000px;}
.x1_c01240{left:55.350000px;}
.x6_c01240{left:56.700000px;}
.x7_c01240{left:57.750000px;}
.x8_c01240{left:58.800000px;}
.x9_c01240{left:61.200000px;}
.xa_c01240{left:62.400000px;}
.xb_c01240{left:63.450000px;}
.xe_c01240{left:283.914230px;}
.xd_c01240{left:381.000000px;}
@media print{
.v0_c01240{vertical-align:0.000000pt;}
.ls1_c01240{letter-spacing:0.000000pt;}
.ls0_c01240{letter-spacing:6.826667pt;}
.ws0_c01240{word-spacing:-52.608000pt;}
.ws1_c01240{word-spacing:0.000000pt;}
._9_c01240{margin-left:-19.272000pt;}
._12_c01240{margin-left:-10.656000pt;}
._13_c01240{margin-left:-8.704000pt;}
._8_c01240{margin-left:-6.600000pt;}
._5_c01240{margin-left:-4.664000pt;}
._14_c01240{margin-left:-3.624000pt;}
._10_c01240{margin-left:-2.352000pt;}
._d_c01240{margin-left:-1.320000pt;}
._16_c01240{width:0.928000pt;}
._7_c01240{width:1.848000pt;}
._a_c01240{width:3.256000pt;}
._b_c01240{width:4.400000pt;}
._c_c01240{width:5.456000pt;}
._f_c01240{width:6.408000pt;}
._3_c01240{width:7.304000pt;}
._4_c01240{width:8.360000pt;}
._11_c01240{width:9.528000pt;}
._e_c01240{width:10.592000pt;}
._15_c01240{width:11.592000pt;}
._1_c01240{width:13.464000pt;}
._2_c01240{width:14.960000pt;}
._18_c01240{width:16.512000pt;}
._6_c01240{width:18.128000pt;}
._0_c01240{width:20.240000pt;}
._1b_c01240{width:28.096000pt;}
._19_c01240{width:29.328000pt;}
._1a_c01240{width:31.440000pt;}
._17_c01240{width:37.336000pt;}
._1c_c01240{width:235.810667pt;}
.fs4_c01240{font-size:42.666667pt;}
.fs3_c01240{font-size:45.333333pt;}
.fs2_c01240{font-size:64.000000pt;}
.fs1_c01240{font-size:72.000000pt;}
.fs0_c01240{font-size:88.000000pt;}
.y0_c01240{bottom:0.000000pt;}
.y26_c01240{bottom:2.760000pt;}
.y25_c01240{bottom:6.425217pt;}
.y24_c01240{bottom:46.106667pt;}
.y23_c01240{bottom:66.240000pt;}
.y22_c01240{bottom:87.840000pt;}
.y21_c01240{bottom:110.106667pt;}
.y20_c01240{bottom:131.306667pt;}
.y1f_c01240{bottom:152.640000pt;}
.y1e_c01240{bottom:174.240000pt;}
.y1d_c01240{bottom:195.840000pt;}
.y1c_c01240{bottom:216.906667pt;}
.y1b_c01240{bottom:238.773333pt;}
.y1a_c01240{bottom:260.373333pt;}
.y19_c01240{bottom:281.440000pt;}
.y18_c01240{bottom:302.906667pt;}
.y17_c01240{bottom:324.640000pt;}
.y16_c01240{bottom:345.306667pt;}
.y15_c01240{bottom:366.906667pt;}
.y14_c01240{bottom:388.106667pt;}
.y13_c01240{bottom:408.640000pt;}
.y12_c01240{bottom:430.773333pt;}
.y11_c01240{bottom:451.840000pt;}
.y10_c01240{bottom:473.440000pt;}
.yf_c01240{bottom:494.373333pt;}
.ye_c01240{bottom:516.506667pt;}
.yd_c01240{bottom:537.040000pt;}
.yc_c01240{bottom:557.973333pt;}
.yb_c01240{bottom:579.573333pt;}
.ya_c01240{bottom:600.906667pt;}
.y9_c01240{bottom:622.773333pt;}
.y8_c01240{bottom:644.106667pt;}
.y7_c01240{bottom:665.440000pt;}
.y6_c01240{bottom:686.906667pt;}
.y5_c01240{bottom:708.506667pt;}
.y4_c01240{bottom:730.106667pt;}
.y3_c01240{bottom:752.106667pt;}
.y2_c01240{bottom:773.440000pt;}
.y1_c01240{bottom:803.306667pt;}
.h5_c01240{height:11.733399pt;}
.h6_c01240{height:38.937500pt;}
.h4_c01240{height:45.687500pt;}
.h2_c01240{height:70.664062pt;}
.h3_c01240{height:74.906250pt;}
.h1_c01240{height:92.224000pt;}
.h0_c01240{height:867.333333pt;}
.w2_c01240{width:93.222667pt;}
.w0_c01240{width:590.400000pt;}
.w1_c01240{width:590.666667pt;}
.x0_c01240{left:0.000000pt;}
.x5_c01240{left:32.666667pt;}
.x4_c01240{left:34.000000pt;}
.xc_c01240{left:36.400000pt;}
.x2_c01240{left:46.800000pt;}
.x3_c01240{left:47.733333pt;}
.x1_c01240{left:49.200000pt;}
.x6_c01240{left:50.400000pt;}
.x7_c01240{left:51.333333pt;}
.x8_c01240{left:52.266667pt;}
.x9_c01240{left:54.400000pt;}
.xa_c01240{left:55.466667pt;}
.xb_c01240{left:56.400000pt;}
.xe_c01240{left:252.368205pt;}
.xd_c01240{left:338.666667pt;}
}





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

.ir_c01241:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01241{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01241;src:url('chunks/assets/font_64bdc00c576df190c9003555.woff2')format("woff");}.ff1_c01241{font-family:ff1_c01241;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01241;src:url('chunks/assets/font_002883baef34cdba81806b5c.woff2')format("woff");}.ff2_c01241{font-family:ff2_c01241;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01241;src:url('chunks/assets/font_19e22af0b9f3d5869f338733.woff2')format("woff");}.ff3_c01241{font-family:ff3_c01241;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01241;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff4_c01241{font-family:ff4_c01241;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01241{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01241{vertical-align:0.000000px;}
.ls0_c01241{letter-spacing:0.000000px;}
.sc__c01241{text-shadow:none;}
.sc0_c01241{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01241{-webkit-text-stroke:0px transparent;}
.sc0_c01241{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01241{word-spacing:-67.686000px;}
.ws1_c01241{word-spacing:-17.352000px;}
.ws2_c01241{word-spacing:0.000000px;}
._1f_c01241{margin-left:-22.518000px;}
._16_c01241{margin-left:-16.200000px;}
._14_c01241{margin-left:-14.904000px;}
._20_c01241{margin-left:-11.763000px;}
._10_c01241{margin-left:-10.500000px;}
._11_c01241{margin-left:-9.153000px;}
._d_c01241{margin-left:-7.695000px;}
._a_c01241{margin-left:-5.994000px;}
._12_c01241{margin-left:-3.726000px;}
._3_c01241{margin-left:-2.511000px;}
._e_c01241{margin-left:-1.215000px;}
._5_c01241{width:1.944000px;}
._2_c01241{width:3.240000px;}
._1_c01241{width:4.536000px;}
._0_c01241{width:6.318000px;}
._b_c01241{width:7.614000px;}
._6_c01241{width:8.910000px;}
._4_c01241{width:10.935000px;}
._9_c01241{width:12.960000px;}
._c_c01241{width:14.094000px;}
._8_c01241{width:16.038000px;}
._13_c01241{width:17.091000px;}
._f_c01241{width:18.291000px;}
._18_c01241{width:22.842000px;}
._1c_c01241{width:23.895000px;}
._7_c01241{width:25.191000px;}
._19_c01241{width:27.297000px;}
._1b_c01241{width:28.917000px;}
._1e_c01241{width:34.020000px;}
._15_c01241{width:37.098000px;}
._1d_c01241{width:39.123000px;}
._17_c01241{width:53.217000px;}
._1a_c01241{width:333.123000px;}
.fc2_c01241{color:transparent;}
.fc1_c01241{color:rgb(128,128,128);}
.fc0_c01241{color:rgb(0,0,0);}
.fs3_c01241{font-size:48.000000px;}
.fs2_c01241{font-size:72.000000px;}
.fs0_c01241{font-size:81.000000px;}
.fs1_c01241{font-size:87.000000px;}
.y0_c01241{bottom:0.000000px;}
.y24_c01241{bottom:3.105000px;}
.y23_c01241{bottom:7.228363px;}
.y22_c01241{bottom:80.700000px;}
.y21_c01241{bottom:105.900000px;}
.y20_c01241{bottom:130.650000px;}
.y1f_c01241{bottom:155.550000px;}
.y1e_c01241{bottom:180.150000px;}
.y1d_c01241{bottom:204.600000px;}
.y1c_c01241{bottom:229.800000px;}
.y1b_c01241{bottom:253.500000px;}
.y1a_c01241{bottom:277.800000px;}
.y19_c01241{bottom:302.400000px;}
.y18_c01241{bottom:326.700000px;}
.y17_c01241{bottom:351.600000px;}
.y16_c01241{bottom:375.300000px;}
.y15_c01241{bottom:399.600000px;}
.y14_c01241{bottom:423.900000px;}
.y13_c01241{bottom:447.300000px;}
.y12_c01241{bottom:471.750000px;}
.y11_c01241{bottom:495.750000px;}
.y10_c01241{bottom:520.350000px;}
.yf_c01241{bottom:543.750000px;}
.ye_c01241{bottom:568.050000px;}
.yd_c01241{bottom:591.900000px;}
.yc_c01241{bottom:615.900000px;}
.yb_c01241{bottom:639.900000px;}
.ya_c01241{bottom:663.750000px;}
.y9_c01241{bottom:688.200000px;}
.y8_c01241{bottom:711.750000px;}
.y7_c01241{bottom:736.050000px;}
.y6_c01241{bottom:759.750000px;}
.y5_c01241{bottom:783.750000px;}
.y4_c01241{bottom:807.750000px;}
.y3_c01241{bottom:832.200000px;}
.y2_c01241{bottom:856.200000px;}
.y1_c01241{bottom:879.750000px;}
.h5_c01241{height:13.200074px;}
.h6_c01241{height:43.804688px;}
.h2_c01241{height:79.497070px;}
.h4_c01241{height:84.269531px;}
.h3_c01241{height:91.176000px;}
.h1_c01241{height:977.250000px;}
.h0_c01241{height:977.400000px;}
.w1_c01241{width:104.875500px;}
.w0_c01241{width:661.500000px;}
.x0_c01241{left:0.000000px;}
.x7_c01241{left:19.650000px;}
.x6_c01241{left:22.050000px;}
.x3_c01241{left:51.750000px;}
.x9_c01241{left:56.100000px;}
.x8_c01241{left:106.050000px;}
.x1_c01241{left:109.050000px;}
.x2_c01241{left:110.400000px;}
.x4_c01241{left:112.050000px;}
.x5_c01241{left:116.550000px;}
.xa_c01241{left:282.564240px;}
@media print{
.v0_c01241{vertical-align:0.000000pt;}
.ls0_c01241{letter-spacing:0.000000pt;}
.ws0_c01241{word-spacing:-60.165333pt;}
.ws1_c01241{word-spacing:-15.424000pt;}
.ws2_c01241{word-spacing:0.000000pt;}
._1f_c01241{margin-left:-20.016000pt;}
._16_c01241{margin-left:-14.400000pt;}
._14_c01241{margin-left:-13.248000pt;}
._20_c01241{margin-left:-10.456000pt;}
._10_c01241{margin-left:-9.333333pt;}
._11_c01241{margin-left:-8.136000pt;}
._d_c01241{margin-left:-6.840000pt;}
._a_c01241{margin-left:-5.328000pt;}
._12_c01241{margin-left:-3.312000pt;}
._3_c01241{margin-left:-2.232000pt;}
._e_c01241{margin-left:-1.080000pt;}
._5_c01241{width:1.728000pt;}
._2_c01241{width:2.880000pt;}
._1_c01241{width:4.032000pt;}
._0_c01241{width:5.616000pt;}
._b_c01241{width:6.768000pt;}
._6_c01241{width:7.920000pt;}
._4_c01241{width:9.720000pt;}
._9_c01241{width:11.520000pt;}
._c_c01241{width:12.528000pt;}
._8_c01241{width:14.256000pt;}
._13_c01241{width:15.192000pt;}
._f_c01241{width:16.258667pt;}
._18_c01241{width:20.304000pt;}
._1c_c01241{width:21.240000pt;}
._7_c01241{width:22.392000pt;}
._19_c01241{width:24.264000pt;}
._1b_c01241{width:25.704000pt;}
._1e_c01241{width:30.240000pt;}
._15_c01241{width:32.976000pt;}
._1d_c01241{width:34.776000pt;}
._17_c01241{width:47.304000pt;}
._1a_c01241{width:296.109333pt;}
.fs3_c01241{font-size:42.666667pt;}
.fs2_c01241{font-size:64.000000pt;}
.fs0_c01241{font-size:72.000000pt;}
.fs1_c01241{font-size:77.333333pt;}
.y0_c01241{bottom:0.000000pt;}
.y24_c01241{bottom:2.760000pt;}
.y23_c01241{bottom:6.425212pt;}
.y22_c01241{bottom:71.733333pt;}
.y21_c01241{bottom:94.133333pt;}
.y20_c01241{bottom:116.133333pt;}
.y1f_c01241{bottom:138.266667pt;}
.y1e_c01241{bottom:160.133333pt;}
.y1d_c01241{bottom:181.866667pt;}
.y1c_c01241{bottom:204.266667pt;}
.y1b_c01241{bottom:225.333333pt;}
.y1a_c01241{bottom:246.933333pt;}
.y19_c01241{bottom:268.800000pt;}
.y18_c01241{bottom:290.400000pt;}
.y17_c01241{bottom:312.533333pt;}
.y16_c01241{bottom:333.600000pt;}
.y15_c01241{bottom:355.200000pt;}
.y14_c01241{bottom:376.800000pt;}
.y13_c01241{bottom:397.600000pt;}
.y12_c01241{bottom:419.333333pt;}
.y11_c01241{bottom:440.666667pt;}
.y10_c01241{bottom:462.533333pt;}
.yf_c01241{bottom:483.333333pt;}
.ye_c01241{bottom:504.933333pt;}
.yd_c01241{bottom:526.133333pt;}
.yc_c01241{bottom:547.466667pt;}
.yb_c01241{bottom:568.800000pt;}
.ya_c01241{bottom:590.000000pt;}
.y9_c01241{bottom:611.733333pt;}
.y8_c01241{bottom:632.666667pt;}
.y7_c01241{bottom:654.266667pt;}
.y6_c01241{bottom:675.333333pt;}
.y5_c01241{bottom:696.666667pt;}
.y4_c01241{bottom:718.000000pt;}
.y3_c01241{bottom:739.733333pt;}
.y2_c01241{bottom:761.066667pt;}
.y1_c01241{bottom:782.000000pt;}
.h5_c01241{height:11.733399pt;}
.h6_c01241{height:38.937500pt;}
.h2_c01241{height:70.664062pt;}
.h4_c01241{height:74.906250pt;}
.h3_c01241{height:81.045333pt;}
.h1_c01241{height:868.666667pt;}
.h0_c01241{height:868.800000pt;}
.w1_c01241{width:93.222667pt;}
.w0_c01241{width:588.000000pt;}
.x0_c01241{left:0.000000pt;}
.x7_c01241{left:17.466667pt;}
.x6_c01241{left:19.600000pt;}
.x3_c01241{left:46.000000pt;}
.x9_c01241{left:49.866667pt;}
.x8_c01241{left:94.266667pt;}
.x1_c01241{left:96.933333pt;}
.x2_c01241{left:98.133333pt;}
.x4_c01241{left:99.600000pt;}
.x5_c01241{left:103.600000pt;}
.xa_c01241{left:251.168213pt;}
}





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

.ir_c01242:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01242{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01242;src:url('chunks/assets/font_d0b06f2f52c5c80a73a0c891.woff2')format("woff");}.ff1_c01242{font-family:ff1_c01242;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01242;src:url('chunks/assets/font_95788280f36068b38ed83a38.woff2')format("woff");}.ff2_c01242{font-family:ff2_c01242;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01242;src:url('chunks/assets/font_1856378407b89addd5fcb98a.woff2')format("woff");}.ff3_c01242{font-family:ff3_c01242;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01242;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff4_c01242{font-family:ff4_c01242;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01242{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01242{vertical-align:0.000000px;}
.ls0_c01242{letter-spacing:0.000000px;}
.ls1_c01242{letter-spacing:3.000000px;}
.sc__c01242{text-shadow:none;}
.sc0_c01242{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01242{-webkit-text-stroke:0px transparent;}
.sc0_c01242{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01242{word-spacing:-17.352000px;}
.ws1_c01242{word-spacing:0.000000px;}
._1a_c01242{margin-left:-25.095000px;}
._1d_c01242{margin-left:-20.655000px;}
._18_c01242{margin-left:-13.689000px;}
._16_c01242{margin-left:-11.583000px;}
._19_c01242{margin-left:-10.224000px;}
._12_c01242{margin-left:-6.099000px;}
._9_c01242{margin-left:-4.647000px;}
._f_c01242{margin-left:-2.766000px;}
._3_c01242{margin-left:-1.584000px;}
._4_c01242{width:1.287000px;}
._2_c01242{width:3.168000px;}
._7_c01242{width:4.308000px;}
._b_c01242{width:5.328000px;}
._8_c01242{width:6.498000px;}
._e_c01242{width:7.920000px;}
._1_c01242{width:9.900000px;}
._11_c01242{width:11.499000px;}
._13_c01242{width:12.546000px;}
._d_c01242{width:14.463000px;}
._a_c01242{width:15.525000px;}
._0_c01242{width:16.830000px;}
._1e_c01242{width:17.883000px;}
._c_c01242{width:20.463000px;}
._20_c01242{width:22.818000px;}
._1b_c01242{width:25.968000px;}
._6_c01242{width:30.096000px;}
._1c_c01242{width:31.992000px;}
._14_c01242{width:33.981000px;}
._10_c01242{width:35.286000px;}
._5_c01242{width:41.382000px;}
._17_c01242{width:48.738000px;}
._1f_c01242{width:125.784000px;}
._15_c01242{width:307.917000px;}
._21_c01242{width:389.178000px;}
.fc2_c01242{color:transparent;}
.fc1_c01242{color:rgb(128,128,128);}
.fc0_c01242{color:rgb(0,0,0);}
.fs5_c01242{font-size:48.000000px;}
.fs3_c01242{font-size:72.000000px;}
.fs1_c01242{font-size:75.000000px;}
.fs4_c01242{font-size:78.000000px;}
.fs2_c01242{font-size:81.000000px;}
.fs0_c01242{font-size:99.000000px;}
.y0_c01242{bottom:0.000000px;}
.y23_c01242{bottom:3.105000px;}
.y22_c01242{bottom:7.228355px;}
.y21_c01242{bottom:52.935000px;}
.y20_c01242{bottom:78.585000px;}
.y1f_c01242{bottom:103.185000px;}
.y1e_c01242{bottom:127.935000px;}
.y1d_c01242{bottom:226.335000px;}
.y1c_c01242{bottom:250.635000px;}
.y1b_c01242{bottom:275.085000px;}
.y1a_c01242{bottom:299.235000px;}
.y19_c01242{bottom:323.235000px;}
.y18_c01242{bottom:347.535000px;}
.y17_c01242{bottom:371.835000px;}
.y16_c01242{bottom:396.135000px;}
.y15_c01242{bottom:420.135000px;}
.y14_c01242{bottom:443.685000px;}
.y13_c01242{bottom:468.135000px;}
.y12_c01242{bottom:492.285000px;}
.y11_c01242{bottom:516.285000px;}
.y10_c01242{bottom:540.885000px;}
.yf_c01242{bottom:563.835000px;}
.ye_c01242{bottom:587.535000px;}
.yd_c01242{bottom:611.235000px;}
.yc_c01242{bottom:635.085000px;}
.yb_c01242{bottom:659.385000px;}
.ya_c01242{bottom:683.685000px;}
.y9_c01242{bottom:707.685000px;}
.y8_c01242{bottom:731.685000px;}
.y7_c01242{bottom:755.235000px;}
.y6_c01242{bottom:779.985000px;}
.y5_c01242{bottom:804.135000px;}
.y4_c01242{bottom:828.135000px;}
.y3_c01242{bottom:851.835000px;}
.y2_c01242{bottom:875.685000px;}
.y1_c01242{bottom:912.135000px;}
.h6_c01242{height:13.200074px;}
.h7_c01242{height:43.804688px;}
.h4_c01242{height:79.497070px;}
.h5_c01242{height:84.269531px;}
.h3_c01242{height:94.958496px;}
.h2_c01242{height:115.870605px;}
.h0_c01242{height:977.925000px;}
.h1_c01242{height:978.000000px;}
.w2_c01242{width:104.875500px;}
.w0_c01242{width:665.850000px;}
.w1_c01242{width:666.000000px;}
.x0_c01242{left:0.000000px;}
.x6_c01242{left:51.300000px;}
.x7_c01242{left:52.650000px;}
.x8_c01242{left:56.400000px;}
.x3_c01242{left:58.500000px;}
.x2_c01242{left:60.750000px;}
.x4_c01242{left:62.400000px;}
.x9_c01242{left:63.750000px;}
.x1_c01242{left:81.750000px;}
.x5_c01242{left:86.100000px;}
.xb_c01242{left:284.739258px;}
.xa_c01242{left:367.950000px;}
@media print{
.v0_c01242{vertical-align:0.000000pt;}
.ls0_c01242{letter-spacing:0.000000pt;}
.ls1_c01242{letter-spacing:2.666667pt;}
.ws0_c01242{word-spacing:-15.424000pt;}
.ws1_c01242{word-spacing:0.000000pt;}
._1a_c01242{margin-left:-22.306667pt;}
._1d_c01242{margin-left:-18.360000pt;}
._18_c01242{margin-left:-12.168000pt;}
._16_c01242{margin-left:-10.296000pt;}
._19_c01242{margin-left:-9.088000pt;}
._12_c01242{margin-left:-5.421333pt;}
._9_c01242{margin-left:-4.130667pt;}
._f_c01242{margin-left:-2.458667pt;}
._3_c01242{margin-left:-1.408000pt;}
._4_c01242{width:1.144000pt;}
._2_c01242{width:2.816000pt;}
._7_c01242{width:3.829333pt;}
._b_c01242{width:4.736000pt;}
._8_c01242{width:5.776000pt;}
._e_c01242{width:7.040000pt;}
._1_c01242{width:8.800000pt;}
._11_c01242{width:10.221333pt;}
._13_c01242{width:11.152000pt;}
._d_c01242{width:12.856000pt;}
._a_c01242{width:13.800000pt;}
._0_c01242{width:14.960000pt;}
._1e_c01242{width:15.896000pt;}
._c_c01242{width:18.189333pt;}
._20_c01242{width:20.282667pt;}
._1b_c01242{width:23.082667pt;}
._6_c01242{width:26.752000pt;}
._1c_c01242{width:28.437333pt;}
._14_c01242{width:30.205333pt;}
._10_c01242{width:31.365333pt;}
._5_c01242{width:36.784000pt;}
._17_c01242{width:43.322667pt;}
._1f_c01242{width:111.808000pt;}
._15_c01242{width:273.704000pt;}
._21_c01242{width:345.936000pt;}
.fs5_c01242{font-size:42.666667pt;}
.fs3_c01242{font-size:64.000000pt;}
.fs1_c01242{font-size:66.666667pt;}
.fs4_c01242{font-size:69.333333pt;}
.fs2_c01242{font-size:72.000000pt;}
.fs0_c01242{font-size:88.000000pt;}
.y0_c01242{bottom:0.000000pt;}
.y23_c01242{bottom:2.760000pt;}
.y22_c01242{bottom:6.425204pt;}
.y21_c01242{bottom:47.053333pt;}
.y20_c01242{bottom:69.853333pt;}
.y1f_c01242{bottom:91.720000pt;}
.y1e_c01242{bottom:113.720000pt;}
.y1d_c01242{bottom:201.186667pt;}
.y1c_c01242{bottom:222.786667pt;}
.y1b_c01242{bottom:244.520000pt;}
.y1a_c01242{bottom:265.986667pt;}
.y19_c01242{bottom:287.320000pt;}
.y18_c01242{bottom:308.920000pt;}
.y17_c01242{bottom:330.520000pt;}
.y16_c01242{bottom:352.120000pt;}
.y15_c01242{bottom:373.453333pt;}
.y14_c01242{bottom:394.386667pt;}
.y13_c01242{bottom:416.120000pt;}
.y12_c01242{bottom:437.586667pt;}
.y11_c01242{bottom:458.920000pt;}
.y10_c01242{bottom:480.786667pt;}
.yf_c01242{bottom:501.186667pt;}
.ye_c01242{bottom:522.253333pt;}
.yd_c01242{bottom:543.320000pt;}
.yc_c01242{bottom:564.520000pt;}
.yb_c01242{bottom:586.120000pt;}
.ya_c01242{bottom:607.720000pt;}
.y9_c01242{bottom:629.053333pt;}
.y8_c01242{bottom:650.386667pt;}
.y7_c01242{bottom:671.320000pt;}
.y6_c01242{bottom:693.320000pt;}
.y5_c01242{bottom:714.786667pt;}
.y4_c01242{bottom:736.120000pt;}
.y3_c01242{bottom:757.186667pt;}
.y2_c01242{bottom:778.386667pt;}
.y1_c01242{bottom:810.786667pt;}
.h6_c01242{height:11.733399pt;}
.h7_c01242{height:38.937500pt;}
.h4_c01242{height:70.664062pt;}
.h5_c01242{height:74.906250pt;}
.h3_c01242{height:84.407552pt;}
.h2_c01242{height:102.996094pt;}
.h0_c01242{height:869.266667pt;}
.h1_c01242{height:869.333333pt;}
.w2_c01242{width:93.222667pt;}
.w0_c01242{width:591.866667pt;}
.w1_c01242{width:592.000000pt;}
.x0_c01242{left:0.000000pt;}
.x6_c01242{left:45.600000pt;}
.x7_c01242{left:46.800000pt;}
.x8_c01242{left:50.133333pt;}
.x3_c01242{left:52.000000pt;}
.x2_c01242{left:54.000000pt;}
.x4_c01242{left:55.466667pt;}
.x9_c01242{left:56.666667pt;}
.x1_c01242{left:72.666667pt;}
.x5_c01242{left:76.533333pt;}
.xb_c01242{left:253.101563pt;}
.xa_c01242{left:327.066667pt;}
}





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

.ir_c01243:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01243{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01243;src:url('chunks/assets/font_9cff7a7c5611516d8bc0d393.woff2')format("woff");}.ff1_c01243{font-family:ff1_c01243;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01243;src:url('chunks/assets/font_dd5191059e35c7058f58486f.woff2')format("woff");}.ff2_c01243{font-family:ff2_c01243;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01243;src:url('chunks/assets/font_545c9231f25f73389926009f.woff2')format("woff");}.ff3_c01243{font-family:ff3_c01243;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01243;src:url('chunks/assets/font_4bdadc214d5d5ea555353901.woff2')format("woff");}.ff4_c01243{font-family:ff4_c01243;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01243;src:url('chunks/assets/font_8ebc5a88302f4a148792f64d.woff2')format("woff");}.ff5_c01243{font-family:ff5_c01243;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01243;src:url('chunks/assets/font_993356ead5366ebc751bf024.woff2')format("woff");}.ff6_c01243{font-family:ff6_c01243;line-height:1.437000;font-style:normal;font-weight: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_c01243;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff7_c01243{font-family:ff7_c01243;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c01243;src:url('chunks/assets/font_d1b7ad6989d51bd1628abd2c.woff2')format("woff");}.ff8_c01243{font-family:ff8_c01243;line-height:1.311035;font-style:normal;font-weight: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_c01243;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff9_c01243{font-family:ff9_c01243;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01243{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01243{vertical-align:0.000000px;}
.ls4_c01243{letter-spacing:-6.000000px;}
.ls3_c01243{letter-spacing:0.000000px;}
.ls2_c01243{letter-spacing:6.150000px;}
.ls1_c01243{letter-spacing:9.600000px;}
.ls0_c01243{letter-spacing:14.520000px;}
.sc__c01243{text-shadow:none;}
.sc0_c01243{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01243{-webkit-text-stroke:0px transparent;}
.sc0_c01243{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c01243{word-spacing:-67.686000px;}
.ws0_c01243{word-spacing:-47.376000px;}
.ws4_c01243{word-spacing:-20.250000px;}
.ws2_c01243{word-spacing:-17.352000px;}
.ws1_c01243{word-spacing:-15.000000px;}
.ws5_c01243{word-spacing:0.000000px;}
._c_c01243{margin-left:-14.250000px;}
._12_c01243{margin-left:-11.046000px;}
._18_c01243{margin-left:-8.895000px;}
._19_c01243{margin-left:-7.599000px;}
._15_c01243{margin-left:-6.561000px;}
._e_c01243{margin-left:-5.280000px;}
._14_c01243{margin-left:-3.822000px;}
._2_c01243{margin-left:-2.106000px;}
._13_c01243{margin-left:-1.053000px;}
._1b_c01243{width:1.053000px;}
._3_c01243{width:2.106000px;}
._0_c01243{width:3.321000px;}
._5_c01243{width:4.536000px;}
._4_c01243{width:5.994000px;}
._10_c01243{width:7.143000px;}
._1_c01243{width:8.262000px;}
._d_c01243{width:9.351000px;}
._6_c01243{width:11.259000px;}
._b_c01243{width:12.354000px;}
._7_c01243{width:14.256000px;}
._9_c01243{width:16.488000px;}
._8_c01243{width:18.180000px;}
._a_c01243{width:19.698000px;}
._17_c01243{width:21.510000px;}
._11_c01243{width:23.466000px;}
._16_c01243{width:31.122000px;}
._f_c01243{width:32.400000px;}
._1d_c01243{width:37.953000px;}
._1c_c01243{width:42.372000px;}
._1f_c01243{width:149.574000px;}
._1a_c01243{width:163.467000px;}
._1e_c01243{width:285.039000px;}
.fc2_c01243{color:transparent;}
.fc1_c01243{color:rgb(128,128,128);}
.fc0_c01243{color:rgb(0,0,0);}
.fs6_c01243{font-size:48.000000px;}
.fs1_c01243{font-size:60.000000px;}
.fs5_c01243{font-size:66.000000px;}
.fs3_c01243{font-size:72.000000px;}
.fs0_c01243{font-size:81.000000px;}
.fs4_c01243{font-size:87.000000px;}
.fs2_c01243{font-size:96.000000px;}
.y0_c01243{bottom:0.000000px;}
.y23_c01243{bottom:3.105000px;}
.y22_c01243{bottom:7.228371px;}
.y21_c01243{bottom:75.615000px;}
.y20_c01243{bottom:99.015000px;}
.y1f_c01243{bottom:124.515000px;}
.y1e_c01243{bottom:148.815000px;}
.y1d_c01243{bottom:172.815000px;}
.y1c_c01243{bottom:197.865000px;}
.y1b_c01243{bottom:221.715000px;}
.y1a_c01243{bottom:246.465000px;}
.y19_c01243{bottom:270.765000px;}
.y18_c01243{bottom:295.365000px;}
.y17_c01243{bottom:319.665000px;}
.y16_c01243{bottom:343.965000px;}
.y15_c01243{bottom:368.265000px;}
.y14_c01243{bottom:394.665000px;}
.y13_c01243{bottom:417.915000px;}
.y12_c01243{bottom:441.765000px;}
.y11_c01243{bottom:466.815000px;}
.y10_c01243{bottom:489.765000px;}
.yf_c01243{bottom:514.065000px;}
.ye_c01243{bottom:538.365000px;}
.yd_c01243{bottom:562.065000px;}
.yc_c01243{bottom:586.365000px;}
.yb_c01243{bottom:611.265000px;}
.ya_c01243{bottom:635.565000px;}
.y9_c01243{bottom:659.865000px;}
.y8_c01243{bottom:684.165000px;}
.y7_c01243{bottom:708.465000px;}
.y6_c01243{bottom:732.765000px;}
.y5_c01243{bottom:758.715000px;}
.y4_c01243{bottom:788.715000px;}
.y3_c01243{bottom:817.215000px;}
.y2_c01243{bottom:846.465000px;}
.y1_c01243{bottom:895.815000px;}
.h9_c01243{height:13.200074px;}
.ha_c01243{height:43.804688px;}
.h5_c01243{height:58.857422px;}
.h4_c01243{height:58.886719px;}
.h2_c01243{height:79.497070px;}
.h6_c01243{height:84.269531px;}
.h8_c01243{height:91.160156px;}
.h7_c01243{height:91.176000px;}
.h3_c01243{height:94.171875px;}
.h1_c01243{height:986.250000px;}
.h0_c01243{height:986.325000px;}
.w2_c01243{width:104.875500px;}
.w0_c01243{width:667.425000px;}
.w1_c01243{width:667.500000px;}
.x0_c01243{left:0.000000px;}
.xd_c01243{left:24.600000px;}
.xa_c01243{left:27.900000px;}
.xc_c01243{left:92.850000px;}
.xf_c01243{left:112.050000px;}
.xe_c01243{left:113.400000px;}
.xb_c01243{left:115.650000px;}
.x9_c01243{left:117.000000px;}
.x2_c01243{left:118.350000px;}
.x1_c01243{left:119.400000px;}
.x3_c01243{left:148.800000px;}
.x4_c01243{left:236.250000px;}
.x6_c01243{left:247.950000px;}
.x8_c01243{left:259.500000px;}
.x7_c01243{left:260.550000px;}
.x11_c01243{left:285.526749px;}
.x5_c01243{left:328.050000px;}
.x10_c01243{left:558.000000px;}
@media print{
.v0_c01243{vertical-align:0.000000pt;}
.ls4_c01243{letter-spacing:-5.333333pt;}
.ls3_c01243{letter-spacing:0.000000pt;}
.ls2_c01243{letter-spacing:5.466667pt;}
.ls1_c01243{letter-spacing:8.533333pt;}
.ls0_c01243{letter-spacing:12.906667pt;}
.ws3_c01243{word-spacing:-60.165333pt;}
.ws0_c01243{word-spacing:-42.112000pt;}
.ws4_c01243{word-spacing:-18.000000pt;}
.ws2_c01243{word-spacing:-15.424000pt;}
.ws1_c01243{word-spacing:-13.333333pt;}
.ws5_c01243{word-spacing:0.000000pt;}
._c_c01243{margin-left:-12.666667pt;}
._12_c01243{margin-left:-9.818667pt;}
._18_c01243{margin-left:-7.906667pt;}
._19_c01243{margin-left:-6.754667pt;}
._15_c01243{margin-left:-5.832000pt;}
._e_c01243{margin-left:-4.693333pt;}
._14_c01243{margin-left:-3.397333pt;}
._2_c01243{margin-left:-1.872000pt;}
._13_c01243{margin-left:-0.936000pt;}
._1b_c01243{width:0.936000pt;}
._3_c01243{width:1.872000pt;}
._0_c01243{width:2.952000pt;}
._5_c01243{width:4.032000pt;}
._4_c01243{width:5.328000pt;}
._10_c01243{width:6.349333pt;}
._1_c01243{width:7.344000pt;}
._d_c01243{width:8.312000pt;}
._6_c01243{width:10.008000pt;}
._b_c01243{width:10.981333pt;}
._7_c01243{width:12.672000pt;}
._9_c01243{width:14.656000pt;}
._8_c01243{width:16.160000pt;}
._a_c01243{width:17.509333pt;}
._17_c01243{width:19.120000pt;}
._11_c01243{width:20.858667pt;}
._16_c01243{width:27.664000pt;}
._f_c01243{width:28.800000pt;}
._1d_c01243{width:33.736000pt;}
._1c_c01243{width:37.664000pt;}
._1f_c01243{width:132.954667pt;}
._1a_c01243{width:145.304000pt;}
._1e_c01243{width:253.368000pt;}
.fs6_c01243{font-size:42.666667pt;}
.fs1_c01243{font-size:53.333333pt;}
.fs5_c01243{font-size:58.666667pt;}
.fs3_c01243{font-size:64.000000pt;}
.fs0_c01243{font-size:72.000000pt;}
.fs4_c01243{font-size:77.333333pt;}
.fs2_c01243{font-size:85.333333pt;}
.y0_c01243{bottom:0.000000pt;}
.y23_c01243{bottom:2.760000pt;}
.y22_c01243{bottom:6.425219pt;}
.y21_c01243{bottom:67.213333pt;}
.y20_c01243{bottom:88.013333pt;}
.y1f_c01243{bottom:110.680000pt;}
.y1e_c01243{bottom:132.280000pt;}
.y1d_c01243{bottom:153.613333pt;}
.y1c_c01243{bottom:175.880000pt;}
.y1b_c01243{bottom:197.080000pt;}
.y1a_c01243{bottom:219.080000pt;}
.y19_c01243{bottom:240.680000pt;}
.y18_c01243{bottom:262.546667pt;}
.y17_c01243{bottom:284.146667pt;}
.y16_c01243{bottom:305.746667pt;}
.y15_c01243{bottom:327.346667pt;}
.y14_c01243{bottom:350.813333pt;}
.y13_c01243{bottom:371.480000pt;}
.y12_c01243{bottom:392.680000pt;}
.y11_c01243{bottom:414.946667pt;}
.y10_c01243{bottom:435.346667pt;}
.yf_c01243{bottom:456.946667pt;}
.ye_c01243{bottom:478.546667pt;}
.yd_c01243{bottom:499.613333pt;}
.yc_c01243{bottom:521.213333pt;}
.yb_c01243{bottom:543.346667pt;}
.ya_c01243{bottom:564.946667pt;}
.y9_c01243{bottom:586.546667pt;}
.y8_c01243{bottom:608.146667pt;}
.y7_c01243{bottom:629.746667pt;}
.y6_c01243{bottom:651.346667pt;}
.y5_c01243{bottom:674.413333pt;}
.y4_c01243{bottom:701.080000pt;}
.y3_c01243{bottom:726.413333pt;}
.y2_c01243{bottom:752.413333pt;}
.y1_c01243{bottom:796.280000pt;}
.h9_c01243{height:11.733399pt;}
.ha_c01243{height:38.937500pt;}
.h5_c01243{height:52.317708pt;}
.h4_c01243{height:52.343750pt;}
.h2_c01243{height:70.664062pt;}
.h6_c01243{height:74.906250pt;}
.h8_c01243{height:81.031250pt;}
.h7_c01243{height:81.045333pt;}
.h3_c01243{height:83.708333pt;}
.h1_c01243{height:876.666667pt;}
.h0_c01243{height:876.733333pt;}
.w2_c01243{width:93.222667pt;}
.w0_c01243{width:593.266667pt;}
.w1_c01243{width:593.333333pt;}
.x0_c01243{left:0.000000pt;}
.xd_c01243{left:21.866667pt;}
.xa_c01243{left:24.800000pt;}
.xc_c01243{left:82.533333pt;}
.xf_c01243{left:99.600000pt;}
.xe_c01243{left:100.800000pt;}
.xb_c01243{left:102.800000pt;}
.x9_c01243{left:104.000000pt;}
.x2_c01243{left:105.200000pt;}
.x1_c01243{left:106.133333pt;}
.x3_c01243{left:132.266667pt;}
.x4_c01243{left:210.000000pt;}
.x6_c01243{left:220.400000pt;}
.x8_c01243{left:230.666667pt;}
.x7_c01243{left:231.600000pt;}
.x11_c01243{left:253.801554pt;}
.x5_c01243{left:291.600000pt;}
.x10_c01243{left:496.000000pt;}
}





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

.ir_c01244:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01244{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01244;src:url('chunks/assets/font_a61f87c23f9bc80a00ce7176.woff2')format("woff");}.ff1_c01244{font-family:ff1_c01244;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01244;src:url('chunks/assets/font_8f63af161a2da023660fa466.woff2')format("woff");}.ff2_c01244{font-family:ff2_c01244;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01244;src:url('chunks/assets/font_317c805c59991ed01de2ba7a.woff2')format("woff");}.ff3_c01244{font-family:ff3_c01244;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01244;src:url('chunks/assets/font_dbded654a7f96265652caacd.woff2')format("woff");}.ff4_c01244{font-family:ff4_c01244;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01244;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c01244{font-family:ff5_c01244;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01244{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01244{vertical-align:0.000000px;}
.ls3_c01244{letter-spacing:0.000000px;}
.ls5_c01244{letter-spacing:3.000000px;}
.ls2_c01244{letter-spacing:6.000000px;}
.ls1_c01244{letter-spacing:8.016000px;}
.ls4_c01244{letter-spacing:9.000000px;}
.ls0_c01244{letter-spacing:39.750000px;}
.sc__c01244{text-shadow:none;}
.sc0_c01244{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01244{-webkit-text-stroke:0px transparent;}
.sc0_c01244{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01244{word-spacing:-32.250000px;}
.ws3_c01244{word-spacing:-25.500000px;}
.ws2_c01244{word-spacing:-18.000000px;}
.ws1_c01244{word-spacing:-17.352000px;}
.ws4_c01244{word-spacing:0.000000px;}
._18_c01244{margin-left:-23.004000px;}
._3_c01244{margin-left:-17.577000px;}
._22_c01244{margin-left:-14.013000px;}
._16_c01244{margin-left:-12.735000px;}
._8_c01244{margin-left:-11.625000px;}
._5_c01244{margin-left:-9.750000px;}
._12_c01244{margin-left:-8.472000px;}
._6_c01244{margin-left:-7.455000px;}
._13_c01244{margin-left:-6.420000px;}
._4_c01244{margin-left:-4.995000px;}
._7_c01244{margin-left:-3.870000px;}
._0_c01244{margin-left:-2.520000px;}
._1_c01244{margin-left:-1.470000px;}
._d_c01244{width:1.038000px;}
._9_c01244{width:2.190000px;}
._2_c01244{width:3.945000px;}
._e_c01244{width:5.550000px;}
._f_c01244{width:7.470000px;}
._b_c01244{width:8.820000px;}
._c_c01244{width:10.185000px;}
._14_c01244{width:12.171000px;}
._11_c01244{width:14.088000px;}
._15_c01244{width:16.005000px;}
._1c_c01244{width:17.763000px;}
._26_c01244{width:20.337000px;}
._20_c01244{width:29.100000px;}
._25_c01244{width:30.177000px;}
._1e_c01244{width:31.887000px;}
._24_c01244{width:35.175000px;}
._10_c01244{width:36.510000px;}
._23_c01244{width:39.009000px;}
._1f_c01244{width:40.629000px;}
._21_c01244{width:45.690000px;}
._1a_c01244{width:69.150000px;}
._a_c01244{width:92.805000px;}
._1b_c01244{width:120.123000px;}
._19_c01244{width:184.923000px;}
._27_c01244{width:255.246000px;}
._1d_c01244{width:289.068000px;}
._17_c01244{width:1239.357000px;}
.fc2_c01244{color:transparent;}
.fc1_c01244{color:rgb(128,128,128);}
.fc0_c01244{color:rgb(0,0,0);}
.fs7_c01244{font-size:48.000000px;}
.fs6_c01244{font-size:51.000000px;}
.fs5_c01244{font-size:66.000000px;}
.fs4_c01244{font-size:69.000000px;}
.fs3_c01244{font-size:72.000000px;}
.fs2_c01244{font-size:81.000000px;}
.fs1_c01244{font-size:93.000000px;}
.fs0_c01244{font-size:105.000000px;}
.y0_c01244{bottom:0.000000px;}
.y26_c01244{bottom:3.105000px;}
.y25_c01244{bottom:7.228369px;}
.y24_c01244{bottom:59.970000px;}
.y23_c01244{bottom:85.770000px;}
.y22_c01244{bottom:110.670000px;}
.y21_c01244{bottom:135.570000px;}
.y20_c01244{bottom:159.570000px;}
.y1f_c01244{bottom:184.170000px;}
.y1e_c01244{bottom:208.470000px;}
.y1d_c01244{bottom:232.770000px;}
.y1c_c01244{bottom:256.770000px;}
.y1b_c01244{bottom:281.370000px;}
.y1a_c01244{bottom:305.670000px;}
.y19_c01244{bottom:329.670000px;}
.y18_c01244{bottom:354.270000px;}
.y17_c01244{bottom:378.570000px;}
.y16_c01244{bottom:403.020000px;}
.y15_c01244{bottom:427.170000px;}
.y14_c01244{bottom:451.170000px;}
.y13_c01244{bottom:475.170000px;}
.y12_c01244{bottom:499.470000px;}
.y11_c01244{bottom:523.170000px;}
.y10_c01244{bottom:547.020000px;}
.yf_c01244{bottom:571.020000px;}
.ye_c01244{bottom:594.720000px;}
.yd_c01244{bottom:618.270000px;}
.yc_c01244{bottom:642.570000px;}
.yb_c01244{bottom:668.520000px;}
.ya_c01244{bottom:686.520000px;}
.y9_c01244{bottom:714.720000px;}
.y8_c01244{bottom:739.020000px;}
.y7_c01244{bottom:763.320000px;}
.y6_c01244{bottom:787.320000px;}
.y5_c01244{bottom:811.620000px;}
.y4_c01244{bottom:835.920000px;}
.y3_c01244{bottom:860.520000px;}
.y2_c01244{bottom:883.470000px;}
.y1_c01244{bottom:918.720000px;}
.h7_c01244{height:13.200073px;}
.h8_c01244{height:43.804688px;}
.h6_c01244{height:51.398438px;}
.h5_c01244{height:72.562500px;}
.h4_c01244{height:79.497070px;}
.h3_c01244{height:84.269531px;}
.h2_c01244{height:103.000488px;}
.h0_c01244{height:970.350000px;}
.h1_c01244{height:970.500000px;}
.w2_c01244{width:104.875500px;}
.w0_c01244{width:660.450000px;}
.w1_c01244{width:660.750000px;}
.x0_c01244{left:0.000000px;}
.x3_c01244{left:40.950000px;}
.xb_c01244{left:44.250000px;}
.xa_c01244{left:49.350000px;}
.x9_c01244{left:50.400000px;}
.x8_c01244{left:51.600000px;}
.x4_c01244{left:52.650000px;}
.x7_c01244{left:54.750000px;}
.x6_c01244{left:55.800000px;}
.x5_c01244{left:57.150000px;}
.x2_c01244{left:58.350000px;}
.x1_c01244{left:59.700000px;}
.xd_c01244{left:282.039230px;}
.xc_c01244{left:402.600000px;}
@media print{
.v0_c01244{vertical-align:0.000000pt;}
.ls3_c01244{letter-spacing:0.000000pt;}
.ls5_c01244{letter-spacing:2.666667pt;}
.ls2_c01244{letter-spacing:5.333333pt;}
.ls1_c01244{letter-spacing:7.125333pt;}
.ls4_c01244{letter-spacing:8.000000pt;}
.ls0_c01244{letter-spacing:35.333333pt;}
.ws0_c01244{word-spacing:-28.666667pt;}
.ws3_c01244{word-spacing:-22.666667pt;}
.ws2_c01244{word-spacing:-16.000000pt;}
.ws1_c01244{word-spacing:-15.424000pt;}
.ws4_c01244{word-spacing:0.000000pt;}
._18_c01244{margin-left:-20.448000pt;}
._3_c01244{margin-left:-15.624000pt;}
._22_c01244{margin-left:-12.456000pt;}
._16_c01244{margin-left:-11.320000pt;}
._8_c01244{margin-left:-10.333333pt;}
._5_c01244{margin-left:-8.666667pt;}
._12_c01244{margin-left:-7.530667pt;}
._6_c01244{margin-left:-6.626667pt;}
._13_c01244{margin-left:-5.706667pt;}
._4_c01244{margin-left:-4.440000pt;}
._7_c01244{margin-left:-3.440000pt;}
._0_c01244{margin-left:-2.240000pt;}
._1_c01244{margin-left:-1.306667pt;}
._d_c01244{width:0.922667pt;}
._9_c01244{width:1.946667pt;}
._2_c01244{width:3.506667pt;}
._e_c01244{width:4.933333pt;}
._f_c01244{width:6.640000pt;}
._b_c01244{width:7.840000pt;}
._c_c01244{width:9.053333pt;}
._14_c01244{width:10.818667pt;}
._11_c01244{width:12.522667pt;}
._15_c01244{width:14.226667pt;}
._1c_c01244{width:15.789333pt;}
._26_c01244{width:18.077333pt;}
._20_c01244{width:25.866667pt;}
._25_c01244{width:26.824000pt;}
._1e_c01244{width:28.344000pt;}
._24_c01244{width:31.266667pt;}
._10_c01244{width:32.453333pt;}
._23_c01244{width:34.674667pt;}
._1f_c01244{width:36.114667pt;}
._21_c01244{width:40.613333pt;}
._1a_c01244{width:61.466667pt;}
._a_c01244{width:82.493333pt;}
._1b_c01244{width:106.776000pt;}
._19_c01244{width:164.376000pt;}
._27_c01244{width:226.885333pt;}
._1d_c01244{width:256.949333pt;}
._17_c01244{width:1101.650667pt;}
.fs7_c01244{font-size:42.666667pt;}
.fs6_c01244{font-size:45.333333pt;}
.fs5_c01244{font-size:58.666667pt;}
.fs4_c01244{font-size:61.333333pt;}
.fs3_c01244{font-size:64.000000pt;}
.fs2_c01244{font-size:72.000000pt;}
.fs1_c01244{font-size:82.666667pt;}
.fs0_c01244{font-size:93.333333pt;}
.y0_c01244{bottom:0.000000pt;}
.y26_c01244{bottom:2.760000pt;}
.y25_c01244{bottom:6.425217pt;}
.y24_c01244{bottom:53.306667pt;}
.y23_c01244{bottom:76.240000pt;}
.y22_c01244{bottom:98.373333pt;}
.y21_c01244{bottom:120.506667pt;}
.y20_c01244{bottom:141.840000pt;}
.y1f_c01244{bottom:163.706667pt;}
.y1e_c01244{bottom:185.306667pt;}
.y1d_c01244{bottom:206.906667pt;}
.y1c_c01244{bottom:228.240000pt;}
.y1b_c01244{bottom:250.106667pt;}
.y1a_c01244{bottom:271.706667pt;}
.y19_c01244{bottom:293.040000pt;}
.y18_c01244{bottom:314.906667pt;}
.y17_c01244{bottom:336.506667pt;}
.y16_c01244{bottom:358.240000pt;}
.y15_c01244{bottom:379.706667pt;}
.y14_c01244{bottom:401.040000pt;}
.y13_c01244{bottom:422.373333pt;}
.y12_c01244{bottom:443.973333pt;}
.y11_c01244{bottom:465.040000pt;}
.y10_c01244{bottom:486.240000pt;}
.yf_c01244{bottom:507.573333pt;}
.ye_c01244{bottom:528.640000pt;}
.yd_c01244{bottom:549.573333pt;}
.yc_c01244{bottom:571.173333pt;}
.yb_c01244{bottom:594.240000pt;}
.ya_c01244{bottom:610.240000pt;}
.y9_c01244{bottom:635.306667pt;}
.y8_c01244{bottom:656.906667pt;}
.y7_c01244{bottom:678.506667pt;}
.y6_c01244{bottom:699.840000pt;}
.y5_c01244{bottom:721.440000pt;}
.y4_c01244{bottom:743.040000pt;}
.y3_c01244{bottom:764.906667pt;}
.y2_c01244{bottom:785.306667pt;}
.y1_c01244{bottom:816.640000pt;}
.h7_c01244{height:11.733399pt;}
.h8_c01244{height:38.937500pt;}
.h6_c01244{height:45.687500pt;}
.h5_c01244{height:64.500000pt;}
.h4_c01244{height:70.664062pt;}
.h3_c01244{height:74.906250pt;}
.h2_c01244{height:91.555990pt;}
.h0_c01244{height:862.533333pt;}
.h1_c01244{height:862.666667pt;}
.w2_c01244{width:93.222667pt;}
.w0_c01244{width:587.066667pt;}
.w1_c01244{width:587.333333pt;}
.x0_c01244{left:0.000000pt;}
.x3_c01244{left:36.400000pt;}
.xb_c01244{left:39.333333pt;}
.xa_c01244{left:43.866667pt;}
.x9_c01244{left:44.800000pt;}
.x8_c01244{left:45.866667pt;}
.x4_c01244{left:46.800000pt;}
.x7_c01244{left:48.666667pt;}
.x6_c01244{left:49.600000pt;}
.x5_c01244{left:50.800000pt;}
.x2_c01244{left:51.866667pt;}
.x1_c01244{left:53.066667pt;}
.xd_c01244{left:250.701538pt;}
.xc_c01244{left:357.866667pt;}
}





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

.ir_c01245:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01245{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01245;src:url('chunks/assets/font_32fc6f8a33358cf8e8b8ec10.woff2')format("woff");}.ff1_c01245{font-family:ff1_c01245;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01245;src:url('chunks/assets/font_311198707c3835c33f3b49ae.woff2')format("woff");}.ff2_c01245{font-family:ff2_c01245;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01245;src:url('chunks/assets/font_874d3a80b50cc96192b4c44e.woff2')format("woff");}.ff3_c01245{font-family:ff3_c01245;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01245;src:url('chunks/assets/font_57b19b2ad13a3d6811a9efe9.woff2')format("woff");}.ff4_c01245{font-family:ff4_c01245;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01245;src:url('chunks/assets/font_34bb5155358f67c8eca8f8a9.woff2')format("woff");}.ff5_c01245{font-family:ff5_c01245;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01245;src:url('chunks/assets/font_a513736e6cf2d398359b68c9.woff2')format("woff");}.ff6_c01245{font-family:ff6_c01245;line-height:1.437000;font-style:normal;font-weight: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_c01245;src:url('chunks/assets/font_30150171502b4123187a394b.woff2')format("woff");}.ff7_c01245{font-family:ff7_c01245;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c01245;src:url('chunks/assets/font_371c772b7b6bb7b4fb969237.woff2')format("woff");}.ff8_c01245{font-family:ff8_c01245;line-height:1.311035;font-style:normal;font-weight: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_c01245;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff9_c01245{font-family:ff9_c01245;line-height:1.219238;font-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_c01245{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m0_c01245{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01245{vertical-align:0.000000px;}
.v1_c01245{vertical-align:127.800000px;}
.ls3_c01245{letter-spacing:0.000000px;}
.ls2_c01245{letter-spacing:3.000000px;}
.ls0_c01245{letter-spacing:10.363200px;}
.ls1_c01245{letter-spacing:33.090000px;}
.sc__c01245{text-shadow:none;}
.sc0_c01245{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01245{-webkit-text-stroke:0px transparent;}
.sc0_c01245{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01245{word-spacing:-67.686000px;}
.ws1_c01245{word-spacing:-23.832000px;}
.ws4_c01245{word-spacing:-19.500000px;}
.ws2_c01245{word-spacing:-19.065600px;}
.ws3_c01245{word-spacing:-17.352000px;}
.ws5_c01245{word-spacing:0.000000px;}
._12_c01245{margin-left:-27.024000px;}
._18_c01245{margin-left:-23.409000px;}
._d_c01245{margin-left:-20.100000px;}
._16_c01245{margin-left:-15.309000px;}
._22_c01245{margin-left:-12.324000px;}
._a_c01245{margin-left:-11.016000px;}
._e_c01245{margin-left:-7.776000px;}
._9_c01245{margin-left:-6.642000px;}
._f_c01245{margin-left:-5.346000px;}
._c_c01245{margin-left:-3.888000px;}
._4_c01245{margin-left:-2.268000px;}
._8_c01245{margin-left:-1.134000px;}
._3_c01245{width:1.458000px;}
._6_c01245{width:2.835000px;}
._1_c01245{width:4.131000px;}
._b_c01245{width:5.265000px;}
._5_c01245{width:6.318000px;}
._0_c01245{width:7.533000px;}
._7_c01245{width:8.748000px;}
._2_c01245{width:10.611000px;}
._11_c01245{width:11.664000px;}
._10_c01245{width:13.122000px;}
._13_c01245{width:15.052800px;}
._1f_c01245{width:16.294200px;}
._1d_c01245{width:18.810000px;}
._14_c01245{width:20.232000px;}
._17_c01245{width:22.113000px;}
._21_c01245{width:23.652000px;}
._20_c01245{width:25.861800px;}
._1a_c01245{width:27.459000px;}
._1b_c01245{width:39.204000px;}
._19_c01245{width:83.511000px;}
._24_c01245{width:93.972000px;}
._1c_c01245{width:207.690000px;}
._23_c01245{width:231.525000px;}
._1e_c01245{width:251.272200px;}
._15_c01245{width:266.985000px;}
._26_c01245{width:643.356000px;}
._25_c01245{width:877.296000px;}
.fc2_c01245{color:transparent;}
.fc1_c01245{color:rgb(128,128,128);}
.fc0_c01245{color:rgb(0,0,0);}
.fs9_c01245{font-size:48.000000px;}
.fs4_c01245{font-size:57.000000px;}
.fs2_c01245{font-size:57.600000px;}
.fs7_c01245{font-size:66.000000px;}
.fs3_c01245{font-size:72.000000px;}
.fs5_c01245{font-size:78.000000px;}
.fs0_c01245{font-size:81.000000px;}
.fs1_c01245{font-size:87.000000px;}
.fs8_c01245{font-size:108.000000px;}
.fs6_c01245{font-size:255.000000px;}
.y0_c01245{bottom:0.000000px;}
.y20_c01245{bottom:3.105000px;}
.y1f_c01245{bottom:7.228371px;}
.y1e_c01245{bottom:66.315000px;}
.y1d_c01245{bottom:85.515000px;}
.y1c_c01245{bottom:111.465000px;}
.y1b_c01245{bottom:136.515000px;}
.y1a_c01245{bottom:161.115000px;}
.y19_c01245{bottom:186.765000px;}
.y18_c01245{bottom:212.415000px;}
.y17_c01245{bottom:236.115000px;}
.y15_c01245{bottom:256.665000px;}
.y16_c01245{bottom:262.665000px;}
.y14_c01245{bottom:335.565000px;}
.y13_c01245{bottom:359.865000px;}
.y12_c01245{bottom:406.665000px;}
.y11_c01245{bottom:432.315000px;}
.y10_c01245{bottom:456.765000px;}
.yf_c01245{bottom:480.615000px;}
.ye_c01245{bottom:576.465000px;}
.yd_c01245{bottom:600.765000px;}
.yc_c01245{bottom:624.465000px;}
.yb_c01245{bottom:646.665000px;}
.ya_c01245{bottom:672.615000px;}
.y9_c01245{bottom:696.915000px;}
.y8_c01245{bottom:720.915000px;}
.y7_c01245{bottom:745.215000px;}
.y6_c01245{bottom:768.915000px;}
.y5_c01245{bottom:793.215000px;}
.y4_c01245{bottom:817.215000px;}
.y3_c01245{bottom:841.515000px;}
.y2_c01245{bottom:865.365000px;}
.y1_c01245{bottom:889.665000px;}
.hb_c01245{height:13.200074px;}
.hc_c01245{height:43.804688px;}
.h7_c01245{height:66.713379px;}
.h5_c01245{height:72.168457px;}
.h2_c01245{height:79.497070px;}
.h4_c01245{height:84.269531px;}
.h3_c01245{height:91.176000px;}
.h6_c01245{height:98.756836px;}
.ha_c01245{height:108.843750px;}
.h9_c01245{height:110.151855px;}
.h8_c01245{height:267.240000px;}
.h1_c01245{height:986.250000px;}
.h0_c01245{height:986.325000px;}
.w2_c01245{width:104.875500px;}
.w0_c01245{width:667.425000px;}
.w1_c01245{width:667.500000px;}
.x0_c01245{left:0.000000px;}
.x5_c01245{left:31.350000px;}
.x6_c01245{left:46.200000px;}
.x1_c01245{left:122.550000px;}
.x2_c01245{left:124.200000px;}
.x7_c01245{left:126.000000px;}
.x3_c01245{left:130.200000px;}
.x4_c01245{left:131.250000px;}
.xb_c01245{left:135.300000px;}
.xd_c01245{left:158.250000px;}
.xa_c01245{left:167.700000px;}
.x8_c01245{left:225.450000px;}
.xe_c01245{left:285.526749px;}
.xc_c01245{left:296.100000px;}
.x9_c01245{left:320.700000px;}
@media print{
.v0_c01245{vertical-align:0.000000pt;}
.v1_c01245{vertical-align:113.600000pt;}
.ls3_c01245{letter-spacing:0.000000pt;}
.ls2_c01245{letter-spacing:2.666667pt;}
.ls0_c01245{letter-spacing:9.211733pt;}
.ls1_c01245{letter-spacing:29.413333pt;}
.ws0_c01245{word-spacing:-60.165333pt;}
.ws1_c01245{word-spacing:-21.184000pt;}
.ws4_c01245{word-spacing:-17.333333pt;}
.ws2_c01245{word-spacing:-16.947200pt;}
.ws3_c01245{word-spacing:-15.424000pt;}
.ws5_c01245{word-spacing:0.000000pt;}
._12_c01245{margin-left:-24.021333pt;}
._18_c01245{margin-left:-20.808000pt;}
._d_c01245{margin-left:-17.866667pt;}
._16_c01245{margin-left:-13.608000pt;}
._22_c01245{margin-left:-10.954667pt;}
._a_c01245{margin-left:-9.792000pt;}
._e_c01245{margin-left:-6.912000pt;}
._9_c01245{margin-left:-5.904000pt;}
._f_c01245{margin-left:-4.752000pt;}
._c_c01245{margin-left:-3.456000pt;}
._4_c01245{margin-left:-2.016000pt;}
._8_c01245{margin-left:-1.008000pt;}
._3_c01245{width:1.296000pt;}
._6_c01245{width:2.520000pt;}
._1_c01245{width:3.672000pt;}
._b_c01245{width:4.680000pt;}
._5_c01245{width:5.616000pt;}
._0_c01245{width:6.696000pt;}
._7_c01245{width:7.776000pt;}
._2_c01245{width:9.432000pt;}
._11_c01245{width:10.368000pt;}
._10_c01245{width:11.664000pt;}
._13_c01245{width:13.380267pt;}
._1f_c01245{width:14.483733pt;}
._1d_c01245{width:16.720000pt;}
._14_c01245{width:17.984000pt;}
._17_c01245{width:19.656000pt;}
._21_c01245{width:21.024000pt;}
._20_c01245{width:22.988267pt;}
._1a_c01245{width:24.408000pt;}
._1b_c01245{width:34.848000pt;}
._19_c01245{width:74.232000pt;}
._24_c01245{width:83.530667pt;}
._1c_c01245{width:184.613333pt;}
._23_c01245{width:205.800000pt;}
._1e_c01245{width:223.353067pt;}
._15_c01245{width:237.320000pt;}
._26_c01245{width:571.872000pt;}
._25_c01245{width:779.818667pt;}
.fs9_c01245{font-size:42.666667pt;}
.fs4_c01245{font-size:50.666667pt;}
.fs2_c01245{font-size:51.200000pt;}
.fs7_c01245{font-size:58.666667pt;}
.fs3_c01245{font-size:64.000000pt;}
.fs5_c01245{font-size:69.333333pt;}
.fs0_c01245{font-size:72.000000pt;}
.fs1_c01245{font-size:77.333333pt;}
.fs8_c01245{font-size:96.000000pt;}
.fs6_c01245{font-size:226.666667pt;}
.y0_c01245{bottom:0.000000pt;}
.y20_c01245{bottom:2.760000pt;}
.y1f_c01245{bottom:6.425219pt;}
.y1e_c01245{bottom:58.946667pt;}
.y1d_c01245{bottom:76.013333pt;}
.y1c_c01245{bottom:99.080000pt;}
.y1b_c01245{bottom:121.346667pt;}
.y1a_c01245{bottom:143.213333pt;}
.y19_c01245{bottom:166.013333pt;}
.y18_c01245{bottom:188.813333pt;}
.y17_c01245{bottom:209.880000pt;}
.y15_c01245{bottom:228.146667pt;}
.y16_c01245{bottom:233.480000pt;}
.y14_c01245{bottom:298.280000pt;}
.y13_c01245{bottom:319.880000pt;}
.y12_c01245{bottom:361.480000pt;}
.y11_c01245{bottom:384.280000pt;}
.y10_c01245{bottom:406.013333pt;}
.yf_c01245{bottom:427.213333pt;}
.ye_c01245{bottom:512.413333pt;}
.yd_c01245{bottom:534.013333pt;}
.yc_c01245{bottom:555.080000pt;}
.yb_c01245{bottom:574.813333pt;}
.ya_c01245{bottom:597.880000pt;}
.y9_c01245{bottom:619.480000pt;}
.y8_c01245{bottom:640.813333pt;}
.y7_c01245{bottom:662.413333pt;}
.y6_c01245{bottom:683.480000pt;}
.y5_c01245{bottom:705.080000pt;}
.y4_c01245{bottom:726.413333pt;}
.y3_c01245{bottom:748.013333pt;}
.y2_c01245{bottom:769.213333pt;}
.y1_c01245{bottom:790.813333pt;}
.hb_c01245{height:11.733399pt;}
.hc_c01245{height:38.937500pt;}
.h7_c01245{height:59.300781pt;}
.h5_c01245{height:64.149740pt;}
.h2_c01245{height:70.664062pt;}
.h4_c01245{height:74.906250pt;}
.h3_c01245{height:81.045333pt;}
.h6_c01245{height:87.783854pt;}
.ha_c01245{height:96.750000pt;}
.h9_c01245{height:97.912760pt;}
.h8_c01245{height:237.546667pt;}
.h1_c01245{height:876.666667pt;}
.h0_c01245{height:876.733333pt;}
.w2_c01245{width:93.222667pt;}
.w0_c01245{width:593.266667pt;}
.w1_c01245{width:593.333333pt;}
.x0_c01245{left:0.000000pt;}
.x5_c01245{left:27.866667pt;}
.x6_c01245{left:41.066667pt;}
.x1_c01245{left:108.933333pt;}
.x2_c01245{left:110.400000pt;}
.x7_c01245{left:112.000000pt;}
.x3_c01245{left:115.733333pt;}
.x4_c01245{left:116.666667pt;}
.xb_c01245{left:120.266667pt;}
.xd_c01245{left:140.666667pt;}
.xa_c01245{left:149.066667pt;}
.x8_c01245{left:200.400000pt;}
.xe_c01245{left:253.801554pt;}
.xc_c01245{left:263.200000pt;}
.x9_c01245{left:285.066667pt;}
}





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

.ir_c01246:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01246{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01246;src:url('chunks/assets/font_5e249019e3ef4ff737004d14.woff2')format("woff");}.ff1_c01246{font-family:ff1_c01246;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01246;src:url('chunks/assets/font_7698654bc7c685d76321f82b.woff2')format("woff");}.ff2_c01246{font-family:ff2_c01246;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01246;src:url('chunks/assets/font_ef2b8ac7a5aa77f81237bf1f.woff2')format("woff");}.ff3_c01246{font-family:ff3_c01246;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01246;src:url('chunks/assets/font_5c5cb8b655e2372ac7891bb8.woff2')format("woff");}.ff4_c01246{font-family:ff4_c01246;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01246;src:url('chunks/assets/font_e9c45206e3159b80daae2460.woff2')format("woff");}.ff5_c01246{font-family:ff5_c01246;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01246;src:url('chunks/assets/font_18767ddce99a4b20580d088d.woff2')format("woff");}.ff6_c01246{font-family:ff6_c01246;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01246;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c01246{font-family:ff7_c01246;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01246{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01246{vertical-align:0.000000px;}
.ls2_c01246{letter-spacing:0.000000px;}
.ls4_c01246{letter-spacing:3.000000px;}
.ls3_c01246{letter-spacing:9.000000px;}
.ls1_c01246{letter-spacing:14.100000px;}
.ls0_c01246{letter-spacing:55.500000px;}
.sc__c01246{text-shadow:none;}
.sc0_c01246{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01246{-webkit-text-stroke:0px transparent;}
.sc0_c01246{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c01246{word-spacing:-21.798000px;}
.ws1_c01246{word-spacing:-21.750000px;}
.ws0_c01246{word-spacing:-17.352000px;}
.ws3_c01246{word-spacing:-2.130000px;}
.ws2_c01246{word-spacing:-1.071000px;}
.ws5_c01246{word-spacing:0.000000px;}
._19_c01246{margin-left:-20.310000px;}
._12_c01246{margin-left:-15.981000px;}
._18_c01246{margin-left:-13.920000px;}
._17_c01246{margin-left:-12.876000px;}
._11_c01246{margin-left:-10.761000px;}
._16_c01246{margin-left:-9.396000px;}
._d_c01246{margin-left:-8.343000px;}
._f_c01246{margin-left:-6.711000px;}
._a_c01246{margin-left:-5.265000px;}
._10_c01246{margin-left:-4.224000px;}
._c_c01246{margin-left:-2.835000px;}
._b_c01246{margin-left:-1.053000px;}
._0_c01246{width:1.782000px;}
._8_c01246{width:2.916000px;}
._7_c01246{width:4.293000px;}
._1_c01246{width:5.346000px;}
._4_c01246{width:6.480000px;}
._6_c01246{width:7.857000px;}
._15_c01246{width:8.991000px;}
._5_c01246{width:10.044000px;}
._3_c01246{width:11.178000px;}
._9_c01246{width:12.798000px;}
._2_c01246{width:14.175000px;}
._1b_c01246{width:15.276000px;}
._14_c01246{width:16.362000px;}
._1c_c01246{width:17.577000px;}
._e_c01246{width:19.197000px;}
._1a_c01246{width:22.389000px;}
._13_c01246{width:24.213000px;}
.fc2_c01246{color:transparent;}
.fc1_c01246{color:rgb(128,128,128);}
.fc0_c01246{color:rgb(0,0,0);}
.fs4_c01246{font-size:42.000000px;}
.fs6_c01246{font-size:48.000000px;}
.fs2_c01246{font-size:51.000000px;}
.fs1_c01246{font-size:72.000000px;}
.fs5_c01246{font-size:78.000000px;}
.fs0_c01246{font-size:81.000000px;}
.fs3_c01246{font-size:87.000000px;}
.y0_c01246{bottom:0.000000px;}
.y25_c01246{bottom:3.105000px;}
.y24_c01246{bottom:7.228369px;}
.y23_c01246{bottom:53.670000px;}
.y22_c01246{bottom:76.620000px;}
.y21_c01246{bottom:101.970000px;}
.y20_c01246{bottom:126.270000px;}
.y1f_c01246{bottom:150.570000px;}
.y1e_c01246{bottom:174.870000px;}
.y1d_c01246{bottom:199.170000px;}
.y1c_c01246{bottom:223.470000px;}
.y1b_c01246{bottom:247.770000px;}
.y1a_c01246{bottom:272.070000px;}
.y19_c01246{bottom:296.670000px;}
.y18_c01246{bottom:321.870000px;}
.y17_c01246{bottom:346.170000px;}
.y16_c01246{bottom:368.520000px;}
.y15_c01246{bottom:392.820000px;}
.y14_c01246{bottom:417.120000px;}
.y13_c01246{bottom:441.420000px;}
.y12_c01246{bottom:465.120000px;}
.y11_c01246{bottom:489.270000px;}
.y10_c01246{bottom:513.720000px;}
.yf_c01246{bottom:537.270000px;}
.ye_c01246{bottom:560.970000px;}
.yd_c01246{bottom:584.820000px;}
.yc_c01246{bottom:609.420000px;}
.yb_c01246{bottom:632.820000px;}
.ya_c01246{bottom:656.670000px;}
.y9_c01246{bottom:680.670000px;}
.y8_c01246{bottom:704.670000px;}
.y7_c01246{bottom:728.970000px;}
.y6_c01246{bottom:752.970000px;}
.y5_c01246{bottom:776.970000px;}
.y4_c01246{bottom:801.120000px;}
.y3_c01246{bottom:825.120000px;}
.y2_c01246{bottom:849.120000px;}
.y1_c01246{bottom:873.120000px;}
.h7_c01246{height:13.200073px;}
.h8_c01246{height:43.804688px;}
.h5_c01246{height:50.053711px;}
.h2_c01246{height:79.497070px;}
.h3_c01246{height:84.269531px;}
.h6_c01246{height:98.756836px;}
.h4_c01246{height:110.151855px;}
.h1_c01246{height:986.250000px;}
.h0_c01246{height:986.550000px;}
.w1_c01246{width:104.875500px;}
.w0_c01246{width:672.000000px;}
.x0_c01246{left:0.000000px;}
.x5_c01246{left:56.250000px;}
.x3_c01246{left:57.300000px;}
.x2_c01246{left:58.500000px;}
.x1_c01246{left:59.700000px;}
.x4_c01246{left:77.250000px;}
.x6_c01246{left:107.700000px;}
.x8_c01246{left:287.814240px;}
.x7_c01246{left:506.250000px;}
@media print{
.v0_c01246{vertical-align:0.000000pt;}
.ls2_c01246{letter-spacing:0.000000pt;}
.ls4_c01246{letter-spacing:2.666667pt;}
.ls3_c01246{letter-spacing:8.000000pt;}
.ls1_c01246{letter-spacing:12.533333pt;}
.ls0_c01246{letter-spacing:49.333333pt;}
.ws4_c01246{word-spacing:-19.376000pt;}
.ws1_c01246{word-spacing:-19.333333pt;}
.ws0_c01246{word-spacing:-15.424000pt;}
.ws3_c01246{word-spacing:-1.893333pt;}
.ws2_c01246{word-spacing:-0.952000pt;}
.ws5_c01246{word-spacing:0.000000pt;}
._19_c01246{margin-left:-18.053333pt;}
._12_c01246{margin-left:-14.205333pt;}
._18_c01246{margin-left:-12.373333pt;}
._17_c01246{margin-left:-11.445333pt;}
._11_c01246{margin-left:-9.565333pt;}
._16_c01246{margin-left:-8.352000pt;}
._d_c01246{margin-left:-7.416000pt;}
._f_c01246{margin-left:-5.965333pt;}
._a_c01246{margin-left:-4.680000pt;}
._10_c01246{margin-left:-3.754667pt;}
._c_c01246{margin-left:-2.520000pt;}
._b_c01246{margin-left:-0.936000pt;}
._0_c01246{width:1.584000pt;}
._8_c01246{width:2.592000pt;}
._7_c01246{width:3.816000pt;}
._1_c01246{width:4.752000pt;}
._4_c01246{width:5.760000pt;}
._6_c01246{width:6.984000pt;}
._15_c01246{width:7.992000pt;}
._5_c01246{width:8.928000pt;}
._3_c01246{width:9.936000pt;}
._9_c01246{width:11.376000pt;}
._2_c01246{width:12.600000pt;}
._1b_c01246{width:13.578667pt;}
._14_c01246{width:14.544000pt;}
._1c_c01246{width:15.624000pt;}
._e_c01246{width:17.064000pt;}
._1a_c01246{width:19.901333pt;}
._13_c01246{width:21.522667pt;}
.fs4_c01246{font-size:37.333333pt;}
.fs6_c01246{font-size:42.666667pt;}
.fs2_c01246{font-size:45.333333pt;}
.fs1_c01246{font-size:64.000000pt;}
.fs5_c01246{font-size:69.333333pt;}
.fs0_c01246{font-size:72.000000pt;}
.fs3_c01246{font-size:77.333333pt;}
.y0_c01246{bottom:0.000000pt;}
.y25_c01246{bottom:2.760000pt;}
.y24_c01246{bottom:6.425217pt;}
.y23_c01246{bottom:47.706667pt;}
.y22_c01246{bottom:68.106667pt;}
.y21_c01246{bottom:90.640000pt;}
.y20_c01246{bottom:112.240000pt;}
.y1f_c01246{bottom:133.840000pt;}
.y1e_c01246{bottom:155.440000pt;}
.y1d_c01246{bottom:177.040000pt;}
.y1c_c01246{bottom:198.640000pt;}
.y1b_c01246{bottom:220.240000pt;}
.y1a_c01246{bottom:241.840000pt;}
.y19_c01246{bottom:263.706667pt;}
.y18_c01246{bottom:286.106667pt;}
.y17_c01246{bottom:307.706667pt;}
.y16_c01246{bottom:327.573333pt;}
.y15_c01246{bottom:349.173333pt;}
.y14_c01246{bottom:370.773333pt;}
.y13_c01246{bottom:392.373333pt;}
.y12_c01246{bottom:413.440000pt;}
.y11_c01246{bottom:434.906667pt;}
.y10_c01246{bottom:456.640000pt;}
.yf_c01246{bottom:477.573333pt;}
.ye_c01246{bottom:498.640000pt;}
.yd_c01246{bottom:519.840000pt;}
.yc_c01246{bottom:541.706667pt;}
.yb_c01246{bottom:562.506667pt;}
.ya_c01246{bottom:583.706667pt;}
.y9_c01246{bottom:605.040000pt;}
.y8_c01246{bottom:626.373333pt;}
.y7_c01246{bottom:647.973333pt;}
.y6_c01246{bottom:669.306667pt;}
.y5_c01246{bottom:690.640000pt;}
.y4_c01246{bottom:712.106667pt;}
.y3_c01246{bottom:733.440000pt;}
.y2_c01246{bottom:754.773333pt;}
.y1_c01246{bottom:776.106667pt;}
.h7_c01246{height:11.733399pt;}
.h8_c01246{height:38.937500pt;}
.h5_c01246{height:44.492188pt;}
.h2_c01246{height:70.664062pt;}
.h3_c01246{height:74.906250pt;}
.h6_c01246{height:87.783854pt;}
.h4_c01246{height:97.912760pt;}
.h1_c01246{height:876.666667pt;}
.h0_c01246{height:876.933333pt;}
.w1_c01246{width:93.222667pt;}
.w0_c01246{width:597.333333pt;}
.x0_c01246{left:0.000000pt;}
.x5_c01246{left:50.000000pt;}
.x3_c01246{left:50.933333pt;}
.x2_c01246{left:52.000000pt;}
.x1_c01246{left:53.066667pt;}
.x4_c01246{left:68.666667pt;}
.x6_c01246{left:95.733333pt;}
.x8_c01246{left:255.834880pt;}
.x7_c01246{left:450.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_c01247 {
    display:none;
  }
  .loading-indicator_c01247.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01247 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01247 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01247" -> "#page-container .classname_c01247")
 */
.pf_c01247 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01247 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01247.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01247 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01247 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01247 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01247 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01247 {overflow:visible;}
  }
}
.c_c01247 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01247 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01247:after { /* webkit #35443 */
  content: '';
}
.t_c01247:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01247 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01247 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01247 { /* info for Javascript */
  display:none;
}
.l_c01247 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01247 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01247 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01247:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01247{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01247;src:url('chunks/assets/font_397c591076b54c0fa65b5e58.woff2')format("woff");}.ff1_c01247{font-family:ff1_c01247;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01247;src:url('chunks/assets/font_e2ad5e9c919d3f6d9581226b.woff2')format("woff");}.ff2_c01247{font-family:ff2_c01247;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01247;src:url('chunks/assets/font_fd49e7017f8caf0c24ff60f1.woff2')format("woff");}.ff3_c01247{font-family:ff3_c01247;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01247;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff4_c01247{font-family:ff4_c01247;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01247{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01247{vertical-align:0.000000px;}
.ls1_c01247{letter-spacing:0.000000px;}
.ls0_c01247{letter-spacing:20.784000px;}
.sc__c01247{text-shadow:none;}
.sc0_c01247{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01247{-webkit-text-stroke:0px transparent;}
.sc0_c01247{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01247{word-spacing:-67.686000px;}
.ws0_c01247{word-spacing:-59.184000px;}
.ws2_c01247{word-spacing:-20.250000px;}
.ws3_c01247{word-spacing:0.000000px;}
._16_c01247{margin-left:-18.270000px;}
._13_c01247{margin-left:-15.714000px;}
._15_c01247{margin-left:-14.256000px;}
._12_c01247{margin-left:-11.862000px;}
._4_c01247{margin-left:-6.966000px;}
._d_c01247{margin-left:-5.346000px;}
._7_c01247{margin-left:-4.131000px;}
._10_c01247{margin-left:-3.078000px;}
._6_c01247{margin-left:-1.782000px;}
._3_c01247{width:1.296000px;}
._5_c01247{width:2.835000px;}
._0_c01247{width:4.536000px;}
._1_c01247{width:5.751000px;}
._8_c01247{width:7.371000px;}
._b_c01247{width:9.315000px;}
._2_c01247{width:11.259000px;}
._14_c01247{width:12.474000px;}
._c_c01247{width:14.175000px;}
._f_c01247{width:15.633000px;}
._e_c01247{width:17.091000px;}
._17_c01247{width:18.468000px;}
._11_c01247{width:23.103000px;}
._9_c01247{width:26.163000px;}
._a_c01247{width:34.587000px;}
.fc2_c01247{color:transparent;}
.fc1_c01247{color:rgb(128,128,128);}
.fc0_c01247{color:rgb(0,0,0);}
.fs4_c01247{font-size:48.000000px;}
.fs2_c01247{font-size:51.000000px;}
.fs1_c01247{font-size:72.000000px;}
.fs0_c01247{font-size:81.000000px;}
.fs3_c01247{font-size:87.000000px;}
.y0_c01247{bottom:0.000000px;}
.y25_c01247{bottom:3.105000px;}
.y24_c01247{bottom:7.228371px;}
.y23_c01247{bottom:48.615000px;}
.y22_c01247{bottom:71.865000px;}
.y21_c01247{bottom:96.615000px;}
.y20_c01247{bottom:120.915000px;}
.y1f_c01247{bottom:145.515000px;}
.y1e_c01247{bottom:170.415000px;}
.y1d_c01247{bottom:194.865000px;}
.y1c_c01247{bottom:219.165000px;}
.y1b_c01247{bottom:244.065000px;}
.y1a_c01247{bottom:268.665000px;}
.y19_c01247{bottom:293.265000px;}
.y18_c01247{bottom:318.015000px;}
.y17_c01247{bottom:341.265000px;}
.y16_c01247{bottom:366.615000px;}
.y15_c01247{bottom:390.165000px;}
.y14_c01247{bottom:415.215000px;}
.y13_c01247{bottom:439.065000px;}
.y12_c01247{bottom:462.465000px;}
.y11_c01247{bottom:486.765000px;}
.y10_c01247{bottom:511.065000px;}
.yf_c01247{bottom:534.915000px;}
.ye_c01247{bottom:559.215000px;}
.yd_c01247{bottom:583.515000px;}
.yc_c01247{bottom:607.815000px;}
.yb_c01247{bottom:631.515000px;}
.ya_c01247{bottom:656.415000px;}
.y9_c01247{bottom:680.415000px;}
.y8_c01247{bottom:704.115000px;}
.y7_c01247{bottom:728.115000px;}
.y6_c01247{bottom:752.715000px;}
.y5_c01247{bottom:776.715000px;}
.y4_c01247{bottom:801.015000px;}
.y3_c01247{bottom:825.165000px;}
.y2_c01247{bottom:849.615000px;}
.y1_c01247{bottom:873.465000px;}
.h5_c01247{height:13.200074px;}
.h6_c01247{height:43.804688px;}
.h2_c01247{height:79.497070px;}
.h3_c01247{height:84.269531px;}
.h4_c01247{height:91.176000px;}
.h1_c01247{height:986.250000px;}
.h0_c01247{height:986.325000px;}
.w2_c01247{width:104.875500px;}
.w0_c01247{width:667.425000px;}
.w1_c01247{width:667.500000px;}
.x0_c01247{left:0.000000px;}
.x1_c01247{left:132.900000px;}
.x2_c01247{left:134.100000px;}
.x4_c01247{left:135.300000px;}
.x3_c01247{left:158.250000px;}
.x6_c01247{left:285.526749px;}
.x5_c01247{left:564.000000px;}
@media print{
.v0_c01247{vertical-align:0.000000pt;}
.ls1_c01247{letter-spacing:0.000000pt;}
.ls0_c01247{letter-spacing:18.474667pt;}
.ws1_c01247{word-spacing:-60.165333pt;}
.ws0_c01247{word-spacing:-52.608000pt;}
.ws2_c01247{word-spacing:-18.000000pt;}
.ws3_c01247{word-spacing:0.000000pt;}
._16_c01247{margin-left:-16.240000pt;}
._13_c01247{margin-left:-13.968000pt;}
._15_c01247{margin-left:-12.672000pt;}
._12_c01247{margin-left:-10.544000pt;}
._4_c01247{margin-left:-6.192000pt;}
._d_c01247{margin-left:-4.752000pt;}
._7_c01247{margin-left:-3.672000pt;}
._10_c01247{margin-left:-2.736000pt;}
._6_c01247{margin-left:-1.584000pt;}
._3_c01247{width:1.152000pt;}
._5_c01247{width:2.520000pt;}
._0_c01247{width:4.032000pt;}
._1_c01247{width:5.112000pt;}
._8_c01247{width:6.552000pt;}
._b_c01247{width:8.280000pt;}
._2_c01247{width:10.008000pt;}
._14_c01247{width:11.088000pt;}
._c_c01247{width:12.600000pt;}
._f_c01247{width:13.896000pt;}
._e_c01247{width:15.192000pt;}
._17_c01247{width:16.416000pt;}
._11_c01247{width:20.536000pt;}
._9_c01247{width:23.256000pt;}
._a_c01247{width:30.744000pt;}
.fs4_c01247{font-size:42.666667pt;}
.fs2_c01247{font-size:45.333333pt;}
.fs1_c01247{font-size:64.000000pt;}
.fs0_c01247{font-size:72.000000pt;}
.fs3_c01247{font-size:77.333333pt;}
.y0_c01247{bottom:0.000000pt;}
.y25_c01247{bottom:2.760000pt;}
.y24_c01247{bottom:6.425219pt;}
.y23_c01247{bottom:43.213333pt;}
.y22_c01247{bottom:63.880000pt;}
.y21_c01247{bottom:85.880000pt;}
.y20_c01247{bottom:107.480000pt;}
.y1f_c01247{bottom:129.346667pt;}
.y1e_c01247{bottom:151.480000pt;}
.y1d_c01247{bottom:173.213333pt;}
.y1c_c01247{bottom:194.813333pt;}
.y1b_c01247{bottom:216.946667pt;}
.y1a_c01247{bottom:238.813333pt;}
.y19_c01247{bottom:260.680000pt;}
.y18_c01247{bottom:282.680000pt;}
.y17_c01247{bottom:303.346667pt;}
.y16_c01247{bottom:325.880000pt;}
.y15_c01247{bottom:346.813333pt;}
.y14_c01247{bottom:369.080000pt;}
.y13_c01247{bottom:390.280000pt;}
.y12_c01247{bottom:411.080000pt;}
.y11_c01247{bottom:432.680000pt;}
.y10_c01247{bottom:454.280000pt;}
.yf_c01247{bottom:475.480000pt;}
.ye_c01247{bottom:497.080000pt;}
.yd_c01247{bottom:518.680000pt;}
.yc_c01247{bottom:540.280000pt;}
.yb_c01247{bottom:561.346667pt;}
.ya_c01247{bottom:583.480000pt;}
.y9_c01247{bottom:604.813333pt;}
.y8_c01247{bottom:625.880000pt;}
.y7_c01247{bottom:647.213333pt;}
.y6_c01247{bottom:669.080000pt;}
.y5_c01247{bottom:690.413333pt;}
.y4_c01247{bottom:712.013333pt;}
.y3_c01247{bottom:733.480000pt;}
.y2_c01247{bottom:755.213333pt;}
.y1_c01247{bottom:776.413333pt;}
.h5_c01247{height:11.733399pt;}
.h6_c01247{height:38.937500pt;}
.h2_c01247{height:70.664062pt;}
.h3_c01247{height:74.906250pt;}
.h4_c01247{height:81.045333pt;}
.h1_c01247{height:876.666667pt;}
.h0_c01247{height:876.733333pt;}
.w2_c01247{width:93.222667pt;}
.w0_c01247{width:593.266667pt;}
.w1_c01247{width:593.333333pt;}
.x0_c01247{left:0.000000pt;}
.x1_c01247{left:118.133333pt;}
.x2_c01247{left:119.200000pt;}
.x4_c01247{left:120.266667pt;}
.x3_c01247{left:140.666667pt;}
.x6_c01247{left:253.801554pt;}
.x5_c01247{left:501.333333pt;}
}





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

.ir_c01248:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01248{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01248;src:url('chunks/assets/font_7dd4b4e5735ca2d06fa15e5e.woff2')format("woff");}.ff1_c01248{font-family:ff1_c01248;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01248;src:url('chunks/assets/font_9f5d2ff154182f5746035ed9.woff2')format("woff");}.ff2_c01248{font-family:ff2_c01248;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01248;src:url('chunks/assets/font_79c436e8d77e340b4d380d69.woff2')format("woff");}.ff3_c01248{font-family:ff3_c01248;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01248;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff4_c01248{font-family:ff4_c01248;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01248;src:url('chunks/assets/font_7c91cbef44b6a7794e88f825.woff2')format("woff");}.ff5_c01248{font-family:ff5_c01248;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01248;src:url('chunks/assets/font_81c24b4d6024700d1bfcc13a.woff2')format("woff");}.ff6_c01248{font-family:ff6_c01248;line-height:1.437000;font-style:normal;font-weight: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_c01248;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c01248{font-family:ff7_c01248;line-height:1.219238;font-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_c01248{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m0_c01248{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01248{vertical-align:0.000000px;}
.ls1_c01248{letter-spacing:0.000000px;}
.ls0_c01248{letter-spacing:25.464000px;}
.sc__c01248{text-shadow:none;}
.sc0_c01248{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01248{-webkit-text-stroke:0px transparent;}
.sc0_c01248{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01248{word-spacing:-67.686000px;}
.ws1_c01248{word-spacing:-18.000000px;}
.ws3_c01248{word-spacing:-17.352000px;}
.ws0_c01248{word-spacing:-17.250000px;}
.ws4_c01248{word-spacing:0.000000px;}
._1e_c01248{margin-left:-26.553000px;}
._19_c01248{margin-left:-13.500000px;}
._15_c01248{margin-left:-10.566000px;}
._11_c01248{margin-left:-9.033000px;}
._13_c01248{margin-left:-8.019000px;}
._f_c01248{margin-left:-6.318000px;}
._3_c01248{margin-left:-5.184000px;}
._10_c01248{margin-left:-4.161000px;}
._5_c01248{margin-left:-3.159000px;}
._6_c01248{margin-left:-1.458000px;}
._4_c01248{width:1.458000px;}
._1_c01248{width:2.592000px;}
._0_c01248{width:3.726000px;}
._2_c01248{width:4.779000px;}
._7_c01248{width:6.561000px;}
._d_c01248{width:7.857000px;}
._9_c01248{width:9.072000px;}
._c_c01248{width:10.530000px;}
._8_c01248{width:12.312000px;}
._b_c01248{width:13.446000px;}
._a_c01248{width:14.985000px;}
._1a_c01248{width:15.993000px;}
._12_c01248{width:18.036000px;}
._14_c01248{width:21.327000px;}
._21_c01248{width:24.261000px;}
._17_c01248{width:25.839000px;}
._1b_c01248{width:26.850000px;}
._16_c01248{width:28.623000px;}
._e_c01248{width:30.501000px;}
._1c_c01248{width:32.073000px;}
._1f_c01248{width:34.344000px;}
._20_c01248{width:36.936000px;}
._1d_c01248{width:77.817000px;}
._18_c01248{width:102.939000px;}
.fc2_c01248{color:transparent;}
.fc1_c01248{color:rgb(128,128,128);}
.fc0_c01248{color:rgb(0,0,0);}
.fs6_c01248{font-size:48.000000px;}
.fs5_c01248{font-size:57.000000px;}
.fs1_c01248{font-size:69.000000px;}
.fs2_c01248{font-size:72.000000px;}
.fs0_c01248{font-size:81.000000px;}
.fs4_c01248{font-size:87.000000px;}
.fs3_c01248{font-size:108.000000px;}
.y0_c01248{bottom:0.000000px;}
.y23_c01248{bottom:3.105000px;}
.y22_c01248{bottom:7.228369px;}
.y21_c01248{bottom:71.520000px;}
.y20_c01248{bottom:99.120000px;}
.y1f_c01248{bottom:121.770000px;}
.y1e_c01248{bottom:146.070000px;}
.y1d_c01248{bottom:170.670000px;}
.y1c_c01248{bottom:195.120000px;}
.y1b_c01248{bottom:219.270000px;}
.y1a_c01248{bottom:243.570000px;}
.y19_c01248{bottom:269.220000px;}
.y18_c01248{bottom:292.620000px;}
.y17_c01248{bottom:316.920000px;}
.y16_c01248{bottom:341.220000px;}
.y15_c01248{bottom:366.420000px;}
.y14_c01248{bottom:389.820000px;}
.y13_c01248{bottom:414.120000px;}
.y12_c01248{bottom:439.020000px;}
.y11_c01248{bottom:462.420000px;}
.y10_c01248{bottom:487.320000px;}
.yf_c01248{bottom:511.320000px;}
.ye_c01248{bottom:534.870000px;}
.yd_c01248{bottom:558.570000px;}
.yc_c01248{bottom:582.570000px;}
.yb_c01248{bottom:606.720000px;}
.ya_c01248{bottom:630.420000px;}
.y9_c01248{bottom:654.420000px;}
.y8_c01248{bottom:678.720000px;}
.y7_c01248{bottom:704.670000px;}
.y6_c01248{bottom:727.620000px;}
.y5_c01248{bottom:751.320000px;}
.y4_c01248{bottom:798.420000px;}
.y3_c01248{bottom:823.170000px;}
.y2_c01248{bottom:847.470000px;}
.y1_c01248{bottom:872.070000px;}
.h7_c01248{height:13.200073px;}
.h8_c01248{height:43.804688px;}
.h2_c01248{height:79.497070px;}
.h6_c01248{height:84.269531px;}
.h3_c01248{height:91.160156px;}
.h5_c01248{height:91.176000px;}
.h4_c01248{height:108.843750px;}
.h1_c01248{height:986.250000px;}
.h0_c01248{height:986.550000px;}
.w1_c01248{width:104.875500px;}
.w0_c01248{width:672.000000px;}
.x0_c01248{left:0.000000px;}
.x7_c01248{left:56.700000px;}
.x2_c01248{left:57.750000px;}
.x1_c01248{left:58.950000px;}
.x5_c01248{left:98.550000px;}
.x4_c01248{left:103.650000px;}
.x6_c01248{left:119.850000px;}
.x3_c01248{left:136.050000px;}
.x8_c01248{left:287.814240px;}
@media print{
.v0_c01248{vertical-align:0.000000pt;}
.ls1_c01248{letter-spacing:0.000000pt;}
.ls0_c01248{letter-spacing:22.634667pt;}
.ws2_c01248{word-spacing:-60.165333pt;}
.ws1_c01248{word-spacing:-16.000000pt;}
.ws3_c01248{word-spacing:-15.424000pt;}
.ws0_c01248{word-spacing:-15.333333pt;}
.ws4_c01248{word-spacing:0.000000pt;}
._1e_c01248{margin-left:-23.602667pt;}
._19_c01248{margin-left:-12.000000pt;}
._15_c01248{margin-left:-9.392000pt;}
._11_c01248{margin-left:-8.029333pt;}
._13_c01248{margin-left:-7.128000pt;}
._f_c01248{margin-left:-5.616000pt;}
._3_c01248{margin-left:-4.608000pt;}
._10_c01248{margin-left:-3.698667pt;}
._5_c01248{margin-left:-2.808000pt;}
._6_c01248{margin-left:-1.296000pt;}
._4_c01248{width:1.296000pt;}
._1_c01248{width:2.304000pt;}
._0_c01248{width:3.312000pt;}
._2_c01248{width:4.248000pt;}
._7_c01248{width:5.832000pt;}
._d_c01248{width:6.984000pt;}
._9_c01248{width:8.064000pt;}
._c_c01248{width:9.360000pt;}
._8_c01248{width:10.944000pt;}
._b_c01248{width:11.952000pt;}
._a_c01248{width:13.320000pt;}
._1a_c01248{width:14.216000pt;}
._12_c01248{width:16.032000pt;}
._14_c01248{width:18.957333pt;}
._21_c01248{width:21.565333pt;}
._17_c01248{width:22.968000pt;}
._1b_c01248{width:23.866667pt;}
._16_c01248{width:25.442667pt;}
._e_c01248{width:27.112000pt;}
._1c_c01248{width:28.509333pt;}
._1f_c01248{width:30.528000pt;}
._20_c01248{width:32.832000pt;}
._1d_c01248{width:69.170667pt;}
._18_c01248{width:91.501333pt;}
.fs6_c01248{font-size:42.666667pt;}
.fs5_c01248{font-size:50.666667pt;}
.fs1_c01248{font-size:61.333333pt;}
.fs2_c01248{font-size:64.000000pt;}
.fs0_c01248{font-size:72.000000pt;}
.fs4_c01248{font-size:77.333333pt;}
.fs3_c01248{font-size:96.000000pt;}
.y0_c01248{bottom:0.000000pt;}
.y23_c01248{bottom:2.760000pt;}
.y22_c01248{bottom:6.425217pt;}
.y21_c01248{bottom:63.573333pt;}
.y20_c01248{bottom:88.106667pt;}
.y1f_c01248{bottom:108.240000pt;}
.y1e_c01248{bottom:129.840000pt;}
.y1d_c01248{bottom:151.706667pt;}
.y1c_c01248{bottom:173.440000pt;}
.y1b_c01248{bottom:194.906667pt;}
.y1a_c01248{bottom:216.506667pt;}
.y19_c01248{bottom:239.306667pt;}
.y18_c01248{bottom:260.106667pt;}
.y17_c01248{bottom:281.706667pt;}
.y16_c01248{bottom:303.306667pt;}
.y15_c01248{bottom:325.706667pt;}
.y14_c01248{bottom:346.506667pt;}
.y13_c01248{bottom:368.106667pt;}
.y12_c01248{bottom:390.240000pt;}
.y11_c01248{bottom:411.040000pt;}
.y10_c01248{bottom:433.173333pt;}
.yf_c01248{bottom:454.506667pt;}
.ye_c01248{bottom:475.440000pt;}
.yd_c01248{bottom:496.506667pt;}
.yc_c01248{bottom:517.840000pt;}
.yb_c01248{bottom:539.306667pt;}
.ya_c01248{bottom:560.373333pt;}
.y9_c01248{bottom:581.706667pt;}
.y8_c01248{bottom:603.306667pt;}
.y7_c01248{bottom:626.373333pt;}
.y6_c01248{bottom:646.773333pt;}
.y5_c01248{bottom:667.840000pt;}
.y4_c01248{bottom:709.706667pt;}
.y3_c01248{bottom:731.706667pt;}
.y2_c01248{bottom:753.306667pt;}
.y1_c01248{bottom:775.173333pt;}
.h7_c01248{height:11.733399pt;}
.h8_c01248{height:38.937500pt;}
.h2_c01248{height:70.664062pt;}
.h6_c01248{height:74.906250pt;}
.h3_c01248{height:81.031250pt;}
.h5_c01248{height:81.045333pt;}
.h4_c01248{height:96.750000pt;}
.h1_c01248{height:876.666667pt;}
.h0_c01248{height:876.933333pt;}
.w1_c01248{width:93.222667pt;}
.w0_c01248{width:597.333333pt;}
.x0_c01248{left:0.000000pt;}
.x7_c01248{left:50.400000pt;}
.x2_c01248{left:51.333333pt;}
.x1_c01248{left:52.400000pt;}
.x5_c01248{left:87.600000pt;}
.x4_c01248{left:92.133333pt;}
.x6_c01248{left:106.533333pt;}
.x3_c01248{left:120.933333pt;}
.x8_c01248{left:255.834880pt;}
}





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

.ir_c01249:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01249{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01249;src:url('chunks/assets/font_86d255e9f53234d39807b9d3.woff2')format("woff");}.ff1_c01249{font-family:ff1_c01249;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01249;src:url('chunks/assets/font_679a68f8b8bfa26e734cb2d7.woff2')format("woff");}.ff2_c01249{font-family:ff2_c01249;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01249;src:url('chunks/assets/font_544749626a248cb9e30c1b17.woff2')format("woff");}.ff3_c01249{font-family:ff3_c01249;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01249;src:url('chunks/assets/font_b2f1ad42d4e9e0eb1fc3dbc5.woff2')format("woff");}.ff4_c01249{font-family:ff4_c01249;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01249;src:url('chunks/assets/font_3e57a02dfe3f3667e8552e76.woff2')format("woff");}.ff5_c01249{font-family:ff5_c01249;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01249;src:url('chunks/assets/font_be1d9f6be5f4759943ef85cb.woff2')format("woff");}.ff6_c01249{font-family:ff6_c01249;line-height:1.284668;font-style:normal;font-weight: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_c01249;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c01249{font-family:ff7_c01249;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01249{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01249{vertical-align:0.000000px;}
.ls8_c01249{letter-spacing:-3.000000px;}
.ls6_c01249{letter-spacing:0.000000px;}
.ls7_c01249{letter-spacing:3.000000px;}
.ls4_c01249{letter-spacing:4.200000px;}
.ls1_c01249{letter-spacing:4.674000px;}
.ls0_c01249{letter-spacing:17.712000px;}
.ls2_c01249{letter-spacing:30.978000px;}
.ls3_c01249{letter-spacing:31.674000px;}
.ls5_c01249{letter-spacing:325.602000px;}
.sc__c01249{text-shadow:none;}
.sc0_c01249{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01249{-webkit-text-stroke:0px transparent;}
.sc0_c01249{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01249{word-spacing:-17.967000px;}
.ws0_c01249{word-spacing:-17.352000px;}
.ws2_c01249{word-spacing:0.000000px;}
._8_c01249{margin-left:-37.674000px;}
._1a_c01249{margin-left:-24.024000px;}
._14_c01249{margin-left:-16.980000px;}
._7_c01249{margin-left:-14.508000px;}
._13_c01249{margin-left:-11.934000px;}
._15_c01249{margin-left:-9.798000px;}
._12_c01249{margin-left:-8.112000px;}
._11_c01249{margin-left:-6.552000px;}
._17_c01249{margin-left:-5.346000px;}
._e_c01249{margin-left:-4.290000px;}
._f_c01249{margin-left:-3.120000px;}
._6_c01249{margin-left:-1.794000px;}
._d_c01249{width:1.092000px;}
._4_c01249{width:2.106000px;}
._0_c01249{width:3.978000px;}
._1_c01249{width:5.694000px;}
._3_c01249{width:7.332000px;}
._2_c01249{width:8.658000px;}
._c_c01249{width:9.750000px;}
._b_c01249{width:11.076000px;}
._1e_c01249{width:12.168000px;}
._9_c01249{width:13.338000px;}
._10_c01249{width:15.756000px;}
._5_c01249{width:19.188000px;}
._a_c01249{width:20.358000px;}
._1c_c01249{width:23.634000px;}
._16_c01249{width:34.278000px;}
._20_c01249{width:37.782000px;}
._1b_c01249{width:73.704000px;}
._1f_c01249{width:117.000000px;}
._19_c01249{width:129.012000px;}
._1d_c01249{width:182.442000px;}
._18_c01249{width:282.282000px;}
._21_c01249{width:300.840000px;}
.fc2_c01249{color:transparent;}
.fc1_c01249{color:rgb(128,128,128);}
.fc0_c01249{color:rgb(0,0,0);}
.fs5_c01249{font-size:48.000000px;}
.fs2_c01249{font-size:51.000000px;}
.fs3_c01249{font-size:60.000000px;}
.fs1_c01249{font-size:72.000000px;}
.fs0_c01249{font-size:78.000000px;}
.fs4_c01249{font-size:87.000000px;}
.y0_c01249{bottom:0.000000px;}
.y25_c01249{bottom:3.105000px;}
.y24_c01249{bottom:7.228371px;}
.y23_c01249{bottom:56.715000px;}
.y22_c01249{bottom:78.615000px;}
.y21_c01249{bottom:104.715000px;}
.y20_c01249{bottom:129.915000px;}
.y1f_c01249{bottom:155.265000px;}
.y1e_c01249{bottom:179.565000px;}
.y1d_c01249{bottom:201.915000px;}
.y1c_c01249{bottom:227.565000px;}
.y1b_c01249{bottom:252.765000px;}
.y1a_c01249{bottom:276.465000px;}
.y19_c01249{bottom:302.115000px;}
.y18_c01249{bottom:326.115000px;}
.y17_c01249{bottom:349.965000px;}
.y16_c01249{bottom:374.265000px;}
.y15_c01249{bottom:398.715000px;}
.y14_c01249{bottom:423.315000px;}
.y13_c01249{bottom:447.615000px;}
.y12_c01249{bottom:472.215000px;}
.y11_c01249{bottom:495.915000px;}
.y10_c01249{bottom:520.065000px;}
.yf_c01249{bottom:544.065000px;}
.ye_c01249{bottom:567.765000px;}
.yd_c01249{bottom:592.365000px;}
.yc_c01249{bottom:617.265000px;}
.yb_c01249{bottom:640.965000px;}
.ya_c01249{bottom:664.965000px;}
.y9_c01249{bottom:688.965000px;}
.y8_c01249{bottom:713.115000px;}
.y7_c01249{bottom:737.865000px;}
.y6_c01249{bottom:760.515000px;}
.y5_c01249{bottom:786.465000px;}
.y4_c01249{bottom:810.465000px;}
.y3_c01249{bottom:834.615000px;}
.y2_c01249{bottom:859.365000px;}
.y1_c01249{bottom:883.215000px;}
.h7_c01249{height:13.200074px;}
.h8_c01249{height:43.804688px;}
.h2_c01249{height:83.226000px;}
.h3_c01249{height:84.269531px;}
.h4_c01249{height:91.160156px;}
.h5_c01249{height:98.756836px;}
.h6_c01249{height:110.151855px;}
.h1_c01249{height:986.250000px;}
.h0_c01249{height:986.325000px;}
.w2_c01249{width:104.875500px;}
.w0_c01249{width:667.425000px;}
.w1_c01249{width:667.500000px;}
.x0_c01249{left:0.000000px;}
.x6_c01249{left:19.350000px;}
.x8_c01249{left:46.200000px;}
.xd_c01249{left:54.750000px;}
.xb_c01249{left:58.800000px;}
.x7_c01249{left:87.750000px;}
.x1_c01249{left:108.000000px;}
.x2_c01249{left:109.050000px;}
.x3_c01249{left:110.100000px;}
.x4_c01249{left:111.150000px;}
.xa_c01249{left:112.350000px;}
.x9_c01249{left:113.400000px;}
.xc_c01249{left:114.750000px;}
.x5_c01249{left:136.050000px;}
.xf_c01249{left:285.526749px;}
.xe_c01249{left:582.900000px;}
@media print{
.v0_c01249{vertical-align:0.000000pt;}
.ls8_c01249{letter-spacing:-2.666667pt;}
.ls6_c01249{letter-spacing:0.000000pt;}
.ls7_c01249{letter-spacing:2.666667pt;}
.ls4_c01249{letter-spacing:3.733333pt;}
.ls1_c01249{letter-spacing:4.154667pt;}
.ls0_c01249{letter-spacing:15.744000pt;}
.ls2_c01249{letter-spacing:27.536000pt;}
.ls3_c01249{letter-spacing:28.154667pt;}
.ls5_c01249{letter-spacing:289.424000pt;}
.ws1_c01249{word-spacing:-15.970667pt;}
.ws0_c01249{word-spacing:-15.424000pt;}
.ws2_c01249{word-spacing:0.000000pt;}
._8_c01249{margin-left:-33.488000pt;}
._1a_c01249{margin-left:-21.354667pt;}
._14_c01249{margin-left:-15.093333pt;}
._7_c01249{margin-left:-12.896000pt;}
._13_c01249{margin-left:-10.608000pt;}
._15_c01249{margin-left:-8.709333pt;}
._12_c01249{margin-left:-7.210667pt;}
._11_c01249{margin-left:-5.824000pt;}
._17_c01249{margin-left:-4.752000pt;}
._e_c01249{margin-left:-3.813333pt;}
._f_c01249{margin-left:-2.773333pt;}
._6_c01249{margin-left:-1.594667pt;}
._d_c01249{width:0.970667pt;}
._4_c01249{width:1.872000pt;}
._0_c01249{width:3.536000pt;}
._1_c01249{width:5.061333pt;}
._3_c01249{width:6.517333pt;}
._2_c01249{width:7.696000pt;}
._c_c01249{width:8.666667pt;}
._b_c01249{width:9.845333pt;}
._1e_c01249{width:10.816000pt;}
._9_c01249{width:11.856000pt;}
._10_c01249{width:14.005333pt;}
._5_c01249{width:17.056000pt;}
._a_c01249{width:18.096000pt;}
._1c_c01249{width:21.008000pt;}
._16_c01249{width:30.469333pt;}
._20_c01249{width:33.584000pt;}
._1b_c01249{width:65.514667pt;}
._1f_c01249{width:104.000000pt;}
._19_c01249{width:114.677333pt;}
._1d_c01249{width:162.170667pt;}
._18_c01249{width:250.917333pt;}
._21_c01249{width:267.413333pt;}
.fs5_c01249{font-size:42.666667pt;}
.fs2_c01249{font-size:45.333333pt;}
.fs3_c01249{font-size:53.333333pt;}
.fs1_c01249{font-size:64.000000pt;}
.fs0_c01249{font-size:69.333333pt;}
.fs4_c01249{font-size:77.333333pt;}
.y0_c01249{bottom:0.000000pt;}
.y25_c01249{bottom:2.760000pt;}
.y24_c01249{bottom:6.425219pt;}
.y23_c01249{bottom:50.413333pt;}
.y22_c01249{bottom:69.880000pt;}
.y21_c01249{bottom:93.080000pt;}
.y20_c01249{bottom:115.480000pt;}
.y1f_c01249{bottom:138.013333pt;}
.y1e_c01249{bottom:159.613333pt;}
.y1d_c01249{bottom:179.480000pt;}
.y1c_c01249{bottom:202.280000pt;}
.y1b_c01249{bottom:224.680000pt;}
.y1a_c01249{bottom:245.746667pt;}
.y19_c01249{bottom:268.546667pt;}
.y18_c01249{bottom:289.880000pt;}
.y17_c01249{bottom:311.080000pt;}
.y16_c01249{bottom:332.680000pt;}
.y15_c01249{bottom:354.413333pt;}
.y14_c01249{bottom:376.280000pt;}
.y13_c01249{bottom:397.880000pt;}
.y12_c01249{bottom:419.746667pt;}
.y11_c01249{bottom:440.813333pt;}
.y10_c01249{bottom:462.280000pt;}
.yf_c01249{bottom:483.613333pt;}
.ye_c01249{bottom:504.680000pt;}
.yd_c01249{bottom:526.546667pt;}
.yc_c01249{bottom:548.680000pt;}
.yb_c01249{bottom:569.746667pt;}
.ya_c01249{bottom:591.080000pt;}
.y9_c01249{bottom:612.413333pt;}
.y8_c01249{bottom:633.880000pt;}
.y7_c01249{bottom:655.880000pt;}
.y6_c01249{bottom:676.013333pt;}
.y5_c01249{bottom:699.080000pt;}
.y4_c01249{bottom:720.413333pt;}
.y3_c01249{bottom:741.880000pt;}
.y2_c01249{bottom:763.880000pt;}
.y1_c01249{bottom:785.080000pt;}
.h7_c01249{height:11.733399pt;}
.h8_c01249{height:38.937500pt;}
.h2_c01249{height:73.978667pt;}
.h3_c01249{height:74.906250pt;}
.h4_c01249{height:81.031250pt;}
.h5_c01249{height:87.783854pt;}
.h6_c01249{height:97.912760pt;}
.h1_c01249{height:876.666667pt;}
.h0_c01249{height:876.733333pt;}
.w2_c01249{width:93.222667pt;}
.w0_c01249{width:593.266667pt;}
.w1_c01249{width:593.333333pt;}
.x0_c01249{left:0.000000pt;}
.x6_c01249{left:17.200000pt;}
.x8_c01249{left:41.066667pt;}
.xd_c01249{left:48.666667pt;}
.xb_c01249{left:52.266667pt;}
.x7_c01249{left:78.000000pt;}
.x1_c01249{left:96.000000pt;}
.x2_c01249{left:96.933333pt;}
.x3_c01249{left:97.866667pt;}
.x4_c01249{left:98.800000pt;}
.xa_c01249{left:99.866667pt;}
.x9_c01249{left:100.800000pt;}
.xc_c01249{left:102.000000pt;}
.x5_c01249{left:120.933333pt;}
.xf_c01249{left:253.801554pt;}
.xe_c01249{left:518.133333pt;}
}





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

.ir_c01250:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01250{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01250;src:url('chunks/assets/font_9f2c625110742c2cdf644f3a.woff2')format("woff");}.ff1_c01250{font-family:ff1_c01250;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01250;src:url('chunks/assets/font_79d97f837958ac691a292f32.woff2')format("woff");}.ff2_c01250{font-family:ff2_c01250;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01250;src:url('chunks/assets/font_0b402cc9df1832bf1b40cf84.woff2')format("woff");}.ff3_c01250{font-family:ff3_c01250;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01250;src:url('chunks/assets/font_fa9b8e17f4228cd4e984f805.woff2')format("woff");}.ff4_c01250{font-family:ff4_c01250;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01250;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c01250{font-family:ff5_c01250;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01250{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01250{vertical-align:0.000000px;}
.ls1_c01250{letter-spacing:0.000000px;}
.ls2_c01250{letter-spacing:3.000000px;}
.ls0_c01250{letter-spacing:16.800000px;}
.sc__c01250{text-shadow:none;}
.sc0_c01250{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01250{-webkit-text-stroke:0px transparent;}
.sc0_c01250{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01250{word-spacing:-17.352000px;}
.ws1_c01250{word-spacing:0.000000px;}
._11_c01250{margin-left:-23.733000px;}
._19_c01250{margin-left:-20.916000px;}
._16_c01250{margin-left:-16.929000px;}
._1d_c01250{margin-left:-14.889000px;}
._1e_c01250{margin-left:-12.744000px;}
._15_c01250{margin-left:-11.514000px;}
._1c_c01250{margin-left:-9.777000px;}
._13_c01250{margin-left:-8.073000px;}
._12_c01250{margin-left:-6.495000px;}
._0_c01250{margin-left:-5.346000px;}
._1_c01250{margin-left:-4.257000px;}
._2_c01250{margin-left:-3.168000px;}
._a_c01250{margin-left:-2.079000px;}
._14_c01250{margin-left:-1.023000px;}
._6_c01250{width:1.881000px;}
._8_c01250{width:3.168000px;}
._7_c01250{width:4.455000px;}
._9_c01250{width:5.544000px;}
._e_c01250{width:6.849000px;}
._10_c01250{width:8.259000px;}
._3_c01250{width:10.197000px;}
._17_c01250{width:11.415000px;}
._18_c01250{width:12.639000px;}
._1a_c01250{width:13.740000px;}
._f_c01250{width:14.910000px;}
._5_c01250{width:16.236000px;}
._4_c01250{width:17.721000px;}
._d_c01250{width:30.888000px;}
._c_c01250{width:33.462000px;}
._b_c01250{width:47.817000px;}
._1b_c01250{width:279.579000px;}
.fc2_c01250{color:transparent;}
.fc1_c01250{color:rgb(128,128,128);}
.fc0_c01250{color:rgb(0,0,0);}
.fs5_c01250{font-size:48.000000px;}
.fs4_c01250{font-size:66.000000px;}
.fs2_c01250{font-size:72.000000px;}
.fs3_c01250{font-size:78.000000px;}
.fs1_c01250{font-size:81.000000px;}
.fs0_c01250{font-size:99.000000px;}
.y0_c01250{bottom:0.000000px;}
.y25_c01250{bottom:3.105000px;}
.y24_c01250{bottom:7.228369px;}
.y23_c01250{bottom:60.120000px;}
.y22_c01250{bottom:82.320000px;}
.y21_c01250{bottom:108.270000px;}
.y20_c01250{bottom:132.270000px;}
.y1f_c01250{bottom:156.270000px;}
.y1e_c01250{bottom:180.870000px;}
.y1d_c01250{bottom:205.770000px;}
.y1c_c01250{bottom:230.220000px;}
.y1b_c01250{bottom:254.370000px;}
.y1a_c01250{bottom:278.370000px;}
.y19_c01250{bottom:303.720000px;}
.y18_c01250{bottom:327.270000px;}
.y17_c01250{bottom:351.570000px;}
.y16_c01250{bottom:374.970000px;}
.y15_c01250{bottom:399.870000px;}
.y14_c01250{bottom:424.170000px;}
.y13_c01250{bottom:447.870000px;}
.y12_c01250{bottom:471.870000px;}
.y11_c01250{bottom:496.020000px;}
.y10_c01250{bottom:520.470000px;}
.yf_c01250{bottom:544.020000px;}
.ye_c01250{bottom:568.020000px;}
.yd_c01250{bottom:591.570000px;}
.yc_c01250{bottom:615.570000px;}
.yb_c01250{bottom:639.870000px;}
.ya_c01250{bottom:664.170000px;}
.y9_c01250{bottom:712.170000px;}
.y8_c01250{bottom:736.020000px;}
.y7_c01250{bottom:760.020000px;}
.y6_c01250{bottom:784.020000px;}
.y5_c01250{bottom:808.620000px;}
.y4_c01250{bottom:832.620000px;}
.y3_c01250{bottom:856.920000px;}
.y2_c01250{bottom:881.520000px;}
.y1_c01250{bottom:917.370000px;}
.h7_c01250{height:13.200073px;}
.h8_c01250{height:43.804688px;}
.h4_c01250{height:79.497070px;}
.h6_c01250{height:84.269531px;}
.h3_c01250{height:91.160156px;}
.h5_c01250{height:98.756836px;}
.h2_c01250{height:115.870605px;}
.h1_c01250{height:986.250000px;}
.h0_c01250{height:986.550000px;}
.w1_c01250{width:104.875500px;}
.w0_c01250{width:672.000000px;}
.x0_c01250{left:0.000000px;}
.x4_c01250{left:40.500000px;}
.x2_c01250{left:42.900000px;}
.x3_c01250{left:43.950000px;}
.x7_c01250{left:45.300000px;}
.x8_c01250{left:46.950000px;}
.x5_c01250{left:48.600000px;}
.x1_c01250{left:65.100000px;}
.x6_c01250{left:68.850000px;}
.x9_c01250{left:73.200000px;}
.xa_c01250{left:165.000000px;}
.xc_c01250{left:287.814240px;}
.xb_c01250{left:486.900000px;}
@media print{
.v0_c01250{vertical-align:0.000000pt;}
.ls1_c01250{letter-spacing:0.000000pt;}
.ls2_c01250{letter-spacing:2.666667pt;}
.ls0_c01250{letter-spacing:14.933333pt;}
.ws0_c01250{word-spacing:-15.424000pt;}
.ws1_c01250{word-spacing:0.000000pt;}
._11_c01250{margin-left:-21.096000pt;}
._19_c01250{margin-left:-18.592000pt;}
._16_c01250{margin-left:-15.048000pt;}
._1d_c01250{margin-left:-13.234667pt;}
._1e_c01250{margin-left:-11.328000pt;}
._15_c01250{margin-left:-10.234667pt;}
._1c_c01250{margin-left:-8.690667pt;}
._13_c01250{margin-left:-7.176000pt;}
._12_c01250{margin-left:-5.773333pt;}
._0_c01250{margin-left:-4.752000pt;}
._1_c01250{margin-left:-3.784000pt;}
._2_c01250{margin-left:-2.816000pt;}
._a_c01250{margin-left:-1.848000pt;}
._14_c01250{margin-left:-0.909333pt;}
._6_c01250{width:1.672000pt;}
._8_c01250{width:2.816000pt;}
._7_c01250{width:3.960000pt;}
._9_c01250{width:4.928000pt;}
._e_c01250{width:6.088000pt;}
._10_c01250{width:7.341333pt;}
._3_c01250{width:9.064000pt;}
._17_c01250{width:10.146667pt;}
._18_c01250{width:11.234667pt;}
._1a_c01250{width:12.213333pt;}
._f_c01250{width:13.253333pt;}
._5_c01250{width:14.432000pt;}
._4_c01250{width:15.752000pt;}
._d_c01250{width:27.456000pt;}
._c_c01250{width:29.744000pt;}
._b_c01250{width:42.504000pt;}
._1b_c01250{width:248.514667pt;}
.fs5_c01250{font-size:42.666667pt;}
.fs4_c01250{font-size:58.666667pt;}
.fs2_c01250{font-size:64.000000pt;}
.fs3_c01250{font-size:69.333333pt;}
.fs1_c01250{font-size:72.000000pt;}
.fs0_c01250{font-size:88.000000pt;}
.y0_c01250{bottom:0.000000pt;}
.y25_c01250{bottom:2.760000pt;}
.y24_c01250{bottom:6.425217pt;}
.y23_c01250{bottom:53.440000pt;}
.y22_c01250{bottom:73.173333pt;}
.y21_c01250{bottom:96.240000pt;}
.y20_c01250{bottom:117.573333pt;}
.y1f_c01250{bottom:138.906667pt;}
.y1e_c01250{bottom:160.773333pt;}
.y1d_c01250{bottom:182.906667pt;}
.y1c_c01250{bottom:204.640000pt;}
.y1b_c01250{bottom:226.106667pt;}
.y1a_c01250{bottom:247.440000pt;}
.y19_c01250{bottom:269.973333pt;}
.y18_c01250{bottom:290.906667pt;}
.y17_c01250{bottom:312.506667pt;}
.y16_c01250{bottom:333.306667pt;}
.y15_c01250{bottom:355.440000pt;}
.y14_c01250{bottom:377.040000pt;}
.y13_c01250{bottom:398.106667pt;}
.y12_c01250{bottom:419.440000pt;}
.y11_c01250{bottom:440.906667pt;}
.y10_c01250{bottom:462.640000pt;}
.yf_c01250{bottom:483.573333pt;}
.ye_c01250{bottom:504.906667pt;}
.yd_c01250{bottom:525.840000pt;}
.yc_c01250{bottom:547.173333pt;}
.yb_c01250{bottom:568.773333pt;}
.ya_c01250{bottom:590.373333pt;}
.y9_c01250{bottom:633.040000pt;}
.y8_c01250{bottom:654.240000pt;}
.y7_c01250{bottom:675.573333pt;}
.y6_c01250{bottom:696.906667pt;}
.y5_c01250{bottom:718.773333pt;}
.y4_c01250{bottom:740.106667pt;}
.y3_c01250{bottom:761.706667pt;}
.y2_c01250{bottom:783.573333pt;}
.y1_c01250{bottom:815.440000pt;}
.h7_c01250{height:11.733399pt;}
.h8_c01250{height:38.937500pt;}
.h4_c01250{height:70.664062pt;}
.h6_c01250{height:74.906250pt;}
.h3_c01250{height:81.031250pt;}
.h5_c01250{height:87.783854pt;}
.h2_c01250{height:102.996094pt;}
.h1_c01250{height:876.666667pt;}
.h0_c01250{height:876.933333pt;}
.w1_c01250{width:93.222667pt;}
.w0_c01250{width:597.333333pt;}
.x0_c01250{left:0.000000pt;}
.x4_c01250{left:36.000000pt;}
.x2_c01250{left:38.133333pt;}
.x3_c01250{left:39.066667pt;}
.x7_c01250{left:40.266667pt;}
.x8_c01250{left:41.733333pt;}
.x5_c01250{left:43.200000pt;}
.x1_c01250{left:57.866667pt;}
.x6_c01250{left:61.200000pt;}
.x9_c01250{left:65.066667pt;}
.xa_c01250{left:146.666667pt;}
.xc_c01250{left:255.834880pt;}
.xb_c01250{left:432.800000pt;}
}





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

.ir_c01251:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01251{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01251;src:url('chunks/assets/font_a600fef9d903ccbd00259b56.woff2')format("woff");}.ff1_c01251{font-family:ff1_c01251;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01251;src:url('chunks/assets/font_265a4fc791aaf73606e1e7a0.woff2')format("woff");}.ff2_c01251{font-family:ff2_c01251;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01251;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff3_c01251{font-family:ff3_c01251;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01251;src:url('chunks/assets/font_0d6777cd4a6d842c2e7518d2.woff2')format("woff");}.ff4_c01251{font-family:ff4_c01251;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01251;src:url('chunks/assets/font_177b58db2e3936657b9609a0.woff2')format("woff");}.ff5_c01251{font-family:ff5_c01251;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01251;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c01251{font-family:ff6_c01251;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01251{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01251{vertical-align:0.000000px;}
.ls1_c01251{letter-spacing:0.000000px;}
.ls0_c01251{letter-spacing:3.600000px;}
.ls2_c01251{letter-spacing:18.000000px;}
.sc__c01251{text-shadow:none;}
.sc0_c01251{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01251{-webkit-text-stroke:0px transparent;}
.sc0_c01251{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01251{word-spacing:-35.352000px;}
.ws1_c01251{word-spacing:0.000000px;}
._19_c01251{margin-left:-30.825000px;}
._12_c01251{margin-left:-21.789000px;}
._11_c01251{margin-left:-13.284000px;}
._c_c01251{margin-left:-11.016000px;}
._e_c01251{margin-left:-9.396000px;}
._d_c01251{margin-left:-8.019000px;}
._7_c01251{margin-left:-6.561000px;}
._4_c01251{margin-left:-5.103000px;}
._1_c01251{margin-left:-3.645000px;}
._3_c01251{margin-left:-2.025000px;}
._2_c01251{width:1.539000px;}
._0_c01251{width:3.564000px;}
._5_c01251{width:5.508000px;}
._8_c01251{width:6.723000px;}
._6_c01251{width:8.667000px;}
._9_c01251{width:9.801000px;}
._a_c01251{width:11.502000px;}
._b_c01251{width:12.636000px;}
._14_c01251{width:14.094000px;}
._f_c01251{width:15.147000px;}
._15_c01251{width:17.172000px;}
._17_c01251{width:21.789000px;}
._16_c01251{width:42.663000px;}
._18_c01251{width:56.376000px;}
._13_c01251{width:335.016000px;}
._10_c01251{width:388.485000px;}
._1b_c01251{width:548.820000px;}
._1a_c01251{width:593.250000px;}
.fc2_c01251{color:transparent;}
.fc1_c01251{color:rgb(128,128,128);}
.fc0_c01251{color:rgb(0,0,0);}
.fs5_c01251{font-size:48.000000px;}
.fs2_c01251{font-size:57.000000px;}
.fs3_c01251{font-size:66.000000px;}
.fs1_c01251{font-size:72.000000px;}
.fs4_c01251{font-size:75.000000px;}
.fs0_c01251{font-size:81.000000px;}
.y0_c01251{bottom:0.000000px;}
.y25_c01251{bottom:3.105000px;}
.y24_c01251{bottom:7.228355px;}
.y23_c01251{bottom:41.385000px;}
.y22_c01251{bottom:65.835000px;}
.y21_c01251{bottom:91.485000px;}
.y20_c01251{bottom:116.685000px;}
.y1f_c01251{bottom:140.085000px;}
.y1e_c01251{bottom:166.035000px;}
.y1d_c01251{bottom:190.335000px;}
.y1c_c01251{bottom:216.285000px;}
.y1b_c01251{bottom:239.985000px;}
.y1a_c01251{bottom:265.485000px;}
.y19_c01251{bottom:289.935000px;}
.y18_c01251{bottom:314.235000px;}
.y17_c01251{bottom:340.185000px;}
.y16_c01251{bottom:363.735000px;}
.y15_c01251{bottom:388.485000px;}
.y14_c01251{bottom:412.635000px;}
.y13_c01251{bottom:437.235000px;}
.y12_c01251{bottom:461.385000px;}
.y11_c01251{bottom:485.535000px;}
.y10_c01251{bottom:509.835000px;}
.yf_c01251{bottom:533.535000px;}
.ye_c01251{bottom:557.835000px;}
.yd_c01251{bottom:581.835000px;}
.yc_c01251{bottom:606.135000px;}
.yb_c01251{bottom:630.435000px;}
.ya_c01251{bottom:654.735000px;}
.y9_c01251{bottom:676.935000px;}
.y8_c01251{bottom:703.335000px;}
.y7_c01251{bottom:727.335000px;}
.y6_c01251{bottom:751.485000px;}
.y5_c01251{bottom:775.485000px;}
.y4_c01251{bottom:799.785000px;}
.y3_c01251{bottom:823.785000px;}
.y2_c01251{bottom:848.385000px;}
.y1_c01251{bottom:872.685000px;}
.h6_c01251{height:13.200074px;}
.h7_c01251{height:43.804688px;}
.h2_c01251{height:79.497070px;}
.h3_c01251{height:84.269531px;}
.h4_c01251{height:91.160156px;}
.h5_c01251{height:94.958496px;}
.h1_c01251{height:969.750000px;}
.h0_c01251{height:969.825000px;}
.w2_c01251{width:104.875500px;}
.w0_c01251{width:656.100000px;}
.w1_c01251{width:656.250000px;}
.x0_c01251{left:0.000000px;}
.x3_c01251{left:22.950000px;}
.x5_c01251{left:27.450000px;}
.x4_c01251{left:58.050000px;}
.x1_c01251{left:119.100000px;}
.x2_c01251{left:121.050000px;}
.x6_c01251{left:122.250000px;}
.x8_c01251{left:279.864258px;}
.x7_c01251{left:286.950000px;}
@media print{
.v0_c01251{vertical-align:0.000000pt;}
.ls1_c01251{letter-spacing:0.000000pt;}
.ls0_c01251{letter-spacing:3.200000pt;}
.ls2_c01251{letter-spacing:16.000000pt;}
.ws0_c01251{word-spacing:-31.424000pt;}
.ws1_c01251{word-spacing:0.000000pt;}
._19_c01251{margin-left:-27.400000pt;}
._12_c01251{margin-left:-19.368000pt;}
._11_c01251{margin-left:-11.808000pt;}
._c_c01251{margin-left:-9.792000pt;}
._e_c01251{margin-left:-8.352000pt;}
._d_c01251{margin-left:-7.128000pt;}
._7_c01251{margin-left:-5.832000pt;}
._4_c01251{margin-left:-4.536000pt;}
._1_c01251{margin-left:-3.240000pt;}
._3_c01251{margin-left:-1.800000pt;}
._2_c01251{width:1.368000pt;}
._0_c01251{width:3.168000pt;}
._5_c01251{width:4.896000pt;}
._8_c01251{width:5.976000pt;}
._6_c01251{width:7.704000pt;}
._9_c01251{width:8.712000pt;}
._a_c01251{width:10.224000pt;}
._b_c01251{width:11.232000pt;}
._14_c01251{width:12.528000pt;}
._f_c01251{width:13.464000pt;}
._15_c01251{width:15.264000pt;}
._17_c01251{width:19.368000pt;}
._16_c01251{width:37.922667pt;}
._18_c01251{width:50.112000pt;}
._13_c01251{width:297.792000pt;}
._10_c01251{width:345.320000pt;}
._1b_c01251{width:487.840000pt;}
._1a_c01251{width:527.333333pt;}
.fs5_c01251{font-size:42.666667pt;}
.fs2_c01251{font-size:50.666667pt;}
.fs3_c01251{font-size:58.666667pt;}
.fs1_c01251{font-size:64.000000pt;}
.fs4_c01251{font-size:66.666667pt;}
.fs0_c01251{font-size:72.000000pt;}
.y0_c01251{bottom:0.000000pt;}
.y25_c01251{bottom:2.760000pt;}
.y24_c01251{bottom:6.425204pt;}
.y23_c01251{bottom:36.786667pt;}
.y22_c01251{bottom:58.520000pt;}
.y21_c01251{bottom:81.320000pt;}
.y20_c01251{bottom:103.720000pt;}
.y1f_c01251{bottom:124.520000pt;}
.y1e_c01251{bottom:147.586667pt;}
.y1d_c01251{bottom:169.186667pt;}
.y1c_c01251{bottom:192.253333pt;}
.y1b_c01251{bottom:213.320000pt;}
.y1a_c01251{bottom:235.986667pt;}
.y19_c01251{bottom:257.720000pt;}
.y18_c01251{bottom:279.320000pt;}
.y17_c01251{bottom:302.386667pt;}
.y16_c01251{bottom:323.320000pt;}
.y15_c01251{bottom:345.320000pt;}
.y14_c01251{bottom:366.786667pt;}
.y13_c01251{bottom:388.653333pt;}
.y12_c01251{bottom:410.120000pt;}
.y11_c01251{bottom:431.586667pt;}
.y10_c01251{bottom:453.186667pt;}
.yf_c01251{bottom:474.253333pt;}
.ye_c01251{bottom:495.853333pt;}
.yd_c01251{bottom:517.186667pt;}
.yc_c01251{bottom:538.786667pt;}
.yb_c01251{bottom:560.386667pt;}
.ya_c01251{bottom:581.986667pt;}
.y9_c01251{bottom:601.720000pt;}
.y8_c01251{bottom:625.186667pt;}
.y7_c01251{bottom:646.520000pt;}
.y6_c01251{bottom:667.986667pt;}
.y5_c01251{bottom:689.320000pt;}
.y4_c01251{bottom:710.920000pt;}
.y3_c01251{bottom:732.253333pt;}
.y2_c01251{bottom:754.120000pt;}
.y1_c01251{bottom:775.720000pt;}
.h6_c01251{height:11.733399pt;}
.h7_c01251{height:38.937500pt;}
.h2_c01251{height:70.664062pt;}
.h3_c01251{height:74.906250pt;}
.h4_c01251{height:81.031250pt;}
.h5_c01251{height:84.407552pt;}
.h1_c01251{height:862.000000pt;}
.h0_c01251{height:862.066667pt;}
.w2_c01251{width:93.222667pt;}
.w0_c01251{width:583.200000pt;}
.w1_c01251{width:583.333333pt;}
.x0_c01251{left:0.000000pt;}
.x3_c01251{left:20.400000pt;}
.x5_c01251{left:24.400000pt;}
.x4_c01251{left:51.600000pt;}
.x1_c01251{left:105.866667pt;}
.x2_c01251{left:107.600000pt;}
.x6_c01251{left:108.666667pt;}
.x8_c01251{left:248.768229pt;}
.x7_c01251{left:255.066667pt;}
}





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

.ir_c01252:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01252{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01252;src:url('chunks/assets/font_43a9ab023cde378da40274b2.woff2')format("woff");}.ff1_c01252{font-family:ff1_c01252;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01252;src:url('chunks/assets/font_2716af42fb3ef9a655f95bb4.woff2')format("woff");}.ff2_c01252{font-family:ff2_c01252;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01252;src:url('chunks/assets/font_93df888ec80d9305c39dd3a5.woff2')format("woff");}.ff3_c01252{font-family:ff3_c01252;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01252;src:url('chunks/assets/font_aed5df7a5330ef6e11f9905f.woff2')format("woff");}.ff4_c01252{font-family:ff4_c01252;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01252;src:url('chunks/assets/font_758937670b5ff8444019f461.woff2')format("woff");}.ff5_c01252{font-family:ff5_c01252;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01252;src:url('chunks/assets/font_862ae277b242f99cdcc43cd7.woff2')format("woff");}.ff6_c01252{font-family:ff6_c01252;line-height:1.311035;font-style:normal;font-weight: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_c01252;src:url('chunks/assets/font_ed9112e868a52aaa93410a8d.woff2')format("woff");}.ff7_c01252{font-family:ff7_c01252;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c01252;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff8_c01252{font-family:ff8_c01252;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01252{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01252{vertical-align:0.000000px;}
.ls3_c01252{letter-spacing:0.000000px;}
.ls4_c01252{letter-spacing:6.000000px;}
.ls2_c01252{letter-spacing:6.402000px;}
.ls0_c01252{letter-spacing:11.100000px;}
.ls5_c01252{letter-spacing:15.000000px;}
.ls1_c01252{letter-spacing:18.900000px;}
.sc__c01252{text-shadow:none;}
.sc0_c01252{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01252{-webkit-text-stroke:0px transparent;}
.sc0_c01252{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01252{word-spacing:-67.686000px;}
.ws2_c01252{word-spacing:-30.000000px;}
.ws1_c01252{word-spacing:-20.250000px;}
.ws3_c01252{word-spacing:-18.798000px;}
.ws4_c01252{word-spacing:0.000000px;}
._1b_c01252{margin-left:-34.746000px;}
._21_c01252{margin-left:-28.926000px;}
._27_c01252{margin-left:-27.408000px;}
._2a_c01252{margin-left:-23.637000px;}
._1c_c01252{margin-left:-20.862000px;}
._25_c01252{margin-left:-19.734000px;}
._19_c01252{margin-left:-15.864000px;}
._24_c01252{margin-left:-14.502000px;}
._12_c01252{margin-left:-13.023000px;}
._20_c01252{margin-left:-11.253000px;}
._e_c01252{margin-left:-9.261000px;}
._18_c01252{margin-left:-8.244000px;}
._11_c01252{margin-left:-6.300000px;}
._22_c01252{margin-left:-4.914000px;}
._2_c01252{margin-left:-3.744000px;}
._3_c01252{margin-left:-1.950000px;}
._7_c01252{width:1.110000px;}
._0_c01252{width:2.184000px;}
._1_c01252{width:3.276000px;}
._4_c01252{width:4.602000px;}
._9_c01252{width:6.180000px;}
._8_c01252{width:7.296000px;}
._c_c01252{width:9.315000px;}
._d_c01252{width:10.530000px;}
._10_c01252{width:11.802000px;}
._6_c01252{width:13.500000px;}
._a_c01252{width:14.550000px;}
._b_c01252{width:15.633000px;}
._f_c01252{width:17.118000px;}
._23_c01252{width:18.345000px;}
._5_c01252{width:19.620000px;}
._13_c01252{width:22.170000px;}
._16_c01252{width:23.940000px;}
._14_c01252{width:26.163000px;}
._1d_c01252{width:27.678000px;}
._1a_c01252{width:33.258000px;}
._1e_c01252{width:34.287000px;}
._1f_c01252{width:36.462000px;}
._15_c01252{width:49.950000px;}
._17_c01252{width:87.363000px;}
._26_c01252{width:151.461000px;}
._29_c01252{width:311.520000px;}
._28_c01252{width:988.332000px;}
.fc2_c01252{color:transparent;}
.fc1_c01252{color:rgb(128,128,128);}
.fc0_c01252{color:rgb(0,0,0);}
.fs5_c01252{font-size:30.000000px;}
.fs6_c01252{font-size:45.000000px;}
.fsa_c01252{font-size:48.000000px;}
.fs7_c01252{font-size:54.000000px;}
.fs1_c01252{font-size:60.000000px;}
.fs4_c01252{font-size:69.000000px;}
.fs9_c01252{font-size:75.000000px;}
.fs0_c01252{font-size:78.000000px;}
.fs2_c01252{font-size:81.000000px;}
.fs3_c01252{font-size:87.000000px;}
.fs8_c01252{font-size:120.000000px;}
.y0_c01252{bottom:0.000000px;}
.y25_c01252{bottom:3.105000px;}
.y24_c01252{bottom:7.228369px;}
.y23_c01252{bottom:69.120000px;}
.y22_c01252{bottom:93.720000px;}
.y21_c01252{bottom:119.820000px;}
.y20_c01252{bottom:144.720000px;}
.y1f_c01252{bottom:170.670000px;}
.y1e_c01252{bottom:194.070000px;}
.y1d_c01252{bottom:218.370000px;}
.y1c_c01252{bottom:242.970000px;}
.y1b_c01252{bottom:266.970000px;}
.y1a_c01252{bottom:292.170000px;}
.y19_c01252{bottom:316.170000px;}
.y18_c01252{bottom:340.770000px;}
.y17_c01252{bottom:365.070000px;}
.y16_c01252{bottom:388.770000px;}
.y15_c01252{bottom:413.070000px;}
.y14_c01252{bottom:437.070000px;}
.y13_c01252{bottom:461.370000px;}
.y12_c01252{bottom:485.970000px;}
.y11_c01252{bottom:509.520000px;}
.y10_c01252{bottom:535.170000px;}
.yf_c01252{bottom:558.270000px;}
.ye_c01252{bottom:581.520000px;}
.yd_c01252{bottom:605.520000px;}
.yc_c01252{bottom:630.120000px;}
.yb_c01252{bottom:653.070000px;}
.ya_c01252{bottom:677.070000px;}
.y9_c01252{bottom:701.370000px;}
.y8_c01252{bottom:726.570000px;}
.y7_c01252{bottom:749.820000px;}
.y6_c01252{bottom:774.120000px;}
.y5_c01252{bottom:801.120000px;}
.y4_c01252{bottom:823.470000px;}
.y3_c01252{bottom:846.720000px;}
.y2_c01252{bottom:872.070000px;}
.y1_c01252{bottom:895.620000px;}
.h6_c01252{height:13.200073px;}
.h7_c01252{height:43.804688px;}
.h4_c01252{height:67.686035px;}
.h3_c01252{height:91.176000px;}
.h2_c01252{height:98.756836px;}
.h5_c01252{height:120.937500px;}
.h1_c01252{height:986.250000px;}
.h0_c01252{height:986.550000px;}
.w1_c01252{width:104.875500px;}
.w0_c01252{width:672.000000px;}
.x0_c01252{left:0.000000px;}
.x1_c01252{left:52.650000px;}
.x2_c01252{left:54.300000px;}
.x3_c01252{left:55.950000px;}
.x4_c01252{left:57.000000px;}
.x8_c01252{left:58.050000px;}
.x5_c01252{left:59.400000px;}
.x6_c01252{left:61.350000px;}
.x7_c01252{left:62.400000px;}
.x9_c01252{left:134.700000px;}
.xa_c01252{left:287.814240px;}
@media print{
.v0_c01252{vertical-align:0.000000pt;}
.ls3_c01252{letter-spacing:0.000000pt;}
.ls4_c01252{letter-spacing:5.333333pt;}
.ls2_c01252{letter-spacing:5.690667pt;}
.ls0_c01252{letter-spacing:9.866667pt;}
.ls5_c01252{letter-spacing:13.333333pt;}
.ls1_c01252{letter-spacing:16.800000pt;}
.ws0_c01252{word-spacing:-60.165333pt;}
.ws2_c01252{word-spacing:-26.666667pt;}
.ws1_c01252{word-spacing:-18.000000pt;}
.ws3_c01252{word-spacing:-16.709333pt;}
.ws4_c01252{word-spacing:0.000000pt;}
._1b_c01252{margin-left:-30.885333pt;}
._21_c01252{margin-left:-25.712000pt;}
._27_c01252{margin-left:-24.362667pt;}
._2a_c01252{margin-left:-21.010667pt;}
._1c_c01252{margin-left:-18.544000pt;}
._25_c01252{margin-left:-17.541333pt;}
._19_c01252{margin-left:-14.101333pt;}
._24_c01252{margin-left:-12.890667pt;}
._12_c01252{margin-left:-11.576000pt;}
._20_c01252{margin-left:-10.002667pt;}
._e_c01252{margin-left:-8.232000pt;}
._18_c01252{margin-left:-7.328000pt;}
._11_c01252{margin-left:-5.600000pt;}
._22_c01252{margin-left:-4.368000pt;}
._2_c01252{margin-left:-3.328000pt;}
._3_c01252{margin-left:-1.733333pt;}
._7_c01252{width:0.986667pt;}
._0_c01252{width:1.941333pt;}
._1_c01252{width:2.912000pt;}
._4_c01252{width:4.090667pt;}
._9_c01252{width:5.493333pt;}
._8_c01252{width:6.485333pt;}
._c_c01252{width:8.280000pt;}
._d_c01252{width:9.360000pt;}
._10_c01252{width:10.490667pt;}
._6_c01252{width:12.000000pt;}
._a_c01252{width:12.933333pt;}
._b_c01252{width:13.896000pt;}
._f_c01252{width:15.216000pt;}
._23_c01252{width:16.306667pt;}
._5_c01252{width:17.440000pt;}
._13_c01252{width:19.706667pt;}
._16_c01252{width:21.280000pt;}
._14_c01252{width:23.256000pt;}
._1d_c01252{width:24.602667pt;}
._1a_c01252{width:29.562667pt;}
._1e_c01252{width:30.477333pt;}
._1f_c01252{width:32.410667pt;}
._15_c01252{width:44.400000pt;}
._17_c01252{width:77.656000pt;}
._26_c01252{width:134.632000pt;}
._29_c01252{width:276.906667pt;}
._28_c01252{width:878.517333pt;}
.fs5_c01252{font-size:26.666667pt;}
.fs6_c01252{font-size:40.000000pt;}
.fsa_c01252{font-size:42.666667pt;}
.fs7_c01252{font-size:48.000000pt;}
.fs1_c01252{font-size:53.333333pt;}
.fs4_c01252{font-size:61.333333pt;}
.fs9_c01252{font-size:66.666667pt;}
.fs0_c01252{font-size:69.333333pt;}
.fs2_c01252{font-size:72.000000pt;}
.fs3_c01252{font-size:77.333333pt;}
.fs8_c01252{font-size:106.666667pt;}
.y0_c01252{bottom:0.000000pt;}
.y25_c01252{bottom:2.760000pt;}
.y24_c01252{bottom:6.425217pt;}
.y23_c01252{bottom:61.440000pt;}
.y22_c01252{bottom:83.306667pt;}
.y21_c01252{bottom:106.506667pt;}
.y20_c01252{bottom:128.640000pt;}
.y1f_c01252{bottom:151.706667pt;}
.y1e_c01252{bottom:172.506667pt;}
.y1d_c01252{bottom:194.106667pt;}
.y1c_c01252{bottom:215.973333pt;}
.y1b_c01252{bottom:237.306667pt;}
.y1a_c01252{bottom:259.706667pt;}
.y19_c01252{bottom:281.040000pt;}
.y18_c01252{bottom:302.906667pt;}
.y17_c01252{bottom:324.506667pt;}
.y16_c01252{bottom:345.573333pt;}
.y15_c01252{bottom:367.173333pt;}
.y14_c01252{bottom:388.506667pt;}
.y13_c01252{bottom:410.106667pt;}
.y12_c01252{bottom:431.973333pt;}
.y11_c01252{bottom:452.906667pt;}
.y10_c01252{bottom:475.706667pt;}
.yf_c01252{bottom:496.240000pt;}
.ye_c01252{bottom:516.906667pt;}
.yd_c01252{bottom:538.240000pt;}
.yc_c01252{bottom:560.106667pt;}
.yb_c01252{bottom:580.506667pt;}
.ya_c01252{bottom:601.840000pt;}
.y9_c01252{bottom:623.440000pt;}
.y8_c01252{bottom:645.840000pt;}
.y7_c01252{bottom:666.506667pt;}
.y6_c01252{bottom:688.106667pt;}
.y5_c01252{bottom:712.106667pt;}
.y4_c01252{bottom:731.973333pt;}
.y3_c01252{bottom:752.640000pt;}
.y2_c01252{bottom:775.173333pt;}
.y1_c01252{bottom:796.106667pt;}
.h6_c01252{height:11.733399pt;}
.h7_c01252{height:38.937500pt;}
.h4_c01252{height:60.165365pt;}
.h3_c01252{height:81.045333pt;}
.h2_c01252{height:87.783854pt;}
.h5_c01252{height:107.500000pt;}
.h1_c01252{height:876.666667pt;}
.h0_c01252{height:876.933333pt;}
.w1_c01252{width:93.222667pt;}
.w0_c01252{width:597.333333pt;}
.x0_c01252{left:0.000000pt;}
.x1_c01252{left:46.800000pt;}
.x2_c01252{left:48.266667pt;}
.x3_c01252{left:49.733333pt;}
.x4_c01252{left:50.666667pt;}
.x8_c01252{left:51.600000pt;}
.x5_c01252{left:52.800000pt;}
.x6_c01252{left:54.533333pt;}
.x7_c01252{left:55.466667pt;}
.x9_c01252{left:119.733333pt;}
.xa_c01252{left:255.834880pt;}
}





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

.ir_c01253:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01253{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01253;src:url('chunks/assets/font_4a5c8d8c337ce807a69e81c5.woff2')format("woff");}.ff1_c01253{font-family:ff1_c01253;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01253;src:url('chunks/assets/font_b93ae58ca3341b131c72cc49.woff2')format("woff");}.ff2_c01253{font-family:ff2_c01253;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01253;src:url('chunks/assets/font_67cc6a30c67151d0e48875cd.woff2')format("woff");}.ff3_c01253{font-family:ff3_c01253;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01253;src:url('chunks/assets/font_3f6a02f43b5948b012888602.woff2')format("woff");}.ff4_c01253{font-family:ff4_c01253;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01253;src:url('chunks/assets/font_18b718a3e8c8a566bda21196.woff2')format("woff");}.ff5_c01253{font-family:ff5_c01253;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01253;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c01253{font-family:ff6_c01253;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01253{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01253{vertical-align:0.000000px;}
.ls8_c01253{letter-spacing:0.000000px;}
.ls0_c01253{letter-spacing:1.200000px;}
.ls2_c01253{letter-spacing:1.770000px;}
.ls5_c01253{letter-spacing:2.280000px;}
.ls9_c01253{letter-spacing:3.000000px;}
.ls7_c01253{letter-spacing:5.202000px;}
.ls6_c01253{letter-spacing:11.802000px;}
.ls1_c01253{letter-spacing:14.448000px;}
.ls4_c01253{letter-spacing:40.002000px;}
.ls3_c01253{letter-spacing:298.602000px;}
.sc__c01253{text-shadow:none;}
.sc0_c01253{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01253{-webkit-text-stroke:0px transparent;}
.sc0_c01253{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01253{word-spacing:-67.686000px;}
.ws4_c01253{word-spacing:-28.197000px;}
.ws0_c01253{word-spacing:-17.352000px;}
.ws3_c01253{word-spacing:-13.737000px;}
.ws5_c01253{word-spacing:0.000000px;}
.ws1_c01253{word-spacing:0.969000px;}
._14_c01253{margin-left:-27.297000px;}
._15_c01253{margin-left:-24.624000px;}
._23_c01253{margin-left:-23.337000px;}
._1d_c01253{margin-left:-13.752000px;}
._1b_c01253{margin-left:-12.477000px;}
._12_c01253{margin-left:-10.773000px;}
._1e_c01253{margin-left:-9.684000px;}
._20_c01253{margin-left:-7.695000px;}
._1f_c01253{margin-left:-6.498000px;}
._4_c01253{margin-left:-4.941000px;}
._17_c01253{margin-left:-3.483000px;}
._b_c01253{margin-left:-1.701000px;}
._9_c01253{width:1.857000px;}
._5_c01253{width:3.564000px;}
._a_c01253{width:4.617000px;}
._1_c01253{width:5.994000px;}
._2_c01253{width:7.533000px;}
._7_c01253{width:9.234000px;}
._3_c01253{width:11.097000px;}
._8_c01253{width:12.231000px;}
._19_c01253{width:13.350000px;}
._6_c01253{width:14.580000px;}
._0_c01253{width:15.633000px;}
._21_c01253{width:16.710000px;}
._e_c01253{width:17.730000px;}
._16_c01253{width:18.792000px;}
._10_c01253{width:21.321000px;}
._f_c01253{width:23.133000px;}
._d_c01253{width:25.137000px;}
._c_c01253{width:27.459000px;}
._1a_c01253{width:30.441000px;}
._13_c01253{width:36.774000px;}
._18_c01253{width:39.366000px;}
._22_c01253{width:43.257000px;}
._11_c01253{width:123.282000px;}
._1c_c01253{width:273.714000px;}
.fc2_c01253{color:transparent;}
.fc1_c01253{color:rgb(128,128,128);}
.fc0_c01253{color:rgb(0,0,0);}
.fs7_c01253{font-size:48.000000px;}
.fs2_c01253{font-size:57.000000px;}
.fs3_c01253{font-size:66.000000px;}
.fs1_c01253{font-size:72.000000px;}
.fs4_c01253{font-size:78.000000px;}
.fs0_c01253{font-size:81.000000px;}
.fs5_c01253{font-size:87.000000px;}
.fs6_c01253{font-size:117.000000px;}
.y0_c01253{bottom:0.000000px;}
.y25_c01253{bottom:3.105000px;}
.y24_c01253{bottom:7.228355px;}
.y23_c01253{bottom:52.185000px;}
.y22_c01253{bottom:74.535000px;}
.y21_c01253{bottom:99.585000px;}
.y20_c01253{bottom:125.835000px;}
.y1f_c01253{bottom:149.835000px;}
.y1e_c01253{bottom:173.685000px;}
.y1d_c01253{bottom:198.435000px;}
.y1c_c01253{bottom:223.635000px;}
.y1b_c01253{bottom:248.085000px;}
.y1a_c01253{bottom:272.685000px;}
.y19_c01253{bottom:297.285000px;}
.y18_c01253{bottom:321.885000px;}
.y17_c01253{bottom:346.635000px;}
.y16_c01253{bottom:371.235000px;}
.y15_c01253{bottom:396.135000px;}
.y14_c01253{bottom:420.135000px;}
.y13_c01253{bottom:444.435000px;}
.y12_c01253{bottom:468.735000px;}
.y11_c01253{bottom:492.285000px;}
.y10_c01253{bottom:516.735000px;}
.yf_c01253{bottom:540.585000px;}
.ye_c01253{bottom:564.885000px;}
.yd_c01253{bottom:589.485000px;}
.yc_c01253{bottom:613.185000px;}
.yb_c01253{bottom:637.785000px;}
.ya_c01253{bottom:662.085000px;}
.y9_c01253{bottom:686.385000px;}
.y8_c01253{bottom:710.685000px;}
.y7_c01253{bottom:734.985000px;}
.y6_c01253{bottom:758.985000px;}
.y5_c01253{bottom:784.335000px;}
.y4_c01253{bottom:806.535000px;}
.y3_c01253{bottom:831.585000px;}
.y2_c01253{bottom:856.185000px;}
.y1_c01253{bottom:880.485000px;}
.h9_c01253{height:13.200074px;}
.ha_c01253{height:43.804688px;}
.h7_c01253{height:72.168457px;}
.h3_c01253{height:79.497070px;}
.h2_c01253{height:84.269531px;}
.h6_c01253{height:91.160156px;}
.h5_c01253{height:91.176000px;}
.h4_c01253{height:98.756836px;}
.h8_c01253{height:136.937988px;}
.h1_c01253{height:975.000000px;}
.h0_c01253{height:975.225000px;}
.w2_c01253{width:104.875500px;}
.w0_c01253{width:659.850000px;}
.w1_c01253{width:660.000000px;}
.x0_c01253{left:0.000000px;}
.xa_c01253{left:24.000000px;}
.x6_c01253{left:26.400000px;}
.x3_c01253{left:28.050000px;}
.x4_c01253{left:29.400000px;}
.x8_c01253{left:114.750000px;}
.x7_c01253{left:116.400000px;}
.x2_c01253{left:117.750000px;}
.x5_c01253{left:118.800000px;}
.x9_c01253{left:119.850000px;}
.x1_c01253{left:146.400000px;}
.xc_c01253{left:281.739258px;}
.xb_c01253{left:586.650000px;}
@media print{
.v0_c01253{vertical-align:0.000000pt;}
.ls8_c01253{letter-spacing:0.000000pt;}
.ls0_c01253{letter-spacing:1.066667pt;}
.ls2_c01253{letter-spacing:1.573333pt;}
.ls5_c01253{letter-spacing:2.026667pt;}
.ls9_c01253{letter-spacing:2.666667pt;}
.ls7_c01253{letter-spacing:4.624000pt;}
.ls6_c01253{letter-spacing:10.490667pt;}
.ls1_c01253{letter-spacing:12.842667pt;}
.ls4_c01253{letter-spacing:35.557333pt;}
.ls3_c01253{letter-spacing:265.424000pt;}
.ws2_c01253{word-spacing:-60.165333pt;}
.ws4_c01253{word-spacing:-25.064000pt;}
.ws0_c01253{word-spacing:-15.424000pt;}
.ws3_c01253{word-spacing:-12.210667pt;}
.ws5_c01253{word-spacing:0.000000pt;}
.ws1_c01253{word-spacing:0.861333pt;}
._14_c01253{margin-left:-24.264000pt;}
._15_c01253{margin-left:-21.888000pt;}
._23_c01253{margin-left:-20.744000pt;}
._1d_c01253{margin-left:-12.224000pt;}
._1b_c01253{margin-left:-11.090667pt;}
._12_c01253{margin-left:-9.576000pt;}
._1e_c01253{margin-left:-8.608000pt;}
._20_c01253{margin-left:-6.840000pt;}
._1f_c01253{margin-left:-5.776000pt;}
._4_c01253{margin-left:-4.392000pt;}
._17_c01253{margin-left:-3.096000pt;}
._b_c01253{margin-left:-1.512000pt;}
._9_c01253{width:1.650667pt;}
._5_c01253{width:3.168000pt;}
._a_c01253{width:4.104000pt;}
._1_c01253{width:5.328000pt;}
._2_c01253{width:6.696000pt;}
._7_c01253{width:8.208000pt;}
._3_c01253{width:9.864000pt;}
._8_c01253{width:10.872000pt;}
._19_c01253{width:11.866667pt;}
._6_c01253{width:12.960000pt;}
._0_c01253{width:13.896000pt;}
._21_c01253{width:14.853333pt;}
._e_c01253{width:15.760000pt;}
._16_c01253{width:16.704000pt;}
._10_c01253{width:18.952000pt;}
._f_c01253{width:20.562667pt;}
._d_c01253{width:22.344000pt;}
._c_c01253{width:24.408000pt;}
._1a_c01253{width:27.058667pt;}
._13_c01253{width:32.688000pt;}
._18_c01253{width:34.992000pt;}
._22_c01253{width:38.450667pt;}
._11_c01253{width:109.584000pt;}
._1c_c01253{width:243.301333pt;}
.fs7_c01253{font-size:42.666667pt;}
.fs2_c01253{font-size:50.666667pt;}
.fs3_c01253{font-size:58.666667pt;}
.fs1_c01253{font-size:64.000000pt;}
.fs4_c01253{font-size:69.333333pt;}
.fs0_c01253{font-size:72.000000pt;}
.fs5_c01253{font-size:77.333333pt;}
.fs6_c01253{font-size:104.000000pt;}
.y0_c01253{bottom:0.000000pt;}
.y25_c01253{bottom:2.760000pt;}
.y24_c01253{bottom:6.425204pt;}
.y23_c01253{bottom:46.386667pt;}
.y22_c01253{bottom:66.253333pt;}
.y21_c01253{bottom:88.520000pt;}
.y20_c01253{bottom:111.853333pt;}
.y1f_c01253{bottom:133.186667pt;}
.y1e_c01253{bottom:154.386667pt;}
.y1d_c01253{bottom:176.386667pt;}
.y1c_c01253{bottom:198.786667pt;}
.y1b_c01253{bottom:220.520000pt;}
.y1a_c01253{bottom:242.386667pt;}
.y19_c01253{bottom:264.253333pt;}
.y18_c01253{bottom:286.120000pt;}
.y17_c01253{bottom:308.120000pt;}
.y16_c01253{bottom:329.986667pt;}
.y15_c01253{bottom:352.120000pt;}
.y14_c01253{bottom:373.453333pt;}
.y13_c01253{bottom:395.053333pt;}
.y12_c01253{bottom:416.653333pt;}
.y11_c01253{bottom:437.586667pt;}
.y10_c01253{bottom:459.320000pt;}
.yf_c01253{bottom:480.520000pt;}
.ye_c01253{bottom:502.120000pt;}
.yd_c01253{bottom:523.986667pt;}
.yc_c01253{bottom:545.053333pt;}
.yb_c01253{bottom:566.920000pt;}
.ya_c01253{bottom:588.520000pt;}
.y9_c01253{bottom:610.120000pt;}
.y8_c01253{bottom:631.720000pt;}
.y7_c01253{bottom:653.320000pt;}
.y6_c01253{bottom:674.653333pt;}
.y5_c01253{bottom:697.186667pt;}
.y4_c01253{bottom:716.920000pt;}
.y3_c01253{bottom:739.186667pt;}
.y2_c01253{bottom:761.053333pt;}
.y1_c01253{bottom:782.653333pt;}
.h9_c01253{height:11.733399pt;}
.ha_c01253{height:38.937500pt;}
.h7_c01253{height:64.149740pt;}
.h3_c01253{height:70.664062pt;}
.h2_c01253{height:74.906250pt;}
.h6_c01253{height:81.031250pt;}
.h5_c01253{height:81.045333pt;}
.h4_c01253{height:87.783854pt;}
.h8_c01253{height:121.722656pt;}
.h1_c01253{height:866.666667pt;}
.h0_c01253{height:866.866667pt;}
.w2_c01253{width:93.222667pt;}
.w0_c01253{width:586.533333pt;}
.w1_c01253{width:586.666667pt;}
.x0_c01253{left:0.000000pt;}
.xa_c01253{left:21.333333pt;}
.x6_c01253{left:23.466667pt;}
.x3_c01253{left:24.933333pt;}
.x4_c01253{left:26.133333pt;}
.x8_c01253{left:102.000000pt;}
.x7_c01253{left:103.466667pt;}
.x2_c01253{left:104.666667pt;}
.x5_c01253{left:105.600000pt;}
.x9_c01253{left:106.533333pt;}
.x1_c01253{left:130.133333pt;}
.xc_c01253{left:250.434896pt;}
.xb_c01253{left:521.466667pt;}
}





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

.ir_c01254:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01254{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01254;src:url('chunks/assets/font_07a4a54d330603dd1478ed5d.woff2')format("woff");}.ff1_c01254{font-family:ff1_c01254;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01254;src:url('chunks/assets/font_8ba203218811cdb7062d7c2e.woff2')format("woff");}.ff2_c01254{font-family:ff2_c01254;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01254;src:url('chunks/assets/font_abd61ddeb006854bd450f59f.woff2')format("woff");}.ff3_c01254{font-family:ff3_c01254;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01254;src:url('chunks/assets/font_babfeb9734a118039aa3937e.woff2')format("woff");}.ff4_c01254{font-family:ff4_c01254;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01254;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c01254{font-family:ff5_c01254;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01254{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01254{vertical-align:0.000000px;}
.ls3_c01254{letter-spacing:0.000000px;}
.ls2_c01254{letter-spacing:1.602000px;}
.ls4_c01254{letter-spacing:3.000000px;}
.ls0_c01254{letter-spacing:8.676000px;}
.ls1_c01254{letter-spacing:25.464000px;}
.sc__c01254{text-shadow:none;}
.sc0_c01254{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01254{-webkit-text-stroke:0px transparent;}
.sc0_c01254{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01254{word-spacing:-88.032000px;}
.ws2_c01254{word-spacing:-20.250000px;}
.ws4_c01254{word-spacing:-18.798000px;}
.ws1_c01254{word-spacing:-17.352000px;}
.ws3_c01254{word-spacing:-13.737000px;}
.ws5_c01254{word-spacing:-0.627000px;}
.ws6_c01254{word-spacing:0.000000px;}
._1b_c01254{margin-left:-37.932000px;}
._19_c01254{margin-left:-24.954000px;}
._18_c01254{margin-left:-18.720000px;}
._1e_c01254{margin-left:-14.661000px;}
._c_c01254{margin-left:-11.337000px;}
._8_c01254{margin-left:-8.712000px;}
._a_c01254{margin-left:-7.623000px;}
._2_c01254{margin-left:-5.544000px;}
._f_c01254{margin-left:-4.104000px;}
._6_c01254{margin-left:-2.970000px;}
._b_c01254{margin-left:-1.881000px;}
._5_c01254{width:1.089000px;}
._3_c01254{width:2.673000px;}
._4_c01254{width:4.257000px;}
._e_c01254{width:5.301000px;}
._7_c01254{width:6.831000px;}
._12_c01254{width:7.929000px;}
._9_c01254{width:9.009000px;}
._1_c01254{width:10.791000px;}
._d_c01254{width:12.105000px;}
._15_c01254{width:13.752000px;}
._14_c01254{width:15.372000px;}
._0_c01254{width:18.018000px;}
._1a_c01254{width:19.779000px;}
._13_c01254{width:21.762000px;}
._10_c01254{width:23.772000px;}
._1c_c01254{width:27.417000px;}
._1d_c01254{width:38.799000px;}
._11_c01254{width:137.634000px;}
._17_c01254{width:164.061000px;}
._1f_c01254{width:245.655000px;}
._16_c01254{width:384.714000px;}
.fc2_c01254{color:transparent;}
.fc1_c01254{color:rgb(128,128,128);}
.fc0_c01254{color:rgb(0,0,0);}
.fs6_c01254{font-size:48.000000px;}
.fs5_c01254{font-size:57.000000px;}
.fs2_c01254{font-size:72.000000px;}
.fs4_c01254{font-size:78.000000px;}
.fs3_c01254{font-size:81.000000px;}
.fs0_c01254{font-size:99.000000px;}
.fs1_c01254{font-size:102.000000px;}
.y0_c01254{bottom:0.000000px;}
.y26_c01254{bottom:3.105000px;}
.y25_c01254{bottom:7.228371px;}
.y24_c01254{bottom:39.915000px;}
.y23_c01254{bottom:64.215000px;}
.y22_c01254{bottom:89.415000px;}
.y21_c01254{bottom:114.165000px;}
.y20_c01254{bottom:138.015000px;}
.y1f_c01254{bottom:163.365000px;}
.y1e_c01254{bottom:187.365000px;}
.y1d_c01254{bottom:211.965000px;}
.y1c_c01254{bottom:236.565000px;}
.y1b_c01254{bottom:261.615000px;}
.y1a_c01254{bottom:285.165000px;}
.y19_c01254{bottom:308.265000px;}
.y18_c01254{bottom:333.765000px;}
.y17_c01254{bottom:358.065000px;}
.y16_c01254{bottom:382.065000px;}
.y15_c01254{bottom:406.365000px;}
.y14_c01254{bottom:430.065000px;}
.y13_c01254{bottom:454.065000px;}
.y12_c01254{bottom:478.215000px;}
.y11_c01254{bottom:502.215000px;}
.y10_c01254{bottom:525.915000px;}
.yf_c01254{bottom:549.765000px;}
.ye_c01254{bottom:574.065000px;}
.yd_c01254{bottom:597.465000px;}
.yc_c01254{bottom:621.465000px;}
.yb_c01254{bottom:645.615000px;}
.ya_c01254{bottom:669.315000px;}
.y9_c01254{bottom:693.615000px;}
.y8_c01254{bottom:717.915000px;}
.y7_c01254{bottom:739.815000px;}
.y6_c01254{bottom:765.465000px;}
.y5_c01254{bottom:791.115000px;}
.y4_c01254{bottom:813.165000px;}
.y3_c01254{bottom:838.065000px;}
.y2_c01254{bottom:862.665000px;}
.y1_c01254{bottom:896.865000px;}
.h7_c01254{height:13.200074px;}
.h8_c01254{height:43.804688px;}
.h5_c01254{height:72.168457px;}
.h4_c01254{height:79.497070px;}
.h6_c01254{height:84.269531px;}
.h3_c01254{height:98.756836px;}
.h2_c01254{height:115.870605px;}
.h1_c01254{height:966.000000px;}
.h0_c01254{height:966.075000px;}
.w1_c01254{width:104.875500px;}
.w0_c01254{width:657.750000px;}
.x0_c01254{left:0.000000px;}
.x7_c01254{left:36.750000px;}
.x6_c01254{left:48.300000px;}
.x5_c01254{left:49.950000px;}
.x2_c01254{left:54.000000px;}
.x3_c01254{left:55.350000px;}
.x1_c01254{left:74.250000px;}
.x4_c01254{left:79.050000px;}
.x9_c01254{left:280.689240px;}
.x8_c01254{left:329.700000px;}
@media print{
.v0_c01254{vertical-align:0.000000pt;}
.ls3_c01254{letter-spacing:0.000000pt;}
.ls2_c01254{letter-spacing:1.424000pt;}
.ls4_c01254{letter-spacing:2.666667pt;}
.ls0_c01254{letter-spacing:7.712000pt;}
.ls1_c01254{letter-spacing:22.634667pt;}
.ws0_c01254{word-spacing:-78.250667pt;}
.ws2_c01254{word-spacing:-18.000000pt;}
.ws4_c01254{word-spacing:-16.709333pt;}
.ws1_c01254{word-spacing:-15.424000pt;}
.ws3_c01254{word-spacing:-12.210667pt;}
.ws5_c01254{word-spacing:-0.557333pt;}
.ws6_c01254{word-spacing:0.000000pt;}
._1b_c01254{margin-left:-33.717333pt;}
._19_c01254{margin-left:-22.181333pt;}
._18_c01254{margin-left:-16.640000pt;}
._1e_c01254{margin-left:-13.032000pt;}
._c_c01254{margin-left:-10.077333pt;}
._8_c01254{margin-left:-7.744000pt;}
._a_c01254{margin-left:-6.776000pt;}
._2_c01254{margin-left:-4.928000pt;}
._f_c01254{margin-left:-3.648000pt;}
._6_c01254{margin-left:-2.640000pt;}
._b_c01254{margin-left:-1.672000pt;}
._5_c01254{width:0.968000pt;}
._3_c01254{width:2.376000pt;}
._4_c01254{width:3.784000pt;}
._e_c01254{width:4.712000pt;}
._7_c01254{width:6.072000pt;}
._12_c01254{width:7.048000pt;}
._9_c01254{width:8.008000pt;}
._1_c01254{width:9.592000pt;}
._d_c01254{width:10.760000pt;}
._15_c01254{width:12.224000pt;}
._14_c01254{width:13.664000pt;}
._0_c01254{width:16.016000pt;}
._1a_c01254{width:17.581333pt;}
._13_c01254{width:19.344000pt;}
._10_c01254{width:21.130667pt;}
._1c_c01254{width:24.370667pt;}
._1d_c01254{width:34.488000pt;}
._11_c01254{width:122.341333pt;}
._17_c01254{width:145.832000pt;}
._1f_c01254{width:218.360000pt;}
._16_c01254{width:341.968000pt;}
.fs6_c01254{font-size:42.666667pt;}
.fs5_c01254{font-size:50.666667pt;}
.fs2_c01254{font-size:64.000000pt;}
.fs4_c01254{font-size:69.333333pt;}
.fs3_c01254{font-size:72.000000pt;}
.fs0_c01254{font-size:88.000000pt;}
.fs1_c01254{font-size:90.666667pt;}
.y0_c01254{bottom:0.000000pt;}
.y26_c01254{bottom:2.760000pt;}
.y25_c01254{bottom:6.425219pt;}
.y24_c01254{bottom:35.480000pt;}
.y23_c01254{bottom:57.080000pt;}
.y22_c01254{bottom:79.480000pt;}
.y21_c01254{bottom:101.480000pt;}
.y20_c01254{bottom:122.680000pt;}
.y1f_c01254{bottom:145.213333pt;}
.y1e_c01254{bottom:166.546667pt;}
.y1d_c01254{bottom:188.413333pt;}
.y1c_c01254{bottom:210.280000pt;}
.y1b_c01254{bottom:232.546667pt;}
.y1a_c01254{bottom:253.480000pt;}
.y19_c01254{bottom:274.013333pt;}
.y18_c01254{bottom:296.680000pt;}
.y17_c01254{bottom:318.280000pt;}
.y16_c01254{bottom:339.613333pt;}
.y15_c01254{bottom:361.213333pt;}
.y14_c01254{bottom:382.280000pt;}
.y13_c01254{bottom:403.613333pt;}
.y12_c01254{bottom:425.080000pt;}
.y11_c01254{bottom:446.413333pt;}
.y10_c01254{bottom:467.480000pt;}
.yf_c01254{bottom:488.680000pt;}
.ye_c01254{bottom:510.280000pt;}
.yd_c01254{bottom:531.080000pt;}
.yc_c01254{bottom:552.413333pt;}
.yb_c01254{bottom:573.880000pt;}
.ya_c01254{bottom:594.946667pt;}
.y9_c01254{bottom:616.546667pt;}
.y8_c01254{bottom:638.146667pt;}
.y7_c01254{bottom:657.613333pt;}
.y6_c01254{bottom:680.413333pt;}
.y5_c01254{bottom:703.213333pt;}
.y4_c01254{bottom:722.813333pt;}
.y3_c01254{bottom:744.946667pt;}
.y2_c01254{bottom:766.813333pt;}
.y1_c01254{bottom:797.213333pt;}
.h7_c01254{height:11.733399pt;}
.h8_c01254{height:38.937500pt;}
.h5_c01254{height:64.149740pt;}
.h4_c01254{height:70.664062pt;}
.h6_c01254{height:74.906250pt;}
.h3_c01254{height:87.783854pt;}
.h2_c01254{height:102.996094pt;}
.h1_c01254{height:858.666667pt;}
.h0_c01254{height:858.733333pt;}
.w1_c01254{width:93.222667pt;}
.w0_c01254{width:584.666667pt;}
.x0_c01254{left:0.000000pt;}
.x7_c01254{left:32.666667pt;}
.x6_c01254{left:42.933333pt;}
.x5_c01254{left:44.400000pt;}
.x2_c01254{left:48.000000pt;}
.x3_c01254{left:49.200000pt;}
.x1_c01254{left:66.000000pt;}
.x4_c01254{left:70.266667pt;}
.x9_c01254{left:249.501546pt;}
.x8_c01254{left:293.066667pt;}
}





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

.ir_c01255:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01255{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01255;src:url('chunks/assets/font_ee802f3f632e31651fbd36c4.woff2')format("woff");}.ff1_c01255{font-family:ff1_c01255;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01255;src:url('chunks/assets/font_43f415a9cedb2deaf847f7cd.woff2')format("woff");}.ff2_c01255{font-family:ff2_c01255;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01255;src:url('chunks/assets/font_bfb35e9db151228aa4027102.woff2')format("woff");}.ff3_c01255{font-family:ff3_c01255;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01255;src:url('chunks/assets/font_113f3fb2fbcd2e08f1f77305.woff2')format("woff");}.ff4_c01255{font-family:ff4_c01255;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01255;src:url('chunks/assets/font_56ce43f5132bc247124d4f86.woff2')format("woff");}.ff5_c01255{font-family:ff5_c01255;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01255;src:url('chunks/assets/font_1b6b3505fff5bda72b57275c.woff2')format("woff");}.ff6_c01255{font-family:ff6_c01255;line-height:1.311035;font-style:normal;font-weight: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_c01255;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c01255{font-family:ff7_c01255;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c01255{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m0_c01255{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01255{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.v0_c01255{vertical-align:0.000000px;}
.ls1_c01255{letter-spacing:0.000000px;}
.ls0_c01255{letter-spacing:3.432000px;}
.sc__c01255{text-shadow:none;}
.sc0_c01255{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01255{-webkit-text-stroke:0px transparent;}
.sc0_c01255{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01255{word-spacing:-67.686000px;}
.ws3_c01255{word-spacing:-60.048000px;}
.ws0_c01255{word-spacing:-59.184000px;}
.ws2_c01255{word-spacing:-20.250000px;}
.ws4_c01255{word-spacing:0.000000px;}
._14_c01255{margin-left:-21.444000px;}
._19_c01255{margin-left:-18.903000px;}
._17_c01255{margin-left:-17.724000px;}
._16_c01255{margin-left:-15.207000px;}
._12_c01255{margin-left:-12.960000px;}
._f_c01255{margin-left:-11.502000px;}
._18_c01255{margin-left:-9.504000px;}
._10_c01255{margin-left:-8.424000px;}
._15_c01255{margin-left:-7.290000px;}
._d_c01255{margin-left:-6.156000px;}
._5_c01255{margin-left:-4.779000px;}
._11_c01255{margin-left:-3.753000px;}
._7_c01255{margin-left:-2.673000px;}
._6_c01255{margin-left:-1.377000px;}
._2_c01255{width:1.944000px;}
._1_c01255{width:3.321000px;}
._0_c01255{width:5.103000px;}
._3_c01255{width:6.237000px;}
._4_c01255{width:8.262000px;}
._9_c01255{width:9.639000px;}
._13_c01255{width:10.692000px;}
._b_c01255{width:11.826000px;}
._8_c01255{width:13.527000px;}
._a_c01255{width:14.661000px;}
._e_c01255{width:17.496000px;}
._c_c01255{width:18.711000px;}
._1a_c01255{width:25.920000px;}
.fc2_c01255{color:transparent;}
.fc1_c01255{color:rgb(128,128,128);}
.fc0_c01255{color:rgb(0,0,0);}
.fs6_c01255{font-size:48.000000px;}
.fs2_c01255{font-size:72.000000px;}
.fs1_c01255{font-size:78.000000px;}
.fs0_c01255{font-size:81.000000px;}
.fs4_c01255{font-size:84.000000px;}
.fs3_c01255{font-size:87.000000px;}
.fs5_c01255{font-size:108.000000px;}
.y0_c01255{bottom:0.000000px;}
.y23_c01255{bottom:3.105000px;}
.y22_c01255{bottom:7.228371px;}
.y21_c01255{bottom:46.965000px;}
.y20_c01255{bottom:70.965000px;}
.y1f_c01255{bottom:96.315000px;}
.y1e_c01255{bottom:120.615000px;}
.y1d_c01255{bottom:145.515000px;}
.y1c_c01255{bottom:170.865000px;}
.y1b_c01255{bottom:194.715000px;}
.y1a_c01255{bottom:219.465000px;}
.y19_c01255{bottom:244.065000px;}
.y18_c01255{bottom:268.665000px;}
.y17_c01255{bottom:304.515000px;}
.y16_c01255{bottom:332.565000px;}
.y15_c01255{bottom:362.565000px;}
.y14_c01255{bottom:412.065000px;}
.y13_c01255{bottom:437.115000px;}
.y12_c01255{bottom:460.965000px;}
.y11_c01255{bottom:485.115000px;}
.y10_c01255{bottom:509.265000px;}
.yf_c01255{bottom:532.665000px;}
.ye_c01255{bottom:557.565000px;}
.yd_c01255{bottom:581.865000px;}
.yc_c01255{bottom:605.865000px;}
.yb_c01255{bottom:630.165000px;}
.ya_c01255{bottom:654.765000px;}
.y9_c01255{bottom:679.515000px;}
.y8_c01255{bottom:703.365000px;}
.y7_c01255{bottom:727.965000px;}
.y6_c01255{bottom:752.265000px;}
.y5_c01255{bottom:776.565000px;}
.y4_c01255{bottom:800.865000px;}
.y3_c01255{bottom:825.315000px;}
.y2_c01255{bottom:849.615000px;}
.y1_c01255{bottom:873.915000px;}
.h9_c01255{height:13.200074px;}
.ha_c01255{height:43.804688px;}
.h2_c01255{height:79.497070px;}
.h7_c01255{height:82.400391px;}
.h6_c01255{height:82.441406px;}
.h3_c01255{height:83.226000px;}
.h4_c01255{height:84.269531px;}
.h5_c01255{height:91.176000px;}
.h8_c01255{height:108.843750px;}
.h1_c01255{height:971.250000px;}
.h0_c01255{height:971.475000px;}
.w2_c01255{width:104.875500px;}
.w1_c01255{width:657.000000px;}
.w0_c01255{width:657.150000px;}
.x0_c01255{left:0.000000px;}
.xb_c01255{left:110.100000px;}
.xc_c01255{left:111.600000px;}
.x3_c01255{left:113.700000px;}
.x1_c01255{left:115.050000px;}
.x2_c01255{left:116.400000px;}
.x4_c01255{left:171.600000px;}
.x8_c01255{left:176.850000px;}
.x9_c01255{left:199.350000px;}
.x7_c01255{left:219.150000px;}
.xa_c01255{left:237.300000px;}
.x5_c01255{left:252.150000px;}
.xe_c01255{left:280.389267px;}
.x6_c01255{left:291.300000px;}
.xd_c01255{left:579.150000px;}
@media print{
.v0_c01255{vertical-align:0.000000pt;}
.ls1_c01255{letter-spacing:0.000000pt;}
.ls0_c01255{letter-spacing:3.050667pt;}
.ws1_c01255{word-spacing:-60.165333pt;}
.ws3_c01255{word-spacing:-53.376000pt;}
.ws0_c01255{word-spacing:-52.608000pt;}
.ws2_c01255{word-spacing:-18.000000pt;}
.ws4_c01255{word-spacing:0.000000pt;}
._14_c01255{margin-left:-19.061333pt;}
._19_c01255{margin-left:-16.802667pt;}
._17_c01255{margin-left:-15.754667pt;}
._16_c01255{margin-left:-13.517333pt;}
._12_c01255{margin-left:-11.520000pt;}
._f_c01255{margin-left:-10.224000pt;}
._18_c01255{margin-left:-8.448000pt;}
._10_c01255{margin-left:-7.488000pt;}
._15_c01255{margin-left:-6.480000pt;}
._d_c01255{margin-left:-5.472000pt;}
._5_c01255{margin-left:-4.248000pt;}
._11_c01255{margin-left:-3.336000pt;}
._7_c01255{margin-left:-2.376000pt;}
._6_c01255{margin-left:-1.224000pt;}
._2_c01255{width:1.728000pt;}
._1_c01255{width:2.952000pt;}
._0_c01255{width:4.536000pt;}
._3_c01255{width:5.544000pt;}
._4_c01255{width:7.344000pt;}
._9_c01255{width:8.568000pt;}
._13_c01255{width:9.504000pt;}
._b_c01255{width:10.512000pt;}
._8_c01255{width:12.024000pt;}
._a_c01255{width:13.032000pt;}
._e_c01255{width:15.552000pt;}
._c_c01255{width:16.632000pt;}
._1a_c01255{width:23.040000pt;}
.fs6_c01255{font-size:42.666667pt;}
.fs2_c01255{font-size:64.000000pt;}
.fs1_c01255{font-size:69.333333pt;}
.fs0_c01255{font-size:72.000000pt;}
.fs4_c01255{font-size:74.666667pt;}
.fs3_c01255{font-size:77.333333pt;}
.fs5_c01255{font-size:96.000000pt;}
.y0_c01255{bottom:0.000000pt;}
.y23_c01255{bottom:2.760000pt;}
.y22_c01255{bottom:6.425219pt;}
.y21_c01255{bottom:41.746667pt;}
.y20_c01255{bottom:63.080000pt;}
.y1f_c01255{bottom:85.613333pt;}
.y1e_c01255{bottom:107.213333pt;}
.y1d_c01255{bottom:129.346667pt;}
.y1c_c01255{bottom:151.880000pt;}
.y1b_c01255{bottom:173.080000pt;}
.y1a_c01255{bottom:195.080000pt;}
.y19_c01255{bottom:216.946667pt;}
.y18_c01255{bottom:238.813333pt;}
.y17_c01255{bottom:270.680000pt;}
.y16_c01255{bottom:295.613333pt;}
.y15_c01255{bottom:322.280000pt;}
.y14_c01255{bottom:366.280000pt;}
.y13_c01255{bottom:388.546667pt;}
.y12_c01255{bottom:409.746667pt;}
.y11_c01255{bottom:431.213333pt;}
.y10_c01255{bottom:452.680000pt;}
.yf_c01255{bottom:473.480000pt;}
.ye_c01255{bottom:495.613333pt;}
.yd_c01255{bottom:517.213333pt;}
.yc_c01255{bottom:538.546667pt;}
.yb_c01255{bottom:560.146667pt;}
.ya_c01255{bottom:582.013333pt;}
.y9_c01255{bottom:604.013333pt;}
.y8_c01255{bottom:625.213333pt;}
.y7_c01255{bottom:647.080000pt;}
.y6_c01255{bottom:668.680000pt;}
.y5_c01255{bottom:690.280000pt;}
.y4_c01255{bottom:711.880000pt;}
.y3_c01255{bottom:733.613333pt;}
.y2_c01255{bottom:755.213333pt;}
.y1_c01255{bottom:776.813333pt;}
.h9_c01255{height:11.733399pt;}
.ha_c01255{height:38.937500pt;}
.h2_c01255{height:70.664062pt;}
.h7_c01255{height:73.244792pt;}
.h6_c01255{height:73.281250pt;}
.h3_c01255{height:73.978667pt;}
.h4_c01255{height:74.906250pt;}
.h5_c01255{height:81.045333pt;}
.h8_c01255{height:96.750000pt;}
.h1_c01255{height:863.333333pt;}
.h0_c01255{height:863.533333pt;}
.w2_c01255{width:93.222667pt;}
.w1_c01255{width:584.000000pt;}
.w0_c01255{width:584.133333pt;}
.x0_c01255{left:0.000000pt;}
.xb_c01255{left:97.866667pt;}
.xc_c01255{left:99.200000pt;}
.x3_c01255{left:101.066667pt;}
.x1_c01255{left:102.266667pt;}
.x2_c01255{left:103.466667pt;}
.x4_c01255{left:152.533333pt;}
.x8_c01255{left:157.200000pt;}
.x9_c01255{left:177.200000pt;}
.x7_c01255{left:194.800000pt;}
.xa_c01255{left:210.933333pt;}
.x5_c01255{left:224.133333pt;}
.xe_c01255{left:249.234904pt;}
.x6_c01255{left:258.933333pt;}
.xd_c01255{left:514.800000pt;}
}





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

.ir_c01256:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01256{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01256;src:url('chunks/assets/font_fe8734c008c366a56469d412.woff2')format("woff");}.ff1_c01256{font-family:ff1_c01256;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01256;src:url('chunks/assets/font_f9682022b1b8dd1d0798673d.woff2')format("woff");}.ff2_c01256{font-family:ff2_c01256;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01256;src:url('chunks/assets/font_7930757a92a1f8f1ceb8c8dd.woff2')format("woff");}.ff3_c01256{font-family:ff3_c01256;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01256;src:url('chunks/assets/font_92590dcaee8ba43d6c67e77c.woff2')format("woff");}.ff4_c01256{font-family:ff4_c01256;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01256;src:url('chunks/assets/font_01ddeaa1a3d0dab05a2c3c24.woff2')format("woff");}.ff5_c01256{font-family:ff5_c01256;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01256;src:url('chunks/assets/font_1a1eb2bc7074a33d5c70470c.woff2')format("woff");}.ff6_c01256{font-family:ff6_c01256;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01256;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c01256{font-family:ff7_c01256;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01256{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01256{vertical-align:0.000000px;}
.v1_c01256{vertical-align:144.000000px;}
.ls1_c01256{letter-spacing:0.000000px;}
.ls0_c01256{letter-spacing:16.416000px;}
.sc__c01256{text-shadow:none;}
.sc0_c01256{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01256{-webkit-text-stroke:0px transparent;}
.sc0_c01256{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01256{word-spacing:-221.730000px;}
.ws0_c01256{word-spacing:-18.000000px;}
.ws2_c01256{word-spacing:0.000000px;}
._19_c01256{margin-left:-19.872000px;}
._1c_c01256{margin-left:-14.196000px;}
._15_c01256{margin-left:-12.528000px;}
._17_c01256{margin-left:-11.421000px;}
._13_c01256{margin-left:-9.930000px;}
._a_c01256{margin-left:-7.857000px;}
._12_c01256{margin-left:-6.852000px;}
._2_c01256{margin-left:-5.445000px;}
._d_c01256{margin-left:-4.293000px;}
._1_c01256{margin-left:-3.267000px;}
._0_c01256{margin-left:-1.584000px;}
._4_c01256{width:1.458000px;}
._3_c01256{width:2.997000px;}
._e_c01256{width:4.017000px;}
._5_c01256{width:5.148000px;}
._7_c01256{width:6.372000px;}
._6_c01256{width:7.776000px;}
._f_c01256{width:8.817000px;}
._8_c01256{width:9.882000px;}
._9_c01256{width:11.232000px;}
._14_c01256{width:12.288000px;}
._b_c01256{width:13.410000px;}
._11_c01256{width:14.661000px;}
._c_c01256{width:16.398000px;}
._1a_c01256{width:18.351000px;}
._18_c01256{width:21.870000px;}
._16_c01256{width:24.219000px;}
._1b_c01256{width:39.930000px;}
._10_c01256{width:124.254000px;}
._1d_c01256{width:446.472000px;}
.fc2_c01256{color:transparent;}
.fc1_c01256{color:rgb(128,128,128);}
.fc0_c01256{color:rgb(0,0,0);}
.fs6_c01256{font-size:48.000000px;}
.fs3_c01256{font-size:72.000000px;}
.fs5_c01256{font-size:78.000000px;}
.fs1_c01256{font-size:81.000000px;}
.fs2_c01256{font-size:96.000000px;}
.fs0_c01256{font-size:99.000000px;}
.fs4_c01256{font-size:285.000000px;}
.y0_c01256{bottom:0.000000px;}
.y25_c01256{bottom:3.105000px;}
.y24_c01256{bottom:7.228355px;}
.y23_c01256{bottom:65.385000px;}
.y22_c01256{bottom:90.135000px;}
.y21_c01256{bottom:114.735000px;}
.y20_c01256{bottom:139.935000px;}
.y1f_c01256{bottom:164.235000px;}
.y1e_c01256{bottom:187.935000px;}
.y1d_c01256{bottom:212.535000px;}
.y1c_c01256{bottom:236.535000px;}
.y1b_c01256{bottom:262.485000px;}
.y1a_c01256{bottom:286.785000px;}
.y19_c01256{bottom:310.785000px;}
.y18_c01256{bottom:335.085000px;}
.y17_c01256{bottom:359.385000px;}
.y16_c01256{bottom:383.385000px;}
.y15_c01256{bottom:408.285000px;}
.y14_c01256{bottom:433.335000px;}
.y13_c01256{bottom:456.885000px;}
.y12_c01256{bottom:481.185000px;}
.y11_c01256{bottom:505.785000px;}
.y10_c01256{bottom:529.185000px;}
.yf_c01256{bottom:553.035000px;}
.ye_c01256{bottom:577.335000px;}
.yd_c01256{bottom:601.335000px;}
.yc_c01256{bottom:625.335000px;}
.ya_c01256{bottom:639.885000px;}
.yb_c01256{bottom:649.935000px;}
.y9_c01256{bottom:697.485000px;}
.y8_c01256{bottom:722.235000px;}
.y7_c01256{bottom:768.735000px;}
.y6_c01256{bottom:795.435000px;}
.y5_c01256{bottom:820.485000px;}
.y4_c01256{bottom:842.985000px;}
.y3_c01256{bottom:867.585000px;}
.y2_c01256{bottom:893.235000px;}
.y1_c01256{bottom:927.435000px;}
.ha_c01256{height:13.200074px;}
.hb_c01256{height:43.804688px;}
.h6_c01256{height:70.628906px;}
.h5_c01256{height:72.562500px;}
.h3_c01256{height:79.497070px;}
.h8_c01256{height:84.269531px;}
.h4_c01256{height:94.218750px;}
.h9_c01256{height:98.756836px;}
.h2_c01256{height:115.870605px;}
.h7_c01256{height:298.680000px;}
.h0_c01256{height:977.925000px;}
.h1_c01256{height:978.000000px;}
.w2_c01256{width:104.875500px;}
.w0_c01256{width:665.850000px;}
.w1_c01256{width:666.000000px;}
.x0_c01256{left:0.000000px;}
.xa_c01256{left:51.300000px;}
.x9_c01256{left:52.950000px;}
.xd_c01256{left:54.000000px;}
.x3_c01256{left:67.800000px;}
.x2_c01256{left:69.150000px;}
.x6_c01256{left:70.950000px;}
.xb_c01256{left:72.600000px;}
.xc_c01256{left:74.250000px;}
.x8_c01256{left:75.600000px;}
.x1_c01256{left:87.450000px;}
.x4_c01256{left:106.950000px;}
.x7_c01256{left:113.400000px;}
.x5_c01256{left:260.250000px;}
.xf_c01256{left:284.739258px;}
.xe_c01256{left:383.100000px;}
@media print{
.v0_c01256{vertical-align:0.000000pt;}
.v1_c01256{vertical-align:128.000000pt;}
.ls1_c01256{letter-spacing:0.000000pt;}
.ls0_c01256{letter-spacing:14.592000pt;}
.ws1_c01256{word-spacing:-197.093333pt;}
.ws0_c01256{word-spacing:-16.000000pt;}
.ws2_c01256{word-spacing:0.000000pt;}
._19_c01256{margin-left:-17.664000pt;}
._1c_c01256{margin-left:-12.618667pt;}
._15_c01256{margin-left:-11.136000pt;}
._17_c01256{margin-left:-10.152000pt;}
._13_c01256{margin-left:-8.826667pt;}
._a_c01256{margin-left:-6.984000pt;}
._12_c01256{margin-left:-6.090667pt;}
._2_c01256{margin-left:-4.840000pt;}
._d_c01256{margin-left:-3.816000pt;}
._1_c01256{margin-left:-2.904000pt;}
._0_c01256{margin-left:-1.408000pt;}
._4_c01256{width:1.296000pt;}
._3_c01256{width:2.664000pt;}
._e_c01256{width:3.570667pt;}
._5_c01256{width:4.576000pt;}
._7_c01256{width:5.664000pt;}
._6_c01256{width:6.912000pt;}
._f_c01256{width:7.837333pt;}
._8_c01256{width:8.784000pt;}
._9_c01256{width:9.984000pt;}
._14_c01256{width:10.922667pt;}
._b_c01256{width:11.920000pt;}
._11_c01256{width:13.032000pt;}
._c_c01256{width:14.576000pt;}
._1a_c01256{width:16.312000pt;}
._18_c01256{width:19.440000pt;}
._16_c01256{width:21.528000pt;}
._1b_c01256{width:35.493333pt;}
._10_c01256{width:110.448000pt;}
._1d_c01256{width:396.864000pt;}
.fs6_c01256{font-size:42.666667pt;}
.fs3_c01256{font-size:64.000000pt;}
.fs5_c01256{font-size:69.333333pt;}
.fs1_c01256{font-size:72.000000pt;}
.fs2_c01256{font-size:85.333333pt;}
.fs0_c01256{font-size:88.000000pt;}
.fs4_c01256{font-size:253.333333pt;}
.y0_c01256{bottom:0.000000pt;}
.y25_c01256{bottom:2.760000pt;}
.y24_c01256{bottom:6.425204pt;}
.y23_c01256{bottom:58.120000pt;}
.y22_c01256{bottom:80.120000pt;}
.y21_c01256{bottom:101.986667pt;}
.y20_c01256{bottom:124.386667pt;}
.y1f_c01256{bottom:145.986667pt;}
.y1e_c01256{bottom:167.053333pt;}
.y1d_c01256{bottom:188.920000pt;}
.y1c_c01256{bottom:210.253333pt;}
.y1b_c01256{bottom:233.320000pt;}
.y1a_c01256{bottom:254.920000pt;}
.y19_c01256{bottom:276.253333pt;}
.y18_c01256{bottom:297.853333pt;}
.y17_c01256{bottom:319.453333pt;}
.y16_c01256{bottom:340.786667pt;}
.y15_c01256{bottom:362.920000pt;}
.y14_c01256{bottom:385.186667pt;}
.y13_c01256{bottom:406.120000pt;}
.y12_c01256{bottom:427.720000pt;}
.y11_c01256{bottom:449.586667pt;}
.y10_c01256{bottom:470.386667pt;}
.yf_c01256{bottom:491.586667pt;}
.ye_c01256{bottom:513.186667pt;}
.yd_c01256{bottom:534.520000pt;}
.yc_c01256{bottom:555.853333pt;}
.ya_c01256{bottom:568.786667pt;}
.yb_c01256{bottom:577.720000pt;}
.y9_c01256{bottom:619.986667pt;}
.y8_c01256{bottom:641.986667pt;}
.y7_c01256{bottom:683.320000pt;}
.y6_c01256{bottom:707.053333pt;}
.y5_c01256{bottom:729.320000pt;}
.y4_c01256{bottom:749.320000pt;}
.y3_c01256{bottom:771.186667pt;}
.y2_c01256{bottom:793.986667pt;}
.y1_c01256{bottom:824.386667pt;}
.ha_c01256{height:11.733399pt;}
.hb_c01256{height:38.937500pt;}
.h6_c01256{height:62.781250pt;}
.h5_c01256{height:64.500000pt;}
.h3_c01256{height:70.664062pt;}
.h8_c01256{height:74.906250pt;}
.h4_c01256{height:83.750000pt;}
.h9_c01256{height:87.783854pt;}
.h2_c01256{height:102.996094pt;}
.h7_c01256{height:265.493333pt;}
.h0_c01256{height:869.266667pt;}
.h1_c01256{height:869.333333pt;}
.w2_c01256{width:93.222667pt;}
.w0_c01256{width:591.866667pt;}
.w1_c01256{width:592.000000pt;}
.x0_c01256{left:0.000000pt;}
.xa_c01256{left:45.600000pt;}
.x9_c01256{left:47.066667pt;}
.xd_c01256{left:48.000000pt;}
.x3_c01256{left:60.266667pt;}
.x2_c01256{left:61.466667pt;}
.x6_c01256{left:63.066667pt;}
.xb_c01256{left:64.533333pt;}
.xc_c01256{left:66.000000pt;}
.x8_c01256{left:67.200000pt;}
.x1_c01256{left:77.733333pt;}
.x4_c01256{left:95.066667pt;}
.x7_c01256{left:100.800000pt;}
.x5_c01256{left:231.333333pt;}
.xf_c01256{left:253.101563pt;}
.xe_c01256{left:340.533333pt;}
}





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

.ir_c01257:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01257{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01257;src:url('chunks/assets/font_1e8aa420fbecf078301c4516.woff2')format("woff");}.ff1_c01257{font-family:ff1_c01257;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01257;src:url('chunks/assets/font_b6e9dc40c8736347db4f66e6.woff2')format("woff");}.ff2_c01257{font-family:ff2_c01257;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01257;src:url('chunks/assets/font_dbcfb88c1ca5587f24b9573d.woff2')format("woff");}.ff3_c01257{font-family:ff3_c01257;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01257;src:url('chunks/assets/font_b163e75410f43228ba53e3c0.woff2')format("woff");}.ff4_c01257{font-family:ff4_c01257;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01257;src:url('chunks/assets/font_e2b03f3eb9eaab5bb126c084.woff2')format("woff");}.ff5_c01257{font-family:ff5_c01257;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01257;src:url('chunks/assets/font_58ff1aa58648f40c737ea5de.woff2')format("woff");}.ff6_c01257{font-family:ff6_c01257;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01257;src:url('chunks/assets/font_9a03b754fe2b60203f238ff1.woff2')format("woff");}.ff7_c01257{font-family:ff7_c01257;line-height:1.284180;font-style:normal;font-weight: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_c01257;src:url('chunks/assets/font_cd7515ef5b5a8da90f72514f.woff2')format("woff");}.ff8_c01257{font-family:ff8_c01257;line-height:1.437000;font-style:normal;font-weight: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_c01257;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff9_c01257{font-family:ff9_c01257;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c01257;src:url('chunks/assets/font_2073079685441ba2c37e3b4a.woff2')format("woff");}.ffa_c01257{font-family:ffa_c01257;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c01257;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ffb_c01257{font-family:ffb_c01257;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01257{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01257{vertical-align:0.000000px;}
.ls2_c01257{letter-spacing:-3.000000px;}
.ls1_c01257{letter-spacing:0.000000px;}
.ls0_c01257{letter-spacing:11.400000px;}
.sc__c01257{text-shadow:none;}
.sc0_c01257{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01257{-webkit-text-stroke:0px transparent;}
.sc0_c01257{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01257{word-spacing:-42.072000px;}
.ws2_c01257{word-spacing:-18.000000px;}
.ws1_c01257{word-spacing:-17.352000px;}
.ws4_c01257{word-spacing:-17.250000px;}
.ws3_c01257{word-spacing:-14.460000px;}
.ws6_c01257{word-spacing:0.000000px;}
.ws5_c01257{word-spacing:2.820000px;}
._19_c01257{margin-left:-24.189000px;}
._1b_c01257{margin-left:-17.280000px;}
._11_c01257{margin-left:-15.633000px;}
._20_c01257{margin-left:-13.131000px;}
._9_c01257{margin-left:-11.952000px;}
._27_c01257{margin-left:-10.800000px;}
._d_c01257{margin-left:-8.991000px;}
._b_c01257{margin-left:-7.533000px;}
._1f_c01257{margin-left:-6.165000px;}
._c_c01257{margin-left:-5.103000px;}
._e_c01257{margin-left:-4.050000px;}
._1a_c01257{margin-left:-2.907000px;}
._f_c01257{margin-left:-1.539000px;}
._13_c01257{width:1.053000px;}
._12_c01257{width:2.106000px;}
._14_c01257{width:3.645000px;}
._15_c01257{width:5.184000px;}
._17_c01257{width:6.399000px;}
._16_c01257{width:7.461000px;}
._0_c01257{width:8.541000px;}
._5_c01257{width:10.080000px;}
._4_c01257{width:11.952000px;}
._a_c01257{width:13.104000px;}
._8_c01257{width:15.048000px;}
._7_c01257{width:16.200000px;}
._6_c01257{width:18.432000px;}
._18_c01257{width:19.920000px;}
._3_c01257{width:22.176000px;}
._21_c01257{width:23.376000px;}
._2_c01257{width:24.480000px;}
._10_c01257{width:26.487000px;}
._2a_c01257{width:28.008000px;}
._28_c01257{width:29.643000px;}
._24_c01257{width:47.505000px;}
._1d_c01257{width:54.405000px;}
._29_c01257{width:110.064000px;}
._22_c01257{width:182.175000px;}
._23_c01257{width:189.822000px;}
._1c_c01257{width:244.302000px;}
._1e_c01257{width:254.340000px;}
._26_c01257{width:356.610000px;}
._25_c01257{width:393.003000px;}
._1_c01257{width:599.256000px;}
.fc2_c01257{color:transparent;}
.fc1_c01257{color:rgb(128,128,128);}
.fc0_c01257{color:rgb(0,0,0);}
.fs3_c01257{font-size:48.000000px;}
.fs4_c01257{font-size:57.000000px;}
.fs7_c01257{font-size:60.000000px;}
.fs8_c01257{font-size:66.000000px;}
.fs6_c01257{font-size:69.000000px;}
.fs2_c01257{font-size:72.000000px;}
.fs5_c01257{font-size:78.000000px;}
.fs1_c01257{font-size:81.000000px;}
.fs0_c01257{font-size:93.000000px;}
.y0_c01257{bottom:0.000000px;}
.y24_c01257{bottom:3.105000px;}
.y23_c01257{bottom:7.228355px;}
.y21_c01257{bottom:78.885000px;}
.y20_c01257{bottom:102.885000px;}
.y1f_c01257{bottom:128.535000px;}
.y1e_c01257{bottom:152.235000px;}
.y1d_c01257{bottom:177.435000px;}
.y22_c01257{bottom:193.335000px;}
.y1c_c01257{bottom:202.785000px;}
.y1b_c01257{bottom:226.335000px;}
.y1a_c01257{bottom:251.085000px;}
.y19_c01257{bottom:274.935000px;}
.y18_c01257{bottom:299.985000px;}
.y17_c01257{bottom:325.635000px;}
.y16_c01257{bottom:349.935000px;}
.y15_c01257{bottom:374.535000px;}
.y14_c01257{bottom:398.535000px;}
.y13_c01257{bottom:423.435000px;}
.y12_c01257{bottom:448.185000px;}
.y11_c01257{bottom:475.185000px;}
.y10_c01257{bottom:496.035000px;}
.yf_c01257{bottom:568.035000px;}
.ye_c01257{bottom:592.935000px;}
.yd_c01257{bottom:617.235000px;}
.yc_c01257{bottom:641.235000px;}
.yb_c01257{bottom:666.885000px;}
.ya_c01257{bottom:689.535000px;}
.y9_c01257{bottom:714.135000px;}
.y8_c01257{bottom:738.435000px;}
.y7_c01257{bottom:763.785000px;}
.y6_c01257{bottom:788.985000px;}
.y5_c01257{bottom:811.935000px;}
.y4_c01257{bottom:835.935000px;}
.y3_c01257{bottom:860.235000px;}
.y2_c01257{bottom:883.935000px;}
.y1_c01257{bottom:923.385000px;}
.h8_c01257{height:13.200074px;}
.h9_c01257{height:43.804688px;}
.h5_c01257{height:57.445312px;}
.h7_c01257{height:72.312000px;}
.h3_c01257{height:79.497070px;}
.h6_c01257{height:83.226000px;}
.h4_c01257{height:84.269531px;}
.h2_c01257{height:97.464000px;}
.h1_c01257{height:975.000000px;}
.h0_c01257{height:975.225000px;}
.w2_c01257{width:104.875500px;}
.w0_c01257{width:659.850000px;}
.w1_c01257{width:660.000000px;}
.x0_c01257{left:0.000000px;}
.x9_c01257{left:9.750000px;}
.x3_c01257{left:11.100000px;}
.xa_c01257{left:102.900000px;}
.x8_c01257{left:104.250000px;}
.x7_c01257{left:105.600000px;}
.x6_c01257{left:106.650000px;}
.x5_c01257{left:107.700000px;}
.x2_c01257{left:109.950000px;}
.x1_c01257{left:111.450000px;}
.x4_c01257{left:125.550000px;}
.xb_c01257{left:281.739258px;}
@media print{
.v0_c01257{vertical-align:0.000000pt;}
.ls2_c01257{letter-spacing:-2.666667pt;}
.ls1_c01257{letter-spacing:0.000000pt;}
.ls0_c01257{letter-spacing:10.133333pt;}
.ws0_c01257{word-spacing:-37.397333pt;}
.ws2_c01257{word-spacing:-16.000000pt;}
.ws1_c01257{word-spacing:-15.424000pt;}
.ws4_c01257{word-spacing:-15.333333pt;}
.ws3_c01257{word-spacing:-12.853333pt;}
.ws6_c01257{word-spacing:0.000000pt;}
.ws5_c01257{word-spacing:2.506667pt;}
._19_c01257{margin-left:-21.501333pt;}
._1b_c01257{margin-left:-15.360000pt;}
._11_c01257{margin-left:-13.896000pt;}
._20_c01257{margin-left:-11.672000pt;}
._9_c01257{margin-left:-10.624000pt;}
._27_c01257{margin-left:-9.600000pt;}
._d_c01257{margin-left:-7.992000pt;}
._b_c01257{margin-left:-6.696000pt;}
._1f_c01257{margin-left:-5.480000pt;}
._c_c01257{margin-left:-4.536000pt;}
._e_c01257{margin-left:-3.600000pt;}
._1a_c01257{margin-left:-2.584000pt;}
._f_c01257{margin-left:-1.368000pt;}
._13_c01257{width:0.936000pt;}
._12_c01257{width:1.872000pt;}
._14_c01257{width:3.240000pt;}
._15_c01257{width:4.608000pt;}
._17_c01257{width:5.688000pt;}
._16_c01257{width:6.632000pt;}
._0_c01257{width:7.592000pt;}
._5_c01257{width:8.960000pt;}
._4_c01257{width:10.624000pt;}
._a_c01257{width:11.648000pt;}
._8_c01257{width:13.376000pt;}
._7_c01257{width:14.400000pt;}
._6_c01257{width:16.384000pt;}
._18_c01257{width:17.706667pt;}
._3_c01257{width:19.712000pt;}
._21_c01257{width:20.778667pt;}
._2_c01257{width:21.760000pt;}
._10_c01257{width:23.544000pt;}
._2a_c01257{width:24.896000pt;}
._28_c01257{width:26.349333pt;}
._24_c01257{width:42.226667pt;}
._1d_c01257{width:48.360000pt;}
._29_c01257{width:97.834667pt;}
._22_c01257{width:161.933333pt;}
._23_c01257{width:168.730667pt;}
._1c_c01257{width:217.157333pt;}
._1e_c01257{width:226.080000pt;}
._26_c01257{width:316.986667pt;}
._25_c01257{width:349.336000pt;}
._1_c01257{width:532.672000pt;}
.fs3_c01257{font-size:42.666667pt;}
.fs4_c01257{font-size:50.666667pt;}
.fs7_c01257{font-size:53.333333pt;}
.fs8_c01257{font-size:58.666667pt;}
.fs6_c01257{font-size:61.333333pt;}
.fs2_c01257{font-size:64.000000pt;}
.fs5_c01257{font-size:69.333333pt;}
.fs1_c01257{font-size:72.000000pt;}
.fs0_c01257{font-size:82.666667pt;}
.y0_c01257{bottom:0.000000pt;}
.y24_c01257{bottom:2.760000pt;}
.y23_c01257{bottom:6.425204pt;}
.y21_c01257{bottom:70.120000pt;}
.y20_c01257{bottom:91.453333pt;}
.y1f_c01257{bottom:114.253333pt;}
.y1e_c01257{bottom:135.320000pt;}
.y1d_c01257{bottom:157.720000pt;}
.y22_c01257{bottom:171.853333pt;}
.y1c_c01257{bottom:180.253333pt;}
.y1b_c01257{bottom:201.186667pt;}
.y1a_c01257{bottom:223.186667pt;}
.y19_c01257{bottom:244.386667pt;}
.y18_c01257{bottom:266.653333pt;}
.y17_c01257{bottom:289.453333pt;}
.y16_c01257{bottom:311.053333pt;}
.y15_c01257{bottom:332.920000pt;}
.y14_c01257{bottom:354.253333pt;}
.y13_c01257{bottom:376.386667pt;}
.y12_c01257{bottom:398.386667pt;}
.y11_c01257{bottom:422.386667pt;}
.y10_c01257{bottom:440.920000pt;}
.yf_c01257{bottom:504.920000pt;}
.ye_c01257{bottom:527.053333pt;}
.yd_c01257{bottom:548.653333pt;}
.yc_c01257{bottom:569.986667pt;}
.yb_c01257{bottom:592.786667pt;}
.ya_c01257{bottom:612.920000pt;}
.y9_c01257{bottom:634.786667pt;}
.y8_c01257{bottom:656.386667pt;}
.y7_c01257{bottom:678.920000pt;}
.y6_c01257{bottom:701.320000pt;}
.y5_c01257{bottom:721.720000pt;}
.y4_c01257{bottom:743.053333pt;}
.y3_c01257{bottom:764.653333pt;}
.y2_c01257{bottom:785.720000pt;}
.y1_c01257{bottom:820.786667pt;}
.h8_c01257{height:11.733399pt;}
.h9_c01257{height:38.937500pt;}
.h5_c01257{height:51.062500pt;}
.h7_c01257{height:64.277333pt;}
.h3_c01257{height:70.664062pt;}
.h6_c01257{height:73.978667pt;}
.h4_c01257{height:74.906250pt;}
.h2_c01257{height:86.634667pt;}
.h1_c01257{height:866.666667pt;}
.h0_c01257{height:866.866667pt;}
.w2_c01257{width:93.222667pt;}
.w0_c01257{width:586.533333pt;}
.w1_c01257{width:586.666667pt;}
.x0_c01257{left:0.000000pt;}
.x9_c01257{left:8.666667pt;}
.x3_c01257{left:9.866667pt;}
.xa_c01257{left:91.466667pt;}
.x8_c01257{left:92.666667pt;}
.x7_c01257{left:93.866667pt;}
.x6_c01257{left:94.800000pt;}
.x5_c01257{left:95.733333pt;}
.x2_c01257{left:97.733333pt;}
.x1_c01257{left:99.066667pt;}
.x4_c01257{left:111.600000pt;}
.xb_c01257{left:250.434896pt;}
}





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

.ir_c01258:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01258{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01258;src:url('chunks/assets/font_778c274e5dcce8659353f186.woff2')format("woff");}.ff1_c01258{font-family:ff1_c01258;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01258;src:url('chunks/assets/font_89e653a7b12d8da669a0d164.woff2')format("woff");}.ff2_c01258{font-family:ff2_c01258;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01258;src:url('chunks/assets/font_41f991b788a7a29a2ad00718.woff2')format("woff");}.ff3_c01258{font-family:ff3_c01258;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01258;src:url('chunks/assets/font_4c39d833922cf8468e3f856b.woff2')format("woff");}.ff4_c01258{font-family:ff4_c01258;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01258;src:url('chunks/assets/font_f8b873486aa9877ebe5763e6.woff2')format("woff");}.ff5_c01258{font-family:ff5_c01258;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01258;src:url('chunks/assets/font_a0aba11f102aa805dc35b1e3.woff2')format("woff");}.ff6_c01258{font-family:ff6_c01258;line-height:1.311035;font-style:normal;font-weight: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_c01258;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c01258{font-family:ff7_c01258;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01258{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01258{vertical-align:-15.000000px;}
.v0_c01258{vertical-align:0.000000px;}
.ls2_c01258{letter-spacing:0.000000px;}
.ls0_c01258{letter-spacing:9.000000px;}
.ls1_c01258{letter-spacing:52.800000px;}
.sc__c01258{text-shadow:none;}
.sc0_c01258{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01258{-webkit-text-stroke:0px transparent;}
.sc0_c01258{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01258{word-spacing:-22.737000px;}
.ws1_c01258{word-spacing:-18.014400px;}
.ws2_c01258{word-spacing:-17.352000px;}
.ws3_c01258{word-spacing:0.000000px;}
._21_c01258{margin-left:-24.453000px;}
._24_c01258{margin-left:-19.926000px;}
._20_c01258{margin-left:-18.594000px;}
._16_c01258{margin-left:-17.283000px;}
._28_c01258{margin-left:-14.034000px;}
._1a_c01258{margin-left:-12.387000px;}
._1e_c01258{margin-left:-9.915000px;}
._25_c01258{margin-left:-8.754000px;}
._11_c01258{margin-left:-7.194000px;}
._8_c01258{margin-left:-6.018000px;}
._1c_c01258{margin-left:-4.932000px;}
._f_c01258{margin-left:-3.489000px;}
._7_c01258{margin-left:-2.082000px;}
._10_c01258{margin-left:-1.044000px;}
._3_c01258{width:1.428000px;}
._4_c01258{width:2.856000px;}
._2_c01258{width:3.876000px;}
._5_c01258{width:4.896000px;}
._1_c01258{width:6.018000px;}
._0_c01258{width:7.752000px;}
._e_c01258{width:8.916000px;}
._6_c01258{width:10.737000px;}
._1d_c01258{width:12.021000px;}
._a_c01258{width:13.080000px;}
._18_c01258{width:14.814000px;}
._d_c01258{width:16.398000px;}
._19_c01258{width:17.847000px;}
._c_c01258{width:18.858000px;}
._1b_c01258{width:20.448000px;}
._26_c01258{width:21.891000px;}
._15_c01258{width:24.294000px;}
._17_c01258{width:25.683000px;}
._14_c01258{width:26.739000px;}
._13_c01258{width:28.071000px;}
._27_c01258{width:33.930000px;}
._1f_c01258{width:36.468000px;}
._b_c01258{width:53.334000px;}
._2a_c01258{width:102.315000px;}
._23_c01258{width:144.444000px;}
._12_c01258{width:220.644000px;}
._9_c01258{width:233.529000px;}
._29_c01258{width:245.754000px;}
._22_c01258{width:913.923000px;}
.fc2_c01258{color:transparent;}
.fc1_c01258{color:rgb(128,128,128);}
.fc0_c01258{color:rgb(0,0,0);}
.fs6_c01258{font-size:48.000000px;}
.fs3_c01258{font-size:57.000000px;}
.fs4_c01258{font-size:60.000000px;}
.fs5_c01258{font-size:64.800000px;}
.fs2_c01258{font-size:72.000000px;}
.fs1_c01258{font-size:81.000000px;}
.fs0_c01258{font-size:102.000000px;}
.y0_c01258{bottom:0.000000px;}
.y26_c01258{bottom:3.105000px;}
.y25_c01258{bottom:7.228363px;}
.y24_c01258{bottom:45.450000px;}
.y23_c01258{bottom:69.450000px;}
.y22_c01258{bottom:94.200000px;}
.y21_c01258{bottom:119.700000px;}
.y20_c01258{bottom:143.700000px;}
.y1f_c01258{bottom:168.300000px;}
.y1e_c01258{bottom:192.300000px;}
.y1d_c01258{bottom:216.900000px;}
.y1c_c01258{bottom:241.350000px;}
.y1b_c01258{bottom:265.950000px;}
.y1a_c01258{bottom:290.250000px;}
.y19_c01258{bottom:314.250000px;}
.y18_c01258{bottom:338.400000px;}
.y17_c01258{bottom:362.850000px;}
.y16_c01258{bottom:387.450000px;}
.y15_c01258{bottom:411.750000px;}
.y14_c01258{bottom:435.750000px;}
.y13_c01258{bottom:460.350000px;}
.y12_c01258{bottom:488.400000px;}
.y11_c01258{bottom:507.150000px;}
.y10_c01258{bottom:531.600000px;}
.yf_c01258{bottom:555.450000px;}
.ye_c01258{bottom:580.050000px;}
.yd_c01258{bottom:604.350000px;}
.yc_c01258{bottom:628.650000px;}
.yb_c01258{bottom:652.050000px;}
.ya_c01258{bottom:676.650000px;}
.y9_c01258{bottom:700.950000px;}
.y8_c01258{bottom:724.200000px;}
.y7_c01258{bottom:748.200000px;}
.y6_c01258{bottom:773.100000px;}
.y5_c01258{bottom:797.550000px;}
.y4_c01258{bottom:821.400000px;}
.y3_c01258{bottom:845.400000px;}
.y2_c01258{bottom:870.000000px;}
.y1_c01258{bottom:908.250000px;}
.ha_c01258{height:13.200074px;}
.hb_c01258{height:43.804688px;}
.h9_c01258{height:57.445312px;}
.h6_c01258{height:66.713379px;}
.h5_c01258{height:72.168457px;}
.h7_c01258{height:75.966797px;}
.h3_c01258{height:79.497070px;}
.h8_c01258{height:84.269531px;}
.h4_c01258{height:91.160156px;}
.h2_c01258{height:100.057617px;}
.h1_c01258{height:963.750000px;}
.h0_c01258{height:963.900000px;}
.w2_c01258{width:104.875500px;}
.w0_c01258{width:656.100000px;}
.w1_c01258{width:656.250000px;}
.x0_c01258{left:0.000000px;}
.xc_c01258{left:50.850000px;}
.x2_c01258{left:54.300000px;}
.x8_c01258{left:55.950000px;}
.x5_c01258{left:57.000000px;}
.x7_c01258{left:58.950000px;}
.x3_c01258{left:60.000000px;}
.x6_c01258{left:61.350000px;}
.x4_c01258{left:63.000000px;}
.xa_c01258{left:66.450000px;}
.xb_c01258{left:68.100000px;}
.xd_c01258{left:69.750000px;}
.x9_c01258{left:81.900000px;}
.x1_c01258{left:115.650000px;}
.xf_c01258{left:279.864258px;}
.xe_c01258{left:387.150000px;}
@media print{
.v1_c01258{vertical-align:-13.333333pt;}
.v0_c01258{vertical-align:0.000000pt;}
.ls2_c01258{letter-spacing:0.000000pt;}
.ls0_c01258{letter-spacing:8.000000pt;}
.ls1_c01258{letter-spacing:46.933333pt;}
.ws0_c01258{word-spacing:-20.210667pt;}
.ws1_c01258{word-spacing:-16.012800pt;}
.ws2_c01258{word-spacing:-15.424000pt;}
.ws3_c01258{word-spacing:0.000000pt;}
._21_c01258{margin-left:-21.736000pt;}
._24_c01258{margin-left:-17.712000pt;}
._20_c01258{margin-left:-16.528000pt;}
._16_c01258{margin-left:-15.362667pt;}
._28_c01258{margin-left:-12.474667pt;}
._1a_c01258{margin-left:-11.010667pt;}
._1e_c01258{margin-left:-8.813333pt;}
._25_c01258{margin-left:-7.781333pt;}
._11_c01258{margin-left:-6.394667pt;}
._8_c01258{margin-left:-5.349333pt;}
._1c_c01258{margin-left:-4.384000pt;}
._f_c01258{margin-left:-3.101333pt;}
._7_c01258{margin-left:-1.850667pt;}
._10_c01258{margin-left:-0.928000pt;}
._3_c01258{width:1.269333pt;}
._4_c01258{width:2.538667pt;}
._2_c01258{width:3.445333pt;}
._5_c01258{width:4.352000pt;}
._1_c01258{width:5.349333pt;}
._0_c01258{width:6.890667pt;}
._e_c01258{width:7.925333pt;}
._6_c01258{width:9.544000pt;}
._1d_c01258{width:10.685333pt;}
._a_c01258{width:11.626667pt;}
._18_c01258{width:13.168000pt;}
._d_c01258{width:14.576000pt;}
._19_c01258{width:15.864000pt;}
._c_c01258{width:16.762667pt;}
._1b_c01258{width:18.176000pt;}
._26_c01258{width:19.458667pt;}
._15_c01258{width:21.594667pt;}
._17_c01258{width:22.829333pt;}
._14_c01258{width:23.768000pt;}
._13_c01258{width:24.952000pt;}
._27_c01258{width:30.160000pt;}
._1f_c01258{width:32.416000pt;}
._b_c01258{width:47.408000pt;}
._2a_c01258{width:90.946667pt;}
._23_c01258{width:128.394667pt;}
._12_c01258{width:196.128000pt;}
._9_c01258{width:207.581333pt;}
._29_c01258{width:218.448000pt;}
._22_c01258{width:812.376000pt;}
.fs6_c01258{font-size:42.666667pt;}
.fs3_c01258{font-size:50.666667pt;}
.fs4_c01258{font-size:53.333333pt;}
.fs5_c01258{font-size:57.600000pt;}
.fs2_c01258{font-size:64.000000pt;}
.fs1_c01258{font-size:72.000000pt;}
.fs0_c01258{font-size:90.666667pt;}
.y0_c01258{bottom:0.000000pt;}
.y26_c01258{bottom:2.760000pt;}
.y25_c01258{bottom:6.425212pt;}
.y24_c01258{bottom:40.400000pt;}
.y23_c01258{bottom:61.733333pt;}
.y22_c01258{bottom:83.733333pt;}
.y21_c01258{bottom:106.400000pt;}
.y20_c01258{bottom:127.733333pt;}
.y1f_c01258{bottom:149.600000pt;}
.y1e_c01258{bottom:170.933333pt;}
.y1d_c01258{bottom:192.800000pt;}
.y1c_c01258{bottom:214.533333pt;}
.y1b_c01258{bottom:236.400000pt;}
.y1a_c01258{bottom:258.000000pt;}
.y19_c01258{bottom:279.333333pt;}
.y18_c01258{bottom:300.800000pt;}
.y17_c01258{bottom:322.533333pt;}
.y16_c01258{bottom:344.400000pt;}
.y15_c01258{bottom:366.000000pt;}
.y14_c01258{bottom:387.333333pt;}
.y13_c01258{bottom:409.200000pt;}
.y12_c01258{bottom:434.133333pt;}
.y11_c01258{bottom:450.800000pt;}
.y10_c01258{bottom:472.533333pt;}
.yf_c01258{bottom:493.733333pt;}
.ye_c01258{bottom:515.600000pt;}
.yd_c01258{bottom:537.200000pt;}
.yc_c01258{bottom:558.800000pt;}
.yb_c01258{bottom:579.600000pt;}
.ya_c01258{bottom:601.466667pt;}
.y9_c01258{bottom:623.066667pt;}
.y8_c01258{bottom:643.733333pt;}
.y7_c01258{bottom:665.066667pt;}
.y6_c01258{bottom:687.200000pt;}
.y5_c01258{bottom:708.933333pt;}
.y4_c01258{bottom:730.133333pt;}
.y3_c01258{bottom:751.466667pt;}
.y2_c01258{bottom:773.333333pt;}
.y1_c01258{bottom:807.333333pt;}
.ha_c01258{height:11.733399pt;}
.hb_c01258{height:38.937500pt;}
.h9_c01258{height:51.062500pt;}
.h6_c01258{height:59.300781pt;}
.h5_c01258{height:64.149740pt;}
.h7_c01258{height:67.526042pt;}
.h3_c01258{height:70.664062pt;}
.h8_c01258{height:74.906250pt;}
.h4_c01258{height:81.031250pt;}
.h2_c01258{height:88.940104pt;}
.h1_c01258{height:856.666667pt;}
.h0_c01258{height:856.800000pt;}
.w2_c01258{width:93.222667pt;}
.w0_c01258{width:583.200000pt;}
.w1_c01258{width:583.333333pt;}
.x0_c01258{left:0.000000pt;}
.xc_c01258{left:45.200000pt;}
.x2_c01258{left:48.266667pt;}
.x8_c01258{left:49.733333pt;}
.x5_c01258{left:50.666667pt;}
.x7_c01258{left:52.400000pt;}
.x3_c01258{left:53.333333pt;}
.x6_c01258{left:54.533333pt;}
.x4_c01258{left:56.000000pt;}
.xa_c01258{left:59.066667pt;}
.xb_c01258{left:60.533333pt;}
.xd_c01258{left:62.000000pt;}
.x9_c01258{left:72.800000pt;}
.x1_c01258{left:102.800000pt;}
.xf_c01258{left:248.768229pt;}
.xe_c01258{left:344.133333pt;}
}





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

.ir_c01259:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01259{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01259;src:url('chunks/assets/font_ee1cf2961b45721739d88a9e.woff2')format("woff");}.ff1_c01259{font-family:ff1_c01259;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01259;src:url('chunks/assets/font_50366820f1ad6189e4b1ea07.woff2')format("woff");}.ff2_c01259{font-family:ff2_c01259;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01259;src:url('chunks/assets/font_7adeee8eb4179122220b247e.woff2')format("woff");}.ff3_c01259{font-family:ff3_c01259;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01259;src:url('chunks/assets/font_56b827db08f07ac1df1e2bdc.woff2')format("woff");}.ff4_c01259{font-family:ff4_c01259;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01259;src:url('chunks/assets/font_dd17a895f51f98d042f6f804.woff2')format("woff");}.ff5_c01259{font-family:ff5_c01259;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01259;src:url('chunks/assets/font_5ff511861f2f8c7855175706.woff2')format("woff");}.ff6_c01259{font-family:ff6_c01259;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01259;src:url('chunks/assets/font_48c2c24e8225607b22f4d386.woff2')format("woff");}.ff7_c01259{font-family:ff7_c01259;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c01259;src:url('chunks/assets/font_28fb40522410300d81588dcc.woff2')format("woff");}.ff8_c01259{font-family:ff8_c01259;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c01259;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff9_c01259{font-family:ff9_c01259;line-height:1.219238;font-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_c01259{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m0_c01259{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01259{vertical-align:0.000000px;}
.ls4_c01259{letter-spacing:-9.000000px;}
.ls1_c01259{letter-spacing:0.000000px;}
.ls2_c01259{letter-spacing:3.000000px;}
.ls3_c01259{letter-spacing:12.000000px;}
.ls0_c01259{letter-spacing:13.020000px;}
.sc__c01259{text-shadow:none;}
.sc0_c01259{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01259{-webkit-text-stroke:0px transparent;}
.sc0_c01259{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01259{word-spacing:-67.686000px;}
.ws6_c01259{word-spacing:-47.100000px;}
.ws0_c01259{word-spacing:-30.702000px;}
.ws5_c01259{word-spacing:-20.250000px;}
.ws2_c01259{word-spacing:-17.352000px;}
.ws3_c01259{word-spacing:-17.250000px;}
.ws7_c01259{word-spacing:0.000000px;}
.ws4_c01259{word-spacing:4.800000px;}
._22_c01259{margin-left:-38.400000px;}
._2d_c01259{margin-left:-35.637000px;}
._2e_c01259{margin-left:-34.230000px;}
._12_c01259{margin-left:-32.724000px;}
._2f_c01259{margin-left:-31.368000px;}
._2_c01259{margin-left:-30.360000px;}
._26_c01259{margin-left:-28.404000px;}
._17_c01259{margin-left:-27.216000px;}
._2b_c01259{margin-left:-26.085000px;}
._2a_c01259{margin-left:-23.466000px;}
._28_c01259{margin-left:-22.122000px;}
._3_c01259{margin-left:-20.400000px;}
._1_c01259{margin-left:-19.200000px;}
._27_c01259{margin-left:-18.117000px;}
._24_c01259{margin-left:-16.728000px;}
._14_c01259{margin-left:-15.396000px;}
._30_c01259{margin-left:-14.379000px;}
._29_c01259{margin-left:-13.296000px;}
._19_c01259{margin-left:-12.219000px;}
._25_c01259{margin-left:-10.446000px;}
._1c_c01259{margin-left:-8.997000px;}
._23_c01259{margin-left:-7.242000px;}
._c_c01259{margin-left:-5.448000px;}
._a_c01259{margin-left:-4.080000px;}
._d_c01259{margin-left:-3.078000px;}
._f_c01259{margin-left:-1.845000px;}
._9_c01259{width:1.122000px;}
._6_c01259{width:2.244000px;}
._7_c01259{width:3.672000px;}
._8_c01259{width:5.610000px;}
._b_c01259{width:6.885000px;}
._11_c01259{width:8.130000px;}
._10_c01259{width:9.234000px;}
._1a_c01259{width:10.416000px;}
._e_c01259{width:12.051000px;}
._15_c01259{width:13.959000px;}
._1d_c01259{width:17.100000px;}
._1e_c01259{width:19.008000px;}
._2c_c01259{width:20.340000px;}
._18_c01259{width:22.557000px;}
._20_c01259{width:23.562000px;}
._0_c01259{width:24.858000px;}
._21_c01259{width:27.612000px;}
._1b_c01259{width:35.781000px;}
._5_c01259{width:40.902000px;}
._1f_c01259{width:45.612000px;}
._16_c01259{width:50.418000px;}
._4_c01259{width:93.600000px;}
._13_c01259{width:355.917000px;}
.fc2_c01259{color:transparent;}
.fc1_c01259{color:rgb(128,128,128);}
.fc0_c01259{color:rgb(0,0,0);}
.fsa_c01259{font-size:36.000000px;}
.fsb_c01259{font-size:48.000000px;}
.fs8_c01259{font-size:51.000000px;}
.fs5_c01259{font-size:63.000000px;}
.fs7_c01259{font-size:66.000000px;}
.fs6_c01259{font-size:69.000000px;}
.fs4_c01259{font-size:72.000000px;}
.fs2_c01259{font-size:81.000000px;}
.fs3_c01259{font-size:87.000000px;}
.fs0_c01259{font-size:102.000000px;}
.fs9_c01259{font-size:108.000000px;}
.fs1_c01259{font-size:120.000000px;}
.y0_c01259{bottom:0.000000px;}
.y25_c01259{bottom:3.105000px;}
.y24_c01259{bottom:7.228371px;}
.y23_c01259{bottom:69.315000px;}
.y22_c01259{bottom:92.115000px;}
.y21_c01259{bottom:117.465000px;}
.y20_c01259{bottom:142.815000px;}
.y1f_c01259{bottom:165.765000px;}
.y1e_c01259{bottom:191.115000px;}
.y1d_c01259{bottom:214.665000px;}
.y1c_c01259{bottom:241.065000px;}
.y1b_c01259{bottom:264.915000px;}
.y1a_c01259{bottom:289.215000px;}
.y19_c01259{bottom:313.665000px;}
.y18_c01259{bottom:339.915000px;}
.y17_c01259{bottom:362.115000px;}
.y16_c01259{bottom:386.865000px;}
.y15_c01259{bottom:411.765000px;}
.y14_c01259{bottom:438.165000px;}
.y13_c01259{bottom:462.465000px;}
.y12_c01259{bottom:484.065000px;}
.y11_c01259{bottom:510.615000px;}
.y10_c01259{bottom:534.315000px;}
.yf_c01259{bottom:558.015000px;}
.ye_c01259{bottom:578.565000px;}
.yd_c01259{bottom:606.465000px;}
.yc_c01259{bottom:630.915000px;}
.yb_c01259{bottom:654.465000px;}
.ya_c01259{bottom:680.715000px;}
.y9_c01259{bottom:704.415000px;}
.y8_c01259{bottom:729.015000px;}
.y7_c01259{bottom:752.715000px;}
.y6_c01259{bottom:777.015000px;}
.y5_c01259{bottom:823.815000px;}
.y4_c01259{bottom:850.215000px;}
.y3_c01259{bottom:873.915000px;}
.y2_c01259{bottom:899.115000px;}
.y1_c01259{bottom:930.465000px;}
.ha_c01259{height:13.200074px;}
.hb_c01259{height:43.804688px;}
.h3_c01259{height:79.497070px;}
.h7_c01259{height:81.632812px;}
.h6_c01259{height:83.563477px;}
.h5_c01259{height:84.269531px;}
.h4_c01259{height:91.176000px;}
.h9_c01259{height:104.839927px;}
.h8_c01259{height:108.843750px;}
.h2_c01259{height:120.937500px;}
.h1_c01259{height:986.250000px;}
.h0_c01259{height:986.325000px;}
.w2_c01259{width:104.875500px;}
.w0_c01259{width:667.425000px;}
.w1_c01259{width:667.500000px;}
.x0_c01259{left:0.000000px;}
.x3_c01259{left:28.350000px;}
.x1_c01259{left:112.650000px;}
.x2_c01259{left:114.300000px;}
.x4_c01259{left:115.800000px;}
.x5_c01259{left:116.850000px;}
.xc_c01259{left:117.900000px;}
.xd_c01259{left:119.100000px;}
.x7_c01259{left:141.750000px;}
.x6_c01259{left:191.400000px;}
.xf_c01259{left:285.526749px;}
.x8_c01259{left:399.900000px;}
.x9_c01259{left:415.500000px;}
.xa_c01259{left:473.850000px;}
.xb_c01259{left:503.100000px;}
.xe_c01259{left:576.900000px;}
@media print{
.v0_c01259{vertical-align:0.000000pt;}
.ls4_c01259{letter-spacing:-8.000000pt;}
.ls1_c01259{letter-spacing:0.000000pt;}
.ls2_c01259{letter-spacing:2.666667pt;}
.ls3_c01259{letter-spacing:10.666667pt;}
.ls0_c01259{letter-spacing:11.573333pt;}
.ws1_c01259{word-spacing:-60.165333pt;}
.ws6_c01259{word-spacing:-41.866667pt;}
.ws0_c01259{word-spacing:-27.290667pt;}
.ws5_c01259{word-spacing:-18.000000pt;}
.ws2_c01259{word-spacing:-15.424000pt;}
.ws3_c01259{word-spacing:-15.333333pt;}
.ws7_c01259{word-spacing:0.000000pt;}
.ws4_c01259{word-spacing:4.266667pt;}
._22_c01259{margin-left:-34.133333pt;}
._2d_c01259{margin-left:-31.677333pt;}
._2e_c01259{margin-left:-30.426667pt;}
._12_c01259{margin-left:-29.088000pt;}
._2f_c01259{margin-left:-27.882667pt;}
._2_c01259{margin-left:-26.986667pt;}
._26_c01259{margin-left:-25.248000pt;}
._17_c01259{margin-left:-24.192000pt;}
._2b_c01259{margin-left:-23.186667pt;}
._2a_c01259{margin-left:-20.858667pt;}
._28_c01259{margin-left:-19.664000pt;}
._3_c01259{margin-left:-18.133333pt;}
._1_c01259{margin-left:-17.066667pt;}
._27_c01259{margin-left:-16.104000pt;}
._24_c01259{margin-left:-14.869333pt;}
._14_c01259{margin-left:-13.685333pt;}
._30_c01259{margin-left:-12.781333pt;}
._29_c01259{margin-left:-11.818667pt;}
._19_c01259{margin-left:-10.861333pt;}
._25_c01259{margin-left:-9.285333pt;}
._1c_c01259{margin-left:-7.997333pt;}
._23_c01259{margin-left:-6.437333pt;}
._c_c01259{margin-left:-4.842667pt;}
._a_c01259{margin-left:-3.626667pt;}
._d_c01259{margin-left:-2.736000pt;}
._f_c01259{margin-left:-1.640000pt;}
._9_c01259{width:0.997333pt;}
._6_c01259{width:1.994667pt;}
._7_c01259{width:3.264000pt;}
._8_c01259{width:4.986667pt;}
._b_c01259{width:6.120000pt;}
._11_c01259{width:7.226667pt;}
._10_c01259{width:8.208000pt;}
._1a_c01259{width:9.258667pt;}
._e_c01259{width:10.712000pt;}
._15_c01259{width:12.408000pt;}
._1d_c01259{width:15.200000pt;}
._1e_c01259{width:16.896000pt;}
._2c_c01259{width:18.080000pt;}
._18_c01259{width:20.050667pt;}
._20_c01259{width:20.944000pt;}
._0_c01259{width:22.096000pt;}
._21_c01259{width:24.544000pt;}
._1b_c01259{width:31.805333pt;}
._5_c01259{width:36.357333pt;}
._1f_c01259{width:40.544000pt;}
._16_c01259{width:44.816000pt;}
._4_c01259{width:83.200000pt;}
._13_c01259{width:316.370667pt;}
.fsa_c01259{font-size:32.000000pt;}
.fsb_c01259{font-size:42.666667pt;}
.fs8_c01259{font-size:45.333333pt;}
.fs5_c01259{font-size:56.000000pt;}
.fs7_c01259{font-size:58.666667pt;}
.fs6_c01259{font-size:61.333333pt;}
.fs4_c01259{font-size:64.000000pt;}
.fs2_c01259{font-size:72.000000pt;}
.fs3_c01259{font-size:77.333333pt;}
.fs0_c01259{font-size:90.666667pt;}
.fs9_c01259{font-size:96.000000pt;}
.fs1_c01259{font-size:106.666667pt;}
.y0_c01259{bottom:0.000000pt;}
.y25_c01259{bottom:2.760000pt;}
.y24_c01259{bottom:6.425219pt;}
.y23_c01259{bottom:61.613333pt;}
.y22_c01259{bottom:81.880000pt;}
.y21_c01259{bottom:104.413333pt;}
.y20_c01259{bottom:126.946667pt;}
.y1f_c01259{bottom:147.346667pt;}
.y1e_c01259{bottom:169.880000pt;}
.y1d_c01259{bottom:190.813333pt;}
.y1c_c01259{bottom:214.280000pt;}
.y1b_c01259{bottom:235.480000pt;}
.y1a_c01259{bottom:257.080000pt;}
.y19_c01259{bottom:278.813333pt;}
.y18_c01259{bottom:302.146667pt;}
.y17_c01259{bottom:321.880000pt;}
.y16_c01259{bottom:343.880000pt;}
.y15_c01259{bottom:366.013333pt;}
.y14_c01259{bottom:389.480000pt;}
.y13_c01259{bottom:411.080000pt;}
.y12_c01259{bottom:430.280000pt;}
.y11_c01259{bottom:453.880000pt;}
.y10_c01259{bottom:474.946667pt;}
.yf_c01259{bottom:496.013333pt;}
.ye_c01259{bottom:514.280000pt;}
.yd_c01259{bottom:539.080000pt;}
.yc_c01259{bottom:560.813333pt;}
.yb_c01259{bottom:581.746667pt;}
.ya_c01259{bottom:605.080000pt;}
.y9_c01259{bottom:626.146667pt;}
.y8_c01259{bottom:648.013333pt;}
.y7_c01259{bottom:669.080000pt;}
.y6_c01259{bottom:690.680000pt;}
.y5_c01259{bottom:732.280000pt;}
.y4_c01259{bottom:755.746667pt;}
.y3_c01259{bottom:776.813333pt;}
.y2_c01259{bottom:799.213333pt;}
.y1_c01259{bottom:827.080000pt;}
.ha_c01259{height:11.733399pt;}
.hb_c01259{height:38.937500pt;}
.h3_c01259{height:70.664062pt;}
.h7_c01259{height:72.562500pt;}
.h6_c01259{height:74.278646pt;}
.h5_c01259{height:74.906250pt;}
.h4_c01259{height:81.045333pt;}
.h9_c01259{height:93.191046pt;}
.h8_c01259{height:96.750000pt;}
.h2_c01259{height:107.500000pt;}
.h1_c01259{height:876.666667pt;}
.h0_c01259{height:876.733333pt;}
.w2_c01259{width:93.222667pt;}
.w0_c01259{width:593.266667pt;}
.w1_c01259{width:593.333333pt;}
.x0_c01259{left:0.000000pt;}
.x3_c01259{left:25.200000pt;}
.x1_c01259{left:100.133333pt;}
.x2_c01259{left:101.600000pt;}
.x4_c01259{left:102.933333pt;}
.x5_c01259{left:103.866667pt;}
.xc_c01259{left:104.800000pt;}
.xd_c01259{left:105.866667pt;}
.x7_c01259{left:126.000000pt;}
.x6_c01259{left:170.133333pt;}
.xf_c01259{left:253.801554pt;}
.x8_c01259{left:355.466667pt;}
.x9_c01259{left:369.333333pt;}
.xa_c01259{left:421.200000pt;}
.xb_c01259{left:447.200000pt;}
.xe_c01259{left:512.800000pt;}
}





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

.ir_c01260:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01260{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01260;src:url('chunks/assets/font_6d915a11ae4e3a7189e00dfd.woff2')format("woff");}.ff1_c01260{font-family:ff1_c01260;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01260;src:url('chunks/assets/font_462c0e6d471bb1a2bb6bf21f.woff2')format("woff");}.ff2_c01260{font-family:ff2_c01260;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01260;src:url('chunks/assets/font_9cbaabf417945ccb77290718.woff2')format("woff");}.ff3_c01260{font-family:ff3_c01260;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01260;src:url('chunks/assets/font_6911b213f5430c568c1fcf14.woff2')format("woff");}.ff4_c01260{font-family:ff4_c01260;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01260;src:url('chunks/assets/font_488213dab1e188366631fb61.woff2')format("woff");}.ff5_c01260{font-family:ff5_c01260;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01260;src:url('chunks/assets/font_3f9f0088072d505d48c50d60.woff2')format("woff");}.ff6_c01260{font-family:ff6_c01260;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01260;src:url('chunks/assets/font_ab3c08dfe54b17edd0f9ad94.woff2')format("woff");}.ff7_c01260{font-family:ff7_c01260;line-height:1.311035;font-style:normal;font-weight: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_c01260;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff8_c01260{font-family:ff8_c01260;line-height:1.219238;font-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_c01260{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m0_c01260{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01260{vertical-align:0.000000px;}
.v1_c01260{vertical-align:160.800000px;}
.ls2_c01260{letter-spacing:0.000000px;}
.ls1_c01260{letter-spacing:3.000000px;}
.ls0_c01260{letter-spacing:16.915200px;}
.sc__c01260{text-shadow:none;}
.sc0_c01260{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01260{-webkit-text-stroke:0px transparent;}
.sc0_c01260{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01260{word-spacing:-194.940000px;}
.ws0_c01260{word-spacing:-59.184000px;}
.ws2_c01260{word-spacing:0.000000px;}
._23_c01260{margin-left:-27.612000px;}
._1f_c01260{margin-left:-24.348000px;}
._21_c01260{margin-left:-15.756000px;}
._17_c01260{margin-left:-10.920000px;}
._18_c01260{margin-left:-9.906000px;}
._e_c01260{margin-left:-8.268000px;}
._16_c01260{margin-left:-6.942000px;}
._22_c01260{margin-left:-5.022000px;}
._5_c01260{margin-left:-3.744000px;}
._0_c01260{margin-left:-1.872000px;}
._19_c01260{width:1.014000px;}
._1_c01260{width:2.106000px;}
._3_c01260{width:3.276000px;}
._2_c01260{width:4.524000px;}
._9_c01260{width:5.616000px;}
._7_c01260{width:7.020000px;}
._a_c01260{width:8.658000px;}
._1b_c01260{width:9.750000px;}
._1a_c01260{width:10.998000px;}
._1c_c01260{width:12.246000px;}
._11_c01260{width:13.728000px;}
._12_c01260{width:15.600000px;}
._13_c01260{width:19.110000px;}
._14_c01260{width:20.202000px;}
._1d_c01260{width:22.230000px;}
._6_c01260{width:23.244000px;}
._20_c01260{width:25.482000px;}
._c_c01260{width:27.612000px;}
._4_c01260{width:29.562000px;}
._d_c01260{width:31.512000px;}
._27_c01260{width:32.760000px;}
._25_c01260{width:33.774000px;}
._26_c01260{width:36.150000px;}
._f_c01260{width:38.298000px;}
._b_c01260{width:40.092000px;}
._1e_c01260{width:42.042000px;}
._8_c01260{width:46.956000px;}
._24_c01260{width:49.062000px;}
._10_c01260{width:52.338000px;}
._15_c01260{width:253.812000px;}
._28_c01260{width:348.228000px;}
.fc2_c01260{color:transparent;}
.fc1_c01260{color:rgb(128,128,128);}
.fc0_c01260{color:rgb(0,0,0);}
.fs5_c01260{font-size:48.000000px;}
.fs3_c01260{font-size:62.400000px;}
.fs0_c01260{font-size:72.000000px;}
.fs1_c01260{font-size:78.000000px;}
.fs4_c01260{font-size:108.000000px;}
.fs2_c01260{font-size:270.000000px;}
.y0_c01260{bottom:0.000000px;}
.y26_c01260{bottom:3.105000px;}
.y25_c01260{bottom:7.228369px;}
.y24_c01260{bottom:57.270000px;}
.y23_c01260{bottom:81.270000px;}
.y22_c01260{bottom:106.620000px;}
.y21_c01260{bottom:131.220000px;}
.y20_c01260{bottom:155.220000px;}
.y1f_c01260{bottom:180.120000px;}
.y1e_c01260{bottom:204.570000px;}
.y1d_c01260{bottom:228.720000px;}
.y1c_c01260{bottom:252.420000px;}
.y1b_c01260{bottom:277.470000px;}
.y1a_c01260{bottom:302.070000px;}
.y19_c01260{bottom:326.070000px;}
.y18_c01260{bottom:350.670000px;}
.y17_c01260{bottom:374.970000px;}
.y16_c01260{bottom:399.870000px;}
.y15_c01260{bottom:423.270000px;}
.y14_c01260{bottom:447.570000px;}
.y13_c01260{bottom:471.720000px;}
.y12_c01260{bottom:496.470000px;}
.y11_c01260{bottom:520.020000px;}
.y10_c01260{bottom:544.320000px;}
.yf_c01260{bottom:567.720000px;}
.ye_c01260{bottom:593.220000px;}
.yd_c01260{bottom:616.170000px;}
.yc_c01260{bottom:640.470000px;}
.ya_c01260{bottom:648.570000px;}
.yb_c01260{bottom:664.470000px;}
.y9_c01260{bottom:709.320000px;}
.y8_c01260{bottom:735.720000px;}
.y7_c01260{bottom:760.620000px;}
.y6_c01260{bottom:784.920000px;}
.y5_c01260{bottom:809.670000px;}
.y4_c01260{bottom:833.220000px;}
.y3_c01260{bottom:859.320000px;}
.y1_c01260{bottom:869.370000px;}
.y2_c01260{bottom:881.820000px;}
.h6_c01260{height:13.200073px;}
.h7_c01260{height:43.804688px;}
.h2_c01260{height:83.226000px;}
.h1_c01260{height:84.269531px;}
.h4_c01260{height:98.756836px;}
.h5_c01260{height:108.843750px;}
.h3_c01260{height:264.990234px;}
.h0_c01260{height:975.750000px;}
.w2_c01260{width:104.875500px;}
.w0_c01260{width:664.200000px;}
.w1_c01260{width:664.500000px;}
.x0_c01260{left:0.000000px;}
.x2_c01260{left:33.000000px;}
.x3_c01260{left:34.800000px;}
.x6_c01260{left:35.850000px;}
.x7_c01260{left:36.900000px;}
.x4_c01260{left:40.500000px;}
.x5_c01260{left:88.800000px;}
.x9_c01260{left:283.914230px;}
.x8_c01260{left:355.800000px;}
.x1_c01260{left:604.350000px;}
@media print{
.v0_c01260{vertical-align:0.000000pt;}
.v1_c01260{vertical-align:142.933333pt;}
.ls2_c01260{letter-spacing:0.000000pt;}
.ls1_c01260{letter-spacing:2.666667pt;}
.ls0_c01260{letter-spacing:15.035733pt;}
.ws1_c01260{word-spacing:-173.280000pt;}
.ws0_c01260{word-spacing:-52.608000pt;}
.ws2_c01260{word-spacing:0.000000pt;}
._23_c01260{margin-left:-24.544000pt;}
._1f_c01260{margin-left:-21.642667pt;}
._21_c01260{margin-left:-14.005333pt;}
._17_c01260{margin-left:-9.706667pt;}
._18_c01260{margin-left:-8.805333pt;}
._e_c01260{margin-left:-7.349333pt;}
._16_c01260{margin-left:-6.170667pt;}
._22_c01260{margin-left:-4.464000pt;}
._5_c01260{margin-left:-3.328000pt;}
._0_c01260{margin-left:-1.664000pt;}
._19_c01260{width:0.901333pt;}
._1_c01260{width:1.872000pt;}
._3_c01260{width:2.912000pt;}
._2_c01260{width:4.021333pt;}
._9_c01260{width:4.992000pt;}
._7_c01260{width:6.240000pt;}
._a_c01260{width:7.696000pt;}
._1b_c01260{width:8.666667pt;}
._1a_c01260{width:9.776000pt;}
._1c_c01260{width:10.885333pt;}
._11_c01260{width:12.202667pt;}
._12_c01260{width:13.866667pt;}
._13_c01260{width:16.986667pt;}
._14_c01260{width:17.957333pt;}
._1d_c01260{width:19.760000pt;}
._6_c01260{width:20.661333pt;}
._20_c01260{width:22.650667pt;}
._c_c01260{width:24.544000pt;}
._4_c01260{width:26.277333pt;}
._d_c01260{width:28.010667pt;}
._27_c01260{width:29.120000pt;}
._25_c01260{width:30.021333pt;}
._26_c01260{width:32.133333pt;}
._f_c01260{width:34.042667pt;}
._b_c01260{width:35.637333pt;}
._1e_c01260{width:37.370667pt;}
._8_c01260{width:41.738667pt;}
._24_c01260{width:43.610667pt;}
._10_c01260{width:46.522667pt;}
._15_c01260{width:225.610667pt;}
._28_c01260{width:309.536000pt;}
.fs5_c01260{font-size:42.666667pt;}
.fs3_c01260{font-size:55.466667pt;}
.fs0_c01260{font-size:64.000000pt;}
.fs1_c01260{font-size:69.333333pt;}
.fs4_c01260{font-size:96.000000pt;}
.fs2_c01260{font-size:240.000000pt;}
.y0_c01260{bottom:0.000000pt;}
.y26_c01260{bottom:2.760000pt;}
.y25_c01260{bottom:6.425217pt;}
.y24_c01260{bottom:50.906667pt;}
.y23_c01260{bottom:72.240000pt;}
.y22_c01260{bottom:94.773333pt;}
.y21_c01260{bottom:116.640000pt;}
.y20_c01260{bottom:137.973333pt;}
.y1f_c01260{bottom:160.106667pt;}
.y1e_c01260{bottom:181.840000pt;}
.y1d_c01260{bottom:203.306667pt;}
.y1c_c01260{bottom:224.373333pt;}
.y1b_c01260{bottom:246.640000pt;}
.y1a_c01260{bottom:268.506667pt;}
.y19_c01260{bottom:289.840000pt;}
.y18_c01260{bottom:311.706667pt;}
.y17_c01260{bottom:333.306667pt;}
.y16_c01260{bottom:355.440000pt;}
.y15_c01260{bottom:376.240000pt;}
.y14_c01260{bottom:397.840000pt;}
.y13_c01260{bottom:419.306667pt;}
.y12_c01260{bottom:441.306667pt;}
.y11_c01260{bottom:462.240000pt;}
.y10_c01260{bottom:483.840000pt;}
.yf_c01260{bottom:504.640000pt;}
.ye_c01260{bottom:527.306667pt;}
.yd_c01260{bottom:547.706667pt;}
.yc_c01260{bottom:569.306667pt;}
.ya_c01260{bottom:576.506667pt;}
.yb_c01260{bottom:590.640000pt;}
.y9_c01260{bottom:630.506667pt;}
.y8_c01260{bottom:653.973333pt;}
.y7_c01260{bottom:676.106667pt;}
.y6_c01260{bottom:697.706667pt;}
.y5_c01260{bottom:719.706667pt;}
.y4_c01260{bottom:740.640000pt;}
.y3_c01260{bottom:763.840000pt;}
.y1_c01260{bottom:772.773333pt;}
.y2_c01260{bottom:783.840000pt;}
.h6_c01260{height:11.733399pt;}
.h7_c01260{height:38.937500pt;}
.h2_c01260{height:73.978667pt;}
.h1_c01260{height:74.906250pt;}
.h4_c01260{height:87.783854pt;}
.h5_c01260{height:96.750000pt;}
.h3_c01260{height:235.546875pt;}
.h0_c01260{height:867.333333pt;}
.w2_c01260{width:93.222667pt;}
.w0_c01260{width:590.400000pt;}
.w1_c01260{width:590.666667pt;}
.x0_c01260{left:0.000000pt;}
.x2_c01260{left:29.333333pt;}
.x3_c01260{left:30.933333pt;}
.x6_c01260{left:31.866667pt;}
.x7_c01260{left:32.800000pt;}
.x4_c01260{left:36.000000pt;}
.x5_c01260{left:78.933333pt;}
.x9_c01260{left:252.368205pt;}
.x8_c01260{left:316.266667pt;}
.x1_c01260{left:537.200000pt;}
}





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

.ir_c01261:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01261{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01261;src:url('chunks/assets/font_ac909c227a21c4f1594eebbc.woff2')format("woff");}.ff1_c01261{font-family:ff1_c01261;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01261;src:url('chunks/assets/font_6d5e1f3f43b9206ef695cd04.woff2')format("woff");}.ff2_c01261{font-family:ff2_c01261;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01261;src:url('chunks/assets/font_5300fa2d0b3fcb82e0f6f459.woff2')format("woff");}.ff3_c01261{font-family:ff3_c01261;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01261;src:url('chunks/assets/font_0938a867efcd701c511d3d0f.woff2')format("woff");}.ff4_c01261{font-family:ff4_c01261;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01261;src:url('chunks/assets/font_67aba6e3829295e6e4aabe81.woff2')format("woff");}.ff5_c01261{font-family:ff5_c01261;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01261;src:url('chunks/assets/font_9e7bc3b4953b2a1ec6f7ba02.woff2')format("woff");}.ff6_c01261{font-family:ff6_c01261;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01261;src:url('chunks/assets/font_4f15c1bfe58fb72a67cfa25a.woff2')format("woff");}.ff7_c01261{font-family:ff7_c01261;line-height:1.284180;font-style:normal;font-weight: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_c01261;src:url('chunks/assets/font_3e175fd91d5cf5665a4b41a6.woff2')format("woff");}.ff8_c01261{font-family:ff8_c01261;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c01261;src:url('chunks/assets/font_2a6ceda9fc0adb4b49e1de6f.woff2')format("woff");}.ff9_c01261{font-family:ff9_c01261;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c01261;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ffa_c01261{font-family:ffa_c01261;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01261{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c01261{vertical-align:-21.600000px;}
.v0_c01261{vertical-align:0.000000px;}
.ls2_c01261{letter-spacing:0.000000px;}
.ls3_c01261{letter-spacing:3.000000px;}
.ls0_c01261{letter-spacing:4.674000px;}
.ls1_c01261{letter-spacing:47.232000px;}
.sc__c01261{text-shadow:none;}
.sc0_c01261{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01261{-webkit-text-stroke:0px transparent;}
.sc0_c01261{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01261{word-spacing:-17.352000px;}
.ws1_c01261{word-spacing:-13.737000px;}
.ws3_c01261{word-spacing:0.000000px;}
.ws2_c01261{word-spacing:4.947000px;}
._a_c01261{margin-left:-21.294000px;}
._3_c01261{margin-left:-19.344000px;}
._21_c01261{margin-left:-17.163000px;}
._0_c01261{margin-left:-16.128000px;}
._20_c01261{margin-left:-14.892000px;}
._1_c01261{margin-left:-13.392000px;}
._c_c01261{margin-left:-11.700000px;}
._13_c01261{margin-left:-9.282000px;}
._12_c01261{margin-left:-7.488000px;}
._11_c01261{margin-left:-5.460000px;}
._1b_c01261{margin-left:-4.368000px;}
._1d_c01261{margin-left:-3.312000px;}
._10_c01261{margin-left:-2.262000px;}
._e_c01261{margin-left:-1.116000px;}
._6_c01261{width:1.248000px;}
._5_c01261{width:2.808000px;}
._7_c01261{width:4.134000px;}
._8_c01261{width:5.616000px;}
._9_c01261{width:7.488000px;}
._28_c01261{width:8.514000px;}
._16_c01261{width:9.624000px;}
._14_c01261{width:10.842000px;}
._24_c01261{width:12.141000px;}
._15_c01261{width:13.386000px;}
._f_c01261{width:14.766000px;}
._26_c01261{width:18.954000px;}
._22_c01261{width:20.217000px;}
._1f_c01261{width:21.990000px;}
._27_c01261{width:24.156000px;}
._2c_c01261{width:26.127000px;}
._25_c01261{width:28.080000px;}
._1c_c01261{width:30.012000px;}
._17_c01261{width:31.824000px;}
._1e_c01261{width:34.050000px;}
._23_c01261{width:36.438000px;}
._2d_c01261{width:45.342000px;}
._18_c01261{width:47.664000px;}
._2_c01261{width:69.498000px;}
._2b_c01261{width:83.097000px;}
._2a_c01261{width:92.313000px;}
._4_c01261{width:120.198000px;}
._d_c01261{width:133.380000px;}
._b_c01261{width:151.320000px;}
._19_c01261{width:194.130000px;}
._1a_c01261{width:195.258000px;}
._29_c01261{width:396.177000px;}
.fc2_c01261{color:transparent;}
.fc1_c01261{color:rgb(128,128,128);}
.fc0_c01261{color:rgb(0,0,0);}
.fs4_c01261{font-size:45.000000px;}
.fsb_c01261{font-size:48.000000px;}
.fsa_c01261{font-size:51.000000px;}
.fs5_c01261{font-size:54.000000px;}
.fs7_c01261{font-size:57.000000px;}
.fs9_c01261{font-size:60.000000px;}
.fs2_c01261{font-size:63.000000px;}
.fs6_c01261{font-size:66.000000px;}
.fs0_c01261{font-size:72.000000px;}
.fs3_c01261{font-size:75.000000px;}
.fs1_c01261{font-size:78.000000px;}
.fs8_c01261{font-size:87.000000px;}
.y0_c01261{bottom:0.000000px;}
.y24_c01261{bottom:3.105000px;}
.y23_c01261{bottom:7.228371px;}
.y22_c01261{bottom:73.965000px;}
.y21_c01261{bottom:97.665000px;}
.y20_c01261{bottom:122.565000px;}
.y1f_c01261{bottom:147.465000px;}
.y1e_c01261{bottom:171.765000px;}
.y1d_c01261{bottom:195.165000px;}
.y1c_c01261{bottom:244.815000px;}
.y1b_c01261{bottom:270.315000px;}
.y1a_c01261{bottom:294.015000px;}
.y19_c01261{bottom:323.115000px;}
.y18_c01261{bottom:342.915000px;}
.y17_c01261{bottom:369.315000px;}
.y16_c01261{bottom:391.215000px;}
.y15_c01261{bottom:417.165000px;}
.y14_c01261{bottom:440.415000px;}
.y13_c01261{bottom:465.165000px;}
.y12_c01261{bottom:489.015000px;}
.y11_c01261{bottom:513.015000px;}
.y10_c01261{bottom:537.015000px;}
.yf_c01261{bottom:561.315000px;}
.ye_c01261{bottom:585.315000px;}
.yd_c01261{bottom:609.915000px;}
.yc_c01261{bottom:633.615000px;}
.yb_c01261{bottom:658.815000px;}
.ya_c01261{bottom:682.215000px;}
.y9_c01261{bottom:706.815000px;}
.y8_c01261{bottom:731.115000px;}
.y7_c01261{bottom:755.415000px;}
.y6_c01261{bottom:778.665000px;}
.y5_c01261{bottom:803.715000px;}
.y4_c01261{bottom:827.865000px;}
.y3_c01261{bottom:852.315000px;}
.y2_c01261{bottom:875.565000px;}
.y1_c01261{bottom:900.165000px;}
.ha_c01261{height:13.200074px;}
.hb_c01261{height:43.804688px;}
.h9_c01261{height:51.398438px;}
.h6_c01261{height:66.713379px;}
.h8_c01261{height:72.168457px;}
.h3_c01261{height:83.226000px;}
.h2_c01261{height:84.269531px;}
.h4_c01261{height:91.160156px;}
.h5_c01261{height:98.756836px;}
.h7_c01261{height:110.151855px;}
.h1_c01261{height:986.250000px;}
.h0_c01261{height:986.325000px;}
.w2_c01261{width:104.875500px;}
.w0_c01261{width:667.425000px;}
.w1_c01261{width:667.500000px;}
.x0_c01261{left:0.000000px;}
.xa_c01261{left:31.050000px;}
.x2_c01261{left:46.500000px;}
.x5_c01261{left:51.900000px;}
.x1_c01261{left:54.450000px;}
.x6_c01261{left:103.950000px;}
.xf_c01261{left:111.750000px;}
.x8_c01261{left:115.800000px;}
.x4_c01261{left:118.050000px;}
.x9_c01261{left:119.850000px;}
.x7_c01261{left:121.050000px;}
.x3_c01261{left:122.850000px;}
.xe_c01261{left:165.000000px;}
.xc_c01261{left:176.400000px;}
.xb_c01261{left:215.700000px;}
.x11_c01261{left:285.526749px;}
.xd_c01261{left:306.750000px;}
.x10_c01261{left:586.800000px;}
@media print{
.v1_c01261{vertical-align:-19.200000pt;}
.v0_c01261{vertical-align:0.000000pt;}
.ls2_c01261{letter-spacing:0.000000pt;}
.ls3_c01261{letter-spacing:2.666667pt;}
.ls0_c01261{letter-spacing:4.154667pt;}
.ls1_c01261{letter-spacing:41.984000pt;}
.ws0_c01261{word-spacing:-15.424000pt;}
.ws1_c01261{word-spacing:-12.210667pt;}
.ws3_c01261{word-spacing:0.000000pt;}
.ws2_c01261{word-spacing:4.397333pt;}
._a_c01261{margin-left:-18.928000pt;}
._3_c01261{margin-left:-17.194667pt;}
._21_c01261{margin-left:-15.256000pt;}
._0_c01261{margin-left:-14.336000pt;}
._20_c01261{margin-left:-13.237333pt;}
._1_c01261{margin-left:-11.904000pt;}
._c_c01261{margin-left:-10.400000pt;}
._13_c01261{margin-left:-8.250667pt;}
._12_c01261{margin-left:-6.656000pt;}
._11_c01261{margin-left:-4.853333pt;}
._1b_c01261{margin-left:-3.882667pt;}
._1d_c01261{margin-left:-2.944000pt;}
._10_c01261{margin-left:-2.010667pt;}
._e_c01261{margin-left:-0.992000pt;}
._6_c01261{width:1.109333pt;}
._5_c01261{width:2.496000pt;}
._7_c01261{width:3.674667pt;}
._8_c01261{width:4.992000pt;}
._9_c01261{width:6.656000pt;}
._28_c01261{width:7.568000pt;}
._16_c01261{width:8.554667pt;}
._14_c01261{width:9.637333pt;}
._24_c01261{width:10.792000pt;}
._15_c01261{width:11.898667pt;}
._f_c01261{width:13.125333pt;}
._26_c01261{width:16.848000pt;}
._22_c01261{width:17.970667pt;}
._1f_c01261{width:19.546667pt;}
._27_c01261{width:21.472000pt;}
._2c_c01261{width:23.224000pt;}
._25_c01261{width:24.960000pt;}
._1c_c01261{width:26.677333pt;}
._17_c01261{width:28.288000pt;}
._1e_c01261{width:30.266667pt;}
._23_c01261{width:32.389333pt;}
._2d_c01261{width:40.304000pt;}
._18_c01261{width:42.368000pt;}
._2_c01261{width:61.776000pt;}
._2b_c01261{width:73.864000pt;}
._2a_c01261{width:82.056000pt;}
._4_c01261{width:106.842667pt;}
._d_c01261{width:118.560000pt;}
._b_c01261{width:134.506667pt;}
._19_c01261{width:172.560000pt;}
._1a_c01261{width:173.562667pt;}
._29_c01261{width:352.157333pt;}
.fs4_c01261{font-size:40.000000pt;}
.fsb_c01261{font-size:42.666667pt;}
.fsa_c01261{font-size:45.333333pt;}
.fs5_c01261{font-size:48.000000pt;}
.fs7_c01261{font-size:50.666667pt;}
.fs9_c01261{font-size:53.333333pt;}
.fs2_c01261{font-size:56.000000pt;}
.fs6_c01261{font-size:58.666667pt;}
.fs0_c01261{font-size:64.000000pt;}
.fs3_c01261{font-size:66.666667pt;}
.fs1_c01261{font-size:69.333333pt;}
.fs8_c01261{font-size:77.333333pt;}
.y0_c01261{bottom:0.000000pt;}
.y24_c01261{bottom:2.760000pt;}
.y23_c01261{bottom:6.425219pt;}
.y22_c01261{bottom:65.746667pt;}
.y21_c01261{bottom:86.813333pt;}
.y20_c01261{bottom:108.946667pt;}
.y1f_c01261{bottom:131.080000pt;}
.y1e_c01261{bottom:152.680000pt;}
.y1d_c01261{bottom:173.480000pt;}
.y1c_c01261{bottom:217.613333pt;}
.y1b_c01261{bottom:240.280000pt;}
.y1a_c01261{bottom:261.346667pt;}
.y19_c01261{bottom:287.213333pt;}
.y18_c01261{bottom:304.813333pt;}
.y17_c01261{bottom:328.280000pt;}
.y16_c01261{bottom:347.746667pt;}
.y15_c01261{bottom:370.813333pt;}
.y14_c01261{bottom:391.480000pt;}
.y13_c01261{bottom:413.480000pt;}
.y12_c01261{bottom:434.680000pt;}
.y11_c01261{bottom:456.013333pt;}
.y10_c01261{bottom:477.346667pt;}
.yf_c01261{bottom:498.946667pt;}
.ye_c01261{bottom:520.280000pt;}
.yd_c01261{bottom:542.146667pt;}
.yc_c01261{bottom:563.213333pt;}
.yb_c01261{bottom:585.613333pt;}
.ya_c01261{bottom:606.413333pt;}
.y9_c01261{bottom:628.280000pt;}
.y8_c01261{bottom:649.880000pt;}
.y7_c01261{bottom:671.480000pt;}
.y6_c01261{bottom:692.146667pt;}
.y5_c01261{bottom:714.413333pt;}
.y4_c01261{bottom:735.880000pt;}
.y3_c01261{bottom:757.613333pt;}
.y2_c01261{bottom:778.280000pt;}
.y1_c01261{bottom:800.146667pt;}
.ha_c01261{height:11.733399pt;}
.hb_c01261{height:38.937500pt;}
.h9_c01261{height:45.687500pt;}
.h6_c01261{height:59.300781pt;}
.h8_c01261{height:64.149740pt;}
.h3_c01261{height:73.978667pt;}
.h2_c01261{height:74.906250pt;}
.h4_c01261{height:81.031250pt;}
.h5_c01261{height:87.783854pt;}
.h7_c01261{height:97.912760pt;}
.h1_c01261{height:876.666667pt;}
.h0_c01261{height:876.733333pt;}
.w2_c01261{width:93.222667pt;}
.w0_c01261{width:593.266667pt;}
.w1_c01261{width:593.333333pt;}
.x0_c01261{left:0.000000pt;}
.xa_c01261{left:27.600000pt;}
.x2_c01261{left:41.333333pt;}
.x5_c01261{left:46.133333pt;}
.x1_c01261{left:48.400000pt;}
.x6_c01261{left:92.400000pt;}
.xf_c01261{left:99.333333pt;}
.x8_c01261{left:102.933333pt;}
.x4_c01261{left:104.933333pt;}
.x9_c01261{left:106.533333pt;}
.x7_c01261{left:107.600000pt;}
.x3_c01261{left:109.200000pt;}
.xe_c01261{left:146.666667pt;}
.xc_c01261{left:156.800000pt;}
.xb_c01261{left:191.733333pt;}
.x11_c01261{left:253.801554pt;}
.xd_c01261{left:272.666667pt;}
.x10_c01261{left:521.600000pt;}
}





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

.ir_c01262:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01262{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01262;src:url('chunks/assets/font_a936867d035954edb4852681.woff2')format("woff");}.ff1_c01262{font-family:ff1_c01262;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01262;src:url('chunks/assets/font_0edead5d825caa74771f6079.woff2')format("woff");}.ff2_c01262{font-family:ff2_c01262;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01262;src:url('chunks/assets/font_2662ea457b992fe91a9ded90.woff2')format("woff");}.ff3_c01262{font-family:ff3_c01262;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01262;src:url('chunks/assets/font_eeed040b7532345f3b8b3838.woff2')format("woff");}.ff4_c01262{font-family:ff4_c01262;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01262;src:url('chunks/assets/font_58bd4fae885d5792fc626bf0.woff2')format("woff");}.ff5_c01262{font-family:ff5_c01262;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01262;src:url('chunks/assets/font_39b50e0a9c9f63aaf1be4f11.woff2')format("woff");}.ff6_c01262{font-family:ff6_c01262;line-height:1.437000;font-style:normal;font-weight: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_c01262;src:url('chunks/assets/font_39f4c02e824fdf8e0be68625.woff2')format("woff");}.ff7_c01262{font-family:ff7_c01262;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c01262;src:url('chunks/assets/font_9ab975c9a9b3eefb2184114f.woff2')format("woff");}.ff8_c01262{font-family:ff8_c01262;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c01262;src:url('chunks/assets/font_1b5cd400fd94a740394cf856.woff2')format("woff");}.ff9_c01262{font-family:ff9_c01262;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c01262;src:url('chunks/assets/font_a42e76fb090e88fab528b083.woff2')format("woff");}.ffa_c01262{font-family:ffa_c01262;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c01262;src:url('chunks/assets/font_d31270a2745d829550065551.woff2')format("woff");}.ffb_c01262{font-family:ffb_c01262;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc_c01262;src:url('chunks/assets/font_a722cb9b5ae4faf0035e8345.woff2')format("woff");}.ffc_c01262{font-family:ffc_c01262;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd_c01262;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ffd_c01262{font-family:ffd_c01262;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01262{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01262{vertical-align:0.000000px;}
.v1_c01262{vertical-align:160.800000px;}
.ls3_c01262{letter-spacing:0.000000px;}
.ls2_c01262{letter-spacing:3.000000px;}
.ls1_c01262{letter-spacing:9.300000px;}
.ls0_c01262{letter-spacing:9.564000px;}
.sc__c01262{text-shadow:none;}
.sc0_c01262{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01262{-webkit-text-stroke:0px transparent;}
.sc0_c01262{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c01262{word-spacing:-71.250000px;}
.ws1_c01262{word-spacing:-67.686000px;}
.ws2_c01262{word-spacing:-20.250000px;}
.ws0_c01262{word-spacing:-17.352000px;}
.ws4_c01262{word-spacing:-16.926000px;}
.ws3_c01262{word-spacing:-15.750000px;}
.ws6_c01262{word-spacing:-0.048000px;}
.ws7_c01262{word-spacing:0.000000px;}
._1b_c01262{margin-left:-23.631000px;}
._5_c01262{margin-left:-17.850000px;}
._7_c01262{margin-left:-12.138000px;}
._10_c01262{margin-left:-9.234000px;}
._e_c01262{margin-left:-8.040000px;}
._8_c01262{margin-left:-6.936000px;}
._6_c01262{margin-left:-4.998000px;}
._f_c01262{margin-left:-3.465000px;}
._9_c01262{margin-left:-2.448000px;}
._a_c01262{margin-left:-1.122000px;}
._d_c01262{width:1.488000px;}
._1_c01262{width:2.754000px;}
._4_c01262{width:3.876000px;}
._3_c01262{width:5.202000px;}
._18_c01262{width:6.204000px;}
._0_c01262{width:7.242000px;}
._12_c01262{width:8.463000px;}
._2_c01262{width:9.792000px;}
._16_c01262{width:10.872000px;}
._14_c01262{width:11.988000px;}
._11_c01262{width:13.377000px;}
._17_c01262{width:15.156000px;}
._13_c01262{width:17.106000px;}
._15_c01262{width:18.879000px;}
._1f_c01262{width:22.059000px;}
._c_c01262{width:24.273000px;}
._1a_c01262{width:25.725000px;}
._1e_c01262{width:27.162000px;}
._2b_c01262{width:28.392000px;}
._1c_c01262{width:29.838000px;}
._29_c01262{width:32.295000px;}
._27_c01262{width:33.666000px;}
._28_c01262{width:34.761000px;}
._20_c01262{width:36.954000px;}
._2a_c01262{width:41.808000px;}
._24_c01262{width:44.403000px;}
._22_c01262{width:63.285000px;}
._2c_c01262{width:66.978000px;}
._b_c01262{width:78.327000px;}
._23_c01262{width:90.006000px;}
._26_c01262{width:126.234000px;}
._25_c01262{width:128.181000px;}
._1d_c01262{width:141.732000px;}
._21_c01262{width:162.852000px;}
._19_c01262{width:367.881000px;}
.fc2_c01262{color:transparent;}
.fc1_c01262{color:rgb(128,128,128);}
.fc0_c01262{color:rgb(0,0,0);}
.fs5_c01262{font-size:48.000000px;}
.fs9_c01262{font-size:60.000000px;}
.fs4_c01262{font-size:63.000000px;}
.fs8_c01262{font-size:69.000000px;}
.fs3_c01262{font-size:72.000000px;}
.fs6_c01262{font-size:78.000000px;}
.fs2_c01262{font-size:81.000000px;}
.fs1_c01262{font-size:87.000000px;}
.fs0_c01262{font-size:102.000000px;}
.fs7_c01262{font-size:285.000000px;}
.y0_c01262{bottom:0.000000px;}
.y26_c01262{bottom:3.105000px;}
.y25_c01262{bottom:7.228355px;}
.y24_c01262{bottom:74.535000px;}
.y23_c01262{bottom:96.885000px;}
.y22_c01262{bottom:121.785000px;}
.y21_c01262{bottom:147.435000px;}
.y20_c01262{bottom:172.485000px;}
.y1e_c01262{bottom:181.185000px;}
.y1f_c01262{bottom:196.635000px;}
.y1d_c01262{bottom:244.635000px;}
.y1c_c01262{bottom:269.535000px;}
.y1b_c01262{bottom:293.835000px;}
.y1a_c01262{bottom:318.285000px;}
.y19_c01262{bottom:342.885000px;}
.y18_c01262{bottom:368.235000px;}
.y17_c01262{bottom:391.785000px;}
.y16_c01262{bottom:416.685000px;}
.y15_c01262{bottom:440.085000px;}
.y14_c01262{bottom:464.685000px;}
.y13_c01262{bottom:488.385000px;}
.y12_c01262{bottom:512.685000px;}
.y11_c01262{bottom:536.535000px;}
.y10_c01262{bottom:560.535000px;}
.yf_c01262{bottom:584.535000px;}
.ye_c01262{bottom:608.535000px;}
.yd_c01262{bottom:634.035000px;}
.yc_c01262{bottom:655.635000px;}
.yb_c01262{bottom:680.385000px;}
.ya_c01262{bottom:704.685000px;}
.y9_c01262{bottom:728.535000px;}
.y8_c01262{bottom:752.835000px;}
.y7_c01262{bottom:779.985000px;}
.y6_c01262{bottom:801.435000px;}
.y5_c01262{bottom:825.735000px;}
.y4_c01262{bottom:849.435000px;}
.y3_c01262{bottom:872.985000px;}
.y2_c01262{bottom:897.285000px;}
.y1_c01262{bottom:932.835000px;}
.hc_c01262{height:13.200074px;}
.hd_c01262{height:43.804688px;}
.h9_c01262{height:66.024000px;}
.h4_c01262{height:79.497070px;}
.h6_c01262{height:83.226000px;}
.h5_c01262{height:84.269531px;}
.hb_c01262{height:87.361816px;}
.h3_c01262{height:91.160156px;}
.h7_c01262{height:91.176000px;}
.h2_c01262{height:100.057617px;}
.h8_c01262{height:110.151855px;}
.ha_c01262{height:279.711914px;}
.h0_c01262{height:977.925000px;}
.h1_c01262{height:978.000000px;}
.w2_c01262{width:104.875500px;}
.w0_c01262{width:665.850000px;}
.w1_c01262{width:666.000000px;}
.x0_c01262{left:0.000000px;}
.x7_c01262{left:21.300000px;}
.x8_c01262{left:25.350000px;}
.x5_c01262{left:26.700000px;}
.x4_c01262{left:28.050000px;}
.x2_c01262{left:30.150000px;}
.x3_c01262{left:31.350000px;}
.x1_c01262{left:44.850000px;}
.x6_c01262{left:80.100000px;}
.xa_c01262{left:284.739258px;}
.x9_c01262{left:487.650000px;}
@media print{
.v0_c01262{vertical-align:0.000000pt;}
.v1_c01262{vertical-align:142.933333pt;}
.ls3_c01262{letter-spacing:0.000000pt;}
.ls2_c01262{letter-spacing:2.666667pt;}
.ls1_c01262{letter-spacing:8.266667pt;}
.ls0_c01262{letter-spacing:8.501333pt;}
.ws5_c01262{word-spacing:-63.333333pt;}
.ws1_c01262{word-spacing:-60.165333pt;}
.ws2_c01262{word-spacing:-18.000000pt;}
.ws0_c01262{word-spacing:-15.424000pt;}
.ws4_c01262{word-spacing:-15.045333pt;}
.ws3_c01262{word-spacing:-14.000000pt;}
.ws6_c01262{word-spacing:-0.042667pt;}
.ws7_c01262{word-spacing:0.000000pt;}
._1b_c01262{margin-left:-21.005333pt;}
._5_c01262{margin-left:-15.866667pt;}
._7_c01262{margin-left:-10.789333pt;}
._10_c01262{margin-left:-8.208000pt;}
._e_c01262{margin-left:-7.146667pt;}
._8_c01262{margin-left:-6.165333pt;}
._6_c01262{margin-left:-4.442667pt;}
._f_c01262{margin-left:-3.080000pt;}
._9_c01262{margin-left:-2.176000pt;}
._a_c01262{margin-left:-0.997333pt;}
._d_c01262{width:1.322667pt;}
._1_c01262{width:2.448000pt;}
._4_c01262{width:3.445333pt;}
._3_c01262{width:4.624000pt;}
._18_c01262{width:5.514667pt;}
._0_c01262{width:6.437333pt;}
._12_c01262{width:7.522667pt;}
._2_c01262{width:8.704000pt;}
._16_c01262{width:9.664000pt;}
._14_c01262{width:10.656000pt;}
._11_c01262{width:11.890667pt;}
._17_c01262{width:13.472000pt;}
._13_c01262{width:15.205333pt;}
._15_c01262{width:16.781333pt;}
._1f_c01262{width:19.608000pt;}
._c_c01262{width:21.576000pt;}
._1a_c01262{width:22.866667pt;}
._1e_c01262{width:24.144000pt;}
._2b_c01262{width:25.237333pt;}
._1c_c01262{width:26.522667pt;}
._29_c01262{width:28.706667pt;}
._27_c01262{width:29.925333pt;}
._28_c01262{width:30.898667pt;}
._20_c01262{width:32.848000pt;}
._2a_c01262{width:37.162667pt;}
._24_c01262{width:39.469333pt;}
._22_c01262{width:56.253333pt;}
._2c_c01262{width:59.536000pt;}
._b_c01262{width:69.624000pt;}
._23_c01262{width:80.005333pt;}
._26_c01262{width:112.208000pt;}
._25_c01262{width:113.938667pt;}
._1d_c01262{width:125.984000pt;}
._21_c01262{width:144.757333pt;}
._19_c01262{width:327.005333pt;}
.fs5_c01262{font-size:42.666667pt;}
.fs9_c01262{font-size:53.333333pt;}
.fs4_c01262{font-size:56.000000pt;}
.fs8_c01262{font-size:61.333333pt;}
.fs3_c01262{font-size:64.000000pt;}
.fs6_c01262{font-size:69.333333pt;}
.fs2_c01262{font-size:72.000000pt;}
.fs1_c01262{font-size:77.333333pt;}
.fs0_c01262{font-size:90.666667pt;}
.fs7_c01262{font-size:253.333333pt;}
.y0_c01262{bottom:0.000000pt;}
.y26_c01262{bottom:2.760000pt;}
.y25_c01262{bottom:6.425204pt;}
.y24_c01262{bottom:66.253333pt;}
.y23_c01262{bottom:86.120000pt;}
.y22_c01262{bottom:108.253333pt;}
.y21_c01262{bottom:131.053333pt;}
.y20_c01262{bottom:153.320000pt;}
.y1e_c01262{bottom:161.053333pt;}
.y1f_c01262{bottom:174.786667pt;}
.y1d_c01262{bottom:217.453333pt;}
.y1c_c01262{bottom:239.586667pt;}
.y1b_c01262{bottom:261.186667pt;}
.y1a_c01262{bottom:282.920000pt;}
.y19_c01262{bottom:304.786667pt;}
.y18_c01262{bottom:327.320000pt;}
.y17_c01262{bottom:348.253333pt;}
.y16_c01262{bottom:370.386667pt;}
.y15_c01262{bottom:391.186667pt;}
.y14_c01262{bottom:413.053333pt;}
.y13_c01262{bottom:434.120000pt;}
.y12_c01262{bottom:455.720000pt;}
.y11_c01262{bottom:476.920000pt;}
.y10_c01262{bottom:498.253333pt;}
.yf_c01262{bottom:519.586667pt;}
.ye_c01262{bottom:540.920000pt;}
.yd_c01262{bottom:563.586667pt;}
.yc_c01262{bottom:582.786667pt;}
.yb_c01262{bottom:604.786667pt;}
.ya_c01262{bottom:626.386667pt;}
.y9_c01262{bottom:647.586667pt;}
.y8_c01262{bottom:669.186667pt;}
.y7_c01262{bottom:693.320000pt;}
.y6_c01262{bottom:712.386667pt;}
.y5_c01262{bottom:733.986667pt;}
.y4_c01262{bottom:755.053333pt;}
.y3_c01262{bottom:775.986667pt;}
.y2_c01262{bottom:797.586667pt;}
.y1_c01262{bottom:829.186667pt;}
.hc_c01262{height:11.733399pt;}
.hd_c01262{height:38.937500pt;}
.h9_c01262{height:58.688000pt;}
.h4_c01262{height:70.664062pt;}
.h6_c01262{height:73.978667pt;}
.h5_c01262{height:74.906250pt;}
.hb_c01262{height:77.654948pt;}
.h3_c01262{height:81.031250pt;}
.h7_c01262{height:81.045333pt;}
.h2_c01262{height:88.940104pt;}
.h8_c01262{height:97.912760pt;}
.ha_c01262{height:248.632812pt;}
.h0_c01262{height:869.266667pt;}
.h1_c01262{height:869.333333pt;}
.w2_c01262{width:93.222667pt;}
.w0_c01262{width:591.866667pt;}
.w1_c01262{width:592.000000pt;}
.x0_c01262{left:0.000000pt;}
.x7_c01262{left:18.933333pt;}
.x8_c01262{left:22.533333pt;}
.x5_c01262{left:23.733333pt;}
.x4_c01262{left:24.933333pt;}
.x2_c01262{left:26.800000pt;}
.x3_c01262{left:27.866667pt;}
.x1_c01262{left:39.866667pt;}
.x6_c01262{left:71.200000pt;}
.xa_c01262{left:253.101563pt;}
.x9_c01262{left:433.466667pt;}
}





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

.ir_c01263:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01263{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01263;src:url('chunks/assets/font_38be0f4159f48d15563bdcce.woff2')format("woff");}.ff1_c01263{font-family:ff1_c01263;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01263;src:url('chunks/assets/font_1cfbabd0eb553da011583221.woff2')format("woff");}.ff2_c01263{font-family:ff2_c01263;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01263;src:url('chunks/assets/font_8d016d97b6ede0fb98a3e7d6.woff2')format("woff");}.ff3_c01263{font-family:ff3_c01263;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01263;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff4_c01263{font-family:ff4_c01263;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01263;src:url('chunks/assets/font_fc368983e5c254b33edd5171.woff2')format("woff");}.ff5_c01263{font-family:ff5_c01263;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01263;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c01263{font-family:ff6_c01263;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01263{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01263{vertical-align:0.000000px;}
.ls3_c01263{letter-spacing:0.000000px;}
.ls1_c01263{letter-spacing:13.545600px;}
.ls2_c01263{letter-spacing:13.656000px;}
.ls0_c01263{letter-spacing:19.500000px;}
.sc__c01263{text-shadow:none;}
.sc0_c01263{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01263{-webkit-text-stroke:0px transparent;}
.sc0_c01263{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01263{word-spacing:-20.250000px;}
.ws0_c01263{word-spacing:-17.352000px;}
.ws2_c01263{word-spacing:0.000000px;}
._16_c01263{margin-left:-18.063000px;}
._23_c01263{margin-left:-14.661000px;}
._6_c01263{margin-left:-12.636000px;}
._21_c01263{margin-left:-10.182000px;}
._1c_c01263{margin-left:-9.153000px;}
._18_c01263{margin-left:-7.392000px;}
._4_c01263{margin-left:-5.265000px;}
._d_c01263{margin-left:-4.050000px;}
._5_c01263{margin-left:-2.430000px;}
._f_c01263{margin-left:-1.134000px;}
._3_c01263{width:1.458000px;}
._2_c01263{width:2.511000px;}
._1_c01263{width:4.212000px;}
._0_c01263{width:5.427000px;}
._b_c01263{width:7.128000px;}
._e_c01263{width:8.505000px;}
._8_c01263{width:9.558000px;}
._15_c01263{width:10.854000px;}
._9_c01263{width:12.069000px;}
._a_c01263{width:13.365000px;}
._12_c01263{width:14.580000px;}
._1a_c01263{width:15.690000px;}
._7_c01263{width:17.091000px;}
._c_c01263{width:18.468000px;}
._1b_c01263{width:20.271000px;}
._19_c01263{width:21.582000px;}
._1f_c01263{width:23.247000px;}
._24_c01263{width:24.624000px;}
._20_c01263{width:26.325000px;}
._11_c01263{width:28.350000px;}
._1e_c01263{width:32.157000px;}
._14_c01263{width:34.506000px;}
._22_c01263{width:36.207000px;}
._10_c01263{width:38.232000px;}
._13_c01263{width:46.899000px;}
._1d_c01263{width:216.594000px;}
._17_c01263{width:222.795000px;}
.fc2_c01263{color:transparent;}
.fc1_c01263{color:rgb(128,128,128);}
.fc0_c01263{color:rgb(0,0,0);}
.fs4_c01263{font-size:48.000000px;}
.fs3_c01263{font-size:57.600000px;}
.fs1_c01263{font-size:72.000000px;}
.fs0_c01263{font-size:81.000000px;}
.fs2_c01263{font-size:87.000000px;}
.y0_c01263{bottom:0.000000px;}
.y25_c01263{bottom:3.105000px;}
.y24_c01263{bottom:7.228371px;}
.y23_c01263{bottom:80.715000px;}
.y22_c01263{bottom:102.915000px;}
.y21_c01263{bottom:128.715000px;}
.y20_c01263{bottom:152.865000px;}
.y1f_c01263{bottom:177.165000px;}
.y1e_c01263{bottom:200.565000px;}
.y1d_c01263{bottom:226.815000px;}
.y1c_c01263{bottom:250.815000px;}
.y1b_c01263{bottom:275.415000px;}
.y1a_c01263{bottom:300.165000px;}
.y19_c01263{bottom:325.065000px;}
.y18_c01263{bottom:350.115000px;}
.y17_c01263{bottom:373.065000px;}
.y16_c01263{bottom:397.665000px;}
.y15_c01263{bottom:422.565000px;}
.y14_c01263{bottom:446.265000px;}
.y13_c01263{bottom:470.565000px;}
.y12_c01263{bottom:494.865000px;}
.y11_c01263{bottom:519.465000px;}
.y10_c01263{bottom:543.015000px;}
.yf_c01263{bottom:567.315000px;}
.ye_c01263{bottom:590.715000px;}
.yd_c01263{bottom:615.015000px;}
.yc_c01263{bottom:638.865000px;}
.yb_c01263{bottom:663.165000px;}
.ya_c01263{bottom:687.465000px;}
.y9_c01263{bottom:711.165000px;}
.y8_c01263{bottom:735.765000px;}
.y7_c01263{bottom:759.165000px;}
.y6_c01263{bottom:783.765000px;}
.y5_c01263{bottom:809.415000px;}
.y4_c01263{bottom:831.615000px;}
.y3_c01263{bottom:855.315000px;}
.y2_c01263{bottom:879.315000px;}
.y1_c01263{bottom:903.465000px;}
.h6_c01263{height:13.200074px;}
.h7_c01263{height:43.804688px;}
.h2_c01263{height:79.497070px;}
.h3_c01263{height:84.269531px;}
.h5_c01263{height:91.160156px;}
.h4_c01263{height:91.176000px;}
.h1_c01263{height:986.250000px;}
.h0_c01263{height:986.325000px;}
.w2_c01263{width:104.875500px;}
.w0_c01263{width:667.425000px;}
.w1_c01263{width:667.500000px;}
.x0_c01263{left:0.000000px;}
.x3_c01263{left:25.350000px;}
.x9_c01263{left:30.150000px;}
.xc_c01263{left:31.950000px;}
.xd_c01263{left:110.250000px;}
.x5_c01263{left:112.500000px;}
.x1_c01263{left:113.850000px;}
.x2_c01263{left:115.050000px;}
.x4_c01263{left:116.100000px;}
.x6_c01263{left:117.450000px;}
.x7_c01263{left:118.500000px;}
.x8_c01263{left:119.700000px;}
.xb_c01263{left:120.900000px;}
.xa_c01263{left:121.950000px;}
.xf_c01263{left:285.526749px;}
.xe_c01263{left:587.850000px;}
@media print{
.v0_c01263{vertical-align:0.000000pt;}
.ls3_c01263{letter-spacing:0.000000pt;}
.ls1_c01263{letter-spacing:12.040533pt;}
.ls2_c01263{letter-spacing:12.138667pt;}
.ls0_c01263{letter-spacing:17.333333pt;}
.ws1_c01263{word-spacing:-18.000000pt;}
.ws0_c01263{word-spacing:-15.424000pt;}
.ws2_c01263{word-spacing:0.000000pt;}
._16_c01263{margin-left:-16.056000pt;}
._23_c01263{margin-left:-13.032000pt;}
._6_c01263{margin-left:-11.232000pt;}
._21_c01263{margin-left:-9.050667pt;}
._1c_c01263{margin-left:-8.136000pt;}
._18_c01263{margin-left:-6.570667pt;}
._4_c01263{margin-left:-4.680000pt;}
._d_c01263{margin-left:-3.600000pt;}
._5_c01263{margin-left:-2.160000pt;}
._f_c01263{margin-left:-1.008000pt;}
._3_c01263{width:1.296000pt;}
._2_c01263{width:2.232000pt;}
._1_c01263{width:3.744000pt;}
._0_c01263{width:4.824000pt;}
._b_c01263{width:6.336000pt;}
._e_c01263{width:7.560000pt;}
._8_c01263{width:8.496000pt;}
._15_c01263{width:9.648000pt;}
._9_c01263{width:10.728000pt;}
._a_c01263{width:11.880000pt;}
._12_c01263{width:12.960000pt;}
._1a_c01263{width:13.946667pt;}
._7_c01263{width:15.192000pt;}
._c_c01263{width:16.416000pt;}
._1b_c01263{width:18.018667pt;}
._19_c01263{width:19.184000pt;}
._1f_c01263{width:20.664000pt;}
._24_c01263{width:21.888000pt;}
._20_c01263{width:23.400000pt;}
._11_c01263{width:25.200000pt;}
._1e_c01263{width:28.584000pt;}
._14_c01263{width:30.672000pt;}
._22_c01263{width:32.184000pt;}
._10_c01263{width:33.984000pt;}
._13_c01263{width:41.688000pt;}
._1d_c01263{width:192.528000pt;}
._17_c01263{width:198.040000pt;}
.fs4_c01263{font-size:42.666667pt;}
.fs3_c01263{font-size:51.200000pt;}
.fs1_c01263{font-size:64.000000pt;}
.fs0_c01263{font-size:72.000000pt;}
.fs2_c01263{font-size:77.333333pt;}
.y0_c01263{bottom:0.000000pt;}
.y25_c01263{bottom:2.760000pt;}
.y24_c01263{bottom:6.425219pt;}
.y23_c01263{bottom:71.746667pt;}
.y22_c01263{bottom:91.480000pt;}
.y21_c01263{bottom:114.413333pt;}
.y20_c01263{bottom:135.880000pt;}
.y1f_c01263{bottom:157.480000pt;}
.y1e_c01263{bottom:178.280000pt;}
.y1d_c01263{bottom:201.613333pt;}
.y1c_c01263{bottom:222.946667pt;}
.y1b_c01263{bottom:244.813333pt;}
.y1a_c01263{bottom:266.813333pt;}
.y19_c01263{bottom:288.946667pt;}
.y18_c01263{bottom:311.213333pt;}
.y17_c01263{bottom:331.613333pt;}
.y16_c01263{bottom:353.480000pt;}
.y15_c01263{bottom:375.613333pt;}
.y14_c01263{bottom:396.680000pt;}
.y13_c01263{bottom:418.280000pt;}
.y12_c01263{bottom:439.880000pt;}
.y11_c01263{bottom:461.746667pt;}
.y10_c01263{bottom:482.680000pt;}
.yf_c01263{bottom:504.280000pt;}
.ye_c01263{bottom:525.080000pt;}
.yd_c01263{bottom:546.680000pt;}
.yc_c01263{bottom:567.880000pt;}
.yb_c01263{bottom:589.480000pt;}
.ya_c01263{bottom:611.080000pt;}
.y9_c01263{bottom:632.146667pt;}
.y8_c01263{bottom:654.013333pt;}
.y7_c01263{bottom:674.813333pt;}
.y6_c01263{bottom:696.680000pt;}
.y5_c01263{bottom:719.480000pt;}
.y4_c01263{bottom:739.213333pt;}
.y3_c01263{bottom:760.280000pt;}
.y2_c01263{bottom:781.613333pt;}
.y1_c01263{bottom:803.080000pt;}
.h6_c01263{height:11.733399pt;}
.h7_c01263{height:38.937500pt;}
.h2_c01263{height:70.664062pt;}
.h3_c01263{height:74.906250pt;}
.h5_c01263{height:81.031250pt;}
.h4_c01263{height:81.045333pt;}
.h1_c01263{height:876.666667pt;}
.h0_c01263{height:876.733333pt;}
.w2_c01263{width:93.222667pt;}
.w0_c01263{width:593.266667pt;}
.w1_c01263{width:593.333333pt;}
.x0_c01263{left:0.000000pt;}
.x3_c01263{left:22.533333pt;}
.x9_c01263{left:26.800000pt;}
.xc_c01263{left:28.400000pt;}
.xd_c01263{left:98.000000pt;}
.x5_c01263{left:100.000000pt;}
.x1_c01263{left:101.200000pt;}
.x2_c01263{left:102.266667pt;}
.x4_c01263{left:103.200000pt;}
.x6_c01263{left:104.400000pt;}
.x7_c01263{left:105.333333pt;}
.x8_c01263{left:106.400000pt;}
.xb_c01263{left:107.466667pt;}
.xa_c01263{left:108.400000pt;}
.xf_c01263{left:253.801554pt;}
.xe_c01263{left:522.533333pt;}
}





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

.ir_c01264:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01264{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01264;src:url('chunks/assets/font_4322bd60831a4c5f8661e453.woff2')format("woff");}.ff1_c01264{font-family:ff1_c01264;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01264;src:url('chunks/assets/font_d6abc351a8cecb929c6e43ed.woff2')format("woff");}.ff2_c01264{font-family:ff2_c01264;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01264;src:url('chunks/assets/font_fd03983c7698afca4db112d3.woff2')format("woff");}.ff3_c01264{font-family:ff3_c01264;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01264;src:url('chunks/assets/font_86e309b03625c44ff01e277d.woff2')format("woff");}.ff4_c01264{font-family:ff4_c01264;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01264;src:url('chunks/assets/font_25f5bf0fb3253bfc202384e4.woff2')format("woff");}.ff5_c01264{font-family:ff5_c01264;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01264;src:url('chunks/assets/font_82f0241287d311d13ff2f32f.woff2')format("woff");}.ff6_c01264{font-family:ff6_c01264;line-height:1.437000;font-style:normal;font-weight: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_c01264;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c01264{font-family:ff7_c01264;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01264{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01264{vertical-align:0.000000px;}
.v1_c01264{vertical-align:141.600000px;}
.ls4_c01264{letter-spacing:0.000000px;}
.ls2_c01264{letter-spacing:1.500000px;}
.ls1_c01264{letter-spacing:2.148000px;}
.ls3_c01264{letter-spacing:3.000000px;}
.ls0_c01264{letter-spacing:17.016000px;}
.sc__c01264{text-shadow:none;}
.sc0_c01264{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01264{-webkit-text-stroke:0px transparent;}
.sc0_c01264{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01264{word-spacing:-22.521000px;}
.ws2_c01264{word-spacing:-20.250000px;}
.ws3_c01264{word-spacing:-17.352000px;}
.ws1_c01264{word-spacing:-0.123000px;}
.ws4_c01264{word-spacing:0.000000px;}
._3_c01264{margin-left:-30.300000px;}
._1f_c01264{margin-left:-20.388000px;}
._1b_c01264{margin-left:-11.907000px;}
._16_c01264{margin-left:-10.770000px;}
._18_c01264{margin-left:-8.754000px;}
._e_c01264{margin-left:-6.567000px;}
._14_c01264{margin-left:-4.809000px;}
._d_c01264{margin-left:-3.402000px;}
._9_c01264{margin-left:-2.187000px;}
._11_c01264{margin-left:-1.002000px;}
._2_c01264{width:1.545000px;}
._0_c01264{width:2.916000px;}
._1_c01264{width:4.050000px;}
._a_c01264{width:5.103000px;}
._7_c01264{width:6.480000px;}
._8_c01264{width:8.100000px;}
._13_c01264{width:9.882000px;}
._6_c01264{width:11.016000px;}
._c_c01264{width:12.363000px;}
._10_c01264{width:14.349000px;}
._15_c01264{width:16.338000px;}
._5_c01264{width:18.072000px;}
._4_c01264{width:19.128000px;}
._1e_c01264{width:21.591000px;}
._21_c01264{width:22.680000px;}
._f_c01264{width:24.294000px;}
._19_c01264{width:26.163000px;}
._1c_c01264{width:32.919000px;}
._1d_c01264{width:35.289000px;}
._b_c01264{width:36.681000px;}
._22_c01264{width:37.746000px;}
._12_c01264{width:41.658000px;}
._20_c01264{width:43.566000px;}
._17_c01264{width:47.001000px;}
._1a_c01264{width:369.954000px;}
.fc2_c01264{color:transparent;}
.fc1_c01264{color:rgb(128,128,128);}
.fc0_c01264{color:rgb(0,0,0);}
.fs1_c01264{font-size:24.000000px;}
.fs7_c01264{font-size:48.000000px;}
.fs3_c01264{font-size:72.000000px;}
.fs6_c01264{font-size:78.000000px;}
.fs0_c01264{font-size:81.000000px;}
.fs5_c01264{font-size:87.000000px;}
.fs2_c01264{font-size:123.000000px;}
.fs4_c01264{font-size:267.000000px;}
.y0_c01264{bottom:0.000000px;}
.y26_c01264{bottom:3.105000px;}
.y25_c01264{bottom:7.228369px;}
.y24_c01264{bottom:48.270000px;}
.y23_c01264{bottom:72.120000px;}
.y22_c01264{bottom:97.170000px;}
.y21_c01264{bottom:122.070000px;}
.y20_c01264{bottom:146.520000px;}
.y1f_c01264{bottom:171.420000px;}
.y1e_c01264{bottom:195.720000px;}
.y1d_c01264{bottom:220.320000px;}
.y1c_c01264{bottom:244.620000px;}
.y1b_c01264{bottom:269.220000px;}
.y1a_c01264{bottom:293.670000px;}
.y19_c01264{bottom:317.820000px;}
.y18_c01264{bottom:342.120000px;}
.y17_c01264{bottom:366.720000px;}
.y16_c01264{bottom:390.870000px;}
.y15_c01264{bottom:415.020000px;}
.y14_c01264{bottom:439.320000px;}
.y13_c01264{bottom:463.770000px;}
.y12_c01264{bottom:487.320000px;}
.y11_c01264{bottom:511.620000px;}
.y10_c01264{bottom:536.220000px;}
.yf_c01264{bottom:560.220000px;}
.ye_c01264{bottom:583.170000px;}
.yd_c01264{bottom:607.170000px;}
.yc_c01264{bottom:631.320000px;}
.yb_c01264{bottom:655.470000px;}
.ya_c01264{bottom:679.620000px;}
.y9_c01264{bottom:703.920000px;}
.y7_c01264{bottom:716.220000px;}
.y8_c01264{bottom:727.920000px;}
.y6_c01264{bottom:776.520000px;}
.y5_c01264{bottom:800.520000px;}
.y4_c01264{bottom:824.070000px;}
.y3_c01264{bottom:848.520000px;}
.y2_c01264{bottom:872.670000px;}
.y1_c01264{bottom:910.620000px;}
.h9_c01264{height:13.200073px;}
.ha_c01264{height:43.804688px;}
.h2_c01264{height:79.497070px;}
.h8_c01264{height:81.632812px;}
.h7_c01264{height:84.269531px;}
.h6_c01264{height:91.160156px;}
.h4_c01264{height:91.176000px;}
.h5_c01264{height:98.756836px;}
.h1_c01264{height:126.424618px;}
.h3_c01264{height:262.045898px;}
.h0_c01264{height:975.750000px;}
.w2_c01264{width:104.875500px;}
.w0_c01264{width:664.200000px;}
.w1_c01264{width:664.500000px;}
.x0_c01264{left:0.000000px;}
.x2_c01264{left:34.650000px;}
.x1_c01264{left:35.700000px;}
.x3_c01264{left:36.900000px;}
.x5_c01264{left:57.150000px;}
.x4_c01264{left:74.550000px;}
.x7_c01264{left:283.914230px;}
.x6_c01264{left:495.900000px;}
@media print{
.v0_c01264{vertical-align:0.000000pt;}
.v1_c01264{vertical-align:125.866667pt;}
.ls4_c01264{letter-spacing:0.000000pt;}
.ls2_c01264{letter-spacing:1.333333pt;}
.ls1_c01264{letter-spacing:1.909333pt;}
.ls3_c01264{letter-spacing:2.666667pt;}
.ls0_c01264{letter-spacing:15.125333pt;}
.ws0_c01264{word-spacing:-20.018667pt;}
.ws2_c01264{word-spacing:-18.000000pt;}
.ws3_c01264{word-spacing:-15.424000pt;}
.ws1_c01264{word-spacing:-0.109333pt;}
.ws4_c01264{word-spacing:0.000000pt;}
._3_c01264{margin-left:-26.933333pt;}
._1f_c01264{margin-left:-18.122667pt;}
._1b_c01264{margin-left:-10.584000pt;}
._16_c01264{margin-left:-9.573333pt;}
._18_c01264{margin-left:-7.781333pt;}
._e_c01264{margin-left:-5.837333pt;}
._14_c01264{margin-left:-4.274667pt;}
._d_c01264{margin-left:-3.024000pt;}
._9_c01264{margin-left:-1.944000pt;}
._11_c01264{margin-left:-0.890667pt;}
._2_c01264{width:1.373333pt;}
._0_c01264{width:2.592000pt;}
._1_c01264{width:3.600000pt;}
._a_c01264{width:4.536000pt;}
._7_c01264{width:5.760000pt;}
._8_c01264{width:7.200000pt;}
._13_c01264{width:8.784000pt;}
._6_c01264{width:9.792000pt;}
._c_c01264{width:10.989333pt;}
._10_c01264{width:12.754667pt;}
._15_c01264{width:14.522667pt;}
._5_c01264{width:16.064000pt;}
._4_c01264{width:17.002667pt;}
._1e_c01264{width:19.192000pt;}
._21_c01264{width:20.160000pt;}
._f_c01264{width:21.594667pt;}
._19_c01264{width:23.256000pt;}
._1c_c01264{width:29.261333pt;}
._1d_c01264{width:31.368000pt;}
._b_c01264{width:32.605333pt;}
._22_c01264{width:33.552000pt;}
._12_c01264{width:37.029333pt;}
._20_c01264{width:38.725333pt;}
._17_c01264{width:41.778667pt;}
._1a_c01264{width:328.848000pt;}
.fs1_c01264{font-size:21.333333pt;}
.fs7_c01264{font-size:42.666667pt;}
.fs3_c01264{font-size:64.000000pt;}
.fs6_c01264{font-size:69.333333pt;}
.fs0_c01264{font-size:72.000000pt;}
.fs5_c01264{font-size:77.333333pt;}
.fs2_c01264{font-size:109.333333pt;}
.fs4_c01264{font-size:237.333333pt;}
.y0_c01264{bottom:0.000000pt;}
.y26_c01264{bottom:2.760000pt;}
.y25_c01264{bottom:6.425217pt;}
.y24_c01264{bottom:42.906667pt;}
.y23_c01264{bottom:64.106667pt;}
.y22_c01264{bottom:86.373333pt;}
.y21_c01264{bottom:108.506667pt;}
.y20_c01264{bottom:130.240000pt;}
.y1f_c01264{bottom:152.373333pt;}
.y1e_c01264{bottom:173.973333pt;}
.y1d_c01264{bottom:195.840000pt;}
.y1c_c01264{bottom:217.440000pt;}
.y1b_c01264{bottom:239.306667pt;}
.y1a_c01264{bottom:261.040000pt;}
.y19_c01264{bottom:282.506667pt;}
.y18_c01264{bottom:304.106667pt;}
.y17_c01264{bottom:325.973333pt;}
.y16_c01264{bottom:347.440000pt;}
.y15_c01264{bottom:368.906667pt;}
.y14_c01264{bottom:390.506667pt;}
.y13_c01264{bottom:412.240000pt;}
.y12_c01264{bottom:433.173333pt;}
.y11_c01264{bottom:454.773333pt;}
.y10_c01264{bottom:476.640000pt;}
.yf_c01264{bottom:497.973333pt;}
.ye_c01264{bottom:518.373333pt;}
.yd_c01264{bottom:539.706667pt;}
.yc_c01264{bottom:561.173333pt;}
.yb_c01264{bottom:582.640000pt;}
.ya_c01264{bottom:604.106667pt;}
.y9_c01264{bottom:625.706667pt;}
.y7_c01264{bottom:636.640000pt;}
.y8_c01264{bottom:647.040000pt;}
.y6_c01264{bottom:690.240000pt;}
.y5_c01264{bottom:711.573333pt;}
.y4_c01264{bottom:732.506667pt;}
.y3_c01264{bottom:754.240000pt;}
.y2_c01264{bottom:775.706667pt;}
.y1_c01264{bottom:809.440000pt;}
.h9_c01264{height:11.733399pt;}
.ha_c01264{height:38.937500pt;}
.h2_c01264{height:70.664062pt;}
.h8_c01264{height:72.562500pt;}
.h7_c01264{height:74.906250pt;}
.h6_c01264{height:81.031250pt;}
.h4_c01264{height:81.045333pt;}
.h5_c01264{height:87.783854pt;}
.h1_c01264{height:112.377438pt;}
.h3_c01264{height:232.929688pt;}
.h0_c01264{height:867.333333pt;}
.w2_c01264{width:93.222667pt;}
.w0_c01264{width:590.400000pt;}
.w1_c01264{width:590.666667pt;}
.x0_c01264{left:0.000000pt;}
.x2_c01264{left:30.800000pt;}
.x1_c01264{left:31.733333pt;}
.x3_c01264{left:32.800000pt;}
.x5_c01264{left:50.800000pt;}
.x4_c01264{left:66.266667pt;}
.x7_c01264{left:252.368205pt;}
.x6_c01264{left:440.800000pt;}
}





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

.ir_c01265:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01265{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01265;src:url('chunks/assets/font_f67bd51949f76f15ea7785bc.woff2')format("woff");}.ff1_c01265{font-family:ff1_c01265;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01265;src:url('chunks/assets/font_1055ec4b1d56f60105766b6f.woff2')format("woff");}.ff2_c01265{font-family:ff2_c01265;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01265;src:url('chunks/assets/font_5f378ef7047a434ba17c9675.woff2')format("woff");}.ff3_c01265{font-family:ff3_c01265;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01265;src:url('chunks/assets/font_d3286cf475a04720fcd8fef4.woff2')format("woff");}.ff4_c01265{font-family:ff4_c01265;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01265;src:url('chunks/assets/font_1cb729ca9d3d30c5a19f3fde.woff2')format("woff");}.ff5_c01265{font-family:ff5_c01265;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01265;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c01265{font-family:ff6_c01265;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01265{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c01265{vertical-align:-15.000000px;}
.v0_c01265{vertical-align:0.000000px;}
.ls1_c01265{letter-spacing:0.000000px;}
.ls2_c01265{letter-spacing:3.000000px;}
.ls0_c01265{letter-spacing:152.460000px;}
.sc__c01265{text-shadow:none;}
.sc0_c01265{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01265{-webkit-text-stroke:0px transparent;}
.sc0_c01265{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01265{word-spacing:-20.250000px;}
.ws0_c01265{word-spacing:-17.352000px;}
.ws2_c01265{word-spacing:0.000000px;}
._15_c01265{margin-left:-13.701000px;}
._16_c01265{margin-left:-12.489000px;}
._14_c01265{margin-left:-10.569000px;}
._13_c01265{margin-left:-8.322000px;}
._19_c01265{margin-left:-7.167000px;}
._c_c01265{margin-left:-6.024000px;}
._12_c01265{margin-left:-4.992000px;}
._f_c01265{margin-left:-3.774000px;}
._3_c01265{margin-left:-2.673000px;}
._e_c01265{margin-left:-1.176000px;}
._1_c01265{width:1.458000px;}
._a_c01265{width:2.532000px;}
._0_c01265{width:3.564000px;}
._4_c01265{width:5.427000px;}
._17_c01265{width:6.435000px;}
._2_c01265{width:7.452000px;}
._7_c01265{width:9.234000px;}
._6_c01265{width:10.530000px;}
._8_c01265{width:12.069000px;}
._18_c01265{width:13.527000px;}
._5_c01265{width:14.742000px;}
._11_c01265{width:15.834000px;}
._1a_c01265{width:16.857000px;}
._9_c01265{width:18.306000px;}
._10_c01265{width:21.486000px;}
._b_c01265{width:35.235000px;}
._d_c01265{width:104.409000px;}
.fc2_c01265{color:transparent;}
.fc1_c01265{color:rgb(128,128,128);}
.fc0_c01265{color:rgb(0,0,0);}
.fs7_c01265{font-size:48.000000px;}
.fs4_c01265{font-size:57.000000px;}
.fs6_c01265{font-size:60.000000px;}
.fs2_c01265{font-size:63.000000px;}
.fs5_c01265{font-size:69.000000px;}
.fs1_c01265{font-size:72.000000px;}
.fs3_c01265{font-size:78.000000px;}
.fs0_c01265{font-size:81.000000px;}
.y0_c01265{bottom:0.000000px;}
.y23_c01265{bottom:3.105000px;}
.y22_c01265{bottom:7.228363px;}
.y21_c01265{bottom:62.400000px;}
.y20_c01265{bottom:83.700000px;}
.y1f_c01265{bottom:109.350000px;}
.y1e_c01265{bottom:134.100000px;}
.y1d_c01265{bottom:159.900000px;}
.y1c_c01265{bottom:183.900000px;}
.y1b_c01265{bottom:208.950000px;}
.y1a_c01265{bottom:237.300000px;}
.y19_c01265{bottom:282.600000px;}
.y18_c01265{bottom:307.800000px;}
.y17_c01265{bottom:331.500000px;}
.y16_c01265{bottom:379.650000px;}
.y15_c01265{bottom:405.600000px;}
.y14_c01265{bottom:429.750000px;}
.y13_c01265{bottom:453.600000px;}
.y12_c01265{bottom:478.800000px;}
.y11_c01265{bottom:501.900000px;}
.y10_c01265{bottom:526.200000px;}
.yf_c01265{bottom:550.200000px;}
.ye_c01265{bottom:574.500000px;}
.yd_c01265{bottom:598.800000px;}
.yc_c01265{bottom:622.800000px;}
.yb_c01265{bottom:647.400000px;}
.ya_c01265{bottom:672.000000px;}
.y9_c01265{bottom:696.300000px;}
.y8_c01265{bottom:720.000000px;}
.y7_c01265{bottom:744.450000px;}
.y6_c01265{bottom:768.450000px;}
.y5_c01265{bottom:792.450000px;}
.y4_c01265{bottom:816.750000px;}
.y3_c01265{bottom:841.050000px;}
.y2_c01265{bottom:865.350000px;}
.y1_c01265{bottom:890.250000px;}
.h9_c01265{height:13.200074px;}
.ha_c01265{height:43.804688px;}
.h7_c01265{height:67.686035px;}
.h6_c01265{height:72.168457px;}
.h8_c01265{height:75.966797px;}
.h2_c01265{height:79.497070px;}
.h3_c01265{height:84.269531px;}
.h4_c01265{height:91.160156px;}
.h5_c01265{height:98.756836px;}
.h0_c01265{height:980.100000px;}
.h1_c01265{height:980.250000px;}
.w2_c01265{width:104.875500px;}
.w1_c01265{width:663.000000px;}
.w0_c01265{width:663.150000px;}
.x0_c01265{left:0.000000px;}
.x2_c01265{left:23.550000px;}
.x5_c01265{left:104.400000px;}
.xb_c01265{left:106.050000px;}
.xa_c01265{left:107.100000px;}
.x1_c01265{left:109.050000px;}
.x4_c01265{left:110.400000px;}
.x3_c01265{left:117.000000px;}
.x6_c01265{left:151.500000px;}
.x9_c01265{left:161.100000px;}
.x7_c01265{left:195.150000px;}
.x8_c01265{left:275.700000px;}
.xd_c01265{left:283.389267px;}
.xc_c01265{left:564.600000px;}
@media print{
.v1_c01265{vertical-align:-13.333333pt;}
.v0_c01265{vertical-align:0.000000pt;}
.ls1_c01265{letter-spacing:0.000000pt;}
.ls2_c01265{letter-spacing:2.666667pt;}
.ls0_c01265{letter-spacing:135.520000pt;}
.ws1_c01265{word-spacing:-18.000000pt;}
.ws0_c01265{word-spacing:-15.424000pt;}
.ws2_c01265{word-spacing:0.000000pt;}
._15_c01265{margin-left:-12.178667pt;}
._16_c01265{margin-left:-11.101333pt;}
._14_c01265{margin-left:-9.394667pt;}
._13_c01265{margin-left:-7.397333pt;}
._19_c01265{margin-left:-6.370667pt;}
._c_c01265{margin-left:-5.354667pt;}
._12_c01265{margin-left:-4.437333pt;}
._f_c01265{margin-left:-3.354667pt;}
._3_c01265{margin-left:-2.376000pt;}
._e_c01265{margin-left:-1.045333pt;}
._1_c01265{width:1.296000pt;}
._a_c01265{width:2.250667pt;}
._0_c01265{width:3.168000pt;}
._4_c01265{width:4.824000pt;}
._17_c01265{width:5.720000pt;}
._2_c01265{width:6.624000pt;}
._7_c01265{width:8.208000pt;}
._6_c01265{width:9.360000pt;}
._8_c01265{width:10.728000pt;}
._18_c01265{width:12.024000pt;}
._5_c01265{width:13.104000pt;}
._11_c01265{width:14.074667pt;}
._1a_c01265{width:14.984000pt;}
._9_c01265{width:16.272000pt;}
._10_c01265{width:19.098667pt;}
._b_c01265{width:31.320000pt;}
._d_c01265{width:92.808000pt;}
.fs7_c01265{font-size:42.666667pt;}
.fs4_c01265{font-size:50.666667pt;}
.fs6_c01265{font-size:53.333333pt;}
.fs2_c01265{font-size:56.000000pt;}
.fs5_c01265{font-size:61.333333pt;}
.fs1_c01265{font-size:64.000000pt;}
.fs3_c01265{font-size:69.333333pt;}
.fs0_c01265{font-size:72.000000pt;}
.y0_c01265{bottom:0.000000pt;}
.y23_c01265{bottom:2.760000pt;}
.y22_c01265{bottom:6.425212pt;}
.y21_c01265{bottom:55.466667pt;}
.y20_c01265{bottom:74.400000pt;}
.y1f_c01265{bottom:97.200000pt;}
.y1e_c01265{bottom:119.200000pt;}
.y1d_c01265{bottom:142.133333pt;}
.y1c_c01265{bottom:163.466667pt;}
.y1b_c01265{bottom:185.733333pt;}
.y1a_c01265{bottom:210.933333pt;}
.y19_c01265{bottom:251.200000pt;}
.y18_c01265{bottom:273.600000pt;}
.y17_c01265{bottom:294.666667pt;}
.y16_c01265{bottom:337.466667pt;}
.y15_c01265{bottom:360.533333pt;}
.y14_c01265{bottom:382.000000pt;}
.y13_c01265{bottom:403.200000pt;}
.y12_c01265{bottom:425.600000pt;}
.y11_c01265{bottom:446.133333pt;}
.y10_c01265{bottom:467.733333pt;}
.yf_c01265{bottom:489.066667pt;}
.ye_c01265{bottom:510.666667pt;}
.yd_c01265{bottom:532.266667pt;}
.yc_c01265{bottom:553.600000pt;}
.yb_c01265{bottom:575.466667pt;}
.ya_c01265{bottom:597.333333pt;}
.y9_c01265{bottom:618.933333pt;}
.y8_c01265{bottom:640.000000pt;}
.y7_c01265{bottom:661.733333pt;}
.y6_c01265{bottom:683.066667pt;}
.y5_c01265{bottom:704.400000pt;}
.y4_c01265{bottom:726.000000pt;}
.y3_c01265{bottom:747.600000pt;}
.y2_c01265{bottom:769.200000pt;}
.y1_c01265{bottom:791.333333pt;}
.h9_c01265{height:11.733399pt;}
.ha_c01265{height:38.937500pt;}
.h7_c01265{height:60.165365pt;}
.h6_c01265{height:64.149740pt;}
.h8_c01265{height:67.526042pt;}
.h2_c01265{height:70.664062pt;}
.h3_c01265{height:74.906250pt;}
.h4_c01265{height:81.031250pt;}
.h5_c01265{height:87.783854pt;}
.h0_c01265{height:871.200000pt;}
.h1_c01265{height:871.333333pt;}
.w2_c01265{width:93.222667pt;}
.w1_c01265{width:589.333333pt;}
.w0_c01265{width:589.466667pt;}
.x0_c01265{left:0.000000pt;}
.x2_c01265{left:20.933333pt;}
.x5_c01265{left:92.800000pt;}
.xb_c01265{left:94.266667pt;}
.xa_c01265{left:95.200000pt;}
.x1_c01265{left:96.933333pt;}
.x4_c01265{left:98.133333pt;}
.x3_c01265{left:104.000000pt;}
.x6_c01265{left:134.666667pt;}
.x9_c01265{left:143.200000pt;}
.x7_c01265{left:173.466667pt;}
.x8_c01265{left:245.066667pt;}
.xd_c01265{left:251.901571pt;}
.xc_c01265{left:501.866667pt;}
}





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

.ir_c01266:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01266{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01266;src:url('chunks/assets/font_843edb27ae72e50a75763b38.woff2')format("woff");}.ff1_c01266{font-family:ff1_c01266;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01266;src:url('chunks/assets/font_1619bd4487413f3d34ff29c8.woff2')format("woff");}.ff2_c01266{font-family:ff2_c01266;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01266;src:url('chunks/assets/font_c3263931c642f510f7711fd4.woff2')format("woff");}.ff3_c01266{font-family:ff3_c01266;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01266;src:url('chunks/assets/font_9deaa27ee90a041714857927.woff2')format("woff");}.ff4_c01266{font-family:ff4_c01266;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01266;src:url('chunks/assets/font_37349148c2286981d5e7c6bc.woff2')format("woff");}.ff5_c01266{font-family:ff5_c01266;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01266;src:url('chunks/assets/font_f1a937fe7f32b003466c03e8.woff2')format("woff");}.ff6_c01266{font-family:ff6_c01266;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01266;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff7_c01266{font-family:ff7_c01266;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c01266;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff8_c01266{font-family:ff8_c01266;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01266{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01266{vertical-align:0.000000px;}
.ls1_c01266{letter-spacing:0.000000px;}
.ls0_c01266{letter-spacing:5.712000px;}
.sc__c01266{text-shadow:none;}
.sc0_c01266{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01266{-webkit-text-stroke:0px transparent;}
.sc0_c01266{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c01266{word-spacing:-59.184000px;}
.ws0_c01266{word-spacing:-58.482000px;}
.ws1_c01266{word-spacing:-18.000000px;}
.ws4_c01266{word-spacing:-16.926000px;}
.ws2_c01266{word-spacing:-14.400000px;}
.ws5_c01266{word-spacing:0.000000px;}
._14_c01266{margin-left:-34.512000px;}
._9_c01266{margin-left:-21.522000px;}
._1f_c01266{margin-left:-18.426000px;}
._b_c01266{margin-left:-16.218000px;}
._3_c01266{margin-left:-13.464000px;}
._1b_c01266{margin-left:-12.300000px;}
._1e_c01266{margin-left:-9.984000px;}
._1c_c01266{margin-left:-6.270000px;}
._c_c01266{margin-left:-4.488000px;}
._12_c01266{margin-left:-2.916000px;}
._a_c01266{margin-left:-1.530000px;}
._f_c01266{width:1.326000px;}
._d_c01266{width:2.496000px;}
._e_c01266{width:3.666000px;}
._10_c01266{width:4.698000px;}
._4_c01266{width:6.018000px;}
._8_c01266{width:7.140000px;}
._2_c01266{width:8.874000px;}
._7_c01266{width:10.812000px;}
._5_c01266{width:12.240000px;}
._1_c01266{width:13.566000px;}
._15_c01266{width:14.814000px;}
._1a_c01266{width:15.900000px;}
._0_c01266{width:17.748000px;}
._13_c01266{width:18.834000px;}
._11_c01266{width:19.938000px;}
._6_c01266{width:21.828000px;}
._17_c01266{width:24.720000px;}
._18_c01266{width:28.704000px;}
._19_c01266{width:29.796000px;}
._21_c01266{width:30.816000px;}
._20_c01266{width:37.098000px;}
._16_c01266{width:40.152000px;}
._1d_c01266{width:143.631600px;}
.fc2_c01266{color:transparent;}
.fc1_c01266{color:rgb(128,128,128);}
.fc0_c01266{color:rgb(0,0,0);}
.fs5_c01266{font-size:48.000000px;}
.fs4_c01266{font-size:57.600000px;}
.fs3_c01266{font-size:72.000000px;}
.fs1_c01266{font-size:78.000000px;}
.fs2_c01266{font-size:81.000000px;}
.fs0_c01266{font-size:102.000000px;}
.y0_c01266{bottom:0.000000px;}
.y26_c01266{bottom:3.105000px;}
.y25_c01266{bottom:7.228369px;}
.y24_c01266{bottom:69.120000px;}
.y23_c01266{bottom:94.470000px;}
.y22_c01266{bottom:120.420000px;}
.y21_c01266{bottom:145.170000px;}
.y20_c01266{bottom:169.470000px;}
.y1f_c01266{bottom:195.120000px;}
.y1e_c01266{bottom:218.670000px;}
.y1d_c01266{bottom:243.270000px;}
.y1c_c01266{bottom:268.020000px;}
.y1b_c01266{bottom:292.170000px;}
.y1a_c01266{bottom:316.620000px;}
.y19_c01266{bottom:341.220000px;}
.y18_c01266{bottom:364.170000px;}
.y17_c01266{bottom:389.820000px;}
.y16_c01266{bottom:413.670000px;}
.y15_c01266{bottom:438.720000px;}
.y14_c01266{bottom:462.420000px;}
.y13_c01266{bottom:487.020000px;}
.y12_c01266{bottom:511.020000px;}
.y11_c01266{bottom:535.170000px;}
.y10_c01266{bottom:558.570000px;}
.yf_c01266{bottom:582.570000px;}
.ye_c01266{bottom:606.420000px;}
.yd_c01266{bottom:630.420000px;}
.yc_c01266{bottom:654.420000px;}
.yb_c01266{bottom:678.720000px;}
.ya_c01266{bottom:703.020000px;}
.y9_c01266{bottom:727.320000px;}
.y8_c01266{bottom:751.320000px;}
.y7_c01266{bottom:775.620000px;}
.y6_c01266{bottom:800.220000px;}
.y5_c01266{bottom:824.820000px;}
.y4_c01266{bottom:848.520000px;}
.y3_c01266{bottom:873.120000px;}
.y2_c01266{bottom:897.120000px;}
.y1_c01266{bottom:936.570000px;}
.h6_c01266{height:13.200073px;}
.h7_c01266{height:43.804688px;}
.h3_c01266{height:83.226000px;}
.h5_c01266{height:84.269531px;}
.h4_c01266{height:91.160156px;}
.h2_c01266{height:100.057617px;}
.h1_c01266{height:986.250000px;}
.h0_c01266{height:986.550000px;}
.w1_c01266{width:104.875500px;}
.w0_c01266{width:672.000000px;}
.x0_c01266{left:0.000000px;}
.x1_c01266{left:52.650000px;}
.x2_c01266{left:53.700000px;}
.x4_c01266{left:55.050000px;}
.x7_c01266{left:56.250000px;}
.x5_c01266{left:60.450000px;}
.x6_c01266{left:62.100000px;}
.x3_c01266{left:76.950000px;}
.x8_c01266{left:87.150000px;}
.xa_c01266{left:287.814240px;}
.x9_c01266{left:503.550000px;}
@media print{
.v0_c01266{vertical-align:0.000000pt;}
.ls1_c01266{letter-spacing:0.000000pt;}
.ls0_c01266{letter-spacing:5.077333pt;}
.ws3_c01266{word-spacing:-52.608000pt;}
.ws0_c01266{word-spacing:-51.984000pt;}
.ws1_c01266{word-spacing:-16.000000pt;}
.ws4_c01266{word-spacing:-15.045333pt;}
.ws2_c01266{word-spacing:-12.800000pt;}
.ws5_c01266{word-spacing:0.000000pt;}
._14_c01266{margin-left:-30.677333pt;}
._9_c01266{margin-left:-19.130667pt;}
._1f_c01266{margin-left:-16.378667pt;}
._b_c01266{margin-left:-14.416000pt;}
._3_c01266{margin-left:-11.968000pt;}
._1b_c01266{margin-left:-10.933333pt;}
._1e_c01266{margin-left:-8.874667pt;}
._1c_c01266{margin-left:-5.573333pt;}
._c_c01266{margin-left:-3.989333pt;}
._12_c01266{margin-left:-2.592000pt;}
._a_c01266{margin-left:-1.360000pt;}
._f_c01266{width:1.178667pt;}
._d_c01266{width:2.218667pt;}
._e_c01266{width:3.258667pt;}
._10_c01266{width:4.176000pt;}
._4_c01266{width:5.349333pt;}
._8_c01266{width:6.346667pt;}
._2_c01266{width:7.888000pt;}
._7_c01266{width:9.610667pt;}
._5_c01266{width:10.880000pt;}
._1_c01266{width:12.058667pt;}
._15_c01266{width:13.168000pt;}
._1a_c01266{width:14.133333pt;}
._0_c01266{width:15.776000pt;}
._13_c01266{width:16.741333pt;}
._11_c01266{width:17.722667pt;}
._6_c01266{width:19.402667pt;}
._17_c01266{width:21.973333pt;}
._18_c01266{width:25.514667pt;}
._19_c01266{width:26.485333pt;}
._21_c01266{width:27.392000pt;}
._20_c01266{width:32.976000pt;}
._16_c01266{width:35.690667pt;}
._1d_c01266{width:127.672533pt;}
.fs5_c01266{font-size:42.666667pt;}
.fs4_c01266{font-size:51.200000pt;}
.fs3_c01266{font-size:64.000000pt;}
.fs1_c01266{font-size:69.333333pt;}
.fs2_c01266{font-size:72.000000pt;}
.fs0_c01266{font-size:90.666667pt;}
.y0_c01266{bottom:0.000000pt;}
.y26_c01266{bottom:2.760000pt;}
.y25_c01266{bottom:6.425217pt;}
.y24_c01266{bottom:61.440000pt;}
.y23_c01266{bottom:83.973333pt;}
.y22_c01266{bottom:107.040000pt;}
.y21_c01266{bottom:129.040000pt;}
.y20_c01266{bottom:150.640000pt;}
.y1f_c01266{bottom:173.440000pt;}
.y1e_c01266{bottom:194.373333pt;}
.y1d_c01266{bottom:216.240000pt;}
.y1c_c01266{bottom:238.240000pt;}
.y1b_c01266{bottom:259.706667pt;}
.y1a_c01266{bottom:281.440000pt;}
.y19_c01266{bottom:303.306667pt;}
.y18_c01266{bottom:323.706667pt;}
.y17_c01266{bottom:346.506667pt;}
.y16_c01266{bottom:367.706667pt;}
.y15_c01266{bottom:389.973333pt;}
.y14_c01266{bottom:411.040000pt;}
.y13_c01266{bottom:432.906667pt;}
.y12_c01266{bottom:454.240000pt;}
.y11_c01266{bottom:475.706667pt;}
.y10_c01266{bottom:496.506667pt;}
.yf_c01266{bottom:517.840000pt;}
.ye_c01266{bottom:539.040000pt;}
.yd_c01266{bottom:560.373333pt;}
.yc_c01266{bottom:581.706667pt;}
.yb_c01266{bottom:603.306667pt;}
.ya_c01266{bottom:624.906667pt;}
.y9_c01266{bottom:646.506667pt;}
.y8_c01266{bottom:667.840000pt;}
.y7_c01266{bottom:689.440000pt;}
.y6_c01266{bottom:711.306667pt;}
.y5_c01266{bottom:733.173333pt;}
.y4_c01266{bottom:754.240000pt;}
.y3_c01266{bottom:776.106667pt;}
.y2_c01266{bottom:797.440000pt;}
.y1_c01266{bottom:832.506667pt;}
.h6_c01266{height:11.733399pt;}
.h7_c01266{height:38.937500pt;}
.h3_c01266{height:73.978667pt;}
.h5_c01266{height:74.906250pt;}
.h4_c01266{height:81.031250pt;}
.h2_c01266{height:88.940104pt;}
.h1_c01266{height:876.666667pt;}
.h0_c01266{height:876.933333pt;}
.w1_c01266{width:93.222667pt;}
.w0_c01266{width:597.333333pt;}
.x0_c01266{left:0.000000pt;}
.x1_c01266{left:46.800000pt;}
.x2_c01266{left:47.733333pt;}
.x4_c01266{left:48.933333pt;}
.x7_c01266{left:50.000000pt;}
.x5_c01266{left:53.733333pt;}
.x6_c01266{left:55.200000pt;}
.x3_c01266{left:68.400000pt;}
.x8_c01266{left:77.466667pt;}
.xa_c01266{left:255.834880pt;}
.x9_c01266{left:447.600000pt;}
}





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

.ir_c01267:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01267{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01267;src:url('chunks/assets/font_4d19ac1e240895299e27b309.woff2')format("woff");}.ff1_c01267{font-family:ff1_c01267;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01267;src:url('chunks/assets/font_e6ae84276d8bd8843fc1768a.woff2')format("woff");}.ff2_c01267{font-family:ff2_c01267;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01267;src:url('chunks/assets/font_1fc4daf11b18e45ec004354a.woff2')format("woff");}.ff3_c01267{font-family:ff3_c01267;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01267;src:url('chunks/assets/font_a9436592a06bceadca80fa0b.woff2')format("woff");}.ff4_c01267{font-family:ff4_c01267;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01267;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c01267{font-family:ff5_c01267;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01267{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01267{vertical-align:0.000000px;}
.ls1_c01267{letter-spacing:0.000000px;}
.ls0_c01267{letter-spacing:6.900000px;}
.ls2_c01267{letter-spacing:9.000000px;}
.sc__c01267{text-shadow:none;}
.sc0_c01267{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01267{-webkit-text-stroke:0px transparent;}
.sc0_c01267{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01267{word-spacing:-42.000000px;}
.ws2_c01267{word-spacing:-20.250000px;}
.ws0_c01267{word-spacing:-17.352000px;}
.ws3_c01267{word-spacing:0.000000px;}
._22_c01267{margin-left:-26.973000px;}
._1f_c01267{margin-left:-23.022000px;}
._1a_c01267{margin-left:-14.256000px;}
._10_c01267{margin-left:-12.312000px;}
._18_c01267{margin-left:-11.157000px;}
._12_c01267{margin-left:-8.991000px;}
._15_c01267{margin-left:-6.723000px;}
._4_c01267{margin-left:-4.617000px;}
._9_c01267{margin-left:-2.997000px;}
._5_c01267{margin-left:-1.782000px;}
._c_c01267{width:1.134000px;}
._3_c01267{width:2.187000px;}
._0_c01267{width:3.321000px;}
._7_c01267{width:4.374000px;}
._1_c01267{width:5.427000px;}
._2_c01267{width:7.128000px;}
._a_c01267{width:8.181000px;}
._b_c01267{width:10.206000px;}
._8_c01267{width:11.826000px;}
._6_c01267{width:12.879000px;}
._f_c01267{width:14.880000px;}
._d_c01267{width:15.957000px;}
._16_c01267{width:17.544000px;}
._11_c01267{width:19.221000px;}
._1e_c01267{width:21.306000px;}
._13_c01267{width:23.895000px;}
._1d_c01267{width:25.500000px;}
._25_c01267{width:29.265000px;}
._14_c01267{width:30.618000px;}
._21_c01267{width:34.020000px;}
._26_c01267{width:37.989000px;}
._e_c01267{width:39.852000px;}
._24_c01267{width:70.713000px;}
._27_c01267{width:79.137000px;}
._20_c01267{width:83.511000px;}
._19_c01267{width:102.141000px;}
._23_c01267{width:143.856000px;}
._17_c01267{width:196.182000px;}
._1c_c01267{width:232.917000px;}
._1b_c01267{width:294.111000px;}
.fc2_c01267{color:transparent;}
.fc1_c01267{color:rgb(128,128,128);}
.fc0_c01267{color:rgb(0,0,0);}
.fs4_c01267{font-size:48.000000px;}
.fs2_c01267{font-size:66.000000px;}
.fs1_c01267{font-size:72.000000px;}
.fs0_c01267{font-size:81.000000px;}
.fs3_c01267{font-size:87.000000px;}
.y0_c01267{bottom:0.000000px;}
.y25_c01267{bottom:3.105000px;}
.y24_c01267{bottom:7.228371px;}
.y23_c01267{bottom:81.015000px;}
.y22_c01267{bottom:104.715000px;}
.y21_c01267{bottom:128.265000px;}
.y20_c01267{bottom:151.215000px;}
.y1f_c01267{bottom:177.165000px;}
.y1e_c01267{bottom:201.465000px;}
.y1d_c01267{bottom:226.215000px;}
.y1c_c01267{bottom:250.815000px;}
.y1b_c01267{bottom:275.115000px;}
.y1a_c01267{bottom:299.715000px;}
.y19_c01267{bottom:323.415000px;}
.y18_c01267{bottom:350.715000px;}
.y17_c01267{bottom:373.065000px;}
.y16_c01267{bottom:397.965000px;}
.y15_c01267{bottom:424.215000px;}
.y14_c01267{bottom:446.865000px;}
.y13_c01267{bottom:470.565000px;}
.y12_c01267{bottom:495.465000px;}
.y11_c01267{bottom:519.165000px;}
.y10_c01267{bottom:543.015000px;}
.yf_c01267{bottom:567.315000px;}
.ye_c01267{bottom:591.015000px;}
.yd_c01267{bottom:615.615000px;}
.yc_c01267{bottom:639.615000px;}
.yb_c01267{bottom:664.215000px;}
.ya_c01267{bottom:689.265000px;}
.y9_c01267{bottom:712.815000px;}
.y8_c01267{bottom:737.415000px;}
.y7_c01267{bottom:761.415000px;}
.y6_c01267{bottom:785.415000px;}
.y5_c01267{bottom:809.715000px;}
.y4_c01267{bottom:834.315000px;}
.y3_c01267{bottom:858.615000px;}
.y2_c01267{bottom:882.915000px;}
.y1_c01267{bottom:907.965000px;}
.h5_c01267{height:13.200074px;}
.h6_c01267{height:43.804688px;}
.h2_c01267{height:79.497070px;}
.h3_c01267{height:84.269531px;}
.h4_c01267{height:91.176000px;}
.h1_c01267{height:986.250000px;}
.h0_c01267{height:986.325000px;}
.w2_c01267{width:104.875500px;}
.w0_c01267{width:667.425000px;}
.w1_c01267{width:667.500000px;}
.x0_c01267{left:0.000000px;}
.x7_c01267{left:23.400000px;}
.x5_c01267{left:25.650000px;}
.x4_c01267{left:39.750000px;}
.x6_c01267{left:43.200000px;}
.x9_c01267{left:64.200000px;}
.x8_c01267{left:109.650000px;}
.x3_c01267{left:111.000000px;}
.x1_c01267{left:112.050000px;}
.x2_c01267{left:113.400000px;}
.xb_c01267{left:285.526749px;}
.xa_c01267{left:565.950000px;}
@media print{
.v0_c01267{vertical-align:0.000000pt;}
.ls1_c01267{letter-spacing:0.000000pt;}
.ls0_c01267{letter-spacing:6.133333pt;}
.ls2_c01267{letter-spacing:8.000000pt;}
.ws1_c01267{word-spacing:-37.333333pt;}
.ws2_c01267{word-spacing:-18.000000pt;}
.ws0_c01267{word-spacing:-15.424000pt;}
.ws3_c01267{word-spacing:0.000000pt;}
._22_c01267{margin-left:-23.976000pt;}
._1f_c01267{margin-left:-20.464000pt;}
._1a_c01267{margin-left:-12.672000pt;}
._10_c01267{margin-left:-10.944000pt;}
._18_c01267{margin-left:-9.917333pt;}
._12_c01267{margin-left:-7.992000pt;}
._15_c01267{margin-left:-5.976000pt;}
._4_c01267{margin-left:-4.104000pt;}
._9_c01267{margin-left:-2.664000pt;}
._5_c01267{margin-left:-1.584000pt;}
._c_c01267{width:1.008000pt;}
._3_c01267{width:1.944000pt;}
._0_c01267{width:2.952000pt;}
._7_c01267{width:3.888000pt;}
._1_c01267{width:4.824000pt;}
._2_c01267{width:6.336000pt;}
._a_c01267{width:7.272000pt;}
._b_c01267{width:9.072000pt;}
._8_c01267{width:10.512000pt;}
._6_c01267{width:11.448000pt;}
._f_c01267{width:13.226667pt;}
._d_c01267{width:14.184000pt;}
._16_c01267{width:15.594667pt;}
._11_c01267{width:17.085333pt;}
._1e_c01267{width:18.938667pt;}
._13_c01267{width:21.240000pt;}
._1d_c01267{width:22.666667pt;}
._25_c01267{width:26.013333pt;}
._14_c01267{width:27.216000pt;}
._21_c01267{width:30.240000pt;}
._26_c01267{width:33.768000pt;}
._e_c01267{width:35.424000pt;}
._24_c01267{width:62.856000pt;}
._27_c01267{width:70.344000pt;}
._20_c01267{width:74.232000pt;}
._19_c01267{width:90.792000pt;}
._23_c01267{width:127.872000pt;}
._17_c01267{width:174.384000pt;}
._1c_c01267{width:207.037333pt;}
._1b_c01267{width:261.432000pt;}
.fs4_c01267{font-size:42.666667pt;}
.fs2_c01267{font-size:58.666667pt;}
.fs1_c01267{font-size:64.000000pt;}
.fs0_c01267{font-size:72.000000pt;}
.fs3_c01267{font-size:77.333333pt;}
.y0_c01267{bottom:0.000000pt;}
.y25_c01267{bottom:2.760000pt;}
.y24_c01267{bottom:6.425219pt;}
.y23_c01267{bottom:72.013333pt;}
.y22_c01267{bottom:93.080000pt;}
.y21_c01267{bottom:114.013333pt;}
.y20_c01267{bottom:134.413333pt;}
.y1f_c01267{bottom:157.480000pt;}
.y1e_c01267{bottom:179.080000pt;}
.y1d_c01267{bottom:201.080000pt;}
.y1c_c01267{bottom:222.946667pt;}
.y1b_c01267{bottom:244.546667pt;}
.y1a_c01267{bottom:266.413333pt;}
.y19_c01267{bottom:287.480000pt;}
.y18_c01267{bottom:311.746667pt;}
.y17_c01267{bottom:331.613333pt;}
.y16_c01267{bottom:353.746667pt;}
.y15_c01267{bottom:377.080000pt;}
.y14_c01267{bottom:397.213333pt;}
.y13_c01267{bottom:418.280000pt;}
.y12_c01267{bottom:440.413333pt;}
.y11_c01267{bottom:461.480000pt;}
.y10_c01267{bottom:482.680000pt;}
.yf_c01267{bottom:504.280000pt;}
.ye_c01267{bottom:525.346667pt;}
.yd_c01267{bottom:547.213333pt;}
.yc_c01267{bottom:568.546667pt;}
.yb_c01267{bottom:590.413333pt;}
.ya_c01267{bottom:612.680000pt;}
.y9_c01267{bottom:633.613333pt;}
.y8_c01267{bottom:655.480000pt;}
.y7_c01267{bottom:676.813333pt;}
.y6_c01267{bottom:698.146667pt;}
.y5_c01267{bottom:719.746667pt;}
.y4_c01267{bottom:741.613333pt;}
.y3_c01267{bottom:763.213333pt;}
.y2_c01267{bottom:784.813333pt;}
.y1_c01267{bottom:807.080000pt;}
.h5_c01267{height:11.733399pt;}
.h6_c01267{height:38.937500pt;}
.h2_c01267{height:70.664062pt;}
.h3_c01267{height:74.906250pt;}
.h4_c01267{height:81.045333pt;}
.h1_c01267{height:876.666667pt;}
.h0_c01267{height:876.733333pt;}
.w2_c01267{width:93.222667pt;}
.w0_c01267{width:593.266667pt;}
.w1_c01267{width:593.333333pt;}
.x0_c01267{left:0.000000pt;}
.x7_c01267{left:20.800000pt;}
.x5_c01267{left:22.800000pt;}
.x4_c01267{left:35.333333pt;}
.x6_c01267{left:38.400000pt;}
.x9_c01267{left:57.066667pt;}
.x8_c01267{left:97.466667pt;}
.x3_c01267{left:98.666667pt;}
.x1_c01267{left:99.600000pt;}
.x2_c01267{left:100.800000pt;}
.xb_c01267{left:253.801554pt;}
.xa_c01267{left:503.066667pt;}
}





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

.ir_c01268:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01268{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01268;src:url('chunks/assets/font_aa041df201401bccffa8d6a6.woff2')format("woff");}.ff1_c01268{font-family:ff1_c01268;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01268;src:url('chunks/assets/font_1d569313cd4e3cb969f12e55.woff2')format("woff");}.ff2_c01268{font-family:ff2_c01268;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01268;src:url('chunks/assets/font_68e7be3e70178f862db241de.woff2')format("woff");}.ff3_c01268{font-family:ff3_c01268;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01268;src:url('chunks/assets/font_ac3f2e4f0e01ac9774893177.woff2')format("woff");}.ff4_c01268{font-family:ff4_c01268;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01268;src:url('chunks/assets/font_6cd51acd849e80653892bd8e.woff2')format("woff");}.ff5_c01268{font-family:ff5_c01268;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01268;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff6_c01268{font-family:ff6_c01268;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01268;src:url('chunks/assets/font_1fc4daf11b18e45ec004354a.woff2')format("woff");}.ff7_c01268{font-family:ff7_c01268;line-height:1.284180;font-style:normal;font-weight: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_c01268;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff8_c01268{font-family:ff8_c01268;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01268{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01268{vertical-align:0.000000px;}
.ls2_c01268{letter-spacing:0.000000px;}
.ls1_c01268{letter-spacing:3.000000px;}
.ls0_c01268{letter-spacing:25.200000px;}
.sc__c01268{text-shadow:none;}
.sc0_c01268{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01268{-webkit-text-stroke:0px transparent;}
.sc0_c01268{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01268{word-spacing:-67.686000px;}
.ws1_c01268{word-spacing:-35.028000px;}
.ws3_c01268{word-spacing:-20.250000px;}
.ws2_c01268{word-spacing:-17.352000px;}
.ws4_c01268{word-spacing:0.000000px;}
._11_c01268{margin-left:-18.954000px;}
._17_c01268{margin-left:-16.800000px;}
._23_c01268{margin-left:-14.166000px;}
._1b_c01268{margin-left:-13.110000px;}
._22_c01268{margin-left:-11.646000px;}
._21_c01268{margin-left:-10.044000px;}
._c_c01268{margin-left:-8.910000px;}
._20_c01268{margin-left:-7.002000px;}
._2_c01268{margin-left:-5.514000px;}
._d_c01268{margin-left:-4.194000px;}
._5_c01268{margin-left:-2.676000px;}
._3_c01268{margin-left:-1.611000px;}
._4_c01268{width:1.143000px;}
._0_c01268{width:2.508000px;}
._1_c01268{width:4.290000px;}
._18_c01268{width:5.310000px;}
._7_c01268{width:6.318000px;}
._8_c01268{width:7.533000px;}
._13_c01268{width:8.748000px;}
._e_c01268{width:9.831000px;}
._6_c01268{width:11.250000px;}
._a_c01268{width:13.185000px;}
._1c_c01268{width:14.418000px;}
._16_c01268{width:16.413000px;}
._9_c01268{width:18.066000px;}
._f_c01268{width:19.086000px;}
._10_c01268{width:33.654000px;}
._15_c01268{width:34.743000px;}
._b_c01268{width:39.057000px;}
._1f_c01268{width:41.106000px;}
._1e_c01268{width:47.859000px;}
._1d_c01268{width:59.154000px;}
._14_c01268{width:183.927000px;}
._1a_c01268{width:193.080000px;}
._12_c01268{width:236.352000px;}
._19_c01268{width:289.038000px;}
._24_c01268{width:346.272000px;}
.fc2_c01268{color:transparent;}
.fc1_c01268{color:rgb(128,128,128);}
.fc0_c01268{color:rgb(0,0,0);}
.fs8_c01268{font-size:48.000000px;}
.fs6_c01268{font-size:60.000000px;}
.fs5_c01268{font-size:63.000000px;}
.fs0_c01268{font-size:66.000000px;}
.fs7_c01268{font-size:72.000000px;}
.fs1_c01268{font-size:81.000000px;}
.fs2_c01268{font-size:87.000000px;}
.fs3_c01268{font-size:120.000000px;}
.fs4_c01268{font-size:273.000000px;}
.y0_c01268{bottom:0.000000px;}
.y26_c01268{bottom:3.105000px;}
.y25_c01268{bottom:7.228355px;}
.y24_c01268{bottom:34.035000px;}
.y23_c01268{bottom:58.935000px;}
.y22_c01268{bottom:85.035000px;}
.y21_c01268{bottom:108.585000px;}
.y20_c01268{bottom:133.635000px;}
.y1f_c01268{bottom:158.985000px;}
.y1e_c01268{bottom:183.585000px;}
.y1d_c01268{bottom:207.885000px;}
.y1c_c01268{bottom:232.485000px;}
.y1b_c01268{bottom:256.785000px;}
.y1a_c01268{bottom:281.385000px;}
.y19_c01268{bottom:305.685000px;}
.y18_c01268{bottom:329.985000px;}
.y17_c01268{bottom:354.285000px;}
.y16_c01268{bottom:378.585000px;}
.y15_c01268{bottom:403.185000px;}
.y14_c01268{bottom:426.885000px;}
.y13_c01268{bottom:451.485000px;}
.y12_c01268{bottom:475.785000px;}
.y11_c01268{bottom:500.385000px;}
.y10_c01268{bottom:523.785000px;}
.yf_c01268{bottom:547.035000px;}
.ye_c01268{bottom:571.335000px;}
.yd_c01268{bottom:595.035000px;}
.ya_c01268{bottom:606.885000px;}
.yc_c01268{bottom:619.185000px;}
.yb_c01268{bottom:643.485000px;}
.y9_c01268{bottom:667.485000px;}
.y8_c01268{bottom:691.485000px;}
.y7_c01268{bottom:715.785000px;}
.y6_c01268{bottom:740.385000px;}
.y5_c01268{bottom:764.385000px;}
.y4_c01268{bottom:788.985000px;}
.y3_c01268{bottom:812.685000px;}
.y2_c01268{bottom:837.885000px;}
.y1_c01268{bottom:862.185000px;}
.h8_c01268{height:13.200074px;}
.h9_c01268{height:43.804688px;}
.h2_c01268{height:79.497070px;}
.h7_c01268{height:84.269531px;}
.h6_c01268{height:91.160156px;}
.h3_c01268{height:91.176000px;}
.h4_c01268{height:120.937500px;}
.h5_c01268{height:267.934570px;}
.h0_c01268{height:977.925000px;}
.h1_c01268{height:978.000000px;}
.w2_c01268{width:104.875500px;}
.w0_c01268{width:665.850000px;}
.w1_c01268{width:666.000000px;}
.x0_c01268{left:0.000000px;}
.x1_c01268{left:52.650000px;}
.x2_c01268{left:53.700000px;}
.x3_c01268{left:54.900000px;}
.x5_c01268{left:55.950000px;}
.x6_c01268{left:57.000000px;}
.x7_c01268{left:58.350000px;}
.x4_c01268{left:61.800000px;}
.x9_c01268{left:284.739258px;}
.x8_c01268{left:402.900000px;}
@media print{
.v0_c01268{vertical-align:0.000000pt;}
.ls2_c01268{letter-spacing:0.000000pt;}
.ls1_c01268{letter-spacing:2.666667pt;}
.ls0_c01268{letter-spacing:22.400000pt;}
.ws0_c01268{word-spacing:-60.165333pt;}
.ws1_c01268{word-spacing:-31.136000pt;}
.ws3_c01268{word-spacing:-18.000000pt;}
.ws2_c01268{word-spacing:-15.424000pt;}
.ws4_c01268{word-spacing:0.000000pt;}
._11_c01268{margin-left:-16.848000pt;}
._17_c01268{margin-left:-14.933333pt;}
._23_c01268{margin-left:-12.592000pt;}
._1b_c01268{margin-left:-11.653333pt;}
._22_c01268{margin-left:-10.352000pt;}
._21_c01268{margin-left:-8.928000pt;}
._c_c01268{margin-left:-7.920000pt;}
._20_c01268{margin-left:-6.224000pt;}
._2_c01268{margin-left:-4.901333pt;}
._d_c01268{margin-left:-3.728000pt;}
._5_c01268{margin-left:-2.378667pt;}
._3_c01268{margin-left:-1.432000pt;}
._4_c01268{width:1.016000pt;}
._0_c01268{width:2.229333pt;}
._1_c01268{width:3.813333pt;}
._18_c01268{width:4.720000pt;}
._7_c01268{width:5.616000pt;}
._8_c01268{width:6.696000pt;}
._13_c01268{width:7.776000pt;}
._e_c01268{width:8.738667pt;}
._6_c01268{width:10.000000pt;}
._a_c01268{width:11.720000pt;}
._1c_c01268{width:12.816000pt;}
._16_c01268{width:14.589333pt;}
._9_c01268{width:16.058667pt;}
._f_c01268{width:16.965333pt;}
._10_c01268{width:29.914667pt;}
._15_c01268{width:30.882667pt;}
._b_c01268{width:34.717333pt;}
._1f_c01268{width:36.538667pt;}
._1e_c01268{width:42.541333pt;}
._1d_c01268{width:52.581333pt;}
._14_c01268{width:163.490667pt;}
._1a_c01268{width:171.626667pt;}
._12_c01268{width:210.090667pt;}
._19_c01268{width:256.922667pt;}
._24_c01268{width:307.797333pt;}
.fs8_c01268{font-size:42.666667pt;}
.fs6_c01268{font-size:53.333333pt;}
.fs5_c01268{font-size:56.000000pt;}
.fs0_c01268{font-size:58.666667pt;}
.fs7_c01268{font-size:64.000000pt;}
.fs1_c01268{font-size:72.000000pt;}
.fs2_c01268{font-size:77.333333pt;}
.fs3_c01268{font-size:106.666667pt;}
.fs4_c01268{font-size:242.666667pt;}
.y0_c01268{bottom:0.000000pt;}
.y26_c01268{bottom:2.760000pt;}
.y25_c01268{bottom:6.425204pt;}
.y24_c01268{bottom:30.253333pt;}
.y23_c01268{bottom:52.386667pt;}
.y22_c01268{bottom:75.586667pt;}
.y21_c01268{bottom:96.520000pt;}
.y20_c01268{bottom:118.786667pt;}
.y1f_c01268{bottom:141.320000pt;}
.y1e_c01268{bottom:163.186667pt;}
.y1d_c01268{bottom:184.786667pt;}
.y1c_c01268{bottom:206.653333pt;}
.y1b_c01268{bottom:228.253333pt;}
.y1a_c01268{bottom:250.120000pt;}
.y19_c01268{bottom:271.720000pt;}
.y18_c01268{bottom:293.320000pt;}
.y17_c01268{bottom:314.920000pt;}
.y16_c01268{bottom:336.520000pt;}
.y15_c01268{bottom:358.386667pt;}
.y14_c01268{bottom:379.453333pt;}
.y13_c01268{bottom:401.320000pt;}
.y12_c01268{bottom:422.920000pt;}
.y11_c01268{bottom:444.786667pt;}
.y10_c01268{bottom:465.586667pt;}
.yf_c01268{bottom:486.253333pt;}
.ye_c01268{bottom:507.853333pt;}
.yd_c01268{bottom:528.920000pt;}
.ya_c01268{bottom:539.453333pt;}
.yc_c01268{bottom:550.386667pt;}
.yb_c01268{bottom:571.986667pt;}
.y9_c01268{bottom:593.320000pt;}
.y8_c01268{bottom:614.653333pt;}
.y7_c01268{bottom:636.253333pt;}
.y6_c01268{bottom:658.120000pt;}
.y5_c01268{bottom:679.453333pt;}
.y4_c01268{bottom:701.320000pt;}
.y3_c01268{bottom:722.386667pt;}
.y2_c01268{bottom:744.786667pt;}
.y1_c01268{bottom:766.386667pt;}
.h8_c01268{height:11.733399pt;}
.h9_c01268{height:38.937500pt;}
.h2_c01268{height:70.664062pt;}
.h7_c01268{height:74.906250pt;}
.h6_c01268{height:81.031250pt;}
.h3_c01268{height:81.045333pt;}
.h4_c01268{height:107.500000pt;}
.h5_c01268{height:238.164062pt;}
.h0_c01268{height:869.266667pt;}
.h1_c01268{height:869.333333pt;}
.w2_c01268{width:93.222667pt;}
.w0_c01268{width:591.866667pt;}
.w1_c01268{width:592.000000pt;}
.x0_c01268{left:0.000000pt;}
.x1_c01268{left:46.800000pt;}
.x2_c01268{left:47.733333pt;}
.x3_c01268{left:48.800000pt;}
.x5_c01268{left:49.733333pt;}
.x6_c01268{left:50.666667pt;}
.x7_c01268{left:51.866667pt;}
.x4_c01268{left:54.933333pt;}
.x9_c01268{left:253.101563pt;}
.x8_c01268{left:358.133333pt;}
}





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

.ir_c01269:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01269{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01269;src:url('chunks/assets/font_c3a5916d90c82bdb91e7ed74.woff2')format("woff");}.ff1_c01269{font-family:ff1_c01269;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01269;src:url('chunks/assets/font_11e2ac77cbc44b5732bf6748.woff2')format("woff");}.ff2_c01269{font-family:ff2_c01269;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01269;src:url('chunks/assets/font_4af0892c35372ba25e9a705c.woff2')format("woff");}.ff3_c01269{font-family:ff3_c01269;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01269;src:url('chunks/assets/font_6c4e1be244f0381ac0f13802.woff2')format("woff");}.ff4_c01269{font-family:ff4_c01269;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01269;src:url('chunks/assets/font_d03c42e09c3cc89b9174061b.woff2')format("woff");}.ff5_c01269{font-family:ff5_c01269;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01269;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c01269{font-family:ff6_c01269;line-height:1.219238;font-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_c01269{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m0_c01269{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01269{vertical-align:0.000000px;}
.ls3_c01269{letter-spacing:0.000000px;}
.ls1_c01269{letter-spacing:0.960000px;}
.ls2_c01269{letter-spacing:3.000000px;}
.ls0_c01269{letter-spacing:13.800000px;}
.sc__c01269{text-shadow:none;}
.sc0_c01269{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01269{-webkit-text-stroke:0px transparent;}
.sc0_c01269{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01269{word-spacing:-27.000000px;}
.ws1_c01269{word-spacing:-21.798000px;}
.ws3_c01269{word-spacing:-20.250000px;}
.ws0_c01269{word-spacing:-17.352000px;}
.ws4_c01269{word-spacing:0.000000px;}
._26_c01269{margin-left:-23.166000px;}
._12_c01269{margin-left:-20.088000px;}
._18_c01269{margin-left:-18.063000px;}
._15_c01269{margin-left:-16.767000px;}
._24_c01269{margin-left:-14.985000px;}
._f_c01269{margin-left:-12.636000px;}
._21_c01269{margin-left:-10.734000px;}
._10_c01269{margin-left:-9.561000px;}
._20_c01269{margin-left:-7.491000px;}
._1b_c01269{margin-left:-6.234000px;}
._1a_c01269{margin-left:-5.103000px;}
._23_c01269{margin-left:-4.098000px;}
._5_c01269{margin-left:-3.078000px;}
._6_c01269{margin-left:-1.377000px;}
._7_c01269{width:1.296000px;}
._2_c01269{width:2.511000px;}
._3_c01269{width:3.807000px;}
._9_c01269{width:4.860000px;}
._1_c01269{width:6.318000px;}
._a_c01269{width:7.452000px;}
._8_c01269{width:8.667000px;}
._4_c01269{width:9.801000px;}
._25_c01269{width:11.016000px;}
._e_c01269{width:12.069000px;}
._c_c01269{width:13.203000px;}
._d_c01269{width:14.661000px;}
._14_c01269{width:16.605000px;}
._17_c01269{width:17.739000px;}
._1e_c01269{width:19.035000px;}
._1c_c01269{width:26.406000px;}
._1f_c01269{width:29.160000px;}
._1d_c01269{width:30.213000px;}
._11_c01269{width:101.328000px;}
._0_c01269{width:106.257000px;}
._19_c01269{width:109.350000px;}
._16_c01269{width:113.481000px;}
._22_c01269{width:180.834000px;}
._b_c01269{width:221.436000px;}
._13_c01269{width:320.841000px;}
.fc2_c01269{color:transparent;}
.fc1_c01269{color:rgb(128,128,128);}
.fc0_c01269{color:rgb(0,0,0);}
.fs5_c01269{font-size:48.000000px;}
.fs2_c01269{font-size:66.000000px;}
.fs0_c01269{font-size:72.000000px;}
.fs3_c01269{font-size:78.000000px;}
.fs1_c01269{font-size:81.000000px;}
.fs4_c01269{font-size:108.000000px;}
.y0_c01269{bottom:0.000000px;}
.y25_c01269{bottom:3.105000px;}
.y24_c01269{bottom:7.228371px;}
.y23_c01269{bottom:44.865000px;}
.y22_c01269{bottom:67.215000px;}
.y21_c01269{bottom:92.265000px;}
.y20_c01269{bottom:116.565000px;}
.y1f_c01269{bottom:141.465000px;}
.y1e_c01269{bottom:166.065000px;}
.y1d_c01269{bottom:190.365000px;}
.y1c_c01269{bottom:215.715000px;}
.y1b_c01269{bottom:239.715000px;}
.y1a_c01269{bottom:264.615000px;}
.y19_c01269{bottom:289.215000px;}
.y18_c01269{bottom:313.515000px;}
.y17_c01269{bottom:337.965000px;}
.y16_c01269{bottom:361.815000px;}
.y15_c01269{bottom:386.865000px;}
.y14_c01269{bottom:411.165000px;}
.y13_c01269{bottom:435.465000px;}
.y12_c01269{bottom:460.065000px;}
.y11_c01269{bottom:483.765000px;}
.y10_c01269{bottom:511.365000px;}
.yf_c01269{bottom:531.315000px;}
.ye_c01269{bottom:555.915000px;}
.yd_c01269{bottom:579.915000px;}
.yc_c01269{bottom:604.515000px;}
.yb_c01269{bottom:628.065000px;}
.ya_c01269{bottom:652.515000px;}
.y9_c01269{bottom:676.365000px;}
.y8_c01269{bottom:700.965000px;}
.y7_c01269{bottom:724.065000px;}
.y6_c01269{bottom:749.265000px;}
.y5_c01269{bottom:772.965000px;}
.y4_c01269{bottom:797.265000px;}
.y3_c01269{bottom:821.865000px;}
.y2_c01269{bottom:847.815000px;}
.y1_c01269{bottom:870.465000px;}
.h7_c01269{height:13.200074px;}
.h8_c01269{height:43.804688px;}
.h3_c01269{height:79.497070px;}
.h2_c01269{height:84.269531px;}
.h4_c01269{height:91.160156px;}
.h5_c01269{height:98.756836px;}
.h6_c01269{height:108.843750px;}
.h1_c01269{height:986.250000px;}
.h0_c01269{height:986.325000px;}
.w2_c01269{width:104.875500px;}
.w0_c01269{width:667.425000px;}
.w1_c01269{width:667.500000px;}
.x0_c01269{left:0.000000px;}
.xc_c01269{left:32.400000px;}
.x3_c01269{left:33.450000px;}
.x4_c01269{left:36.750000px;}
.x6_c01269{left:80.550000px;}
.x1_c01269{left:84.000000px;}
.x5_c01269{left:91.050000px;}
.xd_c01269{left:121.500000px;}
.x2_c01269{left:123.900000px;}
.x7_c01269{left:125.550000px;}
.x8_c01269{left:126.600000px;}
.x12_c01269{left:127.950000px;}
.x9_c01269{left:129.300000px;}
.xe_c01269{left:130.500000px;}
.x13_c01269{left:153.900000px;}
.xf_c01269{left:163.050000px;}
.xb_c01269{left:173.850000px;}
.xa_c01269{left:175.500000px;}
.x14_c01269{left:207.600000px;}
.x10_c01269{left:221.700000px;}
.x11_c01269{left:241.650000px;}
.x17_c01269{left:285.526749px;}
.x15_c01269{left:532.500000px;}
.x16_c01269{left:569.400000px;}
@media print{
.v0_c01269{vertical-align:0.000000pt;}
.ls3_c01269{letter-spacing:0.000000pt;}
.ls1_c01269{letter-spacing:0.853333pt;}
.ls2_c01269{letter-spacing:2.666667pt;}
.ls0_c01269{letter-spacing:12.266667pt;}
.ws2_c01269{word-spacing:-24.000000pt;}
.ws1_c01269{word-spacing:-19.376000pt;}
.ws3_c01269{word-spacing:-18.000000pt;}
.ws0_c01269{word-spacing:-15.424000pt;}
.ws4_c01269{word-spacing:0.000000pt;}
._26_c01269{margin-left:-20.592000pt;}
._12_c01269{margin-left:-17.856000pt;}
._18_c01269{margin-left:-16.056000pt;}
._15_c01269{margin-left:-14.904000pt;}
._24_c01269{margin-left:-13.320000pt;}
._f_c01269{margin-left:-11.232000pt;}
._21_c01269{margin-left:-9.541333pt;}
._10_c01269{margin-left:-8.498667pt;}
._20_c01269{margin-left:-6.658667pt;}
._1b_c01269{margin-left:-5.541333pt;}
._1a_c01269{margin-left:-4.536000pt;}
._23_c01269{margin-left:-3.642667pt;}
._5_c01269{margin-left:-2.736000pt;}
._6_c01269{margin-left:-1.224000pt;}
._7_c01269{width:1.152000pt;}
._2_c01269{width:2.232000pt;}
._3_c01269{width:3.384000pt;}
._9_c01269{width:4.320000pt;}
._1_c01269{width:5.616000pt;}
._a_c01269{width:6.624000pt;}
._8_c01269{width:7.704000pt;}
._4_c01269{width:8.712000pt;}
._25_c01269{width:9.792000pt;}
._e_c01269{width:10.728000pt;}
._c_c01269{width:11.736000pt;}
._d_c01269{width:13.032000pt;}
._14_c01269{width:14.760000pt;}
._17_c01269{width:15.768000pt;}
._1e_c01269{width:16.920000pt;}
._1c_c01269{width:23.472000pt;}
._1f_c01269{width:25.920000pt;}
._1d_c01269{width:26.856000pt;}
._11_c01269{width:90.069333pt;}
._0_c01269{width:94.450667pt;}
._19_c01269{width:97.200000pt;}
._16_c01269{width:100.872000pt;}
._22_c01269{width:160.741333pt;}
._b_c01269{width:196.832000pt;}
._13_c01269{width:285.192000pt;}
.fs5_c01269{font-size:42.666667pt;}
.fs2_c01269{font-size:58.666667pt;}
.fs0_c01269{font-size:64.000000pt;}
.fs3_c01269{font-size:69.333333pt;}
.fs1_c01269{font-size:72.000000pt;}
.fs4_c01269{font-size:96.000000pt;}
.y0_c01269{bottom:0.000000pt;}
.y25_c01269{bottom:2.760000pt;}
.y24_c01269{bottom:6.425219pt;}
.y23_c01269{bottom:39.880000pt;}
.y22_c01269{bottom:59.746667pt;}
.y21_c01269{bottom:82.013333pt;}
.y20_c01269{bottom:103.613333pt;}
.y1f_c01269{bottom:125.746667pt;}
.y1e_c01269{bottom:147.613333pt;}
.y1d_c01269{bottom:169.213333pt;}
.y1c_c01269{bottom:191.746667pt;}
.y1b_c01269{bottom:213.080000pt;}
.y1a_c01269{bottom:235.213333pt;}
.y19_c01269{bottom:257.080000pt;}
.y18_c01269{bottom:278.680000pt;}
.y17_c01269{bottom:300.413333pt;}
.y16_c01269{bottom:321.613333pt;}
.y15_c01269{bottom:343.880000pt;}
.y14_c01269{bottom:365.480000pt;}
.y13_c01269{bottom:387.080000pt;}
.y12_c01269{bottom:408.946667pt;}
.y11_c01269{bottom:430.013333pt;}
.y10_c01269{bottom:454.546667pt;}
.yf_c01269{bottom:472.280000pt;}
.ye_c01269{bottom:494.146667pt;}
.yd_c01269{bottom:515.480000pt;}
.yc_c01269{bottom:537.346667pt;}
.yb_c01269{bottom:558.280000pt;}
.ya_c01269{bottom:580.013333pt;}
.y9_c01269{bottom:601.213333pt;}
.y8_c01269{bottom:623.080000pt;}
.y7_c01269{bottom:643.613333pt;}
.y6_c01269{bottom:666.013333pt;}
.y5_c01269{bottom:687.080000pt;}
.y4_c01269{bottom:708.680000pt;}
.y3_c01269{bottom:730.546667pt;}
.y2_c01269{bottom:753.613333pt;}
.y1_c01269{bottom:773.746667pt;}
.h7_c01269{height:11.733399pt;}
.h8_c01269{height:38.937500pt;}
.h3_c01269{height:70.664062pt;}
.h2_c01269{height:74.906250pt;}
.h4_c01269{height:81.031250pt;}
.h5_c01269{height:87.783854pt;}
.h6_c01269{height:96.750000pt;}
.h1_c01269{height:876.666667pt;}
.h0_c01269{height:876.733333pt;}
.w2_c01269{width:93.222667pt;}
.w0_c01269{width:593.266667pt;}
.w1_c01269{width:593.333333pt;}
.x0_c01269{left:0.000000pt;}
.xc_c01269{left:28.800000pt;}
.x3_c01269{left:29.733333pt;}
.x4_c01269{left:32.666667pt;}
.x6_c01269{left:71.600000pt;}
.x1_c01269{left:74.666667pt;}
.x5_c01269{left:80.933333pt;}
.xd_c01269{left:108.000000pt;}
.x2_c01269{left:110.133333pt;}
.x7_c01269{left:111.600000pt;}
.x8_c01269{left:112.533333pt;}
.x12_c01269{left:113.733333pt;}
.x9_c01269{left:114.933333pt;}
.xe_c01269{left:116.000000pt;}
.x13_c01269{left:136.800000pt;}
.xf_c01269{left:144.933333pt;}
.xb_c01269{left:154.533333pt;}
.xa_c01269{left:156.000000pt;}
.x14_c01269{left:184.533333pt;}
.x10_c01269{left:197.066667pt;}
.x11_c01269{left:214.800000pt;}
.x17_c01269{left:253.801554pt;}
.x15_c01269{left:473.333333pt;}
.x16_c01269{left:506.133333pt;}
}





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

.ir_c01270:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01270{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01270;src:url('chunks/assets/font_72d1314587ad785bf3c9d2c8.woff2')format("woff");}.ff1_c01270{font-family:ff1_c01270;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01270;src:url('chunks/assets/font_fa94a653e529ec35a6d55c17.woff2')format("woff");}.ff2_c01270{font-family:ff2_c01270;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01270;src:url('chunks/assets/font_d71a2c28071c604f8e21b7fa.woff2')format("woff");}.ff3_c01270{font-family:ff3_c01270;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01270;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff4_c01270{font-family:ff4_c01270;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01270;src:url('chunks/assets/font_0bafc39dcbb231ae9f56b7bb.woff2')format("woff");}.ff5_c01270{font-family:ff5_c01270;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01270;src:url('chunks/assets/font_320c1745880f2333b6edf5e8.woff2')format("woff");}.ff6_c01270{font-family:ff6_c01270;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01270;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c01270{font-family:ff7_c01270;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01270{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01270{vertical-align:0.000000px;}
.ls3_c01270{letter-spacing:-6.000000px;}
.ls2_c01270{letter-spacing:0.000000px;}
.ls1_c01270{letter-spacing:8.202000px;}
.ls0_c01270{letter-spacing:9.000000px;}
.sc__c01270{text-shadow:none;}
.sc0_c01270{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01270{-webkit-text-stroke:0px transparent;}
.sc0_c01270{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c01270{word-spacing:-28.083000px;}
.ws1_c01270{word-spacing:-22.737000px;}
.ws0_c01270{word-spacing:-10.026000px;}
.ws4_c01270{word-spacing:0.000000px;}
.ws2_c01270{word-spacing:3.534000px;}
._1f_c01270{margin-left:-18.711000px;}
._1c_c01270{margin-left:-13.785000px;}
._21_c01270{margin-left:-11.514000px;}
._1a_c01270{margin-left:-9.090000px;}
._19_c01270{margin-left:-6.657000px;}
._3_c01270{margin-left:-5.247000px;}
._18_c01270{margin-left:-4.158000px;}
._2_c01270{margin-left:-2.970000px;}
._11_c01270{margin-left:-1.767000px;}
._0_c01270{width:1.287000px;}
._1_c01270{width:2.475000px;}
._10_c01270{width:3.531000px;}
._5_c01270{width:4.884000px;}
._9_c01270{width:6.720000px;}
._12_c01270{width:7.806000px;}
._4_c01270{width:9.012000px;}
._b_c01270{width:10.191000px;}
._8_c01270{width:11.286000px;}
._6_c01270{width:12.882000px;}
._1b_c01270{width:13.923000px;}
._c_c01270{width:15.465000px;}
._a_c01270{width:16.587000px;}
._f_c01270{width:18.702000px;}
._d_c01270{width:19.722000px;}
._7_c01270{width:21.261000px;}
._e_c01270{width:22.641000px;}
._13_c01270{width:24.225000px;}
._15_c01270{width:25.971000px;}
._14_c01270{width:27.072000px;}
._17_c01270{width:28.890000px;}
._22_c01270{width:30.018000px;}
._16_c01270{width:32.826000px;}
._20_c01270{width:36.507000px;}
._24_c01270{width:57.399000px;}
._1d_c01270{width:123.552000px;}
._1e_c01270{width:142.665000px;}
._23_c01270{width:235.812000px;}
.fc2_c01270{color:transparent;}
.fc1_c01270{color:rgb(128,128,128);}
.fc0_c01270{color:rgb(0,0,0);}
.fs6_c01270{font-size:48.000000px;}
.fs2_c01270{font-size:57.000000px;}
.fs3_c01270{font-size:78.000000px;}
.fs0_c01270{font-size:99.000000px;}
.fs4_c01270{font-size:105.000000px;}
.fs5_c01270{font-size:111.000000px;}
.fs1_c01270{font-size:132.000000px;}
.y0_c01270{bottom:0.000000px;}
.y26_c01270{bottom:3.105000px;}
.y25_c01270{bottom:7.228369px;}
.y24_c01270{bottom:48.870000px;}
.y23_c01270{bottom:73.620000px;}
.y22_c01270{bottom:98.220000px;}
.y21_c01270{bottom:123.420000px;}
.y20_c01270{bottom:147.720000px;}
.y1f_c01270{bottom:172.470000px;}
.y1e_c01270{bottom:196.770000px;}
.y1d_c01270{bottom:221.370000px;}
.y1c_c01270{bottom:245.070000px;}
.y1b_c01270{bottom:270.270000px;}
.y1a_c01270{bottom:294.270000px;}
.y19_c01270{bottom:318.870000px;}
.y18_c01270{bottom:343.170000px;}
.y17_c01270{bottom:367.170000px;}
.y16_c01270{bottom:391.770000px;}
.y15_c01270{bottom:415.770000px;}
.y14_c01270{bottom:440.070000px;}
.y13_c01270{bottom:464.370000px;}
.y12_c01270{bottom:488.370000px;}
.y11_c01270{bottom:513.270000px;}
.y10_c01270{bottom:536.670000px;}
.yf_c01270{bottom:559.620000px;}
.ye_c01270{bottom:584.220000px;}
.yd_c01270{bottom:608.820000px;}
.yc_c01270{bottom:633.420000px;}
.yb_c01270{bottom:656.370000px;}
.ya_c01270{bottom:680.970000px;}
.y9_c01270{bottom:705.420000px;}
.y8_c01270{bottom:729.570000px;}
.y7_c01270{bottom:754.320000px;}
.y6_c01270{bottom:778.620000px;}
.y5_c01270{bottom:802.470000px;}
.y4_c01270{bottom:827.220000px;}
.y3_c01270{bottom:851.820000px;}
.y2_c01270{bottom:876.720000px;}
.y1_c01270{bottom:911.970000px;}
.h7_c01270{height:13.200073px;}
.h8_c01270{height:43.804688px;}
.h2_c01270{height:57.445312px;}
.h3_c01270{height:66.713379px;}
.h4_c01270{height:72.168457px;}
.h5_c01270{height:98.756836px;}
.h6_c01270{height:120.324000px;}
.h1_c01270{height:167.126953px;}
.h0_c01270{height:975.750000px;}
.w2_c01270{width:104.875500px;}
.w0_c01270{width:664.200000px;}
.w1_c01270{width:664.500000px;}
.x0_c01270{left:0.000000px;}
.xa_c01270{left:73.650000px;}
.x9_c01270{left:75.150000px;}
.x5_c01270{left:76.500000px;}
.x4_c01270{left:78.000000px;}
.x3_c01270{left:79.650000px;}
.x2_c01270{left:80.700000px;}
.x6_c01270{left:88.650000px;}
.x1_c01270{left:97.500000px;}
.x8_c01270{left:123.900000px;}
.x7_c01270{left:125.400000px;}
.xc_c01270{left:283.914230px;}
.xb_c01270{left:385.050000px;}
@media print{
.v0_c01270{vertical-align:0.000000pt;}
.ls3_c01270{letter-spacing:-5.333333pt;}
.ls2_c01270{letter-spacing:0.000000pt;}
.ls1_c01270{letter-spacing:7.290667pt;}
.ls0_c01270{letter-spacing:8.000000pt;}
.ws3_c01270{word-spacing:-24.962667pt;}
.ws1_c01270{word-spacing:-20.210667pt;}
.ws0_c01270{word-spacing:-8.912000pt;}
.ws4_c01270{word-spacing:0.000000pt;}
.ws2_c01270{word-spacing:3.141333pt;}
._1f_c01270{margin-left:-16.632000pt;}
._1c_c01270{margin-left:-12.253333pt;}
._21_c01270{margin-left:-10.234667pt;}
._1a_c01270{margin-left:-8.080000pt;}
._19_c01270{margin-left:-5.917333pt;}
._3_c01270{margin-left:-4.664000pt;}
._18_c01270{margin-left:-3.696000pt;}
._2_c01270{margin-left:-2.640000pt;}
._11_c01270{margin-left:-1.570667pt;}
._0_c01270{width:1.144000pt;}
._1_c01270{width:2.200000pt;}
._10_c01270{width:3.138667pt;}
._5_c01270{width:4.341333pt;}
._9_c01270{width:5.973333pt;}
._12_c01270{width:6.938667pt;}
._4_c01270{width:8.010667pt;}
._b_c01270{width:9.058667pt;}
._8_c01270{width:10.032000pt;}
._6_c01270{width:11.450667pt;}
._1b_c01270{width:12.376000pt;}
._c_c01270{width:13.746667pt;}
._a_c01270{width:14.744000pt;}
._f_c01270{width:16.624000pt;}
._d_c01270{width:17.530667pt;}
._7_c01270{width:18.898667pt;}
._e_c01270{width:20.125333pt;}
._13_c01270{width:21.533333pt;}
._15_c01270{width:23.085333pt;}
._14_c01270{width:24.064000pt;}
._17_c01270{width:25.680000pt;}
._22_c01270{width:26.682667pt;}
._16_c01270{width:29.178667pt;}
._20_c01270{width:32.450667pt;}
._24_c01270{width:51.021333pt;}
._1d_c01270{width:109.824000pt;}
._1e_c01270{width:126.813333pt;}
._23_c01270{width:209.610667pt;}
.fs6_c01270{font-size:42.666667pt;}
.fs2_c01270{font-size:50.666667pt;}
.fs3_c01270{font-size:69.333333pt;}
.fs0_c01270{font-size:88.000000pt;}
.fs4_c01270{font-size:93.333333pt;}
.fs5_c01270{font-size:98.666667pt;}
.fs1_c01270{font-size:117.333333pt;}
.y0_c01270{bottom:0.000000pt;}
.y26_c01270{bottom:2.760000pt;}
.y25_c01270{bottom:6.425217pt;}
.y24_c01270{bottom:43.440000pt;}
.y23_c01270{bottom:65.440000pt;}
.y22_c01270{bottom:87.306667pt;}
.y21_c01270{bottom:109.706667pt;}
.y20_c01270{bottom:131.306667pt;}
.y1f_c01270{bottom:153.306667pt;}
.y1e_c01270{bottom:174.906667pt;}
.y1d_c01270{bottom:196.773333pt;}
.y1c_c01270{bottom:217.840000pt;}
.y1b_c01270{bottom:240.240000pt;}
.y1a_c01270{bottom:261.573333pt;}
.y19_c01270{bottom:283.440000pt;}
.y18_c01270{bottom:305.040000pt;}
.y17_c01270{bottom:326.373333pt;}
.y16_c01270{bottom:348.240000pt;}
.y15_c01270{bottom:369.573333pt;}
.y14_c01270{bottom:391.173333pt;}
.y13_c01270{bottom:412.773333pt;}
.y12_c01270{bottom:434.106667pt;}
.y11_c01270{bottom:456.240000pt;}
.y10_c01270{bottom:477.040000pt;}
.yf_c01270{bottom:497.440000pt;}
.ye_c01270{bottom:519.306667pt;}
.yd_c01270{bottom:541.173333pt;}
.yc_c01270{bottom:563.040000pt;}
.yb_c01270{bottom:583.440000pt;}
.ya_c01270{bottom:605.306667pt;}
.y9_c01270{bottom:627.040000pt;}
.y8_c01270{bottom:648.506667pt;}
.y7_c01270{bottom:670.506667pt;}
.y6_c01270{bottom:692.106667pt;}
.y5_c01270{bottom:713.306667pt;}
.y4_c01270{bottom:735.306667pt;}
.y3_c01270{bottom:757.173333pt;}
.y2_c01270{bottom:779.306667pt;}
.y1_c01270{bottom:810.640000pt;}
.h7_c01270{height:11.733399pt;}
.h8_c01270{height:38.937500pt;}
.h2_c01270{height:51.062500pt;}
.h3_c01270{height:59.300781pt;}
.h4_c01270{height:64.149740pt;}
.h5_c01270{height:87.783854pt;}
.h6_c01270{height:106.954667pt;}
.h1_c01270{height:148.557292pt;}
.h0_c01270{height:867.333333pt;}
.w2_c01270{width:93.222667pt;}
.w0_c01270{width:590.400000pt;}
.w1_c01270{width:590.666667pt;}
.x0_c01270{left:0.000000pt;}
.xa_c01270{left:65.466667pt;}
.x9_c01270{left:66.800000pt;}
.x5_c01270{left:68.000000pt;}
.x4_c01270{left:69.333333pt;}
.x3_c01270{left:70.800000pt;}
.x2_c01270{left:71.733333pt;}
.x6_c01270{left:78.800000pt;}
.x1_c01270{left:86.666667pt;}
.x8_c01270{left:110.133333pt;}
.x7_c01270{left:111.466667pt;}
.xc_c01270{left:252.368205pt;}
.xb_c01270{left:342.266667pt;}
}





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

.ir_c01271:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01271{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01271;src:url('chunks/assets/font_d6d77f5af73ec735ad424301.woff2')format("woff");}.ff1_c01271{font-family:ff1_c01271;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01271;src:url('chunks/assets/font_8dd7e890d49caa0e330a9163.woff2')format("woff");}.ff2_c01271{font-family:ff2_c01271;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01271;src:url('chunks/assets/font_09492cb1b48ac379cad04035.woff2')format("woff");}.ff3_c01271{font-family:ff3_c01271;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01271;src:url('chunks/assets/font_00a89de5aea06142db54fad7.woff2')format("woff");}.ff4_c01271{font-family:ff4_c01271;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01271;src:url('chunks/assets/font_7447725cec1e76c042b932b2.woff2')format("woff");}.ff5_c01271{font-family:ff5_c01271;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01271;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c01271{font-family:ff6_c01271;line-height:1.219238;font-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_c01271{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m0_c01271{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01271{vertical-align:0.000000px;}
.ls0_c01271{letter-spacing:0.000000px;}
.ls1_c01271{letter-spacing:3.000000px;}
.ls2_c01271{letter-spacing:15.000000px;}
.sc__c01271{text-shadow:none;}
.sc0_c01271{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01271{-webkit-text-stroke:0px transparent;}
.sc0_c01271{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01271{word-spacing:-59.184000px;}
.ws1_c01271{word-spacing:-42.984000px;}
.ws3_c01271{word-spacing:-31.926000px;}
.ws0_c01271{word-spacing:-26.250000px;}
.ws4_c01271{word-spacing:-16.926000px;}
.ws5_c01271{word-spacing:0.000000px;}
._14_c01271{margin-left:-10.716000px;}
._15_c01271{margin-left:-8.694000px;}
._7_c01271{margin-left:-7.548000px;}
._6_c01271{margin-left:-5.640000px;}
._8_c01271{margin-left:-4.386000px;}
._5_c01271{margin-left:-2.958000px;}
._0_c01271{margin-left:-1.500000px;}
._e_c01271{width:1.002000px;}
._4_c01271{width:2.652000px;}
._10_c01271{width:3.654000px;}
._3_c01271{width:4.692000px;}
._2_c01271{width:6.528000px;}
._b_c01271{width:7.812000px;}
._c_c01271{width:9.504000px;}
._9_c01271{width:10.830000px;}
._f_c01271{width:12.246000px;}
._11_c01271{width:14.190000px;}
._17_c01271{width:15.588000px;}
._12_c01271{width:18.618000px;}
._13_c01271{width:19.992000px;}
._a_c01271{width:21.282000px;}
._16_c01271{width:22.512000px;}
._18_c01271{width:23.952000px;}
._d_c01271{width:33.018000px;}
._19_c01271{width:35.502000px;}
._1_c01271{width:140.148000px;}
._1a_c01271{width:2175.036000px;}
.fc2_c01271{color:transparent;}
.fc1_c01271{color:rgb(128,128,128);}
.fc0_c01271{color:rgb(0,0,0);}
.fs6_c01271{font-size:48.000000px;}
.fs4_c01271{font-size:66.000000px;}
.fs3_c01271{font-size:72.000000px;}
.fs2_c01271{font-size:78.000000px;}
.fs1_c01271{font-size:102.000000px;}
.fs0_c01271{font-size:105.000000px;}
.fs5_c01271{font-size:108.000000px;}
.y0_c01271{bottom:0.000000px;}
.y26_c01271{bottom:3.105000px;}
.y25_c01271{bottom:7.228357px;}
.y24_c01271{bottom:50.580000px;}
.y23_c01271{bottom:75.630000px;}
.y22_c01271{bottom:100.980000px;}
.y21_c01271{bottom:125.880000px;}
.y20_c01271{bottom:150.630000px;}
.y1f_c01271{bottom:175.530000px;}
.y1e_c01271{bottom:199.980000px;}
.y1d_c01271{bottom:224.880000px;}
.y1c_c01271{bottom:249.780000px;}
.y1b_c01271{bottom:274.380000px;}
.y1a_c01271{bottom:298.380000px;}
.y19_c01271{bottom:323.280000px;}
.y18_c01271{bottom:347.730000px;}
.y17_c01271{bottom:372.330000px;}
.y16_c01271{bottom:396.930000px;}
.y15_c01271{bottom:421.530000px;}
.y14_c01271{bottom:445.530000px;}
.y13_c01271{bottom:470.130000px;}
.y12_c01271{bottom:494.430000px;}
.y11_c01271{bottom:518.130000px;}
.y10_c01271{bottom:541.980000px;}
.yf_c01271{bottom:566.430000px;}
.ye_c01271{bottom:590.730000px;}
.yd_c01271{bottom:614.580000px;}
.yc_c01271{bottom:639.630000px;}
.yb_c01271{bottom:663.930000px;}
.ya_c01271{bottom:688.230000px;}
.y9_c01271{bottom:712.830000px;}
.y8_c01271{bottom:736.530000px;}
.y7_c01271{bottom:761.130000px;}
.y6_c01271{bottom:785.130000px;}
.y5_c01271{bottom:809.430000px;}
.y4_c01271{bottom:833.730000px;}
.y3_c01271{bottom:858.030000px;}
.y2_c01271{bottom:882.180000px;}
.y1_c01271{bottom:914.730000px;}
.h7_c01271{height:13.200074px;}
.h8_c01271{height:43.804688px;}
.h3_c01271{height:83.226000px;}
.h5_c01271{height:83.826000px;}
.h4_c01271{height:84.269531px;}
.h2_c01271{height:103.000488px;}
.h6_c01271{height:108.843750px;}
.h1_c01271{height:965.250000px;}
.h0_c01271{height:965.550000px;}
.w2_c01271{width:104.875500px;}
.w1_c01271{width:653.250000px;}
.w0_c01271{width:653.400000px;}
.x0_c01271{left:0.000000px;}
.xa_c01271{left:86.100000px;}
.x3_c01271{left:87.150000px;}
.x4_c01271{left:88.350000px;}
.x5_c01271{left:89.400000px;}
.x6_c01271{left:91.350000px;}
.x7_c01271{left:93.450000px;}
.x8_c01271{left:94.500000px;}
.x9_c01271{left:95.850000px;}
.x2_c01271{left:113.400000px;}
.x1_c01271{left:124.950000px;}
.xb_c01271{left:278.514267px;}
@media print{
.v0_c01271{vertical-align:0.000000pt;}
.ls0_c01271{letter-spacing:0.000000pt;}
.ls1_c01271{letter-spacing:2.666667pt;}
.ls2_c01271{letter-spacing:13.333333pt;}
.ws2_c01271{word-spacing:-52.608000pt;}
.ws1_c01271{word-spacing:-38.208000pt;}
.ws3_c01271{word-spacing:-28.378667pt;}
.ws0_c01271{word-spacing:-23.333333pt;}
.ws4_c01271{word-spacing:-15.045333pt;}
.ws5_c01271{word-spacing:0.000000pt;}
._14_c01271{margin-left:-9.525333pt;}
._15_c01271{margin-left:-7.728000pt;}
._7_c01271{margin-left:-6.709333pt;}
._6_c01271{margin-left:-5.013333pt;}
._8_c01271{margin-left:-3.898667pt;}
._5_c01271{margin-left:-2.629333pt;}
._0_c01271{margin-left:-1.333333pt;}
._e_c01271{width:0.890667pt;}
._4_c01271{width:2.357333pt;}
._10_c01271{width:3.248000pt;}
._3_c01271{width:4.170667pt;}
._2_c01271{width:5.802667pt;}
._b_c01271{width:6.944000pt;}
._c_c01271{width:8.448000pt;}
._9_c01271{width:9.626667pt;}
._f_c01271{width:10.885333pt;}
._11_c01271{width:12.613333pt;}
._17_c01271{width:13.856000pt;}
._12_c01271{width:16.549333pt;}
._13_c01271{width:17.770667pt;}
._a_c01271{width:18.917333pt;}
._16_c01271{width:20.010667pt;}
._18_c01271{width:21.290667pt;}
._d_c01271{width:29.349333pt;}
._19_c01271{width:31.557333pt;}
._1_c01271{width:124.576000pt;}
._1a_c01271{width:1933.365333pt;}
.fs6_c01271{font-size:42.666667pt;}
.fs4_c01271{font-size:58.666667pt;}
.fs3_c01271{font-size:64.000000pt;}
.fs2_c01271{font-size:69.333333pt;}
.fs1_c01271{font-size:90.666667pt;}
.fs0_c01271{font-size:93.333333pt;}
.fs5_c01271{font-size:96.000000pt;}
.y0_c01271{bottom:0.000000pt;}
.y26_c01271{bottom:2.760000pt;}
.y25_c01271{bottom:6.425206pt;}
.y24_c01271{bottom:44.960000pt;}
.y23_c01271{bottom:67.226667pt;}
.y22_c01271{bottom:89.760000pt;}
.y21_c01271{bottom:111.893333pt;}
.y20_c01271{bottom:133.893333pt;}
.y1f_c01271{bottom:156.026667pt;}
.y1e_c01271{bottom:177.760000pt;}
.y1d_c01271{bottom:199.893333pt;}
.y1c_c01271{bottom:222.026667pt;}
.y1b_c01271{bottom:243.893333pt;}
.y1a_c01271{bottom:265.226667pt;}
.y19_c01271{bottom:287.360000pt;}
.y18_c01271{bottom:309.093333pt;}
.y17_c01271{bottom:330.960000pt;}
.y16_c01271{bottom:352.826667pt;}
.y15_c01271{bottom:374.693333pt;}
.y14_c01271{bottom:396.026667pt;}
.y13_c01271{bottom:417.893333pt;}
.y12_c01271{bottom:439.493333pt;}
.y11_c01271{bottom:460.560000pt;}
.y10_c01271{bottom:481.760000pt;}
.yf_c01271{bottom:503.493333pt;}
.ye_c01271{bottom:525.093333pt;}
.yd_c01271{bottom:546.293333pt;}
.yc_c01271{bottom:568.560000pt;}
.yb_c01271{bottom:590.160000pt;}
.ya_c01271{bottom:611.760000pt;}
.y9_c01271{bottom:633.626667pt;}
.y8_c01271{bottom:654.693333pt;}
.y7_c01271{bottom:676.560000pt;}
.y6_c01271{bottom:697.893333pt;}
.y5_c01271{bottom:719.493333pt;}
.y4_c01271{bottom:741.093333pt;}
.y3_c01271{bottom:762.693333pt;}
.y2_c01271{bottom:784.160000pt;}
.y1_c01271{bottom:813.093333pt;}
.h7_c01271{height:11.733399pt;}
.h8_c01271{height:38.937500pt;}
.h3_c01271{height:73.978667pt;}
.h5_c01271{height:74.512000pt;}
.h4_c01271{height:74.906250pt;}
.h2_c01271{height:91.555990pt;}
.h6_c01271{height:96.750000pt;}
.h1_c01271{height:858.000000pt;}
.h0_c01271{height:858.266667pt;}
.w2_c01271{width:93.222667pt;}
.w1_c01271{width:580.666667pt;}
.w0_c01271{width:580.800000pt;}
.x0_c01271{left:0.000000pt;}
.xa_c01271{left:76.533333pt;}
.x3_c01271{left:77.466667pt;}
.x4_c01271{left:78.533333pt;}
.x5_c01271{left:79.466667pt;}
.x6_c01271{left:81.200000pt;}
.x7_c01271{left:83.066667pt;}
.x8_c01271{left:84.000000pt;}
.x9_c01271{left:85.200000pt;}
.x2_c01271{left:100.800000pt;}
.x1_c01271{left:111.066667pt;}
.xb_c01271{left:247.568237pt;}
}





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

.ir_c01272:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01272{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01272;src:url('chunks/assets/font_c71be5af8b81488502b90770.woff2')format("woff");}.ff1_c01272{font-family:ff1_c01272;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01272;src:url('chunks/assets/font_6178594201bdf56289ead1fa.woff2')format("woff");}.ff2_c01272{font-family:ff2_c01272;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01272;src:url('chunks/assets/font_0a6b152ff3a4eb77b896955f.woff2')format("woff");}.ff3_c01272{font-family:ff3_c01272;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01272;src:url('chunks/assets/font_1b26d49558f6cfb27ffece97.woff2')format("woff");}.ff4_c01272{font-family:ff4_c01272;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01272;src:url('chunks/assets/font_7bb2fe332d18165e2ed66f45.woff2')format("woff");}.ff5_c01272{font-family:ff5_c01272;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01272;src:url('chunks/assets/font_ef09a4ef4e75eaada940094c.woff2')format("woff");}.ff6_c01272{font-family:ff6_c01272;line-height:1.284180;font-style:normal;font-weight: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_c01272;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c01272{font-family:ff7_c01272;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01272{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c01272{vertical-align:-1.200000px;}
.v0_c01272{vertical-align:0.000000px;}
.v2_c01272{vertical-align:136.200000px;}
.ls6_c01272{letter-spacing:-21.000000px;}
.ls5_c01272{letter-spacing:-9.000000px;}
.ls4_c01272{letter-spacing:0.000000px;}
.ls2_c01272{letter-spacing:21.501000px;}
.ls3_c01272{letter-spacing:24.000000px;}
.ls1_c01272{letter-spacing:41.820000px;}
.ls0_c01272{letter-spacing:120.600000px;}
.sc__c01272{text-shadow:none;}
.sc0_c01272{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01272{-webkit-text-stroke:0px transparent;}
.sc0_c01272{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c01272{word-spacing:-80.100000px;}
.ws1_c01272{word-spacing:-67.686000px;}
.ws3_c01272{word-spacing:-35.100000px;}
.ws2_c01272{word-spacing:-24.750000px;}
.ws0_c01272{word-spacing:-20.250000px;}
.ws5_c01272{word-spacing:0.000000px;}
._30_c01272{margin-left:-59.400000px;}
._2d_c01272{margin-left:-41.427000px;}
._1f_c01272{margin-left:-38.586000px;}
._24_c01272{margin-left:-37.371000px;}
._11_c01272{margin-left:-35.496000px;}
._2c_c01272{margin-left:-34.146000px;}
._14_c01272{margin-left:-33.048000px;}
._23_c01272{margin-left:-31.830000px;}
._7_c01272{margin-left:-30.732000px;}
._5_c01272{margin-left:-28.764000px;}
._28_c01272{margin-left:-27.510000px;}
._10_c01272{margin-left:-26.088000px;}
._d_c01272{margin-left:-24.288000px;}
._20_c01272{margin-left:-22.383000px;}
._18_c01272{margin-left:-21.354000px;}
._16_c01272{margin-left:-19.278000px;}
._1c_c01272{margin-left:-17.625000px;}
._22_c01272{margin-left:-16.614000px;}
._12_c01272{margin-left:-15.606000px;}
._e_c01272{margin-left:-14.382000px;}
._17_c01272{margin-left:-12.918000px;}
._a_c01272{margin-left:-11.730000px;}
._4_c01272{margin-left:-9.960000px;}
._3_c01272{margin-left:-8.535000px;}
._c_c01272{margin-left:-6.558000px;}
._b_c01272{margin-left:-5.172000px;}
._9_c01272{margin-left:-3.651000px;}
._f_c01272{margin-left:-1.704000px;}
._6_c01272{width:1.734000px;}
._8_c01272{width:2.997000px;}
._2b_c01272{width:4.065000px;}
._1b_c01272{width:5.103000px;}
._26_c01272{width:6.210000px;}
._27_c01272{width:7.776000px;}
._1_c01272{width:9.198000px;}
._2_c01272{width:10.521000px;}
._1d_c01272{width:12.537000px;}
._0_c01272{width:13.797000px;}
._21_c01272{width:15.000000px;}
._2a_c01272{width:16.014000px;}
._1e_c01272{width:19.278000px;}
._25_c01272{width:21.303000px;}
._29_c01272{width:22.416000px;}
._1a_c01272{width:38.178000px;}
._2e_c01272{width:42.387000px;}
._15_c01272{width:55.590000px;}
._19_c01272{width:99.399000px;}
._13_c01272{width:129.348000px;}
._2f_c01272{width:226.113000px;}
._32_c01272{width:293.157000px;}
._31_c01272{width:708.594000px;}
.fc2_c01272{color:transparent;}
.fc1_c01272{color:rgb(128,128,128);}
.fc0_c01272{color:rgb(0,0,0);}
.fs9_c01272{font-size:48.000000px;}
.fs0_c01272{font-size:60.000000px;}
.fs1_c01272{font-size:63.000000px;}
.fs6_c01272{font-size:72.000000px;}
.fs3_c01272{font-size:81.000000px;}
.fs4_c01272{font-size:87.000000px;}
.fs7_c01272{font-size:90.000000px;}
.fs5_c01272{font-size:99.000000px;}
.fs2_c01272{font-size:102.000000px;}
.fs8_c01272{font-size:279.000000px;}
.y0_c01272{bottom:0.000000px;}
.y25_c01272{bottom:3.105000px;}
.y24_c01272{bottom:7.228369px;}
.y23_c01272{bottom:49.620000px;}
.y22_c01272{bottom:74.520000px;}
.y21_c01272{bottom:100.470000px;}
.y20_c01272{bottom:124.770000px;}
.y1e_c01272{bottom:140.670000px;}
.y1f_c01272{bottom:150.120000px;}
.y1d_c01272{bottom:200.370000px;}
.y1c_c01272{bottom:223.470000px;}
.y1b_c01272{bottom:247.170000px;}
.y1a_c01272{bottom:272.370000px;}
.y19_c01272{bottom:297.570000px;}
.y18_c01272{bottom:321.570000px;}
.y17_c01272{bottom:345.570000px;}
.y16_c01272{bottom:370.470000px;}
.y15_c01272{bottom:394.770000px;}
.y14_c01272{bottom:419.070000px;}
.y13_c01272{bottom:443.070000px;}
.y12_c01272{bottom:466.770000px;}
.y11_c01272{bottom:491.070000px;}
.y10_c01272{bottom:515.370000px;}
.yf_c01272{bottom:539.370000px;}
.ye_c01272{bottom:562.920000px;}
.yd_c01272{bottom:586.620000px;}
.yc_c01272{bottom:610.770000px;}
.yb_c01272{bottom:635.070000px;}
.ya_c01272{bottom:659.370000px;}
.y9_c01272{bottom:683.370000px;}
.y8_c01272{bottom:707.670000px;}
.y7_c01272{bottom:731.970000px;}
.y6_c01272{bottom:756.570000px;}
.y5_c01272{bottom:780.870000px;}
.y4_c01272{bottom:803.970000px;}
.y3_c01272{bottom:824.820000px;}
.y2_c01272{bottom:853.770000px;}
.y1_c01272{bottom:878.820000px;}
.h6_c01272{height:13.200073px;}
.h7_c01272{height:43.804688px;}
.h4_c01272{height:70.628906px;}
.h2_c01272{height:103.639927px;}
.h3_c01272{height:104.839927px;}
.h5_c01272{height:281.179688px;}
.h1_c01272{height:986.250000px;}
.h0_c01272{height:986.550000px;}
.w1_c01272{width:104.875500px;}
.w0_c01272{width:672.000000px;}
.x0_c01272{left:0.000000px;}
.x6_c01272{left:55.800000px;}
.x3_c01272{left:57.000000px;}
.x4_c01272{left:58.050000px;}
.x1_c01272{left:60.300000px;}
.x2_c01272{left:98.550000px;}
.x7_c01272{left:103.950000px;}
.x5_c01272{left:108.750000px;}
.x8_c01272{left:287.814240px;}
@media print{
.v1_c01272{vertical-align:-1.066667pt;}
.v0_c01272{vertical-align:0.000000pt;}
.v2_c01272{vertical-align:121.066667pt;}
.ls6_c01272{letter-spacing:-18.666667pt;}
.ls5_c01272{letter-spacing:-8.000000pt;}
.ls4_c01272{letter-spacing:0.000000pt;}
.ls2_c01272{letter-spacing:19.112000pt;}
.ls3_c01272{letter-spacing:21.333333pt;}
.ls1_c01272{letter-spacing:37.173333pt;}
.ls0_c01272{letter-spacing:107.200000pt;}
.ws4_c01272{word-spacing:-71.200000pt;}
.ws1_c01272{word-spacing:-60.165333pt;}
.ws3_c01272{word-spacing:-31.200000pt;}
.ws2_c01272{word-spacing:-22.000000pt;}
.ws0_c01272{word-spacing:-18.000000pt;}
.ws5_c01272{word-spacing:0.000000pt;}
._30_c01272{margin-left:-52.800000pt;}
._2d_c01272{margin-left:-36.824000pt;}
._1f_c01272{margin-left:-34.298667pt;}
._24_c01272{margin-left:-33.218667pt;}
._11_c01272{margin-left:-31.552000pt;}
._2c_c01272{margin-left:-30.352000pt;}
._14_c01272{margin-left:-29.376000pt;}
._23_c01272{margin-left:-28.293333pt;}
._7_c01272{margin-left:-27.317333pt;}
._5_c01272{margin-left:-25.568000pt;}
._28_c01272{margin-left:-24.453333pt;}
._10_c01272{margin-left:-23.189333pt;}
._d_c01272{margin-left:-21.589333pt;}
._20_c01272{margin-left:-19.896000pt;}
._18_c01272{margin-left:-18.981333pt;}
._16_c01272{margin-left:-17.136000pt;}
._1c_c01272{margin-left:-15.666667pt;}
._22_c01272{margin-left:-14.768000pt;}
._12_c01272{margin-left:-13.872000pt;}
._e_c01272{margin-left:-12.784000pt;}
._17_c01272{margin-left:-11.482667pt;}
._a_c01272{margin-left:-10.426667pt;}
._4_c01272{margin-left:-8.853333pt;}
._3_c01272{margin-left:-7.586667pt;}
._c_c01272{margin-left:-5.829333pt;}
._b_c01272{margin-left:-4.597333pt;}
._9_c01272{margin-left:-3.245333pt;}
._f_c01272{margin-left:-1.514667pt;}
._6_c01272{width:1.541333pt;}
._8_c01272{width:2.664000pt;}
._2b_c01272{width:3.613333pt;}
._1b_c01272{width:4.536000pt;}
._26_c01272{width:5.520000pt;}
._27_c01272{width:6.912000pt;}
._1_c01272{width:8.176000pt;}
._2_c01272{width:9.352000pt;}
._1d_c01272{width:11.144000pt;}
._0_c01272{width:12.264000pt;}
._21_c01272{width:13.333333pt;}
._2a_c01272{width:14.234667pt;}
._1e_c01272{width:17.136000pt;}
._25_c01272{width:18.936000pt;}
._29_c01272{width:19.925333pt;}
._1a_c01272{width:33.936000pt;}
._2e_c01272{width:37.677333pt;}
._15_c01272{width:49.413333pt;}
._19_c01272{width:88.354667pt;}
._13_c01272{width:114.976000pt;}
._2f_c01272{width:200.989333pt;}
._32_c01272{width:260.584000pt;}
._31_c01272{width:629.861333pt;}
.fs9_c01272{font-size:42.666667pt;}
.fs0_c01272{font-size:53.333333pt;}
.fs1_c01272{font-size:56.000000pt;}
.fs6_c01272{font-size:64.000000pt;}
.fs3_c01272{font-size:72.000000pt;}
.fs4_c01272{font-size:77.333333pt;}
.fs7_c01272{font-size:80.000000pt;}
.fs5_c01272{font-size:88.000000pt;}
.fs2_c01272{font-size:90.666667pt;}
.fs8_c01272{font-size:248.000000pt;}
.y0_c01272{bottom:0.000000pt;}
.y25_c01272{bottom:2.760000pt;}
.y24_c01272{bottom:6.425217pt;}
.y23_c01272{bottom:44.106667pt;}
.y22_c01272{bottom:66.240000pt;}
.y21_c01272{bottom:89.306667pt;}
.y20_c01272{bottom:110.906667pt;}
.y1e_c01272{bottom:125.040000pt;}
.y1f_c01272{bottom:133.440000pt;}
.y1d_c01272{bottom:178.106667pt;}
.y1c_c01272{bottom:198.640000pt;}
.y1b_c01272{bottom:219.706667pt;}
.y1a_c01272{bottom:242.106667pt;}
.y19_c01272{bottom:264.506667pt;}
.y18_c01272{bottom:285.840000pt;}
.y17_c01272{bottom:307.173333pt;}
.y16_c01272{bottom:329.306667pt;}
.y15_c01272{bottom:350.906667pt;}
.y14_c01272{bottom:372.506667pt;}
.y13_c01272{bottom:393.840000pt;}
.y12_c01272{bottom:414.906667pt;}
.y11_c01272{bottom:436.506667pt;}
.y10_c01272{bottom:458.106667pt;}
.yf_c01272{bottom:479.440000pt;}
.ye_c01272{bottom:500.373333pt;}
.yd_c01272{bottom:521.440000pt;}
.yc_c01272{bottom:542.906667pt;}
.yb_c01272{bottom:564.506667pt;}
.ya_c01272{bottom:586.106667pt;}
.y9_c01272{bottom:607.440000pt;}
.y8_c01272{bottom:629.040000pt;}
.y7_c01272{bottom:650.640000pt;}
.y6_c01272{bottom:672.506667pt;}
.y5_c01272{bottom:694.106667pt;}
.y4_c01272{bottom:714.640000pt;}
.y3_c01272{bottom:733.173333pt;}
.y2_c01272{bottom:758.906667pt;}
.y1_c01272{bottom:781.173333pt;}
.h6_c01272{height:11.733399pt;}
.h7_c01272{height:38.937500pt;}
.h4_c01272{height:62.781250pt;}
.h2_c01272{height:92.124379pt;}
.h3_c01272{height:93.191046pt;}
.h5_c01272{height:249.937500pt;}
.h1_c01272{height:876.666667pt;}
.h0_c01272{height:876.933333pt;}
.w1_c01272{width:93.222667pt;}
.w0_c01272{width:597.333333pt;}
.x0_c01272{left:0.000000pt;}
.x6_c01272{left:49.600000pt;}
.x3_c01272{left:50.666667pt;}
.x4_c01272{left:51.600000pt;}
.x1_c01272{left:53.600000pt;}
.x2_c01272{left:87.600000pt;}
.x7_c01272{left:92.400000pt;}
.x5_c01272{left:96.666667pt;}
.x8_c01272{left:255.834880pt;}
}





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

.ir_c01273:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01273{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01273;src:url('chunks/assets/font_a28bd2b838c6383a5ec722c2.woff2')format("woff");}.ff1_c01273{font-family:ff1_c01273;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01273;src:url('chunks/assets/font_bdea162eae770add5fb955b0.woff2')format("woff");}.ff2_c01273{font-family:ff2_c01273;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01273;src:url('chunks/assets/font_d94abc396c8d75650b2fb06e.woff2')format("woff");}.ff3_c01273{font-family:ff3_c01273;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01273;src:url('chunks/assets/font_8db299245282e26372ec5050.woff2')format("woff");}.ff4_c01273{font-family:ff4_c01273;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01273;src:url('chunks/assets/font_ef0d1f211838fef0535a3169.woff2')format("woff");}.ff5_c01273{font-family:ff5_c01273;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01273;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c01273{font-family:ff6_c01273;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01273{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01273{vertical-align:0.000000px;}
.v1_c01273{vertical-align:5.400000px;}
.lsa_c01273{letter-spacing:-9.000000px;}
.ls7_c01273{letter-spacing:0.000000px;}
.ls5_c01273{letter-spacing:0.768000px;}
.ls0_c01273{letter-spacing:0.900000px;}
.ls8_c01273{letter-spacing:3.000000px;}
.ls2_c01273{letter-spacing:5.982000px;}
.ls1_c01273{letter-spacing:9.900000px;}
.ls3_c01273{letter-spacing:11.700000px;}
.ls6_c01273{letter-spacing:17.844000px;}
.ls4_c01273{letter-spacing:26.400000px;}
.lsb_c01273{letter-spacing:27.000000px;}
.ls9_c01273{letter-spacing:39.000000px;}
.sc__c01273{text-shadow:none;}
.sc0_c01273{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01273{-webkit-text-stroke:0px transparent;}
.sc0_c01273{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c01273{word-spacing:-67.686000px;}
.ws6_c01273{word-spacing:-59.250000px;}
.ws8_c01273{word-spacing:-47.250000px;}
.ws2_c01273{word-spacing:-20.250000px;}
.ws5_c01273{word-spacing:-18.906000px;}
.ws1_c01273{word-spacing:-17.352000px;}
.ws4_c01273{word-spacing:-17.250000px;}
.ws7_c01273{word-spacing:-9.798000px;}
.ws9_c01273{word-spacing:0.000000px;}
.ws0_c01273{word-spacing:0.216000px;}
._b_c01273{margin-left:-31.509000px;}
._29_c01273{margin-left:-30.153000px;}
._19_c01273{margin-left:-27.054000px;}
._2d_c01273{margin-left:-25.482000px;}
._2b_c01273{margin-left:-23.994000px;}
._18_c01273{margin-left:-21.285000px;}
._1b_c01273{margin-left:-19.845000px;}
._20_c01273{margin-left:-16.380000px;}
._25_c01273{margin-left:-15.135000px;}
._2f_c01273{margin-left:-13.527000px;}
._16_c01273{margin-left:-12.243000px;}
._1a_c01273{margin-left:-9.963000px;}
._1d_c01273{margin-left:-8.343000px;}
._13_c01273{margin-left:-7.209000px;}
._15_c01273{margin-left:-5.010000px;}
._14_c01273{margin-left:-3.888000px;}
._e_c01273{margin-left:-2.367000px;}
._17_c01273{margin-left:-1.167000px;}
._c_c01273{width:1.053000px;}
._d_c01273{width:2.106000px;}
._10_c01273{width:3.159000px;}
._f_c01273{width:4.644000px;}
._12_c01273{width:5.670000px;}
._22_c01273{width:7.164000px;}
._5_c01273{width:8.208000px;}
._1f_c01273{width:9.729000px;}
._4_c01273{width:10.872000px;}
._11_c01273{width:12.150000px;}
._9_c01273{width:13.257000px;}
._8_c01273{width:14.976000px;}
._21_c01273{width:16.488000px;}
._27_c01273{width:18.288000px;}
._a_c01273{width:19.719000px;}
._26_c01273{width:21.360000px;}
._1_c01273{width:22.437000px;}
._7_c01273{width:24.480000px;}
._6_c01273{width:25.992000px;}
._1c_c01273{width:27.192000px;}
._3_c01273{width:32.541000px;}
._24_c01273{width:36.549000px;}
._2_c01273{width:38.232000px;}
._0_c01273{width:39.933000px;}
._1e_c01273{width:49.896000px;}
._23_c01273{width:62.904000px;}
._2a_c01273{width:82.914000px;}
._2e_c01273{width:101.280000px;}
._32_c01273{width:114.768000px;}
._28_c01273{width:133.461000px;}
._30_c01273{width:181.152000px;}
._31_c01273{width:320.697000px;}
._2c_c01273{width:370.272000px;}
._34_c01273{width:414.477000px;}
._33_c01273{width:617.463000px;}
.fc2_c01273{color:transparent;}
.fc1_c01273{color:rgb(128,128,128);}
.fc0_c01273{color:rgb(0,0,0);}
.fs7_c01273{font-size:48.000000px;}
.fs4_c01273{font-size:60.000000px;}
.fs5_c01273{font-size:66.000000px;}
.fs3_c01273{font-size:69.000000px;}
.fs1_c01273{font-size:72.000000px;}
.fs6_c01273{font-size:78.000000px;}
.fs0_c01273{font-size:81.000000px;}
.fs2_c01273{font-size:87.000000px;}
.y0_c01273{bottom:0.000000px;}
.y24_c01273{bottom:3.105000px;}
.y23_c01273{bottom:7.228369px;}
.y22_c01273{bottom:37.020000px;}
.y21_c01273{bottom:60.120000px;}
.y20_c01273{bottom:86.070000px;}
.y1f_c01273{bottom:110.670000px;}
.y1e_c01273{bottom:159.570000px;}
.y1d_c01273{bottom:185.220000px;}
.y1c_c01273{bottom:209.820000px;}
.y1b_c01273{bottom:234.870000px;}
.y1a_c01273{bottom:259.470000px;}
.y19_c01273{bottom:282.720000px;}
.y18_c01273{bottom:308.520000px;}
.y17_c01273{bottom:356.970000px;}
.y16_c01273{bottom:382.620000px;}
.y15_c01273{bottom:407.070000px;}
.y14_c01273{bottom:432.270000px;}
.y13_c01273{bottom:455.970000px;}
.y12_c01273{bottom:479.970000px;}
.y11_c01273{bottom:505.470000px;}
.y10_c01273{bottom:529.770000px;}
.yf_c01273{bottom:552.870000px;}
.ye_c01273{bottom:577.470000px;}
.yd_c01273{bottom:601.470000px;}
.yc_c01273{bottom:625.770000px;}
.yb_c01273{bottom:650.070000px;}
.ya_c01273{bottom:673.620000px;}
.y9_c01273{bottom:700.620000px;}
.y8_c01273{bottom:724.320000px;}
.y7_c01273{bottom:747.570000px;}
.y6_c01273{bottom:772.470000px;}
.y5_c01273{bottom:796.470000px;}
.y4_c01273{bottom:821.370000px;}
.y3_c01273{bottom:845.370000px;}
.y2_c01273{bottom:870.420000px;}
.y1_c01273{bottom:905.820000px;}
.ha_c01273{height:13.200073px;}
.hb_c01273{height:43.804688px;}
.h8_c01273{height:69.539062px;}
.h6_c01273{height:75.966797px;}
.h3_c01273{height:79.497070px;}
.h7_c01273{height:83.563477px;}
.h2_c01273{height:84.269531px;}
.h5_c01273{height:91.160156px;}
.h4_c01273{height:91.176000px;}
.h9_c01273{height:98.756836px;}
.h1_c01273{height:972.750000px;}
.h0_c01273{height:973.050000px;}
.w2_c01273{width:104.875500px;}
.w0_c01273{width:658.275000px;}
.w1_c01273{width:658.500000px;}
.x0_c01273{left:0.000000px;}
.x3_c01273{left:21.900000px;}
.x4_c01273{left:24.000000px;}
.x5_c01273{left:25.050000px;}
.xa_c01273{left:26.700000px;}
.xe_c01273{left:38.100000px;}
.x9_c01273{left:47.550000px;}
.x10_c01273{left:54.450000px;}
.x11_c01273{left:60.750000px;}
.xc_c01273{left:64.800000px;}
.x2_c01273{left:104.700000px;}
.xb_c01273{left:108.750000px;}
.xd_c01273{left:112.800000px;}
.xf_c01273{left:119.250000px;}
.x6_c01273{left:120.900000px;}
.x8_c01273{left:122.250000px;}
.x1_c01273{left:123.450000px;}
.x7_c01273{left:133.050000px;}
.x12_c01273{left:270.150000px;}
.x13_c01273{left:280.951767px;}
@media print{
.v0_c01273{vertical-align:0.000000pt;}
.v1_c01273{vertical-align:4.800000pt;}
.lsa_c01273{letter-spacing:-8.000000pt;}
.ls7_c01273{letter-spacing:0.000000pt;}
.ls5_c01273{letter-spacing:0.682667pt;}
.ls0_c01273{letter-spacing:0.800000pt;}
.ls8_c01273{letter-spacing:2.666667pt;}
.ls2_c01273{letter-spacing:5.317333pt;}
.ls1_c01273{letter-spacing:8.800000pt;}
.ls3_c01273{letter-spacing:10.400000pt;}
.ls6_c01273{letter-spacing:15.861333pt;}
.ls4_c01273{letter-spacing:23.466667pt;}
.lsb_c01273{letter-spacing:24.000000pt;}
.ls9_c01273{letter-spacing:34.666667pt;}
.ws3_c01273{word-spacing:-60.165333pt;}
.ws6_c01273{word-spacing:-52.666667pt;}
.ws8_c01273{word-spacing:-42.000000pt;}
.ws2_c01273{word-spacing:-18.000000pt;}
.ws5_c01273{word-spacing:-16.805333pt;}
.ws1_c01273{word-spacing:-15.424000pt;}
.ws4_c01273{word-spacing:-15.333333pt;}
.ws7_c01273{word-spacing:-8.709333pt;}
.ws9_c01273{word-spacing:0.000000pt;}
.ws0_c01273{word-spacing:0.192000pt;}
._b_c01273{margin-left:-28.008000pt;}
._29_c01273{margin-left:-26.802667pt;}
._19_c01273{margin-left:-24.048000pt;}
._2d_c01273{margin-left:-22.650667pt;}
._2b_c01273{margin-left:-21.328000pt;}
._18_c01273{margin-left:-18.920000pt;}
._1b_c01273{margin-left:-17.640000pt;}
._20_c01273{margin-left:-14.560000pt;}
._25_c01273{margin-left:-13.453333pt;}
._2f_c01273{margin-left:-12.024000pt;}
._16_c01273{margin-left:-10.882667pt;}
._1a_c01273{margin-left:-8.856000pt;}
._1d_c01273{margin-left:-7.416000pt;}
._13_c01273{margin-left:-6.408000pt;}
._15_c01273{margin-left:-4.453333pt;}
._14_c01273{margin-left:-3.456000pt;}
._e_c01273{margin-left:-2.104000pt;}
._17_c01273{margin-left:-1.037333pt;}
._c_c01273{width:0.936000pt;}
._d_c01273{width:1.872000pt;}
._10_c01273{width:2.808000pt;}
._f_c01273{width:4.128000pt;}
._12_c01273{width:5.040000pt;}
._22_c01273{width:6.368000pt;}
._5_c01273{width:7.296000pt;}
._1f_c01273{width:8.648000pt;}
._4_c01273{width:9.664000pt;}
._11_c01273{width:10.800000pt;}
._9_c01273{width:11.784000pt;}
._8_c01273{width:13.312000pt;}
._21_c01273{width:14.656000pt;}
._27_c01273{width:16.256000pt;}
._a_c01273{width:17.528000pt;}
._26_c01273{width:18.986667pt;}
._1_c01273{width:19.944000pt;}
._7_c01273{width:21.760000pt;}
._6_c01273{width:23.104000pt;}
._1c_c01273{width:24.170667pt;}
._3_c01273{width:28.925333pt;}
._24_c01273{width:32.488000pt;}
._2_c01273{width:33.984000pt;}
._0_c01273{width:35.496000pt;}
._1e_c01273{width:44.352000pt;}
._23_c01273{width:55.914667pt;}
._2a_c01273{width:73.701333pt;}
._2e_c01273{width:90.026667pt;}
._32_c01273{width:102.016000pt;}
._28_c01273{width:118.632000pt;}
._30_c01273{width:161.024000pt;}
._31_c01273{width:285.064000pt;}
._2c_c01273{width:329.130667pt;}
._34_c01273{width:368.424000pt;}
._33_c01273{width:548.856000pt;}
.fs7_c01273{font-size:42.666667pt;}
.fs4_c01273{font-size:53.333333pt;}
.fs5_c01273{font-size:58.666667pt;}
.fs3_c01273{font-size:61.333333pt;}
.fs1_c01273{font-size:64.000000pt;}
.fs6_c01273{font-size:69.333333pt;}
.fs0_c01273{font-size:72.000000pt;}
.fs2_c01273{font-size:77.333333pt;}
.y0_c01273{bottom:0.000000pt;}
.y24_c01273{bottom:2.760000pt;}
.y23_c01273{bottom:6.425217pt;}
.y22_c01273{bottom:32.906667pt;}
.y21_c01273{bottom:53.440000pt;}
.y20_c01273{bottom:76.506667pt;}
.y1f_c01273{bottom:98.373333pt;}
.y1e_c01273{bottom:141.840000pt;}
.y1d_c01273{bottom:164.640000pt;}
.y1c_c01273{bottom:186.506667pt;}
.y1b_c01273{bottom:208.773333pt;}
.y1a_c01273{bottom:230.640000pt;}
.y19_c01273{bottom:251.306667pt;}
.y18_c01273{bottom:274.240000pt;}
.y17_c01273{bottom:317.306667pt;}
.y16_c01273{bottom:340.106667pt;}
.y15_c01273{bottom:361.840000pt;}
.y14_c01273{bottom:384.240000pt;}
.y13_c01273{bottom:405.306667pt;}
.y12_c01273{bottom:426.640000pt;}
.y11_c01273{bottom:449.306667pt;}
.y10_c01273{bottom:470.906667pt;}
.yf_c01273{bottom:491.440000pt;}
.ye_c01273{bottom:513.306667pt;}
.yd_c01273{bottom:534.640000pt;}
.yc_c01273{bottom:556.240000pt;}
.yb_c01273{bottom:577.840000pt;}
.ya_c01273{bottom:598.773333pt;}
.y9_c01273{bottom:622.773333pt;}
.y8_c01273{bottom:643.840000pt;}
.y7_c01273{bottom:664.506667pt;}
.y6_c01273{bottom:686.640000pt;}
.y5_c01273{bottom:707.973333pt;}
.y4_c01273{bottom:730.106667pt;}
.y3_c01273{bottom:751.440000pt;}
.y2_c01273{bottom:773.706667pt;}
.y1_c01273{bottom:805.173333pt;}
.ha_c01273{height:11.733399pt;}
.hb_c01273{height:38.937500pt;}
.h8_c01273{height:61.812500pt;}
.h6_c01273{height:67.526042pt;}
.h3_c01273{height:70.664062pt;}
.h7_c01273{height:74.278646pt;}
.h2_c01273{height:74.906250pt;}
.h5_c01273{height:81.031250pt;}
.h4_c01273{height:81.045333pt;}
.h9_c01273{height:87.783854pt;}
.h1_c01273{height:864.666667pt;}
.h0_c01273{height:864.933333pt;}
.w2_c01273{width:93.222667pt;}
.w0_c01273{width:585.133333pt;}
.w1_c01273{width:585.333333pt;}
.x0_c01273{left:0.000000pt;}
.x3_c01273{left:19.466667pt;}
.x4_c01273{left:21.333333pt;}
.x5_c01273{left:22.266667pt;}
.xa_c01273{left:23.733333pt;}
.xe_c01273{left:33.866667pt;}
.x9_c01273{left:42.266667pt;}
.x10_c01273{left:48.400000pt;}
.x11_c01273{left:54.000000pt;}
.xc_c01273{left:57.600000pt;}
.x2_c01273{left:93.066667pt;}
.xb_c01273{left:96.666667pt;}
.xd_c01273{left:100.266667pt;}
.xf_c01273{left:106.000000pt;}
.x6_c01273{left:107.466667pt;}
.x8_c01273{left:108.666667pt;}
.x1_c01273{left:109.733333pt;}
.x7_c01273{left:118.266667pt;}
.x12_c01273{left:240.133333pt;}
.x13_c01273{left:249.734904pt;}
}





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

.ir_c01274:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01274{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01274;src:url('chunks/assets/font_52ec1f63d35b8e2d7c40f6ce.woff2')format("woff");}.ff1_c01274{font-family:ff1_c01274;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01274;src:url('chunks/assets/font_c6c2a74cdf57421372a0e04f.woff2')format("woff");}.ff2_c01274{font-family:ff2_c01274;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01274;src:url('chunks/assets/font_410fe5bd35e4027f47a40235.woff2')format("woff");}.ff3_c01274{font-family:ff3_c01274;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01274;src:url('chunks/assets/font_14255f4ddbff292ed4683707.woff2')format("woff");}.ff4_c01274{font-family:ff4_c01274;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01274;src:url('chunks/assets/font_7592957efa2d8f7775779de4.woff2')format("woff");}.ff5_c01274{font-family:ff5_c01274;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01274;src:url('chunks/assets/font_61222c5c922a8751790002d5.woff2')format("woff");}.ff6_c01274{font-family:ff6_c01274;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01274;src:url('chunks/assets/font_4af0892c35372ba25e9a705c.woff2')format("woff");}.ff7_c01274{font-family:ff7_c01274;line-height:1.284180;font-style:normal;font-weight: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_c01274;src:url('chunks/assets/font_07c93d91082ee351cffa5c48.woff2')format("woff");}.ff8_c01274{font-family:ff8_c01274;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c01274;src:url('chunks/assets/font_3aab07f8f4ec6b5b7480d837.woff2')format("woff");}.ff9_c01274{font-family:ff9_c01274;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c01274;src:url('chunks/assets/font_00077f4fce071ff762156dd3.woff2')format("woff");}.ffa_c01274{font-family:ffa_c01274;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c01274;src:url('chunks/assets/font_0ed8daf6971547af6f629c55.woff2')format("woff");}.ffb_c01274{font-family:ffb_c01274;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc_c01274;src:url('chunks/assets/font_d78081ecbf9ba3d99d889aa2.woff2')format("woff");}.ffc_c01274{font-family:ffc_c01274;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd_c01274;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ffd_c01274{font-family:ffd_c01274;line-height:1.219238;font-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_c01274{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m0_c01274{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01274{vertical-align:0.000000px;}
.ls5_c01274{letter-spacing:-6.000000px;}
.ls8_c01274{letter-spacing:-3.000000px;}
.ls6_c01274{letter-spacing:0.000000px;}
.ls2_c01274{letter-spacing:0.900000px;}
.ls3_c01274{letter-spacing:1.500000px;}
.ls7_c01274{letter-spacing:3.000000px;}
.ls4_c01274{letter-spacing:6.000000px;}
.ls1_c01274{letter-spacing:12.900000px;}
.ls0_c01274{letter-spacing:17.400000px;}
.sc__c01274{text-shadow:none;}
.sc0_c01274{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01274{-webkit-text-stroke:0px transparent;}
.sc0_c01274{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01274{word-spacing:-69.147000px;}
.ws3_c01274{word-spacing:-67.686000px;}
.ws0_c01274{word-spacing:-37.212000px;}
.ws5_c01274{word-spacing:-18.906000px;}
.ws2_c01274{word-spacing:-15.906000px;}
.ws6_c01274{word-spacing:-7.590000px;}
.ws9_c01274{word-spacing:0.000000px;}
.ws7_c01274{word-spacing:2.895000px;}
.ws8_c01274{word-spacing:2.916000px;}
.ws4_c01274{word-spacing:5.364000px;}
._31_c01274{margin-left:-38.850000px;}
._18_c01274{margin-left:-24.057000px;}
._30_c01274{margin-left:-22.503000px;}
._32_c01274{margin-left:-20.817000px;}
._33_c01274{margin-left:-18.711000px;}
._2f_c01274{margin-left:-17.340000px;}
._24_c01274{margin-left:-15.180000px;}
._1d_c01274{margin-left:-13.563000px;}
._17_c01274{margin-left:-11.745000px;}
._0_c01274{margin-left:-10.260000px;}
._4_c01274{margin-left:-9.072000px;}
._1_c01274{margin-left:-7.776000px;}
._5_c01274{margin-left:-6.696000px;}
._3_c01274{margin-left:-5.616000px;}
._2_c01274{margin-left:-4.536000px;}
._13_c01274{margin-left:-3.024000px;}
._11_c01274{margin-left:-1.326000px;}
._20_c01274{width:1.023000px;}
._7_c01274{width:2.073000px;}
._10_c01274{width:3.180000px;}
._f_c01274{width:4.341000px;}
._c_c01274{width:5.520000px;}
._a_c01274{width:6.693000px;}
._9_c01274{width:8.694000px;}
._d_c01274{width:9.798000px;}
._b_c01274{width:11.454000px;}
._12_c01274{width:13.254000px;}
._8_c01274{width:14.352000px;}
._14_c01274{width:15.984000px;}
._1b_c01274{width:17.103000px;}
._6_c01274{width:18.360000px;}
._e_c01274{width:20.493000px;}
._25_c01274{width:24.600000px;}
._1e_c01274{width:26.778000px;}
._1f_c01274{width:32.568000px;}
._28_c01274{width:40.713000px;}
._29_c01274{width:43.545000px;}
._19_c01274{width:49.896000px;}
._22_c01274{width:52.017000px;}
._1a_c01274{width:100.764000px;}
._2b_c01274{width:103.599000px;}
._27_c01274{width:110.223000px;}
._26_c01274{width:114.012000px;}
._2a_c01274{width:118.617000px;}
._2d_c01274{width:127.068000px;}
._21_c01274{width:147.660000px;}
._16_c01274{width:203.796000px;}
._2e_c01274{width:220.116000px;}
._2c_c01274{width:244.080000px;}
._34_c01274{width:472.395000px;}
._15_c01274{width:528.351000px;}
._1c_c01274{width:556.551000px;}
._23_c01274{width:986.421000px;}
.fc2_c01274{color:transparent;}
.fc1_c01274{color:rgb(128,128,128);}
.fc0_c01274{color:rgb(0,0,0);}
.fsc_c01274{font-size:27.000000px;}
.fsd_c01274{font-size:30.000000px;}
.fs10_c01274{font-size:48.000000px;}
.fs5_c01274{font-size:57.000000px;}
.fs6_c01274{font-size:63.000000px;}
.fs4_c01274{font-size:66.000000px;}
.fs2_c01274{font-size:69.000000px;}
.fs9_c01274{font-size:75.000000px;}
.fs7_c01274{font-size:78.000000px;}
.fs3_c01274{font-size:81.000000px;}
.fsa_c01274{font-size:84.000000px;}
.fs8_c01274{font-size:87.000000px;}
.fsb_c01274{font-size:93.000000px;}
.fse_c01274{font-size:99.000000px;}
.fsf_c01274{font-size:105.000000px;}
.fs0_c01274{font-size:108.000000px;}
.fs1_c01274{font-size:111.000000px;}
.y0_c01274{bottom:0.000000px;}
.y26_c01274{bottom:3.105000px;}
.y25_c01274{bottom:7.228357px;}
.y24_c01274{bottom:91.230000px;}
.y23_c01274{bottom:112.080000px;}
.y22_c01274{bottom:136.980000px;}
.y21_c01274{bottom:160.980000px;}
.y20_c01274{bottom:186.330000px;}
.y1f_c01274{bottom:186.930000px;}
.y1e_c01274{bottom:211.230000px;}
.y1d_c01274{bottom:235.680000px;}
.y1c_c01274{bottom:260.280000px;}
.y1b_c01274{bottom:284.280000px;}
.y1a_c01274{bottom:308.880000px;}
.y19_c01274{bottom:333.480000px;}
.y18_c01274{bottom:357.780000px;}
.y17_c01274{bottom:382.080000px;}
.y16_c01274{bottom:406.380000px;}
.y15_c01274{bottom:430.680000px;}
.y14_c01274{bottom:455.280000px;}
.y13_c01274{bottom:479.280000px;}
.y12_c01274{bottom:503.580000px;}
.y11_c01274{bottom:527.880000px;}
.y10_c01274{bottom:551.580000px;}
.yf_c01274{bottom:575.730000px;}
.ye_c01274{bottom:600.480000px;}
.yd_c01274{bottom:623.730000px;}
.yc_c01274{bottom:648.630000px;}
.yb_c01274{bottom:673.080000px;}
.ya_c01274{bottom:697.230000px;}
.y9_c01274{bottom:722.580000px;}
.y8_c01274{bottom:745.980000px;}
.y7_c01274{bottom:770.580000px;}
.y6_c01274{bottom:794.130000px;}
.y5_c01274{bottom:818.730000px;}
.y4_c01274{bottom:843.030000px;}
.y3_c01274{bottom:867.480000px;}
.y2_c01274{bottom:892.080000px;}
.y1_c01274{bottom:927.180000px;}
.h10_c01274{height:13.200074px;}
.hc_c01274{height:34.185059px;}
.h11_c01274{height:43.804688px;}
.h3_c01274{height:69.539062px;}
.h7_c01274{height:72.168457px;}
.h4_c01274{height:72.312000px;}
.h6_c01274{height:77.247070px;}
.h5_c01274{height:79.497070px;}
.ha_c01274{height:83.563477px;}
.h9_c01274{height:91.176000px;}
.hb_c01274{height:91.274414px;}
.h8_c01274{height:98.756836px;}
.he_c01274{height:99.773438px;}
.hf_c01274{height:105.820312px;}
.hd_c01274{height:108.843750px;}
.h2_c01274{height:140.538574px;}
.h1_c01274{height:973.500000px;}
.h0_c01274{height:973.650000px;}
.w2_c01274{width:104.875500px;}
.w1_c01274{width:662.250000px;}
.w0_c01274{width:662.550000px;}
.x0_c01274{left:0.000000px;}
.x4_c01274{left:54.300000px;}
.x2_c01274{left:56.700000px;}
.x3_c01274{left:58.350000px;}
.x6_c01274{left:60.300000px;}
.x5_c01274{left:61.800000px;}
.xb_c01274{left:63.150000px;}
.xa_c01274{left:65.700000px;}
.xd_c01274{left:67.200000px;}
.x1_c01274{left:76.950000px;}
.xe_c01274{left:86.700000px;}
.x9_c01274{left:92.700000px;}
.x8_c01274{left:107.700000px;}
.x7_c01274{left:210.900000px;}
.xf_c01274{left:283.089249px;}
.xc_c01274{left:498.150000px;}
@media print{
.v0_c01274{vertical-align:0.000000pt;}
.ls5_c01274{letter-spacing:-5.333333pt;}
.ls8_c01274{letter-spacing:-2.666667pt;}
.ls6_c01274{letter-spacing:0.000000pt;}
.ls2_c01274{letter-spacing:0.800000pt;}
.ls3_c01274{letter-spacing:1.333333pt;}
.ls7_c01274{letter-spacing:2.666667pt;}
.ls4_c01274{letter-spacing:5.333333pt;}
.ls1_c01274{letter-spacing:11.466667pt;}
.ls0_c01274{letter-spacing:15.466667pt;}
.ws1_c01274{word-spacing:-61.464000pt;}
.ws3_c01274{word-spacing:-60.165333pt;}
.ws0_c01274{word-spacing:-33.077333pt;}
.ws5_c01274{word-spacing:-16.805333pt;}
.ws2_c01274{word-spacing:-14.138667pt;}
.ws6_c01274{word-spacing:-6.746667pt;}
.ws9_c01274{word-spacing:0.000000pt;}
.ws7_c01274{word-spacing:2.573333pt;}
.ws8_c01274{word-spacing:2.592000pt;}
.ws4_c01274{word-spacing:4.768000pt;}
._31_c01274{margin-left:-34.533333pt;}
._18_c01274{margin-left:-21.384000pt;}
._30_c01274{margin-left:-20.002667pt;}
._32_c01274{margin-left:-18.504000pt;}
._33_c01274{margin-left:-16.632000pt;}
._2f_c01274{margin-left:-15.413333pt;}
._24_c01274{margin-left:-13.493333pt;}
._1d_c01274{margin-left:-12.056000pt;}
._17_c01274{margin-left:-10.440000pt;}
._0_c01274{margin-left:-9.120000pt;}
._4_c01274{margin-left:-8.064000pt;}
._1_c01274{margin-left:-6.912000pt;}
._5_c01274{margin-left:-5.952000pt;}
._3_c01274{margin-left:-4.992000pt;}
._2_c01274{margin-left:-4.032000pt;}
._13_c01274{margin-left:-2.688000pt;}
._11_c01274{margin-left:-1.178667pt;}
._20_c01274{width:0.909333pt;}
._7_c01274{width:1.842667pt;}
._10_c01274{width:2.826667pt;}
._f_c01274{width:3.858667pt;}
._c_c01274{width:4.906667pt;}
._a_c01274{width:5.949333pt;}
._9_c01274{width:7.728000pt;}
._d_c01274{width:8.709333pt;}
._b_c01274{width:10.181333pt;}
._12_c01274{width:11.781333pt;}
._8_c01274{width:12.757333pt;}
._14_c01274{width:14.208000pt;}
._1b_c01274{width:15.202667pt;}
._6_c01274{width:16.320000pt;}
._e_c01274{width:18.216000pt;}
._25_c01274{width:21.866667pt;}
._1e_c01274{width:23.802667pt;}
._1f_c01274{width:28.949333pt;}
._28_c01274{width:36.189333pt;}
._29_c01274{width:38.706667pt;}
._19_c01274{width:44.352000pt;}
._22_c01274{width:46.237333pt;}
._1a_c01274{width:89.568000pt;}
._2b_c01274{width:92.088000pt;}
._27_c01274{width:97.976000pt;}
._26_c01274{width:101.344000pt;}
._2a_c01274{width:105.437333pt;}
._2d_c01274{width:112.949333pt;}
._21_c01274{width:131.253333pt;}
._16_c01274{width:181.152000pt;}
._2e_c01274{width:195.658667pt;}
._2c_c01274{width:216.960000pt;}
._34_c01274{width:419.906667pt;}
._15_c01274{width:469.645333pt;}
._1c_c01274{width:494.712000pt;}
._23_c01274{width:876.818667pt;}
.fsc_c01274{font-size:24.000000pt;}
.fsd_c01274{font-size:26.666667pt;}
.fs10_c01274{font-size:42.666667pt;}
.fs5_c01274{font-size:50.666667pt;}
.fs6_c01274{font-size:56.000000pt;}
.fs4_c01274{font-size:58.666667pt;}
.fs2_c01274{font-size:61.333333pt;}
.fs9_c01274{font-size:66.666667pt;}
.fs7_c01274{font-size:69.333333pt;}
.fs3_c01274{font-size:72.000000pt;}
.fsa_c01274{font-size:74.666667pt;}
.fs8_c01274{font-size:77.333333pt;}
.fsb_c01274{font-size:82.666667pt;}
.fse_c01274{font-size:88.000000pt;}
.fsf_c01274{font-size:93.333333pt;}
.fs0_c01274{font-size:96.000000pt;}
.fs1_c01274{font-size:98.666667pt;}
.y0_c01274{bottom:0.000000pt;}
.y26_c01274{bottom:2.760000pt;}
.y25_c01274{bottom:6.425206pt;}
.y24_c01274{bottom:81.093333pt;}
.y23_c01274{bottom:99.626667pt;}
.y22_c01274{bottom:121.760000pt;}
.y21_c01274{bottom:143.093333pt;}
.y20_c01274{bottom:165.626667pt;}
.y1f_c01274{bottom:166.160000pt;}
.y1e_c01274{bottom:187.760000pt;}
.y1d_c01274{bottom:209.493333pt;}
.y1c_c01274{bottom:231.360000pt;}
.y1b_c01274{bottom:252.693333pt;}
.y1a_c01274{bottom:274.560000pt;}
.y19_c01274{bottom:296.426667pt;}
.y18_c01274{bottom:318.026667pt;}
.y17_c01274{bottom:339.626667pt;}
.y16_c01274{bottom:361.226667pt;}
.y15_c01274{bottom:382.826667pt;}
.y14_c01274{bottom:404.693333pt;}
.y13_c01274{bottom:426.026667pt;}
.y12_c01274{bottom:447.626667pt;}
.y11_c01274{bottom:469.226667pt;}
.y10_c01274{bottom:490.293333pt;}
.yf_c01274{bottom:511.760000pt;}
.ye_c01274{bottom:533.760000pt;}
.yd_c01274{bottom:554.426667pt;}
.yc_c01274{bottom:576.560000pt;}
.yb_c01274{bottom:598.293333pt;}
.ya_c01274{bottom:619.760000pt;}
.y9_c01274{bottom:642.293333pt;}
.y8_c01274{bottom:663.093333pt;}
.y7_c01274{bottom:684.960000pt;}
.y6_c01274{bottom:705.893333pt;}
.y5_c01274{bottom:727.760000pt;}
.y4_c01274{bottom:749.360000pt;}
.y3_c01274{bottom:771.093333pt;}
.y2_c01274{bottom:792.960000pt;}
.y1_c01274{bottom:824.160000pt;}
.h10_c01274{height:11.733399pt;}
.hc_c01274{height:30.386719pt;}
.h11_c01274{height:38.937500pt;}
.h3_c01274{height:61.812500pt;}
.h7_c01274{height:64.149740pt;}
.h4_c01274{height:64.277333pt;}
.h6_c01274{height:68.664062pt;}
.h5_c01274{height:70.664062pt;}
.ha_c01274{height:74.278646pt;}
.h9_c01274{height:81.045333pt;}
.hb_c01274{height:81.132812pt;}
.h8_c01274{height:87.783854pt;}
.he_c01274{height:88.687500pt;}
.hf_c01274{height:94.062500pt;}
.hd_c01274{height:96.750000pt;}
.h2_c01274{height:124.923177pt;}
.h1_c01274{height:865.333333pt;}
.h0_c01274{height:865.466667pt;}
.w2_c01274{width:93.222667pt;}
.w1_c01274{width:588.666667pt;}
.w0_c01274{width:588.933333pt;}
.x0_c01274{left:0.000000pt;}
.x4_c01274{left:48.266667pt;}
.x2_c01274{left:50.400000pt;}
.x3_c01274{left:51.866667pt;}
.x6_c01274{left:53.600000pt;}
.x5_c01274{left:54.933333pt;}
.xb_c01274{left:56.133333pt;}
.xa_c01274{left:58.400000pt;}
.xd_c01274{left:59.733333pt;}
.x1_c01274{left:68.400000pt;}
.xe_c01274{left:77.066667pt;}
.x9_c01274{left:82.400000pt;}
.x8_c01274{left:95.733333pt;}
.x7_c01274{left:187.466667pt;}
.xf_c01274{left:251.634888pt;}
.xc_c01274{left:442.800000pt;}
}





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

.ir_c01275:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01275{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01275;src:url('chunks/assets/font_a77d355d51c4de76652b1058.woff2')format("woff");}.ff1_c01275{font-family:ff1_c01275;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01275;src:url('chunks/assets/font_90e3c705ddc0002ee6c8e001.woff2')format("woff");}.ff2_c01275{font-family:ff2_c01275;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01275;src:url('chunks/assets/font_51c268d959e14592176041e3.woff2')format("woff");}.ff3_c01275{font-family:ff3_c01275;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01275;src:url('chunks/assets/font_c0be93ddf92bcc234ef8cb24.woff2')format("woff");}.ff4_c01275{font-family:ff4_c01275;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01275;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c01275{font-family:ff5_c01275;line-height:1.219238;font-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_c01275{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m0_c01275{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01275{vertical-align:0.000000px;}
.ls1_c01275{letter-spacing:0.000000px;}
.ls0_c01275{letter-spacing:4.536000px;}
.ls2_c01275{letter-spacing:18.000000px;}
.sc__c01275{text-shadow:none;}
.sc0_c01275{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01275{-webkit-text-stroke:0px transparent;}
.sc0_c01275{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01275{word-spacing:-86.310000px;}
.ws0_c01275{word-spacing:-59.184000px;}
.ws2_c01275{word-spacing:-45.000000px;}
.ws3_c01275{word-spacing:0.000000px;}
._2e_c01275{margin-left:-42.105000px;}
._2f_c01275{margin-left:-34.965000px;}
._2c_c01275{margin-left:-33.090000px;}
._2b_c01275{margin-left:-29.745000px;}
._2a_c01275{margin-left:-27.510000px;}
._1e_c01275{margin-left:-25.110000px;}
._14_c01275{margin-left:-21.789000px;}
._2d_c01275{margin-left:-20.160000px;}
._28_c01275{margin-left:-17.412000px;}
._f_c01275{margin-left:-16.143000px;}
._1a_c01275{margin-left:-13.932000px;}
._24_c01275{margin-left:-12.888000px;}
._10_c01275{margin-left:-11.745000px;}
._d_c01275{margin-left:-10.338000px;}
._18_c01275{margin-left:-8.442000px;}
._c_c01275{margin-left:-6.642000px;}
._9_c01275{margin-left:-5.100000px;}
._11_c01275{margin-left:-3.996000px;}
._e_c01275{margin-left:-2.844000px;}
._b_c01275{margin-left:-1.458000px;}
._a_c01275{width:1.122000px;}
._8_c01275{width:3.060000px;}
._5_c01275{width:4.182000px;}
._4_c01275{width:5.202000px;}
._3_c01275{width:6.834000px;}
._7_c01275{width:8.058000px;}
._1_c01275{width:9.078000px;}
._0_c01275{width:10.812000px;}
._12_c01275{width:12.081000px;}
._6_c01275{width:13.362000px;}
._16_c01275{width:14.448000px;}
._27_c01275{width:15.672000px;}
._17_c01275{width:17.172000px;}
._25_c01275{width:18.414000px;}
._1b_c01275{width:27.459000px;}
._31_c01275{width:34.128000px;}
._13_c01275{width:38.706000px;}
._1c_c01275{width:41.067000px;}
._22_c01275{width:42.282000px;}
._1d_c01275{width:45.765000px;}
._23_c01275{width:47.871000px;}
._15_c01275{width:86.508000px;}
._29_c01275{width:88.884000px;}
._21_c01275{width:98.043000px;}
._30_c01275{width:148.104000px;}
._2_c01275{width:152.694000px;}
._1f_c01275{width:172.935000px;}
._26_c01275{width:204.363000px;}
._20_c01275{width:354.942000px;}
._19_c01275{width:361.548000px;}
._32_c01275{width:2056.104000px;}
.fc2_c01275{color:transparent;}
.fc1_c01275{color:rgb(128,128,128);}
.fc0_c01275{color:rgb(0,0,0);}
.fs5_c01275{font-size:48.000000px;}
.fs2_c01275{font-size:72.000000px;}
.fs1_c01275{font-size:81.000000px;}
.fs0_c01275{font-size:102.000000px;}
.fs4_c01275{font-size:105.000000px;}
.fs3_c01275{font-size:108.000000px;}
.y0_c01275{bottom:0.000000px;}
.y26_c01275{bottom:3.105000px;}
.y25_c01275{bottom:7.228371px;}
.y24_c01275{bottom:52.365000px;}
.y23_c01275{bottom:75.015000px;}
.y22_c01275{bottom:101.715000px;}
.y21_c01275{bottom:126.015000px;}
.y20_c01275{bottom:152.265000px;}
.y1f_c01275{bottom:176.565000px;}
.y1e_c01275{bottom:201.465000px;}
.y1d_c01275{bottom:225.915000px;}
.y1c_c01275{bottom:250.515000px;}
.y1b_c01275{bottom:274.365000px;}
.y1a_c01275{bottom:299.415000px;}
.y19_c01275{bottom:324.015000px;}
.y18_c01275{bottom:348.765000px;}
.y17_c01275{bottom:373.665000px;}
.y16_c01275{bottom:398.265000px;}
.y15_c01275{bottom:422.565000px;}
.y14_c01275{bottom:447.915000px;}
.y13_c01275{bottom:472.515000px;}
.y12_c01275{bottom:495.465000px;}
.y11_c01275{bottom:519.465000px;}
.y10_c01275{bottom:545.415000px;}
.yf_c01275{bottom:568.365000px;}
.ye_c01275{bottom:593.115000px;}
.yd_c01275{bottom:616.965000px;}
.yc_c01275{bottom:641.565000px;}
.yb_c01275{bottom:665.565000px;}
.ya_c01275{bottom:689.865000px;}
.y9_c01275{bottom:714.615000px;}
.y8_c01275{bottom:738.765000px;}
.y7_c01275{bottom:764.115000px;}
.y6_c01275{bottom:787.515000px;}
.y5_c01275{bottom:811.815000px;}
.y4_c01275{bottom:836.115000px;}
.y3_c01275{bottom:860.265000px;}
.y2_c01275{bottom:885.915000px;}
.y1_c01275{bottom:919.815000px;}
.h7_c01275{height:13.200074px;}
.h8_c01275{height:43.804688px;}
.h3_c01275{height:79.497070px;}
.h4_c01275{height:84.269531px;}
.h2_c01275{height:100.057617px;}
.h5_c01275{height:108.843750px;}
.h6_c01275{height:122.893066px;}
.h0_c01275{height:963.375000px;}
.h1_c01275{height:963.750000px;}
.w1_c01275{width:104.875500px;}
.w0_c01275{width:651.750000px;}
.x0_c01275{left:0.000000px;}
.xc_c01275{left:12.150000px;}
.x8_c01275{left:15.900000px;}
.x5_c01275{left:23.400000px;}
.x15_c01275{left:36.450000px;}
.xb_c01275{left:43.950000px;}
.x10_c01275{left:45.900000px;}
.x7_c01275{left:55.800000px;}
.xd_c01275{left:81.300000px;}
.xa_c01275{left:89.400000px;}
.x1b_c01275{left:94.800000px;}
.x16_c01275{left:98.250000px;}
.x12_c01275{left:101.550000px;}
.x6_c01275{left:103.950000px;}
.x3_c01275{left:106.950000px;}
.x11_c01275{left:108.300000px;}
.x1_c01275{left:109.950000px;}
.x2_c01275{left:111.000000px;}
.x4_c01275{left:112.800000px;}
.x1c_c01275{left:115.050000px;}
.x9_c01275{left:135.300000px;}
.x1a_c01275{left:146.100000px;}
.x1d_c01275{left:277.689240px;}
.x17_c01275{left:329.850000px;}
.xe_c01275{left:342.600000px;}
.x18_c01275{left:345.150000px;}
.x13_c01275{left:404.700000px;}
.x14_c01275{left:425.250000px;}
.x19_c01275{left:508.200000px;}
.xf_c01275{left:525.150000px;}
@media print{
.v0_c01275{vertical-align:0.000000pt;}
.ls1_c01275{letter-spacing:0.000000pt;}
.ls0_c01275{letter-spacing:4.032000pt;}
.ls2_c01275{letter-spacing:16.000000pt;}
.ws1_c01275{word-spacing:-76.720000pt;}
.ws0_c01275{word-spacing:-52.608000pt;}
.ws2_c01275{word-spacing:-40.000000pt;}
.ws3_c01275{word-spacing:0.000000pt;}
._2e_c01275{margin-left:-37.426667pt;}
._2f_c01275{margin-left:-31.080000pt;}
._2c_c01275{margin-left:-29.413333pt;}
._2b_c01275{margin-left:-26.440000pt;}
._2a_c01275{margin-left:-24.453333pt;}
._1e_c01275{margin-left:-22.320000pt;}
._14_c01275{margin-left:-19.368000pt;}
._2d_c01275{margin-left:-17.920000pt;}
._28_c01275{margin-left:-15.477333pt;}
._f_c01275{margin-left:-14.349333pt;}
._1a_c01275{margin-left:-12.384000pt;}
._24_c01275{margin-left:-11.456000pt;}
._10_c01275{margin-left:-10.440000pt;}
._d_c01275{margin-left:-9.189333pt;}
._18_c01275{margin-left:-7.504000pt;}
._c_c01275{margin-left:-5.904000pt;}
._9_c01275{margin-left:-4.533333pt;}
._11_c01275{margin-left:-3.552000pt;}
._e_c01275{margin-left:-2.528000pt;}
._b_c01275{margin-left:-1.296000pt;}
._a_c01275{width:0.997333pt;}
._8_c01275{width:2.720000pt;}
._5_c01275{width:3.717333pt;}
._4_c01275{width:4.624000pt;}
._3_c01275{width:6.074667pt;}
._7_c01275{width:7.162667pt;}
._1_c01275{width:8.069333pt;}
._0_c01275{width:9.610667pt;}
._12_c01275{width:10.738667pt;}
._6_c01275{width:11.877333pt;}
._16_c01275{width:12.842667pt;}
._27_c01275{width:13.930667pt;}
._17_c01275{width:15.264000pt;}
._25_c01275{width:16.368000pt;}
._1b_c01275{width:24.408000pt;}
._31_c01275{width:30.336000pt;}
._13_c01275{width:34.405333pt;}
._1c_c01275{width:36.504000pt;}
._22_c01275{width:37.584000pt;}
._1d_c01275{width:40.680000pt;}
._23_c01275{width:42.552000pt;}
._15_c01275{width:76.896000pt;}
._29_c01275{width:79.008000pt;}
._21_c01275{width:87.149333pt;}
._30_c01275{width:131.648000pt;}
._2_c01275{width:135.728000pt;}
._1f_c01275{width:153.720000pt;}
._26_c01275{width:181.656000pt;}
._20_c01275{width:315.504000pt;}
._19_c01275{width:321.376000pt;}
._32_c01275{width:1827.648000pt;}
.fs5_c01275{font-size:42.666667pt;}
.fs2_c01275{font-size:64.000000pt;}
.fs1_c01275{font-size:72.000000pt;}
.fs0_c01275{font-size:90.666667pt;}
.fs4_c01275{font-size:93.333333pt;}
.fs3_c01275{font-size:96.000000pt;}
.y0_c01275{bottom:0.000000pt;}
.y26_c01275{bottom:2.760000pt;}
.y25_c01275{bottom:6.425219pt;}
.y24_c01275{bottom:46.546667pt;}
.y23_c01275{bottom:66.680000pt;}
.y22_c01275{bottom:90.413333pt;}
.y21_c01275{bottom:112.013333pt;}
.y20_c01275{bottom:135.346667pt;}
.y1f_c01275{bottom:156.946667pt;}
.y1e_c01275{bottom:179.080000pt;}
.y1d_c01275{bottom:200.813333pt;}
.y1c_c01275{bottom:222.680000pt;}
.y1b_c01275{bottom:243.880000pt;}
.y1a_c01275{bottom:266.146667pt;}
.y19_c01275{bottom:288.013333pt;}
.y18_c01275{bottom:310.013333pt;}
.y17_c01275{bottom:332.146667pt;}
.y16_c01275{bottom:354.013333pt;}
.y15_c01275{bottom:375.613333pt;}
.y14_c01275{bottom:398.146667pt;}
.y13_c01275{bottom:420.013333pt;}
.y12_c01275{bottom:440.413333pt;}
.y11_c01275{bottom:461.746667pt;}
.y10_c01275{bottom:484.813333pt;}
.yf_c01275{bottom:505.213333pt;}
.ye_c01275{bottom:527.213333pt;}
.yd_c01275{bottom:548.413333pt;}
.yc_c01275{bottom:570.280000pt;}
.yb_c01275{bottom:591.613333pt;}
.ya_c01275{bottom:613.213333pt;}
.y9_c01275{bottom:635.213333pt;}
.y8_c01275{bottom:656.680000pt;}
.y7_c01275{bottom:679.213333pt;}
.y6_c01275{bottom:700.013333pt;}
.y5_c01275{bottom:721.613333pt;}
.y4_c01275{bottom:743.213333pt;}
.y3_c01275{bottom:764.680000pt;}
.y2_c01275{bottom:787.480000pt;}
.y1_c01275{bottom:817.613333pt;}
.h7_c01275{height:11.733399pt;}
.h8_c01275{height:38.937500pt;}
.h3_c01275{height:70.664062pt;}
.h4_c01275{height:74.906250pt;}
.h2_c01275{height:88.940104pt;}
.h5_c01275{height:96.750000pt;}
.h6_c01275{height:109.238281pt;}
.h0_c01275{height:856.333333pt;}
.h1_c01275{height:856.666667pt;}
.w1_c01275{width:93.222667pt;}
.w0_c01275{width:579.333333pt;}
.x0_c01275{left:0.000000pt;}
.xc_c01275{left:10.800000pt;}
.x8_c01275{left:14.133333pt;}
.x5_c01275{left:20.800000pt;}
.x15_c01275{left:32.400000pt;}
.xb_c01275{left:39.066667pt;}
.x10_c01275{left:40.800000pt;}
.x7_c01275{left:49.600000pt;}
.xd_c01275{left:72.266667pt;}
.xa_c01275{left:79.466667pt;}
.x1b_c01275{left:84.266667pt;}
.x16_c01275{left:87.333333pt;}
.x12_c01275{left:90.266667pt;}
.x6_c01275{left:92.400000pt;}
.x3_c01275{left:95.066667pt;}
.x11_c01275{left:96.266667pt;}
.x1_c01275{left:97.733333pt;}
.x2_c01275{left:98.666667pt;}
.x4_c01275{left:100.266667pt;}
.x1c_c01275{left:102.266667pt;}
.x9_c01275{left:120.266667pt;}
.x1a_c01275{left:129.866667pt;}
.x1d_c01275{left:246.834880pt;}
.x17_c01275{left:293.200000pt;}
.xe_c01275{left:304.533333pt;}
.x18_c01275{left:306.800000pt;}
.x13_c01275{left:359.733333pt;}
.x14_c01275{left:378.000000pt;}
.x19_c01275{left:451.733333pt;}
.xf_c01275{left:466.800000pt;}
}





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

.ir_c01276:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01276{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01276;src:url('chunks/assets/font_8bf9e5b916b345554b35b145.woff2')format("woff");}.ff1_c01276{font-family:ff1_c01276;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01276;src:url('chunks/assets/font_b739ba5bc0e2434598f6b3f5.woff2')format("woff");}.ff2_c01276{font-family:ff2_c01276;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01276;src:url('chunks/assets/font_5842cfa67f137cb29176436a.woff2')format("woff");}.ff3_c01276{font-family:ff3_c01276;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01276;src:url('chunks/assets/font_9434820fffd3a57b48f8c303.woff2')format("woff");}.ff4_c01276{font-family:ff4_c01276;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01276;src:url('chunks/assets/font_4a18abd8eabc0664e6813b00.woff2')format("woff");}.ff5_c01276{font-family:ff5_c01276;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01276;src:url('chunks/assets/font_a033ce3bdf5f2e16139546f5.woff2')format("woff");}.ff6_c01276{font-family:ff6_c01276;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01276;src:url('chunks/assets/font_a32068ae2ae72f89a64267e7.woff2')format("woff");}.ff7_c01276{font-family:ff7_c01276;line-height:1.437000;font-style:normal;font-weight: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_c01276;src:url('chunks/assets/font_45ab57d32779f4f0bab1054b.woff2')format("woff");}.ff8_c01276{font-family:ff8_c01276;line-height:1.311035;font-style:normal;font-weight: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_c01276;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff9_c01276{font-family:ff9_c01276;line-height:1.219238;font-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_c01276{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m0_c01276{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01276{vertical-align:0.000000px;}
.ls1_c01276{letter-spacing:0.000000px;}
.ls0_c01276{letter-spacing:3.900000px;}
.sc__c01276{text-shadow:none;}
.sc0_c01276{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01276{-webkit-text-stroke:0px transparent;}
.sc0_c01276{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c01276{word-spacing:-67.686000px;}
.ws0_c01276{word-spacing:-31.812000px;}
.ws6_c01276{word-spacing:-25.305000px;}
.ws4_c01276{word-spacing:-20.250000px;}
.ws2_c01276{word-spacing:-18.014400px;}
.ws3_c01276{word-spacing:-17.352000px;}
.ws1_c01276{word-spacing:-0.105000px;}
.ws7_c01276{word-spacing:0.000000px;}
._1b_c01276{margin-left:-26.688000px;}
._13_c01276{margin-left:-21.042000px;}
._3_c01276{margin-left:-16.830000px;}
._18_c01276{margin-left:-15.006000px;}
._0_c01276{margin-left:-13.344000px;}
._14_c01276{margin-left:-12.222000px;}
._10_c01276{margin-left:-10.692000px;}
._17_c01276{margin-left:-9.540000px;}
._9_c01276{margin-left:-8.514000px;}
._8_c01276{margin-left:-6.534000px;}
._5_c01276{margin-left:-4.554000px;}
._6_c01276{margin-left:-2.970000px;}
._7_c01276{margin-left:-1.782000px;}
._4_c01276{width:1.017000px;}
._c_c01276{width:2.358000px;}
._b_c01276{width:3.969000px;}
._e_c01276{width:4.977000px;}
._15_c01276{width:6.087000px;}
._a_c01276{width:7.209000px;}
._2_c01276{width:8.295000px;}
._d_c01276{width:10.152000px;}
._12_c01276{width:11.592000px;}
._16_c01276{width:12.843000px;}
._f_c01276{width:14.209800px;}
._11_c01276{width:15.481200px;}
._1_c01276{width:16.485000px;}
._25_c01276{width:22.545000px;}
._20_c01276{width:25.218000px;}
._1d_c01276{width:26.883000px;}
._1e_c01276{width:28.098000px;}
._26_c01276{width:29.976000px;}
._21_c01276{width:31.683000px;}
._27_c01276{width:34.209000px;}
._1c_c01276{width:46.980000px;}
._28_c01276{width:49.140000px;}
._23_c01276{width:52.677000px;}
._1f_c01276{width:77.706000px;}
._1a_c01276{width:211.293000px;}
._22_c01276{width:213.579000px;}
._24_c01276{width:243.927000px;}
._19_c01276{width:262.428000px;}
._29_c01276{width:388.902000px;}
.fc2_c01276{color:transparent;}
.fc1_c01276{color:rgb(128,128,128);}
.fc0_c01276{color:rgb(0,0,0);}
.fs9_c01276{font-size:48.000000px;}
.fs4_c01276{font-size:64.800000px;}
.fs6_c01276{font-size:72.000000px;}
.fs5_c01276{font-size:75.000000px;}
.fs3_c01276{font-size:81.000000px;}
.fs7_c01276{font-size:87.000000px;}
.fs2_c01276{font-size:99.000000px;}
.fs1_c01276{font-size:105.000000px;}
.fs8_c01276{font-size:108.000000px;}
.fs0_c01276{font-size:132.000000px;}
.y0_c01276{bottom:0.000000px;}
.y26_c01276{bottom:3.105000px;}
.y25_c01276{bottom:7.228355px;}
.y24_c01276{bottom:65.385000px;}
.y23_c01276{bottom:87.735000px;}
.y22_c01276{bottom:115.035000px;}
.y21_c01276{bottom:138.285000px;}
.y20_c01276{bottom:163.035000px;}
.y1f_c01276{bottom:187.635000px;}
.y1e_c01276{bottom:212.535000px;}
.y1d_c01276{bottom:237.135000px;}
.y1c_c01276{bottom:261.585000px;}
.y1b_c01276{bottom:284.835000px;}
.y1a_c01276{bottom:310.035000px;}
.y19_c01276{bottom:334.035000px;}
.y18_c01276{bottom:359.085000px;}
.y17_c01276{bottom:383.385000px;}
.y16_c01276{bottom:407.385000px;}
.y15_c01276{bottom:433.035000px;}
.y14_c01276{bottom:457.185000px;}
.y13_c01276{bottom:480.285000px;}
.y12_c01276{bottom:504.885000px;}
.y11_c01276{bottom:528.735000px;}
.y10_c01276{bottom:553.035000px;}
.yf_c01276{bottom:577.335000px;}
.ye_c01276{bottom:600.285000px;}
.yd_c01276{bottom:624.735000px;}
.yc_c01276{bottom:648.885000px;}
.yb_c01276{bottom:673.335000px;}
.ya_c01276{bottom:697.185000px;}
.y9_c01276{bottom:721.935000px;}
.y8_c01276{bottom:746.235000px;}
.y7_c01276{bottom:770.835000px;}
.y6_c01276{bottom:794.835000px;}
.y5_c01276{bottom:819.135000px;}
.y4_c01276{bottom:843.735000px;}
.y3_c01276{bottom:868.335000px;}
.y2_c01276{bottom:892.035000px;}
.y1_c01276{bottom:927.735000px;}
.ha_c01276{height:13.200074px;}
.hb_c01276{height:43.804688px;}
.h3_c01276{height:79.497070px;}
.h5_c01276{height:84.269531px;}
.h7_c01276{height:91.160156px;}
.h6_c01276{height:91.176000px;}
.h4_c01276{height:94.958496px;}
.h9_c01276{height:108.843750px;}
.h8_c01276{height:122.893066px;}
.h2_c01276{height:167.126953px;}
.h0_c01276{height:980.625000px;}
.h1_c01276{height:981.000000px;}
.w2_c01276{width:104.875500px;}
.w0_c01276{width:667.425000px;}
.w1_c01276{width:667.500000px;}
.x0_c01276{left:0.000000px;}
.x6_c01276{left:41.250000px;}
.x8_c01276{left:43.500000px;}
.x7_c01276{left:44.550000px;}
.x5_c01276{left:45.600000px;}
.x4_c01276{left:47.550000px;}
.x3_c01276{left:48.600000px;}
.x2_c01276{left:50.700000px;}
.x9_c01276{left:58.800000px;}
.x1_c01276{left:74.250000px;}
.xb_c01276{left:285.526749px;}
.xa_c01276{left:359.100000px;}
@media print{
.v0_c01276{vertical-align:0.000000pt;}
.ls1_c01276{letter-spacing:0.000000pt;}
.ls0_c01276{letter-spacing:3.466667pt;}
.ws5_c01276{word-spacing:-60.165333pt;}
.ws0_c01276{word-spacing:-28.277333pt;}
.ws6_c01276{word-spacing:-22.493333pt;}
.ws4_c01276{word-spacing:-18.000000pt;}
.ws2_c01276{word-spacing:-16.012800pt;}
.ws3_c01276{word-spacing:-15.424000pt;}
.ws1_c01276{word-spacing:-0.093333pt;}
.ws7_c01276{word-spacing:0.000000pt;}
._1b_c01276{margin-left:-23.722667pt;}
._13_c01276{margin-left:-18.704000pt;}
._3_c01276{margin-left:-14.960000pt;}
._18_c01276{margin-left:-13.338667pt;}
._0_c01276{margin-left:-11.861333pt;}
._14_c01276{margin-left:-10.864000pt;}
._10_c01276{margin-left:-9.504000pt;}
._17_c01276{margin-left:-8.480000pt;}
._9_c01276{margin-left:-7.568000pt;}
._8_c01276{margin-left:-5.808000pt;}
._5_c01276{margin-left:-4.048000pt;}
._6_c01276{margin-left:-2.640000pt;}
._7_c01276{margin-left:-1.584000pt;}
._4_c01276{width:0.904000pt;}
._c_c01276{width:2.096000pt;}
._b_c01276{width:3.528000pt;}
._e_c01276{width:4.424000pt;}
._15_c01276{width:5.410667pt;}
._a_c01276{width:6.408000pt;}
._2_c01276{width:7.373333pt;}
._d_c01276{width:9.024000pt;}
._12_c01276{width:10.304000pt;}
._16_c01276{width:11.416000pt;}
._f_c01276{width:12.630933pt;}
._11_c01276{width:13.761067pt;}
._1_c01276{width:14.653333pt;}
._25_c01276{width:20.040000pt;}
._20_c01276{width:22.416000pt;}
._1d_c01276{width:23.896000pt;}
._1e_c01276{width:24.976000pt;}
._26_c01276{width:26.645333pt;}
._21_c01276{width:28.162667pt;}
._27_c01276{width:30.408000pt;}
._1c_c01276{width:41.760000pt;}
._28_c01276{width:43.680000pt;}
._23_c01276{width:46.824000pt;}
._1f_c01276{width:69.072000pt;}
._1a_c01276{width:187.816000pt;}
._22_c01276{width:189.848000pt;}
._24_c01276{width:216.824000pt;}
._19_c01276{width:233.269333pt;}
._29_c01276{width:345.690667pt;}
.fs9_c01276{font-size:42.666667pt;}
.fs4_c01276{font-size:57.600000pt;}
.fs6_c01276{font-size:64.000000pt;}
.fs5_c01276{font-size:66.666667pt;}
.fs3_c01276{font-size:72.000000pt;}
.fs7_c01276{font-size:77.333333pt;}
.fs2_c01276{font-size:88.000000pt;}
.fs1_c01276{font-size:93.333333pt;}
.fs8_c01276{font-size:96.000000pt;}
.fs0_c01276{font-size:117.333333pt;}
.y0_c01276{bottom:0.000000pt;}
.y26_c01276{bottom:2.760000pt;}
.y25_c01276{bottom:6.425204pt;}
.y24_c01276{bottom:58.120000pt;}
.y23_c01276{bottom:77.986667pt;}
.y22_c01276{bottom:102.253333pt;}
.y21_c01276{bottom:122.920000pt;}
.y20_c01276{bottom:144.920000pt;}
.y1f_c01276{bottom:166.786667pt;}
.y1e_c01276{bottom:188.920000pt;}
.y1d_c01276{bottom:210.786667pt;}
.y1c_c01276{bottom:232.520000pt;}
.y1b_c01276{bottom:253.186667pt;}
.y1a_c01276{bottom:275.586667pt;}
.y19_c01276{bottom:296.920000pt;}
.y18_c01276{bottom:319.186667pt;}
.y17_c01276{bottom:340.786667pt;}
.y16_c01276{bottom:362.120000pt;}
.y15_c01276{bottom:384.920000pt;}
.y14_c01276{bottom:406.386667pt;}
.y13_c01276{bottom:426.920000pt;}
.y12_c01276{bottom:448.786667pt;}
.y11_c01276{bottom:469.986667pt;}
.y10_c01276{bottom:491.586667pt;}
.yf_c01276{bottom:513.186667pt;}
.ye_c01276{bottom:533.586667pt;}
.yd_c01276{bottom:555.320000pt;}
.yc_c01276{bottom:576.786667pt;}
.yb_c01276{bottom:598.520000pt;}
.ya_c01276{bottom:619.720000pt;}
.y9_c01276{bottom:641.720000pt;}
.y8_c01276{bottom:663.320000pt;}
.y7_c01276{bottom:685.186667pt;}
.y6_c01276{bottom:706.520000pt;}
.y5_c01276{bottom:728.120000pt;}
.y4_c01276{bottom:749.986667pt;}
.y3_c01276{bottom:771.853333pt;}
.y2_c01276{bottom:792.920000pt;}
.y1_c01276{bottom:824.653333pt;}
.ha_c01276{height:11.733399pt;}
.hb_c01276{height:38.937500pt;}
.h3_c01276{height:70.664062pt;}
.h5_c01276{height:74.906250pt;}
.h7_c01276{height:81.031250pt;}
.h6_c01276{height:81.045333pt;}
.h4_c01276{height:84.407552pt;}
.h9_c01276{height:96.750000pt;}
.h8_c01276{height:109.238281pt;}
.h2_c01276{height:148.557292pt;}
.h0_c01276{height:871.666667pt;}
.h1_c01276{height:872.000000pt;}
.w2_c01276{width:93.222667pt;}
.w0_c01276{width:593.266667pt;}
.w1_c01276{width:593.333333pt;}
.x0_c01276{left:0.000000pt;}
.x6_c01276{left:36.666667pt;}
.x8_c01276{left:38.666667pt;}
.x7_c01276{left:39.600000pt;}
.x5_c01276{left:40.533333pt;}
.x4_c01276{left:42.266667pt;}
.x3_c01276{left:43.200000pt;}
.x2_c01276{left:45.066667pt;}
.x9_c01276{left:52.266667pt;}
.x1_c01276{left:66.000000pt;}
.xb_c01276{left:253.801554pt;}
.xa_c01276{left:319.200000pt;}
}





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

.ir_c01277:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01277{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01277;src:url('chunks/assets/font_f7bc4b43f22792d377146380.woff2')format("woff");}.ff1_c01277{font-family:ff1_c01277;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01277;src:url('chunks/assets/font_00455e80d122fad3684308e6.woff2')format("woff");}.ff2_c01277{font-family:ff2_c01277;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01277;src:url('chunks/assets/font_36e60fed5ea1d907e5c2d1f5.woff2')format("woff");}.ff3_c01277{font-family:ff3_c01277;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01277;src:url('chunks/assets/font_0a64b872daa39b4159e5b072.woff2')format("woff");}.ff4_c01277{font-family:ff4_c01277;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01277;src:url('chunks/assets/font_aa5d74e136a62c6155b408ba.woff2')format("woff");}.ff5_c01277{font-family:ff5_c01277;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01277;src:url('chunks/assets/font_ef45cf3ed9787a8b5436fccb.woff2')format("woff");}.ff6_c01277{font-family:ff6_c01277;line-height:1.311035;font-style:normal;font-weight: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_c01277;src:url('chunks/assets/font_e123e5fd7f6f27231fbc8a92.woff2')format("woff");}.ff7_c01277{font-family:ff7_c01277;line-height:1.437000;font-style:normal;font-weight: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_c01277;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff8_c01277{font-family:ff8_c01277;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01277{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01277{vertical-align:0.000000px;}
.ls7_c01277{letter-spacing:-9.000000px;}
.ls8_c01277{letter-spacing:-3.000000px;}
.ls6_c01277{letter-spacing:0.000000px;}
.ls5_c01277{letter-spacing:3.000000px;}
.ls2_c01277{letter-spacing:6.300000px;}
.ls1_c01277{letter-spacing:7.056000px;}
.ls0_c01277{letter-spacing:7.602000px;}
.ls3_c01277{letter-spacing:8.136000px;}
.ls4_c01277{letter-spacing:15.300000px;}
.sc__c01277{text-shadow:none;}
.sc0_c01277{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01277{-webkit-text-stroke:0px transparent;}
.sc0_c01277{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c01277{word-spacing:-67.686000px;}
.ws3_c01277{word-spacing:-20.250000px;}
.ws0_c01277{word-spacing:-17.352000px;}
.ws1_c01277{word-spacing:-15.750000px;}
.ws5_c01277{word-spacing:-13.737000px;}
.ws2_c01277{word-spacing:-4.737000px;}
.ws6_c01277{word-spacing:0.000000px;}
._36_c01277{margin-left:-43.497000px;}
._2f_c01277{margin-left:-35.721000px;}
._c_c01277{margin-left:-27.642000px;}
._1e_c01277{margin-left:-26.001000px;}
._2d_c01277{margin-left:-22.899000px;}
._1c_c01277{margin-left:-21.075000px;}
._b_c01277{margin-left:-18.564000px;}
._17_c01277{margin-left:-16.758000px;}
._2e_c01277{margin-left:-14.661000px;}
._25_c01277{margin-left:-13.527000px;}
._15_c01277{margin-left:-11.904000px;}
._7_c01277{margin-left:-9.384000px;}
._6_c01277{margin-left:-8.160000px;}
._8_c01277{margin-left:-6.630000px;}
._a_c01277{margin-left:-5.508000px;}
._5_c01277{margin-left:-3.876000px;}
._9_c01277{margin-left:-1.938000px;}
._d_c01277{width:1.134000px;}
._4_c01277{width:2.346000px;}
._1_c01277{width:3.366000px;}
._2_c01277{width:5.304000px;}
._3_c01277{width:6.936000px;}
._0_c01277{width:8.364000px;}
._e_c01277{width:10.233000px;}
._13_c01277{width:11.493000px;}
._11_c01277{width:12.516000px;}
._f_c01277{width:14.496000px;}
._10_c01277{width:16.164000px;}
._14_c01277{width:17.829000px;}
._12_c01277{width:18.981000px;}
._1a_c01277{width:20.337000px;}
._29_c01277{width:22.512000px;}
._20_c01277{width:25.263000px;}
._21_c01277{width:26.784000px;}
._27_c01277{width:32.208000px;}
._30_c01277{width:34.668000px;}
._16_c01277{width:45.759000px;}
._26_c01277{width:52.893000px;}
._2b_c01277{width:55.101000px;}
._28_c01277{width:57.252000px;}
._1d_c01277{width:62.625000px;}
._35_c01277{width:64.641000px;}
._33_c01277{width:66.549000px;}
._23_c01277{width:72.393000px;}
._34_c01277{width:74.220000px;}
._22_c01277{width:76.773000px;}
._24_c01277{width:117.771000px;}
._2a_c01277{width:118.983000px;}
._1b_c01277{width:172.614000px;}
._18_c01277{width:177.327000px;}
._2c_c01277{width:178.425000px;}
._32_c01277{width:191.379000px;}
._31_c01277{width:198.774000px;}
._1f_c01277{width:283.014000px;}
._37_c01277{width:425.898000px;}
._19_c01277{width:443.778000px;}
._38_c01277{width:960.024000px;}
.fc2_c01277{color:transparent;}
.fc1_c01277{color:rgb(128,128,128);}
.fc0_c01277{color:rgb(0,0,0);}
.fs7_c01277{font-size:42.000000px;}
.fs9_c01277{font-size:48.000000px;}
.fs3_c01277{font-size:57.000000px;}
.fs4_c01277{font-size:63.000000px;}
.fs8_c01277{font-size:69.000000px;}
.fs2_c01277{font-size:72.000000px;}
.fs5_c01277{font-size:78.000000px;}
.fs1_c01277{font-size:81.000000px;}
.fs6_c01277{font-size:87.000000px;}
.fs0_c01277{font-size:102.000000px;}
.y0_c01277{bottom:0.000000px;}
.y25_c01277{bottom:3.105000px;}
.y24_c01277{bottom:7.228371px;}
.y23_c01277{bottom:57.465000px;}
.y22_c01277{bottom:79.365000px;}
.y21_c01277{bottom:105.315000px;}
.y20_c01277{bottom:130.665000px;}
.y1f_c01277{bottom:154.965000px;}
.y1e_c01277{bottom:180.015000px;}
.y1d_c01277{bottom:204.615000px;}
.y1c_c01277{bottom:229.515000px;}
.y1b_c01277{bottom:254.265000px;}
.y1a_c01277{bottom:278.865000px;}
.y19_c01277{bottom:304.815000px;}
.y18_c01277{bottom:328.515000px;}
.y17_c01277{bottom:353.415000px;}
.y16_c01277{bottom:378.015000px;}
.y15_c01277{bottom:402.615000px;}
.y14_c01277{bottom:427.065000px;}
.y13_c01277{bottom:476.865000px;}
.y12_c01277{bottom:500.865000px;}
.y11_c01277{bottom:524.265000px;}
.y10_c01277{bottom:549.165000px;}
.yf_c01277{bottom:573.465000px;}
.ye_c01277{bottom:597.015000px;}
.yd_c01277{bottom:621.765000px;}
.yc_c01277{bottom:645.765000px;}
.yb_c01277{bottom:670.665000px;}
.ya_c01277{bottom:694.965000px;}
.y9_c01277{bottom:719.865000px;}
.y8_c01277{bottom:742.965000px;}
.y7_c01277{bottom:765.915000px;}
.y6_c01277{bottom:792.465000px;}
.y5_c01277{bottom:817.065000px;}
.y4_c01277{bottom:841.365000px;}
.y3_c01277{bottom:865.815000px;}
.y2_c01277{bottom:890.115000px;}
.y1_c01277{bottom:926.415000px;}
.h9_c01277{height:13.200074px;}
.ha_c01277{height:43.804688px;}
.h6_c01277{height:66.713379px;}
.h4_c01277{height:79.497070px;}
.h3_c01277{height:84.269531px;}
.h5_c01277{height:91.160156px;}
.h8_c01277{height:91.176000px;}
.h7_c01277{height:98.756836px;}
.h2_c01277{height:100.057617px;}
.h1_c01277{height:986.250000px;}
.h0_c01277{height:986.325000px;}
.w2_c01277{width:104.875500px;}
.w0_c01277{width:667.425000px;}
.w1_c01277{width:667.500000px;}
.x0_c01277{left:0.000000px;}
.x4_c01277{left:41.250000px;}
.x7_c01277{left:44.550000px;}
.xc_c01277{left:57.150000px;}
.x5_c01277{left:62.400000px;}
.xa_c01277{left:70.500000px;}
.xd_c01277{left:71.550000px;}
.xb_c01277{left:95.850000px;}
.x9_c01277{left:98.250000px;}
.x3_c01277{left:131.550000px;}
.x2_c01277{left:132.900000px;}
.x6_c01277{left:134.250000px;}
.x8_c01277{left:135.300000px;}
.x1_c01277{left:221.850000px;}
.xf_c01277{left:285.526749px;}
.xe_c01277{left:305.100000px;}
@media print{
.v0_c01277{vertical-align:0.000000pt;}
.ls7_c01277{letter-spacing:-8.000000pt;}
.ls8_c01277{letter-spacing:-2.666667pt;}
.ls6_c01277{letter-spacing:0.000000pt;}
.ls5_c01277{letter-spacing:2.666667pt;}
.ls2_c01277{letter-spacing:5.600000pt;}
.ls1_c01277{letter-spacing:6.272000pt;}
.ls0_c01277{letter-spacing:6.757333pt;}
.ls3_c01277{letter-spacing:7.232000pt;}
.ls4_c01277{letter-spacing:13.600000pt;}
.ws4_c01277{word-spacing:-60.165333pt;}
.ws3_c01277{word-spacing:-18.000000pt;}
.ws0_c01277{word-spacing:-15.424000pt;}
.ws1_c01277{word-spacing:-14.000000pt;}
.ws5_c01277{word-spacing:-12.210667pt;}
.ws2_c01277{word-spacing:-4.210667pt;}
.ws6_c01277{word-spacing:0.000000pt;}
._36_c01277{margin-left:-38.664000pt;}
._2f_c01277{margin-left:-31.752000pt;}
._c_c01277{margin-left:-24.570667pt;}
._1e_c01277{margin-left:-23.112000pt;}
._2d_c01277{margin-left:-20.354667pt;}
._1c_c01277{margin-left:-18.733333pt;}
._b_c01277{margin-left:-16.501333pt;}
._17_c01277{margin-left:-14.896000pt;}
._2e_c01277{margin-left:-13.032000pt;}
._25_c01277{margin-left:-12.024000pt;}
._15_c01277{margin-left:-10.581333pt;}
._7_c01277{margin-left:-8.341333pt;}
._6_c01277{margin-left:-7.253333pt;}
._8_c01277{margin-left:-5.893333pt;}
._a_c01277{margin-left:-4.896000pt;}
._5_c01277{margin-left:-3.445333pt;}
._9_c01277{margin-left:-1.722667pt;}
._d_c01277{width:1.008000pt;}
._4_c01277{width:2.085333pt;}
._1_c01277{width:2.992000pt;}
._2_c01277{width:4.714667pt;}
._3_c01277{width:6.165333pt;}
._0_c01277{width:7.434667pt;}
._e_c01277{width:9.096000pt;}
._13_c01277{width:10.216000pt;}
._11_c01277{width:11.125333pt;}
._f_c01277{width:12.885333pt;}
._10_c01277{width:14.368000pt;}
._14_c01277{width:15.848000pt;}
._12_c01277{width:16.872000pt;}
._1a_c01277{width:18.077333pt;}
._29_c01277{width:20.010667pt;}
._20_c01277{width:22.456000pt;}
._21_c01277{width:23.808000pt;}
._27_c01277{width:28.629333pt;}
._30_c01277{width:30.816000pt;}
._16_c01277{width:40.674667pt;}
._26_c01277{width:47.016000pt;}
._2b_c01277{width:48.978667pt;}
._28_c01277{width:50.890667pt;}
._1d_c01277{width:55.666667pt;}
._35_c01277{width:57.458667pt;}
._33_c01277{width:59.154667pt;}
._23_c01277{width:64.349333pt;}
._34_c01277{width:65.973333pt;}
._22_c01277{width:68.242667pt;}
._24_c01277{width:104.685333pt;}
._2a_c01277{width:105.762667pt;}
._1b_c01277{width:153.434667pt;}
._18_c01277{width:157.624000pt;}
._2c_c01277{width:158.600000pt;}
._32_c01277{width:170.114667pt;}
._31_c01277{width:176.688000pt;}
._1f_c01277{width:251.568000pt;}
._37_c01277{width:378.576000pt;}
._19_c01277{width:394.469333pt;}
._38_c01277{width:853.354667pt;}
.fs7_c01277{font-size:37.333333pt;}
.fs9_c01277{font-size:42.666667pt;}
.fs3_c01277{font-size:50.666667pt;}
.fs4_c01277{font-size:56.000000pt;}
.fs8_c01277{font-size:61.333333pt;}
.fs2_c01277{font-size:64.000000pt;}
.fs5_c01277{font-size:69.333333pt;}
.fs1_c01277{font-size:72.000000pt;}
.fs6_c01277{font-size:77.333333pt;}
.fs0_c01277{font-size:90.666667pt;}
.y0_c01277{bottom:0.000000pt;}
.y25_c01277{bottom:2.760000pt;}
.y24_c01277{bottom:6.425219pt;}
.y23_c01277{bottom:51.080000pt;}
.y22_c01277{bottom:70.546667pt;}
.y21_c01277{bottom:93.613333pt;}
.y20_c01277{bottom:116.146667pt;}
.y1f_c01277{bottom:137.746667pt;}
.y1e_c01277{bottom:160.013333pt;}
.y1d_c01277{bottom:181.880000pt;}
.y1c_c01277{bottom:204.013333pt;}
.y1b_c01277{bottom:226.013333pt;}
.y1a_c01277{bottom:247.880000pt;}
.y19_c01277{bottom:270.946667pt;}
.y18_c01277{bottom:292.013333pt;}
.y17_c01277{bottom:314.146667pt;}
.y16_c01277{bottom:336.013333pt;}
.y15_c01277{bottom:357.880000pt;}
.y14_c01277{bottom:379.613333pt;}
.y13_c01277{bottom:423.880000pt;}
.y12_c01277{bottom:445.213333pt;}
.y11_c01277{bottom:466.013333pt;}
.y10_c01277{bottom:488.146667pt;}
.yf_c01277{bottom:509.746667pt;}
.ye_c01277{bottom:530.680000pt;}
.yd_c01277{bottom:552.680000pt;}
.yc_c01277{bottom:574.013333pt;}
.yb_c01277{bottom:596.146667pt;}
.ya_c01277{bottom:617.746667pt;}
.y9_c01277{bottom:639.880000pt;}
.y8_c01277{bottom:660.413333pt;}
.y7_c01277{bottom:680.813333pt;}
.y6_c01277{bottom:704.413333pt;}
.y5_c01277{bottom:726.280000pt;}
.y4_c01277{bottom:747.880000pt;}
.y3_c01277{bottom:769.613333pt;}
.y2_c01277{bottom:791.213333pt;}
.y1_c01277{bottom:823.480000pt;}
.h9_c01277{height:11.733399pt;}
.ha_c01277{height:38.937500pt;}
.h6_c01277{height:59.300781pt;}
.h4_c01277{height:70.664062pt;}
.h3_c01277{height:74.906250pt;}
.h5_c01277{height:81.031250pt;}
.h8_c01277{height:81.045333pt;}
.h7_c01277{height:87.783854pt;}
.h2_c01277{height:88.940104pt;}
.h1_c01277{height:876.666667pt;}
.h0_c01277{height:876.733333pt;}
.w2_c01277{width:93.222667pt;}
.w0_c01277{width:593.266667pt;}
.w1_c01277{width:593.333333pt;}
.x0_c01277{left:0.000000pt;}
.x4_c01277{left:36.666667pt;}
.x7_c01277{left:39.600000pt;}
.xc_c01277{left:50.800000pt;}
.x5_c01277{left:55.466667pt;}
.xa_c01277{left:62.666667pt;}
.xd_c01277{left:63.600000pt;}
.xb_c01277{left:85.200000pt;}
.x9_c01277{left:87.333333pt;}
.x3_c01277{left:116.933333pt;}
.x2_c01277{left:118.133333pt;}
.x6_c01277{left:119.333333pt;}
.x8_c01277{left:120.266667pt;}
.x1_c01277{left:197.200000pt;}
.xf_c01277{left:253.801554pt;}
.xe_c01277{left:271.200000pt;}
}





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

.ir_c01278:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01278{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01278;src:url('chunks/assets/font_0e7e458d4d716ca8f5244085.woff2')format("woff");}.ff1_c01278{font-family:ff1_c01278;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01278;src:url('chunks/assets/font_cfc601692c12c00a59107d25.woff2')format("woff");}.ff2_c01278{font-family:ff2_c01278;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01278;src:url('chunks/assets/font_38d1d09c821bf22fe7e349bb.woff2')format("woff");}.ff3_c01278{font-family:ff3_c01278;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01278;src:url('chunks/assets/font_049ab3ddbd4a7ea294f9a4b3.woff2')format("woff");}.ff4_c01278{font-family:ff4_c01278;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01278;src:url('chunks/assets/font_2552458d4c00e763b7e82be6.woff2')format("woff");}.ff5_c01278{font-family:ff5_c01278;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01278;src:url('chunks/assets/font_b640c77d6da3fed23d02e213.woff2')format("woff");}.ff6_c01278{font-family:ff6_c01278;line-height:1.311035;font-style:normal;font-weight: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_c01278;src:url('chunks/assets/font_722fdae17a54d2835ef2f252.woff2')format("woff");}.ff7_c01278{font-family:ff7_c01278;line-height:1.437000;font-style:normal;font-weight: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_c01278;src:url('chunks/assets/font_625e94a62ba7c9822c7a98fc.woff2')format("woff");}.ff8_c01278{font-family:ff8_c01278;line-height:1.437000;font-style:normal;font-weight: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_c01278;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff9_c01278{font-family:ff9_c01278;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01278{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01278{vertical-align:0.000000px;}
.ls5_c01278{letter-spacing:-6.000000px;}
.ls4_c01278{letter-spacing:0.000000px;}
.ls3_c01278{letter-spacing:3.000000px;}
.ls2_c01278{letter-spacing:5.100000px;}
.ls1_c01278{letter-spacing:6.585600px;}
.ls0_c01278{letter-spacing:28.848000px;}
.sc__c01278{text-shadow:none;}
.sc0_c01278{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01278{-webkit-text-stroke:0px transparent;}
.sc0_c01278{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c01278{word-spacing:-67.686000px;}
.ws0_c01278{word-spacing:-25.500000px;}
.ws4_c01278{word-spacing:-20.250000px;}
.ws1_c01278{word-spacing:-17.352000px;}
.ws2_c01278{word-spacing:-15.183000px;}
.ws3_c01278{word-spacing:-0.069000px;}
.ws6_c01278{word-spacing:0.000000px;}
._2d_c01278{margin-left:-28.449000px;}
._24_c01278{margin-left:-25.560000px;}
._29_c01278{margin-left:-19.371000px;}
._27_c01278{margin-left:-17.418000px;}
._28_c01278{margin-left:-14.973000px;}
._2f_c01278{margin-left:-13.932000px;}
._b_c01278{margin-left:-12.852000px;}
._a_c01278{margin-left:-11.538000px;}
._7_c01278{margin-left:-10.296000px;}
._9_c01278{margin-left:-9.000000px;}
._6_c01278{margin-left:-7.650000px;}
._1_c01278{margin-left:-5.634000px;}
._8_c01278{margin-left:-4.446000px;}
._5_c01278{margin-left:-2.652000px;}
._d_c01278{margin-left:-1.368000px;}
._0_c01278{width:1.530000px;}
._e_c01278{width:3.054000px;}
._4_c01278{width:4.488000px;}
._f_c01278{width:6.162000px;}
._12_c01278{width:7.224000px;}
._13_c01278{width:8.250000px;}
._16_c01278{width:9.558000px;}
._1d_c01278{width:10.596000px;}
._14_c01278{width:11.817000px;}
._10_c01278{width:13.293000px;}
._17_c01278{width:15.357000px;}
._2_c01278{width:16.440000px;}
._15_c01278{width:17.766000px;}
._25_c01278{width:20.448000px;}
._19_c01278{width:24.087000px;}
._20_c01278{width:25.506000px;}
._1f_c01278{width:27.141000px;}
._1c_c01278{width:32.766000px;}
._1b_c01278{width:35.793000px;}
._2e_c01278{width:41.994000px;}
._30_c01278{width:78.165000px;}
._1a_c01278{width:106.050000px;}
._18_c01278{width:110.730000px;}
._11_c01278{width:128.925000px;}
._c_c01278{width:156.312000px;}
._1e_c01278{width:178.797000px;}
._2b_c01278{width:198.015000px;}
._23_c01278{width:215.292000px;}
._22_c01278{width:235.326000px;}
._26_c01278{width:274.614000px;}
._2a_c01278{width:288.021000px;}
._2c_c01278{width:316.152000px;}
._21_c01278{width:353.964000px;}
._3_c01278{width:885.240000px;}
._31_c01278{width:1329.555000px;}
.fc2_c01278{color:transparent;}
.fc1_c01278{color:rgb(128,128,128);}
.fc0_c01278{color:rgb(0,0,0);}
.fs5_c01278{font-size:43.200000px;}
.fs9_c01278{font-size:48.000000px;}
.fs6_c01278{font-size:54.000000px;}
.fs4_c01278{font-size:63.000000px;}
.fs7_c01278{font-size:69.000000px;}
.fs2_c01278{font-size:72.000000px;}
.fs3_c01278{font-size:81.000000px;}
.fs8_c01278{font-size:87.000000px;}
.fs0_c01278{font-size:102.000000px;}
.fs1_c01278{font-size:120.000000px;}
.y0_c01278{bottom:0.000000px;}
.y24_c01278{bottom:3.105000px;}
.y23_c01278{bottom:7.228369px;}
.y22_c01278{bottom:46.470000px;}
.y21_c01278{bottom:71.220000px;}
.y20_c01278{bottom:97.170000px;}
.y1f_c01278{bottom:122.520000px;}
.y1e_c01278{bottom:168.420000px;}
.y1d_c01278{bottom:195.720000px;}
.y1c_c01278{bottom:221.070000px;}
.y1b_c01278{bottom:244.020000px;}
.y1a_c01278{bottom:268.920000px;}
.y19_c01278{bottom:294.270000px;}
.y18_c01278{bottom:318.570000px;}
.y17_c01278{bottom:342.870000px;}
.y16_c01278{bottom:367.770000px;}
.y15_c01278{bottom:392.220000px;}
.y14_c01278{bottom:416.520000px;}
.y13_c01278{bottom:440.820000px;}
.y12_c01278{bottom:464.670000px;}
.y11_c01278{bottom:490.320000px;}
.y10_c01278{bottom:514.020000px;}
.yf_c01278{bottom:537.870000px;}
.ye_c01278{bottom:562.170000px;}
.yd_c01278{bottom:586.620000px;}
.yc_c01278{bottom:609.570000px;}
.yb_c01278{bottom:634.770000px;}
.ya_c01278{bottom:658.470000px;}
.y9_c01278{bottom:683.070000px;}
.y8_c01278{bottom:707.670000px;}
.y7_c01278{bottom:731.970000px;}
.y6_c01278{bottom:755.970000px;}
.y5_c01278{bottom:780.570000px;}
.y4_c01278{bottom:805.170000px;}
.y3_c01278{bottom:829.920000px;}
.y2_c01278{bottom:879.870000px;}
.y1_c01278{bottom:910.920000px;}
.h7_c01278{height:13.200073px;}
.h8_c01278{height:43.804688px;}
.h4_c01278{height:79.497070px;}
.h3_c01278{height:84.269531px;}
.h5_c01278{height:91.160156px;}
.h6_c01278{height:91.176000px;}
.h2_c01278{height:120.937500px;}
.h0_c01278{height:970.350000px;}
.h1_c01278{height:970.500000px;}
.w2_c01278{width:104.875500px;}
.w0_c01278{width:660.450000px;}
.w1_c01278{width:660.750000px;}
.x0_c01278{left:0.000000px;}
.xc_c01278{left:39.450000px;}
.xb_c01278{left:40.950000px;}
.xa_c01278{left:42.300000px;}
.x9_c01278{left:43.500000px;}
.x8_c01278{left:44.550000px;}
.x7_c01278{left:46.200000px;}
.x5_c01278{left:47.250000px;}
.x1_c01278{left:48.900000px;}
.x6_c01278{left:71.850000px;}
.x4_c01278{left:82.650000px;}
.x3_c01278{left:84.000000px;}
.x2_c01278{left:160.050000px;}
.xd_c01278{left:282.039230px;}
@media print{
.v0_c01278{vertical-align:0.000000pt;}
.ls5_c01278{letter-spacing:-5.333333pt;}
.ls4_c01278{letter-spacing:0.000000pt;}
.ls3_c01278{letter-spacing:2.666667pt;}
.ls2_c01278{letter-spacing:4.533333pt;}
.ls1_c01278{letter-spacing:5.853867pt;}
.ls0_c01278{letter-spacing:25.642667pt;}
.ws5_c01278{word-spacing:-60.165333pt;}
.ws0_c01278{word-spacing:-22.666667pt;}
.ws4_c01278{word-spacing:-18.000000pt;}
.ws1_c01278{word-spacing:-15.424000pt;}
.ws2_c01278{word-spacing:-13.496000pt;}
.ws3_c01278{word-spacing:-0.061333pt;}
.ws6_c01278{word-spacing:0.000000pt;}
._2d_c01278{margin-left:-25.288000pt;}
._24_c01278{margin-left:-22.720000pt;}
._29_c01278{margin-left:-17.218667pt;}
._27_c01278{margin-left:-15.482667pt;}
._28_c01278{margin-left:-13.309333pt;}
._2f_c01278{margin-left:-12.384000pt;}
._b_c01278{margin-left:-11.424000pt;}
._a_c01278{margin-left:-10.256000pt;}
._7_c01278{margin-left:-9.152000pt;}
._9_c01278{margin-left:-8.000000pt;}
._6_c01278{margin-left:-6.800000pt;}
._1_c01278{margin-left:-5.008000pt;}
._8_c01278{margin-left:-3.952000pt;}
._5_c01278{margin-left:-2.357333pt;}
._d_c01278{margin-left:-1.216000pt;}
._0_c01278{width:1.360000pt;}
._e_c01278{width:2.714667pt;}
._4_c01278{width:3.989333pt;}
._f_c01278{width:5.477333pt;}
._12_c01278{width:6.421333pt;}
._13_c01278{width:7.333333pt;}
._16_c01278{width:8.496000pt;}
._1d_c01278{width:9.418667pt;}
._14_c01278{width:10.504000pt;}
._10_c01278{width:11.816000pt;}
._17_c01278{width:13.650667pt;}
._2_c01278{width:14.613333pt;}
._15_c01278{width:15.792000pt;}
._25_c01278{width:18.176000pt;}
._19_c01278{width:21.410667pt;}
._20_c01278{width:22.672000pt;}
._1f_c01278{width:24.125333pt;}
._1c_c01278{width:29.125333pt;}
._1b_c01278{width:31.816000pt;}
._2e_c01278{width:37.328000pt;}
._30_c01278{width:69.480000pt;}
._1a_c01278{width:94.266667pt;}
._18_c01278{width:98.426667pt;}
._11_c01278{width:114.600000pt;}
._c_c01278{width:138.944000pt;}
._1e_c01278{width:158.930667pt;}
._2b_c01278{width:176.013333pt;}
._23_c01278{width:191.370667pt;}
._22_c01278{width:209.178667pt;}
._26_c01278{width:244.101333pt;}
._2a_c01278{width:256.018667pt;}
._2c_c01278{width:281.024000pt;}
._21_c01278{width:314.634667pt;}
._3_c01278{width:786.880000pt;}
._31_c01278{width:1181.826667pt;}
.fs5_c01278{font-size:38.400000pt;}
.fs9_c01278{font-size:42.666667pt;}
.fs6_c01278{font-size:48.000000pt;}
.fs4_c01278{font-size:56.000000pt;}
.fs7_c01278{font-size:61.333333pt;}
.fs2_c01278{font-size:64.000000pt;}
.fs3_c01278{font-size:72.000000pt;}
.fs8_c01278{font-size:77.333333pt;}
.fs0_c01278{font-size:90.666667pt;}
.fs1_c01278{font-size:106.666667pt;}
.y0_c01278{bottom:0.000000pt;}
.y24_c01278{bottom:2.760000pt;}
.y23_c01278{bottom:6.425217pt;}
.y22_c01278{bottom:41.306667pt;}
.y21_c01278{bottom:63.306667pt;}
.y20_c01278{bottom:86.373333pt;}
.y1f_c01278{bottom:108.906667pt;}
.y1e_c01278{bottom:149.706667pt;}
.y1d_c01278{bottom:173.973333pt;}
.y1c_c01278{bottom:196.506667pt;}
.y1b_c01278{bottom:216.906667pt;}
.y1a_c01278{bottom:239.040000pt;}
.y19_c01278{bottom:261.573333pt;}
.y18_c01278{bottom:283.173333pt;}
.y17_c01278{bottom:304.773333pt;}
.y16_c01278{bottom:326.906667pt;}
.y15_c01278{bottom:348.640000pt;}
.y14_c01278{bottom:370.240000pt;}
.y13_c01278{bottom:391.840000pt;}
.y12_c01278{bottom:413.040000pt;}
.y11_c01278{bottom:435.840000pt;}
.y10_c01278{bottom:456.906667pt;}
.yf_c01278{bottom:478.106667pt;}
.ye_c01278{bottom:499.706667pt;}
.yd_c01278{bottom:521.440000pt;}
.yc_c01278{bottom:541.840000pt;}
.yb_c01278{bottom:564.240000pt;}
.ya_c01278{bottom:585.306667pt;}
.y9_c01278{bottom:607.173333pt;}
.y8_c01278{bottom:629.040000pt;}
.y7_c01278{bottom:650.640000pt;}
.y6_c01278{bottom:671.973333pt;}
.y5_c01278{bottom:693.840000pt;}
.y4_c01278{bottom:715.706667pt;}
.y3_c01278{bottom:737.706667pt;}
.y2_c01278{bottom:782.106667pt;}
.y1_c01278{bottom:809.706667pt;}
.h7_c01278{height:11.733399pt;}
.h8_c01278{height:38.937500pt;}
.h4_c01278{height:70.664062pt;}
.h3_c01278{height:74.906250pt;}
.h5_c01278{height:81.031250pt;}
.h6_c01278{height:81.045333pt;}
.h2_c01278{height:107.500000pt;}
.h0_c01278{height:862.533333pt;}
.h1_c01278{height:862.666667pt;}
.w2_c01278{width:93.222667pt;}
.w0_c01278{width:587.066667pt;}
.w1_c01278{width:587.333333pt;}
.x0_c01278{left:0.000000pt;}
.xc_c01278{left:35.066667pt;}
.xb_c01278{left:36.400000pt;}
.xa_c01278{left:37.600000pt;}
.x9_c01278{left:38.666667pt;}
.x8_c01278{left:39.600000pt;}
.x7_c01278{left:41.066667pt;}
.x5_c01278{left:42.000000pt;}
.x1_c01278{left:43.466667pt;}
.x6_c01278{left:63.866667pt;}
.x4_c01278{left:73.466667pt;}
.x3_c01278{left:74.666667pt;}
.x2_c01278{left:142.266667pt;}
.xd_c01278{left:250.701538pt;}
}





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

.ir_c01279:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01279{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01279;src:url('chunks/assets/font_bd73978cb7d03cff921390e6.woff2')format("woff");}.ff1_c01279{font-family:ff1_c01279;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01279;src:url('chunks/assets/font_97fd9d54907555bde49e43aa.woff2')format("woff");}.ff2_c01279{font-family:ff2_c01279;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01279;src:url('chunks/assets/font_6a36283fdf31d87865cde18b.woff2')format("woff");}.ff3_c01279{font-family:ff3_c01279;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01279;src:url('chunks/assets/font_9121fe5ee8d3f8273ad43b9f.woff2')format("woff");}.ff4_c01279{font-family:ff4_c01279;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01279;src:url('chunks/assets/font_9679f6f91a9bc0e709f4b253.woff2')format("woff");}.ff5_c01279{font-family:ff5_c01279;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01279;src:url('chunks/assets/font_1958fa50ef8cddcbe0dc6bb0.woff2')format("woff");}.ff6_c01279{font-family:ff6_c01279;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01279;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c01279{font-family:ff7_c01279;line-height:1.219238;font-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_c01279{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m0_c01279{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01279{vertical-align:0.000000px;}
.ls2_c01279{letter-spacing:0.000000px;}
.ls4_c01279{letter-spacing:3.000000px;}
.ls3_c01279{letter-spacing:9.000000px;}
.ls0_c01279{letter-spacing:21.000000px;}
.ls1_c01279{letter-spacing:30.504000px;}
.sc__c01279{text-shadow:none;}
.sc0_c01279{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01279{-webkit-text-stroke:0px transparent;}
.sc0_c01279{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c01279{word-spacing:-25.500000px;}
.ws4_c01279{word-spacing:-20.250000px;}
.ws2_c01279{word-spacing:-17.352000px;}
.ws1_c01279{word-spacing:-0.864000px;}
.ws5_c01279{word-spacing:0.000000px;}
.ws0_c01279{word-spacing:1.080000px;}
._19_c01279{margin-left:-45.036000px;}
._23_c01279{margin-left:-19.344000px;}
._22_c01279{margin-left:-16.692000px;}
._1c_c01279{margin-left:-12.792000px;}
._15_c01279{margin-left:-11.049000px;}
._b_c01279{margin-left:-9.252000px;}
._21_c01279{margin-left:-8.229000px;}
._11_c01279{margin-left:-7.164000px;}
._f_c01279{margin-left:-5.346000px;}
._d_c01279{margin-left:-4.176000px;}
._c_c01279{margin-left:-2.187000px;}
._12_c01279{margin-left:-1.134000px;}
._e_c01279{width:1.863000px;}
._a_c01279{width:3.321000px;}
._0_c01279{width:4.977000px;}
._16_c01279{width:5.985000px;}
._1_c01279{width:6.993000px;}
._6_c01279{width:8.136000px;}
._9_c01279{width:9.351000px;}
._4_c01279{width:10.728000px;}
._8_c01279{width:11.961000px;}
._10_c01279{width:13.050000px;}
._2_c01279{width:14.175000px;}
._3_c01279{width:16.047000px;}
._7_c01279{width:17.136000px;}
._17_c01279{width:18.153000px;}
._5_c01279{width:19.737000px;}
._14_c01279{width:21.402000px;}
._1e_c01279{width:24.531000px;}
._13_c01279{width:28.383000px;}
._1f_c01279{width:29.916000px;}
._20_c01279{width:94.113000px;}
._1d_c01279{width:109.884000px;}
._18_c01279{width:113.643000px;}
._1a_c01279{width:167.589000px;}
._24_c01279{width:191.184000px;}
._1b_c01279{width:203.148000px;}
._25_c01279{width:1420.656000px;}
.fc2_c01279{color:transparent;}
.fc1_c01279{color:rgb(128,128,128);}
.fc0_c01279{color:rgb(0,0,0);}
.fs9_c01279{font-size:48.000000px;}
.fs0_c01279{font-size:63.000000px;}
.fs2_c01279{font-size:66.000000px;}
.fs4_c01279{font-size:69.000000px;}
.fs1_c01279{font-size:72.000000px;}
.fs6_c01279{font-size:78.000000px;}
.fs3_c01279{font-size:81.000000px;}
.fs5_c01279{font-size:87.000000px;}
.fs8_c01279{font-size:105.000000px;}
.fs7_c01279{font-size:108.000000px;}
.y0_c01279{bottom:0.000000px;}
.y27_c01279{bottom:3.105000px;}
.y26_c01279{bottom:7.228371px;}
.y25_c01279{bottom:48.015000px;}
.y24_c01279{bottom:69.615000px;}
.y23_c01279{bottom:95.865000px;}
.y22_c01279{bottom:120.165000px;}
.y21_c01279{bottom:145.515000px;}
.y20_c01279{bottom:169.815000px;}
.y1f_c01279{bottom:194.865000px;}
.y1e_c01279{bottom:219.765000px;}
.y1d_c01279{bottom:245.115000px;}
.y1c_c01279{bottom:269.415000px;}
.y1b_c01279{bottom:296.115000px;}
.y1a_c01279{bottom:320.715000px;}
.y19_c01279{bottom:343.215000px;}
.y18_c01279{bottom:367.965000px;}
.y17_c01279{bottom:392.265000px;}
.y16_c01279{bottom:417.165000px;}
.y15_c01279{bottom:441.765000px;}
.y14_c01279{bottom:466.815000px;}
.y13_c01279{bottom:490.365000px;}
.y12_c01279{bottom:515.115000px;}
.y11_c01279{bottom:538.665000px;}
.y10_c01279{bottom:564.015000px;}
.yf_c01279{bottom:586.965000px;}
.ye_c01279{bottom:611.565000px;}
.yd_c01279{bottom:635.565000px;}
.yc_c01279{bottom:659.265000px;}
.yb_c01279{bottom:684.165000px;}
.ya_c01279{bottom:708.465000px;}
.y9_c01279{bottom:733.065000px;}
.y8_c01279{bottom:757.065000px;}
.y1_c01279{bottom:764.565000px;}
.y7_c01279{bottom:781.365000px;}
.y6_c01279{bottom:806.415000px;}
.y5_c01279{bottom:830.265000px;}
.y4_c01279{bottom:854.865000px;}
.y3_c01279{bottom:879.165000px;}
.y2_c01279{bottom:914.415000px;}
.ha_c01279{height:13.200074px;}
.hb_c01279{height:43.804688px;}
.h2_c01279{height:63.492188px;}
.h4_c01279{height:79.497070px;}
.h3_c01279{height:84.269531px;}
.h7_c01279{height:91.160156px;}
.h6_c01279{height:98.756836px;}
.h8_c01279{height:108.843750px;}
.h5_c01279{height:110.151855px;}
.h9_c01279{height:122.893066px;}
.h1_c01279{height:986.250000px;}
.h0_c01279{height:986.325000px;}
.w2_c01279{width:104.875500px;}
.w0_c01279{width:667.425000px;}
.w1_c01279{width:667.500000px;}
.x0_c01279{left:0.000000px;}
.x7_c01279{left:38.400000px;}
.xc_c01279{left:41.400000px;}
.xf_c01279{left:42.450000px;}
.x12_c01279{left:44.850000px;}
.x1_c01279{left:46.950000px;}
.xd_c01279{left:72.150000px;}
.x11_c01279{left:91.500000px;}
.xe_c01279{left:108.600000px;}
.x3_c01279{left:123.150000px;}
.x4_c01279{left:125.100000px;}
.x5_c01279{left:126.450000px;}
.x6_c01279{left:127.500000px;}
.x8_c01279{left:128.850000px;}
.x9_c01279{left:129.900000px;}
.xa_c01279{left:130.950000px;}
.xb_c01279{left:132.300000px;}
.x10_c01279{left:133.650000px;}
.x16_c01279{left:135.600000px;}
.x13_c01279{left:139.050000px;}
.x14_c01279{left:166.050000px;}
.x15_c01279{left:179.850000px;}
.x2_c01279{left:193.050000px;}
.x17_c01279{left:285.526749px;}
@media print{
.v0_c01279{vertical-align:0.000000pt;}
.ls2_c01279{letter-spacing:0.000000pt;}
.ls4_c01279{letter-spacing:2.666667pt;}
.ls3_c01279{letter-spacing:8.000000pt;}
.ls0_c01279{letter-spacing:18.666667pt;}
.ls1_c01279{letter-spacing:27.114667pt;}
.ws3_c01279{word-spacing:-22.666667pt;}
.ws4_c01279{word-spacing:-18.000000pt;}
.ws2_c01279{word-spacing:-15.424000pt;}
.ws1_c01279{word-spacing:-0.768000pt;}
.ws5_c01279{word-spacing:0.000000pt;}
.ws0_c01279{word-spacing:0.960000pt;}
._19_c01279{margin-left:-40.032000pt;}
._23_c01279{margin-left:-17.194667pt;}
._22_c01279{margin-left:-14.837333pt;}
._1c_c01279{margin-left:-11.370667pt;}
._15_c01279{margin-left:-9.821333pt;}
._b_c01279{margin-left:-8.224000pt;}
._21_c01279{margin-left:-7.314667pt;}
._11_c01279{margin-left:-6.368000pt;}
._f_c01279{margin-left:-4.752000pt;}
._d_c01279{margin-left:-3.712000pt;}
._c_c01279{margin-left:-1.944000pt;}
._12_c01279{margin-left:-1.008000pt;}
._e_c01279{width:1.656000pt;}
._a_c01279{width:2.952000pt;}
._0_c01279{width:4.424000pt;}
._16_c01279{width:5.320000pt;}
._1_c01279{width:6.216000pt;}
._6_c01279{width:7.232000pt;}
._9_c01279{width:8.312000pt;}
._4_c01279{width:9.536000pt;}
._8_c01279{width:10.632000pt;}
._10_c01279{width:11.600000pt;}
._2_c01279{width:12.600000pt;}
._3_c01279{width:14.264000pt;}
._7_c01279{width:15.232000pt;}
._17_c01279{width:16.136000pt;}
._5_c01279{width:17.544000pt;}
._14_c01279{width:19.024000pt;}
._1e_c01279{width:21.805333pt;}
._13_c01279{width:25.229333pt;}
._1f_c01279{width:26.592000pt;}
._20_c01279{width:83.656000pt;}
._1d_c01279{width:97.674667pt;}
._18_c01279{width:101.016000pt;}
._1a_c01279{width:148.968000pt;}
._24_c01279{width:169.941333pt;}
._1b_c01279{width:180.576000pt;}
._25_c01279{width:1262.805333pt;}
.fs9_c01279{font-size:42.666667pt;}
.fs0_c01279{font-size:56.000000pt;}
.fs2_c01279{font-size:58.666667pt;}
.fs4_c01279{font-size:61.333333pt;}
.fs1_c01279{font-size:64.000000pt;}
.fs6_c01279{font-size:69.333333pt;}
.fs3_c01279{font-size:72.000000pt;}
.fs5_c01279{font-size:77.333333pt;}
.fs8_c01279{font-size:93.333333pt;}
.fs7_c01279{font-size:96.000000pt;}
.y0_c01279{bottom:0.000000pt;}
.y27_c01279{bottom:2.760000pt;}
.y26_c01279{bottom:6.425219pt;}
.y25_c01279{bottom:42.680000pt;}
.y24_c01279{bottom:61.880000pt;}
.y23_c01279{bottom:85.213333pt;}
.y22_c01279{bottom:106.813333pt;}
.y21_c01279{bottom:129.346667pt;}
.y20_c01279{bottom:150.946667pt;}
.y1f_c01279{bottom:173.213333pt;}
.y1e_c01279{bottom:195.346667pt;}
.y1d_c01279{bottom:217.880000pt;}
.y1c_c01279{bottom:239.480000pt;}
.y1b_c01279{bottom:263.213333pt;}
.y1a_c01279{bottom:285.080000pt;}
.y19_c01279{bottom:305.080000pt;}
.y18_c01279{bottom:327.080000pt;}
.y17_c01279{bottom:348.680000pt;}
.y16_c01279{bottom:370.813333pt;}
.y15_c01279{bottom:392.680000pt;}
.y14_c01279{bottom:414.946667pt;}
.y13_c01279{bottom:435.880000pt;}
.y12_c01279{bottom:457.880000pt;}
.y11_c01279{bottom:478.813333pt;}
.y10_c01279{bottom:501.346667pt;}
.yf_c01279{bottom:521.746667pt;}
.ye_c01279{bottom:543.613333pt;}
.yd_c01279{bottom:564.946667pt;}
.yc_c01279{bottom:586.013333pt;}
.yb_c01279{bottom:608.146667pt;}
.ya_c01279{bottom:629.746667pt;}
.y9_c01279{bottom:651.613333pt;}
.y8_c01279{bottom:672.946667pt;}
.y1_c01279{bottom:679.613333pt;}
.y7_c01279{bottom:694.546667pt;}
.y6_c01279{bottom:716.813333pt;}
.y5_c01279{bottom:738.013333pt;}
.y4_c01279{bottom:759.880000pt;}
.y3_c01279{bottom:781.480000pt;}
.y2_c01279{bottom:812.813333pt;}
.ha_c01279{height:11.733399pt;}
.hb_c01279{height:38.937500pt;}
.h2_c01279{height:56.437500pt;}
.h4_c01279{height:70.664062pt;}
.h3_c01279{height:74.906250pt;}
.h7_c01279{height:81.031250pt;}
.h6_c01279{height:87.783854pt;}
.h8_c01279{height:96.750000pt;}
.h5_c01279{height:97.912760pt;}
.h9_c01279{height:109.238281pt;}
.h1_c01279{height:876.666667pt;}
.h0_c01279{height:876.733333pt;}
.w2_c01279{width:93.222667pt;}
.w0_c01279{width:593.266667pt;}
.w1_c01279{width:593.333333pt;}
.x0_c01279{left:0.000000pt;}
.x7_c01279{left:34.133333pt;}
.xc_c01279{left:36.800000pt;}
.xf_c01279{left:37.733333pt;}
.x12_c01279{left:39.866667pt;}
.x1_c01279{left:41.733333pt;}
.xd_c01279{left:64.133333pt;}
.x11_c01279{left:81.333333pt;}
.xe_c01279{left:96.533333pt;}
.x3_c01279{left:109.466667pt;}
.x4_c01279{left:111.200000pt;}
.x5_c01279{left:112.400000pt;}
.x6_c01279{left:113.333333pt;}
.x8_c01279{left:114.533333pt;}
.x9_c01279{left:115.466667pt;}
.xa_c01279{left:116.400000pt;}
.xb_c01279{left:117.600000pt;}
.x10_c01279{left:118.800000pt;}
.x16_c01279{left:120.533333pt;}
.x13_c01279{left:123.600000pt;}
.x14_c01279{left:147.600000pt;}
.x15_c01279{left:159.866667pt;}
.x2_c01279{left:171.600000pt;}
.x17_c01279{left:253.801554pt;}
}





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

.ir_c01280:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01280{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01280;src:url('chunks/assets/font_97d506db7cee2c1893b65772.woff2')format("woff");}.ff1_c01280{font-family:ff1_c01280;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01280;src:url('chunks/assets/font_8850fe8d07999d54089ef493.woff2')format("woff");}.ff2_c01280{font-family:ff2_c01280;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01280;src:url('chunks/assets/font_0cb52d31fd2e6e62c7eecbad.woff2')format("woff");}.ff3_c01280{font-family:ff3_c01280;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01280;src:url('chunks/assets/font_2d0a25d86bb94986b85be3c1.woff2')format("woff");}.ff4_c01280{font-family:ff4_c01280;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01280;src:url('chunks/assets/font_e2348072ad548fac4e7c08f0.woff2')format("woff");}.ff5_c01280{font-family:ff5_c01280;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01280;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c01280{font-family:ff6_c01280;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01280{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01280{vertical-align:0.000000px;}
.ls1_c01280{letter-spacing:0.000000px;}
.ls0_c01280{letter-spacing:1.428000px;}
.sc__c01280{text-shadow:none;}
.sc0_c01280{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01280{-webkit-text-stroke:0px transparent;}
.sc0_c01280{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01280{word-spacing:-59.184000px;}
.ws1_c01280{word-spacing:-20.250000px;}
.ws2_c01280{word-spacing:0.000000px;}
._17_c01280{margin-left:-23.409000px;}
._12_c01280{margin-left:-19.440000px;}
._20_c01280{margin-left:-16.200000px;}
._15_c01280{margin-left:-14.094000px;}
._1f_c01280{margin-left:-13.041000px;}
._e_c01280{margin-left:-11.988000px;}
._d_c01280{margin-left:-9.315000px;}
._f_c01280{margin-left:-7.614000px;}
._11_c01280{margin-left:-5.832000px;}
._3_c01280{margin-left:-4.455000px;}
._6_c01280{margin-left:-2.916000px;}
._8_c01280{margin-left:-1.053000px;}
._9_c01280{width:1.458000px;}
._5_c01280{width:2.592000px;}
._4_c01280{width:3.888000px;}
._0_c01280{width:5.346000px;}
._a_c01280{width:6.561000px;}
._7_c01280{width:7.614000px;}
._1_c01280{width:9.072000px;}
._b_c01280{width:10.854000px;}
._19_c01280{width:12.393000px;}
._2_c01280{width:14.013000px;}
._18_c01280{width:15.633000px;}
._1a_c01280{width:17.739000px;}
._1b_c01280{width:24.750000px;}
._13_c01280{width:26.244000px;}
._1d_c01280{width:81.654000px;}
._14_c01280{width:102.870000px;}
._1e_c01280{width:143.370000px;}
._16_c01280{width:149.202000px;}
._1c_c01280{width:154.092000px;}
._10_c01280{width:199.017000px;}
._c_c01280{width:246.645000px;}
.fc2_c01280{color:transparent;}
.fc1_c01280{color:rgb(128,128,128);}
.fc0_c01280{color:rgb(0,0,0);}
.fs5_c01280{font-size:48.000000px;}
.fs3_c01280{font-size:51.000000px;}
.fs1_c01280{font-size:72.000000px;}
.fs0_c01280{font-size:81.000000px;}
.fs2_c01280{font-size:84.000000px;}
.fs4_c01280{font-size:87.000000px;}
.y0_c01280{bottom:0.000000px;}
.y25_c01280{bottom:3.105000px;}
.y24_c01280{bottom:7.228355px;}
.y23_c01280{bottom:53.985000px;}
.y22_c01280{bottom:77.235000px;}
.y21_c01280{bottom:103.485000px;}
.y20_c01280{bottom:127.935000px;}
.y1f_c01280{bottom:152.235000px;}
.y1e_c01280{bottom:177.435000px;}
.y1d_c01280{bottom:201.135000px;}
.y1c_c01280{bottom:225.435000px;}
.y1b_c01280{bottom:250.335000px;}
.y1a_c01280{bottom:274.635000px;}
.y19_c01280{bottom:298.935000px;}
.y18_c01280{bottom:323.235000px;}
.y17_c01280{bottom:347.535000px;}
.y16_c01280{bottom:372.135000px;}
.y15_c01280{bottom:396.135000px;}
.y14_c01280{bottom:420.435000px;}
.y13_c01280{bottom:444.435000px;}
.y12_c01280{bottom:468.135000px;}
.y11_c01280{bottom:493.035000px;}
.y10_c01280{bottom:517.035000px;}
.yf_c01280{bottom:541.035000px;}
.ye_c01280{bottom:565.185000px;}
.yd_c01280{bottom:588.585000px;}
.yc_c01280{bottom:612.885000px;}
.yb_c01280{bottom:637.185000px;}
.ya_c01280{bottom:661.035000px;}
.y9_c01280{bottom:684.435000px;}
.y8_c01280{bottom:709.035000px;}
.y7_c01280{bottom:733.035000px;}
.y6_c01280{bottom:754.935000px;}
.y5_c01280{bottom:781.335000px;}
.y4_c01280{bottom:806.835000px;}
.y3_c01280{bottom:830.835000px;}
.y2_c01280{bottom:855.135000px;}
.y1_c01280{bottom:879.735000px;}
.h6_c01280{height:13.200074px;}
.h7_c01280{height:43.804688px;}
.h2_c01280{height:79.497070px;}
.h4_c01280{height:82.400391px;}
.h3_c01280{height:84.269531px;}
.h5_c01280{height:110.151855px;}
.h0_c01280{height:977.925000px;}
.h1_c01280{height:978.000000px;}
.w2_c01280{width:104.875500px;}
.w0_c01280{width:665.850000px;}
.w1_c01280{width:666.000000px;}
.x0_c01280{left:0.000000px;}
.x9_c01280{left:23.850000px;}
.x2_c01280{left:45.900000px;}
.x3_c01280{left:47.250000px;}
.x8_c01280{left:50.850000px;}
.x1_c01280{left:52.950000px;}
.x5_c01280{left:54.300000px;}
.x7_c01280{left:55.350000px;}
.x6_c01280{left:56.700000px;}
.x4_c01280{left:79.650000px;}
.xb_c01280{left:284.739258px;}
.xa_c01280{left:519.150000px;}
@media print{
.v0_c01280{vertical-align:0.000000pt;}
.ls1_c01280{letter-spacing:0.000000pt;}
.ls0_c01280{letter-spacing:1.269333pt;}
.ws0_c01280{word-spacing:-52.608000pt;}
.ws1_c01280{word-spacing:-18.000000pt;}
.ws2_c01280{word-spacing:0.000000pt;}
._17_c01280{margin-left:-20.808000pt;}
._12_c01280{margin-left:-17.280000pt;}
._20_c01280{margin-left:-14.400000pt;}
._15_c01280{margin-left:-12.528000pt;}
._1f_c01280{margin-left:-11.592000pt;}
._e_c01280{margin-left:-10.656000pt;}
._d_c01280{margin-left:-8.280000pt;}
._f_c01280{margin-left:-6.768000pt;}
._11_c01280{margin-left:-5.184000pt;}
._3_c01280{margin-left:-3.960000pt;}
._6_c01280{margin-left:-2.592000pt;}
._8_c01280{margin-left:-0.936000pt;}
._9_c01280{width:1.296000pt;}
._5_c01280{width:2.304000pt;}
._4_c01280{width:3.456000pt;}
._0_c01280{width:4.752000pt;}
._a_c01280{width:5.832000pt;}
._7_c01280{width:6.768000pt;}
._1_c01280{width:8.064000pt;}
._b_c01280{width:9.648000pt;}
._19_c01280{width:11.016000pt;}
._2_c01280{width:12.456000pt;}
._18_c01280{width:13.896000pt;}
._1a_c01280{width:15.768000pt;}
._1b_c01280{width:22.000000pt;}
._13_c01280{width:23.328000pt;}
._1d_c01280{width:72.581333pt;}
._14_c01280{width:91.440000pt;}
._1e_c01280{width:127.440000pt;}
._16_c01280{width:132.624000pt;}
._1c_c01280{width:136.970667pt;}
._10_c01280{width:176.904000pt;}
._c_c01280{width:219.240000pt;}
.fs5_c01280{font-size:42.666667pt;}
.fs3_c01280{font-size:45.333333pt;}
.fs1_c01280{font-size:64.000000pt;}
.fs0_c01280{font-size:72.000000pt;}
.fs2_c01280{font-size:74.666667pt;}
.fs4_c01280{font-size:77.333333pt;}
.y0_c01280{bottom:0.000000pt;}
.y25_c01280{bottom:2.760000pt;}
.y24_c01280{bottom:6.425204pt;}
.y23_c01280{bottom:47.986667pt;}
.y22_c01280{bottom:68.653333pt;}
.y21_c01280{bottom:91.986667pt;}
.y20_c01280{bottom:113.720000pt;}
.y1f_c01280{bottom:135.320000pt;}
.y1e_c01280{bottom:157.720000pt;}
.y1d_c01280{bottom:178.786667pt;}
.y1c_c01280{bottom:200.386667pt;}
.y1b_c01280{bottom:222.520000pt;}
.y1a_c01280{bottom:244.120000pt;}
.y19_c01280{bottom:265.720000pt;}
.y18_c01280{bottom:287.320000pt;}
.y17_c01280{bottom:308.920000pt;}
.y16_c01280{bottom:330.786667pt;}
.y15_c01280{bottom:352.120000pt;}
.y14_c01280{bottom:373.720000pt;}
.y13_c01280{bottom:395.053333pt;}
.y12_c01280{bottom:416.120000pt;}
.y11_c01280{bottom:438.253333pt;}
.y10_c01280{bottom:459.586667pt;}
.yf_c01280{bottom:480.920000pt;}
.ye_c01280{bottom:502.386667pt;}
.yd_c01280{bottom:523.186667pt;}
.yc_c01280{bottom:544.786667pt;}
.yb_c01280{bottom:566.386667pt;}
.ya_c01280{bottom:587.586667pt;}
.y9_c01280{bottom:608.386667pt;}
.y8_c01280{bottom:630.253333pt;}
.y7_c01280{bottom:651.586667pt;}
.y6_c01280{bottom:671.053333pt;}
.y5_c01280{bottom:694.520000pt;}
.y4_c01280{bottom:717.186667pt;}
.y3_c01280{bottom:738.520000pt;}
.y2_c01280{bottom:760.120000pt;}
.y1_c01280{bottom:781.986667pt;}
.h6_c01280{height:11.733399pt;}
.h7_c01280{height:38.937500pt;}
.h2_c01280{height:70.664062pt;}
.h4_c01280{height:73.244792pt;}
.h3_c01280{height:74.906250pt;}
.h5_c01280{height:97.912760pt;}
.h0_c01280{height:869.266667pt;}
.h1_c01280{height:869.333333pt;}
.w2_c01280{width:93.222667pt;}
.w0_c01280{width:591.866667pt;}
.w1_c01280{width:592.000000pt;}
.x0_c01280{left:0.000000pt;}
.x9_c01280{left:21.200000pt;}
.x2_c01280{left:40.800000pt;}
.x3_c01280{left:42.000000pt;}
.x8_c01280{left:45.200000pt;}
.x1_c01280{left:47.066667pt;}
.x5_c01280{left:48.266667pt;}
.x7_c01280{left:49.200000pt;}
.x6_c01280{left:50.400000pt;}
.x4_c01280{left:70.800000pt;}
.xb_c01280{left:253.101563pt;}
.xa_c01280{left:461.466667pt;}
}





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

.ir_c01281:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01281{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01281;src:url('chunks/assets/font_4ef982f00e50f3866d8a1e7f.woff2')format("woff");}.ff1_c01281{font-family:ff1_c01281;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01281;src:url('chunks/assets/font_281f0c45455e8dd572a5780c.woff2')format("woff");}.ff2_c01281{font-family:ff2_c01281;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01281;src:url('chunks/assets/font_4e6e62533e877f75f9869071.woff2')format("woff");}.ff3_c01281{font-family:ff3_c01281;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01281;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff4_c01281{font-family:ff4_c01281;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01281;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c01281{font-family:ff5_c01281;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01281{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01281{vertical-align:0.000000px;}
.ls1_c01281{letter-spacing:0.000000px;}
.ls0_c01281{letter-spacing:5.100000px;}
.ls2_c01281{letter-spacing:9.000000px;}
.sc__c01281{text-shadow:none;}
.sc0_c01281{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01281{-webkit-text-stroke:0px transparent;}
.sc0_c01281{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01281{word-spacing:-76.686000px;}
.ws2_c01281{word-spacing:-20.250000px;}
.ws1_c01281{word-spacing:-17.352000px;}
.ws3_c01281{word-spacing:0.000000px;}
._d_c01281{margin-left:-64.389000px;}
._f_c01281{margin-left:-32.718000px;}
._13_c01281{margin-left:-29.727000px;}
._16_c01281{margin-left:-27.216000px;}
._e_c01281{margin-left:-23.577000px;}
._23_c01281{margin-left:-16.038000px;}
._19_c01281{margin-left:-14.256000px;}
._22_c01281{margin-left:-11.664000px;}
._1b_c01281{margin-left:-10.611000px;}
._1f_c01281{margin-left:-8.100000px;}
._b_c01281{margin-left:-6.642000px;}
._6_c01281{margin-left:-5.508000px;}
._3_c01281{margin-left:-3.645000px;}
._a_c01281{margin-left:-1.944000px;}
._4_c01281{width:1.863000px;}
._1_c01281{width:3.159000px;}
._c_c01281{width:4.536000px;}
._5_c01281{width:5.589000px;}
._2_c01281{width:6.642000px;}
._0_c01281{width:7.776000px;}
._8_c01281{width:9.639000px;}
._7_c01281{width:11.178000px;}
._12_c01281{width:12.312000px;}
._9_c01281{width:13.851000px;}
._18_c01281{width:15.633000px;}
._1d_c01281{width:17.901000px;}
._17_c01281{width:24.138000px;}
._1a_c01281{width:25.353000px;}
._11_c01281{width:29.160000px;}
._1e_c01281{width:122.634000px;}
._15_c01281{width:173.850000px;}
._10_c01281{width:182.574000px;}
._1c_c01281{width:185.163000px;}
._14_c01281{width:319.950000px;}
._21_c01281{width:324.000000px;}
._20_c01281{width:508.017000px;}
.fc2_c01281{color:transparent;}
.fc1_c01281{color:rgb(128,128,128);}
.fc0_c01281{color:rgb(0,0,0);}
.fs4_c01281{font-size:48.000000px;}
.fs3_c01281{font-size:57.000000px;}
.fs2_c01281{font-size:72.000000px;}
.fs0_c01281{font-size:81.000000px;}
.fs1_c01281{font-size:87.000000px;}
.y0_c01281{bottom:0.000000px;}
.y24_c01281{bottom:3.105000px;}
.y23_c01281{bottom:7.228369px;}
.y22_c01281{bottom:53.670000px;}
.y21_c01281{bottom:76.170000px;}
.y20_c01281{bottom:101.970000px;}
.y1f_c01281{bottom:126.270000px;}
.y1e_c01281{bottom:151.470000px;}
.y1d_c01281{bottom:176.070000px;}
.y1c_c01281{bottom:200.820000px;}
.y1b_c01281{bottom:225.420000px;}
.y1a_c01281{bottom:251.070000px;}
.y19_c01281{bottom:300.270000px;}
.y18_c01281{bottom:325.020000px;}
.y17_c01281{bottom:349.920000px;}
.y16_c01281{bottom:374.670000px;}
.y15_c01281{bottom:399.570000px;}
.y14_c01281{bottom:423.570000px;}
.y13_c01281{bottom:448.920000px;}
.y12_c01281{bottom:475.170000px;}
.y11_c01281{bottom:498.120000px;}
.y10_c01281{bottom:524.520000px;}
.yf_c01281{bottom:546.420000px;}
.ye_c01281{bottom:571.020000px;}
.yd_c01281{bottom:595.620000px;}
.yc_c01281{bottom:619.620000px;}
.yb_c01281{bottom:644.220000px;}
.ya_c01281{bottom:668.820000px;}
.y9_c01281{bottom:693.270000px;}
.y8_c01281{bottom:717.570000px;}
.y7_c01281{bottom:741.720000px;}
.y6_c01281{bottom:766.020000px;}
.y5_c01281{bottom:791.070000px;}
.y4_c01281{bottom:815.670000px;}
.y3_c01281{bottom:840.270000px;}
.y2_c01281{bottom:864.570000px;}
.y1_c01281{bottom:889.020000px;}
.h6_c01281{height:13.200073px;}
.h7_c01281{height:43.804688px;}
.h5_c01281{height:72.168457px;}
.h2_c01281{height:79.497070px;}
.h4_c01281{height:84.269531px;}
.h3_c01281{height:91.176000px;}
.h1_c01281{height:967.500000px;}
.h0_c01281{height:967.650000px;}
.w2_c01281{width:104.875500px;}
.w1_c01281{width:654.750000px;}
.w0_c01281{width:655.050000px;}
.x0_c01281{left:0.000000px;}
.x8_c01281{left:47.850000px;}
.x12_c01281{left:51.600000px;}
.x3_c01281{left:59.850000px;}
.x11_c01281{left:79.950000px;}
.x5_c01281{left:123.900000px;}
.x9_c01281{left:126.600000px;}
.xb_c01281{left:127.800000px;}
.x2_c01281{left:130.350000px;}
.xd_c01281{left:131.550000px;}
.xf_c01281{left:132.900000px;}
.x1_c01281{left:135.900000px;}
.x4_c01281{left:136.950000px;}
.x6_c01281{left:138.300000px;}
.xa_c01281{left:140.400000px;}
.xc_c01281{left:141.450000px;}
.xe_c01281{left:143.700000px;}
.x10_c01281{left:200.100000px;}
.x7_c01281{left:237.600000px;}
.x14_c01281{left:279.339249px;}
.x13_c01281{left:572.700000px;}
@media print{
.v0_c01281{vertical-align:0.000000pt;}
.ls1_c01281{letter-spacing:0.000000pt;}
.ls0_c01281{letter-spacing:4.533333pt;}
.ls2_c01281{letter-spacing:8.000000pt;}
.ws0_c01281{word-spacing:-68.165333pt;}
.ws2_c01281{word-spacing:-18.000000pt;}
.ws1_c01281{word-spacing:-15.424000pt;}
.ws3_c01281{word-spacing:0.000000pt;}
._d_c01281{margin-left:-57.234667pt;}
._f_c01281{margin-left:-29.082667pt;}
._13_c01281{margin-left:-26.424000pt;}
._16_c01281{margin-left:-24.192000pt;}
._e_c01281{margin-left:-20.957333pt;}
._23_c01281{margin-left:-14.256000pt;}
._19_c01281{margin-left:-12.672000pt;}
._22_c01281{margin-left:-10.368000pt;}
._1b_c01281{margin-left:-9.432000pt;}
._1f_c01281{margin-left:-7.200000pt;}
._b_c01281{margin-left:-5.904000pt;}
._6_c01281{margin-left:-4.896000pt;}
._3_c01281{margin-left:-3.240000pt;}
._a_c01281{margin-left:-1.728000pt;}
._4_c01281{width:1.656000pt;}
._1_c01281{width:2.808000pt;}
._c_c01281{width:4.032000pt;}
._5_c01281{width:4.968000pt;}
._2_c01281{width:5.904000pt;}
._0_c01281{width:6.912000pt;}
._8_c01281{width:8.568000pt;}
._7_c01281{width:9.936000pt;}
._12_c01281{width:10.944000pt;}
._9_c01281{width:12.312000pt;}
._18_c01281{width:13.896000pt;}
._1d_c01281{width:15.912000pt;}
._17_c01281{width:21.456000pt;}
._1a_c01281{width:22.536000pt;}
._11_c01281{width:25.920000pt;}
._1e_c01281{width:109.008000pt;}
._15_c01281{width:154.533333pt;}
._10_c01281{width:162.288000pt;}
._1c_c01281{width:164.589333pt;}
._14_c01281{width:284.400000pt;}
._21_c01281{width:288.000000pt;}
._20_c01281{width:451.570667pt;}
.fs4_c01281{font-size:42.666667pt;}
.fs3_c01281{font-size:50.666667pt;}
.fs2_c01281{font-size:64.000000pt;}
.fs0_c01281{font-size:72.000000pt;}
.fs1_c01281{font-size:77.333333pt;}
.y0_c01281{bottom:0.000000pt;}
.y24_c01281{bottom:2.760000pt;}
.y23_c01281{bottom:6.425217pt;}
.y22_c01281{bottom:47.706667pt;}
.y21_c01281{bottom:67.706667pt;}
.y20_c01281{bottom:90.640000pt;}
.y1f_c01281{bottom:112.240000pt;}
.y1e_c01281{bottom:134.640000pt;}
.y1d_c01281{bottom:156.506667pt;}
.y1c_c01281{bottom:178.506667pt;}
.y1b_c01281{bottom:200.373333pt;}
.y1a_c01281{bottom:223.173333pt;}
.y19_c01281{bottom:266.906667pt;}
.y18_c01281{bottom:288.906667pt;}
.y17_c01281{bottom:311.040000pt;}
.y16_c01281{bottom:333.040000pt;}
.y15_c01281{bottom:355.173333pt;}
.y14_c01281{bottom:376.506667pt;}
.y13_c01281{bottom:399.040000pt;}
.y12_c01281{bottom:422.373333pt;}
.y11_c01281{bottom:442.773333pt;}
.y10_c01281{bottom:466.240000pt;}
.yf_c01281{bottom:485.706667pt;}
.ye_c01281{bottom:507.573333pt;}
.yd_c01281{bottom:529.440000pt;}
.yc_c01281{bottom:550.773333pt;}
.yb_c01281{bottom:572.640000pt;}
.ya_c01281{bottom:594.506667pt;}
.y9_c01281{bottom:616.240000pt;}
.y8_c01281{bottom:637.840000pt;}
.y7_c01281{bottom:659.306667pt;}
.y6_c01281{bottom:680.906667pt;}
.y5_c01281{bottom:703.173333pt;}
.y4_c01281{bottom:725.040000pt;}
.y3_c01281{bottom:746.906667pt;}
.y2_c01281{bottom:768.506667pt;}
.y1_c01281{bottom:790.240000pt;}
.h6_c01281{height:11.733399pt;}
.h7_c01281{height:38.937500pt;}
.h5_c01281{height:64.149740pt;}
.h2_c01281{height:70.664062pt;}
.h4_c01281{height:74.906250pt;}
.h3_c01281{height:81.045333pt;}
.h1_c01281{height:860.000000pt;}
.h0_c01281{height:860.133333pt;}
.w2_c01281{width:93.222667pt;}
.w1_c01281{width:582.000000pt;}
.w0_c01281{width:582.266667pt;}
.x0_c01281{left:0.000000pt;}
.x8_c01281{left:42.533333pt;}
.x12_c01281{left:45.866667pt;}
.x3_c01281{left:53.200000pt;}
.x11_c01281{left:71.066667pt;}
.x5_c01281{left:110.133333pt;}
.x9_c01281{left:112.533333pt;}
.xb_c01281{left:113.600000pt;}
.x2_c01281{left:115.866667pt;}
.xd_c01281{left:116.933333pt;}
.xf_c01281{left:118.133333pt;}
.x1_c01281{left:120.800000pt;}
.x4_c01281{left:121.733333pt;}
.x6_c01281{left:122.933333pt;}
.xa_c01281{left:124.800000pt;}
.xc_c01281{left:125.733333pt;}
.xe_c01281{left:127.733333pt;}
.x10_c01281{left:177.866667pt;}
.x7_c01281{left:211.200000pt;}
.x14_c01281{left:248.301554pt;}
.x13_c01281{left:509.066667pt;}
}





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

.ir_c01282:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01282{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01282;src:url('chunks/assets/font_97d9b0de67f34b4632419e1e.woff2')format("woff");}.ff1_c01282{font-family:ff1_c01282;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01282;src:url('chunks/assets/font_4174c7ec3df361f556aceab9.woff2')format("woff");}.ff2_c01282{font-family:ff2_c01282;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01282;src:url('chunks/assets/font_29346ff2a5287e6834ca688e.woff2')format("woff");}.ff3_c01282{font-family:ff3_c01282;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01282;src:url('chunks/assets/font_5ae107fb2edf7e47d0ced040.woff2')format("woff");}.ff4_c01282{font-family:ff4_c01282;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01282;src:url('chunks/assets/font_69ac9e2a2b184b319bccf3ff.woff2')format("woff");}.ff5_c01282{font-family:ff5_c01282;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01282;src:url('chunks/assets/font_89b530b68f403cd5570c3e72.woff2')format("woff");}.ff6_c01282{font-family:ff6_c01282;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01282;src:url('chunks/assets/font_28651f3a9f5139f05c501bc8.woff2')format("woff");}.ff7_c01282{font-family:ff7_c01282;line-height:1.284180;font-style:normal;font-weight: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_c01282;src:url('chunks/assets/font_2611e1f70246372813e9be41.woff2')format("woff");}.ff8_c01282{font-family:ff8_c01282;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c01282;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff9_c01282{font-family:ff9_c01282;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01282{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c01282{vertical-align:-15.000000px;}
.v0_c01282{vertical-align:0.000000px;}
.ls5_c01282{letter-spacing:0.000000px;}
.ls3_c01282{letter-spacing:9.900000px;}
.ls4_c01282{letter-spacing:12.900000px;}
.ls1_c01282{letter-spacing:18.300000px;}
.ls0_c01282{letter-spacing:77.460000px;}
.ls2_c01282{letter-spacing:91.074000px;}
.sc__c01282{text-shadow:none;}
.sc0_c01282{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01282{-webkit-text-stroke:0px transparent;}
.sc0_c01282{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01282{word-spacing:-17.352000px;}
.ws1_c01282{word-spacing:-13.737000px;}
.ws2_c01282{word-spacing:0.000000px;}
._16_c01282{margin-left:-17.793000px;}
._1d_c01282{margin-left:-16.362000px;}
._d_c01282{margin-left:-10.350000px;}
._13_c01282{margin-left:-9.021000px;}
._1b_c01282{margin-left:-7.248000px;}
._9_c01282{margin-left:-6.075000px;}
._b_c01282{margin-left:-4.146000px;}
._7_c01282{margin-left:-2.268000px;}
._3_c01282{margin-left:-1.086000px;}
._8_c01282{width:1.296000px;}
._6_c01282{width:2.592000px;}
._5_c01282{width:3.645000px;}
._4_c01282{width:5.427000px;}
._a_c01282{width:6.885000px;}
._c_c01282{width:8.412000px;}
._0_c01282{width:9.504000px;}
._f_c01282{width:10.626000px;}
._2_c01282{width:12.408000px;}
._1_c01282{width:13.794000px;}
._11_c01282{width:15.171000px;}
._1e_c01282{width:17.469000px;}
._1a_c01282{width:19.935000px;}
._18_c01282{width:21.408000px;}
._14_c01282{width:25.893000px;}
._17_c01282{width:28.428000px;}
._19_c01282{width:32.703000px;}
._e_c01282{width:35.850000px;}
._10_c01282{width:41.826000px;}
._1c_c01282{width:79.851000px;}
._12_c01282{width:137.376000px;}
._15_c01282{width:197.850000px;}
._1f_c01282{width:1753.752000px;}
.fc2_c01282{color:transparent;}
.fc1_c01282{color:rgb(128,128,128);}
.fc0_c01282{color:rgb(0,0,0);}
.fs8_c01282{font-size:48.000000px;}
.fs7_c01282{font-size:57.000000px;}
.fs2_c01282{font-size:60.000000px;}
.fs0_c01282{font-size:66.000000px;}
.fs6_c01282{font-size:69.000000px;}
.fs4_c01282{font-size:72.000000px;}
.fs5_c01282{font-size:78.000000px;}
.fs1_c01282{font-size:81.000000px;}
.fs3_c01282{font-size:87.000000px;}
.y0_c01282{bottom:0.000000px;}
.y25_c01282{bottom:3.105000px;}
.y24_c01282{bottom:7.228369px;}
.y23_c01282{bottom:45.120000px;}
.y22_c01282{bottom:70.770000px;}
.y21_c01282{bottom:96.720000px;}
.y20_c01282{bottom:121.020000px;}
.y1f_c01282{bottom:146.070000px;}
.y1e_c01282{bottom:170.670000px;}
.y1d_c01282{bottom:195.270000px;}
.y1c_c01282{bottom:219.870000px;}
.y1b_c01282{bottom:244.170000px;}
.y1a_c01282{bottom:268.920000px;}
.y19_c01282{bottom:293.820000px;}
.y18_c01282{bottom:318.120000px;}
.y17_c01282{bottom:342.420000px;}
.y16_c01282{bottom:366.720000px;}
.y15_c01282{bottom:391.320000px;}
.y14_c01282{bottom:415.770000px;}
.y13_c01282{bottom:439.620000px;}
.y12_c01282{bottom:463.920000px;}
.y11_c01282{bottom:487.920000px;}
.y10_c01282{bottom:513.870000px;}
.yf_c01282{bottom:537.120000px;}
.ye_c01282{bottom:561.120000px;}
.yd_c01282{bottom:586.170000px;}
.yc_c01282{bottom:609.420000px;}
.yb_c01282{bottom:633.720000px;}
.ya_c01282{bottom:658.320000px;}
.y9_c01282{bottom:682.920000px;}
.y8_c01282{bottom:707.220000px;}
.y7_c01282{bottom:731.220000px;}
.y6_c01282{bottom:756.720000px;}
.y5_c01282{bottom:784.020000px;}
.y4_c01282{bottom:806.520000px;}
.y3_c01282{bottom:828.870000px;}
.y2_c01282{bottom:852.570000px;}
.y1_c01282{bottom:879.120000px;}
.ha_c01282{height:13.200073px;}
.hb_c01282{height:43.804688px;}
.h3_c01282{height:75.966797px;}
.h9_c01282{height:78.609375px;}
.h2_c01282{height:79.497070px;}
.h7_c01282{height:83.226000px;}
.h8_c01282{height:84.269531px;}
.h5_c01282{height:91.160156px;}
.h4_c01282{height:91.176000px;}
.h6_c01282{height:98.756836px;}
.h0_c01282{height:970.350000px;}
.h1_c01282{height:970.500000px;}
.w2_c01282{width:104.875500px;}
.w0_c01282{width:660.450000px;}
.w1_c01282{width:660.750000px;}
.x0_c01282{left:0.000000px;}
.xa_c01282{left:52.350000px;}
.x8_c01282{left:53.400000px;}
.x7_c01282{left:54.450000px;}
.x4_c01282{left:56.400000px;}
.x6_c01282{left:57.450000px;}
.x1_c01282{left:59.100000px;}
.x2_c01282{left:60.750000px;}
.x5_c01282{left:62.700000px;}
.x9_c01282{left:79.050000px;}
.x3_c01282{left:98.100000px;}
.xb_c01282{left:282.039230px;}
@media print{
.v1_c01282{vertical-align:-13.333333pt;}
.v0_c01282{vertical-align:0.000000pt;}
.ls5_c01282{letter-spacing:0.000000pt;}
.ls3_c01282{letter-spacing:8.800000pt;}
.ls4_c01282{letter-spacing:11.466667pt;}
.ls1_c01282{letter-spacing:16.266667pt;}
.ls0_c01282{letter-spacing:68.853333pt;}
.ls2_c01282{letter-spacing:80.954667pt;}
.ws0_c01282{word-spacing:-15.424000pt;}
.ws1_c01282{word-spacing:-12.210667pt;}
.ws2_c01282{word-spacing:0.000000pt;}
._16_c01282{margin-left:-15.816000pt;}
._1d_c01282{margin-left:-14.544000pt;}
._d_c01282{margin-left:-9.200000pt;}
._13_c01282{margin-left:-8.018667pt;}
._1b_c01282{margin-left:-6.442667pt;}
._9_c01282{margin-left:-5.400000pt;}
._b_c01282{margin-left:-3.685333pt;}
._7_c01282{margin-left:-2.016000pt;}
._3_c01282{margin-left:-0.965333pt;}
._8_c01282{width:1.152000pt;}
._6_c01282{width:2.304000pt;}
._5_c01282{width:3.240000pt;}
._4_c01282{width:4.824000pt;}
._a_c01282{width:6.120000pt;}
._c_c01282{width:7.477333pt;}
._0_c01282{width:8.448000pt;}
._f_c01282{width:9.445333pt;}
._2_c01282{width:11.029333pt;}
._1_c01282{width:12.261333pt;}
._11_c01282{width:13.485333pt;}
._1e_c01282{width:15.528000pt;}
._1a_c01282{width:17.720000pt;}
._18_c01282{width:19.029333pt;}
._14_c01282{width:23.016000pt;}
._17_c01282{width:25.269333pt;}
._19_c01282{width:29.069333pt;}
._e_c01282{width:31.866667pt;}
._10_c01282{width:37.178667pt;}
._1c_c01282{width:70.978667pt;}
._12_c01282{width:122.112000pt;}
._15_c01282{width:175.866667pt;}
._1f_c01282{width:1558.890667pt;}
.fs8_c01282{font-size:42.666667pt;}
.fs7_c01282{font-size:50.666667pt;}
.fs2_c01282{font-size:53.333333pt;}
.fs0_c01282{font-size:58.666667pt;}
.fs6_c01282{font-size:61.333333pt;}
.fs4_c01282{font-size:64.000000pt;}
.fs5_c01282{font-size:69.333333pt;}
.fs1_c01282{font-size:72.000000pt;}
.fs3_c01282{font-size:77.333333pt;}
.y0_c01282{bottom:0.000000pt;}
.y25_c01282{bottom:2.760000pt;}
.y24_c01282{bottom:6.425217pt;}
.y23_c01282{bottom:40.106667pt;}
.y22_c01282{bottom:62.906667pt;}
.y21_c01282{bottom:85.973333pt;}
.y20_c01282{bottom:107.573333pt;}
.y1f_c01282{bottom:129.840000pt;}
.y1e_c01282{bottom:151.706667pt;}
.y1d_c01282{bottom:173.573333pt;}
.y1c_c01282{bottom:195.440000pt;}
.y1b_c01282{bottom:217.040000pt;}
.y1a_c01282{bottom:239.040000pt;}
.y19_c01282{bottom:261.173333pt;}
.y18_c01282{bottom:282.773333pt;}
.y17_c01282{bottom:304.373333pt;}
.y16_c01282{bottom:325.973333pt;}
.y15_c01282{bottom:347.840000pt;}
.y14_c01282{bottom:369.573333pt;}
.y13_c01282{bottom:390.773333pt;}
.y12_c01282{bottom:412.373333pt;}
.y11_c01282{bottom:433.706667pt;}
.y10_c01282{bottom:456.773333pt;}
.yf_c01282{bottom:477.440000pt;}
.ye_c01282{bottom:498.773333pt;}
.yd_c01282{bottom:521.040000pt;}
.yc_c01282{bottom:541.706667pt;}
.yb_c01282{bottom:563.306667pt;}
.ya_c01282{bottom:585.173333pt;}
.y9_c01282{bottom:607.040000pt;}
.y8_c01282{bottom:628.640000pt;}
.y7_c01282{bottom:649.973333pt;}
.y6_c01282{bottom:672.640000pt;}
.y5_c01282{bottom:696.906667pt;}
.y4_c01282{bottom:716.906667pt;}
.y3_c01282{bottom:736.773333pt;}
.y2_c01282{bottom:757.840000pt;}
.y1_c01282{bottom:781.440000pt;}
.ha_c01282{height:11.733399pt;}
.hb_c01282{height:38.937500pt;}
.h3_c01282{height:67.526042pt;}
.h9_c01282{height:69.875000pt;}
.h2_c01282{height:70.664062pt;}
.h7_c01282{height:73.978667pt;}
.h8_c01282{height:74.906250pt;}
.h5_c01282{height:81.031250pt;}
.h4_c01282{height:81.045333pt;}
.h6_c01282{height:87.783854pt;}
.h0_c01282{height:862.533333pt;}
.h1_c01282{height:862.666667pt;}
.w2_c01282{width:93.222667pt;}
.w0_c01282{width:587.066667pt;}
.w1_c01282{width:587.333333pt;}
.x0_c01282{left:0.000000pt;}
.xa_c01282{left:46.533333pt;}
.x8_c01282{left:47.466667pt;}
.x7_c01282{left:48.400000pt;}
.x4_c01282{left:50.133333pt;}
.x6_c01282{left:51.066667pt;}
.x1_c01282{left:52.533333pt;}
.x2_c01282{left:54.000000pt;}
.x5_c01282{left:55.733333pt;}
.x9_c01282{left:70.266667pt;}
.x3_c01282{left:87.200000pt;}
.xb_c01282{left:250.701538pt;}
}





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

.ir_c01283:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01283{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01283;src:url('chunks/assets/font_e712a528d5677ae7a3f1e3cf.woff2')format("woff");}.ff1_c01283{font-family:ff1_c01283;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01283;src:url('chunks/assets/font_965f6a5537fbbcb5bd56c684.woff2')format("woff");}.ff2_c01283{font-family:ff2_c01283;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01283;src:url('chunks/assets/font_a9c22e671f5f50a35f2606d0.woff2')format("woff");}.ff3_c01283{font-family:ff3_c01283;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01283;src:url('chunks/assets/font_58514e11ce2529e7ea0a5c34.woff2')format("woff");}.ff4_c01283{font-family:ff4_c01283;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01283;src:url('chunks/assets/font_77cd6951dea46bd2d847b3bb.woff2')format("woff");}.ff5_c01283{font-family:ff5_c01283;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01283;src:url('chunks/assets/font_de5ddd70a809da3f7a79699a.woff2')format("woff");}.ff6_c01283{font-family:ff6_c01283;line-height:1.284180;font-style:normal;font-weight: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_c01283;src:url('chunks/assets/font_737c1afa46bdff2707be6eaf.woff2')format("woff");}.ff7_c01283{font-family:ff7_c01283;line-height:1.437000;font-style:normal;font-weight: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_c01283;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff8_c01283{font-family:ff8_c01283;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01283{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01283{vertical-align:0.000000px;}
.ls6_c01283{letter-spacing:0.000000px;}
.ls0_c01283{letter-spacing:4.800000px;}
.ls5_c01283{letter-spacing:5.802000px;}
.ls2_c01283{letter-spacing:7.002000px;}
.ls4_c01283{letter-spacing:7.209000px;}
.ls7_c01283{letter-spacing:9.000000px;}
.ls1_c01283{letter-spacing:10.500000px;}
.ls3_c01283{letter-spacing:31.002000px;}
.sc__c01283{text-shadow:none;}
.sc0_c01283{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01283{-webkit-text-stroke:0px transparent;}
.sc0_c01283{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c01283{word-spacing:-76.686000px;}
.ws2_c01283{word-spacing:-31.500000px;}
.ws7_c01283{word-spacing:-20.250000px;}
.ws0_c01283{word-spacing:-17.352000px;}
.ws3_c01283{word-spacing:-13.737000px;}
.ws6_c01283{word-spacing:-0.741000px;}
.ws8_c01283{word-spacing:0.000000px;}
.ws1_c01283{word-spacing:1.539000px;}
.ws4_c01283{word-spacing:3.363000px;}
._2c_c01283{margin-left:-32.955000px;}
._1e_c01283{margin-left:-24.180000px;}
._12_c01283{margin-left:-19.197000px;}
._2a_c01283{margin-left:-17.445000px;}
._2b_c01283{margin-left:-15.771000px;}
._20_c01283{margin-left:-14.742000px;}
._18_c01283{margin-left:-13.443000px;}
._26_c01283{margin-left:-12.291000px;}
._15_c01283{margin-left:-10.617000px;}
._1d_c01283{margin-left:-9.378000px;}
._17_c01283{margin-left:-8.247000px;}
._c_c01283{margin-left:-7.020000px;}
._d_c01283{margin-left:-5.304000px;}
._a_c01283{margin-left:-3.978000px;}
._6_c01283{margin-left:-2.340000px;}
._5_c01283{margin-left:-1.170000px;}
._9_c01283{width:1.560000px;}
._7_c01283{width:3.120000px;}
._4_c01283{width:4.836000px;}
._3_c01283{width:5.928000px;}
._b_c01283{width:6.942000px;}
._2_c01283{width:8.502000px;}
._8_c01283{width:9.504000px;}
._14_c01283{width:10.515000px;}
._1_c01283{width:11.622000px;}
._0_c01283{width:12.792000px;}
._24_c01283{width:13.884000px;}
._f_c01283{width:15.162000px;}
._16_c01283{width:16.701000px;}
._10_c01283{width:18.600000px;}
._e_c01283{width:20.976000px;}
._1b_c01283{width:22.842000px;}
._23_c01283{width:24.909000px;}
._21_c01283{width:27.690000px;}
._29_c01283{width:31.452000px;}
._11_c01283{width:41.439000px;}
._22_c01283{width:44.790000px;}
._2d_c01283{width:55.323000px;}
._1c_c01283{width:73.629000px;}
._1f_c01283{width:86.277000px;}
._13_c01283{width:138.429000px;}
._28_c01283{width:158.865000px;}
._1a_c01283{width:203.358000px;}
._25_c01283{width:280.122000px;}
._27_c01283{width:397.359000px;}
._19_c01283{width:522.540000px;}
.fc2_c01283{color:transparent;}
.fc1_c01283{color:rgb(128,128,128);}
.fc0_c01283{color:rgb(0,0,0);}
.fs5_c01283{font-size:36.000000px;}
.fs8_c01283{font-size:48.000000px;}
.fs2_c01283{font-size:57.000000px;}
.fs7_c01283{font-size:63.000000px;}
.fs6_c01283{font-size:72.000000px;}
.fs0_c01283{font-size:78.000000px;}
.fs3_c01283{font-size:81.000000px;}
.fs4_c01283{font-size:87.000000px;}
.fs1_c01283{font-size:120.000000px;}
.y0_c01283{bottom:0.000000px;}
.y24_c01283{bottom:3.105000px;}
.y23_c01283{bottom:7.228371px;}
.y22_c01283{bottom:46.665000px;}
.y21_c01283{bottom:68.265000px;}
.y20_c01283{bottom:94.965000px;}
.y1f_c01283{bottom:119.265000px;}
.y1e_c01283{bottom:144.165000px;}
.y1d_c01283{bottom:171.465000px;}
.y1c_c01283{bottom:193.515000px;}
.y1b_c01283{bottom:217.365000px;}
.y1a_c01283{bottom:242.415000px;}
.y19_c01283{bottom:267.015000px;}
.y18_c01283{bottom:294.315000px;}
.y17_c01283{bottom:317.565000px;}
.y16_c01283{bottom:343.215000px;}
.y15_c01283{bottom:367.215000px;}
.y14_c01283{bottom:390.465000px;}
.y13_c01283{bottom:415.215000px;}
.y12_c01283{bottom:440.415000px;}
.y11_c01283{bottom:464.115000px;}
.y10_c01283{bottom:488.715000px;}
.yf_c01283{bottom:513.015000px;}
.ye_c01283{bottom:543.165000px;}
.yd_c01283{bottom:561.015000px;}
.yc_c01283{bottom:588.315000px;}
.yb_c01283{bottom:632.115000px;}
.ya_c01283{bottom:659.265000px;}
.y9_c01283{bottom:682.215000px;}
.y8_c01283{bottom:706.515000px;}
.y7_c01283{bottom:731.415000px;}
.y6_c01283{bottom:755.715000px;}
.y5_c01283{bottom:782.415000px;}
.y4_c01283{bottom:804.615000px;}
.y3_c01283{bottom:829.215000px;}
.y2_c01283{bottom:853.665000px;}
.y1_c01283{bottom:877.965000px;}
.h9_c01283{height:13.200074px;}
.ha_c01283{height:43.804688px;}
.h6_c01283{height:66.713379px;}
.h4_c01283{height:79.497070px;}
.h7_c01283{height:84.269531px;}
.h8_c01283{height:91.176000px;}
.h3_c01283{height:98.756836px;}
.h5_c01283{height:110.151855px;}
.h2_c01283{height:120.937500px;}
.h1_c01283{height:986.250000px;}
.h0_c01283{height:986.325000px;}
.w2_c01283{width:104.875500px;}
.w0_c01283{width:667.425000px;}
.w1_c01283{width:667.500000px;}
.x0_c01283{left:0.000000px;}
.x4_c01283{left:40.500000px;}
.xe_c01283{left:41.850000px;}
.x9_c01283{left:45.450000px;}
.xd_c01283{left:59.400000px;}
.x5_c01283{left:89.700000px;}
.x1_c01283{left:132.600000px;}
.x3_c01283{left:135.000000px;}
.xc_c01283{left:137.250000px;}
.xb_c01283{left:138.300000px;}
.xa_c01283{left:140.100000px;}
.x6_c01283{left:158.250000px;}
.x2_c01283{left:165.750000px;}
.x10_c01283{left:285.526749px;}
.x7_c01283{left:292.200000px;}
.x8_c01283{left:472.500000px;}
.xf_c01283{left:613.650000px;}
@media print{
.v0_c01283{vertical-align:0.000000pt;}
.ls6_c01283{letter-spacing:0.000000pt;}
.ls0_c01283{letter-spacing:4.266667pt;}
.ls5_c01283{letter-spacing:5.157333pt;}
.ls2_c01283{letter-spacing:6.224000pt;}
.ls4_c01283{letter-spacing:6.408000pt;}
.ls7_c01283{letter-spacing:8.000000pt;}
.ls1_c01283{letter-spacing:9.333333pt;}
.ls3_c01283{letter-spacing:27.557333pt;}
.ws5_c01283{word-spacing:-68.165333pt;}
.ws2_c01283{word-spacing:-28.000000pt;}
.ws7_c01283{word-spacing:-18.000000pt;}
.ws0_c01283{word-spacing:-15.424000pt;}
.ws3_c01283{word-spacing:-12.210667pt;}
.ws6_c01283{word-spacing:-0.658667pt;}
.ws8_c01283{word-spacing:0.000000pt;}
.ws1_c01283{word-spacing:1.368000pt;}
.ws4_c01283{word-spacing:2.989333pt;}
._2c_c01283{margin-left:-29.293333pt;}
._1e_c01283{margin-left:-21.493333pt;}
._12_c01283{margin-left:-17.064000pt;}
._2a_c01283{margin-left:-15.506667pt;}
._2b_c01283{margin-left:-14.018667pt;}
._20_c01283{margin-left:-13.104000pt;}
._18_c01283{margin-left:-11.949333pt;}
._26_c01283{margin-left:-10.925333pt;}
._15_c01283{margin-left:-9.437333pt;}
._1d_c01283{margin-left:-8.336000pt;}
._17_c01283{margin-left:-7.330667pt;}
._c_c01283{margin-left:-6.240000pt;}
._d_c01283{margin-left:-4.714667pt;}
._a_c01283{margin-left:-3.536000pt;}
._6_c01283{margin-left:-2.080000pt;}
._5_c01283{margin-left:-1.040000pt;}
._9_c01283{width:1.386667pt;}
._7_c01283{width:2.773333pt;}
._4_c01283{width:4.298667pt;}
._3_c01283{width:5.269333pt;}
._b_c01283{width:6.170667pt;}
._2_c01283{width:7.557333pt;}
._8_c01283{width:8.448000pt;}
._14_c01283{width:9.346667pt;}
._1_c01283{width:10.330667pt;}
._0_c01283{width:11.370667pt;}
._24_c01283{width:12.341333pt;}
._f_c01283{width:13.477333pt;}
._16_c01283{width:14.845333pt;}
._10_c01283{width:16.533333pt;}
._e_c01283{width:18.645333pt;}
._1b_c01283{width:20.304000pt;}
._23_c01283{width:22.141333pt;}
._21_c01283{width:24.613333pt;}
._29_c01283{width:27.957333pt;}
._11_c01283{width:36.834667pt;}
._22_c01283{width:39.813333pt;}
._2d_c01283{width:49.176000pt;}
._1c_c01283{width:65.448000pt;}
._1f_c01283{width:76.690667pt;}
._13_c01283{width:123.048000pt;}
._28_c01283{width:141.213333pt;}
._1a_c01283{width:180.762667pt;}
._25_c01283{width:248.997333pt;}
._27_c01283{width:353.208000pt;}
._19_c01283{width:464.480000pt;}
.fs5_c01283{font-size:32.000000pt;}
.fs8_c01283{font-size:42.666667pt;}
.fs2_c01283{font-size:50.666667pt;}
.fs7_c01283{font-size:56.000000pt;}
.fs6_c01283{font-size:64.000000pt;}
.fs0_c01283{font-size:69.333333pt;}
.fs3_c01283{font-size:72.000000pt;}
.fs4_c01283{font-size:77.333333pt;}
.fs1_c01283{font-size:106.666667pt;}
.y0_c01283{bottom:0.000000pt;}
.y24_c01283{bottom:2.760000pt;}
.y23_c01283{bottom:6.425219pt;}
.y22_c01283{bottom:41.480000pt;}
.y21_c01283{bottom:60.680000pt;}
.y20_c01283{bottom:84.413333pt;}
.y1f_c01283{bottom:106.013333pt;}
.y1e_c01283{bottom:128.146667pt;}
.y1d_c01283{bottom:152.413333pt;}
.y1c_c01283{bottom:172.013333pt;}
.y1b_c01283{bottom:193.213333pt;}
.y1a_c01283{bottom:215.480000pt;}
.y19_c01283{bottom:237.346667pt;}
.y18_c01283{bottom:261.613333pt;}
.y17_c01283{bottom:282.280000pt;}
.y16_c01283{bottom:305.080000pt;}
.y15_c01283{bottom:326.413333pt;}
.y14_c01283{bottom:347.080000pt;}
.y13_c01283{bottom:369.080000pt;}
.y12_c01283{bottom:391.480000pt;}
.y11_c01283{bottom:412.546667pt;}
.y10_c01283{bottom:434.413333pt;}
.yf_c01283{bottom:456.013333pt;}
.ye_c01283{bottom:482.813333pt;}
.yd_c01283{bottom:498.680000pt;}
.yc_c01283{bottom:522.946667pt;}
.yb_c01283{bottom:561.880000pt;}
.ya_c01283{bottom:586.013333pt;}
.y9_c01283{bottom:606.413333pt;}
.y8_c01283{bottom:628.013333pt;}
.y7_c01283{bottom:650.146667pt;}
.y6_c01283{bottom:671.746667pt;}
.y5_c01283{bottom:695.480000pt;}
.y4_c01283{bottom:715.213333pt;}
.y3_c01283{bottom:737.080000pt;}
.y2_c01283{bottom:758.813333pt;}
.y1_c01283{bottom:780.413333pt;}
.h9_c01283{height:11.733399pt;}
.ha_c01283{height:38.937500pt;}
.h6_c01283{height:59.300781pt;}
.h4_c01283{height:70.664062pt;}
.h7_c01283{height:74.906250pt;}
.h8_c01283{height:81.045333pt;}
.h3_c01283{height:87.783854pt;}
.h5_c01283{height:97.912760pt;}
.h2_c01283{height:107.500000pt;}
.h1_c01283{height:876.666667pt;}
.h0_c01283{height:876.733333pt;}
.w2_c01283{width:93.222667pt;}
.w0_c01283{width:593.266667pt;}
.w1_c01283{width:593.333333pt;}
.x0_c01283{left:0.000000pt;}
.x4_c01283{left:36.000000pt;}
.xe_c01283{left:37.200000pt;}
.x9_c01283{left:40.400000pt;}
.xd_c01283{left:52.800000pt;}
.x5_c01283{left:79.733333pt;}
.x1_c01283{left:117.866667pt;}
.x3_c01283{left:120.000000pt;}
.xc_c01283{left:122.000000pt;}
.xb_c01283{left:122.933333pt;}
.xa_c01283{left:124.533333pt;}
.x6_c01283{left:140.666667pt;}
.x2_c01283{left:147.333333pt;}
.x10_c01283{left:253.801554pt;}
.x7_c01283{left:259.733333pt;}
.x8_c01283{left:420.000000pt;}
.xf_c01283{left:545.466667pt;}
}





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

.ir_c01284:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01284{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01284;src:url('chunks/assets/font_30e16eb9c876c1f4f45d2f8f.woff2')format("woff");}.ff1_c01284{font-family:ff1_c01284;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01284;src:url('chunks/assets/font_954a206f2593eb3da77fca10.woff2')format("woff");}.ff2_c01284{font-family:ff2_c01284;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01284;src:url('chunks/assets/font_e915b7397f89fa84add48e3d.woff2')format("woff");}.ff3_c01284{font-family:ff3_c01284;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01284;src:url('chunks/assets/font_a5bc52a1da8b102f59ebb946.woff2')format("woff");}.ff4_c01284{font-family:ff4_c01284;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01284;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c01284{font-family:ff5_c01284;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01284{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01284{vertical-align:0.000000px;}
.v1_c01284{vertical-align:20.400000px;}
.ls1_c01284{letter-spacing:0.000000px;}
.ls2_c01284{letter-spacing:9.000000px;}
.ls0_c01284{letter-spacing:158.460000px;}
.sc__c01284{text-shadow:none;}
.sc0_c01284{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01284{-webkit-text-stroke:0px transparent;}
.sc0_c01284{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01284{word-spacing:-76.686000px;}
.ws0_c01284{word-spacing:-59.184000px;}
.ws1_c01284{word-spacing:-20.250000px;}
.ws3_c01284{word-spacing:0.000000px;}
._d_c01284{margin-left:-27.621000px;}
._19_c01284{margin-left:-23.511000px;}
._14_c01284{margin-left:-15.228000px;}
._c_c01284{margin-left:-12.798000px;}
._6_c01284{margin-left:-10.449000px;}
._16_c01284{margin-left:-9.396000px;}
._f_c01284{margin-left:-8.100000px;}
._18_c01284{margin-left:-6.885000px;}
._4_c01284{margin-left:-5.832000px;}
._17_c01284{margin-left:-4.779000px;}
._5_c01284{margin-left:-3.645000px;}
._a_c01284{margin-left:-2.349000px;}
._9_c01284{margin-left:-1.053000px;}
._b_c01284{width:1.053000px;}
._1_c01284{width:2.187000px;}
._0_c01284{width:3.321000px;}
._3_c01284{width:5.265000px;}
._7_c01284{width:7.209000px;}
._2_c01284{width:8.262000px;}
._11_c01284{width:10.044000px;}
._10_c01284{width:11.664000px;}
._8_c01284{width:13.203000px;}
._13_c01284{width:14.499000px;}
._e_c01284{width:15.795000px;}
._12_c01284{width:17.982000px;}
._1a_c01284{width:79.461000px;}
._15_c01284{width:143.127000px;}
._1b_c01284{width:354.456000px;}
.fc2_c01284{color:transparent;}
.fc1_c01284{color:rgb(128,128,128);}
.fc0_c01284{color:rgb(0,0,0);}
.fs4_c01284{font-size:48.000000px;}
.fs1_c01284{font-size:60.000000px;}
.fs2_c01284{font-size:72.000000px;}
.fs0_c01284{font-size:81.000000px;}
.fs3_c01284{font-size:87.000000px;}
.y0_c01284{bottom:0.000000px;}
.y25_c01284{bottom:3.105000px;}
.y24_c01284{bottom:7.228369px;}
.y23_c01284{bottom:50.970000px;}
.y22_c01284{bottom:74.970000px;}
.y21_c01284{bottom:99.270000px;}
.y20_c01284{bottom:126.270000px;}
.y1f_c01284{bottom:150.420000px;}
.y1e_c01284{bottom:174.420000px;}
.y1d_c01284{bottom:200.370000px;}
.y1c_c01284{bottom:224.370000px;}
.y1b_c01284{bottom:249.120000px;}
.y1a_c01284{bottom:273.420000px;}
.y19_c01284{bottom:297.720000px;}
.y18_c01284{bottom:322.020000px;}
.y17_c01284{bottom:346.620000px;}
.y16_c01284{bottom:371.220000px;}
.y15_c01284{bottom:395.520000px;}
.y14_c01284{bottom:419.520000px;}
.y13_c01284{bottom:443.520000px;}
.y12_c01284{bottom:467.820000px;}
.y11_c01284{bottom:492.120000px;}
.y10_c01284{bottom:511.170000px;}
.yf_c01284{bottom:540.570000px;}
.ye_c01284{bottom:563.670000px;}
.yd_c01284{bottom:588.570000px;}
.yc_c01284{bottom:613.170000px;}
.yb_c01284{bottom:636.870000px;}
.ya_c01284{bottom:661.170000px;}
.y9_c01284{bottom:685.470000px;}
.y8_c01284{bottom:708.420000px;}
.y7_c01284{bottom:734.070000px;}
.y6_c01284{bottom:758.070000px;}
.y5_c01284{bottom:782.370000px;}
.y4_c01284{bottom:807.270000px;}
.y3_c01284{bottom:830.820000px;}
.y2_c01284{bottom:855.120000px;}
.y1_c01284{bottom:878.220000px;}
.h6_c01284{height:13.200073px;}
.h7_c01284{height:43.804688px;}
.h2_c01284{height:79.497070px;}
.h4_c01284{height:84.269531px;}
.h5_c01284{height:91.176000px;}
.h3_c01284{height:99.897070px;}
.h1_c01284{height:986.250000px;}
.h0_c01284{height:986.550000px;}
.w1_c01284{width:104.875500px;}
.w0_c01284{width:672.000000px;}
.x0_c01284{left:0.000000px;}
.x7_c01284{left:62.100000px;}
.x4_c01284{left:66.450000px;}
.x3_c01284{left:67.500000px;}
.x1_c01284{left:68.550000px;}
.x2_c01284{left:69.900000px;}
.x5_c01284{left:70.950000px;}
.x6_c01284{left:119.850000px;}
.x9_c01284{left:287.814240px;}
.x8_c01284{left:412.350000px;}
@media print{
.v0_c01284{vertical-align:0.000000pt;}
.v1_c01284{vertical-align:18.133333pt;}
.ls1_c01284{letter-spacing:0.000000pt;}
.ls2_c01284{letter-spacing:8.000000pt;}
.ls0_c01284{letter-spacing:140.853333pt;}
.ws2_c01284{word-spacing:-68.165333pt;}
.ws0_c01284{word-spacing:-52.608000pt;}
.ws1_c01284{word-spacing:-18.000000pt;}
.ws3_c01284{word-spacing:0.000000pt;}
._d_c01284{margin-left:-24.552000pt;}
._19_c01284{margin-left:-20.898667pt;}
._14_c01284{margin-left:-13.536000pt;}
._c_c01284{margin-left:-11.376000pt;}
._6_c01284{margin-left:-9.288000pt;}
._16_c01284{margin-left:-8.352000pt;}
._f_c01284{margin-left:-7.200000pt;}
._18_c01284{margin-left:-6.120000pt;}
._4_c01284{margin-left:-5.184000pt;}
._17_c01284{margin-left:-4.248000pt;}
._5_c01284{margin-left:-3.240000pt;}
._a_c01284{margin-left:-2.088000pt;}
._9_c01284{margin-left:-0.936000pt;}
._b_c01284{width:0.936000pt;}
._1_c01284{width:1.944000pt;}
._0_c01284{width:2.952000pt;}
._3_c01284{width:4.680000pt;}
._7_c01284{width:6.408000pt;}
._2_c01284{width:7.344000pt;}
._11_c01284{width:8.928000pt;}
._10_c01284{width:10.368000pt;}
._8_c01284{width:11.736000pt;}
._13_c01284{width:12.888000pt;}
._e_c01284{width:14.040000pt;}
._12_c01284{width:15.984000pt;}
._1a_c01284{width:70.632000pt;}
._15_c01284{width:127.224000pt;}
._1b_c01284{width:315.072000pt;}
.fs4_c01284{font-size:42.666667pt;}
.fs1_c01284{font-size:53.333333pt;}
.fs2_c01284{font-size:64.000000pt;}
.fs0_c01284{font-size:72.000000pt;}
.fs3_c01284{font-size:77.333333pt;}
.y0_c01284{bottom:0.000000pt;}
.y25_c01284{bottom:2.760000pt;}
.y24_c01284{bottom:6.425217pt;}
.y23_c01284{bottom:45.306667pt;}
.y22_c01284{bottom:66.640000pt;}
.y21_c01284{bottom:88.240000pt;}
.y20_c01284{bottom:112.240000pt;}
.y1f_c01284{bottom:133.706667pt;}
.y1e_c01284{bottom:155.040000pt;}
.y1d_c01284{bottom:178.106667pt;}
.y1c_c01284{bottom:199.440000pt;}
.y1b_c01284{bottom:221.440000pt;}
.y1a_c01284{bottom:243.040000pt;}
.y19_c01284{bottom:264.640000pt;}
.y18_c01284{bottom:286.240000pt;}
.y17_c01284{bottom:308.106667pt;}
.y16_c01284{bottom:329.973333pt;}
.y15_c01284{bottom:351.573333pt;}
.y14_c01284{bottom:372.906667pt;}
.y13_c01284{bottom:394.240000pt;}
.y12_c01284{bottom:415.840000pt;}
.y11_c01284{bottom:437.440000pt;}
.y10_c01284{bottom:454.373333pt;}
.yf_c01284{bottom:480.506667pt;}
.ye_c01284{bottom:501.040000pt;}
.yd_c01284{bottom:523.173333pt;}
.yc_c01284{bottom:545.040000pt;}
.yb_c01284{bottom:566.106667pt;}
.ya_c01284{bottom:587.706667pt;}
.y9_c01284{bottom:609.306667pt;}
.y8_c01284{bottom:629.706667pt;}
.y7_c01284{bottom:652.506667pt;}
.y6_c01284{bottom:673.840000pt;}
.y5_c01284{bottom:695.440000pt;}
.y4_c01284{bottom:717.573333pt;}
.y3_c01284{bottom:738.506667pt;}
.y2_c01284{bottom:760.106667pt;}
.y1_c01284{bottom:780.640000pt;}
.h6_c01284{height:11.733399pt;}
.h7_c01284{height:38.937500pt;}
.h2_c01284{height:70.664062pt;}
.h4_c01284{height:74.906250pt;}
.h5_c01284{height:81.045333pt;}
.h3_c01284{height:88.797396pt;}
.h1_c01284{height:876.666667pt;}
.h0_c01284{height:876.933333pt;}
.w1_c01284{width:93.222667pt;}
.w0_c01284{width:597.333333pt;}
.x0_c01284{left:0.000000pt;}
.x7_c01284{left:55.200000pt;}
.x4_c01284{left:59.066667pt;}
.x3_c01284{left:60.000000pt;}
.x1_c01284{left:60.933333pt;}
.x2_c01284{left:62.133333pt;}
.x5_c01284{left:63.066667pt;}
.x6_c01284{left:106.533333pt;}
.x9_c01284{left:255.834880pt;}
.x8_c01284{left:366.533333pt;}
}





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

.ir_c01285:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01285{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01285;src:url('chunks/assets/font_c41217cfb820cb8d03c35957.woff2')format("woff");}.ff1_c01285{font-family:ff1_c01285;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01285;src:url('chunks/assets/font_9a0ae287a78d445ace204c32.woff2')format("woff");}.ff2_c01285{font-family:ff2_c01285;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01285;src:url('chunks/assets/font_17f831bf1f85fdb971398f2a.woff2')format("woff");}.ff3_c01285{font-family:ff3_c01285;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01285;src:url('chunks/assets/font_f18a364b8fbce762a48b694d.woff2')format("woff");}.ff4_c01285{font-family:ff4_c01285;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01285;src:url('chunks/assets/font_6688222b7e485208661a00a3.woff2')format("woff");}.ff5_c01285{font-family:ff5_c01285;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01285;src:url('chunks/assets/font_b743a2bdc259a7c1b62dfb42.woff2')format("woff");}.ff6_c01285{font-family:ff6_c01285;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01285;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c01285{font-family:ff7_c01285;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01285{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01285{vertical-align:0.000000px;}
.ls4_c01285{letter-spacing:0.000000px;}
.ls1_c01285{letter-spacing:1.950000px;}
.ls0_c01285{letter-spacing:4.500000px;}
.ls5_c01285{letter-spacing:9.000000px;}
.ls2_c01285{letter-spacing:11.700000px;}
.ls3_c01285{letter-spacing:13.200000px;}
.sc__c01285{text-shadow:none;}
.sc0_c01285{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01285{-webkit-text-stroke:0px transparent;}
.sc0_c01285{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01285{word-spacing:-76.686000px;}
.ws1_c01285{word-spacing:-42.000000px;}
.ws4_c01285{word-spacing:-25.500000px;}
.ws3_c01285{word-spacing:-20.250000px;}
.ws0_c01285{word-spacing:-17.352000px;}
.ws5_c01285{word-spacing:0.000000px;}
._1d_c01285{margin-left:-41.958000px;}
._24_c01285{margin-left:-34.668000px;}
._14_c01285{margin-left:-25.272000px;}
._1c_c01285{margin-left:-20.889000px;}
._19_c01285{margin-left:-19.014000px;}
._1f_c01285{margin-left:-11.826000px;}
._e_c01285{margin-left:-8.829000px;}
._16_c01285{margin-left:-7.668000px;}
._11_c01285{margin-left:-5.832000px;}
._12_c01285{margin-left:-4.617000px;}
._10_c01285{margin-left:-3.564000px;}
._9_c01285{margin-left:-2.268000px;}
._7_c01285{margin-left:-1.215000px;}
._0_c01285{width:1.782000px;}
._2_c01285{width:2.997000px;}
._1_c01285{width:4.050000px;}
._4_c01285{width:5.103000px;}
._8_c01285{width:6.237000px;}
._5_c01285{width:7.371000px;}
._b_c01285{width:8.667000px;}
._c_c01285{width:10.125000px;}
._3_c01285{width:11.826000px;}
._6_c01285{width:13.446000px;}
._d_c01285{width:14.742000px;}
._a_c01285{width:16.686000px;}
._13_c01285{width:17.730000px;}
._26_c01285{width:18.954000px;}
._f_c01285{width:21.789000px;}
._15_c01285{width:23.814000px;}
._1e_c01285{width:27.432000px;}
._1b_c01285{width:34.020000px;}
._20_c01285{width:40.419000px;}
._23_c01285{width:80.028000px;}
._28_c01285{width:88.395000px;}
._18_c01285{width:133.488000px;}
._29_c01285{width:145.233000px;}
._17_c01285{width:148.731000px;}
._1a_c01285{width:192.780000px;}
._22_c01285{width:338.823000px;}
._25_c01285{width:612.441000px;}
._27_c01285{width:741.609000px;}
._21_c01285{width:1958.661000px;}
.fc2_c01285{color:transparent;}
.fc1_c01285{color:rgb(128,128,128);}
.fc0_c01285{color:rgb(0,0,0);}
.fs6_c01285{font-size:48.000000px;}
.fs5_c01285{font-size:51.000000px;}
.fs2_c01285{font-size:60.000000px;}
.fs3_c01285{font-size:66.000000px;}
.fs1_c01285{font-size:72.000000px;}
.fs0_c01285{font-size:81.000000px;}
.fs4_c01285{font-size:87.000000px;}
.y0_c01285{bottom:0.000000px;}
.y24_c01285{bottom:3.105000px;}
.y23_c01285{bottom:7.228371px;}
.y22_c01285{bottom:51.015000px;}
.y21_c01285{bottom:75.615000px;}
.y20_c01285{bottom:99.615000px;}
.y1f_c01285{bottom:124.665000px;}
.y1e_c01285{bottom:150.165000px;}
.y1d_c01285{bottom:173.865000px;}
.y1c_c01285{bottom:198.165000px;}
.y1b_c01285{bottom:224.115000px;}
.y1a_c01285{bottom:248.715000px;}
.y19_c01285{bottom:295.965000px;}
.y18_c01285{bottom:323.115000px;}
.y17_c01285{bottom:347.415000px;}
.y16_c01285{bottom:372.315000px;}
.y15_c01285{bottom:397.365000px;}
.y14_c01285{bottom:421.665000px;}
.y13_c01285{bottom:445.965000px;}
.y12_c01285{bottom:470.265000px;}
.y11_c01285{bottom:494.415000px;}
.y10_c01285{bottom:507.915000px;}
.yf_c01285{bottom:543.015000px;}
.ye_c01285{bottom:567.765000px;}
.yd_c01285{bottom:591.615000px;}
.yc_c01285{bottom:615.615000px;}
.yb_c01285{bottom:639.915000px;}
.ya_c01285{bottom:664.515000px;}
.y9_c01285{bottom:688.815000px;}
.y8_c01285{bottom:713.115000px;}
.y7_c01285{bottom:737.565000px;}
.y6_c01285{bottom:761.415000px;}
.y5_c01285{bottom:785.715000px;}
.y4_c01285{bottom:810.015000px;}
.y3_c01285{bottom:834.015000px;}
.y2_c01285{bottom:858.315000px;}
.y1_c01285{bottom:882.015000px;}
.h7_c01285{height:13.200074px;}
.h8_c01285{height:43.804688px;}
.h6_c01285{height:50.028809px;}
.h2_c01285{height:79.497070px;}
.h3_c01285{height:84.269531px;}
.h4_c01285{height:91.176000px;}
.h5_c01285{height:102.555176px;}
.h1_c01285{height:986.250000px;}
.h0_c01285{height:986.325000px;}
.w2_c01285{width:104.875500px;}
.w0_c01285{width:667.425000px;}
.w1_c01285{width:667.500000px;}
.x0_c01285{left:0.000000px;}
.xa_c01285{left:26.100000px;}
.x10_c01285{left:27.750000px;}
.xd_c01285{left:28.800000px;}
.x5_c01285{left:30.600000px;}
.x6_c01285{left:33.300000px;}
.xb_c01285{left:109.350000px;}
.x7_c01285{left:112.800000px;}
.x8_c01285{left:114.150000px;}
.x2_c01285{left:115.350000px;}
.xe_c01285{left:116.400000px;}
.xf_c01285{left:117.450000px;}
.xc_c01285{left:124.200000px;}
.x9_c01285{left:127.950000px;}
.x1_c01285{left:129.300000px;}
.x3_c01285{left:130.650000px;}
.x4_c01285{left:131.850000px;}
.x12_c01285{left:285.526749px;}
.x11_c01285{left:598.350000px;}
@media print{
.v0_c01285{vertical-align:0.000000pt;}
.ls4_c01285{letter-spacing:0.000000pt;}
.ls1_c01285{letter-spacing:1.733333pt;}
.ls0_c01285{letter-spacing:4.000000pt;}
.ls5_c01285{letter-spacing:8.000000pt;}
.ls2_c01285{letter-spacing:10.400000pt;}
.ls3_c01285{letter-spacing:11.733333pt;}
.ws2_c01285{word-spacing:-68.165333pt;}
.ws1_c01285{word-spacing:-37.333333pt;}
.ws4_c01285{word-spacing:-22.666667pt;}
.ws3_c01285{word-spacing:-18.000000pt;}
.ws0_c01285{word-spacing:-15.424000pt;}
.ws5_c01285{word-spacing:0.000000pt;}
._1d_c01285{margin-left:-37.296000pt;}
._24_c01285{margin-left:-30.816000pt;}
._14_c01285{margin-left:-22.464000pt;}
._1c_c01285{margin-left:-18.568000pt;}
._19_c01285{margin-left:-16.901333pt;}
._1f_c01285{margin-left:-10.512000pt;}
._e_c01285{margin-left:-7.848000pt;}
._16_c01285{margin-left:-6.816000pt;}
._11_c01285{margin-left:-5.184000pt;}
._12_c01285{margin-left:-4.104000pt;}
._10_c01285{margin-left:-3.168000pt;}
._9_c01285{margin-left:-2.016000pt;}
._7_c01285{margin-left:-1.080000pt;}
._0_c01285{width:1.584000pt;}
._2_c01285{width:2.664000pt;}
._1_c01285{width:3.600000pt;}
._4_c01285{width:4.536000pt;}
._8_c01285{width:5.544000pt;}
._5_c01285{width:6.552000pt;}
._b_c01285{width:7.704000pt;}
._c_c01285{width:9.000000pt;}
._3_c01285{width:10.512000pt;}
._6_c01285{width:11.952000pt;}
._d_c01285{width:13.104000pt;}
._a_c01285{width:14.832000pt;}
._13_c01285{width:15.760000pt;}
._26_c01285{width:16.848000pt;}
._f_c01285{width:19.368000pt;}
._15_c01285{width:21.168000pt;}
._1e_c01285{width:24.384000pt;}
._1b_c01285{width:30.240000pt;}
._20_c01285{width:35.928000pt;}
._23_c01285{width:71.136000pt;}
._28_c01285{width:78.573333pt;}
._18_c01285{width:118.656000pt;}
._29_c01285{width:129.096000pt;}
._17_c01285{width:132.205333pt;}
._1a_c01285{width:171.360000pt;}
._22_c01285{width:301.176000pt;}
._25_c01285{width:544.392000pt;}
._27_c01285{width:659.208000pt;}
._21_c01285{width:1741.032000pt;}
.fs6_c01285{font-size:42.666667pt;}
.fs5_c01285{font-size:45.333333pt;}
.fs2_c01285{font-size:53.333333pt;}
.fs3_c01285{font-size:58.666667pt;}
.fs1_c01285{font-size:64.000000pt;}
.fs0_c01285{font-size:72.000000pt;}
.fs4_c01285{font-size:77.333333pt;}
.y0_c01285{bottom:0.000000pt;}
.y24_c01285{bottom:2.760000pt;}
.y23_c01285{bottom:6.425219pt;}
.y22_c01285{bottom:45.346667pt;}
.y21_c01285{bottom:67.213333pt;}
.y20_c01285{bottom:88.546667pt;}
.y1f_c01285{bottom:110.813333pt;}
.y1e_c01285{bottom:133.480000pt;}
.y1d_c01285{bottom:154.546667pt;}
.y1c_c01285{bottom:176.146667pt;}
.y1b_c01285{bottom:199.213333pt;}
.y1a_c01285{bottom:221.080000pt;}
.y19_c01285{bottom:263.080000pt;}
.y18_c01285{bottom:287.213333pt;}
.y17_c01285{bottom:308.813333pt;}
.y16_c01285{bottom:330.946667pt;}
.y15_c01285{bottom:353.213333pt;}
.y14_c01285{bottom:374.813333pt;}
.y13_c01285{bottom:396.413333pt;}
.y12_c01285{bottom:418.013333pt;}
.y11_c01285{bottom:439.480000pt;}
.y10_c01285{bottom:451.480000pt;}
.yf_c01285{bottom:482.680000pt;}
.ye_c01285{bottom:504.680000pt;}
.yd_c01285{bottom:525.880000pt;}
.yc_c01285{bottom:547.213333pt;}
.yb_c01285{bottom:568.813333pt;}
.ya_c01285{bottom:590.680000pt;}
.y9_c01285{bottom:612.280000pt;}
.y8_c01285{bottom:633.880000pt;}
.y7_c01285{bottom:655.613333pt;}
.y6_c01285{bottom:676.813333pt;}
.y5_c01285{bottom:698.413333pt;}
.y4_c01285{bottom:720.013333pt;}
.y3_c01285{bottom:741.346667pt;}
.y2_c01285{bottom:762.946667pt;}
.y1_c01285{bottom:784.013333pt;}
.h7_c01285{height:11.733399pt;}
.h8_c01285{height:38.937500pt;}
.h6_c01285{height:44.470052pt;}
.h2_c01285{height:70.664062pt;}
.h3_c01285{height:74.906250pt;}
.h4_c01285{height:81.045333pt;}
.h5_c01285{height:91.160156pt;}
.h1_c01285{height:876.666667pt;}
.h0_c01285{height:876.733333pt;}
.w2_c01285{width:93.222667pt;}
.w0_c01285{width:593.266667pt;}
.w1_c01285{width:593.333333pt;}
.x0_c01285{left:0.000000pt;}
.xa_c01285{left:23.200000pt;}
.x10_c01285{left:24.666667pt;}
.xd_c01285{left:25.600000pt;}
.x5_c01285{left:27.200000pt;}
.x6_c01285{left:29.600000pt;}
.xb_c01285{left:97.200000pt;}
.x7_c01285{left:100.266667pt;}
.x8_c01285{left:101.466667pt;}
.x2_c01285{left:102.533333pt;}
.xe_c01285{left:103.466667pt;}
.xf_c01285{left:104.400000pt;}
.xc_c01285{left:110.400000pt;}
.x9_c01285{left:113.733333pt;}
.x1_c01285{left:114.933333pt;}
.x3_c01285{left:116.133333pt;}
.x4_c01285{left:117.200000pt;}
.x12_c01285{left:253.801554pt;}
.x11_c01285{left:531.866667pt;}
}





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

.ir_c01286:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01286{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01286;src:url('chunks/assets/font_515d52d89b8f323a97affd4e.woff2')format("woff");}.ff1_c01286{font-family:ff1_c01286;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01286;src:url('chunks/assets/font_cc29a54033ea7fb42af16a15.woff2')format("woff");}.ff2_c01286{font-family:ff2_c01286;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01286;src:url('chunks/assets/font_1780037b7a03e37013b3a50c.woff2')format("woff");}.ff3_c01286{font-family:ff3_c01286;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01286;src:url('chunks/assets/font_b9f6390e08d6e0b437bc2cb1.woff2')format("woff");}.ff4_c01286{font-family:ff4_c01286;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01286;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff5_c01286{font-family:ff5_c01286;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01286;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c01286{font-family:ff6_c01286;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01286{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01286{vertical-align:0.000000px;}
.ls0_c01286{letter-spacing:0.000000px;}
.ls1_c01286{letter-spacing:9.000000px;}
.sc__c01286{text-shadow:none;}
.sc0_c01286{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01286{-webkit-text-stroke:0px transparent;}
.sc0_c01286{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01286{word-spacing:-42.000000px;}
.ws1_c01286{word-spacing:-17.352000px;}
.ws2_c01286{word-spacing:0.000000px;}
._19_c01286{margin-left:-40.545000px;}
._1a_c01286{margin-left:-23.400000px;}
._11_c01286{margin-left:-21.627000px;}
._1e_c01286{margin-left:-19.494000px;}
._20_c01286{margin-left:-16.200000px;}
._17_c01286{margin-left:-14.040000px;}
._14_c01286{margin-left:-12.621000px;}
._1c_c01286{margin-left:-10.221000px;}
._13_c01286{margin-left:-8.583000px;}
._18_c01286{margin-left:-7.170000px;}
._12_c01286{margin-left:-5.811000px;}
._3_c01286{margin-left:-4.233000px;}
._c_c01286{margin-left:-2.916000px;}
._5_c01286{margin-left:-1.701000px;}
._b_c01286{width:1.296000px;}
._1_c01286{width:2.349000px;}
._0_c01286{width:3.393000px;}
._4_c01286{width:4.860000px;}
._9_c01286{width:6.165000px;}
._2_c01286{width:7.308000px;}
._7_c01286{width:8.910000px;}
._d_c01286{width:10.797000px;}
._6_c01286{width:12.798000px;}
._a_c01286{width:14.499000px;}
._e_c01286{width:15.624000px;}
._8_c01286{width:16.722000px;}
._f_c01286{width:17.748000px;}
._16_c01286{width:25.851000px;}
._15_c01286{width:29.067000px;}
._10_c01286{width:40.158000px;}
._23_c01286{width:64.926000px;}
._1b_c01286{width:95.799000px;}
._1d_c01286{width:126.180000px;}
._1f_c01286{width:162.099000px;}
._22_c01286{width:258.282000px;}
._21_c01286{width:417.150000px;}
.fc2_c01286{color:transparent;}
.fc1_c01286{color:rgb(128,128,128);}
.fc0_c01286{color:rgb(0,0,0);}
.fs5_c01286{font-size:36.000000px;}
.fs6_c01286{font-size:48.000000px;}
.fs3_c01286{font-size:60.000000px;}
.fs2_c01286{font-size:66.000000px;}
.fs4_c01286{font-size:72.000000px;}
.fs1_c01286{font-size:81.000000px;}
.fs0_c01286{font-size:87.000000px;}
.y0_c01286{bottom:0.000000px;}
.y24_c01286{bottom:3.105000px;}
.y23_c01286{bottom:7.228369px;}
.y22_c01286{bottom:50.220000px;}
.y21_c01286{bottom:99.570000px;}
.y20_c01286{bottom:124.170000px;}
.y1f_c01286{bottom:149.070000px;}
.y1e_c01286{bottom:172.770000px;}
.y1d_c01286{bottom:199.020000px;}
.y1c_c01286{bottom:222.870000px;}
.y1b_c01286{bottom:247.470000px;}
.y1a_c01286{bottom:272.070000px;}
.y19_c01286{bottom:296.670000px;}
.y18_c01286{bottom:321.270000px;}
.y17_c01286{bottom:345.570000px;}
.y16_c01286{bottom:369.870000px;}
.y15_c01286{bottom:394.470000px;}
.y14_c01286{bottom:418.470000px;}
.y13_c01286{bottom:442.770000px;}
.y12_c01286{bottom:466.020000px;}
.y11_c01286{bottom:490.620000px;}
.y10_c01286{bottom:514.920000px;}
.yf_c01286{bottom:538.920000px;}
.ye_c01286{bottom:563.520000px;}
.yd_c01286{bottom:586.920000px;}
.yc_c01286{bottom:611.220000px;}
.yb_c01286{bottom:635.220000px;}
.ya_c01286{bottom:659.370000px;}
.y9_c01286{bottom:684.120000px;}
.y8_c01286{bottom:707.970000px;}
.y7_c01286{bottom:731.970000px;}
.y6_c01286{bottom:756.270000px;}
.y5_c01286{bottom:780.570000px;}
.y4_c01286{bottom:805.170000px;}
.y3_c01286{bottom:829.620000px;}
.y2_c01286{bottom:853.920000px;}
.y1_c01286{bottom:877.770000px;}
.h6_c01286{height:13.200073px;}
.h7_c01286{height:43.804688px;}
.h3_c01286{height:79.497070px;}
.h5_c01286{height:84.269531px;}
.h2_c01286{height:85.385742px;}
.h4_c01286{height:91.160156px;}
.h1_c01286{height:986.250000px;}
.h0_c01286{height:986.550000px;}
.w1_c01286{width:104.875500px;}
.w0_c01286{width:672.000000px;}
.x0_c01286{left:0.000000px;}
.x1_c01286{left:56.250000px;}
.x4_c01286{left:58.050000px;}
.x3_c01286{left:59.700000px;}
.x5_c01286{left:61.350000px;}
.x6_c01286{left:62.400000px;}
.x2_c01286{left:81.300000px;}
.x8_c01286{left:287.814240px;}
.x7_c01286{left:380.400000px;}
@media print{
.v0_c01286{vertical-align:0.000000pt;}
.ls0_c01286{letter-spacing:0.000000pt;}
.ls1_c01286{letter-spacing:8.000000pt;}
.ws0_c01286{word-spacing:-37.333333pt;}
.ws1_c01286{word-spacing:-15.424000pt;}
.ws2_c01286{word-spacing:0.000000pt;}
._19_c01286{margin-left:-36.040000pt;}
._1a_c01286{margin-left:-20.800000pt;}
._11_c01286{margin-left:-19.224000pt;}
._1e_c01286{margin-left:-17.328000pt;}
._20_c01286{margin-left:-14.400000pt;}
._17_c01286{margin-left:-12.480000pt;}
._14_c01286{margin-left:-11.218667pt;}
._1c_c01286{margin-left:-9.085333pt;}
._13_c01286{margin-left:-7.629333pt;}
._18_c01286{margin-left:-6.373333pt;}
._12_c01286{margin-left:-5.165333pt;}
._3_c01286{margin-left:-3.762667pt;}
._c_c01286{margin-left:-2.592000pt;}
._5_c01286{margin-left:-1.512000pt;}
._b_c01286{width:1.152000pt;}
._1_c01286{width:2.088000pt;}
._0_c01286{width:3.016000pt;}
._4_c01286{width:4.320000pt;}
._9_c01286{width:5.480000pt;}
._2_c01286{width:6.496000pt;}
._7_c01286{width:7.920000pt;}
._d_c01286{width:9.597333pt;}
._6_c01286{width:11.376000pt;}
._a_c01286{width:12.888000pt;}
._e_c01286{width:13.888000pt;}
._8_c01286{width:14.864000pt;}
._f_c01286{width:15.776000pt;}
._16_c01286{width:22.978667pt;}
._15_c01286{width:25.837333pt;}
._10_c01286{width:35.696000pt;}
._23_c01286{width:57.712000pt;}
._1b_c01286{width:85.154667pt;}
._1d_c01286{width:112.160000pt;}
._1f_c01286{width:144.088000pt;}
._22_c01286{width:229.584000pt;}
._21_c01286{width:370.800000pt;}
.fs5_c01286{font-size:32.000000pt;}
.fs6_c01286{font-size:42.666667pt;}
.fs3_c01286{font-size:53.333333pt;}
.fs2_c01286{font-size:58.666667pt;}
.fs4_c01286{font-size:64.000000pt;}
.fs1_c01286{font-size:72.000000pt;}
.fs0_c01286{font-size:77.333333pt;}
.y0_c01286{bottom:0.000000pt;}
.y24_c01286{bottom:2.760000pt;}
.y23_c01286{bottom:6.425217pt;}
.y22_c01286{bottom:44.640000pt;}
.y21_c01286{bottom:88.506667pt;}
.y20_c01286{bottom:110.373333pt;}
.y1f_c01286{bottom:132.506667pt;}
.y1e_c01286{bottom:153.573333pt;}
.y1d_c01286{bottom:176.906667pt;}
.y1c_c01286{bottom:198.106667pt;}
.y1b_c01286{bottom:219.973333pt;}
.y1a_c01286{bottom:241.840000pt;}
.y19_c01286{bottom:263.706667pt;}
.y18_c01286{bottom:285.573333pt;}
.y17_c01286{bottom:307.173333pt;}
.y16_c01286{bottom:328.773333pt;}
.y15_c01286{bottom:350.640000pt;}
.y14_c01286{bottom:371.973333pt;}
.y13_c01286{bottom:393.573333pt;}
.y12_c01286{bottom:414.240000pt;}
.y11_c01286{bottom:436.106667pt;}
.y10_c01286{bottom:457.706667pt;}
.yf_c01286{bottom:479.040000pt;}
.ye_c01286{bottom:500.906667pt;}
.yd_c01286{bottom:521.706667pt;}
.yc_c01286{bottom:543.306667pt;}
.yb_c01286{bottom:564.640000pt;}
.ya_c01286{bottom:586.106667pt;}
.y9_c01286{bottom:608.106667pt;}
.y8_c01286{bottom:629.306667pt;}
.y7_c01286{bottom:650.640000pt;}
.y6_c01286{bottom:672.240000pt;}
.y5_c01286{bottom:693.840000pt;}
.y4_c01286{bottom:715.706667pt;}
.y3_c01286{bottom:737.440000pt;}
.y2_c01286{bottom:759.040000pt;}
.y1_c01286{bottom:780.240000pt;}
.h6_c01286{height:11.733399pt;}
.h7_c01286{height:38.937500pt;}
.h3_c01286{height:70.664062pt;}
.h5_c01286{height:74.906250pt;}
.h2_c01286{height:75.898438pt;}
.h4_c01286{height:81.031250pt;}
.h1_c01286{height:876.666667pt;}
.h0_c01286{height:876.933333pt;}
.w1_c01286{width:93.222667pt;}
.w0_c01286{width:597.333333pt;}
.x0_c01286{left:0.000000pt;}
.x1_c01286{left:50.000000pt;}
.x4_c01286{left:51.600000pt;}
.x3_c01286{left:53.066667pt;}
.x5_c01286{left:54.533333pt;}
.x6_c01286{left:55.466667pt;}
.x2_c01286{left:72.266667pt;}
.x8_c01286{left:255.834880pt;}
.x7_c01286{left:338.133333pt;}
}





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

.ir_c01287:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01287{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01287;src:url('chunks/assets/font_29928b789480cc9fb3fae6a5.woff2')format("woff");}.ff1_c01287{font-family:ff1_c01287;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01287;src:url('chunks/assets/font_2b9fff41c8897196459fa4df.woff2')format("woff");}.ff2_c01287{font-family:ff2_c01287;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01287;src:url('chunks/assets/font_b73fe56d17644b4db6e2e40c.woff2')format("woff");}.ff3_c01287{font-family:ff3_c01287;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01287;src:url('chunks/assets/font_bda9a0089bb1f57b9e315d61.woff2')format("woff");}.ff4_c01287{font-family:ff4_c01287;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01287;src:url('chunks/assets/font_8fc0bbf5441ce5c99636255a.woff2')format("woff");}.ff5_c01287{font-family:ff5_c01287;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01287;src:url('chunks/assets/font_8c95e34261fca48fa354b9e5.woff2')format("woff");}.ff6_c01287{font-family:ff6_c01287;line-height:1.437000;font-style:normal;font-weight: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_c01287;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c01287{font-family:ff7_c01287;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01287{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01287{vertical-align:0.000000px;}
.ls2_c01287{letter-spacing:0.000000px;}
.ls3_c01287{letter-spacing:9.000000px;}
.ls0_c01287{letter-spacing:10.173000px;}
.ls1_c01287{letter-spacing:18.300000px;}
.sc__c01287{text-shadow:none;}
.sc0_c01287{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01287{-webkit-text-stroke:0px transparent;}
.sc0_c01287{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c01287{word-spacing:-76.686000px;}
.ws1_c01287{word-spacing:-58.482000px;}
.ws0_c01287{word-spacing:-46.785600px;}
.ws2_c01287{word-spacing:-17.250000px;}
.ws4_c01287{word-spacing:0.000000px;}
._1c_c01287{margin-left:-17.983800px;}
._1a_c01287{margin-left:-15.759000px;}
._15_c01287{margin-left:-14.466600px;}
._4_c01287{margin-left:-12.798000px;}
._19_c01287{margin-left:-11.655000px;}
._1b_c01287{margin-left:-10.530000px;}
._0_c01287{margin-left:-9.266400px;}
._1_c01287{margin-left:-6.948000px;}
._14_c01287{margin-left:-5.709600px;}
._11_c01287{margin-left:-4.050000px;}
._12_c01287{margin-left:-2.673000px;}
._8_c01287{margin-left:-1.539000px;}
._5_c01287{width:1.377000px;}
._6_c01287{width:2.673000px;}
._7_c01287{width:4.374000px;}
._9_c01287{width:5.385600px;}
._a_c01287{width:6.642000px;}
._3_c01287{width:7.979400px;}
._13_c01287{width:9.194400px;}
._b_c01287{width:10.611000px;}
._c_c01287{width:12.312000px;}
._2_c01287{width:13.527000px;}
._18_c01287{width:15.391800px;}
._d_c01287{width:16.767000px;}
._10_c01287{width:18.306000px;}
._e_c01287{width:21.627000px;}
._17_c01287{width:25.191000px;}
._f_c01287{width:31.509000px;}
._16_c01287{width:51.030000px;}
._1d_c01287{width:92.300400px;}
.fc2_c01287{color:transparent;}
.fc1_c01287{color:rgb(128,128,128);}
.fc0_c01287{color:rgb(0,0,0);}
.fs4_c01287{font-size:48.000000px;}
.fs1_c01287{font-size:64.800000px;}
.fs2_c01287{font-size:69.000000px;}
.fs0_c01287{font-size:81.000000px;}
.fs3_c01287{font-size:87.000000px;}
.y0_c01287{bottom:0.000000px;}
.y24_c01287{bottom:3.105000px;}
.y23_c01287{bottom:7.228371px;}
.y22_c01287{bottom:40.965000px;}
.y21_c01287{bottom:63.915000px;}
.y20_c01287{bottom:89.565000px;}
.y1f_c01287{bottom:113.265000px;}
.y1e_c01287{bottom:138.015000px;}
.y1d_c01287{bottom:162.765000px;}
.y1c_c01287{bottom:187.365000px;}
.y1b_c01287{bottom:212.265000px;}
.y1a_c01287{bottom:236.715000px;}
.y19_c01287{bottom:261.315000px;}
.y18_c01287{bottom:285.915000px;}
.y17_c01287{bottom:310.515000px;}
.y16_c01287{bottom:335.115000px;}
.y15_c01287{bottom:359.565000px;}
.y14_c01287{bottom:383.715000px;}
.y13_c01287{bottom:409.065000px;}
.y12_c01287{bottom:433.365000px;}
.y11_c01287{bottom:457.665000px;}
.y10_c01287{bottom:482.265000px;}
.yf_c01287{bottom:505.965000px;}
.ye_c01287{bottom:530.265000px;}
.yd_c01287{bottom:554.865000px;}
.yc_c01287{bottom:578.265000px;}
.yb_c01287{bottom:602.565000px;}
.ya_c01287{bottom:626.865000px;}
.y9_c01287{bottom:651.765000px;}
.y8_c01287{bottom:675.465000px;}
.y7_c01287{bottom:701.715000px;}
.y6_c01287{bottom:720.915000px;}
.y5_c01287{bottom:748.665000px;}
.y4_c01287{bottom:772.965000px;}
.y3_c01287{bottom:808.065000px;}
.y2_c01287{bottom:837.465000px;}
.y1_c01287{bottom:866.415000px;}
.h7_c01287{height:13.200074px;}
.h8_c01287{height:43.804688px;}
.h6_c01287{height:69.539062px;}
.h4_c01287{height:72.312000px;}
.h3_c01287{height:79.457520px;}
.h2_c01287{height:79.497070px;}
.h5_c01287{height:91.176000px;}
.h1_c01287{height:986.250000px;}
.h0_c01287{height:986.325000px;}
.w2_c01287{width:104.875500px;}
.w0_c01287{width:667.425000px;}
.w1_c01287{width:667.500000px;}
.x0_c01287{left:0.000000px;}
.x2_c01287{left:101.250000px;}
.x1_c01287{left:105.000000px;}
.x7_c01287{left:110.700000px;}
.x8_c01287{left:112.050000px;}
.x3_c01287{left:120.150000px;}
.x6_c01287{left:238.200000px;}
.x4_c01287{left:254.850000px;}
.x5_c01287{left:256.050000px;}
.xa_c01287{left:285.526749px;}
.x9_c01287{left:546.750000px;}
@media print{
.v0_c01287{vertical-align:0.000000pt;}
.ls2_c01287{letter-spacing:0.000000pt;}
.ls3_c01287{letter-spacing:8.000000pt;}
.ls0_c01287{letter-spacing:9.042667pt;}
.ls1_c01287{letter-spacing:16.266667pt;}
.ws3_c01287{word-spacing:-68.165333pt;}
.ws1_c01287{word-spacing:-51.984000pt;}
.ws0_c01287{word-spacing:-41.587200pt;}
.ws2_c01287{word-spacing:-15.333333pt;}
.ws4_c01287{word-spacing:0.000000pt;}
._1c_c01287{margin-left:-15.985600pt;}
._1a_c01287{margin-left:-14.008000pt;}
._15_c01287{margin-left:-12.859200pt;}
._4_c01287{margin-left:-11.376000pt;}
._19_c01287{margin-left:-10.360000pt;}
._1b_c01287{margin-left:-9.360000pt;}
._0_c01287{margin-left:-8.236800pt;}
._1_c01287{margin-left:-6.176000pt;}
._14_c01287{margin-left:-5.075200pt;}
._11_c01287{margin-left:-3.600000pt;}
._12_c01287{margin-left:-2.376000pt;}
._8_c01287{margin-left:-1.368000pt;}
._5_c01287{width:1.224000pt;}
._6_c01287{width:2.376000pt;}
._7_c01287{width:3.888000pt;}
._9_c01287{width:4.787200pt;}
._a_c01287{width:5.904000pt;}
._3_c01287{width:7.092800pt;}
._13_c01287{width:8.172800pt;}
._b_c01287{width:9.432000pt;}
._c_c01287{width:10.944000pt;}
._2_c01287{width:12.024000pt;}
._18_c01287{width:13.681600pt;}
._d_c01287{width:14.904000pt;}
._10_c01287{width:16.272000pt;}
._e_c01287{width:19.224000pt;}
._17_c01287{width:22.392000pt;}
._f_c01287{width:28.008000pt;}
._16_c01287{width:45.360000pt;}
._1d_c01287{width:82.044800pt;}
.fs4_c01287{font-size:42.666667pt;}
.fs1_c01287{font-size:57.600000pt;}
.fs2_c01287{font-size:61.333333pt;}
.fs0_c01287{font-size:72.000000pt;}
.fs3_c01287{font-size:77.333333pt;}
.y0_c01287{bottom:0.000000pt;}
.y24_c01287{bottom:2.760000pt;}
.y23_c01287{bottom:6.425219pt;}
.y22_c01287{bottom:36.413333pt;}
.y21_c01287{bottom:56.813333pt;}
.y20_c01287{bottom:79.613333pt;}
.y1f_c01287{bottom:100.680000pt;}
.y1e_c01287{bottom:122.680000pt;}
.y1d_c01287{bottom:144.680000pt;}
.y1c_c01287{bottom:166.546667pt;}
.y1b_c01287{bottom:188.680000pt;}
.y1a_c01287{bottom:210.413333pt;}
.y19_c01287{bottom:232.280000pt;}
.y18_c01287{bottom:254.146667pt;}
.y17_c01287{bottom:276.013333pt;}
.y16_c01287{bottom:297.880000pt;}
.y15_c01287{bottom:319.613333pt;}
.y14_c01287{bottom:341.080000pt;}
.y13_c01287{bottom:363.613333pt;}
.y12_c01287{bottom:385.213333pt;}
.y11_c01287{bottom:406.813333pt;}
.y10_c01287{bottom:428.680000pt;}
.yf_c01287{bottom:449.746667pt;}
.ye_c01287{bottom:471.346667pt;}
.yd_c01287{bottom:493.213333pt;}
.yc_c01287{bottom:514.013333pt;}
.yb_c01287{bottom:535.613333pt;}
.ya_c01287{bottom:557.213333pt;}
.y9_c01287{bottom:579.346667pt;}
.y8_c01287{bottom:600.413333pt;}
.y7_c01287{bottom:623.746667pt;}
.y6_c01287{bottom:640.813333pt;}
.y5_c01287{bottom:665.480000pt;}
.y4_c01287{bottom:687.080000pt;}
.y3_c01287{bottom:718.280000pt;}
.y2_c01287{bottom:744.413333pt;}
.y1_c01287{bottom:770.146667pt;}
.h7_c01287{height:11.733399pt;}
.h8_c01287{height:38.937500pt;}
.h6_c01287{height:61.812500pt;}
.h4_c01287{height:64.277333pt;}
.h3_c01287{height:70.628906pt;}
.h2_c01287{height:70.664062pt;}
.h5_c01287{height:81.045333pt;}
.h1_c01287{height:876.666667pt;}
.h0_c01287{height:876.733333pt;}
.w2_c01287{width:93.222667pt;}
.w0_c01287{width:593.266667pt;}
.w1_c01287{width:593.333333pt;}
.x0_c01287{left:0.000000pt;}
.x2_c01287{left:90.000000pt;}
.x1_c01287{left:93.333333pt;}
.x7_c01287{left:98.400000pt;}
.x8_c01287{left:99.600000pt;}
.x3_c01287{left:106.800000pt;}
.x6_c01287{left:211.733333pt;}
.x4_c01287{left:226.533333pt;}
.x5_c01287{left:227.600000pt;}
.xa_c01287{left:253.801554pt;}
.x9_c01287{left:486.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_c01288 {
    display:none;
  }
  .loading-indicator_c01288.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01288 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01288 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01288" -> "#page-container .classname_c01288")
 */
.pf_c01288 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01288 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01288.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01288 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01288 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01288 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01288 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01288 {overflow:visible;}
  }
}
.c_c01288 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01288 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01288:after { /* webkit #35443 */
  content: '';
}
.t_c01288:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01288 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01288 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01288 { /* info for Javascript */
  display:none;
}
.l_c01288 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01288 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01288 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01288:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01288{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01288;src:url('chunks/assets/font_6701e4a31c29f2e9e1c97de2.woff2')format("woff");}.ff1_c01288{font-family:ff1_c01288;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01288;src:url('chunks/assets/font_a28a4512d528ba36472d733d.woff2')format("woff");}.ff2_c01288{font-family:ff2_c01288;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01288;src:url('chunks/assets/font_5728bd63ec3e2d09752c48a8.woff2')format("woff");}.ff3_c01288{font-family:ff3_c01288;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01288;src:url('chunks/assets/font_42a583ddcf5803e171bebd72.woff2')format("woff");}.ff4_c01288{font-family:ff4_c01288;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01288;src:url('chunks/assets/font_52787d3e0ffc1313bcbc3840.woff2')format("woff");}.ff5_c01288{font-family:ff5_c01288;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01288;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c01288{font-family:ff6_c01288;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01288{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01288{vertical-align:0.000000px;}
.ls2_c01288{letter-spacing:-9.000000px;}
.ls1_c01288{letter-spacing:0.000000px;}
.ls3_c01288{letter-spacing:3.000000px;}
.ls0_c01288{letter-spacing:12.000000px;}
.sc__c01288{text-shadow:none;}
.sc0_c01288{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01288{-webkit-text-stroke:0px transparent;}
.sc0_c01288{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01288{word-spacing:-24.750000px;}
.ws0_c01288{word-spacing:-22.500000px;}
.ws2_c01288{word-spacing:0.000000px;}
._28_c01288{margin-left:-43.290000px;}
._15_c01288{margin-left:-41.412000px;}
._2c_c01288{margin-left:-39.264000px;}
._12_c01288{margin-left:-35.820000px;}
._20_c01288{margin-left:-34.170000px;}
._17_c01288{margin-left:-32.076000px;}
._0_c01288{margin-left:-30.840000px;}
._1c_c01288{margin-left:-29.730000px;}
._19_c01288{margin-left:-28.254000px;}
._1e_c01288{margin-left:-27.162000px;}
._3_c01288{margin-left:-25.920000px;}
._23_c01288{margin-left:-24.582000px;}
._5_c01288{margin-left:-22.800000px;}
._27_c01288{margin-left:-21.666000px;}
._1_c01288{margin-left:-20.520000px;}
._2b_c01288{margin-left:-19.440000px;}
._29_c01288{margin-left:-18.402000px;}
._18_c01288{margin-left:-17.340000px;}
._2_c01288{margin-left:-16.320000px;}
._1a_c01288{margin-left:-14.850000px;}
._4_c01288{margin-left:-13.200000px;}
._14_c01288{margin-left:-11.934000px;}
._13_c01288{margin-left:-10.812000px;}
._8_c01288{margin-left:-9.282000px;}
._1f_c01288{margin-left:-8.160000px;}
._c_c01288{margin-left:-7.074000px;}
._1d_c01288{margin-left:-5.220000px;}
._6_c01288{margin-left:-4.200000px;}
._7_c01288{margin-left:-3.126000px;}
._d_c01288{margin-left:-1.362000px;}
._b_c01288{width:1.242000px;}
._a_c01288{width:2.346000px;}
._9_c01288{width:4.284000px;}
._f_c01288{width:5.916000px;}
._11_c01288{width:7.800000px;}
._e_c01288{width:8.910000px;}
._24_c01288{width:12.354000px;}
._16_c01288{width:14.382000px;}
._26_c01288{width:16.224000px;}
._1b_c01288{width:17.436000px;}
._2a_c01288{width:24.216000px;}
._22_c01288{width:38.964000px;}
._2d_c01288{width:41.832000px;}
._10_c01288{width:44.658000px;}
._21_c01288{width:142.206000px;}
._25_c01288{width:183.174000px;}
._2e_c01288{width:287.130000px;}
.fc2_c01288{color:transparent;}
.fc1_c01288{color:rgb(128,128,128);}
.fc0_c01288{color:rgb(0,0,0);}
.fs3_c01288{font-size:48.000000px;}
.fs5_c01288{font-size:63.000000px;}
.fs2_c01288{font-size:69.000000px;}
.fs4_c01288{font-size:90.000000px;}
.fs6_c01288{font-size:99.000000px;}
.fs1_c01288{font-size:102.000000px;}
.fs0_c01288{font-size:120.000000px;}
.y0_c01288{bottom:0.000000px;}
.y26_c01288{bottom:3.105000px;}
.y25_c01288{bottom:7.228369px;}
.y24_c01288{bottom:48.270000px;}
.y23_c01288{bottom:72.570000px;}
.y22_c01288{bottom:97.920000px;}
.y21_c01288{bottom:122.820000px;}
.y20_c01288{bottom:147.420000px;}
.y1f_c01288{bottom:172.170000px;}
.y1e_c01288{bottom:196.320000px;}
.y1d_c01288{bottom:221.070000px;}
.y1c_c01288{bottom:245.370000px;}
.y1b_c01288{bottom:270.270000px;}
.y1a_c01288{bottom:294.270000px;}
.y19_c01288{bottom:318.570000px;}
.y18_c01288{bottom:343.170000px;}
.y17_c01288{bottom:367.470000px;}
.y16_c01288{bottom:391.470000px;}
.y15_c01288{bottom:415.470000px;}
.y14_c01288{bottom:439.470000px;}
.y13_c01288{bottom:463.620000px;}
.y12_c01288{bottom:487.620000px;}
.y11_c01288{bottom:511.320000px;}
.y10_c01288{bottom:535.620000px;}
.yf_c01288{bottom:559.470000px;}
.ye_c01288{bottom:583.170000px;}
.yd_c01288{bottom:606.870000px;}
.yc_c01288{bottom:631.770000px;}
.yb_c01288{bottom:656.070000px;}
.ya_c01288{bottom:680.070000px;}
.y9_c01288{bottom:704.670000px;}
.y8_c01288{bottom:729.570000px;}
.y7_c01288{bottom:752.220000px;}
.y6_c01288{bottom:776.820000px;}
.y5_c01288{bottom:802.170000px;}
.y4_c01288{bottom:824.820000px;}
.y3_c01288{bottom:851.220000px;}
.y2_c01288{bottom:873.120000px;}
.y1_c01288{bottom:908.520000px;}
.h4_c01288{height:13.200073px;}
.h5_c01288{height:43.804688px;}
.h3_c01288{height:104.839927px;}
.h2_c01288{height:120.937500px;}
.h1_c01288{height:986.250000px;}
.h0_c01288{height:986.550000px;}
.w1_c01288{width:104.875500px;}
.w0_c01288{width:672.000000px;}
.x0_c01288{left:0.000000px;}
.x2_c01288{left:51.600000px;}
.x3_c01288{left:53.250000px;}
.x4_c01288{left:54.300000px;}
.x5_c01288{left:55.800000px;}
.x6_c01288{left:57.000000px;}
.x7_c01288{left:58.350000px;}
.x8_c01288{left:59.850000px;}
.x1_c01288{left:79.650000px;}
.xa_c01288{left:287.814240px;}
.x9_c01288{left:389.850000px;}
@media print{
.v0_c01288{vertical-align:0.000000pt;}
.ls2_c01288{letter-spacing:-8.000000pt;}
.ls1_c01288{letter-spacing:0.000000pt;}
.ls3_c01288{letter-spacing:2.666667pt;}
.ls0_c01288{letter-spacing:10.666667pt;}
.ws1_c01288{word-spacing:-22.000000pt;}
.ws0_c01288{word-spacing:-20.000000pt;}
.ws2_c01288{word-spacing:0.000000pt;}
._28_c01288{margin-left:-38.480000pt;}
._15_c01288{margin-left:-36.810667pt;}
._2c_c01288{margin-left:-34.901333pt;}
._12_c01288{margin-left:-31.840000pt;}
._20_c01288{margin-left:-30.373333pt;}
._17_c01288{margin-left:-28.512000pt;}
._0_c01288{margin-left:-27.413333pt;}
._1c_c01288{margin-left:-26.426667pt;}
._19_c01288{margin-left:-25.114667pt;}
._1e_c01288{margin-left:-24.144000pt;}
._3_c01288{margin-left:-23.040000pt;}
._23_c01288{margin-left:-21.850667pt;}
._5_c01288{margin-left:-20.266667pt;}
._27_c01288{margin-left:-19.258667pt;}
._1_c01288{margin-left:-18.240000pt;}
._2b_c01288{margin-left:-17.280000pt;}
._29_c01288{margin-left:-16.357333pt;}
._18_c01288{margin-left:-15.413333pt;}
._2_c01288{margin-left:-14.506667pt;}
._1a_c01288{margin-left:-13.200000pt;}
._4_c01288{margin-left:-11.733333pt;}
._14_c01288{margin-left:-10.608000pt;}
._13_c01288{margin-left:-9.610667pt;}
._8_c01288{margin-left:-8.250667pt;}
._1f_c01288{margin-left:-7.253333pt;}
._c_c01288{margin-left:-6.288000pt;}
._1d_c01288{margin-left:-4.640000pt;}
._6_c01288{margin-left:-3.733333pt;}
._7_c01288{margin-left:-2.778667pt;}
._d_c01288{margin-left:-1.210667pt;}
._b_c01288{width:1.104000pt;}
._a_c01288{width:2.085333pt;}
._9_c01288{width:3.808000pt;}
._f_c01288{width:5.258667pt;}
._11_c01288{width:6.933333pt;}
._e_c01288{width:7.920000pt;}
._24_c01288{width:10.981333pt;}
._16_c01288{width:12.784000pt;}
._26_c01288{width:14.421333pt;}
._1b_c01288{width:15.498667pt;}
._2a_c01288{width:21.525333pt;}
._22_c01288{width:34.634667pt;}
._2d_c01288{width:37.184000pt;}
._10_c01288{width:39.696000pt;}
._21_c01288{width:126.405333pt;}
._25_c01288{width:162.821333pt;}
._2e_c01288{width:255.226667pt;}
.fs3_c01288{font-size:42.666667pt;}
.fs5_c01288{font-size:56.000000pt;}
.fs2_c01288{font-size:61.333333pt;}
.fs4_c01288{font-size:80.000000pt;}
.fs6_c01288{font-size:88.000000pt;}
.fs1_c01288{font-size:90.666667pt;}
.fs0_c01288{font-size:106.666667pt;}
.y0_c01288{bottom:0.000000pt;}
.y26_c01288{bottom:2.760000pt;}
.y25_c01288{bottom:6.425217pt;}
.y24_c01288{bottom:42.906667pt;}
.y23_c01288{bottom:64.506667pt;}
.y22_c01288{bottom:87.040000pt;}
.y21_c01288{bottom:109.173333pt;}
.y20_c01288{bottom:131.040000pt;}
.y1f_c01288{bottom:153.040000pt;}
.y1e_c01288{bottom:174.506667pt;}
.y1d_c01288{bottom:196.506667pt;}
.y1c_c01288{bottom:218.106667pt;}
.y1b_c01288{bottom:240.240000pt;}
.y1a_c01288{bottom:261.573333pt;}
.y19_c01288{bottom:283.173333pt;}
.y18_c01288{bottom:305.040000pt;}
.y17_c01288{bottom:326.640000pt;}
.y16_c01288{bottom:347.973333pt;}
.y15_c01288{bottom:369.306667pt;}
.y14_c01288{bottom:390.640000pt;}
.y13_c01288{bottom:412.106667pt;}
.y12_c01288{bottom:433.440000pt;}
.y11_c01288{bottom:454.506667pt;}
.y10_c01288{bottom:476.106667pt;}
.yf_c01288{bottom:497.306667pt;}
.ye_c01288{bottom:518.373333pt;}
.yd_c01288{bottom:539.440000pt;}
.yc_c01288{bottom:561.573333pt;}
.yb_c01288{bottom:583.173333pt;}
.ya_c01288{bottom:604.506667pt;}
.y9_c01288{bottom:626.373333pt;}
.y8_c01288{bottom:648.506667pt;}
.y7_c01288{bottom:668.640000pt;}
.y6_c01288{bottom:690.506667pt;}
.y5_c01288{bottom:713.040000pt;}
.y4_c01288{bottom:733.173333pt;}
.y3_c01288{bottom:756.640000pt;}
.y2_c01288{bottom:776.106667pt;}
.y1_c01288{bottom:807.573333pt;}
.h4_c01288{height:11.733399pt;}
.h5_c01288{height:38.937500pt;}
.h3_c01288{height:93.191046pt;}
.h2_c01288{height:107.500000pt;}
.h1_c01288{height:876.666667pt;}
.h0_c01288{height:876.933333pt;}
.w1_c01288{width:93.222667pt;}
.w0_c01288{width:597.333333pt;}
.x0_c01288{left:0.000000pt;}
.x2_c01288{left:45.866667pt;}
.x3_c01288{left:47.333333pt;}
.x4_c01288{left:48.266667pt;}
.x5_c01288{left:49.600000pt;}
.x6_c01288{left:50.666667pt;}
.x7_c01288{left:51.866667pt;}
.x8_c01288{left:53.200000pt;}
.x1_c01288{left:70.800000pt;}
.xa_c01288{left:255.834880pt;}
.x9_c01288{left:346.533333pt;}
}





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

.ir_c01289:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01289{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01289;src:url('chunks/assets/font_7795f7c84128c1bf752c9784.woff2')format("woff");}.ff1_c01289{font-family:ff1_c01289;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01289;src:url('chunks/assets/font_1a6859f2a988db33393aed0c.woff2')format("woff");}.ff2_c01289{font-family:ff2_c01289;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01289;src:url('chunks/assets/font_2d691eebe363f69360cd28f8.woff2')format("woff");}.ff3_c01289{font-family:ff3_c01289;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01289;src:url('chunks/assets/font_0d79f09e4a7413b5b4f073ba.woff2')format("woff");}.ff4_c01289{font-family:ff4_c01289;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01289;src:url('chunks/assets/font_d87a1fdf64a27c016d852de0.woff2')format("woff");}.ff5_c01289{font-family:ff5_c01289;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01289;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c01289{font-family:ff6_c01289;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01289{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01289{vertical-align:0.000000px;}
.ls2_c01289{letter-spacing:0.000000px;}
.ls1_c01289{letter-spacing:6.000000px;}
.ls0_c01289{letter-spacing:20.400000px;}
.sc__c01289{text-shadow:none;}
.sc0_c01289{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01289{-webkit-text-stroke:0px transparent;}
.sc0_c01289{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01289{word-spacing:-20.250000px;}
.ws1_c01289{word-spacing:-17.352000px;}
.ws2_c01289{word-spacing:0.000000px;}
._2a_c01289{margin-left:-46.800000px;}
._28_c01289{margin-left:-36.036000px;}
._2c_c01289{margin-left:-29.172000px;}
._16_c01289{margin-left:-21.987000px;}
._19_c01289{margin-left:-20.655000px;}
._1d_c01289{margin-left:-18.873000px;}
._1a_c01289{margin-left:-17.739000px;}
._23_c01289{margin-left:-15.633000px;}
._1f_c01289{margin-left:-14.184000px;}
._15_c01289{margin-left:-12.213000px;}
._c_c01289{margin-left:-11.178000px;}
._b_c01289{margin-left:-9.666000px;}
._9_c01289{margin-left:-7.722000px;}
._3_c01289{margin-left:-6.534000px;}
._8_c01289{margin-left:-4.950000px;}
._6_c01289{margin-left:-3.267000px;}
._5_c01289{margin-left:-1.782000px;}
._7_c01289{width:1.782000px;}
._0_c01289{width:3.645000px;}
._f_c01289{width:4.698000px;}
._1_c01289{width:5.940000px;}
._11_c01289{width:7.803000px;}
._e_c01289{width:9.099000px;}
._a_c01289{width:10.665000px;}
._2_c01289{width:11.880000px;}
._d_c01289{width:13.527000px;}
._17_c01289{width:14.967000px;}
._12_c01289{width:16.929000px;}
._14_c01289{width:18.516000px;}
._2d_c01289{width:21.060000px;}
._18_c01289{width:23.904000px;}
._2b_c01289{width:25.272000px;}
._32_c01289{width:27.864000px;}
._30_c01289{width:29.889000px;}
._21_c01289{width:32.373000px;}
._25_c01289{width:34.791000px;}
._2f_c01289{width:47.508000px;}
._1c_c01289{width:50.895000px;}
._27_c01289{width:54.084000px;}
._10_c01289{width:87.291000px;}
._1e_c01289{width:93.111000px;}
._2e_c01289{width:107.532000px;}
._20_c01289{width:127.656000px;}
._26_c01289{width:132.021000px;}
._13_c01289{width:141.156000px;}
._31_c01289{width:201.609000px;}
._1b_c01289{width:296.562000px;}
._22_c01289{width:299.538000px;}
._29_c01289{width:388.284000px;}
._24_c01289{width:557.067000px;}
._4_c01289{width:736.263000px;}
.fc2_c01289{color:transparent;}
.fc1_c01289{color:rgb(128,128,128);}
.fc0_c01289{color:rgb(0,0,0);}
.fs6_c01289{font-size:48.000000px;}
.fs5_c01289{font-size:69.000000px;}
.fs3_c01289{font-size:72.000000px;}
.fs4_c01289{font-size:78.000000px;}
.fs0_c01289{font-size:81.000000px;}
.fs2_c01289{font-size:99.000000px;}
.fs1_c01289{font-size:102.000000px;}
.y0_c01289{bottom:0.000000px;}
.y27_c01289{bottom:3.105000px;}
.y26_c01289{bottom:7.228371px;}
.y25_c01289{bottom:67.515000px;}
.y24_c01289{bottom:88.815000px;}
.y23_c01289{bottom:113.415000px;}
.y22_c01289{bottom:139.065000px;}
.y21_c01289{bottom:161.715000px;}
.y20_c01289{bottom:185.415000px;}
.y1f_c01289{bottom:211.965000px;}
.y1e_c01289{bottom:237.315000px;}
.y1d_c01289{bottom:261.615000px;}
.y1c_c01289{bottom:285.615000px;}
.y1b_c01289{bottom:310.515000px;}
.y1a_c01289{bottom:335.565000px;}
.y19_c01289{bottom:360.165000px;}
.y18_c01289{bottom:384.765000px;}
.y17_c01289{bottom:408.765000px;}
.y16_c01289{bottom:433.065000px;}
.y15_c01289{bottom:457.665000px;}
.y14_c01289{bottom:481.065000px;}
.y13_c01289{bottom:504.615000px;}
.y12_c01289{bottom:528.915000px;}
.y11_c01289{bottom:553.965000px;}
.y10_c01289{bottom:579.465000px;}
.yf_c01289{bottom:602.865000px;}
.ye_c01289{bottom:626.115000px;}
.yd_c01289{bottom:650.715000px;}
.yc_c01289{bottom:674.415000px;}
.y1_c01289{bottom:683.415000px;}
.yb_c01289{bottom:699.015000px;}
.ya_c01289{bottom:722.565000px;}
.y9_c01289{bottom:748.365000px;}
.y8_c01289{bottom:770.265000px;}
.y7_c01289{bottom:795.615000px;}
.y6_c01289{bottom:819.765000px;}
.y5_c01289{bottom:843.165000px;}
.y4_c01289{bottom:867.165000px;}
.y3_c01289{bottom:891.765000px;}
.y2_c01289{bottom:924.465000px;}
.h8_c01289{height:13.200074px;}
.h9_c01289{height:43.804688px;}
.h7_c01289{height:72.312000px;}
.h2_c01289{height:79.497070px;}
.h5_c01289{height:84.269531px;}
.h4_c01289{height:91.160156px;}
.h6_c01289{height:98.756836px;}
.h3_c01289{height:115.870605px;}
.h1_c01289{height:986.250000px;}
.h0_c01289{height:986.325000px;}
.w2_c01289{width:104.875500px;}
.w0_c01289{width:667.425000px;}
.w1_c01289{width:667.500000px;}
.x0_c01289{left:0.000000px;}
.x4_c01289{left:18.600000px;}
.x5_c01289{left:21.900000px;}
.x9_c01289{left:27.000000px;}
.x1_c01289{left:72.000000px;}
.x2_c01289{left:113.100000px;}
.x3_c01289{left:115.050000px;}
.x6_c01289{left:119.400000px;}
.x7_c01289{left:120.450000px;}
.x8_c01289{left:121.800000px;}
.xa_c01289{left:122.850000px;}
.xb_c01289{left:123.900000px;}
.xc_c01289{left:156.600000px;}
.xd_c01289{left:167.100000px;}
.xf_c01289{left:285.526749px;}
.xe_c01289{left:595.800000px;}
@media print{
.v0_c01289{vertical-align:0.000000pt;}
.ls2_c01289{letter-spacing:0.000000pt;}
.ls1_c01289{letter-spacing:5.333333pt;}
.ls0_c01289{letter-spacing:18.133333pt;}
.ws0_c01289{word-spacing:-18.000000pt;}
.ws1_c01289{word-spacing:-15.424000pt;}
.ws2_c01289{word-spacing:0.000000pt;}
._2a_c01289{margin-left:-41.600000pt;}
._28_c01289{margin-left:-32.032000pt;}
._2c_c01289{margin-left:-25.930667pt;}
._16_c01289{margin-left:-19.544000pt;}
._19_c01289{margin-left:-18.360000pt;}
._1d_c01289{margin-left:-16.776000pt;}
._1a_c01289{margin-left:-15.768000pt;}
._23_c01289{margin-left:-13.896000pt;}
._1f_c01289{margin-left:-12.608000pt;}
._15_c01289{margin-left:-10.856000pt;}
._c_c01289{margin-left:-9.936000pt;}
._b_c01289{margin-left:-8.592000pt;}
._9_c01289{margin-left:-6.864000pt;}
._3_c01289{margin-left:-5.808000pt;}
._8_c01289{margin-left:-4.400000pt;}
._6_c01289{margin-left:-2.904000pt;}
._5_c01289{margin-left:-1.584000pt;}
._7_c01289{width:1.584000pt;}
._0_c01289{width:3.240000pt;}
._f_c01289{width:4.176000pt;}
._1_c01289{width:5.280000pt;}
._11_c01289{width:6.936000pt;}
._e_c01289{width:8.088000pt;}
._a_c01289{width:9.480000pt;}
._2_c01289{width:10.560000pt;}
._d_c01289{width:12.024000pt;}
._17_c01289{width:13.304000pt;}
._12_c01289{width:15.048000pt;}
._14_c01289{width:16.458667pt;}
._2d_c01289{width:18.720000pt;}
._18_c01289{width:21.248000pt;}
._2b_c01289{width:22.464000pt;}
._32_c01289{width:24.768000pt;}
._30_c01289{width:26.568000pt;}
._21_c01289{width:28.776000pt;}
._25_c01289{width:30.925333pt;}
._2f_c01289{width:42.229333pt;}
._1c_c01289{width:45.240000pt;}
._27_c01289{width:48.074667pt;}
._10_c01289{width:77.592000pt;}
._1e_c01289{width:82.765333pt;}
._2e_c01289{width:95.584000pt;}
._20_c01289{width:113.472000pt;}
._26_c01289{width:117.352000pt;}
._13_c01289{width:125.472000pt;}
._31_c01289{width:179.208000pt;}
._1b_c01289{width:263.610667pt;}
._22_c01289{width:266.256000pt;}
._29_c01289{width:345.141333pt;}
._24_c01289{width:495.170667pt;}
._4_c01289{width:654.456000pt;}
.fs6_c01289{font-size:42.666667pt;}
.fs5_c01289{font-size:61.333333pt;}
.fs3_c01289{font-size:64.000000pt;}
.fs4_c01289{font-size:69.333333pt;}
.fs0_c01289{font-size:72.000000pt;}
.fs2_c01289{font-size:88.000000pt;}
.fs1_c01289{font-size:90.666667pt;}
.y0_c01289{bottom:0.000000pt;}
.y27_c01289{bottom:2.760000pt;}
.y26_c01289{bottom:6.425219pt;}
.y25_c01289{bottom:60.013333pt;}
.y24_c01289{bottom:78.946667pt;}
.y23_c01289{bottom:100.813333pt;}
.y22_c01289{bottom:123.613333pt;}
.y21_c01289{bottom:143.746667pt;}
.y20_c01289{bottom:164.813333pt;}
.y1f_c01289{bottom:188.413333pt;}
.y1e_c01289{bottom:210.946667pt;}
.y1d_c01289{bottom:232.546667pt;}
.y1c_c01289{bottom:253.880000pt;}
.y1b_c01289{bottom:276.013333pt;}
.y1a_c01289{bottom:298.280000pt;}
.y19_c01289{bottom:320.146667pt;}
.y18_c01289{bottom:342.013333pt;}
.y17_c01289{bottom:363.346667pt;}
.y16_c01289{bottom:384.946667pt;}
.y15_c01289{bottom:406.813333pt;}
.y14_c01289{bottom:427.613333pt;}
.y13_c01289{bottom:448.546667pt;}
.y12_c01289{bottom:470.146667pt;}
.y11_c01289{bottom:492.413333pt;}
.y10_c01289{bottom:515.080000pt;}
.yf_c01289{bottom:535.880000pt;}
.ye_c01289{bottom:556.546667pt;}
.yd_c01289{bottom:578.413333pt;}
.yc_c01289{bottom:599.480000pt;}
.y1_c01289{bottom:607.480000pt;}
.yb_c01289{bottom:621.346667pt;}
.ya_c01289{bottom:642.280000pt;}
.y9_c01289{bottom:665.213333pt;}
.y8_c01289{bottom:684.680000pt;}
.y7_c01289{bottom:707.213333pt;}
.y6_c01289{bottom:728.680000pt;}
.y5_c01289{bottom:749.480000pt;}
.y4_c01289{bottom:770.813333pt;}
.y3_c01289{bottom:792.680000pt;}
.y2_c01289{bottom:821.746667pt;}
.h8_c01289{height:11.733399pt;}
.h9_c01289{height:38.937500pt;}
.h7_c01289{height:64.277333pt;}
.h2_c01289{height:70.664062pt;}
.h5_c01289{height:74.906250pt;}
.h4_c01289{height:81.031250pt;}
.h6_c01289{height:87.783854pt;}
.h3_c01289{height:102.996094pt;}
.h1_c01289{height:876.666667pt;}
.h0_c01289{height:876.733333pt;}
.w2_c01289{width:93.222667pt;}
.w0_c01289{width:593.266667pt;}
.w1_c01289{width:593.333333pt;}
.x0_c01289{left:0.000000pt;}
.x4_c01289{left:16.533333pt;}
.x5_c01289{left:19.466667pt;}
.x9_c01289{left:24.000000pt;}
.x1_c01289{left:64.000000pt;}
.x2_c01289{left:100.533333pt;}
.x3_c01289{left:102.266667pt;}
.x6_c01289{left:106.133333pt;}
.x7_c01289{left:107.066667pt;}
.x8_c01289{left:108.266667pt;}
.xa_c01289{left:109.200000pt;}
.xb_c01289{left:110.133333pt;}
.xc_c01289{left:139.200000pt;}
.xd_c01289{left:148.533333pt;}
.xf_c01289{left:253.801554pt;}
.xe_c01289{left:529.600000pt;}
}





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

.ir_c01290:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01290{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01290;src:url('chunks/assets/font_6961a0cb7c9b80495f48fe8a.woff2')format("woff");}.ff1_c01290{font-family:ff1_c01290;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01290;src:url('chunks/assets/font_03c6aa27d611acbd327e9315.woff2')format("woff");}.ff2_c01290{font-family:ff2_c01290;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01290;src:url('chunks/assets/font_2d1631eca54d893851c92497.woff2')format("woff");}.ff3_c01290{font-family:ff3_c01290;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01290;src:url('chunks/assets/font_b08be44ce0c6030cc11821bd.woff2')format("woff");}.ff4_c01290{font-family:ff4_c01290;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01290;src:url('chunks/assets/font_e9ff36c32da4a968165b62fa.woff2')format("woff");}.ff5_c01290{font-family:ff5_c01290;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01290;src:url('chunks/assets/font_6fe4e46dafe277479d6a9625.woff2')format("woff");}.ff6_c01290{font-family:ff6_c01290;line-height:1.401855;font-style:normal;font-weight: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_c01290;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c01290{font-family:ff7_c01290;line-height:1.219238;font-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_c01290{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m0_c01290{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01290{vertical-align:0.000000px;}
.ls2_c01290{letter-spacing:-9.000000px;}
.ls1_c01290{letter-spacing:-3.000000px;}
.ls0_c01290{letter-spacing:0.000000px;}
.sc__c01290{text-shadow:none;}
.sc0_c01290{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01290{-webkit-text-stroke:0px transparent;}
.sc0_c01290{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c01290{word-spacing:-29.700000px;}
.ws1_c01290{word-spacing:-27.000000px;}
.ws2_c01290{word-spacing:-22.305000px;}
.ws0_c01290{word-spacing:-20.250000px;}
.ws4_c01290{word-spacing:0.000000px;}
._23_c01290{margin-left:-38.454000px;}
._21_c01290{margin-left:-33.048000px;}
._1d_c01290{margin-left:-28.968000px;}
._14_c01290{margin-left:-21.672000px;}
._20_c01290{margin-left:-20.535000px;}
._1e_c01290{margin-left:-18.795000px;}
._11_c01290{margin-left:-17.415000px;}
._c_c01290{margin-left:-15.180000px;}
._1f_c01290{margin-left:-13.494000px;}
._10_c01290{margin-left:-11.916000px;}
._16_c01290{margin-left:-10.836000px;}
._f_c01290{margin-left:-9.180000px;}
._b_c01290{margin-left:-7.932000px;}
._5_c01290{margin-left:-6.048000px;}
._e_c01290{margin-left:-4.404000px;}
._3_c01290{margin-left:-3.300000px;}
._2_c01290{margin-left:-1.980000px;}
._d_c01290{width:1.680000px;}
._a_c01290{width:2.688000px;}
._8_c01290{width:3.948000px;}
._6_c01290{width:5.712000px;}
._9_c01290{width:6.888000px;}
._7_c01290{width:7.896000px;}
._1_c01290{width:9.000000px;}
._0_c01290{width:10.080000px;}
._13_c01290{width:11.352000px;}
._4_c01290{width:12.924000px;}
._1c_c01290{width:14.316000px;}
._17_c01290{width:15.648000px;}
._1b_c01290{width:17.460000px;}
._1a_c01290{width:19.152000px;}
._19_c01290{width:41.328000px;}
._22_c01290{width:96.696000px;}
._18_c01290{width:117.240000px;}
._25_c01290{width:222.210000px;}
._15_c01290{width:227.436000px;}
._12_c01290{width:288.432000px;}
._24_c01290{width:1121.388000px;}
.fc2_c01290{color:transparent;}
.fc1_c01290{color:rgb(128,128,128);}
.fc0_c01290{color:rgb(0,0,0);}
.fs8_c01290{font-size:48.000000px;}
.fs7_c01290{font-size:54.000000px;}
.fs0_c01290{font-size:72.000000px;}
.fs2_c01290{font-size:81.000000px;}
.fs1_c01290{font-size:84.000000px;}
.fs6_c01290{font-size:102.000000px;}
.fs5_c01290{font-size:105.000000px;}
.fs4_c01290{font-size:108.000000px;}
.fs3_c01290{font-size:174.000000px;}
.y0_c01290{bottom:0.000000px;}
.y26_c01290{bottom:3.105000px;}
.y25_c01290{bottom:7.228355px;}
.y24_c01290{bottom:50.535000px;}
.y23_c01290{bottom:75.135000px;}
.y22_c01290{bottom:99.885000px;}
.y21_c01290{bottom:125.085000px;}
.y20_c01290{bottom:148.485000px;}
.y1f_c01290{bottom:173.085000px;}
.y1e_c01290{bottom:198.135000px;}
.y1d_c01290{bottom:222.435000px;}
.y1c_c01290{bottom:245.985000px;}
.y1a_c01290{bottom:260.085000px;}
.y1b_c01290{bottom:271.035000px;}
.y19_c01290{bottom:295.335000px;}
.y18_c01290{bottom:318.885000px;}
.y17_c01290{bottom:343.935000px;}
.y16_c01290{bottom:366.885000px;}
.y15_c01290{bottom:392.085000px;}
.y14_c01290{bottom:416.085000px;}
.y13_c01290{bottom:439.785000px;}
.y12_c01290{bottom:463.935000px;}
.y11_c01290{bottom:487.935000px;}
.y10_c01290{bottom:511.635000px;}
.yf_c01290{bottom:534.885000px;}
.ye_c01290{bottom:559.785000px;}
.yd_c01290{bottom:583.185000px;}
.yc_c01290{bottom:607.485000px;}
.yb_c01290{bottom:631.485000px;}
.ya_c01290{bottom:655.635000px;}
.y9_c01290{bottom:679.935000px;}
.y8_c01290{bottom:704.235000px;}
.y7_c01290{bottom:728.235000px;}
.y6_c01290{bottom:752.835000px;}
.y5_c01290{bottom:776.235000px;}
.y4_c01290{bottom:800.235000px;}
.y3_c01290{bottom:824.385000px;}
.y2_c01290{bottom:848.385000px;}
.y1_c01290{bottom:872.685000px;}
.h7_c01290{height:13.200074px;}
.h8_c01290{height:43.804688px;}
.h2_c01290{height:84.656250px;}
.h6_c01290{height:104.839927px;}
.h4_c01290{height:108.843750px;}
.h5_c01290{height:122.893066px;}
.h3_c01290{height:185.658000px;}
.h0_c01290{height:980.625000px;}
.h1_c01290{height:981.000000px;}
.w2_c01290{width:104.875500px;}
.w0_c01290{width:667.425000px;}
.w1_c01290{width:667.500000px;}
.x0_c01290{left:0.000000px;}
.x5_c01290{left:57.750000px;}
.x4_c01290{left:63.450000px;}
.x3_c01290{left:64.500000px;}
.x1_c01290{left:65.850000px;}
.x2_c01290{left:67.200000px;}
.x6_c01290{left:68.400000px;}
.x8_c01290{left:69.450000px;}
.x9_c01290{left:70.500000px;}
.x7_c01290{left:76.950000px;}
.xf_c01290{left:285.526749px;}
.xc_c01290{left:477.300000px;}
.xa_c01290{left:568.950000px;}
.xd_c01290{left:592.350000px;}
.xe_c01290{left:606.900000px;}
.xb_c01290{left:614.250000px;}
@media print{
.v0_c01290{vertical-align:0.000000pt;}
.ls2_c01290{letter-spacing:-8.000000pt;}
.ls1_c01290{letter-spacing:-2.666667pt;}
.ls0_c01290{letter-spacing:0.000000pt;}
.ws3_c01290{word-spacing:-26.400000pt;}
.ws1_c01290{word-spacing:-24.000000pt;}
.ws2_c01290{word-spacing:-19.826667pt;}
.ws0_c01290{word-spacing:-18.000000pt;}
.ws4_c01290{word-spacing:0.000000pt;}
._23_c01290{margin-left:-34.181333pt;}
._21_c01290{margin-left:-29.376000pt;}
._1d_c01290{margin-left:-25.749333pt;}
._14_c01290{margin-left:-19.264000pt;}
._20_c01290{margin-left:-18.253333pt;}
._1e_c01290{margin-left:-16.706667pt;}
._11_c01290{margin-left:-15.480000pt;}
._c_c01290{margin-left:-13.493333pt;}
._1f_c01290{margin-left:-11.994667pt;}
._10_c01290{margin-left:-10.592000pt;}
._16_c01290{margin-left:-9.632000pt;}
._f_c01290{margin-left:-8.160000pt;}
._b_c01290{margin-left:-7.050667pt;}
._5_c01290{margin-left:-5.376000pt;}
._e_c01290{margin-left:-3.914667pt;}
._3_c01290{margin-left:-2.933333pt;}
._2_c01290{margin-left:-1.760000pt;}
._d_c01290{width:1.493333pt;}
._a_c01290{width:2.389333pt;}
._8_c01290{width:3.509333pt;}
._6_c01290{width:5.077333pt;}
._9_c01290{width:6.122667pt;}
._7_c01290{width:7.018667pt;}
._1_c01290{width:8.000000pt;}
._0_c01290{width:8.960000pt;}
._13_c01290{width:10.090667pt;}
._4_c01290{width:11.488000pt;}
._1c_c01290{width:12.725333pt;}
._17_c01290{width:13.909333pt;}
._1b_c01290{width:15.520000pt;}
._1a_c01290{width:17.024000pt;}
._19_c01290{width:36.736000pt;}
._22_c01290{width:85.952000pt;}
._18_c01290{width:104.213333pt;}
._25_c01290{width:197.520000pt;}
._15_c01290{width:202.165333pt;}
._12_c01290{width:256.384000pt;}
._24_c01290{width:996.789333pt;}
.fs8_c01290{font-size:42.666667pt;}
.fs7_c01290{font-size:48.000000pt;}
.fs0_c01290{font-size:64.000000pt;}
.fs2_c01290{font-size:72.000000pt;}
.fs1_c01290{font-size:74.666667pt;}
.fs6_c01290{font-size:90.666667pt;}
.fs5_c01290{font-size:93.333333pt;}
.fs4_c01290{font-size:96.000000pt;}
.fs3_c01290{font-size:154.666667pt;}
.y0_c01290{bottom:0.000000pt;}
.y26_c01290{bottom:2.760000pt;}
.y25_c01290{bottom:6.425204pt;}
.y24_c01290{bottom:44.920000pt;}
.y23_c01290{bottom:66.786667pt;}
.y22_c01290{bottom:88.786667pt;}
.y21_c01290{bottom:111.186667pt;}
.y20_c01290{bottom:131.986667pt;}
.y1f_c01290{bottom:153.853333pt;}
.y1e_c01290{bottom:176.120000pt;}
.y1d_c01290{bottom:197.720000pt;}
.y1c_c01290{bottom:218.653333pt;}
.y1a_c01290{bottom:231.186667pt;}
.y1b_c01290{bottom:240.920000pt;}
.y19_c01290{bottom:262.520000pt;}
.y18_c01290{bottom:283.453333pt;}
.y17_c01290{bottom:305.720000pt;}
.y16_c01290{bottom:326.120000pt;}
.y15_c01290{bottom:348.520000pt;}
.y14_c01290{bottom:369.853333pt;}
.y13_c01290{bottom:390.920000pt;}
.y12_c01290{bottom:412.386667pt;}
.y11_c01290{bottom:433.720000pt;}
.y10_c01290{bottom:454.786667pt;}
.yf_c01290{bottom:475.453333pt;}
.ye_c01290{bottom:497.586667pt;}
.yd_c01290{bottom:518.386667pt;}
.yc_c01290{bottom:539.986667pt;}
.yb_c01290{bottom:561.320000pt;}
.ya_c01290{bottom:582.786667pt;}
.y9_c01290{bottom:604.386667pt;}
.y8_c01290{bottom:625.986667pt;}
.y7_c01290{bottom:647.320000pt;}
.y6_c01290{bottom:669.186667pt;}
.y5_c01290{bottom:689.986667pt;}
.y4_c01290{bottom:711.320000pt;}
.y3_c01290{bottom:732.786667pt;}
.y2_c01290{bottom:754.120000pt;}
.y1_c01290{bottom:775.720000pt;}
.h7_c01290{height:11.733399pt;}
.h8_c01290{height:38.937500pt;}
.h2_c01290{height:75.250000pt;}
.h6_c01290{height:93.191046pt;}
.h4_c01290{height:96.750000pt;}
.h5_c01290{height:109.238281pt;}
.h3_c01290{height:165.029333pt;}
.h0_c01290{height:871.666667pt;}
.h1_c01290{height:872.000000pt;}
.w2_c01290{width:93.222667pt;}
.w0_c01290{width:593.266667pt;}
.w1_c01290{width:593.333333pt;}
.x0_c01290{left:0.000000pt;}
.x5_c01290{left:51.333333pt;}
.x4_c01290{left:56.400000pt;}
.x3_c01290{left:57.333333pt;}
.x1_c01290{left:58.533333pt;}
.x2_c01290{left:59.733333pt;}
.x6_c01290{left:60.800000pt;}
.x8_c01290{left:61.733333pt;}
.x9_c01290{left:62.666667pt;}
.x7_c01290{left:68.400000pt;}
.xf_c01290{left:253.801554pt;}
.xc_c01290{left:424.266667pt;}
.xa_c01290{left:505.733333pt;}
.xd_c01290{left:526.533333pt;}
.xe_c01290{left:539.466667pt;}
.xb_c01290{left:546.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_c01291 {
    display:none;
  }
  .loading-indicator_c01291.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01291 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01291 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01291" -> "#page-container .classname_c01291")
 */
.pf_c01291 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01291 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01291.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01291 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01291 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01291 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01291 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01291 {overflow:visible;}
  }
}
.c_c01291 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01291 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01291:after { /* webkit #35443 */
  content: '';
}
.t_c01291:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01291 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01291 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01291 { /* info for Javascript */
  display:none;
}
.l_c01291 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01291 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01291 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01291:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01291{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01291;src:url('chunks/assets/font_a26d613e09fd165a437e9ea6.woff2')format("woff");}.ff1_c01291{font-family:ff1_c01291;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01291;src:url('chunks/assets/font_a2de429f945214cc22e42912.woff2')format("woff");}.ff2_c01291{font-family:ff2_c01291;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01291;src:url('chunks/assets/font_648e8ab9a1941678faf10815.woff2')format("woff");}.ff3_c01291{font-family:ff3_c01291;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01291;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff4_c01291{font-family:ff4_c01291;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01291;src:url('chunks/assets/font_e15225eb5ad4d57bcfebcd75.woff2')format("woff");}.ff5_c01291{font-family:ff5_c01291;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01291;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c01291{font-family:ff6_c01291;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01291{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01291{vertical-align:0.000000px;}
.ls1_c01291{letter-spacing:-3.000000px;}
.ls2_c01291{letter-spacing:0.000000px;}
.ls0_c01291{letter-spacing:1.800000px;}
.sc__c01291{text-shadow:none;}
.sc0_c01291{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01291{-webkit-text-stroke:0px transparent;}
.sc0_c01291{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01291{word-spacing:-17.352000px;}
.ws1_c01291{word-spacing:-17.250000px;}
.ws2_c01291{word-spacing:0.000000px;}
._27_c01291{margin-left:-26.010000px;}
._22_c01291{margin-left:-21.870000px;}
._19_c01291{margin-left:-19.812000px;}
._1b_c01291{margin-left:-17.577000px;}
._18_c01291{margin-left:-14.466000px;}
._28_c01291{margin-left:-13.365000px;}
._d_c01291{margin-left:-11.826000px;}
._21_c01291{margin-left:-10.773000px;}
._c_c01291{margin-left:-9.477000px;}
._0_c01291{margin-left:-8.424000px;}
._10_c01291{margin-left:-6.672000px;}
._7_c01291{margin-left:-5.427000px;}
._a_c01291{margin-left:-3.726000px;}
._1_c01291{margin-left:-2.304000px;}
._8_c01291{margin-left:-1.017000px;}
._e_c01291{width:1.620000px;}
._9_c01291{width:2.673000px;}
._6_c01291{width:3.888000px;}
._3_c01291{width:5.184000px;}
._5_c01291{width:6.723000px;}
._f_c01291{width:8.139000px;}
._2_c01291{width:9.144000px;}
._b_c01291{width:10.449000px;}
._4_c01291{width:11.544000px;}
._11_c01291{width:12.822000px;}
._12_c01291{width:13.887000px;}
._14_c01291{width:15.996000px;}
._16_c01291{width:17.082000px;}
._1d_c01291{width:18.279000px;}
._2a_c01291{width:22.596000px;}
._2f_c01291{width:27.786000px;}
._1a_c01291{width:33.492000px;}
._20_c01291{width:54.255000px;}
._13_c01291{width:69.948000px;}
._17_c01291{width:72.495000px;}
._15_c01291{width:73.791000px;}
._30_c01291{width:77.571000px;}
._2b_c01291{width:82.179000px;}
._1f_c01291{width:87.933000px;}
._1e_c01291{width:96.924000px;}
._26_c01291{width:101.817000px;}
._2d_c01291{width:102.882000px;}
._23_c01291{width:115.650000px;}
._2c_c01291{width:171.576000px;}
._25_c01291{width:202.770000px;}
._24_c01291{width:229.251000px;}
._29_c01291{width:277.749000px;}
._1c_c01291{width:284.958000px;}
._2e_c01291{width:995.949000px;}
.fc2_c01291{color:transparent;}
.fc1_c01291{color:rgb(128,128,128);}
.fc0_c01291{color:rgb(0,0,0);}
.fs4_c01291{font-size:45.000000px;}
.fs6_c01291{font-size:48.000000px;}
.fs0_c01291{font-size:57.000000px;}
.fs5_c01291{font-size:66.000000px;}
.fs3_c01291{font-size:69.000000px;}
.fs1_c01291{font-size:72.000000px;}
.fs2_c01291{font-size:81.000000px;}
.y0_c01291{bottom:0.000000px;}
.y26_c01291{bottom:3.105000px;}
.y25_c01291{bottom:7.228371px;}
.y24_c01291{bottom:62.115000px;}
.y23_c01291{bottom:89.865000px;}
.y22_c01291{bottom:113.115000px;}
.y21_c01291{bottom:137.415000px;}
.y20_c01291{bottom:162.465000px;}
.y1f_c01291{bottom:186.765000px;}
.y1e_c01291{bottom:211.065000px;}
.y1d_c01291{bottom:234.915000px;}
.y1c_c01291{bottom:259.665000px;}
.y1b_c01291{bottom:283.965000px;}
.y1a_c01291{bottom:309.915000px;}
.y19_c01291{bottom:332.865000px;}
.y18_c01291{bottom:357.165000px;}
.y17_c01291{bottom:382.065000px;}
.y16_c01291{bottom:406.365000px;}
.y15_c01291{bottom:430.665000px;}
.y14_c01291{bottom:454.965000px;}
.y13_c01291{bottom:479.565000px;}
.y12_c01291{bottom:501.165000px;}
.y11_c01291{bottom:527.865000px;}
.y10_c01291{bottom:551.265000px;}
.yf_c01291{bottom:573.165000px;}
.ye_c01291{bottom:599.865000px;}
.yd_c01291{bottom:622.815000px;}
.yc_c01291{bottom:647.415000px;}
.y1_c01291{bottom:654.765000px;}
.yb_c01291{bottom:671.415000px;}
.ya_c01291{bottom:695.565000px;}
.y9_c01291{bottom:720.015000px;}
.y8_c01291{bottom:744.165000px;}
.y7_c01291{bottom:769.515000px;}
.y6_c01291{bottom:791.865000px;}
.y5_c01291{bottom:816.465000px;}
.y4_c01291{bottom:840.015000px;}
.y3_c01291{bottom:864.015000px;}
.y2_c01291{bottom:888.615000px;}
.h7_c01291{height:13.200074px;}
.h8_c01291{height:43.804688px;}
.h2_c01291{height:57.445312px;}
.h6_c01291{height:67.686035px;}
.h4_c01291{height:79.497070px;}
.h3_c01291{height:84.269531px;}
.h5_c01291{height:91.160156px;}
.h1_c01291{height:986.250000px;}
.h0_c01291{height:986.325000px;}
.w2_c01291{width:104.875500px;}
.w0_c01291{width:667.425000px;}
.w1_c01291{width:667.500000px;}
.x0_c01291{left:0.000000px;}
.xd_c01291{left:31.350000px;}
.x9_c01291{left:32.700000px;}
.xe_c01291{left:41.850000px;}
.x1_c01291{left:61.050000px;}
.x5_c01291{left:69.750000px;}
.x6_c01291{left:79.950000px;}
.xc_c01291{left:110.100000px;}
.x2_c01291{left:111.750000px;}
.x4_c01291{left:112.800000px;}
.x8_c01291{left:120.450000px;}
.x7_c01291{left:121.500000px;}
.x3_c01291{left:122.550000px;}
.xa_c01291{left:124.500000px;}
.xb_c01291{left:146.850000px;}
.xf_c01291{left:212.700000px;}
.x10_c01291{left:285.526749px;}
@media print{
.v0_c01291{vertical-align:0.000000pt;}
.ls1_c01291{letter-spacing:-2.666667pt;}
.ls2_c01291{letter-spacing:0.000000pt;}
.ls0_c01291{letter-spacing:1.600000pt;}
.ws0_c01291{word-spacing:-15.424000pt;}
.ws1_c01291{word-spacing:-15.333333pt;}
.ws2_c01291{word-spacing:0.000000pt;}
._27_c01291{margin-left:-23.120000pt;}
._22_c01291{margin-left:-19.440000pt;}
._19_c01291{margin-left:-17.610667pt;}
._1b_c01291{margin-left:-15.624000pt;}
._18_c01291{margin-left:-12.858667pt;}
._28_c01291{margin-left:-11.880000pt;}
._d_c01291{margin-left:-10.512000pt;}
._21_c01291{margin-left:-9.576000pt;}
._c_c01291{margin-left:-8.424000pt;}
._0_c01291{margin-left:-7.488000pt;}
._10_c01291{margin-left:-5.930667pt;}
._7_c01291{margin-left:-4.824000pt;}
._a_c01291{margin-left:-3.312000pt;}
._1_c01291{margin-left:-2.048000pt;}
._8_c01291{margin-left:-0.904000pt;}
._e_c01291{width:1.440000pt;}
._9_c01291{width:2.376000pt;}
._6_c01291{width:3.456000pt;}
._3_c01291{width:4.608000pt;}
._5_c01291{width:5.976000pt;}
._f_c01291{width:7.234667pt;}
._2_c01291{width:8.128000pt;}
._b_c01291{width:9.288000pt;}
._4_c01291{width:10.261333pt;}
._11_c01291{width:11.397333pt;}
._12_c01291{width:12.344000pt;}
._14_c01291{width:14.218667pt;}
._16_c01291{width:15.184000pt;}
._1d_c01291{width:16.248000pt;}
._2a_c01291{width:20.085333pt;}
._2f_c01291{width:24.698667pt;}
._1a_c01291{width:29.770667pt;}
._20_c01291{width:48.226667pt;}
._13_c01291{width:62.176000pt;}
._17_c01291{width:64.440000pt;}
._15_c01291{width:65.592000pt;}
._30_c01291{width:68.952000pt;}
._2b_c01291{width:73.048000pt;}
._1f_c01291{width:78.162667pt;}
._1e_c01291{width:86.154667pt;}
._26_c01291{width:90.504000pt;}
._2d_c01291{width:91.450667pt;}
._23_c01291{width:102.800000pt;}
._2c_c01291{width:152.512000pt;}
._25_c01291{width:180.240000pt;}
._24_c01291{width:203.778667pt;}
._29_c01291{width:246.888000pt;}
._1c_c01291{width:253.296000pt;}
._2e_c01291{width:885.288000pt;}
.fs4_c01291{font-size:40.000000pt;}
.fs6_c01291{font-size:42.666667pt;}
.fs0_c01291{font-size:50.666667pt;}
.fs5_c01291{font-size:58.666667pt;}
.fs3_c01291{font-size:61.333333pt;}
.fs1_c01291{font-size:64.000000pt;}
.fs2_c01291{font-size:72.000000pt;}
.y0_c01291{bottom:0.000000pt;}
.y26_c01291{bottom:2.760000pt;}
.y25_c01291{bottom:6.425219pt;}
.y24_c01291{bottom:55.213333pt;}
.y23_c01291{bottom:79.880000pt;}
.y22_c01291{bottom:100.546667pt;}
.y21_c01291{bottom:122.146667pt;}
.y20_c01291{bottom:144.413333pt;}
.y1f_c01291{bottom:166.013333pt;}
.y1e_c01291{bottom:187.613333pt;}
.y1d_c01291{bottom:208.813333pt;}
.y1c_c01291{bottom:230.813333pt;}
.y1b_c01291{bottom:252.413333pt;}
.y1a_c01291{bottom:275.480000pt;}
.y19_c01291{bottom:295.880000pt;}
.y18_c01291{bottom:317.480000pt;}
.y17_c01291{bottom:339.613333pt;}
.y16_c01291{bottom:361.213333pt;}
.y15_c01291{bottom:382.813333pt;}
.y14_c01291{bottom:404.413333pt;}
.y13_c01291{bottom:426.280000pt;}
.y12_c01291{bottom:445.480000pt;}
.y11_c01291{bottom:469.213333pt;}
.y10_c01291{bottom:490.013333pt;}
.yf_c01291{bottom:509.480000pt;}
.ye_c01291{bottom:533.213333pt;}
.yd_c01291{bottom:553.613333pt;}
.yc_c01291{bottom:575.480000pt;}
.y1_c01291{bottom:582.013333pt;}
.yb_c01291{bottom:596.813333pt;}
.ya_c01291{bottom:618.280000pt;}
.y9_c01291{bottom:640.013333pt;}
.y8_c01291{bottom:661.480000pt;}
.y7_c01291{bottom:684.013333pt;}
.y6_c01291{bottom:703.880000pt;}
.y5_c01291{bottom:725.746667pt;}
.y4_c01291{bottom:746.680000pt;}
.y3_c01291{bottom:768.013333pt;}
.y2_c01291{bottom:789.880000pt;}
.h7_c01291{height:11.733399pt;}
.h8_c01291{height:38.937500pt;}
.h2_c01291{height:51.062500pt;}
.h6_c01291{height:60.165365pt;}
.h4_c01291{height:70.664062pt;}
.h3_c01291{height:74.906250pt;}
.h5_c01291{height:81.031250pt;}
.h1_c01291{height:876.666667pt;}
.h0_c01291{height:876.733333pt;}
.w2_c01291{width:93.222667pt;}
.w0_c01291{width:593.266667pt;}
.w1_c01291{width:593.333333pt;}
.x0_c01291{left:0.000000pt;}
.xd_c01291{left:27.866667pt;}
.x9_c01291{left:29.066667pt;}
.xe_c01291{left:37.200000pt;}
.x1_c01291{left:54.266667pt;}
.x5_c01291{left:62.000000pt;}
.x6_c01291{left:71.066667pt;}
.xc_c01291{left:97.866667pt;}
.x2_c01291{left:99.333333pt;}
.x4_c01291{left:100.266667pt;}
.x8_c01291{left:107.066667pt;}
.x7_c01291{left:108.000000pt;}
.x3_c01291{left:108.933333pt;}
.xa_c01291{left:110.666667pt;}
.xb_c01291{left:130.533333pt;}
.xf_c01291{left:189.066667pt;}
.x10_c01291{left:253.801554pt;}
}





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

.ir_c01292:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01292{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01292;src:url('chunks/assets/font_40e4f48368431904d85809bc.woff2')format("woff");}.ff1_c01292{font-family:ff1_c01292;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01292;src:url('chunks/assets/font_fb5447c928112c90dc8eabaa.woff2')format("woff");}.ff2_c01292{font-family:ff2_c01292;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01292;src:url('chunks/assets/font_2e1029e6ed024ee58fcf29bd.woff2')format("woff");}.ff3_c01292{font-family:ff3_c01292;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01292;src:url('chunks/assets/font_a0bdc8ffdf5fa7182f8f6ec9.woff2')format("woff");}.ff4_c01292{font-family:ff4_c01292;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01292;src:url('chunks/assets/font_5093e41acdd47f01abfd17d6.woff2')format("woff");}.ff5_c01292{font-family:ff5_c01292;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01292;src:url('chunks/assets/font_b177c5eeb06d1083c661d274.woff2')format("woff");}.ff6_c01292{font-family:ff6_c01292;line-height:1.284668;font-style:normal;font-weight: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_c01292;src:url('chunks/assets/font_27100824b7f9a83ac5825da9.woff2')format("woff");}.ff7_c01292{font-family:ff7_c01292;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c01292;src:url('chunks/assets/font_b25eae9b5cc0f002a678edec.woff2')format("woff");}.ff8_c01292{font-family:ff8_c01292;line-height:1.284180;font-style:normal;font-weight: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_c01292;src:url('chunks/assets/font_86b2c4af1286f01ed6b2ce48.woff2')format("woff");}.ff9_c01292{font-family:ff9_c01292;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c01292;src:url('chunks/assets/font_f6a0b6070a7a720a460c04af.woff2')format("woff");}.ffa_c01292{font-family:ffa_c01292;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c01292;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ffb_c01292{font-family:ffb_c01292;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01292{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01292{vertical-align:0.000000px;}
.ls3_c01292{letter-spacing:-9.000000px;}
.ls2_c01292{letter-spacing:0.000000px;}
.ls0_c01292{letter-spacing:5.700000px;}
.ls1_c01292{letter-spacing:6.000000px;}
.sc__c01292{text-shadow:none;}
.sc0_c01292{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01292{-webkit-text-stroke:0px transparent;}
.sc0_c01292{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01292{word-spacing:-59.184000px;}
.ws1_c01292{word-spacing:-55.044000px;}
.ws2_c01292{word-spacing:0.000000px;}
._29_c01292{margin-left:-40.800000px;}
._17_c01292{margin-left:-34.944000px;}
._28_c01292{margin-left:-33.723000px;}
._2d_c01292{margin-left:-32.094000px;}
._2a_c01292{margin-left:-30.876000px;}
._2b_c01292{margin-left:-28.347000px;}
._1d_c01292{margin-left:-24.258000px;}
._19_c01292{margin-left:-21.918000px;}
._26_c01292{margin-left:-17.577000px;}
._1f_c01292{margin-left:-16.224000px;}
._2e_c01292{margin-left:-14.682000px;}
._27_c01292{margin-left:-13.656000px;}
._2c_c01292{margin-left:-12.492000px;}
._24_c01292{margin-left:-11.388000px;}
._1a_c01292{margin-left:-10.296000px;}
._6_c01292{margin-left:-9.126000px;}
._14_c01292{margin-left:-7.254000px;}
._21_c01292{margin-left:-6.240000px;}
._11_c01292{margin-left:-5.226000px;}
._12_c01292{margin-left:-4.056000px;}
._4_c01292{margin-left:-2.652000px;}
._8_c01292{margin-left:-1.092000px;}
._2_c01292{width:1.404000px;}
._0_c01292{width:3.276000px;}
._e_c01292{width:4.524000px;}
._1_c01292{width:5.538000px;}
._3_c01292{width:6.630000px;}
._c_c01292{width:8.580000px;}
._9_c01292{width:10.218000px;}
._22_c01292{width:11.232000px;}
._5_c01292{width:12.402000px;}
._a_c01292{width:13.416000px;}
._16_c01292{width:15.288000px;}
._13_c01292{width:18.174000px;}
._b_c01292{width:19.578000px;}
._18_c01292{width:20.826000px;}
._23_c01292{width:21.840000px;}
._25_c01292{width:24.231000px;}
._7_c01292{width:25.350000px;}
._1e_c01292{width:27.456000px;}
._f_c01292{width:28.626000px;}
._10_c01292{width:39.858000px;}
._1c_c01292{width:42.354000px;}
._d_c01292{width:95.238000px;}
._20_c01292{width:107.250000px;}
._1b_c01292{width:116.220000px;}
._2f_c01292{width:207.813000px;}
._15_c01292{width:317.694000px;}
._30_c01292{width:1247.802000px;}
.fc2_c01292{color:transparent;}
.fc1_c01292{color:rgb(128,128,128);}
.fc0_c01292{color:rgb(0,0,0);}
.fs9_c01292{font-size:48.000000px;}
.fs1_c01292{font-size:57.000000px;}
.fs4_c01292{font-size:72.000000px;}
.fs0_c01292{font-size:75.000000px;}
.fs2_c01292{font-size:78.000000px;}
.fs3_c01292{font-size:81.000000px;}
.fs5_c01292{font-size:90.000000px;}
.fs8_c01292{font-size:93.000000px;}
.fs7_c01292{font-size:99.000000px;}
.fs6_c01292{font-size:102.000000px;}
.y0_c01292{bottom:0.000000px;}
.y27_c01292{bottom:3.105000px;}
.y26_c01292{bottom:7.228369px;}
.y25_c01292{bottom:60.720000px;}
.y24_c01292{bottom:82.020000px;}
.y23_c01292{bottom:107.970000px;}
.y22_c01292{bottom:132.870000px;}
.y21_c01292{bottom:157.170000px;}
.y20_c01292{bottom:180.870000px;}
.y1f_c01292{bottom:205.920000px;}
.y1e_c01292{bottom:230.070000px;}
.y1d_c01292{bottom:255.120000px;}
.y1c_c01292{bottom:278.670000px;}
.y1b_c01292{bottom:303.420000px;}
.y1a_c01292{bottom:327.720000px;}
.y19_c01292{bottom:351.720000px;}
.y18_c01292{bottom:376.920000px;}
.y17_c01292{bottom:400.620000px;}
.y16_c01292{bottom:425.520000px;}
.y15_c01292{bottom:448.470000px;}
.y14_c01292{bottom:471.870000px;}
.y13_c01292{bottom:496.470000px;}
.y12_c01292{bottom:520.770000px;}
.y11_c01292{bottom:544.620000px;}
.y10_c01292{bottom:568.620000px;}
.yf_c01292{bottom:592.320000px;}
.ye_c01292{bottom:616.620000px;}
.yd_c01292{bottom:640.170000px;}
.yc_c01292{bottom:664.170000px;}
.yb_c01292{bottom:688.170000px;}
.ya_c01292{bottom:712.170000px;}
.y9_c01292{bottom:736.470000px;}
.y8_c01292{bottom:759.270000px;}
.y2_c01292{bottom:781.320000px;}
.y7_c01292{bottom:784.620000px;}
.y6_c01292{bottom:809.670000px;}
.y5_c01292{bottom:833.670000px;}
.y1_c01292{bottom:854.820000px;}
.y4_c01292{bottom:856.470000px;}
.y3_c01292{bottom:880.770000px;}
.ha_c01292{height:13.200073px;}
.hb_c01292{height:43.804688px;}
.h3_c01292{height:59.736000px;}
.h7_c01292{height:79.497070px;}
.h2_c01292{height:81.300000px;}
.h4_c01292{height:83.226000px;}
.h6_c01292{height:91.160156px;}
.h9_c01292{height:91.274414px;}
.h5_c01292{height:98.756836px;}
.h8_c01292{height:104.839927px;}
.h1_c01292{height:986.250000px;}
.h0_c01292{height:986.550000px;}
.w1_c01292{width:104.875500px;}
.w0_c01292{width:672.000000px;}
.x0_c01292{left:0.000000px;}
.x7_c01292{left:23.400000px;}
.x8_c01292{left:32.100000px;}
.x4_c01292{left:33.150000px;}
.xd_c01292{left:47.250000px;}
.xc_c01292{left:49.350000px;}
.x5_c01292{left:50.700000px;}
.x2_c01292{left:52.050000px;}
.x1_c01292{left:53.250000px;}
.x9_c01292{left:54.300000px;}
.x6_c01292{left:63.750000px;}
.x3_c01292{left:65.250000px;}
.xa_c01292{left:66.900000px;}
.xb_c01292{left:130.350000px;}
.xe_c01292{left:287.814240px;}
@media print{
.v0_c01292{vertical-align:0.000000pt;}
.ls3_c01292{letter-spacing:-8.000000pt;}
.ls2_c01292{letter-spacing:0.000000pt;}
.ls0_c01292{letter-spacing:5.066667pt;}
.ls1_c01292{letter-spacing:5.333333pt;}
.ws0_c01292{word-spacing:-52.608000pt;}
.ws1_c01292{word-spacing:-48.928000pt;}
.ws2_c01292{word-spacing:0.000000pt;}
._29_c01292{margin-left:-36.266667pt;}
._17_c01292{margin-left:-31.061333pt;}
._28_c01292{margin-left:-29.976000pt;}
._2d_c01292{margin-left:-28.528000pt;}
._2a_c01292{margin-left:-27.445333pt;}
._2b_c01292{margin-left:-25.197333pt;}
._1d_c01292{margin-left:-21.562667pt;}
._19_c01292{margin-left:-19.482667pt;}
._26_c01292{margin-left:-15.624000pt;}
._1f_c01292{margin-left:-14.421333pt;}
._2e_c01292{margin-left:-13.050667pt;}
._27_c01292{margin-left:-12.138667pt;}
._2c_c01292{margin-left:-11.104000pt;}
._24_c01292{margin-left:-10.122667pt;}
._1a_c01292{margin-left:-9.152000pt;}
._6_c01292{margin-left:-8.112000pt;}
._14_c01292{margin-left:-6.448000pt;}
._21_c01292{margin-left:-5.546667pt;}
._11_c01292{margin-left:-4.645333pt;}
._12_c01292{margin-left:-3.605333pt;}
._4_c01292{margin-left:-2.357333pt;}
._8_c01292{margin-left:-0.970667pt;}
._2_c01292{width:1.248000pt;}
._0_c01292{width:2.912000pt;}
._e_c01292{width:4.021333pt;}
._1_c01292{width:4.922667pt;}
._3_c01292{width:5.893333pt;}
._c_c01292{width:7.626667pt;}
._9_c01292{width:9.082667pt;}
._22_c01292{width:9.984000pt;}
._5_c01292{width:11.024000pt;}
._a_c01292{width:11.925333pt;}
._16_c01292{width:13.589333pt;}
._13_c01292{width:16.154667pt;}
._b_c01292{width:17.402667pt;}
._18_c01292{width:18.512000pt;}
._23_c01292{width:19.413333pt;}
._25_c01292{width:21.538667pt;}
._7_c01292{width:22.533333pt;}
._1e_c01292{width:24.405333pt;}
._f_c01292{width:25.445333pt;}
._10_c01292{width:35.429333pt;}
._1c_c01292{width:37.648000pt;}
._d_c01292{width:84.656000pt;}
._20_c01292{width:95.333333pt;}
._1b_c01292{width:103.306667pt;}
._2f_c01292{width:184.722667pt;}
._15_c01292{width:282.394667pt;}
._30_c01292{width:1109.157333pt;}
.fs9_c01292{font-size:42.666667pt;}
.fs1_c01292{font-size:50.666667pt;}
.fs4_c01292{font-size:64.000000pt;}
.fs0_c01292{font-size:66.666667pt;}
.fs2_c01292{font-size:69.333333pt;}
.fs3_c01292{font-size:72.000000pt;}
.fs5_c01292{font-size:80.000000pt;}
.fs8_c01292{font-size:82.666667pt;}
.fs7_c01292{font-size:88.000000pt;}
.fs6_c01292{font-size:90.666667pt;}
.y0_c01292{bottom:0.000000pt;}
.y27_c01292{bottom:2.760000pt;}
.y26_c01292{bottom:6.425217pt;}
.y25_c01292{bottom:53.973333pt;}
.y24_c01292{bottom:72.906667pt;}
.y23_c01292{bottom:95.973333pt;}
.y22_c01292{bottom:118.106667pt;}
.y21_c01292{bottom:139.706667pt;}
.y20_c01292{bottom:160.773333pt;}
.y1f_c01292{bottom:183.040000pt;}
.y1e_c01292{bottom:204.506667pt;}
.y1d_c01292{bottom:226.773333pt;}
.y1c_c01292{bottom:247.706667pt;}
.y1b_c01292{bottom:269.706667pt;}
.y1a_c01292{bottom:291.306667pt;}
.y19_c01292{bottom:312.640000pt;}
.y18_c01292{bottom:335.040000pt;}
.y17_c01292{bottom:356.106667pt;}
.y16_c01292{bottom:378.240000pt;}
.y15_c01292{bottom:398.640000pt;}
.y14_c01292{bottom:419.440000pt;}
.y13_c01292{bottom:441.306667pt;}
.y12_c01292{bottom:462.906667pt;}
.y11_c01292{bottom:484.106667pt;}
.y10_c01292{bottom:505.440000pt;}
.yf_c01292{bottom:526.506667pt;}
.ye_c01292{bottom:548.106667pt;}
.yd_c01292{bottom:569.040000pt;}
.yc_c01292{bottom:590.373333pt;}
.yb_c01292{bottom:611.706667pt;}
.ya_c01292{bottom:633.040000pt;}
.y9_c01292{bottom:654.640000pt;}
.y8_c01292{bottom:674.906667pt;}
.y2_c01292{bottom:694.506667pt;}
.y7_c01292{bottom:697.440000pt;}
.y6_c01292{bottom:719.706667pt;}
.y5_c01292{bottom:741.040000pt;}
.y1_c01292{bottom:759.840000pt;}
.y4_c01292{bottom:761.306667pt;}
.y3_c01292{bottom:782.906667pt;}
.ha_c01292{height:11.733399pt;}
.hb_c01292{height:38.937500pt;}
.h3_c01292{height:53.098667pt;}
.h7_c01292{height:70.664062pt;}
.h2_c01292{height:72.266667pt;}
.h4_c01292{height:73.978667pt;}
.h6_c01292{height:81.031250pt;}
.h9_c01292{height:81.132812pt;}
.h5_c01292{height:87.783854pt;}
.h8_c01292{height:93.191046pt;}
.h1_c01292{height:876.666667pt;}
.h0_c01292{height:876.933333pt;}
.w1_c01292{width:93.222667pt;}
.w0_c01292{width:597.333333pt;}
.x0_c01292{left:0.000000pt;}
.x7_c01292{left:20.800000pt;}
.x8_c01292{left:28.533333pt;}
.x4_c01292{left:29.466667pt;}
.xd_c01292{left:42.000000pt;}
.xc_c01292{left:43.866667pt;}
.x5_c01292{left:45.066667pt;}
.x2_c01292{left:46.266667pt;}
.x1_c01292{left:47.333333pt;}
.x9_c01292{left:48.266667pt;}
.x6_c01292{left:56.666667pt;}
.x3_c01292{left:58.000000pt;}
.xa_c01292{left:59.466667pt;}
.xb_c01292{left:115.866667pt;}
.xe_c01292{left:255.834880pt;}
}





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

.ir_c01293:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01293{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01293;src:url('chunks/assets/font_57a602bb72d6bcb4622b7cb0.woff2')format("woff");}.ff1_c01293{font-family:ff1_c01293;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01293;src:url('chunks/assets/font_f8b7188b02af9e6163640a2e.woff2')format("woff");}.ff2_c01293{font-family:ff2_c01293;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01293;src:url('chunks/assets/font_49e0bfbe25bf87e803e0f037.woff2')format("woff");}.ff3_c01293{font-family:ff3_c01293;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01293;src:url('chunks/assets/font_84d2ce1ca66c887adfe2bc2d.woff2')format("woff");}.ff4_c01293{font-family:ff4_c01293;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01293;src:url('chunks/assets/font_8f549290086d21386a0e614d.woff2')format("woff");}.ff5_c01293{font-family:ff5_c01293;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01293;src:url('chunks/assets/font_974cc3f661c67424f6cd912a.woff2')format("woff");}.ff6_c01293{font-family:ff6_c01293;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01293;src:url('chunks/assets/font_81ce8675a4aa696518e3e9a6.woff2')format("woff");}.ff7_c01293{font-family:ff7_c01293;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c01293;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff8_c01293{font-family:ff8_c01293;line-height:1.219238;font-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_c01293{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m0_c01293{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01293{vertical-align:0.000000px;}
.ls1_c01293{letter-spacing:0.000000px;}
.ls0_c01293{letter-spacing:11.544000px;}
.sc__c01293{text-shadow:none;}
.sc0_c01293{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01293{-webkit-text-stroke:0px transparent;}
.sc0_c01293{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01293{word-spacing:-33.012000px;}
.ws3_c01293{word-spacing:-18.798000px;}
.ws0_c01293{word-spacing:-17.352000px;}
.ws1_c01293{word-spacing:-15.906000px;}
.ws4_c01293{word-spacing:0.000000px;}
._14_c01293{margin-left:-33.150000px;}
._24_c01293{margin-left:-30.219000px;}
._9_c01293{margin-left:-24.336000px;}
._16_c01293{margin-left:-18.876000px;}
._23_c01293{margin-left:-16.368000px;}
._d_c01293{margin-left:-13.584000px;}
._13_c01293{margin-left:-10.920000px;}
._19_c01293{margin-left:-9.633000px;}
._10_c01293{margin-left:-8.094000px;}
._1b_c01293{margin-left:-6.942000px;}
._7_c01293{margin-left:-5.724000px;}
._8_c01293{margin-left:-4.224000px;}
._0_c01293{margin-left:-2.808000px;}
._1_c01293{margin-left:-1.440000px;}
._2_c01293{width:1.008000px;}
._3_c01293{width:2.268000px;}
._6_c01293{width:3.546000px;}
._4_c01293{width:5.394000px;}
._b_c01293{width:6.804000px;}
._f_c01293{width:8.574000px;}
._e_c01293{width:9.618000px;}
._11_c01293{width:10.650000px;}
._c_c01293{width:11.934000px;}
._20_c01293{width:13.296000px;}
._a_c01293{width:14.898000px;}
._1e_c01293{width:25.347000px;}
._1f_c01293{width:30.927000px;}
._1a_c01293{width:54.930000px;}
._18_c01293{width:64.623000px;}
._21_c01293{width:69.420000px;}
._15_c01293{width:77.844000px;}
._1d_c01293{width:83.268000px;}
._22_c01293{width:93.087000px;}
._5_c01293{width:96.276000px;}
._1c_c01293{width:109.008000px;}
._17_c01293{width:194.844000px;}
._12_c01293{width:356.214000px;}
._25_c01293{width:1179.705000px;}
.fc2_c01293{color:transparent;}
.fc1_c01293{color:rgb(128,128,128);}
.fc0_c01293{color:rgb(0,0,0);}
.fs9_c01293{font-size:48.000000px;}
.fs7_c01293{font-size:63.000000px;}
.fs5_c01293{font-size:66.000000px;}
.fs6_c01293{font-size:69.000000px;}
.fs0_c01293{font-size:72.000000px;}
.fs1_c01293{font-size:78.000000px;}
.fs4_c01293{font-size:81.000000px;}
.fs3_c01293{font-size:84.000000px;}
.fs2_c01293{font-size:87.000000px;}
.fs8_c01293{font-size:93.000000px;}
.y0_c01293{bottom:0.000000px;}
.y25_c01293{bottom:3.105000px;}
.y24_c01293{bottom:7.228371px;}
.y23_c01293{bottom:63.165000px;}
.y22_c01293{bottom:86.715000px;}
.y21_c01293{bottom:111.015000px;}
.y20_c01293{bottom:136.365000px;}
.y1f_c01293{bottom:159.765000px;}
.y1e_c01293{bottom:186.015000px;}
.y1d_c01293{bottom:208.965000px;}
.y1c_c01293{bottom:233.265000px;}
.y1b_c01293{bottom:259.665000px;}
.y1a_c01293{bottom:283.215000px;}
.y19_c01293{bottom:306.765000px;}
.y18_c01293{bottom:331.065000px;}
.y17_c01293{bottom:355.515000px;}
.y16_c01293{bottom:379.365000px;}
.y15_c01293{bottom:403.365000px;}
.y14_c01293{bottom:427.965000px;}
.y13_c01293{bottom:451.665000px;}
.y12_c01293{bottom:475.515000px;}
.y11_c01293{bottom:501.615000px;}
.y10_c01293{bottom:525.165000px;}
.yf_c01293{bottom:548.115000px;}
.ye_c01293{bottom:572.715000px;}
.yd_c01293{bottom:597.465000px;}
.yc_c01293{bottom:621.315000px;}
.yb_c01293{bottom:644.715000px;}
.ya_c01293{bottom:668.715000px;}
.y9_c01293{bottom:693.015000px;}
.y8_c01293{bottom:717.315000px;}
.y7_c01293{bottom:738.765000px;}
.y6_c01293{bottom:764.865000px;}
.y5_c01293{bottom:789.765000px;}
.y4_c01293{bottom:813.165000px;}
.y3_c01293{bottom:837.465000px;}
.y2_c01293{bottom:861.015000px;}
.y1_c01293{bottom:885.015000px;}
.h9_c01293{height:13.200074px;}
.ha_c01293{height:43.804688px;}
.h5_c01293{height:79.497070px;}
.h4_c01293{height:83.226000px;}
.h6_c01293{height:83.563477px;}
.h2_c01293{height:84.269531px;}
.h3_c01293{height:87.679688px;}
.h8_c01293{height:91.274414px;}
.h7_c01293{height:98.756836px;}
.h1_c01293{height:986.250000px;}
.h0_c01293{height:986.325000px;}
.w2_c01293{width:104.875500px;}
.w0_c01293{width:667.425000px;}
.w1_c01293{width:667.500000px;}
.x0_c01293{left:0.000000px;}
.x9_c01293{left:32.400000px;}
.xd_c01293{left:33.750000px;}
.xa_c01293{left:63.150000px;}
.xb_c01293{left:74.250000px;}
.x7_c01293{left:92.700000px;}
.xe_c01293{left:114.300000px;}
.x1_c01293{left:116.700000px;}
.x6_c01293{left:129.600000px;}
.xf_c01293{left:130.950000px;}
.x4_c01293{left:132.300000px;}
.xc_c01293{left:150.150000px;}
.x5_c01293{left:157.500000px;}
.x8_c01293{left:165.300000px;}
.x10_c01293{left:254.100000px;}
.x11_c01293{left:285.526749px;}
.x2_c01293{left:603.000000px;}
.x3_c01293{left:615.600000px;}
@media print{
.v0_c01293{vertical-align:0.000000pt;}
.ls1_c01293{letter-spacing:0.000000pt;}
.ls0_c01293{letter-spacing:10.261333pt;}
.ws2_c01293{word-spacing:-29.344000pt;}
.ws3_c01293{word-spacing:-16.709333pt;}
.ws0_c01293{word-spacing:-15.424000pt;}
.ws1_c01293{word-spacing:-14.138667pt;}
.ws4_c01293{word-spacing:0.000000pt;}
._14_c01293{margin-left:-29.466667pt;}
._24_c01293{margin-left:-26.861333pt;}
._9_c01293{margin-left:-21.632000pt;}
._16_c01293{margin-left:-16.778667pt;}
._23_c01293{margin-left:-14.549333pt;}
._d_c01293{margin-left:-12.074667pt;}
._13_c01293{margin-left:-9.706667pt;}
._19_c01293{margin-left:-8.562667pt;}
._10_c01293{margin-left:-7.194667pt;}
._1b_c01293{margin-left:-6.170667pt;}
._7_c01293{margin-left:-5.088000pt;}
._8_c01293{margin-left:-3.754667pt;}
._0_c01293{margin-left:-2.496000pt;}
._1_c01293{margin-left:-1.280000pt;}
._2_c01293{width:0.896000pt;}
._3_c01293{width:2.016000pt;}
._6_c01293{width:3.152000pt;}
._4_c01293{width:4.794667pt;}
._b_c01293{width:6.048000pt;}
._f_c01293{width:7.621333pt;}
._e_c01293{width:8.549333pt;}
._11_c01293{width:9.466667pt;}
._c_c01293{width:10.608000pt;}
._20_c01293{width:11.818667pt;}
._a_c01293{width:13.242667pt;}
._1e_c01293{width:22.530667pt;}
._1f_c01293{width:27.490667pt;}
._1a_c01293{width:48.826667pt;}
._18_c01293{width:57.442667pt;}
._21_c01293{width:61.706667pt;}
._15_c01293{width:69.194667pt;}
._1d_c01293{width:74.016000pt;}
._22_c01293{width:82.744000pt;}
._5_c01293{width:85.578667pt;}
._1c_c01293{width:96.896000pt;}
._17_c01293{width:173.194667pt;}
._12_c01293{width:316.634667pt;}
._25_c01293{width:1048.626667pt;}
.fs9_c01293{font-size:42.666667pt;}
.fs7_c01293{font-size:56.000000pt;}
.fs5_c01293{font-size:58.666667pt;}
.fs6_c01293{font-size:61.333333pt;}
.fs0_c01293{font-size:64.000000pt;}
.fs1_c01293{font-size:69.333333pt;}
.fs4_c01293{font-size:72.000000pt;}
.fs3_c01293{font-size:74.666667pt;}
.fs2_c01293{font-size:77.333333pt;}
.fs8_c01293{font-size:82.666667pt;}
.y0_c01293{bottom:0.000000pt;}
.y25_c01293{bottom:2.760000pt;}
.y24_c01293{bottom:6.425219pt;}
.y23_c01293{bottom:56.146667pt;}
.y22_c01293{bottom:77.080000pt;}
.y21_c01293{bottom:98.680000pt;}
.y20_c01293{bottom:121.213333pt;}
.y1f_c01293{bottom:142.013333pt;}
.y1e_c01293{bottom:165.346667pt;}
.y1d_c01293{bottom:185.746667pt;}
.y1c_c01293{bottom:207.346667pt;}
.y1b_c01293{bottom:230.813333pt;}
.y1a_c01293{bottom:251.746667pt;}
.y19_c01293{bottom:272.680000pt;}
.y18_c01293{bottom:294.280000pt;}
.y17_c01293{bottom:316.013333pt;}
.y16_c01293{bottom:337.213333pt;}
.y15_c01293{bottom:358.546667pt;}
.y14_c01293{bottom:380.413333pt;}
.y13_c01293{bottom:401.480000pt;}
.y12_c01293{bottom:422.680000pt;}
.y11_c01293{bottom:445.880000pt;}
.y10_c01293{bottom:466.813333pt;}
.yf_c01293{bottom:487.213333pt;}
.ye_c01293{bottom:509.080000pt;}
.yd_c01293{bottom:531.080000pt;}
.yc_c01293{bottom:552.280000pt;}
.yb_c01293{bottom:573.080000pt;}
.ya_c01293{bottom:594.413333pt;}
.y9_c01293{bottom:616.013333pt;}
.y8_c01293{bottom:637.613333pt;}
.y7_c01293{bottom:656.680000pt;}
.y6_c01293{bottom:679.880000pt;}
.y5_c01293{bottom:702.013333pt;}
.y4_c01293{bottom:722.813333pt;}
.y3_c01293{bottom:744.413333pt;}
.y2_c01293{bottom:765.346667pt;}
.y1_c01293{bottom:786.680000pt;}
.h9_c01293{height:11.733399pt;}
.ha_c01293{height:38.937500pt;}
.h5_c01293{height:70.664062pt;}
.h4_c01293{height:73.978667pt;}
.h6_c01293{height:74.278646pt;}
.h2_c01293{height:74.906250pt;}
.h3_c01293{height:77.937500pt;}
.h8_c01293{height:81.132812pt;}
.h7_c01293{height:87.783854pt;}
.h1_c01293{height:876.666667pt;}
.h0_c01293{height:876.733333pt;}
.w2_c01293{width:93.222667pt;}
.w0_c01293{width:593.266667pt;}
.w1_c01293{width:593.333333pt;}
.x0_c01293{left:0.000000pt;}
.x9_c01293{left:28.800000pt;}
.xd_c01293{left:30.000000pt;}
.xa_c01293{left:56.133333pt;}
.xb_c01293{left:66.000000pt;}
.x7_c01293{left:82.400000pt;}
.xe_c01293{left:101.600000pt;}
.x1_c01293{left:103.733333pt;}
.x6_c01293{left:115.200000pt;}
.xf_c01293{left:116.400000pt;}
.x4_c01293{left:117.600000pt;}
.xc_c01293{left:133.466667pt;}
.x5_c01293{left:140.000000pt;}
.x8_c01293{left:146.933333pt;}
.x10_c01293{left:225.866667pt;}
.x11_c01293{left:253.801554pt;}
.x2_c01293{left:536.000000pt;}
.x3_c01293{left:547.200000pt;}
}





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

.ir_c01294:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01294{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01294;src:url('chunks/assets/font_c466b53c84a48eef41e82d38.woff2')format("woff");}.ff1_c01294{font-family:ff1_c01294;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01294;src:url('chunks/assets/font_e807cc8c7ac8d565221a4cae.woff2')format("woff");}.ff2_c01294{font-family:ff2_c01294;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01294;src:url('chunks/assets/font_4d1956c1c31af0ec8c054988.woff2')format("woff");}.ff3_c01294{font-family:ff3_c01294;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01294;src:url('chunks/assets/font_0b2abc1f1cd823359a1e43e0.woff2')format("woff");}.ff4_c01294{font-family:ff4_c01294;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01294;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff5_c01294{font-family:ff5_c01294;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01294;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c01294{font-family:ff6_c01294;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01294{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01294{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01294{vertical-align:0.000000px;}
.ls5_c01294{letter-spacing:0.000000px;}
.ls4_c01294{letter-spacing:0.300000px;}
.ls1_c01294{letter-spacing:4.500000px;}
.ls6_c01294{letter-spacing:9.000000px;}
.ls2_c01294{letter-spacing:13.350000px;}
.ls3_c01294{letter-spacing:14.112000px;}
.ls0_c01294{letter-spacing:16.773000px;}
.ls7_c01294{letter-spacing:90.000000px;}
.sc__c01294{text-shadow:none;}
.sc0_c01294{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01294{-webkit-text-stroke:0px transparent;}
.sc0_c01294{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01294{word-spacing:-76.686000px;}
.ws0_c01294{word-spacing:-20.250000px;}
.ws3_c01294{word-spacing:0.000000px;}
.ws2_c01294{word-spacing:175.923000px;}
._1e_c01294{margin-left:-104.700000px;}
._1c_c01294{margin-left:-88.776000px;}
._1b_c01294{margin-left:-81.189000px;}
._1d_c01294{margin-left:-79.218000px;}
._24_c01294{margin-left:-28.026000px;}
._27_c01294{margin-left:-19.440000px;}
._22_c01294{margin-left:-15.633000px;}
._17_c01294{margin-left:-13.479000px;}
._12_c01294{margin-left:-11.097000px;}
._18_c01294{margin-left:-9.381000px;}
._f_c01294{margin-left:-7.677000px;}
._13_c01294{margin-left:-6.444000px;}
._16_c01294{margin-left:-5.184000px;}
._15_c01294{margin-left:-4.050000px;}
._c_c01294{margin-left:-2.448000px;}
._11_c01294{margin-left:-1.152000px;}
._e_c01294{width:1.377000px;}
._d_c01294{width:3.078000px;}
._2_c01294{width:4.959000px;}
._0_c01294{width:6.885000px;}
._1_c01294{width:8.424000px;}
._10_c01294{width:9.603000px;}
._5_c01294{width:10.728000px;}
._b_c01294{width:11.982000px;}
._8_c01294{width:13.752000px;}
._7_c01294{width:14.904000px;}
._14_c01294{width:16.848000px;}
._4_c01294{width:18.648000px;}
._6_c01294{width:19.656000px;}
._3_c01294{width:22.650000px;}
._a_c01294{width:24.201000px;}
._28_c01294{width:26.973000px;}
._9_c01294{width:31.104000px;}
._1f_c01294{width:40.959000px;}
._21_c01294{width:59.859000px;}
._23_c01294{width:166.335000px;}
._20_c01294{width:190.278000px;}
._25_c01294{width:290.709000px;}
._19_c01294{width:472.560000px;}
._1a_c01294{width:592.572000px;}
._26_c01294{width:1139.022000px;}
.fc2_c01294{color:transparent;}
.fc1_c01294{color:rgb(128,128,128);}
.fc0_c01294{color:rgb(0,0,0);}
.fs3_c01294{font-size:48.000000px;}
.fs2_c01294{font-size:72.000000px;}
.fs0_c01294{font-size:81.000000px;}
.fs1_c01294{font-size:87.000000px;}
.y0_c01294{bottom:0.000000px;}
.y26_c01294{bottom:3.105000px;}
.y25_c01294{bottom:7.228369px;}
.y24_c01294{bottom:65.370000px;}
.y23_c01294{bottom:90.120000px;}
.y22_c01294{bottom:115.320000px;}
.y21_c01294{bottom:139.320000px;}
.y20_c01294{bottom:164.070000px;}
.y1f_c01294{bottom:187.920000px;}
.y1e_c01294{bottom:211.620000px;}
.y1d_c01294{bottom:236.820000px;}
.y1c_c01294{bottom:261.270000px;}
.y1b_c01294{bottom:285.870000px;}
.y1a_c01294{bottom:309.720000px;}
.y19_c01294{bottom:334.170000px;}
.y18_c01294{bottom:358.320000px;}
.y17_c01294{bottom:383.670000px;}
.y16_c01294{bottom:406.920000px;}
.y15_c01294{bottom:430.920000px;}
.y14_c01294{bottom:454.620000px;}
.y13_c01294{bottom:478.620000px;}
.y12_c01294{bottom:502.920000px;}
.y11_c01294{bottom:526.620000px;}
.y10_c01294{bottom:550.170000px;}
.yf_c01294{bottom:573.720000px;}
.ye_c01294{bottom:597.420000px;}
.yd_c01294{bottom:623.370000px;}
.yc_c01294{bottom:646.020000px;}
.yb_c01294{bottom:669.570000px;}
.ya_c01294{bottom:693.570000px;}
.y9_c01294{bottom:717.120000px;}
.y8_c01294{bottom:742.170000px;}
.y7_c01294{bottom:761.970000px;}
.y6_c01294{bottom:789.420000px;}
.y5_c01294{bottom:812.970000px;}
.y4_c01294{bottom:837.270000px;}
.y3_c01294{bottom:861.270000px;}
.y2_c01294{bottom:884.820000px;}
.y1_c01294{bottom:919.020000px;}
.h6_c01294{height:13.200073px;}
.h7_c01294{height:43.804688px;}
.h3_c01294{height:79.497070px;}
.h4_c01294{height:84.269531px;}
.h5_c01294{height:91.160156px;}
.h2_c01294{height:91.176000px;}
.h1_c01294{height:986.250000px;}
.h0_c01294{height:986.550000px;}
.w1_c01294{width:104.875500px;}
.w0_c01294{width:672.000000px;}
.x0_c01294{left:0.000000px;}
.x3_c01294{left:50.250000px;}
.x2_c01294{left:51.300000px;}
.x4_c01294{left:52.350000px;}
.x5_c01294{left:53.700000px;}
.x6_c01294{left:54.750000px;}
.x7_c01294{left:55.800000px;}
.x1_c01294{left:84.000000px;}
.x8_c01294{left:108.750000px;}
.x9_c01294{left:287.814240px;}
@media print{
.v0_c01294{vertical-align:0.000000pt;}
.ls5_c01294{letter-spacing:0.000000pt;}
.ls4_c01294{letter-spacing:0.266667pt;}
.ls1_c01294{letter-spacing:4.000000pt;}
.ls6_c01294{letter-spacing:8.000000pt;}
.ls2_c01294{letter-spacing:11.866667pt;}
.ls3_c01294{letter-spacing:12.544000pt;}
.ls0_c01294{letter-spacing:14.909333pt;}
.ls7_c01294{letter-spacing:80.000000pt;}
.ws1_c01294{word-spacing:-68.165333pt;}
.ws0_c01294{word-spacing:-18.000000pt;}
.ws3_c01294{word-spacing:0.000000pt;}
.ws2_c01294{word-spacing:156.376000pt;}
._1e_c01294{margin-left:-93.066667pt;}
._1c_c01294{margin-left:-78.912000pt;}
._1b_c01294{margin-left:-72.168000pt;}
._1d_c01294{margin-left:-70.416000pt;}
._24_c01294{margin-left:-24.912000pt;}
._27_c01294{margin-left:-17.280000pt;}
._22_c01294{margin-left:-13.896000pt;}
._17_c01294{margin-left:-11.981333pt;}
._12_c01294{margin-left:-9.864000pt;}
._18_c01294{margin-left:-8.338667pt;}
._f_c01294{margin-left:-6.824000pt;}
._13_c01294{margin-left:-5.728000pt;}
._16_c01294{margin-left:-4.608000pt;}
._15_c01294{margin-left:-3.600000pt;}
._c_c01294{margin-left:-2.176000pt;}
._11_c01294{margin-left:-1.024000pt;}
._e_c01294{width:1.224000pt;}
._d_c01294{width:2.736000pt;}
._2_c01294{width:4.408000pt;}
._0_c01294{width:6.120000pt;}
._1_c01294{width:7.488000pt;}
._10_c01294{width:8.536000pt;}
._5_c01294{width:9.536000pt;}
._b_c01294{width:10.650667pt;}
._8_c01294{width:12.224000pt;}
._7_c01294{width:13.248000pt;}
._14_c01294{width:14.976000pt;}
._4_c01294{width:16.576000pt;}
._6_c01294{width:17.472000pt;}
._3_c01294{width:20.133333pt;}
._a_c01294{width:21.512000pt;}
._28_c01294{width:23.976000pt;}
._9_c01294{width:27.648000pt;}
._1f_c01294{width:36.408000pt;}
._21_c01294{width:53.208000pt;}
._23_c01294{width:147.853333pt;}
._20_c01294{width:169.136000pt;}
._25_c01294{width:258.408000pt;}
._19_c01294{width:420.053333pt;}
._1a_c01294{width:526.730667pt;}
._26_c01294{width:1012.464000pt;}
.fs3_c01294{font-size:42.666667pt;}
.fs2_c01294{font-size:64.000000pt;}
.fs0_c01294{font-size:72.000000pt;}
.fs1_c01294{font-size:77.333333pt;}
.y0_c01294{bottom:0.000000pt;}
.y26_c01294{bottom:2.760000pt;}
.y25_c01294{bottom:6.425217pt;}
.y24_c01294{bottom:58.106667pt;}
.y23_c01294{bottom:80.106667pt;}
.y22_c01294{bottom:102.506667pt;}
.y21_c01294{bottom:123.840000pt;}
.y20_c01294{bottom:145.840000pt;}
.y1f_c01294{bottom:167.040000pt;}
.y1e_c01294{bottom:188.106667pt;}
.y1d_c01294{bottom:210.506667pt;}
.y1c_c01294{bottom:232.240000pt;}
.y1b_c01294{bottom:254.106667pt;}
.y1a_c01294{bottom:275.306667pt;}
.y19_c01294{bottom:297.040000pt;}
.y18_c01294{bottom:318.506667pt;}
.y17_c01294{bottom:341.040000pt;}
.y16_c01294{bottom:361.706667pt;}
.y15_c01294{bottom:383.040000pt;}
.y14_c01294{bottom:404.106667pt;}
.y13_c01294{bottom:425.440000pt;}
.y12_c01294{bottom:447.040000pt;}
.y11_c01294{bottom:468.106667pt;}
.y10_c01294{bottom:489.040000pt;}
.yf_c01294{bottom:509.973333pt;}
.ye_c01294{bottom:531.040000pt;}
.yd_c01294{bottom:554.106667pt;}
.yc_c01294{bottom:574.240000pt;}
.yb_c01294{bottom:595.173333pt;}
.ya_c01294{bottom:616.506667pt;}
.y9_c01294{bottom:637.440000pt;}
.y8_c01294{bottom:659.706667pt;}
.y7_c01294{bottom:677.306667pt;}
.y6_c01294{bottom:701.706667pt;}
.y5_c01294{bottom:722.640000pt;}
.y4_c01294{bottom:744.240000pt;}
.y3_c01294{bottom:765.573333pt;}
.y2_c01294{bottom:786.506667pt;}
.y1_c01294{bottom:816.906667pt;}
.h6_c01294{height:11.733399pt;}
.h7_c01294{height:38.937500pt;}
.h3_c01294{height:70.664062pt;}
.h4_c01294{height:74.906250pt;}
.h5_c01294{height:81.031250pt;}
.h2_c01294{height:81.045333pt;}
.h1_c01294{height:876.666667pt;}
.h0_c01294{height:876.933333pt;}
.w1_c01294{width:93.222667pt;}
.w0_c01294{width:597.333333pt;}
.x0_c01294{left:0.000000pt;}
.x3_c01294{left:44.666667pt;}
.x2_c01294{left:45.600000pt;}
.x4_c01294{left:46.533333pt;}
.x5_c01294{left:47.733333pt;}
.x6_c01294{left:48.666667pt;}
.x7_c01294{left:49.600000pt;}
.x1_c01294{left:74.666667pt;}
.x8_c01294{left:96.666667pt;}
.x9_c01294{left:255.834880pt;}
}





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

.ir_c01295:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01295{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01295;src:url('chunks/assets/font_09c794dfc811a1a82e0a7ec7.woff2')format("woff");}.ff1_c01295{font-family:ff1_c01295;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01295;src:url('chunks/assets/font_a592e78cb05487297c1aa218.woff2')format("woff");}.ff2_c01295{font-family:ff2_c01295;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01295;src:url('chunks/assets/font_5ca51b434dfbf69fef1fd75d.woff2')format("woff");}.ff3_c01295{font-family:ff3_c01295;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01295;src:url('chunks/assets/font_545c9231f25f73389926009f.woff2')format("woff");}.ff4_c01295{font-family:ff4_c01295;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01295;src:url('chunks/assets/font_a74c170b86cda4111c5cc0b5.woff2')format("woff");}.ff5_c01295{font-family:ff5_c01295;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01295;src:url('chunks/assets/font_dbbbec556bff0aee7edd3109.woff2')format("woff");}.ff6_c01295{font-family:ff6_c01295;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01295;src:url('chunks/assets/font_bb6eaa027a05ab9f87d76bcb.woff2')format("woff");}.ff7_c01295{font-family:ff7_c01295;line-height:1.311035;font-style:normal;font-weight: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_c01295;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff8_c01295{font-family:ff8_c01295;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01295{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01295{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01295{vertical-align:0.000000px;}
.ls2_c01295{letter-spacing:0.000000px;}
.ls0_c01295{letter-spacing:1.260000px;}
.ls1_c01295{letter-spacing:4.200000px;}
.ls3_c01295{letter-spacing:9.000000px;}
.sc__c01295{text-shadow:none;}
.sc0_c01295{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01295{-webkit-text-stroke:0px transparent;}
.sc0_c01295{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01295{word-spacing:-53.376000px;}
.ws0_c01295{word-spacing:-42.408000px;}
.ws9_c01295{word-spacing:-24.000000px;}
.wsb_c01295{word-spacing:-21.750000px;}
.ws3_c01295{word-spacing:-15.000000px;}
.ws6_c01295{word-spacing:-3.300000px;}
.ws5_c01295{word-spacing:-3.240000px;}
.wsa_c01295{word-spacing:-2.880000px;}
.ws7_c01295{word-spacing:-2.460000px;}
.ws2_c01295{word-spacing:-2.400000px;}
.ws8_c01295{word-spacing:-1.320000px;}
.ws4_c01295{word-spacing:-0.300000px;}
.wsc_c01295{word-spacing:0.000000px;}
._1e_c01295{margin-left:-40.200000px;}
._21_c01295{margin-left:-27.585000px;}
._1a_c01295{margin-left:-18.531000px;}
._2d_c01295{margin-left:-15.957000px;}
._29_c01295{margin-left:-14.094000px;}
._16_c01295{margin-left:-12.150000px;}
._17_c01295{margin-left:-10.989000px;}
._24_c01295{margin-left:-9.975000px;}
._10_c01295{margin-left:-8.775000px;}
._12_c01295{margin-left:-6.831000px;}
._c_c01295{margin-left:-5.508000px;}
._b_c01295{margin-left:-4.050000px;}
._11_c01295{margin-left:-2.997000px;}
._d_c01295{margin-left:-1.755000px;}
._f_c01295{width:1.323000px;}
._e_c01295{width:2.349000px;}
._9_c01295{width:3.564000px;}
._a_c01295{width:5.427000px;}
._1_c01295{width:7.128000px;}
._5_c01295{width:8.640000px;}
._3_c01295{width:9.792000px;}
._1b_c01295{width:10.848000px;}
._7_c01295{width:11.952000px;}
._6_c01295{width:13.464000px;}
._27_c01295{width:14.661000px;}
._0_c01295{width:15.876000px;}
._13_c01295{width:17.118000px;}
._4_c01295{width:18.432000px;}
._39_c01295{width:19.959000px;}
._23_c01295{width:21.354000px;}
._20_c01295{width:22.656000px;}
._14_c01295{width:24.147000px;}
._8_c01295{width:26.136000px;}
._22_c01295{width:27.297000px;}
._25_c01295{width:29.175000px;}
._36_c01295{width:32.025000px;}
._1d_c01295{width:34.680000px;}
._33_c01295{width:39.255000px;}
._18_c01295{width:56.652000px;}
._2c_c01295{width:58.770000px;}
._35_c01295{width:61.860000px;}
._26_c01295{width:71.202000px;}
._37_c01295{width:85.800000px;}
._2_c01295{width:91.338000px;}
._19_c01295{width:116.721000px;}
._38_c01295{width:120.798000px;}
._1f_c01295{width:123.000000px;}
._2a_c01295{width:145.071000px;}
._1c_c01295{width:146.208000px;}
._2e_c01295{width:225.339000px;}
._32_c01295{width:241.299000px;}
._2f_c01295{width:277.371000px;}
._28_c01295{width:482.382000px;}
._15_c01295{width:495.207000px;}
._31_c01295{width:678.456000px;}
._30_c01295{width:799.956000px;}
._34_c01295{width:917.004000px;}
._2b_c01295{width:1218.801000px;}
.fc2_c01295{color:transparent;}
.fc1_c01295{color:rgb(128,128,128);}
.fc0_c01295{color:rgb(0,0,0);}
.fs4_c01295{font-size:24.000000px;}
.fs8_c01295{font-size:48.000000px;}
.fs6_c01295{font-size:51.000000px;}
.fs2_c01295{font-size:60.000000px;}
.fs5_c01295{font-size:69.000000px;}
.fs1_c01295{font-size:72.000000px;}
.fs0_c01295{font-size:81.000000px;}
.fs7_c01295{font-size:87.000000px;}
.fs3_c01295{font-size:96.000000px;}
.y0_c01295{bottom:0.000000px;}
.y27_c01295{bottom:3.105000px;}
.y26_c01295{bottom:7.228355px;}
.y25_c01295{bottom:44.085000px;}
.y24_c01295{bottom:69.135000px;}
.y23_c01295{bottom:94.485000px;}
.y22_c01295{bottom:119.685000px;}
.y21_c01295{bottom:144.135000px;}
.y20_c01295{bottom:168.435000px;}
.y1f_c01295{bottom:193.035000px;}
.y1e_c01295{bottom:217.935000px;}
.y1d_c01295{bottom:242.535000px;}
.y1c_c01295{bottom:266.835000px;}
.y1b_c01295{bottom:290.235000px;}
.y1a_c01295{bottom:315.585000px;}
.y19_c01295{bottom:335.835000px;}
.y18_c01295{bottom:363.135000px;}
.y17_c01295{bottom:384.735000px;}
.y16_c01295{bottom:399.135000px;}
.y15_c01295{bottom:413.685000px;}
.y14_c01295{bottom:437.085000px;}
.y13_c01295{bottom:461.685000px;}
.y12_c01295{bottom:485.985000px;}
.y11_c01295{bottom:509.985000px;}
.y10_c01295{bottom:534.135000px;}
.yf_c01295{bottom:558.885000px;}
.ye_c01295{bottom:582.885000px;}
.yd_c01295{bottom:607.035000px;}
.yc_c01295{bottom:631.335000px;}
.yb_c01295{bottom:655.335000px;}
.ya_c01295{bottom:679.935000px;}
.y9_c01295{bottom:704.235000px;}
.y8_c01295{bottom:728.235000px;}
.y7_c01295{bottom:752.235000px;}
.y6_c01295{bottom:776.535000px;}
.y5_c01295{bottom:800.835000px;}
.y4_c01295{bottom:824.835000px;}
.y3_c01295{bottom:848.835000px;}
.y2_c01295{bottom:873.135000px;}
.y1_c01295{bottom:905.385000px;}
.h7_c01295{height:13.200074px;}
.h8_c01295{height:43.804688px;}
.h5_c01295{height:58.857422px;}
.h3_c01295{height:79.497070px;}
.h2_c01295{height:84.269531px;}
.h6_c01295{height:87.679688px;}
.h4_c01295{height:94.171875px;}
.h1_c01295{height:975.000000px;}
.h0_c01295{height:975.225000px;}
.w2_c01295{width:104.875500px;}
.w0_c01295{width:659.850000px;}
.w1_c01295{width:660.000000px;}
.x0_c01295{left:0.000000px;}
.x8_c01295{left:33.300000px;}
.x7_c01295{left:35.700000px;}
.x9_c01295{left:37.050000px;}
.x3_c01295{left:48.300000px;}
.xe_c01295{left:52.350000px;}
.xa_c01295{left:91.350000px;}
.x4_c01295{left:122.850000px;}
.x2_c01295{left:124.500000px;}
.x1_c01295{left:125.550000px;}
.x5_c01295{left:127.500000px;}
.x6_c01295{left:128.550000px;}
.xc_c01295{left:130.650000px;}
.xf_c01295{left:131.850000px;}
.xd_c01295{left:133.350000px;}
.xb_c01295{left:135.000000px;}
.x10_c01295{left:155.850000px;}
.x12_c01295{left:281.739258px;}
.x11_c01295{left:584.100000px;}
@media print{
.v0_c01295{vertical-align:0.000000pt;}
.ls2_c01295{letter-spacing:0.000000pt;}
.ls0_c01295{letter-spacing:1.120000pt;}
.ls1_c01295{letter-spacing:3.733333pt;}
.ls3_c01295{letter-spacing:8.000000pt;}
.ws1_c01295{word-spacing:-47.445333pt;}
.ws0_c01295{word-spacing:-37.696000pt;}
.ws9_c01295{word-spacing:-21.333333pt;}
.wsb_c01295{word-spacing:-19.333333pt;}
.ws3_c01295{word-spacing:-13.333333pt;}
.ws6_c01295{word-spacing:-2.933333pt;}
.ws5_c01295{word-spacing:-2.880000pt;}
.wsa_c01295{word-spacing:-2.560000pt;}
.ws7_c01295{word-spacing:-2.186667pt;}
.ws2_c01295{word-spacing:-2.133333pt;}
.ws8_c01295{word-spacing:-1.173333pt;}
.ws4_c01295{word-spacing:-0.266667pt;}
.wsc_c01295{word-spacing:0.000000pt;}
._1e_c01295{margin-left:-35.733333pt;}
._21_c01295{margin-left:-24.520000pt;}
._1a_c01295{margin-left:-16.472000pt;}
._2d_c01295{margin-left:-14.184000pt;}
._29_c01295{margin-left:-12.528000pt;}
._16_c01295{margin-left:-10.800000pt;}
._17_c01295{margin-left:-9.768000pt;}
._24_c01295{margin-left:-8.866667pt;}
._10_c01295{margin-left:-7.800000pt;}
._12_c01295{margin-left:-6.072000pt;}
._c_c01295{margin-left:-4.896000pt;}
._b_c01295{margin-left:-3.600000pt;}
._11_c01295{margin-left:-2.664000pt;}
._d_c01295{margin-left:-1.560000pt;}
._f_c01295{width:1.176000pt;}
._e_c01295{width:2.088000pt;}
._9_c01295{width:3.168000pt;}
._a_c01295{width:4.824000pt;}
._1_c01295{width:6.336000pt;}
._5_c01295{width:7.680000pt;}
._3_c01295{width:8.704000pt;}
._1b_c01295{width:9.642667pt;}
._7_c01295{width:10.624000pt;}
._6_c01295{width:11.968000pt;}
._27_c01295{width:13.032000pt;}
._0_c01295{width:14.112000pt;}
._13_c01295{width:15.216000pt;}
._4_c01295{width:16.384000pt;}
._39_c01295{width:17.741333pt;}
._23_c01295{width:18.981333pt;}
._20_c01295{width:20.138667pt;}
._14_c01295{width:21.464000pt;}
._8_c01295{width:23.232000pt;}
._22_c01295{width:24.264000pt;}
._25_c01295{width:25.933333pt;}
._36_c01295{width:28.466667pt;}
._1d_c01295{width:30.826667pt;}
._33_c01295{width:34.893333pt;}
._18_c01295{width:50.357333pt;}
._2c_c01295{width:52.240000pt;}
._35_c01295{width:54.986667pt;}
._26_c01295{width:63.290667pt;}
._37_c01295{width:76.266667pt;}
._2_c01295{width:81.189333pt;}
._19_c01295{width:103.752000pt;}
._38_c01295{width:107.376000pt;}
._1f_c01295{width:109.333333pt;}
._2a_c01295{width:128.952000pt;}
._1c_c01295{width:129.962667pt;}
._2e_c01295{width:200.301333pt;}
._32_c01295{width:214.488000pt;}
._2f_c01295{width:246.552000pt;}
._28_c01295{width:428.784000pt;}
._15_c01295{width:440.184000pt;}
._31_c01295{width:603.072000pt;}
._30_c01295{width:711.072000pt;}
._34_c01295{width:815.114667pt;}
._2b_c01295{width:1083.378667pt;}
.fs4_c01295{font-size:21.333333pt;}
.fs8_c01295{font-size:42.666667pt;}
.fs6_c01295{font-size:45.333333pt;}
.fs2_c01295{font-size:53.333333pt;}
.fs5_c01295{font-size:61.333333pt;}
.fs1_c01295{font-size:64.000000pt;}
.fs0_c01295{font-size:72.000000pt;}
.fs7_c01295{font-size:77.333333pt;}
.fs3_c01295{font-size:85.333333pt;}
.y0_c01295{bottom:0.000000pt;}
.y27_c01295{bottom:2.760000pt;}
.y26_c01295{bottom:6.425204pt;}
.y25_c01295{bottom:39.186667pt;}
.y24_c01295{bottom:61.453333pt;}
.y23_c01295{bottom:83.986667pt;}
.y22_c01295{bottom:106.386667pt;}
.y21_c01295{bottom:128.120000pt;}
.y20_c01295{bottom:149.720000pt;}
.y1f_c01295{bottom:171.586667pt;}
.y1e_c01295{bottom:193.720000pt;}
.y1d_c01295{bottom:215.586667pt;}
.y1c_c01295{bottom:237.186667pt;}
.y1b_c01295{bottom:257.986667pt;}
.y1a_c01295{bottom:280.520000pt;}
.y19_c01295{bottom:298.520000pt;}
.y18_c01295{bottom:322.786667pt;}
.y17_c01295{bottom:341.986667pt;}
.y16_c01295{bottom:354.786667pt;}
.y15_c01295{bottom:367.720000pt;}
.y14_c01295{bottom:388.520000pt;}
.y13_c01295{bottom:410.386667pt;}
.y12_c01295{bottom:431.986667pt;}
.y11_c01295{bottom:453.320000pt;}
.y10_c01295{bottom:474.786667pt;}
.yf_c01295{bottom:496.786667pt;}
.ye_c01295{bottom:518.120000pt;}
.yd_c01295{bottom:539.586667pt;}
.yc_c01295{bottom:561.186667pt;}
.yb_c01295{bottom:582.520000pt;}
.ya_c01295{bottom:604.386667pt;}
.y9_c01295{bottom:625.986667pt;}
.y8_c01295{bottom:647.320000pt;}
.y7_c01295{bottom:668.653333pt;}
.y6_c01295{bottom:690.253333pt;}
.y5_c01295{bottom:711.853333pt;}
.y4_c01295{bottom:733.186667pt;}
.y3_c01295{bottom:754.520000pt;}
.y2_c01295{bottom:776.120000pt;}
.y1_c01295{bottom:804.786667pt;}
.h7_c01295{height:11.733399pt;}
.h8_c01295{height:38.937500pt;}
.h5_c01295{height:52.317708pt;}
.h3_c01295{height:70.664062pt;}
.h2_c01295{height:74.906250pt;}
.h6_c01295{height:77.937500pt;}
.h4_c01295{height:83.708333pt;}
.h1_c01295{height:866.666667pt;}
.h0_c01295{height:866.866667pt;}
.w2_c01295{width:93.222667pt;}
.w0_c01295{width:586.533333pt;}
.w1_c01295{width:586.666667pt;}
.x0_c01295{left:0.000000pt;}
.x8_c01295{left:29.600000pt;}
.x7_c01295{left:31.733333pt;}
.x9_c01295{left:32.933333pt;}
.x3_c01295{left:42.933333pt;}
.xe_c01295{left:46.533333pt;}
.xa_c01295{left:81.200000pt;}
.x4_c01295{left:109.200000pt;}
.x2_c01295{left:110.666667pt;}
.x1_c01295{left:111.600000pt;}
.x5_c01295{left:113.333333pt;}
.x6_c01295{left:114.266667pt;}
.xc_c01295{left:116.133333pt;}
.xf_c01295{left:117.200000pt;}
.xd_c01295{left:118.533333pt;}
.xb_c01295{left:120.000000pt;}
.x10_c01295{left:138.533333pt;}
.x12_c01295{left:250.434896pt;}
.x11_c01295{left:519.200000pt;}
}





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

.ir_c01296:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01296{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01296;src:url('chunks/assets/font_310e0a189172f506c4363b9c.woff2')format("woff");}.ff1_c01296{font-family:ff1_c01296;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01296;src:url('chunks/assets/font_17f7553e8e3ce44b0a13e064.woff2')format("woff");}.ff2_c01296{font-family:ff2_c01296;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01296;src:url('chunks/assets/font_ed33e5d31f0c735115ae59e5.woff2')format("woff");}.ff3_c01296{font-family:ff3_c01296;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01296;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff4_c01296{font-family:ff4_c01296;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01296;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c01296{font-family:ff5_c01296;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01296{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01296{vertical-align:0.000000px;}
.ls2_c01296{letter-spacing:0.000000px;}
.ls3_c01296{letter-spacing:9.000000px;}
.ls4_c01296{letter-spacing:15.000000px;}
.ls1_c01296{letter-spacing:17.304000px;}
.ls0_c01296{letter-spacing:23.700000px;}
.sc__c01296{text-shadow:none;}
.sc0_c01296{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01296{-webkit-text-stroke:0px transparent;}
.sc0_c01296{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c01296{word-spacing:-76.686000px;}
.ws7_c01296{word-spacing:-35.250000px;}
.ws4_c01296{word-spacing:-20.250000px;}
.ws3_c01296{word-spacing:-17.352000px;}
.ws1_c01296{word-spacing:-17.250000px;}
.ws2_c01296{word-spacing:-0.729000px;}
.ws8_c01296{word-spacing:0.000000px;}
.ws0_c01296{word-spacing:14.328000px;}
.ws6_c01296{word-spacing:230.511000px;}
._11_c01296{margin-left:-60.042000px;}
._32_c01296{margin-left:-41.682000px;}
._27_c01296{margin-left:-26.649000px;}
._23_c01296{margin-left:-23.409000px;}
._2d_c01296{margin-left:-21.870000px;}
._31_c01296{margin-left:-19.476000px;}
._12_c01296{margin-left:-18.225000px;}
._14_c01296{margin-left:-15.294000px;}
._20_c01296{margin-left:-13.689000px;}
._13_c01296{margin-left:-12.150000px;}
._18_c01296{margin-left:-10.287000px;}
._1a_c01296{margin-left:-8.343000px;}
._1c_c01296{margin-left:-6.723000px;}
._1b_c01296{margin-left:-5.670000px;}
._1e_c01296{margin-left:-3.777000px;}
._16_c01296{margin-left:-2.754000px;}
._1f_c01296{margin-left:-1.377000px;}
._4_c01296{width:1.863000px;}
._2_c01296{width:2.997000px;}
._5_c01296{width:4.617000px;}
._1_c01296{width:5.670000px;}
._3_c01296{width:7.290000px;}
._10_c01296{width:9.072000px;}
._a_c01296{width:10.773000px;}
._8_c01296{width:12.636000px;}
._29_c01296{width:13.770000px;}
._7_c01296{width:14.985000px;}
._9_c01296{width:16.848000px;}
._f_c01296{width:18.063000px;}
._2f_c01296{width:19.179000px;}
._b_c01296{width:21.546000px;}
._e_c01296{width:22.680000px;}
._30_c01296{width:24.384000px;}
._d_c01296{width:27.945000px;}
._c_c01296{width:29.970000px;}
._0_c01296{width:34.992000px;}
._2c_c01296{width:42.657000px;}
._17_c01296{width:51.597000px;}
._25_c01296{width:55.632000px;}
._21_c01296{width:60.750000px;}
._2e_c01296{width:62.775000px;}
._34_c01296{width:68.904000px;}
._24_c01296{width:76.059000px;}
._19_c01296{width:90.720000px;}
._2a_c01296{width:249.147000px;}
._2b_c01296{width:269.568000px;}
._28_c01296{width:272.889000px;}
._22_c01296{width:279.531000px;}
._26_c01296{width:407.319000px;}
._15_c01296{width:428.571000px;}
._33_c01296{width:577.611000px;}
._6_c01296{width:701.082000px;}
._1d_c01296{width:850.419000px;}
.fc2_c01296{color:transparent;}
.fc1_c01296{color:rgb(128,128,128);}
.fc0_c01296{color:rgb(0,0,0);}
.fs4_c01296{font-size:48.000000px;}
.fs2_c01296{font-size:69.000000px;}
.fs0_c01296{font-size:72.000000px;}
.fs1_c01296{font-size:81.000000px;}
.fs3_c01296{font-size:87.000000px;}
.y0_c01296{bottom:0.000000px;}
.y22_c01296{bottom:3.105000px;}
.y21_c01296{bottom:7.228369px;}
.y20_c01296{bottom:56.370000px;}
.y1f_c01296{bottom:85.020000px;}
.y1e_c01296{bottom:106.320000px;}
.y1d_c01296{bottom:130.620000px;}
.y1c_c01296{bottom:156.570000px;}
.y1b_c01296{bottom:181.620000px;}
.y1a_c01296{bottom:230.820000px;}
.y19_c01296{bottom:254.370000px;}
.y18_c01296{bottom:279.120000px;}
.y17_c01296{bottom:304.320000px;}
.y16_c01296{bottom:328.020000px;}
.y15_c01296{bottom:350.670000px;}
.y14_c01296{bottom:376.920000px;}
.y13_c01296{bottom:401.970000px;}
.y12_c01296{bottom:427.170000px;}
.y11_c01296{bottom:450.270000px;}
.y10_c01296{bottom:472.470000px;}
.yf_c01296{bottom:498.420000px;}
.ye_c01296{bottom:523.770000px;}
.yd_c01296{bottom:547.320000px;}
.yc_c01296{bottom:571.620000px;}
.yb_c01296{bottom:595.620000px;}
.ya_c01296{bottom:619.620000px;}
.y9_c01296{bottom:644.220000px;}
.y8_c01296{bottom:669.270000px;}
.y7_c01296{bottom:692.820000px;}
.y6_c01296{bottom:741.120000px;}
.y5_c01296{bottom:816.420000px;}
.y4_c01296{bottom:839.070000px;}
.y3_c01296{bottom:864.270000px;}
.y2_c01296{bottom:887.670000px;}
.y1_c01296{bottom:925.020000px;}
.h6_c01296{height:13.200073px;}
.h7_c01296{height:43.804688px;}
.h3_c01296{height:79.497070px;}
.h2_c01296{height:84.269531px;}
.h5_c01296{height:91.160156px;}
.h4_c01296{height:91.176000px;}
.h1_c01296{height:986.250000px;}
.h0_c01296{height:986.550000px;}
.w1_c01296{width:104.875500px;}
.w0_c01296{width:672.000000px;}
.x0_c01296{left:0.000000px;}
.x5_c01296{left:33.450000px;}
.x9_c01296{left:38.250000px;}
.xa_c01296{left:44.250000px;}
.x8_c01296{left:50.400000px;}
.x7_c01296{left:52.650000px;}
.x6_c01296{left:53.700000px;}
.x2_c01296{left:54.750000px;}
.x4_c01296{left:55.800000px;}
.x3_c01296{left:92.850000px;}
.xd_c01296{left:287.814240px;}
.xb_c01296{left:351.300000px;}
.x1_c01296{left:495.450000px;}
.xc_c01296{left:514.650000px;}
@media print{
.v0_c01296{vertical-align:0.000000pt;}
.ls2_c01296{letter-spacing:0.000000pt;}
.ls3_c01296{letter-spacing:8.000000pt;}
.ls4_c01296{letter-spacing:13.333333pt;}
.ls1_c01296{letter-spacing:15.381333pt;}
.ls0_c01296{letter-spacing:21.066667pt;}
.ws5_c01296{word-spacing:-68.165333pt;}
.ws7_c01296{word-spacing:-31.333333pt;}
.ws4_c01296{word-spacing:-18.000000pt;}
.ws3_c01296{word-spacing:-15.424000pt;}
.ws1_c01296{word-spacing:-15.333333pt;}
.ws2_c01296{word-spacing:-0.648000pt;}
.ws8_c01296{word-spacing:0.000000pt;}
.ws0_c01296{word-spacing:12.736000pt;}
.ws6_c01296{word-spacing:204.898667pt;}
._11_c01296{margin-left:-53.370667pt;}
._32_c01296{margin-left:-37.050667pt;}
._27_c01296{margin-left:-23.688000pt;}
._23_c01296{margin-left:-20.808000pt;}
._2d_c01296{margin-left:-19.440000pt;}
._31_c01296{margin-left:-17.312000pt;}
._12_c01296{margin-left:-16.200000pt;}
._14_c01296{margin-left:-13.594667pt;}
._20_c01296{margin-left:-12.168000pt;}
._13_c01296{margin-left:-10.800000pt;}
._18_c01296{margin-left:-9.144000pt;}
._1a_c01296{margin-left:-7.416000pt;}
._1c_c01296{margin-left:-5.976000pt;}
._1b_c01296{margin-left:-5.040000pt;}
._1e_c01296{margin-left:-3.357333pt;}
._16_c01296{margin-left:-2.448000pt;}
._1f_c01296{margin-left:-1.224000pt;}
._4_c01296{width:1.656000pt;}
._2_c01296{width:2.664000pt;}
._5_c01296{width:4.104000pt;}
._1_c01296{width:5.040000pt;}
._3_c01296{width:6.480000pt;}
._10_c01296{width:8.064000pt;}
._a_c01296{width:9.576000pt;}
._8_c01296{width:11.232000pt;}
._29_c01296{width:12.240000pt;}
._7_c01296{width:13.320000pt;}
._9_c01296{width:14.976000pt;}
._f_c01296{width:16.056000pt;}
._2f_c01296{width:17.048000pt;}
._b_c01296{width:19.152000pt;}
._e_c01296{width:20.160000pt;}
._30_c01296{width:21.674667pt;}
._d_c01296{width:24.840000pt;}
._c_c01296{width:26.640000pt;}
._0_c01296{width:31.104000pt;}
._2c_c01296{width:37.917333pt;}
._17_c01296{width:45.864000pt;}
._25_c01296{width:49.450667pt;}
._21_c01296{width:54.000000pt;}
._2e_c01296{width:55.800000pt;}
._34_c01296{width:61.248000pt;}
._24_c01296{width:67.608000pt;}
._19_c01296{width:80.640000pt;}
._2a_c01296{width:221.464000pt;}
._2b_c01296{width:239.616000pt;}
._28_c01296{width:242.568000pt;}
._22_c01296{width:248.472000pt;}
._26_c01296{width:362.061333pt;}
._15_c01296{width:380.952000pt;}
._33_c01296{width:513.432000pt;}
._6_c01296{width:623.184000pt;}
._1d_c01296{width:755.928000pt;}
.fs4_c01296{font-size:42.666667pt;}
.fs2_c01296{font-size:61.333333pt;}
.fs0_c01296{font-size:64.000000pt;}
.fs1_c01296{font-size:72.000000pt;}
.fs3_c01296{font-size:77.333333pt;}
.y0_c01296{bottom:0.000000pt;}
.y22_c01296{bottom:2.760000pt;}
.y21_c01296{bottom:6.425217pt;}
.y20_c01296{bottom:50.106667pt;}
.y1f_c01296{bottom:75.573333pt;}
.y1e_c01296{bottom:94.506667pt;}
.y1d_c01296{bottom:116.106667pt;}
.y1c_c01296{bottom:139.173333pt;}
.y1b_c01296{bottom:161.440000pt;}
.y1a_c01296{bottom:205.173333pt;}
.y19_c01296{bottom:226.106667pt;}
.y18_c01296{bottom:248.106667pt;}
.y17_c01296{bottom:270.506667pt;}
.y16_c01296{bottom:291.573333pt;}
.y15_c01296{bottom:311.706667pt;}
.y14_c01296{bottom:335.040000pt;}
.y13_c01296{bottom:357.306667pt;}
.y12_c01296{bottom:379.706667pt;}
.y11_c01296{bottom:400.240000pt;}
.y10_c01296{bottom:419.973333pt;}
.yf_c01296{bottom:443.040000pt;}
.ye_c01296{bottom:465.573333pt;}
.yd_c01296{bottom:486.506667pt;}
.yc_c01296{bottom:508.106667pt;}
.yb_c01296{bottom:529.440000pt;}
.ya_c01296{bottom:550.773333pt;}
.y9_c01296{bottom:572.640000pt;}
.y8_c01296{bottom:594.906667pt;}
.y7_c01296{bottom:615.840000pt;}
.y6_c01296{bottom:658.773333pt;}
.y5_c01296{bottom:725.706667pt;}
.y4_c01296{bottom:745.840000pt;}
.y3_c01296{bottom:768.240000pt;}
.y2_c01296{bottom:789.040000pt;}
.y1_c01296{bottom:822.240000pt;}
.h6_c01296{height:11.733399pt;}
.h7_c01296{height:38.937500pt;}
.h3_c01296{height:70.664062pt;}
.h2_c01296{height:74.906250pt;}
.h5_c01296{height:81.031250pt;}
.h4_c01296{height:81.045333pt;}
.h1_c01296{height:876.666667pt;}
.h0_c01296{height:876.933333pt;}
.w1_c01296{width:93.222667pt;}
.w0_c01296{width:597.333333pt;}
.x0_c01296{left:0.000000pt;}
.x5_c01296{left:29.733333pt;}
.x9_c01296{left:34.000000pt;}
.xa_c01296{left:39.333333pt;}
.x8_c01296{left:44.800000pt;}
.x7_c01296{left:46.800000pt;}
.x6_c01296{left:47.733333pt;}
.x2_c01296{left:48.666667pt;}
.x4_c01296{left:49.600000pt;}
.x3_c01296{left:82.533333pt;}
.xd_c01296{left:255.834880pt;}
.xb_c01296{left:312.266667pt;}
.x1_c01296{left:440.400000pt;}
.xc_c01296{left:457.466667pt;}
}





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

.ir_c01297:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01297{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01297;src:url('chunks/assets/font_0231db2f149d9a7d807dd481.woff2')format("woff");}.ff1_c01297{font-family:ff1_c01297;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01297;src:url('chunks/assets/font_97a488c39b5f953ff85a9e3a.woff2')format("woff");}.ff2_c01297{font-family:ff2_c01297;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01297;src:url('chunks/assets/font_d6f0c064a9bcd6fd4ef6b109.woff2')format("woff");}.ff3_c01297{font-family:ff3_c01297;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01297;src:url('chunks/assets/font_f22aacdffa7c3dd0c01ac406.woff2')format("woff");}.ff4_c01297{font-family:ff4_c01297;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01297;src:url('chunks/assets/font_69ce0d6e75f767cd810c52fa.woff2')format("woff");}.ff5_c01297{font-family:ff5_c01297;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01297;src:url('chunks/assets/font_f11141c8d1be2671513a8f59.woff2')format("woff");}.ff6_c01297{font-family:ff6_c01297;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01297;src:url('chunks/assets/font_4e354ca9957e9cdab994cb09.woff2')format("woff");}.ff7_c01297{font-family:ff7_c01297;line-height:1.284180;font-style:normal;font-weight: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_c01297;src:url('chunks/assets/font_91469d329870416ad87608be.woff2')format("woff");}.ff8_c01297{font-family:ff8_c01297;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c01297;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff9_c01297{font-family:ff9_c01297;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01297{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01297{vertical-align:0.000000px;}
.ls8_c01297{letter-spacing:-9.000000px;}
.ls5_c01297{letter-spacing:0.000000px;}
.ls2_c01297{letter-spacing:5.700000px;}
.ls6_c01297{letter-spacing:6.000000px;}
.ls4_c01297{letter-spacing:6.900000px;}
.ls3_c01297{letter-spacing:12.300000px;}
.ls7_c01297{letter-spacing:126.000000px;}
.ls0_c01297{letter-spacing:199.500000px;}
.ls1_c01297{letter-spacing:939.900000px;}
.sc__c01297{text-shadow:none;}
.sc0_c01297{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01297{-webkit-text-stroke:0px transparent;}
.sc0_c01297{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01297{word-spacing:-48.000000px;}
.ws3_c01297{word-spacing:-45.300000px;}
.ws8_c01297{word-spacing:-45.000000px;}
.ws5_c01297{word-spacing:-25.500000px;}
.ws2_c01297{word-spacing:-17.352000px;}
.ws4_c01297{word-spacing:-11.475000px;}
.ws7_c01297{word-spacing:-1.836000px;}
.ws9_c01297{word-spacing:0.000000px;}
.ws6_c01297{word-spacing:0.306000px;}
.ws0_c01297{word-spacing:1.440000px;}
._34_c01297{margin-left:-161.262000px;}
._30_c01297{margin-left:-118.626000px;}
._31_c01297{margin-left:-103.224000px;}
._32_c01297{margin-left:-93.855000px;}
._35_c01297{margin-left:-46.716000px;}
._3d_c01297{margin-left:-36.855000px;}
._45_c01297{margin-left:-34.476000px;}
._47_c01297{margin-left:-33.060000px;}
._43_c01297{margin-left:-30.684000px;}
._48_c01297{margin-left:-28.098000px;}
._41_c01297{margin-left:-26.898000px;}
._44_c01297{margin-left:-25.101000px;}
._3b_c01297{margin-left:-23.895000px;}
._42_c01297{margin-left:-22.494000px;}
._46_c01297{margin-left:-20.958000px;}
._39_c01297{margin-left:-18.579000px;}
._12_c01297{margin-left:-16.617000px;}
._3e_c01297{margin-left:-15.372000px;}
._18_c01297{margin-left:-13.512000px;}
._25_c01297{margin-left:-11.961000px;}
._1b_c01297{margin-left:-10.728000px;}
._13_c01297{margin-left:-8.910000px;}
._a_c01297{margin-left:-7.614000px;}
._8_c01297{margin-left:-6.156000px;}
._b_c01297{margin-left:-4.995000px;}
._c_c01297{margin-left:-3.966000px;}
._5_c01297{margin-left:-1.944000px;}
._d_c01297{width:1.341000px;}
._6_c01297{width:2.655000px;}
._4_c01297{width:4.545000px;}
._7_c01297{width:5.994000px;}
._9_c01297{width:7.191000px;}
._14_c01297{width:8.208000px;}
._2_c01297{width:9.435000px;}
._17_c01297{width:10.455000px;}
._1f_c01297{width:12.330000px;}
._20_c01297{width:13.650000px;}
._16_c01297{width:14.676000px;}
._23_c01297{width:16.212000px;}
._19_c01297{width:18.048000px;}
._1_c01297{width:19.533000px;}
._f_c01297{width:20.736000px;}
._0_c01297{width:22.032000px;}
._1c_c01297{width:23.148000px;}
._2d_c01297{width:24.633000px;}
._37_c01297{width:25.968000px;}
._1d_c01297{width:27.072000px;}
._3_c01297{width:28.254000px;}
._e_c01297{width:30.240000px;}
._10_c01297{width:31.608000px;}
._24_c01297{width:34.245000px;}
._27_c01297{width:35.964000px;}
._3f_c01297{width:38.232000px;}
._2c_c01297{width:39.522000px;}
._21_c01297{width:42.048000px;}
._2b_c01297{width:43.821000px;}
._26_c01297{width:50.505000px;}
._1a_c01297{width:52.632000px;}
._3c_c01297{width:58.644000px;}
._22_c01297{width:69.375000px;}
._3a_c01297{width:71.181000px;}
._2a_c01297{width:108.297000px;}
._11_c01297{width:126.486000px;}
._28_c01297{width:127.935000px;}
._33_c01297{width:180.147000px;}
._38_c01297{width:190.581000px;}
._15_c01297{width:284.769000px;}
._1e_c01297{width:296.130000px;}
._40_c01297{width:347.226000px;}
._2e_c01297{width:554.835000px;}
._36_c01297{width:585.636000px;}
._29_c01297{width:891.219000px;}
._2f_c01297{width:1095.381000px;}
.fc2_c01297{color:transparent;}
.fc1_c01297{color:rgb(128,128,128);}
.fc0_c01297{color:rgb(0,0,0);}
.fs6_c01297{font-size:42.000000px;}
.fs9_c01297{font-size:48.000000px;}
.fs0_c01297{font-size:51.000000px;}
.fs2_c01297{font-size:72.000000px;}
.fs4_c01297{font-size:75.000000px;}
.fs1_c01297{font-size:81.000000px;}
.fs8_c01297{font-size:90.000000px;}
.fs3_c01297{font-size:96.000000px;}
.fs7_c01297{font-size:99.000000px;}
.fs5_c01297{font-size:102.000000px;}
.y0_c01297{bottom:0.000000px;}
.y23_c01297{bottom:3.105000px;}
.y22_c01297{bottom:7.228369px;}
.y21_c01297{bottom:45.570000px;}
.y20_c01297{bottom:69.120000px;}
.y1f_c01297{bottom:95.520000px;}
.y1e_c01297{bottom:119.370000px;}
.y1d_c01297{bottom:144.720000px;}
.y1c_c01297{bottom:170.370000px;}
.y1b_c01297{bottom:218.370000px;}
.y1a_c01297{bottom:242.670000px;}
.y19_c01297{bottom:267.870000px;}
.y18_c01297{bottom:292.920000px;}
.y17_c01297{bottom:317.970000px;}
.y16_c01297{bottom:342.270000px;}
.y15_c01297{bottom:367.170000px;}
.y14_c01297{bottom:391.470000px;}
.y13_c01297{bottom:402.870000px;}
.y12_c01297{bottom:415.770000px;}
.y11_c01297{bottom:439.020000px;}
.y10_c01297{bottom:464.370000px;}
.yf_c01297{bottom:488.370000px;}
.ye_c01297{bottom:512.670000px;}
.yd_c01297{bottom:536.220000px;}
.yc_c01297{bottom:560.970000px;}
.yb_c01297{bottom:585.270000px;}
.ya_c01297{bottom:611.820000px;}
.y9_c01297{bottom:633.120000px;}
.y8_c01297{bottom:657.720000px;}
.y7_c01297{bottom:683.370000px;}
.y6_c01297{bottom:758.070000px;}
.y5_c01297{bottom:780.870000px;}
.y4_c01297{bottom:806.670000px;}
.y3_c01297{bottom:831.270000px;}
.y2_c01297{bottom:854.820000px;}
.y1_c01297{bottom:879.570000px;}
.ha_c01297{height:13.200073px;}
.hb_c01297{height:43.804688px;}
.h8_c01297{height:50.028809px;}
.h6_c01297{height:51.398438px;}
.h7_c01297{height:75.585938px;}
.h2_c01297{height:79.497070px;}
.h3_c01297{height:84.269531px;}
.h4_c01297{height:96.750000px;}
.h9_c01297{height:104.839927px;}
.h5_c01297{height:129.143555px;}
.h1_c01297{height:972.750000px;}
.h0_c01297{height:973.050000px;}
.w2_c01297{width:104.875500px;}
.w0_c01297{width:658.275000px;}
.w1_c01297{width:658.500000px;}
.x0_c01297{left:0.000000px;}
.x10_c01297{left:10.800000px;}
.x2_c01297{left:13.800000px;}
.x7_c01297{left:16.500000px;}
.x6_c01297{left:17.550000px;}
.xa_c01297{left:18.600000px;}
.xc_c01297{left:20.250000px;}
.x12_c01297{left:21.900000px;}
.x3_c01297{left:23.400000px;}
.x9_c01297{left:27.300000px;}
.x8_c01297{left:52.200000px;}
.xe_c01297{left:57.600000px;}
.x11_c01297{left:61.800000px;}
.x4_c01297{left:67.800000px;}
.x14_c01297{left:73.800000px;}
.xd_c01297{left:94.800000px;}
.x13_c01297{left:97.500000px;}
.x1_c01297{left:107.700000px;}
.x5_c01297{left:111.600000px;}
.xf_c01297{left:113.400000px;}
.xb_c01297{left:115.350000px;}
.x15_c01297{left:118.350000px;}
.x17_c01297{left:280.951767px;}
.x16_c01297{left:553.050000px;}
@media print{
.v0_c01297{vertical-align:0.000000pt;}
.ls8_c01297{letter-spacing:-8.000000pt;}
.ls5_c01297{letter-spacing:0.000000pt;}
.ls2_c01297{letter-spacing:5.066667pt;}
.ls6_c01297{letter-spacing:5.333333pt;}
.ls4_c01297{letter-spacing:6.133333pt;}
.ls3_c01297{letter-spacing:10.933333pt;}
.ls7_c01297{letter-spacing:112.000000pt;}
.ls0_c01297{letter-spacing:177.333333pt;}
.ls1_c01297{letter-spacing:835.466667pt;}
.ws1_c01297{word-spacing:-42.666667pt;}
.ws3_c01297{word-spacing:-40.266667pt;}
.ws8_c01297{word-spacing:-40.000000pt;}
.ws5_c01297{word-spacing:-22.666667pt;}
.ws2_c01297{word-spacing:-15.424000pt;}
.ws4_c01297{word-spacing:-10.200000pt;}
.ws7_c01297{word-spacing:-1.632000pt;}
.ws9_c01297{word-spacing:0.000000pt;}
.ws6_c01297{word-spacing:0.272000pt;}
.ws0_c01297{word-spacing:1.280000pt;}
._34_c01297{margin-left:-143.344000pt;}
._30_c01297{margin-left:-105.445333pt;}
._31_c01297{margin-left:-91.754667pt;}
._32_c01297{margin-left:-83.426667pt;}
._35_c01297{margin-left:-41.525333pt;}
._3d_c01297{margin-left:-32.760000pt;}
._45_c01297{margin-left:-30.645333pt;}
._47_c01297{margin-left:-29.386667pt;}
._43_c01297{margin-left:-27.274667pt;}
._48_c01297{margin-left:-24.976000pt;}
._41_c01297{margin-left:-23.909333pt;}
._44_c01297{margin-left:-22.312000pt;}
._3b_c01297{margin-left:-21.240000pt;}
._42_c01297{margin-left:-19.994667pt;}
._46_c01297{margin-left:-18.629333pt;}
._39_c01297{margin-left:-16.514667pt;}
._12_c01297{margin-left:-14.770667pt;}
._3e_c01297{margin-left:-13.664000pt;}
._18_c01297{margin-left:-12.010667pt;}
._25_c01297{margin-left:-10.632000pt;}
._1b_c01297{margin-left:-9.536000pt;}
._13_c01297{margin-left:-7.920000pt;}
._a_c01297{margin-left:-6.768000pt;}
._8_c01297{margin-left:-5.472000pt;}
._b_c01297{margin-left:-4.440000pt;}
._c_c01297{margin-left:-3.525333pt;}
._5_c01297{margin-left:-1.728000pt;}
._d_c01297{width:1.192000pt;}
._6_c01297{width:2.360000pt;}
._4_c01297{width:4.040000pt;}
._7_c01297{width:5.328000pt;}
._9_c01297{width:6.392000pt;}
._14_c01297{width:7.296000pt;}
._2_c01297{width:8.386667pt;}
._17_c01297{width:9.293333pt;}
._1f_c01297{width:10.960000pt;}
._20_c01297{width:12.133333pt;}
._16_c01297{width:13.045333pt;}
._23_c01297{width:14.410667pt;}
._19_c01297{width:16.042667pt;}
._1_c01297{width:17.362667pt;}
._f_c01297{width:18.432000pt;}
._0_c01297{width:19.584000pt;}
._1c_c01297{width:20.576000pt;}
._2d_c01297{width:21.896000pt;}
._37_c01297{width:23.082667pt;}
._1d_c01297{width:24.064000pt;}
._3_c01297{width:25.114667pt;}
._e_c01297{width:26.880000pt;}
._10_c01297{width:28.096000pt;}
._24_c01297{width:30.440000pt;}
._27_c01297{width:31.968000pt;}
._3f_c01297{width:33.984000pt;}
._2c_c01297{width:35.130667pt;}
._21_c01297{width:37.376000pt;}
._2b_c01297{width:38.952000pt;}
._26_c01297{width:44.893333pt;}
._1a_c01297{width:46.784000pt;}
._3c_c01297{width:52.128000pt;}
._22_c01297{width:61.666667pt;}
._3a_c01297{width:63.272000pt;}
._2a_c01297{width:96.264000pt;}
._11_c01297{width:112.432000pt;}
._28_c01297{width:113.720000pt;}
._33_c01297{width:160.130667pt;}
._38_c01297{width:169.405333pt;}
._15_c01297{width:253.128000pt;}
._1e_c01297{width:263.226667pt;}
._40_c01297{width:308.645333pt;}
._2e_c01297{width:493.186667pt;}
._36_c01297{width:520.565333pt;}
._29_c01297{width:792.194667pt;}
._2f_c01297{width:973.672000pt;}
.fs6_c01297{font-size:37.333333pt;}
.fs9_c01297{font-size:42.666667pt;}
.fs0_c01297{font-size:45.333333pt;}
.fs2_c01297{font-size:64.000000pt;}
.fs4_c01297{font-size:66.666667pt;}
.fs1_c01297{font-size:72.000000pt;}
.fs8_c01297{font-size:80.000000pt;}
.fs3_c01297{font-size:85.333333pt;}
.fs7_c01297{font-size:88.000000pt;}
.fs5_c01297{font-size:90.666667pt;}
.y0_c01297{bottom:0.000000pt;}
.y23_c01297{bottom:2.760000pt;}
.y22_c01297{bottom:6.425217pt;}
.y21_c01297{bottom:40.506667pt;}
.y20_c01297{bottom:61.440000pt;}
.y1f_c01297{bottom:84.906667pt;}
.y1e_c01297{bottom:106.106667pt;}
.y1d_c01297{bottom:128.640000pt;}
.y1c_c01297{bottom:151.440000pt;}
.y1b_c01297{bottom:194.106667pt;}
.y1a_c01297{bottom:215.706667pt;}
.y19_c01297{bottom:238.106667pt;}
.y18_c01297{bottom:260.373333pt;}
.y17_c01297{bottom:282.640000pt;}
.y16_c01297{bottom:304.240000pt;}
.y15_c01297{bottom:326.373333pt;}
.y14_c01297{bottom:347.973333pt;}
.y13_c01297{bottom:358.106667pt;}
.y12_c01297{bottom:369.573333pt;}
.y11_c01297{bottom:390.240000pt;}
.y10_c01297{bottom:412.773333pt;}
.yf_c01297{bottom:434.106667pt;}
.ye_c01297{bottom:455.706667pt;}
.yd_c01297{bottom:476.640000pt;}
.yc_c01297{bottom:498.640000pt;}
.yb_c01297{bottom:520.240000pt;}
.ya_c01297{bottom:543.840000pt;}
.y9_c01297{bottom:562.773333pt;}
.y8_c01297{bottom:584.640000pt;}
.y7_c01297{bottom:607.440000pt;}
.y6_c01297{bottom:673.840000pt;}
.y5_c01297{bottom:694.106667pt;}
.y4_c01297{bottom:717.040000pt;}
.y3_c01297{bottom:738.906667pt;}
.y2_c01297{bottom:759.840000pt;}
.y1_c01297{bottom:781.840000pt;}
.ha_c01297{height:11.733399pt;}
.hb_c01297{height:38.937500pt;}
.h8_c01297{height:44.470052pt;}
.h6_c01297{height:45.687500pt;}
.h7_c01297{height:67.187500pt;}
.h2_c01297{height:70.664062pt;}
.h3_c01297{height:74.906250pt;}
.h4_c01297{height:86.000000pt;}
.h9_c01297{height:93.191046pt;}
.h5_c01297{height:114.794271pt;}
.h1_c01297{height:864.666667pt;}
.h0_c01297{height:864.933333pt;}
.w2_c01297{width:93.222667pt;}
.w0_c01297{width:585.133333pt;}
.w1_c01297{width:585.333333pt;}
.x0_c01297{left:0.000000pt;}
.x10_c01297{left:9.600000pt;}
.x2_c01297{left:12.266667pt;}
.x7_c01297{left:14.666667pt;}
.x6_c01297{left:15.600000pt;}
.xa_c01297{left:16.533333pt;}
.xc_c01297{left:18.000000pt;}
.x12_c01297{left:19.466667pt;}
.x3_c01297{left:20.800000pt;}
.x9_c01297{left:24.266667pt;}
.x8_c01297{left:46.400000pt;}
.xe_c01297{left:51.200000pt;}
.x11_c01297{left:54.933333pt;}
.x4_c01297{left:60.266667pt;}
.x14_c01297{left:65.600000pt;}
.xd_c01297{left:84.266667pt;}
.x13_c01297{left:86.666667pt;}
.x1_c01297{left:95.733333pt;}
.x5_c01297{left:99.200000pt;}
.xf_c01297{left:100.800000pt;}
.xb_c01297{left:102.533333pt;}
.x15_c01297{left:105.200000pt;}
.x17_c01297{left:249.734904pt;}
.x16_c01297{left:491.600000pt;}
}





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

.ir_c01298:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01298{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01298;src:url('chunks/assets/font_c7373f9b5efc53bf60c357f1.woff2')format("woff");}.ff1_c01298{font-family:ff1_c01298;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01298;src:url('chunks/assets/font_02742e66a19957be739eedb0.woff2')format("woff");}.ff2_c01298{font-family:ff2_c01298;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01298;src:url('chunks/assets/font_5741420ddf8f593d2de3bf2d.woff2')format("woff");}.ff3_c01298{font-family:ff3_c01298;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01298;src:url('chunks/assets/font_67a881d2cc5c9027d2573d3b.woff2')format("woff");}.ff4_c01298{font-family:ff4_c01298;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01298;src:url('chunks/assets/font_8e83c1e3e5703c23a6dff213.woff2')format("woff");}.ff5_c01298{font-family:ff5_c01298;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01298;src:url('chunks/assets/font_cd8f6c50e30c75b263445cc6.woff2')format("woff");}.ff6_c01298{font-family:ff6_c01298;line-height:1.284668;font-style:normal;font-weight: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_c01298;src:url('chunks/assets/font_7d3429dcf44fd7b15c9e5cef.woff2')format("woff");}.ff7_c01298{font-family:ff7_c01298;line-height:1.437000;font-style:normal;font-weight: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_c01298;src:url('chunks/assets/font_60eeab448fa4156b684de50c.woff2')format("woff");}.ff8_c01298{font-family:ff8_c01298;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c01298;src:url('chunks/assets/font_ca80854190df927a4911fd2a.woff2')format("woff");}.ff9_c01298{font-family:ff9_c01298;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c01298;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ffa_c01298{font-family:ffa_c01298;line-height:1.219238;font-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_c01298{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m0_c01298{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01298{vertical-align:0.000000px;}
.ls2_c01298{letter-spacing:0.000000px;}
.ls5_c01298{letter-spacing:3.000000px;}
.ls4_c01298{letter-spacing:9.000000px;}
.ls3_c01298{letter-spacing:12.000000px;}
.ls1_c01298{letter-spacing:14.700000px;}
.ls0_c01298{letter-spacing:70.104000px;}
.sc__c01298{text-shadow:none;}
.sc0_c01298{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01298{-webkit-text-stroke:0px transparent;}
.sc0_c01298{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01298{word-spacing:-76.686000px;}
.ws1_c01298{word-spacing:-64.116000px;}
.ws3_c01298{word-spacing:-59.184000px;}
.ws0_c01298{word-spacing:-25.500000px;}
.ws4_c01298{word-spacing:-16.926000px;}
.ws5_c01298{word-spacing:0.000000px;}
._16_c01298{margin-left:-66.822000px;}
._29_c01298{margin-left:-29.484000px;}
._c_c01298{margin-left:-27.840000px;}
._b_c01298{margin-left:-22.200000px;}
._19_c01298{margin-left:-19.551000px;}
._1a_c01298{margin-left:-17.013000px;}
._1b_c01298{margin-left:-15.552000px;}
._2c_c01298{margin-left:-14.256000px;}
._a_c01298{margin-left:-12.960000px;}
._1c_c01298{margin-left:-11.739000px;}
._13_c01298{margin-left:-10.380000px;}
._e_c01298{margin-left:-8.988000px;}
._14_c01298{margin-left:-7.176000px;}
._4_c01298{margin-left:-5.940000px;}
._2_c01298{margin-left:-4.218000px;}
._11_c01298{margin-left:-3.132000px;}
._d_c01298{margin-left:-1.872000px;}
._3_c01298{width:1.785000px;}
._0_c01298{width:2.856000px;}
._1_c01298{width:4.794000px;}
._6_c01298{width:6.222000px;}
._7_c01298{width:7.650000px;}
._5_c01298{width:8.874000px;}
._8_c01298{width:9.894000px;}
._f_c01298{width:11.280000px;}
._10_c01298{width:12.558000px;}
._1f_c01298{width:13.824000px;}
._1e_c01298{width:15.276000px;}
._34_c01298{width:19.134000px;}
._35_c01298{width:20.424000px;}
._33_c01298{width:21.936000px;}
._18_c01298{width:25.452000px;}
._23_c01298{width:26.967000px;}
._21_c01298{width:28.722000px;}
._37_c01298{width:32.448000px;}
._17_c01298{width:40.560000px;}
._9_c01298{width:50.562000px;}
._26_c01298{width:66.063000px;}
._1d_c01298{width:67.878000px;}
._38_c01298{width:78.564000px;}
._24_c01298{width:82.836000px;}
._25_c01298{width:94.998000px;}
._28_c01298{width:104.841000px;}
._22_c01298{width:106.509000px;}
._30_c01298{width:113.034000px;}
._36_c01298{width:118.788000px;}
._2e_c01298{width:127.686000px;}
._12_c01298{width:134.397000px;}
._27_c01298{width:139.530000px;}
._32_c01298{width:180.987000px;}
._2b_c01298{width:184.320000px;}
._3b_c01298{width:223.950000px;}
._20_c01298{width:228.003000px;}
._2d_c01298{width:246.462000px;}
._15_c01298{width:278.394000px;}
._2a_c01298{width:312.498000px;}
._39_c01298{width:333.246000px;}
._31_c01298{width:349.533000px;}
._3a_c01298{width:416.568000px;}
._2f_c01298{width:467.970000px;}
.fc2_c01298{color:transparent;}
.fc1_c01298{color:rgb(128,128,128);}
.fc0_c01298{color:rgb(0,0,0);}
.fs8_c01298{font-size:48.000000px;}
.fs7_c01298{font-size:60.000000px;}
.fs6_c01298{font-size:72.000000px;}
.fs3_c01298{font-size:78.000000px;}
.fs4_c01298{font-size:81.000000px;}
.fs5_c01298{font-size:87.000000px;}
.fs0_c01298{font-size:102.000000px;}
.fs1_c01298{font-size:105.000000px;}
.fs2_c01298{font-size:120.000000px;}
.y0_c01298{bottom:0.000000px;}
.y26_c01298{bottom:3.105000px;}
.y25_c01298{bottom:7.228357px;}
.y24_c01298{bottom:43.530000px;}
.y23_c01298{bottom:67.830000px;}
.y22_c01298{bottom:91.830000px;}
.y21_c01298{bottom:117.180000px;}
.y20_c01298{bottom:142.080000px;}
.y1f_c01298{bottom:167.130000px;}
.y1e_c01298{bottom:192.330000px;}
.y1d_c01298{bottom:216.780000px;}
.y1c_c01298{bottom:239.280000px;}
.y1b_c01298{bottom:265.680000px;}
.y1a_c01298{bottom:289.980000px;}
.y19_c01298{bottom:314.280000px;}
.y18_c01298{bottom:339.180000px;}
.y17_c01298{bottom:362.430000px;}
.y16_c01298{bottom:387.780000px;}
.y15_c01298{bottom:412.080000px;}
.y14_c01298{bottom:436.380000px;}
.y13_c01298{bottom:460.980000px;}
.y12_c01298{bottom:486.330000px;}
.y11_c01298{bottom:509.580000px;}
.y10_c01298{bottom:533.580000px;}
.yf_c01298{bottom:557.580000px;}
.ye_c01298{bottom:580.530000px;}
.yd_c01298{bottom:608.130000px;}
.yc_c01298{bottom:630.480000px;}
.yb_c01298{bottom:654.780000px;}
.ya_c01298{bottom:679.680000px;}
.y9_c01298{bottom:702.780000px;}
.y8_c01298{bottom:728.280000px;}
.y7_c01298{bottom:753.030000px;}
.y6_c01298{bottom:778.680000px;}
.y5_c01298{bottom:800.880000px;}
.y4_c01298{bottom:825.180000px;}
.y3_c01298{bottom:851.580000px;}
.y2_c01298{bottom:873.480000px;}
.y1_c01298{bottom:910.980000px;}
.h9_c01298{height:13.200074px;}
.ha_c01298{height:43.804688px;}
.h5_c01298{height:79.497070px;}
.h7_c01298{height:83.226000px;}
.h6_c01298{height:84.269531px;}
.h8_c01298{height:87.679688px;}
.h4_c01298{height:91.176000px;}
.h3_c01298{height:98.756836px;}
.h2_c01298{height:120.937500px;}
.h1_c01298{height:973.500000px;}
.h0_c01298{height:973.650000px;}
.w2_c01298{width:104.875500px;}
.w1_c01298{width:662.250000px;}
.w0_c01298{width:662.550000px;}
.x0_c01298{left:0.000000px;}
.xa_c01298{left:41.100000px;}
.x7_c01298{left:44.550000px;}
.x2_c01298{left:45.600000px;}
.x4_c01298{left:46.650000px;}
.xb_c01298{left:47.850000px;}
.x9_c01298{left:48.900000px;}
.x6_c01298{left:52.650000px;}
.x5_c01298{left:53.700000px;}
.x3_c01298{left:54.900000px;}
.x11_c01298{left:70.500000px;}
.x8_c01298{left:76.650000px;}
.x10_c01298{left:139.800000px;}
.x1_c01298{left:208.200000px;}
.x1e_c01298{left:283.089249px;}
.xc_c01298{left:322.350000px;}
.xd_c01298{left:334.500000px;}
.x12_c01298{left:365.250000px;}
.x1d_c01298{left:371.700000px;}
.x13_c01298{left:376.950000px;}
.x1a_c01298{left:403.950000px;}
.x1b_c01298{left:411.750000px;}
.x14_c01298{left:468.750000px;}
.x15_c01298{left:475.650000px;}
.xe_c01298{left:507.300000px;}
.x16_c01298{left:512.400000px;}
.xf_c01298{left:514.350000px;}
.x17_c01298{left:519.750000px;}
.x18_c01298{left:523.200000px;}
.x19_c01298{left:530.550000px;}
.x1c_c01298{left:534.600000px;}
@media print{
.v0_c01298{vertical-align:0.000000pt;}
.ls2_c01298{letter-spacing:0.000000pt;}
.ls5_c01298{letter-spacing:2.666667pt;}
.ls4_c01298{letter-spacing:8.000000pt;}
.ls3_c01298{letter-spacing:10.666667pt;}
.ls1_c01298{letter-spacing:13.066667pt;}
.ls0_c01298{letter-spacing:62.314667pt;}
.ws2_c01298{word-spacing:-68.165333pt;}
.ws1_c01298{word-spacing:-56.992000pt;}
.ws3_c01298{word-spacing:-52.608000pt;}
.ws0_c01298{word-spacing:-22.666667pt;}
.ws4_c01298{word-spacing:-15.045333pt;}
.ws5_c01298{word-spacing:0.000000pt;}
._16_c01298{margin-left:-59.397333pt;}
._29_c01298{margin-left:-26.208000pt;}
._c_c01298{margin-left:-24.746667pt;}
._b_c01298{margin-left:-19.733333pt;}
._19_c01298{margin-left:-17.378667pt;}
._1a_c01298{margin-left:-15.122667pt;}
._1b_c01298{margin-left:-13.824000pt;}
._2c_c01298{margin-left:-12.672000pt;}
._a_c01298{margin-left:-11.520000pt;}
._1c_c01298{margin-left:-10.434667pt;}
._13_c01298{margin-left:-9.226667pt;}
._e_c01298{margin-left:-7.989333pt;}
._14_c01298{margin-left:-6.378667pt;}
._4_c01298{margin-left:-5.280000pt;}
._2_c01298{margin-left:-3.749333pt;}
._11_c01298{margin-left:-2.784000pt;}
._d_c01298{margin-left:-1.664000pt;}
._3_c01298{width:1.586667pt;}
._0_c01298{width:2.538667pt;}
._1_c01298{width:4.261333pt;}
._6_c01298{width:5.530667pt;}
._7_c01298{width:6.800000pt;}
._5_c01298{width:7.888000pt;}
._8_c01298{width:8.794667pt;}
._f_c01298{width:10.026667pt;}
._10_c01298{width:11.162667pt;}
._1f_c01298{width:12.288000pt;}
._1e_c01298{width:13.578667pt;}
._34_c01298{width:17.008000pt;}
._35_c01298{width:18.154667pt;}
._33_c01298{width:19.498667pt;}
._18_c01298{width:22.624000pt;}
._23_c01298{width:23.970667pt;}
._21_c01298{width:25.530667pt;}
._37_c01298{width:28.842667pt;}
._17_c01298{width:36.053333pt;}
._9_c01298{width:44.944000pt;}
._26_c01298{width:58.722667pt;}
._1d_c01298{width:60.336000pt;}
._38_c01298{width:69.834667pt;}
._24_c01298{width:73.632000pt;}
._25_c01298{width:84.442667pt;}
._28_c01298{width:93.192000pt;}
._22_c01298{width:94.674667pt;}
._30_c01298{width:100.474667pt;}
._36_c01298{width:105.589333pt;}
._2e_c01298{width:113.498667pt;}
._12_c01298{width:119.464000pt;}
._27_c01298{width:124.026667pt;}
._32_c01298{width:160.877333pt;}
._2b_c01298{width:163.840000pt;}
._3b_c01298{width:199.066667pt;}
._20_c01298{width:202.669333pt;}
._2d_c01298{width:219.077333pt;}
._15_c01298{width:247.461333pt;}
._2a_c01298{width:277.776000pt;}
._39_c01298{width:296.218667pt;}
._31_c01298{width:310.696000pt;}
._3a_c01298{width:370.282667pt;}
._2f_c01298{width:415.973333pt;}
.fs8_c01298{font-size:42.666667pt;}
.fs7_c01298{font-size:53.333333pt;}
.fs6_c01298{font-size:64.000000pt;}
.fs3_c01298{font-size:69.333333pt;}
.fs4_c01298{font-size:72.000000pt;}
.fs5_c01298{font-size:77.333333pt;}
.fs0_c01298{font-size:90.666667pt;}
.fs1_c01298{font-size:93.333333pt;}
.fs2_c01298{font-size:106.666667pt;}
.y0_c01298{bottom:0.000000pt;}
.y26_c01298{bottom:2.760000pt;}
.y25_c01298{bottom:6.425206pt;}
.y24_c01298{bottom:38.693333pt;}
.y23_c01298{bottom:60.293333pt;}
.y22_c01298{bottom:81.626667pt;}
.y21_c01298{bottom:104.160000pt;}
.y20_c01298{bottom:126.293333pt;}
.y1f_c01298{bottom:148.560000pt;}
.y1e_c01298{bottom:170.960000pt;}
.y1d_c01298{bottom:192.693333pt;}
.y1c_c01298{bottom:212.693333pt;}
.y1b_c01298{bottom:236.160000pt;}
.y1a_c01298{bottom:257.760000pt;}
.y19_c01298{bottom:279.360000pt;}
.y18_c01298{bottom:301.493333pt;}
.y17_c01298{bottom:322.160000pt;}
.y16_c01298{bottom:344.693333pt;}
.y15_c01298{bottom:366.293333pt;}
.y14_c01298{bottom:387.893333pt;}
.y13_c01298{bottom:409.760000pt;}
.y12_c01298{bottom:432.293333pt;}
.y11_c01298{bottom:452.960000pt;}
.y10_c01298{bottom:474.293333pt;}
.yf_c01298{bottom:495.626667pt;}
.ye_c01298{bottom:516.026667pt;}
.yd_c01298{bottom:540.560000pt;}
.yc_c01298{bottom:560.426667pt;}
.yb_c01298{bottom:582.026667pt;}
.ya_c01298{bottom:604.160000pt;}
.y9_c01298{bottom:624.693333pt;}
.y8_c01298{bottom:647.360000pt;}
.y7_c01298{bottom:669.360000pt;}
.y6_c01298{bottom:692.160000pt;}
.y5_c01298{bottom:711.893333pt;}
.y4_c01298{bottom:733.493333pt;}
.y3_c01298{bottom:756.960000pt;}
.y2_c01298{bottom:776.426667pt;}
.y1_c01298{bottom:809.760000pt;}
.h9_c01298{height:11.733399pt;}
.ha_c01298{height:38.937500pt;}
.h5_c01298{height:70.664062pt;}
.h7_c01298{height:73.978667pt;}
.h6_c01298{height:74.906250pt;}
.h8_c01298{height:77.937500pt;}
.h4_c01298{height:81.045333pt;}
.h3_c01298{height:87.783854pt;}
.h2_c01298{height:107.500000pt;}
.h1_c01298{height:865.333333pt;}
.h0_c01298{height:865.466667pt;}
.w2_c01298{width:93.222667pt;}
.w1_c01298{width:588.666667pt;}
.w0_c01298{width:588.933333pt;}
.x0_c01298{left:0.000000pt;}
.xa_c01298{left:36.533333pt;}
.x7_c01298{left:39.600000pt;}
.x2_c01298{left:40.533333pt;}
.x4_c01298{left:41.466667pt;}
.xb_c01298{left:42.533333pt;}
.x9_c01298{left:43.466667pt;}
.x6_c01298{left:46.800000pt;}
.x5_c01298{left:47.733333pt;}
.x3_c01298{left:48.800000pt;}
.x11_c01298{left:62.666667pt;}
.x8_c01298{left:68.133333pt;}
.x10_c01298{left:124.266667pt;}
.x1_c01298{left:185.066667pt;}
.x1e_c01298{left:251.634888pt;}
.xc_c01298{left:286.533333pt;}
.xd_c01298{left:297.333333pt;}
.x12_c01298{left:324.666667pt;}
.x1d_c01298{left:330.400000pt;}
.x13_c01298{left:335.066667pt;}
.x1a_c01298{left:359.066667pt;}
.x1b_c01298{left:366.000000pt;}
.x14_c01298{left:416.666667pt;}
.x15_c01298{left:422.800000pt;}
.xe_c01298{left:450.933333pt;}
.x16_c01298{left:455.466667pt;}
.xf_c01298{left:457.200000pt;}
.x17_c01298{left:462.000000pt;}
.x18_c01298{left:465.066667pt;}
.x19_c01298{left:471.600000pt;}
.x1c_c01298{left:475.200000pt;}
}





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

.ir_c01299:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01299{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01299;src:url('chunks/assets/font_3e9367cf0e48f5fa314df13b.woff2')format("woff");}.ff1_c01299{font-family:ff1_c01299;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01299;src:url('chunks/assets/font_95f8f9fee029876325d7cfe3.woff2')format("woff");}.ff2_c01299{font-family:ff2_c01299;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01299;src:url('chunks/assets/font_8af03dba27cc07b11f3d39d3.woff2')format("woff");}.ff3_c01299{font-family:ff3_c01299;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01299;src:url('chunks/assets/font_f26dedbcb98954d76dc07a18.woff2')format("woff");}.ff4_c01299{font-family:ff4_c01299;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01299;src:url('chunks/assets/font_86a6295cab2912796ce9380d.woff2')format("woff");}.ff5_c01299{font-family:ff5_c01299;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01299;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c01299{font-family:ff6_c01299;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01299{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01299{vertical-align:0.000000px;}
.ls6_c01299{letter-spacing:-12.000000px;}
.ls4_c01299{letter-spacing:0.000000px;}
.ls3_c01299{letter-spacing:1.539000px;}
.ls0_c01299{letter-spacing:2.100000px;}
.ls5_c01299{letter-spacing:9.000000px;}
.ls1_c01299{letter-spacing:10.500000px;}
.ls2_c01299{letter-spacing:12.312000px;}
.sc__c01299{text-shadow:none;}
.sc0_c01299{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01299{-webkit-text-stroke:0px transparent;}
.sc0_c01299{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01299{word-spacing:-76.686000px;}
.ws4_c01299{word-spacing:-21.789000px;}
.ws1_c01299{word-spacing:-20.250000px;}
.ws0_c01299{word-spacing:-17.352000px;}
.ws3_c01299{word-spacing:-16.083000px;}
.ws5_c01299{word-spacing:0.000000px;}
._26_c01299{margin-left:-26.973000px;}
._e_c01299{margin-left:-24.057000px;}
._19_c01299{margin-left:-19.683000px;}
._22_c01299{margin-left:-18.015000px;}
._16_c01299{margin-left:-16.686000px;}
._1b_c01299{margin-left:-15.147000px;}
._12_c01299{margin-left:-13.851000px;}
._1c_c01299{margin-left:-12.717000px;}
._10_c01299{margin-left:-11.472000px;}
._15_c01299{margin-left:-10.449000px;}
._3_c01299{margin-left:-8.991000px;}
._14_c01299{margin-left:-7.614000px;}
._5_c01299{margin-left:-6.156000px;}
._b_c01299{margin-left:-4.455000px;}
._c_c01299{margin-left:-3.402000px;}
._6_c01299{margin-left:-2.106000px;}
._f_c01299{margin-left:-1.101000px;}
._0_c01299{width:1.458000px;}
._1_c01299{width:3.321000px;}
._2_c01299{width:4.860000px;}
._a_c01299{width:6.318000px;}
._7_c01299{width:7.695000px;}
._8_c01299{width:8.748000px;}
._4_c01299{width:9.882000px;}
._1f_c01299{width:11.745000px;}
._9_c01299{width:12.879000px;}
._24_c01299{width:14.094000px;}
._20_c01299{width:15.390000px;}
._13_c01299{width:16.605000px;}
._27_c01299{width:18.861000px;}
._1d_c01299{width:22.518000px;}
._11_c01299{width:24.462000px;}
._d_c01299{width:27.015000px;}
._21_c01299{width:28.455000px;}
._25_c01299{width:30.708000px;}
._1a_c01299{width:54.432000px;}
._1e_c01299{width:124.467000px;}
._17_c01299{width:214.083000px;}
._18_c01299{width:259.929000px;}
._23_c01299{width:365.229000px;}
._28_c01299{width:429.555000px;}
.fc2_c01299{color:transparent;}
.fc1_c01299{color:rgb(128,128,128);}
.fc0_c01299{color:rgb(0,0,0);}
.fs5_c01299{font-size:48.000000px;}
.fs1_c01299{font-size:72.000000px;}
.fs0_c01299{font-size:81.000000px;}
.fs2_c01299{font-size:87.000000px;}
.fs4_c01299{font-size:105.000000px;}
.fs3_c01299{font-size:111.000000px;}
.y0_c01299{bottom:0.000000px;}
.y25_c01299{bottom:3.105000px;}
.y24_c01299{bottom:7.228371px;}
.y23_c01299{bottom:47.715000px;}
.y22_c01299{bottom:69.615000px;}
.y21_c01299{bottom:95.265000px;}
.y20_c01299{bottom:119.865000px;}
.y1f_c01299{bottom:144.915000px;}
.y1e_c01299{bottom:170.415000px;}
.y1d_c01299{bottom:195.165000px;}
.y1c_c01299{bottom:219.765000px;}
.y1b_c01299{bottom:244.815000px;}
.y1a_c01299{bottom:270.765000px;}
.y19_c01299{bottom:294.615000px;}
.y18_c01299{bottom:316.965000px;}
.y17_c01299{bottom:345.015000px;}
.y16_c01299{bottom:368.565000px;}
.y15_c01299{bottom:393.165000px;}
.y14_c01299{bottom:418.215000px;}
.y13_c01299{bottom:442.815000px;}
.y12_c01299{bottom:467.415000px;}
.y11_c01299{bottom:490.815000px;}
.y10_c01299{bottom:515.715000px;}
.yf_c01299{bottom:540.315000px;}
.ye_c01299{bottom:564.765000px;}
.yd_c01299{bottom:590.715000px;}
.yc_c01299{bottom:612.915000px;}
.yb_c01299{bottom:638.265000px;}
.ya_c01299{bottom:662.865000px;}
.y9_c01299{bottom:686.115000px;}
.y8_c01299{bottom:710.865000px;}
.y7_c01299{bottom:735.765000px;}
.y6_c01299{bottom:760.365000px;}
.y5_c01299{bottom:784.665000px;}
.y4_c01299{bottom:808.065000px;}
.y3_c01299{bottom:834.015000px;}
.y2_c01299{bottom:857.565000px;}
.y1_c01299{bottom:881.865000px;}
.h6_c01299{height:13.200074px;}
.h7_c01299{height:43.804688px;}
.h2_c01299{height:79.497070px;}
.h3_c01299{height:84.269531px;}
.h4_c01299{height:91.176000px;}
.h5_c01299{height:120.324000px;}
.h1_c01299{height:986.250000px;}
.h0_c01299{height:986.325000px;}
.w2_c01299{width:104.875500px;}
.w0_c01299{width:667.425000px;}
.w1_c01299{width:667.500000px;}
.x0_c01299{left:0.000000px;}
.x5_c01299{left:27.300000px;}
.x4_c01299{left:29.100000px;}
.x8_c01299{left:57.000000px;}
.xe_c01299{left:82.800000px;}
.x6_c01299{left:100.950000px;}
.x7_c01299{left:119.100000px;}
.x1_c01299{left:121.050000px;}
.x3_c01299{left:122.250000px;}
.xa_c01299{left:123.900000px;}
.x9_c01299{left:126.600000px;}
.xd_c01299{left:127.650000px;}
.xc_c01299{left:136.350000px;}
.xb_c01299{left:156.300000px;}
.x2_c01299{left:210.150000px;}
.x10_c01299{left:285.526749px;}
.xf_c01299{left:557.250000px;}
@media print{
.v0_c01299{vertical-align:0.000000pt;}
.ls6_c01299{letter-spacing:-10.666667pt;}
.ls4_c01299{letter-spacing:0.000000pt;}
.ls3_c01299{letter-spacing:1.368000pt;}
.ls0_c01299{letter-spacing:1.866667pt;}
.ls5_c01299{letter-spacing:8.000000pt;}
.ls1_c01299{letter-spacing:9.333333pt;}
.ls2_c01299{letter-spacing:10.944000pt;}
.ws2_c01299{word-spacing:-68.165333pt;}
.ws4_c01299{word-spacing:-19.368000pt;}
.ws1_c01299{word-spacing:-18.000000pt;}
.ws0_c01299{word-spacing:-15.424000pt;}
.ws3_c01299{word-spacing:-14.296000pt;}
.ws5_c01299{word-spacing:0.000000pt;}
._26_c01299{margin-left:-23.976000pt;}
._e_c01299{margin-left:-21.384000pt;}
._19_c01299{margin-left:-17.496000pt;}
._22_c01299{margin-left:-16.013333pt;}
._16_c01299{margin-left:-14.832000pt;}
._1b_c01299{margin-left:-13.464000pt;}
._12_c01299{margin-left:-12.312000pt;}
._1c_c01299{margin-left:-11.304000pt;}
._10_c01299{margin-left:-10.197333pt;}
._15_c01299{margin-left:-9.288000pt;}
._3_c01299{margin-left:-7.992000pt;}
._14_c01299{margin-left:-6.768000pt;}
._5_c01299{margin-left:-5.472000pt;}
._b_c01299{margin-left:-3.960000pt;}
._c_c01299{margin-left:-3.024000pt;}
._6_c01299{margin-left:-1.872000pt;}
._f_c01299{margin-left:-0.978667pt;}
._0_c01299{width:1.296000pt;}
._1_c01299{width:2.952000pt;}
._2_c01299{width:4.320000pt;}
._a_c01299{width:5.616000pt;}
._7_c01299{width:6.840000pt;}
._8_c01299{width:7.776000pt;}
._4_c01299{width:8.784000pt;}
._1f_c01299{width:10.440000pt;}
._9_c01299{width:11.448000pt;}
._24_c01299{width:12.528000pt;}
._20_c01299{width:13.680000pt;}
._13_c01299{width:14.760000pt;}
._27_c01299{width:16.765333pt;}
._1d_c01299{width:20.016000pt;}
._11_c01299{width:21.744000pt;}
._d_c01299{width:24.013333pt;}
._21_c01299{width:25.293333pt;}
._25_c01299{width:27.296000pt;}
._1a_c01299{width:48.384000pt;}
._1e_c01299{width:110.637333pt;}
._17_c01299{width:190.296000pt;}
._18_c01299{width:231.048000pt;}
._23_c01299{width:324.648000pt;}
._28_c01299{width:381.826667pt;}
.fs5_c01299{font-size:42.666667pt;}
.fs1_c01299{font-size:64.000000pt;}
.fs0_c01299{font-size:72.000000pt;}
.fs2_c01299{font-size:77.333333pt;}
.fs4_c01299{font-size:93.333333pt;}
.fs3_c01299{font-size:98.666667pt;}
.y0_c01299{bottom:0.000000pt;}
.y25_c01299{bottom:2.760000pt;}
.y24_c01299{bottom:6.425219pt;}
.y23_c01299{bottom:42.413333pt;}
.y22_c01299{bottom:61.880000pt;}
.y21_c01299{bottom:84.680000pt;}
.y20_c01299{bottom:106.546667pt;}
.y1f_c01299{bottom:128.813333pt;}
.y1e_c01299{bottom:151.480000pt;}
.y1d_c01299{bottom:173.480000pt;}
.y1c_c01299{bottom:195.346667pt;}
.y1b_c01299{bottom:217.613333pt;}
.y1a_c01299{bottom:240.680000pt;}
.y19_c01299{bottom:261.880000pt;}
.y18_c01299{bottom:281.746667pt;}
.y17_c01299{bottom:306.680000pt;}
.y16_c01299{bottom:327.613333pt;}
.y15_c01299{bottom:349.480000pt;}
.y14_c01299{bottom:371.746667pt;}
.y13_c01299{bottom:393.613333pt;}
.y12_c01299{bottom:415.480000pt;}
.y11_c01299{bottom:436.280000pt;}
.y10_c01299{bottom:458.413333pt;}
.yf_c01299{bottom:480.280000pt;}
.ye_c01299{bottom:502.013333pt;}
.yd_c01299{bottom:525.080000pt;}
.yc_c01299{bottom:544.813333pt;}
.yb_c01299{bottom:567.346667pt;}
.ya_c01299{bottom:589.213333pt;}
.y9_c01299{bottom:609.880000pt;}
.y8_c01299{bottom:631.880000pt;}
.y7_c01299{bottom:654.013333pt;}
.y6_c01299{bottom:675.880000pt;}
.y5_c01299{bottom:697.480000pt;}
.y4_c01299{bottom:718.280000pt;}
.y3_c01299{bottom:741.346667pt;}
.y2_c01299{bottom:762.280000pt;}
.y1_c01299{bottom:783.880000pt;}
.h6_c01299{height:11.733399pt;}
.h7_c01299{height:38.937500pt;}
.h2_c01299{height:70.664062pt;}
.h3_c01299{height:74.906250pt;}
.h4_c01299{height:81.045333pt;}
.h5_c01299{height:106.954667pt;}
.h1_c01299{height:876.666667pt;}
.h0_c01299{height:876.733333pt;}
.w2_c01299{width:93.222667pt;}
.w0_c01299{width:593.266667pt;}
.w1_c01299{width:593.333333pt;}
.x0_c01299{left:0.000000pt;}
.x5_c01299{left:24.266667pt;}
.x4_c01299{left:25.866667pt;}
.x8_c01299{left:50.666667pt;}
.xe_c01299{left:73.600000pt;}
.x6_c01299{left:89.733333pt;}
.x7_c01299{left:105.866667pt;}
.x1_c01299{left:107.600000pt;}
.x3_c01299{left:108.666667pt;}
.xa_c01299{left:110.133333pt;}
.x9_c01299{left:112.533333pt;}
.xd_c01299{left:113.466667pt;}
.xc_c01299{left:121.200000pt;}
.xb_c01299{left:138.933333pt;}
.x2_c01299{left:186.800000pt;}
.x10_c01299{left:253.801554pt;}
.xf_c01299{left:495.333333pt;}
}





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

.ir_c01300:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01300{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01300;src:url('chunks/assets/font_17cac080164b0589baa3b0ea.woff2')format("woff");}.ff1_c01300{font-family:ff1_c01300;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01300;src:url('chunks/assets/font_1f18b3eae026a470415193d4.woff2')format("woff");}.ff2_c01300{font-family:ff2_c01300;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01300;src:url('chunks/assets/font_eabe9427aba49fc9d887b9f5.woff2')format("woff");}.ff3_c01300{font-family:ff3_c01300;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01300;src:url('chunks/assets/font_4ba32fcf4290aafbea574f5a.woff2')format("woff");}.ff4_c01300{font-family:ff4_c01300;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01300;src:url('chunks/assets/font_31c021dc16320866c8dc8109.woff2')format("woff");}.ff5_c01300{font-family:ff5_c01300;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01300;src:url('chunks/assets/font_e4f47f3c1fa191dc45ccf0c1.woff2')format("woff");}.ff6_c01300{font-family:ff6_c01300;line-height:1.437000;font-style:normal;font-weight: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_c01300;src:url('chunks/assets/font_24449a8924b760e79d9f3ba8.woff2')format("woff");}.ff7_c01300{font-family:ff7_c01300;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c01300;src:url('chunks/assets/font_388bf12a62977653b142357e.woff2')format("woff");}.ff8_c01300{font-family:ff8_c01300;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c01300;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff9_c01300{font-family:ff9_c01300;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01300{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01300{vertical-align:0.000000px;}
.ls5_c01300{letter-spacing:-12.000000px;}
.ls2_c01300{letter-spacing:-3.000000px;}
.ls1_c01300{letter-spacing:0.000000px;}
.ls3_c01300{letter-spacing:3.000000px;}
.ls4_c01300{letter-spacing:9.000000px;}
.ls0_c01300{letter-spacing:13.512000px;}
.sc__c01300{text-shadow:none;}
.sc0_c01300{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01300{-webkit-text-stroke:0px transparent;}
.sc0_c01300{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01300{word-spacing:-76.686000px;}
.ws4_c01300{word-spacing:-20.250000px;}
.ws0_c01300{word-spacing:-18.000000px;}
.ws3_c01300{word-spacing:-17.352000px;}
.ws2_c01300{word-spacing:-16.083000px;}
.ws5_c01300{word-spacing:0.000000px;}
._16_c01300{margin-left:-49.611000px;}
._11_c01300{margin-left:-40.176000px;}
._1d_c01300{margin-left:-27.549000px;}
._22_c01300{margin-left:-23.814000px;}
._21_c01300{margin-left:-21.528000px;}
._26_c01300{margin-left:-19.944000px;}
._25_c01300{margin-left:-18.549000px;}
._15_c01300{margin-left:-17.307000px;}
._1e_c01300{margin-left:-15.516000px;}
._5_c01300{margin-left:-11.880000px;}
._1f_c01300{margin-left:-10.467000px;}
._13_c01300{margin-left:-8.649000px;}
._a_c01300{margin-left:-7.299000px;}
._c_c01300{margin-left:-6.156000px;}
._29_c01300{margin-left:-5.040000px;}
._4_c01300{margin-left:-3.960000px;}
._0_c01300{margin-left:-2.673000px;}
._3_c01300{margin-left:-1.287000px;}
._12_c01300{width:1.062000px;}
._7_c01300{width:2.079000px;}
._1_c01300{width:3.267000px;}
._8_c01300{width:4.320000px;}
._2_c01300{width:5.445000px;}
._9_c01300{width:6.543000px;}
._b_c01300{width:7.956000px;}
._e_c01300{width:9.315000px;}
._d_c01300{width:11.052000px;}
._f_c01300{width:12.357000px;}
._20_c01300{width:13.653000px;}
._1c_c01300{width:16.032000px;}
._10_c01300{width:17.541000px;}
._2b_c01300{width:20.079000px;}
._1b_c01300{width:21.627000px;}
._2f_c01300{width:26.067000px;}
._2d_c01300{width:28.374000px;}
._2c_c01300{width:31.395000px;}
._2e_c01300{width:34.110000px;}
._17_c01300{width:37.650000px;}
._6_c01300{width:42.768000px;}
._24_c01300{width:60.975000px;}
._14_c01300{width:89.310000px;}
._27_c01300{width:108.216000px;}
._23_c01300{width:114.606000px;}
._19_c01300{width:142.080000px;}
._1a_c01300{width:227.562000px;}
._2a_c01300{width:236.676000px;}
._18_c01300{width:271.980000px;}
._28_c01300{width:302.622000px;}
._30_c01300{width:1078.668000px;}
.fc2_c01300{color:transparent;}
.fc1_c01300{color:rgb(128,128,128);}
.fc0_c01300{color:rgb(0,0,0);}
.fs8_c01300{font-size:48.000000px;}
.fs7_c01300{font-size:72.000000px;}
.fs3_c01300{font-size:75.000000px;}
.fs4_c01300{font-size:78.000000px;}
.fs1_c01300{font-size:81.000000px;}
.fs2_c01300{font-size:84.000000px;}
.fs5_c01300{font-size:87.000000px;}
.fs0_c01300{font-size:99.000000px;}
.fs6_c01300{font-size:111.000000px;}
.y0_c01300{bottom:0.000000px;}
.y23_c01300{bottom:3.105000px;}
.y22_c01300{bottom:7.228369px;}
.y21_c01300{bottom:51.570000px;}
.y20_c01300{bottom:78.870000px;}
.y1f_c01300{bottom:103.320000px;}
.y1e_c01300{bottom:128.520000px;}
.y1d_c01300{bottom:149.220000px;}
.y1c_c01300{bottom:178.170000px;}
.y1b_c01300{bottom:202.470000px;}
.y1a_c01300{bottom:226.470000px;}
.y19_c01300{bottom:252.120000px;}
.y18_c01300{bottom:276.420000px;}
.y17_c01300{bottom:298.920000px;}
.y16_c01300{bottom:325.020000px;}
.y15_c01300{bottom:349.920000px;}
.y14_c01300{bottom:374.970000px;}
.y13_c01300{bottom:398.970000px;}
.y12_c01300{bottom:423.870000px;}
.y11_c01300{bottom:447.570000px;}
.y10_c01300{bottom:471.870000px;}
.yf_c01300{bottom:495.420000px;}
.ye_c01300{bottom:519.420000px;}
.yd_c01300{bottom:543.270000px;}
.yc_c01300{bottom:567.720000px;}
.yb_c01300{bottom:592.020000px;}
.ya_c01300{bottom:616.620000px;}
.y9_c01300{bottom:668.220000px;}
.y8_c01300{bottom:695.970000px;}
.y7_c01300{bottom:725.520000px;}
.y6_c01300{bottom:788.370000px;}
.y5_c01300{bottom:811.320000px;}
.y4_c01300{bottom:835.620000px;}
.y3_c01300{bottom:860.520000px;}
.y2_c01300{bottom:883.620000px;}
.y1_c01300{bottom:919.620000px;}
.h9_c01300{height:13.200073px;}
.ha_c01300{height:43.804688px;}
.h3_c01300{height:79.497070px;}
.h5_c01300{height:83.226000px;}
.h8_c01300{height:84.269531px;}
.h4_c01300{height:88.032000px;}
.h6_c01300{height:91.176000px;}
.h2_c01300{height:115.870605px;}
.h7_c01300{height:120.324000px;}
.h1_c01300{height:986.250000px;}
.h0_c01300{height:986.550000px;}
.w1_c01300{width:104.875500px;}
.w0_c01300{width:672.000000px;}
.x0_c01300{left:0.000000px;}
.x2_c01300{left:45.600000px;}
.x3_c01300{left:47.250000px;}
.xb_c01300{left:51.300000px;}
.xc_c01300{left:52.350000px;}
.xe_c01300{left:53.700000px;}
.xf_c01300{left:54.750000px;}
.xd_c01300{left:57.150000px;}
.x5_c01300{left:60.750000px;}
.x1_c01300{left:63.450000px;}
.x10_c01300{left:65.400000px;}
.x6_c01300{left:94.200000px;}
.x4_c01300{left:122.400000px;}
.x8_c01300{left:167.700000px;}
.x7_c01300{left:186.600000px;}
.x9_c01300{left:187.950000px;}
.xa_c01300{left:192.000000px;}
.x11_c01300{left:287.814240px;}
@media print{
.v0_c01300{vertical-align:0.000000pt;}
.ls5_c01300{letter-spacing:-10.666667pt;}
.ls2_c01300{letter-spacing:-2.666667pt;}
.ls1_c01300{letter-spacing:0.000000pt;}
.ls3_c01300{letter-spacing:2.666667pt;}
.ls4_c01300{letter-spacing:8.000000pt;}
.ls0_c01300{letter-spacing:12.010667pt;}
.ws1_c01300{word-spacing:-68.165333pt;}
.ws4_c01300{word-spacing:-18.000000pt;}
.ws0_c01300{word-spacing:-16.000000pt;}
.ws3_c01300{word-spacing:-15.424000pt;}
.ws2_c01300{word-spacing:-14.296000pt;}
.ws5_c01300{word-spacing:0.000000pt;}
._16_c01300{margin-left:-44.098667pt;}
._11_c01300{margin-left:-35.712000pt;}
._1d_c01300{margin-left:-24.488000pt;}
._22_c01300{margin-left:-21.168000pt;}
._21_c01300{margin-left:-19.136000pt;}
._26_c01300{margin-left:-17.728000pt;}
._25_c01300{margin-left:-16.488000pt;}
._15_c01300{margin-left:-15.384000pt;}
._1e_c01300{margin-left:-13.792000pt;}
._5_c01300{margin-left:-10.560000pt;}
._1f_c01300{margin-left:-9.304000pt;}
._13_c01300{margin-left:-7.688000pt;}
._a_c01300{margin-left:-6.488000pt;}
._c_c01300{margin-left:-5.472000pt;}
._29_c01300{margin-left:-4.480000pt;}
._4_c01300{margin-left:-3.520000pt;}
._0_c01300{margin-left:-2.376000pt;}
._3_c01300{margin-left:-1.144000pt;}
._12_c01300{width:0.944000pt;}
._7_c01300{width:1.848000pt;}
._1_c01300{width:2.904000pt;}
._8_c01300{width:3.840000pt;}
._2_c01300{width:4.840000pt;}
._9_c01300{width:5.816000pt;}
._b_c01300{width:7.072000pt;}
._e_c01300{width:8.280000pt;}
._d_c01300{width:9.824000pt;}
._f_c01300{width:10.984000pt;}
._20_c01300{width:12.136000pt;}
._1c_c01300{width:14.250667pt;}
._10_c01300{width:15.592000pt;}
._2b_c01300{width:17.848000pt;}
._1b_c01300{width:19.224000pt;}
._2f_c01300{width:23.170667pt;}
._2d_c01300{width:25.221333pt;}
._2c_c01300{width:27.906667pt;}
._2e_c01300{width:30.320000pt;}
._17_c01300{width:33.466667pt;}
._6_c01300{width:38.016000pt;}
._24_c01300{width:54.200000pt;}
._14_c01300{width:79.386667pt;}
._27_c01300{width:96.192000pt;}
._23_c01300{width:101.872000pt;}
._19_c01300{width:126.293333pt;}
._1a_c01300{width:202.277333pt;}
._2a_c01300{width:210.378667pt;}
._18_c01300{width:241.760000pt;}
._28_c01300{width:268.997333pt;}
._30_c01300{width:958.816000pt;}
.fs8_c01300{font-size:42.666667pt;}
.fs7_c01300{font-size:64.000000pt;}
.fs3_c01300{font-size:66.666667pt;}
.fs4_c01300{font-size:69.333333pt;}
.fs1_c01300{font-size:72.000000pt;}
.fs2_c01300{font-size:74.666667pt;}
.fs5_c01300{font-size:77.333333pt;}
.fs0_c01300{font-size:88.000000pt;}
.fs6_c01300{font-size:98.666667pt;}
.y0_c01300{bottom:0.000000pt;}
.y23_c01300{bottom:2.760000pt;}
.y22_c01300{bottom:6.425217pt;}
.y21_c01300{bottom:45.840000pt;}
.y20_c01300{bottom:70.106667pt;}
.y1f_c01300{bottom:91.840000pt;}
.y1e_c01300{bottom:114.240000pt;}
.y1d_c01300{bottom:132.640000pt;}
.y1c_c01300{bottom:158.373333pt;}
.y1b_c01300{bottom:179.973333pt;}
.y1a_c01300{bottom:201.306667pt;}
.y19_c01300{bottom:224.106667pt;}
.y18_c01300{bottom:245.706667pt;}
.y17_c01300{bottom:265.706667pt;}
.y16_c01300{bottom:288.906667pt;}
.y15_c01300{bottom:311.040000pt;}
.y14_c01300{bottom:333.306667pt;}
.y13_c01300{bottom:354.640000pt;}
.y12_c01300{bottom:376.773333pt;}
.y11_c01300{bottom:397.840000pt;}
.y10_c01300{bottom:419.440000pt;}
.yf_c01300{bottom:440.373333pt;}
.ye_c01300{bottom:461.706667pt;}
.yd_c01300{bottom:482.906667pt;}
.yc_c01300{bottom:504.640000pt;}
.yb_c01300{bottom:526.240000pt;}
.ya_c01300{bottom:548.106667pt;}
.y9_c01300{bottom:593.973333pt;}
.y8_c01300{bottom:618.640000pt;}
.y7_c01300{bottom:644.906667pt;}
.y6_c01300{bottom:700.773333pt;}
.y5_c01300{bottom:721.173333pt;}
.y4_c01300{bottom:742.773333pt;}
.y3_c01300{bottom:764.906667pt;}
.y2_c01300{bottom:785.440000pt;}
.y1_c01300{bottom:817.440000pt;}
.h9_c01300{height:11.733399pt;}
.ha_c01300{height:38.937500pt;}
.h3_c01300{height:70.664062pt;}
.h5_c01300{height:73.978667pt;}
.h8_c01300{height:74.906250pt;}
.h4_c01300{height:78.250667pt;}
.h6_c01300{height:81.045333pt;}
.h2_c01300{height:102.996094pt;}
.h7_c01300{height:106.954667pt;}
.h1_c01300{height:876.666667pt;}
.h0_c01300{height:876.933333pt;}
.w1_c01300{width:93.222667pt;}
.w0_c01300{width:597.333333pt;}
.x0_c01300{left:0.000000pt;}
.x2_c01300{left:40.533333pt;}
.x3_c01300{left:42.000000pt;}
.xb_c01300{left:45.600000pt;}
.xc_c01300{left:46.533333pt;}
.xe_c01300{left:47.733333pt;}
.xf_c01300{left:48.666667pt;}
.xd_c01300{left:50.800000pt;}
.x5_c01300{left:54.000000pt;}
.x1_c01300{left:56.400000pt;}
.x10_c01300{left:58.133333pt;}
.x6_c01300{left:83.733333pt;}
.x4_c01300{left:108.800000pt;}
.x8_c01300{left:149.066667pt;}
.x7_c01300{left:165.866667pt;}
.x9_c01300{left:167.066667pt;}
.xa_c01300{left:170.666667pt;}
.x11_c01300{left:255.834880pt;}
}





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

.ir_c01301:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01301{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01301;src:url('chunks/assets/font_e71dfbf105259572553560e7.woff2')format("woff");}.ff1_c01301{font-family:ff1_c01301;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01301;src:url('chunks/assets/font_291c2f7cad6227546202a2ac.woff2')format("woff");}.ff2_c01301{font-family:ff2_c01301;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01301;src:url('chunks/assets/font_57ec47141c555901129e850b.woff2')format("woff");}.ff3_c01301{font-family:ff3_c01301;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01301;src:url('chunks/assets/font_39a7b2640ae4cbb6fde9298f.woff2')format("woff");}.ff4_c01301{font-family:ff4_c01301;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01301;src:url('chunks/assets/font_98cedd4917854e3dcf639f8e.woff2')format("woff");}.ff5_c01301{font-family:ff5_c01301;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01301;src:url('chunks/assets/font_7cded32ba44c61227239d196.woff2')format("woff");}.ff6_c01301{font-family:ff6_c01301;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01301;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c01301{font-family:ff7_c01301;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01301{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01301{vertical-align:0.000000px;}
.ls6_c01301{letter-spacing:0.000000px;}
.ls5_c01301{letter-spacing:3.000000px;}
.ls2_c01301{letter-spacing:5.835000px;}
.ls0_c01301{letter-spacing:5.994000px;}
.ls1_c01301{letter-spacing:6.885000px;}
.ls3_c01301{letter-spacing:14.088000px;}
.ls4_c01301{letter-spacing:16.800000px;}
.sc__c01301{text-shadow:none;}
.sc0_c01301{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01301{-webkit-text-stroke:0px transparent;}
.sc0_c01301{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c01301{word-spacing:-59.184000px;}
.ws0_c01301{word-spacing:-27.135000px;}
.ws2_c01301{word-spacing:-15.750000px;}
.ws4_c01301{word-spacing:-5.268000px;}
.ws5_c01301{word-spacing:0.000000px;}
.ws1_c01301{word-spacing:1.764000px;}
._20_c01301{margin-left:-27.837000px;}
._1b_c01301{margin-left:-22.164000px;}
._21_c01301{margin-left:-19.842000px;}
._d_c01301{margin-left:-17.955000px;}
._e_c01301{margin-left:-16.191000px;}
._19_c01301{margin-left:-12.474000px;}
._16_c01301{margin-left:-9.903000px;}
._17_c01301{margin-left:-8.166000px;}
._11_c01301{margin-left:-6.813000px;}
._18_c01301{margin-left:-5.274000px;}
._1_c01301{margin-left:-3.717000px;}
._7_c01301{margin-left:-1.953000px;}
._5_c01301{width:1.008000px;}
._9_c01301{width:2.115000px;}
._a_c01301{width:3.321000px;}
._8_c01301{width:4.662000px;}
._4_c01301{width:6.489000px;}
._6_c01301{width:7.497000px;}
._f_c01301{width:8.757000px;}
._2_c01301{width:9.828000px;}
._3_c01301{width:11.151000px;}
._10_c01301{width:12.420000px;}
._0_c01301{width:13.482000px;}
._c_c01301{width:14.868000px;}
._b_c01301{width:16.299000px;}
._15_c01301{width:18.045000px;}
._13_c01301{width:22.383000px;}
._1c_c01301{width:23.751000px;}
._1a_c01301{width:25.200000px;}
._22_c01301{width:49.005000px;}
._14_c01301{width:115.155000px;}
._12_c01301{width:146.955000px;}
._1e_c01301{width:173.283000px;}
._1f_c01301{width:249.750000px;}
._1d_c01301{width:461.862000px;}
.fc2_c01301{color:transparent;}
.fc1_c01301{color:rgb(128,128,128);}
.fc0_c01301{color:rgb(0,0,0);}
.fs5_c01301{font-size:48.000000px;}
.fs0_c01301{font-size:63.000000px;}
.fs2_c01301{font-size:66.000000px;}
.fs3_c01301{font-size:72.000000px;}
.fs4_c01301{font-size:78.000000px;}
.fs1_c01301{font-size:81.000000px;}
.y0_c01301{bottom:0.000000px;}
.y25_c01301{bottom:3.105000px;}
.y24_c01301{bottom:7.228371px;}
.y23_c01301{bottom:49.665000px;}
.y22_c01301{bottom:71.565000px;}
.y21_c01301{bottom:96.615000px;}
.y20_c01301{bottom:121.815000px;}
.y1f_c01301{bottom:145.515000px;}
.y1e_c01301{bottom:174.165000px;}
.y1d_c01301{bottom:194.865000px;}
.y1c_c01301{bottom:220.065000px;}
.y1b_c01301{bottom:244.065000px;}
.y1a_c01301{bottom:267.315000px;}
.y19_c01301{bottom:293.265000px;}
.y18_c01301{bottom:319.665000px;}
.y17_c01301{bottom:342.315000px;}
.y16_c01301{bottom:367.215000px;}
.y15_c01301{bottom:390.165000px;}
.y14_c01301{bottom:416.265000px;}
.y13_c01301{bottom:441.765000px;}
.y12_c01301{bottom:464.715000px;}
.y11_c01301{bottom:488.715000px;}
.y10_c01301{bottom:513.015000px;}
.yf_c01301{bottom:537.315000px;}
.ye_c01301{bottom:561.615000px;}
.yd_c01301{bottom:585.915000px;}
.yc_c01301{bottom:609.915000px;}
.yb_c01301{bottom:633.165000px;}
.ya_c01301{bottom:657.765000px;}
.y9_c01301{bottom:683.115000px;}
.y8_c01301{bottom:707.115000px;}
.y7_c01301{bottom:731.715000px;}
.y6_c01301{bottom:756.015000px;}
.y5_c01301{bottom:780.015000px;}
.y4_c01301{bottom:804.315000px;}
.y3_c01301{bottom:829.665000px;}
.y2_c01301{bottom:852.915000px;}
.y1_c01301{bottom:877.215000px;}
.h8_c01301{height:13.200074px;}
.h9_c01301{height:43.804688px;}
.h3_c01301{height:61.831055px;}
.h4_c01301{height:66.515625px;}
.h2_c01301{height:79.497070px;}
.h6_c01301{height:84.269531px;}
.h5_c01301{height:91.160156px;}
.h7_c01301{height:98.756836px;}
.h1_c01301{height:986.250000px;}
.h0_c01301{height:986.325000px;}
.w2_c01301{width:104.875500px;}
.w0_c01301{width:667.425000px;}
.w1_c01301{width:667.500000px;}
.x0_c01301{left:0.000000px;}
.x4_c01301{left:30.750000px;}
.x8_c01301{left:85.950000px;}
.x9_c01301{left:113.400000px;}
.x7_c01301{left:118.800000px;}
.x5_c01301{left:120.450000px;}
.x1_c01301{left:121.950000px;}
.x3_c01301{left:123.150000px;}
.x2_c01301{left:124.200000px;}
.x6_c01301{left:145.050000px;}
.xb_c01301{left:285.526749px;}
.xa_c01301{left:583.650000px;}
@media print{
.v0_c01301{vertical-align:0.000000pt;}
.ls6_c01301{letter-spacing:0.000000pt;}
.ls5_c01301{letter-spacing:2.666667pt;}
.ls2_c01301{letter-spacing:5.186667pt;}
.ls0_c01301{letter-spacing:5.328000pt;}
.ls1_c01301{letter-spacing:6.120000pt;}
.ls3_c01301{letter-spacing:12.522667pt;}
.ls4_c01301{letter-spacing:14.933333pt;}
.ws3_c01301{word-spacing:-52.608000pt;}
.ws0_c01301{word-spacing:-24.120000pt;}
.ws2_c01301{word-spacing:-14.000000pt;}
.ws4_c01301{word-spacing:-4.682667pt;}
.ws5_c01301{word-spacing:0.000000pt;}
.ws1_c01301{word-spacing:1.568000pt;}
._20_c01301{margin-left:-24.744000pt;}
._1b_c01301{margin-left:-19.701333pt;}
._21_c01301{margin-left:-17.637333pt;}
._d_c01301{margin-left:-15.960000pt;}
._e_c01301{margin-left:-14.392000pt;}
._19_c01301{margin-left:-11.088000pt;}
._16_c01301{margin-left:-8.802667pt;}
._17_c01301{margin-left:-7.258667pt;}
._11_c01301{margin-left:-6.056000pt;}
._18_c01301{margin-left:-4.688000pt;}
._1_c01301{margin-left:-3.304000pt;}
._7_c01301{margin-left:-1.736000pt;}
._5_c01301{width:0.896000pt;}
._9_c01301{width:1.880000pt;}
._a_c01301{width:2.952000pt;}
._8_c01301{width:4.144000pt;}
._4_c01301{width:5.768000pt;}
._6_c01301{width:6.664000pt;}
._f_c01301{width:7.784000pt;}
._2_c01301{width:8.736000pt;}
._3_c01301{width:9.912000pt;}
._10_c01301{width:11.040000pt;}
._0_c01301{width:11.984000pt;}
._c_c01301{width:13.216000pt;}
._b_c01301{width:14.488000pt;}
._15_c01301{width:16.040000pt;}
._13_c01301{width:19.896000pt;}
._1c_c01301{width:21.112000pt;}
._1a_c01301{width:22.400000pt;}
._22_c01301{width:43.560000pt;}
._14_c01301{width:102.360000pt;}
._12_c01301{width:130.626667pt;}
._1e_c01301{width:154.029333pt;}
._1f_c01301{width:222.000000pt;}
._1d_c01301{width:410.544000pt;}
.fs5_c01301{font-size:42.666667pt;}
.fs0_c01301{font-size:56.000000pt;}
.fs2_c01301{font-size:58.666667pt;}
.fs3_c01301{font-size:64.000000pt;}
.fs4_c01301{font-size:69.333333pt;}
.fs1_c01301{font-size:72.000000pt;}
.y0_c01301{bottom:0.000000pt;}
.y25_c01301{bottom:2.760000pt;}
.y24_c01301{bottom:6.425219pt;}
.y23_c01301{bottom:44.146667pt;}
.y22_c01301{bottom:63.613333pt;}
.y21_c01301{bottom:85.880000pt;}
.y20_c01301{bottom:108.280000pt;}
.y1f_c01301{bottom:129.346667pt;}
.y1e_c01301{bottom:154.813333pt;}
.y1d_c01301{bottom:173.213333pt;}
.y1c_c01301{bottom:195.613333pt;}
.y1b_c01301{bottom:216.946667pt;}
.y1a_c01301{bottom:237.613333pt;}
.y19_c01301{bottom:260.680000pt;}
.y18_c01301{bottom:284.146667pt;}
.y17_c01301{bottom:304.280000pt;}
.y16_c01301{bottom:326.413333pt;}
.y15_c01301{bottom:346.813333pt;}
.y14_c01301{bottom:370.013333pt;}
.y13_c01301{bottom:392.680000pt;}
.y12_c01301{bottom:413.080000pt;}
.y11_c01301{bottom:434.413333pt;}
.y10_c01301{bottom:456.013333pt;}
.yf_c01301{bottom:477.613333pt;}
.ye_c01301{bottom:499.213333pt;}
.yd_c01301{bottom:520.813333pt;}
.yc_c01301{bottom:542.146667pt;}
.yb_c01301{bottom:562.813333pt;}
.ya_c01301{bottom:584.680000pt;}
.y9_c01301{bottom:607.213333pt;}
.y8_c01301{bottom:628.546667pt;}
.y7_c01301{bottom:650.413333pt;}
.y6_c01301{bottom:672.013333pt;}
.y5_c01301{bottom:693.346667pt;}
.y4_c01301{bottom:714.946667pt;}
.y3_c01301{bottom:737.480000pt;}
.y2_c01301{bottom:758.146667pt;}
.y1_c01301{bottom:779.746667pt;}
.h8_c01301{height:11.733399pt;}
.h9_c01301{height:38.937500pt;}
.h3_c01301{height:54.960938pt;}
.h4_c01301{height:59.125000pt;}
.h2_c01301{height:70.664062pt;}
.h6_c01301{height:74.906250pt;}
.h5_c01301{height:81.031250pt;}
.h7_c01301{height:87.783854pt;}
.h1_c01301{height:876.666667pt;}
.h0_c01301{height:876.733333pt;}
.w2_c01301{width:93.222667pt;}
.w0_c01301{width:593.266667pt;}
.w1_c01301{width:593.333333pt;}
.x0_c01301{left:0.000000pt;}
.x4_c01301{left:27.333333pt;}
.x8_c01301{left:76.400000pt;}
.x9_c01301{left:100.800000pt;}
.x7_c01301{left:105.600000pt;}
.x5_c01301{left:107.066667pt;}
.x1_c01301{left:108.400000pt;}
.x3_c01301{left:109.466667pt;}
.x2_c01301{left:110.400000pt;}
.x6_c01301{left:128.933333pt;}
.xb_c01301{left:253.801554pt;}
.xa_c01301{left:518.800000pt;}
}





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

.ir_c01302:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01302{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01302;src:url('chunks/assets/font_03bb217831e574d1fdd5f1f6.woff2')format("woff");}.ff1_c01302{font-family:ff1_c01302;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01302;src:url('chunks/assets/font_3a8010197a7e6ae0ae03be8d.woff2')format("woff");}.ff2_c01302{font-family:ff2_c01302;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01302;src:url('chunks/assets/font_ce5ab715289a5a2842fa56ba.woff2')format("woff");}.ff3_c01302{font-family:ff3_c01302;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01302;src:url('chunks/assets/font_df57e43c44c764c025841d79.woff2')format("woff");}.ff4_c01302{font-family:ff4_c01302;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01302;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c01302{font-family:ff5_c01302;line-height:1.219238;font-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_c01302{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m0_c01302{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01302{vertical-align:0.000000px;}
.ls2_c01302{letter-spacing:0.000000px;}
.ls0_c01302{letter-spacing:2.808000px;}
.ls3_c01302{letter-spacing:3.000000px;}
.ls1_c01302{letter-spacing:6.000000px;}
.ls4_c01302{letter-spacing:15.000000px;}
.sc__c01302{text-shadow:none;}
.sc0_c01302{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01302{-webkit-text-stroke:0px transparent;}
.sc0_c01302{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01302{word-spacing:-40.305000px;}
.ws1_c01302{word-spacing:-20.250000px;}
.ws0_c01302{word-spacing:-17.352000px;}
.ws3_c01302{word-spacing:0.000000px;}
._0_c01302{margin-left:-28.512000px;}
._18_c01302{margin-left:-22.428000px;}
._24_c01302{margin-left:-21.219000px;}
._e_c01302{margin-left:-18.783000px;}
._27_c01302{margin-left:-12.414000px;}
._b_c01302{margin-left:-11.088000px;}
._8_c01302{margin-left:-9.108000px;}
._11_c01302{margin-left:-7.749000px;}
._a_c01302{margin-left:-6.435000px;}
._16_c01302{margin-left:-4.707000px;}
._7_c01302{margin-left:-3.663000px;}
._6_c01302{margin-left:-2.277000px;}
._9_c01302{margin-left:-1.089000px;}
._5_c01302{width:1.782000px;}
._2_c01302{width:3.069000px;}
._4_c01302{width:4.455000px;}
._f_c01302{width:6.264000px;}
._c_c01302{width:7.821000px;}
._10_c01302{width:8.892000px;}
._d_c01302{width:9.999000px;}
._15_c01302{width:11.376000px;}
._13_c01302{width:13.446000px;}
._12_c01302{width:15.165000px;}
._14_c01302{width:16.224000px;}
._1b_c01302{width:17.568000px;}
._17_c01302{width:19.203000px;}
._3_c01302{width:22.176000px;}
._1e_c01302{width:25.299000px;}
._22_c01302{width:27.723000px;}
._1f_c01302{width:28.809000px;}
._1d_c01302{width:30.111000px;}
._1_c01302{width:32.736000px;}
._20_c01302{width:33.921000px;}
._21_c01302{width:35.679000px;}
._26_c01302{width:42.255000px;}
._23_c01302{width:59.742000px;}
._1a_c01302{width:78.813000px;}
._19_c01302{width:97.239000px;}
._1c_c01302{width:155.808000px;}
._25_c01302{width:178.308000px;}
.fc2_c01302{color:transparent;}
.fc1_c01302{color:rgb(128,128,128);}
.fc0_c01302{color:rgb(0,0,0);}
.fs8_c01302{font-size:48.000000px;}
.fs3_c01302{font-size:63.000000px;}
.fs4_c01302{font-size:72.000000px;}
.fs2_c01302{font-size:81.000000px;}
.fs5_c01302{font-size:93.000000px;}
.fs1_c01302{font-size:99.000000px;}
.fs7_c01302{font-size:105.000000px;}
.fs6_c01302{font-size:108.000000px;}
.fs0_c01302{font-size:132.000000px;}
.y0_c01302{bottom:0.000000px;}
.y26_c01302{bottom:3.105000px;}
.y25_c01302{bottom:7.228369px;}
.y24_c01302{bottom:54.720000px;}
.y23_c01302{bottom:81.570000px;}
.y22_c01302{bottom:104.970000px;}
.y21_c01302{bottom:129.870000px;}
.y20_c01302{bottom:154.620000px;}
.y1f_c01302{bottom:178.770000px;}
.y1e_c01302{bottom:203.820000px;}
.y1d_c01302{bottom:227.820000px;}
.y1c_c01302{bottom:252.420000px;}
.y1b_c01302{bottom:277.020000px;}
.y1a_c01302{bottom:301.320000px;}
.y19_c01302{bottom:325.920000px;}
.y18_c01302{bottom:350.220000px;}
.y17_c01302{bottom:374.520000px;}
.y16_c01302{bottom:399.570000px;}
.y15_c01302{bottom:422.520000px;}
.y14_c01302{bottom:447.120000px;}
.y13_c01302{bottom:471.120000px;}
.y12_c01302{bottom:495.120000px;}
.y11_c01302{bottom:519.420000px;}
.y10_c01302{bottom:543.420000px;}
.yf_c01302{bottom:567.570000px;}
.ye_c01302{bottom:591.570000px;}
.yd_c01302{bottom:615.570000px;}
.yc_c01302{bottom:639.870000px;}
.yb_c01302{bottom:663.870000px;}
.ya_c01302{bottom:687.870000px;}
.y9_c01302{bottom:712.470000px;}
.y8_c01302{bottom:736.320000px;}
.y7_c01302{bottom:760.620000px;}
.y6_c01302{bottom:785.070000px;}
.y5_c01302{bottom:809.370000px;}
.y4_c01302{bottom:833.220000px;}
.y3_c01302{bottom:857.520000px;}
.y2_c01302{bottom:881.220000px;}
.y1_c01302{bottom:917.670000px;}
.h8_c01302{height:13.200073px;}
.h9_c01302{height:43.804688px;}
.h3_c01302{height:79.497070px;}
.h4_c01302{height:91.160156px;}
.h5_c01302{height:91.274414px;}
.h6_c01302{height:108.843750px;}
.h7_c01302{height:122.893066px;}
.h2_c01302{height:167.126953px;}
.h1_c01302{height:986.250000px;}
.h0_c01302{height:986.550000px;}
.w1_c01302{width:104.875500px;}
.w0_c01302{width:672.000000px;}
.x0_c01302{left:0.000000px;}
.x1_c01302{left:66.150000px;}
.x6_c01302{left:68.250000px;}
.x2_c01302{left:69.900000px;}
.x3_c01302{left:71.100000px;}
.x4_c01302{left:72.450000px;}
.x7_c01302{left:73.500000px;}
.x8_c01302{left:74.550000px;}
.x5_c01302{left:97.500000px;}
.x9_c01302{left:101.550000px;}
.xc_c01302{left:287.814240px;}
.xa_c01302{left:354.600000px;}
.xb_c01302{left:492.000000px;}
@media print{
.v0_c01302{vertical-align:0.000000pt;}
.ls2_c01302{letter-spacing:0.000000pt;}
.ls0_c01302{letter-spacing:2.496000pt;}
.ls3_c01302{letter-spacing:2.666667pt;}
.ls1_c01302{letter-spacing:5.333333pt;}
.ls4_c01302{letter-spacing:13.333333pt;}
.ws2_c01302{word-spacing:-35.826667pt;}
.ws1_c01302{word-spacing:-18.000000pt;}
.ws0_c01302{word-spacing:-15.424000pt;}
.ws3_c01302{word-spacing:0.000000pt;}
._0_c01302{margin-left:-25.344000pt;}
._18_c01302{margin-left:-19.936000pt;}
._24_c01302{margin-left:-18.861333pt;}
._e_c01302{margin-left:-16.696000pt;}
._27_c01302{margin-left:-11.034667pt;}
._b_c01302{margin-left:-9.856000pt;}
._8_c01302{margin-left:-8.096000pt;}
._11_c01302{margin-left:-6.888000pt;}
._a_c01302{margin-left:-5.720000pt;}
._16_c01302{margin-left:-4.184000pt;}
._7_c01302{margin-left:-3.256000pt;}
._6_c01302{margin-left:-2.024000pt;}
._9_c01302{margin-left:-0.968000pt;}
._5_c01302{width:1.584000pt;}
._2_c01302{width:2.728000pt;}
._4_c01302{width:3.960000pt;}
._f_c01302{width:5.568000pt;}
._c_c01302{width:6.952000pt;}
._10_c01302{width:7.904000pt;}
._d_c01302{width:8.888000pt;}
._15_c01302{width:10.112000pt;}
._13_c01302{width:11.952000pt;}
._12_c01302{width:13.480000pt;}
._14_c01302{width:14.421333pt;}
._1b_c01302{width:15.616000pt;}
._17_c01302{width:17.069333pt;}
._3_c01302{width:19.712000pt;}
._1e_c01302{width:22.488000pt;}
._22_c01302{width:24.642667pt;}
._1f_c01302{width:25.608000pt;}
._1d_c01302{width:26.765333pt;}
._1_c01302{width:29.098667pt;}
._20_c01302{width:30.152000pt;}
._21_c01302{width:31.714667pt;}
._26_c01302{width:37.560000pt;}
._23_c01302{width:53.104000pt;}
._1a_c01302{width:70.056000pt;}
._19_c01302{width:86.434667pt;}
._1c_c01302{width:138.496000pt;}
._25_c01302{width:158.496000pt;}
.fs8_c01302{font-size:42.666667pt;}
.fs3_c01302{font-size:56.000000pt;}
.fs4_c01302{font-size:64.000000pt;}
.fs2_c01302{font-size:72.000000pt;}
.fs5_c01302{font-size:82.666667pt;}
.fs1_c01302{font-size:88.000000pt;}
.fs7_c01302{font-size:93.333333pt;}
.fs6_c01302{font-size:96.000000pt;}
.fs0_c01302{font-size:117.333333pt;}
.y0_c01302{bottom:0.000000pt;}
.y26_c01302{bottom:2.760000pt;}
.y25_c01302{bottom:6.425217pt;}
.y24_c01302{bottom:48.640000pt;}
.y23_c01302{bottom:72.506667pt;}
.y22_c01302{bottom:93.306667pt;}
.y21_c01302{bottom:115.440000pt;}
.y20_c01302{bottom:137.440000pt;}
.y1f_c01302{bottom:158.906667pt;}
.y1e_c01302{bottom:181.173333pt;}
.y1d_c01302{bottom:202.506667pt;}
.y1c_c01302{bottom:224.373333pt;}
.y1b_c01302{bottom:246.240000pt;}
.y1a_c01302{bottom:267.840000pt;}
.y19_c01302{bottom:289.706667pt;}
.y18_c01302{bottom:311.306667pt;}
.y17_c01302{bottom:332.906667pt;}
.y16_c01302{bottom:355.173333pt;}
.y15_c01302{bottom:375.573333pt;}
.y14_c01302{bottom:397.440000pt;}
.y13_c01302{bottom:418.773333pt;}
.y12_c01302{bottom:440.106667pt;}
.y11_c01302{bottom:461.706667pt;}
.y10_c01302{bottom:483.040000pt;}
.yf_c01302{bottom:504.506667pt;}
.ye_c01302{bottom:525.840000pt;}
.yd_c01302{bottom:547.173333pt;}
.yc_c01302{bottom:568.773333pt;}
.yb_c01302{bottom:590.106667pt;}
.ya_c01302{bottom:611.440000pt;}
.y9_c01302{bottom:633.306667pt;}
.y8_c01302{bottom:654.506667pt;}
.y7_c01302{bottom:676.106667pt;}
.y6_c01302{bottom:697.840000pt;}
.y5_c01302{bottom:719.440000pt;}
.y4_c01302{bottom:740.640000pt;}
.y3_c01302{bottom:762.240000pt;}
.y2_c01302{bottom:783.306667pt;}
.y1_c01302{bottom:815.706667pt;}
.h8_c01302{height:11.733399pt;}
.h9_c01302{height:38.937500pt;}
.h3_c01302{height:70.664062pt;}
.h4_c01302{height:81.031250pt;}
.h5_c01302{height:81.132812pt;}
.h6_c01302{height:96.750000pt;}
.h7_c01302{height:109.238281pt;}
.h2_c01302{height:148.557292pt;}
.h1_c01302{height:876.666667pt;}
.h0_c01302{height:876.933333pt;}
.w1_c01302{width:93.222667pt;}
.w0_c01302{width:597.333333pt;}
.x0_c01302{left:0.000000pt;}
.x1_c01302{left:58.800000pt;}
.x6_c01302{left:60.666667pt;}
.x2_c01302{left:62.133333pt;}
.x3_c01302{left:63.200000pt;}
.x4_c01302{left:64.400000pt;}
.x7_c01302{left:65.333333pt;}
.x8_c01302{left:66.266667pt;}
.x5_c01302{left:86.666667pt;}
.x9_c01302{left:90.266667pt;}
.xc_c01302{left:255.834880pt;}
.xa_c01302{left:315.200000pt;}
.xb_c01302{left:437.333333pt;}
}





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

.ir_c01303:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01303{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01303;src:url('chunks/assets/font_9ef0bac09a6675b77d558e0c.woff2')format("woff");}.ff1_c01303{font-family:ff1_c01303;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01303;src:url('chunks/assets/font_2e3fd3b0750c642c45c60a21.woff2')format("woff");}.ff2_c01303{font-family:ff2_c01303;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01303;src:url('chunks/assets/font_5f455ad4893f4a9956d9e04b.woff2')format("woff");}.ff3_c01303{font-family:ff3_c01303;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01303;src:url('chunks/assets/font_87fb49ba5544d21da44ecf47.woff2')format("woff");}.ff4_c01303{font-family:ff4_c01303;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01303;src:url('chunks/assets/font_5a1d04fc05b11e3121a74fcc.woff2')format("woff");}.ff5_c01303{font-family:ff5_c01303;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01303;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c01303{font-family:ff6_c01303;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01303{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01303{vertical-align:0.000000px;}
.v1_c01303{vertical-align:111.000000px;}
.ls2_c01303{letter-spacing:0.000000px;}
.ls1_c01303{letter-spacing:6.000000px;}
.ls3_c01303{letter-spacing:9.000000px;}
.ls0_c01303{letter-spacing:99.552000px;}
.sc__c01303{text-shadow:none;}
.sc0_c01303{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01303{-webkit-text-stroke:0px transparent;}
.sc0_c01303{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01303{word-spacing:-76.686000px;}
.ws2_c01303{word-spacing:-42.000000px;}
.ws1_c01303{word-spacing:-17.352000px;}
.ws3_c01303{word-spacing:0.000000px;}
._22_c01303{margin-left:-26.070000px;}
._24_c01303{margin-left:-22.188000px;}
._1_c01303{margin-left:-20.724000px;}
._20_c01303{margin-left:-19.314000px;}
._0_c01303{margin-left:-17.688000px;}
._1e_c01303{margin-left:-15.309000px;}
._7_c01303{margin-left:-13.761000px;}
._1b_c01303{margin-left:-11.319000px;}
._a_c01303{margin-left:-10.164000px;}
._e_c01303{margin-left:-8.829000px;}
._12_c01303{margin-left:-6.867000px;}
._c_c01303{margin-left:-5.742000px;}
._5_c01303{margin-left:-3.960000px;}
._6_c01303{margin-left:-2.475000px;}
._4_c01303{margin-left:-1.386000px;}
._10_c01303{width:1.620000px;}
._3_c01303{width:2.844000px;}
._15_c01303{width:3.879000px;}
._b_c01303{width:5.115000px;}
._11_c01303{width:7.047000px;}
._13_c01303{width:8.424000px;}
._14_c01303{width:9.765000px;}
._18_c01303{width:10.944000px;}
._19_c01303{width:12.015000px;}
._9_c01303{width:13.926000px;}
._1d_c01303{width:15.243000px;}
._1c_c01303{width:16.632000px;}
._8_c01303{width:19.008000px;}
._17_c01303{width:25.839000px;}
._16_c01303{width:27.441000px;}
._f_c01303{width:57.141000px;}
._2_c01303{width:175.164000px;}
._23_c01303{width:189.276000px;}
._21_c01303{width:196.992000px;}
._1f_c01303{width:329.913000px;}
._d_c01303{width:358.722000px;}
._1a_c01303{width:377.505000px;}
.fc2_c01303{color:transparent;}
.fc1_c01303{color:rgb(128,128,128);}
.fc0_c01303{color:rgb(0,0,0);}
.fs3_c01303{font-size:27.000000px;}
.fsa_c01303{font-size:48.000000px;}
.fs8_c01303{font-size:66.000000px;}
.fs4_c01303{font-size:72.000000px;}
.fs7_c01303{font-size:78.000000px;}
.fs2_c01303{font-size:81.000000px;}
.fs6_c01303{font-size:87.000000px;}
.fs9_c01303{font-size:93.000000px;}
.fs1_c01303{font-size:99.000000px;}
.fs0_c01303{font-size:132.000000px;}
.fs5_c01303{font-size:144.000000px;}
.y0_c01303{bottom:0.000000px;}
.y26_c01303{bottom:3.105000px;}
.y25_c01303{bottom:7.228371px;}
.y24_c01303{bottom:57.765000px;}
.y23_c01303{bottom:81.765000px;}
.y22_c01303{bottom:106.965000px;}
.y21_c01303{bottom:131.715000px;}
.y20_c01303{bottom:156.015000px;}
.y1f_c01303{bottom:180.615000px;}
.y1e_c01303{bottom:205.515000px;}
.y1d_c01303{bottom:230.565000px;}
.y1c_c01303{bottom:254.865000px;}
.y1b_c01303{bottom:279.165000px;}
.y1a_c01303{bottom:304.065000px;}
.y19_c01303{bottom:328.365000px;}
.y18_c01303{bottom:352.665000px;}
.y17_c01303{bottom:377.115000px;}
.y16_c01303{bottom:401.715000px;}
.y15_c01303{bottom:426.315000px;}
.y14_c01303{bottom:450.915000px;}
.y13_c01303{bottom:475.515000px;}
.y12_c01303{bottom:499.815000px;}
.y11_c01303{bottom:523.815000px;}
.y10_c01303{bottom:548.115000px;}
.yf_c01303{bottom:572.415000px;}
.ye_c01303{bottom:596.415000px;}
.yd_c01303{bottom:620.715000px;}
.yc_c01303{bottom:645.015000px;}
.yb_c01303{bottom:669.315000px;}
.ya_c01303{bottom:693.615000px;}
.y9_c01303{bottom:717.915000px;}
.y8_c01303{bottom:742.815000px;}
.y7_c01303{bottom:766.215000px;}
.y6_c01303{bottom:790.215000px;}
.y4_c01303{bottom:811.365000px;}
.y5_c01303{bottom:814.515000px;}
.y3_c01303{bottom:871.215000px;}
.y2_c01303{bottom:892.065000px;}
.y1_c01303{bottom:921.765000px;}
.ha_c01303{height:13.200074px;}
.hb_c01303{height:43.804688px;}
.h3_c01303{height:79.497070px;}
.h4_c01303{height:84.269531px;}
.h7_c01303{height:91.160156px;}
.h8_c01303{height:91.176000px;}
.h9_c01303{height:91.274414px;}
.h6_c01303{height:98.756836px;}
.h2_c01303{height:167.126953px;}
.h5_c01303{height:202.176000px;}
.h1_c01303{height:986.250000px;}
.h0_c01303{height:986.325000px;}
.w2_c01303{width:104.875500px;}
.w0_c01303{width:667.425000px;}
.w1_c01303{width:667.500000px;}
.x0_c01303{left:0.000000px;}
.x6_c01303{left:26.100000px;}
.xd_c01303{left:30.150000px;}
.x10_c01303{left:31.800000px;}
.xe_c01303{left:32.850000px;}
.xb_c01303{left:67.500000px;}
.xa_c01303{left:106.950000px;}
.x8_c01303{left:109.050000px;}
.x7_c01303{left:110.700000px;}
.x1_c01303{left:112.050000px;}
.x4_c01303{left:114.000000px;}
.x9_c01303{left:115.350000px;}
.xc_c01303{left:117.150000px;}
.xf_c01303{left:119.100000px;}
.x11_c01303{left:120.150000px;}
.x5_c01303{left:149.550000px;}
.x3_c01303{left:204.750000px;}
.x2_c01303{left:239.400000px;}
.x13_c01303{left:285.526749px;}
.x12_c01303{left:575.100000px;}
@media print{
.v0_c01303{vertical-align:0.000000pt;}
.v1_c01303{vertical-align:98.666667pt;}
.ls2_c01303{letter-spacing:0.000000pt;}
.ls1_c01303{letter-spacing:5.333333pt;}
.ls3_c01303{letter-spacing:8.000000pt;}
.ls0_c01303{letter-spacing:88.490667pt;}
.ws0_c01303{word-spacing:-68.165333pt;}
.ws2_c01303{word-spacing:-37.333333pt;}
.ws1_c01303{word-spacing:-15.424000pt;}
.ws3_c01303{word-spacing:0.000000pt;}
._22_c01303{margin-left:-23.173333pt;}
._24_c01303{margin-left:-19.722667pt;}
._1_c01303{margin-left:-18.421333pt;}
._20_c01303{margin-left:-17.168000pt;}
._0_c01303{margin-left:-15.722667pt;}
._1e_c01303{margin-left:-13.608000pt;}
._7_c01303{margin-left:-12.232000pt;}
._1b_c01303{margin-left:-10.061333pt;}
._a_c01303{margin-left:-9.034667pt;}
._e_c01303{margin-left:-7.848000pt;}
._12_c01303{margin-left:-6.104000pt;}
._c_c01303{margin-left:-5.104000pt;}
._5_c01303{margin-left:-3.520000pt;}
._6_c01303{margin-left:-2.200000pt;}
._4_c01303{margin-left:-1.232000pt;}
._10_c01303{width:1.440000pt;}
._3_c01303{width:2.528000pt;}
._15_c01303{width:3.448000pt;}
._b_c01303{width:4.546667pt;}
._11_c01303{width:6.264000pt;}
._13_c01303{width:7.488000pt;}
._14_c01303{width:8.680000pt;}
._18_c01303{width:9.728000pt;}
._19_c01303{width:10.680000pt;}
._9_c01303{width:12.378667pt;}
._1d_c01303{width:13.549333pt;}
._1c_c01303{width:14.784000pt;}
._8_c01303{width:16.896000pt;}
._17_c01303{width:22.968000pt;}
._16_c01303{width:24.392000pt;}
._f_c01303{width:50.792000pt;}
._2_c01303{width:155.701333pt;}
._23_c01303{width:168.245333pt;}
._21_c01303{width:175.104000pt;}
._1f_c01303{width:293.256000pt;}
._d_c01303{width:318.864000pt;}
._1a_c01303{width:335.560000pt;}
.fs3_c01303{font-size:24.000000pt;}
.fsa_c01303{font-size:42.666667pt;}
.fs8_c01303{font-size:58.666667pt;}
.fs4_c01303{font-size:64.000000pt;}
.fs7_c01303{font-size:69.333333pt;}
.fs2_c01303{font-size:72.000000pt;}
.fs6_c01303{font-size:77.333333pt;}
.fs9_c01303{font-size:82.666667pt;}
.fs1_c01303{font-size:88.000000pt;}
.fs0_c01303{font-size:117.333333pt;}
.fs5_c01303{font-size:128.000000pt;}
.y0_c01303{bottom:0.000000pt;}
.y26_c01303{bottom:2.760000pt;}
.y25_c01303{bottom:6.425219pt;}
.y24_c01303{bottom:51.346667pt;}
.y23_c01303{bottom:72.680000pt;}
.y22_c01303{bottom:95.080000pt;}
.y21_c01303{bottom:117.080000pt;}
.y20_c01303{bottom:138.680000pt;}
.y1f_c01303{bottom:160.546667pt;}
.y1e_c01303{bottom:182.680000pt;}
.y1d_c01303{bottom:204.946667pt;}
.y1c_c01303{bottom:226.546667pt;}
.y1b_c01303{bottom:248.146667pt;}
.y1a_c01303{bottom:270.280000pt;}
.y19_c01303{bottom:291.880000pt;}
.y18_c01303{bottom:313.480000pt;}
.y17_c01303{bottom:335.213333pt;}
.y16_c01303{bottom:357.080000pt;}
.y15_c01303{bottom:378.946667pt;}
.y14_c01303{bottom:400.813333pt;}
.y13_c01303{bottom:422.680000pt;}
.y12_c01303{bottom:444.280000pt;}
.y11_c01303{bottom:465.613333pt;}
.y10_c01303{bottom:487.213333pt;}
.yf_c01303{bottom:508.813333pt;}
.ye_c01303{bottom:530.146667pt;}
.yd_c01303{bottom:551.746667pt;}
.yc_c01303{bottom:573.346667pt;}
.yb_c01303{bottom:594.946667pt;}
.ya_c01303{bottom:616.546667pt;}
.y9_c01303{bottom:638.146667pt;}
.y8_c01303{bottom:660.280000pt;}
.y7_c01303{bottom:681.080000pt;}
.y6_c01303{bottom:702.413333pt;}
.y4_c01303{bottom:721.213333pt;}
.y5_c01303{bottom:724.013333pt;}
.y3_c01303{bottom:774.413333pt;}
.y2_c01303{bottom:792.946667pt;}
.y1_c01303{bottom:819.346667pt;}
.ha_c01303{height:11.733399pt;}
.hb_c01303{height:38.937500pt;}
.h3_c01303{height:70.664062pt;}
.h4_c01303{height:74.906250pt;}
.h7_c01303{height:81.031250pt;}
.h8_c01303{height:81.045333pt;}
.h9_c01303{height:81.132812pt;}
.h6_c01303{height:87.783854pt;}
.h2_c01303{height:148.557292pt;}
.h5_c01303{height:179.712000pt;}
.h1_c01303{height:876.666667pt;}
.h0_c01303{height:876.733333pt;}
.w2_c01303{width:93.222667pt;}
.w0_c01303{width:593.266667pt;}
.w1_c01303{width:593.333333pt;}
.x0_c01303{left:0.000000pt;}
.x6_c01303{left:23.200000pt;}
.xd_c01303{left:26.800000pt;}
.x10_c01303{left:28.266667pt;}
.xe_c01303{left:29.200000pt;}
.xb_c01303{left:60.000000pt;}
.xa_c01303{left:95.066667pt;}
.x8_c01303{left:96.933333pt;}
.x7_c01303{left:98.400000pt;}
.x1_c01303{left:99.600000pt;}
.x4_c01303{left:101.333333pt;}
.x9_c01303{left:102.533333pt;}
.xc_c01303{left:104.133333pt;}
.xf_c01303{left:105.866667pt;}
.x11_c01303{left:106.800000pt;}
.x5_c01303{left:132.933333pt;}
.x3_c01303{left:182.000000pt;}
.x2_c01303{left:212.800000pt;}
.x13_c01303{left:253.801554pt;}
.x12_c01303{left:511.200000pt;}
}





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

.ir_c01304:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01304{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01304;src:url('chunks/assets/font_9e70a0fef9a1e414612353dd.woff2')format("woff");}.ff1_c01304{font-family:ff1_c01304;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01304;src:url('chunks/assets/font_688062bf1595c69ba4d7965a.woff2')format("woff");}.ff2_c01304{font-family:ff2_c01304;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01304;src:url('chunks/assets/font_a635c354e5598cdfcbad0b72.woff2')format("woff");}.ff3_c01304{font-family:ff3_c01304;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01304;src:url('chunks/assets/font_9e71f414d5034bc8aaeb0220.woff2')format("woff");}.ff4_c01304{font-family:ff4_c01304;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01304;src:url('chunks/assets/font_0c875a6f32b319e80fa92c59.woff2')format("woff");}.ff5_c01304{font-family:ff5_c01304;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01304;src:url('chunks/assets/font_acd9a0912c6f435c510c9f16.woff2')format("woff");}.ff6_c01304{font-family:ff6_c01304;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01304;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c01304{font-family:ff7_c01304;line-height:1.219238;font-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_c01304{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m0_c01304{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01304{vertical-align:0.000000px;}
.ls0_c01304{letter-spacing:0.000000px;}
.sc__c01304{text-shadow:none;}
.sc0_c01304{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01304{-webkit-text-stroke:0px transparent;}
.sc0_c01304{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01304{word-spacing:-59.184000px;}
.ws1_c01304{word-spacing:0.000000px;}
._d_c01304{margin-left:-34.140000px;}
._15_c01304{margin-left:-8.016000px;}
._14_c01304{margin-left:-6.192000px;}
._b_c01304{margin-left:-4.404000px;}
._3_c01304{margin-left:-2.262000px;}
._2_c01304{margin-left:-1.248000px;}
._5_c01304{width:1.560000px;}
._6_c01304{width:2.652000px;}
._4_c01304{width:3.666000px;}
._1_c01304{width:5.556000px;}
._a_c01304{width:6.942000px;}
._10_c01304{width:8.190000px;}
._9_c01304{width:9.594000px;}
._f_c01304{width:10.962000px;}
._12_c01304{width:12.540000px;}
._8_c01304{width:13.728000px;}
._c_c01304{width:15.054000px;}
._7_c01304{width:18.252000px;}
._e_c01304{width:19.704000px;}
._13_c01304{width:21.474000px;}
._0_c01304{width:25.194000px;}
._16_c01304{width:38.604000px;}
._11_c01304{width:253.446000px;}
._17_c01304{width:316.992000px;}
.fc2_c01304{color:transparent;}
.fc1_c01304{color:rgb(128,128,128);}
.fc0_c01304{color:rgb(0,0,0);}
.fs4_c01304{font-size:48.000000px;}
.fs0_c01304{font-size:51.000000px;}
.fs3_c01304{font-size:72.000000px;}
.fs1_c01304{font-size:78.000000px;}
.fs2_c01304{font-size:108.000000px;}
.y0_c01304{bottom:0.000000px;}
.y25_c01304{bottom:3.105000px;}
.y24_c01304{bottom:7.228357px;}
.y23_c01304{bottom:54.630000px;}
.y22_c01304{bottom:78.630000px;}
.y21_c01304{bottom:104.280000px;}
.y20_c01304{bottom:128.580000px;}
.y1f_c01304{bottom:153.330000px;}
.y1e_c01304{bottom:177.930000px;}
.y1d_c01304{bottom:202.230000px;}
.y1c_c01304{bottom:226.830000px;}
.y1b_c01304{bottom:251.730000px;}
.y1a_c01304{bottom:276.030000px;}
.y19_c01304{bottom:300.330000px;}
.y18_c01304{bottom:324.630000px;}
.y17_c01304{bottom:348.930000px;}
.y16_c01304{bottom:373.680000px;}
.y15_c01304{bottom:397.980000px;}
.y14_c01304{bottom:422.280000px;}
.y13_c01304{bottom:446.280000px;}
.y12_c01304{bottom:470.430000px;}
.y11_c01304{bottom:494.880000px;}
.y10_c01304{bottom:519.030000px;}
.yf_c01304{bottom:543.330000px;}
.ye_c01304{bottom:567.330000px;}
.yd_c01304{bottom:591.630000px;}
.yc_c01304{bottom:615.330000px;}
.yb_c01304{bottom:639.930000px;}
.ya_c01304{bottom:663.630000px;}
.y9_c01304{bottom:688.230000px;}
.y8_c01304{bottom:713.130000px;}
.y7_c01304{bottom:736.830000px;}
.y6_c01304{bottom:760.830000px;}
.y5_c01304{bottom:785.730000px;}
.y4_c01304{bottom:809.430000px;}
.y3_c01304{bottom:833.730000px;}
.y2_c01304{bottom:858.030000px;}
.y1_c01304{bottom:882.330000px;}
.h6_c01304{height:13.200074px;}
.h7_c01304{height:43.804688px;}
.h2_c01304{height:83.226000px;}
.h5_c01304{height:91.160156px;}
.h4_c01304{height:98.756836px;}
.h3_c01304{height:108.843750px;}
.h1_c01304{height:973.500000px;}
.h0_c01304{height:973.650000px;}
.w2_c01304{width:104.875500px;}
.w1_c01304{width:662.250000px;}
.w0_c01304{width:662.550000px;}
.x0_c01304{left:0.000000px;}
.x6_c01304{left:61.050000px;}
.x5_c01304{left:62.400000px;}
.x1_c01304{left:63.450000px;}
.x2_c01304{left:64.800000px;}
.x3_c01304{left:141.750000px;}
.x4_c01304{left:167.700000px;}
.x8_c01304{left:283.089249px;}
.x7_c01304{left:381.000000px;}
@media print{
.v0_c01304{vertical-align:0.000000pt;}
.ls0_c01304{letter-spacing:0.000000pt;}
.ws0_c01304{word-spacing:-52.608000pt;}
.ws1_c01304{word-spacing:0.000000pt;}
._d_c01304{margin-left:-30.346667pt;}
._15_c01304{margin-left:-7.125333pt;}
._14_c01304{margin-left:-5.504000pt;}
._b_c01304{margin-left:-3.914667pt;}
._3_c01304{margin-left:-2.010667pt;}
._2_c01304{margin-left:-1.109333pt;}
._5_c01304{width:1.386667pt;}
._6_c01304{width:2.357333pt;}
._4_c01304{width:3.258667pt;}
._1_c01304{width:4.938667pt;}
._a_c01304{width:6.170667pt;}
._10_c01304{width:7.280000pt;}
._9_c01304{width:8.528000pt;}
._f_c01304{width:9.744000pt;}
._12_c01304{width:11.146667pt;}
._8_c01304{width:12.202667pt;}
._c_c01304{width:13.381333pt;}
._7_c01304{width:16.224000pt;}
._e_c01304{width:17.514667pt;}
._13_c01304{width:19.088000pt;}
._0_c01304{width:22.394667pt;}
._16_c01304{width:34.314667pt;}
._11_c01304{width:225.285333pt;}
._17_c01304{width:281.770667pt;}
.fs4_c01304{font-size:42.666667pt;}
.fs0_c01304{font-size:45.333333pt;}
.fs3_c01304{font-size:64.000000pt;}
.fs1_c01304{font-size:69.333333pt;}
.fs2_c01304{font-size:96.000000pt;}
.y0_c01304{bottom:0.000000pt;}
.y25_c01304{bottom:2.760000pt;}
.y24_c01304{bottom:6.425206pt;}
.y23_c01304{bottom:48.560000pt;}
.y22_c01304{bottom:69.893333pt;}
.y21_c01304{bottom:92.693333pt;}
.y20_c01304{bottom:114.293333pt;}
.y1f_c01304{bottom:136.293333pt;}
.y1e_c01304{bottom:158.160000pt;}
.y1d_c01304{bottom:179.760000pt;}
.y1c_c01304{bottom:201.626667pt;}
.y1b_c01304{bottom:223.760000pt;}
.y1a_c01304{bottom:245.360000pt;}
.y19_c01304{bottom:266.960000pt;}
.y18_c01304{bottom:288.560000pt;}
.y17_c01304{bottom:310.160000pt;}
.y16_c01304{bottom:332.160000pt;}
.y15_c01304{bottom:353.760000pt;}
.y14_c01304{bottom:375.360000pt;}
.y13_c01304{bottom:396.693333pt;}
.y12_c01304{bottom:418.160000pt;}
.y11_c01304{bottom:439.893333pt;}
.y10_c01304{bottom:461.360000pt;}
.yf_c01304{bottom:482.960000pt;}
.ye_c01304{bottom:504.293333pt;}
.yd_c01304{bottom:525.893333pt;}
.yc_c01304{bottom:546.960000pt;}
.yb_c01304{bottom:568.826667pt;}
.ya_c01304{bottom:589.893333pt;}
.y9_c01304{bottom:611.760000pt;}
.y8_c01304{bottom:633.893333pt;}
.y7_c01304{bottom:654.960000pt;}
.y6_c01304{bottom:676.293333pt;}
.y5_c01304{bottom:698.426667pt;}
.y4_c01304{bottom:719.493333pt;}
.y3_c01304{bottom:741.093333pt;}
.y2_c01304{bottom:762.693333pt;}
.y1_c01304{bottom:784.293333pt;}
.h6_c01304{height:11.733399pt;}
.h7_c01304{height:38.937500pt;}
.h2_c01304{height:73.978667pt;}
.h5_c01304{height:81.031250pt;}
.h4_c01304{height:87.783854pt;}
.h3_c01304{height:96.750000pt;}
.h1_c01304{height:865.333333pt;}
.h0_c01304{height:865.466667pt;}
.w2_c01304{width:93.222667pt;}
.w1_c01304{width:588.666667pt;}
.w0_c01304{width:588.933333pt;}
.x0_c01304{left:0.000000pt;}
.x6_c01304{left:54.266667pt;}
.x5_c01304{left:55.466667pt;}
.x1_c01304{left:56.400000pt;}
.x2_c01304{left:57.600000pt;}
.x3_c01304{left:126.000000pt;}
.x4_c01304{left:149.066667pt;}
.x8_c01304{left:251.634888pt;}
.x7_c01304{left:338.666667pt;}
}





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

.ir_c01305:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01305{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01305;src:url('chunks/assets/font_9daed695cfdd2f84c57a45c9.woff2')format("woff");}.ff1_c01305{font-family:ff1_c01305;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01305;src:url('chunks/assets/font_7e47e0722b24f61141fb191a.woff2')format("woff");}.ff2_c01305{font-family:ff2_c01305;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01305;src:url('chunks/assets/font_0eff6f3bfd26bbccac7ed298.woff2')format("woff");}.ff3_c01305{font-family:ff3_c01305;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01305;src:url('chunks/assets/font_dcd5ee88c56ea40215f62dad.woff2')format("woff");}.ff4_c01305{font-family:ff4_c01305;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01305;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c01305{font-family:ff5_c01305;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01305{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01305{vertical-align:0.000000px;}
.ls3_c01305{letter-spacing:0.000000px;}
.ls1_c01305{letter-spacing:9.000000px;}
.ls0_c01305{letter-spacing:9.900000px;}
.ls2_c01305{letter-spacing:12.840000px;}
.sc__c01305{text-shadow:none;}
.sc0_c01305{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01305{-webkit-text-stroke:0px transparent;}
.sc0_c01305{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01305{word-spacing:-20.250000px;}
.ws0_c01305{word-spacing:-17.352000px;}
.ws2_c01305{word-spacing:0.000000px;}
._15_c01305{margin-left:-31.509000px;}
._1d_c01305{margin-left:-21.870000px;}
._12_c01305{margin-left:-20.331000px;}
._1e_c01305{margin-left:-15.876000px;}
._13_c01305{margin-left:-13.041000px;}
._18_c01305{margin-left:-11.367000px;}
._1b_c01305{margin-left:-8.559000px;}
._10_c01305{margin-left:-6.804000px;}
._e_c01305{margin-left:-4.779000px;}
._d_c01305{margin-left:-3.726000px;}
._a_c01305{margin-left:-2.673000px;}
._3_c01305{margin-left:-1.215000px;}
._8_c01305{width:1.782000px;}
._6_c01305{width:2.997000px;}
._7_c01305{width:4.212000px;}
._0_c01305{width:5.427000px;}
._b_c01305{width:6.561000px;}
._1_c01305{width:7.857000px;}
._5_c01305{width:9.801000px;}
._2_c01305{width:11.259000px;}
._c_c01305{width:12.960000px;}
._4_c01305{width:14.580000px;}
._9_c01305{width:16.038000px;}
._f_c01305{width:18.711000px;}
._16_c01305{width:21.870000px;}
._17_c01305{width:28.638000px;}
._14_c01305{width:62.793000px;}
._1a_c01305{width:66.096000px;}
._1c_c01305{width:130.107000px;}
._19_c01305{width:200.172000px;}
._11_c01305{width:299.619000px;}
.fc2_c01305{color:transparent;}
.fc1_c01305{color:rgb(128,128,128);}
.fc0_c01305{color:rgb(0,0,0);}
.fs3_c01305{font-size:48.000000px;}
.fs2_c01305{font-size:72.000000px;}
.fs0_c01305{font-size:81.000000px;}
.fs1_c01305{font-size:87.000000px;}
.y0_c01305{bottom:0.000000px;}
.y25_c01305{bottom:3.105000px;}
.y24_c01305{bottom:7.228371px;}
.y23_c01305{bottom:61.815000px;}
.y22_c01305{bottom:84.765000px;}
.y21_c01305{bottom:110.115000px;}
.y20_c01305{bottom:135.015000px;}
.y1f_c01305{bottom:159.765000px;}
.y1e_c01305{bottom:184.065000px;}
.y1d_c01305{bottom:208.665000px;}
.y1c_c01305{bottom:232.665000px;}
.y1b_c01305{bottom:256.965000px;}
.y1a_c01305{bottom:282.465000px;}
.y19_c01305{bottom:306.915000px;}
.y18_c01305{bottom:331.215000px;}
.y17_c01305{bottom:355.515000px;}
.y16_c01305{bottom:380.415000px;}
.y15_c01305{bottom:405.015000px;}
.y14_c01305{bottom:429.315000px;}
.y13_c01305{bottom:453.915000px;}
.y12_c01305{bottom:478.365000px;}
.y11_c01305{bottom:502.665000px;}
.y10_c01305{bottom:526.815000px;}
.yf_c01305{bottom:551.115000px;}
.ye_c01305{bottom:575.415000px;}
.yd_c01305{bottom:600.165000px;}
.yc_c01305{bottom:624.015000px;}
.yb_c01305{bottom:648.315000px;}
.ya_c01305{bottom:672.765000px;}
.y9_c01305{bottom:696.915000px;}
.y8_c01305{bottom:721.215000px;}
.y7_c01305{bottom:746.265000px;}
.y6_c01305{bottom:769.815000px;}
.y5_c01305{bottom:793.815000px;}
.y4_c01305{bottom:818.115000px;}
.y3_c01305{bottom:842.415000px;}
.y2_c01305{bottom:866.715000px;}
.y1_c01305{bottom:891.015000px;}
.h5_c01305{height:13.200074px;}
.h6_c01305{height:43.804688px;}
.h2_c01305{height:79.497070px;}
.h4_c01305{height:84.269531px;}
.h3_c01305{height:91.176000px;}
.h1_c01305{height:986.250000px;}
.h0_c01305{height:986.325000px;}
.w2_c01305{width:104.875500px;}
.w0_c01305{width:667.425000px;}
.w1_c01305{width:667.500000px;}
.x0_c01305{left:0.000000px;}
.x8_c01305{left:30.600000px;}
.x9_c01305{left:31.950000px;}
.x4_c01305{left:36.750000px;}
.x7_c01305{left:118.050000px;}
.x6_c01305{left:119.700000px;}
.x1_c01305{left:121.050000px;}
.x5_c01305{left:122.100000px;}
.x2_c01305{left:123.750000px;}
.xa_c01305{left:124.800000px;}
.x3_c01305{left:129.300000px;}
.xc_c01305{left:285.526749px;}
.xb_c01305{left:582.900000px;}
@media print{
.v0_c01305{vertical-align:0.000000pt;}
.ls3_c01305{letter-spacing:0.000000pt;}
.ls1_c01305{letter-spacing:8.000000pt;}
.ls0_c01305{letter-spacing:8.800000pt;}
.ls2_c01305{letter-spacing:11.413333pt;}
.ws1_c01305{word-spacing:-18.000000pt;}
.ws0_c01305{word-spacing:-15.424000pt;}
.ws2_c01305{word-spacing:0.000000pt;}
._15_c01305{margin-left:-28.008000pt;}
._1d_c01305{margin-left:-19.440000pt;}
._12_c01305{margin-left:-18.072000pt;}
._1e_c01305{margin-left:-14.112000pt;}
._13_c01305{margin-left:-11.592000pt;}
._18_c01305{margin-left:-10.104000pt;}
._1b_c01305{margin-left:-7.608000pt;}
._10_c01305{margin-left:-6.048000pt;}
._e_c01305{margin-left:-4.248000pt;}
._d_c01305{margin-left:-3.312000pt;}
._a_c01305{margin-left:-2.376000pt;}
._3_c01305{margin-left:-1.080000pt;}
._8_c01305{width:1.584000pt;}
._6_c01305{width:2.664000pt;}
._7_c01305{width:3.744000pt;}
._0_c01305{width:4.824000pt;}
._b_c01305{width:5.832000pt;}
._1_c01305{width:6.984000pt;}
._5_c01305{width:8.712000pt;}
._2_c01305{width:10.008000pt;}
._c_c01305{width:11.520000pt;}
._4_c01305{width:12.960000pt;}
._9_c01305{width:14.256000pt;}
._f_c01305{width:16.632000pt;}
._16_c01305{width:19.440000pt;}
._17_c01305{width:25.456000pt;}
._14_c01305{width:55.816000pt;}
._1a_c01305{width:58.752000pt;}
._1c_c01305{width:115.650667pt;}
._19_c01305{width:177.930667pt;}
._11_c01305{width:266.328000pt;}
.fs3_c01305{font-size:42.666667pt;}
.fs2_c01305{font-size:64.000000pt;}
.fs0_c01305{font-size:72.000000pt;}
.fs1_c01305{font-size:77.333333pt;}
.y0_c01305{bottom:0.000000pt;}
.y25_c01305{bottom:2.760000pt;}
.y24_c01305{bottom:6.425219pt;}
.y23_c01305{bottom:54.946667pt;}
.y22_c01305{bottom:75.346667pt;}
.y21_c01305{bottom:97.880000pt;}
.y20_c01305{bottom:120.013333pt;}
.y1f_c01305{bottom:142.013333pt;}
.y1e_c01305{bottom:163.613333pt;}
.y1d_c01305{bottom:185.480000pt;}
.y1c_c01305{bottom:206.813333pt;}
.y1b_c01305{bottom:228.413333pt;}
.y1a_c01305{bottom:251.080000pt;}
.y19_c01305{bottom:272.813333pt;}
.y18_c01305{bottom:294.413333pt;}
.y17_c01305{bottom:316.013333pt;}
.y16_c01305{bottom:338.146667pt;}
.y15_c01305{bottom:360.013333pt;}
.y14_c01305{bottom:381.613333pt;}
.y13_c01305{bottom:403.480000pt;}
.y12_c01305{bottom:425.213333pt;}
.y11_c01305{bottom:446.813333pt;}
.y10_c01305{bottom:468.280000pt;}
.yf_c01305{bottom:489.880000pt;}
.ye_c01305{bottom:511.480000pt;}
.yd_c01305{bottom:533.480000pt;}
.yc_c01305{bottom:554.680000pt;}
.yb_c01305{bottom:576.280000pt;}
.ya_c01305{bottom:598.013333pt;}
.y9_c01305{bottom:619.480000pt;}
.y8_c01305{bottom:641.080000pt;}
.y7_c01305{bottom:663.346667pt;}
.y6_c01305{bottom:684.280000pt;}
.y5_c01305{bottom:705.613333pt;}
.y4_c01305{bottom:727.213333pt;}
.y3_c01305{bottom:748.813333pt;}
.y2_c01305{bottom:770.413333pt;}
.y1_c01305{bottom:792.013333pt;}
.h5_c01305{height:11.733399pt;}
.h6_c01305{height:38.937500pt;}
.h2_c01305{height:70.664062pt;}
.h4_c01305{height:74.906250pt;}
.h3_c01305{height:81.045333pt;}
.h1_c01305{height:876.666667pt;}
.h0_c01305{height:876.733333pt;}
.w2_c01305{width:93.222667pt;}
.w0_c01305{width:593.266667pt;}
.w1_c01305{width:593.333333pt;}
.x0_c01305{left:0.000000pt;}
.x8_c01305{left:27.200000pt;}
.x9_c01305{left:28.400000pt;}
.x4_c01305{left:32.666667pt;}
.x7_c01305{left:104.933333pt;}
.x6_c01305{left:106.400000pt;}
.x1_c01305{left:107.600000pt;}
.x5_c01305{left:108.533333pt;}
.x2_c01305{left:110.000000pt;}
.xa_c01305{left:110.933333pt;}
.x3_c01305{left:114.933333pt;}
.xc_c01305{left:253.801554pt;}
.xb_c01305{left:518.133333pt;}
}





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

.ir_c01306:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01306{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01306;src:url('chunks/assets/font_21c40b713e78fa3316495044.woff2')format("woff");}.ff1_c01306{font-family:ff1_c01306;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01306;src:url('chunks/assets/font_f087b5f05a663903e669d4a7.woff2')format("woff");}.ff2_c01306{font-family:ff2_c01306;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01306;src:url('chunks/assets/font_d266aab6197f779bbb4fb591.woff2')format("woff");}.ff3_c01306{font-family:ff3_c01306;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01306;src:url('chunks/assets/font_e563f0d0d8aa5a0f3d761904.woff2')format("woff");}.ff4_c01306{font-family:ff4_c01306;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01306;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c01306{font-family:ff5_c01306;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01306{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01306{vertical-align:0.000000px;}
.ls1_c01306{letter-spacing:0.000000px;}
.ls2_c01306{letter-spacing:9.000000px;}
.ls0_c01306{letter-spacing:11.550000px;}
.sc__c01306{text-shadow:none;}
.sc0_c01306{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01306{-webkit-text-stroke:0px transparent;}
.sc0_c01306{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01306{word-spacing:-76.686000px;}
.ws0_c01306{word-spacing:-17.352000px;}
.ws2_c01306{word-spacing:0.000000px;}
._2a_c01306{margin-left:-23.085000px;}
._15_c01306{margin-left:-21.480000px;}
._24_c01306{margin-left:-20.073000px;}
._11_c01306{margin-left:-18.762000px;}
._17_c01306{margin-left:-16.362000px;}
._20_c01306{margin-left:-13.707000px;}
._12_c01306{margin-left:-12.510000px;}
._1d_c01306{margin-left:-10.221000px;}
._14_c01306{margin-left:-8.748000px;}
._10_c01306{margin-left:-7.527000px;}
._c_c01306{margin-left:-6.084000px;}
._2_c01306{margin-left:-4.080000px;}
._21_c01306{margin-left:-3.057000px;}
._8_c01306{margin-left:-2.055000px;}
._1c_c01306{margin-left:-1.011000px;}
._4_c01306{width:1.716000px;}
._3_c01306{width:2.730000px;}
._5_c01306{width:4.614000px;}
._6_c01306{width:5.805000px;}
._d_c01306{width:6.855000px;}
._9_c01306{width:8.025000px;}
._7_c01306{width:9.687000px;}
._0_c01306{width:11.016000px;}
._e_c01306{width:12.906000px;}
._b_c01306{width:14.841000px;}
._f_c01306{width:16.158000px;}
._a_c01306{width:17.175000px;}
._1b_c01306{width:18.990000px;}
._26_c01306{width:21.411000px;}
._28_c01306{width:22.761000px;}
._25_c01306{width:24.171000px;}
._19_c01306{width:25.530000px;}
._27_c01306{width:26.934000px;}
._2d_c01306{width:28.998000px;}
._29_c01306{width:31.437000px;}
._1f_c01306{width:37.242000px;}
._23_c01306{width:39.594000px;}
._2b_c01306{width:44.226000px;}
._1_c01306{width:52.848000px;}
._1a_c01306{width:63.519000px;}
._16_c01306{width:96.390000px;}
._18_c01306{width:99.375000px;}
._1e_c01306{width:252.300000px;}
._13_c01306{width:256.509000px;}
._22_c01306{width:288.297000px;}
._2e_c01306{width:307.146000px;}
._2c_c01306{width:1142.409000px;}
.fc2_c01306{color:transparent;}
.fc1_c01306{color:rgb(128,128,128);}
.fc0_c01306{color:rgb(0,0,0);}
.fs4_c01306{font-size:48.000000px;}
.fs1_c01306{font-size:72.000000px;}
.fs2_c01306{font-size:78.000000px;}
.fs0_c01306{font-size:81.000000px;}
.fs3_c01306{font-size:87.000000px;}
.y0_c01306{bottom:0.000000px;}
.y26_c01306{bottom:3.105000px;}
.y25_c01306{bottom:7.228369px;}
.y24_c01306{bottom:52.320000px;}
.y23_c01306{bottom:77.970000px;}
.y22_c01306{bottom:103.170000px;}
.y21_c01306{bottom:128.220000px;}
.y20_c01306{bottom:152.520000px;}
.y1f_c01306{bottom:176.220000px;}
.y1e_c01306{bottom:201.870000px;}
.y1d_c01306{bottom:226.470000px;}
.y1c_c01306{bottom:249.120000px;}
.y1b_c01306{bottom:275.070000px;}
.y1a_c01306{bottom:299.970000px;}
.y19_c01306{bottom:323.670000px;}
.y18_c01306{bottom:348.870000px;}
.y17_c01306{bottom:372.870000px;}
.y16_c01306{bottom:396.270000px;}
.y1_c01306{bottom:401.220000px;}
.y15_c01306{bottom:421.770000px;}
.y14_c01306{bottom:445.470000px;}
.y13_c01306{bottom:469.170000px;}
.y12_c01306{bottom:493.770000px;}
.y11_c01306{bottom:517.770000px;}
.y10_c01306{bottom:541.320000px;}
.yf_c01306{bottom:565.920000px;}
.ye_c01306{bottom:590.220000px;}
.yd_c01306{bottom:614.220000px;}
.yc_c01306{bottom:638.220000px;}
.yb_c01306{bottom:660.870000px;}
.ya_c01306{bottom:686.520000px;}
.y9_c01306{bottom:710.820000px;}
.y8_c01306{bottom:735.120000px;}
.y7_c01306{bottom:759.420000px;}
.y6_c01306{bottom:783.720000px;}
.y5_c01306{bottom:808.020000px;}
.y4_c01306{bottom:831.870000px;}
.y3_c01306{bottom:856.470000px;}
.y2_c01306{bottom:879.870000px;}
.h6_c01306{height:13.200073px;}
.h7_c01306{height:43.804688px;}
.h2_c01306{height:79.497070px;}
.h4_c01306{height:84.269531px;}
.h5_c01306{height:91.176000px;}
.h3_c01306{height:98.756836px;}
.h1_c01306{height:986.250000px;}
.h0_c01306{height:986.550000px;}
.w1_c01306{width:104.875500px;}
.w0_c01306{width:672.000000px;}
.x0_c01306{left:0.000000px;}
.x2_c01306{left:25.950000px;}
.x1_c01306{left:32.700000px;}
.x8_c01306{left:45.900000px;}
.x5_c01306{left:63.450000px;}
.x6_c01306{left:64.500000px;}
.x7_c01306{left:66.600000px;}
.x3_c01306{left:67.950000px;}
.x4_c01306{left:70.200000px;}
.x9_c01306{left:72.000000px;}
.xa_c01306{left:73.650000px;}
.xb_c01306{left:287.814240px;}
@media print{
.v0_c01306{vertical-align:0.000000pt;}
.ls1_c01306{letter-spacing:0.000000pt;}
.ls2_c01306{letter-spacing:8.000000pt;}
.ls0_c01306{letter-spacing:10.266667pt;}
.ws1_c01306{word-spacing:-68.165333pt;}
.ws0_c01306{word-spacing:-15.424000pt;}
.ws2_c01306{word-spacing:0.000000pt;}
._2a_c01306{margin-left:-20.520000pt;}
._15_c01306{margin-left:-19.093333pt;}
._24_c01306{margin-left:-17.842667pt;}
._11_c01306{margin-left:-16.677333pt;}
._17_c01306{margin-left:-14.544000pt;}
._20_c01306{margin-left:-12.184000pt;}
._12_c01306{margin-left:-11.120000pt;}
._1d_c01306{margin-left:-9.085333pt;}
._14_c01306{margin-left:-7.776000pt;}
._10_c01306{margin-left:-6.690667pt;}
._c_c01306{margin-left:-5.408000pt;}
._2_c01306{margin-left:-3.626667pt;}
._21_c01306{margin-left:-2.717333pt;}
._8_c01306{margin-left:-1.826667pt;}
._1c_c01306{margin-left:-0.898667pt;}
._4_c01306{width:1.525333pt;}
._3_c01306{width:2.426667pt;}
._5_c01306{width:4.101333pt;}
._6_c01306{width:5.160000pt;}
._d_c01306{width:6.093333pt;}
._9_c01306{width:7.133333pt;}
._7_c01306{width:8.610667pt;}
._0_c01306{width:9.792000pt;}
._e_c01306{width:11.472000pt;}
._b_c01306{width:13.192000pt;}
._f_c01306{width:14.362667pt;}
._a_c01306{width:15.266667pt;}
._1b_c01306{width:16.880000pt;}
._26_c01306{width:19.032000pt;}
._28_c01306{width:20.232000pt;}
._25_c01306{width:21.485333pt;}
._19_c01306{width:22.693333pt;}
._27_c01306{width:23.941333pt;}
._2d_c01306{width:25.776000pt;}
._29_c01306{width:27.944000pt;}
._1f_c01306{width:33.104000pt;}
._23_c01306{width:35.194667pt;}
._2b_c01306{width:39.312000pt;}
._1_c01306{width:46.976000pt;}
._1a_c01306{width:56.461333pt;}
._16_c01306{width:85.680000pt;}
._18_c01306{width:88.333333pt;}
._1e_c01306{width:224.266667pt;}
._13_c01306{width:228.008000pt;}
._22_c01306{width:256.264000pt;}
._2e_c01306{width:273.018667pt;}
._2c_c01306{width:1015.474667pt;}
.fs4_c01306{font-size:42.666667pt;}
.fs1_c01306{font-size:64.000000pt;}
.fs2_c01306{font-size:69.333333pt;}
.fs0_c01306{font-size:72.000000pt;}
.fs3_c01306{font-size:77.333333pt;}
.y0_c01306{bottom:0.000000pt;}
.y26_c01306{bottom:2.760000pt;}
.y25_c01306{bottom:6.425217pt;}
.y24_c01306{bottom:46.506667pt;}
.y23_c01306{bottom:69.306667pt;}
.y22_c01306{bottom:91.706667pt;}
.y21_c01306{bottom:113.973333pt;}
.y20_c01306{bottom:135.573333pt;}
.y1f_c01306{bottom:156.640000pt;}
.y1e_c01306{bottom:179.440000pt;}
.y1d_c01306{bottom:201.306667pt;}
.y1c_c01306{bottom:221.440000pt;}
.y1b_c01306{bottom:244.506667pt;}
.y1a_c01306{bottom:266.640000pt;}
.y19_c01306{bottom:287.706667pt;}
.y18_c01306{bottom:310.106667pt;}
.y17_c01306{bottom:331.440000pt;}
.y16_c01306{bottom:352.240000pt;}
.y1_c01306{bottom:356.640000pt;}
.y15_c01306{bottom:374.906667pt;}
.y14_c01306{bottom:395.973333pt;}
.y13_c01306{bottom:417.040000pt;}
.y12_c01306{bottom:438.906667pt;}
.y11_c01306{bottom:460.240000pt;}
.y10_c01306{bottom:481.173333pt;}
.yf_c01306{bottom:503.040000pt;}
.ye_c01306{bottom:524.640000pt;}
.yd_c01306{bottom:545.973333pt;}
.yc_c01306{bottom:567.306667pt;}
.yb_c01306{bottom:587.440000pt;}
.ya_c01306{bottom:610.240000pt;}
.y9_c01306{bottom:631.840000pt;}
.y8_c01306{bottom:653.440000pt;}
.y7_c01306{bottom:675.040000pt;}
.y6_c01306{bottom:696.640000pt;}
.y5_c01306{bottom:718.240000pt;}
.y4_c01306{bottom:739.440000pt;}
.y3_c01306{bottom:761.306667pt;}
.y2_c01306{bottom:782.106667pt;}
.h6_c01306{height:11.733399pt;}
.h7_c01306{height:38.937500pt;}
.h2_c01306{height:70.664062pt;}
.h4_c01306{height:74.906250pt;}
.h5_c01306{height:81.045333pt;}
.h3_c01306{height:87.783854pt;}
.h1_c01306{height:876.666667pt;}
.h0_c01306{height:876.933333pt;}
.w1_c01306{width:93.222667pt;}
.w0_c01306{width:597.333333pt;}
.x0_c01306{left:0.000000pt;}
.x2_c01306{left:23.066667pt;}
.x1_c01306{left:29.066667pt;}
.x8_c01306{left:40.800000pt;}
.x5_c01306{left:56.400000pt;}
.x6_c01306{left:57.333333pt;}
.x7_c01306{left:59.200000pt;}
.x3_c01306{left:60.400000pt;}
.x4_c01306{left:62.400000pt;}
.x9_c01306{left:64.000000pt;}
.xa_c01306{left:65.466667pt;}
.xb_c01306{left:255.834880pt;}
}





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

.ir_c01307:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01307{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01307;src:url('chunks/assets/font_f61b99d6b4f4da2f992796f1.woff2')format("woff");}.ff1_c01307{font-family:ff1_c01307;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01307;src:url('chunks/assets/font_75071a6e11f0aac97e2f0796.woff2')format("woff");}.ff2_c01307{font-family:ff2_c01307;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01307;src:url('chunks/assets/font_1dd49206a6d2fdd3a967f34f.woff2')format("woff");}.ff3_c01307{font-family:ff3_c01307;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01307;src:url('chunks/assets/font_37cd61a6c44cd86a32df6d74.woff2')format("woff");}.ff4_c01307{font-family:ff4_c01307;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01307;src:url('chunks/assets/font_8c35b56a82296f0267060b40.woff2')format("woff");}.ff5_c01307{font-family:ff5_c01307;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01307;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c01307{font-family:ff6_c01307;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01307{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01307{vertical-align:0.000000px;}
.v1_c01307{vertical-align:160.800000px;}
.ls1_c01307{letter-spacing:0.000000px;}
.ls0_c01307{letter-spacing:8.802000px;}
.sc__c01307{text-shadow:none;}
.sc0_c01307{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01307{-webkit-text-stroke:0px transparent;}
.sc0_c01307{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01307{word-spacing:-205.770000px;}
.ws0_c01307{word-spacing:-17.352000px;}
.ws2_c01307{word-spacing:-16.926000px;}
.ws3_c01307{word-spacing:0.000000px;}
._16_c01307{margin-left:-13.506000px;}
._1a_c01307{margin-left:-12.402000px;}
._15_c01307{margin-left:-9.282000px;}
._8_c01307{margin-left:-7.956000px;}
._10_c01307{margin-left:-6.864000px;}
._1c_c01307{margin-left:-5.526000px;}
._0_c01307{margin-left:-4.524000px;}
._1_c01307{margin-left:-3.276000px;}
._b_c01307{margin-left:-2.262000px;}
._11_c01307{margin-left:-1.170000px;}
._3_c01307{width:1.170000px;}
._a_c01307{width:2.262000px;}
._6_c01307{width:3.276000px;}
._4_c01307{width:4.602000px;}
._5_c01307{width:5.616000px;}
._7_c01307{width:7.566000px;}
._9_c01307{width:9.360000px;}
._c_c01307{width:10.374000px;}
._1b_c01307{width:11.466000px;}
._14_c01307{width:13.494000px;}
._e_c01307{width:14.898000px;}
._13_c01307{width:15.912000px;}
._d_c01307{width:18.096000px;}
._2_c01307{width:19.422000px;}
._18_c01307{width:21.039000px;}
._f_c01307{width:23.010000px;}
._12_c01307{width:24.180000px;}
._1d_c01307{width:29.796000px;}
._19_c01307{width:56.490000px;}
._17_c01307{width:114.684000px;}
.fc2_c01307{color:transparent;}
.fc1_c01307{color:rgb(128,128,128);}
.fc0_c01307{color:rgb(0,0,0);}
.fs4_c01307{font-size:48.000000px;}
.fs2_c01307{font-size:57.000000px;}
.fs1_c01307{font-size:72.000000px;}
.fs0_c01307{font-size:78.000000px;}
.fs3_c01307{font-size:285.000000px;}
.y0_c01307{bottom:0.000000px;}
.y23_c01307{bottom:3.105000px;}
.y22_c01307{bottom:7.228363px;}
.y21_c01307{bottom:49.950000px;}
.y20_c01307{bottom:73.650000px;}
.y1f_c01307{bottom:98.850000px;}
.y1e_c01307{bottom:124.200000px;}
.y1d_c01307{bottom:148.200000px;}
.y1c_c01307{bottom:172.800000px;}
.y1b_c01307{bottom:197.400000px;}
.y1a_c01307{bottom:221.850000px;}
.y18_c01307{bottom:230.850000px;}
.y19_c01307{bottom:246.750000px;}
.y17_c01307{bottom:319.050000px;}
.y16_c01307{bottom:367.950000px;}
.y15_c01307{bottom:392.850000px;}
.y14_c01307{bottom:417.450000px;}
.y13_c01307{bottom:441.900000px;}
.y12_c01307{bottom:466.350000px;}
.y11_c01307{bottom:490.350000px;}
.y10_c01307{bottom:516.000000px;}
.yf_c01307{bottom:539.400000px;}
.ye_c01307{bottom:563.850000px;}
.yd_c01307{bottom:587.550000px;}
.yc_c01307{bottom:611.850000px;}
.yb_c01307{bottom:636.450000px;}
.ya_c01307{bottom:661.200000px;}
.y9_c01307{bottom:685.350000px;}
.y8_c01307{bottom:709.500000px;}
.y7_c01307{bottom:733.500000px;}
.y6_c01307{bottom:758.250000px;}
.y5_c01307{bottom:780.750000px;}
.y4_c01307{bottom:806.700000px;}
.y3_c01307{bottom:831.000000px;}
.y2_c01307{bottom:855.000000px;}
.y1_c01307{bottom:879.450000px;}
.h7_c01307{height:13.200074px;}
.h8_c01307{height:43.804688px;}
.h2_c01307{height:83.226000px;}
.h6_c01307{height:83.826000px;}
.h3_c01307{height:84.269531px;}
.h4_c01307{height:98.756836px;}
.h5_c01307{height:279.711914px;}
.h1_c01307{height:977.250000px;}
.h0_c01307{height:977.400000px;}
.w1_c01307{width:104.875500px;}
.w0_c01307{width:661.500000px;}
.x0_c01307{left:0.000000px;}
.x7_c01307{left:28.950000px;}
.x8_c01307{left:57.750000px;}
.x1_c01307{left:112.050000px;}
.x2_c01307{left:113.700000px;}
.x3_c01307{left:114.750000px;}
.x4_c01307{left:116.100000px;}
.x6_c01307{left:117.150000px;}
.x9_c01307{left:119.100000px;}
.xa_c01307{left:120.150000px;}
.xe_c01307{left:121.200000px;}
.xc_c01307{left:122.550000px;}
.xd_c01307{left:160.950000px;}
.xb_c01307{left:166.350000px;}
.x5_c01307{left:183.900000px;}
.x10_c01307{left:282.564240px;}
.xf_c01307{left:585.600000px;}
@media print{
.v0_c01307{vertical-align:0.000000pt;}
.v1_c01307{vertical-align:142.933333pt;}
.ls1_c01307{letter-spacing:0.000000pt;}
.ls0_c01307{letter-spacing:7.824000pt;}
.ws1_c01307{word-spacing:-182.906667pt;}
.ws0_c01307{word-spacing:-15.424000pt;}
.ws2_c01307{word-spacing:-15.045333pt;}
.ws3_c01307{word-spacing:0.000000pt;}
._16_c01307{margin-left:-12.005333pt;}
._1a_c01307{margin-left:-11.024000pt;}
._15_c01307{margin-left:-8.250667pt;}
._8_c01307{margin-left:-7.072000pt;}
._10_c01307{margin-left:-6.101333pt;}
._1c_c01307{margin-left:-4.912000pt;}
._0_c01307{margin-left:-4.021333pt;}
._1_c01307{margin-left:-2.912000pt;}
._b_c01307{margin-left:-2.010667pt;}
._11_c01307{margin-left:-1.040000pt;}
._3_c01307{width:1.040000pt;}
._a_c01307{width:2.010667pt;}
._6_c01307{width:2.912000pt;}
._4_c01307{width:4.090667pt;}
._5_c01307{width:4.992000pt;}
._7_c01307{width:6.725333pt;}
._9_c01307{width:8.320000pt;}
._c_c01307{width:9.221333pt;}
._1b_c01307{width:10.192000pt;}
._14_c01307{width:11.994667pt;}
._e_c01307{width:13.242667pt;}
._13_c01307{width:14.144000pt;}
._d_c01307{width:16.085333pt;}
._2_c01307{width:17.264000pt;}
._18_c01307{width:18.701333pt;}
._f_c01307{width:20.453333pt;}
._12_c01307{width:21.493333pt;}
._1d_c01307{width:26.485333pt;}
._19_c01307{width:50.213333pt;}
._17_c01307{width:101.941333pt;}
.fs4_c01307{font-size:42.666667pt;}
.fs2_c01307{font-size:50.666667pt;}
.fs1_c01307{font-size:64.000000pt;}
.fs0_c01307{font-size:69.333333pt;}
.fs3_c01307{font-size:253.333333pt;}
.y0_c01307{bottom:0.000000pt;}
.y23_c01307{bottom:2.760000pt;}
.y22_c01307{bottom:6.425212pt;}
.y21_c01307{bottom:44.400000pt;}
.y20_c01307{bottom:65.466667pt;}
.y1f_c01307{bottom:87.866667pt;}
.y1e_c01307{bottom:110.400000pt;}
.y1d_c01307{bottom:131.733333pt;}
.y1c_c01307{bottom:153.600000pt;}
.y1b_c01307{bottom:175.466667pt;}
.y1a_c01307{bottom:197.200000pt;}
.y18_c01307{bottom:205.200000pt;}
.y19_c01307{bottom:219.333333pt;}
.y17_c01307{bottom:283.600000pt;}
.y16_c01307{bottom:327.066667pt;}
.y15_c01307{bottom:349.200000pt;}
.y14_c01307{bottom:371.066667pt;}
.y13_c01307{bottom:392.800000pt;}
.y12_c01307{bottom:414.533333pt;}
.y11_c01307{bottom:435.866667pt;}
.y10_c01307{bottom:458.666667pt;}
.yf_c01307{bottom:479.466667pt;}
.ye_c01307{bottom:501.200000pt;}
.yd_c01307{bottom:522.266667pt;}
.yc_c01307{bottom:543.866667pt;}
.yb_c01307{bottom:565.733333pt;}
.ya_c01307{bottom:587.733333pt;}
.y9_c01307{bottom:609.200000pt;}
.y8_c01307{bottom:630.666667pt;}
.y7_c01307{bottom:652.000000pt;}
.y6_c01307{bottom:674.000000pt;}
.y5_c01307{bottom:694.000000pt;}
.y4_c01307{bottom:717.066667pt;}
.y3_c01307{bottom:738.666667pt;}
.y2_c01307{bottom:760.000000pt;}
.y1_c01307{bottom:781.733333pt;}
.h7_c01307{height:11.733399pt;}
.h8_c01307{height:38.937500pt;}
.h2_c01307{height:73.978667pt;}
.h6_c01307{height:74.512000pt;}
.h3_c01307{height:74.906250pt;}
.h4_c01307{height:87.783854pt;}
.h5_c01307{height:248.632812pt;}
.h1_c01307{height:868.666667pt;}
.h0_c01307{height:868.800000pt;}
.w1_c01307{width:93.222667pt;}
.w0_c01307{width:588.000000pt;}
.x0_c01307{left:0.000000pt;}
.x7_c01307{left:25.733333pt;}
.x8_c01307{left:51.333333pt;}
.x1_c01307{left:99.600000pt;}
.x2_c01307{left:101.066667pt;}
.x3_c01307{left:102.000000pt;}
.x4_c01307{left:103.200000pt;}
.x6_c01307{left:104.133333pt;}
.x9_c01307{left:105.866667pt;}
.xa_c01307{left:106.800000pt;}
.xe_c01307{left:107.733333pt;}
.xc_c01307{left:108.933333pt;}
.xd_c01307{left:143.066667pt;}
.xb_c01307{left:147.866667pt;}
.x5_c01307{left:163.466667pt;}
.x10_c01307{left:251.168213pt;}
.xf_c01307{left:520.533333pt;}
}





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

.ir_c01308:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01308{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01308;src:url('chunks/assets/font_c8c67fc42136b053870bf9cb.woff2')format("woff");}.ff1_c01308{font-family:ff1_c01308;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01308;src:url('chunks/assets/font_d504209867a934322846f718.woff2')format("woff");}.ff2_c01308{font-family:ff2_c01308;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01308;src:url('chunks/assets/font_b18846bfe9a74e7ff9bd9c46.woff2')format("woff");}.ff3_c01308{font-family:ff3_c01308;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01308;src:url('chunks/assets/font_70a867081d15934d044f9203.woff2')format("woff");}.ff4_c01308{font-family:ff4_c01308;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01308;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c01308{font-family:ff5_c01308;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01308{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01308{vertical-align:0.000000px;}
.ls0_c01308{letter-spacing:0.000000px;}
.ls1_c01308{letter-spacing:9.000000px;}
.sc__c01308{text-shadow:none;}
.sc0_c01308{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01308{-webkit-text-stroke:0px transparent;}
.sc0_c01308{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01308{word-spacing:-76.686000px;}
.ws0_c01308{word-spacing:-17.352000px;}
.ws2_c01308{word-spacing:0.000000px;}
._20_c01308{margin-left:-22.752000px;}
._1f_c01308{margin-left:-19.566000px;}
._1e_c01308{margin-left:-15.228000px;}
._16_c01308{margin-left:-14.208000px;}
._23_c01308{margin-left:-10.797000px;}
._4_c01308{margin-left:-9.600000px;}
._22_c01308{margin-left:-8.316000px;}
._c_c01308{margin-left:-6.561000px;}
._14_c01308{margin-left:-5.355000px;}
._2_c01308{margin-left:-3.771000px;}
._7_c01308{margin-left:-2.349000px;}
._f_c01308{margin-left:-1.215000px;}
._3_c01308{width:1.584000px;}
._1_c01308{width:3.564000px;}
._0_c01308{width:4.860000px;}
._5_c01308{width:6.723000px;}
._17_c01308{width:7.848000px;}
._6_c01308{width:8.910000px;}
._12_c01308{width:10.602000px;}
._b_c01308{width:12.042000px;}
._11_c01308{width:13.203000px;}
._9_c01308{width:14.886000px;}
._8_c01308{width:16.362000px;}
._a_c01308{width:17.631000px;}
._10_c01308{width:19.071000px;}
._18_c01308{width:22.473000px;}
._13_c01308{width:23.733000px;}
._1b_c01308{width:26.838000px;}
._1a_c01308{width:30.420000px;}
._e_c01308{width:33.192000px;}
._24_c01308{width:41.715000px;}
._1c_c01308{width:57.357000px;}
._d_c01308{width:60.750000px;}
._19_c01308{width:68.964000px;}
._21_c01308{width:91.491000px;}
._1d_c01308{width:180.072000px;}
._15_c01308{width:218.790000px;}
._25_c01308{width:265.470000px;}
.fc2_c01308{color:transparent;}
.fc1_c01308{color:rgb(128,128,128);}
.fc0_c01308{color:rgb(0,0,0);}
.fs4_c01308{font-size:48.000000px;}
.fs1_c01308{font-size:66.000000px;}
.fs2_c01308{font-size:72.000000px;}
.fs0_c01308{font-size:81.000000px;}
.fs3_c01308{font-size:87.000000px;}
.y0_c01308{bottom:0.000000px;}
.y25_c01308{bottom:3.105000px;}
.y24_c01308{bottom:7.228369px;}
.y23_c01308{bottom:58.770000px;}
.y22_c01308{bottom:84.720000px;}
.y21_c01308{bottom:109.620000px;}
.y20_c01308{bottom:133.020000px;}
.y1f_c01308{bottom:159.270000px;}
.y1e_c01308{bottom:182.220000px;}
.y1d_c01308{bottom:207.270000px;}
.y1c_c01308{bottom:231.870000px;}
.y1b_c01308{bottom:256.170000px;}
.y1a_c01308{bottom:280.470000px;}
.y19_c01308{bottom:305.070000px;}
.y18_c01308{bottom:329.070000px;}
.y17_c01308{bottom:353.670000px;}
.y16_c01308{bottom:377.970000px;}
.y15_c01308{bottom:402.570000px;}
.y14_c01308{bottom:426.870000px;}
.y13_c01308{bottom:450.570000px;}
.y12_c01308{bottom:474.120000px;}
.y11_c01308{bottom:498.870000px;}
.y10_c01308{bottom:523.170000px;}
.yf_c01308{bottom:547.770000px;}
.ye_c01308{bottom:571.620000px;}
.yd_c01308{bottom:595.920000px;}
.yc_c01308{bottom:619.620000px;}
.yb_c01308{bottom:644.520000px;}
.ya_c01308{bottom:668.820000px;}
.y9_c01308{bottom:692.820000px;}
.y8_c01308{bottom:717.570000px;}
.y7_c01308{bottom:741.720000px;}
.y6_c01308{bottom:765.420000px;}
.y5_c01308{bottom:790.020000px;}
.y4_c01308{bottom:814.320000px;}
.y3_c01308{bottom:838.920000px;}
.y2_c01308{bottom:863.670000px;}
.y1_c01308{bottom:888.570000px;}
.h5_c01308{height:13.200073px;}
.h6_c01308{height:43.804688px;}
.h2_c01308{height:79.497070px;}
.h3_c01308{height:84.269531px;}
.h4_c01308{height:91.176000px;}
.h1_c01308{height:986.250000px;}
.h0_c01308{height:986.550000px;}
.w1_c01308{width:104.875500px;}
.w0_c01308{width:672.000000px;}
.x0_c01308{left:0.000000px;}
.x3_c01308{left:36.900000px;}
.x4_c01308{left:38.850000px;}
.x2_c01308{left:65.100000px;}
.x1_c01308{left:67.050000px;}
.x5_c01308{left:68.250000px;}
.x6_c01308{left:91.800000px;}
.x8_c01308{left:287.814240px;}
.x7_c01308{left:353.100000px;}
@media print{
.v0_c01308{vertical-align:0.000000pt;}
.ls0_c01308{letter-spacing:0.000000pt;}
.ls1_c01308{letter-spacing:8.000000pt;}
.ws1_c01308{word-spacing:-68.165333pt;}
.ws0_c01308{word-spacing:-15.424000pt;}
.ws2_c01308{word-spacing:0.000000pt;}
._20_c01308{margin-left:-20.224000pt;}
._1f_c01308{margin-left:-17.392000pt;}
._1e_c01308{margin-left:-13.536000pt;}
._16_c01308{margin-left:-12.629333pt;}
._23_c01308{margin-left:-9.597333pt;}
._4_c01308{margin-left:-8.533333pt;}
._22_c01308{margin-left:-7.392000pt;}
._c_c01308{margin-left:-5.832000pt;}
._14_c01308{margin-left:-4.760000pt;}
._2_c01308{margin-left:-3.352000pt;}
._7_c01308{margin-left:-2.088000pt;}
._f_c01308{margin-left:-1.080000pt;}
._3_c01308{width:1.408000pt;}
._1_c01308{width:3.168000pt;}
._0_c01308{width:4.320000pt;}
._5_c01308{width:5.976000pt;}
._17_c01308{width:6.976000pt;}
._6_c01308{width:7.920000pt;}
._12_c01308{width:9.424000pt;}
._b_c01308{width:10.704000pt;}
._11_c01308{width:11.736000pt;}
._9_c01308{width:13.232000pt;}
._8_c01308{width:14.544000pt;}
._a_c01308{width:15.672000pt;}
._10_c01308{width:16.952000pt;}
._18_c01308{width:19.976000pt;}
._13_c01308{width:21.096000pt;}
._1b_c01308{width:23.856000pt;}
._1a_c01308{width:27.040000pt;}
._e_c01308{width:29.504000pt;}
._24_c01308{width:37.080000pt;}
._1c_c01308{width:50.984000pt;}
._d_c01308{width:54.000000pt;}
._19_c01308{width:61.301333pt;}
._21_c01308{width:81.325333pt;}
._1d_c01308{width:160.064000pt;}
._15_c01308{width:194.480000pt;}
._25_c01308{width:235.973333pt;}
.fs4_c01308{font-size:42.666667pt;}
.fs1_c01308{font-size:58.666667pt;}
.fs2_c01308{font-size:64.000000pt;}
.fs0_c01308{font-size:72.000000pt;}
.fs3_c01308{font-size:77.333333pt;}
.y0_c01308{bottom:0.000000pt;}
.y25_c01308{bottom:2.760000pt;}
.y24_c01308{bottom:6.425217pt;}
.y23_c01308{bottom:52.240000pt;}
.y22_c01308{bottom:75.306667pt;}
.y21_c01308{bottom:97.440000pt;}
.y20_c01308{bottom:118.240000pt;}
.y1f_c01308{bottom:141.573333pt;}
.y1e_c01308{bottom:161.973333pt;}
.y1d_c01308{bottom:184.240000pt;}
.y1c_c01308{bottom:206.106667pt;}
.y1b_c01308{bottom:227.706667pt;}
.y1a_c01308{bottom:249.306667pt;}
.y19_c01308{bottom:271.173333pt;}
.y18_c01308{bottom:292.506667pt;}
.y17_c01308{bottom:314.373333pt;}
.y16_c01308{bottom:335.973333pt;}
.y15_c01308{bottom:357.840000pt;}
.y14_c01308{bottom:379.440000pt;}
.y13_c01308{bottom:400.506667pt;}
.y12_c01308{bottom:421.440000pt;}
.y11_c01308{bottom:443.440000pt;}
.y10_c01308{bottom:465.040000pt;}
.yf_c01308{bottom:486.906667pt;}
.ye_c01308{bottom:508.106667pt;}
.yd_c01308{bottom:529.706667pt;}
.yc_c01308{bottom:550.773333pt;}
.yb_c01308{bottom:572.906667pt;}
.ya_c01308{bottom:594.506667pt;}
.y9_c01308{bottom:615.840000pt;}
.y8_c01308{bottom:637.840000pt;}
.y7_c01308{bottom:659.306667pt;}
.y6_c01308{bottom:680.373333pt;}
.y5_c01308{bottom:702.240000pt;}
.y4_c01308{bottom:723.840000pt;}
.y3_c01308{bottom:745.706667pt;}
.y2_c01308{bottom:767.706667pt;}
.y1_c01308{bottom:789.840000pt;}
.h5_c01308{height:11.733399pt;}
.h6_c01308{height:38.937500pt;}
.h2_c01308{height:70.664062pt;}
.h3_c01308{height:74.906250pt;}
.h4_c01308{height:81.045333pt;}
.h1_c01308{height:876.666667pt;}
.h0_c01308{height:876.933333pt;}
.w1_c01308{width:93.222667pt;}
.w0_c01308{width:597.333333pt;}
.x0_c01308{left:0.000000pt;}
.x3_c01308{left:32.800000pt;}
.x4_c01308{left:34.533333pt;}
.x2_c01308{left:57.866667pt;}
.x1_c01308{left:59.600000pt;}
.x5_c01308{left:60.666667pt;}
.x6_c01308{left:81.600000pt;}
.x8_c01308{left:255.834880pt;}
.x7_c01308{left:313.866667pt;}
}





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

.ir_c01309:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01309{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01309;src:url('chunks/assets/font_76bda175f69547b9c1f4e4c4.woff2')format("woff");}.ff1_c01309{font-family:ff1_c01309;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01309;src:url('chunks/assets/font_c3f30ec973db4488934216b2.woff2')format("woff");}.ff2_c01309{font-family:ff2_c01309;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01309;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff3_c01309{font-family:ff3_c01309;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01309;src:url('chunks/assets/font_fa9b8e17f4228cd4e984f805.woff2')format("woff");}.ff4_c01309{font-family:ff4_c01309;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01309;src:url('chunks/assets/font_c46da8bc869d4510666bcfdc.woff2')format("woff");}.ff5_c01309{font-family:ff5_c01309;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01309;src:url('chunks/assets/font_32087b0ef0eaaddc8de3ad21.woff2')format("woff");}.ff6_c01309{font-family:ff6_c01309;line-height:1.311035;font-style:normal;font-weight: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_c01309;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c01309{font-family:ff7_c01309;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01309{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01309{vertical-align:0.000000px;}
.ls3_c01309{letter-spacing:0.000000px;}
.ls2_c01309{letter-spacing:7.500000px;}
.ls0_c01309{letter-spacing:9.480000px;}
.ls1_c01309{letter-spacing:19.200000px;}
.sc__c01309{text-shadow:none;}
.sc0_c01309{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01309{-webkit-text-stroke:0px transparent;}
.sc0_c01309{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01309{word-spacing:-20.250000px;}
.ws0_c01309{word-spacing:-17.352000px;}
.ws2_c01309{word-spacing:0.000000px;}
._2c_c01309{margin-left:-30.276000px;}
._1b_c01309{margin-left:-26.346000px;}
._24_c01309{margin-left:-21.789000px;}
._8_c01309{margin-left:-16.929000px;}
._f_c01309{margin-left:-15.786000px;}
._2b_c01309{margin-left:-13.848000px;}
._7_c01309{margin-left:-12.717000px;}
._26_c01309{margin-left:-11.631000px;}
._14_c01309{margin-left:-10.584000px;}
._15_c01309{margin-left:-8.955000px;}
._17_c01309{margin-left:-7.839000px;}
._16_c01309{margin-left:-6.534000px;}
._18_c01309{margin-left:-5.418000px;}
._e_c01309{margin-left:-4.293000px;}
._c_c01309{margin-left:-2.754000px;}
._12_c01309{margin-left:-1.140000px;}
._4_c01309{width:1.863000px;}
._9_c01309{width:3.078000px;}
._2_c01309{width:4.212000px;}
._1_c01309{width:5.670000px;}
._0_c01309{width:7.209000px;}
._d_c01309{width:8.343000px;}
._6_c01309{width:9.396000px;}
._11_c01309{width:10.935000px;}
._3_c01309{width:12.150000px;}
._2a_c01309{width:13.203000px;}
._5_c01309{width:14.256000px;}
._13_c01309{width:15.468000px;}
._21_c01309{width:16.563000px;}
._1d_c01309{width:18.015000px;}
._19_c01309{width:19.806000px;}
._b_c01309{width:22.032000px;}
._23_c01309{width:24.381000px;}
._10_c01309{width:25.995000px;}
._22_c01309{width:27.054000px;}
._a_c01309{width:28.917000px;}
._28_c01309{width:29.940000px;}
._1a_c01309{width:31.245000px;}
._27_c01309{width:33.543000px;}
._29_c01309{width:72.009000px;}
._25_c01309{width:96.393000px;}
._1c_c01309{width:118.872000px;}
._20_c01309{width:155.007000px;}
._2d_c01309{width:157.296000px;}
._1e_c01309{width:241.299000px;}
._2e_c01309{width:272.151000px;}
._2f_c01309{width:537.438000px;}
._1f_c01309{width:545.940000px;}
.fc2_c01309{color:transparent;}
.fc1_c01309{color:rgb(128,128,128);}
.fc0_c01309{color:rgb(0,0,0);}
.fs4_c01309{font-size:48.000000px;}
.fs2_c01309{font-size:66.000000px;}
.fs1_c01309{font-size:72.000000px;}
.fs0_c01309{font-size:81.000000px;}
.fs3_c01309{font-size:87.000000px;}
.y0_c01309{bottom:0.000000px;}
.y25_c01309{bottom:3.105000px;}
.y24_c01309{bottom:7.228363px;}
.y23_c01309{bottom:41.100000px;}
.y22_c01309{bottom:67.050000px;}
.y21_c01309{bottom:92.400000px;}
.y20_c01309{bottom:117.000000px;}
.y1f_c01309{bottom:141.750000px;}
.y1e_c01309{bottom:166.350000px;}
.y1d_c01309{bottom:191.250000px;}
.y1c_c01309{bottom:216.000000px;}
.y1b_c01309{bottom:240.600000px;}
.y1a_c01309{bottom:265.950000px;}
.y19_c01309{bottom:291.300000px;}
.y18_c01309{bottom:314.250000px;}
.y17_c01309{bottom:338.550000px;}
.y16_c01309{bottom:363.450000px;}
.y15_c01309{bottom:388.050000px;}
.y14_c01309{bottom:412.350000px;}
.y13_c01309{bottom:436.950000px;}
.y12_c01309{bottom:461.250000px;}
.y11_c01309{bottom:486.000000px;}
.y10_c01309{bottom:510.000000px;}
.yf_c01309{bottom:534.300000px;}
.ye_c01309{bottom:558.600000px;}
.yd_c01309{bottom:582.750000px;}
.yc_c01309{bottom:607.200000px;}
.yb_c01309{bottom:630.450000px;}
.ya_c01309{bottom:655.650000px;}
.y9_c01309{bottom:680.400000px;}
.y8_c01309{bottom:703.350000px;}
.y7_c01309{bottom:729.000000px;}
.y6_c01309{bottom:753.600000px;}
.y5_c01309{bottom:777.900000px;}
.y4_c01309{bottom:802.200000px;}
.y3_c01309{bottom:826.500000px;}
.y2_c01309{bottom:850.800000px;}
.y1_c01309{bottom:875.100000px;}
.h7_c01309{height:13.200074px;}
.h8_c01309{height:43.804688px;}
.h2_c01309{height:79.497070px;}
.h4_c01309{height:84.269531px;}
.h6_c01309{height:87.679688px;}
.h3_c01309{height:91.160156px;}
.h5_c01309{height:91.176000px;}
.h1_c01309{height:977.250000px;}
.h0_c01309{height:977.400000px;}
.w1_c01309{width:104.875500px;}
.w0_c01309{width:661.500000px;}
.x0_c01309{left:0.000000px;}
.x2_c01309{left:18.300000px;}
.x3_c01309{left:21.600000px;}
.x4_c01309{left:22.950000px;}
.x7_c01309{left:24.300000px;}
.xc_c01309{left:31.500000px;}
.xd_c01309{left:34.800000px;}
.x6_c01309{left:65.850000px;}
.x1_c01309{left:111.300000px;}
.x5_c01309{left:114.750000px;}
.x8_c01309{left:117.150000px;}
.x9_c01309{left:118.800000px;}
.xa_c01309{left:120.150000px;}
.xb_c01309{left:121.500000px;}
.xe_c01309{left:123.150000px;}
.xf_c01309{left:125.250000px;}
.x10_c01309{left:127.350000px;}
.x11_c01309{left:128.550000px;}
.x13_c01309{left:282.564240px;}
.x12_c01309{left:327.450000px;}
@media print{
.v0_c01309{vertical-align:0.000000pt;}
.ls3_c01309{letter-spacing:0.000000pt;}
.ls2_c01309{letter-spacing:6.666667pt;}
.ls0_c01309{letter-spacing:8.426667pt;}
.ls1_c01309{letter-spacing:17.066667pt;}
.ws1_c01309{word-spacing:-18.000000pt;}
.ws0_c01309{word-spacing:-15.424000pt;}
.ws2_c01309{word-spacing:0.000000pt;}
._2c_c01309{margin-left:-26.912000pt;}
._1b_c01309{margin-left:-23.418667pt;}
._24_c01309{margin-left:-19.368000pt;}
._8_c01309{margin-left:-15.048000pt;}
._f_c01309{margin-left:-14.032000pt;}
._2b_c01309{margin-left:-12.309333pt;}
._7_c01309{margin-left:-11.304000pt;}
._26_c01309{margin-left:-10.338667pt;}
._14_c01309{margin-left:-9.408000pt;}
._15_c01309{margin-left:-7.960000pt;}
._17_c01309{margin-left:-6.968000pt;}
._16_c01309{margin-left:-5.808000pt;}
._18_c01309{margin-left:-4.816000pt;}
._e_c01309{margin-left:-3.816000pt;}
._c_c01309{margin-left:-2.448000pt;}
._12_c01309{margin-left:-1.013333pt;}
._4_c01309{width:1.656000pt;}
._9_c01309{width:2.736000pt;}
._2_c01309{width:3.744000pt;}
._1_c01309{width:5.040000pt;}
._0_c01309{width:6.408000pt;}
._d_c01309{width:7.416000pt;}
._6_c01309{width:8.352000pt;}
._11_c01309{width:9.720000pt;}
._3_c01309{width:10.800000pt;}
._2a_c01309{width:11.736000pt;}
._5_c01309{width:12.672000pt;}
._13_c01309{width:13.749333pt;}
._21_c01309{width:14.722667pt;}
._1d_c01309{width:16.013333pt;}
._19_c01309{width:17.605333pt;}
._b_c01309{width:19.584000pt;}
._23_c01309{width:21.672000pt;}
._10_c01309{width:23.106667pt;}
._22_c01309{width:24.048000pt;}
._a_c01309{width:25.704000pt;}
._28_c01309{width:26.613333pt;}
._1a_c01309{width:27.773333pt;}
._27_c01309{width:29.816000pt;}
._29_c01309{width:64.008000pt;}
._25_c01309{width:85.682667pt;}
._1c_c01309{width:105.664000pt;}
._20_c01309{width:137.784000pt;}
._2d_c01309{width:139.818667pt;}
._1e_c01309{width:214.488000pt;}
._2e_c01309{width:241.912000pt;}
._2f_c01309{width:477.722667pt;}
._1f_c01309{width:485.280000pt;}
.fs4_c01309{font-size:42.666667pt;}
.fs2_c01309{font-size:58.666667pt;}
.fs1_c01309{font-size:64.000000pt;}
.fs0_c01309{font-size:72.000000pt;}
.fs3_c01309{font-size:77.333333pt;}
.y0_c01309{bottom:0.000000pt;}
.y25_c01309{bottom:2.760000pt;}
.y24_c01309{bottom:6.425212pt;}
.y23_c01309{bottom:36.533333pt;}
.y22_c01309{bottom:59.600000pt;}
.y21_c01309{bottom:82.133333pt;}
.y20_c01309{bottom:104.000000pt;}
.y1f_c01309{bottom:126.000000pt;}
.y1e_c01309{bottom:147.866667pt;}
.y1d_c01309{bottom:170.000000pt;}
.y1c_c01309{bottom:192.000000pt;}
.y1b_c01309{bottom:213.866667pt;}
.y1a_c01309{bottom:236.400000pt;}
.y19_c01309{bottom:258.933333pt;}
.y18_c01309{bottom:279.333333pt;}
.y17_c01309{bottom:300.933333pt;}
.y16_c01309{bottom:323.066667pt;}
.y15_c01309{bottom:344.933333pt;}
.y14_c01309{bottom:366.533333pt;}
.y13_c01309{bottom:388.400000pt;}
.y12_c01309{bottom:410.000000pt;}
.y11_c01309{bottom:432.000000pt;}
.y10_c01309{bottom:453.333333pt;}
.yf_c01309{bottom:474.933333pt;}
.ye_c01309{bottom:496.533333pt;}
.yd_c01309{bottom:518.000000pt;}
.yc_c01309{bottom:539.733333pt;}
.yb_c01309{bottom:560.400000pt;}
.ya_c01309{bottom:582.800000pt;}
.y9_c01309{bottom:604.800000pt;}
.y8_c01309{bottom:625.200000pt;}
.y7_c01309{bottom:648.000000pt;}
.y6_c01309{bottom:669.866667pt;}
.y5_c01309{bottom:691.466667pt;}
.y4_c01309{bottom:713.066667pt;}
.y3_c01309{bottom:734.666667pt;}
.y2_c01309{bottom:756.266667pt;}
.y1_c01309{bottom:777.866667pt;}
.h7_c01309{height:11.733399pt;}
.h8_c01309{height:38.937500pt;}
.h2_c01309{height:70.664062pt;}
.h4_c01309{height:74.906250pt;}
.h6_c01309{height:77.937500pt;}
.h3_c01309{height:81.031250pt;}
.h5_c01309{height:81.045333pt;}
.h1_c01309{height:868.666667pt;}
.h0_c01309{height:868.800000pt;}
.w1_c01309{width:93.222667pt;}
.w0_c01309{width:588.000000pt;}
.x0_c01309{left:0.000000pt;}
.x2_c01309{left:16.266667pt;}
.x3_c01309{left:19.200000pt;}
.x4_c01309{left:20.400000pt;}
.x7_c01309{left:21.600000pt;}
.xc_c01309{left:28.000000pt;}
.xd_c01309{left:30.933333pt;}
.x6_c01309{left:58.533333pt;}
.x1_c01309{left:98.933333pt;}
.x5_c01309{left:102.000000pt;}
.x8_c01309{left:104.133333pt;}
.x9_c01309{left:105.600000pt;}
.xa_c01309{left:106.800000pt;}
.xb_c01309{left:108.000000pt;}
.xe_c01309{left:109.466667pt;}
.xf_c01309{left:111.333333pt;}
.x10_c01309{left:113.200000pt;}
.x11_c01309{left:114.266667pt;}
.x13_c01309{left:251.168213pt;}
.x12_c01309{left:291.066667pt;}
}





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

.ir_c01310:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01310{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01310;src:url('chunks/assets/font_8f2ac667d508900b93b169eb.woff2')format("woff");}.ff1_c01310{font-family:ff1_c01310;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01310;src:url('chunks/assets/font_a06ff1543da17ddcd38f85e0.woff2')format("woff");}.ff2_c01310{font-family:ff2_c01310;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01310;src:url('chunks/assets/font_7c83c3b6a923ff855beb4a33.woff2')format("woff");}.ff3_c01310{font-family:ff3_c01310;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01310;src:url('chunks/assets/font_8238319a15ce1843bfd2a94b.woff2')format("woff");}.ff4_c01310{font-family:ff4_c01310;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01310;src:url('chunks/assets/font_ec85d0c0fa8a6885ab4a9f0f.woff2')format("woff");}.ff5_c01310{font-family:ff5_c01310;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01310;src:url('chunks/assets/font_99d822ba3520ab8061fde450.woff2')format("woff");}.ff6_c01310{font-family:ff6_c01310;line-height:1.311035;font-style:normal;font-weight: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_c01310;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c01310{font-family:ff7_c01310;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01310{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01310{vertical-align:0.000000px;}
.ls2_c01310{letter-spacing:-3.000000px;}
.ls1_c01310{letter-spacing:0.000000px;}
.ls0_c01310{letter-spacing:0.900000px;}
.sc__c01310{text-shadow:none;}
.sc0_c01310{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01310{-webkit-text-stroke:0px transparent;}
.sc0_c01310{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c01310{word-spacing:-48.372000px;}
.ws1_c01310{word-spacing:-35.364000px;}
.ws2_c01310{word-spacing:-18.798000px;}
.ws0_c01310{word-spacing:-17.352000px;}
.ws4_c01310{word-spacing:0.000000px;}
._22_c01310{margin-left:-41.886000px;}
._1a_c01310{margin-left:-24.024000px;}
._16_c01310{margin-left:-18.720000px;}
._27_c01310{margin-left:-14.988000px;}
._20_c01310{margin-left:-13.896000px;}
._1b_c01310{margin-left:-11.388000px;}
._f_c01310{margin-left:-10.326000px;}
._1e_c01310{margin-left:-8.178000px;}
._15_c01310{margin-left:-6.708000px;}
._6_c01310{margin-left:-5.460000px;}
._7_c01310{margin-left:-4.446000px;}
._2_c01310{margin-left:-2.808000px;}
._4_c01310{margin-left:-1.482000px;}
._1_c01310{width:1.794000px;}
._0_c01310{width:2.886000px;}
._8_c01310{width:3.978000px;}
._3_c01310{width:4.992000px;}
._5_c01310{width:6.864000px;}
._a_c01310{width:8.112000px;}
._9_c01310{width:9.438000px;}
._b_c01310{width:10.998000px;}
._14_c01310{width:12.714000px;}
._e_c01310{width:14.352000px;}
._c_c01310{width:15.522000px;}
._d_c01310{width:18.174000px;}
._13_c01310{width:19.734000px;}
._11_c01310{width:21.372000px;}
._18_c01310{width:23.634000px;}
._24_c01310{width:25.116000px;}
._10_c01310{width:26.364000px;}
._26_c01310{width:27.894000px;}
._12_c01310{width:28.938000px;}
._25_c01310{width:35.802000px;}
._1c_c01310{width:76.986000px;}
._23_c01310{width:92.274000px;}
._1f_c01310{width:127.620000px;}
._17_c01310{width:172.068000px;}
._19_c01310{width:226.902000px;}
._1d_c01310{width:291.798000px;}
._21_c01310{width:321.624000px;}
.fc2_c01310{color:transparent;}
.fc1_c01310{color:rgb(128,128,128);}
.fc0_c01310{color:rgb(0,0,0);}
.fs4_c01310{font-size:48.000000px;}
.fs2_c01310{font-size:69.000000px;}
.fs1_c01310{font-size:72.000000px;}
.fs0_c01310{font-size:78.000000px;}
.fs3_c01310{font-size:87.000000px;}
.y0_c01310{bottom:0.000000px;}
.y25_c01310{bottom:3.105000px;}
.y24_c01310{bottom:7.228369px;}
.y23_c01310{bottom:61.470000px;}
.y22_c01310{bottom:85.620000px;}
.y21_c01310{bottom:111.270000px;}
.y20_c01310{bottom:135.720000px;}
.y1f_c01310{bottom:160.320000px;}
.y1e_c01310{bottom:184.620000px;}
.y1d_c01310{bottom:209.220000px;}
.y1c_c01310{bottom:234.270000px;}
.y1b_c01310{bottom:258.870000px;}
.y1a_c01310{bottom:282.870000px;}
.y19_c01310{bottom:308.070000px;}
.y18_c01310{bottom:332.070000px;}
.y17_c01310{bottom:356.370000px;}
.y16_c01310{bottom:380.970000px;}
.y15_c01310{bottom:405.720000px;}
.y14_c01310{bottom:429.870000px;}
.y13_c01310{bottom:454.170000px;}
.y12_c01310{bottom:477.870000px;}
.y11_c01310{bottom:502.770000px;}
.y10_c01310{bottom:527.070000px;}
.yf_c01310{bottom:550.470000px;}
.ye_c01310{bottom:575.370000px;}
.yd_c01310{bottom:598.770000px;}
.yc_c01310{bottom:623.970000px;}
.yb_c01310{bottom:647.220000px;}
.ya_c01310{bottom:671.670000px;}
.y9_c01310{bottom:696.270000px;}
.y8_c01310{bottom:721.920000px;}
.y7_c01310{bottom:744.870000px;}
.y6_c01310{bottom:769.170000px;}
.y5_c01310{bottom:793.170000px;}
.y4_c01310{bottom:817.320000px;}
.y3_c01310{bottom:841.770000px;}
.y2_c01310{bottom:865.920000px;}
.y1_c01310{bottom:889.620000px;}
.h7_c01310{height:13.200073px;}
.h8_c01310{height:43.804688px;}
.h2_c01310{height:83.226000px;}
.h3_c01310{height:84.269531px;}
.h6_c01310{height:87.679688px;}
.h5_c01310{height:91.160156px;}
.h4_c01310{height:98.756836px;}
.h1_c01310{height:986.250000px;}
.h0_c01310{height:986.550000px;}
.w1_c01310{width:104.875500px;}
.w0_c01310{width:672.000000px;}
.x0_c01310{left:0.000000px;}
.x5_c01310{left:25.050000px;}
.x4_c01310{left:26.700000px;}
.x8_c01310{left:51.900000px;}
.x7_c01310{left:53.400000px;}
.x6_c01310{left:54.600000px;}
.x1_c01310{left:56.250000px;}
.x2_c01310{left:57.450000px;}
.x3_c01310{left:58.950000px;}
.xa_c01310{left:287.814240px;}
.x9_c01310{left:527.100000px;}
@media print{
.v0_c01310{vertical-align:0.000000pt;}
.ls2_c01310{letter-spacing:-2.666667pt;}
.ls1_c01310{letter-spacing:0.000000pt;}
.ls0_c01310{letter-spacing:0.800000pt;}
.ws3_c01310{word-spacing:-42.997333pt;}
.ws1_c01310{word-spacing:-31.434667pt;}
.ws2_c01310{word-spacing:-16.709333pt;}
.ws0_c01310{word-spacing:-15.424000pt;}
.ws4_c01310{word-spacing:0.000000pt;}
._22_c01310{margin-left:-37.232000pt;}
._1a_c01310{margin-left:-21.354667pt;}
._16_c01310{margin-left:-16.640000pt;}
._27_c01310{margin-left:-13.322667pt;}
._20_c01310{margin-left:-12.352000pt;}
._1b_c01310{margin-left:-10.122667pt;}
._f_c01310{margin-left:-9.178667pt;}
._1e_c01310{margin-left:-7.269333pt;}
._15_c01310{margin-left:-5.962667pt;}
._6_c01310{margin-left:-4.853333pt;}
._7_c01310{margin-left:-3.952000pt;}
._2_c01310{margin-left:-2.496000pt;}
._4_c01310{margin-left:-1.317333pt;}
._1_c01310{width:1.594667pt;}
._0_c01310{width:2.565333pt;}
._8_c01310{width:3.536000pt;}
._3_c01310{width:4.437333pt;}
._5_c01310{width:6.101333pt;}
._a_c01310{width:7.210667pt;}
._9_c01310{width:8.389333pt;}
._b_c01310{width:9.776000pt;}
._14_c01310{width:11.301333pt;}
._e_c01310{width:12.757333pt;}
._c_c01310{width:13.797333pt;}
._d_c01310{width:16.154667pt;}
._13_c01310{width:17.541333pt;}
._11_c01310{width:18.997333pt;}
._18_c01310{width:21.008000pt;}
._24_c01310{width:22.325333pt;}
._10_c01310{width:23.434667pt;}
._26_c01310{width:24.794667pt;}
._12_c01310{width:25.722667pt;}
._25_c01310{width:31.824000pt;}
._1c_c01310{width:68.432000pt;}
._23_c01310{width:82.021333pt;}
._1f_c01310{width:113.440000pt;}
._17_c01310{width:152.949333pt;}
._19_c01310{width:201.690667pt;}
._1d_c01310{width:259.376000pt;}
._21_c01310{width:285.888000pt;}
.fs4_c01310{font-size:42.666667pt;}
.fs2_c01310{font-size:61.333333pt;}
.fs1_c01310{font-size:64.000000pt;}
.fs0_c01310{font-size:69.333333pt;}
.fs3_c01310{font-size:77.333333pt;}
.y0_c01310{bottom:0.000000pt;}
.y25_c01310{bottom:2.760000pt;}
.y24_c01310{bottom:6.425217pt;}
.y23_c01310{bottom:54.640000pt;}
.y22_c01310{bottom:76.106667pt;}
.y21_c01310{bottom:98.906667pt;}
.y20_c01310{bottom:120.640000pt;}
.y1f_c01310{bottom:142.506667pt;}
.y1e_c01310{bottom:164.106667pt;}
.y1d_c01310{bottom:185.973333pt;}
.y1c_c01310{bottom:208.240000pt;}
.y1b_c01310{bottom:230.106667pt;}
.y1a_c01310{bottom:251.440000pt;}
.y19_c01310{bottom:273.840000pt;}
.y18_c01310{bottom:295.173333pt;}
.y17_c01310{bottom:316.773333pt;}
.y16_c01310{bottom:338.640000pt;}
.y15_c01310{bottom:360.640000pt;}
.y14_c01310{bottom:382.106667pt;}
.y13_c01310{bottom:403.706667pt;}
.y12_c01310{bottom:424.773333pt;}
.y11_c01310{bottom:446.906667pt;}
.y10_c01310{bottom:468.506667pt;}
.yf_c01310{bottom:489.306667pt;}
.ye_c01310{bottom:511.440000pt;}
.yd_c01310{bottom:532.240000pt;}
.yc_c01310{bottom:554.640000pt;}
.yb_c01310{bottom:575.306667pt;}
.ya_c01310{bottom:597.040000pt;}
.y9_c01310{bottom:618.906667pt;}
.y8_c01310{bottom:641.706667pt;}
.y7_c01310{bottom:662.106667pt;}
.y6_c01310{bottom:683.706667pt;}
.y5_c01310{bottom:705.040000pt;}
.y4_c01310{bottom:726.506667pt;}
.y3_c01310{bottom:748.240000pt;}
.y2_c01310{bottom:769.706667pt;}
.y1_c01310{bottom:790.773333pt;}
.h7_c01310{height:11.733399pt;}
.h8_c01310{height:38.937500pt;}
.h2_c01310{height:73.978667pt;}
.h3_c01310{height:74.906250pt;}
.h6_c01310{height:77.937500pt;}
.h5_c01310{height:81.031250pt;}
.h4_c01310{height:87.783854pt;}
.h1_c01310{height:876.666667pt;}
.h0_c01310{height:876.933333pt;}
.w1_c01310{width:93.222667pt;}
.w0_c01310{width:597.333333pt;}
.x0_c01310{left:0.000000pt;}
.x5_c01310{left:22.266667pt;}
.x4_c01310{left:23.733333pt;}
.x8_c01310{left:46.133333pt;}
.x7_c01310{left:47.466667pt;}
.x6_c01310{left:48.533333pt;}
.x1_c01310{left:50.000000pt;}
.x2_c01310{left:51.066667pt;}
.x3_c01310{left:52.400000pt;}
.xa_c01310{left:255.834880pt;}
.x9_c01310{left:468.533333pt;}
}





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

.ir_c01311:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01311{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01311;src:url('chunks/assets/font_f911abee6df88c58d69e4cb7.woff2')format("woff");}.ff1_c01311{font-family:ff1_c01311;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01311;src:url('chunks/assets/font_4031e8faaca21ca9edbb4bbe.woff2')format("woff");}.ff2_c01311{font-family:ff2_c01311;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01311;src:url('chunks/assets/font_7ab7c6542faba6eef5ff8ff6.woff2')format("woff");}.ff3_c01311{font-family:ff3_c01311;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01311;src:url('chunks/assets/font_7687e014f79ade5440d8fe1c.woff2')format("woff");}.ff4_c01311{font-family:ff4_c01311;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01311;src:url('chunks/assets/font_76cb8ca01a841e158474b0e5.woff2')format("woff");}.ff5_c01311{font-family:ff5_c01311;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01311;src:url('chunks/assets/font_79e4a2a4355b1e493a493f4a.woff2')format("woff");}.ff6_c01311{font-family:ff6_c01311;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01311;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c01311{font-family:ff7_c01311;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01311{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01311{vertical-align:0.000000px;}
.ls2_c01311{letter-spacing:0.000000px;}
.ls0_c01311{letter-spacing:3.300000px;}
.ls1_c01311{letter-spacing:19.575000px;}
.ls3_c01311{letter-spacing:126.000000px;}
.sc__c01311{text-shadow:none;}
.sc0_c01311{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01311{-webkit-text-stroke:0px transparent;}
.sc0_c01311{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01311{word-spacing:-59.184000px;}
.ws1_c01311{word-spacing:-23.250000px;}
.ws2_c01311{word-spacing:0.000000px;}
._20_c01311{margin-left:-111.282000px;}
._19_c01311{margin-left:-17.301000px;}
._f_c01311{margin-left:-14.013000px;}
._1c_c01311{margin-left:-12.627000px;}
._18_c01311{margin-left:-8.991000px;}
._1b_c01311{margin-left:-6.885000px;}
._1_c01311{margin-left:-5.820000px;}
._d_c01311{margin-left:-4.050000px;}
._17_c01311{margin-left:-3.009000px;}
._0_c01311{margin-left:-1.953000px;}
._3_c01311{width:1.863000px;}
._2_c01311{width:2.997000px;}
._6_c01311{width:4.536000px;}
._c_c01311{width:5.589000px;}
._7_c01311{width:6.642000px;}
._5_c01311{width:7.776000px;}
._a_c01311{width:9.315000px;}
._b_c01311{width:10.530000px;}
._9_c01311{width:11.907000px;}
._8_c01311{width:13.284000px;}
._16_c01311{width:14.406000px;}
._4_c01311{width:15.714000px;}
._10_c01311{width:17.496000px;}
._11_c01311{width:18.630000px;}
._14_c01311{width:21.870000px;}
._12_c01311{width:23.166000px;}
._13_c01311{width:27.783000px;}
._15_c01311{width:30.351000px;}
._1a_c01311{width:34.851000px;}
._1d_c01311{width:77.382000px;}
._e_c01311{width:82.098000px;}
._1f_c01311{width:89.667000px;}
._1e_c01311{width:182.337000px;}
.fc2_c01311{color:transparent;}
.fc1_c01311{color:rgb(128,128,128);}
.fc0_c01311{color:rgb(0,0,0);}
.fs7_c01311{font-size:48.000000px;}
.fs2_c01311{font-size:72.000000px;}
.fs5_c01311{font-size:75.000000px;}
.fs4_c01311{font-size:78.000000px;}
.fs1_c01311{font-size:81.000000px;}
.fs3_c01311{font-size:87.000000px;}
.fs0_c01311{font-size:93.000000px;}
.fs6_c01311{font-size:102.000000px;}
.y0_c01311{bottom:0.000000px;}
.y27_c01311{bottom:3.105000px;}
.y26_c01311{bottom:7.228371px;}
.y23_c01311{bottom:55.065000px;}
.y22_c01311{bottom:75.915000px;}
.y21_c01311{bottom:101.565000px;}
.y20_c01311{bottom:126.015000px;}
.y25_c01311{bottom:135.315000px;}
.y24_c01311{bottom:140.865000px;}
.y1f_c01311{bottom:150.915000px;}
.y1e_c01311{bottom:174.615000px;}
.y1d_c01311{bottom:201.615000px;}
.y1c_c01311{bottom:224.865000px;}
.y1b_c01311{bottom:250.065000px;}
.y1a_c01311{bottom:274.515000px;}
.y19_c01311{bottom:299.415000px;}
.y18_c01311{bottom:324.015000px;}
.y17_c01311{bottom:348.615000px;}
.y16_c01311{bottom:373.365000px;}
.y15_c01311{bottom:397.965000px;}
.y14_c01311{bottom:422.865000px;}
.y13_c01311{bottom:447.165000px;}
.y12_c01311{bottom:471.915000px;}
.y11_c01311{bottom:496.815000px;}
.y10_c01311{bottom:520.815000px;}
.yf_c01311{bottom:545.115000px;}
.ye_c01311{bottom:569.715000px;}
.yd_c01311{bottom:594.015000px;}
.yc_c01311{bottom:619.065000px;}
.yb_c01311{bottom:643.065000px;}
.ya_c01311{bottom:667.665000px;}
.y9_c01311{bottom:691.965000px;}
.y8_c01311{bottom:716.265000px;}
.y7_c01311{bottom:740.865000px;}
.y6_c01311{bottom:764.865000px;}
.y5_c01311{bottom:789.165000px;}
.y4_c01311{bottom:812.715000px;}
.y3_c01311{bottom:838.365000px;}
.y2_c01311{bottom:862.665000px;}
.y1_c01311{bottom:886.665000px;}
.h8_c01311{height:13.200074px;}
.h9_c01311{height:43.804688px;}
.h3_c01311{height:79.497070px;}
.h4_c01311{height:84.269531px;}
.h5_c01311{height:91.176000px;}
.h2_c01311{height:93.726562px;}
.h6_c01311{height:98.756836px;}
.h7_c01311{height:129.143555px;}
.h1_c01311{height:986.250000px;}
.h0_c01311{height:986.325000px;}
.w2_c01311{width:104.875500px;}
.w0_c01311{width:667.425000px;}
.w1_c01311{width:667.500000px;}
.x0_c01311{left:0.000000px;}
.x6_c01311{left:18.300000px;}
.x3_c01311{left:20.850000px;}
.xa_c01311{left:59.850000px;}
.x7_c01311{left:69.900000px;}
.x8_c01311{left:116.100000px;}
.x2_c01311{left:117.450000px;}
.x1_c01311{left:118.800000px;}
.x4_c01311{left:121.050000px;}
.x5_c01311{left:141.750000px;}
.xb_c01311{left:285.526749px;}
.x9_c01311{left:576.900000px;}
@media print{
.v0_c01311{vertical-align:0.000000pt;}
.ls2_c01311{letter-spacing:0.000000pt;}
.ls0_c01311{letter-spacing:2.933333pt;}
.ls1_c01311{letter-spacing:17.400000pt;}
.ls3_c01311{letter-spacing:112.000000pt;}
.ws0_c01311{word-spacing:-52.608000pt;}
.ws1_c01311{word-spacing:-20.666667pt;}
.ws2_c01311{word-spacing:0.000000pt;}
._20_c01311{margin-left:-98.917333pt;}
._19_c01311{margin-left:-15.378667pt;}
._f_c01311{margin-left:-12.456000pt;}
._1c_c01311{margin-left:-11.224000pt;}
._18_c01311{margin-left:-7.992000pt;}
._1b_c01311{margin-left:-6.120000pt;}
._1_c01311{margin-left:-5.173333pt;}
._d_c01311{margin-left:-3.600000pt;}
._17_c01311{margin-left:-2.674667pt;}
._0_c01311{margin-left:-1.736000pt;}
._3_c01311{width:1.656000pt;}
._2_c01311{width:2.664000pt;}
._6_c01311{width:4.032000pt;}
._c_c01311{width:4.968000pt;}
._7_c01311{width:5.904000pt;}
._5_c01311{width:6.912000pt;}
._a_c01311{width:8.280000pt;}
._b_c01311{width:9.360000pt;}
._9_c01311{width:10.584000pt;}
._8_c01311{width:11.808000pt;}
._16_c01311{width:12.805333pt;}
._4_c01311{width:13.968000pt;}
._10_c01311{width:15.552000pt;}
._11_c01311{width:16.560000pt;}
._14_c01311{width:19.440000pt;}
._12_c01311{width:20.592000pt;}
._13_c01311{width:24.696000pt;}
._15_c01311{width:26.978667pt;}
._1a_c01311{width:30.978667pt;}
._1d_c01311{width:68.784000pt;}
._e_c01311{width:72.976000pt;}
._1f_c01311{width:79.704000pt;}
._1e_c01311{width:162.077333pt;}
.fs7_c01311{font-size:42.666667pt;}
.fs2_c01311{font-size:64.000000pt;}
.fs5_c01311{font-size:66.666667pt;}
.fs4_c01311{font-size:69.333333pt;}
.fs1_c01311{font-size:72.000000pt;}
.fs3_c01311{font-size:77.333333pt;}
.fs0_c01311{font-size:82.666667pt;}
.fs6_c01311{font-size:90.666667pt;}
.y0_c01311{bottom:0.000000pt;}
.y27_c01311{bottom:2.760000pt;}
.y26_c01311{bottom:6.425219pt;}
.y23_c01311{bottom:48.946667pt;}
.y22_c01311{bottom:67.480000pt;}
.y21_c01311{bottom:90.280000pt;}
.y20_c01311{bottom:112.013333pt;}
.y25_c01311{bottom:120.280000pt;}
.y24_c01311{bottom:125.213333pt;}
.y1f_c01311{bottom:134.146667pt;}
.y1e_c01311{bottom:155.213333pt;}
.y1d_c01311{bottom:179.213333pt;}
.y1c_c01311{bottom:199.880000pt;}
.y1b_c01311{bottom:222.280000pt;}
.y1a_c01311{bottom:244.013333pt;}
.y19_c01311{bottom:266.146667pt;}
.y18_c01311{bottom:288.013333pt;}
.y17_c01311{bottom:309.880000pt;}
.y16_c01311{bottom:331.880000pt;}
.y15_c01311{bottom:353.746667pt;}
.y14_c01311{bottom:375.880000pt;}
.y13_c01311{bottom:397.480000pt;}
.y12_c01311{bottom:419.480000pt;}
.y11_c01311{bottom:441.613333pt;}
.y10_c01311{bottom:462.946667pt;}
.yf_c01311{bottom:484.546667pt;}
.ye_c01311{bottom:506.413333pt;}
.yd_c01311{bottom:528.013333pt;}
.yc_c01311{bottom:550.280000pt;}
.yb_c01311{bottom:571.613333pt;}
.ya_c01311{bottom:593.480000pt;}
.y9_c01311{bottom:615.080000pt;}
.y8_c01311{bottom:636.680000pt;}
.y7_c01311{bottom:658.546667pt;}
.y6_c01311{bottom:679.880000pt;}
.y5_c01311{bottom:701.480000pt;}
.y4_c01311{bottom:722.413333pt;}
.y3_c01311{bottom:745.213333pt;}
.y2_c01311{bottom:766.813333pt;}
.y1_c01311{bottom:788.146667pt;}
.h8_c01311{height:11.733399pt;}
.h9_c01311{height:38.937500pt;}
.h3_c01311{height:70.664062pt;}
.h4_c01311{height:74.906250pt;}
.h5_c01311{height:81.045333pt;}
.h2_c01311{height:83.312500pt;}
.h6_c01311{height:87.783854pt;}
.h7_c01311{height:114.794271pt;}
.h1_c01311{height:876.666667pt;}
.h0_c01311{height:876.733333pt;}
.w2_c01311{width:93.222667pt;}
.w0_c01311{width:593.266667pt;}
.w1_c01311{width:593.333333pt;}
.x0_c01311{left:0.000000pt;}
.x6_c01311{left:16.266667pt;}
.x3_c01311{left:18.533333pt;}
.xa_c01311{left:53.200000pt;}
.x7_c01311{left:62.133333pt;}
.x8_c01311{left:103.200000pt;}
.x2_c01311{left:104.400000pt;}
.x1_c01311{left:105.600000pt;}
.x4_c01311{left:107.600000pt;}
.x5_c01311{left:126.000000pt;}
.xb_c01311{left:253.801554pt;}
.x9_c01311{left:512.800000pt;}
}





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

.ir_c01312:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01312{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01312;src:url('chunks/assets/font_725a1c0209404c381da2ac45.woff2')format("woff");}.ff1_c01312{font-family:ff1_c01312;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01312;src:url('chunks/assets/font_c95e39ede3b78be3715cf7ca.woff2')format("woff");}.ff2_c01312{font-family:ff2_c01312;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01312;src:url('chunks/assets/font_1a2c3335d786ebd9517d7287.woff2')format("woff");}.ff3_c01312{font-family:ff3_c01312;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01312;src:url('chunks/assets/font_384ef82365a1e2ee87bc0530.woff2')format("woff");}.ff4_c01312{font-family:ff4_c01312;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01312;src:url('chunks/assets/font_ad529ca4bdc97bef53816cc4.woff2')format("woff");}.ff5_c01312{font-family:ff5_c01312;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01312;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c01312{font-family:ff6_c01312;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01312{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01312{vertical-align:0.000000px;}
.ls0_c01312{letter-spacing:0.000000px;}
.ls1_c01312{letter-spacing:6.000000px;}
.sc__c01312{text-shadow:none;}
.sc0_c01312{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01312{-webkit-text-stroke:0px transparent;}
.sc0_c01312{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01312{word-spacing:-17.352000px;}
.ws0_c01312{word-spacing:-16.926000px;}
.ws3_c01312{word-spacing:0.000000px;}
.ws2_c01312{word-spacing:2.262000px;}
._7_c01312{margin-left:-21.912000px;}
._17_c01312{margin-left:-15.288000px;}
._23_c01312{margin-left:-11.580000px;}
._22_c01312{margin-left:-10.035000px;}
._18_c01312{margin-left:-8.709000px;}
._4_c01312{margin-left:-6.534000px;}
._3_c01312{margin-left:-5.148000px;}
._0_c01312{margin-left:-3.861000px;}
._1_c01312{margin-left:-2.277000px;}
._2_c01312{margin-left:-1.188000px;}
._d_c01312{width:1.599000px;}
._9_c01312{width:2.964000px;}
._8_c01312{width:4.446000px;}
._c_c01312{width:5.616000px;}
._b_c01312{width:6.630000px;}
._a_c01312{width:7.800000px;}
._11_c01312{width:9.750000px;}
._e_c01312{width:10.881000px;}
._15_c01312{width:11.886000px;}
._f_c01312{width:13.665000px;}
._13_c01312{width:14.769000px;}
._5_c01312{width:16.038000px;}
._10_c01312{width:18.807000px;}
._24_c01312{width:20.088000px;}
._14_c01312{width:22.215000px;}
._19_c01312{width:23.322000px;}
._12_c01312{width:24.975000px;}
._16_c01312{width:26.328000px;}
._1c_c01312{width:28.782000px;}
._21_c01312{width:30.105000px;}
._26_c01312{width:31.392000px;}
._1b_c01312{width:35.871000px;}
._1d_c01312{width:37.659000px;}
._6_c01312{width:60.378000px;}
._28_c01312{width:61.593000px;}
._20_c01312{width:113.085000px;}
._27_c01312{width:202.476000px;}
._1f_c01312{width:238.602000px;}
._25_c01312{width:332.349000px;}
._1e_c01312{width:339.924000px;}
._1a_c01312{width:555.204000px;}
.fc2_c01312{color:transparent;}
.fc1_c01312{color:rgb(128,128,128);}
.fc0_c01312{color:rgb(0,0,0);}
.fs5_c01312{font-size:48.000000px;}
.fs4_c01312{font-size:72.000000px;}
.fs2_c01312{font-size:78.000000px;}
.fs3_c01312{font-size:84.000000px;}
.fs0_c01312{font-size:99.000000px;}
.fs1_c01312{font-size:132.000000px;}
.y0_c01312{bottom:0.000000px;}
.y24_c01312{bottom:3.105000px;}
.y23_c01312{bottom:7.228369px;}
.y22_c01312{bottom:54.270000px;}
.y21_c01312{bottom:77.520000px;}
.y20_c01312{bottom:102.570000px;}
.y1f_c01312{bottom:128.220000px;}
.y1e_c01312{bottom:151.770000px;}
.y1d_c01312{bottom:175.770000px;}
.y1c_c01312{bottom:200.520000px;}
.y1b_c01312{bottom:224.820000px;}
.y1a_c01312{bottom:249.720000px;}
.y19_c01312{bottom:275.070000px;}
.y18_c01312{bottom:298.320000px;}
.y17_c01312{bottom:322.620000px;}
.y16_c01312{bottom:348.870000px;}
.y15_c01312{bottom:371.220000px;}
.y14_c01312{bottom:396.870000px;}
.y13_c01312{bottom:421.770000px;}
.y12_c01312{bottom:445.170000px;}
.y11_c01312{bottom:469.470000px;}
.y10_c01312{bottom:494.070000px;}
.yf_c01312{bottom:518.070000px;}
.ye_c01312{bottom:561.870000px;}
.yd_c01312{bottom:592.020000px;}
.yc_c01312{bottom:618.870000px;}
.yb_c01312{bottom:662.820000px;}
.ya_c01312{bottom:690.870000px;}
.y9_c01312{bottom:716.070000px;}
.y8_c01312{bottom:738.420000px;}
.y7_c01312{bottom:762.420000px;}
.y6_c01312{bottom:786.270000px;}
.y5_c01312{bottom:810.570000px;}
.y4_c01312{bottom:835.620000px;}
.y3_c01312{bottom:858.570000px;}
.y2_c01312{bottom:882.570000px;}
.y1_c01312{bottom:918.570000px;}
.h6_c01312{height:13.200073px;}
.h7_c01312{height:43.804688px;}
.h3_c01312{height:83.226000px;}
.h5_c01312{height:84.269531px;}
.h4_c01312{height:91.160156px;}
.h2_c01312{height:167.126953px;}
.h1_c01312{height:986.250000px;}
.h0_c01312{height:986.550000px;}
.w1_c01312{width:104.875500px;}
.w0_c01312{width:672.000000px;}
.x0_c01312{left:0.000000px;}
.xc_c01312{left:63.150000px;}
.xb_c01312{left:64.500000px;}
.xa_c01312{left:65.850000px;}
.x5_c01312{left:67.500000px;}
.x4_c01312{left:68.550000px;}
.x3_c01312{left:69.900000px;}
.x2_c01312{left:71.550000px;}
.x6_c01312{left:96.450000px;}
.x1_c01312{left:192.600000px;}
.x7_c01312{left:200.400000px;}
.x9_c01312{left:202.200000px;}
.x8_c01312{left:203.850000px;}
.xe_c01312{left:287.814240px;}
.xd_c01312{left:528.150000px;}
@media print{
.v0_c01312{vertical-align:0.000000pt;}
.ls0_c01312{letter-spacing:0.000000pt;}
.ls1_c01312{letter-spacing:5.333333pt;}
.ws1_c01312{word-spacing:-15.424000pt;}
.ws0_c01312{word-spacing:-15.045333pt;}
.ws3_c01312{word-spacing:0.000000pt;}
.ws2_c01312{word-spacing:2.010667pt;}
._7_c01312{margin-left:-19.477333pt;}
._17_c01312{margin-left:-13.589333pt;}
._23_c01312{margin-left:-10.293333pt;}
._22_c01312{margin-left:-8.920000pt;}
._18_c01312{margin-left:-7.741333pt;}
._4_c01312{margin-left:-5.808000pt;}
._3_c01312{margin-left:-4.576000pt;}
._0_c01312{margin-left:-3.432000pt;}
._1_c01312{margin-left:-2.024000pt;}
._2_c01312{margin-left:-1.056000pt;}
._d_c01312{width:1.421333pt;}
._9_c01312{width:2.634667pt;}
._8_c01312{width:3.952000pt;}
._c_c01312{width:4.992000pt;}
._b_c01312{width:5.893333pt;}
._a_c01312{width:6.933333pt;}
._11_c01312{width:8.666667pt;}
._e_c01312{width:9.672000pt;}
._15_c01312{width:10.565333pt;}
._f_c01312{width:12.146667pt;}
._13_c01312{width:13.128000pt;}
._5_c01312{width:14.256000pt;}
._10_c01312{width:16.717333pt;}
._24_c01312{width:17.856000pt;}
._14_c01312{width:19.746667pt;}
._19_c01312{width:20.730667pt;}
._12_c01312{width:22.200000pt;}
._16_c01312{width:23.402667pt;}
._1c_c01312{width:25.584000pt;}
._21_c01312{width:26.760000pt;}
._26_c01312{width:27.904000pt;}
._1b_c01312{width:31.885333pt;}
._1d_c01312{width:33.474667pt;}
._6_c01312{width:53.669333pt;}
._28_c01312{width:54.749333pt;}
._20_c01312{width:100.520000pt;}
._27_c01312{width:179.978667pt;}
._1f_c01312{width:212.090667pt;}
._25_c01312{width:295.421333pt;}
._1e_c01312{width:302.154667pt;}
._1a_c01312{width:493.514667pt;}
.fs5_c01312{font-size:42.666667pt;}
.fs4_c01312{font-size:64.000000pt;}
.fs2_c01312{font-size:69.333333pt;}
.fs3_c01312{font-size:74.666667pt;}
.fs0_c01312{font-size:88.000000pt;}
.fs1_c01312{font-size:117.333333pt;}
.y0_c01312{bottom:0.000000pt;}
.y24_c01312{bottom:2.760000pt;}
.y23_c01312{bottom:6.425217pt;}
.y22_c01312{bottom:48.240000pt;}
.y21_c01312{bottom:68.906667pt;}
.y20_c01312{bottom:91.173333pt;}
.y1f_c01312{bottom:113.973333pt;}
.y1e_c01312{bottom:134.906667pt;}
.y1d_c01312{bottom:156.240000pt;}
.y1c_c01312{bottom:178.240000pt;}
.y1b_c01312{bottom:199.840000pt;}
.y1a_c01312{bottom:221.973333pt;}
.y19_c01312{bottom:244.506667pt;}
.y18_c01312{bottom:265.173333pt;}
.y17_c01312{bottom:286.773333pt;}
.y16_c01312{bottom:310.106667pt;}
.y15_c01312{bottom:329.973333pt;}
.y14_c01312{bottom:352.773333pt;}
.y13_c01312{bottom:374.906667pt;}
.y12_c01312{bottom:395.706667pt;}
.y11_c01312{bottom:417.306667pt;}
.y10_c01312{bottom:439.173333pt;}
.yf_c01312{bottom:460.506667pt;}
.ye_c01312{bottom:499.440000pt;}
.yd_c01312{bottom:526.240000pt;}
.yc_c01312{bottom:550.106667pt;}
.yb_c01312{bottom:589.173333pt;}
.ya_c01312{bottom:614.106667pt;}
.y9_c01312{bottom:636.506667pt;}
.y8_c01312{bottom:656.373333pt;}
.y7_c01312{bottom:677.706667pt;}
.y6_c01312{bottom:698.906667pt;}
.y5_c01312{bottom:720.506667pt;}
.y4_c01312{bottom:742.773333pt;}
.y3_c01312{bottom:763.173333pt;}
.y2_c01312{bottom:784.506667pt;}
.y1_c01312{bottom:816.506667pt;}
.h6_c01312{height:11.733399pt;}
.h7_c01312{height:38.937500pt;}
.h3_c01312{height:73.978667pt;}
.h5_c01312{height:74.906250pt;}
.h4_c01312{height:81.031250pt;}
.h2_c01312{height:148.557292pt;}
.h1_c01312{height:876.666667pt;}
.h0_c01312{height:876.933333pt;}
.w1_c01312{width:93.222667pt;}
.w0_c01312{width:597.333333pt;}
.x0_c01312{left:0.000000pt;}
.xc_c01312{left:56.133333pt;}
.xb_c01312{left:57.333333pt;}
.xa_c01312{left:58.533333pt;}
.x5_c01312{left:60.000000pt;}
.x4_c01312{left:60.933333pt;}
.x3_c01312{left:62.133333pt;}
.x2_c01312{left:63.600000pt;}
.x6_c01312{left:85.733333pt;}
.x1_c01312{left:171.200000pt;}
.x7_c01312{left:178.133333pt;}
.x9_c01312{left:179.733333pt;}
.x8_c01312{left:181.200000pt;}
.xe_c01312{left:255.834880pt;}
.xd_c01312{left:469.466667pt;}
}





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

.ir_c01313:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01313{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01313;src:url('chunks/assets/font_de5eb5c67c941c9ebcfa9ae0.woff2')format("woff");}.ff1_c01313{font-family:ff1_c01313;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01313;src:url('chunks/assets/font_5b990407d1763061fe18cb32.woff2')format("woff");}.ff2_c01313{font-family:ff2_c01313;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01313;src:url('chunks/assets/font_120aeb943cf73d17d0a334bf.woff2')format("woff");}.ff3_c01313{font-family:ff3_c01313;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01313;src:url('chunks/assets/font_254e0700327d245b1c2c79cf.woff2')format("woff");}.ff4_c01313{font-family:ff4_c01313;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01313;src:url('chunks/assets/font_185f07ca8e832fb1ffbe876f.woff2')format("woff");}.ff5_c01313{font-family:ff5_c01313;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01313;src:url('chunks/assets/font_05f1ba41e3632fd043231f7e.woff2')format("woff");}.ff6_c01313{font-family:ff6_c01313;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01313;src:url('chunks/assets/font_0a34eb0c39abcb15aa7d4c2e.woff2')format("woff");}.ff7_c01313{font-family:ff7_c01313;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c01313;src:url('chunks/assets/font_2dcbd03a9070519c39666bb2.woff2')format("woff");}.ff8_c01313{font-family:ff8_c01313;line-height:1.437000;font-style:normal;font-weight: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_c01313;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff9_c01313{font-family:ff9_c01313;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c01313;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ffa_c01313{font-family:ffa_c01313;line-height:1.219238;font-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_c01313{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m0_c01313{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01313{vertical-align:-75.000000px;}
.v0_c01313{vertical-align:0.000000px;}
.ls5_c01313{letter-spacing:0.000000px;}
.ls1_c01313{letter-spacing:4.704000px;}
.ls6_c01313{letter-spacing:9.000000px;}
.ls0_c01313{letter-spacing:12.000000px;}
.ls4_c01313{letter-spacing:24.600000px;}
.ls2_c01313{letter-spacing:31.509000px;}
.ls3_c01313{letter-spacing:46.002000px;}
.sc__c01313{text-shadow:none;}
.sc0_c01313{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01313{-webkit-text-stroke:0px transparent;}
.sc0_c01313{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01313{word-spacing:-76.686000px;}
.ws1_c01313{word-spacing:-20.250000px;}
.ws3_c01313{word-spacing:-17.352000px;}
.ws0_c01313{word-spacing:-16.926000px;}
.ws5_c01313{word-spacing:0.000000px;}
.ws4_c01313{word-spacing:2.394000px;}
._8_c01313{margin-left:-23.325000px;}
._1a_c01313{margin-left:-16.647000px;}
._22_c01313{margin-left:-15.465000px;}
._9_c01313{margin-left:-13.800000px;}
._1b_c01313{margin-left:-9.477000px;}
._1d_c01313{margin-left:-8.433000px;}
._1c_c01313{margin-left:-6.813000px;}
._19_c01313{margin-left:-5.796000px;}
._17_c01313{margin-left:-4.668000px;}
._1_c01313{margin-left:-3.354000px;}
._18_c01313{margin-left:-2.280000px;}
._15_c01313{margin-left:-1.263000px;}
._16_c01313{width:1.305000px;}
._d_c01313{width:2.325000px;}
._14_c01313{width:3.588000px;}
._0_c01313{width:5.304000px;}
._11_c01313{width:6.621000px;}
._12_c01313{width:7.875000px;}
._f_c01313{width:8.925000px;}
._e_c01313{width:10.800000px;}
._c_c01313{width:12.600000px;}
._b_c01313{width:13.650000px;}
._10_c01313{width:15.525000px;}
._6_c01313{width:16.725000px;}
._24_c01313{width:18.636000px;}
._a_c01313{width:19.725000px;}
._1e_c01313{width:23.880000px;}
._5_c01313{width:25.575000px;}
._2_c01313{width:27.924000px;}
._7_c01313{width:32.175000px;}
._4_c01313{width:42.786000px;}
._13_c01313{width:137.604000px;}
._3_c01313{width:147.888000px;}
._21_c01313{width:149.586000px;}
._1f_c01313{width:178.347000px;}
._20_c01313{width:205.263000px;}
._23_c01313{width:345.594000px;}
.fc2_c01313{color:transparent;}
.fc1_c01313{color:rgb(128,128,128);}
.fc0_c01313{color:rgb(0,0,0);}
.fs7_c01313{font-size:48.000000px;}
.fs6_c01313{font-size:57.000000px;}
.fs2_c01313{font-size:66.000000px;}
.fs5_c01313{font-size:72.000000px;}
.fs1_c01313{font-size:75.000000px;}
.fs0_c01313{font-size:78.000000px;}
.fs3_c01313{font-size:81.000000px;}
.fs4_c01313{font-size:87.000000px;}
.y0_c01313{bottom:0.000000px;}
.y25_c01313{bottom:3.105000px;}
.y24_c01313{bottom:7.228371px;}
.y23_c01313{bottom:68.265000px;}
.y22_c01313{bottom:94.515000px;}
.y21_c01313{bottom:119.565000px;}
.y20_c01313{bottom:143.865000px;}
.y1f_c01313{bottom:168.765000px;}
.y1e_c01313{bottom:194.115000px;}
.y1d_c01313{bottom:219.015000px;}
.y1c_c01313{bottom:242.715000px;}
.y1b_c01313{bottom:267.765000px;}
.y1a_c01313{bottom:291.315000px;}
.y19_c01313{bottom:316.215000px;}
.y18_c01313{bottom:340.965000px;}
.y17_c01313{bottom:364.515000px;}
.y16_c01313{bottom:389.265000px;}
.y15_c01313{bottom:414.465000px;}
.y14_c01313{bottom:439.065000px;}
.y13_c01313{bottom:463.365000px;}
.y12_c01313{bottom:487.665000px;}
.y11_c01313{bottom:511.965000px;}
.y10_c01313{bottom:536.715000px;}
.yf_c01313{bottom:560.715000px;}
.ye_c01313{bottom:585.315000px;}
.yd_c01313{bottom:609.615000px;}
.yc_c01313{bottom:633.915000px;}
.yb_c01313{bottom:658.515000px;}
.ya_c01313{bottom:683.115000px;}
.y9_c01313{bottom:707.415000px;}
.y8_c01313{bottom:732.165000px;}
.y7_c01313{bottom:755.115000px;}
.y6_c01313{bottom:778.965000px;}
.y5_c01313{bottom:804.015000px;}
.y4_c01313{bottom:828.315000px;}
.y3_c01313{bottom:852.315000px;}
.y2_c01313{bottom:876.615000px;}
.y1_c01313{bottom:911.565000px;}
.h9_c01313{height:13.200074px;}
.ha_c01313{height:43.804688px;}
.h3_c01313{height:79.497070px;}
.h4_c01313{height:83.226000px;}
.h6_c01313{height:84.269531px;}
.h8_c01313{height:87.679688px;}
.h2_c01313{height:87.780762px;}
.h5_c01313{height:91.176000px;}
.h7_c01313{height:98.756836px;}
.h1_c01313{height:986.250000px;}
.h0_c01313{height:986.325000px;}
.w2_c01313{width:104.875500px;}
.w0_c01313{width:667.425000px;}
.w1_c01313{width:667.500000px;}
.x0_c01313{left:0.000000px;}
.xa_c01313{left:23.550000px;}
.x7_c01313{left:25.350000px;}
.x9_c01313{left:26.550000px;}
.x4_c01313{left:116.850000px;}
.x5_c01313{left:119.550000px;}
.x3_c01313{left:120.600000px;}
.x2_c01313{left:122.250000px;}
.x1_c01313{left:123.900000px;}
.x8_c01313{left:143.100000px;}
.x6_c01313{left:147.600000px;}
.xd_c01313{left:225.750000px;}
.xe_c01313{left:243.600000px;}
.xf_c01313{left:285.526749px;}
.xb_c01313{left:564.000000px;}
.xc_c01313{left:573.750000px;}
@media print{
.v1_c01313{vertical-align:-66.666667pt;}
.v0_c01313{vertical-align:0.000000pt;}
.ls5_c01313{letter-spacing:0.000000pt;}
.ls1_c01313{letter-spacing:4.181333pt;}
.ls6_c01313{letter-spacing:8.000000pt;}
.ls0_c01313{letter-spacing:10.666667pt;}
.ls4_c01313{letter-spacing:21.866667pt;}
.ls2_c01313{letter-spacing:28.008000pt;}
.ls3_c01313{letter-spacing:40.890667pt;}
.ws2_c01313{word-spacing:-68.165333pt;}
.ws1_c01313{word-spacing:-18.000000pt;}
.ws3_c01313{word-spacing:-15.424000pt;}
.ws0_c01313{word-spacing:-15.045333pt;}
.ws5_c01313{word-spacing:0.000000pt;}
.ws4_c01313{word-spacing:2.128000pt;}
._8_c01313{margin-left:-20.733333pt;}
._1a_c01313{margin-left:-14.797333pt;}
._22_c01313{margin-left:-13.746667pt;}
._9_c01313{margin-left:-12.266667pt;}
._1b_c01313{margin-left:-8.424000pt;}
._1d_c01313{margin-left:-7.496000pt;}
._1c_c01313{margin-left:-6.056000pt;}
._19_c01313{margin-left:-5.152000pt;}
._17_c01313{margin-left:-4.149333pt;}
._1_c01313{margin-left:-2.981333pt;}
._18_c01313{margin-left:-2.026667pt;}
._15_c01313{margin-left:-1.122667pt;}
._16_c01313{width:1.160000pt;}
._d_c01313{width:2.066667pt;}
._14_c01313{width:3.189333pt;}
._0_c01313{width:4.714667pt;}
._11_c01313{width:5.885333pt;}
._12_c01313{width:7.000000pt;}
._f_c01313{width:7.933333pt;}
._e_c01313{width:9.600000pt;}
._c_c01313{width:11.200000pt;}
._b_c01313{width:12.133333pt;}
._10_c01313{width:13.800000pt;}
._6_c01313{width:14.866667pt;}
._24_c01313{width:16.565333pt;}
._a_c01313{width:17.533333pt;}
._1e_c01313{width:21.226667pt;}
._5_c01313{width:22.733333pt;}
._2_c01313{width:24.821333pt;}
._7_c01313{width:28.600000pt;}
._4_c01313{width:38.032000pt;}
._13_c01313{width:122.314667pt;}
._3_c01313{width:131.456000pt;}
._21_c01313{width:132.965333pt;}
._1f_c01313{width:158.530667pt;}
._20_c01313{width:182.456000pt;}
._23_c01313{width:307.194667pt;}
.fs7_c01313{font-size:42.666667pt;}
.fs6_c01313{font-size:50.666667pt;}
.fs2_c01313{font-size:58.666667pt;}
.fs5_c01313{font-size:64.000000pt;}
.fs1_c01313{font-size:66.666667pt;}
.fs0_c01313{font-size:69.333333pt;}
.fs3_c01313{font-size:72.000000pt;}
.fs4_c01313{font-size:77.333333pt;}
.y0_c01313{bottom:0.000000pt;}
.y25_c01313{bottom:2.760000pt;}
.y24_c01313{bottom:6.425219pt;}
.y23_c01313{bottom:60.680000pt;}
.y22_c01313{bottom:84.013333pt;}
.y21_c01313{bottom:106.280000pt;}
.y20_c01313{bottom:127.880000pt;}
.y1f_c01313{bottom:150.013333pt;}
.y1e_c01313{bottom:172.546667pt;}
.y1d_c01313{bottom:194.680000pt;}
.y1c_c01313{bottom:215.746667pt;}
.y1b_c01313{bottom:238.013333pt;}
.y1a_c01313{bottom:258.946667pt;}
.y19_c01313{bottom:281.080000pt;}
.y18_c01313{bottom:303.080000pt;}
.y17_c01313{bottom:324.013333pt;}
.y16_c01313{bottom:346.013333pt;}
.y15_c01313{bottom:368.413333pt;}
.y14_c01313{bottom:390.280000pt;}
.y13_c01313{bottom:411.880000pt;}
.y12_c01313{bottom:433.480000pt;}
.y11_c01313{bottom:455.080000pt;}
.y10_c01313{bottom:477.080000pt;}
.yf_c01313{bottom:498.413333pt;}
.ye_c01313{bottom:520.280000pt;}
.yd_c01313{bottom:541.880000pt;}
.yc_c01313{bottom:563.480000pt;}
.yb_c01313{bottom:585.346667pt;}
.ya_c01313{bottom:607.213333pt;}
.y9_c01313{bottom:628.813333pt;}
.y8_c01313{bottom:650.813333pt;}
.y7_c01313{bottom:671.213333pt;}
.y6_c01313{bottom:692.413333pt;}
.y5_c01313{bottom:714.680000pt;}
.y4_c01313{bottom:736.280000pt;}
.y3_c01313{bottom:757.613333pt;}
.y2_c01313{bottom:779.213333pt;}
.y1_c01313{bottom:810.280000pt;}
.h9_c01313{height:11.733399pt;}
.ha_c01313{height:38.937500pt;}
.h3_c01313{height:70.664062pt;}
.h4_c01313{height:73.978667pt;}
.h6_c01313{height:74.906250pt;}
.h8_c01313{height:77.937500pt;}
.h2_c01313{height:78.027344pt;}
.h5_c01313{height:81.045333pt;}
.h7_c01313{height:87.783854pt;}
.h1_c01313{height:876.666667pt;}
.h0_c01313{height:876.733333pt;}
.w2_c01313{width:93.222667pt;}
.w0_c01313{width:593.266667pt;}
.w1_c01313{width:593.333333pt;}
.x0_c01313{left:0.000000pt;}
.xa_c01313{left:20.933333pt;}
.x7_c01313{left:22.533333pt;}
.x9_c01313{left:23.600000pt;}
.x4_c01313{left:103.866667pt;}
.x5_c01313{left:106.266667pt;}
.x3_c01313{left:107.200000pt;}
.x2_c01313{left:108.666667pt;}
.x1_c01313{left:110.133333pt;}
.x8_c01313{left:127.200000pt;}
.x6_c01313{left:131.200000pt;}
.xd_c01313{left:200.666667pt;}
.xe_c01313{left:216.533333pt;}
.xf_c01313{left:253.801554pt;}
.xb_c01313{left:501.333333pt;}
.xc_c01313{left:510.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_c01314 {
    display:none;
  }
  .loading-indicator_c01314.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01314 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01314 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01314" -> "#page-container .classname_c01314")
 */
.pf_c01314 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01314 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01314.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01314 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01314 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01314 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01314 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01314 {overflow:visible;}
  }
}
.c_c01314 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01314 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01314:after { /* webkit #35443 */
  content: '';
}
.t_c01314:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01314 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01314 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01314 { /* info for Javascript */
  display:none;
}
.l_c01314 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01314 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01314 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01314:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01314{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01314;src:url('chunks/assets/font_40266aba05f31d63abf66abd.woff2')format("woff");}.ff1_c01314{font-family:ff1_c01314;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01314;src:url('chunks/assets/font_d45898248fe77621a899e46c.woff2')format("woff");}.ff2_c01314{font-family:ff2_c01314;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01314;src:url('chunks/assets/font_ea42128a3dfc8418a9650240.woff2')format("woff");}.ff3_c01314{font-family:ff3_c01314;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01314;src:url('chunks/assets/font_ba146c1e3e37a01f02be2732.woff2')format("woff");}.ff4_c01314{font-family:ff4_c01314;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01314;src:url('chunks/assets/font_6c72c857d8aa2939d88dc006.woff2')format("woff");}.ff5_c01314{font-family:ff5_c01314;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01314;src:url('chunks/assets/font_bb4e5b0360bb46cb1911692d.woff2')format("woff");}.ff6_c01314{font-family:ff6_c01314;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01314;src:url('chunks/assets/font_4cbe40015113077b9cb6ba85.woff2')format("woff");}.ff7_c01314{font-family:ff7_c01314;line-height:1.437000;font-style:normal;font-weight: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_c01314;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff8_c01314{font-family:ff8_c01314;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01314{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01314{vertical-align:0.000000px;}
.v1_c01314{vertical-align:3.000000px;}
.ls6_c01314{letter-spacing:-6.000000px;}
.ls5_c01314{letter-spacing:0.000000px;}
.ls7_c01314{letter-spacing:9.000000px;}
.ls1_c01314{letter-spacing:9.450000px;}
.ls2_c01314{letter-spacing:17.664000px;}
.ls4_c01314{letter-spacing:21.432000px;}
.ls3_c01314{letter-spacing:26.700000px;}
.ls0_c01314{letter-spacing:111.600000px;}
.sc__c01314{text-shadow:none;}
.sc0_c01314{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01314{-webkit-text-stroke:0px transparent;}
.sc0_c01314{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c01314{word-spacing:-76.686000px;}
.ws1_c01314{word-spacing:-32.568000px;}
.ws0_c01314{word-spacing:-25.500000px;}
.ws2_c01314{word-spacing:-20.250000px;}
.ws3_c01314{word-spacing:-17.352000px;}
.ws5_c01314{word-spacing:0.000000px;}
._24_c01314{margin-left:-30.861000px;}
._4_c01314{margin-left:-21.516000px;}
._b_c01314{margin-left:-17.742000px;}
._22_c01314{margin-left:-16.686000px;}
._19_c01314{margin-left:-15.183000px;}
._c_c01314{margin-left:-12.546000px;}
._2_c01314{margin-left:-11.430000px;}
._1f_c01314{margin-left:-10.161000px;}
._9_c01314{margin-left:-8.466000px;}
._d_c01314{margin-left:-7.242000px;}
._10_c01314{margin-left:-5.325000px;}
._7_c01314{margin-left:-4.182000px;}
._6_c01314{margin-left:-2.550000px;}
._12_c01314{margin-left:-1.473000px;}
._1_c01314{width:1.836000px;}
._0_c01314{width:3.060000px;}
._11_c01314{width:4.065000px;}
._8_c01314{width:5.100000px;}
._13_c01314{width:6.516000px;}
._3_c01314{width:8.160000px;}
._a_c01314{width:9.486000px;}
._1e_c01314{width:10.992000px;}
._17_c01314{width:12.114000px;}
._28_c01314{width:13.158000px;}
._16_c01314{width:15.264000px;}
._25_c01314{width:17.079000px;}
._f_c01314{width:18.105000px;}
._14_c01314{width:19.164000px;}
._15_c01314{width:29.448000px;}
._23_c01314{width:31.671000px;}
._27_c01314{width:56.286000px;}
._1c_c01314{width:77.760000px;}
._21_c01314{width:82.170000px;}
._18_c01314{width:99.342000px;}
._5_c01314{width:130.800000px;}
._e_c01314{width:161.058000px;}
._20_c01314{width:179.985000px;}
._26_c01314{width:234.099000px;}
._1d_c01314{width:254.733000px;}
._1b_c01314{width:259.065000px;}
._1a_c01314{width:267.747000px;}
._29_c01314{width:1394.577000px;}
.fc2_c01314{color:transparent;}
.fc1_c01314{color:rgb(128,128,128);}
.fc0_c01314{color:rgb(0,0,0);}
.fs8_c01314{font-size:48.000000px;}
.fs6_c01314{font-size:60.000000px;}
.fs4_c01314{font-size:69.000000px;}
.fs3_c01314{font-size:72.000000px;}
.fs5_c01314{font-size:75.000000px;}
.fs2_c01314{font-size:81.000000px;}
.fs7_c01314{font-size:87.000000px;}
.fs0_c01314{font-size:102.000000px;}
.fs1_c01314{font-size:120.000000px;}
.y0_c01314{bottom:0.000000px;}
.y26_c01314{bottom:3.105000px;}
.y25_c01314{bottom:7.228369px;}
.y24_c01314{bottom:45.570000px;}
.y23_c01314{bottom:72.270000px;}
.y22_c01314{bottom:97.770000px;}
.y21_c01314{bottom:122.220000px;}
.y20_c01314{bottom:146.820000px;}
.y1f_c01314{bottom:170.670000px;}
.y1e_c01314{bottom:195.420000px;}
.y1d_c01314{bottom:220.020000px;}
.y1c_c01314{bottom:244.320000px;}
.y1b_c01314{bottom:268.320000px;}
.y1a_c01314{bottom:292.620000px;}
.y19_c01314{bottom:316.170000px;}
.y18_c01314{bottom:340.920000px;}
.y17_c01314{bottom:364.770000px;}
.y16_c01314{bottom:389.520000px;}
.y15_c01314{bottom:413.820000px;}
.y14_c01314{bottom:437.670000px;}
.y13_c01314{bottom:461.670000px;}
.y12_c01314{bottom:485.970000px;}
.y11_c01314{bottom:509.970000px;}
.y10_c01314{bottom:534.270000px;}
.yf_c01314{bottom:558.120000px;}
.ye_c01314{bottom:582.120000px;}
.yd_c01314{bottom:606.120000px;}
.yc_c01314{bottom:630.120000px;}
.yb_c01314{bottom:655.020000px;}
.ya_c01314{bottom:678.720000px;}
.y9_c01314{bottom:702.570000px;}
.y8_c01314{bottom:726.570000px;}
.y7_c01314{bottom:750.570000px;}
.y6_c01314{bottom:774.270000px;}
.y5_c01314{bottom:798.420000px;}
.y4_c01314{bottom:822.720000px;}
.y3_c01314{bottom:846.120000px;}
.y2_c01314{bottom:870.420000px;}
.y1_c01314{bottom:904.470000px;}
.h8_c01314{height:13.200073px;}
.h9_c01314{height:43.804688px;}
.h4_c01314{height:79.497070px;}
.h5_c01314{height:80.758301px;}
.h6_c01314{height:82.497070px;}
.h3_c01314{height:84.269531px;}
.h7_c01314{height:91.176000px;}
.h2_c01314{height:120.937500px;}
.h1_c01314{height:986.250000px;}
.h0_c01314{height:986.550000px;}
.w1_c01314{width:104.875500px;}
.w0_c01314{width:672.000000px;}
.x0_c01314{left:0.000000px;}
.x2_c01314{left:59.850000px;}
.xc_c01314{left:61.350000px;}
.xb_c01314{left:63.750000px;}
.x9_c01314{left:66.450000px;}
.x8_c01314{left:67.950000px;}
.x6_c01314{left:69.900000px;}
.x5_c01314{left:70.950000px;}
.x3_c01314{left:72.000000px;}
.x4_c01314{left:73.650000px;}
.xa_c01314{left:78.000000px;}
.x1_c01314{left:84.450000px;}
.xd_c01314{left:89.400000px;}
.x7_c01314{left:95.850000px;}
.xe_c01314{left:108.300000px;}
.xf_c01314{left:287.814240px;}
@media print{
.v0_c01314{vertical-align:0.000000pt;}
.v1_c01314{vertical-align:2.666667pt;}
.ls6_c01314{letter-spacing:-5.333333pt;}
.ls5_c01314{letter-spacing:0.000000pt;}
.ls7_c01314{letter-spacing:8.000000pt;}
.ls1_c01314{letter-spacing:8.400000pt;}
.ls2_c01314{letter-spacing:15.701333pt;}
.ls4_c01314{letter-spacing:19.050667pt;}
.ls3_c01314{letter-spacing:23.733333pt;}
.ls0_c01314{letter-spacing:99.200000pt;}
.ws4_c01314{word-spacing:-68.165333pt;}
.ws1_c01314{word-spacing:-28.949333pt;}
.ws0_c01314{word-spacing:-22.666667pt;}
.ws2_c01314{word-spacing:-18.000000pt;}
.ws3_c01314{word-spacing:-15.424000pt;}
.ws5_c01314{word-spacing:0.000000pt;}
._24_c01314{margin-left:-27.432000pt;}
._4_c01314{margin-left:-19.125333pt;}
._b_c01314{margin-left:-15.770667pt;}
._22_c01314{margin-left:-14.832000pt;}
._19_c01314{margin-left:-13.496000pt;}
._c_c01314{margin-left:-11.152000pt;}
._2_c01314{margin-left:-10.160000pt;}
._1f_c01314{margin-left:-9.032000pt;}
._9_c01314{margin-left:-7.525333pt;}
._d_c01314{margin-left:-6.437333pt;}
._10_c01314{margin-left:-4.733333pt;}
._7_c01314{margin-left:-3.717333pt;}
._6_c01314{margin-left:-2.266667pt;}
._12_c01314{margin-left:-1.309333pt;}
._1_c01314{width:1.632000pt;}
._0_c01314{width:2.720000pt;}
._11_c01314{width:3.613333pt;}
._8_c01314{width:4.533333pt;}
._13_c01314{width:5.792000pt;}
._3_c01314{width:7.253333pt;}
._a_c01314{width:8.432000pt;}
._1e_c01314{width:9.770667pt;}
._17_c01314{width:10.768000pt;}
._28_c01314{width:11.696000pt;}
._16_c01314{width:13.568000pt;}
._25_c01314{width:15.181333pt;}
._f_c01314{width:16.093333pt;}
._14_c01314{width:17.034667pt;}
._15_c01314{width:26.176000pt;}
._23_c01314{width:28.152000pt;}
._27_c01314{width:50.032000pt;}
._1c_c01314{width:69.120000pt;}
._21_c01314{width:73.040000pt;}
._18_c01314{width:88.304000pt;}
._5_c01314{width:116.266667pt;}
._e_c01314{width:143.162667pt;}
._20_c01314{width:159.986667pt;}
._26_c01314{width:208.088000pt;}
._1d_c01314{width:226.429333pt;}
._1b_c01314{width:230.280000pt;}
._1a_c01314{width:237.997333pt;}
._29_c01314{width:1239.624000pt;}
.fs8_c01314{font-size:42.666667pt;}
.fs6_c01314{font-size:53.333333pt;}
.fs4_c01314{font-size:61.333333pt;}
.fs3_c01314{font-size:64.000000pt;}
.fs5_c01314{font-size:66.666667pt;}
.fs2_c01314{font-size:72.000000pt;}
.fs7_c01314{font-size:77.333333pt;}
.fs0_c01314{font-size:90.666667pt;}
.fs1_c01314{font-size:106.666667pt;}
.y0_c01314{bottom:0.000000pt;}
.y26_c01314{bottom:2.760000pt;}
.y25_c01314{bottom:6.425217pt;}
.y24_c01314{bottom:40.506667pt;}
.y23_c01314{bottom:64.240000pt;}
.y22_c01314{bottom:86.906667pt;}
.y21_c01314{bottom:108.640000pt;}
.y20_c01314{bottom:130.506667pt;}
.y1f_c01314{bottom:151.706667pt;}
.y1e_c01314{bottom:173.706667pt;}
.y1d_c01314{bottom:195.573333pt;}
.y1c_c01314{bottom:217.173333pt;}
.y1b_c01314{bottom:238.506667pt;}
.y1a_c01314{bottom:260.106667pt;}
.y19_c01314{bottom:281.040000pt;}
.y18_c01314{bottom:303.040000pt;}
.y17_c01314{bottom:324.240000pt;}
.y16_c01314{bottom:346.240000pt;}
.y15_c01314{bottom:367.840000pt;}
.y14_c01314{bottom:389.040000pt;}
.y13_c01314{bottom:410.373333pt;}
.y12_c01314{bottom:431.973333pt;}
.y11_c01314{bottom:453.306667pt;}
.y10_c01314{bottom:474.906667pt;}
.yf_c01314{bottom:496.106667pt;}
.ye_c01314{bottom:517.440000pt;}
.yd_c01314{bottom:538.773333pt;}
.yc_c01314{bottom:560.106667pt;}
.yb_c01314{bottom:582.240000pt;}
.ya_c01314{bottom:603.306667pt;}
.y9_c01314{bottom:624.506667pt;}
.y8_c01314{bottom:645.840000pt;}
.y7_c01314{bottom:667.173333pt;}
.y6_c01314{bottom:688.240000pt;}
.y5_c01314{bottom:709.706667pt;}
.y4_c01314{bottom:731.306667pt;}
.y3_c01314{bottom:752.106667pt;}
.y2_c01314{bottom:773.706667pt;}
.y1_c01314{bottom:803.973333pt;}
.h8_c01314{height:11.733399pt;}
.h9_c01314{height:38.937500pt;}
.h4_c01314{height:70.664062pt;}
.h5_c01314{height:71.785156pt;}
.h6_c01314{height:73.330729pt;}
.h3_c01314{height:74.906250pt;}
.h7_c01314{height:81.045333pt;}
.h2_c01314{height:107.500000pt;}
.h1_c01314{height:876.666667pt;}
.h0_c01314{height:876.933333pt;}
.w1_c01314{width:93.222667pt;}
.w0_c01314{width:597.333333pt;}
.x0_c01314{left:0.000000pt;}
.x2_c01314{left:53.200000pt;}
.xc_c01314{left:54.533333pt;}
.xb_c01314{left:56.666667pt;}
.x9_c01314{left:59.066667pt;}
.x8_c01314{left:60.400000pt;}
.x6_c01314{left:62.133333pt;}
.x5_c01314{left:63.066667pt;}
.x3_c01314{left:64.000000pt;}
.x4_c01314{left:65.466667pt;}
.xa_c01314{left:69.333333pt;}
.x1_c01314{left:75.066667pt;}
.xd_c01314{left:79.466667pt;}
.x7_c01314{left:85.200000pt;}
.xe_c01314{left:96.266667pt;}
.xf_c01314{left:255.834880pt;}
}





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

.ir_c01315:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01315{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01315;src:url('chunks/assets/font_b0c922fdcb05200f0e76b36e.woff2')format("woff");}.ff1_c01315{font-family:ff1_c01315;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01315;src:url('chunks/assets/font_251f2daf58dfbf42b6d65ba2.woff2')format("woff");}.ff2_c01315{font-family:ff2_c01315;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01315;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff3_c01315{font-family:ff3_c01315;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01315;src:url('chunks/assets/font_e4a1c879e82060fde11be23f.woff2')format("woff");}.ff4_c01315{font-family:ff4_c01315;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01315;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c01315{font-family:ff5_c01315;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01315{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01315{vertical-align:0.000000px;}
.ls0_c01315{letter-spacing:0.000000px;}
.ls1_c01315{letter-spacing:9.000000px;}
.sc__c01315{text-shadow:none;}
.sc0_c01315{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01315{-webkit-text-stroke:0px transparent;}
.sc0_c01315{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01315{word-spacing:-42.000000px;}
.ws2_c01315{word-spacing:-23.250000px;}
.ws0_c01315{word-spacing:-17.352000px;}
.ws3_c01315{word-spacing:0.000000px;}
._23_c01315{margin-left:-27.135000px;}
._1d_c01315{margin-left:-23.472000px;}
._26_c01315{margin-left:-22.194000px;}
._13_c01315{margin-left:-16.056000px;}
._1a_c01315{margin-left:-14.883000px;}
._21_c01315{margin-left:-12.798000px;}
._16_c01315{margin-left:-10.773000px;}
._f_c01315{margin-left:-9.315000px;}
._d_c01315{margin-left:-8.262000px;}
._e_c01315{margin-left:-6.804000px;}
._4_c01315{margin-left:-4.860000px;}
._8_c01315{margin-left:-2.997000px;}
._5_c01315{margin-left:-1.944000px;}
._2_c01315{width:1.782000px;}
._1_c01315{width:2.997000px;}
._3_c01315{width:4.212000px;}
._0_c01315{width:5.427000px;}
._c_c01315{width:7.452000px;}
._7_c01315{width:9.234000px;}
._6_c01315{width:10.287000px;}
._24_c01315{width:11.421000px;}
._b_c01315{width:12.636000px;}
._11_c01315{width:14.337000px;}
._a_c01315{width:15.633000px;}
._28_c01315{width:17.739000px;}
._14_c01315{width:18.873000px;}
._9_c01315{width:22.761000px;}
._2a_c01315{width:25.443000px;}
._12_c01315{width:27.360000px;}
._25_c01315{width:28.917000px;}
._18_c01315{width:32.325000px;}
._29_c01315{width:43.011000px;}
._15_c01315{width:54.837000px;}
._10_c01315{width:56.052000px;}
._1f_c01315{width:57.249000px;}
._20_c01315{width:75.816000px;}
._1e_c01315{width:94.824000px;}
._22_c01315{width:107.163000px;}
._1c_c01315{width:112.428000px;}
._19_c01315{width:125.433000px;}
._2b_c01315{width:140.964000px;}
._2c_c01315{width:166.323000px;}
._17_c01315{width:217.404000px;}
._1b_c01315{width:315.414000px;}
._27_c01315{width:323.271000px;}
.fc2_c01315{color:transparent;}
.fc1_c01315{color:rgb(128,128,128);}
.fc0_c01315{color:rgb(0,0,0);}
.fs4_c01315{font-size:48.000000px;}
.fs2_c01315{font-size:66.000000px;}
.fs1_c01315{font-size:72.000000px;}
.fs0_c01315{font-size:81.000000px;}
.fs3_c01315{font-size:93.000000px;}
.y0_c01315{bottom:0.000000px;}
.y25_c01315{bottom:3.105000px;}
.y24_c01315{bottom:7.228371px;}
.y23_c01315{bottom:52.065000px;}
.y22_c01315{bottom:73.965000px;}
.y21_c01315{bottom:100.965000px;}
.y20_c01315{bottom:124.515000px;}
.y1f_c01315{bottom:149.265000px;}
.y1e_c01315{bottom:173.865000px;}
.y1d_c01315{bottom:199.815000px;}
.y1c_c01315{bottom:223.065000px;}
.y1b_c01315{bottom:247.815000px;}
.y1a_c01315{bottom:272.415000px;}
.y19_c01315{bottom:297.315000px;}
.y18_c01315{bottom:321.015000px;}
.y17_c01315{bottom:346.365000px;}
.y16_c01315{bottom:370.215000px;}
.y15_c01315{bottom:394.665000px;}
.y14_c01315{bottom:418.965000px;}
.y13_c01315{bottom:443.565000px;}
.y12_c01315{bottom:468.165000px;}
.y11_c01315{bottom:492.165000px;}
.y10_c01315{bottom:516.765000px;}
.yf_c01315{bottom:541.065000px;}
.ye_c01315{bottom:563.415000px;}
.yd_c01315{bottom:587.715000px;}
.yc_c01315{bottom:613.665000px;}
.yb_c01315{bottom:637.665000px;}
.ya_c01315{bottom:660.615000px;}
.y9_c01315{bottom:686.265000px;}
.y8_c01315{bottom:710.565000px;}
.y7_c01315{bottom:735.165000px;}
.y6_c01315{bottom:759.165000px;}
.y5_c01315{bottom:783.315000px;}
.y4_c01315{bottom:807.615000px;}
.y3_c01315{bottom:831.915000px;}
.y2_c01315{bottom:856.365000px;}
.y1_c01315{bottom:880.215000px;}
.h6_c01315{height:13.200074px;}
.h7_c01315{height:43.804688px;}
.h2_c01315{height:79.497070px;}
.h4_c01315{height:84.269531px;}
.h3_c01315{height:91.160156px;}
.h5_c01315{height:91.274414px;}
.h1_c01315{height:986.250000px;}
.h0_c01315{height:986.325000px;}
.w2_c01315{width:104.875500px;}
.w0_c01315{width:667.425000px;}
.w1_c01315{width:667.500000px;}
.x0_c01315{left:0.000000px;}
.x4_c01315{left:30.000000px;}
.x5_c01315{left:32.100000px;}
.xc_c01315{left:33.150000px;}
.xd_c01315{left:34.800000px;}
.xe_c01315{left:36.150000px;}
.x7_c01315{left:64.800000px;}
.xa_c01315{left:94.500000px;}
.x9_c01315{left:104.700000px;}
.x1_c01315{left:116.850000px;}
.x3_c01315{left:118.800000px;}
.x6_c01315{left:121.200000px;}
.x8_c01315{left:122.550000px;}
.xb_c01315{left:124.650000px;}
.x2_c01315{left:126.300000px;}
.x10_c01315{left:285.526749px;}
.xf_c01315{left:565.650000px;}
@media print{
.v0_c01315{vertical-align:0.000000pt;}
.ls0_c01315{letter-spacing:0.000000pt;}
.ls1_c01315{letter-spacing:8.000000pt;}
.ws1_c01315{word-spacing:-37.333333pt;}
.ws2_c01315{word-spacing:-20.666667pt;}
.ws0_c01315{word-spacing:-15.424000pt;}
.ws3_c01315{word-spacing:0.000000pt;}
._23_c01315{margin-left:-24.120000pt;}
._1d_c01315{margin-left:-20.864000pt;}
._26_c01315{margin-left:-19.728000pt;}
._13_c01315{margin-left:-14.272000pt;}
._1a_c01315{margin-left:-13.229333pt;}
._21_c01315{margin-left:-11.376000pt;}
._16_c01315{margin-left:-9.576000pt;}
._f_c01315{margin-left:-8.280000pt;}
._d_c01315{margin-left:-7.344000pt;}
._e_c01315{margin-left:-6.048000pt;}
._4_c01315{margin-left:-4.320000pt;}
._8_c01315{margin-left:-2.664000pt;}
._5_c01315{margin-left:-1.728000pt;}
._2_c01315{width:1.584000pt;}
._1_c01315{width:2.664000pt;}
._3_c01315{width:3.744000pt;}
._0_c01315{width:4.824000pt;}
._c_c01315{width:6.624000pt;}
._7_c01315{width:8.208000pt;}
._6_c01315{width:9.144000pt;}
._24_c01315{width:10.152000pt;}
._b_c01315{width:11.232000pt;}
._11_c01315{width:12.744000pt;}
._a_c01315{width:13.896000pt;}
._28_c01315{width:15.768000pt;}
._14_c01315{width:16.776000pt;}
._9_c01315{width:20.232000pt;}
._2a_c01315{width:22.616000pt;}
._12_c01315{width:24.320000pt;}
._25_c01315{width:25.704000pt;}
._18_c01315{width:28.733333pt;}
._29_c01315{width:38.232000pt;}
._15_c01315{width:48.744000pt;}
._10_c01315{width:49.824000pt;}
._1f_c01315{width:50.888000pt;}
._20_c01315{width:67.392000pt;}
._1e_c01315{width:84.288000pt;}
._22_c01315{width:95.256000pt;}
._1c_c01315{width:99.936000pt;}
._19_c01315{width:111.496000pt;}
._2b_c01315{width:125.301333pt;}
._2c_c01315{width:147.842667pt;}
._17_c01315{width:193.248000pt;}
._1b_c01315{width:280.368000pt;}
._27_c01315{width:287.352000pt;}
.fs4_c01315{font-size:42.666667pt;}
.fs2_c01315{font-size:58.666667pt;}
.fs1_c01315{font-size:64.000000pt;}
.fs0_c01315{font-size:72.000000pt;}
.fs3_c01315{font-size:82.666667pt;}
.y0_c01315{bottom:0.000000pt;}
.y25_c01315{bottom:2.760000pt;}
.y24_c01315{bottom:6.425219pt;}
.y23_c01315{bottom:46.280000pt;}
.y22_c01315{bottom:65.746667pt;}
.y21_c01315{bottom:89.746667pt;}
.y20_c01315{bottom:110.680000pt;}
.y1f_c01315{bottom:132.680000pt;}
.y1e_c01315{bottom:154.546667pt;}
.y1d_c01315{bottom:177.613333pt;}
.y1c_c01315{bottom:198.280000pt;}
.y1b_c01315{bottom:220.280000pt;}
.y1a_c01315{bottom:242.146667pt;}
.y19_c01315{bottom:264.280000pt;}
.y18_c01315{bottom:285.346667pt;}
.y17_c01315{bottom:307.880000pt;}
.y16_c01315{bottom:329.080000pt;}
.y15_c01315{bottom:350.813333pt;}
.y14_c01315{bottom:372.413333pt;}
.y13_c01315{bottom:394.280000pt;}
.y12_c01315{bottom:416.146667pt;}
.y11_c01315{bottom:437.480000pt;}
.y10_c01315{bottom:459.346667pt;}
.yf_c01315{bottom:480.946667pt;}
.ye_c01315{bottom:500.813333pt;}
.yd_c01315{bottom:522.413333pt;}
.yc_c01315{bottom:545.480000pt;}
.yb_c01315{bottom:566.813333pt;}
.ya_c01315{bottom:587.213333pt;}
.y9_c01315{bottom:610.013333pt;}
.y8_c01315{bottom:631.613333pt;}
.y7_c01315{bottom:653.480000pt;}
.y6_c01315{bottom:674.813333pt;}
.y5_c01315{bottom:696.280000pt;}
.y4_c01315{bottom:717.880000pt;}
.y3_c01315{bottom:739.480000pt;}
.y2_c01315{bottom:761.213333pt;}
.y1_c01315{bottom:782.413333pt;}
.h6_c01315{height:11.733399pt;}
.h7_c01315{height:38.937500pt;}
.h2_c01315{height:70.664062pt;}
.h4_c01315{height:74.906250pt;}
.h3_c01315{height:81.031250pt;}
.h5_c01315{height:81.132812pt;}
.h1_c01315{height:876.666667pt;}
.h0_c01315{height:876.733333pt;}
.w2_c01315{width:93.222667pt;}
.w0_c01315{width:593.266667pt;}
.w1_c01315{width:593.333333pt;}
.x0_c01315{left:0.000000pt;}
.x4_c01315{left:26.666667pt;}
.x5_c01315{left:28.533333pt;}
.xc_c01315{left:29.466667pt;}
.xd_c01315{left:30.933333pt;}
.xe_c01315{left:32.133333pt;}
.x7_c01315{left:57.600000pt;}
.xa_c01315{left:84.000000pt;}
.x9_c01315{left:93.066667pt;}
.x1_c01315{left:103.866667pt;}
.x3_c01315{left:105.600000pt;}
.x6_c01315{left:107.733333pt;}
.x8_c01315{left:108.933333pt;}
.xb_c01315{left:110.800000pt;}
.x2_c01315{left:112.266667pt;}
.x10_c01315{left:253.801554pt;}
.xf_c01315{left:502.800000pt;}
}





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

.ir_c01316:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01316{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01316;src:url('chunks/assets/font_7cd745b39ea3e3f014e60b2c.woff2')format("woff");}.ff1_c01316{font-family:ff1_c01316;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01316;src:url('chunks/assets/font_c107e956b58fcedd468d7c87.woff2')format("woff");}.ff2_c01316{font-family:ff2_c01316;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01316;src:url('chunks/assets/font_919c542b0ebb931ea20ef7b5.woff2')format("woff");}.ff3_c01316{font-family:ff3_c01316;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01316;src:url('chunks/assets/font_89053c25edb52c9868e3a4ed.woff2')format("woff");}.ff4_c01316{font-family:ff4_c01316;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01316;src:url('chunks/assets/font_98df5c7eac9ddbedf97a2091.woff2')format("woff");}.ff5_c01316{font-family:ff5_c01316;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01316;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff6_c01316{font-family:ff6_c01316;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01316;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c01316{font-family:ff7_c01316;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01316{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01316{vertical-align:0.000000px;}
.v1_c01316{vertical-align:146.400000px;}
.ls4_c01316{letter-spacing:-6.000000px;}
.ls3_c01316{letter-spacing:0.000000px;}
.ls1_c01316{letter-spacing:0.600000px;}
.ls0_c01316{letter-spacing:0.612000px;}
.ls2_c01316{letter-spacing:8.202000px;}
.sc__c01316{text-shadow:none;}
.sc0_c01316{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01316{-webkit-text-stroke:0px transparent;}
.sc0_c01316{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01316{word-spacing:-44.040000px;}
.ws2_c01316{word-spacing:-17.352000px;}
.ws0_c01316{word-spacing:-13.737000px;}
.ws3_c01316{word-spacing:0.000000px;}
._15_c01316{margin-left:-12.885000px;}
._f_c01316{margin-left:-11.628000px;}
._19_c01316{margin-left:-9.912000px;}
._12_c01316{margin-left:-7.680000px;}
._d_c01316{margin-left:-6.639000px;}
._9_c01316{margin-left:-4.926000px;}
._8_c01316{margin-left:-3.915000px;}
._11_c01316{margin-left:-2.367000px;}
._7_c01316{margin-left:-1.296000px;}
._1_c01316{width:1.767000px;}
._2_c01316{width:3.285000px;}
._0_c01316{width:4.731000px;}
._4_c01316{width:5.796000px;}
._3_c01316{width:7.038000px;}
._b_c01316{width:8.973000px;}
._5_c01316{width:10.659000px;}
._c_c01316{width:11.676000px;}
._13_c01316{width:13.941000px;}
._6_c01316{width:15.690000px;}
._17_c01316{width:17.397000px;}
._16_c01316{width:19.608000px;}
._10_c01316{width:21.783000px;}
._14_c01316{width:23.661000px;}
._1a_c01316{width:31.398000px;}
._e_c01316{width:32.832000px;}
._1b_c01316{width:44.244000px;}
._18_c01316{width:215.634000px;}
._a_c01316{width:249.423000px;}
._1c_c01316{width:272.211000px;}
.fc2_c01316{color:transparent;}
.fc1_c01316{color:rgb(128,128,128);}
.fc0_c01316{color:rgb(0,0,0);}
.fs7_c01316{font-size:48.000000px;}
.fs0_c01316{font-size:57.000000px;}
.fs5_c01316{font-size:60.000000px;}
.fs2_c01316{font-size:72.000000px;}
.fs6_c01316{font-size:78.000000px;}
.fs1_c01316{font-size:81.000000px;}
.fs4_c01316{font-size:90.000000px;}
.fs3_c01316{font-size:273.000000px;}
.y0_c01316{bottom:0.000000px;}
.y24_c01316{bottom:3.105000px;}
.y23_c01316{bottom:7.228369px;}
.y22_c01316{bottom:61.470000px;}
.y21_c01316{bottom:84.720000px;}
.y20_c01316{bottom:109.920000px;}
.y1f_c01316{bottom:134.370000px;}
.y1e_c01316{bottom:159.570000px;}
.y1d_c01316{bottom:184.320000px;}
.y1c_c01316{bottom:208.470000px;}
.y1b_c01316{bottom:232.920000px;}
.y1a_c01316{bottom:257.220000px;}
.y19_c01316{bottom:282.120000px;}
.y18_c01316{bottom:305.820000px;}
.y17_c01316{bottom:330.720000px;}
.y16_c01316{bottom:355.020000px;}
.y15_c01316{bottom:379.620000px;}
.y14_c01316{bottom:403.920000px;}
.y13_c01316{bottom:428.970000px;}
.y12_c01316{bottom:452.520000px;}
.y11_c01316{bottom:477.120000px;}
.y10_c01316{bottom:501.120000px;}
.yf_c01316{bottom:525.120000px;}
.ye_c01316{bottom:548.670000px;}
.y1_c01316{bottom:551.370000px;}
.yd_c01316{bottom:573.120000px;}
.yc_c01316{bottom:596.970000px;}
.yb_c01316{bottom:620.670000px;}
.ya_c01316{bottom:644.970000px;}
.y9_c01316{bottom:669.720000px;}
.y7_c01316{bottom:680.820000px;}
.y8_c01316{bottom:693.570000px;}
.y6_c01316{bottom:766.020000px;}
.y5_c01316{bottom:813.270000px;}
.y4_c01316{bottom:838.020000px;}
.y3_c01316{bottom:862.920000px;}
.y2_c01316{bottom:887.520000px;}
.h9_c01316{height:13.200073px;}
.ha_c01316{height:43.804688px;}
.h2_c01316{height:66.713379px;}
.h4_c01316{height:70.628906px;}
.h6_c01316{height:72.168457px;}
.h3_c01316{height:79.497070px;}
.h8_c01316{height:91.160156px;}
.h7_c01316{height:98.756836px;}
.h5_c01316{height:267.934570px;}
.h1_c01316{height:986.250000px;}
.h0_c01316{height:986.550000px;}
.w1_c01316{width:104.875500px;}
.w0_c01316{width:672.000000px;}
.x0_c01316{left:0.000000px;}
.x6_c01316{left:53.700000px;}
.x5_c01316{left:55.050000px;}
.x2_c01316{left:56.700000px;}
.x3_c01316{left:68.100000px;}
.x4_c01316{left:95.400000px;}
.x8_c01316{left:287.814240px;}
.x7_c01316{left:395.250000px;}
.x1_c01316{left:495.750000px;}
@media print{
.v0_c01316{vertical-align:0.000000pt;}
.v1_c01316{vertical-align:130.133333pt;}
.ls4_c01316{letter-spacing:-5.333333pt;}
.ls3_c01316{letter-spacing:0.000000pt;}
.ls1_c01316{letter-spacing:0.533333pt;}
.ls0_c01316{letter-spacing:0.544000pt;}
.ls2_c01316{letter-spacing:7.290667pt;}
.ws1_c01316{word-spacing:-39.146667pt;}
.ws2_c01316{word-spacing:-15.424000pt;}
.ws0_c01316{word-spacing:-12.210667pt;}
.ws3_c01316{word-spacing:0.000000pt;}
._15_c01316{margin-left:-11.453333pt;}
._f_c01316{margin-left:-10.336000pt;}
._19_c01316{margin-left:-8.810667pt;}
._12_c01316{margin-left:-6.826667pt;}
._d_c01316{margin-left:-5.901333pt;}
._9_c01316{margin-left:-4.378667pt;}
._8_c01316{margin-left:-3.480000pt;}
._11_c01316{margin-left:-2.104000pt;}
._7_c01316{margin-left:-1.152000pt;}
._1_c01316{width:1.570667pt;}
._2_c01316{width:2.920000pt;}
._0_c01316{width:4.205333pt;}
._4_c01316{width:5.152000pt;}
._3_c01316{width:6.256000pt;}
._b_c01316{width:7.976000pt;}
._5_c01316{width:9.474667pt;}
._c_c01316{width:10.378667pt;}
._13_c01316{width:12.392000pt;}
._6_c01316{width:13.946667pt;}
._17_c01316{width:15.464000pt;}
._16_c01316{width:17.429333pt;}
._10_c01316{width:19.362667pt;}
._14_c01316{width:21.032000pt;}
._1a_c01316{width:27.909333pt;}
._e_c01316{width:29.184000pt;}
._1b_c01316{width:39.328000pt;}
._18_c01316{width:191.674667pt;}
._a_c01316{width:221.709333pt;}
._1c_c01316{width:241.965333pt;}
.fs7_c01316{font-size:42.666667pt;}
.fs0_c01316{font-size:50.666667pt;}
.fs5_c01316{font-size:53.333333pt;}
.fs2_c01316{font-size:64.000000pt;}
.fs6_c01316{font-size:69.333333pt;}
.fs1_c01316{font-size:72.000000pt;}
.fs4_c01316{font-size:80.000000pt;}
.fs3_c01316{font-size:242.666667pt;}
.y0_c01316{bottom:0.000000pt;}
.y24_c01316{bottom:2.760000pt;}
.y23_c01316{bottom:6.425217pt;}
.y22_c01316{bottom:54.640000pt;}
.y21_c01316{bottom:75.306667pt;}
.y20_c01316{bottom:97.706667pt;}
.y1f_c01316{bottom:119.440000pt;}
.y1e_c01316{bottom:141.840000pt;}
.y1d_c01316{bottom:163.840000pt;}
.y1c_c01316{bottom:185.306667pt;}
.y1b_c01316{bottom:207.040000pt;}
.y1a_c01316{bottom:228.640000pt;}
.y19_c01316{bottom:250.773333pt;}
.y18_c01316{bottom:271.840000pt;}
.y17_c01316{bottom:293.973333pt;}
.y16_c01316{bottom:315.573333pt;}
.y15_c01316{bottom:337.440000pt;}
.y14_c01316{bottom:359.040000pt;}
.y13_c01316{bottom:381.306667pt;}
.y12_c01316{bottom:402.240000pt;}
.y11_c01316{bottom:424.106667pt;}
.y10_c01316{bottom:445.440000pt;}
.yf_c01316{bottom:466.773333pt;}
.ye_c01316{bottom:487.706667pt;}
.y1_c01316{bottom:490.106667pt;}
.yd_c01316{bottom:509.440000pt;}
.yc_c01316{bottom:530.640000pt;}
.yb_c01316{bottom:551.706667pt;}
.ya_c01316{bottom:573.306667pt;}
.y9_c01316{bottom:595.306667pt;}
.y7_c01316{bottom:605.173333pt;}
.y8_c01316{bottom:616.506667pt;}
.y6_c01316{bottom:680.906667pt;}
.y5_c01316{bottom:722.906667pt;}
.y4_c01316{bottom:744.906667pt;}
.y3_c01316{bottom:767.040000pt;}
.y2_c01316{bottom:788.906667pt;}
.h9_c01316{height:11.733399pt;}
.ha_c01316{height:38.937500pt;}
.h2_c01316{height:59.300781pt;}
.h4_c01316{height:62.781250pt;}
.h6_c01316{height:64.149740pt;}
.h3_c01316{height:70.664062pt;}
.h8_c01316{height:81.031250pt;}
.h7_c01316{height:87.783854pt;}
.h5_c01316{height:238.164062pt;}
.h1_c01316{height:876.666667pt;}
.h0_c01316{height:876.933333pt;}
.w1_c01316{width:93.222667pt;}
.w0_c01316{width:597.333333pt;}
.x0_c01316{left:0.000000pt;}
.x6_c01316{left:47.733333pt;}
.x5_c01316{left:48.933333pt;}
.x2_c01316{left:50.400000pt;}
.x3_c01316{left:60.533333pt;}
.x4_c01316{left:84.800000pt;}
.x8_c01316{left:255.834880pt;}
.x7_c01316{left:351.333333pt;}
.x1_c01316{left:440.666667pt;}
}





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

.ir_c01317:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01317{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01317;src:url('chunks/assets/font_cd6283e0ecb64f1d9df6b13a.woff2')format("woff");}.ff1_c01317{font-family:ff1_c01317;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01317;src:url('chunks/assets/font_8a9050ef2b12d1e915d4c052.woff2')format("woff");}.ff2_c01317{font-family:ff2_c01317;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01317;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff3_c01317{font-family:ff3_c01317;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01317{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01317{vertical-align:0.000000px;}
.ls1_c01317{letter-spacing:0.000000px;}
.ls0_c01317{letter-spacing:1.080000px;}
.sc__c01317{text-shadow:none;}
.sc0_c01317{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01317{-webkit-text-stroke:0px transparent;}
.sc0_c01317{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01317{word-spacing:0.000000px;}
._17_c01317{margin-left:-19.683000px;}
._1d_c01317{margin-left:-16.686000px;}
._10_c01317{margin-left:-13.203000px;}
._f_c01317{margin-left:-11.583000px;}
._11_c01317{margin-left:-9.882000px;}
._1c_c01317{margin-left:-7.938000px;}
._5_c01317{margin-left:-6.723000px;}
._e_c01317{margin-left:-5.670000px;}
._b_c01317{margin-left:-4.212000px;}
._6_c01317{margin-left:-2.268000px;}
._8_c01317{margin-left:-1.134000px;}
._4_c01317{width:1.215000px;}
._0_c01317{width:2.673000px;}
._2_c01317{width:3.969000px;}
._1_c01317{width:5.670000px;}
._3_c01317{width:6.723000px;}
._a_c01317{width:7.857000px;}
._7_c01317{width:8.991000px;}
._c_c01317{width:10.530000px;}
._9_c01317{width:12.150000px;}
._19_c01317{width:13.284000px;}
._d_c01317{width:14.580000px;}
._14_c01317{width:15.957000px;}
._12_c01317{width:17.253000px;}
._1a_c01317{width:19.035000px;}
._1e_c01317{width:22.518000px;}
._18_c01317{width:23.895000px;}
._1b_c01317{width:25.272000px;}
._15_c01317{width:27.981000px;}
._13_c01317{width:34.425000px;}
._16_c01317{width:36.531000px;}
.fc2_c01317{color:transparent;}
.fc1_c01317{color:rgb(128,128,128);}
.fc0_c01317{color:rgb(0,0,0);}
.fs2_c01317{font-size:48.000000px;}
.fs1_c01317{font-size:72.000000px;}
.fs0_c01317{font-size:81.000000px;}
.y0_c01317{bottom:0.000000px;}
.y24_c01317{bottom:3.105000px;}
.y23_c01317{bottom:7.228371px;}
.y22_c01317{bottom:78.315000px;}
.y21_c01317{bottom:103.965000px;}
.y20_c01317{bottom:128.715000px;}
.y1f_c01317{bottom:153.315000px;}
.y1e_c01317{bottom:177.915000px;}
.y1d_c01317{bottom:202.815000px;}
.y1c_c01317{bottom:227.115000px;}
.y1b_c01317{bottom:252.165000px;}
.y1a_c01317{bottom:275.415000px;}
.y19_c01317{bottom:300.465000px;}
.y18_c01317{bottom:325.665000px;}
.y17_c01317{bottom:350.115000px;}
.y16_c01317{bottom:374.415000px;}
.y15_c01317{bottom:399.015000px;}
.y14_c01317{bottom:423.915000px;}
.y13_c01317{bottom:448.215000px;}
.y12_c01317{bottom:472.215000px;}
.y11_c01317{bottom:496.515000px;}
.y10_c01317{bottom:520.815000px;}
.yf_c01317{bottom:545.115000px;}
.ye_c01317{bottom:569.115000px;}
.yd_c01317{bottom:593.715000px;}
.yc_c01317{bottom:618.015000px;}
.yb_c01317{bottom:642.615000px;}
.ya_c01317{bottom:667.215000px;}
.y9_c01317{bottom:690.315000px;}
.y8_c01317{bottom:716.865000px;}
.y7_c01317{bottom:740.265000px;}
.y6_c01317{bottom:764.565000px;}
.y5_c01317{bottom:789.165000px;}
.y4_c01317{bottom:812.715000px;}
.y3_c01317{bottom:837.465000px;}
.y2_c01317{bottom:861.765000px;}
.y1_c01317{bottom:886.065000px;}
.h4_c01317{height:13.200074px;}
.h5_c01317{height:43.804688px;}
.h2_c01317{height:79.497070px;}
.h3_c01317{height:84.269531px;}
.h1_c01317{height:986.250000px;}
.h0_c01317{height:986.325000px;}
.w2_c01317{width:104.875500px;}
.w0_c01317{width:667.425000px;}
.w1_c01317{width:667.500000px;}
.x0_c01317{left:0.000000px;}
.x5_c01317{left:126.600000px;}
.x3_c01317{left:127.950000px;}
.x2_c01317{left:129.000000px;}
.x1_c01317{left:130.200000px;}
.x4_c01317{left:154.650000px;}
.x6_c01317{left:285.526749px;}
@media print{
.v0_c01317{vertical-align:0.000000pt;}
.ls1_c01317{letter-spacing:0.000000pt;}
.ls0_c01317{letter-spacing:0.960000pt;}
.ws0_c01317{word-spacing:0.000000pt;}
._17_c01317{margin-left:-17.496000pt;}
._1d_c01317{margin-left:-14.832000pt;}
._10_c01317{margin-left:-11.736000pt;}
._f_c01317{margin-left:-10.296000pt;}
._11_c01317{margin-left:-8.784000pt;}
._1c_c01317{margin-left:-7.056000pt;}
._5_c01317{margin-left:-5.976000pt;}
._e_c01317{margin-left:-5.040000pt;}
._b_c01317{margin-left:-3.744000pt;}
._6_c01317{margin-left:-2.016000pt;}
._8_c01317{margin-left:-1.008000pt;}
._4_c01317{width:1.080000pt;}
._0_c01317{width:2.376000pt;}
._2_c01317{width:3.528000pt;}
._1_c01317{width:5.040000pt;}
._3_c01317{width:5.976000pt;}
._a_c01317{width:6.984000pt;}
._7_c01317{width:7.992000pt;}
._c_c01317{width:9.360000pt;}
._9_c01317{width:10.800000pt;}
._19_c01317{width:11.808000pt;}
._d_c01317{width:12.960000pt;}
._14_c01317{width:14.184000pt;}
._12_c01317{width:15.336000pt;}
._1a_c01317{width:16.920000pt;}
._1e_c01317{width:20.016000pt;}
._18_c01317{width:21.240000pt;}
._1b_c01317{width:22.464000pt;}
._15_c01317{width:24.872000pt;}
._13_c01317{width:30.600000pt;}
._16_c01317{width:32.472000pt;}
.fs2_c01317{font-size:42.666667pt;}
.fs1_c01317{font-size:64.000000pt;}
.fs0_c01317{font-size:72.000000pt;}
.y0_c01317{bottom:0.000000pt;}
.y24_c01317{bottom:2.760000pt;}
.y23_c01317{bottom:6.425219pt;}
.y22_c01317{bottom:69.613333pt;}
.y21_c01317{bottom:92.413333pt;}
.y20_c01317{bottom:114.413333pt;}
.y1f_c01317{bottom:136.280000pt;}
.y1e_c01317{bottom:158.146667pt;}
.y1d_c01317{bottom:180.280000pt;}
.y1c_c01317{bottom:201.880000pt;}
.y1b_c01317{bottom:224.146667pt;}
.y1a_c01317{bottom:244.813333pt;}
.y19_c01317{bottom:267.080000pt;}
.y18_c01317{bottom:289.480000pt;}
.y17_c01317{bottom:311.213333pt;}
.y16_c01317{bottom:332.813333pt;}
.y15_c01317{bottom:354.680000pt;}
.y14_c01317{bottom:376.813333pt;}
.y13_c01317{bottom:398.413333pt;}
.y12_c01317{bottom:419.746667pt;}
.y11_c01317{bottom:441.346667pt;}
.y10_c01317{bottom:462.946667pt;}
.yf_c01317{bottom:484.546667pt;}
.ye_c01317{bottom:505.880000pt;}
.yd_c01317{bottom:527.746667pt;}
.yc_c01317{bottom:549.346667pt;}
.yb_c01317{bottom:571.213333pt;}
.ya_c01317{bottom:593.080000pt;}
.y9_c01317{bottom:613.613333pt;}
.y8_c01317{bottom:637.213333pt;}
.y7_c01317{bottom:658.013333pt;}
.y6_c01317{bottom:679.613333pt;}
.y5_c01317{bottom:701.480000pt;}
.y4_c01317{bottom:722.413333pt;}
.y3_c01317{bottom:744.413333pt;}
.y2_c01317{bottom:766.013333pt;}
.y1_c01317{bottom:787.613333pt;}
.h4_c01317{height:11.733399pt;}
.h5_c01317{height:38.937500pt;}
.h2_c01317{height:70.664062pt;}
.h3_c01317{height:74.906250pt;}
.h1_c01317{height:876.666667pt;}
.h0_c01317{height:876.733333pt;}
.w2_c01317{width:93.222667pt;}
.w0_c01317{width:593.266667pt;}
.w1_c01317{width:593.333333pt;}
.x0_c01317{left:0.000000pt;}
.x5_c01317{left:112.533333pt;}
.x3_c01317{left:113.733333pt;}
.x2_c01317{left:114.666667pt;}
.x1_c01317{left:115.733333pt;}
.x4_c01317{left:137.466667pt;}
.x6_c01317{left:253.801554pt;}
}





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

.ir_c01318:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01318{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01318;src:url('chunks/assets/font_52beca4b0b20dc7788a32bf0.woff2')format("woff");}.ff1_c01318{font-family:ff1_c01318;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01318;src:url('chunks/assets/font_fc97348c99cae9e93a8c86a1.woff2')format("woff");}.ff2_c01318{font-family:ff2_c01318;line-height:1.401855;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01318;src:url('chunks/assets/font_02f00fa1cc42935e16986430.woff2')format("woff");}.ff3_c01318{font-family:ff3_c01318;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01318;src:url('chunks/assets/font_bd3fda75a19415f27843a500.woff2')format("woff");}.ff4_c01318{font-family:ff4_c01318;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01318;src:url('chunks/assets/font_5626f08fdb8c56557f5eb881.woff2')format("woff");}.ff5_c01318{font-family:ff5_c01318;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01318;src:url('chunks/assets/font_694229faf858381360993e5b.woff2')format("woff");}.ff6_c01318{font-family:ff6_c01318;line-height:1.437000;font-style:normal;font-weight: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_c01318;src:url('chunks/assets/font_2aab55cca5bc07284bf55780.woff2')format("woff");}.ff7_c01318{font-family:ff7_c01318;line-height:1.437000;font-style:normal;font-weight: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_c01318;src:url('chunks/assets/font_dbed10c79883269f8f9fe22e.woff2')format("woff");}.ff8_c01318{font-family:ff8_c01318;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c01318;src:url('chunks/assets/font_0d6777cd4a6d842c2e7518d2.woff2')format("woff");}.ff9_c01318{font-family:ff9_c01318;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c01318;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ffa_c01318{font-family:ffa_c01318;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01318{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01318{vertical-align:0.000000px;}
.ls4_c01318{letter-spacing:-12.000000px;}
.ls2_c01318{letter-spacing:0.000000px;}
.ls0_c01318{letter-spacing:2.100000px;}
.ls1_c01318{letter-spacing:3.936000px;}
.ls5_c01318{letter-spacing:9.000000px;}
.ls3_c01318{letter-spacing:15.000000px;}
.sc__c01318{text-shadow:none;}
.sc0_c01318{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01318{-webkit-text-stroke:0px transparent;}
.sc0_c01318{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01318{word-spacing:-47.850000px;}
.ws5_c01318{word-spacing:-42.000000px;}
.ws3_c01318{word-spacing:-35.250000px;}
.ws1_c01318{word-spacing:-27.000000px;}
.ws2_c01318{word-spacing:-17.352000px;}
.ws4_c01318{word-spacing:-16.083000px;}
.ws6_c01318{word-spacing:0.000000px;}
._26_c01318{margin-left:-30.186000px;}
._1e_c01318{margin-left:-27.621000px;}
._5_c01318{margin-left:-21.060000px;}
._2e_c01318{margin-left:-19.716000px;}
._1a_c01318{margin-left:-17.859000px;}
._25_c01318{margin-left:-15.456000px;}
._17_c01318{margin-left:-13.950000px;}
._12_c01318{margin-left:-12.378000px;}
._6_c01318{margin-left:-11.016000px;}
._3_c01318{margin-left:-9.288000px;}
._1c_c01318{margin-left:-8.262000px;}
._4_c01318{margin-left:-7.128000px;}
._2_c01318{margin-left:-6.048000px;}
._b_c01318{margin-left:-4.986000px;}
._8_c01318{margin-left:-3.954000px;}
._0_c01318{margin-left:-2.700000px;}
._7_c01318{margin-left:-1.512000px;}
._e_c01318{width:1.215000px;}
._f_c01318{width:2.820000px;}
._10_c01318{width:3.873000px;}
._9_c01318{width:5.118000px;}
._14_c01318{width:6.801000px;}
._d_c01318{width:8.313000px;}
._1_c01318{width:10.152000px;}
._19_c01318{width:11.478000px;}
._13_c01318{width:12.918000px;}
._20_c01318{width:14.733000px;}
._16_c01318{width:15.831000px;}
._29_c01318{width:16.884000px;}
._2a_c01318{width:18.426000px;}
._a_c01318{width:19.722000px;}
._28_c01318{width:21.780000px;}
._2d_c01318{width:24.321000px;}
._15_c01318{width:26.061000px;}
._2b_c01318{width:33.090000px;}
._11_c01318{width:36.708000px;}
._2f_c01318{width:39.951000px;}
._22_c01318{width:44.226000px;}
._18_c01318{width:50.004000px;}
._2c_c01318{width:51.741000px;}
._23_c01318{width:53.661000px;}
._c_c01318{width:61.842000px;}
._1f_c01318{width:130.293000px;}
._21_c01318{width:132.906000px;}
._1b_c01318{width:138.510000px;}
._1d_c01318{width:186.228000px;}
._24_c01318{width:203.349000px;}
._27_c01318{width:249.804000px;}
._30_c01318{width:292.923000px;}
.fc2_c01318{color:transparent;}
.fc1_c01318{color:rgb(128,128,128);}
.fc0_c01318{color:rgb(0,0,0);}
.fs7_c01318{font-size:48.000000px;}
.fs6_c01318{font-size:66.000000px;}
.fs4_c01318{font-size:69.000000px;}
.fs3_c01318{font-size:72.000000px;}
.fs2_c01318{font-size:81.000000px;}
.fs1_c01318{font-size:87.000000px;}
.fs0_c01318{font-size:108.000000px;}
.fs5_c01318{font-size:111.000000px;}
.y0_c01318{bottom:0.000000px;}
.y25_c01318{bottom:3.105000px;}
.y24_c01318{bottom:7.228355px;}
.y23_c01318{bottom:95.385000px;}
.y22_c01318{bottom:119.685000px;}
.y21_c01318{bottom:145.035000px;}
.y20_c01318{bottom:169.635000px;}
.y1f_c01318{bottom:194.085000px;}
.y1e_c01318{bottom:218.685000px;}
.y1d_c01318{bottom:242.985000px;}
.y1c_c01318{bottom:266.985000px;}
.y1b_c01318{bottom:291.885000px;}
.y1a_c01318{bottom:316.185000px;}
.y19_c01318{bottom:341.085000px;}
.y18_c01318{bottom:364.785000px;}
.y17_c01318{bottom:389.085000px;}
.y16_c01318{bottom:413.385000px;}
.y15_c01318{bottom:437.385000px;}
.y14_c01318{bottom:461.385000px;}
.y13_c01318{bottom:485.685000px;}
.y12_c01318{bottom:509.535000px;}
.y11_c01318{bottom:534.285000px;}
.y10_c01318{bottom:558.585000px;}
.yf_c01318{bottom:581.535000px;}
.ye_c01318{bottom:605.835000px;}
.yd_c01318{bottom:629.685000px;}
.yc_c01318{bottom:654.435000px;}
.yb_c01318{bottom:678.585000px;}
.ya_c01318{bottom:702.285000px;}
.y9_c01318{bottom:728.985000px;}
.y8_c01318{bottom:752.535000px;}
.y7_c01318{bottom:773.085000px;}
.y6_c01318{bottom:798.435000px;}
.y5_c01318{bottom:823.185000px;}
.y4_c01318{bottom:847.485000px;}
.y3_c01318{bottom:871.035000px;}
.y2_c01318{bottom:896.385000px;}
.y1_c01318{bottom:929.685000px;}
.h6_c01318{height:13.200074px;}
.h7_c01318{height:43.804688px;}
.h3_c01318{height:79.497070px;}
.h4_c01318{height:84.269531px;}
.h2_c01318{height:105.943359px;}
.h5_c01318{height:120.324000px;}
.h0_c01318{height:977.925000px;}
.h1_c01318{height:978.000000px;}
.w2_c01318{width:104.875500px;}
.w0_c01318{width:665.850000px;}
.w1_c01318{width:666.000000px;}
.x0_c01318{left:0.000000px;}
.x4_c01318{left:34.800000px;}
.x2_c01318{left:58.500000px;}
.x3_c01318{left:59.700000px;}
.x1_c01318{left:68.250000px;}
.x6_c01318{left:284.739258px;}
.x5_c01318{left:388.200000px;}
@media print{
.v0_c01318{vertical-align:0.000000pt;}
.ls4_c01318{letter-spacing:-10.666667pt;}
.ls2_c01318{letter-spacing:0.000000pt;}
.ls0_c01318{letter-spacing:1.866667pt;}
.ls1_c01318{letter-spacing:3.498667pt;}
.ls5_c01318{letter-spacing:8.000000pt;}
.ls3_c01318{letter-spacing:13.333333pt;}
.ws0_c01318{word-spacing:-42.533333pt;}
.ws5_c01318{word-spacing:-37.333333pt;}
.ws3_c01318{word-spacing:-31.333333pt;}
.ws1_c01318{word-spacing:-24.000000pt;}
.ws2_c01318{word-spacing:-15.424000pt;}
.ws4_c01318{word-spacing:-14.296000pt;}
.ws6_c01318{word-spacing:0.000000pt;}
._26_c01318{margin-left:-26.832000pt;}
._1e_c01318{margin-left:-24.552000pt;}
._5_c01318{margin-left:-18.720000pt;}
._2e_c01318{margin-left:-17.525333pt;}
._1a_c01318{margin-left:-15.874667pt;}
._25_c01318{margin-left:-13.738667pt;}
._17_c01318{margin-left:-12.400000pt;}
._12_c01318{margin-left:-11.002667pt;}
._6_c01318{margin-left:-9.792000pt;}
._3_c01318{margin-left:-8.256000pt;}
._1c_c01318{margin-left:-7.344000pt;}
._4_c01318{margin-left:-6.336000pt;}
._2_c01318{margin-left:-5.376000pt;}
._b_c01318{margin-left:-4.432000pt;}
._8_c01318{margin-left:-3.514667pt;}
._0_c01318{margin-left:-2.400000pt;}
._7_c01318{margin-left:-1.344000pt;}
._e_c01318{width:1.080000pt;}
._f_c01318{width:2.506667pt;}
._10_c01318{width:3.442667pt;}
._9_c01318{width:4.549333pt;}
._14_c01318{width:6.045333pt;}
._d_c01318{width:7.389333pt;}
._1_c01318{width:9.024000pt;}
._19_c01318{width:10.202667pt;}
._13_c01318{width:11.482667pt;}
._20_c01318{width:13.096000pt;}
._16_c01318{width:14.072000pt;}
._29_c01318{width:15.008000pt;}
._2a_c01318{width:16.378667pt;}
._a_c01318{width:17.530667pt;}
._28_c01318{width:19.360000pt;}
._2d_c01318{width:21.618667pt;}
._15_c01318{width:23.165333pt;}
._2b_c01318{width:29.413333pt;}
._11_c01318{width:32.629333pt;}
._2f_c01318{width:35.512000pt;}
._22_c01318{width:39.312000pt;}
._18_c01318{width:44.448000pt;}
._2c_c01318{width:45.992000pt;}
._23_c01318{width:47.698667pt;}
._c_c01318{width:54.970667pt;}
._1f_c01318{width:115.816000pt;}
._21_c01318{width:118.138667pt;}
._1b_c01318{width:123.120000pt;}
._1d_c01318{width:165.536000pt;}
._24_c01318{width:180.754667pt;}
._27_c01318{width:222.048000pt;}
._30_c01318{width:260.376000pt;}
.fs7_c01318{font-size:42.666667pt;}
.fs6_c01318{font-size:58.666667pt;}
.fs4_c01318{font-size:61.333333pt;}
.fs3_c01318{font-size:64.000000pt;}
.fs2_c01318{font-size:72.000000pt;}
.fs1_c01318{font-size:77.333333pt;}
.fs0_c01318{font-size:96.000000pt;}
.fs5_c01318{font-size:98.666667pt;}
.y0_c01318{bottom:0.000000pt;}
.y25_c01318{bottom:2.760000pt;}
.y24_c01318{bottom:6.425204pt;}
.y23_c01318{bottom:84.786667pt;}
.y22_c01318{bottom:106.386667pt;}
.y21_c01318{bottom:128.920000pt;}
.y20_c01318{bottom:150.786667pt;}
.y1f_c01318{bottom:172.520000pt;}
.y1e_c01318{bottom:194.386667pt;}
.y1d_c01318{bottom:215.986667pt;}
.y1c_c01318{bottom:237.320000pt;}
.y1b_c01318{bottom:259.453333pt;}
.y1a_c01318{bottom:281.053333pt;}
.y19_c01318{bottom:303.186667pt;}
.y18_c01318{bottom:324.253333pt;}
.y17_c01318{bottom:345.853333pt;}
.y16_c01318{bottom:367.453333pt;}
.y15_c01318{bottom:388.786667pt;}
.y14_c01318{bottom:410.120000pt;}
.y13_c01318{bottom:431.720000pt;}
.y12_c01318{bottom:452.920000pt;}
.y11_c01318{bottom:474.920000pt;}
.y10_c01318{bottom:496.520000pt;}
.yf_c01318{bottom:516.920000pt;}
.ye_c01318{bottom:538.520000pt;}
.yd_c01318{bottom:559.720000pt;}
.yc_c01318{bottom:581.720000pt;}
.yb_c01318{bottom:603.186667pt;}
.ya_c01318{bottom:624.253333pt;}
.y9_c01318{bottom:647.986667pt;}
.y8_c01318{bottom:668.920000pt;}
.y7_c01318{bottom:687.186667pt;}
.y6_c01318{bottom:709.720000pt;}
.y5_c01318{bottom:731.720000pt;}
.y4_c01318{bottom:753.320000pt;}
.y3_c01318{bottom:774.253333pt;}
.y2_c01318{bottom:796.786667pt;}
.y1_c01318{bottom:826.386667pt;}
.h6_c01318{height:11.733399pt;}
.h7_c01318{height:38.937500pt;}
.h3_c01318{height:70.664062pt;}
.h4_c01318{height:74.906250pt;}
.h2_c01318{height:94.171875pt;}
.h5_c01318{height:106.954667pt;}
.h0_c01318{height:869.266667pt;}
.h1_c01318{height:869.333333pt;}
.w2_c01318{width:93.222667pt;}
.w0_c01318{width:591.866667pt;}
.w1_c01318{width:592.000000pt;}
.x0_c01318{left:0.000000pt;}
.x4_c01318{left:30.933333pt;}
.x2_c01318{left:52.000000pt;}
.x3_c01318{left:53.066667pt;}
.x1_c01318{left:60.666667pt;}
.x6_c01318{left:253.101563pt;}
.x5_c01318{left:345.066667pt;}
}





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

.ir_c01319:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01319{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01319;src:url('chunks/assets/font_a7d3fa26f18bad8c7c7524ee.woff2')format("woff");}.ff1_c01319{font-family:ff1_c01319;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01319;src:url('chunks/assets/font_df14ae5f9921558a5e9f479a.woff2')format("woff");}.ff2_c01319{font-family:ff2_c01319;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01319;src:url('chunks/assets/font_b8971b11d08da984f398d78a.woff2')format("woff");}.ff3_c01319{font-family:ff3_c01319;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01319;src:url('chunks/assets/font_920e05d35365ccbf16106173.woff2')format("woff");}.ff4_c01319{font-family:ff4_c01319;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01319;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c01319{font-family:ff5_c01319;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01319{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01319{vertical-align:0.000000px;}
.ls1_c01319{letter-spacing:-9.000000px;}
.ls2_c01319{letter-spacing:0.000000px;}
.ls0_c01319{letter-spacing:1.620000px;}
.ls3_c01319{letter-spacing:9.000000px;}
.sc__c01319{text-shadow:none;}
.sc0_c01319{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01319{-webkit-text-stroke:0px transparent;}
.sc0_c01319{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c01319{word-spacing:-47.100000px;}
.ws1_c01319{word-spacing:-41.700000px;}
.ws0_c01319{word-spacing:-24.750000px;}
.ws2_c01319{word-spacing:-22.500000px;}
.ws4_c01319{word-spacing:0.000000px;}
._24_c01319{margin-left:-37.230000px;}
._28_c01319{margin-left:-34.815000px;}
._1f_c01319{margin-left:-33.456000px;}
._9_c01319{margin-left:-32.334000px;}
._1_c01319{margin-left:-31.008000px;}
._1e_c01319{margin-left:-29.751000px;}
._a_c01319{margin-left:-27.744000px;}
._5_c01319{margin-left:-26.724000px;}
._4_c01319{margin-left:-24.888000px;}
._f_c01319{margin-left:-23.766000px;}
._11_c01319{margin-left:-21.726000px;}
._3_c01319{margin-left:-20.094000px;}
._1d_c01319{margin-left:-18.768000px;}
._10_c01319{margin-left:-17.238000px;}
._e_c01319{margin-left:-16.116000px;}
._d_c01319{margin-left:-14.790000px;}
._6_c01319{margin-left:-13.464000px;}
._16_c01319{margin-left:-12.342000px;}
._1c_c01319{margin-left:-11.220000px;}
._7_c01319{margin-left:-10.200000px;}
._c_c01319{margin-left:-8.262000px;}
._b_c01319{margin-left:-7.242000px;}
._12_c01319{margin-left:-5.508000px;}
._0_c01319{margin-left:-4.488000px;}
._8_c01319{margin-left:-3.060000px;}
._18_c01319{margin-left:-1.836000px;}
._19_c01319{width:1.191000px;}
._13_c01319{width:2.193000px;}
._14_c01319{width:3.411000px;}
._15_c01319{width:4.602000px;}
._23_c01319{width:5.610000px;}
._20_c01319{width:6.732000px;}
._2_c01319{width:7.854000px;}
._2e_c01319{width:9.465000px;}
._22_c01319{width:11.538000px;}
._29_c01319{width:12.615000px;}
._17_c01319{width:13.887000px;}
._1a_c01319{width:15.462000px;}
._25_c01319{width:18.666000px;}
._2f_c01319{width:22.380000px;}
._30_c01319{width:29.874000px;}
._2b_c01319{width:69.768000px;}
._1b_c01319{width:115.668000px;}
._27_c01319{width:168.300000px;}
._21_c01319{width:177.996000px;}
._26_c01319{width:281.154000px;}
._2c_c01319{width:349.902000px;}
._2d_c01319{width:886.638000px;}
._2a_c01319{width:976.872000px;}
.fc2_c01319{color:transparent;}
.fc1_c01319{color:rgb(128,128,128);}
.fc0_c01319{color:rgb(0,0,0);}
.fs7_c01319{font-size:48.000000px;}
.fs5_c01319{font-size:69.000000px;}
.fs3_c01319{font-size:75.000000px;}
.fs6_c01319{font-size:78.000000px;}
.fs1_c01319{font-size:81.000000px;}
.fs4_c01319{font-size:90.000000px;}
.fs2_c01319{font-size:99.000000px;}
.fs0_c01319{font-size:102.000000px;}
.y0_c01319{bottom:0.000000px;}
.y25_c01319{bottom:3.105000px;}
.y24_c01319{bottom:7.228371px;}
.y23_c01319{bottom:58.065000px;}
.y22_c01319{bottom:86.415000px;}
.y21_c01319{bottom:111.765000px;}
.y20_c01319{bottom:135.765000px;}
.y1f_c01319{bottom:155.715000px;}
.y1e_c01319{bottom:189.315000px;}
.y1d_c01319{bottom:207.315000px;}
.y1c_c01319{bottom:234.315000px;}
.y1b_c01319{bottom:258.165000px;}
.y1a_c01319{bottom:283.215000px;}
.y19_c01319{bottom:305.865000px;}
.y18_c01319{bottom:332.115000px;}
.y17_c01319{bottom:355.515000px;}
.y16_c01319{bottom:377.415000px;}
.y15_c01319{bottom:403.065000px;}
.y14_c01319{bottom:431.115000px;}
.y13_c01319{bottom:453.915000px;}
.y12_c01319{bottom:473.565000px;}
.y11_c01319{bottom:503.265000px;}
.y10_c01319{bottom:527.565000px;}
.yf_c01319{bottom:552.165000px;}
.ye_c01319{bottom:574.065000px;}
.yd_c01319{bottom:595.365000px;}
.yc_c01319{bottom:620.415000px;}
.yb_c01319{bottom:648.315000px;}
.ya_c01319{bottom:672.765000px;}
.y9_c01319{bottom:697.665000px;}
.y8_c01319{bottom:722.265000px;}
.y7_c01319{bottom:748.215000px;}
.y6_c01319{bottom:770.565000px;}
.y5_c01319{bottom:794.565000px;}
.y4_c01319{bottom:817.815000px;}
.y3_c01319{bottom:843.465000px;}
.y2_c01319{bottom:867.465000px;}
.y1_c01319{bottom:891.465000px;}
.h5_c01319{height:13.200074px;}
.h6_c01319{height:43.804688px;}
.h3_c01319{height:73.571777px;}
.h4_c01319{height:78.609375px;}
.h2_c01319{height:104.839927px;}
.h1_c01319{height:986.250000px;}
.h0_c01319{height:986.325000px;}
.w2_c01319{width:104.875500px;}
.w0_c01319{width:667.425000px;}
.w1_c01319{width:667.500000px;}
.x0_c01319{left:0.000000px;}
.xf_c01319{left:26.700000px;}
.x8_c01319{left:35.850000px;}
.x4_c01319{left:37.500000px;}
.x5_c01319{left:38.700000px;}
.x9_c01319{left:48.300000px;}
.x3_c01319{left:57.600000px;}
.xb_c01319{left:65.100000px;}
.x7_c01319{left:105.000000px;}
.xd_c01319{left:121.800000px;}
.xc_c01319{left:122.850000px;}
.x6_c01319{left:123.900000px;}
.x2_c01319{left:125.550000px;}
.x1_c01319{left:126.600000px;}
.xe_c01319{left:148.800000px;}
.x11_c01319{left:285.526749px;}
.xa_c01319{left:403.050000px;}
.x10_c01319{left:574.350000px;}
@media print{
.v0_c01319{vertical-align:0.000000pt;}
.ls1_c01319{letter-spacing:-8.000000pt;}
.ls2_c01319{letter-spacing:0.000000pt;}
.ls0_c01319{letter-spacing:1.440000pt;}
.ls3_c01319{letter-spacing:8.000000pt;}
.ws3_c01319{word-spacing:-41.866667pt;}
.ws1_c01319{word-spacing:-37.066667pt;}
.ws0_c01319{word-spacing:-22.000000pt;}
.ws2_c01319{word-spacing:-20.000000pt;}
.ws4_c01319{word-spacing:0.000000pt;}
._24_c01319{margin-left:-33.093333pt;}
._28_c01319{margin-left:-30.946667pt;}
._1f_c01319{margin-left:-29.738667pt;}
._9_c01319{margin-left:-28.741333pt;}
._1_c01319{margin-left:-27.562667pt;}
._1e_c01319{margin-left:-26.445333pt;}
._a_c01319{margin-left:-24.661333pt;}
._5_c01319{margin-left:-23.754667pt;}
._4_c01319{margin-left:-22.122667pt;}
._f_c01319{margin-left:-21.125333pt;}
._11_c01319{margin-left:-19.312000pt;}
._3_c01319{margin-left:-17.861333pt;}
._1d_c01319{margin-left:-16.682667pt;}
._10_c01319{margin-left:-15.322667pt;}
._e_c01319{margin-left:-14.325333pt;}
._d_c01319{margin-left:-13.146667pt;}
._6_c01319{margin-left:-11.968000pt;}
._16_c01319{margin-left:-10.970667pt;}
._1c_c01319{margin-left:-9.973333pt;}
._7_c01319{margin-left:-9.066667pt;}
._c_c01319{margin-left:-7.344000pt;}
._b_c01319{margin-left:-6.437333pt;}
._12_c01319{margin-left:-4.896000pt;}
._0_c01319{margin-left:-3.989333pt;}
._8_c01319{margin-left:-2.720000pt;}
._18_c01319{margin-left:-1.632000pt;}
._19_c01319{width:1.058667pt;}
._13_c01319{width:1.949333pt;}
._14_c01319{width:3.032000pt;}
._15_c01319{width:4.090667pt;}
._23_c01319{width:4.986667pt;}
._20_c01319{width:5.984000pt;}
._2_c01319{width:6.981333pt;}
._2e_c01319{width:8.413333pt;}
._22_c01319{width:10.256000pt;}
._29_c01319{width:11.213333pt;}
._17_c01319{width:12.344000pt;}
._1a_c01319{width:13.744000pt;}
._25_c01319{width:16.592000pt;}
._2f_c01319{width:19.893333pt;}
._30_c01319{width:26.554667pt;}
._2b_c01319{width:62.016000pt;}
._1b_c01319{width:102.816000pt;}
._27_c01319{width:149.600000pt;}
._21_c01319{width:158.218667pt;}
._26_c01319{width:249.914667pt;}
._2c_c01319{width:311.024000pt;}
._2d_c01319{width:788.122667pt;}
._2a_c01319{width:868.330667pt;}
.fs7_c01319{font-size:42.666667pt;}
.fs5_c01319{font-size:61.333333pt;}
.fs3_c01319{font-size:66.666667pt;}
.fs6_c01319{font-size:69.333333pt;}
.fs1_c01319{font-size:72.000000pt;}
.fs4_c01319{font-size:80.000000pt;}
.fs2_c01319{font-size:88.000000pt;}
.fs0_c01319{font-size:90.666667pt;}
.y0_c01319{bottom:0.000000pt;}
.y25_c01319{bottom:2.760000pt;}
.y24_c01319{bottom:6.425219pt;}
.y23_c01319{bottom:51.613333pt;}
.y22_c01319{bottom:76.813333pt;}
.y21_c01319{bottom:99.346667pt;}
.y20_c01319{bottom:120.680000pt;}
.y1f_c01319{bottom:138.413333pt;}
.y1e_c01319{bottom:168.280000pt;}
.y1d_c01319{bottom:184.280000pt;}
.y1c_c01319{bottom:208.280000pt;}
.y1b_c01319{bottom:229.480000pt;}
.y1a_c01319{bottom:251.746667pt;}
.y19_c01319{bottom:271.880000pt;}
.y18_c01319{bottom:295.213333pt;}
.y17_c01319{bottom:316.013333pt;}
.y16_c01319{bottom:335.480000pt;}
.y15_c01319{bottom:358.280000pt;}
.y14_c01319{bottom:383.213333pt;}
.y13_c01319{bottom:403.480000pt;}
.y12_c01319{bottom:420.946667pt;}
.y11_c01319{bottom:447.346667pt;}
.y10_c01319{bottom:468.946667pt;}
.yf_c01319{bottom:490.813333pt;}
.ye_c01319{bottom:510.280000pt;}
.yd_c01319{bottom:529.213333pt;}
.yc_c01319{bottom:551.480000pt;}
.yb_c01319{bottom:576.280000pt;}
.ya_c01319{bottom:598.013333pt;}
.y9_c01319{bottom:620.146667pt;}
.y8_c01319{bottom:642.013333pt;}
.y7_c01319{bottom:665.080000pt;}
.y6_c01319{bottom:684.946667pt;}
.y5_c01319{bottom:706.280000pt;}
.y4_c01319{bottom:726.946667pt;}
.y3_c01319{bottom:749.746667pt;}
.y2_c01319{bottom:771.080000pt;}
.y1_c01319{bottom:792.413333pt;}
.h5_c01319{height:11.733399pt;}
.h6_c01319{height:38.937500pt;}
.h3_c01319{height:65.397135pt;}
.h4_c01319{height:69.875000pt;}
.h2_c01319{height:93.191046pt;}
.h1_c01319{height:876.666667pt;}
.h0_c01319{height:876.733333pt;}
.w2_c01319{width:93.222667pt;}
.w0_c01319{width:593.266667pt;}
.w1_c01319{width:593.333333pt;}
.x0_c01319{left:0.000000pt;}
.xf_c01319{left:23.733333pt;}
.x8_c01319{left:31.866667pt;}
.x4_c01319{left:33.333333pt;}
.x5_c01319{left:34.400000pt;}
.x9_c01319{left:42.933333pt;}
.x3_c01319{left:51.200000pt;}
.xb_c01319{left:57.866667pt;}
.x7_c01319{left:93.333333pt;}
.xd_c01319{left:108.266667pt;}
.xc_c01319{left:109.200000pt;}
.x6_c01319{left:110.133333pt;}
.x2_c01319{left:111.600000pt;}
.x1_c01319{left:112.533333pt;}
.xe_c01319{left:132.266667pt;}
.x11_c01319{left:253.801554pt;}
.xa_c01319{left:358.266667pt;}
.x10_c01319{left:510.533333pt;}
}





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

.ir_c01320:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01320{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01320;src:url('chunks/assets/font_73f7feade4253fe310a1e003.woff2')format("woff");}.ff1_c01320{font-family:ff1_c01320;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01320;src:url('chunks/assets/font_b51285344d75eaa1deae932c.woff2')format("woff");}.ff2_c01320{font-family:ff2_c01320;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01320;src:url('chunks/assets/font_2e87ace04e97e352f4ab83a7.woff2')format("woff");}.ff3_c01320{font-family:ff3_c01320;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01320;src:url('chunks/assets/font_c76ca343af208eaee1996875.woff2')format("woff");}.ff4_c01320{font-family:ff4_c01320;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01320;src:url('chunks/assets/font_30847add799abb1bb6b78eab.woff2')format("woff");}.ff5_c01320{font-family:ff5_c01320;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01320;src:url('chunks/assets/font_fd47749afdef20f5b9100cba.woff2')format("woff");}.ff6_c01320{font-family:ff6_c01320;line-height:1.311035;font-style:normal;font-weight: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_c01320;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c01320{font-family:ff7_c01320;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01320{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01320{vertical-align:-117.600000px;}
.v0_c01320{vertical-align:0.000000px;}
.ls2_c01320{letter-spacing:0.000000px;}
.ls3_c01320{letter-spacing:6.000000px;}
.ls0_c01320{letter-spacing:9.750000px;}
.ls1_c01320{letter-spacing:14.664000px;}
.sc__c01320{text-shadow:none;}
.sc0_c01320{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01320{-webkit-text-stroke:0px transparent;}
.sc0_c01320{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01320{word-spacing:-17.352000px;}
.ws1_c01320{word-spacing:-17.250000px;}
.ws3_c01320{word-spacing:0.000000px;}
.ws2_c01320{word-spacing:1139.688000px;}
._21_c01320{margin-left:-29.721000px;}
._1a_c01320{margin-left:-22.620000px;}
._20_c01320{margin-left:-19.896000px;}
._17_c01320{margin-left:-10.377000px;}
._e_c01320{margin-left:-8.478000px;}
._a_c01320{margin-left:-6.804000px;}
._4_c01320{margin-left:-5.742000px;}
._19_c01320{margin-left:-4.608000px;}
._2_c01320{margin-left:-3.366000px;}
._1_c01320{margin-left:-2.178000px;}
._3_c01320{margin-left:-1.089000px;}
._0_c01320{width:1.485000px;}
._7_c01320{width:3.042000px;}
._6_c01320{width:4.134000px;}
._5_c01320{width:5.226000px;}
._c_c01320{width:6.240000px;}
._8_c01320{width:7.410000px;}
._10_c01320{width:9.105000px;}
._1e_c01320{width:10.419000px;}
._b_c01320{width:11.748000px;}
._18_c01320{width:12.792000px;}
._12_c01320{width:13.848000px;}
._15_c01320{width:15.207000px;}
._f_c01320{width:18.528000px;}
._1c_c01320{width:20.046000px;}
._11_c01320{width:21.132000px;}
._13_c01320{width:22.731000px;}
._1f_c01320{width:23.919000px;}
._1b_c01320{width:26.499000px;}
._16_c01320{width:28.380000px;}
._14_c01320{width:33.327000px;}
._22_c01320{width:46.275000px;}
._1d_c01320{width:48.252000px;}
._9_c01320{width:87.594000px;}
._d_c01320{width:141.477000px;}
._23_c01320{width:275.283000px;}
.fc2_c01320{color:transparent;}
.fc1_c01320{color:rgb(128,128,128);}
.fc0_c01320{color:rgb(0,0,0);}
.fs4_c01320{font-size:48.000000px;}
.fs3_c01320{font-size:69.000000px;}
.fs2_c01320{font-size:72.000000px;}
.fs1_c01320{font-size:78.000000px;}
.fs0_c01320{font-size:99.000000px;}
.y0_c01320{bottom:0.000000px;}
.y25_c01320{bottom:3.105000px;}
.y24_c01320{bottom:7.228369px;}
.y23_c01320{bottom:73.170000px;}
.y22_c01320{bottom:93.870000px;}
.y21_c01320{bottom:118.470000px;}
.y20_c01320{bottom:144.120000px;}
.y1f_c01320{bottom:168.720000px;}
.y1e_c01320{bottom:193.620000px;}
.y1d_c01320{bottom:217.020000px;}
.y1c_c01320{bottom:241.920000px;}
.y1b_c01320{bottom:266.670000px;}
.y1a_c01320{bottom:291.270000px;}
.y19_c01320{bottom:315.570000px;}
.y18_c01320{bottom:340.170000px;}
.y17_c01320{bottom:365.220000px;}
.y16_c01320{bottom:389.820000px;}
.y15_c01320{bottom:414.120000px;}
.y14_c01320{bottom:437.970000px;}
.y13_c01320{bottom:462.270000px;}
.y12_c01320{bottom:486.570000px;}
.y11_c01320{bottom:510.870000px;}
.y10_c01320{bottom:535.170000px;}
.yf_c01320{bottom:559.470000px;}
.ye_c01320{bottom:583.770000px;}
.yd_c01320{bottom:607.470000px;}
.yc_c01320{bottom:630.720000px;}
.yb_c01320{bottom:655.770000px;}
.ya_c01320{bottom:680.370000px;}
.y9_c01320{bottom:704.370000px;}
.y8_c01320{bottom:728.970000px;}
.y7_c01320{bottom:753.270000px;}
.y6_c01320{bottom:777.570000px;}
.y5_c01320{bottom:802.170000px;}
.y4_c01320{bottom:826.470000px;}
.y3_c01320{bottom:849.870000px;}
.y2_c01320{bottom:874.170000px;}
.y1_c01320{bottom:910.620000px;}
.h6_c01320{height:13.200073px;}
.h7_c01320{height:43.804688px;}
.h5_c01320{height:72.312000px;}
.h4_c01320{height:83.226000px;}
.h3_c01320{height:84.269531px;}
.h2_c01320{height:115.870605px;}
.h1_c01320{height:986.250000px;}
.h0_c01320{height:986.550000px;}
.w1_c01320{width:104.875500px;}
.w0_c01320{width:672.000000px;}
.x0_c01320{left:0.000000px;}
.x4_c01320{left:57.150000px;}
.x2_c01320{left:59.100000px;}
.x3_c01320{left:61.050000px;}
.x5_c01320{left:62.100000px;}
.x1_c01320{left:75.900000px;}
.x6_c01320{left:287.814240px;}
@media print{
.v1_c01320{vertical-align:-104.533333pt;}
.v0_c01320{vertical-align:0.000000pt;}
.ls2_c01320{letter-spacing:0.000000pt;}
.ls3_c01320{letter-spacing:5.333333pt;}
.ls0_c01320{letter-spacing:8.666667pt;}
.ls1_c01320{letter-spacing:13.034667pt;}
.ws0_c01320{word-spacing:-15.424000pt;}
.ws1_c01320{word-spacing:-15.333333pt;}
.ws3_c01320{word-spacing:0.000000pt;}
.ws2_c01320{word-spacing:1013.056000pt;}
._21_c01320{margin-left:-26.418667pt;}
._1a_c01320{margin-left:-20.106667pt;}
._20_c01320{margin-left:-17.685333pt;}
._17_c01320{margin-left:-9.224000pt;}
._e_c01320{margin-left:-7.536000pt;}
._a_c01320{margin-left:-6.048000pt;}
._4_c01320{margin-left:-5.104000pt;}
._19_c01320{margin-left:-4.096000pt;}
._2_c01320{margin-left:-2.992000pt;}
._1_c01320{margin-left:-1.936000pt;}
._3_c01320{margin-left:-0.968000pt;}
._0_c01320{width:1.320000pt;}
._7_c01320{width:2.704000pt;}
._6_c01320{width:3.674667pt;}
._5_c01320{width:4.645333pt;}
._c_c01320{width:5.546667pt;}
._8_c01320{width:6.586667pt;}
._10_c01320{width:8.093333pt;}
._1e_c01320{width:9.261333pt;}
._b_c01320{width:10.442667pt;}
._18_c01320{width:11.370667pt;}
._12_c01320{width:12.309333pt;}
._15_c01320{width:13.517333pt;}
._f_c01320{width:16.469333pt;}
._1c_c01320{width:17.818667pt;}
._11_c01320{width:18.784000pt;}
._13_c01320{width:20.205333pt;}
._1f_c01320{width:21.261333pt;}
._1b_c01320{width:23.554667pt;}
._16_c01320{width:25.226667pt;}
._14_c01320{width:29.624000pt;}
._22_c01320{width:41.133333pt;}
._1d_c01320{width:42.890667pt;}
._9_c01320{width:77.861333pt;}
._d_c01320{width:125.757333pt;}
._23_c01320{width:244.696000pt;}
.fs4_c01320{font-size:42.666667pt;}
.fs3_c01320{font-size:61.333333pt;}
.fs2_c01320{font-size:64.000000pt;}
.fs1_c01320{font-size:69.333333pt;}
.fs0_c01320{font-size:88.000000pt;}
.y0_c01320{bottom:0.000000pt;}
.y25_c01320{bottom:2.760000pt;}
.y24_c01320{bottom:6.425217pt;}
.y23_c01320{bottom:65.040000pt;}
.y22_c01320{bottom:83.440000pt;}
.y21_c01320{bottom:105.306667pt;}
.y20_c01320{bottom:128.106667pt;}
.y1f_c01320{bottom:149.973333pt;}
.y1e_c01320{bottom:172.106667pt;}
.y1d_c01320{bottom:192.906667pt;}
.y1c_c01320{bottom:215.040000pt;}
.y1b_c01320{bottom:237.040000pt;}
.y1a_c01320{bottom:258.906667pt;}
.y19_c01320{bottom:280.506667pt;}
.y18_c01320{bottom:302.373333pt;}
.y17_c01320{bottom:324.640000pt;}
.y16_c01320{bottom:346.506667pt;}
.y15_c01320{bottom:368.106667pt;}
.y14_c01320{bottom:389.306667pt;}
.y13_c01320{bottom:410.906667pt;}
.y12_c01320{bottom:432.506667pt;}
.y11_c01320{bottom:454.106667pt;}
.y10_c01320{bottom:475.706667pt;}
.yf_c01320{bottom:497.306667pt;}
.ye_c01320{bottom:518.906667pt;}
.yd_c01320{bottom:539.973333pt;}
.yc_c01320{bottom:560.640000pt;}
.yb_c01320{bottom:582.906667pt;}
.ya_c01320{bottom:604.773333pt;}
.y9_c01320{bottom:626.106667pt;}
.y8_c01320{bottom:647.973333pt;}
.y7_c01320{bottom:669.573333pt;}
.y6_c01320{bottom:691.173333pt;}
.y5_c01320{bottom:713.040000pt;}
.y4_c01320{bottom:734.640000pt;}
.y3_c01320{bottom:755.440000pt;}
.y2_c01320{bottom:777.040000pt;}
.y1_c01320{bottom:809.440000pt;}
.h6_c01320{height:11.733399pt;}
.h7_c01320{height:38.937500pt;}
.h5_c01320{height:64.277333pt;}
.h4_c01320{height:73.978667pt;}
.h3_c01320{height:74.906250pt;}
.h2_c01320{height:102.996094pt;}
.h1_c01320{height:876.666667pt;}
.h0_c01320{height:876.933333pt;}
.w1_c01320{width:93.222667pt;}
.w0_c01320{width:597.333333pt;}
.x0_c01320{left:0.000000pt;}
.x4_c01320{left:50.800000pt;}
.x2_c01320{left:52.533333pt;}
.x3_c01320{left:54.266667pt;}
.x5_c01320{left:55.200000pt;}
.x1_c01320{left:67.466667pt;}
.x6_c01320{left:255.834880pt;}
}





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

.ir_c01321:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01321{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01321;src:url('chunks/assets/font_a02cfe7d826f7e202277c0ab.woff2')format("woff");}.ff1_c01321{font-family:ff1_c01321;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01321;src:url('chunks/assets/font_fbeb57f0dff4dc52676725fb.woff2')format("woff");}.ff2_c01321{font-family:ff2_c01321;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01321;src:url('chunks/assets/font_b2689d07c59177b1519fdcd3.woff2')format("woff");}.ff3_c01321{font-family:ff3_c01321;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01321;src:url('chunks/assets/font_2ad94c3487c3be153a8257ab.woff2')format("woff");}.ff4_c01321{font-family:ff4_c01321;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01321;src:url('chunks/assets/font_495c796ac649a23f45e0d9c9.woff2')format("woff");}.ff5_c01321{font-family:ff5_c01321;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01321;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c01321{font-family:ff6_c01321;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01321{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01321{vertical-align:-15.000000px;}
.v0_c01321{vertical-align:0.000000px;}
.ls6_c01321{letter-spacing:0.000000px;}
.ls2_c01321{letter-spacing:3.402000px;}
.ls7_c01321{letter-spacing:6.000000px;}
.ls5_c01321{letter-spacing:7.080000px;}
.ls1_c01321{letter-spacing:26.337000px;}
.ls0_c01321{letter-spacing:155.460000px;}
.ls4_c01321{letter-spacing:204.402000px;}
.ls3_c01321{letter-spacing:444.750000px;}
.sc__c01321{text-shadow:none;}
.sc0_c01321{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01321{-webkit-text-stroke:0px transparent;}
.sc0_c01321{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01321{word-spacing:-20.250000px;}
.ws1_c01321{word-spacing:-17.352000px;}
.ws0_c01321{word-spacing:-13.737000px;}
.ws3_c01321{word-spacing:0.000000px;}
._1b_c01321{margin-left:-21.390000px;}
._20_c01321{margin-left:-19.017000px;}
._19_c01321{margin-left:-17.847000px;}
._1d_c01321{margin-left:-16.296000px;}
._12_c01321{margin-left:-12.075000px;}
._1a_c01321{margin-left:-11.070000px;}
._f_c01321{margin-left:-9.099000px;}
._15_c01321{margin-left:-7.341000px;}
._16_c01321{margin-left:-5.448000px;}
._b_c01321{margin-left:-4.293000px;}
._9_c01321{margin-left:-2.673000px;}
._a_c01321{margin-left:-1.518000px;}
._7_c01321{width:1.026000px;}
._8_c01321{width:2.736000px;}
._6_c01321{width:4.332000px;}
._5_c01321{width:5.415000px;}
._0_c01321{width:6.726000px;}
._1_c01321{width:8.151000px;}
._d_c01321{width:9.210000px;}
._4_c01321{width:10.545000px;}
._3_c01321{width:11.970000px;}
._c_c01321{width:13.437000px;}
._17_c01321{width:14.481000px;}
._2_c01321{width:16.473000px;}
._11_c01321{width:18.222000px;}
._1c_c01321{width:20.172000px;}
._25_c01321{width:21.609000px;}
._13_c01321{width:22.854000px;}
._e_c01321{width:24.666000px;}
._22_c01321{width:27.825000px;}
._21_c01321{width:30.378000px;}
._27_c01321{width:32.190000px;}
._24_c01321{width:43.458000px;}
._23_c01321{width:44.739000px;}
._28_c01321{width:63.009000px;}
._1f_c01321{width:103.935000px;}
._10_c01321{width:183.600000px;}
._18_c01321{width:199.584000px;}
._14_c01321{width:210.441000px;}
._26_c01321{width:214.038000px;}
._1e_c01321{width:273.780000px;}
.fc2_c01321{color:transparent;}
.fc1_c01321{color:rgb(128,128,128);}
.fc0_c01321{color:rgb(0,0,0);}
.fs6_c01321{font-size:48.000000px;}
.fs0_c01321{font-size:57.000000px;}
.fs1_c01321{font-size:60.000000px;}
.fs5_c01321{font-size:69.000000px;}
.fs3_c01321{font-size:72.000000px;}
.fs4_c01321{font-size:78.000000px;}
.fs2_c01321{font-size:81.000000px;}
.y0_c01321{bottom:0.000000px;}
.y24_c01321{bottom:3.105000px;}
.y23_c01321{bottom:7.228355px;}
.y22_c01321{bottom:45.885000px;}
.y21_c01321{bottom:71.235000px;}
.y20_c01321{bottom:96.135000px;}
.y1f_c01321{bottom:120.735000px;}
.y1e_c01321{bottom:145.485000px;}
.y1d_c01321{bottom:169.785000px;}
.y1c_c01321{bottom:194.985000px;}
.y1b_c01321{bottom:219.285000px;}
.y1a_c01321{bottom:244.035000px;}
.y19_c01321{bottom:268.935000px;}
.y18_c01321{bottom:293.235000px;}
.y17_c01321{bottom:318.135000px;}
.y16_c01321{bottom:342.435000px;}
.y15_c01321{bottom:367.185000px;}
.y14_c01321{bottom:392.085000px;}
.y13_c01321{bottom:416.685000px;}
.y12_c01321{bottom:438.735000px;}
.y11_c01321{bottom:463.035000px;}
.y10_c01321{bottom:489.735000px;}
.yf_c01321{bottom:514.335000px;}
.ye_c01321{bottom:538.935000px;}
.yd_c01321{bottom:563.535000px;}
.yc_c01321{bottom:588.285000px;}
.yb_c01321{bottom:612.135000px;}
.ya_c01321{bottom:636.735000px;}
.y9_c01321{bottom:661.185000px;}
.y8_c01321{bottom:685.485000px;}
.y7_c01321{bottom:710.085000px;}
.y6_c01321{bottom:734.685000px;}
.y5_c01321{bottom:758.985000px;}
.y4_c01321{bottom:783.585000px;}
.y3_c01321{bottom:811.335000px;}
.y2_c01321{bottom:841.335000px;}
.y1_c01321{bottom:865.035000px;}
.h8_c01321{height:13.200074px;}
.h9_c01321{height:43.804688px;}
.h2_c01321{height:66.713379px;}
.h3_c01321{height:75.966797px;}
.h4_c01321{height:79.497070px;}
.h7_c01321{height:84.269531px;}
.h5_c01321{height:91.160156px;}
.h6_c01321{height:98.756836px;}
.h1_c01321{height:975.000000px;}
.h0_c01321{height:975.225000px;}
.w2_c01321{width:104.875500px;}
.w0_c01321{width:659.850000px;}
.w1_c01321{width:660.000000px;}
.x0_c01321{left:0.000000px;}
.x7_c01321{left:26.700000px;}
.x8_c01321{left:28.650000px;}
.x9_c01321{left:30.150000px;}
.xa_c01321{left:35.100000px;}
.x6_c01321{left:72.600000px;}
.x5_c01321{left:115.200000px;}
.x3_c01321{left:116.400000px;}
.x1_c01321{left:140.700000px;}
.x4_c01321{left:168.450000px;}
.xc_c01321{left:281.739258px;}
.x2_c01321{left:333.450000px;}
.xb_c01321{left:586.200000px;}
@media print{
.v1_c01321{vertical-align:-13.333333pt;}
.v0_c01321{vertical-align:0.000000pt;}
.ls6_c01321{letter-spacing:0.000000pt;}
.ls2_c01321{letter-spacing:3.024000pt;}
.ls7_c01321{letter-spacing:5.333333pt;}
.ls5_c01321{letter-spacing:6.293333pt;}
.ls1_c01321{letter-spacing:23.410667pt;}
.ls0_c01321{letter-spacing:138.186667pt;}
.ls4_c01321{letter-spacing:181.690667pt;}
.ls3_c01321{letter-spacing:395.333333pt;}
.ws2_c01321{word-spacing:-18.000000pt;}
.ws1_c01321{word-spacing:-15.424000pt;}
.ws0_c01321{word-spacing:-12.210667pt;}
.ws3_c01321{word-spacing:0.000000pt;}
._1b_c01321{margin-left:-19.013333pt;}
._20_c01321{margin-left:-16.904000pt;}
._19_c01321{margin-left:-15.864000pt;}
._1d_c01321{margin-left:-14.485333pt;}
._12_c01321{margin-left:-10.733333pt;}
._1a_c01321{margin-left:-9.840000pt;}
._f_c01321{margin-left:-8.088000pt;}
._15_c01321{margin-left:-6.525333pt;}
._16_c01321{margin-left:-4.842667pt;}
._b_c01321{margin-left:-3.816000pt;}
._9_c01321{margin-left:-2.376000pt;}
._a_c01321{margin-left:-1.349333pt;}
._7_c01321{width:0.912000pt;}
._8_c01321{width:2.432000pt;}
._6_c01321{width:3.850667pt;}
._5_c01321{width:4.813333pt;}
._0_c01321{width:5.978667pt;}
._1_c01321{width:7.245333pt;}
._d_c01321{width:8.186667pt;}
._4_c01321{width:9.373333pt;}
._3_c01321{width:10.640000pt;}
._c_c01321{width:11.944000pt;}
._17_c01321{width:12.872000pt;}
._2_c01321{width:14.642667pt;}
._11_c01321{width:16.197333pt;}
._1c_c01321{width:17.930667pt;}
._25_c01321{width:19.208000pt;}
._13_c01321{width:20.314667pt;}
._e_c01321{width:21.925333pt;}
._22_c01321{width:24.733333pt;}
._21_c01321{width:27.002667pt;}
._27_c01321{width:28.613333pt;}
._24_c01321{width:38.629333pt;}
._23_c01321{width:39.768000pt;}
._28_c01321{width:56.008000pt;}
._1f_c01321{width:92.386667pt;}
._10_c01321{width:163.200000pt;}
._18_c01321{width:177.408000pt;}
._14_c01321{width:187.058667pt;}
._26_c01321{width:190.256000pt;}
._1e_c01321{width:243.360000pt;}
.fs6_c01321{font-size:42.666667pt;}
.fs0_c01321{font-size:50.666667pt;}
.fs1_c01321{font-size:53.333333pt;}
.fs5_c01321{font-size:61.333333pt;}
.fs3_c01321{font-size:64.000000pt;}
.fs4_c01321{font-size:69.333333pt;}
.fs2_c01321{font-size:72.000000pt;}
.y0_c01321{bottom:0.000000pt;}
.y24_c01321{bottom:2.760000pt;}
.y23_c01321{bottom:6.425204pt;}
.y22_c01321{bottom:40.786667pt;}
.y21_c01321{bottom:63.320000pt;}
.y20_c01321{bottom:85.453333pt;}
.y1f_c01321{bottom:107.320000pt;}
.y1e_c01321{bottom:129.320000pt;}
.y1d_c01321{bottom:150.920000pt;}
.y1c_c01321{bottom:173.320000pt;}
.y1b_c01321{bottom:194.920000pt;}
.y1a_c01321{bottom:216.920000pt;}
.y19_c01321{bottom:239.053333pt;}
.y18_c01321{bottom:260.653333pt;}
.y17_c01321{bottom:282.786667pt;}
.y16_c01321{bottom:304.386667pt;}
.y15_c01321{bottom:326.386667pt;}
.y14_c01321{bottom:348.520000pt;}
.y13_c01321{bottom:370.386667pt;}
.y12_c01321{bottom:389.986667pt;}
.y11_c01321{bottom:411.586667pt;}
.y10_c01321{bottom:435.320000pt;}
.yf_c01321{bottom:457.186667pt;}
.ye_c01321{bottom:479.053333pt;}
.yd_c01321{bottom:500.920000pt;}
.yc_c01321{bottom:522.920000pt;}
.yb_c01321{bottom:544.120000pt;}
.ya_c01321{bottom:565.986667pt;}
.y9_c01321{bottom:587.720000pt;}
.y8_c01321{bottom:609.320000pt;}
.y7_c01321{bottom:631.186667pt;}
.y6_c01321{bottom:653.053333pt;}
.y5_c01321{bottom:674.653333pt;}
.y4_c01321{bottom:696.520000pt;}
.y3_c01321{bottom:721.186667pt;}
.y2_c01321{bottom:747.853333pt;}
.y1_c01321{bottom:768.920000pt;}
.h8_c01321{height:11.733399pt;}
.h9_c01321{height:38.937500pt;}
.h2_c01321{height:59.300781pt;}
.h3_c01321{height:67.526042pt;}
.h4_c01321{height:70.664062pt;}
.h7_c01321{height:74.906250pt;}
.h5_c01321{height:81.031250pt;}
.h6_c01321{height:87.783854pt;}
.h1_c01321{height:866.666667pt;}
.h0_c01321{height:866.866667pt;}
.w2_c01321{width:93.222667pt;}
.w0_c01321{width:586.533333pt;}
.w1_c01321{width:586.666667pt;}
.x0_c01321{left:0.000000pt;}
.x7_c01321{left:23.733333pt;}
.x8_c01321{left:25.466667pt;}
.x9_c01321{left:26.800000pt;}
.xa_c01321{left:31.200000pt;}
.x6_c01321{left:64.533333pt;}
.x5_c01321{left:102.400000pt;}
.x3_c01321{left:103.466667pt;}
.x1_c01321{left:125.066667pt;}
.x4_c01321{left:149.733333pt;}
.xc_c01321{left:250.434896pt;}
.x2_c01321{left:296.400000pt;}
.xb_c01321{left:521.066667pt;}
}





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

.ir_c01322:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01322{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01322;src:url('chunks/assets/font_dd84933982ae1e0c60d109ea.woff2')format("woff");}.ff1_c01322{font-family:ff1_c01322;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01322;src:url('chunks/assets/font_64e989ae276c4a69f1939e68.woff2')format("woff");}.ff2_c01322{font-family:ff2_c01322;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01322;src:url('chunks/assets/font_7098b265bf8b352afb6d7248.woff2')format("woff");}.ff3_c01322{font-family:ff3_c01322;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01322;src:url('chunks/assets/font_a9267c0a3a8fa5fca2f05e06.woff2')format("woff");}.ff4_c01322{font-family:ff4_c01322;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01322;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c01322{font-family:ff5_c01322;line-height:1.219238;font-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_c01322{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m0_c01322{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01322{vertical-align:0.000000px;}
.ls0_c01322{letter-spacing:0.000000px;}
.ls2_c01322{letter-spacing:3.000000px;}
.ls1_c01322{letter-spacing:9.000000px;}
.sc__c01322{text-shadow:none;}
.sc0_c01322{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01322{-webkit-text-stroke:0px transparent;}
.sc0_c01322{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01322{word-spacing:-59.184000px;}
.ws1_c01322{word-spacing:-16.926000px;}
.ws3_c01322{word-spacing:0.000000px;}
.ws2_c01322{word-spacing:7.359000px;}
._28_c01322{margin-left:-43.680000px;}
._e_c01322{margin-left:-31.254000px;}
._19_c01322{margin-left:-21.840000px;}
._29_c01322{margin-left:-18.018000px;}
._25_c01322{margin-left:-12.090000px;}
._22_c01322{margin-left:-8.736000px;}
._1e_c01322{margin-left:-7.638000px;}
._1f_c01322{margin-left:-6.084000px;}
._18_c01322{margin-left:-4.680000px;}
._d_c01322{margin-left:-2.730000px;}
._15_c01322{margin-left:-1.014000px;}
._0_c01322{width:1.404000px;}
._1_c01322{width:2.574000px;}
._5_c01322{width:4.290000px;}
._a_c01322{width:6.240000px;}
._10_c01322{width:7.332000px;}
._16_c01322{width:8.424000px;}
._c_c01322{width:10.218000px;}
._11_c01322{width:11.622000px;}
._17_c01322{width:12.870000px;}
._3_c01322{width:13.884000px;}
._f_c01322{width:15.210000px;}
._2_c01322{width:17.940000px;}
._12_c01322{width:19.110000px;}
._13_c01322{width:20.358000px;}
._7_c01322{width:22.230000px;}
._26_c01322{width:23.424000px;}
._b_c01322{width:24.726000px;}
._14_c01322{width:25.740000px;}
._1d_c01322{width:26.832000px;}
._1c_c01322{width:28.782000px;}
._1a_c01322{width:30.108000px;}
._1b_c01322{width:31.644000px;}
._4_c01322{width:32.760000px;}
._6_c01322{width:35.022000px;}
._24_c01322{width:36.504000px;}
._8_c01322{width:38.532000px;}
._21_c01322{width:42.510000px;}
._9_c01322{width:44.304000px;}
._27_c01322{width:54.756000px;}
._23_c01322{width:60.762000px;}
._20_c01322{width:173.706000px;}
._2a_c01322{width:273.078000px;}
.fc2_c01322{color:transparent;}
.fc1_c01322{color:rgb(128,128,128);}
.fc0_c01322{color:rgb(0,0,0);}
.fs3_c01322{font-size:27.000000px;}
.fs4_c01322{font-size:48.000000px;}
.fs1_c01322{font-size:72.000000px;}
.fs0_c01322{font-size:78.000000px;}
.fs2_c01322{font-size:87.000000px;}
.y0_c01322{bottom:0.000000px;}
.y25_c01322{bottom:3.105000px;}
.y24_c01322{bottom:7.228369px;}
.y23_c01322{bottom:70.170000px;}
.y22_c01322{bottom:92.370000px;}
.y21_c01322{bottom:118.020000px;}
.y20_c01322{bottom:142.470000px;}
.y1f_c01322{bottom:167.070000px;}
.y1e_c01322{bottom:191.670000px;}
.y1d_c01322{bottom:217.020000px;}
.y1c_c01322{bottom:241.020000px;}
.y1b_c01322{bottom:265.620000px;}
.y1a_c01322{bottom:290.220000px;}
.y19_c01322{bottom:314.820000px;}
.y18_c01322{bottom:339.420000px;}
.y17_c01322{bottom:363.720000px;}
.y16_c01322{bottom:387.720000px;}
.y15_c01322{bottom:412.320000px;}
.y14_c01322{bottom:437.370000px;}
.y13_c01322{bottom:460.620000px;}
.y12_c01322{bottom:485.220000px;}
.y11_c01322{bottom:509.670000px;}
.y10_c01322{bottom:535.920000px;}
.yf_c01322{bottom:557.520000px;}
.ye_c01322{bottom:581.820000px;}
.yd_c01322{bottom:606.870000px;}
.yc_c01322{bottom:634.770000px;}
.yb_c01322{bottom:654.120000px;}
.ya_c01322{bottom:678.270000px;}
.y9_c01322{bottom:699.870000px;}
.y8_c01322{bottom:726.870000px;}
.y7_c01322{bottom:751.320000px;}
.y6_c01322{bottom:775.170000px;}
.y5_c01322{bottom:799.170000px;}
.y4_c01322{bottom:823.170000px;}
.y3_c01322{bottom:847.470000px;}
.y2_c01322{bottom:871.770000px;}
.y1_c01322{bottom:895.770000px;}
.h5_c01322{height:13.200073px;}
.h6_c01322{height:43.804688px;}
.h2_c01322{height:83.226000px;}
.h3_c01322{height:84.269531px;}
.h4_c01322{height:87.679688px;}
.h1_c01322{height:986.250000px;}
.h0_c01322{height:986.550000px;}
.w1_c01322{width:104.875500px;}
.w0_c01322{width:672.000000px;}
.x0_c01322{left:0.000000px;}
.xb_c01322{left:38.550000px;}
.xe_c01322{left:45.600000px;}
.x1_c01322{left:47.850000px;}
.x2_c01322{left:49.350000px;}
.x3_c01322{left:51.000000px;}
.x7_c01322{left:53.100000px;}
.x8_c01322{left:54.300000px;}
.x9_c01322{left:55.650000px;}
.xa_c01322{left:57.000000px;}
.xc_c01322{left:59.400000px;}
.xd_c01322{left:61.050000px;}
.xf_c01322{left:63.450000px;}
.x10_c01322{left:65.250000px;}
.x11_c01322{left:68.250000px;}
.x12_c01322{left:69.600000px;}
.x6_c01322{left:77.250000px;}
.x14_c01322{left:287.814240px;}
.x13_c01322{left:404.400000px;}
.x4_c01322{left:553.800000px;}
.x5_c01322{left:570.000000px;}
@media print{
.v0_c01322{vertical-align:0.000000pt;}
.ls0_c01322{letter-spacing:0.000000pt;}
.ls2_c01322{letter-spacing:2.666667pt;}
.ls1_c01322{letter-spacing:8.000000pt;}
.ws0_c01322{word-spacing:-52.608000pt;}
.ws1_c01322{word-spacing:-15.045333pt;}
.ws3_c01322{word-spacing:0.000000pt;}
.ws2_c01322{word-spacing:6.541333pt;}
._28_c01322{margin-left:-38.826667pt;}
._e_c01322{margin-left:-27.781333pt;}
._19_c01322{margin-left:-19.413333pt;}
._29_c01322{margin-left:-16.016000pt;}
._25_c01322{margin-left:-10.746667pt;}
._22_c01322{margin-left:-7.765333pt;}
._1e_c01322{margin-left:-6.789333pt;}
._1f_c01322{margin-left:-5.408000pt;}
._18_c01322{margin-left:-4.160000pt;}
._d_c01322{margin-left:-2.426667pt;}
._15_c01322{margin-left:-0.901333pt;}
._0_c01322{width:1.248000pt;}
._1_c01322{width:2.288000pt;}
._5_c01322{width:3.813333pt;}
._a_c01322{width:5.546667pt;}
._10_c01322{width:6.517333pt;}
._16_c01322{width:7.488000pt;}
._c_c01322{width:9.082667pt;}
._11_c01322{width:10.330667pt;}
._17_c01322{width:11.440000pt;}
._3_c01322{width:12.341333pt;}
._f_c01322{width:13.520000pt;}
._2_c01322{width:15.946667pt;}
._12_c01322{width:16.986667pt;}
._13_c01322{width:18.096000pt;}
._7_c01322{width:19.760000pt;}
._26_c01322{width:20.821333pt;}
._b_c01322{width:21.978667pt;}
._14_c01322{width:22.880000pt;}
._1d_c01322{width:23.850667pt;}
._1c_c01322{width:25.584000pt;}
._1a_c01322{width:26.762667pt;}
._1b_c01322{width:28.128000pt;}
._4_c01322{width:29.120000pt;}
._6_c01322{width:31.130667pt;}
._24_c01322{width:32.448000pt;}
._8_c01322{width:34.250667pt;}
._21_c01322{width:37.786667pt;}
._9_c01322{width:39.381333pt;}
._27_c01322{width:48.672000pt;}
._23_c01322{width:54.010667pt;}
._20_c01322{width:154.405333pt;}
._2a_c01322{width:242.736000pt;}
.fs3_c01322{font-size:24.000000pt;}
.fs4_c01322{font-size:42.666667pt;}
.fs1_c01322{font-size:64.000000pt;}
.fs0_c01322{font-size:69.333333pt;}
.fs2_c01322{font-size:77.333333pt;}
.y0_c01322{bottom:0.000000pt;}
.y25_c01322{bottom:2.760000pt;}
.y24_c01322{bottom:6.425217pt;}
.y23_c01322{bottom:62.373333pt;}
.y22_c01322{bottom:82.106667pt;}
.y21_c01322{bottom:104.906667pt;}
.y20_c01322{bottom:126.640000pt;}
.y1f_c01322{bottom:148.506667pt;}
.y1e_c01322{bottom:170.373333pt;}
.y1d_c01322{bottom:192.906667pt;}
.y1c_c01322{bottom:214.240000pt;}
.y1b_c01322{bottom:236.106667pt;}
.y1a_c01322{bottom:257.973333pt;}
.y19_c01322{bottom:279.840000pt;}
.y18_c01322{bottom:301.706667pt;}
.y17_c01322{bottom:323.306667pt;}
.y16_c01322{bottom:344.640000pt;}
.y15_c01322{bottom:366.506667pt;}
.y14_c01322{bottom:388.773333pt;}
.y13_c01322{bottom:409.440000pt;}
.y12_c01322{bottom:431.306667pt;}
.y11_c01322{bottom:453.040000pt;}
.y10_c01322{bottom:476.373333pt;}
.yf_c01322{bottom:495.573333pt;}
.ye_c01322{bottom:517.173333pt;}
.yd_c01322{bottom:539.440000pt;}
.yc_c01322{bottom:564.240000pt;}
.yb_c01322{bottom:581.440000pt;}
.ya_c01322{bottom:602.906667pt;}
.y9_c01322{bottom:622.106667pt;}
.y8_c01322{bottom:646.106667pt;}
.y7_c01322{bottom:667.840000pt;}
.y6_c01322{bottom:689.040000pt;}
.y5_c01322{bottom:710.373333pt;}
.y4_c01322{bottom:731.706667pt;}
.y3_c01322{bottom:753.306667pt;}
.y2_c01322{bottom:774.906667pt;}
.y1_c01322{bottom:796.240000pt;}
.h5_c01322{height:11.733399pt;}
.h6_c01322{height:38.937500pt;}
.h2_c01322{height:73.978667pt;}
.h3_c01322{height:74.906250pt;}
.h4_c01322{height:77.937500pt;}
.h1_c01322{height:876.666667pt;}
.h0_c01322{height:876.933333pt;}
.w1_c01322{width:93.222667pt;}
.w0_c01322{width:597.333333pt;}
.x0_c01322{left:0.000000pt;}
.xb_c01322{left:34.266667pt;}
.xe_c01322{left:40.533333pt;}
.x1_c01322{left:42.533333pt;}
.x2_c01322{left:43.866667pt;}
.x3_c01322{left:45.333333pt;}
.x7_c01322{left:47.200000pt;}
.x8_c01322{left:48.266667pt;}
.x9_c01322{left:49.466667pt;}
.xa_c01322{left:50.666667pt;}
.xc_c01322{left:52.800000pt;}
.xd_c01322{left:54.266667pt;}
.xf_c01322{left:56.400000pt;}
.x10_c01322{left:58.000000pt;}
.x11_c01322{left:60.666667pt;}
.x12_c01322{left:61.866667pt;}
.x6_c01322{left:68.666667pt;}
.x14_c01322{left:255.834880pt;}
.x13_c01322{left:359.466667pt;}
.x4_c01322{left:492.266667pt;}
.x5_c01322{left:506.666667pt;}
}





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

.ir_c01323:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01323{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01323;src:url('chunks/assets/font_26992611b3b3107b3bf37121.woff2')format("woff");}.ff1_c01323{font-family:ff1_c01323;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01323;src:url('chunks/assets/font_a7c1eaf2d910dcb4a516567f.woff2')format("woff");}.ff2_c01323{font-family:ff2_c01323;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01323;src:url('chunks/assets/font_ad8bdd32a19e65764ad435e7.woff2')format("woff");}.ff3_c01323{font-family:ff3_c01323;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01323;src:url('chunks/assets/font_74b07ea158bc074525e05702.woff2')format("woff");}.ff4_c01323{font-family:ff4_c01323;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01323;src:url('chunks/assets/font_53366945d936b3dbe60dad33.woff2')format("woff");}.ff5_c01323{font-family:ff5_c01323;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01323;src:url('chunks/assets/font_a4935f0550d934ae0cff2ebc.woff2')format("woff");}.ff6_c01323{font-family:ff6_c01323;line-height:1.311035;font-style:normal;font-weight: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_c01323;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c01323{font-family:ff7_c01323;line-height:1.219238;font-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_c01323{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m0_c01323{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01323{vertical-align:0.000000px;}
.ls1_c01323{letter-spacing:-3.000000px;}
.ls0_c01323{letter-spacing:0.000000px;}
.sc__c01323{text-shadow:none;}
.sc0_c01323{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01323{-webkit-text-stroke:0px transparent;}
.sc0_c01323{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c01323{word-spacing:-60.048000px;}
.ws2_c01323{word-spacing:-18.798000px;}
.ws1_c01323{word-spacing:-17.352000px;}
.ws0_c01323{word-spacing:-11.973000px;}
.ws4_c01323{word-spacing:0.000000px;}
._26_c01323{margin-left:-24.330000px;}
._7_c01323{margin-left:-20.514000px;}
._28_c01323{margin-left:-16.131000px;}
._34_c01323{margin-left:-13.620000px;}
._1f_c01323{margin-left:-11.856000px;}
._1a_c01323{margin-left:-9.750000px;}
._23_c01323{margin-left:-8.658000px;}
._2b_c01323{margin-left:-7.014000px;}
._f_c01323{margin-left:-5.934000px;}
._18_c01323{margin-left:-4.134000px;}
._21_c01323{margin-left:-2.808000px;}
._3_c01323{margin-left:-1.794000px;}
._0_c01323{width:1.170000px;}
._1_c01323{width:2.418000px;}
._5_c01323{width:4.056000px;}
._2_c01323{width:5.694000px;}
._a_c01323{width:6.708000px;}
._8_c01323{width:7.956000px;}
._b_c01323{width:9.048000px;}
._1d_c01323{width:10.128000px;}
._9_c01323{width:11.700000px;}
._d_c01323{width:13.104000px;}
._4_c01323{width:14.976000px;}
._17_c01323{width:18.096000px;}
._6_c01323{width:19.266000px;}
._e_c01323{width:20.514000px;}
._12_c01323{width:21.528000px;}
._14_c01323{width:23.322000px;}
._13_c01323{width:25.740000px;}
._15_c01323{width:27.300000px;}
._16_c01323{width:29.328000px;}
._11_c01323{width:30.576000px;}
._c_c01323{width:33.150000px;}
._29_c01323{width:34.701000px;}
._25_c01323{width:35.802000px;}
._2c_c01323{width:38.604000px;}
._22_c01323{width:42.666000px;}
._30_c01323{width:45.318000px;}
._2a_c01323{width:47.520000px;}
._2f_c01323{width:53.898000px;}
._2e_c01323{width:55.476000px;}
._33_c01323{width:57.036000px;}
._1e_c01323{width:64.038000px;}
._1c_c01323{width:85.800000px;}
._31_c01323{width:168.330000px;}
._20_c01323{width:185.016000px;}
._24_c01323{width:193.674000px;}
._2d_c01323{width:224.850000px;}
._27_c01323{width:254.676000px;}
._10_c01323{width:303.060000px;}
._32_c01323{width:376.374000px;}
._19_c01323{width:534.066000px;}
._35_c01323{width:538.692000px;}
._1b_c01323{width:1057.368000px;}
.fc2_c01323{color:transparent;}
.fc1_c01323{color:rgb(128,128,128);}
.fc0_c01323{color:rgb(0,0,0);}
.fs4_c01323{font-size:48.000000px;}
.fs2_c01323{font-size:69.000000px;}
.fs1_c01323{font-size:72.000000px;}
.fs0_c01323{font-size:78.000000px;}
.fs3_c01323{font-size:108.000000px;}
.y0_c01323{bottom:0.000000px;}
.y25_c01323{bottom:3.105000px;}
.y24_c01323{bottom:7.228371px;}
.y23_c01323{bottom:69.315000px;}
.y22_c01323{bottom:93.165000px;}
.y21_c01323{bottom:119.565000px;}
.y20_c01323{bottom:143.115000px;}
.y1f_c01323{bottom:170.565000px;}
.y1e_c01323{bottom:196.065000px;}
.y1d_c01323{bottom:220.365000px;}
.y1c_c01323{bottom:245.415000px;}
.y1b_c01323{bottom:269.115000px;}
.y1a_c01323{bottom:293.415000px;}
.y19_c01323{bottom:318.315000px;}
.y18_c01323{bottom:341.265000px;}
.y17_c01323{bottom:366.165000px;}
.y16_c01323{bottom:391.515000px;}
.y15_c01323{bottom:415.515000px;}
.y14_c01323{bottom:440.415000px;}
.y13_c01323{bottom:464.715000px;}
.y12_c01323{bottom:489.765000px;}
.y11_c01323{bottom:513.765000px;}
.y10_c01323{bottom:538.065000px;}
.yf_c01323{bottom:563.415000px;}
.ye_c01323{bottom:586.965000px;}
.yd_c01323{bottom:613.215000px;}
.yc_c01323{bottom:637.215000px;}
.yb_c01323{bottom:663.315000px;}
.ya_c01323{bottom:687.915000px;}
.y9_c01323{bottom:710.865000px;}
.y8_c01323{bottom:732.165000px;}
.y7_c01323{bottom:757.365000px;}
.y6_c01323{bottom:781.965000px;}
.y5_c01323{bottom:806.715000px;}
.y4_c01323{bottom:829.365000px;}
.y3_c01323{bottom:855.315000px;}
.y2_c01323{bottom:880.215000px;}
.y1_c01323{bottom:904.515000px;}
.h7_c01323{height:13.200074px;}
.h8_c01323{height:43.804688px;}
.h2_c01323{height:83.226000px;}
.h3_c01323{height:84.269531px;}
.h4_c01323{height:91.160156px;}
.h5_c01323{height:98.756836px;}
.h6_c01323{height:108.843750px;}
.h1_c01323{height:986.250000px;}
.h0_c01323{height:986.325000px;}
.w2_c01323{width:104.875500px;}
.w0_c01323{width:667.425000px;}
.w1_c01323{width:667.500000px;}
.x0_c01323{left:0.000000px;}
.xe_c01323{left:26.700000px;}
.xd_c01323{left:30.000000px;}
.xc_c01323{left:31.650000px;}
.x6_c01323{left:34.200000px;}
.x5_c01323{left:35.400000px;}
.x2_c01323{left:36.900000px;}
.x4_c01323{left:57.000000px;}
.x9_c01323{left:111.450000px;}
.xf_c01323{left:123.450000px;}
.xa_c01323{left:125.100000px;}
.x8_c01323{left:126.600000px;}
.x7_c01323{left:127.650000px;}
.x1_c01323{left:130.950000px;}
.x3_c01323{left:132.000000px;}
.xb_c01323{left:151.500000px;}
.x11_c01323{left:285.526749px;}
.x10_c01323{left:576.450000px;}
@media print{
.v0_c01323{vertical-align:0.000000pt;}
.ls1_c01323{letter-spacing:-2.666667pt;}
.ls0_c01323{letter-spacing:0.000000pt;}
.ws3_c01323{word-spacing:-53.376000pt;}
.ws2_c01323{word-spacing:-16.709333pt;}
.ws1_c01323{word-spacing:-15.424000pt;}
.ws0_c01323{word-spacing:-10.642667pt;}
.ws4_c01323{word-spacing:0.000000pt;}
._26_c01323{margin-left:-21.626667pt;}
._7_c01323{margin-left:-18.234667pt;}
._28_c01323{margin-left:-14.338667pt;}
._34_c01323{margin-left:-12.106667pt;}
._1f_c01323{margin-left:-10.538667pt;}
._1a_c01323{margin-left:-8.666667pt;}
._23_c01323{margin-left:-7.696000pt;}
._2b_c01323{margin-left:-6.234667pt;}
._f_c01323{margin-left:-5.274667pt;}
._18_c01323{margin-left:-3.674667pt;}
._21_c01323{margin-left:-2.496000pt;}
._3_c01323{margin-left:-1.594667pt;}
._0_c01323{width:1.040000pt;}
._1_c01323{width:2.149333pt;}
._5_c01323{width:3.605333pt;}
._2_c01323{width:5.061333pt;}
._a_c01323{width:5.962667pt;}
._8_c01323{width:7.072000pt;}
._b_c01323{width:8.042667pt;}
._1d_c01323{width:9.002667pt;}
._9_c01323{width:10.400000pt;}
._d_c01323{width:11.648000pt;}
._4_c01323{width:13.312000pt;}
._17_c01323{width:16.085333pt;}
._6_c01323{width:17.125333pt;}
._e_c01323{width:18.234667pt;}
._12_c01323{width:19.136000pt;}
._14_c01323{width:20.730667pt;}
._13_c01323{width:22.880000pt;}
._15_c01323{width:24.266667pt;}
._16_c01323{width:26.069333pt;}
._11_c01323{width:27.178667pt;}
._c_c01323{width:29.466667pt;}
._29_c01323{width:30.845333pt;}
._25_c01323{width:31.824000pt;}
._2c_c01323{width:34.314667pt;}
._22_c01323{width:37.925333pt;}
._30_c01323{width:40.282667pt;}
._2a_c01323{width:42.240000pt;}
._2f_c01323{width:47.909333pt;}
._2e_c01323{width:49.312000pt;}
._33_c01323{width:50.698667pt;}
._1e_c01323{width:56.922667pt;}
._1c_c01323{width:76.266667pt;}
._31_c01323{width:149.626667pt;}
._20_c01323{width:164.458667pt;}
._24_c01323{width:172.154667pt;}
._2d_c01323{width:199.866667pt;}
._27_c01323{width:226.378667pt;}
._10_c01323{width:269.386667pt;}
._32_c01323{width:334.554667pt;}
._19_c01323{width:474.725333pt;}
._35_c01323{width:478.837333pt;}
._1b_c01323{width:939.882667pt;}
.fs4_c01323{font-size:42.666667pt;}
.fs2_c01323{font-size:61.333333pt;}
.fs1_c01323{font-size:64.000000pt;}
.fs0_c01323{font-size:69.333333pt;}
.fs3_c01323{font-size:96.000000pt;}
.y0_c01323{bottom:0.000000pt;}
.y25_c01323{bottom:2.760000pt;}
.y24_c01323{bottom:6.425219pt;}
.y23_c01323{bottom:61.613333pt;}
.y22_c01323{bottom:82.813333pt;}
.y21_c01323{bottom:106.280000pt;}
.y20_c01323{bottom:127.213333pt;}
.y1f_c01323{bottom:151.613333pt;}
.y1e_c01323{bottom:174.280000pt;}
.y1d_c01323{bottom:195.880000pt;}
.y1c_c01323{bottom:218.146667pt;}
.y1b_c01323{bottom:239.213333pt;}
.y1a_c01323{bottom:260.813333pt;}
.y19_c01323{bottom:282.946667pt;}
.y18_c01323{bottom:303.346667pt;}
.y17_c01323{bottom:325.480000pt;}
.y16_c01323{bottom:348.013333pt;}
.y15_c01323{bottom:369.346667pt;}
.y14_c01323{bottom:391.480000pt;}
.y13_c01323{bottom:413.080000pt;}
.y12_c01323{bottom:435.346667pt;}
.y11_c01323{bottom:456.680000pt;}
.y10_c01323{bottom:478.280000pt;}
.yf_c01323{bottom:500.813333pt;}
.ye_c01323{bottom:521.746667pt;}
.yd_c01323{bottom:545.080000pt;}
.yc_c01323{bottom:566.413333pt;}
.yb_c01323{bottom:589.613333pt;}
.ya_c01323{bottom:611.480000pt;}
.y9_c01323{bottom:631.880000pt;}
.y8_c01323{bottom:650.813333pt;}
.y7_c01323{bottom:673.213333pt;}
.y6_c01323{bottom:695.080000pt;}
.y5_c01323{bottom:717.080000pt;}
.y4_c01323{bottom:737.213333pt;}
.y3_c01323{bottom:760.280000pt;}
.y2_c01323{bottom:782.413333pt;}
.y1_c01323{bottom:804.013333pt;}
.h7_c01323{height:11.733399pt;}
.h8_c01323{height:38.937500pt;}
.h2_c01323{height:73.978667pt;}
.h3_c01323{height:74.906250pt;}
.h4_c01323{height:81.031250pt;}
.h5_c01323{height:87.783854pt;}
.h6_c01323{height:96.750000pt;}
.h1_c01323{height:876.666667pt;}
.h0_c01323{height:876.733333pt;}
.w2_c01323{width:93.222667pt;}
.w0_c01323{width:593.266667pt;}
.w1_c01323{width:593.333333pt;}
.x0_c01323{left:0.000000pt;}
.xe_c01323{left:23.733333pt;}
.xd_c01323{left:26.666667pt;}
.xc_c01323{left:28.133333pt;}
.x6_c01323{left:30.400000pt;}
.x5_c01323{left:31.466667pt;}
.x2_c01323{left:32.800000pt;}
.x4_c01323{left:50.666667pt;}
.x9_c01323{left:99.066667pt;}
.xf_c01323{left:109.733333pt;}
.xa_c01323{left:111.200000pt;}
.x8_c01323{left:112.533333pt;}
.x7_c01323{left:113.466667pt;}
.x1_c01323{left:116.400000pt;}
.x3_c01323{left:117.333333pt;}
.xb_c01323{left:134.666667pt;}
.x11_c01323{left:253.801554pt;}
.x10_c01323{left:512.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_c01324 {
    display:none;
  }
  .loading-indicator_c01324.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01324 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01324 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01324" -> "#page-container .classname_c01324")
 */
.pf_c01324 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01324 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01324.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01324 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01324 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01324 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01324 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01324 {overflow:visible;}
  }
}
.c_c01324 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01324 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01324:after { /* webkit #35443 */
  content: '';
}
.t_c01324:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01324 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01324 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01324 { /* info for Javascript */
  display:none;
}
.l_c01324 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01324 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01324 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01324:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01324{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01324;src:url('chunks/assets/font_7d4e90ddfe8dd11f8be1011e.woff2')format("woff");}.ff1_c01324{font-family:ff1_c01324;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01324;src:url('chunks/assets/font_3c862db6d8b9e02b12491803.woff2')format("woff");}.ff2_c01324{font-family:ff2_c01324;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01324;src:url('chunks/assets/font_b55ebe8a2ea4d09123a54e64.woff2')format("woff");}.ff3_c01324{font-family:ff3_c01324;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01324;src:url('chunks/assets/font_424684015ef39e827f457cc4.woff2')format("woff");}.ff4_c01324{font-family:ff4_c01324;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01324;src:url('chunks/assets/font_db59c6c62308a906c9862520.woff2')format("woff");}.ff5_c01324{font-family:ff5_c01324;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01324;src:url('chunks/assets/font_69dd216781fa6392b86de70e.woff2')format("woff");}.ff6_c01324{font-family:ff6_c01324;line-height:1.284180;font-style:normal;font-weight: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_c01324;src:url('chunks/assets/font_cf696e6d6e2a2fc81c773db3.woff2')format("woff");}.ff7_c01324{font-family:ff7_c01324;line-height:1.437000;font-style:normal;font-weight: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_c01324;src:url('chunks/assets/font_6968a209bed2214adac6910d.woff2')format("woff");}.ff8_c01324{font-family:ff8_c01324;line-height:1.437000;font-style:normal;font-weight: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_c01324;src:url('chunks/assets/font_0b44cb9ae2132946a4f6bb35.woff2')format("woff");}.ff9_c01324{font-family:ff9_c01324;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c01324;src:url('chunks/assets/font_730429dad8733dc17cee5f77.woff2')format("woff");}.ffa_c01324{font-family:ffa_c01324;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c01324;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ffb_c01324{font-family:ffb_c01324;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4_c01324{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m0_c01324{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01324{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m3_c01324{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m2_c01324{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.v0_c01324{vertical-align:0.000000px;}
.v1_c01324{vertical-align:127.800000px;}
.lsf_c01324{letter-spacing:0.000000px;}
.ls7_c01324{letter-spacing:0.600000px;}
.ls1_c01324{letter-spacing:2.460000px;}
.ls8_c01324{letter-spacing:4.680000px;}
.ls2_c01324{letter-spacing:5.700000px;}
.ls10_c01324{letter-spacing:6.000000px;}
.ls12_c01324{letter-spacing:9.000000px;}
.lsd_c01324{letter-spacing:9.912000px;}
.ls5_c01324{letter-spacing:10.080000px;}
.ls4_c01324{letter-spacing:14.700000px;}
.ls11_c01324{letter-spacing:15.000000px;}
.lse_c01324{letter-spacing:18.000000px;}
.ls0_c01324{letter-spacing:20.274000px;}
.lsb_c01324{letter-spacing:20.400000px;}
.ls13_c01324{letter-spacing:21.000000px;}
.lsc_c01324{letter-spacing:22.800000px;}
.ls6_c01324{letter-spacing:33.216000px;}
.lsa_c01324{letter-spacing:63.480000px;}
.ls9_c01324{letter-spacing:64.416000px;}
.ls3_c01324{letter-spacing:118.020000px;}
.sc__c01324{text-shadow:none;}
.sc0_c01324{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01324{-webkit-text-stroke:0px transparent;}
.sc0_c01324{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01324{word-spacing:-76.686000px;}
.ws0_c01324{word-spacing:-41.859000px;}
.ws4_c01324{word-spacing:-26.784000px;}
.ws3_c01324{word-spacing:-20.250000px;}
.ws8_c01324{word-spacing:-17.352000px;}
.ws7_c01324{word-spacing:-16.926000px;}
.ws5_c01324{word-spacing:-8.016000px;}
.ws1_c01324{word-spacing:-0.798000px;}
.ws9_c01324{word-spacing:0.000000px;}
.ws6_c01324{word-spacing:3.096000px;}
._34_c01324{margin-left:-30.294000px;}
._43_c01324{margin-left:-27.300000px;}
._31_c01324{margin-left:-25.515000px;}
._3a_c01324{margin-left:-23.865000px;}
._3b_c01324{margin-left:-22.392000px;}
._a_c01324{margin-left:-18.348000px;}
._19_c01324{margin-left:-16.620000px;}
._9_c01324{margin-left:-15.576000px;}
._15_c01324{margin-left:-14.238000px;}
._35_c01324{margin-left:-12.474000px;}
._16_c01324{margin-left:-10.890000px;}
._1b_c01324{margin-left:-9.882000px;}
._0_c01324{margin-left:-8.019000px;}
._2_c01324{margin-left:-6.831000px;}
._4_c01324{margin-left:-5.319000px;}
._1_c01324{margin-left:-4.257000px;}
._6_c01324{margin-left:-3.240000px;}
._3_c01324{margin-left:-2.187000px;}
._5_c01324{margin-left:-1.062000px;}
._10_c01324{width:1.014000px;}
._11_c01324{width:2.262000px;}
._f_c01324{width:3.276000px;}
._e_c01324{width:5.226000px;}
._d_c01324{width:7.020000px;}
._b_c01324{width:8.580000px;}
._2b_c01324{width:9.681000px;}
._c_c01324{width:11.076000px;}
._13_c01324{width:12.870000px;}
._2c_c01324{width:14.310000px;}
._29_c01324{width:15.594000px;}
._14_c01324{width:17.400000px;}
._3e_c01324{width:18.951000px;}
._1e_c01324{width:20.109000px;}
._25_c01324{width:22.899000px;}
._18_c01324{width:24.729000px;}
._7_c01324{width:26.127000px;}
._24_c01324{width:33.135000px;}
._23_c01324{width:39.078000px;}
._39_c01324{width:42.618000px;}
._3f_c01324{width:44.682000px;}
._45_c01324{width:46.926000px;}
._20_c01324{width:49.491000px;}
._27_c01324{width:54.405000px;}
._2d_c01324{width:64.260000px;}
._1c_c01324{width:77.454000px;}
._8_c01324{width:81.192000px;}
._37_c01324{width:85.131000px;}
._32_c01324{width:88.938000px;}
._36_c01324{width:96.147000px;}
._28_c01324{width:101.571000px;}
._1f_c01324{width:109.296000px;}
._1a_c01324{width:115.962000px;}
._38_c01324{width:129.654000px;}
._17_c01324{width:133.500000px;}
._42_c01324{width:136.905000px;}
._2e_c01324{width:143.340000px;}
._33_c01324{width:148.257000px;}
._3d_c01324{width:150.516000px;}
._12_c01324{width:154.989000px;}
._2a_c01324{width:159.699000px;}
._1d_c01324{width:162.660000px;}
._3c_c01324{width:172.266000px;}
._40_c01324{width:179.088000px;}
._41_c01324{width:202.230000px;}
._46_c01324{width:279.786000px;}
._21_c01324{width:393.084000px;}
._30_c01324{width:397.299000px;}
._22_c01324{width:488.946000px;}
._2f_c01324{width:502.659000px;}
._26_c01324{width:1003.878000px;}
._44_c01324{width:1065.168000px;}
.fc2_c01324{color:transparent;}
.fc1_c01324{color:rgb(128,128,128);}
.fc0_c01324{color:rgb(0,0,0);}
.fsc_c01324{font-size:24.000000px;}
.fsd_c01324{font-size:48.000000px;}
.fs3_c01324{font-size:57.000000px;}
.fs9_c01324{font-size:60.000000px;}
.fs8_c01324{font-size:63.000000px;}
.fs6_c01324{font-size:66.000000px;}
.fs7_c01324{font-size:69.000000px;}
.fs5_c01324{font-size:72.000000px;}
.fs2_c01324{font-size:78.000000px;}
.fs4_c01324{font-size:81.000000px;}
.fsb_c01324{font-size:87.000000px;}
.fs0_c01324{font-size:99.000000px;}
.fs1_c01324{font-size:132.000000px;}
.fsa_c01324{font-size:255.000000px;}
.y0_c01324{bottom:0.000000px;}
.y27_c01324{bottom:3.105000px;}
.y26_c01324{bottom:7.228369px;}
.y25_c01324{bottom:74.970000px;}
.y24_c01324{bottom:99.870000px;}
.y23_c01324{bottom:124.770000px;}
.y22_c01324{bottom:150.870000px;}
.y21_c01324{bottom:175.470000px;}
.y20_c01324{bottom:200.370000px;}
.y1f_c01324{bottom:225.120000px;}
.y1e_c01324{bottom:248.970000px;}
.y1d_c01324{bottom:284.520000px;}
.y1c_c01324{bottom:298.920000px;}
.y1b_c01324{bottom:322.620000px;}
.y1a_c01324{bottom:346.170000px;}
.y19_c01324{bottom:372.570000px;}
.y17_c01324{bottom:376.020000px;}
.y18_c01324{bottom:397.470000px;}
.y16_c01324{bottom:421.770000px;}
.y15_c01324{bottom:445.470000px;}
.y14_c01324{bottom:469.020000px;}
.y13_c01324{bottom:494.670000px;}
.y12_c01324{bottom:515.970000px;}
.y11_c01324{bottom:542.970000px;}
.y10_c01324{bottom:567.270000px;}
.yf_c01324{bottom:592.020000px;}
.ye_c01324{bottom:616.320000px;}
.yd_c01324{bottom:640.470000px;}
.yc_c01324{bottom:664.170000px;}
.yb_c01324{bottom:689.220000px;}
.ya_c01324{bottom:712.770000px;}
.y9_c01324{bottom:737.820000px;}
.y8_c01324{bottom:762.720000px;}
.y7_c01324{bottom:787.620000px;}
.y6_c01324{bottom:813.420000px;}
.y5_c01324{bottom:833.520000px;}
.y4_c01324{bottom:862.620000px;}
.y3_c01324{bottom:884.820000px;}
.y2_c01324{bottom:911.520000px;}
.y1_c01324{bottom:944.220000px;}
.hd_c01324{height:13.200073px;}
.ha_c01324{height:30.386719px;}
.he_c01324{height:43.804688px;}
.h7_c01324{height:63.492188px;}
.h4_c01324{height:79.497070px;}
.hb_c01324{height:83.226000px;}
.h6_c01324{height:84.269531px;}
.hc_c01324{height:87.679688px;}
.h5_c01324{height:91.160156px;}
.h9_c01324{height:91.176000px;}
.h3_c01324{height:98.756836px;}
.h2_c01324{height:167.126953px;}
.h8_c01324{height:267.240000px;}
.h1_c01324{height:986.250000px;}
.h0_c01324{height:986.550000px;}
.w1_c01324{width:104.875500px;}
.w0_c01324{width:672.000000px;}
.x0_c01324{left:0.000000px;}
.x9_c01324{left:31.350000px;}
.x19_c01324{left:37.800000px;}
.x18_c01324{left:39.900000px;}
.xa_c01324{left:42.150000px;}
.x8_c01324{left:43.500000px;}
.x7_c01324{left:45.000000px;}
.x5_c01324{left:46.500000px;}
.x2_c01324{left:48.300000px;}
.x3_c01324{left:49.950000px;}
.x4_c01324{left:51.000000px;}
.xb_c01324{left:66.450000px;}
.x6_c01324{left:75.000000px;}
.x1_c01324{left:78.000000px;}
.xc_c01324{left:91.500000px;}
.xd_c01324{left:101.250000px;}
.x10_c01324{left:111.300000px;}
.x11_c01324{left:117.750000px;}
.xe_c01324{left:172.950000px;}
.xf_c01324{left:190.200000px;}
.x1a_c01324{left:287.814240px;}
.x12_c01324{left:364.500000px;}
.x13_c01324{left:373.350000px;}
.x14_c01324{left:380.700000px;}
.x15_c01324{left:389.100000px;}
.x16_c01324{left:468.150000px;}
.x17_c01324{left:475.500000px;}
@media print{
.v0_c01324{vertical-align:0.000000pt;}
.v1_c01324{vertical-align:113.600000pt;}
.lsf_c01324{letter-spacing:0.000000pt;}
.ls7_c01324{letter-spacing:0.533333pt;}
.ls1_c01324{letter-spacing:2.186667pt;}
.ls8_c01324{letter-spacing:4.160000pt;}
.ls2_c01324{letter-spacing:5.066667pt;}
.ls10_c01324{letter-spacing:5.333333pt;}
.ls12_c01324{letter-spacing:8.000000pt;}
.lsd_c01324{letter-spacing:8.810667pt;}
.ls5_c01324{letter-spacing:8.960000pt;}
.ls4_c01324{letter-spacing:13.066667pt;}
.ls11_c01324{letter-spacing:13.333333pt;}
.lse_c01324{letter-spacing:16.000000pt;}
.ls0_c01324{letter-spacing:18.021333pt;}
.lsb_c01324{letter-spacing:18.133333pt;}
.ls13_c01324{letter-spacing:18.666667pt;}
.lsc_c01324{letter-spacing:20.266667pt;}
.ls6_c01324{letter-spacing:29.525333pt;}
.lsa_c01324{letter-spacing:56.426667pt;}
.ls9_c01324{letter-spacing:57.258667pt;}
.ls3_c01324{letter-spacing:104.906667pt;}
.ws2_c01324{word-spacing:-68.165333pt;}
.ws0_c01324{word-spacing:-37.208000pt;}
.ws4_c01324{word-spacing:-23.808000pt;}
.ws3_c01324{word-spacing:-18.000000pt;}
.ws8_c01324{word-spacing:-15.424000pt;}
.ws7_c01324{word-spacing:-15.045333pt;}
.ws5_c01324{word-spacing:-7.125333pt;}
.ws1_c01324{word-spacing:-0.709333pt;}
.ws9_c01324{word-spacing:0.000000pt;}
.ws6_c01324{word-spacing:2.752000pt;}
._34_c01324{margin-left:-26.928000pt;}
._43_c01324{margin-left:-24.266667pt;}
._31_c01324{margin-left:-22.680000pt;}
._3a_c01324{margin-left:-21.213333pt;}
._3b_c01324{margin-left:-19.904000pt;}
._a_c01324{margin-left:-16.309333pt;}
._19_c01324{margin-left:-14.773333pt;}
._9_c01324{margin-left:-13.845333pt;}
._15_c01324{margin-left:-12.656000pt;}
._35_c01324{margin-left:-11.088000pt;}
._16_c01324{margin-left:-9.680000pt;}
._1b_c01324{margin-left:-8.784000pt;}
._0_c01324{margin-left:-7.128000pt;}
._2_c01324{margin-left:-6.072000pt;}
._4_c01324{margin-left:-4.728000pt;}
._1_c01324{margin-left:-3.784000pt;}
._6_c01324{margin-left:-2.880000pt;}
._3_c01324{margin-left:-1.944000pt;}
._5_c01324{margin-left:-0.944000pt;}
._10_c01324{width:0.901333pt;}
._11_c01324{width:2.010667pt;}
._f_c01324{width:2.912000pt;}
._e_c01324{width:4.645333pt;}
._d_c01324{width:6.240000pt;}
._b_c01324{width:7.626667pt;}
._2b_c01324{width:8.605333pt;}
._c_c01324{width:9.845333pt;}
._13_c01324{width:11.440000pt;}
._2c_c01324{width:12.720000pt;}
._29_c01324{width:13.861333pt;}
._14_c01324{width:15.466667pt;}
._3e_c01324{width:16.845333pt;}
._1e_c01324{width:17.874667pt;}
._25_c01324{width:20.354667pt;}
._18_c01324{width:21.981333pt;}
._7_c01324{width:23.224000pt;}
._24_c01324{width:29.453333pt;}
._23_c01324{width:34.736000pt;}
._39_c01324{width:37.882667pt;}
._3f_c01324{width:39.717333pt;}
._45_c01324{width:41.712000pt;}
._20_c01324{width:43.992000pt;}
._27_c01324{width:48.360000pt;}
._2d_c01324{width:57.120000pt;}
._1c_c01324{width:68.848000pt;}
._8_c01324{width:72.170667pt;}
._37_c01324{width:75.672000pt;}
._32_c01324{width:79.056000pt;}
._36_c01324{width:85.464000pt;}
._28_c01324{width:90.285333pt;}
._1f_c01324{width:97.152000pt;}
._1a_c01324{width:103.077333pt;}
._38_c01324{width:115.248000pt;}
._17_c01324{width:118.666667pt;}
._42_c01324{width:121.693333pt;}
._2e_c01324{width:127.413333pt;}
._33_c01324{width:131.784000pt;}
._3d_c01324{width:133.792000pt;}
._12_c01324{width:137.768000pt;}
._2a_c01324{width:141.954667pt;}
._1d_c01324{width:144.586667pt;}
._3c_c01324{width:153.125333pt;}
._40_c01324{width:159.189333pt;}
._41_c01324{width:179.760000pt;}
._46_c01324{width:248.698667pt;}
._21_c01324{width:349.408000pt;}
._30_c01324{width:353.154667pt;}
._22_c01324{width:434.618667pt;}
._2f_c01324{width:446.808000pt;}
._26_c01324{width:892.336000pt;}
._44_c01324{width:946.816000pt;}
.fsc_c01324{font-size:21.333333pt;}
.fsd_c01324{font-size:42.666667pt;}
.fs3_c01324{font-size:50.666667pt;}
.fs9_c01324{font-size:53.333333pt;}
.fs8_c01324{font-size:56.000000pt;}
.fs6_c01324{font-size:58.666667pt;}
.fs7_c01324{font-size:61.333333pt;}
.fs5_c01324{font-size:64.000000pt;}
.fs2_c01324{font-size:69.333333pt;}
.fs4_c01324{font-size:72.000000pt;}
.fsb_c01324{font-size:77.333333pt;}
.fs0_c01324{font-size:88.000000pt;}
.fs1_c01324{font-size:117.333333pt;}
.fsa_c01324{font-size:226.666667pt;}
.y0_c01324{bottom:0.000000pt;}
.y27_c01324{bottom:2.760000pt;}
.y26_c01324{bottom:6.425217pt;}
.y25_c01324{bottom:66.640000pt;}
.y24_c01324{bottom:88.773333pt;}
.y23_c01324{bottom:110.906667pt;}
.y22_c01324{bottom:134.106667pt;}
.y21_c01324{bottom:155.973333pt;}
.y20_c01324{bottom:178.106667pt;}
.y1f_c01324{bottom:200.106667pt;}
.y1e_c01324{bottom:221.306667pt;}
.y1d_c01324{bottom:252.906667pt;}
.y1c_c01324{bottom:265.706667pt;}
.y1b_c01324{bottom:286.773333pt;}
.y1a_c01324{bottom:307.706667pt;}
.y19_c01324{bottom:331.173333pt;}
.y17_c01324{bottom:334.240000pt;}
.y18_c01324{bottom:353.306667pt;}
.y16_c01324{bottom:374.906667pt;}
.y15_c01324{bottom:395.973333pt;}
.y14_c01324{bottom:416.906667pt;}
.y13_c01324{bottom:439.706667pt;}
.y12_c01324{bottom:458.640000pt;}
.y11_c01324{bottom:482.640000pt;}
.y10_c01324{bottom:504.240000pt;}
.yf_c01324{bottom:526.240000pt;}
.ye_c01324{bottom:547.840000pt;}
.yd_c01324{bottom:569.306667pt;}
.yc_c01324{bottom:590.373333pt;}
.yb_c01324{bottom:612.640000pt;}
.ya_c01324{bottom:633.573333pt;}
.y9_c01324{bottom:655.840000pt;}
.y8_c01324{bottom:677.973333pt;}
.y7_c01324{bottom:700.106667pt;}
.y6_c01324{bottom:723.040000pt;}
.y5_c01324{bottom:740.906667pt;}
.y4_c01324{bottom:766.773333pt;}
.y3_c01324{bottom:786.506667pt;}
.y2_c01324{bottom:810.240000pt;}
.y1_c01324{bottom:839.306667pt;}
.hd_c01324{height:11.733399pt;}
.ha_c01324{height:27.010417pt;}
.he_c01324{height:38.937500pt;}
.h7_c01324{height:56.437500pt;}
.h4_c01324{height:70.664062pt;}
.hb_c01324{height:73.978667pt;}
.h6_c01324{height:74.906250pt;}
.hc_c01324{height:77.937500pt;}
.h5_c01324{height:81.031250pt;}
.h9_c01324{height:81.045333pt;}
.h3_c01324{height:87.783854pt;}
.h2_c01324{height:148.557292pt;}
.h8_c01324{height:237.546667pt;}
.h1_c01324{height:876.666667pt;}
.h0_c01324{height:876.933333pt;}
.w1_c01324{width:93.222667pt;}
.w0_c01324{width:597.333333pt;}
.x0_c01324{left:0.000000pt;}
.x9_c01324{left:27.866667pt;}
.x19_c01324{left:33.600000pt;}
.x18_c01324{left:35.466667pt;}
.xa_c01324{left:37.466667pt;}
.x8_c01324{left:38.666667pt;}
.x7_c01324{left:40.000000pt;}
.x5_c01324{left:41.333333pt;}
.x2_c01324{left:42.933333pt;}
.x3_c01324{left:44.400000pt;}
.x4_c01324{left:45.333333pt;}
.xb_c01324{left:59.066667pt;}
.x6_c01324{left:66.666667pt;}
.x1_c01324{left:69.333333pt;}
.xc_c01324{left:81.333333pt;}
.xd_c01324{left:90.000000pt;}
.x10_c01324{left:98.933333pt;}
.x11_c01324{left:104.666667pt;}
.xe_c01324{left:153.733333pt;}
.xf_c01324{left:169.066667pt;}
.x1a_c01324{left:255.834880pt;}
.x12_c01324{left:324.000000pt;}
.x13_c01324{left:331.866667pt;}
.x14_c01324{left:338.400000pt;}
.x15_c01324{left:345.866667pt;}
.x16_c01324{left:416.133333pt;}
.x17_c01324{left:422.666667pt;}
}





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

.ir_c01325:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01325{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01325;src:url('chunks/assets/font_0f59d78fb159e8ca7419d685.woff2')format("woff");}.ff1_c01325{font-family:ff1_c01325;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01325;src:url('chunks/assets/font_6ddd296cbf4aeaaa80ba911f.woff2')format("woff");}.ff2_c01325{font-family:ff2_c01325;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01325;src:url('chunks/assets/font_237afce64e5083d54132f091.woff2')format("woff");}.ff3_c01325{font-family:ff3_c01325;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01325;src:url('chunks/assets/font_c24af870e7673f75aa09dc31.woff2')format("woff");}.ff4_c01325{font-family:ff4_c01325;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01325;src:url('chunks/assets/font_978332f13eb19de9bc5a2043.woff2')format("woff");}.ff5_c01325{font-family:ff5_c01325;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01325;src:url('chunks/assets/font_eb7235fea8ba9d2b606bcf3c.woff2')format("woff");}.ff6_c01325{font-family:ff6_c01325;line-height:1.311035;font-style:normal;font-weight: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_c01325;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff7_c01325{font-family:ff7_c01325;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c01325;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff8_c01325{font-family:ff8_c01325;line-height:1.284668;font-style:normal;font-weight: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_c01325;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff9_c01325{font-family:ff9_c01325;line-height:1.219238;font-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_c01325{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m0_c01325{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01325{vertical-align:0.000000px;}
.ls3_c01325{letter-spacing:-9.000000px;}
.ls2_c01325{letter-spacing:0.000000px;}
.ls1_c01325{letter-spacing:14.100000px;}
.ls0_c01325{letter-spacing:29.274000px;}
.sc__c01325{text-shadow:none;}
.sc0_c01325{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01325{-webkit-text-stroke:0px transparent;}
.sc0_c01325{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01325{word-spacing:-22.500000px;}
.ws1_c01325{word-spacing:-17.352000px;}
.ws2_c01325{word-spacing:-16.926000px;}
.ws3_c01325{word-spacing:0.000000px;}
._23_c01325{margin-left:-22.692000px;}
._25_c01325{margin-left:-19.812000px;}
._21_c01325{margin-left:-17.706000px;}
._22_c01325{margin-left:-16.536000px;}
._f_c01325{margin-left:-11.736000px;}
._10_c01325{margin-left:-9.720000px;}
._12_c01325{margin-left:-8.562000px;}
._27_c01325{margin-left:-7.530000px;}
._3_c01325{margin-left:-6.336000px;}
._4_c01325{margin-left:-5.184000px;}
._6_c01325{margin-left:-3.888000px;}
._7_c01325{margin-left:-2.616000px;}
._5_c01325{margin-left:-1.152000px;}
._1_c01325{width:1.008000px;}
._0_c01325{width:2.448000px;}
._9_c01325{width:4.428000px;}
._d_c01325{width:6.240000px;}
._1c_c01325{width:7.866000px;}
._c_c01325{width:9.048000px;}
._a_c01325{width:10.920000px;}
._1a_c01325{width:11.976000px;}
._b_c01325{width:13.338000px;}
._17_c01325{width:14.910000px;}
._18_c01325{width:18.336000px;}
._19_c01325{width:19.530000px;}
._1e_c01325{width:21.420000px;}
._1b_c01325{width:22.518000px;}
._2_c01325{width:24.192000px;}
._13_c01325{width:25.980000px;}
._14_c01325{width:28.974000px;}
._e_c01325{width:30.600000px;}
._16_c01325{width:33.762000px;}
._20_c01325{width:99.126000px;}
._26_c01325{width:112.710000px;}
._1d_c01325{width:138.906000px;}
._1f_c01325{width:145.566000px;}
._24_c01325{width:166.608000px;}
._15_c01325{width:219.624000px;}
._8_c01325{width:285.792000px;}
._11_c01325{width:459.000000px;}
.fc2_c01325{color:transparent;}
.fc1_c01325{color:rgb(128,128,128);}
.fc0_c01325{color:rgb(0,0,0);}
.fs5_c01325{font-size:48.000000px;}
.fs0_c01325{font-size:72.000000px;}
.fs1_c01325{font-size:78.000000px;}
.fs4_c01325{font-size:87.000000px;}
.fs2_c01325{font-size:90.000000px;}
.fs3_c01325{font-size:102.000000px;}
.y0_c01325{bottom:0.000000px;}
.y25_c01325{bottom:3.105000px;}
.y24_c01325{bottom:7.228371px;}
.y23_c01325{bottom:72.615000px;}
.y22_c01325{bottom:94.965000px;}
.y21_c01325{bottom:120.615000px;}
.y20_c01325{bottom:144.915000px;}
.y1f_c01325{bottom:169.815000px;}
.y1e_c01325{bottom:194.415000px;}
.y1d_c01325{bottom:219.465000px;}
.y1c_c01325{bottom:244.065000px;}
.y1b_c01325{bottom:269.115000px;}
.y1a_c01325{bottom:293.415000px;}
.y19_c01325{bottom:318.015000px;}
.y18_c01325{bottom:342.615000px;}
.y17_c01325{bottom:367.215000px;}
.y16_c01325{bottom:391.515000px;}
.y15_c01325{bottom:416.265000px;}
.y14_c01325{bottom:440.565000px;}
.y13_c01325{bottom:465.165000px;}
.y12_c01325{bottom:489.465000px;}
.y11_c01325{bottom:513.465000px;}
.y10_c01325{bottom:538.665000px;}
.yf_c01325{bottom:562.665000px;}
.ye_c01325{bottom:586.965000px;}
.yd_c01325{bottom:611.265000px;}
.yc_c01325{bottom:635.565000px;}
.yb_c01325{bottom:659.865000px;}
.ya_c01325{bottom:684.465000px;}
.y9_c01325{bottom:708.765000px;}
.y8_c01325{bottom:733.065000px;}
.y7_c01325{bottom:757.665000px;}
.y6_c01325{bottom:781.965000px;}
.y5_c01325{bottom:806.265000px;}
.y4_c01325{bottom:830.565000px;}
.y3_c01325{bottom:854.565000px;}
.y2_c01325{bottom:877.965000px;}
.y1_c01325{bottom:902.265000px;}
.h7_c01325{height:13.200074px;}
.h8_c01325{height:43.804688px;}
.h4_c01325{height:83.226000px;}
.h2_c01325{height:84.269531px;}
.h5_c01325{height:87.679688px;}
.h6_c01325{height:91.160156px;}
.h3_c01325{height:104.839927px;}
.h1_c01325{height:986.250000px;}
.h0_c01325{height:986.325000px;}
.w2_c01325{width:104.875500px;}
.w0_c01325{width:667.425000px;}
.w1_c01325{width:667.500000px;}
.x0_c01325{left:0.000000px;}
.x2_c01325{left:46.950000px;}
.x1_c01325{left:48.300000px;}
.x7_c01325{left:50.250000px;}
.xc_c01325{left:82.350000px;}
.xb_c01325{left:86.850000px;}
.xa_c01325{left:98.850000px;}
.xf_c01325{left:106.350000px;}
.x12_c01325{left:134.400000px;}
.x8_c01325{left:137.400000px;}
.x3_c01325{left:139.050000px;}
.x6_c01325{left:141.000000px;}
.x9_c01325{left:142.050000px;}
.x10_c01325{left:143.550000px;}
.x11_c01325{left:144.900000px;}
.x15_c01325{left:146.850000px;}
.x16_c01325{left:147.900000px;}
.x13_c01325{left:149.250000px;}
.x14_c01325{left:156.300000px;}
.xd_c01325{left:176.850000px;}
.x18_c01325{left:285.526749px;}
.x4_c01325{left:458.400000px;}
.x5_c01325{left:469.350000px;}
.x17_c01325{left:591.600000px;}
.xe_c01325{left:625.500000px;}
@media print{
.v0_c01325{vertical-align:0.000000pt;}
.ls3_c01325{letter-spacing:-8.000000pt;}
.ls2_c01325{letter-spacing:0.000000pt;}
.ls1_c01325{letter-spacing:12.533333pt;}
.ls0_c01325{letter-spacing:26.021333pt;}
.ws0_c01325{word-spacing:-20.000000pt;}
.ws1_c01325{word-spacing:-15.424000pt;}
.ws2_c01325{word-spacing:-15.045333pt;}
.ws3_c01325{word-spacing:0.000000pt;}
._23_c01325{margin-left:-20.170667pt;}
._25_c01325{margin-left:-17.610667pt;}
._21_c01325{margin-left:-15.738667pt;}
._22_c01325{margin-left:-14.698667pt;}
._f_c01325{margin-left:-10.432000pt;}
._10_c01325{margin-left:-8.640000pt;}
._12_c01325{margin-left:-7.610667pt;}
._27_c01325{margin-left:-6.693333pt;}
._3_c01325{margin-left:-5.632000pt;}
._4_c01325{margin-left:-4.608000pt;}
._6_c01325{margin-left:-3.456000pt;}
._7_c01325{margin-left:-2.325333pt;}
._5_c01325{margin-left:-1.024000pt;}
._1_c01325{width:0.896000pt;}
._0_c01325{width:2.176000pt;}
._9_c01325{width:3.936000pt;}
._d_c01325{width:5.546667pt;}
._1c_c01325{width:6.992000pt;}
._c_c01325{width:8.042667pt;}
._a_c01325{width:9.706667pt;}
._1a_c01325{width:10.645333pt;}
._b_c01325{width:11.856000pt;}
._17_c01325{width:13.253333pt;}
._18_c01325{width:16.298667pt;}
._19_c01325{width:17.360000pt;}
._1e_c01325{width:19.040000pt;}
._1b_c01325{width:20.016000pt;}
._2_c01325{width:21.504000pt;}
._13_c01325{width:23.093333pt;}
._14_c01325{width:25.754667pt;}
._e_c01325{width:27.200000pt;}
._16_c01325{width:30.010667pt;}
._20_c01325{width:88.112000pt;}
._26_c01325{width:100.186667pt;}
._1d_c01325{width:123.472000pt;}
._1f_c01325{width:129.392000pt;}
._24_c01325{width:148.096000pt;}
._15_c01325{width:195.221333pt;}
._8_c01325{width:254.037333pt;}
._11_c01325{width:408.000000pt;}
.fs5_c01325{font-size:42.666667pt;}
.fs0_c01325{font-size:64.000000pt;}
.fs1_c01325{font-size:69.333333pt;}
.fs4_c01325{font-size:77.333333pt;}
.fs2_c01325{font-size:80.000000pt;}
.fs3_c01325{font-size:90.666667pt;}
.y0_c01325{bottom:0.000000pt;}
.y25_c01325{bottom:2.760000pt;}
.y24_c01325{bottom:6.425219pt;}
.y23_c01325{bottom:64.546667pt;}
.y22_c01325{bottom:84.413333pt;}
.y21_c01325{bottom:107.213333pt;}
.y20_c01325{bottom:128.813333pt;}
.y1f_c01325{bottom:150.946667pt;}
.y1e_c01325{bottom:172.813333pt;}
.y1d_c01325{bottom:195.080000pt;}
.y1c_c01325{bottom:216.946667pt;}
.y1b_c01325{bottom:239.213333pt;}
.y1a_c01325{bottom:260.813333pt;}
.y19_c01325{bottom:282.680000pt;}
.y18_c01325{bottom:304.546667pt;}
.y17_c01325{bottom:326.413333pt;}
.y16_c01325{bottom:348.013333pt;}
.y15_c01325{bottom:370.013333pt;}
.y14_c01325{bottom:391.613333pt;}
.y13_c01325{bottom:413.480000pt;}
.y12_c01325{bottom:435.080000pt;}
.y11_c01325{bottom:456.413333pt;}
.y10_c01325{bottom:478.813333pt;}
.yf_c01325{bottom:500.146667pt;}
.ye_c01325{bottom:521.746667pt;}
.yd_c01325{bottom:543.346667pt;}
.yc_c01325{bottom:564.946667pt;}
.yb_c01325{bottom:586.546667pt;}
.ya_c01325{bottom:608.413333pt;}
.y9_c01325{bottom:630.013333pt;}
.y8_c01325{bottom:651.613333pt;}
.y7_c01325{bottom:673.480000pt;}
.y6_c01325{bottom:695.080000pt;}
.y5_c01325{bottom:716.680000pt;}
.y4_c01325{bottom:738.280000pt;}
.y3_c01325{bottom:759.613333pt;}
.y2_c01325{bottom:780.413333pt;}
.y1_c01325{bottom:802.013333pt;}
.h7_c01325{height:11.733399pt;}
.h8_c01325{height:38.937500pt;}
.h4_c01325{height:73.978667pt;}
.h2_c01325{height:74.906250pt;}
.h5_c01325{height:77.937500pt;}
.h6_c01325{height:81.031250pt;}
.h3_c01325{height:93.191046pt;}
.h1_c01325{height:876.666667pt;}
.h0_c01325{height:876.733333pt;}
.w2_c01325{width:93.222667pt;}
.w0_c01325{width:593.266667pt;}
.w1_c01325{width:593.333333pt;}
.x0_c01325{left:0.000000pt;}
.x2_c01325{left:41.733333pt;}
.x1_c01325{left:42.933333pt;}
.x7_c01325{left:44.666667pt;}
.xc_c01325{left:73.200000pt;}
.xb_c01325{left:77.200000pt;}
.xa_c01325{left:87.866667pt;}
.xf_c01325{left:94.533333pt;}
.x12_c01325{left:119.466667pt;}
.x8_c01325{left:122.133333pt;}
.x3_c01325{left:123.600000pt;}
.x6_c01325{left:125.333333pt;}
.x9_c01325{left:126.266667pt;}
.x10_c01325{left:127.600000pt;}
.x11_c01325{left:128.800000pt;}
.x15_c01325{left:130.533333pt;}
.x16_c01325{left:131.466667pt;}
.x13_c01325{left:132.666667pt;}
.x14_c01325{left:138.933333pt;}
.xd_c01325{left:157.200000pt;}
.x18_c01325{left:253.801554pt;}
.x4_c01325{left:407.466667pt;}
.x5_c01325{left:417.200000pt;}
.x17_c01325{left:525.866667pt;}
.xe_c01325{left:556.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_c01326 {
    display:none;
  }
  .loading-indicator_c01326.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01326 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01326 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01326" -> "#page-container .classname_c01326")
 */
.pf_c01326 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01326 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01326.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01326 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01326 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01326 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01326 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01326 {overflow:visible;}
  }
}
.c_c01326 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01326 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01326:after { /* webkit #35443 */
  content: '';
}
.t_c01326:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01326 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01326 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01326 { /* info for Javascript */
  display:none;
}
.l_c01326 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01326 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01326 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01326:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01326{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01326;src:url('chunks/assets/font_d2fbccc4325c0b2f68a8881e.woff2')format("woff");}.ff1_c01326{font-family:ff1_c01326;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01326;src:url('chunks/assets/font_4c6753fabbee5f743b9f9085.woff2')format("woff");}.ff2_c01326{font-family:ff2_c01326;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01326;src:url('chunks/assets/font_3b79964e59f25fbfecc52c20.woff2')format("woff");}.ff3_c01326{font-family:ff3_c01326;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01326;src:url('chunks/assets/font_690057d1eb7dcca8521fca04.woff2')format("woff");}.ff4_c01326{font-family:ff4_c01326;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01326;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c01326{font-family:ff5_c01326;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01326{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01326{vertical-align:0.000000px;}
.ls2_c01326{letter-spacing:-6.000000px;}
.ls3_c01326{letter-spacing:0.000000px;}
.ls0_c01326{letter-spacing:2.280000px;}
.ls4_c01326{letter-spacing:6.000000px;}
.ls1_c01326{letter-spacing:6.816000px;}
.sc__c01326{text-shadow:none;}
.sc0_c01326{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01326{-webkit-text-stroke:0px transparent;}
.sc0_c01326{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01326{word-spacing:-32.769000px;}
.ws1_c01326{word-spacing:-26.215200px;}
.ws2_c01326{word-spacing:-23.859000px;}
.ws4_c01326{word-spacing:-20.250000px;}
.ws3_c01326{word-spacing:-17.352000px;}
.ws5_c01326{word-spacing:0.000000px;}
._8_c01326{margin-left:-23.964000px;}
._1d_c01326{margin-left:-10.250400px;}
._9_c01326{margin-left:-9.009000px;}
._0_c01326{margin-left:-7.392000px;}
._3_c01326{margin-left:-5.928000px;}
._13_c01326{margin-left:-4.375200px;}
._1_c01326{margin-left:-3.168000px;}
._2_c01326{margin-left:-1.392000px;}
._a_c01326{width:1.144800px;}
._6_c01326{width:2.877000px;}
._7_c01326{width:4.449000px;}
._d_c01326{width:5.503200px;}
._5_c01326{width:7.425000px;}
._10_c01326{width:8.991000px;}
._4_c01326{width:9.999000px;}
._12_c01326{width:11.546400px;}
._11_c01326{width:12.979800px;}
._f_c01326{width:14.690400px;}
._16_c01326{width:16.114200px;}
._c_c01326{width:17.805000px;}
._19_c01326{width:19.225200px;}
._17_c01326{width:22.163400px;}
._14_c01326{width:23.251200px;}
._1e_c01326{width:27.201600px;}
._1a_c01326{width:28.816800px;}
._e_c01326{width:30.120000px;}
._15_c01326{width:36.076800px;}
._18_c01326{width:64.919400px;}
._b_c01326{width:67.992000px;}
._1c_c01326{width:113.734200px;}
._1b_c01326{width:170.989800px;}
.fc2_c01326{color:transparent;}
.fc1_c01326{color:rgb(128,128,128);}
.fc0_c01326{color:rgb(0,0,0);}
.fs5_c01326{font-size:48.000000px;}
.fs4_c01326{font-size:72.000000px;}
.fs2_c01326{font-size:79.200000px;}
.fs3_c01326{font-size:81.000000px;}
.fs1_c01326{font-size:99.000000px;}
.fs0_c01326{font-size:132.000000px;}
.y0_c01326{bottom:0.000000px;}
.y26_c01326{bottom:3.105000px;}
.y25_c01326{bottom:7.228357px;}
.y24_c01326{bottom:52.980000px;}
.y23_c01326{bottom:77.730000px;}
.y22_c01326{bottom:102.930000px;}
.y21_c01326{bottom:126.630000px;}
.y20_c01326{bottom:152.880000px;}
.y1f_c01326{bottom:177.630000px;}
.y1e_c01326{bottom:202.530000px;}
.y1d_c01326{bottom:227.130000px;}
.y1c_c01326{bottom:251.880000px;}
.y1b_c01326{bottom:276.030000px;}
.y1a_c01326{bottom:300.780000px;}
.y19_c01326{bottom:324.780000px;}
.y18_c01326{bottom:349.380000px;}
.y17_c01326{bottom:373.680000px;}
.y16_c01326{bottom:398.280000px;}
.y15_c01326{bottom:422.280000px;}
.y14_c01326{bottom:446.580000px;}
.y13_c01326{bottom:471.180000px;}
.y12_c01326{bottom:495.180000px;}
.y11_c01326{bottom:519.480000px;}
.y10_c01326{bottom:543.480000px;}
.yf_c01326{bottom:567.780000px;}
.ye_c01326{bottom:592.380000px;}
.yd_c01326{bottom:616.380000px;}
.yc_c01326{bottom:641.580000px;}
.yb_c01326{bottom:664.980000px;}
.ya_c01326{bottom:689.580000px;}
.y9_c01326{bottom:713.580000px;}
.y8_c01326{bottom:737.880000px;}
.y7_c01326{bottom:762.780000px;}
.y6_c01326{bottom:787.680000px;}
.y5_c01326{bottom:810.630000px;}
.y4_c01326{bottom:834.780000px;}
.y3_c01326{bottom:859.230000px;}
.y2_c01326{bottom:883.680000px;}
.y1_c01326{bottom:918.630000px;}
.h6_c01326{height:13.200074px;}
.h7_c01326{height:43.804688px;}
.h3_c01326{height:79.497070px;}
.h4_c01326{height:84.269531px;}
.h5_c01326{height:91.160156px;}
.h2_c01326{height:167.126953px;}
.h1_c01326{height:973.500000px;}
.h0_c01326{height:973.650000px;}
.w2_c01326{width:104.875500px;}
.w1_c01326{width:662.250000px;}
.w0_c01326{width:662.550000px;}
.x0_c01326{left:0.000000px;}
.x2_c01326{left:53.250000px;}
.x3_c01326{left:54.450000px;}
.x4_c01326{left:55.650000px;}
.x5_c01326{left:57.000000px;}
.x1_c01326{left:90.450000px;}
.x7_c01326{left:283.089249px;}
.x6_c01326{left:530.100000px;}
@media print{
.v0_c01326{vertical-align:0.000000pt;}
.ls2_c01326{letter-spacing:-5.333333pt;}
.ls3_c01326{letter-spacing:0.000000pt;}
.ls0_c01326{letter-spacing:2.026667pt;}
.ls4_c01326{letter-spacing:5.333333pt;}
.ls1_c01326{letter-spacing:6.058667pt;}
.ws0_c01326{word-spacing:-29.128000pt;}
.ws1_c01326{word-spacing:-23.302400pt;}
.ws2_c01326{word-spacing:-21.208000pt;}
.ws4_c01326{word-spacing:-18.000000pt;}
.ws3_c01326{word-spacing:-15.424000pt;}
.ws5_c01326{word-spacing:0.000000pt;}
._8_c01326{margin-left:-21.301333pt;}
._1d_c01326{margin-left:-9.111467pt;}
._9_c01326{margin-left:-8.008000pt;}
._0_c01326{margin-left:-6.570667pt;}
._3_c01326{margin-left:-5.269333pt;}
._13_c01326{margin-left:-3.889067pt;}
._1_c01326{margin-left:-2.816000pt;}
._2_c01326{margin-left:-1.237333pt;}
._a_c01326{width:1.017600pt;}
._6_c01326{width:2.557333pt;}
._7_c01326{width:3.954667pt;}
._d_c01326{width:4.891733pt;}
._5_c01326{width:6.600000pt;}
._10_c01326{width:7.992000pt;}
._4_c01326{width:8.888000pt;}
._12_c01326{width:10.263467pt;}
._11_c01326{width:11.537600pt;}
._f_c01326{width:13.058133pt;}
._16_c01326{width:14.323733pt;}
._c_c01326{width:15.826667pt;}
._19_c01326{width:17.089067pt;}
._17_c01326{width:19.700800pt;}
._14_c01326{width:20.667733pt;}
._1e_c01326{width:24.179200pt;}
._1a_c01326{width:25.614933pt;}
._e_c01326{width:26.773333pt;}
._15_c01326{width:32.068267pt;}
._18_c01326{width:57.706133pt;}
._b_c01326{width:60.437333pt;}
._1c_c01326{width:101.097067pt;}
._1b_c01326{width:151.990933pt;}
.fs5_c01326{font-size:42.666667pt;}
.fs4_c01326{font-size:64.000000pt;}
.fs2_c01326{font-size:70.400000pt;}
.fs3_c01326{font-size:72.000000pt;}
.fs1_c01326{font-size:88.000000pt;}
.fs0_c01326{font-size:117.333333pt;}
.y0_c01326{bottom:0.000000pt;}
.y26_c01326{bottom:2.760000pt;}
.y25_c01326{bottom:6.425206pt;}
.y24_c01326{bottom:47.093333pt;}
.y23_c01326{bottom:69.093333pt;}
.y22_c01326{bottom:91.493333pt;}
.y21_c01326{bottom:112.560000pt;}
.y20_c01326{bottom:135.893333pt;}
.y1f_c01326{bottom:157.893333pt;}
.y1e_c01326{bottom:180.026667pt;}
.y1d_c01326{bottom:201.893333pt;}
.y1c_c01326{bottom:223.893333pt;}
.y1b_c01326{bottom:245.360000pt;}
.y1a_c01326{bottom:267.360000pt;}
.y19_c01326{bottom:288.693333pt;}
.y18_c01326{bottom:310.560000pt;}
.y17_c01326{bottom:332.160000pt;}
.y16_c01326{bottom:354.026667pt;}
.y15_c01326{bottom:375.360000pt;}
.y14_c01326{bottom:396.960000pt;}
.y13_c01326{bottom:418.826667pt;}
.y12_c01326{bottom:440.160000pt;}
.y11_c01326{bottom:461.760000pt;}
.y10_c01326{bottom:483.093333pt;}
.yf_c01326{bottom:504.693333pt;}
.ye_c01326{bottom:526.560000pt;}
.yd_c01326{bottom:547.893333pt;}
.yc_c01326{bottom:570.293333pt;}
.yb_c01326{bottom:591.093333pt;}
.ya_c01326{bottom:612.960000pt;}
.y9_c01326{bottom:634.293333pt;}
.y8_c01326{bottom:655.893333pt;}
.y7_c01326{bottom:678.026667pt;}
.y6_c01326{bottom:700.160000pt;}
.y5_c01326{bottom:720.560000pt;}
.y4_c01326{bottom:742.026667pt;}
.y3_c01326{bottom:763.760000pt;}
.y2_c01326{bottom:785.493333pt;}
.y1_c01326{bottom:816.560000pt;}
.h6_c01326{height:11.733399pt;}
.h7_c01326{height:38.937500pt;}
.h3_c01326{height:70.664062pt;}
.h4_c01326{height:74.906250pt;}
.h5_c01326{height:81.031250pt;}
.h2_c01326{height:148.557292pt;}
.h1_c01326{height:865.333333pt;}
.h0_c01326{height:865.466667pt;}
.w2_c01326{width:93.222667pt;}
.w1_c01326{width:588.666667pt;}
.w0_c01326{width:588.933333pt;}
.x0_c01326{left:0.000000pt;}
.x2_c01326{left:47.333333pt;}
.x3_c01326{left:48.400000pt;}
.x4_c01326{left:49.466667pt;}
.x5_c01326{left:50.666667pt;}
.x1_c01326{left:80.400000pt;}
.x7_c01326{left:251.634888pt;}
.x6_c01326{left:471.200000pt;}
}





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

.ir_c01327:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01327{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01327;src:url('chunks/assets/font_b7b787e7a4e4f31344cb1b3a.woff2')format("woff");}.ff1_c01327{font-family:ff1_c01327;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01327;src:url('chunks/assets/font_398a4e506a6f05d6b99e4557.woff2')format("woff");}.ff2_c01327{font-family:ff2_c01327;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01327;src:url('chunks/assets/font_23e28786548646de1b07dd91.woff2')format("woff");}.ff3_c01327{font-family:ff3_c01327;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01327;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff4_c01327{font-family:ff4_c01327;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01327;src:url('chunks/assets/font_39ba2d79a2f78ed406320cf2.woff2')format("woff");}.ff5_c01327{font-family:ff5_c01327;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01327;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c01327{font-family:ff6_c01327;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01327{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01327{vertical-align:0.000000px;}
.v1_c01327{vertical-align:162.600000px;}
.ls2_c01327{letter-spacing:0.000000px;}
.ls1_c01327{letter-spacing:1.800000px;}
.ls4_c01327{letter-spacing:3.000000px;}
.ls3_c01327{letter-spacing:9.000000px;}
.ls0_c01327{letter-spacing:11.250000px;}
.sc__c01327{text-shadow:none;}
.sc0_c01327{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01327{-webkit-text-stroke:0px transparent;}
.sc0_c01327{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01327{word-spacing:-76.686000px;}
.ws4_c01327{word-spacing:-73.500000px;}
.ws0_c01327{word-spacing:-59.184000px;}
.ws1_c01327{word-spacing:-25.500000px;}
.ws5_c01327{word-spacing:-20.250000px;}
.ws3_c01327{word-spacing:-18.750000px;}
.ws6_c01327{word-spacing:0.000000px;}
._29_c01327{margin-left:-43.497000px;}
._38_c01327{margin-left:-35.040000px;}
._14_c01327{margin-left:-28.170000px;}
._24_c01327{margin-left:-26.811000px;}
._23_c01327{margin-left:-25.191000px;}
._1c_c01327{margin-left:-21.303000px;}
._1e_c01327{margin-left:-18.873000px;}
._27_c01327{margin-left:-17.532000px;}
._b_c01327{margin-left:-16.524000px;}
._e_c01327{margin-left:-15.309000px;}
._a_c01327{margin-left:-14.013000px;}
._25_c01327{margin-left:-12.636000px;}
._c_c01327{margin-left:-11.583000px;}
._16_c01327{margin-left:-10.314000px;}
._3c_c01327{margin-left:-9.288000px;}
._11_c01327{margin-left:-8.253000px;}
._5_c01327{margin-left:-6.318000px;}
._6_c01327{margin-left:-4.536000px;}
._3_c01327{margin-left:-2.511000px;}
._2_c01327{margin-left:-1.458000px;}
._13_c01327{width:1.035000px;}
._9_c01327{width:2.106000px;}
._8_c01327{width:3.159000px;}
._15_c01327{width:4.212000px;}
._4_c01327{width:5.265000px;}
._f_c01327{width:6.642000px;}
._3b_c01327{width:8.100000px;}
._1f_c01327{width:9.207000px;}
._1a_c01327{width:10.962000px;}
._1b_c01327{width:12.555000px;}
._18_c01327{width:13.986000px;}
._3a_c01327{width:15.129000px;}
._2c_c01327{width:16.767000px;}
._0_c01327{width:22.518000px;}
._28_c01327{width:25.029000px;}
._21_c01327{width:34.368000px;}
._26_c01327{width:37.017000px;}
._30_c01327{width:38.277000px;}
._31_c01327{width:39.885000px;}
._2f_c01327{width:42.768000px;}
._33_c01327{width:48.189000px;}
._36_c01327{width:63.651000px;}
._2d_c01327{width:64.800000px;}
._20_c01327{width:66.906000px;}
._d_c01327{width:70.713000px;}
._39_c01327{width:83.700000px;}
._17_c01327{width:96.684000px;}
._22_c01327{width:113.604000px;}
._12_c01327{width:116.316000px;}
._7_c01327{width:149.445000px;}
._32_c01327{width:168.912000px;}
._3e_c01327{width:172.263000px;}
._35_c01327{width:176.196000px;}
._2e_c01327{width:180.711000px;}
._1d_c01327{width:197.235000px;}
._37_c01327{width:217.728000px;}
._3f_c01327{width:249.156000px;}
._2b_c01327{width:342.792000px;}
._2a_c01327{width:384.750000px;}
._3d_c01327{width:396.009000px;}
._19_c01327{width:527.328000px;}
._34_c01327{width:660.996000px;}
._1_c01327{width:783.108000px;}
._10_c01327{width:931.083000px;}
.fc2_c01327{color:transparent;}
.fc1_c01327{color:rgb(128,128,128);}
.fc0_c01327{color:rgb(0,0,0);}
.fs9_c01327{font-size:48.000000px;}
.fs7_c01327{font-size:60.000000px;}
.fs3_c01327{font-size:63.000000px;}
.fs2_c01327{font-size:66.000000px;}
.fs1_c01327{font-size:72.000000px;}
.fs6_c01327{font-size:75.000000px;}
.fs0_c01327{font-size:81.000000px;}
.fs5_c01327{font-size:84.000000px;}
.fs4_c01327{font-size:87.000000px;}
.fs8_c01327{font-size:294.000000px;}
.y0_c01327{bottom:0.000000px;}
.y25_c01327{bottom:3.105000px;}
.y24_c01327{bottom:7.228355px;}
.y23_c01327{bottom:39.435000px;}
.y22_c01327{bottom:63.435000px;}
.y21_c01327{bottom:88.635000px;}
.y20_c01327{bottom:113.685000px;}
.y1f_c01327{bottom:138.435000px;}
.y1e_c01327{bottom:163.335000px;}
.y1d_c01327{bottom:188.235000px;}
.y1c_c01327{bottom:212.535000px;}
.y1b_c01327{bottom:237.135000px;}
.y1a_c01327{bottom:261.885000px;}
.y19_c01327{bottom:286.485000px;}
.y18_c01327{bottom:311.085000px;}
.y17_c01327{bottom:335.835000px;}
.y16_c01327{bottom:360.435000px;}
.y15_c01327{bottom:385.335000px;}
.y14_c01327{bottom:409.035000px;}
.y13_c01327{bottom:434.685000px;}
.y12_c01327{bottom:458.685000px;}
.y11_c01327{bottom:483.285000px;}
.y10_c01327{bottom:507.885000px;}
.yf_c01327{bottom:531.885000px;}
.ye_c01327{bottom:556.785000px;}
.yc_c01327{bottom:565.035000px;}
.yd_c01327{bottom:581.535000px;}
.yb_c01327{bottom:632.085000px;}
.ya_c01327{bottom:654.435000px;}
.y9_c01327{bottom:678.285000px;}
.y8_c01327{bottom:705.735000px;}
.y7_c01327{bottom:725.535000px;}
.y6_c01327{bottom:750.285000px;}
.y5_c01327{bottom:774.585000px;}
.y4_c01327{bottom:800.085000px;}
.y3_c01327{bottom:822.735000px;}
.y2_c01327{bottom:848.685000px;}
.y1_c01327{bottom:873.135000px;}
.h9_c01327{height:13.200074px;}
.ha_c01327{height:43.804688px;}
.h6_c01327{height:58.886719px;}
.h2_c01327{height:79.497070px;}
.h5_c01327{height:82.441406px;}
.h3_c01327{height:84.269531px;}
.h8_c01327{height:85.385742px;}
.h4_c01327{height:91.176000px;}
.h7_c01327{height:288.544922px;}
.h1_c01327{height:975.000000px;}
.h0_c01327{height:975.225000px;}
.w2_c01327{width:104.875500px;}
.w0_c01327{width:659.850000px;}
.w1_c01327{width:660.000000px;}
.x0_c01327{left:0.000000px;}
.xd_c01327{left:22.650000px;}
.x4_c01327{left:24.750000px;}
.x3_c01327{left:65.850000px;}
.xc_c01327{left:87.000000px;}
.xb_c01327{left:114.150000px;}
.x2_c01327{left:116.100000px;}
.x6_c01327{left:117.150000px;}
.x5_c01327{left:118.500000px;}
.xa_c01327{left:119.550000px;}
.x7_c01327{left:143.100000px;}
.x9_c01327{left:158.250000px;}
.x8_c01327{left:174.450000px;}
.x1_c01327{left:245.400000px;}
.xf_c01327{left:281.739258px;}
.xe_c01327{left:547.800000px;}
@media print{
.v0_c01327{vertical-align:0.000000pt;}
.v1_c01327{vertical-align:144.533333pt;}
.ls2_c01327{letter-spacing:0.000000pt;}
.ls1_c01327{letter-spacing:1.600000pt;}
.ls4_c01327{letter-spacing:2.666667pt;}
.ls3_c01327{letter-spacing:8.000000pt;}
.ls0_c01327{letter-spacing:10.000000pt;}
.ws2_c01327{word-spacing:-68.165333pt;}
.ws4_c01327{word-spacing:-65.333333pt;}
.ws0_c01327{word-spacing:-52.608000pt;}
.ws1_c01327{word-spacing:-22.666667pt;}
.ws5_c01327{word-spacing:-18.000000pt;}
.ws3_c01327{word-spacing:-16.666667pt;}
.ws6_c01327{word-spacing:0.000000pt;}
._29_c01327{margin-left:-38.664000pt;}
._38_c01327{margin-left:-31.146667pt;}
._14_c01327{margin-left:-25.040000pt;}
._24_c01327{margin-left:-23.832000pt;}
._23_c01327{margin-left:-22.392000pt;}
._1c_c01327{margin-left:-18.936000pt;}
._1e_c01327{margin-left:-16.776000pt;}
._27_c01327{margin-left:-15.584000pt;}
._b_c01327{margin-left:-14.688000pt;}
._e_c01327{margin-left:-13.608000pt;}
._a_c01327{margin-left:-12.456000pt;}
._25_c01327{margin-left:-11.232000pt;}
._c_c01327{margin-left:-10.296000pt;}
._16_c01327{margin-left:-9.168000pt;}
._3c_c01327{margin-left:-8.256000pt;}
._11_c01327{margin-left:-7.336000pt;}
._5_c01327{margin-left:-5.616000pt;}
._6_c01327{margin-left:-4.032000pt;}
._3_c01327{margin-left:-2.232000pt;}
._2_c01327{margin-left:-1.296000pt;}
._13_c01327{width:0.920000pt;}
._9_c01327{width:1.872000pt;}
._8_c01327{width:2.808000pt;}
._15_c01327{width:3.744000pt;}
._4_c01327{width:4.680000pt;}
._f_c01327{width:5.904000pt;}
._3b_c01327{width:7.200000pt;}
._1f_c01327{width:8.184000pt;}
._1a_c01327{width:9.744000pt;}
._1b_c01327{width:11.160000pt;}
._18_c01327{width:12.432000pt;}
._3a_c01327{width:13.448000pt;}
._2c_c01327{width:14.904000pt;}
._0_c01327{width:20.016000pt;}
._28_c01327{width:22.248000pt;}
._21_c01327{width:30.549333pt;}
._26_c01327{width:32.904000pt;}
._30_c01327{width:34.024000pt;}
._31_c01327{width:35.453333pt;}
._2f_c01327{width:38.016000pt;}
._33_c01327{width:42.834667pt;}
._36_c01327{width:56.578667pt;}
._2d_c01327{width:57.600000pt;}
._20_c01327{width:59.472000pt;}
._d_c01327{width:62.856000pt;}
._39_c01327{width:74.400000pt;}
._17_c01327{width:85.941333pt;}
._22_c01327{width:100.981333pt;}
._12_c01327{width:103.392000pt;}
._7_c01327{width:132.840000pt;}
._32_c01327{width:150.144000pt;}
._3e_c01327{width:153.122667pt;}
._35_c01327{width:156.618667pt;}
._2e_c01327{width:160.632000pt;}
._1d_c01327{width:175.320000pt;}
._37_c01327{width:193.536000pt;}
._3f_c01327{width:221.472000pt;}
._2b_c01327{width:304.704000pt;}
._2a_c01327{width:342.000000pt;}
._3d_c01327{width:352.008000pt;}
._19_c01327{width:468.736000pt;}
._34_c01327{width:587.552000pt;}
._1_c01327{width:696.096000pt;}
._10_c01327{width:827.629333pt;}
.fs9_c01327{font-size:42.666667pt;}
.fs7_c01327{font-size:53.333333pt;}
.fs3_c01327{font-size:56.000000pt;}
.fs2_c01327{font-size:58.666667pt;}
.fs1_c01327{font-size:64.000000pt;}
.fs6_c01327{font-size:66.666667pt;}
.fs0_c01327{font-size:72.000000pt;}
.fs5_c01327{font-size:74.666667pt;}
.fs4_c01327{font-size:77.333333pt;}
.fs8_c01327{font-size:261.333333pt;}
.y0_c01327{bottom:0.000000pt;}
.y25_c01327{bottom:2.760000pt;}
.y24_c01327{bottom:6.425204pt;}
.y23_c01327{bottom:35.053333pt;}
.y22_c01327{bottom:56.386667pt;}
.y21_c01327{bottom:78.786667pt;}
.y20_c01327{bottom:101.053333pt;}
.y1f_c01327{bottom:123.053333pt;}
.y1e_c01327{bottom:145.186667pt;}
.y1d_c01327{bottom:167.320000pt;}
.y1c_c01327{bottom:188.920000pt;}
.y1b_c01327{bottom:210.786667pt;}
.y1a_c01327{bottom:232.786667pt;}
.y19_c01327{bottom:254.653333pt;}
.y18_c01327{bottom:276.520000pt;}
.y17_c01327{bottom:298.520000pt;}
.y16_c01327{bottom:320.386667pt;}
.y15_c01327{bottom:342.520000pt;}
.y14_c01327{bottom:363.586667pt;}
.y13_c01327{bottom:386.386667pt;}
.y12_c01327{bottom:407.720000pt;}
.y11_c01327{bottom:429.586667pt;}
.y10_c01327{bottom:451.453333pt;}
.yf_c01327{bottom:472.786667pt;}
.ye_c01327{bottom:494.920000pt;}
.yc_c01327{bottom:502.253333pt;}
.yd_c01327{bottom:516.920000pt;}
.yb_c01327{bottom:561.853333pt;}
.ya_c01327{bottom:581.720000pt;}
.y9_c01327{bottom:602.920000pt;}
.y8_c01327{bottom:627.320000pt;}
.y7_c01327{bottom:644.920000pt;}
.y6_c01327{bottom:666.920000pt;}
.y5_c01327{bottom:688.520000pt;}
.y4_c01327{bottom:711.186667pt;}
.y3_c01327{bottom:731.320000pt;}
.y2_c01327{bottom:754.386667pt;}
.y1_c01327{bottom:776.120000pt;}
.h9_c01327{height:11.733399pt;}
.ha_c01327{height:38.937500pt;}
.h6_c01327{height:52.343750pt;}
.h2_c01327{height:70.664062pt;}
.h5_c01327{height:73.281250pt;}
.h3_c01327{height:74.906250pt;}
.h8_c01327{height:75.898438pt;}
.h4_c01327{height:81.045333pt;}
.h7_c01327{height:256.484375pt;}
.h1_c01327{height:866.666667pt;}
.h0_c01327{height:866.866667pt;}
.w2_c01327{width:93.222667pt;}
.w0_c01327{width:586.533333pt;}
.w1_c01327{width:586.666667pt;}
.x0_c01327{left:0.000000pt;}
.xd_c01327{left:20.133333pt;}
.x4_c01327{left:22.000000pt;}
.x3_c01327{left:58.533333pt;}
.xc_c01327{left:77.333333pt;}
.xb_c01327{left:101.466667pt;}
.x2_c01327{left:103.200000pt;}
.x6_c01327{left:104.133333pt;}
.x5_c01327{left:105.333333pt;}
.xa_c01327{left:106.266667pt;}
.x7_c01327{left:127.200000pt;}
.x9_c01327{left:140.666667pt;}
.x8_c01327{left:155.066667pt;}
.x1_c01327{left:218.133333pt;}
.xf_c01327{left:250.434896pt;}
.xe_c01327{left:486.933333pt;}
}





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

.ir_c01328:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01328{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01328;src:url('chunks/assets/font_80157259be5f322fd0bb40b0.woff2')format("woff");}.ff1_c01328{font-family:ff1_c01328;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01328;src:url('chunks/assets/font_d147df0ac81813b130dab6e0.woff2')format("woff");}.ff2_c01328{font-family:ff2_c01328;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01328;src:url('chunks/assets/font_ea6bdafd0a6f7137110cb9d7.woff2')format("woff");}.ff3_c01328{font-family:ff3_c01328;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01328;src:url('chunks/assets/font_124548dd57b66a2f5c00ee0e.woff2')format("woff");}.ff4_c01328{font-family:ff4_c01328;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01328;src:url('chunks/assets/font_a57831fb2b5980d622cf3746.woff2')format("woff");}.ff5_c01328{font-family:ff5_c01328;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01328;src:url('chunks/assets/font_9dde8905ea7ca0ee2a812b57.woff2')format("woff");}.ff6_c01328{font-family:ff6_c01328;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01328;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c01328{font-family:ff7_c01328;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01328{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01328{vertical-align:0.000000px;}
.ls5_c01328{letter-spacing:-9.000000px;}
.ls4_c01328{letter-spacing:0.000000px;}
.ls2_c01328{letter-spacing:1.104000px;}
.ls3_c01328{letter-spacing:6.000000px;}
.ls6_c01328{letter-spacing:9.000000px;}
.ls1_c01328{letter-spacing:12.432000px;}
.ls0_c01328{letter-spacing:91.650000px;}
.sc__c01328{text-shadow:none;}
.sc0_c01328{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01328{-webkit-text-stroke:0px transparent;}
.sc0_c01328{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c01328{word-spacing:-59.184000px;}
.ws1_c01328{word-spacing:-32.250000px;}
.ws0_c01328{word-spacing:-31.500000px;}
.ws2_c01328{word-spacing:-30.750000px;}
.ws4_c01328{word-spacing:-20.250000px;}
.ws5_c01328{word-spacing:0.000000px;}
._1e_c01328{margin-left:-26.280000px;}
._18_c01328{margin-left:-24.219000px;}
._1c_c01328{margin-left:-22.284000px;}
._16_c01328{margin-left:-18.468000px;}
._3_c01328{margin-left:-13.464000px;}
._6_c01328{margin-left:-10.812000px;}
._9_c01328{margin-left:-8.670000px;}
._4_c01328{margin-left:-7.218000px;}
._5_c01328{margin-left:-5.712000px;}
._2_c01328{margin-left:-3.900000px;}
._a_c01328{margin-left:-2.832000px;}
._d_c01328{margin-left:-1.554000px;}
._e_c01328{width:1.629000px;}
._1_c01328{width:3.048000px;}
._b_c01328{width:4.938000px;}
._0_c01328{width:6.018000px;}
._f_c01328{width:7.194000px;}
._12_c01328{width:8.364000px;}
._8_c01328{width:9.486000px;}
._7_c01328{width:11.118000px;}
._1b_c01328{width:12.123000px;}
._c_c01328{width:13.182000px;}
._13_c01328{width:14.796000px;}
._11_c01328{width:16.851000px;}
._14_c01328{width:21.438000px;}
._15_c01328{width:23.769000px;}
._1a_c01328{width:33.498000px;}
._10_c01328{width:37.839000px;}
._1d_c01328{width:41.244000px;}
._17_c01328{width:87.723000px;}
._19_c01328{width:93.150000px;}
.fc2_c01328{color:transparent;}
.fc1_c01328{color:rgb(128,128,128);}
.fc0_c01328{color:rgb(0,0,0);}
.fs7_c01328{font-size:48.000000px;}
.fs6_c01328{font-size:72.000000px;}
.fs5_c01328{font-size:78.000000px;}
.fs4_c01328{font-size:81.000000px;}
.fs3_c01328{font-size:87.000000px;}
.fs2_c01328{font-size:99.000000px;}
.fs0_c01328{font-size:102.000000px;}
.fs1_c01328{font-size:129.000000px;}
.y0_c01328{bottom:0.000000px;}
.y26_c01328{bottom:3.105000px;}
.y25_c01328{bottom:7.228369px;}
.y24_c01328{bottom:69.570000px;}
.y23_c01328{bottom:94.770000px;}
.y22_c01328{bottom:120.720000px;}
.y21_c01328{bottom:145.470000px;}
.y20_c01328{bottom:170.370000px;}
.y1f_c01328{bottom:194.370000px;}
.y1e_c01328{bottom:218.970000px;}
.y1d_c01328{bottom:244.320000px;}
.y1c_c01328{bottom:269.370000px;}
.y1b_c01328{bottom:293.220000px;}
.y1a_c01328{bottom:317.970000px;}
.y19_c01328{bottom:342.570000px;}
.y18_c01328{bottom:367.170000px;}
.y17_c01328{bottom:391.470000px;}
.y16_c01328{bottom:416.370000px;}
.y15_c01328{bottom:440.670000px;}
.y14_c01328{bottom:464.070000px;}
.y13_c01328{bottom:488.970000px;}
.y12_c01328{bottom:513.270000px;}
.y11_c01328{bottom:537.870000px;}
.y10_c01328{bottom:562.170000px;}
.yf_c01328{bottom:586.170000px;}
.ye_c01328{bottom:609.870000px;}
.yd_c01328{bottom:634.170000px;}
.yc_c01328{bottom:658.770000px;}
.yb_c01328{bottom:683.070000px;}
.ya_c01328{bottom:707.970000px;}
.y9_c01328{bottom:731.370000px;}
.y8_c01328{bottom:755.220000px;}
.y7_c01328{bottom:780.270000px;}
.y6_c01328{bottom:804.570000px;}
.y5_c01328{bottom:829.170000px;}
.y4_c01328{bottom:853.920000px;}
.y3_c01328{bottom:878.220000px;}
.y2_c01328{bottom:903.420000px;}
.y1_c01328{bottom:936.870000px;}
.h7_c01328{height:13.200073px;}
.h8_c01328{height:43.804688px;}
.h4_c01328{height:79.497070px;}
.h6_c01328{height:84.269531px;}
.h5_c01328{height:91.160156px;}
.h3_c01328{height:98.756836px;}
.h2_c01328{height:126.543457px;}
.h1_c01328{height:986.250000px;}
.h0_c01328{height:986.550000px;}
.w1_c01328{width:104.875500px;}
.w0_c01328{width:672.000000px;}
.x0_c01328{left:0.000000px;}
.x6_c01328{left:14.850000px;}
.x3_c01328{left:25.950000px;}
.xa_c01328{left:31.950000px;}
.x4_c01328{left:45.600000px;}
.x2_c01328{left:47.250000px;}
.x9_c01328{left:48.600000px;}
.x7_c01328{left:51.900000px;}
.x8_c01328{left:53.700000px;}
.x5_c01328{left:70.500000px;}
.x1_c01328{left:84.000000px;}
.xc_c01328{left:287.814240px;}
.xb_c01328{left:524.250000px;}
@media print{
.v0_c01328{vertical-align:0.000000pt;}
.ls5_c01328{letter-spacing:-8.000000pt;}
.ls4_c01328{letter-spacing:0.000000pt;}
.ls2_c01328{letter-spacing:0.981333pt;}
.ls3_c01328{letter-spacing:5.333333pt;}
.ls6_c01328{letter-spacing:8.000000pt;}
.ls1_c01328{letter-spacing:11.050667pt;}
.ls0_c01328{letter-spacing:81.466667pt;}
.ws3_c01328{word-spacing:-52.608000pt;}
.ws1_c01328{word-spacing:-28.666667pt;}
.ws0_c01328{word-spacing:-28.000000pt;}
.ws2_c01328{word-spacing:-27.333333pt;}
.ws4_c01328{word-spacing:-18.000000pt;}
.ws5_c01328{word-spacing:0.000000pt;}
._1e_c01328{margin-left:-23.360000pt;}
._18_c01328{margin-left:-21.528000pt;}
._1c_c01328{margin-left:-19.808000pt;}
._16_c01328{margin-left:-16.416000pt;}
._3_c01328{margin-left:-11.968000pt;}
._6_c01328{margin-left:-9.610667pt;}
._9_c01328{margin-left:-7.706667pt;}
._4_c01328{margin-left:-6.416000pt;}
._5_c01328{margin-left:-5.077333pt;}
._2_c01328{margin-left:-3.466667pt;}
._a_c01328{margin-left:-2.517333pt;}
._d_c01328{margin-left:-1.381333pt;}
._e_c01328{width:1.448000pt;}
._1_c01328{width:2.709333pt;}
._b_c01328{width:4.389333pt;}
._0_c01328{width:5.349333pt;}
._f_c01328{width:6.394667pt;}
._12_c01328{width:7.434667pt;}
._8_c01328{width:8.432000pt;}
._7_c01328{width:9.882667pt;}
._1b_c01328{width:10.776000pt;}
._c_c01328{width:11.717333pt;}
._13_c01328{width:13.152000pt;}
._11_c01328{width:14.978667pt;}
._14_c01328{width:19.056000pt;}
._15_c01328{width:21.128000pt;}
._1a_c01328{width:29.776000pt;}
._10_c01328{width:33.634667pt;}
._1d_c01328{width:36.661333pt;}
._17_c01328{width:77.976000pt;}
._19_c01328{width:82.800000pt;}
.fs7_c01328{font-size:42.666667pt;}
.fs6_c01328{font-size:64.000000pt;}
.fs5_c01328{font-size:69.333333pt;}
.fs4_c01328{font-size:72.000000pt;}
.fs3_c01328{font-size:77.333333pt;}
.fs2_c01328{font-size:88.000000pt;}
.fs0_c01328{font-size:90.666667pt;}
.fs1_c01328{font-size:114.666667pt;}
.y0_c01328{bottom:0.000000pt;}
.y26_c01328{bottom:2.760000pt;}
.y25_c01328{bottom:6.425217pt;}
.y24_c01328{bottom:61.840000pt;}
.y23_c01328{bottom:84.240000pt;}
.y22_c01328{bottom:107.306667pt;}
.y21_c01328{bottom:129.306667pt;}
.y20_c01328{bottom:151.440000pt;}
.y1f_c01328{bottom:172.773333pt;}
.y1e_c01328{bottom:194.640000pt;}
.y1d_c01328{bottom:217.173333pt;}
.y1c_c01328{bottom:239.440000pt;}
.y1b_c01328{bottom:260.640000pt;}
.y1a_c01328{bottom:282.640000pt;}
.y19_c01328{bottom:304.506667pt;}
.y18_c01328{bottom:326.373333pt;}
.y17_c01328{bottom:347.973333pt;}
.y16_c01328{bottom:370.106667pt;}
.y15_c01328{bottom:391.706667pt;}
.y14_c01328{bottom:412.506667pt;}
.y13_c01328{bottom:434.640000pt;}
.y12_c01328{bottom:456.240000pt;}
.y11_c01328{bottom:478.106667pt;}
.y10_c01328{bottom:499.706667pt;}
.yf_c01328{bottom:521.040000pt;}
.ye_c01328{bottom:542.106667pt;}
.yd_c01328{bottom:563.706667pt;}
.yc_c01328{bottom:585.573333pt;}
.yb_c01328{bottom:607.173333pt;}
.ya_c01328{bottom:629.306667pt;}
.y9_c01328{bottom:650.106667pt;}
.y8_c01328{bottom:671.306667pt;}
.y7_c01328{bottom:693.573333pt;}
.y6_c01328{bottom:715.173333pt;}
.y5_c01328{bottom:737.040000pt;}
.y4_c01328{bottom:759.040000pt;}
.y3_c01328{bottom:780.640000pt;}
.y2_c01328{bottom:803.040000pt;}
.y1_c01328{bottom:832.773333pt;}
.h7_c01328{height:11.733399pt;}
.h8_c01328{height:38.937500pt;}
.h4_c01328{height:70.664062pt;}
.h6_c01328{height:74.906250pt;}
.h5_c01328{height:81.031250pt;}
.h3_c01328{height:87.783854pt;}
.h2_c01328{height:112.483073pt;}
.h1_c01328{height:876.666667pt;}
.h0_c01328{height:876.933333pt;}
.w1_c01328{width:93.222667pt;}
.w0_c01328{width:597.333333pt;}
.x0_c01328{left:0.000000pt;}
.x6_c01328{left:13.200000pt;}
.x3_c01328{left:23.066667pt;}
.xa_c01328{left:28.400000pt;}
.x4_c01328{left:40.533333pt;}
.x2_c01328{left:42.000000pt;}
.x9_c01328{left:43.200000pt;}
.x7_c01328{left:46.133333pt;}
.x8_c01328{left:47.733333pt;}
.x5_c01328{left:62.666667pt;}
.x1_c01328{left:74.666667pt;}
.xc_c01328{left:255.834880pt;}
.xb_c01328{left:466.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_c01329 {
    display:none;
  }
  .loading-indicator_c01329.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01329 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01329 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01329" -> "#page-container .classname_c01329")
 */
.pf_c01329 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01329 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01329.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01329 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01329 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01329 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01329 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01329 {overflow:visible;}
  }
}
.c_c01329 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01329 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01329:after { /* webkit #35443 */
  content: '';
}
.t_c01329:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01329 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01329 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01329 { /* info for Javascript */
  display:none;
}
.l_c01329 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01329 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01329 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01329:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01329{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01329;src:url('chunks/assets/font_2a5641a2856d74859d3d708c.woff2')format("woff");}.ff1_c01329{font-family:ff1_c01329;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01329;src:url('chunks/assets/font_48cc866d35c9722ca765942e.woff2')format("woff");}.ff2_c01329{font-family:ff2_c01329;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01329;src:url('chunks/assets/font_6300f215265b1e614c4ba446.woff2')format("woff");}.ff3_c01329{font-family:ff3_c01329;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01329;src:url('chunks/assets/font_6a23477819111ff741c1945b.woff2')format("woff");}.ff4_c01329{font-family:ff4_c01329;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01329;src:url('chunks/assets/font_0dea98b5253efb28c8e5b1a5.woff2')format("woff");}.ff5_c01329{font-family:ff5_c01329;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01329;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c01329{font-family:ff6_c01329;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01329{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01329{vertical-align:0.000000px;}
.ls5_c01329{letter-spacing:-6.000000px;}
.ls2_c01329{letter-spacing:0.000000px;}
.ls0_c01329{letter-spacing:2.112000px;}
.ls1_c01329{letter-spacing:2.400000px;}
.ls3_c01329{letter-spacing:3.000000px;}
.ls4_c01329{letter-spacing:6.000000px;}
.sc__c01329{text-shadow:none;}
.sc0_c01329{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01329{-webkit-text-stroke:0px transparent;}
.sc0_c01329{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01329{word-spacing:-21.798000px;}
.ws2_c01329{word-spacing:-21.000000px;}
.ws3_c01329{word-spacing:-17.352000px;}
.ws4_c01329{word-spacing:-11.352000px;}
.ws0_c01329{word-spacing:-2.712000px;}
.ws5_c01329{word-spacing:0.000000px;}
._1f_c01329{margin-left:-22.761000px;}
._1d_c01329{margin-left:-18.432000px;}
._17_c01329{margin-left:-15.876000px;}
._24_c01329{margin-left:-13.968000px;}
._20_c01329{margin-left:-12.393000px;}
._16_c01329{margin-left:-10.818000px;}
._d_c01329{margin-left:-9.720000px;}
._22_c01329{margin-left:-8.493000px;}
._11_c01329{margin-left:-7.047000px;}
._15_c01329{margin-left:-5.262000px;}
._5_c01329{margin-left:-3.888000px;}
._7_c01329{margin-left:-1.944000px;}
._12_c01329{width:1.074000px;}
._0_c01329{width:2.106000px;}
._6_c01329{width:3.402000px;}
._1_c01329{width:4.698000px;}
._3_c01329{width:6.237000px;}
._4_c01329{width:7.857000px;}
._2_c01329{width:9.153000px;}
._13_c01329{width:10.206000px;}
._f_c01329{width:11.421000px;}
._9_c01329{width:13.041000px;}
._c_c01329{width:14.688000px;}
._8_c01329{width:15.957000px;}
._a_c01329{width:18.528000px;}
._19_c01329{width:21.708000px;}
._e_c01329{width:27.945000px;}
._1e_c01329{width:29.589000px;}
._1b_c01329{width:39.123000px;}
._10_c01329{width:46.278000px;}
._b_c01329{width:59.874000px;}
._1c_c01329{width:70.287000px;}
._18_c01329{width:122.229000px;}
._25_c01329{width:175.071000px;}
._21_c01329{width:262.647000px;}
._1a_c01329{width:313.227000px;}
._14_c01329{width:319.488000px;}
._23_c01329{width:337.182000px;}
._26_c01329{width:1062.720000px;}
.fc2_c01329{color:transparent;}
.fc1_c01329{color:rgb(128,128,128);}
.fc0_c01329{color:rgb(0,0,0);}
.fs2_c01329{font-size:48.000000px;}
.fs1_c01329{font-size:51.000000px;}
.fs3_c01329{font-size:66.000000px;}
.fs6_c01329{font-size:72.000000px;}
.fs4_c01329{font-size:78.000000px;}
.fs0_c01329{font-size:81.000000px;}
.fs5_c01329{font-size:84.000000px;}
.y0_c01329{bottom:0.000000px;}
.y23_c01329{bottom:3.105000px;}
.y22_c01329{bottom:7.228371px;}
.y21_c01329{bottom:72.315000px;}
.y20_c01329{bottom:94.965000px;}
.y1f_c01329{bottom:120.165000px;}
.y1e_c01329{bottom:144.915000px;}
.y1d_c01329{bottom:169.515000px;}
.y1c_c01329{bottom:194.415000px;}
.y1b_c01329{bottom:219.015000px;}
.y1a_c01329{bottom:243.765000px;}
.y19_c01329{bottom:269.115000px;}
.y18_c01329{bottom:293.265000px;}
.y17_c01329{bottom:318.915000px;}
.y16_c01329{bottom:342.615000px;}
.y15_c01329{bottom:366.915000px;}
.y14_c01329{bottom:391.815000px;}
.y13_c01329{bottom:416.565000px;}
.y12_c01329{bottom:441.915000px;}
.y11_c01329{bottom:466.065000px;}
.y10_c01329{bottom:489.165000px;}
.yf_c01329{bottom:514.365000px;}
.ye_c01329{bottom:539.115000px;}
.yd_c01329{bottom:563.715000px;}
.yc_c01329{bottom:590.715000px;}
.yb_c01329{bottom:618.765000px;}
.ya_c01329{bottom:648.465000px;}
.y9_c01329{bottom:706.065000px;}
.y8_c01329{bottom:731.715000px;}
.y7_c01329{bottom:756.465000px;}
.y6_c01329{bottom:780.615000px;}
.y5_c01329{bottom:805.365000px;}
.y4_c01329{bottom:830.265000px;}
.y3_c01329{bottom:853.665000px;}
.y2_c01329{bottom:878.265000px;}
.y1_c01329{bottom:903.165000px;}
.h8_c01329{height:13.200074px;}
.h9_c01329{height:43.804688px;}
.h2_c01329{height:79.497070px;}
.h4_c01329{height:82.400391px;}
.h5_c01329{height:82.441406px;}
.h6_c01329{height:84.269531px;}
.h7_c01329{height:91.160156px;}
.h3_c01329{height:98.756836px;}
.h1_c01329{height:986.250000px;}
.h0_c01329{height:986.325000px;}
.w2_c01329{width:104.875500px;}
.w0_c01329{width:667.425000px;}
.w1_c01329{width:667.500000px;}
.x0_c01329{left:0.000000px;}
.xe_c01329{left:16.500000px;}
.xf_c01329{left:21.300000px;}
.xd_c01329{left:78.000000px;}
.x4_c01329{left:111.450000px;}
.xc_c01329{left:113.400000px;}
.x3_c01329{left:115.500000px;}
.x2_c01329{left:116.550000px;}
.x1_c01329{left:118.200000px;}
.xb_c01329{left:154.650000px;}
.x5_c01329{left:174.900000px;}
.x8_c01329{left:188.400000px;}
.xa_c01329{left:224.400000px;}
.x9_c01329{left:225.900000px;}
.x7_c01329{left:238.650000px;}
.x10_c01329{left:285.900000px;}
.x6_c01329{left:326.700000px;}
@media print{
.v0_c01329{vertical-align:0.000000pt;}
.ls5_c01329{letter-spacing:-5.333333pt;}
.ls2_c01329{letter-spacing:0.000000pt;}
.ls0_c01329{letter-spacing:1.877333pt;}
.ls1_c01329{letter-spacing:2.133333pt;}
.ls3_c01329{letter-spacing:2.666667pt;}
.ls4_c01329{letter-spacing:5.333333pt;}
.ws1_c01329{word-spacing:-19.376000pt;}
.ws2_c01329{word-spacing:-18.666667pt;}
.ws3_c01329{word-spacing:-15.424000pt;}
.ws4_c01329{word-spacing:-10.090667pt;}
.ws0_c01329{word-spacing:-2.410667pt;}
.ws5_c01329{word-spacing:0.000000pt;}
._1f_c01329{margin-left:-20.232000pt;}
._1d_c01329{margin-left:-16.384000pt;}
._17_c01329{margin-left:-14.112000pt;}
._24_c01329{margin-left:-12.416000pt;}
._20_c01329{margin-left:-11.016000pt;}
._16_c01329{margin-left:-9.616000pt;}
._d_c01329{margin-left:-8.640000pt;}
._22_c01329{margin-left:-7.549333pt;}
._11_c01329{margin-left:-6.264000pt;}
._15_c01329{margin-left:-4.677333pt;}
._5_c01329{margin-left:-3.456000pt;}
._7_c01329{margin-left:-1.728000pt;}
._12_c01329{width:0.954667pt;}
._0_c01329{width:1.872000pt;}
._6_c01329{width:3.024000pt;}
._1_c01329{width:4.176000pt;}
._3_c01329{width:5.544000pt;}
._4_c01329{width:6.984000pt;}
._2_c01329{width:8.136000pt;}
._13_c01329{width:9.072000pt;}
._f_c01329{width:10.152000pt;}
._9_c01329{width:11.592000pt;}
._c_c01329{width:13.056000pt;}
._8_c01329{width:14.184000pt;}
._a_c01329{width:16.469333pt;}
._19_c01329{width:19.296000pt;}
._e_c01329{width:24.840000pt;}
._1e_c01329{width:26.301333pt;}
._1b_c01329{width:34.776000pt;}
._10_c01329{width:41.136000pt;}
._b_c01329{width:53.221333pt;}
._1c_c01329{width:62.477333pt;}
._18_c01329{width:108.648000pt;}
._25_c01329{width:155.618667pt;}
._21_c01329{width:233.464000pt;}
._1a_c01329{width:278.424000pt;}
._14_c01329{width:283.989333pt;}
._23_c01329{width:299.717333pt;}
._26_c01329{width:944.640000pt;}
.fs2_c01329{font-size:42.666667pt;}
.fs1_c01329{font-size:45.333333pt;}
.fs3_c01329{font-size:58.666667pt;}
.fs6_c01329{font-size:64.000000pt;}
.fs4_c01329{font-size:69.333333pt;}
.fs0_c01329{font-size:72.000000pt;}
.fs5_c01329{font-size:74.666667pt;}
.y0_c01329{bottom:0.000000pt;}
.y23_c01329{bottom:2.760000pt;}
.y22_c01329{bottom:6.425219pt;}
.y21_c01329{bottom:64.280000pt;}
.y20_c01329{bottom:84.413333pt;}
.y1f_c01329{bottom:106.813333pt;}
.y1e_c01329{bottom:128.813333pt;}
.y1d_c01329{bottom:150.680000pt;}
.y1c_c01329{bottom:172.813333pt;}
.y1b_c01329{bottom:194.680000pt;}
.y1a_c01329{bottom:216.680000pt;}
.y19_c01329{bottom:239.213333pt;}
.y18_c01329{bottom:260.680000pt;}
.y17_c01329{bottom:283.480000pt;}
.y16_c01329{bottom:304.546667pt;}
.y15_c01329{bottom:326.146667pt;}
.y14_c01329{bottom:348.280000pt;}
.y13_c01329{bottom:370.280000pt;}
.y12_c01329{bottom:392.813333pt;}
.y11_c01329{bottom:414.280000pt;}
.y10_c01329{bottom:434.813333pt;}
.yf_c01329{bottom:457.213333pt;}
.ye_c01329{bottom:479.213333pt;}
.yd_c01329{bottom:501.080000pt;}
.yc_c01329{bottom:525.080000pt;}
.yb_c01329{bottom:550.013333pt;}
.ya_c01329{bottom:576.413333pt;}
.y9_c01329{bottom:627.613333pt;}
.y8_c01329{bottom:650.413333pt;}
.y7_c01329{bottom:672.413333pt;}
.y6_c01329{bottom:693.880000pt;}
.y5_c01329{bottom:715.880000pt;}
.y4_c01329{bottom:738.013333pt;}
.y3_c01329{bottom:758.813333pt;}
.y2_c01329{bottom:780.680000pt;}
.y1_c01329{bottom:802.813333pt;}
.h8_c01329{height:11.733399pt;}
.h9_c01329{height:38.937500pt;}
.h2_c01329{height:70.664062pt;}
.h4_c01329{height:73.244792pt;}
.h5_c01329{height:73.281250pt;}
.h6_c01329{height:74.906250pt;}
.h7_c01329{height:81.031250pt;}
.h3_c01329{height:87.783854pt;}
.h1_c01329{height:876.666667pt;}
.h0_c01329{height:876.733333pt;}
.w2_c01329{width:93.222667pt;}
.w0_c01329{width:593.266667pt;}
.w1_c01329{width:593.333333pt;}
.x0_c01329{left:0.000000pt;}
.xe_c01329{left:14.666667pt;}
.xf_c01329{left:18.933333pt;}
.xd_c01329{left:69.333333pt;}
.x4_c01329{left:99.066667pt;}
.xc_c01329{left:100.800000pt;}
.x3_c01329{left:102.666667pt;}
.x2_c01329{left:103.600000pt;}
.x1_c01329{left:105.066667pt;}
.xb_c01329{left:137.466667pt;}
.x5_c01329{left:155.466667pt;}
.x8_c01329{left:167.466667pt;}
.xa_c01329{left:199.466667pt;}
.x9_c01329{left:200.800000pt;}
.x7_c01329{left:212.133333pt;}
.x10_c01329{left:254.133333pt;}
.x6_c01329{left:290.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_c01330 {
    display:none;
  }
  .loading-indicator_c01330.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01330 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01330 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01330" -> "#page-container .classname_c01330")
 */
.pf_c01330 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01330 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01330.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01330 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01330 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01330 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01330 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01330 {overflow:visible;}
  }
}
.c_c01330 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01330 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01330:after { /* webkit #35443 */
  content: '';
}
.t_c01330:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01330 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01330 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01330 { /* info for Javascript */
  display:none;
}
.l_c01330 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01330 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01330 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01330:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01330{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01330;src:url('chunks/assets/font_904c3e2e1aabe982babc9ab3.woff2')format("woff");}.ff1_c01330{font-family:ff1_c01330;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01330;src:url('chunks/assets/font_bab76ba9e568ba661ed1c318.woff2')format("woff");}.ff2_c01330{font-family:ff2_c01330;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01330;src:url('chunks/assets/font_2a63de94bbedb14938b21373.woff2')format("woff");}.ff3_c01330{font-family:ff3_c01330;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01330;src:url('chunks/assets/font_160f3c05260e73b5415da045.woff2')format("woff");}.ff4_c01330{font-family:ff4_c01330;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01330;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff5_c01330{font-family:ff5_c01330;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01330;src:url('chunks/assets/font_3353190cd926aeb9aa922ff7.woff2')format("woff");}.ff6_c01330{font-family:ff6_c01330;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01330;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c01330{font-family:ff7_c01330;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01330{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01330{vertical-align:0.000000px;}
.ls5_c01330{letter-spacing:-6.000000px;}
.ls3_c01330{letter-spacing:0.000000px;}
.ls2_c01330{letter-spacing:9.000000px;}
.ls4_c01330{letter-spacing:12.000000px;}
.ls1_c01330{letter-spacing:17.880000px;}
.ls0_c01330{letter-spacing:33.900000px;}
.sc__c01330{text-shadow:none;}
.sc0_c01330{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01330{-webkit-text-stroke:0px transparent;}
.sc0_c01330{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c01330{word-spacing:-58.899000px;}
.ws0_c01330{word-spacing:-26.250000px;}
.ws1_c01330{word-spacing:-17.352000px;}
.ws2_c01330{word-spacing:-11.352000px;}
.ws4_c01330{word-spacing:0.000000px;}
._21_c01330{margin-left:-27.612000px;}
._0_c01330{margin-left:-22.692000px;}
._1f_c01330{margin-left:-20.208000px;}
._1_c01330{margin-left:-19.008000px;}
._19_c01330{margin-left:-16.617000px;}
._4_c01330{margin-left:-15.075000px;}
._9_c01330{margin-left:-13.335000px;}
._17_c01330{margin-left:-11.661000px;}
._2_c01330{margin-left:-9.765000px;}
._5_c01330{margin-left:-7.980000px;}
._1c_c01330{margin-left:-6.495000px;}
._3_c01330{margin-left:-5.460000px;}
._6_c01330{margin-left:-3.990000px;}
._7_c01330{margin-left:-2.835000px;}
._8_c01330{margin-left:-1.530000px;}
._d_c01330{width:1.050000px;}
._a_c01330{width:2.310000px;}
._10_c01330{width:3.381000px;}
._c_c01330{width:4.515000px;}
._b_c01330{width:6.405000px;}
._14_c01330{width:7.983000px;}
._11_c01330{width:9.195000px;}
._12_c01330{width:10.899000px;}
._1b_c01330{width:11.970000px;}
._13_c01330{width:13.185000px;}
._15_c01330{width:14.328000px;}
._f_c01330{width:15.624000px;}
._22_c01330{width:16.803000px;}
._1a_c01330{width:20.418000px;}
._1d_c01330{width:22.386000px;}
._20_c01330{width:28.089000px;}
._16_c01330{width:30.423000px;}
._18_c01330{width:35.616000px;}
._1e_c01330{width:39.186000px;}
._e_c01330{width:246.729000px;}
.fc2_c01330{color:transparent;}
.fc1_c01330{color:rgb(128,128,128);}
.fc0_c01330{color:rgb(0,0,0);}
.fs6_c01330{font-size:48.000000px;}
.fs4_c01330{font-size:57.000000px;}
.fs3_c01330{font-size:72.000000px;}
.fs0_c01330{font-size:81.000000px;}
.fs5_c01330{font-size:87.000000px;}
.fs1_c01330{font-size:93.000000px;}
.fs2_c01330{font-size:105.000000px;}
.y0_c01330{bottom:0.000000px;}
.y25_c01330{bottom:3.105000px;}
.y24_c01330{bottom:7.228369px;}
.y23_c01330{bottom:54.270000px;}
.y22_c01330{bottom:80.220000px;}
.y21_c01330{bottom:106.920000px;}
.y20_c01330{bottom:131.670000px;}
.y1f_c01330{bottom:156.870000px;}
.y1e_c01330{bottom:181.170000px;}
.y1d_c01330{bottom:205.770000px;}
.y1c_c01330{bottom:229.770000px;}
.y1b_c01330{bottom:254.520000px;}
.y1a_c01330{bottom:279.720000px;}
.y19_c01330{bottom:304.020000px;}
.y18_c01330{bottom:328.620000px;}
.y17_c01330{bottom:353.070000px;}
.y16_c01330{bottom:377.970000px;}
.y15_c01330{bottom:426.570000px;}
.y14_c01330{bottom:450.570000px;}
.y13_c01330{bottom:475.170000px;}
.y12_c01330{bottom:499.170000px;}
.y11_c01330{bottom:524.070000px;}
.y10_c01330{bottom:548.070000px;}
.yf_c01330{bottom:572.370000px;}
.ye_c01330{bottom:596.670000px;}
.yd_c01330{bottom:620.670000px;}
.yc_c01330{bottom:644.970000px;}
.yb_c01330{bottom:668.970000px;}
.ya_c01330{bottom:693.570000px;}
.y9_c01330{bottom:717.870000px;}
.y8_c01330{bottom:742.170000px;}
.y7_c01330{bottom:767.820000px;}
.y6_c01330{bottom:790.770000px;}
.y5_c01330{bottom:815.370000px;}
.y4_c01330{bottom:839.970000px;}
.y3_c01330{bottom:865.920000px;}
.y2_c01330{bottom:889.020000px;}
.y1_c01330{bottom:928.470000px;}
.h8_c01330{height:13.200073px;}
.h9_c01330{height:43.804688px;}
.h5_c01330{height:66.713379px;}
.h3_c01330{height:79.497070px;}
.h4_c01330{height:84.269531px;}
.h6_c01330{height:91.160156px;}
.h2_c01330{height:103.000488px;}
.h7_c01330{height:110.151855px;}
.h1_c01330{height:986.250000px;}
.h0_c01330{height:986.550000px;}
.w1_c01330{width:104.875500px;}
.w0_c01330{width:672.000000px;}
.x0_c01330{left:0.000000px;}
.x2_c01330{left:48.600000px;}
.x3_c01330{left:50.400000px;}
.x4_c01330{left:52.350000px;}
.x5_c01330{left:53.400000px;}
.x8_c01330{left:78.000000px;}
.x7_c01330{left:97.650000px;}
.x6_c01330{left:143.850000px;}
.x1_c01330{left:161.550000px;}
.xa_c01330{left:287.814240px;}
.x9_c01330{left:517.050000px;}
@media print{
.v0_c01330{vertical-align:0.000000pt;}
.ls5_c01330{letter-spacing:-5.333333pt;}
.ls3_c01330{letter-spacing:0.000000pt;}
.ls2_c01330{letter-spacing:8.000000pt;}
.ls4_c01330{letter-spacing:10.666667pt;}
.ls1_c01330{letter-spacing:15.893333pt;}
.ls0_c01330{letter-spacing:30.133333pt;}
.ws3_c01330{word-spacing:-52.354667pt;}
.ws0_c01330{word-spacing:-23.333333pt;}
.ws1_c01330{word-spacing:-15.424000pt;}
.ws2_c01330{word-spacing:-10.090667pt;}
.ws4_c01330{word-spacing:0.000000pt;}
._21_c01330{margin-left:-24.544000pt;}
._0_c01330{margin-left:-20.170667pt;}
._1f_c01330{margin-left:-17.962667pt;}
._1_c01330{margin-left:-16.896000pt;}
._19_c01330{margin-left:-14.770667pt;}
._4_c01330{margin-left:-13.400000pt;}
._9_c01330{margin-left:-11.853333pt;}
._17_c01330{margin-left:-10.365333pt;}
._2_c01330{margin-left:-8.680000pt;}
._5_c01330{margin-left:-7.093333pt;}
._1c_c01330{margin-left:-5.773333pt;}
._3_c01330{margin-left:-4.853333pt;}
._6_c01330{margin-left:-3.546667pt;}
._7_c01330{margin-left:-2.520000pt;}
._8_c01330{margin-left:-1.360000pt;}
._d_c01330{width:0.933333pt;}
._a_c01330{width:2.053333pt;}
._10_c01330{width:3.005333pt;}
._c_c01330{width:4.013333pt;}
._b_c01330{width:5.693333pt;}
._14_c01330{width:7.096000pt;}
._11_c01330{width:8.173333pt;}
._12_c01330{width:9.688000pt;}
._1b_c01330{width:10.640000pt;}
._13_c01330{width:11.720000pt;}
._15_c01330{width:12.736000pt;}
._f_c01330{width:13.888000pt;}
._22_c01330{width:14.936000pt;}
._1a_c01330{width:18.149333pt;}
._1d_c01330{width:19.898667pt;}
._20_c01330{width:24.968000pt;}
._16_c01330{width:27.042667pt;}
._18_c01330{width:31.658667pt;}
._1e_c01330{width:34.832000pt;}
._e_c01330{width:219.314667pt;}
.fs6_c01330{font-size:42.666667pt;}
.fs4_c01330{font-size:50.666667pt;}
.fs3_c01330{font-size:64.000000pt;}
.fs0_c01330{font-size:72.000000pt;}
.fs5_c01330{font-size:77.333333pt;}
.fs1_c01330{font-size:82.666667pt;}
.fs2_c01330{font-size:93.333333pt;}
.y0_c01330{bottom:0.000000pt;}
.y25_c01330{bottom:2.760000pt;}
.y24_c01330{bottom:6.425217pt;}
.y23_c01330{bottom:48.240000pt;}
.y22_c01330{bottom:71.306667pt;}
.y21_c01330{bottom:95.040000pt;}
.y20_c01330{bottom:117.040000pt;}
.y1f_c01330{bottom:139.440000pt;}
.y1e_c01330{bottom:161.040000pt;}
.y1d_c01330{bottom:182.906667pt;}
.y1c_c01330{bottom:204.240000pt;}
.y1b_c01330{bottom:226.240000pt;}
.y1a_c01330{bottom:248.640000pt;}
.y19_c01330{bottom:270.240000pt;}
.y18_c01330{bottom:292.106667pt;}
.y17_c01330{bottom:313.840000pt;}
.y16_c01330{bottom:335.973333pt;}
.y15_c01330{bottom:379.173333pt;}
.y14_c01330{bottom:400.506667pt;}
.y13_c01330{bottom:422.373333pt;}
.y12_c01330{bottom:443.706667pt;}
.y11_c01330{bottom:465.840000pt;}
.y10_c01330{bottom:487.173333pt;}
.yf_c01330{bottom:508.773333pt;}
.ye_c01330{bottom:530.373333pt;}
.yd_c01330{bottom:551.706667pt;}
.yc_c01330{bottom:573.306667pt;}
.yb_c01330{bottom:594.640000pt;}
.ya_c01330{bottom:616.506667pt;}
.y9_c01330{bottom:638.106667pt;}
.y8_c01330{bottom:659.706667pt;}
.y7_c01330{bottom:682.506667pt;}
.y6_c01330{bottom:702.906667pt;}
.y5_c01330{bottom:724.773333pt;}
.y4_c01330{bottom:746.640000pt;}
.y3_c01330{bottom:769.706667pt;}
.y2_c01330{bottom:790.240000pt;}
.y1_c01330{bottom:825.306667pt;}
.h8_c01330{height:11.733399pt;}
.h9_c01330{height:38.937500pt;}
.h5_c01330{height:59.300781pt;}
.h3_c01330{height:70.664062pt;}
.h4_c01330{height:74.906250pt;}
.h6_c01330{height:81.031250pt;}
.h2_c01330{height:91.555990pt;}
.h7_c01330{height:97.912760pt;}
.h1_c01330{height:876.666667pt;}
.h0_c01330{height:876.933333pt;}
.w1_c01330{width:93.222667pt;}
.w0_c01330{width:597.333333pt;}
.x0_c01330{left:0.000000pt;}
.x2_c01330{left:43.200000pt;}
.x3_c01330{left:44.800000pt;}
.x4_c01330{left:46.533333pt;}
.x5_c01330{left:47.466667pt;}
.x8_c01330{left:69.333333pt;}
.x7_c01330{left:86.800000pt;}
.x6_c01330{left:127.866667pt;}
.x1_c01330{left:143.600000pt;}
.xa_c01330{left:255.834880pt;}
.x9_c01330{left:459.600000pt;}
}





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

.ir_c01331:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01331{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01331;src:url('chunks/assets/font_fbf4f8273a2f9e0fc66afea9.woff2')format("woff");}.ff1_c01331{font-family:ff1_c01331;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01331;src:url('chunks/assets/font_4eac8031eb5f0dd20978295f.woff2')format("woff");}.ff2_c01331{font-family:ff2_c01331;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01331;src:url('chunks/assets/font_53cb645ab56a50cf1b21d815.woff2')format("woff");}.ff3_c01331{font-family:ff3_c01331;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01331;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff4_c01331{font-family:ff4_c01331;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01331;src:url('chunks/assets/font_c0b367ceb8ff59745c5647e8.woff2')format("woff");}.ff5_c01331{font-family:ff5_c01331;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01331;src:url('chunks/assets/font_a3a7f945886da76fcd81997f.woff2')format("woff");}.ff6_c01331{font-family:ff6_c01331;line-height:1.311035;font-style:normal;font-weight: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_c01331;src:url('chunks/assets/font_a7681413b3b17162e284bcca.woff2')format("woff");}.ff7_c01331{font-family:ff7_c01331;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c01331;src:url('chunks/assets/font_c20f7e2202795e6f4e974cb1.woff2')format("woff");}.ff8_c01331{font-family:ff8_c01331;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c01331;src:url('chunks/assets/font_61cd6935f3aab4646dfc9de7.woff2')format("woff");}.ff9_c01331{font-family:ff9_c01331;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c01331;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ffa_c01331{font-family:ffa_c01331;line-height:1.219238;font-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_c01331{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m0_c01331{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01331{vertical-align:0.000000px;}
.lsa_c01331{letter-spacing:-21.000000px;}
.ls9_c01331{letter-spacing:-9.000000px;}
.ls8_c01331{letter-spacing:0.000000px;}
.ls0_c01331{letter-spacing:0.720000px;}
.ls3_c01331{letter-spacing:2.106000px;}
.ls2_c01331{letter-spacing:18.402000px;}
.ls6_c01331{letter-spacing:18.864000px;}
.ls4_c01331{letter-spacing:31.674000px;}
.ls5_c01331{letter-spacing:84.474000px;}
.ls7_c01331{letter-spacing:92.274000px;}
.ls1_c01331{letter-spacing:202.602000px;}
.sc__c01331{text-shadow:none;}
.sc0_c01331{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01331{-webkit-text-stroke:0px transparent;}
.sc0_c01331{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c01331{word-spacing:-35.100000px;}
.ws6_c01331{word-spacing:-22.098000px;}
.ws2_c01331{word-spacing:-18.072000px;}
.ws0_c01331{word-spacing:-17.352000px;}
.ws8_c01331{word-spacing:-13.881600px;}
.ws3_c01331{word-spacing:-13.737000px;}
.ws9_c01331{word-spacing:0.000000px;}
.ws7_c01331{word-spacing:0.168000px;}
.ws4_c01331{word-spacing:1.197000px;}
.ws1_c01331{word-spacing:4.104000px;}
._20_c01331{margin-left:-31.242000px;}
._1e_c01331{margin-left:-30.012000px;}
._21_c01331{margin-left:-26.124000px;}
._22_c01331{margin-left:-17.976000px;}
._1f_c01331{margin-left:-16.794000px;}
._13_c01331{margin-left:-15.630000px;}
._25_c01331{margin-left:-12.804000px;}
._12_c01331{margin-left:-11.748000px;}
._11_c01331{margin-left:-9.798000px;}
._1b_c01331{margin-left:-8.448000px;}
._c_c01331{margin-left:-6.624000px;}
._a_c01331{margin-left:-4.758000px;}
._9_c01331{margin-left:-3.510000px;}
._e_c01331{margin-left:-2.184000px;}
._3_c01331{margin-left:-1.170000px;}
._1_c01331{width:1.656000px;}
._0_c01331{width:3.312000px;}
._f_c01331{width:4.458000px;}
._7_c01331{width:5.460000px;}
._8_c01331{width:6.600000px;}
._4_c01331{width:8.538000px;}
._6_c01331{width:9.906000px;}
._5_c01331{width:12.072000px;}
._1d_c01331{width:13.116000px;}
._19_c01331{width:14.160000px;}
._b_c01331{width:15.378000px;}
._1c_c01331{width:17.982000px;}
._d_c01331{width:20.100000px;}
._17_c01331{width:21.408000px;}
._2_c01331{width:23.196000px;}
._15_c01331{width:26.274000px;}
._24_c01331{width:34.668000px;}
._23_c01331{width:40.272000px;}
._28_c01331{width:47.376000px;}
._18_c01331{width:74.400000px;}
._16_c01331{width:87.750000px;}
._10_c01331{width:128.490000px;}
._14_c01331{width:140.502000px;}
._1a_c01331{width:219.006000px;}
._27_c01331{width:254.988000px;}
._29_c01331{width:373.482000px;}
._26_c01331{width:817.986000px;}
._2a_c01331{width:1724.301600px;}
.fc2_c01331{color:transparent;}
.fc1_c01331{color:rgb(128,128,128);}
.fc0_c01331{color:rgb(0,0,0);}
.fs8_c01331{font-size:48.000000px;}
.fs2_c01331{font-size:57.000000px;}
.fs7_c01331{font-size:57.600000px;}
.fs0_c01331{font-size:72.000000px;}
.fs1_c01331{font-size:78.000000px;}
.fs3_c01331{font-size:81.000000px;}
.fs5_c01331{font-size:87.000000px;}
.fs6_c01331{font-size:102.000000px;}
.fs4_c01331{font-size:108.000000px;}
.y0_c01331{bottom:0.000000px;}
.y25_c01331{bottom:3.105000px;}
.y24_c01331{bottom:7.228357px;}
.y23_c01331{bottom:50.730000px;}
.y22_c01331{bottom:68.880000px;}
.y21_c01331{bottom:87.780000px;}
.y20_c01331{bottom:113.130000px;}
.y1f_c01331{bottom:136.680000px;}
.y1e_c01331{bottom:164.730000px;}
.y1d_c01331{bottom:189.630000px;}
.y1c_c01331{bottom:214.080000px;}
.y1b_c01331{bottom:238.380000px;}
.y1a_c01331{bottom:262.980000px;}
.y19_c01331{bottom:287.580000px;}
.y18_c01331{bottom:312.480000px;}
.y17_c01331{bottom:337.530000px;}
.y16_c01331{bottom:360.480000px;}
.y15_c01331{bottom:385.830000px;}
.y14_c01331{bottom:410.730000px;}
.y13_c01331{bottom:435.480000px;}
.y12_c01331{bottom:460.080000px;}
.y11_c01331{bottom:483.930000px;}
.y10_c01331{bottom:508.380000px;}
.yf_c01331{bottom:532.530000px;}
.ye_c01331{bottom:557.280000px;}
.yd_c01331{bottom:582.480000px;}
.yc_c01331{bottom:606.180000px;}
.yb_c01331{bottom:630.180000px;}
.ya_c01331{bottom:654.780000px;}
.y9_c01331{bottom:679.080000px;}
.y8_c01331{bottom:703.680000px;}
.y7_c01331{bottom:727.980000px;}
.y6_c01331{bottom:752.730000px;}
.y5_c01331{bottom:776.880000px;}
.y4_c01331{bottom:801.180000px;}
.y3_c01331{bottom:825.630000px;}
.y2_c01331{bottom:849.930000px;}
.y1_c01331{bottom:874.530000px;}
.h9_c01331{height:13.200074px;}
.ha_c01331{height:43.804688px;}
.h5_c01331{height:79.497070px;}
.h3_c01331{height:83.226000px;}
.h2_c01331{height:84.269531px;}
.h4_c01331{height:98.756836px;}
.h8_c01331{height:104.839927px;}
.h6_c01331{height:108.843750px;}
.h7_c01331{height:110.151855px;}
.h1_c01331{height:965.250000px;}
.h0_c01331{height:965.550000px;}
.w2_c01331{width:104.875500px;}
.w1_c01331{width:653.250000px;}
.w0_c01331{width:653.400000px;}
.x0_c01331{left:0.000000px;}
.x12_c01331{left:18.600000px;}
.x11_c01331{left:23.550000px;}
.x10_c01331{left:26.700000px;}
.x3_c01331{left:32.400000px;}
.x8_c01331{left:33.450000px;}
.x6_c01331{left:34.500000px;}
.x2_c01331{left:35.700000px;}
.x1_c01331{left:37.350000px;}
.x9_c01331{left:48.600000px;}
.x5_c01331{left:102.300000px;}
.xc_c01331{left:119.400000px;}
.xb_c01331{left:120.450000px;}
.xa_c01331{left:121.800000px;}
.x7_c01331{left:123.150000px;}
.x4_c01331{left:126.000000px;}
.xe_c01331{left:143.400000px;}
.xd_c01331{left:145.050000px;}
.xf_c01331{left:210.150000px;}
.x13_c01331{left:278.514267px;}
@media print{
.v0_c01331{vertical-align:0.000000pt;}
.lsa_c01331{letter-spacing:-18.666667pt;}
.ls9_c01331{letter-spacing:-8.000000pt;}
.ls8_c01331{letter-spacing:0.000000pt;}
.ls0_c01331{letter-spacing:0.640000pt;}
.ls3_c01331{letter-spacing:1.872000pt;}
.ls2_c01331{letter-spacing:16.357333pt;}
.ls6_c01331{letter-spacing:16.768000pt;}
.ls4_c01331{letter-spacing:28.154667pt;}
.ls5_c01331{letter-spacing:75.088000pt;}
.ls7_c01331{letter-spacing:82.021333pt;}
.ls1_c01331{letter-spacing:180.090667pt;}
.ws5_c01331{word-spacing:-31.200000pt;}
.ws6_c01331{word-spacing:-19.642667pt;}
.ws2_c01331{word-spacing:-16.064000pt;}
.ws0_c01331{word-spacing:-15.424000pt;}
.ws8_c01331{word-spacing:-12.339200pt;}
.ws3_c01331{word-spacing:-12.210667pt;}
.ws9_c01331{word-spacing:0.000000pt;}
.ws7_c01331{word-spacing:0.149333pt;}
.ws4_c01331{word-spacing:1.064000pt;}
.ws1_c01331{word-spacing:3.648000pt;}
._20_c01331{margin-left:-27.770667pt;}
._1e_c01331{margin-left:-26.677333pt;}
._21_c01331{margin-left:-23.221333pt;}
._22_c01331{margin-left:-15.978667pt;}
._1f_c01331{margin-left:-14.928000pt;}
._13_c01331{margin-left:-13.893333pt;}
._25_c01331{margin-left:-11.381333pt;}
._12_c01331{margin-left:-10.442667pt;}
._11_c01331{margin-left:-8.709333pt;}
._1b_c01331{margin-left:-7.509333pt;}
._c_c01331{margin-left:-5.888000pt;}
._a_c01331{margin-left:-4.229333pt;}
._9_c01331{margin-left:-3.120000pt;}
._e_c01331{margin-left:-1.941333pt;}
._3_c01331{margin-left:-1.040000pt;}
._1_c01331{width:1.472000pt;}
._0_c01331{width:2.944000pt;}
._f_c01331{width:3.962667pt;}
._7_c01331{width:4.853333pt;}
._8_c01331{width:5.866667pt;}
._4_c01331{width:7.589333pt;}
._6_c01331{width:8.805333pt;}
._5_c01331{width:10.730667pt;}
._1d_c01331{width:11.658667pt;}
._19_c01331{width:12.586667pt;}
._b_c01331{width:13.669333pt;}
._1c_c01331{width:15.984000pt;}
._d_c01331{width:17.866667pt;}
._17_c01331{width:19.029333pt;}
._2_c01331{width:20.618667pt;}
._15_c01331{width:23.354667pt;}
._24_c01331{width:30.816000pt;}
._23_c01331{width:35.797333pt;}
._28_c01331{width:42.112000pt;}
._18_c01331{width:66.133333pt;}
._16_c01331{width:78.000000pt;}
._10_c01331{width:114.213333pt;}
._14_c01331{width:124.890667pt;}
._1a_c01331{width:194.672000pt;}
._27_c01331{width:226.656000pt;}
._29_c01331{width:331.984000pt;}
._26_c01331{width:727.098667pt;}
._2a_c01331{width:1532.712533pt;}
.fs8_c01331{font-size:42.666667pt;}
.fs2_c01331{font-size:50.666667pt;}
.fs7_c01331{font-size:51.200000pt;}
.fs0_c01331{font-size:64.000000pt;}
.fs1_c01331{font-size:69.333333pt;}
.fs3_c01331{font-size:72.000000pt;}
.fs5_c01331{font-size:77.333333pt;}
.fs6_c01331{font-size:90.666667pt;}
.fs4_c01331{font-size:96.000000pt;}
.y0_c01331{bottom:0.000000pt;}
.y25_c01331{bottom:2.760000pt;}
.y24_c01331{bottom:6.425206pt;}
.y23_c01331{bottom:45.093333pt;}
.y22_c01331{bottom:61.226667pt;}
.y21_c01331{bottom:78.026667pt;}
.y20_c01331{bottom:100.560000pt;}
.y1f_c01331{bottom:121.493333pt;}
.y1e_c01331{bottom:146.426667pt;}
.y1d_c01331{bottom:168.560000pt;}
.y1c_c01331{bottom:190.293333pt;}
.y1b_c01331{bottom:211.893333pt;}
.y1a_c01331{bottom:233.760000pt;}
.y19_c01331{bottom:255.626667pt;}
.y18_c01331{bottom:277.760000pt;}
.y17_c01331{bottom:300.026667pt;}
.y16_c01331{bottom:320.426667pt;}
.y15_c01331{bottom:342.960000pt;}
.y14_c01331{bottom:365.093333pt;}
.y13_c01331{bottom:387.093333pt;}
.y12_c01331{bottom:408.960000pt;}
.y11_c01331{bottom:430.160000pt;}
.y10_c01331{bottom:451.893333pt;}
.yf_c01331{bottom:473.360000pt;}
.ye_c01331{bottom:495.360000pt;}
.yd_c01331{bottom:517.760000pt;}
.yc_c01331{bottom:538.826667pt;}
.yb_c01331{bottom:560.160000pt;}
.ya_c01331{bottom:582.026667pt;}
.y9_c01331{bottom:603.626667pt;}
.y8_c01331{bottom:625.493333pt;}
.y7_c01331{bottom:647.093333pt;}
.y6_c01331{bottom:669.093333pt;}
.y5_c01331{bottom:690.560000pt;}
.y4_c01331{bottom:712.160000pt;}
.y3_c01331{bottom:733.893333pt;}
.y2_c01331{bottom:755.493333pt;}
.y1_c01331{bottom:777.360000pt;}
.h9_c01331{height:11.733399pt;}
.ha_c01331{height:38.937500pt;}
.h5_c01331{height:70.664062pt;}
.h3_c01331{height:73.978667pt;}
.h2_c01331{height:74.906250pt;}
.h4_c01331{height:87.783854pt;}
.h8_c01331{height:93.191046pt;}
.h6_c01331{height:96.750000pt;}
.h7_c01331{height:97.912760pt;}
.h1_c01331{height:858.000000pt;}
.h0_c01331{height:858.266667pt;}
.w2_c01331{width:93.222667pt;}
.w1_c01331{width:580.666667pt;}
.w0_c01331{width:580.800000pt;}
.x0_c01331{left:0.000000pt;}
.x12_c01331{left:16.533333pt;}
.x11_c01331{left:20.933333pt;}
.x10_c01331{left:23.733333pt;}
.x3_c01331{left:28.800000pt;}
.x8_c01331{left:29.733333pt;}
.x6_c01331{left:30.666667pt;}
.x2_c01331{left:31.733333pt;}
.x1_c01331{left:33.200000pt;}
.x9_c01331{left:43.200000pt;}
.x5_c01331{left:90.933333pt;}
.xc_c01331{left:106.133333pt;}
.xb_c01331{left:107.066667pt;}
.xa_c01331{left:108.266667pt;}
.x7_c01331{left:109.466667pt;}
.x4_c01331{left:112.000000pt;}
.xe_c01331{left:127.466667pt;}
.xd_c01331{left:128.933333pt;}
.xf_c01331{left:186.800000pt;}
.x13_c01331{left:247.568237pt;}
}





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

.ir_c01332:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01332{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01332;src:url('chunks/assets/font_7d17ac74aca5d32e32301e45.woff2')format("woff");}.ff1_c01332{font-family:ff1_c01332;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01332;src:url('chunks/assets/font_afe2b1ff1c3801a25a41835c.woff2')format("woff");}.ff2_c01332{font-family:ff2_c01332;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01332;src:url('chunks/assets/font_93e92e9ce9fccae66724dc82.woff2')format("woff");}.ff3_c01332{font-family:ff3_c01332;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01332;src:url('chunks/assets/font_09f2e2afb7b3ed802079047a.woff2')format("woff");}.ff4_c01332{font-family:ff4_c01332;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01332;src:url('chunks/assets/font_d64bda6cf46a5865f73324c5.woff2')format("woff");}.ff5_c01332{font-family:ff5_c01332;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01332;src:url('chunks/assets/font_9f3eb967a0d2346cc009f9ee.woff2')format("woff");}.ff6_c01332{font-family:ff6_c01332;line-height:1.437000;font-style:normal;font-weight: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_c01332;src:url('chunks/assets/font_eb3bf329b331f5718a47601f.woff2')format("woff");}.ff7_c01332{font-family:ff7_c01332;line-height:1.311035;font-style:normal;font-weight: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_c01332;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff8_c01332{font-family:ff8_c01332;line-height:1.219238;font-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_c01332{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m0_c01332{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01332{vertical-align:0.000000px;}
.ls5_c01332{letter-spacing:-6.000000px;}
.ls4_c01332{letter-spacing:0.000000px;}
.ls2_c01332{letter-spacing:0.900000px;}
.ls3_c01332{letter-spacing:9.000000px;}
.ls0_c01332{letter-spacing:23.448000px;}
.ls1_c01332{letter-spacing:28.080000px;}
.sc__c01332{text-shadow:none;}
.sc0_c01332{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01332{-webkit-text-stroke:0px transparent;}
.sc0_c01332{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01332{word-spacing:-19.065600px;}
.ws2_c01332{word-spacing:-17.352000px;}
.ws0_c01332{word-spacing:-11.352000px;}
.ws3_c01332{word-spacing:0.000000px;}
._1b_c01332{margin-left:-24.300000px;}
._17_c01332{margin-left:-17.649000px;}
._3_c01332{margin-left:-14.454000px;}
._4_c01332{margin-left:-11.088000px;}
._15_c01332{margin-left:-9.252000px;}
._9_c01332{margin-left:-7.920000px;}
._b_c01332{margin-left:-6.246000px;}
._14_c01332{margin-left:-5.214000px;}
._c_c01332{margin-left:-4.176000px;}
._d_c01332{margin-left:-2.844000px;}
._7_c01332{margin-left:-1.584000px;}
._1_c01332{width:1.683000px;}
._a_c01332{width:3.168000px;}
._0_c01332{width:4.257000px;}
._5_c01332{width:5.544000px;}
._2_c01332{width:7.326000px;}
._f_c01332{width:8.361000px;}
._e_c01332{width:9.693000px;}
._6_c01332{width:11.385000px;}
._1e_c01332{width:13.275000px;}
._1c_c01332{width:14.418000px;}
._1f_c01332{width:16.794000px;}
._10_c01332{width:18.153000px;}
._1a_c01332{width:30.798000px;}
._20_c01332{width:32.304000px;}
._11_c01332{width:44.157000px;}
._1d_c01332{width:121.707000px;}
._19_c01332{width:142.803000px;}
._13_c01332{width:148.356000px;}
._8_c01332{width:177.804000px;}
._12_c01332{width:181.092000px;}
._18_c01332{width:183.672000px;}
._16_c01332{width:308.916000px;}
._21_c01332{width:355.365000px;}
.fc2_c01332{color:transparent;}
.fc1_c01332{color:rgb(128,128,128);}
.fc0_c01332{color:rgb(0,0,0);}
.fs7_c01332{font-size:48.000000px;}
.fs4_c01332{font-size:57.600000px;}
.fs3_c01332{font-size:72.000000px;}
.fs2_c01332{font-size:81.000000px;}
.fs5_c01332{font-size:87.000000px;}
.fs0_c01332{font-size:99.000000px;}
.fs6_c01332{font-size:108.000000px;}
.fs1_c01332{font-size:132.000000px;}
.y0_c01332{bottom:0.000000px;}
.y26_c01332{bottom:3.105000px;}
.y25_c01332{bottom:7.228369px;}
.y24_c01332{bottom:44.520000px;}
.y23_c01332{bottom:68.820000px;}
.y22_c01332{bottom:94.170000px;}
.y21_c01332{bottom:119.370000px;}
.y20_c01332{bottom:143.670000px;}
.y1f_c01332{bottom:168.420000px;}
.y1e_c01332{bottom:193.020000px;}
.y1d_c01332{bottom:217.620000px;}
.y1c_c01332{bottom:241.920000px;}
.y1b_c01332{bottom:266.670000px;}
.y1a_c01332{bottom:290.970000px;}
.y19_c01332{bottom:315.270000px;}
.y18_c01332{bottom:339.570000px;}
.y17_c01332{bottom:364.170000px;}
.y16_c01332{bottom:388.470000px;}
.y15_c01332{bottom:413.070000px;}
.y14_c01332{bottom:437.370000px;}
.y13_c01332{bottom:461.370000px;}
.y12_c01332{bottom:485.670000px;}
.y11_c01332{bottom:509.670000px;}
.y10_c01332{bottom:533.970000px;}
.yf_c01332{bottom:557.820000px;}
.ye_c01332{bottom:582.120000px;}
.yd_c01332{bottom:606.870000px;}
.yc_c01332{bottom:632.070000px;}
.yb_c01332{bottom:654.720000px;}
.ya_c01332{bottom:679.620000px;}
.y9_c01332{bottom:703.320000px;}
.y8_c01332{bottom:728.220000px;}
.y7_c01332{bottom:751.920000px;}
.y6_c01332{bottom:775.920000px;}
.y5_c01332{bottom:800.220000px;}
.y4_c01332{bottom:824.520000px;}
.y3_c01332{bottom:849.120000px;}
.y2_c01332{bottom:873.120000px;}
.y1_c01332{bottom:906.570000px;}
.h8_c01332{height:13.200073px;}
.h9_c01332{height:43.804688px;}
.h3_c01332{height:79.497070px;}
.h5_c01332{height:84.269531px;}
.h4_c01332{height:91.160156px;}
.h6_c01332{height:91.176000px;}
.h7_c01332{height:108.843750px;}
.h2_c01332{height:167.126953px;}
.h0_c01332{height:970.350000px;}
.h1_c01332{height:970.500000px;}
.w2_c01332{width:104.875500px;}
.w0_c01332{width:660.450000px;}
.w1_c01332{width:660.750000px;}
.x0_c01332{left:0.000000px;}
.xb_c01332{left:47.550000px;}
.xa_c01332{left:48.900000px;}
.x9_c01332{left:49.950000px;}
.x8_c01332{left:51.750000px;}
.x5_c01332{left:52.950000px;}
.x7_c01332{left:54.750000px;}
.x6_c01332{left:56.100000px;}
.x3_c01332{left:58.350000px;}
.x2_c01332{left:59.400000px;}
.x4_c01332{left:70.200000px;}
.x1_c01332{left:113.100000px;}
.xd_c01332{left:282.039230px;}
.xc_c01332{left:387.450000px;}
@media print{
.v0_c01332{vertical-align:0.000000pt;}
.ls5_c01332{letter-spacing:-5.333333pt;}
.ls4_c01332{letter-spacing:0.000000pt;}
.ls2_c01332{letter-spacing:0.800000pt;}
.ls3_c01332{letter-spacing:8.000000pt;}
.ls0_c01332{letter-spacing:20.842667pt;}
.ls1_c01332{letter-spacing:24.960000pt;}
.ws1_c01332{word-spacing:-16.947200pt;}
.ws2_c01332{word-spacing:-15.424000pt;}
.ws0_c01332{word-spacing:-10.090667pt;}
.ws3_c01332{word-spacing:0.000000pt;}
._1b_c01332{margin-left:-21.600000pt;}
._17_c01332{margin-left:-15.688000pt;}
._3_c01332{margin-left:-12.848000pt;}
._4_c01332{margin-left:-9.856000pt;}
._15_c01332{margin-left:-8.224000pt;}
._9_c01332{margin-left:-7.040000pt;}
._b_c01332{margin-left:-5.552000pt;}
._14_c01332{margin-left:-4.634667pt;}
._c_c01332{margin-left:-3.712000pt;}
._d_c01332{margin-left:-2.528000pt;}
._7_c01332{margin-left:-1.408000pt;}
._1_c01332{width:1.496000pt;}
._a_c01332{width:2.816000pt;}
._0_c01332{width:3.784000pt;}
._5_c01332{width:4.928000pt;}
._2_c01332{width:6.512000pt;}
._f_c01332{width:7.432000pt;}
._e_c01332{width:8.616000pt;}
._6_c01332{width:10.120000pt;}
._1e_c01332{width:11.800000pt;}
._1c_c01332{width:12.816000pt;}
._1f_c01332{width:14.928000pt;}
._10_c01332{width:16.136000pt;}
._1a_c01332{width:27.376000pt;}
._20_c01332{width:28.714667pt;}
._11_c01332{width:39.250667pt;}
._1d_c01332{width:108.184000pt;}
._19_c01332{width:126.936000pt;}
._13_c01332{width:131.872000pt;}
._8_c01332{width:158.048000pt;}
._12_c01332{width:160.970667pt;}
._18_c01332{width:163.264000pt;}
._16_c01332{width:274.592000pt;}
._21_c01332{width:315.880000pt;}
.fs7_c01332{font-size:42.666667pt;}
.fs4_c01332{font-size:51.200000pt;}
.fs3_c01332{font-size:64.000000pt;}
.fs2_c01332{font-size:72.000000pt;}
.fs5_c01332{font-size:77.333333pt;}
.fs0_c01332{font-size:88.000000pt;}
.fs6_c01332{font-size:96.000000pt;}
.fs1_c01332{font-size:117.333333pt;}
.y0_c01332{bottom:0.000000pt;}
.y26_c01332{bottom:2.760000pt;}
.y25_c01332{bottom:6.425217pt;}
.y24_c01332{bottom:39.573333pt;}
.y23_c01332{bottom:61.173333pt;}
.y22_c01332{bottom:83.706667pt;}
.y21_c01332{bottom:106.106667pt;}
.y20_c01332{bottom:127.706667pt;}
.y1f_c01332{bottom:149.706667pt;}
.y1e_c01332{bottom:171.573333pt;}
.y1d_c01332{bottom:193.440000pt;}
.y1c_c01332{bottom:215.040000pt;}
.y1b_c01332{bottom:237.040000pt;}
.y1a_c01332{bottom:258.640000pt;}
.y19_c01332{bottom:280.240000pt;}
.y18_c01332{bottom:301.840000pt;}
.y17_c01332{bottom:323.706667pt;}
.y16_c01332{bottom:345.306667pt;}
.y15_c01332{bottom:367.173333pt;}
.y14_c01332{bottom:388.773333pt;}
.y13_c01332{bottom:410.106667pt;}
.y12_c01332{bottom:431.706667pt;}
.y11_c01332{bottom:453.040000pt;}
.y10_c01332{bottom:474.640000pt;}
.yf_c01332{bottom:495.840000pt;}
.ye_c01332{bottom:517.440000pt;}
.yd_c01332{bottom:539.440000pt;}
.yc_c01332{bottom:561.840000pt;}
.yb_c01332{bottom:581.973333pt;}
.ya_c01332{bottom:604.106667pt;}
.y9_c01332{bottom:625.173333pt;}
.y8_c01332{bottom:647.306667pt;}
.y7_c01332{bottom:668.373333pt;}
.y6_c01332{bottom:689.706667pt;}
.y5_c01332{bottom:711.306667pt;}
.y4_c01332{bottom:732.906667pt;}
.y3_c01332{bottom:754.773333pt;}
.y2_c01332{bottom:776.106667pt;}
.y1_c01332{bottom:805.840000pt;}
.h8_c01332{height:11.733399pt;}
.h9_c01332{height:38.937500pt;}
.h3_c01332{height:70.664062pt;}
.h5_c01332{height:74.906250pt;}
.h4_c01332{height:81.031250pt;}
.h6_c01332{height:81.045333pt;}
.h7_c01332{height:96.750000pt;}
.h2_c01332{height:148.557292pt;}
.h0_c01332{height:862.533333pt;}
.h1_c01332{height:862.666667pt;}
.w2_c01332{width:93.222667pt;}
.w0_c01332{width:587.066667pt;}
.w1_c01332{width:587.333333pt;}
.x0_c01332{left:0.000000pt;}
.xb_c01332{left:42.266667pt;}
.xa_c01332{left:43.466667pt;}
.x9_c01332{left:44.400000pt;}
.x8_c01332{left:46.000000pt;}
.x5_c01332{left:47.066667pt;}
.x7_c01332{left:48.666667pt;}
.x6_c01332{left:49.866667pt;}
.x3_c01332{left:51.866667pt;}
.x2_c01332{left:52.800000pt;}
.x4_c01332{left:62.400000pt;}
.x1_c01332{left:100.533333pt;}
.xd_c01332{left:250.701538pt;}
.xc_c01332{left:344.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_c01333 {
    display:none;
  }
  .loading-indicator_c01333.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01333 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01333 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01333" -> "#page-container .classname_c01333")
 */
.pf_c01333 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01333 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01333.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01333 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01333 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01333 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01333 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01333 {overflow:visible;}
  }
}
.c_c01333 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01333 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01333:after { /* webkit #35443 */
  content: '';
}
.t_c01333:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01333 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01333 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01333 { /* info for Javascript */
  display:none;
}
.l_c01333 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01333 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01333 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01333:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01333{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01333;src:url('chunks/assets/font_98fc3a93470bec499210e6e8.woff2')format("woff");}.ff1_c01333{font-family:ff1_c01333;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01333;src:url('chunks/assets/font_1ae20bde69f6d7883e090c33.woff2')format("woff");}.ff2_c01333{font-family:ff2_c01333;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01333;src:url('chunks/assets/font_264df411a90ae2002fc9fdf2.woff2')format("woff");}.ff3_c01333{font-family:ff3_c01333;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01333;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff4_c01333{font-family:ff4_c01333;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01333{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01333{vertical-align:0.000000px;}
.ls1_c01333{letter-spacing:-9.000000px;}
.ls0_c01333{letter-spacing:0.000000px;}
.sc__c01333{text-shadow:none;}
.sc0_c01333{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01333{-webkit-text-stroke:0px transparent;}
.sc0_c01333{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01333{word-spacing:-47.100000px;}
.ws0_c01333{word-spacing:-17.352000px;}
.ws2_c01333{word-spacing:0.000000px;}
._26_c01333{margin-left:-31.023000px;}
._2b_c01333{margin-left:-27.882000px;}
._27_c01333{margin-left:-26.343000px;}
._2c_c01333{margin-left:-23.109000px;}
._e_c01333{margin-left:-19.035000px;}
._2a_c01333{margin-left:-17.739000px;}
._9_c01333{margin-left:-16.362000px;}
._2e_c01333{margin-left:-13.290000px;}
._2d_c01333{margin-left:-12.204000px;}
._25_c01333{margin-left:-11.016000px;}
._29_c01333{margin-left:-9.396000px;}
._a_c01333{margin-left:-6.966000px;}
._c_c01333{margin-left:-5.751000px;}
._8_c01333{margin-left:-4.131000px;}
._3_c01333{margin-left:-2.592000px;}
._7_c01333{margin-left:-1.296000px;}
._4_c01333{width:1.458000px;}
._11_c01333{width:2.511000px;}
._0_c01333{width:3.564000px;}
._1_c01333{width:5.184000px;}
._2_c01333{width:6.318000px;}
._6_c01333{width:8.100000px;}
._5_c01333{width:9.234000px;}
._b_c01333{width:10.449000px;}
._17_c01333{width:11.745000px;}
._10_c01333{width:13.527000px;}
._16_c01333{width:14.904000px;}
._12_c01333{width:16.281000px;}
._f_c01333{width:17.982000px;}
._1b_c01333{width:19.047000px;}
._15_c01333{width:22.032000px;}
._1f_c01333{width:23.652000px;}
._1d_c01333{width:25.080000px;}
._14_c01333{width:26.244000px;}
._13_c01333{width:28.998000px;}
._24_c01333{width:30.456000px;}
._19_c01333{width:31.752000px;}
._18_c01333{width:60.669000px;}
._d_c01333{width:71.442000px;}
._1a_c01333{width:93.393000px;}
._1e_c01333{width:107.001000px;}
._23_c01333{width:108.945000px;}
._21_c01333{width:160.785000px;}
._20_c01333{width:166.125000px;}
._28_c01333{width:190.026000px;}
._1c_c01333{width:207.006000px;}
._22_c01333{width:709.398000px;}
.fc2_c01333{color:transparent;}
.fc1_c01333{color:rgb(128,128,128);}
.fc0_c01333{color:rgb(0,0,0);}
.fs3_c01333{font-size:48.000000px;}
.fs1_c01333{font-size:72.000000px;}
.fs0_c01333{font-size:81.000000px;}
.fs2_c01333{font-size:102.000000px;}
.y0_c01333{bottom:0.000000px;}
.y25_c01333{bottom:3.105000px;}
.y24_c01333{bottom:7.228355px;}
.y23_c01333{bottom:50.535000px;}
.y22_c01333{bottom:76.635000px;}
.y21_c01333{bottom:102.585000px;}
.y20_c01333{bottom:127.485000px;}
.y1f_c01333{bottom:151.785000px;}
.y1e_c01333{bottom:177.135000px;}
.y1d_c01333{bottom:200.085000px;}
.y1c_c01333{bottom:227.685000px;}
.y1b_c01333{bottom:252.135000px;}
.y1a_c01333{bottom:275.685000px;}
.y19_c01333{bottom:300.285000px;}
.y18_c01333{bottom:324.585000px;}
.y17_c01333{bottom:349.185000px;}
.y16_c01333{bottom:373.935000px;}
.y15_c01333{bottom:397.935000px;}
.y14_c01333{bottom:422.535000px;}
.y13_c01333{bottom:449.085000px;}
.y12_c01333{bottom:472.035000px;}
.y11_c01333{bottom:495.435000px;}
.y10_c01333{bottom:519.285000px;}
.yf_c01333{bottom:543.735000px;}
.ye_c01333{bottom:569.235000px;}
.yd_c01333{bottom:593.235000px;}
.yc_c01333{bottom:618.585000px;}
.yb_c01333{bottom:642.885000px;}
.ya_c01333{bottom:667.185000px;}
.y9_c01333{bottom:691.485000px;}
.y8_c01333{bottom:715.785000px;}
.y7_c01333{bottom:740.085000px;}
.y6_c01333{bottom:764.685000px;}
.y5_c01333{bottom:788.985000px;}
.y4_c01333{bottom:812.985000px;}
.y3_c01333{bottom:837.285000px;}
.y2_c01333{bottom:862.185000px;}
.y1_c01333{bottom:886.635000px;}
.h5_c01333{height:13.200074px;}
.h6_c01333{height:43.804688px;}
.h2_c01333{height:79.497070px;}
.h3_c01333{height:84.269531px;}
.h4_c01333{height:104.839927px;}
.h1_c01333{height:975.000000px;}
.h0_c01333{height:975.225000px;}
.w2_c01333{width:104.875500px;}
.w0_c01333{width:659.850000px;}
.w1_c01333{width:660.000000px;}
.x0_c01333{left:0.000000px;}
.xf_c01333{left:13.500000px;}
.x10_c01333{left:16.800000px;}
.x8_c01333{left:18.150000px;}
.x6_c01333{left:24.000000px;}
.x9_c01333{left:36.000000px;}
.x7_c01333{left:41.550000px;}
.x5_c01333{left:76.650000px;}
.x3_c01333{left:90.900000px;}
.x13_c01333{left:99.900000px;}
.x12_c01333{left:101.550000px;}
.x11_c01333{left:102.900000px;}
.xe_c01333{left:103.950000px;}
.xd_c01333{left:105.300000px;}
.xc_c01333{left:106.350000px;}
.xa_c01333{left:108.600000px;}
.x4_c01333{left:113.100000px;}
.x1_c01333{left:114.450000px;}
.x2_c01333{left:115.650000px;}
.xb_c01333{left:133.950000px;}
.x15_c01333{left:281.739258px;}
.x14_c01333{left:564.000000px;}
@media print{
.v0_c01333{vertical-align:0.000000pt;}
.ls1_c01333{letter-spacing:-8.000000pt;}
.ls0_c01333{letter-spacing:0.000000pt;}
.ws1_c01333{word-spacing:-41.866667pt;}
.ws0_c01333{word-spacing:-15.424000pt;}
.ws2_c01333{word-spacing:0.000000pt;}
._26_c01333{margin-left:-27.576000pt;}
._2b_c01333{margin-left:-24.784000pt;}
._27_c01333{margin-left:-23.416000pt;}
._2c_c01333{margin-left:-20.541333pt;}
._e_c01333{margin-left:-16.920000pt;}
._2a_c01333{margin-left:-15.768000pt;}
._9_c01333{margin-left:-14.544000pt;}
._2e_c01333{margin-left:-11.813333pt;}
._2d_c01333{margin-left:-10.848000pt;}
._25_c01333{margin-left:-9.792000pt;}
._29_c01333{margin-left:-8.352000pt;}
._a_c01333{margin-left:-6.192000pt;}
._c_c01333{margin-left:-5.112000pt;}
._8_c01333{margin-left:-3.672000pt;}
._3_c01333{margin-left:-2.304000pt;}
._7_c01333{margin-left:-1.152000pt;}
._4_c01333{width:1.296000pt;}
._11_c01333{width:2.232000pt;}
._0_c01333{width:3.168000pt;}
._1_c01333{width:4.608000pt;}
._2_c01333{width:5.616000pt;}
._6_c01333{width:7.200000pt;}
._5_c01333{width:8.208000pt;}
._b_c01333{width:9.288000pt;}
._17_c01333{width:10.440000pt;}
._10_c01333{width:12.024000pt;}
._16_c01333{width:13.248000pt;}
._12_c01333{width:14.472000pt;}
._f_c01333{width:15.984000pt;}
._1b_c01333{width:16.930667pt;}
._15_c01333{width:19.584000pt;}
._1f_c01333{width:21.024000pt;}
._1d_c01333{width:22.293333pt;}
._14_c01333{width:23.328000pt;}
._13_c01333{width:25.776000pt;}
._24_c01333{width:27.072000pt;}
._19_c01333{width:28.224000pt;}
._18_c01333{width:53.928000pt;}
._d_c01333{width:63.504000pt;}
._1a_c01333{width:83.016000pt;}
._1e_c01333{width:95.112000pt;}
._23_c01333{width:96.840000pt;}
._21_c01333{width:142.920000pt;}
._20_c01333{width:147.666667pt;}
._28_c01333{width:168.912000pt;}
._1c_c01333{width:184.005333pt;}
._22_c01333{width:630.576000pt;}
.fs3_c01333{font-size:42.666667pt;}
.fs1_c01333{font-size:64.000000pt;}
.fs0_c01333{font-size:72.000000pt;}
.fs2_c01333{font-size:90.666667pt;}
.y0_c01333{bottom:0.000000pt;}
.y25_c01333{bottom:2.760000pt;}
.y24_c01333{bottom:6.425204pt;}
.y23_c01333{bottom:44.920000pt;}
.y22_c01333{bottom:68.120000pt;}
.y21_c01333{bottom:91.186667pt;}
.y20_c01333{bottom:113.320000pt;}
.y1f_c01333{bottom:134.920000pt;}
.y1e_c01333{bottom:157.453333pt;}
.y1d_c01333{bottom:177.853333pt;}
.y1c_c01333{bottom:202.386667pt;}
.y1b_c01333{bottom:224.120000pt;}
.y1a_c01333{bottom:245.053333pt;}
.y19_c01333{bottom:266.920000pt;}
.y18_c01333{bottom:288.520000pt;}
.y17_c01333{bottom:310.386667pt;}
.y16_c01333{bottom:332.386667pt;}
.y15_c01333{bottom:353.720000pt;}
.y14_c01333{bottom:375.586667pt;}
.y13_c01333{bottom:399.186667pt;}
.y12_c01333{bottom:419.586667pt;}
.y11_c01333{bottom:440.386667pt;}
.y10_c01333{bottom:461.586667pt;}
.yf_c01333{bottom:483.320000pt;}
.ye_c01333{bottom:505.986667pt;}
.yd_c01333{bottom:527.320000pt;}
.yc_c01333{bottom:549.853333pt;}
.yb_c01333{bottom:571.453333pt;}
.ya_c01333{bottom:593.053333pt;}
.y9_c01333{bottom:614.653333pt;}
.y8_c01333{bottom:636.253333pt;}
.y7_c01333{bottom:657.853333pt;}
.y6_c01333{bottom:679.720000pt;}
.y5_c01333{bottom:701.320000pt;}
.y4_c01333{bottom:722.653333pt;}
.y3_c01333{bottom:744.253333pt;}
.y2_c01333{bottom:766.386667pt;}
.y1_c01333{bottom:788.120000pt;}
.h5_c01333{height:11.733399pt;}
.h6_c01333{height:38.937500pt;}
.h2_c01333{height:70.664062pt;}
.h3_c01333{height:74.906250pt;}
.h4_c01333{height:93.191046pt;}
.h1_c01333{height:866.666667pt;}
.h0_c01333{height:866.866667pt;}
.w2_c01333{width:93.222667pt;}
.w0_c01333{width:586.533333pt;}
.w1_c01333{width:586.666667pt;}
.x0_c01333{left:0.000000pt;}
.xf_c01333{left:12.000000pt;}
.x10_c01333{left:14.933333pt;}
.x8_c01333{left:16.133333pt;}
.x6_c01333{left:21.333333pt;}
.x9_c01333{left:32.000000pt;}
.x7_c01333{left:36.933333pt;}
.x5_c01333{left:68.133333pt;}
.x3_c01333{left:80.800000pt;}
.x13_c01333{left:88.800000pt;}
.x12_c01333{left:90.266667pt;}
.x11_c01333{left:91.466667pt;}
.xe_c01333{left:92.400000pt;}
.xd_c01333{left:93.600000pt;}
.xc_c01333{left:94.533333pt;}
.xa_c01333{left:96.533333pt;}
.x4_c01333{left:100.533333pt;}
.x1_c01333{left:101.733333pt;}
.x2_c01333{left:102.800000pt;}
.xb_c01333{left:119.066667pt;}
.x15_c01333{left:250.434896pt;}
.x14_c01333{left:501.333333pt;}
}





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

.ir_c01334:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01334{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01334;src:url('chunks/assets/font_102f279d79d17a6f320c5394.woff2')format("woff");}.ff1_c01334{font-family:ff1_c01334;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01334;src:url('chunks/assets/font_4cde284fd33725165d7bfaef.woff2')format("woff");}.ff2_c01334{font-family:ff2_c01334;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01334;src:url('chunks/assets/font_d3f4050b2fbfc19029ad90c7.woff2')format("woff");}.ff3_c01334{font-family:ff3_c01334;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01334;src:url('chunks/assets/font_0b22da841686dcd3997654b5.woff2')format("woff");}.ff4_c01334{font-family:ff4_c01334;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01334;src:url('chunks/assets/font_8f9fec3ce4269bda7c760ab1.woff2')format("woff");}.ff5_c01334{font-family:ff5_c01334;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01334;src:url('chunks/assets/font_12b09b83b056ab5c58a1cd95.woff2')format("woff");}.ff6_c01334{font-family:ff6_c01334;line-height:1.284180;font-style:normal;font-weight: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_c01334;src:url('chunks/assets/font_a65659c5f6aff14d52749a6a.woff2')format("woff");}.ff7_c01334{font-family:ff7_c01334;line-height:1.311035;font-style:normal;font-weight: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_c01334;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff8_c01334{font-family:ff8_c01334;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01334{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01334{vertical-align:0.000000px;}
.ls3_c01334{letter-spacing:0.000000px;}
.ls4_c01334{letter-spacing:6.000000px;}
.ls2_c01334{letter-spacing:13.200000px;}
.ls1_c01334{letter-spacing:16.482000px;}
.ls0_c01334{letter-spacing:161.550000px;}
.sc__c01334{text-shadow:none;}
.sc0_c01334{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01334{-webkit-text-stroke:0px transparent;}
.sc0_c01334{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01334{word-spacing:-84.168000px;}
.ws2_c01334{word-spacing:-59.184000px;}
.ws0_c01334{word-spacing:-40.464000px;}
.ws3_c01334{word-spacing:0.000000px;}
._16_c01334{margin-left:-28.638000px;}
._22_c01334{margin-left:-24.300000px;}
._18_c01334{margin-left:-22.050000px;}
._11_c01334{margin-left:-20.088000px;}
._1a_c01334{margin-left:-17.496000px;}
._13_c01334{margin-left:-15.741000px;}
._19_c01334{margin-left:-12.666000px;}
._20_c01334{margin-left:-9.135000px;}
._17_c01334{margin-left:-7.848000px;}
._9_c01334{margin-left:-6.594000px;}
._a_c01334{margin-left:-5.103000px;}
._c_c01334{margin-left:-3.888000px;}
._b_c01334{margin-left:-1.944000px;}
._e_c01334{width:1.044000px;}
._d_c01334{width:2.925000px;}
._f_c01334{width:4.383000px;}
._10_c01334{width:5.517000px;}
._0_c01334{width:6.984000px;}
._14_c01334{width:8.139000px;}
._4_c01334{width:9.504000px;}
._7_c01334{width:10.872000px;}
._12_c01334{width:12.150000px;}
._5_c01334{width:13.680000px;}
._3_c01334{width:14.904000px;}
._6_c01334{width:16.128000px;}
._1d_c01334{width:17.514000px;}
._15_c01334{width:18.711000px;}
._1_c01334{width:20.736000px;}
._2_c01334{width:23.400000px;}
._8_c01334{width:28.224000px;}
._24_c01334{width:31.770000px;}
._1c_c01334{width:36.129000px;}
._1f_c01334{width:38.931000px;}
._1e_c01334{width:42.912000px;}
._23_c01334{width:45.441000px;}
._25_c01334{width:86.025000px;}
._1b_c01334{width:166.770000px;}
._21_c01334{width:180.249000px;}
._26_c01334{width:311.751000px;}
.fc2_c01334{color:transparent;}
.fc1_c01334{color:rgb(128,128,128);}
.fc0_c01334{color:rgb(0,0,0);}
.fs7_c01334{font-size:36.000000px;}
.fs8_c01334{font-size:48.000000px;}
.fs3_c01334{font-size:51.000000px;}
.fs6_c01334{font-size:66.000000px;}
.fs0_c01334{font-size:72.000000px;}
.fs5_c01334{font-size:75.000000px;}
.fs4_c01334{font-size:78.000000px;}
.fs1_c01334{font-size:81.000000px;}
.fs2_c01334{font-size:87.000000px;}
.y0_c01334{bottom:0.000000px;}
.y26_c01334{bottom:3.105000px;}
.y25_c01334{bottom:7.228369px;}
.y24_c01334{bottom:54.570000px;}
.y23_c01334{bottom:80.370000px;}
.y22_c01334{bottom:105.270000px;}
.y21_c01334{bottom:129.870000px;}
.y20_c01334{bottom:155.220000px;}
.y1f_c01334{bottom:179.520000px;}
.y1e_c01334{bottom:204.420000px;}
.y1d_c01334{bottom:228.720000px;}
.y1c_c01334{bottom:253.770000px;}
.y1b_c01334{bottom:277.770000px;}
.y1a_c01334{bottom:302.670000px;}
.y19_c01334{bottom:327.420000px;}
.y18_c01334{bottom:351.270000px;}
.y17_c01334{bottom:376.320000px;}
.y16_c01334{bottom:400.170000px;}
.y15_c01334{bottom:424.170000px;}
.y14_c01334{bottom:448.920000px;}
.y13_c01334{bottom:472.770000px;}
.y12_c01334{bottom:497.070000px;}
.y11_c01334{bottom:521.070000px;}
.y10_c01334{bottom:545.670000px;}
.yf_c01334{bottom:569.070000px;}
.ye_c01334{bottom:593.220000px;}
.yd_c01334{bottom:617.970000px;}
.yc_c01334{bottom:641.520000px;}
.yb_c01334{bottom:665.820000px;}
.ya_c01334{bottom:690.420000px;}
.y9_c01334{bottom:713.820000px;}
.y8_c01334{bottom:738.120000px;}
.y7_c01334{bottom:762.420000px;}
.y6_c01334{bottom:786.420000px;}
.y5_c01334{bottom:811.620000px;}
.y4_c01334{bottom:834.870000px;}
.y3_c01334{bottom:860.220000px;}
.y2_c01334{bottom:883.470000px;}
.y1_c01334{bottom:920.670000px;}
.h7_c01334{height:13.200073px;}
.h8_c01334{height:43.804688px;}
.h3_c01334{height:79.497070px;}
.h6_c01334{height:84.269531px;}
.h5_c01334{height:91.160156px;}
.h2_c01334{height:91.176000px;}
.h4_c01334{height:98.756836px;}
.h1_c01334{height:986.250000px;}
.h0_c01334{height:986.550000px;}
.w1_c01334{width:104.875500px;}
.w0_c01334{width:672.000000px;}
.x0_c01334{left:0.000000px;}
.x8_c01334{left:48.300000px;}
.x7_c01334{left:49.950000px;}
.x2_c01334{left:51.600000px;}
.x4_c01334{left:53.250000px;}
.x6_c01334{left:58.350000px;}
.x3_c01334{left:61.800000px;}
.x5_c01334{left:83.700000px;}
.x1_c01334{left:113.700000px;}
.xa_c01334{left:287.814240px;}
.x9_c01334{left:313.800000px;}
@media print{
.v0_c01334{vertical-align:0.000000pt;}
.ls3_c01334{letter-spacing:0.000000pt;}
.ls4_c01334{letter-spacing:5.333333pt;}
.ls2_c01334{letter-spacing:11.733333pt;}
.ls1_c01334{letter-spacing:14.650667pt;}
.ls0_c01334{letter-spacing:143.600000pt;}
.ws1_c01334{word-spacing:-74.816000pt;}
.ws2_c01334{word-spacing:-52.608000pt;}
.ws0_c01334{word-spacing:-35.968000pt;}
.ws3_c01334{word-spacing:0.000000pt;}
._16_c01334{margin-left:-25.456000pt;}
._22_c01334{margin-left:-21.600000pt;}
._18_c01334{margin-left:-19.600000pt;}
._11_c01334{margin-left:-17.856000pt;}
._1a_c01334{margin-left:-15.552000pt;}
._13_c01334{margin-left:-13.992000pt;}
._19_c01334{margin-left:-11.258667pt;}
._20_c01334{margin-left:-8.120000pt;}
._17_c01334{margin-left:-6.976000pt;}
._9_c01334{margin-left:-5.861333pt;}
._a_c01334{margin-left:-4.536000pt;}
._c_c01334{margin-left:-3.456000pt;}
._b_c01334{margin-left:-1.728000pt;}
._e_c01334{width:0.928000pt;}
._d_c01334{width:2.600000pt;}
._f_c01334{width:3.896000pt;}
._10_c01334{width:4.904000pt;}
._0_c01334{width:6.208000pt;}
._14_c01334{width:7.234667pt;}
._4_c01334{width:8.448000pt;}
._7_c01334{width:9.664000pt;}
._12_c01334{width:10.800000pt;}
._5_c01334{width:12.160000pt;}
._3_c01334{width:13.248000pt;}
._6_c01334{width:14.336000pt;}
._1d_c01334{width:15.568000pt;}
._15_c01334{width:16.632000pt;}
._1_c01334{width:18.432000pt;}
._2_c01334{width:20.800000pt;}
._8_c01334{width:25.088000pt;}
._24_c01334{width:28.240000pt;}
._1c_c01334{width:32.114667pt;}
._1f_c01334{width:34.605333pt;}
._1e_c01334{width:38.144000pt;}
._23_c01334{width:40.392000pt;}
._25_c01334{width:76.466667pt;}
._1b_c01334{width:148.240000pt;}
._21_c01334{width:160.221333pt;}
._26_c01334{width:277.112000pt;}
.fs7_c01334{font-size:32.000000pt;}
.fs8_c01334{font-size:42.666667pt;}
.fs3_c01334{font-size:45.333333pt;}
.fs6_c01334{font-size:58.666667pt;}
.fs0_c01334{font-size:64.000000pt;}
.fs5_c01334{font-size:66.666667pt;}
.fs4_c01334{font-size:69.333333pt;}
.fs1_c01334{font-size:72.000000pt;}
.fs2_c01334{font-size:77.333333pt;}
.y0_c01334{bottom:0.000000pt;}
.y26_c01334{bottom:2.760000pt;}
.y25_c01334{bottom:6.425217pt;}
.y24_c01334{bottom:48.506667pt;}
.y23_c01334{bottom:71.440000pt;}
.y22_c01334{bottom:93.573333pt;}
.y21_c01334{bottom:115.440000pt;}
.y20_c01334{bottom:137.973333pt;}
.y1f_c01334{bottom:159.573333pt;}
.y1e_c01334{bottom:181.706667pt;}
.y1d_c01334{bottom:203.306667pt;}
.y1c_c01334{bottom:225.573333pt;}
.y1b_c01334{bottom:246.906667pt;}
.y1a_c01334{bottom:269.040000pt;}
.y19_c01334{bottom:291.040000pt;}
.y18_c01334{bottom:312.240000pt;}
.y17_c01334{bottom:334.506667pt;}
.y16_c01334{bottom:355.706667pt;}
.y15_c01334{bottom:377.040000pt;}
.y14_c01334{bottom:399.040000pt;}
.y13_c01334{bottom:420.240000pt;}
.y12_c01334{bottom:441.840000pt;}
.y11_c01334{bottom:463.173333pt;}
.y10_c01334{bottom:485.040000pt;}
.yf_c01334{bottom:505.840000pt;}
.ye_c01334{bottom:527.306667pt;}
.yd_c01334{bottom:549.306667pt;}
.yc_c01334{bottom:570.240000pt;}
.yb_c01334{bottom:591.840000pt;}
.ya_c01334{bottom:613.706667pt;}
.y9_c01334{bottom:634.506667pt;}
.y8_c01334{bottom:656.106667pt;}
.y7_c01334{bottom:677.706667pt;}
.y6_c01334{bottom:699.040000pt;}
.y5_c01334{bottom:721.440000pt;}
.y4_c01334{bottom:742.106667pt;}
.y3_c01334{bottom:764.640000pt;}
.y2_c01334{bottom:785.306667pt;}
.y1_c01334{bottom:818.373333pt;}
.h7_c01334{height:11.733399pt;}
.h8_c01334{height:38.937500pt;}
.h3_c01334{height:70.664062pt;}
.h6_c01334{height:74.906250pt;}
.h5_c01334{height:81.031250pt;}
.h2_c01334{height:81.045333pt;}
.h4_c01334{height:87.783854pt;}
.h1_c01334{height:876.666667pt;}
.h0_c01334{height:876.933333pt;}
.w1_c01334{width:93.222667pt;}
.w0_c01334{width:597.333333pt;}
.x0_c01334{left:0.000000pt;}
.x8_c01334{left:42.933333pt;}
.x7_c01334{left:44.400000pt;}
.x2_c01334{left:45.866667pt;}
.x4_c01334{left:47.333333pt;}
.x6_c01334{left:51.866667pt;}
.x3_c01334{left:54.933333pt;}
.x5_c01334{left:74.400000pt;}
.x1_c01334{left:101.066667pt;}
.xa_c01334{left:255.834880pt;}
.x9_c01334{left:278.933333pt;}
}





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

.ir_c01335:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01335{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01335;src:url('chunks/assets/font_d204e2df2327e39c0fe2c657.woff2')format("woff");}.ff1_c01335{font-family:ff1_c01335;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01335;src:url('chunks/assets/font_1b1a093d5dd9cf165b06bc3e.woff2')format("woff");}.ff2_c01335{font-family:ff2_c01335;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01335;src:url('chunks/assets/font_4bc69cee02770b4aeb9d4191.woff2')format("woff");}.ff3_c01335{font-family:ff3_c01335;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01335;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff4_c01335{font-family:ff4_c01335;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01335;src:url('chunks/assets/font_dd2832d5ecd85131d8fc483b.woff2')format("woff");}.ff5_c01335{font-family:ff5_c01335;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01335;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c01335{font-family:ff6_c01335;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01335{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01335{vertical-align:0.000000px;}
.ls7_c01335{letter-spacing:-6.000000px;}
.ls4_c01335{letter-spacing:0.000000px;}
.ls5_c01335{letter-spacing:9.000000px;}
.ls6_c01335{letter-spacing:15.000000px;}
.ls0_c01335{letter-spacing:18.000000px;}
.ls2_c01335{letter-spacing:18.336000px;}
.ls3_c01335{letter-spacing:21.912000px;}
.ls1_c01335{letter-spacing:23.376000px;}
.sc__c01335{text-shadow:none;}
.sc0_c01335{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01335{-webkit-text-stroke:0px transparent;}
.sc0_c01335{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01335{word-spacing:-37.197000px;}
.ws2_c01335{word-spacing:-35.250000px;}
.ws0_c01335{word-spacing:-17.352000px;}
.ws3_c01335{word-spacing:-11.352000px;}
.ws4_c01335{word-spacing:0.000000px;}
._b_c01335{margin-left:-36.825000px;}
._6_c01335{margin-left:-35.568000px;}
._7_c01335{margin-left:-20.709000px;}
._8_c01335{margin-left:-19.188000px;}
._9_c01335{margin-left:-16.947000px;}
._13_c01335{margin-left:-12.051000px;}
._1e_c01335{margin-left:-10.287000px;}
._a_c01335{margin-left:-9.108000px;}
._2_c01335{margin-left:-7.857000px;}
._d_c01335{margin-left:-6.792000px;}
._19_c01335{margin-left:-5.670000px;}
._1a_c01335{margin-left:-4.428000px;}
._f_c01335{margin-left:-3.321000px;}
._c_c01335{margin-left:-2.304000px;}
._0_c01335{margin-left:-1.224000px;}
._5_c01335{width:1.296000px;}
._3_c01335{width:2.520000px;}
._4_c01335{width:3.600000px;}
._10_c01335{width:5.103000px;}
._e_c01335{width:7.002000px;}
._12_c01335{width:8.172000px;}
._11_c01335{width:9.198000px;}
._16_c01335{width:10.377000px;}
._18_c01335{width:11.988000px;}
._14_c01335{width:13.041000px;}
._15_c01335{width:14.616000px;}
._17_c01335{width:16.272000px;}
._1_c01335{width:17.796000px;}
._1b_c01335{width:22.002000px;}
._1d_c01335{width:25.236000px;}
._1c_c01335{width:539.793000px;}
.fc2_c01335{color:transparent;}
.fc1_c01335{color:rgb(128,128,128);}
.fc0_c01335{color:rgb(0,0,0);}
.fs6_c01335{font-size:48.000000px;}
.fs4_c01335{font-size:57.600000px;}
.fs0_c01335{font-size:72.000000px;}
.fs3_c01335{font-size:75.000000px;}
.fs1_c01335{font-size:81.000000px;}
.fs5_c01335{font-size:93.000000px;}
.fs2_c01335{font-size:117.000000px;}
.y0_c01335{bottom:0.000000px;}
.y26_c01335{bottom:3.105000px;}
.y25_c01335{bottom:7.228371px;}
.y23_c01335{bottom:54.465000px;}
.y22_c01335{bottom:103.065000px;}
.y21_c01335{bottom:128.565000px;}
.y20_c01335{bottom:152.865000px;}
.y1f_c01335{bottom:177.615000px;}
.y1e_c01335{bottom:202.215000px;}
.y24_c01335{bottom:224.415000px;}
.y1d_c01335{bottom:227.115000px;}
.y1c_c01335{bottom:251.565000px;}
.y1b_c01335{bottom:276.165000px;}
.y1a_c01335{bottom:300.465000px;}
.y19_c01335{bottom:325.065000px;}
.y18_c01335{bottom:349.365000px;}
.y17_c01335{bottom:374.265000px;}
.y16_c01335{bottom:398.565000px;}
.y15_c01335{bottom:423.315000px;}
.y14_c01335{bottom:448.215000px;}
.y4_c01335{bottom:467.115000px;}
.y13_c01335{bottom:472.515000px;}
.y3_c01335{bottom:491.865000px;}
.y12_c01335{bottom:497.565000px;}
.y11_c01335{bottom:521.415000px;}
.y10_c01335{bottom:579.915000px;}
.yf_c01335{bottom:609.315000px;}
.ye_c01335{bottom:664.665000px;}
.yd_c01335{bottom:689.565000px;}
.yc_c01335{bottom:714.165000px;}
.yb_c01335{bottom:738.465000px;}
.ya_c01335{bottom:762.765000px;}
.y9_c01335{bottom:787.065000px;}
.y8_c01335{bottom:810.765000px;}
.y7_c01335{bottom:835.665000px;}
.y2_c01335{bottom:845.415000px;}
.y6_c01335{bottom:859.665000px;}
.y1_c01335{bottom:868.815000px;}
.y5_c01335{bottom:884.565000px;}
.h7_c01335{height:13.200074px;}
.h8_c01335{height:43.804688px;}
.h4_c01335{height:79.497070px;}
.h2_c01335{height:84.269531px;}
.h5_c01335{height:91.160156px;}
.h6_c01335{height:91.274414px;}
.h3_c01335{height:136.937988px;}
.h1_c01335{height:986.250000px;}
.h0_c01335{height:986.325000px;}
.w2_c01335{width:104.875500px;}
.w0_c01335{width:667.425000px;}
.w1_c01335{width:667.500000px;}
.x0_c01335{left:0.000000px;}
.x1_c01335{left:12.450000px;}
.x2_c01335{left:22.350000px;}
.x3_c01335{left:110.400000px;}
.x4_c01335{left:111.750000px;}
.x6_c01335{left:114.150000px;}
.x7_c01335{left:115.800000px;}
.xd_c01335{left:121.200000px;}
.xe_c01335{left:122.850000px;}
.xf_c01335{left:124.500000px;}
.x10_c01335{left:125.550000px;}
.x11_c01335{left:126.600000px;}
.x8_c01335{left:130.050000px;}
.x5_c01335{left:139.500000px;}
.x9_c01335{left:171.750000px;}
.xb_c01335{left:254.100000px;}
.xa_c01335{left:255.150000px;}
.xc_c01335{left:257.550000px;}
.x14_c01335{left:285.526749px;}
.x12_c01335{left:559.500000px;}
.x13_c01335{left:643.650000px;}
@media print{
.v0_c01335{vertical-align:0.000000pt;}
.ls7_c01335{letter-spacing:-5.333333pt;}
.ls4_c01335{letter-spacing:0.000000pt;}
.ls5_c01335{letter-spacing:8.000000pt;}
.ls6_c01335{letter-spacing:13.333333pt;}
.ls0_c01335{letter-spacing:16.000000pt;}
.ls2_c01335{letter-spacing:16.298667pt;}
.ls3_c01335{letter-spacing:19.477333pt;}
.ls1_c01335{letter-spacing:20.778667pt;}
.ws1_c01335{word-spacing:-33.064000pt;}
.ws2_c01335{word-spacing:-31.333333pt;}
.ws0_c01335{word-spacing:-15.424000pt;}
.ws3_c01335{word-spacing:-10.090667pt;}
.ws4_c01335{word-spacing:0.000000pt;}
._b_c01335{margin-left:-32.733333pt;}
._6_c01335{margin-left:-31.616000pt;}
._7_c01335{margin-left:-18.408000pt;}
._8_c01335{margin-left:-17.056000pt;}
._9_c01335{margin-left:-15.064000pt;}
._13_c01335{margin-left:-10.712000pt;}
._1e_c01335{margin-left:-9.144000pt;}
._a_c01335{margin-left:-8.096000pt;}
._2_c01335{margin-left:-6.984000pt;}
._d_c01335{margin-left:-6.037333pt;}
._19_c01335{margin-left:-5.040000pt;}
._1a_c01335{margin-left:-3.936000pt;}
._f_c01335{margin-left:-2.952000pt;}
._c_c01335{margin-left:-2.048000pt;}
._0_c01335{margin-left:-1.088000pt;}
._5_c01335{width:1.152000pt;}
._3_c01335{width:2.240000pt;}
._4_c01335{width:3.200000pt;}
._10_c01335{width:4.536000pt;}
._e_c01335{width:6.224000pt;}
._12_c01335{width:7.264000pt;}
._11_c01335{width:8.176000pt;}
._16_c01335{width:9.224000pt;}
._18_c01335{width:10.656000pt;}
._14_c01335{width:11.592000pt;}
._15_c01335{width:12.992000pt;}
._17_c01335{width:14.464000pt;}
._1_c01335{width:15.818667pt;}
._1b_c01335{width:19.557333pt;}
._1d_c01335{width:22.432000pt;}
._1c_c01335{width:479.816000pt;}
.fs6_c01335{font-size:42.666667pt;}
.fs4_c01335{font-size:51.200000pt;}
.fs0_c01335{font-size:64.000000pt;}
.fs3_c01335{font-size:66.666667pt;}
.fs1_c01335{font-size:72.000000pt;}
.fs5_c01335{font-size:82.666667pt;}
.fs2_c01335{font-size:104.000000pt;}
.y0_c01335{bottom:0.000000pt;}
.y26_c01335{bottom:2.760000pt;}
.y25_c01335{bottom:6.425219pt;}
.y23_c01335{bottom:48.413333pt;}
.y22_c01335{bottom:91.613333pt;}
.y21_c01335{bottom:114.280000pt;}
.y20_c01335{bottom:135.880000pt;}
.y1f_c01335{bottom:157.880000pt;}
.y1e_c01335{bottom:179.746667pt;}
.y24_c01335{bottom:199.480000pt;}
.y1d_c01335{bottom:201.880000pt;}
.y1c_c01335{bottom:223.613333pt;}
.y1b_c01335{bottom:245.480000pt;}
.y1a_c01335{bottom:267.080000pt;}
.y19_c01335{bottom:288.946667pt;}
.y18_c01335{bottom:310.546667pt;}
.y17_c01335{bottom:332.680000pt;}
.y16_c01335{bottom:354.280000pt;}
.y15_c01335{bottom:376.280000pt;}
.y14_c01335{bottom:398.413333pt;}
.y4_c01335{bottom:415.213333pt;}
.y13_c01335{bottom:420.013333pt;}
.y3_c01335{bottom:437.213333pt;}
.y12_c01335{bottom:442.280000pt;}
.y11_c01335{bottom:463.480000pt;}
.y10_c01335{bottom:515.480000pt;}
.yf_c01335{bottom:541.613333pt;}
.ye_c01335{bottom:590.813333pt;}
.yd_c01335{bottom:612.946667pt;}
.yc_c01335{bottom:634.813333pt;}
.yb_c01335{bottom:656.413333pt;}
.ya_c01335{bottom:678.013333pt;}
.y9_c01335{bottom:699.613333pt;}
.y8_c01335{bottom:720.680000pt;}
.y7_c01335{bottom:742.813333pt;}
.y2_c01335{bottom:751.480000pt;}
.y6_c01335{bottom:764.146667pt;}
.y1_c01335{bottom:772.280000pt;}
.y5_c01335{bottom:786.280000pt;}
.h7_c01335{height:11.733399pt;}
.h8_c01335{height:38.937500pt;}
.h4_c01335{height:70.664062pt;}
.h2_c01335{height:74.906250pt;}
.h5_c01335{height:81.031250pt;}
.h6_c01335{height:81.132812pt;}
.h3_c01335{height:121.722656pt;}
.h1_c01335{height:876.666667pt;}
.h0_c01335{height:876.733333pt;}
.w2_c01335{width:93.222667pt;}
.w0_c01335{width:593.266667pt;}
.w1_c01335{width:593.333333pt;}
.x0_c01335{left:0.000000pt;}
.x1_c01335{left:11.066667pt;}
.x2_c01335{left:19.866667pt;}
.x3_c01335{left:98.133333pt;}
.x4_c01335{left:99.333333pt;}
.x6_c01335{left:101.466667pt;}
.x7_c01335{left:102.933333pt;}
.xd_c01335{left:107.733333pt;}
.xe_c01335{left:109.200000pt;}
.xf_c01335{left:110.666667pt;}
.x10_c01335{left:111.600000pt;}
.x11_c01335{left:112.533333pt;}
.x8_c01335{left:115.600000pt;}
.x5_c01335{left:124.000000pt;}
.x9_c01335{left:152.666667pt;}
.xb_c01335{left:225.866667pt;}
.xa_c01335{left:226.800000pt;}
.xc_c01335{left:228.933333pt;}
.x14_c01335{left:253.801554pt;}
.x12_c01335{left:497.333333pt;}
.x13_c01335{left:572.133333pt;}
}





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

.ir_c01336:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01336{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01336;src:url('chunks/assets/font_54efad949b8d92a7a4e1a78c.woff2')format("woff");}.ff1_c01336{font-family:ff1_c01336;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01336;src:url('chunks/assets/font_3e93e3437090013015518c88.woff2')format("woff");}.ff2_c01336{font-family:ff2_c01336;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01336;src:url('chunks/assets/font_2859b0d0b62afa6a1455b7da.woff2')format("woff");}.ff3_c01336{font-family:ff3_c01336;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01336;src:url('chunks/assets/font_b6cbf318db20bc1dc62d3875.woff2')format("woff");}.ff4_c01336{font-family:ff4_c01336;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01336;src:url('chunks/assets/font_3cf4637f8b8e3c0de874f547.woff2')format("woff");}.ff5_c01336{font-family:ff5_c01336;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01336;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c01336{font-family:ff6_c01336;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01336{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01336{vertical-align:-76.800000px;}
.v0_c01336{vertical-align:0.000000px;}
.ls6_c01336{letter-spacing:-6.000000px;}
.ls3_c01336{letter-spacing:0.000000px;}
.ls8_c01336{letter-spacing:3.000000px;}
.ls2_c01336{letter-spacing:5.550000px;}
.ls5_c01336{letter-spacing:6.000000px;}
.ls1_c01336{letter-spacing:7.164000px;}
.ls7_c01336{letter-spacing:9.000000px;}
.ls4_c01336{letter-spacing:15.000000px;}
.ls0_c01336{letter-spacing:275.100000px;}
.sc__c01336{text-shadow:none;}
.sc0_c01336{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01336{-webkit-text-stroke:0px transparent;}
.sc0_c01336{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c01336{word-spacing:-35.250000px;}
.ws1_c01336{word-spacing:-33.075000px;}
.ws3_c01336{word-spacing:-26.352000px;}
.ws5_c01336{word-spacing:-17.352000px;}
.ws6_c01336{word-spacing:-17.250000px;}
.ws2_c01336{word-spacing:-11.352000px;}
.ws0_c01336{word-spacing:-1.125000px;}
.ws7_c01336{word-spacing:0.000000px;}
._13_c01336{margin-left:-39.447000px;}
._26_c01336{margin-left:-30.942000px;}
._27_c01336{margin-left:-27.462000px;}
._21_c01336{margin-left:-25.515000px;}
._23_c01336{margin-left:-20.331000px;}
._1d_c01336{margin-left:-17.940000px;}
._20_c01336{margin-left:-16.491000px;}
._0_c01336{margin-left:-14.976000px;}
._24_c01336{margin-left:-8.886000px;}
._18_c01336{margin-left:-7.674000px;}
._16_c01336{margin-left:-5.565000px;}
._15_c01336{margin-left:-4.185000px;}
._e_c01336{margin-left:-2.616000px;}
._10_c01336{margin-left:-1.134000px;}
._9_c01336{width:1.125000px;}
._c_c01336{width:2.670000px;}
._d_c01336{width:3.972000px;}
._a_c01336{width:5.103000px;}
._3_c01336{width:6.825000px;}
._17_c01336{width:7.980000px;}
._8_c01336{width:9.525000px;}
._7_c01336{width:10.950000px;}
._6_c01336{width:12.000000px;}
._f_c01336{width:13.017000px;}
._2_c01336{width:14.925000px;}
._1a_c01336{width:16.203000px;}
._19_c01336{width:18.066000px;}
._5_c01336{width:19.350000px;}
._4_c01336{width:20.925000px;}
._1c_c01336{width:22.374000px;}
._1b_c01336{width:24.774000px;}
._25_c01336{width:38.037000px;}
._b_c01336{width:54.108000px;}
._12_c01336{width:60.507000px;}
._11_c01336{width:62.991000px;}
._1e_c01336{width:70.959000px;}
._1_c01336{width:80.976000px;}
._22_c01336{width:187.029000px;}
._14_c01336{width:341.913000px;}
._1f_c01336{width:386.880000px;}
.fc2_c01336{color:transparent;}
.fc1_c01336{color:rgb(128,128,128);}
.fc0_c01336{color:rgb(0,0,0);}
.fs5_c01336{font-size:36.000000px;}
.fs6_c01336{font-size:48.000000px;}
.fs3_c01336{font-size:69.000000px;}
.fs4_c01336{font-size:72.000000px;}
.fs1_c01336{font-size:75.000000px;}
.fs0_c01336{font-size:78.000000px;}
.fs2_c01336{font-size:81.000000px;}
.y0_c01336{bottom:0.000000px;}
.y23_c01336{bottom:3.105000px;}
.y22_c01336{bottom:7.228369px;}
.y21_c01336{bottom:78.870000px;}
.y20_c01336{bottom:103.170000px;}
.y1f_c01336{bottom:129.270000px;}
.y1e_c01336{bottom:153.570000px;}
.y1d_c01336{bottom:176.520000px;}
.y1c_c01336{bottom:203.520000px;}
.y1b_c01336{bottom:251.370000px;}
.y1a_c01336{bottom:302.370000px;}
.y19_c01336{bottom:325.320000px;}
.y18_c01336{bottom:350.220000px;}
.y17_c01336{bottom:374.970000px;}
.y16_c01336{bottom:399.570000px;}
.y15_c01336{bottom:423.870000px;}
.y14_c01336{bottom:447.570000px;}
.y13_c01336{bottom:472.170000px;}
.y12_c01336{bottom:496.770000px;}
.y11_c01336{bottom:520.770000px;}
.y10_c01336{bottom:544.320000px;}
.yf_c01336{bottom:569.070000px;}
.ye_c01336{bottom:592.320000px;}
.yd_c01336{bottom:617.520000px;}
.yc_c01336{bottom:640.620000px;}
.yb_c01336{bottom:665.820000px;}
.ya_c01336{bottom:690.420000px;}
.y9_c01336{bottom:714.420000px;}
.y8_c01336{bottom:738.720000px;}
.y7_c01336{bottom:763.320000px;}
.y6_c01336{bottom:787.320000px;}
.y5_c01336{bottom:811.620000px;}
.y4_c01336{bottom:835.320000px;}
.y3_c01336{bottom:860.670000px;}
.y2_c01336{bottom:884.520000px;}
.y1_c01336{bottom:919.020000px;}
.h6_c01336{height:13.200073px;}
.h7_c01336{height:43.804688px;}
.h3_c01336{height:79.497070px;}
.h4_c01336{height:84.269531px;}
.h5_c01336{height:91.160156px;}
.h2_c01336{height:94.958496px;}
.h1_c01336{height:986.250000px;}
.h0_c01336{height:986.550000px;}
.w1_c01336{width:104.875500px;}
.w0_c01336{width:672.000000px;}
.x0_c01336{left:0.000000px;}
.x2_c01336{left:34.500000px;}
.x6_c01336{left:36.750000px;}
.xa_c01336{left:57.750000px;}
.xb_c01336{left:63.000000px;}
.x3_c01336{left:64.050000px;}
.x4_c01336{left:65.100000px;}
.x5_c01336{left:66.150000px;}
.x9_c01336{left:98.250000px;}
.x8_c01336{left:103.950000px;}
.x1_c01336{left:115.200000px;}
.x7_c01336{left:144.000000px;}
.xc_c01336{left:287.814240px;}
@media print{
.v1_c01336{vertical-align:-68.266667pt;}
.v0_c01336{vertical-align:0.000000pt;}
.ls6_c01336{letter-spacing:-5.333333pt;}
.ls3_c01336{letter-spacing:0.000000pt;}
.ls8_c01336{letter-spacing:2.666667pt;}
.ls2_c01336{letter-spacing:4.933333pt;}
.ls5_c01336{letter-spacing:5.333333pt;}
.ls1_c01336{letter-spacing:6.368000pt;}
.ls7_c01336{letter-spacing:8.000000pt;}
.ls4_c01336{letter-spacing:13.333333pt;}
.ls0_c01336{letter-spacing:244.533333pt;}
.ws4_c01336{word-spacing:-31.333333pt;}
.ws1_c01336{word-spacing:-29.400000pt;}
.ws3_c01336{word-spacing:-23.424000pt;}
.ws5_c01336{word-spacing:-15.424000pt;}
.ws6_c01336{word-spacing:-15.333333pt;}
.ws2_c01336{word-spacing:-10.090667pt;}
.ws0_c01336{word-spacing:-1.000000pt;}
.ws7_c01336{word-spacing:0.000000pt;}
._13_c01336{margin-left:-35.064000pt;}
._26_c01336{margin-left:-27.504000pt;}
._27_c01336{margin-left:-24.410667pt;}
._21_c01336{margin-left:-22.680000pt;}
._23_c01336{margin-left:-18.072000pt;}
._1d_c01336{margin-left:-15.946667pt;}
._20_c01336{margin-left:-14.658667pt;}
._0_c01336{margin-left:-13.312000pt;}
._24_c01336{margin-left:-7.898667pt;}
._18_c01336{margin-left:-6.821333pt;}
._16_c01336{margin-left:-4.946667pt;}
._15_c01336{margin-left:-3.720000pt;}
._e_c01336{margin-left:-2.325333pt;}
._10_c01336{margin-left:-1.008000pt;}
._9_c01336{width:1.000000pt;}
._c_c01336{width:2.373333pt;}
._d_c01336{width:3.530667pt;}
._a_c01336{width:4.536000pt;}
._3_c01336{width:6.066667pt;}
._17_c01336{width:7.093333pt;}
._8_c01336{width:8.466667pt;}
._7_c01336{width:9.733333pt;}
._6_c01336{width:10.666667pt;}
._f_c01336{width:11.570667pt;}
._2_c01336{width:13.266667pt;}
._1a_c01336{width:14.402667pt;}
._19_c01336{width:16.058667pt;}
._5_c01336{width:17.200000pt;}
._4_c01336{width:18.600000pt;}
._1c_c01336{width:19.888000pt;}
._1b_c01336{width:22.021333pt;}
._25_c01336{width:33.810667pt;}
._b_c01336{width:48.096000pt;}
._12_c01336{width:53.784000pt;}
._11_c01336{width:55.992000pt;}
._1e_c01336{width:63.074667pt;}
._1_c01336{width:71.978667pt;}
._22_c01336{width:166.248000pt;}
._14_c01336{width:303.922667pt;}
._1f_c01336{width:343.893333pt;}
.fs5_c01336{font-size:32.000000pt;}
.fs6_c01336{font-size:42.666667pt;}
.fs3_c01336{font-size:61.333333pt;}
.fs4_c01336{font-size:64.000000pt;}
.fs1_c01336{font-size:66.666667pt;}
.fs0_c01336{font-size:69.333333pt;}
.fs2_c01336{font-size:72.000000pt;}
.y0_c01336{bottom:0.000000pt;}
.y23_c01336{bottom:2.760000pt;}
.y22_c01336{bottom:6.425217pt;}
.y21_c01336{bottom:70.106667pt;}
.y20_c01336{bottom:91.706667pt;}
.y1f_c01336{bottom:114.906667pt;}
.y1e_c01336{bottom:136.506667pt;}
.y1d_c01336{bottom:156.906667pt;}
.y1c_c01336{bottom:180.906667pt;}
.y1b_c01336{bottom:223.440000pt;}
.y1a_c01336{bottom:268.773333pt;}
.y19_c01336{bottom:289.173333pt;}
.y18_c01336{bottom:311.306667pt;}
.y17_c01336{bottom:333.306667pt;}
.y16_c01336{bottom:355.173333pt;}
.y15_c01336{bottom:376.773333pt;}
.y14_c01336{bottom:397.840000pt;}
.y13_c01336{bottom:419.706667pt;}
.y12_c01336{bottom:441.573333pt;}
.y11_c01336{bottom:462.906667pt;}
.y10_c01336{bottom:483.840000pt;}
.yf_c01336{bottom:505.840000pt;}
.ye_c01336{bottom:526.506667pt;}
.yd_c01336{bottom:548.906667pt;}
.yc_c01336{bottom:569.440000pt;}
.yb_c01336{bottom:591.840000pt;}
.ya_c01336{bottom:613.706667pt;}
.y9_c01336{bottom:635.040000pt;}
.y8_c01336{bottom:656.640000pt;}
.y7_c01336{bottom:678.506667pt;}
.y6_c01336{bottom:699.840000pt;}
.y5_c01336{bottom:721.440000pt;}
.y4_c01336{bottom:742.506667pt;}
.y3_c01336{bottom:765.040000pt;}
.y2_c01336{bottom:786.240000pt;}
.y1_c01336{bottom:816.906667pt;}
.h6_c01336{height:11.733399pt;}
.h7_c01336{height:38.937500pt;}
.h3_c01336{height:70.664062pt;}
.h4_c01336{height:74.906250pt;}
.h5_c01336{height:81.031250pt;}
.h2_c01336{height:84.407552pt;}
.h1_c01336{height:876.666667pt;}
.h0_c01336{height:876.933333pt;}
.w1_c01336{width:93.222667pt;}
.w0_c01336{width:597.333333pt;}
.x0_c01336{left:0.000000pt;}
.x2_c01336{left:30.666667pt;}
.x6_c01336{left:32.666667pt;}
.xa_c01336{left:51.333333pt;}
.xb_c01336{left:56.000000pt;}
.x3_c01336{left:56.933333pt;}
.x4_c01336{left:57.866667pt;}
.x5_c01336{left:58.800000pt;}
.x9_c01336{left:87.333333pt;}
.x8_c01336{left:92.400000pt;}
.x1_c01336{left:102.400000pt;}
.x7_c01336{left:128.000000pt;}
.xc_c01336{left:255.834880pt;}
}





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

.ir_c01337:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01337{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01337;src:url('chunks/assets/font_e08504805c2ddf597df53cd7.woff2')format("woff");}.ff1_c01337{font-family:ff1_c01337;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01337;src:url('chunks/assets/font_d3419dd39c624d98c7e76b86.woff2')format("woff");}.ff2_c01337{font-family:ff2_c01337;line-height:1.401855;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01337;src:url('chunks/assets/font_45176b714168e59b32d4260b.woff2')format("woff");}.ff3_c01337{font-family:ff3_c01337;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01337;src:url('chunks/assets/font_644465839f76f97a6df888e2.woff2')format("woff");}.ff4_c01337{font-family:ff4_c01337;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01337;src:url('chunks/assets/font_4340d876f32eab78f8c21e6f.woff2')format("woff");}.ff5_c01337{font-family:ff5_c01337;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01337;src:url('chunks/assets/font_965f6a5537fbbcb5bd56c684.woff2')format("woff");}.ff6_c01337{font-family:ff6_c01337;line-height:1.311035;font-style:normal;font-weight: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_c01337;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c01337{font-family:ff7_c01337;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01337{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01337{vertical-align:0.000000px;}
.ls6_c01337{letter-spacing:-6.000000px;}
.ls5_c01337{letter-spacing:0.000000px;}
.ls4_c01337{letter-spacing:0.648000px;}
.ls1_c01337{letter-spacing:4.200000px;}
.ls3_c01337{letter-spacing:6.750000px;}
.ls2_c01337{letter-spacing:9.000000px;}
.ls0_c01337{letter-spacing:19.350000px;}
.sc__c01337{text-shadow:none;}
.sc0_c01337{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01337{-webkit-text-stroke:0px transparent;}
.sc0_c01337{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01337{word-spacing:-27.000000px;}
.ws2_c01337{word-spacing:-26.352000px;}
.ws5_c01337{word-spacing:-20.250000px;}
.ws3_c01337{word-spacing:-17.352000px;}
.ws4_c01337{word-spacing:-11.352000px;}
.ws1_c01337{word-spacing:-1.152000px;}
.ws6_c01337{word-spacing:0.000000px;}
._29_c01337{margin-left:-23.187000px;}
._1e_c01337{margin-left:-20.979000px;}
._22_c01337{margin-left:-19.014000px;}
._26_c01337{margin-left:-15.300000px;}
._1c_c01337{margin-left:-13.896000px;}
._28_c01337{margin-left:-12.684000px;}
._1b_c01337{margin-left:-11.670000px;}
._1f_c01337{margin-left:-10.611000px;}
._17_c01337{margin-left:-9.069000px;}
._2_c01337{margin-left:-7.452000px;}
._16_c01337{margin-left:-5.670000px;}
._3_c01337{margin-left:-4.644000px;}
._0_c01337{margin-left:-3.024000px;}
._4_c01337{margin-left:-1.716000px;}
._9_c01337{width:1.701000px;}
._8_c01337{width:3.162000px;}
._c_c01337{width:4.236000px;}
._5_c01337{width:5.622000px;}
._7_c01337{width:7.209000px;}
._b_c01337{width:9.072000px;}
._14_c01337{width:10.275000px;}
._a_c01337{width:11.340000px;}
._d_c01337{width:12.687000px;}
._6_c01337{width:14.580000px;}
._13_c01337{width:15.753000px;}
._19_c01337{width:16.938000px;}
._f_c01337{width:18.600000px;}
._15_c01337{width:21.483000px;}
._10_c01337{width:23.652000px;}
._1d_c01337{width:25.155000px;}
._e_c01337{width:26.901000px;}
._12_c01337{width:28.701000px;}
._11_c01337{width:32.070000px;}
._27_c01337{width:36.807000px;}
._1a_c01337{width:48.261000px;}
._25_c01337{width:51.657000px;}
._24_c01337{width:54.504000px;}
._23_c01337{width:102.132000px;}
._21_c01337{width:110.217000px;}
._18_c01337{width:116.589000px;}
._1_c01337{width:155.412000px;}
._20_c01337{width:166.131000px;}
.fc2_c01337{color:transparent;}
.fc1_c01337{color:rgb(128,128,128);}
.fc0_c01337{color:rgb(0,0,0);}
.fs5_c01337{font-size:48.000000px;}
.fs3_c01337{font-size:72.000000px;}
.fs2_c01337{font-size:81.000000px;}
.fs1_c01337{font-size:87.000000px;}
.fs4_c01337{font-size:93.000000px;}
.fs0_c01337{font-size:108.000000px;}
.y0_c01337{bottom:0.000000px;}
.y26_c01337{bottom:3.105000px;}
.y25_c01337{bottom:7.228371px;}
.y24_c01337{bottom:58.515000px;}
.y23_c01337{bottom:80.715000px;}
.y22_c01337{bottom:106.065000px;}
.y21_c01337{bottom:131.265000px;}
.y20_c01337{bottom:155.715000px;}
.y1f_c01337{bottom:180.615000px;}
.y1e_c01337{bottom:203.865000px;}
.y1d_c01337{bottom:229.215000px;}
.y1c_c01337{bottom:253.815000px;}
.y1b_c01337{bottom:278.415000px;}
.y1a_c01337{bottom:303.765000px;}
.y19_c01337{bottom:329.865000px;}
.y18_c01337{bottom:352.815000px;}
.y17_c01337{bottom:379.665000px;}
.y16_c01337{bottom:403.665000px;}
.y15_c01337{bottom:427.965000px;}
.y14_c01337{bottom:452.565000px;}
.y13_c01337{bottom:476.865000px;}
.y12_c01337{bottom:501.315000px;}
.y11_c01337{bottom:525.465000px;}
.y10_c01337{bottom:549.765000px;}
.yf_c01337{bottom:574.215000px;}
.ye_c01337{bottom:598.815000px;}
.yd_c01337{bottom:623.115000px;}
.yc_c01337{bottom:647.715000px;}
.yb_c01337{bottom:671.715000px;}
.ya_c01337{bottom:696.915000px;}
.y9_c01337{bottom:720.915000px;}
.y8_c01337{bottom:744.915000px;}
.y7_c01337{bottom:769.515000px;}
.y6_c01337{bottom:793.515000px;}
.y5_c01337{bottom:818.115000px;}
.y4_c01337{bottom:843.465000px;}
.y3_c01337{bottom:868.065000px;}
.y2_c01337{bottom:892.065000px;}
.y1_c01337{bottom:926.865000px;}
.h7_c01337{height:13.200074px;}
.h8_c01337{height:43.804688px;}
.h3_c01337{height:79.497070px;}
.h4_c01337{height:84.269531px;}
.h5_c01337{height:91.160156px;}
.h6_c01337{height:93.726562px;}
.h2_c01337{height:105.943359px;}
.h1_c01337{height:986.250000px;}
.h0_c01337{height:986.325000px;}
.w2_c01337{width:104.875500px;}
.w0_c01337{width:667.425000px;}
.w1_c01337{width:667.500000px;}
.x0_c01337{left:0.000000px;}
.x4_c01337{left:15.150000px;}
.x7_c01337{left:18.600000px;}
.x3_c01337{left:20.850000px;}
.xc_c01337{left:31.050000px;}
.xd_c01337{left:32.100000px;}
.xe_c01337{left:34.050000px;}
.x11_c01337{left:38.100000px;}
.x12_c01337{left:39.450000px;}
.x13_c01337{left:41.400000px;}
.x8_c01337{left:61.350000px;}
.x10_c01337{left:100.950000px;}
.x6_c01337{left:108.000000px;}
.x5_c01337{left:111.750000px;}
.x9_c01337{left:113.700000px;}
.xa_c01337{left:116.100000px;}
.xb_c01337{left:117.750000px;}
.xf_c01337{left:124.200000px;}
.x14_c01337{left:129.300000px;}
.x15_c01337{left:130.500000px;}
.x16_c01337{left:132.300000px;}
.x2_c01337{left:133.950000px;}
.x1_c01337{left:145.500000px;}
.x18_c01337{left:285.526749px;}
.x17_c01337{left:573.000000px;}
@media print{
.v0_c01337{vertical-align:0.000000pt;}
.ls6_c01337{letter-spacing:-5.333333pt;}
.ls5_c01337{letter-spacing:0.000000pt;}
.ls4_c01337{letter-spacing:0.576000pt;}
.ls1_c01337{letter-spacing:3.733333pt;}
.ls3_c01337{letter-spacing:6.000000pt;}
.ls2_c01337{letter-spacing:8.000000pt;}
.ls0_c01337{letter-spacing:17.200000pt;}
.ws0_c01337{word-spacing:-24.000000pt;}
.ws2_c01337{word-spacing:-23.424000pt;}
.ws5_c01337{word-spacing:-18.000000pt;}
.ws3_c01337{word-spacing:-15.424000pt;}
.ws4_c01337{word-spacing:-10.090667pt;}
.ws1_c01337{word-spacing:-1.024000pt;}
.ws6_c01337{word-spacing:0.000000pt;}
._29_c01337{margin-left:-20.610667pt;}
._1e_c01337{margin-left:-18.648000pt;}
._22_c01337{margin-left:-16.901333pt;}
._26_c01337{margin-left:-13.600000pt;}
._1c_c01337{margin-left:-12.352000pt;}
._28_c01337{margin-left:-11.274667pt;}
._1b_c01337{margin-left:-10.373333pt;}
._1f_c01337{margin-left:-9.432000pt;}
._17_c01337{margin-left:-8.061333pt;}
._2_c01337{margin-left:-6.624000pt;}
._16_c01337{margin-left:-5.040000pt;}
._3_c01337{margin-left:-4.128000pt;}
._0_c01337{margin-left:-2.688000pt;}
._4_c01337{margin-left:-1.525333pt;}
._9_c01337{width:1.512000pt;}
._8_c01337{width:2.810667pt;}
._c_c01337{width:3.765333pt;}
._5_c01337{width:4.997333pt;}
._7_c01337{width:6.408000pt;}
._b_c01337{width:8.064000pt;}
._14_c01337{width:9.133333pt;}
._a_c01337{width:10.080000pt;}
._d_c01337{width:11.277333pt;}
._6_c01337{width:12.960000pt;}
._13_c01337{width:14.002667pt;}
._19_c01337{width:15.056000pt;}
._f_c01337{width:16.533333pt;}
._15_c01337{width:19.096000pt;}
._10_c01337{width:21.024000pt;}
._1d_c01337{width:22.360000pt;}
._e_c01337{width:23.912000pt;}
._12_c01337{width:25.512000pt;}
._11_c01337{width:28.506667pt;}
._27_c01337{width:32.717333pt;}
._1a_c01337{width:42.898667pt;}
._25_c01337{width:45.917333pt;}
._24_c01337{width:48.448000pt;}
._23_c01337{width:90.784000pt;}
._21_c01337{width:97.970667pt;}
._18_c01337{width:103.634667pt;}
._1_c01337{width:138.144000pt;}
._20_c01337{width:147.672000pt;}
.fs5_c01337{font-size:42.666667pt;}
.fs3_c01337{font-size:64.000000pt;}
.fs2_c01337{font-size:72.000000pt;}
.fs1_c01337{font-size:77.333333pt;}
.fs4_c01337{font-size:82.666667pt;}
.fs0_c01337{font-size:96.000000pt;}
.y0_c01337{bottom:0.000000pt;}
.y26_c01337{bottom:2.760000pt;}
.y25_c01337{bottom:6.425219pt;}
.y24_c01337{bottom:52.013333pt;}
.y23_c01337{bottom:71.746667pt;}
.y22_c01337{bottom:94.280000pt;}
.y21_c01337{bottom:116.680000pt;}
.y20_c01337{bottom:138.413333pt;}
.y1f_c01337{bottom:160.546667pt;}
.y1e_c01337{bottom:181.213333pt;}
.y1d_c01337{bottom:203.746667pt;}
.y1c_c01337{bottom:225.613333pt;}
.y1b_c01337{bottom:247.480000pt;}
.y1a_c01337{bottom:270.013333pt;}
.y19_c01337{bottom:293.213333pt;}
.y18_c01337{bottom:313.613333pt;}
.y17_c01337{bottom:337.480000pt;}
.y16_c01337{bottom:358.813333pt;}
.y15_c01337{bottom:380.413333pt;}
.y14_c01337{bottom:402.280000pt;}
.y13_c01337{bottom:423.880000pt;}
.y12_c01337{bottom:445.613333pt;}
.y11_c01337{bottom:467.080000pt;}
.y10_c01337{bottom:488.680000pt;}
.yf_c01337{bottom:510.413333pt;}
.ye_c01337{bottom:532.280000pt;}
.yd_c01337{bottom:553.880000pt;}
.yc_c01337{bottom:575.746667pt;}
.yb_c01337{bottom:597.080000pt;}
.ya_c01337{bottom:619.480000pt;}
.y9_c01337{bottom:640.813333pt;}
.y8_c01337{bottom:662.146667pt;}
.y7_c01337{bottom:684.013333pt;}
.y6_c01337{bottom:705.346667pt;}
.y5_c01337{bottom:727.213333pt;}
.y4_c01337{bottom:749.746667pt;}
.y3_c01337{bottom:771.613333pt;}
.y2_c01337{bottom:792.946667pt;}
.y1_c01337{bottom:823.880000pt;}
.h7_c01337{height:11.733399pt;}
.h8_c01337{height:38.937500pt;}
.h3_c01337{height:70.664062pt;}
.h4_c01337{height:74.906250pt;}
.h5_c01337{height:81.031250pt;}
.h6_c01337{height:83.312500pt;}
.h2_c01337{height:94.171875pt;}
.h1_c01337{height:876.666667pt;}
.h0_c01337{height:876.733333pt;}
.w2_c01337{width:93.222667pt;}
.w0_c01337{width:593.266667pt;}
.w1_c01337{width:593.333333pt;}
.x0_c01337{left:0.000000pt;}
.x4_c01337{left:13.466667pt;}
.x7_c01337{left:16.533333pt;}
.x3_c01337{left:18.533333pt;}
.xc_c01337{left:27.600000pt;}
.xd_c01337{left:28.533333pt;}
.xe_c01337{left:30.266667pt;}
.x11_c01337{left:33.866667pt;}
.x12_c01337{left:35.066667pt;}
.x13_c01337{left:36.800000pt;}
.x8_c01337{left:54.533333pt;}
.x10_c01337{left:89.733333pt;}
.x6_c01337{left:96.000000pt;}
.x5_c01337{left:99.333333pt;}
.x9_c01337{left:101.066667pt;}
.xa_c01337{left:103.200000pt;}
.xb_c01337{left:104.666667pt;}
.xf_c01337{left:110.400000pt;}
.x14_c01337{left:114.933333pt;}
.x15_c01337{left:116.000000pt;}
.x16_c01337{left:117.600000pt;}
.x2_c01337{left:119.066667pt;}
.x1_c01337{left:129.333333pt;}
.x18_c01337{left:253.801554pt;}
.x17_c01337{left:509.333333pt;}
}





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

.ir_c01338:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01338{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01338;src:url('chunks/assets/font_8022d9c5c1fe38896c322155.woff2')format("woff");}.ff1_c01338{font-family:ff1_c01338;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01338;src:url('chunks/assets/font_7fb8de6855ec7380703023d0.woff2')format("woff");}.ff2_c01338{font-family:ff2_c01338;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01338;src:url('chunks/assets/font_38d30d19bae343e22dafa57b.woff2')format("woff");}.ff3_c01338{font-family:ff3_c01338;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01338;src:url('chunks/assets/font_6e648407a3f662bb6e9cedf9.woff2')format("woff");}.ff4_c01338{font-family:ff4_c01338;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01338;src:url('chunks/assets/font_66534b2dca90f6aa5d0101e5.woff2')format("woff");}.ff5_c01338{font-family:ff5_c01338;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01338;src:url('chunks/assets/font_1e731cd69f3411728cd65082.woff2')format("woff");}.ff6_c01338{font-family:ff6_c01338;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01338;src:url('chunks/assets/font_389945f24301b3fcaef023ba.woff2')format("woff");}.ff7_c01338{font-family:ff7_c01338;line-height:1.311035;font-style:normal;font-weight: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_c01338;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff8_c01338{font-family:ff8_c01338;line-height:1.219238;font-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_c01338{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m0_c01338{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01338{vertical-align:0.000000px;}
.ls1_c01338{letter-spacing:0.000000px;}
.ls0_c01338{letter-spacing:5.100000px;}
.ls2_c01338{letter-spacing:9.000000px;}
.sc__c01338{text-shadow:none;}
.sc0_c01338{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01338{-webkit-text-stroke:0px transparent;}
.sc0_c01338{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01338{word-spacing:-76.686000px;}
.ws5_c01338{word-spacing:-23.832000px;}
.ws1_c01338{word-spacing:-20.250000px;}
.ws4_c01338{word-spacing:-19.065600px;}
.ws3_c01338{word-spacing:-17.352000px;}
.ws0_c01338{word-spacing:-0.864000px;}
.ws6_c01338{word-spacing:0.000000px;}
._13_c01338{margin-left:-20.979000px;}
._14_c01338{margin-left:-19.197000px;}
._a_c01338{margin-left:-17.739000px;}
._8_c01338{margin-left:-9.369000px;}
._12_c01338{margin-left:-8.181000px;}
._b_c01338{margin-left:-6.696000px;}
._1_c01338{margin-left:-4.968000px;}
._c_c01338{margin-left:-3.888000px;}
._2_c01338{margin-left:-2.808000px;}
._0_c01338{margin-left:-1.620000px;}
._5_c01338{width:1.512000px;}
._4_c01338{width:2.916000px;}
._3_c01338{width:4.104000px;}
._9_c01338{width:5.670000px;}
._f_c01338{width:7.506000px;}
._7_c01338{width:8.883000px;}
._11_c01338{width:10.503000px;}
._e_c01338{width:11.934000px;}
._10_c01338{width:14.094000px;}
._15_c01338{width:15.768000px;}
._d_c01338{width:17.901000px;}
._19_c01338{width:44.496000px;}
._18_c01338{width:109.782000px;}
._1b_c01338{width:117.249000px;}
._17_c01338{width:208.275000px;}
._6_c01338{width:220.674000px;}
._16_c01338{width:231.670800px;}
._1a_c01338{width:274.116000px;}
.fc2_c01338{color:transparent;}
.fc1_c01338{color:rgb(128,128,128);}
.fc0_c01338{color:rgb(0,0,0);}
.fs5_c01338{font-size:48.000000px;}
.fs4_c01338{font-size:57.600000px;}
.fs2_c01338{font-size:72.000000px;}
.fs1_c01338{font-size:81.000000px;}
.fs3_c01338{font-size:87.000000px;}
.fs0_c01338{font-size:108.000000px;}
.y0_c01338{bottom:0.000000px;}
.y25_c01338{bottom:3.105000px;}
.y24_c01338{bottom:7.228369px;}
.y23_c01338{bottom:86.370000px;}
.y22_c01338{bottom:111.420000px;}
.y21_c01338{bottom:137.370000px;}
.y20_c01338{bottom:160.920000px;}
.y1f_c01338{bottom:186.570000px;}
.y1e_c01338{bottom:209.220000px;}
.y1d_c01338{bottom:235.620000px;}
.y1c_c01338{bottom:260.520000px;}
.y1b_c01338{bottom:283.170000px;}
.y1a_c01338{bottom:309.870000px;}
.y19_c01338{bottom:334.020000px;}
.y18_c01338{bottom:358.320000px;}
.y17_c01338{bottom:382.620000px;}
.y16_c01338{bottom:407.370000px;}
.y15_c01338{bottom:431.220000px;}
.y14_c01338{bottom:455.670000px;}
.y13_c01338{bottom:479.970000px;}
.y12_c01338{bottom:504.270000px;}
.y11_c01338{bottom:528.420000px;}
.y10_c01338{bottom:552.420000px;}
.yf_c01338{bottom:576.570000px;}
.ye_c01338{bottom:600.720000px;}
.yd_c01338{bottom:624.870000px;}
.yc_c01338{bottom:648.720000px;}
.yb_c01338{bottom:672.570000px;}
.ya_c01338{bottom:697.320000px;}
.y9_c01338{bottom:721.620000px;}
.y8_c01338{bottom:745.920000px;}
.y7_c01338{bottom:770.220000px;}
.y6_c01338{bottom:794.370000px;}
.y5_c01338{bottom:818.370000px;}
.y4_c01338{bottom:843.120000px;}
.y3_c01338{bottom:867.420000px;}
.y2_c01338{bottom:891.720000px;}
.y1_c01338{bottom:926.820000px;}
.h8_c01338{height:13.200073px;}
.h9_c01338{height:43.804688px;}
.h3_c01338{height:79.497070px;}
.h4_c01338{height:84.269531px;}
.h6_c01338{height:91.160156px;}
.h5_c01338{height:91.176000px;}
.h2_c01338{height:105.943359px;}
.h7_c01338{height:108.843750px;}
.h1_c01338{height:986.250000px;}
.h0_c01338{height:986.550000px;}
.w1_c01338{width:104.875500px;}
.w0_c01338{width:672.000000px;}
.x0_c01338{left:0.000000px;}
.x2_c01338{left:52.350000px;}
.x3_c01338{left:53.700000px;}
.x5_c01338{left:55.350000px;}
.x6_c01338{left:57.000000px;}
.x7_c01338{left:58.650000px;}
.x8_c01338{left:59.700000px;}
.x9_c01338{left:61.350000px;}
.x4_c01338{left:64.500000px;}
.x1_c01338{left:144.750000px;}
.xa_c01338{left:287.814240px;}
@media print{
.v0_c01338{vertical-align:0.000000pt;}
.ls1_c01338{letter-spacing:0.000000pt;}
.ls0_c01338{letter-spacing:4.533333pt;}
.ls2_c01338{letter-spacing:8.000000pt;}
.ws2_c01338{word-spacing:-68.165333pt;}
.ws5_c01338{word-spacing:-21.184000pt;}
.ws1_c01338{word-spacing:-18.000000pt;}
.ws4_c01338{word-spacing:-16.947200pt;}
.ws3_c01338{word-spacing:-15.424000pt;}
.ws0_c01338{word-spacing:-0.768000pt;}
.ws6_c01338{word-spacing:0.000000pt;}
._13_c01338{margin-left:-18.648000pt;}
._14_c01338{margin-left:-17.064000pt;}
._a_c01338{margin-left:-15.768000pt;}
._8_c01338{margin-left:-8.328000pt;}
._12_c01338{margin-left:-7.272000pt;}
._b_c01338{margin-left:-5.952000pt;}
._1_c01338{margin-left:-4.416000pt;}
._c_c01338{margin-left:-3.456000pt;}
._2_c01338{margin-left:-2.496000pt;}
._0_c01338{margin-left:-1.440000pt;}
._5_c01338{width:1.344000pt;}
._4_c01338{width:2.592000pt;}
._3_c01338{width:3.648000pt;}
._9_c01338{width:5.040000pt;}
._f_c01338{width:6.672000pt;}
._7_c01338{width:7.896000pt;}
._11_c01338{width:9.336000pt;}
._e_c01338{width:10.608000pt;}
._10_c01338{width:12.528000pt;}
._15_c01338{width:14.016000pt;}
._d_c01338{width:15.912000pt;}
._19_c01338{width:39.552000pt;}
._18_c01338{width:97.584000pt;}
._1b_c01338{width:104.221333pt;}
._17_c01338{width:185.133333pt;}
._6_c01338{width:196.154667pt;}
._16_c01338{width:205.929600pt;}
._1a_c01338{width:243.658667pt;}
.fs5_c01338{font-size:42.666667pt;}
.fs4_c01338{font-size:51.200000pt;}
.fs2_c01338{font-size:64.000000pt;}
.fs1_c01338{font-size:72.000000pt;}
.fs3_c01338{font-size:77.333333pt;}
.fs0_c01338{font-size:96.000000pt;}
.y0_c01338{bottom:0.000000pt;}
.y25_c01338{bottom:2.760000pt;}
.y24_c01338{bottom:6.425217pt;}
.y23_c01338{bottom:76.773333pt;}
.y22_c01338{bottom:99.040000pt;}
.y21_c01338{bottom:122.106667pt;}
.y20_c01338{bottom:143.040000pt;}
.y1f_c01338{bottom:165.840000pt;}
.y1e_c01338{bottom:185.973333pt;}
.y1d_c01338{bottom:209.440000pt;}
.y1c_c01338{bottom:231.573333pt;}
.y1b_c01338{bottom:251.706667pt;}
.y1a_c01338{bottom:275.440000pt;}
.y19_c01338{bottom:296.906667pt;}
.y18_c01338{bottom:318.506667pt;}
.y17_c01338{bottom:340.106667pt;}
.y16_c01338{bottom:362.106667pt;}
.y15_c01338{bottom:383.306667pt;}
.y14_c01338{bottom:405.040000pt;}
.y13_c01338{bottom:426.640000pt;}
.y12_c01338{bottom:448.240000pt;}
.y11_c01338{bottom:469.706667pt;}
.y10_c01338{bottom:491.040000pt;}
.yf_c01338{bottom:512.506667pt;}
.ye_c01338{bottom:533.973333pt;}
.yd_c01338{bottom:555.440000pt;}
.yc_c01338{bottom:576.640000pt;}
.yb_c01338{bottom:597.840000pt;}
.ya_c01338{bottom:619.840000pt;}
.y9_c01338{bottom:641.440000pt;}
.y8_c01338{bottom:663.040000pt;}
.y7_c01338{bottom:684.640000pt;}
.y6_c01338{bottom:706.106667pt;}
.y5_c01338{bottom:727.440000pt;}
.y4_c01338{bottom:749.440000pt;}
.y3_c01338{bottom:771.040000pt;}
.y2_c01338{bottom:792.640000pt;}
.y1_c01338{bottom:823.840000pt;}
.h8_c01338{height:11.733399pt;}
.h9_c01338{height:38.937500pt;}
.h3_c01338{height:70.664062pt;}
.h4_c01338{height:74.906250pt;}
.h6_c01338{height:81.031250pt;}
.h5_c01338{height:81.045333pt;}
.h2_c01338{height:94.171875pt;}
.h7_c01338{height:96.750000pt;}
.h1_c01338{height:876.666667pt;}
.h0_c01338{height:876.933333pt;}
.w1_c01338{width:93.222667pt;}
.w0_c01338{width:597.333333pt;}
.x0_c01338{left:0.000000pt;}
.x2_c01338{left:46.533333pt;}
.x3_c01338{left:47.733333pt;}
.x5_c01338{left:49.200000pt;}
.x6_c01338{left:50.666667pt;}
.x7_c01338{left:52.133333pt;}
.x8_c01338{left:53.066667pt;}
.x9_c01338{left:54.533333pt;}
.x4_c01338{left:57.333333pt;}
.x1_c01338{left:128.666667pt;}
.xa_c01338{left:255.834880pt;}
}





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

.ir_c01339:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01339{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01339;src:url('chunks/assets/font_ad466c712661a41909a17ebc.woff2')format("woff");}.ff1_c01339{font-family:ff1_c01339;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01339;src:url('chunks/assets/font_d105956dd4831e32dbad4fab.woff2')format("woff");}.ff2_c01339{font-family:ff2_c01339;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01339;src:url('chunks/assets/font_bd75c59f9d2b8bfb6aaa1527.woff2')format("woff");}.ff3_c01339{font-family:ff3_c01339;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01339;src:url('chunks/assets/font_3ab128724cecaf6386e49730.woff2')format("woff");}.ff4_c01339{font-family:ff4_c01339;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01339;src:url('chunks/assets/font_cb8b560fd0551236dbee83ba.woff2')format("woff");}.ff5_c01339{font-family:ff5_c01339;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01339;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c01339{font-family:ff6_c01339;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01339{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01339{vertical-align:0.000000px;}
.ls3_c01339{letter-spacing:-6.000000px;}
.ls2_c01339{letter-spacing:0.000000px;}
.ls0_c01339{letter-spacing:6.000000px;}
.ls4_c01339{letter-spacing:9.000000px;}
.ls5_c01339{letter-spacing:15.000000px;}
.ls1_c01339{letter-spacing:156.576000px;}
.sc__c01339{text-shadow:none;}
.sc0_c01339{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01339{-webkit-text-stroke:0px transparent;}
.sc0_c01339{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c01339{word-spacing:-35.250000px;}
.ws3_c01339{word-spacing:-26.352000px;}
.ws4_c01339{word-spacing:-18.000000px;}
.ws2_c01339{word-spacing:-17.352000px;}
.ws0_c01339{word-spacing:-17.250000px;}
.ws1_c01339{word-spacing:-11.352000px;}
.ws6_c01339{word-spacing:0.000000px;}
._1e_c01339{margin-left:-20.574000px;}
._17_c01339{margin-left:-19.362000px;}
._22_c01339{margin-left:-18.225000px;}
._14_c01339{margin-left:-16.698000px;}
._16_c01339{margin-left:-14.025000px;}
._d_c01339{margin-left:-12.093000px;}
._9_c01339{margin-left:-10.812000px;}
._13_c01339{margin-left:-8.730000px;}
._1_c01339{margin-left:-7.176000px;}
._0_c01339{margin-left:-5.244000px;}
._3_c01339{margin-left:-3.933000px;}
._12_c01339{margin-left:-2.478000px;}
._5_c01339{margin-left:-1.242000px;}
._6_c01339{width:1.035000px;}
._7_c01339{width:2.139000px;}
._2_c01339{width:4.077000px;}
._c_c01339{width:5.370000px;}
._b_c01339{width:6.447000px;}
._a_c01339{width:8.244000px;}
._10_c01339{width:9.591000px;}
._11_c01339{width:11.109000px;}
._19_c01339{width:12.705000px;}
._8_c01339{width:13.827000px;}
._f_c01339{width:14.970000px;}
._1f_c01339{width:18.030000px;}
._4_c01339{width:19.113000px;}
._e_c01339{width:27.129000px;}
._21_c01339{width:31.623000px;}
._20_c01339{width:33.285000px;}
._1d_c01339{width:35.454000px;}
._24_c01339{width:98.220000px;}
._15_c01339{width:101.568000px;}
._1b_c01339{width:162.642000px;}
._1a_c01339{width:216.435000px;}
._23_c01339{width:253.326000px;}
._18_c01339{width:309.888000px;}
._1c_c01339{width:1194.444000px;}
._25_c01339{width:1724.163000px;}
.fc2_c01339{color:transparent;}
.fc1_c01339{color:rgb(128,128,128);}
.fc0_c01339{color:rgb(0,0,0);}
.fs3_c01339{font-size:48.000000px;}
.fs0_c01339{font-size:69.000000px;}
.fs2_c01339{font-size:72.000000px;}
.fs1_c01339{font-size:81.000000px;}
.y0_c01339{bottom:0.000000px;}
.y25_c01339{bottom:3.105000px;}
.y24_c01339{bottom:7.228371px;}
.y23_c01339{bottom:52.365000px;}
.y22_c01339{bottom:77.415000px;}
.y21_c01339{bottom:102.315000px;}
.y20_c01339{bottom:125.565000px;}
.y1f_c01339{bottom:150.315000px;}
.y1e_c01339{bottom:175.965000px;}
.y1d_c01339{bottom:200.265000px;}
.y1c_c01339{bottom:224.865000px;}
.y1b_c01339{bottom:249.165000px;}
.y1a_c01339{bottom:273.765000px;}
.y19_c01339{bottom:298.665000px;}
.y18_c01339{bottom:323.415000px;}
.y17_c01339{bottom:347.715000px;}
.y16_c01339{bottom:372.315000px;}
.y15_c01339{bottom:397.365000px;}
.y14_c01339{bottom:421.665000px;}
.y13_c01339{bottom:444.615000px;}
.y12_c01339{bottom:470.115000px;}
.y11_c01339{bottom:496.515000px;}
.y10_c01339{bottom:519.165000px;}
.yf_c01339{bottom:543.765000px;}
.ye_c01339{bottom:568.365000px;}
.yd_c01339{bottom:592.365000px;}
.yc_c01339{bottom:617.265000px;}
.yb_c01339{bottom:642.915000px;}
.ya_c01339{bottom:666.015000px;}
.y9_c01339{bottom:690.165000px;}
.y8_c01339{bottom:714.915000px;}
.y7_c01339{bottom:739.815000px;}
.y6_c01339{bottom:763.815000px;}
.y5_c01339{bottom:788.115000px;}
.y4_c01339{bottom:812.115000px;}
.y3_c01339{bottom:836.115000px;}
.y2_c01339{bottom:860.715000px;}
.y1_c01339{bottom:885.615000px;}
.h5_c01339{height:13.200074px;}
.h6_c01339{height:43.804688px;}
.h3_c01339{height:72.312000px;}
.h2_c01339{height:79.497070px;}
.h4_c01339{height:84.269531px;}
.h1_c01339{height:986.250000px;}
.h0_c01339{height:986.325000px;}
.w2_c01339{width:104.875500px;}
.w0_c01339{width:667.425000px;}
.w1_c01339{width:667.500000px;}
.x0_c01339{left:0.000000px;}
.xc_c01339{left:44.550000px;}
.xb_c01339{left:47.850000px;}
.x8_c01339{left:48.900000px;}
.x3_c01339{left:49.950000px;}
.x7_c01339{left:52.650000px;}
.x1_c01339{left:131.250000px;}
.x2_c01339{left:132.900000px;}
.xd_c01339{left:138.300000px;}
.x6_c01339{left:139.650000px;}
.x5_c01339{left:141.300000px;}
.x9_c01339{left:143.100000px;}
.x4_c01339{left:160.650000px;}
.xa_c01339{left:167.400000px;}
.xe_c01339{left:285.526749px;}
@media print{
.v0_c01339{vertical-align:0.000000pt;}
.ls3_c01339{letter-spacing:-5.333333pt;}
.ls2_c01339{letter-spacing:0.000000pt;}
.ls0_c01339{letter-spacing:5.333333pt;}
.ls4_c01339{letter-spacing:8.000000pt;}
.ls5_c01339{letter-spacing:13.333333pt;}
.ls1_c01339{letter-spacing:139.178667pt;}
.ws5_c01339{word-spacing:-31.333333pt;}
.ws3_c01339{word-spacing:-23.424000pt;}
.ws4_c01339{word-spacing:-16.000000pt;}
.ws2_c01339{word-spacing:-15.424000pt;}
.ws0_c01339{word-spacing:-15.333333pt;}
.ws1_c01339{word-spacing:-10.090667pt;}
.ws6_c01339{word-spacing:0.000000pt;}
._1e_c01339{margin-left:-18.288000pt;}
._17_c01339{margin-left:-17.210667pt;}
._22_c01339{margin-left:-16.200000pt;}
._14_c01339{margin-left:-14.842667pt;}
._16_c01339{margin-left:-12.466667pt;}
._d_c01339{margin-left:-10.749333pt;}
._9_c01339{margin-left:-9.610667pt;}
._13_c01339{margin-left:-7.760000pt;}
._1_c01339{margin-left:-6.378667pt;}
._0_c01339{margin-left:-4.661333pt;}
._3_c01339{margin-left:-3.496000pt;}
._12_c01339{margin-left:-2.202667pt;}
._5_c01339{margin-left:-1.104000pt;}
._6_c01339{width:0.920000pt;}
._7_c01339{width:1.901333pt;}
._2_c01339{width:3.624000pt;}
._c_c01339{width:4.773333pt;}
._b_c01339{width:5.730667pt;}
._a_c01339{width:7.328000pt;}
._10_c01339{width:8.525333pt;}
._11_c01339{width:9.874667pt;}
._19_c01339{width:11.293333pt;}
._8_c01339{width:12.290667pt;}
._f_c01339{width:13.306667pt;}
._1f_c01339{width:16.026667pt;}
._4_c01339{width:16.989333pt;}
._e_c01339{width:24.114667pt;}
._21_c01339{width:28.109333pt;}
._20_c01339{width:29.586667pt;}
._1d_c01339{width:31.514667pt;}
._24_c01339{width:87.306667pt;}
._15_c01339{width:90.282667pt;}
._1b_c01339{width:144.570667pt;}
._1a_c01339{width:192.386667pt;}
._23_c01339{width:225.178667pt;}
._18_c01339{width:275.456000pt;}
._1c_c01339{width:1061.728000pt;}
._25_c01339{width:1532.589333pt;}
.fs3_c01339{font-size:42.666667pt;}
.fs0_c01339{font-size:61.333333pt;}
.fs2_c01339{font-size:64.000000pt;}
.fs1_c01339{font-size:72.000000pt;}
.y0_c01339{bottom:0.000000pt;}
.y25_c01339{bottom:2.760000pt;}
.y24_c01339{bottom:6.425219pt;}
.y23_c01339{bottom:46.546667pt;}
.y22_c01339{bottom:68.813333pt;}
.y21_c01339{bottom:90.946667pt;}
.y20_c01339{bottom:111.613333pt;}
.y1f_c01339{bottom:133.613333pt;}
.y1e_c01339{bottom:156.413333pt;}
.y1d_c01339{bottom:178.013333pt;}
.y1c_c01339{bottom:199.880000pt;}
.y1b_c01339{bottom:221.480000pt;}
.y1a_c01339{bottom:243.346667pt;}
.y19_c01339{bottom:265.480000pt;}
.y18_c01339{bottom:287.480000pt;}
.y17_c01339{bottom:309.080000pt;}
.y16_c01339{bottom:330.946667pt;}
.y15_c01339{bottom:353.213333pt;}
.y14_c01339{bottom:374.813333pt;}
.y13_c01339{bottom:395.213333pt;}
.y12_c01339{bottom:417.880000pt;}
.y11_c01339{bottom:441.346667pt;}
.y10_c01339{bottom:461.480000pt;}
.yf_c01339{bottom:483.346667pt;}
.ye_c01339{bottom:505.213333pt;}
.yd_c01339{bottom:526.546667pt;}
.yc_c01339{bottom:548.680000pt;}
.yb_c01339{bottom:571.480000pt;}
.ya_c01339{bottom:592.013333pt;}
.y9_c01339{bottom:613.480000pt;}
.y8_c01339{bottom:635.480000pt;}
.y7_c01339{bottom:657.613333pt;}
.y6_c01339{bottom:678.946667pt;}
.y5_c01339{bottom:700.546667pt;}
.y4_c01339{bottom:721.880000pt;}
.y3_c01339{bottom:743.213333pt;}
.y2_c01339{bottom:765.080000pt;}
.y1_c01339{bottom:787.213333pt;}
.h5_c01339{height:11.733399pt;}
.h6_c01339{height:38.937500pt;}
.h3_c01339{height:64.277333pt;}
.h2_c01339{height:70.664062pt;}
.h4_c01339{height:74.906250pt;}
.h1_c01339{height:876.666667pt;}
.h0_c01339{height:876.733333pt;}
.w2_c01339{width:93.222667pt;}
.w0_c01339{width:593.266667pt;}
.w1_c01339{width:593.333333pt;}
.x0_c01339{left:0.000000pt;}
.xc_c01339{left:39.600000pt;}
.xb_c01339{left:42.533333pt;}
.x8_c01339{left:43.466667pt;}
.x3_c01339{left:44.400000pt;}
.x7_c01339{left:46.800000pt;}
.x1_c01339{left:116.666667pt;}
.x2_c01339{left:118.133333pt;}
.xd_c01339{left:122.933333pt;}
.x6_c01339{left:124.133333pt;}
.x5_c01339{left:125.600000pt;}
.x9_c01339{left:127.200000pt;}
.x4_c01339{left:142.800000pt;}
.xa_c01339{left:148.800000pt;}
.xe_c01339{left:253.801554pt;}
}





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

.ir_c01340:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01340{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01340;src:url('chunks/assets/font_7e7e679e9217c033010cf0f5.woff2')format("woff");}.ff1_c01340{font-family:ff1_c01340;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01340;src:url('chunks/assets/font_b313312924128a947b981a58.woff2')format("woff");}.ff2_c01340{font-family:ff2_c01340;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01340;src:url('chunks/assets/font_30dfbedc713e4377a62a61b7.woff2')format("woff");}.ff3_c01340{font-family:ff3_c01340;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01340;src:url('chunks/assets/font_790a1dc402516a6bd2741357.woff2')format("woff");}.ff4_c01340{font-family:ff4_c01340;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01340;src:url('chunks/assets/font_4091d6682d7b23ae36f5d273.woff2')format("woff");}.ff5_c01340{font-family:ff5_c01340;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01340;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c01340{font-family:ff6_c01340;line-height:1.219238;font-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_c01340{transform:matrix(0.107500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107500,0.000000,0.000000,0.250000,0,0);}
.m0_c01340{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2_c01340{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m3_c01340{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.v0_c01340{vertical-align:0.000000px;}
.ls4_c01340{letter-spacing:-9.000000px;}
.ls3_c01340{letter-spacing:-6.000000px;}
.ls2_c01340{letter-spacing:0.000000px;}
.ls5_c01340{letter-spacing:9.000000px;}
.ls0_c01340{letter-spacing:11.700000px;}
.ls1_c01340{letter-spacing:16.602000px;}
.sc__c01340{text-shadow:none;}
.sc0_c01340{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01340{-webkit-text-stroke:0px transparent;}
.sc0_c01340{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c01340{word-spacing:-39.000000px;}
.ws2_c01340{word-spacing:-18.798000px;}
.ws3_c01340{word-spacing:-12.750000px;}
.ws4_c01340{word-spacing:-9.798000px;}
.ws0_c01340{word-spacing:-9.399000px;}
.ws1_c01340{word-spacing:-9.000000px;}
.ws7_c01340{word-spacing:0.000000px;}
.ws5_c01340{word-spacing:1.311000px;}
._2d_c01340{margin-left:-41.652000px;}
._30_c01340{margin-left:-31.902000px;}
._2a_c01340{margin-left:-26.730000px;}
._29_c01340{margin-left:-23.634000px;}
._28_c01340{margin-left:-21.750000px;}
._21_c01340{margin-left:-20.370000px;}
._20_c01340{margin-left:-18.720000px;}
._26_c01340{margin-left:-16.476000px;}
._27_c01340{margin-left:-14.964000px;}
._c_c01340{margin-left:-13.650000px;}
._25_c01340{margin-left:-12.024000px;}
._19_c01340{margin-left:-10.800000px;}
._5_c01340{margin-left:-9.276000px;}
._15_c01340{margin-left:-8.238000px;}
._16_c01340{margin-left:-6.915000px;}
._14_c01340{margin-left:-5.877000px;}
._e_c01340{margin-left:-4.056000px;}
._1_c01340{margin-left:-2.250000px;}
._b_c01340{margin-left:-1.053000px;}
._0_c01340{width:1.875000px;}
._3_c01340{width:2.901000px;}
._2_c01340{width:4.431000px;}
._4_c01340{width:6.015000px;}
._d_c01340{width:7.149000px;}
._12_c01340{width:8.820000px;}
._9_c01340{width:10.032000px;}
._2b_c01340{width:12.174000px;}
._8_c01340{width:13.464000px;}
._2c_c01340{width:14.547000px;}
._7_c01340{width:15.696000px;}
._11_c01340{width:17.466000px;}
._f_c01340{width:19.926000px;}
._10_c01340{width:22.797000px;}
._1e_c01340{width:29.544000px;}
._33_c01340{width:32.538000px;}
._13_c01340{width:41.730000px;}
._18_c01340{width:44.148000px;}
._17_c01340{width:47.580000px;}
._1a_c01340{width:52.500000px;}
._1f_c01340{width:56.160000px;}
._1b_c01340{width:59.037000px;}
._2e_c01340{width:62.361000px;}
._24_c01340{width:82.008000px;}
._2f_c01340{width:95.979000px;}
._22_c01340{width:119.400000px;}
._1c_c01340{width:122.715000px;}
._a_c01340{width:126.303000px;}
._1d_c01340{width:222.900000px;}
._32_c01340{width:224.796000px;}
._31_c01340{width:248.868000px;}
._35_c01340{width:349.926000px;}
._34_c01340{width:441.018000px;}
._23_c01340{width:488.745000px;}
._6_c01340{width:1112.574000px;}
.fc2_c01340{color:transparent;}
.fc1_c01340{color:rgb(128,128,128);}
.fc0_c01340{color:rgb(0,0,0);}
.fs5_c01340{font-size:39.000000px;}
.fs3_c01340{font-size:45.000000px;}
.fs9_c01340{font-size:48.000000px;}
.fs6_c01340{font-size:57.000000px;}
.fs4_c01340{font-size:60.000000px;}
.fs2_c01340{font-size:72.000000px;}
.fs0_c01340{font-size:75.000000px;}
.fs1_c01340{font-size:78.000000px;}
.fs8_c01340{font-size:93.000000px;}
.fs7_c01340{font-size:120.000000px;}
.y0_c01340{bottom:0.000000px;}
.y22_c01340{bottom:3.105000px;}
.y21_c01340{bottom:7.228371px;}
.y20_c01340{bottom:50.715000px;}
.y1f_c01340{bottom:74.265000px;}
.y1e_c01340{bottom:99.915000px;}
.y1d_c01340{bottom:125.265000px;}
.y1c_c01340{bottom:148.965000px;}
.y1b_c01340{bottom:173.565000px;}
.y1a_c01340{bottom:198.165000px;}
.y19_c01340{bottom:222.165000px;}
.y18_c01340{bottom:247.365000px;}
.y17_c01340{bottom:272.115000px;}
.y16_c01340{bottom:295.365000px;}
.y15_c01340{bottom:319.665000px;}
.y14_c01340{bottom:344.565000px;}
.y13_c01340{bottom:368.565000px;}
.y12_c01340{bottom:393.315000px;}
.y11_c01340{bottom:417.615000px;}
.y10_c01340{bottom:441.765000px;}
.yf_c01340{bottom:465.765000px;}
.ye_c01340{bottom:489.765000px;}
.yd_c01340{bottom:513.765000px;}
.yc_c01340{bottom:538.065000px;}
.yb_c01340{bottom:563.415000px;}
.ya_c01340{bottom:619.965000px;}
.y9_c01340{bottom:634.515000px;}
.y8_c01340{bottom:659.115000px;}
.y7_c01340{bottom:682.815000px;}
.y6_c01340{bottom:707.715000px;}
.y5_c01340{bottom:731.415000px;}
.y4_c01340{bottom:780.615000px;}
.y3_c01340{bottom:804.015000px;}
.y2_c01340{bottom:850.815000px;}
.y1_c01340{bottom:876.165000px;}
.h8_c01340{height:13.200074px;}
.h9_c01340{height:43.804688px;}
.h4_c01340{height:44.143066px;}
.h5_c01340{height:58.886719px;}
.h3_c01340{height:73.571777px;}
.h7_c01340{height:91.274414px;}
.h2_c01340{height:98.756836px;}
.h6_c01340{height:120.937500px;}
.h1_c01340{height:966.000000px;}
.h0_c01340{height:966.075000px;}
.w1_c01340{width:104.875500px;}
.w0_c01340{width:657.750000px;}
.x0_c01340{left:0.000000px;}
.x14_c01340{left:38.550000px;}
.x16_c01340{left:40.950000px;}
.x15_c01340{left:42.150000px;}
.x13_c01340{left:43.650000px;}
.x12_c01340{left:45.000000px;}
.x11_c01340{left:46.200000px;}
.x10_c01340{left:47.700000px;}
.xf_c01340{left:48.900000px;}
.xe_c01340{left:50.250000px;}
.xd_c01340{left:51.600000px;}
.x6_c01340{left:53.100000px;}
.x5_c01340{left:54.750000px;}
.x1_c01340{left:57.450000px;}
.x4_c01340{left:66.150000px;}
.x7_c01340{left:67.200000px;}
.x2_c01340{left:92.550000px;}
.x8_c01340{left:223.350000px;}
.x9_c01340{left:226.500000px;}
.xc_c01340{left:232.500000px;}
.xa_c01340{left:246.750000px;}
.xb_c01340{left:257.100000px;}
.x3_c01340{left:261.300000px;}
.x17_c01340{left:280.689240px;}
@media print{
.v0_c01340{vertical-align:0.000000pt;}
.ls4_c01340{letter-spacing:-8.000000pt;}
.ls3_c01340{letter-spacing:-5.333333pt;}
.ls2_c01340{letter-spacing:0.000000pt;}
.ls5_c01340{letter-spacing:8.000000pt;}
.ls0_c01340{letter-spacing:10.400000pt;}
.ls1_c01340{letter-spacing:14.757333pt;}
.ws6_c01340{word-spacing:-34.666667pt;}
.ws2_c01340{word-spacing:-16.709333pt;}
.ws3_c01340{word-spacing:-11.333333pt;}
.ws4_c01340{word-spacing:-8.709333pt;}
.ws0_c01340{word-spacing:-8.354667pt;}
.ws1_c01340{word-spacing:-8.000000pt;}
.ws7_c01340{word-spacing:0.000000pt;}
.ws5_c01340{word-spacing:1.165333pt;}
._2d_c01340{margin-left:-37.024000pt;}
._30_c01340{margin-left:-28.357333pt;}
._2a_c01340{margin-left:-23.760000pt;}
._29_c01340{margin-left:-21.008000pt;}
._28_c01340{margin-left:-19.333333pt;}
._21_c01340{margin-left:-18.106667pt;}
._20_c01340{margin-left:-16.640000pt;}
._26_c01340{margin-left:-14.645333pt;}
._27_c01340{margin-left:-13.301333pt;}
._c_c01340{margin-left:-12.133333pt;}
._25_c01340{margin-left:-10.688000pt;}
._19_c01340{margin-left:-9.600000pt;}
._5_c01340{margin-left:-8.245333pt;}
._15_c01340{margin-left:-7.322667pt;}
._16_c01340{margin-left:-6.146667pt;}
._14_c01340{margin-left:-5.224000pt;}
._e_c01340{margin-left:-3.605333pt;}
._1_c01340{margin-left:-2.000000pt;}
._b_c01340{margin-left:-0.936000pt;}
._0_c01340{width:1.666667pt;}
._3_c01340{width:2.578667pt;}
._2_c01340{width:3.938667pt;}
._4_c01340{width:5.346667pt;}
._d_c01340{width:6.354667pt;}
._12_c01340{width:7.840000pt;}
._9_c01340{width:8.917333pt;}
._2b_c01340{width:10.821333pt;}
._8_c01340{width:11.968000pt;}
._2c_c01340{width:12.930667pt;}
._7_c01340{width:13.952000pt;}
._11_c01340{width:15.525333pt;}
._f_c01340{width:17.712000pt;}
._10_c01340{width:20.264000pt;}
._1e_c01340{width:26.261333pt;}
._33_c01340{width:28.922667pt;}
._13_c01340{width:37.093333pt;}
._18_c01340{width:39.242667pt;}
._17_c01340{width:42.293333pt;}
._1a_c01340{width:46.666667pt;}
._1f_c01340{width:49.920000pt;}
._1b_c01340{width:52.477333pt;}
._2e_c01340{width:55.432000pt;}
._24_c01340{width:72.896000pt;}
._2f_c01340{width:85.314667pt;}
._22_c01340{width:106.133333pt;}
._1c_c01340{width:109.080000pt;}
._a_c01340{width:112.269333pt;}
._1d_c01340{width:198.133333pt;}
._32_c01340{width:199.818667pt;}
._31_c01340{width:221.216000pt;}
._35_c01340{width:311.045333pt;}
._34_c01340{width:392.016000pt;}
._23_c01340{width:434.440000pt;}
._6_c01340{width:988.954667pt;}
.fs5_c01340{font-size:34.666667pt;}
.fs3_c01340{font-size:40.000000pt;}
.fs9_c01340{font-size:42.666667pt;}
.fs6_c01340{font-size:50.666667pt;}
.fs4_c01340{font-size:53.333333pt;}
.fs2_c01340{font-size:64.000000pt;}
.fs0_c01340{font-size:66.666667pt;}
.fs1_c01340{font-size:69.333333pt;}
.fs8_c01340{font-size:82.666667pt;}
.fs7_c01340{font-size:106.666667pt;}
.y0_c01340{bottom:0.000000pt;}
.y22_c01340{bottom:2.760000pt;}
.y21_c01340{bottom:6.425219pt;}
.y20_c01340{bottom:45.080000pt;}
.y1f_c01340{bottom:66.013333pt;}
.y1e_c01340{bottom:88.813333pt;}
.y1d_c01340{bottom:111.346667pt;}
.y1c_c01340{bottom:132.413333pt;}
.y1b_c01340{bottom:154.280000pt;}
.y1a_c01340{bottom:176.146667pt;}
.y19_c01340{bottom:197.480000pt;}
.y18_c01340{bottom:219.880000pt;}
.y17_c01340{bottom:241.880000pt;}
.y16_c01340{bottom:262.546667pt;}
.y15_c01340{bottom:284.146667pt;}
.y14_c01340{bottom:306.280000pt;}
.y13_c01340{bottom:327.613333pt;}
.y12_c01340{bottom:349.613333pt;}
.y11_c01340{bottom:371.213333pt;}
.y10_c01340{bottom:392.680000pt;}
.yf_c01340{bottom:414.013333pt;}
.ye_c01340{bottom:435.346667pt;}
.yd_c01340{bottom:456.680000pt;}
.yc_c01340{bottom:478.280000pt;}
.yb_c01340{bottom:500.813333pt;}
.ya_c01340{bottom:551.080000pt;}
.y9_c01340{bottom:564.013333pt;}
.y8_c01340{bottom:585.880000pt;}
.y7_c01340{bottom:606.946667pt;}
.y6_c01340{bottom:629.080000pt;}
.y5_c01340{bottom:650.146667pt;}
.y4_c01340{bottom:693.880000pt;}
.y3_c01340{bottom:714.680000pt;}
.y2_c01340{bottom:756.280000pt;}
.y1_c01340{bottom:778.813333pt;}
.h8_c01340{height:11.733399pt;}
.h9_c01340{height:38.937500pt;}
.h4_c01340{height:39.238281pt;}
.h5_c01340{height:52.343750pt;}
.h3_c01340{height:65.397135pt;}
.h7_c01340{height:81.132812pt;}
.h2_c01340{height:87.783854pt;}
.h6_c01340{height:107.500000pt;}
.h1_c01340{height:858.666667pt;}
.h0_c01340{height:858.733333pt;}
.w1_c01340{width:93.222667pt;}
.w0_c01340{width:584.666667pt;}
.x0_c01340{left:0.000000pt;}
.x14_c01340{left:34.266667pt;}
.x16_c01340{left:36.400000pt;}
.x15_c01340{left:37.466667pt;}
.x13_c01340{left:38.800000pt;}
.x12_c01340{left:40.000000pt;}
.x11_c01340{left:41.066667pt;}
.x10_c01340{left:42.400000pt;}
.xf_c01340{left:43.466667pt;}
.xe_c01340{left:44.666667pt;}
.xd_c01340{left:45.866667pt;}
.x6_c01340{left:47.200000pt;}
.x5_c01340{left:48.666667pt;}
.x1_c01340{left:51.066667pt;}
.x4_c01340{left:58.800000pt;}
.x7_c01340{left:59.733333pt;}
.x2_c01340{left:82.266667pt;}
.x8_c01340{left:198.533333pt;}
.x9_c01340{left:201.333333pt;}
.xc_c01340{left:206.666667pt;}
.xa_c01340{left:219.333333pt;}
.xb_c01340{left:228.533333pt;}
.x3_c01340{left:232.266667pt;}
.x17_c01340{left:249.501546pt;}
}





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

.ir_c01341:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01341{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01341;src:url('chunks/assets/font_cbb815de36beaa0bb20784b5.woff2')format("woff");}.ff1_c01341{font-family:ff1_c01341;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01341;src:url('chunks/assets/font_7ca8e8e072cadd0bf865b8bf.woff2')format("woff");}.ff2_c01341{font-family:ff2_c01341;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01341;src:url('chunks/assets/font_769426c332b9fed4a5a3a0fc.woff2')format("woff");}.ff3_c01341{font-family:ff3_c01341;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01341;src:url('chunks/assets/font_a49901009cb36bb250e9d83c.woff2')format("woff");}.ff4_c01341{font-family:ff4_c01341;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01341;src:url('chunks/assets/font_4f39d052df4e95e6ff2e954d.woff2')format("woff");}.ff5_c01341{font-family:ff5_c01341;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01341;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c01341{font-family:ff6_c01341;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01341{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01341{vertical-align:0.000000px;}
.ls3_c01341{letter-spacing:0.000000px;}
.ls2_c01341{letter-spacing:6.900000px;}
.ls4_c01341{letter-spacing:9.000000px;}
.ls0_c01341{letter-spacing:31.002000px;}
.ls1_c01341{letter-spacing:49.602000px;}
.sc__c01341{text-shadow:none;}
.sc0_c01341{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01341{-webkit-text-stroke:0px transparent;}
.sc0_c01341{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c01341{word-spacing:-20.250000px;}
.ws2_c01341{word-spacing:-19.800000px;}
.ws0_c01341{word-spacing:-17.352000px;}
.ws1_c01341{word-spacing:-13.737000px;}
.ws4_c01341{word-spacing:0.000000px;}
._1b_c01341{margin-left:-22.032000px;}
._f_c01341{margin-left:-18.306000px;}
._18_c01341{margin-left:-12.624000px;}
._16_c01341{margin-left:-9.267000px;}
._c_c01341{margin-left:-7.533000px;}
._1a_c01341{margin-left:-6.399000px;}
._6_c01341{margin-left:-5.346000px;}
._3_c01341{margin-left:-4.050000px;}
._7_c01341{margin-left:-2.673000px;}
._b_c01341{margin-left:-1.215000px;}
._0_c01341{width:1.782000px;}
._4_c01341{width:2.916000px;}
._5_c01341{width:4.536000px;}
._2_c01341{width:5.994000px;}
._1_c01341{width:7.128000px;}
._a_c01341{width:8.667000px;}
._d_c01341{width:10.530000px;}
._9_c01341{width:11.745000px;}
._8_c01341{width:12.879000px;}
._12_c01341{width:15.066000px;}
._13_c01341{width:17.253000px;}
._17_c01341{width:20.199000px;}
._e_c01341{width:22.518000px;}
._14_c01341{width:24.801000px;}
._1c_c01341{width:26.082000px;}
._1d_c01341{width:27.531000px;}
._11_c01341{width:37.194000px;}
._19_c01341{width:91.698000px;}
._10_c01341{width:131.037000px;}
._15_c01341{width:144.480000px;}
._1f_c01341{width:245.916000px;}
._1e_c01341{width:543.465000px;}
.fc2_c01341{color:transparent;}
.fc1_c01341{color:rgb(128,128,128);}
.fc0_c01341{color:rgb(0,0,0);}
.fs5_c01341{font-size:43.200000px;}
.fs6_c01341{font-size:48.000000px;}
.fs4_c01341{font-size:54.000000px;}
.fs1_c01341{font-size:57.000000px;}
.fs3_c01341{font-size:72.000000px;}
.fs2_c01341{font-size:78.000000px;}
.fs0_c01341{font-size:81.000000px;}
.y0_c01341{bottom:0.000000px;}
.y25_c01341{bottom:3.105000px;}
.y24_c01341{bottom:7.228371px;}
.y23_c01341{bottom:63.915000px;}
.y22_c01341{bottom:87.765000px;}
.y21_c01341{bottom:111.465000px;}
.y20_c01341{bottom:136.365000px;}
.y1f_c01341{bottom:159.765000px;}
.y1e_c01341{bottom:185.265000px;}
.y1d_c01341{bottom:210.015000px;}
.y1c_c01341{bottom:234.615000px;}
.y1b_c01341{bottom:259.515000px;}
.y1a_c01341{bottom:283.965000px;}
.y19_c01341{bottom:308.265000px;}
.y18_c01341{bottom:332.865000px;}
.y17_c01341{bottom:358.065000px;}
.y16_c01341{bottom:382.365000px;}
.y15_c01341{bottom:406.665000px;}
.y14_c01341{bottom:431.115000px;}
.y13_c01341{bottom:456.015000px;}
.y12_c01341{bottom:480.615000px;}
.y11_c01341{bottom:504.315000px;}
.y10_c01341{bottom:529.215000px;}
.yf_c01341{bottom:554.265000px;}
.ye_c01341{bottom:577.815000px;}
.yd_c01341{bottom:602.115000px;}
.yc_c01341{bottom:626.415000px;}
.yb_c01341{bottom:650.415000px;}
.ya_c01341{bottom:675.765000px;}
.y9_c01341{bottom:699.765000px;}
.y8_c01341{bottom:723.915000px;}
.y7_c01341{bottom:748.215000px;}
.y6_c01341{bottom:772.515000px;}
.y5_c01341{bottom:796.515000px;}
.y4_c01341{bottom:821.265000px;}
.y3_c01341{bottom:845.565000px;}
.y2_c01341{bottom:870.465000px;}
.y1_c01341{bottom:894.465000px;}
.h7_c01341{height:13.200074px;}
.h8_c01341{height:43.804688px;}
.h6_c01341{height:66.713379px;}
.h5_c01341{height:72.168457px;}
.h2_c01341{height:79.497070px;}
.h4_c01341{height:84.269531px;}
.h3_c01341{height:98.756836px;}
.h1_c01341{height:986.250000px;}
.h0_c01341{height:986.325000px;}
.w2_c01341{width:104.875500px;}
.w0_c01341{width:667.425000px;}
.w1_c01341{width:667.500000px;}
.x0_c01341{left:0.000000px;}
.x4_c01341{left:17.850000px;}
.x8_c01341{left:19.950000px;}
.x6_c01341{left:21.900000px;}
.xe_c01341{left:48.300000px;}
.x5_c01341{left:54.300000px;}
.x1_c01341{left:110.400000px;}
.x2_c01341{left:114.300000px;}
.x3_c01341{left:115.650000px;}
.x7_c01341{left:117.450000px;}
.x9_c01341{left:118.500000px;}
.xa_c01341{left:119.550000px;}
.xc_c01341{left:120.600000px;}
.xd_c01341{left:121.950000px;}
.x10_c01341{left:123.600000px;}
.xf_c01341{left:124.800000px;}
.xb_c01341{left:144.750000px;}
.x12_c01341{left:285.526749px;}
.x11_c01341{left:526.800000px;}
@media print{
.v0_c01341{vertical-align:0.000000pt;}
.ls3_c01341{letter-spacing:0.000000pt;}
.ls2_c01341{letter-spacing:6.133333pt;}
.ls4_c01341{letter-spacing:8.000000pt;}
.ls0_c01341{letter-spacing:27.557333pt;}
.ls1_c01341{letter-spacing:44.090667pt;}
.ws3_c01341{word-spacing:-18.000000pt;}
.ws2_c01341{word-spacing:-17.600000pt;}
.ws0_c01341{word-spacing:-15.424000pt;}
.ws1_c01341{word-spacing:-12.210667pt;}
.ws4_c01341{word-spacing:0.000000pt;}
._1b_c01341{margin-left:-19.584000pt;}
._f_c01341{margin-left:-16.272000pt;}
._18_c01341{margin-left:-11.221333pt;}
._16_c01341{margin-left:-8.237333pt;}
._c_c01341{margin-left:-6.696000pt;}
._1a_c01341{margin-left:-5.688000pt;}
._6_c01341{margin-left:-4.752000pt;}
._3_c01341{margin-left:-3.600000pt;}
._7_c01341{margin-left:-2.376000pt;}
._b_c01341{margin-left:-1.080000pt;}
._0_c01341{width:1.584000pt;}
._4_c01341{width:2.592000pt;}
._5_c01341{width:4.032000pt;}
._2_c01341{width:5.328000pt;}
._1_c01341{width:6.336000pt;}
._a_c01341{width:7.704000pt;}
._d_c01341{width:9.360000pt;}
._9_c01341{width:10.440000pt;}
._8_c01341{width:11.448000pt;}
._12_c01341{width:13.392000pt;}
._13_c01341{width:15.336000pt;}
._17_c01341{width:17.954667pt;}
._e_c01341{width:20.016000pt;}
._14_c01341{width:22.045333pt;}
._1c_c01341{width:23.184000pt;}
._1d_c01341{width:24.472000pt;}
._11_c01341{width:33.061333pt;}
._19_c01341{width:81.509333pt;}
._10_c01341{width:116.477333pt;}
._15_c01341{width:128.426667pt;}
._1f_c01341{width:218.592000pt;}
._1e_c01341{width:483.080000pt;}
.fs5_c01341{font-size:38.400000pt;}
.fs6_c01341{font-size:42.666667pt;}
.fs4_c01341{font-size:48.000000pt;}
.fs1_c01341{font-size:50.666667pt;}
.fs3_c01341{font-size:64.000000pt;}
.fs2_c01341{font-size:69.333333pt;}
.fs0_c01341{font-size:72.000000pt;}
.y0_c01341{bottom:0.000000pt;}
.y25_c01341{bottom:2.760000pt;}
.y24_c01341{bottom:6.425219pt;}
.y23_c01341{bottom:56.813333pt;}
.y22_c01341{bottom:78.013333pt;}
.y21_c01341{bottom:99.080000pt;}
.y20_c01341{bottom:121.213333pt;}
.y1f_c01341{bottom:142.013333pt;}
.y1e_c01341{bottom:164.680000pt;}
.y1d_c01341{bottom:186.680000pt;}
.y1c_c01341{bottom:208.546667pt;}
.y1b_c01341{bottom:230.680000pt;}
.y1a_c01341{bottom:252.413333pt;}
.y19_c01341{bottom:274.013333pt;}
.y18_c01341{bottom:295.880000pt;}
.y17_c01341{bottom:318.280000pt;}
.y16_c01341{bottom:339.880000pt;}
.y15_c01341{bottom:361.480000pt;}
.y14_c01341{bottom:383.213333pt;}
.y13_c01341{bottom:405.346667pt;}
.y12_c01341{bottom:427.213333pt;}
.y11_c01341{bottom:448.280000pt;}
.y10_c01341{bottom:470.413333pt;}
.yf_c01341{bottom:492.680000pt;}
.ye_c01341{bottom:513.613333pt;}
.yd_c01341{bottom:535.213333pt;}
.yc_c01341{bottom:556.813333pt;}
.yb_c01341{bottom:578.146667pt;}
.ya_c01341{bottom:600.680000pt;}
.y9_c01341{bottom:622.013333pt;}
.y8_c01341{bottom:643.480000pt;}
.y7_c01341{bottom:665.080000pt;}
.y6_c01341{bottom:686.680000pt;}
.y5_c01341{bottom:708.013333pt;}
.y4_c01341{bottom:730.013333pt;}
.y3_c01341{bottom:751.613333pt;}
.y2_c01341{bottom:773.746667pt;}
.y1_c01341{bottom:795.080000pt;}
.h7_c01341{height:11.733399pt;}
.h8_c01341{height:38.937500pt;}
.h6_c01341{height:59.300781pt;}
.h5_c01341{height:64.149740pt;}
.h2_c01341{height:70.664062pt;}
.h4_c01341{height:74.906250pt;}
.h3_c01341{height:87.783854pt;}
.h1_c01341{height:876.666667pt;}
.h0_c01341{height:876.733333pt;}
.w2_c01341{width:93.222667pt;}
.w0_c01341{width:593.266667pt;}
.w1_c01341{width:593.333333pt;}
.x0_c01341{left:0.000000pt;}
.x4_c01341{left:15.866667pt;}
.x8_c01341{left:17.733333pt;}
.x6_c01341{left:19.466667pt;}
.xe_c01341{left:42.933333pt;}
.x5_c01341{left:48.266667pt;}
.x1_c01341{left:98.133333pt;}
.x2_c01341{left:101.600000pt;}
.x3_c01341{left:102.800000pt;}
.x7_c01341{left:104.400000pt;}
.x9_c01341{left:105.333333pt;}
.xa_c01341{left:106.266667pt;}
.xc_c01341{left:107.200000pt;}
.xd_c01341{left:108.400000pt;}
.x10_c01341{left:109.866667pt;}
.xf_c01341{left:110.933333pt;}
.xb_c01341{left:128.666667pt;}
.x12_c01341{left:253.801554pt;}
.x11_c01341{left:468.266667pt;}
}





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

.ir_c01342:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01342{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01342;src:url('chunks/assets/font_8c839fd6c45fc46015fd36b9.woff2')format("woff");}.ff1_c01342{font-family:ff1_c01342;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01342;src:url('chunks/assets/font_c3da26b7f4b242465ecf4a9d.woff2')format("woff");}.ff2_c01342{font-family:ff2_c01342;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01342;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff3_c01342{font-family:ff3_c01342;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01342;src:url('chunks/assets/font_dcc80d204f7ccb30dd44763f.woff2')format("woff");}.ff4_c01342{font-family:ff4_c01342;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01342;src:url('chunks/assets/font_69dd216781fa6392b86de70e.woff2')format("woff");}.ff5_c01342{font-family:ff5_c01342;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01342;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c01342{font-family:ff6_c01342;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01342{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01342{vertical-align:0.000000px;}
.ls3_c01342{letter-spacing:-6.000000px;}
.ls2_c01342{letter-spacing:0.000000px;}
.ls0_c01342{letter-spacing:3.000000px;}
.ls1_c01342{letter-spacing:15.600000px;}
.sc__c01342{text-shadow:none;}
.sc0_c01342{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01342{-webkit-text-stroke:0px transparent;}
.sc0_c01342{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01342{word-spacing:-30.696000px;}
.ws1_c01342{word-spacing:-18.750000px;}
.ws0_c01342{word-spacing:-17.352000px;}
.ws3_c01342{word-spacing:0.000000px;}
._23_c01342{margin-left:-27.465000px;}
._20_c01342{margin-left:-21.336000px;}
._1f_c01342{margin-left:-18.972000px;}
._4_c01342{margin-left:-17.424000px;}
._3_c01342{margin-left:-14.751000px;}
._25_c01342{margin-left:-13.338000px;}
._1b_c01342{margin-left:-11.043000px;}
._1e_c01342{margin-left:-9.300000px;}
._14_c01342{margin-left:-7.704000px;}
._13_c01342{margin-left:-6.534000px;}
._12_c01342{margin-left:-5.508000px;}
._9_c01342{margin-left:-4.257000px;}
._8_c01342{margin-left:-3.168000px;}
._7_c01342{margin-left:-1.485000px;}
._6_c01342{width:1.683000px;}
._2_c01342{width:2.970000px;}
._a_c01342{width:4.104000px;}
._1_c01342{width:5.148000px;}
._0_c01342{width:6.930000px;}
._e_c01342{width:8.766000px;}
._10_c01342{width:9.990000px;}
._c_c01342{width:11.916000px;}
._b_c01342{width:13.194000px;}
._11_c01342{width:14.445000px;}
._f_c01342{width:16.758000px;}
._16_c01342{width:24.444000px;}
._d_c01342{width:25.515000px;}
._18_c01342{width:30.906000px;}
._26_c01342{width:34.776000px;}
._5_c01342{width:37.917000px;}
._17_c01342{width:44.007000px;}
._15_c01342{width:49.569000px;}
._21_c01342{width:51.879000px;}
._24_c01342{width:60.633000px;}
._1d_c01342{width:90.138000px;}
._28_c01342{width:117.351000px;}
._1a_c01342{width:166.254000px;}
._22_c01342{width:204.927000px;}
._19_c01342{width:210.993000px;}
._1c_c01342{width:225.252000px;}
._27_c01342{width:306.216000px;}
.fc2_c01342{color:transparent;}
.fc1_c01342{color:rgb(128,128,128);}
.fc0_c01342{color:rgb(0,0,0);}
.fs6_c01342{font-size:48.000000px;}
.fs5_c01342{font-size:66.000000px;}
.fs2_c01342{font-size:72.000000px;}
.fs4_c01342{font-size:75.000000px;}
.fs1_c01342{font-size:81.000000px;}
.fs3_c01342{font-size:84.000000px;}
.fs0_c01342{font-size:99.000000px;}
.y0_c01342{bottom:0.000000px;}
.y26_c01342{bottom:3.105000px;}
.y25_c01342{bottom:7.228369px;}
.y24_c01342{bottom:56.070000px;}
.y23_c01342{bottom:83.970000px;}
.y22_c01342{bottom:109.320000px;}
.y21_c01342{bottom:134.220000px;}
.y20_c01342{bottom:158.520000px;}
.y1f_c01342{bottom:183.570000px;}
.y1e_c01342{bottom:208.170000px;}
.y1d_c01342{bottom:232.170000px;}
.y1c_c01342{bottom:256.770000px;}
.y1b_c01342{bottom:281.820000px;}
.y1a_c01342{bottom:305.670000px;}
.y19_c01342{bottom:330.120000px;}
.y18_c01342{bottom:354.270000px;}
.y17_c01342{bottom:379.920000px;}
.y16_c01342{bottom:403.620000px;}
.y15_c01342{bottom:427.920000px;}
.y14_c01342{bottom:451.620000px;}
.y13_c01342{bottom:475.170000px;}
.y12_c01342{bottom:500.070000px;}
.y11_c01342{bottom:524.370000px;}
.y10_c01342{bottom:548.370000px;}
.yf_c01342{bottom:572.370000px;}
.ye_c01342{bottom:596.070000px;}
.yd_c01342{bottom:620.670000px;}
.yc_c01342{bottom:644.670000px;}
.yb_c01342{bottom:668.970000px;}
.ya_c01342{bottom:693.570000px;}
.y9_c01342{bottom:716.520000px;}
.y8_c01342{bottom:741.420000px;}
.y7_c01342{bottom:765.720000px;}
.y6_c01342{bottom:790.320000px;}
.y5_c01342{bottom:814.320000px;}
.y4_c01342{bottom:838.620000px;}
.y3_c01342{bottom:862.920000px;}
.y2_c01342{bottom:887.670000px;}
.y1_c01342{bottom:922.320000px;}
.h7_c01342{height:13.200073px;}
.h8_c01342{height:43.804688px;}
.h3_c01342{height:79.497070px;}
.h6_c01342{height:82.441406px;}
.h5_c01342{height:84.269531px;}
.h4_c01342{height:91.160156px;}
.h2_c01342{height:115.870605px;}
.h1_c01342{height:986.250000px;}
.h0_c01342{height:986.550000px;}
.w1_c01342{width:104.875500px;}
.w0_c01342{width:672.000000px;}
.x0_c01342{left:0.000000px;}
.x2_c01342{left:40.500000px;}
.x4_c01342{left:41.550000px;}
.x5_c01342{left:42.900000px;}
.x3_c01342{left:44.250000px;}
.x6_c01342{left:69.750000px;}
.x1_c01342{left:111.000000px;}
.x8_c01342{left:287.814240px;}
.x7_c01342{left:520.050000px;}
@media print{
.v0_c01342{vertical-align:0.000000pt;}
.ls3_c01342{letter-spacing:-5.333333pt;}
.ls2_c01342{letter-spacing:0.000000pt;}
.ls0_c01342{letter-spacing:2.666667pt;}
.ls1_c01342{letter-spacing:13.866667pt;}
.ws2_c01342{word-spacing:-27.285333pt;}
.ws1_c01342{word-spacing:-16.666667pt;}
.ws0_c01342{word-spacing:-15.424000pt;}
.ws3_c01342{word-spacing:0.000000pt;}
._23_c01342{margin-left:-24.413333pt;}
._20_c01342{margin-left:-18.965333pt;}
._1f_c01342{margin-left:-16.864000pt;}
._4_c01342{margin-left:-15.488000pt;}
._3_c01342{margin-left:-13.112000pt;}
._25_c01342{margin-left:-11.856000pt;}
._1b_c01342{margin-left:-9.816000pt;}
._1e_c01342{margin-left:-8.266667pt;}
._14_c01342{margin-left:-6.848000pt;}
._13_c01342{margin-left:-5.808000pt;}
._12_c01342{margin-left:-4.896000pt;}
._9_c01342{margin-left:-3.784000pt;}
._8_c01342{margin-left:-2.816000pt;}
._7_c01342{margin-left:-1.320000pt;}
._6_c01342{width:1.496000pt;}
._2_c01342{width:2.640000pt;}
._a_c01342{width:3.648000pt;}
._1_c01342{width:4.576000pt;}
._0_c01342{width:6.160000pt;}
._e_c01342{width:7.792000pt;}
._10_c01342{width:8.880000pt;}
._c_c01342{width:10.592000pt;}
._b_c01342{width:11.728000pt;}
._11_c01342{width:12.840000pt;}
._f_c01342{width:14.896000pt;}
._16_c01342{width:21.728000pt;}
._d_c01342{width:22.680000pt;}
._18_c01342{width:27.472000pt;}
._26_c01342{width:30.912000pt;}
._5_c01342{width:33.704000pt;}
._17_c01342{width:39.117333pt;}
._15_c01342{width:44.061333pt;}
._21_c01342{width:46.114667pt;}
._24_c01342{width:53.896000pt;}
._1d_c01342{width:80.122667pt;}
._28_c01342{width:104.312000pt;}
._1a_c01342{width:147.781333pt;}
._22_c01342{width:182.157333pt;}
._19_c01342{width:187.549333pt;}
._1c_c01342{width:200.224000pt;}
._27_c01342{width:272.192000pt;}
.fs6_c01342{font-size:42.666667pt;}
.fs5_c01342{font-size:58.666667pt;}
.fs2_c01342{font-size:64.000000pt;}
.fs4_c01342{font-size:66.666667pt;}
.fs1_c01342{font-size:72.000000pt;}
.fs3_c01342{font-size:74.666667pt;}
.fs0_c01342{font-size:88.000000pt;}
.y0_c01342{bottom:0.000000pt;}
.y26_c01342{bottom:2.760000pt;}
.y25_c01342{bottom:6.425217pt;}
.y24_c01342{bottom:49.840000pt;}
.y23_c01342{bottom:74.640000pt;}
.y22_c01342{bottom:97.173333pt;}
.y21_c01342{bottom:119.306667pt;}
.y20_c01342{bottom:140.906667pt;}
.y1f_c01342{bottom:163.173333pt;}
.y1e_c01342{bottom:185.040000pt;}
.y1d_c01342{bottom:206.373333pt;}
.y1c_c01342{bottom:228.240000pt;}
.y1b_c01342{bottom:250.506667pt;}
.y1a_c01342{bottom:271.706667pt;}
.y19_c01342{bottom:293.440000pt;}
.y18_c01342{bottom:314.906667pt;}
.y17_c01342{bottom:337.706667pt;}
.y16_c01342{bottom:358.773333pt;}
.y15_c01342{bottom:380.373333pt;}
.y14_c01342{bottom:401.440000pt;}
.y13_c01342{bottom:422.373333pt;}
.y12_c01342{bottom:444.506667pt;}
.y11_c01342{bottom:466.106667pt;}
.y10_c01342{bottom:487.440000pt;}
.yf_c01342{bottom:508.773333pt;}
.ye_c01342{bottom:529.840000pt;}
.yd_c01342{bottom:551.706667pt;}
.yc_c01342{bottom:573.040000pt;}
.yb_c01342{bottom:594.640000pt;}
.ya_c01342{bottom:616.506667pt;}
.y9_c01342{bottom:636.906667pt;}
.y8_c01342{bottom:659.040000pt;}
.y7_c01342{bottom:680.640000pt;}
.y6_c01342{bottom:702.506667pt;}
.y5_c01342{bottom:723.840000pt;}
.y4_c01342{bottom:745.440000pt;}
.y3_c01342{bottom:767.040000pt;}
.y2_c01342{bottom:789.040000pt;}
.y1_c01342{bottom:819.840000pt;}
.h7_c01342{height:11.733399pt;}
.h8_c01342{height:38.937500pt;}
.h3_c01342{height:70.664062pt;}
.h6_c01342{height:73.281250pt;}
.h5_c01342{height:74.906250pt;}
.h4_c01342{height:81.031250pt;}
.h2_c01342{height:102.996094pt;}
.h1_c01342{height:876.666667pt;}
.h0_c01342{height:876.933333pt;}
.w1_c01342{width:93.222667pt;}
.w0_c01342{width:597.333333pt;}
.x0_c01342{left:0.000000pt;}
.x2_c01342{left:36.000000pt;}
.x4_c01342{left:36.933333pt;}
.x5_c01342{left:38.133333pt;}
.x3_c01342{left:39.333333pt;}
.x6_c01342{left:62.000000pt;}
.x1_c01342{left:98.666667pt;}
.x8_c01342{left:255.834880pt;}
.x7_c01342{left:462.266667pt;}
}





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

.ir_c01343:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01343{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01343;src:url('chunks/assets/font_7301ed2b0e27f40f46ea1ff4.woff2')format("woff");}.ff1_c01343{font-family:ff1_c01343;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01343;src:url('chunks/assets/font_6e766b13860040a128742423.woff2')format("woff");}.ff2_c01343{font-family:ff2_c01343;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01343;src:url('chunks/assets/font_9d5bfd9af4a53a3d7229d696.woff2')format("woff");}.ff3_c01343{font-family:ff3_c01343;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01343;src:url('chunks/assets/font_6460735bf441df4f8e065272.woff2')format("woff");}.ff4_c01343{font-family:ff4_c01343;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01343;src:url('chunks/assets/font_545c9231f25f73389926009f.woff2')format("woff");}.ff5_c01343{font-family:ff5_c01343;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01343;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c01343{font-family:ff6_c01343;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01343{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01343{vertical-align:0.000000px;}
.ls3_c01343{letter-spacing:0.000000px;}
.ls4_c01343{letter-spacing:9.000000px;}
.ls1_c01343{letter-spacing:11.400000px;}
.ls2_c01343{letter-spacing:14.400000px;}
.ls0_c01343{letter-spacing:14.490000px;}
.ls5_c01343{letter-spacing:21.000000px;}
.sc__c01343{text-shadow:none;}
.sc0_c01343{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01343{-webkit-text-stroke:0px transparent;}
.sc0_c01343{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01343{word-spacing:-18.000000px;}
.ws0_c01343{word-spacing:-17.352000px;}
.ws3_c01343{word-spacing:0.000000px;}
.ws1_c01343{word-spacing:3.465000px;}
._1c_c01343{margin-left:-41.715000px;}
._11_c01343{margin-left:-27.945000px;}
._24_c01343{margin-left:-25.272000px;}
._1d_c01343{margin-left:-21.054000px;}
._28_c01343{margin-left:-18.468000px;}
._1e_c01343{margin-left:-14.244000px;}
._29_c01343{margin-left:-13.077000px;}
._8_c01343{margin-left:-11.826000px;}
._e_c01343{margin-left:-10.773000px;}
._18_c01343{margin-left:-9.135000px;}
._1b_c01343{margin-left:-7.272000px;}
._9_c01343{margin-left:-6.156000px;}
._13_c01343{margin-left:-4.995000px;}
._a_c01343{margin-left:-3.969000px;}
._2_c01343{margin-left:-2.835000px;}
._6_c01343{margin-left:-1.620000px;}
._d_c01343{width:1.053000px;}
._0_c01343{width:2.106000px;}
._1_c01343{width:3.888000px;}
._4_c01343{width:4.941000px;}
._3_c01343{width:5.994000px;}
._5_c01343{width:7.290000px;}
._c_c01343{width:8.910000px;}
._b_c01343{width:10.773000px;}
._7_c01343{width:12.474000px;}
._10_c01343{width:14.013000px;}
._16_c01343{width:15.876000px;}
._14_c01343{width:17.916000px;}
._1f_c01343{width:19.899000px;}
._15_c01343{width:21.141000px;}
._1a_c01343{width:22.644000px;}
._f_c01343{width:24.057000px;}
._20_c01343{width:26.631000px;}
._26_c01343{width:27.972000px;}
._19_c01343{width:39.441000px;}
._21_c01343{width:41.097000px;}
._17_c01343{width:81.054000px;}
._27_c01343{width:85.779000px;}
._22_c01343{width:86.940000px;}
._25_c01343{width:98.253000px;}
._23_c01343{width:161.424000px;}
._12_c01343{width:362.268000px;}
.fc2_c01343{color:transparent;}
.fc1_c01343{color:rgb(128,128,128);}
.fc0_c01343{color:rgb(0,0,0);}
.fs2_c01343{font-size:45.000000px;}
.fs7_c01343{font-size:48.000000px;}
.fs3_c01343{font-size:54.000000px;}
.fs4_c01343{font-size:60.000000px;}
.fs6_c01343{font-size:66.000000px;}
.fs1_c01343{font-size:72.000000px;}
.fs0_c01343{font-size:81.000000px;}
.fs5_c01343{font-size:96.000000px;}
.y0_c01343{bottom:0.000000px;}
.y22_c01343{bottom:3.105000px;}
.y21_c01343{bottom:7.228371px;}
.y20_c01343{bottom:45.615000px;}
.y1f_c01343{bottom:72.615000px;}
.y1e_c01343{bottom:97.965000px;}
.y1d_c01343{bottom:123.315000px;}
.y1c_c01343{bottom:148.965000px;}
.y1b_c01343{bottom:171.915000px;}
.y1a_c01343{bottom:197.565000px;}
.y19_c01343{bottom:222.165000px;}
.y18_c01343{bottom:247.515000px;}
.y17_c01343{bottom:271.665000px;}
.y16_c01343{bottom:296.115000px;}
.y15_c01343{bottom:320.715000px;}
.y14_c01343{bottom:345.315000px;}
.y13_c01343{bottom:369.615000px;}
.y12_c01343{bottom:393.615000px;}
.y11_c01343{bottom:450.615000px;}
.y10_c01343{bottom:479.565000px;}
.yf_c01343{bottom:538.065000px;}
.ye_c01343{bottom:561.615000px;}
.yd_c01343{bottom:587.265000px;}
.yc_c01343{bottom:611.565000px;}
.yb_c01343{bottom:635.865000px;}
.ya_c01343{bottom:660.465000px;}
.y9_c01343{bottom:684.165000px;}
.y8_c01343{bottom:709.215000px;}
.y7_c01343{bottom:733.365000px;}
.y6_c01343{bottom:757.665000px;}
.y5_c01343{bottom:782.115000px;}
.y4_c01343{bottom:807.015000px;}
.y3_c01343{bottom:830.715000px;}
.y2_c01343{bottom:855.615000px;}
.y1_c01343{bottom:879.915000px;}
.h7_c01343{height:13.200074px;}
.h8_c01343{height:43.804688px;}
.h5_c01343{height:58.857422px;}
.h6_c01343{height:72.562500px;}
.h2_c01343{height:79.497070px;}
.h3_c01343{height:84.269531px;}
.h4_c01343{height:94.171875px;}
.h1_c01343{height:986.250000px;}
.h0_c01343{height:986.325000px;}
.w2_c01343{width:104.875500px;}
.w0_c01343{width:667.425000px;}
.w1_c01343{width:667.500000px;}
.x0_c01343{left:0.000000px;}
.xe_c01343{left:32.400000px;}
.x6_c01343{left:34.500000px;}
.xd_c01343{left:36.450000px;}
.x7_c01343{left:44.100000px;}
.x11_c01343{left:79.350000px;}
.x10_c01343{left:95.400000px;}
.x2_c01343{left:124.950000px;}
.x9_c01343{left:126.900000px;}
.x13_c01343{left:128.250000px;}
.x12_c01343{left:129.300000px;}
.x5_c01343{left:130.350000px;}
.xf_c01343{left:132.300000px;}
.x8_c01343{left:136.950000px;}
.x4_c01343{left:138.450000px;}
.x1_c01343{left:139.650000px;}
.x3_c01343{left:162.450000px;}
.xa_c01343{left:185.550000px;}
.xb_c01343{left:277.050000px;}
.xc_c01343{left:279.000000px;}
.x15_c01343{left:285.526749px;}
.x14_c01343{left:597.750000px;}
@media print{
.v0_c01343{vertical-align:0.000000pt;}
.ls3_c01343{letter-spacing:0.000000pt;}
.ls4_c01343{letter-spacing:8.000000pt;}
.ls1_c01343{letter-spacing:10.133333pt;}
.ls2_c01343{letter-spacing:12.800000pt;}
.ls0_c01343{letter-spacing:12.880000pt;}
.ls5_c01343{letter-spacing:18.666667pt;}
.ws2_c01343{word-spacing:-16.000000pt;}
.ws0_c01343{word-spacing:-15.424000pt;}
.ws3_c01343{word-spacing:0.000000pt;}
.ws1_c01343{word-spacing:3.080000pt;}
._1c_c01343{margin-left:-37.080000pt;}
._11_c01343{margin-left:-24.840000pt;}
._24_c01343{margin-left:-22.464000pt;}
._1d_c01343{margin-left:-18.714667pt;}
._28_c01343{margin-left:-16.416000pt;}
._1e_c01343{margin-left:-12.661333pt;}
._29_c01343{margin-left:-11.624000pt;}
._8_c01343{margin-left:-10.512000pt;}
._e_c01343{margin-left:-9.576000pt;}
._18_c01343{margin-left:-8.120000pt;}
._1b_c01343{margin-left:-6.464000pt;}
._9_c01343{margin-left:-5.472000pt;}
._13_c01343{margin-left:-4.440000pt;}
._a_c01343{margin-left:-3.528000pt;}
._2_c01343{margin-left:-2.520000pt;}
._6_c01343{margin-left:-1.440000pt;}
._d_c01343{width:0.936000pt;}
._0_c01343{width:1.872000pt;}
._1_c01343{width:3.456000pt;}
._4_c01343{width:4.392000pt;}
._3_c01343{width:5.328000pt;}
._5_c01343{width:6.480000pt;}
._c_c01343{width:7.920000pt;}
._b_c01343{width:9.576000pt;}
._7_c01343{width:11.088000pt;}
._10_c01343{width:12.456000pt;}
._16_c01343{width:14.112000pt;}
._14_c01343{width:15.925333pt;}
._1f_c01343{width:17.688000pt;}
._15_c01343{width:18.792000pt;}
._1a_c01343{width:20.128000pt;}
._f_c01343{width:21.384000pt;}
._20_c01343{width:23.672000pt;}
._26_c01343{width:24.864000pt;}
._19_c01343{width:35.058667pt;}
._21_c01343{width:36.530667pt;}
._17_c01343{width:72.048000pt;}
._27_c01343{width:76.248000pt;}
._22_c01343{width:77.280000pt;}
._25_c01343{width:87.336000pt;}
._23_c01343{width:143.488000pt;}
._12_c01343{width:322.016000pt;}
.fs2_c01343{font-size:40.000000pt;}
.fs7_c01343{font-size:42.666667pt;}
.fs3_c01343{font-size:48.000000pt;}
.fs4_c01343{font-size:53.333333pt;}
.fs6_c01343{font-size:58.666667pt;}
.fs1_c01343{font-size:64.000000pt;}
.fs0_c01343{font-size:72.000000pt;}
.fs5_c01343{font-size:85.333333pt;}
.y0_c01343{bottom:0.000000pt;}
.y22_c01343{bottom:2.760000pt;}
.y21_c01343{bottom:6.425219pt;}
.y20_c01343{bottom:40.546667pt;}
.y1f_c01343{bottom:64.546667pt;}
.y1e_c01343{bottom:87.080000pt;}
.y1d_c01343{bottom:109.613333pt;}
.y1c_c01343{bottom:132.413333pt;}
.y1b_c01343{bottom:152.813333pt;}
.y1a_c01343{bottom:175.613333pt;}
.y19_c01343{bottom:197.480000pt;}
.y18_c01343{bottom:220.013333pt;}
.y17_c01343{bottom:241.480000pt;}
.y16_c01343{bottom:263.213333pt;}
.y15_c01343{bottom:285.080000pt;}
.y14_c01343{bottom:306.946667pt;}
.y13_c01343{bottom:328.546667pt;}
.y12_c01343{bottom:349.880000pt;}
.y11_c01343{bottom:400.546667pt;}
.y10_c01343{bottom:426.280000pt;}
.yf_c01343{bottom:478.280000pt;}
.ye_c01343{bottom:499.213333pt;}
.yd_c01343{bottom:522.013333pt;}
.yc_c01343{bottom:543.613333pt;}
.yb_c01343{bottom:565.213333pt;}
.ya_c01343{bottom:587.080000pt;}
.y9_c01343{bottom:608.146667pt;}
.y8_c01343{bottom:630.413333pt;}
.y7_c01343{bottom:651.880000pt;}
.y6_c01343{bottom:673.480000pt;}
.y5_c01343{bottom:695.213333pt;}
.y4_c01343{bottom:717.346667pt;}
.y3_c01343{bottom:738.413333pt;}
.y2_c01343{bottom:760.546667pt;}
.y1_c01343{bottom:782.146667pt;}
.h7_c01343{height:11.733399pt;}
.h8_c01343{height:38.937500pt;}
.h5_c01343{height:52.317708pt;}
.h6_c01343{height:64.500000pt;}
.h2_c01343{height:70.664062pt;}
.h3_c01343{height:74.906250pt;}
.h4_c01343{height:83.708333pt;}
.h1_c01343{height:876.666667pt;}
.h0_c01343{height:876.733333pt;}
.w2_c01343{width:93.222667pt;}
.w0_c01343{width:593.266667pt;}
.w1_c01343{width:593.333333pt;}
.x0_c01343{left:0.000000pt;}
.xe_c01343{left:28.800000pt;}
.x6_c01343{left:30.666667pt;}
.xd_c01343{left:32.400000pt;}
.x7_c01343{left:39.200000pt;}
.x11_c01343{left:70.533333pt;}
.x10_c01343{left:84.800000pt;}
.x2_c01343{left:111.066667pt;}
.x9_c01343{left:112.800000pt;}
.x13_c01343{left:114.000000pt;}
.x12_c01343{left:114.933333pt;}
.x5_c01343{left:115.866667pt;}
.xf_c01343{left:117.600000pt;}
.x8_c01343{left:121.733333pt;}
.x4_c01343{left:123.066667pt;}
.x1_c01343{left:124.133333pt;}
.x3_c01343{left:144.400000pt;}
.xa_c01343{left:164.933333pt;}
.xb_c01343{left:246.266667pt;}
.xc_c01343{left:248.000000pt;}
.x15_c01343{left:253.801554pt;}
.x14_c01343{left:531.333333pt;}
}





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

.ir_c01344:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01344{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01344;src:url('chunks/assets/font_96cc44d92686f7955787f1f1.woff2')format("woff");}.ff1_c01344{font-family:ff1_c01344;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01344;src:url('chunks/assets/font_beeb093fdabbbc18fadf4fae.woff2')format("woff");}.ff2_c01344{font-family:ff2_c01344;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01344;src:url('chunks/assets/font_0e985667a8d46c7813976383.woff2')format("woff");}.ff3_c01344{font-family:ff3_c01344;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01344;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff4_c01344{font-family:ff4_c01344;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01344;src:url('chunks/assets/font_01274ebc20272e00d4ddf6e9.woff2')format("woff");}.ff5_c01344{font-family:ff5_c01344;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01344;src:url('chunks/assets/font_22495f3c686b911a8db5e0f1.woff2')format("woff");}.ff6_c01344{font-family:ff6_c01344;line-height:1.284180;font-style:normal;font-weight: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_c01344;src:url('chunks/assets/font_279894e76f487e49f5d34430.woff2')format("woff");}.ff7_c01344{font-family:ff7_c01344;line-height:1.284180;font-style:normal;font-weight: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_c01344;src:url('chunks/assets/font_f6c4f62be53f3f66b67cf090.woff2')format("woff");}.ff8_c01344{font-family:ff8_c01344;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c01344;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff9_c01344{font-family:ff9_c01344;line-height:1.219238;font-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_c01344{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m0_c01344{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01344{vertical-align:0.000000px;}
.ls3_c01344{letter-spacing:0.000000px;}
.ls0_c01344{letter-spacing:4.176000px;}
.ls4_c01344{letter-spacing:9.000000px;}
.ls2_c01344{letter-spacing:13.200000px;}
.ls1_c01344{letter-spacing:17.064000px;}
.sc__c01344{text-shadow:none;}
.sc0_c01344{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01344{-webkit-text-stroke:0px transparent;}
.sc0_c01344{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c01344{word-spacing:-41.700000px;}
.ws0_c01344{word-spacing:-21.528000px;}
.ws3_c01344{word-spacing:-20.250000px;}
.ws1_c01344{word-spacing:-17.678400px;}
.ws4_c01344{word-spacing:-17.352000px;}
.ws6_c01344{word-spacing:0.000000px;}
.ws2_c01344{word-spacing:2.520000px;}
._15_c01344{margin-left:-28.836000px;}
._1d_c01344{margin-left:-27.833400px;}
._12_c01344{margin-left:-16.362000px;}
._b_c01344{margin-left:-14.553000px;}
._a_c01344{margin-left:-11.781000px;}
._c_c01344{margin-left:-10.098000px;}
._1e_c01344{margin-left:-8.988000px;}
._3_c01344{margin-left:-7.920000px;}
._8_c01344{margin-left:-6.138000px;}
._9_c01344{margin-left:-4.851000px;}
._7_c01344{margin-left:-3.663000px;}
._d_c01344{margin-left:-2.475000px;}
._6_c01344{margin-left:-1.287000px;}
._10_c01344{width:1.494000px;}
._4_c01344{width:2.970000px;}
._e_c01344{width:4.536000px;}
._2_c01344{width:5.940000px;}
._f_c01344{width:7.047000px;}
._5_c01344{width:9.009000px;}
._1_c01344{width:10.890000px;}
._19_c01344{width:12.222000px;}
._11_c01344{width:13.641000px;}
._0_c01344{width:14.751000px;}
._13_c01344{width:15.755400px;}
._17_c01344{width:16.830600px;}
._1f_c01344{width:19.701000px;}
._20_c01344{width:22.895400px;}
._18_c01344{width:25.113600px;}
._1b_c01344{width:33.624000px;}
._1a_c01344{width:36.459000px;}
._16_c01344{width:53.298000px;}
._14_c01344{width:63.828000px;}
._21_c01344{width:78.399000px;}
._22_c01344{width:97.986000px;}
._1c_c01344{width:139.896000px;}
.fc2_c01344{color:transparent;}
.fc1_c01344{color:rgb(128,128,128);}
.fc0_c01344{color:rgb(0,0,0);}
.fs8_c01344{font-size:48.000000px;}
.fs7_c01344{font-size:69.000000px;}
.fs3_c01344{font-size:69.600000px;}
.fs2_c01344{font-size:72.000000px;}
.fs5_c01344{font-size:75.000000px;}
.fs1_c01344{font-size:81.000000px;}
.fs6_c01344{font-size:84.000000px;}
.fs4_c01344{font-size:87.000000px;}
.fs0_c01344{font-size:99.000000px;}
.y0_c01344{bottom:0.000000px;}
.y25_c01344{bottom:3.105000px;}
.y24_c01344{bottom:7.228369px;}
.y23_c01344{bottom:44.520000px;}
.y22_c01344{bottom:71.820000px;}
.y21_c01344{bottom:96.420000px;}
.y20_c01344{bottom:120.870000px;}
.y1f_c01344{bottom:170.820000px;}
.y1e_c01344{bottom:197.670000px;}
.y1d_c01344{bottom:218.070000px;}
.y1c_c01344{bottom:244.320000px;}
.y1b_c01344{bottom:268.320000px;}
.y1a_c01344{bottom:290.820000px;}
.y19_c01344{bottom:315.270000px;}
.y18_c01344{bottom:341.520000px;}
.y17_c01344{bottom:366.120000px;}
.y16_c01344{bottom:390.720000px;}
.y15_c01344{bottom:415.170000px;}
.y14_c01344{bottom:439.320000px;}
.y13_c01344{bottom:463.620000px;}
.y12_c01344{bottom:487.920000px;}
.y11_c01344{bottom:512.220000px;}
.y10_c01344{bottom:535.620000px;}
.yf_c01344{bottom:560.220000px;}
.ye_c01344{bottom:584.220000px;}
.yd_c01344{bottom:608.070000px;}
.yc_c01344{bottom:632.370000px;}
.yb_c01344{bottom:656.820000px;}
.ya_c01344{bottom:680.670000px;}
.y9_c01344{bottom:704.970000px;}
.y8_c01344{bottom:729.270000px;}
.y7_c01344{bottom:753.570000px;}
.y6_c01344{bottom:778.170000px;}
.y5_c01344{bottom:801.870000px;}
.y4_c01344{bottom:826.920000px;}
.y3_c01344{bottom:850.770000px;}
.y2_c01344{bottom:875.070000px;}
.y1_c01344{bottom:911.220000px;}
.hb_c01344{height:13.200073px;}
.hc_c01344{height:43.804688px;}
.h7_c01344{height:73.571777px;}
.h3_c01344{height:79.497070px;}
.h4_c01344{height:84.269531px;}
.ha_c01344{height:84.656250px;}
.h9_c01344{height:87.361816px;}
.h8_c01344{height:87.679688px;}
.h6_c01344{height:91.160156px;}
.h5_c01344{height:110.151855px;}
.h2_c01344{height:115.870605px;}
.h1_c01344{height:986.250000px;}
.h0_c01344{height:986.550000px;}
.w1_c01344{width:104.875500px;}
.w0_c01344{width:672.000000px;}
.x0_c01344{left:0.000000px;}
.xa_c01344{left:27.750000px;}
.x6_c01344{left:34.350000px;}
.x2_c01344{left:56.700000px;}
.x3_c01344{left:58.500000px;}
.x4_c01344{left:60.450000px;}
.x5_c01344{left:62.400000px;}
.x7_c01344{left:63.900000px;}
.x9_c01344{left:66.600000px;}
.x1_c01344{left:71.550000px;}
.x8_c01344{left:156.900000px;}
.xe_c01344{left:287.814240px;}
.xd_c01344{left:477.900000px;}
.xb_c01344{left:609.900000px;}
.xc_c01344{left:621.000000px;}
@media print{
.v0_c01344{vertical-align:0.000000pt;}
.ls3_c01344{letter-spacing:0.000000pt;}
.ls0_c01344{letter-spacing:3.712000pt;}
.ls4_c01344{letter-spacing:8.000000pt;}
.ls2_c01344{letter-spacing:11.733333pt;}
.ls1_c01344{letter-spacing:15.168000pt;}
.ws5_c01344{word-spacing:-37.066667pt;}
.ws0_c01344{word-spacing:-19.136000pt;}
.ws3_c01344{word-spacing:-18.000000pt;}
.ws1_c01344{word-spacing:-15.714133pt;}
.ws4_c01344{word-spacing:-15.424000pt;}
.ws6_c01344{word-spacing:0.000000pt;}
.ws2_c01344{word-spacing:2.240000pt;}
._15_c01344{margin-left:-25.632000pt;}
._1d_c01344{margin-left:-24.740800pt;}
._12_c01344{margin-left:-14.544000pt;}
._b_c01344{margin-left:-12.936000pt;}
._a_c01344{margin-left:-10.472000pt;}
._c_c01344{margin-left:-8.976000pt;}
._1e_c01344{margin-left:-7.989333pt;}
._3_c01344{margin-left:-7.040000pt;}
._8_c01344{margin-left:-5.456000pt;}
._9_c01344{margin-left:-4.312000pt;}
._7_c01344{margin-left:-3.256000pt;}
._d_c01344{margin-left:-2.200000pt;}
._6_c01344{margin-left:-1.144000pt;}
._10_c01344{width:1.328000pt;}
._4_c01344{width:2.640000pt;}
._e_c01344{width:4.032000pt;}
._2_c01344{width:5.280000pt;}
._f_c01344{width:6.264000pt;}
._5_c01344{width:8.008000pt;}
._1_c01344{width:9.680000pt;}
._19_c01344{width:10.864000pt;}
._11_c01344{width:12.125333pt;}
._0_c01344{width:13.112000pt;}
._13_c01344{width:14.004800pt;}
._17_c01344{width:14.960533pt;}
._1f_c01344{width:17.512000pt;}
._20_c01344{width:20.351467pt;}
._18_c01344{width:22.323200pt;}
._1b_c01344{width:29.888000pt;}
._1a_c01344{width:32.408000pt;}
._16_c01344{width:47.376000pt;}
._14_c01344{width:56.736000pt;}
._21_c01344{width:69.688000pt;}
._22_c01344{width:87.098667pt;}
._1c_c01344{width:124.352000pt;}
.fs8_c01344{font-size:42.666667pt;}
.fs7_c01344{font-size:61.333333pt;}
.fs3_c01344{font-size:61.866667pt;}
.fs2_c01344{font-size:64.000000pt;}
.fs5_c01344{font-size:66.666667pt;}
.fs1_c01344{font-size:72.000000pt;}
.fs6_c01344{font-size:74.666667pt;}
.fs4_c01344{font-size:77.333333pt;}
.fs0_c01344{font-size:88.000000pt;}
.y0_c01344{bottom:0.000000pt;}
.y25_c01344{bottom:2.760000pt;}
.y24_c01344{bottom:6.425217pt;}
.y23_c01344{bottom:39.573333pt;}
.y22_c01344{bottom:63.840000pt;}
.y21_c01344{bottom:85.706667pt;}
.y20_c01344{bottom:107.440000pt;}
.y1f_c01344{bottom:151.840000pt;}
.y1e_c01344{bottom:175.706667pt;}
.y1d_c01344{bottom:193.840000pt;}
.y1c_c01344{bottom:217.173333pt;}
.y1b_c01344{bottom:238.506667pt;}
.y1a_c01344{bottom:258.506667pt;}
.y19_c01344{bottom:280.240000pt;}
.y18_c01344{bottom:303.573333pt;}
.y17_c01344{bottom:325.440000pt;}
.y16_c01344{bottom:347.306667pt;}
.y15_c01344{bottom:369.040000pt;}
.y14_c01344{bottom:390.506667pt;}
.y13_c01344{bottom:412.106667pt;}
.y12_c01344{bottom:433.706667pt;}
.y11_c01344{bottom:455.306667pt;}
.y10_c01344{bottom:476.106667pt;}
.yf_c01344{bottom:497.973333pt;}
.ye_c01344{bottom:519.306667pt;}
.yd_c01344{bottom:540.506667pt;}
.yc_c01344{bottom:562.106667pt;}
.yb_c01344{bottom:583.840000pt;}
.ya_c01344{bottom:605.040000pt;}
.y9_c01344{bottom:626.640000pt;}
.y8_c01344{bottom:648.240000pt;}
.y7_c01344{bottom:669.840000pt;}
.y6_c01344{bottom:691.706667pt;}
.y5_c01344{bottom:712.773333pt;}
.y4_c01344{bottom:735.040000pt;}
.y3_c01344{bottom:756.240000pt;}
.y2_c01344{bottom:777.840000pt;}
.y1_c01344{bottom:809.973333pt;}
.hb_c01344{height:11.733399pt;}
.hc_c01344{height:38.937500pt;}
.h7_c01344{height:65.397135pt;}
.h3_c01344{height:70.664062pt;}
.h4_c01344{height:74.906250pt;}
.ha_c01344{height:75.250000pt;}
.h9_c01344{height:77.654948pt;}
.h8_c01344{height:77.937500pt;}
.h6_c01344{height:81.031250pt;}
.h5_c01344{height:97.912760pt;}
.h2_c01344{height:102.996094pt;}
.h1_c01344{height:876.666667pt;}
.h0_c01344{height:876.933333pt;}
.w1_c01344{width:93.222667pt;}
.w0_c01344{width:597.333333pt;}
.x0_c01344{left:0.000000pt;}
.xa_c01344{left:24.666667pt;}
.x6_c01344{left:30.533333pt;}
.x2_c01344{left:50.400000pt;}
.x3_c01344{left:52.000000pt;}
.x4_c01344{left:53.733333pt;}
.x5_c01344{left:55.466667pt;}
.x7_c01344{left:56.800000pt;}
.x9_c01344{left:59.200000pt;}
.x1_c01344{left:63.600000pt;}
.x8_c01344{left:139.466667pt;}
.xe_c01344{left:255.834880pt;}
.xd_c01344{left:424.800000pt;}
.xb_c01344{left:542.133333pt;}
.xc_c01344{left:552.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_c01345 {
    display:none;
  }
  .loading-indicator_c01345.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01345 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01345 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01345" -> "#page-container .classname_c01345")
 */
.pf_c01345 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01345 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01345.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01345 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01345 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01345 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01345 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01345 {overflow:visible;}
  }
}
.c_c01345 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01345 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01345:after { /* webkit #35443 */
  content: '';
}
.t_c01345:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01345 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01345 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01345 { /* info for Javascript */
  display:none;
}
.l_c01345 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01345 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01345 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01345:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01345{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01345;src:url('chunks/assets/font_d8757853ba65dc4fd2bbd886.woff2')format("woff");}.ff1_c01345{font-family:ff1_c01345;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01345;src:url('chunks/assets/font_d9898f3aa4e092a54e94cb1b.woff2')format("woff");}.ff2_c01345{font-family:ff2_c01345;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01345;src:url('chunks/assets/font_0e1779ac237c3bf6833a6ff6.woff2')format("woff");}.ff3_c01345{font-family:ff3_c01345;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01345;src:url('chunks/assets/font_d2254afad9cfe45a28c0d97b.woff2')format("woff");}.ff4_c01345{font-family:ff4_c01345;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01345;src:url('chunks/assets/font_929306c7f4cdbc238cb94811.woff2')format("woff");}.ff5_c01345{font-family:ff5_c01345;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01345;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff6_c01345{font-family:ff6_c01345;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01345;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c01345{font-family:ff7_c01345;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01345{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01345{vertical-align:0.000000px;}
.ls1_c01345{letter-spacing:0.000000px;}
.ls0_c01345{letter-spacing:6.000000px;}
.sc__c01345{text-shadow:none;}
.sc0_c01345{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01345{-webkit-text-stroke:0px transparent;}
.sc0_c01345{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01345{word-spacing:-73.686000px;}
.ws3_c01345{word-spacing:-21.000000px;}
.ws2_c01345{word-spacing:-20.250000px;}
.ws0_c01345{word-spacing:-17.352000px;}
.ws4_c01345{word-spacing:0.000000px;}
._19_c01345{margin-left:-28.101000px;}
._27_c01345{margin-left:-26.382000px;}
._26_c01345{margin-left:-23.958000px;}
._23_c01345{margin-left:-19.953000px;}
._17_c01345{margin-left:-18.711000px;}
._25_c01345{margin-left:-16.371000px;}
._28_c01345{margin-left:-14.871000px;}
._24_c01345{margin-left:-10.809000px;}
._10_c01345{margin-left:-9.450000px;}
._8_c01345{margin-left:-8.181000px;}
._3_c01345{margin-left:-6.423000px;}
._5_c01345{margin-left:-5.184000px;}
._7_c01345{margin-left:-3.645000px;}
._4_c01345{margin-left:-2.304000px;}
._a_c01345{margin-left:-1.143000px;}
._6_c01345{width:1.539000px;}
._1_c01345{width:2.673000px;}
._c_c01345{width:3.762000px;}
._0_c01345{width:4.779000px;}
._2_c01345{width:5.832000px;}
._b_c01345{width:7.128000px;}
._16_c01345{width:8.181000px;}
._e_c01345{width:9.342000px;}
._9_c01345{width:10.530000px;}
._12_c01345{width:11.592000px;}
._d_c01345{width:13.203000px;}
._f_c01345{width:14.337000px;}
._1d_c01345{width:15.732000px;}
._14_c01345{width:17.577000px;}
._15_c01345{width:23.715000px;}
._1a_c01345{width:27.000000px;}
._13_c01345{width:28.548000px;}
._1b_c01345{width:31.131000px;}
._1f_c01345{width:34.746000px;}
._21_c01345{width:43.011000px;}
._29_c01345{width:45.603000px;}
._18_c01345{width:70.191000px;}
._1e_c01345{width:74.223000px;}
._1c_c01345{width:89.832000px;}
._11_c01345{width:96.426000px;}
._20_c01345{width:108.135000px;}
._22_c01345{width:189.135000px;}
.fc2_c01345{color:transparent;}
.fc1_c01345{color:rgb(128,128,128);}
.fc0_c01345{color:rgb(0,0,0);}
.fs4_c01345{font-size:48.000000px;}
.fs2_c01345{font-size:72.000000px;}
.fs0_c01345{font-size:81.000000px;}
.fs1_c01345{font-size:84.000000px;}
.fs3_c01345{font-size:87.000000px;}
.y0_c01345{bottom:0.000000px;}
.y26_c01345{bottom:3.105000px;}
.y25_c01345{bottom:7.228369px;}
.y24_c01345{bottom:24.570000px;}
.y23_c01345{bottom:47.820000px;}
.y22_c01345{bottom:73.620000px;}
.y21_c01345{bottom:99.270000px;}
.y20_c01345{bottom:123.870000px;}
.y1f_c01345{bottom:148.470000px;}
.y1e_c01345{bottom:173.520000px;}
.y1d_c01345{bottom:197.820000px;}
.y1c_c01345{bottom:223.020000px;}
.y1b_c01345{bottom:247.770000px;}
.y1a_c01345{bottom:272.370000px;}
.y19_c01345{bottom:296.670000px;}
.y18_c01345{bottom:321.270000px;}
.y17_c01345{bottom:346.620000px;}
.y16_c01345{bottom:370.620000px;}
.y15_c01345{bottom:395.220000px;}
.y14_c01345{bottom:419.820000px;}
.y13_c01345{bottom:443.520000px;}
.y12_c01345{bottom:468.120000px;}
.y11_c01345{bottom:493.320000px;}
.y10_c01345{bottom:517.620000px;}
.yf_c01345{bottom:542.070000px;}
.ye_c01345{bottom:566.220000px;}
.yd_c01345{bottom:590.670000px;}
.yc_c01345{bottom:614.970000px;}
.yb_c01345{bottom:639.570000px;}
.ya_c01345{bottom:663.870000px;}
.y9_c01345{bottom:688.470000px;}
.y8_c01345{bottom:713.070000px;}
.y7_c01345{bottom:736.320000px;}
.y6_c01345{bottom:760.320000px;}
.y5_c01345{bottom:785.970000px;}
.y4_c01345{bottom:810.270000px;}
.y3_c01345{bottom:834.870000px;}
.y2_c01345{bottom:859.170000px;}
.y1_c01345{bottom:882.870000px;}
.h7_c01345{height:13.200073px;}
.h8_c01345{height:43.804688px;}
.h3_c01345{height:79.497070px;}
.h4_c01345{height:84.269531px;}
.h2_c01345{height:84.656250px;}
.h6_c01345{height:91.160156px;}
.h5_c01345{height:91.176000px;}
.h1_c01345{height:967.500000px;}
.h0_c01345{height:967.650000px;}
.w2_c01345{width:104.875500px;}
.w1_c01345{width:654.750000px;}
.w0_c01345{width:655.050000px;}
.x0_c01345{left:0.000000px;}
.xa_c01345{left:19.500000px;}
.x6_c01345{left:20.850000px;}
.x9_c01345{left:22.200000px;}
.x2_c01345{left:24.000000px;}
.x3_c01345{left:51.600000px;}
.xc_c01345{left:103.200000px;}
.x8_c01345{left:105.600000px;}
.x5_c01345{left:106.950000px;}
.x7_c01345{left:108.600000px;}
.x4_c01345{left:110.100000px;}
.x1_c01345{left:112.050000px;}
.xe_c01345{left:279.339249px;}
.xb_c01345{left:508.650000px;}
.xd_c01345{left:554.550000px;}
@media print{
.v0_c01345{vertical-align:0.000000pt;}
.ls1_c01345{letter-spacing:0.000000pt;}
.ls0_c01345{letter-spacing:5.333333pt;}
.ws1_c01345{word-spacing:-65.498667pt;}
.ws3_c01345{word-spacing:-18.666667pt;}
.ws2_c01345{word-spacing:-18.000000pt;}
.ws0_c01345{word-spacing:-15.424000pt;}
.ws4_c01345{word-spacing:0.000000pt;}
._19_c01345{margin-left:-24.978667pt;}
._27_c01345{margin-left:-23.450667pt;}
._26_c01345{margin-left:-21.296000pt;}
._23_c01345{margin-left:-17.736000pt;}
._17_c01345{margin-left:-16.632000pt;}
._25_c01345{margin-left:-14.552000pt;}
._28_c01345{margin-left:-13.218667pt;}
._24_c01345{margin-left:-9.608000pt;}
._10_c01345{margin-left:-8.400000pt;}
._8_c01345{margin-left:-7.272000pt;}
._3_c01345{margin-left:-5.709333pt;}
._5_c01345{margin-left:-4.608000pt;}
._7_c01345{margin-left:-3.240000pt;}
._4_c01345{margin-left:-2.048000pt;}
._a_c01345{margin-left:-1.016000pt;}
._6_c01345{width:1.368000pt;}
._1_c01345{width:2.376000pt;}
._c_c01345{width:3.344000pt;}
._0_c01345{width:4.248000pt;}
._2_c01345{width:5.184000pt;}
._b_c01345{width:6.336000pt;}
._16_c01345{width:7.272000pt;}
._e_c01345{width:8.304000pt;}
._9_c01345{width:9.360000pt;}
._12_c01345{width:10.304000pt;}
._d_c01345{width:11.736000pt;}
._f_c01345{width:12.744000pt;}
._1d_c01345{width:13.984000pt;}
._14_c01345{width:15.624000pt;}
._15_c01345{width:21.080000pt;}
._1a_c01345{width:24.000000pt;}
._13_c01345{width:25.376000pt;}
._1b_c01345{width:27.672000pt;}
._1f_c01345{width:30.885333pt;}
._21_c01345{width:38.232000pt;}
._29_c01345{width:40.536000pt;}
._18_c01345{width:62.392000pt;}
._1e_c01345{width:65.976000pt;}
._1c_c01345{width:79.850667pt;}
._11_c01345{width:85.712000pt;}
._20_c01345{width:96.120000pt;}
._22_c01345{width:168.120000pt;}
.fs4_c01345{font-size:42.666667pt;}
.fs2_c01345{font-size:64.000000pt;}
.fs0_c01345{font-size:72.000000pt;}
.fs1_c01345{font-size:74.666667pt;}
.fs3_c01345{font-size:77.333333pt;}
.y0_c01345{bottom:0.000000pt;}
.y26_c01345{bottom:2.760000pt;}
.y25_c01345{bottom:6.425217pt;}
.y24_c01345{bottom:21.840000pt;}
.y23_c01345{bottom:42.506667pt;}
.y22_c01345{bottom:65.440000pt;}
.y21_c01345{bottom:88.240000pt;}
.y20_c01345{bottom:110.106667pt;}
.y1f_c01345{bottom:131.973333pt;}
.y1e_c01345{bottom:154.240000pt;}
.y1d_c01345{bottom:175.840000pt;}
.y1c_c01345{bottom:198.240000pt;}
.y1b_c01345{bottom:220.240000pt;}
.y1a_c01345{bottom:242.106667pt;}
.y19_c01345{bottom:263.706667pt;}
.y18_c01345{bottom:285.573333pt;}
.y17_c01345{bottom:308.106667pt;}
.y16_c01345{bottom:329.440000pt;}
.y15_c01345{bottom:351.306667pt;}
.y14_c01345{bottom:373.173333pt;}
.y13_c01345{bottom:394.240000pt;}
.y12_c01345{bottom:416.106667pt;}
.y11_c01345{bottom:438.506667pt;}
.y10_c01345{bottom:460.106667pt;}
.yf_c01345{bottom:481.840000pt;}
.ye_c01345{bottom:503.306667pt;}
.yd_c01345{bottom:525.040000pt;}
.yc_c01345{bottom:546.640000pt;}
.yb_c01345{bottom:568.506667pt;}
.ya_c01345{bottom:590.106667pt;}
.y9_c01345{bottom:611.973333pt;}
.y8_c01345{bottom:633.840000pt;}
.y7_c01345{bottom:654.506667pt;}
.y6_c01345{bottom:675.840000pt;}
.y5_c01345{bottom:698.640000pt;}
.y4_c01345{bottom:720.240000pt;}
.y3_c01345{bottom:742.106667pt;}
.y2_c01345{bottom:763.706667pt;}
.y1_c01345{bottom:784.773333pt;}
.h7_c01345{height:11.733399pt;}
.h8_c01345{height:38.937500pt;}
.h3_c01345{height:70.664062pt;}
.h4_c01345{height:74.906250pt;}
.h2_c01345{height:75.250000pt;}
.h6_c01345{height:81.031250pt;}
.h5_c01345{height:81.045333pt;}
.h1_c01345{height:860.000000pt;}
.h0_c01345{height:860.133333pt;}
.w2_c01345{width:93.222667pt;}
.w1_c01345{width:582.000000pt;}
.w0_c01345{width:582.266667pt;}
.x0_c01345{left:0.000000pt;}
.xa_c01345{left:17.333333pt;}
.x6_c01345{left:18.533333pt;}
.x9_c01345{left:19.733333pt;}
.x2_c01345{left:21.333333pt;}
.x3_c01345{left:45.866667pt;}
.xc_c01345{left:91.733333pt;}
.x8_c01345{left:93.866667pt;}
.x5_c01345{left:95.066667pt;}
.x7_c01345{left:96.533333pt;}
.x4_c01345{left:97.866667pt;}
.x1_c01345{left:99.600000pt;}
.xe_c01345{left:248.301554pt;}
.xb_c01345{left:452.133333pt;}
.xd_c01345{left:492.933333pt;}
}





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

.ir_c01346:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01346{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01346;src:url('chunks/assets/font_a56dcff47c1f5e8941af76d5.woff2')format("woff");}.ff1_c01346{font-family:ff1_c01346;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01346;src:url('chunks/assets/font_7483e32eacd08bb66542c8b4.woff2')format("woff");}.ff2_c01346{font-family:ff2_c01346;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01346;src:url('chunks/assets/font_dc0611579a629bc28c487caa.woff2')format("woff");}.ff3_c01346{font-family:ff3_c01346;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01346;src:url('chunks/assets/font_44b35451f6536e507c33a8bb.woff2')format("woff");}.ff4_c01346{font-family:ff4_c01346;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01346;src:url('chunks/assets/font_3135f3e20d06631def3f165b.woff2')format("woff");}.ff5_c01346{font-family:ff5_c01346;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01346;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff6_c01346{font-family:ff6_c01346;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01346;src:url('chunks/assets/font_58651899110e3ea9046c2921.woff2')format("woff");}.ff7_c01346{font-family:ff7_c01346;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c01346;src:url('chunks/assets/font_684c3edbdc62bf084a037cbc.woff2')format("woff");}.ff8_c01346{font-family:ff8_c01346;line-height:1.284180;font-style:normal;font-weight: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_c01346;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff9_c01346{font-family:ff9_c01346;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01346{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01346{vertical-align:0.000000px;}
.v1_c01346{vertical-align:17.400000px;}
.ls3_c01346{letter-spacing:0.000000px;}
.ls0_c01346{letter-spacing:2.400000px;}
.ls1_c01346{letter-spacing:6.000000px;}
.ls4_c01346{letter-spacing:9.000000px;}
.ls2_c01346{letter-spacing:10.050000px;}
.sc__c01346{text-shadow:none;}
.sc0_c01346{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01346{-webkit-text-stroke:0px transparent;}
.sc0_c01346{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01346{word-spacing:-73.686000px;}
.ws6_c01346{word-spacing:-54.150000px;}
.ws7_c01346{word-spacing:-43.320000px;}
.ws1_c01346{word-spacing:-41.700000px;}
.ws8_c01346{word-spacing:-27.750000px;}
.ws3_c01346{word-spacing:-22.500000px;}
.ws4_c01346{word-spacing:-20.250000px;}
.ws2_c01346{word-spacing:-17.352000px;}
.ws5_c01346{word-spacing:-0.084000px;}
.ws9_c01346{word-spacing:0.000000px;}
._37_c01346{margin-left:-39.315000px;}
._33_c01346{margin-left:-34.941000px;}
._2c_c01346{margin-left:-32.496000px;}
._22_c01346{margin-left:-29.646000px;}
._20_c01346{margin-left:-27.597000px;}
._1d_c01346{margin-left:-26.016000px;}
._f_c01346{margin-left:-24.081000px;}
._1e_c01346{margin-left:-21.900000px;}
._6_c01346{margin-left:-20.580000px;}
._1a_c01346{margin-left:-18.873000px;}
._b_c01346{margin-left:-15.471000px;}
._d_c01346{margin-left:-14.388000px;}
._e_c01346{margin-left:-13.365000px;}
._1b_c01346{margin-left:-11.316000px;}
._10_c01346{margin-left:-9.927000px;}
._12_c01346{margin-left:-7.938000px;}
._4_c01346{margin-left:-6.720000px;}
._7_c01346{margin-left:-4.620000px;}
._8_c01346{margin-left:-3.045000px;}
._5_c01346{margin-left:-1.470000px;}
._a_c01346{width:1.155000px;}
._c_c01346{width:2.481000px;}
._2_c01346{width:3.675000px;}
._11_c01346{width:4.710000px;}
._9_c01346{width:5.775000px;}
._3_c01346{width:6.825000px;}
._1_c01346{width:7.875000px;}
._17_c01346{width:9.372000px;}
._26_c01346{width:10.440000px;}
._0_c01346{width:11.445000px;}
._14_c01346{width:12.945000px;}
._16_c01346{width:14.985000px;}
._35_c01346{width:16.605000px;}
._18_c01346{width:18.039000px;}
._38_c01346{width:23.406000px;}
._29_c01346{width:31.038000px;}
._25_c01346{width:34.683000px;}
._32_c01346{width:44.064000px;}
._2f_c01346{width:48.351000px;}
._1f_c01346{width:59.367000px;}
._2d_c01346{width:66.177000px;}
._1c_c01346{width:81.567000px;}
._28_c01346{width:96.621000px;}
._21_c01346{width:108.294000px;}
._13_c01346{width:113.649000px;}
._24_c01346{width:147.879000px;}
._2a_c01346{width:151.071000px;}
._27_c01346{width:163.107000px;}
._34_c01346{width:171.378000px;}
._31_c01346{width:175.035000px;}
._15_c01346{width:194.760000px;}
._2e_c01346{width:220.197000px;}
._30_c01346{width:226.020000px;}
._19_c01346{width:286.788000px;}
._2b_c01346{width:324.387000px;}
._23_c01346{width:332.700000px;}
._36_c01346{width:341.277000px;}
.fc2_c01346{color:transparent;}
.fc1_c01346{color:rgb(128,128,128);}
.fc0_c01346{color:rgb(0,0,0);}
.fs8_c01346{font-size:48.000000px;}
.fs7_c01346{font-size:60.000000px;}
.fs5_c01346{font-size:66.000000px;}
.fs2_c01346{font-size:72.000000px;}
.fs4_c01346{font-size:75.000000px;}
.fs1_c01346{font-size:81.000000px;}
.fs6_c01346{font-size:84.000000px;}
.fs3_c01346{font-size:87.000000px;}
.fs0_c01346{font-size:105.000000px;}
.y0_c01346{bottom:0.000000px;}
.y26_c01346{bottom:3.105000px;}
.y25_c01346{bottom:7.228355px;}
.y24_c01346{bottom:55.335000px;}
.y23_c01346{bottom:80.085000px;}
.y22_c01346{bottom:104.835000px;}
.y21_c01346{bottom:129.585000px;}
.y20_c01346{bottom:153.885000px;}
.y1f_c01346{bottom:178.785000px;}
.y1e_c01346{bottom:203.535000px;}
.y1d_c01346{bottom:228.135000px;}
.y1c_c01346{bottom:247.335000px;}
.y1b_c01346{bottom:278.385000px;}
.y1a_c01346{bottom:302.385000px;}
.y19_c01346{bottom:326.685000px;}
.y18_c01346{bottom:350.685000px;}
.y17_c01346{bottom:375.285000px;}
.y16_c01346{bottom:399.585000px;}
.y15_c01346{bottom:424.185000px;}
.y14_c01346{bottom:448.485000px;}
.y13_c01346{bottom:473.085000px;}
.y12_c01346{bottom:496.335000px;}
.y11_c01346{bottom:521.385000px;}
.y10_c01346{bottom:544.335000px;}
.yf_c01346{bottom:568.335000px;}
.ye_c01346{bottom:592.635000px;}
.yd_c01346{bottom:618.285000px;}
.yc_c01346{bottom:641.535000px;}
.yb_c01346{bottom:664.485000px;}
.ya_c01346{bottom:690.735000px;}
.y9_c01346{bottom:715.185000px;}
.y8_c01346{bottom:739.335000px;}
.y7_c01346{bottom:763.635000px;}
.y6_c01346{bottom:787.335000px;}
.y5_c01346{bottom:814.935000px;}
.y4_c01346{bottom:836.535000px;}
.y3_c01346{bottom:860.985000px;}
.y2_c01346{bottom:885.135000px;}
.y1_c01346{bottom:919.335000px;}
.hb_c01346{height:13.200074px;}
.hc_c01346{height:43.804688px;}
.h3_c01346{height:79.497070px;}
.h9_c01346{height:82.441406px;}
.ha_c01346{height:83.041406px;}
.h4_c01346{height:84.269531px;}
.h8_c01346{height:89.628000px;}
.h7_c01346{height:91.160156px;}
.h5_c01346{height:91.176000px;}
.h6_c01346{height:96.897070px;}
.h2_c01346{height:103.000488px;}
.h0_c01346{height:977.925000px;}
.h1_c01346{height:978.000000px;}
.w2_c01346{width:104.875500px;}
.w0_c01346{width:665.850000px;}
.w1_c01346{width:666.000000px;}
.x0_c01346{left:0.000000px;}
.x7_c01346{left:31.350000px;}
.x9_c01346{left:33.450000px;}
.x2_c01346{left:48.600000px;}
.x4_c01346{left:50.550000px;}
.xb_c01346{left:51.600000px;}
.xa_c01346{left:52.950000px;}
.x5_c01346{left:54.000000px;}
.x8_c01346{left:55.950000px;}
.x6_c01346{left:57.300000px;}
.x3_c01346{left:59.100000px;}
.x1_c01346{left:73.950000px;}
.xc_c01346{left:89.700000px;}
.xd_c01346{left:284.739258px;}
@media print{
.v0_c01346{vertical-align:0.000000pt;}
.v1_c01346{vertical-align:15.466667pt;}
.ls3_c01346{letter-spacing:0.000000pt;}
.ls0_c01346{letter-spacing:2.133333pt;}
.ls1_c01346{letter-spacing:5.333333pt;}
.ls4_c01346{letter-spacing:8.000000pt;}
.ls2_c01346{letter-spacing:8.933333pt;}
.ws0_c01346{word-spacing:-65.498667pt;}
.ws6_c01346{word-spacing:-48.133333pt;}
.ws7_c01346{word-spacing:-38.506667pt;}
.ws1_c01346{word-spacing:-37.066667pt;}
.ws8_c01346{word-spacing:-24.666667pt;}
.ws3_c01346{word-spacing:-20.000000pt;}
.ws4_c01346{word-spacing:-18.000000pt;}
.ws2_c01346{word-spacing:-15.424000pt;}
.ws5_c01346{word-spacing:-0.074667pt;}
.ws9_c01346{word-spacing:0.000000pt;}
._37_c01346{margin-left:-34.946667pt;}
._33_c01346{margin-left:-31.058667pt;}
._2c_c01346{margin-left:-28.885333pt;}
._22_c01346{margin-left:-26.352000pt;}
._20_c01346{margin-left:-24.530667pt;}
._1d_c01346{margin-left:-23.125333pt;}
._f_c01346{margin-left:-21.405333pt;}
._1e_c01346{margin-left:-19.466667pt;}
._6_c01346{margin-left:-18.293333pt;}
._1a_c01346{margin-left:-16.776000pt;}
._b_c01346{margin-left:-13.752000pt;}
._d_c01346{margin-left:-12.789333pt;}
._e_c01346{margin-left:-11.880000pt;}
._1b_c01346{margin-left:-10.058667pt;}
._10_c01346{margin-left:-8.824000pt;}
._12_c01346{margin-left:-7.056000pt;}
._4_c01346{margin-left:-5.973333pt;}
._7_c01346{margin-left:-4.106667pt;}
._8_c01346{margin-left:-2.706667pt;}
._5_c01346{margin-left:-1.306667pt;}
._a_c01346{width:1.026667pt;}
._c_c01346{width:2.205333pt;}
._2_c01346{width:3.266667pt;}
._11_c01346{width:4.186667pt;}
._9_c01346{width:5.133333pt;}
._3_c01346{width:6.066667pt;}
._1_c01346{width:7.000000pt;}
._17_c01346{width:8.330667pt;}
._26_c01346{width:9.280000pt;}
._0_c01346{width:10.173333pt;}
._14_c01346{width:11.506667pt;}
._16_c01346{width:13.320000pt;}
._35_c01346{width:14.760000pt;}
._18_c01346{width:16.034667pt;}
._38_c01346{width:20.805333pt;}
._29_c01346{width:27.589333pt;}
._25_c01346{width:30.829333pt;}
._32_c01346{width:39.168000pt;}
._2f_c01346{width:42.978667pt;}
._1f_c01346{width:52.770667pt;}
._2d_c01346{width:58.824000pt;}
._1c_c01346{width:72.504000pt;}
._28_c01346{width:85.885333pt;}
._21_c01346{width:96.261333pt;}
._13_c01346{width:101.021333pt;}
._24_c01346{width:131.448000pt;}
._2a_c01346{width:134.285333pt;}
._27_c01346{width:144.984000pt;}
._34_c01346{width:152.336000pt;}
._31_c01346{width:155.586667pt;}
._15_c01346{width:173.120000pt;}
._2e_c01346{width:195.730667pt;}
._30_c01346{width:200.906667pt;}
._19_c01346{width:254.922667pt;}
._2b_c01346{width:288.344000pt;}
._23_c01346{width:295.733333pt;}
._36_c01346{width:303.357333pt;}
.fs8_c01346{font-size:42.666667pt;}
.fs7_c01346{font-size:53.333333pt;}
.fs5_c01346{font-size:58.666667pt;}
.fs2_c01346{font-size:64.000000pt;}
.fs4_c01346{font-size:66.666667pt;}
.fs1_c01346{font-size:72.000000pt;}
.fs6_c01346{font-size:74.666667pt;}
.fs3_c01346{font-size:77.333333pt;}
.fs0_c01346{font-size:93.333333pt;}
.y0_c01346{bottom:0.000000pt;}
.y26_c01346{bottom:2.760000pt;}
.y25_c01346{bottom:6.425204pt;}
.y24_c01346{bottom:49.186667pt;}
.y23_c01346{bottom:71.186667pt;}
.y22_c01346{bottom:93.186667pt;}
.y21_c01346{bottom:115.186667pt;}
.y20_c01346{bottom:136.786667pt;}
.y1f_c01346{bottom:158.920000pt;}
.y1e_c01346{bottom:180.920000pt;}
.y1d_c01346{bottom:202.786667pt;}
.y1c_c01346{bottom:219.853333pt;}
.y1b_c01346{bottom:247.453333pt;}
.y1a_c01346{bottom:268.786667pt;}
.y19_c01346{bottom:290.386667pt;}
.y18_c01346{bottom:311.720000pt;}
.y17_c01346{bottom:333.586667pt;}
.y16_c01346{bottom:355.186667pt;}
.y15_c01346{bottom:377.053333pt;}
.y14_c01346{bottom:398.653333pt;}
.y13_c01346{bottom:420.520000pt;}
.y12_c01346{bottom:441.186667pt;}
.y11_c01346{bottom:463.453333pt;}
.y10_c01346{bottom:483.853333pt;}
.yf_c01346{bottom:505.186667pt;}
.ye_c01346{bottom:526.786667pt;}
.yd_c01346{bottom:549.586667pt;}
.yc_c01346{bottom:570.253333pt;}
.yb_c01346{bottom:590.653333pt;}
.ya_c01346{bottom:613.986667pt;}
.y9_c01346{bottom:635.720000pt;}
.y8_c01346{bottom:657.186667pt;}
.y7_c01346{bottom:678.786667pt;}
.y6_c01346{bottom:699.853333pt;}
.y5_c01346{bottom:724.386667pt;}
.y4_c01346{bottom:743.586667pt;}
.y3_c01346{bottom:765.320000pt;}
.y2_c01346{bottom:786.786667pt;}
.y1_c01346{bottom:817.186667pt;}
.hb_c01346{height:11.733399pt;}
.hc_c01346{height:38.937500pt;}
.h3_c01346{height:70.664062pt;}
.h9_c01346{height:73.281250pt;}
.ha_c01346{height:73.814583pt;}
.h4_c01346{height:74.906250pt;}
.h8_c01346{height:79.669333pt;}
.h7_c01346{height:81.031250pt;}
.h5_c01346{height:81.045333pt;}
.h6_c01346{height:86.130729pt;}
.h2_c01346{height:91.555990pt;}
.h0_c01346{height:869.266667pt;}
.h1_c01346{height:869.333333pt;}
.w2_c01346{width:93.222667pt;}
.w0_c01346{width:591.866667pt;}
.w1_c01346{width:592.000000pt;}
.x0_c01346{left:0.000000pt;}
.x7_c01346{left:27.866667pt;}
.x9_c01346{left:29.733333pt;}
.x2_c01346{left:43.200000pt;}
.x4_c01346{left:44.933333pt;}
.xb_c01346{left:45.866667pt;}
.xa_c01346{left:47.066667pt;}
.x5_c01346{left:48.000000pt;}
.x8_c01346{left:49.733333pt;}
.x6_c01346{left:50.933333pt;}
.x3_c01346{left:52.533333pt;}
.x1_c01346{left:65.733333pt;}
.xc_c01346{left:79.733333pt;}
.xd_c01346{left:253.101563pt;}
}





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

.ir_c01347:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01347{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01347;src:url('chunks/assets/font_bf30de5c2d21c332429638f2.woff2')format("woff");}.ff1_c01347{font-family:ff1_c01347;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01347;src:url('chunks/assets/font_403b138f86f38da2ec736479.woff2')format("woff");}.ff2_c01347{font-family:ff2_c01347;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01347;src:url('chunks/assets/font_428a9464e02651162e5817d3.woff2')format("woff");}.ff3_c01347{font-family:ff3_c01347;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01347;src:url('chunks/assets/font_c105fb6686a7cfbe54125e8c.woff2')format("woff");}.ff4_c01347{font-family:ff4_c01347;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01347;src:url('chunks/assets/font_3bf660a52ef3774d5da920ff.woff2')format("woff");}.ff5_c01347{font-family:ff5_c01347;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01347;src:url('chunks/assets/font_86f41f8574f1a2265ed372f9.woff2')format("woff");}.ff6_c01347{font-family:ff6_c01347;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01347;src:url('chunks/assets/font_c12e12c9a4fa0242d840de71.woff2')format("woff");}.ff7_c01347{font-family:ff7_c01347;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c01347;src:url('chunks/assets/font_40033353b7434732a153c2d6.woff2')format("woff");}.ff8_c01347{font-family:ff8_c01347;line-height:1.437000;font-style:normal;font-weight: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_c01347;src:url('chunks/assets/font_068a49ca4c1a46a37a7d97b4.woff2')format("woff");}.ff9_c01347{font-family:ff9_c01347;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c01347;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ffa_c01347{font-family:ffa_c01347;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01347{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01347{vertical-align:0.000000px;}
.ls3_c01347{letter-spacing:0.000000px;}
.ls0_c01347{letter-spacing:3.900000px;}
.ls5_c01347{letter-spacing:6.000000px;}
.ls4_c01347{letter-spacing:12.000000px;}
.ls1_c01347{letter-spacing:12.720000px;}
.ls2_c01347{letter-spacing:34.950000px;}
.sc__c01347{text-shadow:none;}
.sc0_c01347{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01347{-webkit-text-stroke:0px transparent;}
.sc0_c01347{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01347{word-spacing:-73.686000px;}
.ws1_c01347{word-spacing:-59.184000px;}
.ws0_c01347{word-spacing:-18.750000px;}
.ws3_c01347{word-spacing:0.000000px;}
._26_c01347{margin-left:-31.545000px;}
._24_c01347{margin-left:-20.271000px;}
._1c_c01347{margin-left:-18.468000px;}
._12_c01347{margin-left:-15.633000px;}
._17_c01347{margin-left:-10.530000px;}
._1b_c01347{margin-left:-8.445000px;}
._15_c01347{margin-left:-7.347000px;}
._10_c01347{margin-left:-5.961000px;}
._0_c01347{margin-left:-4.950000px;}
._b_c01347{margin-left:-3.591000px;}
._1_c01347{margin-left:-2.550000px;}
._2_c01347{margin-left:-1.500000px;}
._4_c01347{width:1.350000px;}
._c_c01347{width:2.391000px;}
._a_c01347{width:3.453000px;}
._5_c01347{width:4.650000px;}
._d_c01347{width:5.697000px;}
._3_c01347{width:6.750000px;}
._e_c01347{width:7.806000px;}
._7_c01347{width:8.925000px;}
._6_c01347{width:10.200000px;}
._8_c01347{width:12.150000px;}
._9_c01347{width:13.500000px;}
._f_c01347{width:14.718000px;}
._11_c01347{width:15.936000px;}
._1a_c01347{width:17.964000px;}
._1d_c01347{width:49.653000px;}
._18_c01347{width:58.563000px;}
._14_c01347{width:61.236000px;}
._1e_c01347{width:104.733000px;}
._21_c01347{width:122.616000px;}
._23_c01347{width:143.181000px;}
._16_c01347{width:165.927000px;}
._13_c01347{width:168.483000px;}
._1f_c01347{width:176.040000px;}
._20_c01347{width:197.424000px;}
._19_c01347{width:214.608000px;}
._25_c01347{width:279.363000px;}
._22_c01347{width:304.503000px;}
._27_c01347{width:1688.136000px;}
.fc2_c01347{color:transparent;}
.fc1_c01347{color:rgb(128,128,128);}
.fc0_c01347{color:rgb(0,0,0);}
.fs7_c01347{font-size:48.000000px;}
.fs1_c01347{font-size:66.000000px;}
.fs5_c01347{font-size:72.000000px;}
.fs0_c01347{font-size:75.000000px;}
.fs3_c01347{font-size:81.000000px;}
.fs2_c01347{font-size:84.000000px;}
.fs4_c01347{font-size:87.000000px;}
.fs6_c01347{font-size:93.000000px;}
.y0_c01347{bottom:0.000000px;}
.y26_c01347{bottom:3.105000px;}
.y25_c01347{bottom:7.228363px;}
.y23_c01347{bottom:63.450000px;}
.y22_c01347{bottom:83.100000px;}
.y21_c01347{bottom:109.050000px;}
.y20_c01347{bottom:137.700000px;}
.y1f_c01347{bottom:160.350000px;}
.y1e_c01347{bottom:183.900000px;}
.y1d_c01347{bottom:209.550000px;}
.y1c_c01347{bottom:233.850000px;}
.y1b_c01347{bottom:259.950000px;}
.y1a_c01347{bottom:283.950000px;}
.y19_c01347{bottom:309.900000px;}
.y18_c01347{bottom:332.100000px;}
.y17_c01347{bottom:356.850000px;}
.y16_c01347{bottom:381.450000px;}
.y15_c01347{bottom:407.100000px;}
.y14_c01347{bottom:430.950000px;}
.y13_c01347{bottom:456.300000px;}
.y12_c01347{bottom:480.300000px;}
.y11_c01347{bottom:505.350000px;}
.y10_c01347{bottom:528.900000px;}
.yf_c01347{bottom:553.200000px;}
.ye_c01347{bottom:578.100000px;}
.yd_c01347{bottom:603.750000px;}
.yc_c01347{bottom:626.850000px;}
.yb_c01347{bottom:651.450000px;}
.ya_c01347{bottom:676.050000px;}
.y9_c01347{bottom:700.650000px;}
.y24_c01347{bottom:702.450000px;}
.y8_c01347{bottom:724.350000px;}
.y7_c01347{bottom:749.250000px;}
.y6_c01347{bottom:773.250000px;}
.y5_c01347{bottom:798.300000px;}
.y4_c01347{bottom:822.450000px;}
.y3_c01347{bottom:846.900000px;}
.y2_c01347{bottom:871.200000px;}
.y1_c01347{bottom:896.100000px;}
.ha_c01347{height:13.200074px;}
.hb_c01347{height:43.804688px;}
.h2_c01347{height:73.608398px;}
.h4_c01347{height:79.497070px;}
.h3_c01347{height:82.441406px;}
.h8_c01347{height:83.563477px;}
.h6_c01347{height:84.269531px;}
.h5_c01347{height:91.176000px;}
.h9_c01347{height:91.274414px;}
.h7_c01347{height:110.151855px;}
.h1_c01347{height:977.250000px;}
.h0_c01347{height:977.400000px;}
.w1_c01347{width:104.875500px;}
.w0_c01347{width:661.500000px;}
.x0_c01347{left:0.000000px;}
.x11_c01347{left:6.150000px;}
.xc_c01347{left:14.250000px;}
.x6_c01347{left:16.500000px;}
.xf_c01347{left:18.600000px;}
.x7_c01347{left:21.900000px;}
.xe_c01347{left:25.050000px;}
.x12_c01347{left:35.400000px;}
.x5_c01347{left:59.100000px;}
.xb_c01347{left:86.100000px;}
.x10_c01347{left:99.600000px;}
.xd_c01347{left:101.250000px;}
.x9_c01347{left:103.950000px;}
.x1_c01347{left:105.600000px;}
.xa_c01347{left:106.650000px;}
.x8_c01347{left:107.700000px;}
.x4_c01347{left:111.450000px;}
.x2_c01347{left:114.150000px;}
.x3_c01347{left:115.200000px;}
.x14_c01347{left:282.564240px;}
.x13_c01347{left:625.500000px;}
@media print{
.v0_c01347{vertical-align:0.000000pt;}
.ls3_c01347{letter-spacing:0.000000pt;}
.ls0_c01347{letter-spacing:3.466667pt;}
.ls5_c01347{letter-spacing:5.333333pt;}
.ls4_c01347{letter-spacing:10.666667pt;}
.ls1_c01347{letter-spacing:11.306667pt;}
.ls2_c01347{letter-spacing:31.066667pt;}
.ws2_c01347{word-spacing:-65.498667pt;}
.ws1_c01347{word-spacing:-52.608000pt;}
.ws0_c01347{word-spacing:-16.666667pt;}
.ws3_c01347{word-spacing:0.000000pt;}
._26_c01347{margin-left:-28.040000pt;}
._24_c01347{margin-left:-18.018667pt;}
._1c_c01347{margin-left:-16.416000pt;}
._12_c01347{margin-left:-13.896000pt;}
._17_c01347{margin-left:-9.360000pt;}
._1b_c01347{margin-left:-7.506667pt;}
._15_c01347{margin-left:-6.530667pt;}
._10_c01347{margin-left:-5.298667pt;}
._0_c01347{margin-left:-4.400000pt;}
._b_c01347{margin-left:-3.192000pt;}
._1_c01347{margin-left:-2.266667pt;}
._2_c01347{margin-left:-1.333333pt;}
._4_c01347{width:1.200000pt;}
._c_c01347{width:2.125333pt;}
._a_c01347{width:3.069333pt;}
._5_c01347{width:4.133333pt;}
._d_c01347{width:5.064000pt;}
._3_c01347{width:6.000000pt;}
._e_c01347{width:6.938667pt;}
._7_c01347{width:7.933333pt;}
._6_c01347{width:9.066667pt;}
._8_c01347{width:10.800000pt;}
._9_c01347{width:12.000000pt;}
._f_c01347{width:13.082667pt;}
._11_c01347{width:14.165333pt;}
._1a_c01347{width:15.968000pt;}
._1d_c01347{width:44.136000pt;}
._18_c01347{width:52.056000pt;}
._14_c01347{width:54.432000pt;}
._1e_c01347{width:93.096000pt;}
._21_c01347{width:108.992000pt;}
._23_c01347{width:127.272000pt;}
._16_c01347{width:147.490667pt;}
._13_c01347{width:149.762667pt;}
._1f_c01347{width:156.480000pt;}
._20_c01347{width:175.488000pt;}
._19_c01347{width:190.762667pt;}
._25_c01347{width:248.322667pt;}
._22_c01347{width:270.669333pt;}
._27_c01347{width:1500.565333pt;}
.fs7_c01347{font-size:42.666667pt;}
.fs1_c01347{font-size:58.666667pt;}
.fs5_c01347{font-size:64.000000pt;}
.fs0_c01347{font-size:66.666667pt;}
.fs3_c01347{font-size:72.000000pt;}
.fs2_c01347{font-size:74.666667pt;}
.fs4_c01347{font-size:77.333333pt;}
.fs6_c01347{font-size:82.666667pt;}
.y0_c01347{bottom:0.000000pt;}
.y26_c01347{bottom:2.760000pt;}
.y25_c01347{bottom:6.425212pt;}
.y23_c01347{bottom:56.400000pt;}
.y22_c01347{bottom:73.866667pt;}
.y21_c01347{bottom:96.933333pt;}
.y20_c01347{bottom:122.400000pt;}
.y1f_c01347{bottom:142.533333pt;}
.y1e_c01347{bottom:163.466667pt;}
.y1d_c01347{bottom:186.266667pt;}
.y1c_c01347{bottom:207.866667pt;}
.y1b_c01347{bottom:231.066667pt;}
.y1a_c01347{bottom:252.400000pt;}
.y19_c01347{bottom:275.466667pt;}
.y18_c01347{bottom:295.200000pt;}
.y17_c01347{bottom:317.200000pt;}
.y16_c01347{bottom:339.066667pt;}
.y15_c01347{bottom:361.866667pt;}
.y14_c01347{bottom:383.066667pt;}
.y13_c01347{bottom:405.600000pt;}
.y12_c01347{bottom:426.933333pt;}
.y11_c01347{bottom:449.200000pt;}
.y10_c01347{bottom:470.133333pt;}
.yf_c01347{bottom:491.733333pt;}
.ye_c01347{bottom:513.866667pt;}
.yd_c01347{bottom:536.666667pt;}
.yc_c01347{bottom:557.200000pt;}
.yb_c01347{bottom:579.066667pt;}
.ya_c01347{bottom:600.933333pt;}
.y9_c01347{bottom:622.800000pt;}
.y24_c01347{bottom:624.400000pt;}
.y8_c01347{bottom:643.866667pt;}
.y7_c01347{bottom:666.000000pt;}
.y6_c01347{bottom:687.333333pt;}
.y5_c01347{bottom:709.600000pt;}
.y4_c01347{bottom:731.066667pt;}
.y3_c01347{bottom:752.800000pt;}
.y2_c01347{bottom:774.400000pt;}
.y1_c01347{bottom:796.533333pt;}
.ha_c01347{height:11.733399pt;}
.hb_c01347{height:38.937500pt;}
.h2_c01347{height:65.429688pt;}
.h4_c01347{height:70.664062pt;}
.h3_c01347{height:73.281250pt;}
.h8_c01347{height:74.278646pt;}
.h6_c01347{height:74.906250pt;}
.h5_c01347{height:81.045333pt;}
.h9_c01347{height:81.132812pt;}
.h7_c01347{height:97.912760pt;}
.h1_c01347{height:868.666667pt;}
.h0_c01347{height:868.800000pt;}
.w1_c01347{width:93.222667pt;}
.w0_c01347{width:588.000000pt;}
.x0_c01347{left:0.000000pt;}
.x11_c01347{left:5.466667pt;}
.xc_c01347{left:12.666667pt;}
.x6_c01347{left:14.666667pt;}
.xf_c01347{left:16.533333pt;}
.x7_c01347{left:19.466667pt;}
.xe_c01347{left:22.266667pt;}
.x12_c01347{left:31.466667pt;}
.x5_c01347{left:52.533333pt;}
.xb_c01347{left:76.533333pt;}
.x10_c01347{left:88.533333pt;}
.xd_c01347{left:90.000000pt;}
.x9_c01347{left:92.400000pt;}
.x1_c01347{left:93.866667pt;}
.xa_c01347{left:94.800000pt;}
.x8_c01347{left:95.733333pt;}
.x4_c01347{left:99.066667pt;}
.x2_c01347{left:101.466667pt;}
.x3_c01347{left:102.400000pt;}
.x14_c01347{left:251.168213pt;}
.x13_c01347{left:556.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_c01348 {
    display:none;
  }
  .loading-indicator_c01348.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01348 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01348 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01348" -> "#page-container .classname_c01348")
 */
.pf_c01348 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01348 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01348.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01348 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01348 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01348 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01348 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01348 {overflow:visible;}
  }
}
.c_c01348 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01348 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01348:after { /* webkit #35443 */
  content: '';
}
.t_c01348:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01348 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01348 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01348 { /* info for Javascript */
  display:none;
}
.l_c01348 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01348 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01348 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01348:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01348{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01348;src:url('chunks/assets/font_23c5a8cef52cd7e2023c2a44.woff2')format("woff");}.ff1_c01348{font-family:ff1_c01348;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01348;src:url('chunks/assets/font_8e068b422e8b5a94306bbbfb.woff2')format("woff");}.ff2_c01348{font-family:ff2_c01348;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01348;src:url('chunks/assets/font_7ddcf1394a2cf3fd12726a5b.woff2')format("woff");}.ff3_c01348{font-family:ff3_c01348;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01348;src:url('chunks/assets/font_52e987f723fbdba3dd600cb4.woff2')format("woff");}.ff4_c01348{font-family:ff4_c01348;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01348;src:url('chunks/assets/font_3b2e6c6fa8a8ce40b983bc8f.woff2')format("woff");}.ff5_c01348{font-family:ff5_c01348;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01348;src:url('chunks/assets/font_622242b7a601d3a6b84a7696.woff2')format("woff");}.ff6_c01348{font-family:ff6_c01348;line-height:1.437000;font-style:normal;font-weight: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_c01348;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c01348{font-family:ff7_c01348;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01348{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01348{vertical-align:0.000000px;}
.v1_c01348{vertical-align:21.600000px;}
.ls2_c01348{letter-spacing:0.000000px;}
.ls0_c01348{letter-spacing:3.000000px;}
.ls3_c01348{letter-spacing:6.000000px;}
.ls1_c01348{letter-spacing:160.260000px;}
.sc__c01348{text-shadow:none;}
.sc0_c01348{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01348{-webkit-text-stroke:0px transparent;}
.sc0_c01348{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01348{word-spacing:-73.686000px;}
.ws1_c01348{word-spacing:-59.184000px;}
.ws2_c01348{word-spacing:0.000000px;}
._11_c01348{margin-left:-27.702000px;}
._f_c01348{margin-left:-20.652000px;}
._10_c01348{margin-left:-13.527000px;}
._d_c01348{margin-left:-12.069000px;}
._14_c01348{margin-left:-7.677000px;}
._1a_c01348{margin-left:-6.318000px;}
._5_c01348{margin-left:-5.265000px;}
._6_c01348{margin-left:-4.050000px;}
._2_c01348{margin-left:-2.754000px;}
._1_c01348{margin-left:-1.053000px;}
._4_c01348{width:2.025000px;}
._3_c01348{width:3.078000px;}
._7_c01348{width:4.698000px;}
._0_c01348{width:6.318000px;}
._8_c01348{width:7.776000px;}
._b_c01348{width:9.639000px;}
._c_c01348{width:11.178000px;}
._a_c01348{width:12.798000px;}
._9_c01348{width:14.661000px;}
._16_c01348{width:16.050000px;}
._e_c01348{width:17.658000px;}
._17_c01348{width:19.113000px;}
._1b_c01348{width:21.303000px;}
._18_c01348{width:22.503000px;}
._1d_c01348{width:24.462000px;}
._1e_c01348{width:25.839000px;}
._13_c01348{width:27.153000px;}
._1c_c01348{width:29.160000px;}
._1f_c01348{width:32.076000px;}
._12_c01348{width:33.765000px;}
._20_c01348{width:236.277000px;}
._19_c01348{width:491.355000px;}
._15_c01348{width:1146.435000px;}
.fc2_c01348{color:transparent;}
.fc1_c01348{color:rgb(128,128,128);}
.fc0_c01348{color:rgb(0,0,0);}
.fs5_c01348{font-size:48.000000px;}
.fs4_c01348{font-size:60.000000px;}
.fs3_c01348{font-size:69.000000px;}
.fs2_c01348{font-size:72.000000px;}
.fs0_c01348{font-size:81.000000px;}
.fs1_c01348{font-size:87.000000px;}
.y0_c01348{bottom:0.000000px;}
.y25_c01348{bottom:3.105000px;}
.y24_c01348{bottom:7.228355px;}
.y23_c01348{bottom:64.335000px;}
.y22_c01348{bottom:88.785000px;}
.y21_c01348{bottom:113.685000px;}
.y20_c01348{bottom:138.285000px;}
.y1f_c01348{bottom:163.035000px;}
.y1e_c01348{bottom:187.335000px;}
.y1d_c01348{bottom:211.935000px;}
.y1c_c01348{bottom:236.835000px;}
.y1b_c01348{bottom:261.135000px;}
.y1a_c01348{bottom:285.735000px;}
.y19_c01348{bottom:310.185000px;}
.y18_c01348{bottom:334.485000px;}
.y17_c01348{bottom:359.685000px;}
.y16_c01348{bottom:383.685000px;}
.y15_c01348{bottom:408.735000px;}
.y14_c01348{bottom:432.885000px;}
.y13_c01348{bottom:455.985000px;}
.y12_c01348{bottom:480.585000px;}
.y11_c01348{bottom:499.485000px;}
.y10_c01348{bottom:530.535000px;}
.yf_c01348{bottom:552.735000px;}
.ye_c01348{bottom:576.735000px;}
.yd_c01348{bottom:601.335000px;}
.yc_c01348{bottom:624.735000px;}
.yb_c01348{bottom:649.635000px;}
.ya_c01348{bottom:673.935000px;}
.y9_c01348{bottom:697.635000px;}
.y8_c01348{bottom:721.935000px;}
.y7_c01348{bottom:746.235000px;}
.y6_c01348{bottom:770.535000px;}
.y5_c01348{bottom:794.685000px;}
.y4_c01348{bottom:818.685000px;}
.y3_c01348{bottom:843.285000px;}
.y2_c01348{bottom:867.735000px;}
.y1_c01348{bottom:891.285000px;}
.h6_c01348{height:13.200074px;}
.h7_c01348{height:43.804688px;}
.h4_c01348{height:72.312000px;}
.h2_c01348{height:79.497070px;}
.h3_c01348{height:91.176000px;}
.h5_c01348{height:101.097070px;}
.h0_c01348{height:980.625000px;}
.h1_c01348{height:981.000000px;}
.w2_c01348{width:104.875500px;}
.w0_c01348{width:667.425000px;}
.w1_c01348{width:667.500000px;}
.x0_c01348{left:0.000000px;}
.xc_c01348{left:33.750000px;}
.xb_c01348{left:35.100000px;}
.xa_c01348{left:36.450000px;}
.x9_c01348{left:38.100000px;}
.x8_c01348{left:39.450000px;}
.x5_c01348{left:40.500000px;}
.x4_c01348{left:42.300000px;}
.x2_c01348{left:44.250000px;}
.x3_c01348{left:45.300000px;}
.x1_c01348{left:46.650000px;}
.x7_c01348{left:96.150000px;}
.x6_c01348{left:157.050000px;}
.xe_c01348{left:285.526749px;}
.xd_c01348{left:383.850000px;}
@media print{
.v0_c01348{vertical-align:0.000000pt;}
.v1_c01348{vertical-align:19.200000pt;}
.ls2_c01348{letter-spacing:0.000000pt;}
.ls0_c01348{letter-spacing:2.666667pt;}
.ls3_c01348{letter-spacing:5.333333pt;}
.ls1_c01348{letter-spacing:142.453333pt;}
.ws0_c01348{word-spacing:-65.498667pt;}
.ws1_c01348{word-spacing:-52.608000pt;}
.ws2_c01348{word-spacing:0.000000pt;}
._11_c01348{margin-left:-24.624000pt;}
._f_c01348{margin-left:-18.357333pt;}
._10_c01348{margin-left:-12.024000pt;}
._d_c01348{margin-left:-10.728000pt;}
._14_c01348{margin-left:-6.824000pt;}
._1a_c01348{margin-left:-5.616000pt;}
._5_c01348{margin-left:-4.680000pt;}
._6_c01348{margin-left:-3.600000pt;}
._2_c01348{margin-left:-2.448000pt;}
._1_c01348{margin-left:-0.936000pt;}
._4_c01348{width:1.800000pt;}
._3_c01348{width:2.736000pt;}
._7_c01348{width:4.176000pt;}
._0_c01348{width:5.616000pt;}
._8_c01348{width:6.912000pt;}
._b_c01348{width:8.568000pt;}
._c_c01348{width:9.936000pt;}
._a_c01348{width:11.376000pt;}
._9_c01348{width:13.032000pt;}
._16_c01348{width:14.266667pt;}
._e_c01348{width:15.696000pt;}
._17_c01348{width:16.989333pt;}
._1b_c01348{width:18.936000pt;}
._18_c01348{width:20.002667pt;}
._1d_c01348{width:21.744000pt;}
._1e_c01348{width:22.968000pt;}
._13_c01348{width:24.136000pt;}
._1c_c01348{width:25.920000pt;}
._1f_c01348{width:28.512000pt;}
._12_c01348{width:30.013333pt;}
._20_c01348{width:210.024000pt;}
._19_c01348{width:436.760000pt;}
._15_c01348{width:1019.053333pt;}
.fs5_c01348{font-size:42.666667pt;}
.fs4_c01348{font-size:53.333333pt;}
.fs3_c01348{font-size:61.333333pt;}
.fs2_c01348{font-size:64.000000pt;}
.fs0_c01348{font-size:72.000000pt;}
.fs1_c01348{font-size:77.333333pt;}
.y0_c01348{bottom:0.000000pt;}
.y25_c01348{bottom:2.760000pt;}
.y24_c01348{bottom:6.425204pt;}
.y23_c01348{bottom:57.186667pt;}
.y22_c01348{bottom:78.920000pt;}
.y21_c01348{bottom:101.053333pt;}
.y20_c01348{bottom:122.920000pt;}
.y1f_c01348{bottom:144.920000pt;}
.y1e_c01348{bottom:166.520000pt;}
.y1d_c01348{bottom:188.386667pt;}
.y1c_c01348{bottom:210.520000pt;}
.y1b_c01348{bottom:232.120000pt;}
.y1a_c01348{bottom:253.986667pt;}
.y19_c01348{bottom:275.720000pt;}
.y18_c01348{bottom:297.320000pt;}
.y17_c01348{bottom:319.720000pt;}
.y16_c01348{bottom:341.053333pt;}
.y15_c01348{bottom:363.320000pt;}
.y14_c01348{bottom:384.786667pt;}
.y13_c01348{bottom:405.320000pt;}
.y12_c01348{bottom:427.186667pt;}
.y11_c01348{bottom:443.986667pt;}
.y10_c01348{bottom:471.586667pt;}
.yf_c01348{bottom:491.320000pt;}
.ye_c01348{bottom:512.653333pt;}
.yd_c01348{bottom:534.520000pt;}
.yc_c01348{bottom:555.320000pt;}
.yb_c01348{bottom:577.453333pt;}
.ya_c01348{bottom:599.053333pt;}
.y9_c01348{bottom:620.120000pt;}
.y8_c01348{bottom:641.720000pt;}
.y7_c01348{bottom:663.320000pt;}
.y6_c01348{bottom:684.920000pt;}
.y5_c01348{bottom:706.386667pt;}
.y4_c01348{bottom:727.720000pt;}
.y3_c01348{bottom:749.586667pt;}
.y2_c01348{bottom:771.320000pt;}
.y1_c01348{bottom:792.253333pt;}
.h6_c01348{height:11.733399pt;}
.h7_c01348{height:38.937500pt;}
.h4_c01348{height:64.277333pt;}
.h2_c01348{height:70.664062pt;}
.h3_c01348{height:81.045333pt;}
.h5_c01348{height:89.864062pt;}
.h0_c01348{height:871.666667pt;}
.h1_c01348{height:872.000000pt;}
.w2_c01348{width:93.222667pt;}
.w0_c01348{width:593.266667pt;}
.w1_c01348{width:593.333333pt;}
.x0_c01348{left:0.000000pt;}
.xc_c01348{left:30.000000pt;}
.xb_c01348{left:31.200000pt;}
.xa_c01348{left:32.400000pt;}
.x9_c01348{left:33.866667pt;}
.x8_c01348{left:35.066667pt;}
.x5_c01348{left:36.000000pt;}
.x4_c01348{left:37.600000pt;}
.x2_c01348{left:39.333333pt;}
.x3_c01348{left:40.266667pt;}
.x1_c01348{left:41.466667pt;}
.x7_c01348{left:85.466667pt;}
.x6_c01348{left:139.600000pt;}
.xe_c01348{left:253.801554pt;}
.xd_c01348{left:341.200000pt;}
}





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

.ir_c01349:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01349{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01349;src:url('chunks/assets/font_19511870f74b522439479025.woff2')format("woff");}.ff1_c01349{font-family:ff1_c01349;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01349;src:url('chunks/assets/font_a70f064652b72084e2629895.woff2')format("woff");}.ff2_c01349{font-family:ff2_c01349;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01349;src:url('chunks/assets/font_ff0e0efea108b75c42d455de.woff2')format("woff");}.ff3_c01349{font-family:ff3_c01349;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01349;src:url('chunks/assets/font_d42fcf1b843206b21d11749e.woff2')format("woff");}.ff4_c01349{font-family:ff4_c01349;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01349;src:url('chunks/assets/font_b94b3dee8838a2e88f2d1506.woff2')format("woff");}.ff5_c01349{font-family:ff5_c01349;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01349;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c01349{font-family:ff6_c01349;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01349{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01349{vertical-align:0.000000px;}
.ls2_c01349{letter-spacing:0.000000px;}
.ls0_c01349{letter-spacing:1.395000px;}
.ls1_c01349{letter-spacing:3.000000px;}
.ls3_c01349{letter-spacing:6.000000px;}
.ls4_c01349{letter-spacing:9.000000px;}
.sc__c01349{text-shadow:none;}
.sc0_c01349{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01349{-webkit-text-stroke:0px transparent;}
.sc0_c01349{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01349{word-spacing:-73.686000px;}
.ws2_c01349{word-spacing:-21.000000px;}
.ws0_c01349{word-spacing:-17.352000px;}
.ws3_c01349{word-spacing:0.000000px;}
._22_c01349{margin-left:-24.120000px;}
._23_c01349{margin-left:-22.896000px;}
._1c_c01349{margin-left:-17.982000px;}
._27_c01349{margin-left:-16.200000px;}
._9_c01349{margin-left:-12.879000px;}
._1f_c01349{margin-left:-11.826000px;}
._19_c01349{margin-left:-10.500000px;}
._1a_c01349{margin-left:-9.153000px;}
._10_c01349{margin-left:-7.857000px;}
._a_c01349{margin-left:-6.507000px;}
._3_c01349{margin-left:-4.941000px;}
._11_c01349{margin-left:-3.726000px;}
._4_c01349{margin-left:-2.268000px;}
._8_c01349{margin-left:-1.134000px;}
._6_c01349{width:1.296000px;}
._5_c01349{width:2.430000px;}
._1_c01349{width:3.888000px;}
._2_c01349{width:5.265000px;}
._0_c01349{width:6.885000px;}
._c_c01349{width:8.100000px;}
._d_c01349{width:9.153000px;}
._7_c01349{width:10.692000px;}
._12_c01349{width:12.150000px;}
._e_c01349{width:13.284000px;}
._15_c01349{width:15.147000px;}
._14_c01349{width:16.200000px;}
._13_c01349{width:17.334000px;}
._29_c01349{width:18.549000px;}
._1e_c01349{width:21.708000px;}
._16_c01349{width:24.786000px;}
._24_c01349{width:25.848000px;}
._17_c01349{width:27.702000px;}
._28_c01349{width:30.807000px;}
._25_c01349{width:38.418000px;}
._20_c01349{width:41.715000px;}
._26_c01349{width:45.582000px;}
._f_c01349{width:93.108000px;}
._21_c01349{width:135.621000px;}
._1d_c01349{width:211.005000px;}
._18_c01349{width:286.659000px;}
._b_c01349{width:352.455000px;}
._1b_c01349{width:730.782000px;}
.fc2_c01349{color:transparent;}
.fc1_c01349{color:rgb(128,128,128);}
.fc0_c01349{color:rgb(0,0,0);}
.fs5_c01349{font-size:48.000000px;}
.fs4_c01349{font-size:57.000000px;}
.fs3_c01349{font-size:60.000000px;}
.fs1_c01349{font-size:72.000000px;}
.fs0_c01349{font-size:81.000000px;}
.fs2_c01349{font-size:87.000000px;}
.y0_c01349{bottom:0.000000px;}
.y24_c01349{bottom:3.105000px;}
.y23_c01349{bottom:7.228369px;}
.y22_c01349{bottom:88.020000px;}
.y21_c01349{bottom:112.770000px;}
.y20_c01349{bottom:137.970000px;}
.y1f_c01349{bottom:161.220000px;}
.y1e_c01349{bottom:186.270000px;}
.y1d_c01349{bottom:210.570000px;}
.y1c_c01349{bottom:235.620000px;}
.y1b_c01349{bottom:260.520000px;}
.y1a_c01349{bottom:285.120000px;}
.y19_c01349{bottom:309.870000px;}
.y18_c01349{bottom:332.070000px;}
.y17_c01349{bottom:358.470000px;}
.y16_c01349{bottom:382.020000px;}
.y15_c01349{bottom:407.070000px;}
.y14_c01349{bottom:431.970000px;}
.y13_c01349{bottom:454.920000px;}
.y12_c01349{bottom:478.620000px;}
.y11_c01349{bottom:504.270000px;}
.y10_c01349{bottom:529.470000px;}
.yf_c01349{bottom:554.220000px;}
.ye_c01349{bottom:578.520000px;}
.yd_c01349{bottom:602.370000px;}
.yc_c01349{bottom:628.470000px;}
.yb_c01349{bottom:651.420000px;}
.ya_c01349{bottom:675.270000px;}
.y9_c01349{bottom:700.020000px;}
.y8_c01349{bottom:723.870000px;}
.y7_c01349{bottom:748.920000px;}
.y6_c01349{bottom:772.920000px;}
.y5_c01349{bottom:797.070000px;}
.y4_c01349{bottom:821.520000px;}
.y3_c01349{bottom:847.020000px;}
.y2_c01349{bottom:871.470000px;}
.y1_c01349{bottom:894.270000px;}
.h5_c01349{height:13.200073px;}
.h6_c01349{height:43.804688px;}
.h2_c01349{height:79.497070px;}
.h3_c01349{height:84.269531px;}
.h4_c01349{height:91.176000px;}
.h1_c01349{height:972.750000px;}
.h0_c01349{height:973.050000px;}
.w2_c01349{width:104.875500px;}
.w0_c01349{width:658.275000px;}
.w1_c01349{width:658.500000px;}
.x0_c01349{left:0.000000px;}
.x2_c01349{left:9.750000px;}
.xb_c01349{left:11.850000px;}
.x6_c01349{left:13.500000px;}
.x7_c01349{left:14.850000px;}
.xa_c01349{left:16.500000px;}
.xe_c01349{left:17.550000px;}
.x9_c01349{left:18.600000px;}
.x5_c01349{left:31.650000px;}
.x1_c01349{left:104.250000px;}
.xc_c01349{left:106.350000px;}
.x3_c01349{left:108.000000px;}
.x4_c01349{left:109.350000px;}
.x8_c01349{left:111.450000px;}
.xf_c01349{left:112.950000px;}
.xd_c01349{left:114.450000px;}
.x10_c01349{left:136.050000px;}
.x11_c01349{left:280.951767px;}
@media print{
.v0_c01349{vertical-align:0.000000pt;}
.ls2_c01349{letter-spacing:0.000000pt;}
.ls0_c01349{letter-spacing:1.240000pt;}
.ls1_c01349{letter-spacing:2.666667pt;}
.ls3_c01349{letter-spacing:5.333333pt;}
.ls4_c01349{letter-spacing:8.000000pt;}
.ws1_c01349{word-spacing:-65.498667pt;}
.ws2_c01349{word-spacing:-18.666667pt;}
.ws0_c01349{word-spacing:-15.424000pt;}
.ws3_c01349{word-spacing:0.000000pt;}
._22_c01349{margin-left:-21.440000pt;}
._23_c01349{margin-left:-20.352000pt;}
._1c_c01349{margin-left:-15.984000pt;}
._27_c01349{margin-left:-14.400000pt;}
._9_c01349{margin-left:-11.448000pt;}
._1f_c01349{margin-left:-10.512000pt;}
._19_c01349{margin-left:-9.333333pt;}
._1a_c01349{margin-left:-8.136000pt;}
._10_c01349{margin-left:-6.984000pt;}
._a_c01349{margin-left:-5.784000pt;}
._3_c01349{margin-left:-4.392000pt;}
._11_c01349{margin-left:-3.312000pt;}
._4_c01349{margin-left:-2.016000pt;}
._8_c01349{margin-left:-1.008000pt;}
._6_c01349{width:1.152000pt;}
._5_c01349{width:2.160000pt;}
._1_c01349{width:3.456000pt;}
._2_c01349{width:4.680000pt;}
._0_c01349{width:6.120000pt;}
._c_c01349{width:7.200000pt;}
._d_c01349{width:8.136000pt;}
._7_c01349{width:9.504000pt;}
._12_c01349{width:10.800000pt;}
._e_c01349{width:11.808000pt;}
._15_c01349{width:13.464000pt;}
._14_c01349{width:14.400000pt;}
._13_c01349{width:15.408000pt;}
._29_c01349{width:16.488000pt;}
._1e_c01349{width:19.296000pt;}
._16_c01349{width:22.032000pt;}
._24_c01349{width:22.976000pt;}
._17_c01349{width:24.624000pt;}
._28_c01349{width:27.384000pt;}
._25_c01349{width:34.149333pt;}
._20_c01349{width:37.080000pt;}
._26_c01349{width:40.517333pt;}
._f_c01349{width:82.762667pt;}
._21_c01349{width:120.552000pt;}
._1d_c01349{width:187.560000pt;}
._18_c01349{width:254.808000pt;}
._b_c01349{width:313.293333pt;}
._1b_c01349{width:649.584000pt;}
.fs5_c01349{font-size:42.666667pt;}
.fs4_c01349{font-size:50.666667pt;}
.fs3_c01349{font-size:53.333333pt;}
.fs1_c01349{font-size:64.000000pt;}
.fs0_c01349{font-size:72.000000pt;}
.fs2_c01349{font-size:77.333333pt;}
.y0_c01349{bottom:0.000000pt;}
.y24_c01349{bottom:2.760000pt;}
.y23_c01349{bottom:6.425217pt;}
.y22_c01349{bottom:78.240000pt;}
.y21_c01349{bottom:100.240000pt;}
.y20_c01349{bottom:122.640000pt;}
.y1f_c01349{bottom:143.306667pt;}
.y1e_c01349{bottom:165.573333pt;}
.y1d_c01349{bottom:187.173333pt;}
.y1c_c01349{bottom:209.440000pt;}
.y1b_c01349{bottom:231.573333pt;}
.y1a_c01349{bottom:253.440000pt;}
.y19_c01349{bottom:275.440000pt;}
.y18_c01349{bottom:295.173333pt;}
.y17_c01349{bottom:318.640000pt;}
.y16_c01349{bottom:339.573333pt;}
.y15_c01349{bottom:361.840000pt;}
.y14_c01349{bottom:383.973333pt;}
.y13_c01349{bottom:404.373333pt;}
.y12_c01349{bottom:425.440000pt;}
.y11_c01349{bottom:448.240000pt;}
.y10_c01349{bottom:470.640000pt;}
.yf_c01349{bottom:492.640000pt;}
.ye_c01349{bottom:514.240000pt;}
.yd_c01349{bottom:535.440000pt;}
.yc_c01349{bottom:558.640000pt;}
.yb_c01349{bottom:579.040000pt;}
.ya_c01349{bottom:600.240000pt;}
.y9_c01349{bottom:622.240000pt;}
.y8_c01349{bottom:643.440000pt;}
.y7_c01349{bottom:665.706667pt;}
.y6_c01349{bottom:687.040000pt;}
.y5_c01349{bottom:708.506667pt;}
.y4_c01349{bottom:730.240000pt;}
.y3_c01349{bottom:752.906667pt;}
.y2_c01349{bottom:774.640000pt;}
.y1_c01349{bottom:794.906667pt;}
.h5_c01349{height:11.733399pt;}
.h6_c01349{height:38.937500pt;}
.h2_c01349{height:70.664062pt;}
.h3_c01349{height:74.906250pt;}
.h4_c01349{height:81.045333pt;}
.h1_c01349{height:864.666667pt;}
.h0_c01349{height:864.933333pt;}
.w2_c01349{width:93.222667pt;}
.w0_c01349{width:585.133333pt;}
.w1_c01349{width:585.333333pt;}
.x0_c01349{left:0.000000pt;}
.x2_c01349{left:8.666667pt;}
.xb_c01349{left:10.533333pt;}
.x6_c01349{left:12.000000pt;}
.x7_c01349{left:13.200000pt;}
.xa_c01349{left:14.666667pt;}
.xe_c01349{left:15.600000pt;}
.x9_c01349{left:16.533333pt;}
.x5_c01349{left:28.133333pt;}
.x1_c01349{left:92.666667pt;}
.xc_c01349{left:94.533333pt;}
.x3_c01349{left:96.000000pt;}
.x4_c01349{left:97.200000pt;}
.x8_c01349{left:99.066667pt;}
.xf_c01349{left:100.400000pt;}
.xd_c01349{left:101.733333pt;}
.x10_c01349{left:120.933333pt;}
.x11_c01349{left:249.734904pt;}
}





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

.ir_c01350:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01350{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01350;src:url('chunks/assets/font_a78701f9001e27cc55f30e06.woff2')format("woff");}.ff1_c01350{font-family:ff1_c01350;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01350;src:url('chunks/assets/font_cd53dfabd3ff559c5f9be141.woff2')format("woff");}.ff2_c01350{font-family:ff2_c01350;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01350;src:url('chunks/assets/font_23ace837ceb1f9e8ed040cce.woff2')format("woff");}.ff3_c01350{font-family:ff3_c01350;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01350;src:url('chunks/assets/font_c196c448d6a786db75e27743.woff2')format("woff");}.ff4_c01350{font-family:ff4_c01350;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01350;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff5_c01350{font-family:ff5_c01350;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01350;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c01350{font-family:ff6_c01350;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01350{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01350{vertical-align:0.000000px;}
.ls3_c01350{letter-spacing:0.000000px;}
.ls1_c01350{letter-spacing:3.000000px;}
.ls2_c01350{letter-spacing:6.000000px;}
.ls0_c01350{letter-spacing:8.802000px;}
.sc__c01350{text-shadow:none;}
.sc0_c01350{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01350{-webkit-text-stroke:0px transparent;}
.sc0_c01350{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01350{word-spacing:-17.352000px;}
.ws2_c01350{word-spacing:-13.737000px;}
.ws1_c01350{word-spacing:-0.285000px;}
.ws3_c01350{word-spacing:0.000000px;}
._0_c01350{margin-left:-24.072000px;}
._1_c01350{margin-left:-19.890000px;}
._1f_c01350{margin-left:-17.595000px;}
._17_c01350{margin-left:-14.472000px;}
._5_c01350{margin-left:-12.240000px;}
._9_c01350{margin-left:-10.200000px;}
._10_c01350{margin-left:-8.595000px;}
._c_c01350{margin-left:-7.344000px;}
._7_c01350{margin-left:-6.018000px;}
._8_c01350{margin-left:-4.896000px;}
._6_c01350{margin-left:-3.672000px;}
._12_c01350{margin-left:-2.652000px;}
._a_c01350{margin-left:-1.530000px;}
._b_c01350{width:1.530000px;}
._4_c01350{width:3.468000px;}
._3_c01350{width:5.304000px;}
._1b_c01350{width:6.333000px;}
._2_c01350{width:7.344000px;}
._f_c01350{width:8.991000px;}
._13_c01350{width:10.254000px;}
._e_c01350{width:11.400000px;}
._19_c01350{width:12.639000px;}
._14_c01350{width:13.770000px;}
._11_c01350{width:15.186000px;}
._18_c01350{width:16.803000px;}
._1e_c01350{width:17.808000px;}
._15_c01350{width:18.813000px;}
._1a_c01350{width:21.498000px;}
._1d_c01350{width:23.916000px;}
._16_c01350{width:25.986000px;}
._20_c01350{width:27.201000px;}
._1c_c01350{width:31.080000px;}
._d_c01350{width:60.930000px;}
.fc2_c01350{color:transparent;}
.fc1_c01350{color:rgb(128,128,128);}
.fc0_c01350{color:rgb(0,0,0);}
.fs6_c01350{font-size:48.000000px;}
.fs4_c01350{font-size:57.000000px;}
.fs3_c01350{font-size:72.000000px;}
.fs5_c01350{font-size:78.000000px;}
.fs2_c01350{font-size:81.000000px;}
.fs0_c01350{font-size:102.000000px;}
.fs1_c01350{font-size:120.000000px;}
.y0_c01350{bottom:0.000000px;}
.y25_c01350{bottom:3.105000px;}
.y24_c01350{bottom:7.228369px;}
.y23_c01350{bottom:83.970000px;}
.y22_c01350{bottom:109.620000px;}
.y21_c01350{bottom:134.370000px;}
.y20_c01350{bottom:159.270000px;}
.y1f_c01350{bottom:183.870000px;}
.y1e_c01350{bottom:208.920000px;}
.y1d_c01350{bottom:233.820000px;}
.y1c_c01350{bottom:257.520000px;}
.y1b_c01350{bottom:282.420000px;}
.y1a_c01350{bottom:306.720000px;}
.y19_c01350{bottom:331.020000px;}
.y18_c01350{bottom:355.770000px;}
.y17_c01350{bottom:380.670000px;}
.y16_c01350{bottom:404.670000px;}
.y15_c01350{bottom:428.670000px;}
.y14_c01350{bottom:453.270000px;}
.y13_c01350{bottom:477.270000px;}
.y12_c01350{bottom:501.570000px;}
.y11_c01350{bottom:525.420000px;}
.y10_c01350{bottom:551.370000px;}
.yf_c01350{bottom:573.720000px;}
.ye_c01350{bottom:598.020000px;}
.yd_c01350{bottom:622.020000px;}
.yc_c01350{bottom:645.870000px;}
.yb_c01350{bottom:670.620000px;}
.ya_c01350{bottom:695.520000px;}
.y9_c01350{bottom:720.120000px;}
.y8_c01350{bottom:743.220000px;}
.y7_c01350{bottom:767.520000px;}
.y6_c01350{bottom:791.670000px;}
.y5_c01350{bottom:815.670000px;}
.y4_c01350{bottom:839.670000px;}
.y3_c01350{bottom:863.670000px;}
.y2_c01350{bottom:887.670000px;}
.y1_c01350{bottom:925.320000px;}
.h7_c01350{height:13.200073px;}
.h8_c01350{height:43.804688px;}
.h3_c01350{height:79.497070px;}
.h4_c01350{height:84.269531px;}
.h5_c01350{height:91.160156px;}
.h6_c01350{height:98.756836px;}
.h2_c01350{height:120.937500px;}
.h1_c01350{height:986.250000px;}
.h0_c01350{height:986.550000px;}
.w1_c01350{width:104.875500px;}
.w0_c01350{width:672.000000px;}
.x0_c01350{left:0.000000px;}
.x6_c01350{left:53.100000px;}
.x4_c01350{left:57.150000px;}
.x7_c01350{left:59.700000px;}
.x2_c01350{left:61.050000px;}
.x3_c01350{left:62.100000px;}
.x8_c01350{left:63.150000px;}
.x5_c01350{left:64.200000px;}
.x1_c01350{left:67.800000px;}
.x9_c01350{left:287.814240px;}
@media print{
.v0_c01350{vertical-align:0.000000pt;}
.ls3_c01350{letter-spacing:0.000000pt;}
.ls1_c01350{letter-spacing:2.666667pt;}
.ls2_c01350{letter-spacing:5.333333pt;}
.ls0_c01350{letter-spacing:7.824000pt;}
.ws0_c01350{word-spacing:-15.424000pt;}
.ws2_c01350{word-spacing:-12.210667pt;}
.ws1_c01350{word-spacing:-0.253333pt;}
.ws3_c01350{word-spacing:0.000000pt;}
._0_c01350{margin-left:-21.397333pt;}
._1_c01350{margin-left:-17.680000pt;}
._1f_c01350{margin-left:-15.640000pt;}
._17_c01350{margin-left:-12.864000pt;}
._5_c01350{margin-left:-10.880000pt;}
._9_c01350{margin-left:-9.066667pt;}
._10_c01350{margin-left:-7.640000pt;}
._c_c01350{margin-left:-6.528000pt;}
._7_c01350{margin-left:-5.349333pt;}
._8_c01350{margin-left:-4.352000pt;}
._6_c01350{margin-left:-3.264000pt;}
._12_c01350{margin-left:-2.357333pt;}
._a_c01350{margin-left:-1.360000pt;}
._b_c01350{width:1.360000pt;}
._4_c01350{width:3.082667pt;}
._3_c01350{width:4.714667pt;}
._1b_c01350{width:5.629333pt;}
._2_c01350{width:6.528000pt;}
._f_c01350{width:7.992000pt;}
._13_c01350{width:9.114667pt;}
._e_c01350{width:10.133333pt;}
._19_c01350{width:11.234667pt;}
._14_c01350{width:12.240000pt;}
._11_c01350{width:13.498667pt;}
._18_c01350{width:14.936000pt;}
._1e_c01350{width:15.829333pt;}
._15_c01350{width:16.722667pt;}
._1a_c01350{width:19.109333pt;}
._1d_c01350{width:21.258667pt;}
._16_c01350{width:23.098667pt;}
._20_c01350{width:24.178667pt;}
._1c_c01350{width:27.626667pt;}
._d_c01350{width:54.160000pt;}
.fs6_c01350{font-size:42.666667pt;}
.fs4_c01350{font-size:50.666667pt;}
.fs3_c01350{font-size:64.000000pt;}
.fs5_c01350{font-size:69.333333pt;}
.fs2_c01350{font-size:72.000000pt;}
.fs0_c01350{font-size:90.666667pt;}
.fs1_c01350{font-size:106.666667pt;}
.y0_c01350{bottom:0.000000pt;}
.y25_c01350{bottom:2.760000pt;}
.y24_c01350{bottom:6.425217pt;}
.y23_c01350{bottom:74.640000pt;}
.y22_c01350{bottom:97.440000pt;}
.y21_c01350{bottom:119.440000pt;}
.y20_c01350{bottom:141.573333pt;}
.y1f_c01350{bottom:163.440000pt;}
.y1e_c01350{bottom:185.706667pt;}
.y1d_c01350{bottom:207.840000pt;}
.y1c_c01350{bottom:228.906667pt;}
.y1b_c01350{bottom:251.040000pt;}
.y1a_c01350{bottom:272.640000pt;}
.y19_c01350{bottom:294.240000pt;}
.y18_c01350{bottom:316.240000pt;}
.y17_c01350{bottom:338.373333pt;}
.y16_c01350{bottom:359.706667pt;}
.y15_c01350{bottom:381.040000pt;}
.y14_c01350{bottom:402.906667pt;}
.y13_c01350{bottom:424.240000pt;}
.y12_c01350{bottom:445.840000pt;}
.y11_c01350{bottom:467.040000pt;}
.y10_c01350{bottom:490.106667pt;}
.yf_c01350{bottom:509.973333pt;}
.ye_c01350{bottom:531.573333pt;}
.yd_c01350{bottom:552.906667pt;}
.yc_c01350{bottom:574.106667pt;}
.yb_c01350{bottom:596.106667pt;}
.ya_c01350{bottom:618.240000pt;}
.y9_c01350{bottom:640.106667pt;}
.y8_c01350{bottom:660.640000pt;}
.y7_c01350{bottom:682.240000pt;}
.y6_c01350{bottom:703.706667pt;}
.y5_c01350{bottom:725.040000pt;}
.y4_c01350{bottom:746.373333pt;}
.y3_c01350{bottom:767.706667pt;}
.y2_c01350{bottom:789.040000pt;}
.y1_c01350{bottom:822.506667pt;}
.h7_c01350{height:11.733399pt;}
.h8_c01350{height:38.937500pt;}
.h3_c01350{height:70.664062pt;}
.h4_c01350{height:74.906250pt;}
.h5_c01350{height:81.031250pt;}
.h6_c01350{height:87.783854pt;}
.h2_c01350{height:107.500000pt;}
.h1_c01350{height:876.666667pt;}
.h0_c01350{height:876.933333pt;}
.w1_c01350{width:93.222667pt;}
.w0_c01350{width:597.333333pt;}
.x0_c01350{left:0.000000pt;}
.x6_c01350{left:47.200000pt;}
.x4_c01350{left:50.800000pt;}
.x7_c01350{left:53.066667pt;}
.x2_c01350{left:54.266667pt;}
.x3_c01350{left:55.200000pt;}
.x8_c01350{left:56.133333pt;}
.x5_c01350{left:57.066667pt;}
.x1_c01350{left:60.266667pt;}
.x9_c01350{left:255.834880pt;}
}





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

.ir_c01351:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01351{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01351;src:url('chunks/assets/font_06d6d20d965730829aa6796d.woff2')format("woff");}.ff1_c01351{font-family:ff1_c01351;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01351;src:url('chunks/assets/font_98a02ad61c136bdcfc0d7f0a.woff2')format("woff");}.ff2_c01351{font-family:ff2_c01351;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01351;src:url('chunks/assets/font_b137cad8a15d3e7c754f8371.woff2')format("woff");}.ff3_c01351{font-family:ff3_c01351;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01351;src:url('chunks/assets/font_a94f2d9f0839394b7bee46b7.woff2')format("woff");}.ff4_c01351{font-family:ff4_c01351;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01351;src:url('chunks/assets/font_1f44786ae267d9a8571ee708.woff2')format("woff");}.ff5_c01351{font-family:ff5_c01351;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01351;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c01351{font-family:ff6_c01351;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01351{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01351{vertical-align:0.000000px;}
.ls0_c01351{letter-spacing:0.000000px;}
.ls1_c01351{letter-spacing:6.000000px;}
.sc__c01351{text-shadow:none;}
.sc0_c01351{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01351{-webkit-text-stroke:0px transparent;}
.sc0_c01351{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01351{word-spacing:-73.686000px;}
.ws2_c01351{word-spacing:-72.306000px;}
.ws1_c01351{word-spacing:-40.032000px;}
.ws3_c01351{word-spacing:-17.352000px;}
.ws4_c01351{word-spacing:0.000000px;}
._1d_c01351{margin-left:-23.328000px;}
._4_c01351{margin-left:-20.700000px;}
._1c_c01351{margin-left:-13.932000px;}
._14_c01351{margin-left:-11.628000px;}
._15_c01351{margin-left:-9.918000px;}
._f_c01351{margin-left:-7.614000px;}
._b_c01351{margin-left:-6.480000px;}
._10_c01351{margin-left:-5.265000px;}
._6_c01351{margin-left:-4.050000px;}
._3_c01351{margin-left:-2.511000px;}
._e_c01351{margin-left:-1.053000px;}
._8_c01351{width:1.134000px;}
._d_c01351{width:2.268000px;}
._5_c01351{width:3.321000px;}
._7_c01351{width:4.779000px;}
._2_c01351{width:6.318000px;}
._11_c01351{width:7.371000px;}
._1_c01351{width:8.424000px;}
._0_c01351{width:10.449000px;}
._16_c01351{width:11.502000px;}
._a_c01351{width:12.798000px;}
._17_c01351{width:13.851000px;}
._c_c01351{width:14.985000px;}
._1e_c01351{width:16.200000px;}
._9_c01351{width:17.334000px;}
._19_c01351{width:18.873000px;}
._13_c01351{width:24.453000px;}
._18_c01351{width:34.206000px;}
._1a_c01351{width:39.933000px;}
._1b_c01351{width:58.320000px;}
._12_c01351{width:776.547000px;}
.fc2_c01351{color:transparent;}
.fc1_c01351{color:rgb(128,128,128);}
.fc0_c01351{color:rgb(0,0,0);}
.fs5_c01351{font-size:48.000000px;}
.fs3_c01351{font-size:57.000000px;}
.fs2_c01351{font-size:72.000000px;}
.fs4_c01351{font-size:78.000000px;}
.fs0_c01351{font-size:81.000000px;}
.fs1_c01351{font-size:87.000000px;}
.y0_c01351{bottom:0.000000px;}
.y22_c01351{bottom:3.105000px;}
.y21_c01351{bottom:7.228371px;}
.y20_c01351{bottom:87.165000px;}
.y1f_c01351{bottom:112.515000px;}
.y1e_c01351{bottom:136.815000px;}
.y1d_c01351{bottom:162.765000px;}
.y1c_c01351{bottom:186.765000px;}
.y1b_c01351{bottom:211.065000px;}
.y1a_c01351{bottom:236.565000px;}
.y19_c01351{bottom:261.015000px;}
.y18_c01351{bottom:285.615000px;}
.y17_c01351{bottom:310.965000px;}
.y16_c01351{bottom:335.865000px;}
.y15_c01351{bottom:360.165000px;}
.y14_c01351{bottom:384.465000px;}
.y13_c01351{bottom:409.365000px;}
.y12_c01351{bottom:433.065000px;}
.y11_c01351{bottom:457.965000px;}
.y10_c01351{bottom:482.415000px;}
.yf_c01351{bottom:506.715000px;}
.ye_c01351{bottom:530.565000px;}
.yd_c01351{bottom:555.165000px;}
.yc_c01351{bottom:579.915000px;}
.yb_c01351{bottom:604.815000px;}
.ya_c01351{bottom:652.815000px;}
.y9_c01351{bottom:699.765000px;}
.y8_c01351{bottom:726.015000px;}
.y7_c01351{bottom:750.015000px;}
.y6_c01351{bottom:773.715000px;}
.y5_c01351{bottom:798.315000px;}
.y4_c01351{bottom:822.915000px;}
.y3_c01351{bottom:847.515000px;}
.y2_c01351{bottom:871.215000px;}
.y1_c01351{bottom:895.815000px;}
.h6_c01351{height:13.200074px;}
.h7_c01351{height:43.804688px;}
.h3_c01351{height:79.497070px;}
.h5_c01351{height:84.269531px;}
.h2_c01351{height:91.176000px;}
.h4_c01351{height:98.756836px;}
.h1_c01351{height:986.250000px;}
.h0_c01351{height:986.325000px;}
.w2_c01351{width:104.875500px;}
.w0_c01351{width:667.425000px;}
.w1_c01351{width:667.500000px;}
.x0_c01351{left:0.000000px;}
.x9_c01351{left:26.400000px;}
.x2_c01351{left:111.450000px;}
.x3_c01351{left:113.400000px;}
.x4_c01351{left:114.450000px;}
.x5_c01351{left:115.800000px;}
.xa_c01351{left:117.450000px;}
.xb_c01351{left:118.800000px;}
.xc_c01351{left:120.150000px;}
.xd_c01351{left:121.800000px;}
.x1_c01351{left:135.450000px;}
.x8_c01351{left:147.600000px;}
.x7_c01351{left:163.350000px;}
.x6_c01351{left:182.250000px;}
.xe_c01351{left:285.526749px;}
@media print{
.v0_c01351{vertical-align:0.000000pt;}
.ls0_c01351{letter-spacing:0.000000pt;}
.ls1_c01351{letter-spacing:5.333333pt;}
.ws0_c01351{word-spacing:-65.498667pt;}
.ws2_c01351{word-spacing:-64.272000pt;}
.ws1_c01351{word-spacing:-35.584000pt;}
.ws3_c01351{word-spacing:-15.424000pt;}
.ws4_c01351{word-spacing:0.000000pt;}
._1d_c01351{margin-left:-20.736000pt;}
._4_c01351{margin-left:-18.400000pt;}
._1c_c01351{margin-left:-12.384000pt;}
._14_c01351{margin-left:-10.336000pt;}
._15_c01351{margin-left:-8.816000pt;}
._f_c01351{margin-left:-6.768000pt;}
._b_c01351{margin-left:-5.760000pt;}
._10_c01351{margin-left:-4.680000pt;}
._6_c01351{margin-left:-3.600000pt;}
._3_c01351{margin-left:-2.232000pt;}
._e_c01351{margin-left:-0.936000pt;}
._8_c01351{width:1.008000pt;}
._d_c01351{width:2.016000pt;}
._5_c01351{width:2.952000pt;}
._7_c01351{width:4.248000pt;}
._2_c01351{width:5.616000pt;}
._11_c01351{width:6.552000pt;}
._1_c01351{width:7.488000pt;}
._0_c01351{width:9.288000pt;}
._16_c01351{width:10.224000pt;}
._a_c01351{width:11.376000pt;}
._17_c01351{width:12.312000pt;}
._c_c01351{width:13.320000pt;}
._1e_c01351{width:14.400000pt;}
._9_c01351{width:15.408000pt;}
._19_c01351{width:16.776000pt;}
._13_c01351{width:21.736000pt;}
._18_c01351{width:30.405333pt;}
._1a_c01351{width:35.496000pt;}
._1b_c01351{width:51.840000pt;}
._12_c01351{width:690.264000pt;}
.fs5_c01351{font-size:42.666667pt;}
.fs3_c01351{font-size:50.666667pt;}
.fs2_c01351{font-size:64.000000pt;}
.fs4_c01351{font-size:69.333333pt;}
.fs0_c01351{font-size:72.000000pt;}
.fs1_c01351{font-size:77.333333pt;}
.y0_c01351{bottom:0.000000pt;}
.y22_c01351{bottom:2.760000pt;}
.y21_c01351{bottom:6.425219pt;}
.y20_c01351{bottom:77.480000pt;}
.y1f_c01351{bottom:100.013333pt;}
.y1e_c01351{bottom:121.613333pt;}
.y1d_c01351{bottom:144.680000pt;}
.y1c_c01351{bottom:166.013333pt;}
.y1b_c01351{bottom:187.613333pt;}
.y1a_c01351{bottom:210.280000pt;}
.y19_c01351{bottom:232.013333pt;}
.y18_c01351{bottom:253.880000pt;}
.y17_c01351{bottom:276.413333pt;}
.y16_c01351{bottom:298.546667pt;}
.y15_c01351{bottom:320.146667pt;}
.y14_c01351{bottom:341.746667pt;}
.y13_c01351{bottom:363.880000pt;}
.y12_c01351{bottom:384.946667pt;}
.y11_c01351{bottom:407.080000pt;}
.y10_c01351{bottom:428.813333pt;}
.yf_c01351{bottom:450.413333pt;}
.ye_c01351{bottom:471.613333pt;}
.yd_c01351{bottom:493.480000pt;}
.yc_c01351{bottom:515.480000pt;}
.yb_c01351{bottom:537.613333pt;}
.ya_c01351{bottom:580.280000pt;}
.y9_c01351{bottom:622.013333pt;}
.y8_c01351{bottom:645.346667pt;}
.y7_c01351{bottom:666.680000pt;}
.y6_c01351{bottom:687.746667pt;}
.y5_c01351{bottom:709.613333pt;}
.y4_c01351{bottom:731.480000pt;}
.y3_c01351{bottom:753.346667pt;}
.y2_c01351{bottom:774.413333pt;}
.y1_c01351{bottom:796.280000pt;}
.h6_c01351{height:11.733399pt;}
.h7_c01351{height:38.937500pt;}
.h3_c01351{height:70.664062pt;}
.h5_c01351{height:74.906250pt;}
.h2_c01351{height:81.045333pt;}
.h4_c01351{height:87.783854pt;}
.h1_c01351{height:876.666667pt;}
.h0_c01351{height:876.733333pt;}
.w2_c01351{width:93.222667pt;}
.w0_c01351{width:593.266667pt;}
.w1_c01351{width:593.333333pt;}
.x0_c01351{left:0.000000pt;}
.x9_c01351{left:23.466667pt;}
.x2_c01351{left:99.066667pt;}
.x3_c01351{left:100.800000pt;}
.x4_c01351{left:101.733333pt;}
.x5_c01351{left:102.933333pt;}
.xa_c01351{left:104.400000pt;}
.xb_c01351{left:105.600000pt;}
.xc_c01351{left:106.800000pt;}
.xd_c01351{left:108.266667pt;}
.x1_c01351{left:120.400000pt;}
.x8_c01351{left:131.200000pt;}
.x7_c01351{left:145.200000pt;}
.x6_c01351{left:162.000000pt;}
.xe_c01351{left:253.801554pt;}
}





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

.ir_c01352:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01352{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01352;src:url('chunks/assets/font_8782c31c3f8aa725679b62d4.woff2')format("woff");}.ff1_c01352{font-family:ff1_c01352;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01352;src:url('chunks/assets/font_14f0322659a662ea707b882f.woff2')format("woff");}.ff2_c01352{font-family:ff2_c01352;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01352;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff3_c01352{font-family:ff3_c01352;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01352{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01352{vertical-align:0.000000px;}
.ls1_c01352{letter-spacing:0.000000px;}
.ls0_c01352{letter-spacing:10.236000px;}
.sc__c01352{text-shadow:none;}
.sc0_c01352{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01352{-webkit-text-stroke:0px transparent;}
.sc0_c01352{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01352{word-spacing:0.000000px;}
._1f_c01352{margin-left:-16.848000px;}
._1e_c01352{margin-left:-15.066000px;}
._1a_c01352{margin-left:-13.932000px;}
._11_c01352{margin-left:-11.016000px;}
._17_c01352{margin-left:-8.829000px;}
._4_c01352{margin-left:-6.399000px;}
._9_c01352{margin-left:-4.455000px;}
._3_c01352{margin-left:-2.430000px;}
._1_c01352{margin-left:-1.296000px;}
._2_c01352{width:1.782000px;}
._0_c01352{width:2.997000px;}
._7_c01352{width:4.455000px;}
._6_c01352{width:5.751000px;}
._5_c01352{width:7.209000px;}
._d_c01352{width:8.667000px;}
._16_c01352{width:9.801000px;}
._a_c01352{width:10.854000px;}
._8_c01352{width:12.231000px;}
._12_c01352{width:13.932000px;}
._10_c01352{width:15.147000px;}
._e_c01352{width:17.172000px;}
._15_c01352{width:18.549000px;}
._b_c01352{width:22.680000px;}
._18_c01352{width:25.110000px;}
._1d_c01352{width:31.104000px;}
._c_c01352{width:32.967000px;}
._f_c01352{width:36.531000px;}
._14_c01352{width:39.933000px;}
._19_c01352{width:98.820000px;}
._1c_c01352{width:152.847000px;}
._13_c01352{width:173.826000px;}
._20_c01352{width:294.420000px;}
._1b_c01352{width:330.399000px;}
.fc2_c01352{color:transparent;}
.fc1_c01352{color:rgb(128,128,128);}
.fc0_c01352{color:rgb(0,0,0);}
.fs3_c01352{font-size:48.000000px;}
.fs2_c01352{font-size:78.000000px;}
.fs0_c01352{font-size:81.000000px;}
.fs1_c01352{font-size:93.000000px;}
.y0_c01352{bottom:0.000000px;}
.y25_c01352{bottom:3.105000px;}
.y24_c01352{bottom:7.228369px;}
.y23_c01352{bottom:58.320000px;}
.y22_c01352{bottom:83.370000px;}
.y21_c01352{bottom:108.570000px;}
.y20_c01352{bottom:133.320000px;}
.y1f_c01352{bottom:158.220000px;}
.y1e_c01352{bottom:183.270000px;}
.y1d_c01352{bottom:207.570000px;}
.y1c_c01352{bottom:232.470000px;}
.y1b_c01352{bottom:256.470000px;}
.y1a_c01352{bottom:281.070000px;}
.y19_c01352{bottom:305.670000px;}
.y18_c01352{bottom:330.120000px;}
.y17_c01352{bottom:354.720000px;}
.y16_c01352{bottom:379.320000px;}
.y15_c01352{bottom:403.620000px;}
.y14_c01352{bottom:427.320000px;}
.y13_c01352{bottom:451.920000px;}
.y12_c01352{bottom:476.220000px;}
.y11_c01352{bottom:500.520000px;}
.y10_c01352{bottom:524.820000px;}
.yf_c01352{bottom:548.370000px;}
.ye_c01352{bottom:572.670000px;}
.yd_c01352{bottom:597.270000px;}
.yc_c01352{bottom:621.270000px;}
.yb_c01352{bottom:645.870000px;}
.ya_c01352{bottom:670.170000px;}
.y9_c01352{bottom:693.870000px;}
.y8_c01352{bottom:718.770000px;}
.y7_c01352{bottom:742.770000px;}
.y6_c01352{bottom:767.520000px;}
.y5_c01352{bottom:790.770000px;}
.y4_c01352{bottom:816.270000px;}
.y3_c01352{bottom:840.270000px;}
.y2_c01352{bottom:864.270000px;}
.y1_c01352{bottom:888.270000px;}
.h3_c01352{height:13.200073px;}
.h4_c01352{height:43.804688px;}
.h1_c01352{height:79.497070px;}
.h2_c01352{height:91.274414px;}
.h0_c01352{height:975.750000px;}
.w2_c01352{width:104.875500px;}
.w0_c01352{width:664.200000px;}
.w1_c01352{width:664.500000px;}
.x0_c01352{left:0.000000px;}
.x6_c01352{left:36.750000px;}
.x7_c01352{left:38.700000px;}
.x2_c01352{left:55.050000px;}
.x1_c01352{left:56.700000px;}
.x4_c01352{left:57.750000px;}
.x5_c01352{left:58.800000px;}
.x3_c01352{left:81.450000px;}
.x9_c01352{left:283.914230px;}
.x8_c01352{left:377.700000px;}
@media print{
.v0_c01352{vertical-align:0.000000pt;}
.ls1_c01352{letter-spacing:0.000000pt;}
.ls0_c01352{letter-spacing:9.098667pt;}
.ws0_c01352{word-spacing:0.000000pt;}
._1f_c01352{margin-left:-14.976000pt;}
._1e_c01352{margin-left:-13.392000pt;}
._1a_c01352{margin-left:-12.384000pt;}
._11_c01352{margin-left:-9.792000pt;}
._17_c01352{margin-left:-7.848000pt;}
._4_c01352{margin-left:-5.688000pt;}
._9_c01352{margin-left:-3.960000pt;}
._3_c01352{margin-left:-2.160000pt;}
._1_c01352{margin-left:-1.152000pt;}
._2_c01352{width:1.584000pt;}
._0_c01352{width:2.664000pt;}
._7_c01352{width:3.960000pt;}
._6_c01352{width:5.112000pt;}
._5_c01352{width:6.408000pt;}
._d_c01352{width:7.704000pt;}
._16_c01352{width:8.712000pt;}
._a_c01352{width:9.648000pt;}
._8_c01352{width:10.872000pt;}
._12_c01352{width:12.384000pt;}
._10_c01352{width:13.464000pt;}
._e_c01352{width:15.264000pt;}
._15_c01352{width:16.488000pt;}
._b_c01352{width:20.160000pt;}
._18_c01352{width:22.320000pt;}
._1d_c01352{width:27.648000pt;}
._c_c01352{width:29.304000pt;}
._f_c01352{width:32.472000pt;}
._14_c01352{width:35.496000pt;}
._19_c01352{width:87.840000pt;}
._1c_c01352{width:135.864000pt;}
._13_c01352{width:154.512000pt;}
._20_c01352{width:261.706667pt;}
._1b_c01352{width:293.688000pt;}
.fs3_c01352{font-size:42.666667pt;}
.fs2_c01352{font-size:69.333333pt;}
.fs0_c01352{font-size:72.000000pt;}
.fs1_c01352{font-size:82.666667pt;}
.y0_c01352{bottom:0.000000pt;}
.y25_c01352{bottom:2.760000pt;}
.y24_c01352{bottom:6.425217pt;}
.y23_c01352{bottom:51.840000pt;}
.y22_c01352{bottom:74.106667pt;}
.y21_c01352{bottom:96.506667pt;}
.y20_c01352{bottom:118.506667pt;}
.y1f_c01352{bottom:140.640000pt;}
.y1e_c01352{bottom:162.906667pt;}
.y1d_c01352{bottom:184.506667pt;}
.y1c_c01352{bottom:206.640000pt;}
.y1b_c01352{bottom:227.973333pt;}
.y1a_c01352{bottom:249.840000pt;}
.y19_c01352{bottom:271.706667pt;}
.y18_c01352{bottom:293.440000pt;}
.y17_c01352{bottom:315.306667pt;}
.y16_c01352{bottom:337.173333pt;}
.y15_c01352{bottom:358.773333pt;}
.y14_c01352{bottom:379.840000pt;}
.y13_c01352{bottom:401.706667pt;}
.y12_c01352{bottom:423.306667pt;}
.y11_c01352{bottom:444.906667pt;}
.y10_c01352{bottom:466.506667pt;}
.yf_c01352{bottom:487.440000pt;}
.ye_c01352{bottom:509.040000pt;}
.yd_c01352{bottom:530.906667pt;}
.yc_c01352{bottom:552.240000pt;}
.yb_c01352{bottom:574.106667pt;}
.ya_c01352{bottom:595.706667pt;}
.y9_c01352{bottom:616.773333pt;}
.y8_c01352{bottom:638.906667pt;}
.y7_c01352{bottom:660.240000pt;}
.y6_c01352{bottom:682.240000pt;}
.y5_c01352{bottom:702.906667pt;}
.y4_c01352{bottom:725.573333pt;}
.y3_c01352{bottom:746.906667pt;}
.y2_c01352{bottom:768.240000pt;}
.y1_c01352{bottom:789.573333pt;}
.h3_c01352{height:11.733399pt;}
.h4_c01352{height:38.937500pt;}
.h1_c01352{height:70.664062pt;}
.h2_c01352{height:81.132812pt;}
.h0_c01352{height:867.333333pt;}
.w2_c01352{width:93.222667pt;}
.w0_c01352{width:590.400000pt;}
.w1_c01352{width:590.666667pt;}
.x0_c01352{left:0.000000pt;}
.x6_c01352{left:32.666667pt;}
.x7_c01352{left:34.400000pt;}
.x2_c01352{left:48.933333pt;}
.x1_c01352{left:50.400000pt;}
.x4_c01352{left:51.333333pt;}
.x5_c01352{left:52.266667pt;}
.x3_c01352{left:72.400000pt;}
.x9_c01352{left:252.368205pt;}
.x8_c01352{left:335.733333pt;}
}





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

.ir_c01353:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01353{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01353;src:url('chunks/assets/font_e171e9d0e7170ba2b7b0bb4c.woff2')format("woff");}.ff1_c01353{font-family:ff1_c01353;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01353;src:url('chunks/assets/font_2a3e5bc81c2742c4710bb472.woff2')format("woff");}.ff2_c01353{font-family:ff2_c01353;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01353;src:url('chunks/assets/font_23d6d8229b5254612bd9f33f.woff2')format("woff");}.ff3_c01353{font-family:ff3_c01353;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01353;src:url('chunks/assets/font_ce362a6b3c6b11128adee1ae.woff2')format("woff");}.ff4_c01353{font-family:ff4_c01353;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01353;src:url('chunks/assets/font_632086027b9ba4cfdcd244f0.woff2')format("woff");}.ff5_c01353{font-family:ff5_c01353;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01353;src:url('chunks/assets/font_618073a15ec77eb4e3670021.woff2')format("woff");}.ff6_c01353{font-family:ff6_c01353;line-height:1.284180;font-style:normal;font-weight: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_c01353;src:url('chunks/assets/font_1a1dbea517f69a6f5d980888.woff2')format("woff");}.ff7_c01353{font-family:ff7_c01353;line-height:1.284180;font-style:normal;font-weight: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_c01353;src:url('chunks/assets/font_a0d7fed034a071056ccfd3ab.woff2')format("woff");}.ff8_c01353{font-family:ff8_c01353;line-height:1.311035;font-style:normal;font-weight: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_c01353;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff9_c01353{font-family:ff9_c01353;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01353{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01353{vertical-align:0.000000px;}
.ls4_c01353{letter-spacing:0.000000px;}
.ls3_c01353{letter-spacing:0.171000px;}
.ls2_c01353{letter-spacing:4.950000px;}
.ls1_c01353{letter-spacing:6.000000px;}
.ls0_c01353{letter-spacing:6.900000px;}
.sc__c01353{text-shadow:none;}
.sc0_c01353{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01353{-webkit-text-stroke:0px transparent;}
.sc0_c01353{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01353{word-spacing:-23.700000px;}
.ws0_c01353{word-spacing:-17.352000px;}
.ws1_c01353{word-spacing:-15.000000px;}
.ws3_c01353{word-spacing:-2.700000px;}
.ws4_c01353{word-spacing:0.000000px;}
._14_c01353{margin-left:-62.649000px;}
._15_c01353{margin-left:-40.296000px;}
._22_c01353{margin-left:-28.755000px;}
._2a_c01353{margin-left:-27.720000px;}
._11_c01353{margin-left:-23.733000px;}
._34_c01353{margin-left:-21.657000px;}
._19_c01353{margin-left:-20.007000px;}
._21_c01353{margin-left:-18.099000px;}
._23_c01353{margin-left:-16.650000px;}
._39_c01353{margin-left:-14.985000px;}
._24_c01353{margin-left:-13.800000px;}
._32_c01353{margin-left:-12.600000px;}
._1c_c01353{margin-left:-11.583000px;}
._1a_c01353{margin-left:-10.572000px;}
._a_c01353{margin-left:-9.315000px;}
._c_c01353{margin-left:-8.100000px;}
._1_c01353{margin-left:-6.075000px;}
._7_c01353{margin-left:-4.779000px;}
._10_c01353{margin-left:-3.564000px;}
._13_c01353{margin-left:-2.475000px;}
._5_c01353{margin-left:-1.377000px;}
._0_c01353{width:1.863000px;}
._4_c01353{width:3.564000px;}
._3_c01353{width:4.860000px;}
._2_c01353{width:5.994000px;}
._9_c01353{width:7.371000px;}
._8_c01353{width:8.424000px;}
._f_c01353{width:9.558000px;}
._6_c01353{width:11.583000px;}
._d_c01353{width:13.365000px;}
._25_c01353{width:14.862000px;}
._18_c01353{width:16.119000px;}
._b_c01353{width:18.063000px;}
._27_c01353{width:19.893000px;}
._2d_c01353{width:20.940000px;}
._1f_c01353{width:21.960000px;}
._17_c01353{width:23.733000px;}
._36_c01353{width:26.811000px;}
._2f_c01353{width:28.440000px;}
._16_c01353{width:30.780000px;}
._3a_c01353{width:34.740000px;}
._31_c01353{width:38.016000px;}
._33_c01353{width:44.136000px;}
._2b_c01353{width:51.696000px;}
._30_c01353{width:64.710000px;}
._28_c01353{width:69.186000px;}
._2e_c01353{width:73.200000px;}
._38_c01353{width:74.487000px;}
._2c_c01353{width:75.969000px;}
._1e_c01353{width:103.923000px;}
._12_c01353{width:110.583000px;}
._37_c01353{width:167.148000px;}
._1d_c01353{width:183.708000px;}
._35_c01353{width:209.568000px;}
._26_c01353{width:214.644000px;}
._1b_c01353{width:336.399000px;}
._e_c01353{width:344.007000px;}
._29_c01353{width:345.267000px;}
._20_c01353{width:378.027000px;}
.fc2_c01353{color:transparent;}
.fc1_c01353{color:rgb(128,128,128);}
.fc0_c01353{color:rgb(0,0,0);}
.fs6_c01353{font-size:48.000000px;}
.fs3_c01353{font-size:60.000000px;}
.fs4_c01353{font-size:69.000000px;}
.fs1_c01353{font-size:72.000000px;}
.fs5_c01353{font-size:75.000000px;}
.fs0_c01353{font-size:81.000000px;}
.fs2_c01353{font-size:87.000000px;}
.y0_c01353{bottom:0.000000px;}
.y24_c01353{bottom:3.105000px;}
.y23_c01353{bottom:7.228371px;}
.y22_c01353{bottom:88.215000px;}
.y21_c01353{bottom:113.865000px;}
.y20_c01353{bottom:138.465000px;}
.y1f_c01353{bottom:163.365000px;}
.y1e_c01353{bottom:188.115000px;}
.y1d_c01353{bottom:212.415000px;}
.y1c_c01353{bottom:237.315000px;}
.y1b_c01353{bottom:261.915000px;}
.y1a_c01353{bottom:286.665000px;}
.y19_c01353{bottom:309.615000px;}
.y18_c01353{bottom:335.265000px;}
.y17_c01353{bottom:359.865000px;}
.y16_c01353{bottom:384.465000px;}
.y15_c01353{bottom:410.865000px;}
.y14_c01353{bottom:433.815000px;}
.y13_c01353{bottom:458.415000px;}
.y12_c01353{bottom:482.715000px;}
.y11_c01353{bottom:507.315000px;}
.y10_c01353{bottom:531.615000px;}
.yf_c01353{bottom:555.315000px;}
.ye_c01353{bottom:579.615000px;}
.yd_c01353{bottom:604.215000px;}
.yc_c01353{bottom:628.515000px;}
.yb_c01353{bottom:651.465000px;}
.ya_c01353{bottom:677.415000px;}
.y9_c01353{bottom:702.315000px;}
.y8_c01353{bottom:726.315000px;}
.y7_c01353{bottom:751.965000px;}
.y6_c01353{bottom:775.215000px;}
.y5_c01353{bottom:798.315000px;}
.y4_c01353{bottom:823.515000px;}
.y3_c01353{bottom:845.565000px;}
.y2_c01353{bottom:872.115000px;}
.y1_c01353{bottom:896.115000px;}
.h9_c01353{height:13.200074px;}
.ha_c01353{height:43.804688px;}
.h8_c01353{height:73.571777px;}
.h7_c01353{height:73.608398px;}
.h2_c01353{height:79.497070px;}
.h3_c01353{height:84.269531px;}
.h6_c01353{height:87.361816px;}
.h5_c01353{height:91.160156px;}
.h4_c01353{height:91.176000px;}
.h1_c01353{height:986.250000px;}
.h0_c01353{height:986.325000px;}
.w2_c01353{width:104.875500px;}
.w0_c01353{width:667.425000px;}
.w1_c01353{width:667.500000px;}
.x0_c01353{left:0.000000px;}
.x9_c01353{left:27.600000px;}
.x2_c01353{left:28.650000px;}
.x7_c01353{left:30.000000px;}
.x8_c01353{left:38.850000px;}
.xa_c01353{left:47.250000px;}
.xb_c01353{left:54.900000px;}
.xc_c01353{left:70.650000px;}
.x3_c01353{left:84.600000px;}
.x1_c01353{left:120.150000px;}
.x4_c01353{left:122.400000px;}
.x6_c01353{left:123.750000px;}
.x5_c01353{left:147.150000px;}
.xd_c01353{left:285.526749px;}
@media print{
.v0_c01353{vertical-align:0.000000pt;}
.ls4_c01353{letter-spacing:0.000000pt;}
.ls3_c01353{letter-spacing:0.152000pt;}
.ls2_c01353{letter-spacing:4.400000pt;}
.ls1_c01353{letter-spacing:5.333333pt;}
.ls0_c01353{letter-spacing:6.133333pt;}
.ws2_c01353{word-spacing:-21.066667pt;}
.ws0_c01353{word-spacing:-15.424000pt;}
.ws1_c01353{word-spacing:-13.333333pt;}
.ws3_c01353{word-spacing:-2.400000pt;}
.ws4_c01353{word-spacing:0.000000pt;}
._14_c01353{margin-left:-55.688000pt;}
._15_c01353{margin-left:-35.818667pt;}
._22_c01353{margin-left:-25.560000pt;}
._2a_c01353{margin-left:-24.640000pt;}
._11_c01353{margin-left:-21.096000pt;}
._34_c01353{margin-left:-19.250667pt;}
._19_c01353{margin-left:-17.784000pt;}
._21_c01353{margin-left:-16.088000pt;}
._23_c01353{margin-left:-14.800000pt;}
._39_c01353{margin-left:-13.320000pt;}
._24_c01353{margin-left:-12.266667pt;}
._32_c01353{margin-left:-11.200000pt;}
._1c_c01353{margin-left:-10.296000pt;}
._1a_c01353{margin-left:-9.397333pt;}
._a_c01353{margin-left:-8.280000pt;}
._c_c01353{margin-left:-7.200000pt;}
._1_c01353{margin-left:-5.400000pt;}
._7_c01353{margin-left:-4.248000pt;}
._10_c01353{margin-left:-3.168000pt;}
._13_c01353{margin-left:-2.200000pt;}
._5_c01353{margin-left:-1.224000pt;}
._0_c01353{width:1.656000pt;}
._4_c01353{width:3.168000pt;}
._3_c01353{width:4.320000pt;}
._2_c01353{width:5.328000pt;}
._9_c01353{width:6.552000pt;}
._8_c01353{width:7.488000pt;}
._f_c01353{width:8.496000pt;}
._6_c01353{width:10.296000pt;}
._d_c01353{width:11.880000pt;}
._25_c01353{width:13.210667pt;}
._18_c01353{width:14.328000pt;}
._b_c01353{width:16.056000pt;}
._27_c01353{width:17.682667pt;}
._2d_c01353{width:18.613333pt;}
._1f_c01353{width:19.520000pt;}
._17_c01353{width:21.096000pt;}
._36_c01353{width:23.832000pt;}
._2f_c01353{width:25.280000pt;}
._16_c01353{width:27.360000pt;}
._3a_c01353{width:30.880000pt;}
._31_c01353{width:33.792000pt;}
._33_c01353{width:39.232000pt;}
._2b_c01353{width:45.952000pt;}
._30_c01353{width:57.520000pt;}
._28_c01353{width:61.498667pt;}
._2e_c01353{width:65.066667pt;}
._38_c01353{width:66.210667pt;}
._2c_c01353{width:67.528000pt;}
._1e_c01353{width:92.376000pt;}
._12_c01353{width:98.296000pt;}
._37_c01353{width:148.576000pt;}
._1d_c01353{width:163.296000pt;}
._35_c01353{width:186.282667pt;}
._26_c01353{width:190.794667pt;}
._1b_c01353{width:299.021333pt;}
._e_c01353{width:305.784000pt;}
._29_c01353{width:306.904000pt;}
._20_c01353{width:336.024000pt;}
.fs6_c01353{font-size:42.666667pt;}
.fs3_c01353{font-size:53.333333pt;}
.fs4_c01353{font-size:61.333333pt;}
.fs1_c01353{font-size:64.000000pt;}
.fs5_c01353{font-size:66.666667pt;}
.fs0_c01353{font-size:72.000000pt;}
.fs2_c01353{font-size:77.333333pt;}
.y0_c01353{bottom:0.000000pt;}
.y24_c01353{bottom:2.760000pt;}
.y23_c01353{bottom:6.425219pt;}
.y22_c01353{bottom:78.413333pt;}
.y21_c01353{bottom:101.213333pt;}
.y20_c01353{bottom:123.080000pt;}
.y1f_c01353{bottom:145.213333pt;}
.y1e_c01353{bottom:167.213333pt;}
.y1d_c01353{bottom:188.813333pt;}
.y1c_c01353{bottom:210.946667pt;}
.y1b_c01353{bottom:232.813333pt;}
.y1a_c01353{bottom:254.813333pt;}
.y19_c01353{bottom:275.213333pt;}
.y18_c01353{bottom:298.013333pt;}
.y17_c01353{bottom:319.880000pt;}
.y16_c01353{bottom:341.746667pt;}
.y15_c01353{bottom:365.213333pt;}
.y14_c01353{bottom:385.613333pt;}
.y13_c01353{bottom:407.480000pt;}
.y12_c01353{bottom:429.080000pt;}
.y11_c01353{bottom:450.946667pt;}
.y10_c01353{bottom:472.546667pt;}
.yf_c01353{bottom:493.613333pt;}
.ye_c01353{bottom:515.213333pt;}
.yd_c01353{bottom:537.080000pt;}
.yc_c01353{bottom:558.680000pt;}
.yb_c01353{bottom:579.080000pt;}
.ya_c01353{bottom:602.146667pt;}
.y9_c01353{bottom:624.280000pt;}
.y8_c01353{bottom:645.613333pt;}
.y7_c01353{bottom:668.413333pt;}
.y6_c01353{bottom:689.080000pt;}
.y5_c01353{bottom:709.613333pt;}
.y4_c01353{bottom:732.013333pt;}
.y3_c01353{bottom:751.613333pt;}
.y2_c01353{bottom:775.213333pt;}
.y1_c01353{bottom:796.546667pt;}
.h9_c01353{height:11.733399pt;}
.ha_c01353{height:38.937500pt;}
.h8_c01353{height:65.397135pt;}
.h7_c01353{height:65.429688pt;}
.h2_c01353{height:70.664062pt;}
.h3_c01353{height:74.906250pt;}
.h6_c01353{height:77.654948pt;}
.h5_c01353{height:81.031250pt;}
.h4_c01353{height:81.045333pt;}
.h1_c01353{height:876.666667pt;}
.h0_c01353{height:876.733333pt;}
.w2_c01353{width:93.222667pt;}
.w0_c01353{width:593.266667pt;}
.w1_c01353{width:593.333333pt;}
.x0_c01353{left:0.000000pt;}
.x9_c01353{left:24.533333pt;}
.x2_c01353{left:25.466667pt;}
.x7_c01353{left:26.666667pt;}
.x8_c01353{left:34.533333pt;}
.xa_c01353{left:42.000000pt;}
.xb_c01353{left:48.800000pt;}
.xc_c01353{left:62.800000pt;}
.x3_c01353{left:75.200000pt;}
.x1_c01353{left:106.800000pt;}
.x4_c01353{left:108.800000pt;}
.x6_c01353{left:110.000000pt;}
.x5_c01353{left:130.800000pt;}
.xd_c01353{left:253.801554pt;}
}





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

.ir_c01354:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01354{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01354;src:url('chunks/assets/font_a32725494007a9b229e7e196.woff2')format("woff");}.ff1_c01354{font-family:ff1_c01354;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01354;src:url('chunks/assets/font_a1a0ec0ccb58edfb6cccdb72.woff2')format("woff");}.ff2_c01354{font-family:ff2_c01354;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01354;src:url('chunks/assets/font_2b5aeeeef48dfc72ba9fad72.woff2')format("woff");}.ff3_c01354{font-family:ff3_c01354;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01354;src:url('chunks/assets/font_363cc9f6a529346e36e4f483.woff2')format("woff");}.ff4_c01354{font-family:ff4_c01354;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01354;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff5_c01354{font-family:ff5_c01354;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01354;src:url('chunks/assets/font_d598530b17d3ec08af517aac.woff2')format("woff");}.ff6_c01354{font-family:ff6_c01354;line-height:1.437000;font-style:normal;font-weight: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_c01354;src:url('chunks/assets/font_4f426ac4c1e51322fa2b628d.woff2')format("woff");}.ff7_c01354{font-family:ff7_c01354;line-height:1.437000;font-style:normal;font-weight: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_c01354;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff8_c01354{font-family:ff8_c01354;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01354{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01354{vertical-align:0.000000px;}
.ls3_c01354{letter-spacing:0.000000px;}
.ls0_c01354{letter-spacing:0.300000px;}
.ls2_c01354{letter-spacing:3.000000px;}
.ls1_c01354{letter-spacing:6.000000px;}
.sc__c01354{text-shadow:none;}
.sc0_c01354{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01354{-webkit-text-stroke:0px transparent;}
.sc0_c01354{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01354{word-spacing:-73.686000px;}
.ws0_c01354{word-spacing:-28.500000px;}
.ws3_c01354{word-spacing:-17.352000px;}
.ws4_c01354{word-spacing:0.000000px;}
.ws1_c01354{word-spacing:3.912000px;}
._19_c01354{margin-left:-29.586000px;}
._1e_c01354{margin-left:-26.100000px;}
._5_c01354{margin-left:-20.502000px;}
._1a_c01354{margin-left:-16.062000px;}
._1c_c01354{margin-left:-13.284000px;}
._3_c01354{margin-left:-11.628000px;}
._23_c01354{margin-left:-10.077000px;}
._1_c01354{margin-left:-8.700000px;}
._22_c01354{margin-left:-7.545000px;}
._6_c01354{margin-left:-5.916000px;}
._7_c01354{margin-left:-4.488000px;}
._8_c01354{margin-left:-3.468000px;}
._2_c01354{margin-left:-2.346000px;}
._4_c01354{margin-left:-1.122000px;}
._0_c01354{width:1.530000px;}
._10_c01354{width:2.667000px;}
._f_c01354{width:3.705000px;}
._a_c01354{width:5.610000px;}
._e_c01354{width:7.269000px;}
._15_c01354{width:8.580000px;}
._d_c01354{width:10.206000px;}
._16_c01354{width:11.442000px;}
._9_c01354{width:12.852000px;}
._b_c01354{width:13.974000px;}
._24_c01354{width:15.171000px;}
._11_c01354{width:16.806000px;}
._21_c01354{width:19.182000px;}
._12_c01354{width:20.304000px;}
._14_c01354{width:22.212000px;}
._13_c01354{width:24.984000px;}
._18_c01354{width:29.121000px;}
._25_c01354{width:30.987000px;}
._1f_c01354{width:35.799000px;}
._1d_c01354{width:42.714000px;}
._1b_c01354{width:49.815000px;}
._c_c01354{width:69.357000px;}
._26_c01354{width:74.541000px;}
._20_c01354{width:100.482000px;}
._17_c01354{width:230.208000px;}
.fc2_c01354{color:transparent;}
.fc1_c01354{color:rgb(128,128,128);}
.fc0_c01354{color:rgb(0,0,0);}
.fs4_c01354{font-size:36.000000px;}
.fs8_c01354{font-size:48.000000px;}
.fs5_c01354{font-size:54.000000px;}
.fs6_c01354{font-size:72.000000px;}
.fs3_c01354{font-size:81.000000px;}
.fs7_c01354{font-size:84.000000px;}
.fs2_c01354{font-size:87.000000px;}
.fs0_c01354{font-size:102.000000px;}
.fs1_c01354{font-size:129.000000px;}
.y0_c01354{bottom:0.000000px;}
.y26_c01354{bottom:3.105000px;}
.y25_c01354{bottom:7.228369px;}
.y24_c01354{bottom:64.170000px;}
.y23_c01354{bottom:88.320000px;}
.y22_c01354{bottom:113.970000px;}
.y21_c01354{bottom:138.270000px;}
.y20_c01354{bottom:163.020000px;}
.y1f_c01354{bottom:188.220000px;}
.y1e_c01354{bottom:211.920000px;}
.y1d_c01354{bottom:236.970000px;}
.y1c_c01354{bottom:261.270000px;}
.y1b_c01354{bottom:286.170000px;}
.y1a_c01354{bottom:309.870000px;}
.y19_c01354{bottom:335.070000px;}
.y18_c01354{bottom:359.370000px;}
.y17_c01354{bottom:383.670000px;}
.y16_c01354{bottom:408.420000px;}
.y15_c01354{bottom:432.570000px;}
.y14_c01354{bottom:456.870000px;}
.y13_c01354{bottom:481.620000px;}
.y12_c01354{bottom:505.920000px;}
.y11_c01354{bottom:529.470000px;}
.y10_c01354{bottom:554.070000px;}
.yf_c01354{bottom:578.370000px;}
.ye_c01354{bottom:602.820000px;}
.yd_c01354{bottom:626.970000px;}
.yc_c01354{bottom:652.020000px;}
.yb_c01354{bottom:676.320000px;}
.ya_c01354{bottom:700.320000px;}
.y9_c01354{bottom:724.320000px;}
.y8_c01354{bottom:748.470000px;}
.y7_c01354{bottom:773.520000px;}
.y6_c01354{bottom:797.520000px;}
.y5_c01354{bottom:822.420000px;}
.y4_c01354{bottom:846.120000px;}
.y3_c01354{bottom:870.720000px;}
.y2_c01354{bottom:895.320000px;}
.y1_c01354{bottom:926.670000px;}
.h8_c01354{height:13.200073px;}
.h9_c01354{height:43.804688px;}
.h3_c01354{height:79.497070px;}
.h4_c01354{height:84.269531px;}
.h7_c01354{height:84.656250px;}
.h5_c01354{height:91.160156px;}
.h6_c01354{height:91.176000px;}
.h2_c01354{height:126.543457px;}
.h1_c01354{height:986.250000px;}
.h0_c01354{height:986.550000px;}
.w1_c01354{width:104.875500px;}
.w0_c01354{width:672.000000px;}
.x0_c01354{left:0.000000px;}
.x9_c01354{left:50.250000px;}
.x8_c01354{left:53.400000px;}
.x7_c01354{left:55.650000px;}
.x6_c01354{left:56.700000px;}
.x5_c01354{left:57.750000px;}
.x4_c01354{left:59.100000px;}
.x3_c01354{left:60.150000px;}
.x2_c01354{left:62.400000px;}
.x1_c01354{left:81.750000px;}
.xb_c01354{left:287.814240px;}
.xa_c01354{left:415.800000px;}
@media print{
.v0_c01354{vertical-align:0.000000pt;}
.ls3_c01354{letter-spacing:0.000000pt;}
.ls0_c01354{letter-spacing:0.266667pt;}
.ls2_c01354{letter-spacing:2.666667pt;}
.ls1_c01354{letter-spacing:5.333333pt;}
.ws2_c01354{word-spacing:-65.498667pt;}
.ws0_c01354{word-spacing:-25.333333pt;}
.ws3_c01354{word-spacing:-15.424000pt;}
.ws4_c01354{word-spacing:0.000000pt;}
.ws1_c01354{word-spacing:3.477333pt;}
._19_c01354{margin-left:-26.298667pt;}
._1e_c01354{margin-left:-23.200000pt;}
._5_c01354{margin-left:-18.224000pt;}
._1a_c01354{margin-left:-14.277333pt;}
._1c_c01354{margin-left:-11.808000pt;}
._3_c01354{margin-left:-10.336000pt;}
._23_c01354{margin-left:-8.957333pt;}
._1_c01354{margin-left:-7.733333pt;}
._22_c01354{margin-left:-6.706667pt;}
._6_c01354{margin-left:-5.258667pt;}
._7_c01354{margin-left:-3.989333pt;}
._8_c01354{margin-left:-3.082667pt;}
._2_c01354{margin-left:-2.085333pt;}
._4_c01354{margin-left:-0.997333pt;}
._0_c01354{width:1.360000pt;}
._10_c01354{width:2.370667pt;}
._f_c01354{width:3.293333pt;}
._a_c01354{width:4.986667pt;}
._e_c01354{width:6.461333pt;}
._15_c01354{width:7.626667pt;}
._d_c01354{width:9.072000pt;}
._16_c01354{width:10.170667pt;}
._9_c01354{width:11.424000pt;}
._b_c01354{width:12.421333pt;}
._24_c01354{width:13.485333pt;}
._11_c01354{width:14.938667pt;}
._21_c01354{width:17.050667pt;}
._12_c01354{width:18.048000pt;}
._14_c01354{width:19.744000pt;}
._13_c01354{width:22.208000pt;}
._18_c01354{width:25.885333pt;}
._25_c01354{width:27.544000pt;}
._1f_c01354{width:31.821333pt;}
._1d_c01354{width:37.968000pt;}
._1b_c01354{width:44.280000pt;}
._c_c01354{width:61.650667pt;}
._26_c01354{width:66.258667pt;}
._20_c01354{width:89.317333pt;}
._17_c01354{width:204.629333pt;}
.fs4_c01354{font-size:32.000000pt;}
.fs8_c01354{font-size:42.666667pt;}
.fs5_c01354{font-size:48.000000pt;}
.fs6_c01354{font-size:64.000000pt;}
.fs3_c01354{font-size:72.000000pt;}
.fs7_c01354{font-size:74.666667pt;}
.fs2_c01354{font-size:77.333333pt;}
.fs0_c01354{font-size:90.666667pt;}
.fs1_c01354{font-size:114.666667pt;}
.y0_c01354{bottom:0.000000pt;}
.y26_c01354{bottom:2.760000pt;}
.y25_c01354{bottom:6.425217pt;}
.y24_c01354{bottom:57.040000pt;}
.y23_c01354{bottom:78.506667pt;}
.y22_c01354{bottom:101.306667pt;}
.y21_c01354{bottom:122.906667pt;}
.y20_c01354{bottom:144.906667pt;}
.y1f_c01354{bottom:167.306667pt;}
.y1e_c01354{bottom:188.373333pt;}
.y1d_c01354{bottom:210.640000pt;}
.y1c_c01354{bottom:232.240000pt;}
.y1b_c01354{bottom:254.373333pt;}
.y1a_c01354{bottom:275.440000pt;}
.y19_c01354{bottom:297.840000pt;}
.y18_c01354{bottom:319.440000pt;}
.y17_c01354{bottom:341.040000pt;}
.y16_c01354{bottom:363.040000pt;}
.y15_c01354{bottom:384.506667pt;}
.y14_c01354{bottom:406.106667pt;}
.y13_c01354{bottom:428.106667pt;}
.y12_c01354{bottom:449.706667pt;}
.y11_c01354{bottom:470.640000pt;}
.y10_c01354{bottom:492.506667pt;}
.yf_c01354{bottom:514.106667pt;}
.ye_c01354{bottom:535.840000pt;}
.yd_c01354{bottom:557.306667pt;}
.yc_c01354{bottom:579.573333pt;}
.yb_c01354{bottom:601.173333pt;}
.ya_c01354{bottom:622.506667pt;}
.y9_c01354{bottom:643.840000pt;}
.y8_c01354{bottom:665.306667pt;}
.y7_c01354{bottom:687.573333pt;}
.y6_c01354{bottom:708.906667pt;}
.y5_c01354{bottom:731.040000pt;}
.y4_c01354{bottom:752.106667pt;}
.y3_c01354{bottom:773.973333pt;}
.y2_c01354{bottom:795.840000pt;}
.y1_c01354{bottom:823.706667pt;}
.h8_c01354{height:11.733399pt;}
.h9_c01354{height:38.937500pt;}
.h3_c01354{height:70.664062pt;}
.h4_c01354{height:74.906250pt;}
.h7_c01354{height:75.250000pt;}
.h5_c01354{height:81.031250pt;}
.h6_c01354{height:81.045333pt;}
.h2_c01354{height:112.483073pt;}
.h1_c01354{height:876.666667pt;}
.h0_c01354{height:876.933333pt;}
.w1_c01354{width:93.222667pt;}
.w0_c01354{width:597.333333pt;}
.x0_c01354{left:0.000000pt;}
.x9_c01354{left:44.666667pt;}
.x8_c01354{left:47.466667pt;}
.x7_c01354{left:49.466667pt;}
.x6_c01354{left:50.400000pt;}
.x5_c01354{left:51.333333pt;}
.x4_c01354{left:52.533333pt;}
.x3_c01354{left:53.466667pt;}
.x2_c01354{left:55.466667pt;}
.x1_c01354{left:72.666667pt;}
.xb_c01354{left:255.834880pt;}
.xa_c01354{left:369.600000pt;}
}





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

.ir_c01355:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01355{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01355;src:url('chunks/assets/font_2e62a1603a40238022f055d2.woff2')format("woff");}.ff1_c01355{font-family:ff1_c01355;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01355;src:url('chunks/assets/font_531d512120c9b49e0e78aa35.woff2')format("woff");}.ff2_c01355{font-family:ff2_c01355;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01355;src:url('chunks/assets/font_80319685b49f8d55db4adc5a.woff2')format("woff");}.ff3_c01355{font-family:ff3_c01355;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01355;src:url('chunks/assets/font_af51e54bac818a5f2de3770b.woff2')format("woff");}.ff4_c01355{font-family:ff4_c01355;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01355;src:url('chunks/assets/font_7b92287921b4382ea7f57145.woff2')format("woff");}.ff5_c01355{font-family:ff5_c01355;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01355;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c01355{font-family:ff6_c01355;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01355{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01355{vertical-align:0.000000px;}
.ls1_c01355{letter-spacing:0.000000px;}
.ls2_c01355{letter-spacing:27.000000px;}
.ls0_c01355{letter-spacing:181.800000px;}
.sc__c01355{text-shadow:none;}
.sc0_c01355{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01355{-webkit-text-stroke:0px transparent;}
.sc0_c01355{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c01355{word-spacing:-100.116000px;}
.ws2_c01355{word-spacing:-80.649000px;}
.ws0_c01355{word-spacing:-41.700000px;}
.ws1_c01355{word-spacing:-21.000000px;}
.ws3_c01355{word-spacing:-20.250000px;}
.ws5_c01355{word-spacing:0.000000px;}
._3_c01355{margin-left:-23.688000px;}
._14_c01355{margin-left:-15.774000px;}
._16_c01355{margin-left:-11.907000px;}
._4_c01355{margin-left:-8.988000px;}
._7_c01355{margin-left:-5.124000px;}
._6_c01355{margin-left:-3.696000px;}
._1_c01355{margin-left:-2.436000px;}
._0_c01355{margin-left:-1.008000px;}
._5_c01355{width:1.260000px;}
._2_c01355{width:2.604000px;}
._f_c01355{width:3.807000px;}
._a_c01355{width:4.860000px;}
._b_c01355{width:6.480000px;}
._d_c01355{width:7.614000px;}
._c_c01355{width:8.829000px;}
._9_c01355{width:10.776000px;}
._12_c01355{width:12.156000px;}
._10_c01355{width:14.232000px;}
._11_c01355{width:16.260000px;}
._e_c01355{width:18.384000px;}
._13_c01355{width:22.176000px;}
._18_c01355{width:28.914000px;}
._15_c01355{width:32.979000px;}
._8_c01355{width:35.112000px;}
._17_c01355{width:326.511000px;}
.fc2_c01355{color:transparent;}
.fc1_c01355{color:rgb(128,128,128);}
.fc0_c01355{color:rgb(0,0,0);}
.fs6_c01355{font-size:48.000000px;}
.fs2_c01355{font-size:72.000000px;}
.fs3_c01355{font-size:75.000000px;}
.fs1_c01355{font-size:81.000000px;}
.fs0_c01355{font-size:84.000000px;}
.fs4_c01355{font-size:87.000000px;}
.fs5_c01355{font-size:108.000000px;}
.y0_c01355{bottom:0.000000px;}
.yf_c01355{bottom:3.105000px;}
.ye_c01355{bottom:7.228371px;}
.yd_c01355{bottom:340.665000px;}
.yc_c01355{bottom:562.665000px;}
.yb_c01355{bottom:636.165000px;}
.ya_c01355{bottom:666.315000px;}
.y9_c01355{bottom:689.865000px;}
.y8_c01355{bottom:714.165000px;}
.y7_c01355{bottom:740.115000px;}
.y6_c01355{bottom:762.465000px;}
.y5_c01355{bottom:788.115000px;}
.y4_c01355{bottom:811.665000px;}
.y3_c01355{bottom:835.965000px;}
.y2_c01355{bottom:859.965000px;}
.y1_c01355{bottom:883.965000px;}
.h6_c01355{height:13.200074px;}
.h7_c01355{height:43.804688px;}
.h3_c01355{height:79.497070px;}
.h2_c01355{height:84.656250px;}
.h4_c01355{height:110.151855px;}
.h5_c01355{height:136.740234px;}
.h0_c01355{height:963.375000px;}
.h1_c01355{height:963.750000px;}
.w1_c01355{width:104.875500px;}
.w0_c01355{width:651.750000px;}
.x0_c01355{left:0.000000px;}
.x4_c01355{left:23.400000px;}
.x6_c01355{left:24.600000px;}
.x5_c01355{left:26.400000px;}
.x2_c01355{left:109.650000px;}
.x1_c01355{left:111.450000px;}
.x3_c01355{left:113.100000px;}
.x7_c01355{left:199.500000px;}
.xd_c01355{left:277.689240px;}
.x8_c01355{left:290.550000px;}
.x9_c01355{left:337.200000px;}
.xa_c01355{left:353.100000px;}
.xc_c01355{left:375.600000px;}
.xb_c01355{left:465.150000px;}
@media print{
.v0_c01355{vertical-align:0.000000pt;}
.ls1_c01355{letter-spacing:0.000000pt;}
.ls2_c01355{letter-spacing:24.000000pt;}
.ls0_c01355{letter-spacing:161.600000pt;}
.ws4_c01355{word-spacing:-88.992000pt;}
.ws2_c01355{word-spacing:-71.688000pt;}
.ws0_c01355{word-spacing:-37.066667pt;}
.ws1_c01355{word-spacing:-18.666667pt;}
.ws3_c01355{word-spacing:-18.000000pt;}
.ws5_c01355{word-spacing:0.000000pt;}
._3_c01355{margin-left:-21.056000pt;}
._14_c01355{margin-left:-14.021333pt;}
._16_c01355{margin-left:-10.584000pt;}
._4_c01355{margin-left:-7.989333pt;}
._7_c01355{margin-left:-4.554667pt;}
._6_c01355{margin-left:-3.285333pt;}
._1_c01355{margin-left:-2.165333pt;}
._0_c01355{margin-left:-0.896000pt;}
._5_c01355{width:1.120000pt;}
._2_c01355{width:2.314667pt;}
._f_c01355{width:3.384000pt;}
._a_c01355{width:4.320000pt;}
._b_c01355{width:5.760000pt;}
._d_c01355{width:6.768000pt;}
._c_c01355{width:7.848000pt;}
._9_c01355{width:9.578667pt;}
._12_c01355{width:10.805333pt;}
._10_c01355{width:12.650667pt;}
._11_c01355{width:14.453333pt;}
._e_c01355{width:16.341333pt;}
._13_c01355{width:19.712000pt;}
._18_c01355{width:25.701333pt;}
._15_c01355{width:29.314667pt;}
._8_c01355{width:31.210667pt;}
._17_c01355{width:290.232000pt;}
.fs6_c01355{font-size:42.666667pt;}
.fs2_c01355{font-size:64.000000pt;}
.fs3_c01355{font-size:66.666667pt;}
.fs1_c01355{font-size:72.000000pt;}
.fs0_c01355{font-size:74.666667pt;}
.fs4_c01355{font-size:77.333333pt;}
.fs5_c01355{font-size:96.000000pt;}
.y0_c01355{bottom:0.000000pt;}
.yf_c01355{bottom:2.760000pt;}
.ye_c01355{bottom:6.425219pt;}
.yd_c01355{bottom:302.813333pt;}
.yc_c01355{bottom:500.146667pt;}
.yb_c01355{bottom:565.480000pt;}
.ya_c01355{bottom:592.280000pt;}
.y9_c01355{bottom:613.213333pt;}
.y8_c01355{bottom:634.813333pt;}
.y7_c01355{bottom:657.880000pt;}
.y6_c01355{bottom:677.746667pt;}
.y5_c01355{bottom:700.546667pt;}
.y4_c01355{bottom:721.480000pt;}
.y3_c01355{bottom:743.080000pt;}
.y2_c01355{bottom:764.413333pt;}
.y1_c01355{bottom:785.746667pt;}
.h6_c01355{height:11.733399pt;}
.h7_c01355{height:38.937500pt;}
.h3_c01355{height:70.664062pt;}
.h2_c01355{height:75.250000pt;}
.h4_c01355{height:97.912760pt;}
.h5_c01355{height:121.546875pt;}
.h0_c01355{height:856.333333pt;}
.h1_c01355{height:856.666667pt;}
.w1_c01355{width:93.222667pt;}
.w0_c01355{width:579.333333pt;}
.x0_c01355{left:0.000000pt;}
.x4_c01355{left:20.800000pt;}
.x6_c01355{left:21.866667pt;}
.x5_c01355{left:23.466667pt;}
.x2_c01355{left:97.466667pt;}
.x1_c01355{left:99.066667pt;}
.x3_c01355{left:100.533333pt;}
.x7_c01355{left:177.333333pt;}
.xd_c01355{left:246.834880pt;}
.x8_c01355{left:258.266667pt;}
.x9_c01355{left:299.733333pt;}
.xa_c01355{left:313.866667pt;}
.xc_c01355{left:333.866667pt;}
.xb_c01355{left:413.466667pt;}
}





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

.ir_c01356:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01356{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01356;src:url('chunks/assets/font_0c3002ed9bd58122fa1e93e3.woff2')format("woff");}.ff1_c01356{font-family:ff1_c01356;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01356;src:url('chunks/assets/font_89da31eaa047f5a41f50903f.woff2')format("woff");}.ff2_c01356{font-family:ff2_c01356;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01356;src:url('chunks/assets/font_8c575dbe19d6d7b3ca5141fb.woff2')format("woff");}.ff3_c01356{font-family:ff3_c01356;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01356;src:url('chunks/assets/font_961854b77511ea907071dee6.woff2')format("woff");}.ff4_c01356{font-family:ff4_c01356;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01356;src:url('chunks/assets/font_e3acc439d2732c704ac0589e.woff2')format("woff");}.ff5_c01356{font-family:ff5_c01356;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01356;src:url('chunks/assets/font_12a50e5c22692067bef424c8.woff2')format("woff");}.ff6_c01356{font-family:ff6_c01356;line-height:1.437000;font-style:normal;font-weight: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_c01356;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c01356{font-family:ff7_c01356;line-height:1.219238;font-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_c01356{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m0_c01356{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01356{vertical-align:0.000000px;}
.ls5_c01356{letter-spacing:0.000000px;}
.ls0_c01356{letter-spacing:2.100000px;}
.ls1_c01356{letter-spacing:3.000000px;}
.ls4_c01356{letter-spacing:6.000000px;}
.ls3_c01356{letter-spacing:9.000000px;}
.ls2_c01356{letter-spacing:27.000000px;}
.sc__c01356{text-shadow:none;}
.sc0_c01356{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01356{-webkit-text-stroke:0px transparent;}
.sc0_c01356{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01356{word-spacing:-21.000000px;}
.ws1_c01356{word-spacing:-20.250000px;}
.ws3_c01356{word-spacing:-14.250000px;}
.ws2_c01356{word-spacing:-1.623000px;}
.ws4_c01356{word-spacing:0.000000px;}
._3_c01356{margin-left:-32.940000px;}
._2_c01356{margin-left:-27.432000px;}
._8_c01356{margin-left:-22.356000px;}
._16_c01356{margin-left:-19.404000px;}
._15_c01356{margin-left:-17.148000px;}
._13_c01356{margin-left:-15.456000px;}
._17_c01356{margin-left:-13.524000px;}
._6_c01356{margin-left:-11.448000px;}
._5_c01356{margin-left:-9.828000px;}
._9_c01356{margin-left:-8.808000px;}
._19_c01356{margin-left:-7.323000px;}
._18_c01356{margin-left:-6.123000px;}
._14_c01356{margin-left:-4.692000px;}
._0_c01356{margin-left:-3.348000px;}
._a_c01356{margin-left:-1.944000px;}
._12_c01356{width:1.596000px;}
._c_c01356{width:3.240000px;}
._d_c01356{width:4.941000px;}
._f_c01356{width:6.885000px;}
._e_c01356{width:8.586000px;}
._11_c01356{width:10.044000px;}
._1_c01356{width:11.232000px;}
._b_c01356{width:12.960000px;}
._1a_c01356{width:14.010000px;}
._7_c01356{width:16.092000px;}
._10_c01356{width:17.739000px;}
._1d_c01356{width:20.133000px;}
._4_c01356{width:22.356000px;}
._1c_c01356{width:27.804000px;}
._1b_c01356{width:37.539000px;}
._1e_c01356{width:298.080000px;}
.fc2_c01356{color:transparent;}
.fc1_c01356{color:rgb(128,128,128);}
.fc0_c01356{color:rgb(0,0,0);}
.fs7_c01356{font-size:48.000000px;}
.fs5_c01356{font-size:57.000000px;}
.fs6_c01356{font-size:72.000000px;}
.fs1_c01356{font-size:81.000000px;}
.fs2_c01356{font-size:84.000000px;}
.fs4_c01356{font-size:87.000000px;}
.fs0_c01356{font-size:108.000000px;}
.fs3_c01356{font-size:279.000000px;}
.y0_c01356{bottom:0.000000px;}
.y23_c01356{bottom:3.105000px;}
.y22_c01356{bottom:7.228369px;}
.y21_c01356{bottom:57.720000px;}
.y20_c01356{bottom:82.920000px;}
.y1f_c01356{bottom:108.270000px;}
.y1e_c01356{bottom:133.620000px;}
.y1d_c01356{bottom:157.920000px;}
.y1c_c01356{bottom:182.820000px;}
.y1b_c01356{bottom:207.870000px;}
.y1a_c01356{bottom:232.470000px;}
.y19_c01356{bottom:257.070000px;}
.y18_c01356{bottom:281.670000px;}
.y17_c01356{bottom:305.970000px;}
.y16_c01356{bottom:331.020000px;}
.y15_c01356{bottom:355.020000px;}
.y14_c01356{bottom:379.620000px;}
.y13_c01356{bottom:404.220000px;}
.y12_c01356{bottom:428.970000px;}
.y11_c01356{bottom:453.120000px;}
.y10_c01356{bottom:478.170000px;}
.yf_c01356{bottom:502.170000px;}
.ye_c01356{bottom:525.720000px;}
.yd_c01356{bottom:550.470000px;}
.yc_c01356{bottom:574.770000px;}
.yb_c01356{bottom:599.070000px;}
.ya_c01356{bottom:623.670000px;}
.y9_c01356{bottom:647.970000px;}
.y6_c01356{bottom:661.770000px;}
.y8_c01356{bottom:673.920000px;}
.y7_c01356{bottom:699.270000px;}
.y5_c01356{bottom:742.770000px;}
.y4_c01356{bottom:771.870000px;}
.y3_c01356{bottom:801.120000px;}
.y2_c01356{bottom:853.920000px;}
.y1_c01356{bottom:886.920000px;}
.h9_c01356{height:13.200073px;}
.ha_c01356{height:43.804688px;}
.h8_c01356{height:57.445312px;}
.h6_c01356{height:79.497070px;}
.h4_c01356{height:82.400391px;}
.h3_c01356{height:82.441406px;}
.h7_c01356{height:91.176000px;}
.h2_c01356{height:102.555176px;}
.h1_c01356{height:136.740234px;}
.h5_c01356{height:281.179688px;}
.h0_c01356{height:975.750000px;}
.w2_c01356{width:104.875500px;}
.w0_c01356{width:664.200000px;}
.w1_c01356{width:664.500000px;}
.x0_c01356{left:0.000000px;}
.x1_c01356{left:72.000000px;}
.x3_c01356{left:73.650000px;}
.x6_c01356{left:78.300000px;}
.x9_c01356{left:79.350000px;}
.xc_c01356{left:82.650000px;}
.xf_c01356{left:86.100000px;}
.x12_c01356{left:87.450000px;}
.x13_c01356{left:90.150000px;}
.x16_c01356{left:92.250000px;}
.x18_c01356{left:94.200000px;}
.x7_c01356{left:97.200000px;}
.xa_c01356{left:102.600000px;}
.xb_c01356{left:105.900000px;}
.xd_c01356{left:108.300000px;}
.xe_c01356{left:109.350000px;}
.x10_c01356{left:110.400000px;}
.x11_c01356{left:111.750000px;}
.x14_c01356{left:114.450000px;}
.x17_c01356{left:116.100000px;}
.x15_c01356{left:117.750000px;}
.x8_c01356{left:119.100000px;}
.x4_c01356{left:133.350000px;}
.x2_c01356{left:168.150000px;}
.x5_c01356{left:270.450000px;}
.x1a_c01356{left:283.914230px;}
.x19_c01356{left:425.700000px;}
@media print{
.v0_c01356{vertical-align:0.000000pt;}
.ls5_c01356{letter-spacing:0.000000pt;}
.ls0_c01356{letter-spacing:1.866667pt;}
.ls1_c01356{letter-spacing:2.666667pt;}
.ls4_c01356{letter-spacing:5.333333pt;}
.ls3_c01356{letter-spacing:8.000000pt;}
.ls2_c01356{letter-spacing:24.000000pt;}
.ws0_c01356{word-spacing:-18.666667pt;}
.ws1_c01356{word-spacing:-18.000000pt;}
.ws3_c01356{word-spacing:-12.666667pt;}
.ws2_c01356{word-spacing:-1.442667pt;}
.ws4_c01356{word-spacing:0.000000pt;}
._3_c01356{margin-left:-29.280000pt;}
._2_c01356{margin-left:-24.384000pt;}
._8_c01356{margin-left:-19.872000pt;}
._16_c01356{margin-left:-17.248000pt;}
._15_c01356{margin-left:-15.242667pt;}
._13_c01356{margin-left:-13.738667pt;}
._17_c01356{margin-left:-12.021333pt;}
._6_c01356{margin-left:-10.176000pt;}
._5_c01356{margin-left:-8.736000pt;}
._9_c01356{margin-left:-7.829333pt;}
._19_c01356{margin-left:-6.509333pt;}
._18_c01356{margin-left:-5.442667pt;}
._14_c01356{margin-left:-4.170667pt;}
._0_c01356{margin-left:-2.976000pt;}
._a_c01356{margin-left:-1.728000pt;}
._12_c01356{width:1.418667pt;}
._c_c01356{width:2.880000pt;}
._d_c01356{width:4.392000pt;}
._f_c01356{width:6.120000pt;}
._e_c01356{width:7.632000pt;}
._11_c01356{width:8.928000pt;}
._1_c01356{width:9.984000pt;}
._b_c01356{width:11.520000pt;}
._1a_c01356{width:12.453333pt;}
._7_c01356{width:14.304000pt;}
._10_c01356{width:15.768000pt;}
._1d_c01356{width:17.896000pt;}
._4_c01356{width:19.872000pt;}
._1c_c01356{width:24.714667pt;}
._1b_c01356{width:33.368000pt;}
._1e_c01356{width:264.960000pt;}
.fs7_c01356{font-size:42.666667pt;}
.fs5_c01356{font-size:50.666667pt;}
.fs6_c01356{font-size:64.000000pt;}
.fs1_c01356{font-size:72.000000pt;}
.fs2_c01356{font-size:74.666667pt;}
.fs4_c01356{font-size:77.333333pt;}
.fs0_c01356{font-size:96.000000pt;}
.fs3_c01356{font-size:248.000000pt;}
.y0_c01356{bottom:0.000000pt;}
.y23_c01356{bottom:2.760000pt;}
.y22_c01356{bottom:6.425217pt;}
.y21_c01356{bottom:51.306667pt;}
.y20_c01356{bottom:73.706667pt;}
.y1f_c01356{bottom:96.240000pt;}
.y1e_c01356{bottom:118.773333pt;}
.y1d_c01356{bottom:140.373333pt;}
.y1c_c01356{bottom:162.506667pt;}
.y1b_c01356{bottom:184.773333pt;}
.y1a_c01356{bottom:206.640000pt;}
.y19_c01356{bottom:228.506667pt;}
.y18_c01356{bottom:250.373333pt;}
.y17_c01356{bottom:271.973333pt;}
.y16_c01356{bottom:294.240000pt;}
.y15_c01356{bottom:315.573333pt;}
.y14_c01356{bottom:337.440000pt;}
.y13_c01356{bottom:359.306667pt;}
.y12_c01356{bottom:381.306667pt;}
.y11_c01356{bottom:402.773333pt;}
.y10_c01356{bottom:425.040000pt;}
.yf_c01356{bottom:446.373333pt;}
.ye_c01356{bottom:467.306667pt;}
.yd_c01356{bottom:489.306667pt;}
.yc_c01356{bottom:510.906667pt;}
.yb_c01356{bottom:532.506667pt;}
.ya_c01356{bottom:554.373333pt;}
.y9_c01356{bottom:575.973333pt;}
.y6_c01356{bottom:588.240000pt;}
.y8_c01356{bottom:599.040000pt;}
.y7_c01356{bottom:621.573333pt;}
.y5_c01356{bottom:660.240000pt;}
.y4_c01356{bottom:686.106667pt;}
.y3_c01356{bottom:712.106667pt;}
.y2_c01356{bottom:759.040000pt;}
.y1_c01356{bottom:788.373333pt;}
.h9_c01356{height:11.733399pt;}
.ha_c01356{height:38.937500pt;}
.h8_c01356{height:51.062500pt;}
.h6_c01356{height:70.664062pt;}
.h4_c01356{height:73.244792pt;}
.h3_c01356{height:73.281250pt;}
.h7_c01356{height:81.045333pt;}
.h2_c01356{height:91.160156pt;}
.h1_c01356{height:121.546875pt;}
.h5_c01356{height:249.937500pt;}
.h0_c01356{height:867.333333pt;}
.w2_c01356{width:93.222667pt;}
.w0_c01356{width:590.400000pt;}
.w1_c01356{width:590.666667pt;}
.x0_c01356{left:0.000000pt;}
.x1_c01356{left:64.000000pt;}
.x3_c01356{left:65.466667pt;}
.x6_c01356{left:69.600000pt;}
.x9_c01356{left:70.533333pt;}
.xc_c01356{left:73.466667pt;}
.xf_c01356{left:76.533333pt;}
.x12_c01356{left:77.733333pt;}
.x13_c01356{left:80.133333pt;}
.x16_c01356{left:82.000000pt;}
.x18_c01356{left:83.733333pt;}
.x7_c01356{left:86.400000pt;}
.xa_c01356{left:91.200000pt;}
.xb_c01356{left:94.133333pt;}
.xd_c01356{left:96.266667pt;}
.xe_c01356{left:97.200000pt;}
.x10_c01356{left:98.133333pt;}
.x11_c01356{left:99.333333pt;}
.x14_c01356{left:101.733333pt;}
.x17_c01356{left:103.200000pt;}
.x15_c01356{left:104.666667pt;}
.x8_c01356{left:105.866667pt;}
.x4_c01356{left:118.533333pt;}
.x2_c01356{left:149.466667pt;}
.x5_c01356{left:240.400000pt;}
.x1a_c01356{left:252.368205pt;}
.x19_c01356{left:378.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_c01357 {
    display:none;
  }
  .loading-indicator_c01357.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01357 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01357 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01357" -> "#page-container .classname_c01357")
 */
.pf_c01357 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01357 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01357.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01357 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01357 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01357 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01357 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01357 {overflow:visible;}
  }
}
.c_c01357 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01357 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01357:after { /* webkit #35443 */
  content: '';
}
.t_c01357:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01357 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01357 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01357 { /* info for Javascript */
  display:none;
}
.l_c01357 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01357 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01357 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01357:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01357{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01357;src:url('chunks/assets/font_ed37a88221efec156a360f3b.woff2')format("woff");}.ff1_c01357{font-family:ff1_c01357;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01357;src:url('chunks/assets/font_c47fbf87a0566cffdab2d033.woff2')format("woff");}.ff2_c01357{font-family:ff2_c01357;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01357;src:url('chunks/assets/font_25e2e6292bdb2e1340e5caa7.woff2')format("woff");}.ff3_c01357{font-family:ff3_c01357;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01357;src:url('chunks/assets/font_713b3ba2b77a23414009deb5.woff2')format("woff");}.ff4_c01357{font-family:ff4_c01357;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01357;src:url('chunks/assets/font_4ebc043ba54626324aaf4ab0.woff2')format("woff");}.ff5_c01357{font-family:ff5_c01357;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01357;src:url('chunks/assets/font_34544b545b7d8dcb99d5845c.woff2')format("woff");}.ff6_c01357{font-family:ff6_c01357;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01357;src:url('chunks/assets/font_4c9d4b56367474d8ade54e55.woff2')format("woff");}.ff7_c01357{font-family:ff7_c01357;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c01357;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff8_c01357{font-family:ff8_c01357;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01357{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01357{vertical-align:-84.000000px;}
.v0_c01357{vertical-align:0.000000px;}
.ls2_c01357{letter-spacing:-3.000000px;}
.ls3_c01357{letter-spacing:0.000000px;}
.ls1_c01357{letter-spacing:3.000000px;}
.ls0_c01357{letter-spacing:9.000000px;}
.sc__c01357{text-shadow:none;}
.sc0_c01357{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01357{-webkit-text-stroke:0px transparent;}
.sc0_c01357{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c01357{word-spacing:-59.184000px;}
.ws2_c01357{word-spacing:-20.250000px;}
.ws1_c01357{word-spacing:-16.926000px;}
.ws0_c01357{word-spacing:-16.629000px;}
.ws4_c01357{word-spacing:0.000000px;}
._17_c01357{margin-left:-25.584000px;}
._19_c01357{margin-left:-21.060000px;}
._5_c01357{margin-left:-19.782000px;}
._3_c01357{margin-left:-17.388000px;}
._7_c01357{margin-left:-13.464000px;}
._2_c01357{margin-left:-10.080000px;}
._6_c01357{margin-left:-7.722000px;}
._b_c01357{margin-left:-6.396000px;}
._1b_c01357{margin-left:-5.109000px;}
._d_c01357{margin-left:-3.999000px;}
._8_c01357{margin-left:-2.565000px;}
._12_c01357{margin-left:-1.074000px;}
._11_c01357{width:1.491000px;}
._0_c01357{width:3.024000px;}
._a_c01357{width:4.104000px;}
._9_c01357{width:5.724000px;}
._1_c01357{width:6.804000px;}
._e_c01357{width:8.010000px;}
._c_c01357{width:9.888000px;}
._4_c01357{width:11.592000px;}
._f_c01357{width:12.939000px;}
._10_c01357{width:14.088000px;}
._16_c01357{width:15.882000px;}
._13_c01357{width:18.408000px;}
._14_c01357{width:20.724000px;}
._15_c01357{width:24.777000px;}
._1a_c01357{width:26.208000px;}
._18_c01357{width:33.774000px;}
._1c_c01357{width:1045.734000px;}
.fc2_c01357{color:transparent;}
.fc1_c01357{color:rgb(128,128,128);}
.fc0_c01357{color:rgb(0,0,0);}
.fs7_c01357{font-size:48.000000px;}
.fs4_c01357{font-size:57.000000px;}
.fs3_c01357{font-size:69.000000px;}
.fs2_c01357{font-size:72.000000px;}
.fs6_c01357{font-size:78.000000px;}
.fs5_c01357{font-size:81.000000px;}
.fs1_c01357{font-size:99.000000px;}
.fs0_c01357{font-size:126.000000px;}
.y0_c01357{bottom:0.000000px;}
.y25_c01357{bottom:3.105000px;}
.y24_c01357{bottom:7.228355px;}
.y23_c01357{bottom:72.585000px;}
.y22_c01357{bottom:97.785000px;}
.y21_c01357{bottom:124.185000px;}
.y20_c01357{bottom:147.735000px;}
.y1f_c01357{bottom:172.785000px;}
.y1e_c01357{bottom:197.685000px;}
.y1d_c01357{bottom:220.635000px;}
.y1c_c01357{bottom:247.035000px;}
.y1b_c01357{bottom:271.935000px;}
.y1a_c01357{bottom:295.935000px;}
.y19_c01357{bottom:320.835000px;}
.y18_c01357{bottom:345.285000px;}
.y17_c01357{bottom:368.085000px;}
.y16_c01357{bottom:394.485000px;}
.y15_c01357{bottom:418.785000px;}
.y14_c01357{bottom:442.785000px;}
.y13_c01357{bottom:467.685000px;}
.y12_c01357{bottom:493.035000px;}
.y11_c01357{bottom:516.735000px;}
.y10_c01357{bottom:541.635000px;}
.yf_c01357{bottom:565.635000px;}
.ye_c01357{bottom:590.535000px;}
.yd_c01357{bottom:614.835000px;}
.yc_c01357{bottom:639.135000px;}
.yb_c01357{bottom:663.735000px;}
.ya_c01357{bottom:687.735000px;}
.y9_c01357{bottom:712.335000px;}
.y8_c01357{bottom:736.785000px;}
.y7_c01357{bottom:760.935000px;}
.y6_c01357{bottom:785.385000px;}
.y5_c01357{bottom:809.985000px;}
.y4_c01357{bottom:834.285000px;}
.y3_c01357{bottom:858.585000px;}
.y2_c01357{bottom:882.585000px;}
.y1_c01357{bottom:909.885000px;}
.h9_c01357{height:13.200074px;}
.ha_c01357{height:43.804688px;}
.h4_c01357{height:79.497070px;}
.h5_c01357{height:83.226000px;}
.h6_c01357{height:87.361816px;}
.h8_c01357{height:91.160156px;}
.h3_c01357{height:97.114746px;}
.h7_c01357{height:98.756836px;}
.h2_c01357{height:159.530273px;}
.h1_c01357{height:975.000000px;}
.h0_c01357{height:975.225000px;}
.w2_c01357{width:104.875500px;}
.w0_c01357{width:659.850000px;}
.w1_c01357{width:660.000000px;}
.x0_c01357{left:0.000000px;}
.x15_c01357{left:106.950000px;}
.x13_c01357{left:109.350000px;}
.x12_c01357{left:111.300000px;}
.x10_c01357{left:113.700000px;}
.xe_c01357{left:115.350000px;}
.xc_c01357{left:116.400000px;}
.xd_c01357{left:117.750000px;}
.xa_c01357{left:118.800000px;}
.x14_c01357{left:120.150000px;}
.x11_c01357{left:121.500000px;}
.x6_c01357{left:122.550000px;}
.x5_c01357{left:123.900000px;}
.xf_c01357{left:125.100000px;}
.x3_c01357{left:126.900000px;}
.x8_c01357{left:127.950000px;}
.x9_c01357{left:132.000000px;}
.xb_c01357{left:133.200000px;}
.x7_c01357{left:134.550000px;}
.x2_c01357{left:141.150000px;}
.x4_c01357{left:148.950000px;}
.x16_c01357{left:281.739258px;}
.x1_c01357{left:289.650000px;}
@media print{
.v1_c01357{vertical-align:-74.666667pt;}
.v0_c01357{vertical-align:0.000000pt;}
.ls2_c01357{letter-spacing:-2.666667pt;}
.ls3_c01357{letter-spacing:0.000000pt;}
.ls1_c01357{letter-spacing:2.666667pt;}
.ls0_c01357{letter-spacing:8.000000pt;}
.ws3_c01357{word-spacing:-52.608000pt;}
.ws2_c01357{word-spacing:-18.000000pt;}
.ws1_c01357{word-spacing:-15.045333pt;}
.ws0_c01357{word-spacing:-14.781333pt;}
.ws4_c01357{word-spacing:0.000000pt;}
._17_c01357{margin-left:-22.741333pt;}
._19_c01357{margin-left:-18.720000pt;}
._5_c01357{margin-left:-17.584000pt;}
._3_c01357{margin-left:-15.456000pt;}
._7_c01357{margin-left:-11.968000pt;}
._2_c01357{margin-left:-8.960000pt;}
._6_c01357{margin-left:-6.864000pt;}
._b_c01357{margin-left:-5.685333pt;}
._1b_c01357{margin-left:-4.541333pt;}
._d_c01357{margin-left:-3.554667pt;}
._8_c01357{margin-left:-2.280000pt;}
._12_c01357{margin-left:-0.954667pt;}
._11_c01357{width:1.325333pt;}
._0_c01357{width:2.688000pt;}
._a_c01357{width:3.648000pt;}
._9_c01357{width:5.088000pt;}
._1_c01357{width:6.048000pt;}
._e_c01357{width:7.120000pt;}
._c_c01357{width:8.789333pt;}
._4_c01357{width:10.304000pt;}
._f_c01357{width:11.501333pt;}
._10_c01357{width:12.522667pt;}
._16_c01357{width:14.117333pt;}
._13_c01357{width:16.362667pt;}
._14_c01357{width:18.421333pt;}
._15_c01357{width:22.024000pt;}
._1a_c01357{width:23.296000pt;}
._18_c01357{width:30.021333pt;}
._1c_c01357{width:929.541333pt;}
.fs7_c01357{font-size:42.666667pt;}
.fs4_c01357{font-size:50.666667pt;}
.fs3_c01357{font-size:61.333333pt;}
.fs2_c01357{font-size:64.000000pt;}
.fs6_c01357{font-size:69.333333pt;}
.fs5_c01357{font-size:72.000000pt;}
.fs1_c01357{font-size:88.000000pt;}
.fs0_c01357{font-size:112.000000pt;}
.y0_c01357{bottom:0.000000pt;}
.y25_c01357{bottom:2.760000pt;}
.y24_c01357{bottom:6.425204pt;}
.y23_c01357{bottom:64.520000pt;}
.y22_c01357{bottom:86.920000pt;}
.y21_c01357{bottom:110.386667pt;}
.y20_c01357{bottom:131.320000pt;}
.y1f_c01357{bottom:153.586667pt;}
.y1e_c01357{bottom:175.720000pt;}
.y1d_c01357{bottom:196.120000pt;}
.y1c_c01357{bottom:219.586667pt;}
.y1b_c01357{bottom:241.720000pt;}
.y1a_c01357{bottom:263.053333pt;}
.y19_c01357{bottom:285.186667pt;}
.y18_c01357{bottom:306.920000pt;}
.y17_c01357{bottom:327.186667pt;}
.y16_c01357{bottom:350.653333pt;}
.y15_c01357{bottom:372.253333pt;}
.y14_c01357{bottom:393.586667pt;}
.y13_c01357{bottom:415.720000pt;}
.y12_c01357{bottom:438.253333pt;}
.y11_c01357{bottom:459.320000pt;}
.y10_c01357{bottom:481.453333pt;}
.yf_c01357{bottom:502.786667pt;}
.ye_c01357{bottom:524.920000pt;}
.yd_c01357{bottom:546.520000pt;}
.yc_c01357{bottom:568.120000pt;}
.yb_c01357{bottom:589.986667pt;}
.ya_c01357{bottom:611.320000pt;}
.y9_c01357{bottom:633.186667pt;}
.y8_c01357{bottom:654.920000pt;}
.y7_c01357{bottom:676.386667pt;}
.y6_c01357{bottom:698.120000pt;}
.y5_c01357{bottom:719.986667pt;}
.y4_c01357{bottom:741.586667pt;}
.y3_c01357{bottom:763.186667pt;}
.y2_c01357{bottom:784.520000pt;}
.y1_c01357{bottom:808.786667pt;}
.h9_c01357{height:11.733399pt;}
.ha_c01357{height:38.937500pt;}
.h4_c01357{height:70.664062pt;}
.h5_c01357{height:73.978667pt;}
.h6_c01357{height:77.654948pt;}
.h8_c01357{height:81.031250pt;}
.h3_c01357{height:86.324219pt;}
.h7_c01357{height:87.783854pt;}
.h2_c01357{height:141.804688pt;}
.h1_c01357{height:866.666667pt;}
.h0_c01357{height:866.866667pt;}
.w2_c01357{width:93.222667pt;}
.w0_c01357{width:586.533333pt;}
.w1_c01357{width:586.666667pt;}
.x0_c01357{left:0.000000pt;}
.x15_c01357{left:95.066667pt;}
.x13_c01357{left:97.200000pt;}
.x12_c01357{left:98.933333pt;}
.x10_c01357{left:101.066667pt;}
.xe_c01357{left:102.533333pt;}
.xc_c01357{left:103.466667pt;}
.xd_c01357{left:104.666667pt;}
.xa_c01357{left:105.600000pt;}
.x14_c01357{left:106.800000pt;}
.x11_c01357{left:108.000000pt;}
.x6_c01357{left:108.933333pt;}
.x5_c01357{left:110.133333pt;}
.xf_c01357{left:111.200000pt;}
.x3_c01357{left:112.800000pt;}
.x8_c01357{left:113.733333pt;}
.x9_c01357{left:117.333333pt;}
.xb_c01357{left:118.400000pt;}
.x7_c01357{left:119.600000pt;}
.x2_c01357{left:125.466667pt;}
.x4_c01357{left:132.400000pt;}
.x16_c01357{left:250.434896pt;}
.x1_c01357{left:257.466667pt;}
}





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

.ir_c01358:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01358{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01358;src:url('chunks/assets/font_0bae1cd14fdfecb0f4df4817.woff2')format("woff");}.ff1_c01358{font-family:ff1_c01358;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01358;src:url('chunks/assets/font_c94e60493931a796d7f2a78b.woff2')format("woff");}.ff2_c01358{font-family:ff2_c01358;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01358;src:url('chunks/assets/font_c1d5e70213bc31c21aac8c2f.woff2')format("woff");}.ff3_c01358{font-family:ff3_c01358;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01358;src:url('chunks/assets/font_d4f6426904f6d493d8668a29.woff2')format("woff");}.ff4_c01358{font-family:ff4_c01358;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01358;src:url('chunks/assets/font_304cd7be9bd02f0a7bf4ebc9.woff2')format("woff");}.ff5_c01358{font-family:ff5_c01358;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01358;src:url('chunks/assets/font_d3225c909ca6bd79af73058a.woff2')format("woff");}.ff6_c01358{font-family:ff6_c01358;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01358;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff7_c01358{font-family:ff7_c01358;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c01358;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff8_c01358{font-family:ff8_c01358;line-height:1.219238;font-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_c01358{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m0_c01358{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01358{vertical-align:0.000000px;}
.ls3_c01358{letter-spacing:-3.000000px;}
.ls2_c01358{letter-spacing:0.000000px;}
.ls0_c01358{letter-spacing:0.744000px;}
.ls1_c01358{letter-spacing:9.264000px;}
.ls4_c01358{letter-spacing:18.000000px;}
.sc__c01358{text-shadow:none;}
.sc0_c01358{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01358{-webkit-text-stroke:0px transparent;}
.sc0_c01358{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01358{word-spacing:-56.184000px;}
.ws2_c01358{word-spacing:-20.250000px;}
.ws1_c01358{word-spacing:-16.926000px;}
.ws3_c01358{word-spacing:0.000000px;}
._4_c01358{margin-left:-15.000000px;}
._1a_c01358{margin-left:-13.962000px;}
._14_c01358{margin-left:-12.420000px;}
._1b_c01358{margin-left:-11.004000px;}
._d_c01358{margin-left:-9.060000px;}
._f_c01358{margin-left:-6.639000px;}
._10_c01358{margin-left:-5.169000px;}
._c_c01358{margin-left:-3.900000px;}
._6_c01358{margin-left:-2.340000px;}
._15_c01358{margin-left:-1.194000px;}
._e_c01358{width:1.503000px;}
._8_c01358{width:2.820000px;}
._7_c01358{width:4.740000px;}
._3_c01358{width:6.720000px;}
._b_c01358{width:8.040000px;}
._1_c01358{width:9.360000px;}
._5_c01358{width:10.560000px;}
._2_c01358{width:12.000000px;}
._0_c01358{width:13.740000px;}
._12_c01358{width:15.909000px;}
._9_c01358{width:17.040000px;}
._17_c01358{width:18.093000px;}
._13_c01358{width:20.442000px;}
._18_c01358{width:21.768000px;}
._1c_c01358{width:23.016000px;}
._a_c01358{width:25.740000px;}
._19_c01358{width:29.832000px;}
._11_c01358{width:33.942000px;}
._1d_c01358{width:41.187000px;}
._16_c01358{width:55.698000px;}
._1e_c01358{width:704.961000px;}
.fc2_c01358{color:transparent;}
.fc1_c01358{color:rgb(128,128,128);}
.fc0_c01358{color:rgb(0,0,0);}
.fs5_c01358{font-size:48.000000px;}
.fs0_c01358{font-size:60.000000px;}
.fs3_c01358{font-size:72.000000px;}
.fs2_c01358{font-size:78.000000px;}
.fs1_c01358{font-size:81.000000px;}
.fs4_c01358{font-size:87.000000px;}
.y0_c01358{bottom:0.000000px;}
.y24_c01358{bottom:3.105000px;}
.y23_c01358{bottom:7.228369px;}
.y22_c01358{bottom:78.570000px;}
.y21_c01358{bottom:103.170000px;}
.y20_c01358{bottom:128.820000px;}
.y1f_c01358{bottom:153.270000px;}
.y1e_c01358{bottom:178.920000px;}
.y1d_c01358{bottom:203.070000px;}
.y1c_c01358{bottom:227.820000px;}
.y1b_c01358{bottom:252.720000px;}
.y1a_c01358{bottom:277.470000px;}
.y19_c01358{bottom:300.720000px;}
.y18_c01358{bottom:325.920000px;}
.y17_c01358{bottom:350.220000px;}
.y16_c01358{bottom:374.970000px;}
.y15_c01358{bottom:399.270000px;}
.y14_c01358{bottom:423.870000px;}
.y13_c01358{bottom:448.770000px;}
.y12_c01358{bottom:471.870000px;}
.y11_c01358{bottom:496.470000px;}
.y10_c01358{bottom:521.070000px;}
.yf_c01358{bottom:544.770000px;}
.ye_c01358{bottom:568.920000px;}
.yd_c01358{bottom:593.970000px;}
.yc_c01358{bottom:617.670000px;}
.yb_c01358{bottom:641.220000px;}
.ya_c01358{bottom:666.570000px;}
.y9_c01358{bottom:690.870000px;}
.y8_c01358{bottom:714.870000px;}
.y7_c01358{bottom:739.470000px;}
.y6_c01358{bottom:764.820000px;}
.y5_c01358{bottom:788.070000px;}
.y4_c01358{bottom:812.670000px;}
.y3_c01358{bottom:837.270000px;}
.y2_c01358{bottom:880.770000px;}
.y1_c01358{bottom:909.870000px;}
.h9_c01358{height:13.200073px;}
.ha_c01358{height:43.804688px;}
.h3_c01358{height:58.857422px;}
.h2_c01358{height:58.886719px;}
.h4_c01358{height:79.497070px;}
.h5_c01358{height:83.226000px;}
.h8_c01358{height:84.269531px;}
.h7_c01358{height:87.679688px;}
.h6_c01358{height:91.160156px;}
.h1_c01358{height:986.250000px;}
.h0_c01358{height:986.550000px;}
.w1_c01358{width:104.875500px;}
.w0_c01358{width:672.000000px;}
.x0_c01358{left:0.000000px;}
.x1_c01358{left:76.200000px;}
.x3_c01358{left:78.600000px;}
.x5_c01358{left:80.400000px;}
.x7_c01358{left:81.600000px;}
.x9_c01358{left:83.400000px;}
.x4_c01358{left:91.500000px;}
.x6_c01358{left:93.450000px;}
.x8_c01358{left:94.500000px;}
.x2_c01358{left:124.800000px;}
.xc_c01358{left:287.814240px;}
.xa_c01358{left:563.550000px;}
.xb_c01358{left:578.400000px;}
@media print{
.v0_c01358{vertical-align:0.000000pt;}
.ls3_c01358{letter-spacing:-2.666667pt;}
.ls2_c01358{letter-spacing:0.000000pt;}
.ls0_c01358{letter-spacing:0.661333pt;}
.ls1_c01358{letter-spacing:8.234667pt;}
.ls4_c01358{letter-spacing:16.000000pt;}
.ws0_c01358{word-spacing:-49.941333pt;}
.ws2_c01358{word-spacing:-18.000000pt;}
.ws1_c01358{word-spacing:-15.045333pt;}
.ws3_c01358{word-spacing:0.000000pt;}
._4_c01358{margin-left:-13.333333pt;}
._1a_c01358{margin-left:-12.410667pt;}
._14_c01358{margin-left:-11.040000pt;}
._1b_c01358{margin-left:-9.781333pt;}
._d_c01358{margin-left:-8.053333pt;}
._f_c01358{margin-left:-5.901333pt;}
._10_c01358{margin-left:-4.594667pt;}
._c_c01358{margin-left:-3.466667pt;}
._6_c01358{margin-left:-2.080000pt;}
._15_c01358{margin-left:-1.061333pt;}
._e_c01358{width:1.336000pt;}
._8_c01358{width:2.506667pt;}
._7_c01358{width:4.213333pt;}
._3_c01358{width:5.973333pt;}
._b_c01358{width:7.146667pt;}
._1_c01358{width:8.320000pt;}
._5_c01358{width:9.386667pt;}
._2_c01358{width:10.666667pt;}
._0_c01358{width:12.213333pt;}
._12_c01358{width:14.141333pt;}
._9_c01358{width:15.146667pt;}
._17_c01358{width:16.082667pt;}
._13_c01358{width:18.170667pt;}
._18_c01358{width:19.349333pt;}
._1c_c01358{width:20.458667pt;}
._a_c01358{width:22.880000pt;}
._19_c01358{width:26.517333pt;}
._11_c01358{width:30.170667pt;}
._1d_c01358{width:36.610667pt;}
._16_c01358{width:49.509333pt;}
._1e_c01358{width:626.632000pt;}
.fs5_c01358{font-size:42.666667pt;}
.fs0_c01358{font-size:53.333333pt;}
.fs3_c01358{font-size:64.000000pt;}
.fs2_c01358{font-size:69.333333pt;}
.fs1_c01358{font-size:72.000000pt;}
.fs4_c01358{font-size:77.333333pt;}
.y0_c01358{bottom:0.000000pt;}
.y24_c01358{bottom:2.760000pt;}
.y23_c01358{bottom:6.425217pt;}
.y22_c01358{bottom:69.840000pt;}
.y21_c01358{bottom:91.706667pt;}
.y20_c01358{bottom:114.506667pt;}
.y1f_c01358{bottom:136.240000pt;}
.y1e_c01358{bottom:159.040000pt;}
.y1d_c01358{bottom:180.506667pt;}
.y1c_c01358{bottom:202.506667pt;}
.y1b_c01358{bottom:224.640000pt;}
.y1a_c01358{bottom:246.640000pt;}
.y19_c01358{bottom:267.306667pt;}
.y18_c01358{bottom:289.706667pt;}
.y17_c01358{bottom:311.306667pt;}
.y16_c01358{bottom:333.306667pt;}
.y15_c01358{bottom:354.906667pt;}
.y14_c01358{bottom:376.773333pt;}
.y13_c01358{bottom:398.906667pt;}
.y12_c01358{bottom:419.440000pt;}
.y11_c01358{bottom:441.306667pt;}
.y10_c01358{bottom:463.173333pt;}
.yf_c01358{bottom:484.240000pt;}
.ye_c01358{bottom:505.706667pt;}
.yd_c01358{bottom:527.973333pt;}
.yc_c01358{bottom:549.040000pt;}
.yb_c01358{bottom:569.973333pt;}
.ya_c01358{bottom:592.506667pt;}
.y9_c01358{bottom:614.106667pt;}
.y8_c01358{bottom:635.440000pt;}
.y7_c01358{bottom:657.306667pt;}
.y6_c01358{bottom:679.840000pt;}
.y5_c01358{bottom:700.506667pt;}
.y4_c01358{bottom:722.373333pt;}
.y3_c01358{bottom:744.240000pt;}
.y2_c01358{bottom:782.906667pt;}
.y1_c01358{bottom:808.773333pt;}
.h9_c01358{height:11.733399pt;}
.ha_c01358{height:38.937500pt;}
.h3_c01358{height:52.317708pt;}
.h2_c01358{height:52.343750pt;}
.h4_c01358{height:70.664062pt;}
.h5_c01358{height:73.978667pt;}
.h8_c01358{height:74.906250pt;}
.h7_c01358{height:77.937500pt;}
.h6_c01358{height:81.031250pt;}
.h1_c01358{height:876.666667pt;}
.h0_c01358{height:876.933333pt;}
.w1_c01358{width:93.222667pt;}
.w0_c01358{width:597.333333pt;}
.x0_c01358{left:0.000000pt;}
.x1_c01358{left:67.733333pt;}
.x3_c01358{left:69.866667pt;}
.x5_c01358{left:71.466667pt;}
.x7_c01358{left:72.533333pt;}
.x9_c01358{left:74.133333pt;}
.x4_c01358{left:81.333333pt;}
.x6_c01358{left:83.066667pt;}
.x8_c01358{left:84.000000pt;}
.x2_c01358{left:110.933333pt;}
.xc_c01358{left:255.834880pt;}
.xa_c01358{left:500.933333pt;}
.xb_c01358{left:514.133333pt;}
}





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

.ir_c01359:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01359{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01359;src:url('chunks/assets/font_67e1cb67cb2f04bc8ffeb209.woff2')format("woff");}.ff1_c01359{font-family:ff1_c01359;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01359;src:url('chunks/assets/font_d8694b556f75f27622225ce4.woff2')format("woff");}.ff2_c01359{font-family:ff2_c01359;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01359;src:url('chunks/assets/font_1d1f7414d21bda4236c87d0b.woff2')format("woff");}.ff3_c01359{font-family:ff3_c01359;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01359;src:url('chunks/assets/font_1e58e7fa2be02193e3d96619.woff2')format("woff");}.ff4_c01359{font-family:ff4_c01359;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01359;src:url('chunks/assets/font_31cf6bf26c210f16d9a12ef1.woff2')format("woff");}.ff5_c01359{font-family:ff5_c01359;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01359;src:url('chunks/assets/font_e6bf46ee63efb5f41f2925a7.woff2')format("woff");}.ff6_c01359{font-family:ff6_c01359;line-height:1.437000;font-style:normal;font-weight: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_c01359;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c01359{font-family:ff7_c01359;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01359{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01359{vertical-align:0.000000px;}
.ls3_c01359{letter-spacing:-3.000000px;}
.ls2_c01359{letter-spacing:0.000000px;}
.ls0_c01359{letter-spacing:3.000000px;}
.ls1_c01359{letter-spacing:21.864000px;}
.sc__c01359{text-shadow:none;}
.sc0_c01359{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01359{-webkit-text-stroke:0px transparent;}
.sc0_c01359{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01359{word-spacing:-21.000000px;}
.ws1_c01359{word-spacing:-20.250000px;}
.ws2_c01359{word-spacing:0.000000px;}
._18_c01359{margin-left:-20.439000px;}
._16_c01359{margin-left:-18.294000px;}
._11_c01359{margin-left:-16.122000px;}
._0_c01359{margin-left:-13.770000px;}
._5_c01359{margin-left:-9.432000px;}
._e_c01359{margin-left:-7.707000px;}
._9_c01359{margin-left:-5.832000px;}
._4_c01359{margin-left:-4.068000px;}
._6_c01359{margin-left:-2.976000px;}
._b_c01359{margin-left:-1.038000px;}
._a_c01359{width:1.053000px;}
._7_c01359{width:2.592000px;}
._c_c01359{width:3.612000px;}
._3_c01359{width:4.698000px;}
._d_c01359{width:5.817000px;}
._2_c01359{width:6.885000px;}
._8_c01359{width:8.829000px;}
._1_c01359{width:10.206000px;}
._13_c01359{width:11.565000px;}
._f_c01359{width:12.771000px;}
._17_c01359{width:13.812000px;}
._10_c01359{width:15.597000px;}
._12_c01359{width:16.878000px;}
._14_c01359{width:26.880000px;}
._15_c01359{width:95.940000px;}
._19_c01359{width:1532.277000px;}
.fc2_c01359{color:transparent;}
.fc1_c01359{color:rgb(128,128,128);}
.fc0_c01359{color:rgb(0,0,0);}
.fs4_c01359{font-size:48.000000px;}
.fs1_c01359{font-size:72.000000px;}
.fs2_c01359{font-size:78.000000px;}
.fs0_c01359{font-size:81.000000px;}
.fs3_c01359{font-size:84.000000px;}
.y0_c01359{bottom:0.000000px;}
.y23_c01359{bottom:3.105000px;}
.y22_c01359{bottom:7.228371px;}
.y21_c01359{bottom:69.915000px;}
.y20_c01359{bottom:92.565000px;}
.y1f_c01359{bottom:111.165000px;}
.y1e_c01359{bottom:141.465000px;}
.y1d_c01359{bottom:166.365000px;}
.y1c_c01359{bottom:191.415000px;}
.y1b_c01359{bottom:215.115000px;}
.y1a_c01359{bottom:240.015000px;}
.y19_c01359{bottom:265.965000px;}
.y18_c01359{bottom:288.315000px;}
.y17_c01359{bottom:314.265000px;}
.y16_c01359{bottom:339.165000px;}
.y15_c01359{bottom:363.615000px;}
.y14_c01359{bottom:386.415000px;}
.y13_c01359{bottom:412.215000px;}
.y12_c01359{bottom:437.115000px;}
.y11_c01359{bottom:459.315000px;}
.y10_c01359{bottom:486.015000px;}
.yf_c01359{bottom:510.765000px;}
.ye_c01359{bottom:535.365000px;}
.yd_c01359{bottom:559.365000px;}
.yc_c01359{bottom:596.415000px;}
.yb_c01359{bottom:626.115000px;}
.ya_c01359{bottom:682.065000px;}
.y9_c01359{bottom:706.365000px;}
.y8_c01359{bottom:731.115000px;}
.y7_c01359{bottom:756.015000px;}
.y6_c01359{bottom:779.415000px;}
.y5_c01359{bottom:803.715000px;}
.y4_c01359{bottom:828.015000px;}
.y3_c01359{bottom:852.615000px;}
.y2_c01359{bottom:876.915000px;}
.y1_c01359{bottom:900.765000px;}
.h6_c01359{height:13.200074px;}
.h7_c01359{height:43.804688px;}
.h3_c01359{height:79.497070px;}
.h4_c01359{height:84.269531px;}
.h5_c01359{height:88.032000px;}
.h2_c01359{height:98.756836px;}
.h1_c01359{height:986.250000px;}
.h0_c01359{height:986.325000px;}
.w2_c01359{width:104.875500px;}
.w0_c01359{width:667.425000px;}
.w1_c01359{width:667.500000px;}
.x0_c01359{left:0.000000px;}
.xe_c01359{left:98.850000px;}
.xc_c01359{left:100.350000px;}
.x9_c01359{left:102.900000px;}
.x1_c01359{left:104.700000px;}
.x6_c01359{left:106.200000px;}
.x4_c01359{left:108.900000px;}
.xd_c01359{left:121.500000px;}
.xa_c01359{left:125.250000px;}
.xb_c01359{left:127.200000px;}
.x3_c01359{left:129.600000px;}
.x5_c01359{left:131.550000px;}
.x2_c01359{left:133.350000px;}
.x8_c01359{left:156.900000px;}
.x7_c01359{left:162.750000px;}
.x10_c01359{left:285.526749px;}
.xf_c01359{left:547.350000px;}
@media print{
.v0_c01359{vertical-align:0.000000pt;}
.ls3_c01359{letter-spacing:-2.666667pt;}
.ls2_c01359{letter-spacing:0.000000pt;}
.ls0_c01359{letter-spacing:2.666667pt;}
.ls1_c01359{letter-spacing:19.434667pt;}
.ws0_c01359{word-spacing:-18.666667pt;}
.ws1_c01359{word-spacing:-18.000000pt;}
.ws2_c01359{word-spacing:0.000000pt;}
._18_c01359{margin-left:-18.168000pt;}
._16_c01359{margin-left:-16.261333pt;}
._11_c01359{margin-left:-14.330667pt;}
._0_c01359{margin-left:-12.240000pt;}
._5_c01359{margin-left:-8.384000pt;}
._e_c01359{margin-left:-6.850667pt;}
._9_c01359{margin-left:-5.184000pt;}
._4_c01359{margin-left:-3.616000pt;}
._6_c01359{margin-left:-2.645333pt;}
._b_c01359{margin-left:-0.922667pt;}
._a_c01359{width:0.936000pt;}
._7_c01359{width:2.304000pt;}
._c_c01359{width:3.210667pt;}
._3_c01359{width:4.176000pt;}
._d_c01359{width:5.170667pt;}
._2_c01359{width:6.120000pt;}
._8_c01359{width:7.848000pt;}
._1_c01359{width:9.072000pt;}
._13_c01359{width:10.280000pt;}
._f_c01359{width:11.352000pt;}
._17_c01359{width:12.277333pt;}
._10_c01359{width:13.864000pt;}
._12_c01359{width:15.002667pt;}
._14_c01359{width:23.893333pt;}
._15_c01359{width:85.280000pt;}
._19_c01359{width:1362.024000pt;}
.fs4_c01359{font-size:42.666667pt;}
.fs1_c01359{font-size:64.000000pt;}
.fs2_c01359{font-size:69.333333pt;}
.fs0_c01359{font-size:72.000000pt;}
.fs3_c01359{font-size:74.666667pt;}
.y0_c01359{bottom:0.000000pt;}
.y23_c01359{bottom:2.760000pt;}
.y22_c01359{bottom:6.425219pt;}
.y21_c01359{bottom:62.146667pt;}
.y20_c01359{bottom:82.280000pt;}
.y1f_c01359{bottom:98.813333pt;}
.y1e_c01359{bottom:125.746667pt;}
.y1d_c01359{bottom:147.880000pt;}
.y1c_c01359{bottom:170.146667pt;}
.y1b_c01359{bottom:191.213333pt;}
.y1a_c01359{bottom:213.346667pt;}
.y19_c01359{bottom:236.413333pt;}
.y18_c01359{bottom:256.280000pt;}
.y17_c01359{bottom:279.346667pt;}
.y16_c01359{bottom:301.480000pt;}
.y15_c01359{bottom:323.213333pt;}
.y14_c01359{bottom:343.480000pt;}
.y13_c01359{bottom:366.413333pt;}
.y12_c01359{bottom:388.546667pt;}
.y11_c01359{bottom:408.280000pt;}
.y10_c01359{bottom:432.013333pt;}
.yf_c01359{bottom:454.013333pt;}
.ye_c01359{bottom:475.880000pt;}
.yd_c01359{bottom:497.213333pt;}
.yc_c01359{bottom:530.146667pt;}
.yb_c01359{bottom:556.546667pt;}
.ya_c01359{bottom:606.280000pt;}
.y9_c01359{bottom:627.880000pt;}
.y8_c01359{bottom:649.880000pt;}
.y7_c01359{bottom:672.013333pt;}
.y6_c01359{bottom:692.813333pt;}
.y5_c01359{bottom:714.413333pt;}
.y4_c01359{bottom:736.013333pt;}
.y3_c01359{bottom:757.880000pt;}
.y2_c01359{bottom:779.480000pt;}
.y1_c01359{bottom:800.680000pt;}
.h6_c01359{height:11.733399pt;}
.h7_c01359{height:38.937500pt;}
.h3_c01359{height:70.664062pt;}
.h4_c01359{height:74.906250pt;}
.h5_c01359{height:78.250667pt;}
.h2_c01359{height:87.783854pt;}
.h1_c01359{height:876.666667pt;}
.h0_c01359{height:876.733333pt;}
.w2_c01359{width:93.222667pt;}
.w0_c01359{width:593.266667pt;}
.w1_c01359{width:593.333333pt;}
.x0_c01359{left:0.000000pt;}
.xe_c01359{left:87.866667pt;}
.xc_c01359{left:89.200000pt;}
.x9_c01359{left:91.466667pt;}
.x1_c01359{left:93.066667pt;}
.x6_c01359{left:94.400000pt;}
.x4_c01359{left:96.800000pt;}
.xd_c01359{left:108.000000pt;}
.xa_c01359{left:111.333333pt;}
.xb_c01359{left:113.066667pt;}
.x3_c01359{left:115.200000pt;}
.x5_c01359{left:116.933333pt;}
.x2_c01359{left:118.533333pt;}
.x8_c01359{left:139.466667pt;}
.x7_c01359{left:144.666667pt;}
.x10_c01359{left:253.801554pt;}
.xf_c01359{left:486.533333pt;}
}





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

.ir_c01360:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01360{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01360;src:url('chunks/assets/font_7338fe7d5933c3012009f5b2.woff2')format("woff");}.ff1_c01360{font-family:ff1_c01360;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01360;src:url('chunks/assets/font_6354052263c4bde470cf2b94.woff2')format("woff");}.ff2_c01360{font-family:ff2_c01360;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01360;src:url('chunks/assets/font_fbea4b9d965db77ff714431b.woff2')format("woff");}.ff3_c01360{font-family:ff3_c01360;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01360;src:url('chunks/assets/font_aa9b25b74b10d39f8ee98d09.woff2')format("woff");}.ff4_c01360{font-family:ff4_c01360;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01360;src:url('chunks/assets/font_70b0592967df13d6ad87f15b.woff2')format("woff");}.ff5_c01360{font-family:ff5_c01360;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01360;src:url('chunks/assets/font_7380c4b73f43060a5bbc9a45.woff2')format("woff");}.ff6_c01360{font-family:ff6_c01360;line-height:1.284180;font-style:normal;font-weight: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_c01360;src:url('chunks/assets/font_b64af9c267e79ea0dec7b445.woff2')format("woff");}.ff7_c01360{font-family:ff7_c01360;line-height:1.437000;font-style:normal;font-weight: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_c01360;src:url('chunks/assets/font_18eb7dedc29b114f06a87f64.woff2')format("woff");}.ff8_c01360{font-family:ff8_c01360;line-height:1.437000;font-style:normal;font-weight: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_c01360;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff9_c01360{font-family:ff9_c01360;line-height:1.219238;font-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_c01360{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m0_c01360{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01360{vertical-align:-15.000000px;}
.v0_c01360{vertical-align:0.000000px;}
.ls4_c01360{letter-spacing:0.000000px;}
.ls3_c01360{letter-spacing:0.840000px;}
.ls2_c01360{letter-spacing:6.000000px;}
.ls5_c01360{letter-spacing:9.000000px;}
.ls0_c01360{letter-spacing:9.408000px;}
.ls1_c01360{letter-spacing:78.480000px;}
.sc__c01360{text-shadow:none;}
.sc0_c01360{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01360{-webkit-text-stroke:0px transparent;}
.sc0_c01360{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c01360{word-spacing:-73.686000px;}
.ws2_c01360{word-spacing:-26.526000px;}
.ws1_c01360{word-spacing:-21.000000px;}
.ws0_c01360{word-spacing:-18.798000px;}
.ws4_c01360{word-spacing:0.000000px;}
._18_c01360{margin-left:-27.972000px;}
._24_c01360{margin-left:-22.698000px;}
._15_c01360{margin-left:-20.817000px;}
._22_c01360{margin-left:-16.200000px;}
._8_c01360{margin-left:-11.988000px;}
._23_c01360{margin-left:-10.692000px;}
._1e_c01360{margin-left:-9.648000px;}
._19_c01360{margin-left:-8.610000px;}
._16_c01360{margin-left:-7.371000px;}
._6_c01360{margin-left:-6.264000px;}
._e_c01360{margin-left:-5.184000px;}
._1f_c01360{margin-left:-4.092000px;}
._12_c01360{margin-left:-3.078000px;}
._f_c01360{margin-left:-1.458000px;}
._13_c01360{width:1.215000px;}
._10_c01360{width:2.349000px;}
._17_c01360{width:3.429000px;}
._b_c01360{width:4.455000px;}
._4_c01360{width:6.156000px;}
._a_c01360{width:7.533000px;}
._c_c01360{width:8.667000px;}
._2_c01360{width:10.584000px;}
._11_c01360{width:11.988000px;}
._1a_c01360{width:13.125000px;}
._14_c01360{width:14.418000px;}
._d_c01360{width:15.633000px;}
._1c_c01360{width:16.809000px;}
._20_c01360{width:18.375000px;}
._1b_c01360{width:21.876000px;}
._5_c01360{width:29.268000px;}
._7_c01360{width:31.644000px;}
._1_c01360{width:33.372000px;}
._21_c01360{width:41.268000px;}
._0_c01360{width:52.812000px;}
._3_c01360{width:57.132000px;}
._9_c01360{width:88.344000px;}
._1d_c01360{width:875.112000px;}
.fc2_c01360{color:transparent;}
.fc1_c01360{color:rgb(128,128,128);}
.fc0_c01360{color:rgb(0,0,0);}
.fsa_c01360{font-size:48.000000px;}
.fs7_c01360{font-size:51.000000px;}
.fs4_c01360{font-size:54.000000px;}
.fs8_c01360{font-size:60.000000px;}
.fs6_c01360{font-size:69.000000px;}
.fs2_c01360{font-size:72.000000px;}
.fs3_c01360{font-size:78.000000px;}
.fs1_c01360{font-size:81.000000px;}
.fs5_c01360{font-size:84.000000px;}
.fs9_c01360{font-size:87.000000px;}
.fs0_c01360{font-size:108.000000px;}
.y0_c01360{bottom:0.000000px;}
.y23_c01360{bottom:3.105000px;}
.y22_c01360{bottom:7.228369px;}
.y21_c01360{bottom:95.820000px;}
.y20_c01360{bottom:120.420000px;}
.y1f_c01360{bottom:145.170000px;}
.y1e_c01360{bottom:169.770000px;}
.y1d_c01360{bottom:194.970000px;}
.y1c_c01360{bottom:219.270000px;}
.y1b_c01360{bottom:244.020000px;}
.y1a_c01360{bottom:268.020000px;}
.y19_c01360{bottom:292.920000px;}
.y18_c01360{bottom:321.570000px;}
.y17_c01360{bottom:361.170000px;}
.y16_c01360{bottom:391.170000px;}
.y15_c01360{bottom:440.820000px;}
.y14_c01360{bottom:464.970000px;}
.y13_c01360{bottom:489.720000px;}
.y12_c01360{bottom:511.320000px;}
.y11_c01360{bottom:538.020000px;}
.y10_c01360{bottom:561.870000px;}
.yf_c01360{bottom:584.220000px;}
.ye_c01360{bottom:610.770000px;}
.yd_c01360{bottom:634.770000px;}
.yc_c01360{bottom:659.070000px;}
.yb_c01360{bottom:682.770000px;}
.ya_c01360{bottom:706.770000px;}
.y9_c01360{bottom:731.070000px;}
.y8_c01360{bottom:755.220000px;}
.y7_c01360{bottom:779.520000px;}
.y6_c01360{bottom:803.220000px;}
.y5_c01360{bottom:827.820000px;}
.y4_c01360{bottom:852.120000px;}
.y3_c01360{bottom:875.820000px;}
.y2_c01360{bottom:900.120000px;}
.y1_c01360{bottom:935.220000px;}
.hb_c01360{height:13.200073px;}
.hc_c01360{height:43.804688px;}
.h8_c01360{height:75.966797px;}
.h2_c01360{height:79.497070px;}
.h7_c01360{height:82.400391px;}
.ha_c01360{height:84.269531px;}
.h5_c01360{height:84.656250px;}
.h6_c01360{height:87.361816px;}
.h3_c01360{height:91.160156px;}
.h9_c01360{height:91.176000px;}
.h4_c01360{height:98.756836px;}
.h1_c01360{height:136.740234px;}
.h0_c01360{height:975.750000px;}
.w2_c01360{width:104.875500px;}
.w0_c01360{width:664.200000px;}
.w1_c01360{width:664.500000px;}
.x0_c01360{left:0.000000px;}
.x3_c01360{left:65.700000px;}
.x6_c01360{left:66.750000px;}
.xd_c01360{left:67.800000px;}
.x5_c01360{left:68.850000px;}
.x2_c01360{left:76.500000px;}
.x4_c01360{left:79.950000px;}
.xc_c01360{left:81.450000px;}
.x7_c01360{left:82.950000px;}
.xb_c01360{left:98.550000px;}
.x8_c01360{left:143.700000px;}
.x9_c01360{left:156.900000px;}
.xa_c01360{left:169.500000px;}
.x1_c01360{left:213.600000px;}
.xe_c01360{left:283.914230px;}
@media print{
.v1_c01360{vertical-align:-13.333333pt;}
.v0_c01360{vertical-align:0.000000pt;}
.ls4_c01360{letter-spacing:0.000000pt;}
.ls3_c01360{letter-spacing:0.746667pt;}
.ls2_c01360{letter-spacing:5.333333pt;}
.ls5_c01360{letter-spacing:8.000000pt;}
.ls0_c01360{letter-spacing:8.362667pt;}
.ls1_c01360{letter-spacing:69.760000pt;}
.ws3_c01360{word-spacing:-65.498667pt;}
.ws2_c01360{word-spacing:-23.578667pt;}
.ws1_c01360{word-spacing:-18.666667pt;}
.ws0_c01360{word-spacing:-16.709333pt;}
.ws4_c01360{word-spacing:0.000000pt;}
._18_c01360{margin-left:-24.864000pt;}
._24_c01360{margin-left:-20.176000pt;}
._15_c01360{margin-left:-18.504000pt;}
._22_c01360{margin-left:-14.400000pt;}
._8_c01360{margin-left:-10.656000pt;}
._23_c01360{margin-left:-9.504000pt;}
._1e_c01360{margin-left:-8.576000pt;}
._19_c01360{margin-left:-7.653333pt;}
._16_c01360{margin-left:-6.552000pt;}
._6_c01360{margin-left:-5.568000pt;}
._e_c01360{margin-left:-4.608000pt;}
._1f_c01360{margin-left:-3.637333pt;}
._12_c01360{margin-left:-2.736000pt;}
._f_c01360{margin-left:-1.296000pt;}
._13_c01360{width:1.080000pt;}
._10_c01360{width:2.088000pt;}
._17_c01360{width:3.048000pt;}
._b_c01360{width:3.960000pt;}
._4_c01360{width:5.472000pt;}
._a_c01360{width:6.696000pt;}
._c_c01360{width:7.704000pt;}
._2_c01360{width:9.408000pt;}
._11_c01360{width:10.656000pt;}
._1a_c01360{width:11.666667pt;}
._14_c01360{width:12.816000pt;}
._d_c01360{width:13.896000pt;}
._1c_c01360{width:14.941333pt;}
._20_c01360{width:16.333333pt;}
._1b_c01360{width:19.445333pt;}
._5_c01360{width:26.016000pt;}
._7_c01360{width:28.128000pt;}
._1_c01360{width:29.664000pt;}
._21_c01360{width:36.682667pt;}
._0_c01360{width:46.944000pt;}
._3_c01360{width:50.784000pt;}
._9_c01360{width:78.528000pt;}
._1d_c01360{width:777.877333pt;}
.fsa_c01360{font-size:42.666667pt;}
.fs7_c01360{font-size:45.333333pt;}
.fs4_c01360{font-size:48.000000pt;}
.fs8_c01360{font-size:53.333333pt;}
.fs6_c01360{font-size:61.333333pt;}
.fs2_c01360{font-size:64.000000pt;}
.fs3_c01360{font-size:69.333333pt;}
.fs1_c01360{font-size:72.000000pt;}
.fs5_c01360{font-size:74.666667pt;}
.fs9_c01360{font-size:77.333333pt;}
.fs0_c01360{font-size:96.000000pt;}
.y0_c01360{bottom:0.000000pt;}
.y23_c01360{bottom:2.760000pt;}
.y22_c01360{bottom:6.425217pt;}
.y21_c01360{bottom:85.173333pt;}
.y20_c01360{bottom:107.040000pt;}
.y1f_c01360{bottom:129.040000pt;}
.y1e_c01360{bottom:150.906667pt;}
.y1d_c01360{bottom:173.306667pt;}
.y1c_c01360{bottom:194.906667pt;}
.y1b_c01360{bottom:216.906667pt;}
.y1a_c01360{bottom:238.240000pt;}
.y19_c01360{bottom:260.373333pt;}
.y18_c01360{bottom:285.840000pt;}
.y17_c01360{bottom:321.040000pt;}
.y16_c01360{bottom:347.706667pt;}
.y15_c01360{bottom:391.840000pt;}
.y14_c01360{bottom:413.306667pt;}
.y13_c01360{bottom:435.306667pt;}
.y12_c01360{bottom:454.506667pt;}
.y11_c01360{bottom:478.240000pt;}
.y10_c01360{bottom:499.440000pt;}
.yf_c01360{bottom:519.306667pt;}
.ye_c01360{bottom:542.906667pt;}
.yd_c01360{bottom:564.240000pt;}
.yc_c01360{bottom:585.840000pt;}
.yb_c01360{bottom:606.906667pt;}
.ya_c01360{bottom:628.240000pt;}
.y9_c01360{bottom:649.840000pt;}
.y8_c01360{bottom:671.306667pt;}
.y7_c01360{bottom:692.906667pt;}
.y6_c01360{bottom:713.973333pt;}
.y5_c01360{bottom:735.840000pt;}
.y4_c01360{bottom:757.440000pt;}
.y3_c01360{bottom:778.506667pt;}
.y2_c01360{bottom:800.106667pt;}
.y1_c01360{bottom:831.306667pt;}
.hb_c01360{height:11.733399pt;}
.hc_c01360{height:38.937500pt;}
.h8_c01360{height:67.526042pt;}
.h2_c01360{height:70.664062pt;}
.h7_c01360{height:73.244792pt;}
.ha_c01360{height:74.906250pt;}
.h5_c01360{height:75.250000pt;}
.h6_c01360{height:77.654948pt;}
.h3_c01360{height:81.031250pt;}
.h9_c01360{height:81.045333pt;}
.h4_c01360{height:87.783854pt;}
.h1_c01360{height:121.546875pt;}
.h0_c01360{height:867.333333pt;}
.w2_c01360{width:93.222667pt;}
.w0_c01360{width:590.400000pt;}
.w1_c01360{width:590.666667pt;}
.x0_c01360{left:0.000000pt;}
.x3_c01360{left:58.400000pt;}
.x6_c01360{left:59.333333pt;}
.xd_c01360{left:60.266667pt;}
.x5_c01360{left:61.200000pt;}
.x2_c01360{left:68.000000pt;}
.x4_c01360{left:71.066667pt;}
.xc_c01360{left:72.400000pt;}
.x7_c01360{left:73.733333pt;}
.xb_c01360{left:87.600000pt;}
.x8_c01360{left:127.733333pt;}
.x9_c01360{left:139.466667pt;}
.xa_c01360{left:150.666667pt;}
.x1_c01360{left:189.866667pt;}
.xe_c01360{left:252.368205pt;}
}





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

.ir_c01361:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01361{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01361;src:url('chunks/assets/font_b3987652d8ccebc2ce224332.woff2')format("woff");}.ff1_c01361{font-family:ff1_c01361;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01361;src:url('chunks/assets/font_ec0c50e13134234fa950d4fd.woff2')format("woff");}.ff2_c01361{font-family:ff2_c01361;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01361;src:url('chunks/assets/font_be07b48af269ff95de540289.woff2')format("woff");}.ff3_c01361{font-family:ff3_c01361;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01361;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff4_c01361{font-family:ff4_c01361;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01361;src:url('chunks/assets/font_4bcf28bcd79c0099edae5730.woff2')format("woff");}.ff5_c01361{font-family:ff5_c01361;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01361;src:url('chunks/assets/font_06a72ac455ba9c28ec566742.woff2')format("woff");}.ff6_c01361{font-family:ff6_c01361;line-height:1.437000;font-style:normal;font-weight: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_c01361;src:url('chunks/assets/font_aa8204f59d6daa3b8e009bc9.woff2')format("woff");}.ff7_c01361{font-family:ff7_c01361;line-height:1.437000;font-style:normal;font-weight: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_c01361;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff8_c01361{font-family:ff8_c01361;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01361{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01361{vertical-align:0.000000px;}
.ls5_c01361{letter-spacing:-3.000000px;}
.ls3_c01361{letter-spacing:0.000000px;}
.ls4_c01361{letter-spacing:3.000000px;}
.ls6_c01361{letter-spacing:6.000000px;}
.ls0_c01361{letter-spacing:7.080000px;}
.ls1_c01361{letter-spacing:7.680000px;}
.ls2_c01361{letter-spacing:11.280000px;}
.sc__c01361{text-shadow:none;}
.sc0_c01361{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01361{-webkit-text-stroke:0px transparent;}
.sc0_c01361{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01361{word-spacing:-73.686000px;}
.ws0_c01361{word-spacing:-59.184000px;}
.ws2_c01361{word-spacing:-21.000000px;}
.ws3_c01361{word-spacing:0.000000px;}
._9_c01361{margin-left:-14.175000px;}
._0_c01361{margin-left:-11.421000px;}
._e_c01361{margin-left:-8.640000px;}
._d_c01361{margin-left:-6.723000px;}
._f_c01361{margin-left:-4.941000px;}
._c_c01361{margin-left:-3.726000px;}
._17_c01361{margin-left:-2.703000px;}
._1_c01361{margin-left:-1.701000px;}
._15_c01361{width:1.002000px;}
._5_c01361{width:2.025000px;}
._6_c01361{width:3.321000px;}
._3_c01361{width:4.455000px;}
._4_c01361{width:6.075000px;}
._2_c01361{width:7.857000px;}
._10_c01361{width:9.180000px;}
._a_c01361{width:10.206000px;}
._18_c01361{width:11.331000px;}
._b_c01361{width:12.879000px;}
._12_c01361{width:13.881000px;}
._7_c01361{width:15.228000px;}
._16_c01361{width:16.767000px;}
._13_c01361{width:21.120000px;}
._11_c01361{width:22.194000px;}
._14_c01361{width:43.659000px;}
._8_c01361{width:49.653000px;}
.fc2_c01361{color:transparent;}
.fc1_c01361{color:rgb(128,128,128);}
.fc0_c01361{color:rgb(0,0,0);}
.fs5_c01361{font-size:48.000000px;}
.fs2_c01361{font-size:60.000000px;}
.fs1_c01361{font-size:72.000000px;}
.fs0_c01361{font-size:81.000000px;}
.fs3_c01361{font-size:84.000000px;}
.fs4_c01361{font-size:87.000000px;}
.y0_c01361{bottom:0.000000px;}
.y24_c01361{bottom:3.105000px;}
.y23_c01361{bottom:7.228355px;}
.y22_c01361{bottom:53.235000px;}
.y21_c01361{bottom:76.635000px;}
.y20_c01361{bottom:102.285000px;}
.y1f_c01361{bottom:125.835000px;}
.y1e_c01361{bottom:150.885000px;}
.y1d_c01361{bottom:175.185000px;}
.y1c_c01361{bottom:199.785000px;}
.y1b_c01361{bottom:224.685000px;}
.y1a_c01361{bottom:248.685000px;}
.y19_c01361{bottom:274.335000px;}
.y18_c01361{bottom:298.335000px;}
.y17_c01361{bottom:322.635000px;}
.y16_c01361{bottom:350.535000px;}
.y15_c01361{bottom:379.635000px;}
.y14_c01361{bottom:423.885000px;}
.y13_c01361{bottom:448.185000px;}
.y12_c01361{bottom:472.485000px;}
.y11_c01361{bottom:496.785000px;}
.y10_c01361{bottom:521.385000px;}
.yf_c01361{bottom:545.085000px;}
.ye_c01361{bottom:569.385000px;}
.yd_c01361{bottom:594.285000px;}
.yc_c01361{bottom:618.585000px;}
.yb_c01361{bottom:643.635000px;}
.ya_c01361{bottom:666.885000px;}
.y9_c01361{bottom:691.485000px;}
.y8_c01361{bottom:716.085000px;}
.y7_c01361{bottom:740.835000px;}
.y6_c01361{bottom:764.085000px;}
.y5_c01361{bottom:787.335000px;}
.y4_c01361{bottom:813.735000px;}
.y3_c01361{bottom:835.935000px;}
.y2_c01361{bottom:860.835000px;}
.y1_c01361{bottom:884.835000px;}
.h9_c01361{height:13.200074px;}
.ha_c01361{height:43.804688px;}
.h3_c01361{height:72.562500px;}
.h2_c01361{height:79.497070px;}
.h4_c01361{height:84.269531px;}
.h7_c01361{height:84.656250px;}
.h6_c01361{height:88.032000px;}
.h5_c01361{height:91.160156px;}
.h8_c01361{height:91.176000px;}
.h1_c01361{height:969.750000px;}
.h0_c01361{height:969.825000px;}
.w2_c01361{width:104.875500px;}
.w0_c01361{width:656.100000px;}
.w1_c01361{width:656.250000px;}
.x0_c01361{left:0.000000px;}
.x11_c01361{left:107.400000px;}
.xc_c01361{left:108.900000px;}
.x10_c01361{left:111.150000px;}
.xb_c01361{left:113.700000px;}
.xa_c01361{left:115.800000px;}
.x2_c01361{left:117.150000px;}
.x4_c01361{left:118.500000px;}
.x1_c01361{left:119.850000px;}
.x6_c01361{left:121.200000px;}
.x5_c01361{left:122.550000px;}
.x9_c01361{left:125.550000px;}
.x7_c01361{left:126.900000px;}
.x8_c01361{left:128.550000px;}
.x3_c01361{left:129.900000px;}
.xf_c01361{left:140.700000px;}
.xe_c01361{left:159.300000px;}
.xd_c01361{left:192.450000px;}
.x13_c01361{left:279.864258px;}
.x12_c01361{left:571.350000px;}
@media print{
.v0_c01361{vertical-align:0.000000pt;}
.ls5_c01361{letter-spacing:-2.666667pt;}
.ls3_c01361{letter-spacing:0.000000pt;}
.ls4_c01361{letter-spacing:2.666667pt;}
.ls6_c01361{letter-spacing:5.333333pt;}
.ls0_c01361{letter-spacing:6.293333pt;}
.ls1_c01361{letter-spacing:6.826667pt;}
.ls2_c01361{letter-spacing:10.026667pt;}
.ws1_c01361{word-spacing:-65.498667pt;}
.ws0_c01361{word-spacing:-52.608000pt;}
.ws2_c01361{word-spacing:-18.666667pt;}
.ws3_c01361{word-spacing:0.000000pt;}
._9_c01361{margin-left:-12.600000pt;}
._0_c01361{margin-left:-10.152000pt;}
._e_c01361{margin-left:-7.680000pt;}
._d_c01361{margin-left:-5.976000pt;}
._f_c01361{margin-left:-4.392000pt;}
._c_c01361{margin-left:-3.312000pt;}
._17_c01361{margin-left:-2.402667pt;}
._1_c01361{margin-left:-1.512000pt;}
._15_c01361{width:0.890667pt;}
._5_c01361{width:1.800000pt;}
._6_c01361{width:2.952000pt;}
._3_c01361{width:3.960000pt;}
._4_c01361{width:5.400000pt;}
._2_c01361{width:6.984000pt;}
._10_c01361{width:8.160000pt;}
._a_c01361{width:9.072000pt;}
._18_c01361{width:10.072000pt;}
._b_c01361{width:11.448000pt;}
._12_c01361{width:12.338667pt;}
._7_c01361{width:13.536000pt;}
._16_c01361{width:14.904000pt;}
._13_c01361{width:18.773333pt;}
._11_c01361{width:19.728000pt;}
._14_c01361{width:38.808000pt;}
._8_c01361{width:44.136000pt;}
.fs5_c01361{font-size:42.666667pt;}
.fs2_c01361{font-size:53.333333pt;}
.fs1_c01361{font-size:64.000000pt;}
.fs0_c01361{font-size:72.000000pt;}
.fs3_c01361{font-size:74.666667pt;}
.fs4_c01361{font-size:77.333333pt;}
.y0_c01361{bottom:0.000000pt;}
.y24_c01361{bottom:2.760000pt;}
.y23_c01361{bottom:6.425204pt;}
.y22_c01361{bottom:47.320000pt;}
.y21_c01361{bottom:68.120000pt;}
.y20_c01361{bottom:90.920000pt;}
.y1f_c01361{bottom:111.853333pt;}
.y1e_c01361{bottom:134.120000pt;}
.y1d_c01361{bottom:155.720000pt;}
.y1c_c01361{bottom:177.586667pt;}
.y1b_c01361{bottom:199.720000pt;}
.y1a_c01361{bottom:221.053333pt;}
.y19_c01361{bottom:243.853333pt;}
.y18_c01361{bottom:265.186667pt;}
.y17_c01361{bottom:286.786667pt;}
.y16_c01361{bottom:311.586667pt;}
.y15_c01361{bottom:337.453333pt;}
.y14_c01361{bottom:376.786667pt;}
.y13_c01361{bottom:398.386667pt;}
.y12_c01361{bottom:419.986667pt;}
.y11_c01361{bottom:441.586667pt;}
.y10_c01361{bottom:463.453333pt;}
.yf_c01361{bottom:484.520000pt;}
.ye_c01361{bottom:506.120000pt;}
.yd_c01361{bottom:528.253333pt;}
.yc_c01361{bottom:549.853333pt;}
.yb_c01361{bottom:572.120000pt;}
.ya_c01361{bottom:592.786667pt;}
.y9_c01361{bottom:614.653333pt;}
.y8_c01361{bottom:636.520000pt;}
.y7_c01361{bottom:658.520000pt;}
.y6_c01361{bottom:679.186667pt;}
.y5_c01361{bottom:699.853333pt;}
.y4_c01361{bottom:723.320000pt;}
.y3_c01361{bottom:743.053333pt;}
.y2_c01361{bottom:765.186667pt;}
.y1_c01361{bottom:786.520000pt;}
.h9_c01361{height:11.733399pt;}
.ha_c01361{height:38.937500pt;}
.h3_c01361{height:64.500000pt;}
.h2_c01361{height:70.664062pt;}
.h4_c01361{height:74.906250pt;}
.h7_c01361{height:75.250000pt;}
.h6_c01361{height:78.250667pt;}
.h5_c01361{height:81.031250pt;}
.h8_c01361{height:81.045333pt;}
.h1_c01361{height:862.000000pt;}
.h0_c01361{height:862.066667pt;}
.w2_c01361{width:93.222667pt;}
.w0_c01361{width:583.200000pt;}
.w1_c01361{width:583.333333pt;}
.x0_c01361{left:0.000000pt;}
.x11_c01361{left:95.466667pt;}
.xc_c01361{left:96.800000pt;}
.x10_c01361{left:98.800000pt;}
.xb_c01361{left:101.066667pt;}
.xa_c01361{left:102.933333pt;}
.x2_c01361{left:104.133333pt;}
.x4_c01361{left:105.333333pt;}
.x1_c01361{left:106.533333pt;}
.x6_c01361{left:107.733333pt;}
.x5_c01361{left:108.933333pt;}
.x9_c01361{left:111.600000pt;}
.x7_c01361{left:112.800000pt;}
.x8_c01361{left:114.266667pt;}
.x3_c01361{left:115.466667pt;}
.xf_c01361{left:125.066667pt;}
.xe_c01361{left:141.600000pt;}
.xd_c01361{left:171.066667pt;}
.x13_c01361{left:248.768229pt;}
.x12_c01361{left:507.866667pt;}
}





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

.ir_c01362:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01362{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01362;src:url('chunks/assets/font_c525c3fe569bb2ae180423e7.woff2')format("woff");}.ff1_c01362{font-family:ff1_c01362;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01362;src:url('chunks/assets/font_b6ea1986f79359373770a48e.woff2')format("woff");}.ff2_c01362{font-family:ff2_c01362;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01362;src:url('chunks/assets/font_10caeab09bbf11ab4ec6becf.woff2')format("woff");}.ff3_c01362{font-family:ff3_c01362;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01362;src:url('chunks/assets/font_59bbf7c5ba0dad1695fb0368.woff2')format("woff");}.ff4_c01362{font-family:ff4_c01362;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01362;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff5_c01362{font-family:ff5_c01362;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01362{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01362{vertical-align:0.000000px;}
.ls9_c01362{letter-spacing:0.000000px;}
.lsa_c01362{letter-spacing:6.000000px;}
.lsb_c01362{letter-spacing:9.000000px;}
.ls7_c01362{letter-spacing:25.050000px;}
.ls4_c01362{letter-spacing:26.176800px;}
.ls6_c01362{letter-spacing:27.976800px;}
.ls5_c01362{letter-spacing:31.050000px;}
.ls1_c01362{letter-spacing:31.629000px;}
.ls2_c01362{letter-spacing:32.548800px;}
.ls0_c01362{letter-spacing:33.376800px;}
.ls3_c01362{letter-spacing:37.650000px;}
.ls8_c01362{letter-spacing:42.148800px;}
.sc__c01362{text-shadow:none;}
.sc0_c01362{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01362{-webkit-text-stroke:0px transparent;}
.sc0_c01362{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01362{word-spacing:-73.686000px;}
.ws3_c01362{word-spacing:-30.000000px;}
.ws0_c01362{word-spacing:-21.750000px;}
.ws1_c01362{word-spacing:-20.250000px;}
.ws4_c01362{word-spacing:0.000000px;}
._19_c01362{margin-left:-23.913000px;}
._10_c01362{margin-left:-19.371000px;}
._12_c01362{margin-left:-15.876000px;}
._f_c01362{margin-left:-13.107000px;}
._16_c01362{margin-left:-11.382000px;}
._e_c01362{margin-left:-8.493000px;}
._2_c01362{margin-left:-6.525000px;}
._17_c01362{margin-left:-5.457000px;}
._8_c01362{margin-left:-4.392000px;}
._a_c01362{margin-left:-2.817000px;}
._7_c01362{margin-left:-1.011000px;}
._3_c01362{width:1.983000px;}
._1_c01362{width:3.384000px;}
._9_c01362{width:4.392000px;}
._0_c01362{width:5.568000px;}
._6_c01362{width:7.452000px;}
._5_c01362{width:8.505000px;}
._4_c01362{width:9.558000px;}
._c_c01362{width:10.914000px;}
._18_c01362{width:12.078000px;}
._b_c01362{width:13.143000px;}
._d_c01362{width:14.811000px;}
._15_c01362{width:16.524000px;}
._14_c01362{width:22.053000px;}
._11_c01362{width:24.432000px;}
._13_c01362{width:47.871000px;}
.fc2_c01362{color:transparent;}
.fc1_c01362{color:rgb(128,128,128);}
.fc0_c01362{color:rgb(0,0,0);}
.fs4_c01362{font-size:48.000000px;}
.fs0_c01362{font-size:69.600000px;}
.fs2_c01362{font-size:81.000000px;}
.fs3_c01362{font-size:84.000000px;}
.fs1_c01362{font-size:87.000000px;}
.y0_c01362{bottom:0.000000px;}
.y13_c01362{bottom:3.105000px;}
.y12_c01362{bottom:7.228369px;}
.y11_c01362{bottom:495.420000px;}
.y10_c01362{bottom:565.320000px;}
.yf_c01362{bottom:589.920000px;}
.ye_c01362{bottom:614.220000px;}
.yd_c01362{bottom:638.520000px;}
.yc_c01362{bottom:662.820000px;}
.yb_c01362{bottom:686.370000px;}
.ya_c01362{bottom:710.820000px;}
.y9_c01362{bottom:734.070000px;}
.y8_c01362{bottom:758.670000px;}
.y7_c01362{bottom:782.970000px;}
.y6_c01362{bottom:806.520000px;}
.y5_c01362{bottom:830.820000px;}
.y4_c01362{bottom:855.570000px;}
.y3_c01362{bottom:879.120000px;}
.y2_c01362{bottom:903.420000px;}
.y1_c01362{bottom:939.570000px;}
.h6_c01362{height:13.200073px;}
.h7_c01362{height:43.804688px;}
.h3_c01362{height:79.497070px;}
.h5_c01362{height:84.656250px;}
.h2_c01362{height:87.679688px;}
.h4_c01362{height:91.176000px;}
.h1_c01362{height:986.250000px;}
.h0_c01362{height:986.550000px;}
.w1_c01362{width:104.875500px;}
.w0_c01362{width:672.000000px;}
.x0_c01362{left:0.000000px;}
.x6_c01362{left:45.000000px;}
.x4_c01362{left:62.400000px;}
.x5_c01362{left:63.450000px;}
.x9_c01362{left:65.100000px;}
.x3_c01362{left:73.650000px;}
.x2_c01362{left:75.300000px;}
.x7_c01362{left:76.650000px;}
.x8_c01362{left:78.600000px;}
.xa_c01362{left:79.950000px;}
.x1_c01362{left:208.200000px;}
.xc_c01362{left:287.814240px;}
.xb_c01362{left:464.400000px;}
@media print{
.v0_c01362{vertical-align:0.000000pt;}
.ls9_c01362{letter-spacing:0.000000pt;}
.lsa_c01362{letter-spacing:5.333333pt;}
.lsb_c01362{letter-spacing:8.000000pt;}
.ls7_c01362{letter-spacing:22.266667pt;}
.ls4_c01362{letter-spacing:23.268267pt;}
.ls6_c01362{letter-spacing:24.868267pt;}
.ls5_c01362{letter-spacing:27.600000pt;}
.ls1_c01362{letter-spacing:28.114667pt;}
.ls2_c01362{letter-spacing:28.932267pt;}
.ls0_c01362{letter-spacing:29.668267pt;}
.ls3_c01362{letter-spacing:33.466667pt;}
.ls8_c01362{letter-spacing:37.465600pt;}
.ws2_c01362{word-spacing:-65.498667pt;}
.ws3_c01362{word-spacing:-26.666667pt;}
.ws0_c01362{word-spacing:-19.333333pt;}
.ws1_c01362{word-spacing:-18.000000pt;}
.ws4_c01362{word-spacing:0.000000pt;}
._19_c01362{margin-left:-21.256000pt;}
._10_c01362{margin-left:-17.218667pt;}
._12_c01362{margin-left:-14.112000pt;}
._f_c01362{margin-left:-11.650667pt;}
._16_c01362{margin-left:-10.117333pt;}
._e_c01362{margin-left:-7.549333pt;}
._2_c01362{margin-left:-5.800000pt;}
._17_c01362{margin-left:-4.850667pt;}
._8_c01362{margin-left:-3.904000pt;}
._a_c01362{margin-left:-2.504000pt;}
._7_c01362{margin-left:-0.898667pt;}
._3_c01362{width:1.762667pt;}
._1_c01362{width:3.008000pt;}
._9_c01362{width:3.904000pt;}
._0_c01362{width:4.949333pt;}
._6_c01362{width:6.624000pt;}
._5_c01362{width:7.560000pt;}
._4_c01362{width:8.496000pt;}
._c_c01362{width:9.701333pt;}
._18_c01362{width:10.736000pt;}
._b_c01362{width:11.682667pt;}
._d_c01362{width:13.165333pt;}
._15_c01362{width:14.688000pt;}
._14_c01362{width:19.602667pt;}
._11_c01362{width:21.717333pt;}
._13_c01362{width:42.552000pt;}
.fs4_c01362{font-size:42.666667pt;}
.fs0_c01362{font-size:61.866667pt;}
.fs2_c01362{font-size:72.000000pt;}
.fs3_c01362{font-size:74.666667pt;}
.fs1_c01362{font-size:77.333333pt;}
.y0_c01362{bottom:0.000000pt;}
.y13_c01362{bottom:2.760000pt;}
.y12_c01362{bottom:6.425217pt;}
.y11_c01362{bottom:440.373333pt;}
.y10_c01362{bottom:502.506667pt;}
.yf_c01362{bottom:524.373333pt;}
.ye_c01362{bottom:545.973333pt;}
.yd_c01362{bottom:567.573333pt;}
.yc_c01362{bottom:589.173333pt;}
.yb_c01362{bottom:610.106667pt;}
.ya_c01362{bottom:631.840000pt;}
.y9_c01362{bottom:652.506667pt;}
.y8_c01362{bottom:674.373333pt;}
.y7_c01362{bottom:695.973333pt;}
.y6_c01362{bottom:716.906667pt;}
.y5_c01362{bottom:738.506667pt;}
.y4_c01362{bottom:760.506667pt;}
.y3_c01362{bottom:781.440000pt;}
.y2_c01362{bottom:803.040000pt;}
.y1_c01362{bottom:835.173333pt;}
.h6_c01362{height:11.733399pt;}
.h7_c01362{height:38.937500pt;}
.h3_c01362{height:70.664062pt;}
.h5_c01362{height:75.250000pt;}
.h2_c01362{height:77.937500pt;}
.h4_c01362{height:81.045333pt;}
.h1_c01362{height:876.666667pt;}
.h0_c01362{height:876.933333pt;}
.w1_c01362{width:93.222667pt;}
.w0_c01362{width:597.333333pt;}
.x0_c01362{left:0.000000pt;}
.x6_c01362{left:40.000000pt;}
.x4_c01362{left:55.466667pt;}
.x5_c01362{left:56.400000pt;}
.x9_c01362{left:57.866667pt;}
.x3_c01362{left:65.466667pt;}
.x2_c01362{left:66.933333pt;}
.x7_c01362{left:68.133333pt;}
.x8_c01362{left:69.866667pt;}
.xa_c01362{left:71.066667pt;}
.x1_c01362{left:185.066667pt;}
.xc_c01362{left:255.834880pt;}
.xb_c01362{left:412.800000pt;}
}





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

.ir_c01363:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01363{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01363;src:url('chunks/assets/font_9761571934672a04ab831fac.woff2')format("woff");}.ff1_c01363{font-family:ff1_c01363;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01363;src:url('chunks/assets/font_036fed1c6dc7416bd640bd07.woff2')format("woff");}.ff2_c01363{font-family:ff2_c01363;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01363;src:url('chunks/assets/font_581c2f17a34998f5eea6d5ed.woff2')format("woff");}.ff3_c01363{font-family:ff3_c01363;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01363;src:url('chunks/assets/font_7e84198df389da61e036296f.woff2')format("woff");}.ff4_c01363{font-family:ff4_c01363;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01363;src:url('chunks/assets/font_5d9892bc9a9499f7d1843329.woff2')format("woff");}.ff5_c01363{font-family:ff5_c01363;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01363;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c01363{font-family:ff6_c01363;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01363{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01363{vertical-align:0.000000px;}
.ls9_c01363{letter-spacing:0.000000px;}
.ls0_c01363{letter-spacing:3.000000px;}
.ls3_c01363{letter-spacing:9.000000px;}
.ls2_c01363{letter-spacing:11.250000px;}
.ls4_c01363{letter-spacing:11.802000px;}
.lsa_c01363{letter-spacing:12.000000px;}
.ls5_c01363{letter-spacing:12.900000px;}
.ls7_c01363{letter-spacing:15.600000px;}
.ls1_c01363{letter-spacing:60.402000px;}
.ls8_c01363{letter-spacing:191.202000px;}
.ls6_c01363{letter-spacing:315.450000px;}
.sc__c01363{text-shadow:none;}
.sc0_c01363{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01363{-webkit-text-stroke:0px transparent;}
.sc0_c01363{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01363{word-spacing:-28.500000px;}
.ws4_c01363{word-spacing:-24.750000px;}
.ws6_c01363{word-spacing:-21.000000px;}
.ws5_c01363{word-spacing:-18.798000px;}
.ws3_c01363{word-spacing:-15.750000px;}
.ws1_c01363{word-spacing:-13.737000px;}
.ws0_c01363{word-spacing:-3.339000px;}
.ws7_c01363{word-spacing:0.000000px;}
._3b_c01363{margin-left:-19.602000px;}
._d_c01363{margin-left:-18.333000px;}
._22_c01363{margin-left:-16.773000px;}
._2c_c01363{margin-left:-15.771000px;}
._1d_c01363{margin-left:-14.028000px;}
._38_c01363{margin-left:-11.616000px;}
._16_c01363{margin-left:-10.395000px;}
._36_c01363{margin-left:-8.979000px;}
._18_c01363{margin-left:-7.968000px;}
._14_c01363{margin-left:-6.471000px;}
._3_c01363{margin-left:-4.830000px;}
._0_c01363{margin-left:-3.675000px;}
._1_c01363{margin-left:-2.415000px;}
._2_c01363{margin-left:-1.365000px;}
._4_c01363{width:1.995000px;}
._7_c01363{width:3.321000px;}
._6_c01363{width:5.103000px;}
._11_c01363{width:6.351000px;}
._9_c01363{width:7.452000px;}
._5_c01363{width:8.820000px;}
._30_c01363{width:9.840000px;}
._8_c01363{width:10.851000px;}
._a_c01363{width:12.411000px;}
._17_c01363{width:14.220000px;}
._e_c01363{width:15.228000px;}
._f_c01363{width:17.577000px;}
._1e_c01363{width:19.641000px;}
._15_c01363{width:21.651000px;}
._1f_c01363{width:22.932000px;}
._10_c01363{width:24.432000px;}
._20_c01363{width:25.662000px;}
._39_c01363{width:33.483000px;}
._27_c01363{width:35.565000px;}
._3f_c01363{width:39.783000px;}
._3e_c01363{width:41.463000px;}
._40_c01363{width:46.017000px;}
._1a_c01363{width:47.784000px;}
._12_c01363{width:53.412000px;}
._1b_c01363{width:60.162000px;}
._19_c01363{width:61.695000px;}
._1c_c01363{width:64.617000px;}
._28_c01363{width:69.783000px;}
._2b_c01363{width:71.940000px;}
._2a_c01363{width:73.137000px;}
._25_c01363{width:76.266000px;}
._31_c01363{width:83.832000px;}
._34_c01363{width:85.926000px;}
._3d_c01363{width:87.516000px;}
._21_c01363{width:90.129000px;}
._3c_c01363{width:91.491000px;}
._3a_c01363{width:98.151000px;}
._29_c01363{width:100.866000px;}
._2e_c01363{width:110.046000px;}
._13_c01363{width:117.414000px;}
._c_c01363{width:120.624000px;}
._b_c01363{width:138.348000px;}
._2f_c01363{width:148.920000px;}
._23_c01363{width:224.181000px;}
._24_c01363{width:230.019000px;}
._35_c01363{width:310.047000px;}
._26_c01363{width:396.864000px;}
._33_c01363{width:399.708000px;}
._37_c01363{width:436.089000px;}
._2d_c01363{width:498.444000px;}
._32_c01363{width:861.189000px;}
.fc2_c01363{color:transparent;}
.fc1_c01363{color:rgb(128,128,128);}
.fc0_c01363{color:rgb(0,0,0);}
.fsa_c01363{font-size:48.000000px;}
.fs7_c01363{font-size:54.000000px;}
.fs3_c01363{font-size:57.000000px;}
.fs2_c01363{font-size:63.000000px;}
.fs5_c01363{font-size:66.000000px;}
.fs6_c01363{font-size:69.000000px;}
.fs9_c01363{font-size:72.000000px;}
.fs4_c01363{font-size:78.000000px;}
.fs1_c01363{font-size:81.000000px;}
.fs8_c01363{font-size:84.000000px;}
.fs0_c01363{font-size:105.000000px;}
.y0_c01363{bottom:0.000000px;}
.y25_c01363{bottom:3.105000px;}
.y24_c01363{bottom:7.228363px;}
.y23_c01363{bottom:51.000000px;}
.y22_c01363{bottom:77.250000px;}
.y21_c01363{bottom:102.000000px;}
.y20_c01363{bottom:126.900000px;}
.y1f_c01363{bottom:152.250000px;}
.y1e_c01363{bottom:176.250000px;}
.y1d_c01363{bottom:201.450000px;}
.y1c_c01363{bottom:225.150000px;}
.y1b_c01363{bottom:250.050000px;}
.y1a_c01363{bottom:275.400000px;}
.y19_c01363{bottom:299.700000px;}
.y18_c01363{bottom:325.650000px;}
.y17_c01363{bottom:349.950000px;}
.y16_c01363{bottom:373.050000px;}
.y15_c01363{bottom:397.650000px;}
.y14_c01363{bottom:422.850000px;}
.y13_c01363{bottom:446.850000px;}
.y12_c01363{bottom:471.150000px;}
.y11_c01363{bottom:496.500000px;}
.y10_c01363{bottom:521.100000px;}
.yf_c01363{bottom:545.100000px;}
.ye_c01363{bottom:570.000000px;}
.yd_c01363{bottom:593.700000px;}
.yc_c01363{bottom:617.250000px;}
.yb_c01363{bottom:640.500000px;}
.ya_c01363{bottom:665.100000px;}
.y9_c01363{bottom:689.850000px;}
.y8_c01363{bottom:713.850000px;}
.y7_c01363{bottom:738.450000px;}
.y6_c01363{bottom:763.050000px;}
.y5_c01363{bottom:786.450000px;}
.y4_c01363{bottom:810.750000px;}
.y3_c01363{bottom:836.700000px;}
.y2_c01363{bottom:859.950000px;}
.y1_c01363{bottom:888.300000px;}
.hc_c01363{height:13.200074px;}
.hd_c01363{height:43.804688px;}
.h8_c01363{height:61.800293px;}
.h4_c01363{height:61.831055px;}
.ha_c01363{height:66.515625px;}
.h5_c01363{height:66.713379px;}
.h7_c01363{height:68.370117px;}
.h3_c01363{height:79.497070px;}
.h9_c01363{height:82.441406px;}
.hb_c01363{height:84.269531px;}
.h6_c01363{height:98.756836px;}
.h2_c01363{height:105.820312px;}
.h1_c01363{height:977.250000px;}
.h0_c01363{height:977.400000px;}
.w2_c01363{width:104.875500px;}
.w0_c01363{width:646.950000px;}
.w1_c01363{width:647.250000px;}
.x0_c01363{left:0.000000px;}
.x11_c01363{left:91.500000px;}
.xe_c01363{left:93.450000px;}
.x4_c01363{left:94.500000px;}
.x10_c01363{left:95.550000px;}
.x8_c01363{left:96.900000px;}
.xd_c01363{left:97.950000px;}
.xc_c01363{left:99.000000px;}
.x9_c01363{left:100.500000px;}
.x7_c01363{left:101.700000px;}
.x6_c01363{left:102.900000px;}
.x5_c01363{left:105.000000px;}
.x3_c01363{left:116.400000px;}
.xb_c01363{left:124.500000px;}
.x1_c01363{left:168.750000px;}
.xf_c01363{left:171.750000px;}
.xa_c01363{left:181.500000px;}
.x12_c01363{left:275.289230px;}
.x2_c01363{left:288.300000px;}
@media print{
.v0_c01363{vertical-align:0.000000pt;}
.ls9_c01363{letter-spacing:0.000000pt;}
.ls0_c01363{letter-spacing:2.666667pt;}
.ls3_c01363{letter-spacing:8.000000pt;}
.ls2_c01363{letter-spacing:10.000000pt;}
.ls4_c01363{letter-spacing:10.490667pt;}
.lsa_c01363{letter-spacing:10.666667pt;}
.ls5_c01363{letter-spacing:11.466667pt;}
.ls7_c01363{letter-spacing:13.866667pt;}
.ls1_c01363{letter-spacing:53.690667pt;}
.ls8_c01363{letter-spacing:169.957333pt;}
.ls6_c01363{letter-spacing:280.400000pt;}
.ws2_c01363{word-spacing:-25.333333pt;}
.ws4_c01363{word-spacing:-22.000000pt;}
.ws6_c01363{word-spacing:-18.666667pt;}
.ws5_c01363{word-spacing:-16.709333pt;}
.ws3_c01363{word-spacing:-14.000000pt;}
.ws1_c01363{word-spacing:-12.210667pt;}
.ws0_c01363{word-spacing:-2.968000pt;}
.ws7_c01363{word-spacing:0.000000pt;}
._3b_c01363{margin-left:-17.424000pt;}
._d_c01363{margin-left:-16.296000pt;}
._22_c01363{margin-left:-14.909333pt;}
._2c_c01363{margin-left:-14.018667pt;}
._1d_c01363{margin-left:-12.469333pt;}
._38_c01363{margin-left:-10.325333pt;}
._16_c01363{margin-left:-9.240000pt;}
._36_c01363{margin-left:-7.981333pt;}
._18_c01363{margin-left:-7.082667pt;}
._14_c01363{margin-left:-5.752000pt;}
._3_c01363{margin-left:-4.293333pt;}
._0_c01363{margin-left:-3.266667pt;}
._1_c01363{margin-left:-2.146667pt;}
._2_c01363{margin-left:-1.213333pt;}
._4_c01363{width:1.773333pt;}
._7_c01363{width:2.952000pt;}
._6_c01363{width:4.536000pt;}
._11_c01363{width:5.645333pt;}
._9_c01363{width:6.624000pt;}
._5_c01363{width:7.840000pt;}
._30_c01363{width:8.746667pt;}
._8_c01363{width:9.645333pt;}
._a_c01363{width:11.032000pt;}
._17_c01363{width:12.640000pt;}
._e_c01363{width:13.536000pt;}
._f_c01363{width:15.624000pt;}
._1e_c01363{width:17.458667pt;}
._15_c01363{width:19.245333pt;}
._1f_c01363{width:20.384000pt;}
._10_c01363{width:21.717333pt;}
._20_c01363{width:22.810667pt;}
._39_c01363{width:29.762667pt;}
._27_c01363{width:31.613333pt;}
._3f_c01363{width:35.362667pt;}
._3e_c01363{width:36.856000pt;}
._40_c01363{width:40.904000pt;}
._1a_c01363{width:42.474667pt;}
._12_c01363{width:47.477333pt;}
._1b_c01363{width:53.477333pt;}
._19_c01363{width:54.840000pt;}
._1c_c01363{width:57.437333pt;}
._28_c01363{width:62.029333pt;}
._2b_c01363{width:63.946667pt;}
._2a_c01363{width:65.010667pt;}
._25_c01363{width:67.792000pt;}
._31_c01363{width:74.517333pt;}
._34_c01363{width:76.378667pt;}
._3d_c01363{width:77.792000pt;}
._21_c01363{width:80.114667pt;}
._3c_c01363{width:81.325333pt;}
._3a_c01363{width:87.245333pt;}
._29_c01363{width:89.658667pt;}
._2e_c01363{width:97.818667pt;}
._13_c01363{width:104.368000pt;}
._c_c01363{width:107.221333pt;}
._b_c01363{width:122.976000pt;}
._2f_c01363{width:132.373333pt;}
._23_c01363{width:199.272000pt;}
._24_c01363{width:204.461333pt;}
._35_c01363{width:275.597333pt;}
._26_c01363{width:352.768000pt;}
._33_c01363{width:355.296000pt;}
._37_c01363{width:387.634667pt;}
._2d_c01363{width:443.061333pt;}
._32_c01363{width:765.501333pt;}
.fsa_c01363{font-size:42.666667pt;}
.fs7_c01363{font-size:48.000000pt;}
.fs3_c01363{font-size:50.666667pt;}
.fs2_c01363{font-size:56.000000pt;}
.fs5_c01363{font-size:58.666667pt;}
.fs6_c01363{font-size:61.333333pt;}
.fs9_c01363{font-size:64.000000pt;}
.fs4_c01363{font-size:69.333333pt;}
.fs1_c01363{font-size:72.000000pt;}
.fs8_c01363{font-size:74.666667pt;}
.fs0_c01363{font-size:93.333333pt;}
.y0_c01363{bottom:0.000000pt;}
.y25_c01363{bottom:2.760000pt;}
.y24_c01363{bottom:6.425212pt;}
.y23_c01363{bottom:45.333333pt;}
.y22_c01363{bottom:68.666667pt;}
.y21_c01363{bottom:90.666667pt;}
.y20_c01363{bottom:112.800000pt;}
.y1f_c01363{bottom:135.333333pt;}
.y1e_c01363{bottom:156.666667pt;}
.y1d_c01363{bottom:179.066667pt;}
.y1c_c01363{bottom:200.133333pt;}
.y1b_c01363{bottom:222.266667pt;}
.y1a_c01363{bottom:244.800000pt;}
.y19_c01363{bottom:266.400000pt;}
.y18_c01363{bottom:289.466667pt;}
.y17_c01363{bottom:311.066667pt;}
.y16_c01363{bottom:331.600000pt;}
.y15_c01363{bottom:353.466667pt;}
.y14_c01363{bottom:375.866667pt;}
.y13_c01363{bottom:397.200000pt;}
.y12_c01363{bottom:418.800000pt;}
.y11_c01363{bottom:441.333333pt;}
.y10_c01363{bottom:463.200000pt;}
.yf_c01363{bottom:484.533333pt;}
.ye_c01363{bottom:506.666667pt;}
.yd_c01363{bottom:527.733333pt;}
.yc_c01363{bottom:548.666667pt;}
.yb_c01363{bottom:569.333333pt;}
.ya_c01363{bottom:591.200000pt;}
.y9_c01363{bottom:613.200000pt;}
.y8_c01363{bottom:634.533333pt;}
.y7_c01363{bottom:656.400000pt;}
.y6_c01363{bottom:678.266667pt;}
.y5_c01363{bottom:699.066667pt;}
.y4_c01363{bottom:720.666667pt;}
.y3_c01363{bottom:743.733333pt;}
.y2_c01363{bottom:764.400000pt;}
.y1_c01363{bottom:789.600000pt;}
.hc_c01363{height:11.733399pt;}
.hd_c01363{height:38.937500pt;}
.h8_c01363{height:54.933594pt;}
.h4_c01363{height:54.960938pt;}
.ha_c01363{height:59.125000pt;}
.h5_c01363{height:59.300781pt;}
.h7_c01363{height:60.773438pt;}
.h3_c01363{height:70.664062pt;}
.h9_c01363{height:73.281250pt;}
.hb_c01363{height:74.906250pt;}
.h6_c01363{height:87.783854pt;}
.h2_c01363{height:94.062500pt;}
.h1_c01363{height:868.666667pt;}
.h0_c01363{height:868.800000pt;}
.w2_c01363{width:93.222667pt;}
.w0_c01363{width:575.066667pt;}
.w1_c01363{width:575.333333pt;}
.x0_c01363{left:0.000000pt;}
.x11_c01363{left:81.333333pt;}
.xe_c01363{left:83.066667pt;}
.x4_c01363{left:84.000000pt;}
.x10_c01363{left:84.933333pt;}
.x8_c01363{left:86.133333pt;}
.xd_c01363{left:87.066667pt;}
.xc_c01363{left:88.000000pt;}
.x9_c01363{left:89.333333pt;}
.x7_c01363{left:90.400000pt;}
.x6_c01363{left:91.466667pt;}
.x5_c01363{left:93.333333pt;}
.x3_c01363{left:103.466667pt;}
.xb_c01363{left:110.666667pt;}
.x1_c01363{left:150.000000pt;}
.xf_c01363{left:152.666667pt;}
.xa_c01363{left:161.333333pt;}
.x12_c01363{left:244.701538pt;}
.x2_c01363{left:256.266667pt;}
}





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

.ir_c01364:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01364{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01364;src:url('chunks/assets/font_ad7155f8043c376e26f6687f.woff2')format("woff");}.ff1_c01364{font-family:ff1_c01364;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01364;src:url('chunks/assets/font_f4d9bc71f31662653e6879bf.woff2')format("woff");}.ff2_c01364{font-family:ff2_c01364;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01364;src:url('chunks/assets/font_dd90925ff41c4dbc07b3f49c.woff2')format("woff");}.ff3_c01364{font-family:ff3_c01364;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01364;src:url('chunks/assets/font_f68f7a570be58dcf41e327ca.woff2')format("woff");}.ff4_c01364{font-family:ff4_c01364;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01364;src:url('chunks/assets/font_c8998893e8194cb546054442.woff2')format("woff");}.ff5_c01364{font-family:ff5_c01364;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01364;src:url('chunks/assets/font_a0088271faa5c48280deb21c.woff2')format("woff");}.ff6_c01364{font-family:ff6_c01364;line-height:1.284180;font-style:normal;font-weight: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_c01364;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c01364{font-family:ff7_c01364;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01364{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01364{vertical-align:0.000000px;}
.lsf_c01364{letter-spacing:0.000000px;}
.lse_c01364{letter-spacing:1.200000px;}
.ls4_c01364{letter-spacing:3.000000px;}
.ls9_c01364{letter-spacing:5.076000px;}
.ls1_c01364{letter-spacing:5.700000px;}
.ls3_c01364{letter-spacing:7.500000px;}
.ls0_c01364{letter-spacing:9.000000px;}
.ls5_c01364{letter-spacing:12.117000px;}
.ls6_c01364{letter-spacing:13.308000px;}
.ls8_c01364{letter-spacing:13.500000px;}
.lsc_c01364{letter-spacing:14.100000px;}
.lsb_c01364{letter-spacing:14.949000px;}
.lsd_c01364{letter-spacing:17.700000px;}
.ls2_c01364{letter-spacing:18.600000px;}
.ls7_c01364{letter-spacing:21.000000px;}
.lsa_c01364{letter-spacing:23.700000px;}
.sc__c01364{text-shadow:none;}
.sc0_c01364{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01364{-webkit-text-stroke:0px transparent;}
.sc0_c01364{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c01364{word-spacing:-27.750000px;}
.ws5_c01364{word-spacing:-24.750000px;}
.ws3_c01364{word-spacing:-21.000000px;}
.ws2_c01364{word-spacing:-18.798000px;}
.ws4_c01364{word-spacing:-18.750000px;}
.ws7_c01364{word-spacing:-13.737000px;}
.ws0_c01364{word-spacing:-1.215000px;}
.ws9_c01364{word-spacing:-0.057000px;}
.wsa_c01364{word-spacing:0.000000px;}
.ws1_c01364{word-spacing:0.765000px;}
.ws8_c01364{word-spacing:5.985000px;}
._1f_c01364{margin-left:-20.466000px;}
._22_c01364{margin-left:-19.206000px;}
._1a_c01364{margin-left:-17.877000px;}
._1b_c01364{margin-left:-16.662000px;}
._21_c01364{margin-left:-14.973000px;}
._11_c01364{margin-left:-13.176000px;}
._14_c01364{margin-left:-11.124000px;}
._19_c01364{margin-left:-9.246000px;}
._20_c01364{margin-left:-8.163000px;}
._f_c01364{margin-left:-6.900000px;}
._15_c01364{margin-left:-5.076000px;}
._10_c01364{margin-left:-3.618000px;}
._1d_c01364{margin-left:-1.851000px;}
._13_c01364{width:1.077000px;}
._2_c01364{width:2.475000px;}
._0_c01364{width:3.555000px;}
._9_c01364{width:4.833000px;}
._3_c01364{width:6.660000px;}
._1_c01364{width:8.550000px;}
._e_c01364{width:10.035000px;}
._1e_c01364{width:11.265000px;}
._5_c01364{width:12.375000px;}
._a_c01364{width:13.434000px;}
._8_c01364{width:15.390000px;}
._16_c01364{width:16.635000px;}
._b_c01364{width:17.685000px;}
._6_c01364{width:18.855000px;}
._4_c01364{width:20.025000px;}
._7_c01364{width:21.825000px;}
._d_c01364{width:22.950000px;}
._18_c01364{width:24.120000px;}
._c_c01364{width:25.767000px;}
._17_c01364{width:27.405000px;}
._26_c01364{width:31.785000px;}
._25_c01364{width:33.396000px;}
._24_c01364{width:38.079000px;}
._28_c01364{width:41.220000px;}
._1c_c01364{width:46.290000px;}
._29_c01364{width:72.363000px;}
._27_c01364{width:76.788000px;}
._12_c01364{width:79.218000px;}
._23_c01364{width:96.258000px;}
._2a_c01364{width:235.170000px;}
.fc2_c01364{color:transparent;}
.fc1_c01364{color:rgb(128,128,128);}
.fc0_c01364{color:rgb(0,0,0);}
.fs0_c01364{font-size:45.000000px;}
.fsa_c01364{font-size:48.000000px;}
.fs1_c01364{font-size:54.000000px;}
.fs2_c01364{font-size:57.000000px;}
.fs8_c01364{font-size:60.000000px;}
.fs7_c01364{font-size:63.000000px;}
.fs4_c01364{font-size:66.000000px;}
.fs9_c01364{font-size:72.000000px;}
.fs6_c01364{font-size:75.000000px;}
.fs3_c01364{font-size:78.000000px;}
.fs5_c01364{font-size:84.000000px;}
.y0_c01364{bottom:0.000000px;}
.y46_c01364{bottom:3.105000px;}
.y45_c01364{bottom:7.228355px;}
.y44_c01364{bottom:63.435000px;}
.y21_c01364{bottom:88.635000px;}
.y43_c01364{bottom:89.385000px;}
.y42_c01364{bottom:112.635000px;}
.y20_c01364{bottom:113.085000px;}
.y1f_c01364{bottom:137.985000px;}
.y41_c01364{bottom:138.585000px;}
.y1e_c01364{bottom:161.685000px;}
.y40_c01364{bottom:163.035000px;}
.y1d_c01364{bottom:186.285000px;}
.y3f_c01364{bottom:188.535000px;}
.y3e_c01364{bottom:212.835000px;}
.y1c_c01364{bottom:234.885000px;}
.y3d_c01364{bottom:235.785000px;}
.y1b_c01364{bottom:260.085000px;}
.y3c_c01364{bottom:261.135000px;}
.y1a_c01364{bottom:284.085000px;}
.y3b_c01364{bottom:285.135000px;}
.y19_c01364{bottom:308.385000px;}
.y3a_c01364{bottom:309.135000px;}
.y18_c01364{bottom:332.385000px;}
.y39_c01364{bottom:333.435000px;}
.y17_c01364{bottom:356.685000px;}
.y38_c01364{bottom:357.735000px;}
.y16_c01364{bottom:380.985000px;}
.y37_c01364{bottom:381.735000px;}
.y15_c01364{bottom:404.985000px;}
.y36_c01364{bottom:406.335000px;}
.y14_c01364{bottom:429.285000px;}
.y35_c01364{bottom:431.235000px;}
.y13_c01364{bottom:453.285000px;}
.y34_c01364{bottom:455.235000px;}
.y12_c01364{bottom:477.885000px;}
.y33_c01364{bottom:479.535000px;}
.y11_c01364{bottom:501.135000px;}
.y32_c01364{bottom:503.835000px;}
.y10_c01364{bottom:525.435000px;}
.y31_c01364{bottom:527.535000px;}
.yf_c01364{bottom:549.435000px;}
.y30_c01364{bottom:551.685000px;}
.ye_c01364{bottom:572.385000px;}
.y2f_c01364{bottom:575.685000px;}
.yd_c01364{bottom:597.585000px;}
.y2e_c01364{bottom:599.985000px;}
.yc_c01364{bottom:621.585000px;}
.y2d_c01364{bottom:623.985000px;}
.yb_c01364{bottom:645.885000px;}
.y2c_c01364{bottom:647.985000px;}
.ya_c01364{bottom:669.885000px;}
.y2b_c01364{bottom:672.585000px;}
.y9_c01364{bottom:694.185000px;}
.y2a_c01364{bottom:696.135000px;}
.y8_c01364{bottom:718.185000px;}
.y29_c01364{bottom:720.135000px;}
.y7_c01364{bottom:742.185000px;}
.y28_c01364{bottom:744.735000px;}
.y6_c01364{bottom:766.335000px;}
.y27_c01364{bottom:768.435000px;}
.y5_c01364{bottom:790.785000px;}
.y26_c01364{bottom:792.435000px;}
.y4_c01364{bottom:812.985000px;}
.y25_c01364{bottom:816.435000px;}
.y3_c01364{bottom:838.635000px;}
.y24_c01364{bottom:840.735000px;}
.y2_c01364{bottom:863.535000px;}
.y23_c01364{bottom:864.885000px;}
.y1_c01364{bottom:887.235000px;}
.y22_c01364{bottom:888.885000px;}
.he_c01364{height:13.200074px;}
.hf_c01364{height:43.804688px;}
.h2_c01364{height:44.165039px;}
.h3_c01364{height:54.421875px;}
.h6_c01364{height:66.515625px;}
.h4_c01364{height:66.713379px;}
.hb_c01364{height:72.168457px;}
.ha_c01364{height:73.571777px;}
.h8_c01364{height:73.608398px;}
.h9_c01364{height:82.441406px;}
.hd_c01364{height:84.269531px;}
.h7_c01364{height:84.656250px;}
.hc_c01364{height:91.160156px;}
.h5_c01364{height:98.756836px;}
.h0_c01364{height:977.925000px;}
.h1_c01364{height:978.000000px;}
.w2_c01364{width:104.875500px;}
.w0_c01364{width:665.850000px;}
.w1_c01364{width:666.000000px;}
.x0_c01364{left:0.000000px;}
.x4_c01364{left:22.350000px;}
.x3_c01364{left:24.300000px;}
.x1_c01364{left:25.350000px;}
.x2_c01364{left:27.300000px;}
.x5_c01364{left:28.350000px;}
.x6_c01364{left:31.500000px;}
.x7_c01364{left:38.100000px;}
.xa_c01364{left:43.950000px;}
.x9_c01364{left:47.250000px;}
.x8_c01364{left:118.800000px;}
.x12_c01364{left:284.739258px;}
.xd_c01364{left:295.650000px;}
.xe_c01364{left:296.700000px;}
.xb_c01364{left:298.650000px;}
.xf_c01364{left:300.150000px;}
.xc_c01364{left:301.350000px;}
.x10_c01364{left:323.100000px;}
.x11_c01364{left:416.250000px;}
@media print{
.v0_c01364{vertical-align:0.000000pt;}
.lsf_c01364{letter-spacing:0.000000pt;}
.lse_c01364{letter-spacing:1.066667pt;}
.ls4_c01364{letter-spacing:2.666667pt;}
.ls9_c01364{letter-spacing:4.512000pt;}
.ls1_c01364{letter-spacing:5.066667pt;}
.ls3_c01364{letter-spacing:6.666667pt;}
.ls0_c01364{letter-spacing:8.000000pt;}
.ls5_c01364{letter-spacing:10.770667pt;}
.ls6_c01364{letter-spacing:11.829333pt;}
.ls8_c01364{letter-spacing:12.000000pt;}
.lsc_c01364{letter-spacing:12.533333pt;}
.lsb_c01364{letter-spacing:13.288000pt;}
.lsd_c01364{letter-spacing:15.733333pt;}
.ls2_c01364{letter-spacing:16.533333pt;}
.ls7_c01364{letter-spacing:18.666667pt;}
.lsa_c01364{letter-spacing:21.066667pt;}
.ws6_c01364{word-spacing:-24.666667pt;}
.ws5_c01364{word-spacing:-22.000000pt;}
.ws3_c01364{word-spacing:-18.666667pt;}
.ws2_c01364{word-spacing:-16.709333pt;}
.ws4_c01364{word-spacing:-16.666667pt;}
.ws7_c01364{word-spacing:-12.210667pt;}
.ws0_c01364{word-spacing:-1.080000pt;}
.ws9_c01364{word-spacing:-0.050667pt;}
.wsa_c01364{word-spacing:0.000000pt;}
.ws1_c01364{word-spacing:0.680000pt;}
.ws8_c01364{word-spacing:5.320000pt;}
._1f_c01364{margin-left:-18.192000pt;}
._22_c01364{margin-left:-17.072000pt;}
._1a_c01364{margin-left:-15.890667pt;}
._1b_c01364{margin-left:-14.810667pt;}
._21_c01364{margin-left:-13.309333pt;}
._11_c01364{margin-left:-11.712000pt;}
._14_c01364{margin-left:-9.888000pt;}
._19_c01364{margin-left:-8.218667pt;}
._20_c01364{margin-left:-7.256000pt;}
._f_c01364{margin-left:-6.133333pt;}
._15_c01364{margin-left:-4.512000pt;}
._10_c01364{margin-left:-3.216000pt;}
._1d_c01364{margin-left:-1.645333pt;}
._13_c01364{width:0.957333pt;}
._2_c01364{width:2.200000pt;}
._0_c01364{width:3.160000pt;}
._9_c01364{width:4.296000pt;}
._3_c01364{width:5.920000pt;}
._1_c01364{width:7.600000pt;}
._e_c01364{width:8.920000pt;}
._1e_c01364{width:10.013333pt;}
._5_c01364{width:11.000000pt;}
._a_c01364{width:11.941333pt;}
._8_c01364{width:13.680000pt;}
._16_c01364{width:14.786667pt;}
._b_c01364{width:15.720000pt;}
._6_c01364{width:16.760000pt;}
._4_c01364{width:17.800000pt;}
._7_c01364{width:19.400000pt;}
._d_c01364{width:20.400000pt;}
._18_c01364{width:21.440000pt;}
._c_c01364{width:22.904000pt;}
._17_c01364{width:24.360000pt;}
._26_c01364{width:28.253333pt;}
._25_c01364{width:29.685333pt;}
._24_c01364{width:33.848000pt;}
._28_c01364{width:36.640000pt;}
._1c_c01364{width:41.146667pt;}
._29_c01364{width:64.322667pt;}
._27_c01364{width:68.256000pt;}
._12_c01364{width:70.416000pt;}
._23_c01364{width:85.562667pt;}
._2a_c01364{width:209.040000pt;}
.fs0_c01364{font-size:40.000000pt;}
.fsa_c01364{font-size:42.666667pt;}
.fs1_c01364{font-size:48.000000pt;}
.fs2_c01364{font-size:50.666667pt;}
.fs8_c01364{font-size:53.333333pt;}
.fs7_c01364{font-size:56.000000pt;}
.fs4_c01364{font-size:58.666667pt;}
.fs9_c01364{font-size:64.000000pt;}
.fs6_c01364{font-size:66.666667pt;}
.fs3_c01364{font-size:69.333333pt;}
.fs5_c01364{font-size:74.666667pt;}
.y0_c01364{bottom:0.000000pt;}
.y46_c01364{bottom:2.760000pt;}
.y45_c01364{bottom:6.425204pt;}
.y44_c01364{bottom:56.386667pt;}
.y21_c01364{bottom:78.786667pt;}
.y43_c01364{bottom:79.453333pt;}
.y42_c01364{bottom:100.120000pt;}
.y20_c01364{bottom:100.520000pt;}
.y1f_c01364{bottom:122.653333pt;}
.y41_c01364{bottom:123.186667pt;}
.y1e_c01364{bottom:143.720000pt;}
.y40_c01364{bottom:144.920000pt;}
.y1d_c01364{bottom:165.586667pt;}
.y3f_c01364{bottom:167.586667pt;}
.y3e_c01364{bottom:189.186667pt;}
.y1c_c01364{bottom:208.786667pt;}
.y3d_c01364{bottom:209.586667pt;}
.y1b_c01364{bottom:231.186667pt;}
.y3c_c01364{bottom:232.120000pt;}
.y1a_c01364{bottom:252.520000pt;}
.y3b_c01364{bottom:253.453333pt;}
.y19_c01364{bottom:274.120000pt;}
.y3a_c01364{bottom:274.786667pt;}
.y18_c01364{bottom:295.453333pt;}
.y39_c01364{bottom:296.386667pt;}
.y17_c01364{bottom:317.053333pt;}
.y38_c01364{bottom:317.986667pt;}
.y16_c01364{bottom:338.653333pt;}
.y37_c01364{bottom:339.320000pt;}
.y15_c01364{bottom:359.986667pt;}
.y36_c01364{bottom:361.186667pt;}
.y14_c01364{bottom:381.586667pt;}
.y35_c01364{bottom:383.320000pt;}
.y13_c01364{bottom:402.920000pt;}
.y34_c01364{bottom:404.653333pt;}
.y12_c01364{bottom:424.786667pt;}
.y33_c01364{bottom:426.253333pt;}
.y11_c01364{bottom:445.453333pt;}
.y32_c01364{bottom:447.853333pt;}
.y10_c01364{bottom:467.053333pt;}
.y31_c01364{bottom:468.920000pt;}
.yf_c01364{bottom:488.386667pt;}
.y30_c01364{bottom:490.386667pt;}
.ye_c01364{bottom:508.786667pt;}
.y2f_c01364{bottom:511.720000pt;}
.yd_c01364{bottom:531.186667pt;}
.y2e_c01364{bottom:533.320000pt;}
.yc_c01364{bottom:552.520000pt;}
.y2d_c01364{bottom:554.653333pt;}
.yb_c01364{bottom:574.120000pt;}
.y2c_c01364{bottom:575.986667pt;}
.ya_c01364{bottom:595.453333pt;}
.y2b_c01364{bottom:597.853333pt;}
.y9_c01364{bottom:617.053333pt;}
.y2a_c01364{bottom:618.786667pt;}
.y8_c01364{bottom:638.386667pt;}
.y29_c01364{bottom:640.120000pt;}
.y7_c01364{bottom:659.720000pt;}
.y28_c01364{bottom:661.986667pt;}
.y6_c01364{bottom:681.186667pt;}
.y27_c01364{bottom:683.053333pt;}
.y5_c01364{bottom:702.920000pt;}
.y26_c01364{bottom:704.386667pt;}
.y4_c01364{bottom:722.653333pt;}
.y25_c01364{bottom:725.720000pt;}
.y3_c01364{bottom:745.453333pt;}
.y24_c01364{bottom:747.320000pt;}
.y2_c01364{bottom:767.586667pt;}
.y23_c01364{bottom:768.786667pt;}
.y1_c01364{bottom:788.653333pt;}
.y22_c01364{bottom:790.120000pt;}
.he_c01364{height:11.733399pt;}
.hf_c01364{height:38.937500pt;}
.h2_c01364{height:39.257812pt;}
.h3_c01364{height:48.375000pt;}
.h6_c01364{height:59.125000pt;}
.h4_c01364{height:59.300781pt;}
.hb_c01364{height:64.149740pt;}
.ha_c01364{height:65.397135pt;}
.h8_c01364{height:65.429688pt;}
.h9_c01364{height:73.281250pt;}
.hd_c01364{height:74.906250pt;}
.h7_c01364{height:75.250000pt;}
.hc_c01364{height:81.031250pt;}
.h5_c01364{height:87.783854pt;}
.h0_c01364{height:869.266667pt;}
.h1_c01364{height:869.333333pt;}
.w2_c01364{width:93.222667pt;}
.w0_c01364{width:591.866667pt;}
.w1_c01364{width:592.000000pt;}
.x0_c01364{left:0.000000pt;}
.x4_c01364{left:19.866667pt;}
.x3_c01364{left:21.600000pt;}
.x1_c01364{left:22.533333pt;}
.x2_c01364{left:24.266667pt;}
.x5_c01364{left:25.200000pt;}
.x6_c01364{left:28.000000pt;}
.x7_c01364{left:33.866667pt;}
.xa_c01364{left:39.066667pt;}
.x9_c01364{left:42.000000pt;}
.x8_c01364{left:105.600000pt;}
.x12_c01364{left:253.101563pt;}
.xd_c01364{left:262.800000pt;}
.xe_c01364{left:263.733333pt;}
.xb_c01364{left:265.466667pt;}
.xf_c01364{left:266.800000pt;}
.xc_c01364{left:267.866667pt;}
.x10_c01364{left:287.200000pt;}
.x11_c01364{left:370.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_c01365 {
    display:none;
  }
  .loading-indicator_c01365.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01365 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01365 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01365" -> "#page-container .classname_c01365")
 */
.pf_c01365 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01365 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01365.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01365 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01365 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01365 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01365 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01365 {overflow:visible;}
  }
}
.c_c01365 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01365 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01365:after { /* webkit #35443 */
  content: '';
}
.t_c01365:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01365 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01365 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01365 { /* info for Javascript */
  display:none;
}
.l_c01365 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01365 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01365 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01365:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01365{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01365;src:url('chunks/assets/font_2b967910cb73edff7bb4ae7e.woff2')format("woff");}.ff1_c01365{font-family:ff1_c01365;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01365;src:url('chunks/assets/font_01a14efc02f1f3ca62b3c04a.woff2')format("woff");}.ff2_c01365{font-family:ff2_c01365;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01365;src:url('chunks/assets/font_ea0146e87a05ea199ab57fcb.woff2')format("woff");}.ff3_c01365{font-family:ff3_c01365;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01365;src:url('chunks/assets/font_3d981db08f0eef1299ca0414.woff2')format("woff");}.ff4_c01365{font-family:ff4_c01365;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01365;src:url('chunks/assets/font_9233468fdc8f84e3eafff6e3.woff2')format("woff");}.ff5_c01365{font-family:ff5_c01365;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01365;src:url('chunks/assets/font_7c71755e16939c90ac32c08e.woff2')format("woff");}.ff6_c01365{font-family:ff6_c01365;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01365;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c01365{font-family:ff7_c01365;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01365{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01365{vertical-align:0.000000px;}
.ls8_c01365{letter-spacing:0.000000px;}
.ls1_c01365{letter-spacing:2.400000px;}
.ls9_c01365{letter-spacing:3.000000px;}
.ls0_c01365{letter-spacing:3.600000px;}
.ls3_c01365{letter-spacing:4.200000px;}
.ls5_c01365{letter-spacing:6.600000px;}
.ls7_c01365{letter-spacing:9.000000px;}
.ls4_c01365{letter-spacing:124.800000px;}
.ls2_c01365{letter-spacing:142.800000px;}
.ls6_c01365{letter-spacing:954.000000px;}
.sc__c01365{text-shadow:none;}
.sc0_c01365{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01365{-webkit-text-stroke:0px transparent;}
.sc0_c01365{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01365{word-spacing:-25.350000px;}
.ws5_c01365{word-spacing:-20.250000px;}
.ws2_c01365{word-spacing:-18.798000px;}
.ws0_c01365{word-spacing:-18.750000px;}
.ws3_c01365{word-spacing:-13.737000px;}
.ws6_c01365{word-spacing:0.000000px;}
.ws4_c01365{word-spacing:1.767000px;}
._0_c01365{margin-left:-32.724000px;}
._33_c01365{margin-left:-24.540000px;}
._2d_c01365{margin-left:-21.564000px;}
._17_c01365{margin-left:-18.216000px;}
._6_c01365{margin-left:-16.092000px;}
._12_c01365{margin-left:-13.935000px;}
._9_c01365{margin-left:-12.636000px;}
._20_c01365{margin-left:-11.307000px;}
._19_c01365{margin-left:-10.212000px;}
._30_c01365{margin-left:-9.123000px;}
._14_c01365{margin-left:-7.857000px;}
._8_c01365{margin-left:-6.264000px;}
._f_c01365{margin-left:-4.950000px;}
._4_c01365{margin-left:-3.564000px;}
._e_c01365{margin-left:-2.250000px;}
._d_c01365{margin-left:-1.200000px;}
._3_c01365{width:1.404000px;}
._13_c01365{width:2.919000px;}
._11_c01365{width:4.200000px;}
._a_c01365{width:5.550000px;}
._15_c01365{width:6.681000px;}
._b_c01365{width:8.025000px;}
._c_c01365{width:9.900000px;}
._1d_c01365{width:11.133000px;}
._5_c01365{width:12.204000px;}
._7_c01365{width:14.256000px;}
._2_c01365{width:15.444000px;}
._23_c01365{width:16.971000px;}
._2f_c01365{width:18.090000px;}
._1f_c01365{width:20.007000px;}
._31_c01365{width:21.405000px;}
._29_c01365{width:22.434000px;}
._36_c01365{width:26.049000px;}
._39_c01365{width:31.641000px;}
._1_c01365{width:33.804000px;}
._1a_c01365{width:77.466000px;}
._35_c01365{width:82.314000px;}
._3b_c01365{width:87.012000px;}
._21_c01365{width:89.817000px;}
._2e_c01365{width:96.477000px;}
._37_c01365{width:100.374000px;}
._24_c01365{width:103.542000px;}
._3c_c01365{width:106.269000px;}
._2b_c01365{width:107.976000px;}
._34_c01365{width:109.263000px;}
._2a_c01365{width:113.208000px;}
._2c_c01365{width:114.762000px;}
._22_c01365{width:115.887000px;}
._1c_c01365{width:132.000000px;}
._1b_c01365{width:133.563000px;}
._16_c01365{width:140.790000px;}
._10_c01365{width:144.675000px;}
._27_c01365{width:163.578000px;}
._38_c01365{width:198.297000px;}
._28_c01365{width:218.118000px;}
._1e_c01365{width:224.331000px;}
._32_c01365{width:269.229000px;}
._18_c01365{width:308.853000px;}
._3a_c01365{width:502.236000px;}
._26_c01365{width:730.941000px;}
._25_c01365{width:929.784000px;}
.fc2_c01365{color:transparent;}
.fc1_c01365{color:rgb(128,128,128);}
.fc0_c01365{color:rgb(0,0,0);}
.fs8_c01365{font-size:48.000000px;}
.fs5_c01365{font-size:57.000000px;}
.fs6_c01365{font-size:69.000000px;}
.fs3_c01365{font-size:72.000000px;}
.fs1_c01365{font-size:75.000000px;}
.fs2_c01365{font-size:78.000000px;}
.fs7_c01365{font-size:81.000000px;}
.fs4_c01365{font-size:84.000000px;}
.fs0_c01365{font-size:108.000000px;}
.y0_c01365{bottom:0.000000px;}
.y26_c01365{bottom:3.105000px;}
.y25_c01365{bottom:7.228371px;}
.y24_c01365{bottom:64.815000px;}
.y23_c01365{bottom:90.915000px;}
.y22_c01365{bottom:115.215000px;}
.y21_c01365{bottom:140.115000px;}
.y20_c01365{bottom:164.415000px;}
.y1f_c01365{bottom:188.715000px;}
.y1e_c01365{bottom:213.015000px;}
.y1d_c01365{bottom:237.015000px;}
.y1c_c01365{bottom:261.915000px;}
.y1b_c01365{bottom:286.215000px;}
.y1a_c01365{bottom:310.965000px;}
.y19_c01365{bottom:335.115000px;}
.y18_c01365{bottom:359.415000px;}
.y17_c01365{bottom:383.865000px;}
.y16_c01365{bottom:408.165000px;}
.y15_c01365{bottom:432.465000px;}
.y14_c01365{bottom:457.065000px;}
.y13_c01365{bottom:481.365000px;}
.y12_c01365{bottom:505.215000px;}
.y11_c01365{bottom:529.665000px;}
.y10_c01365{bottom:553.515000px;}
.yf_c01365{bottom:578.115000px;}
.ye_c01365{bottom:602.415000px;}
.yd_c01365{bottom:627.165000px;}
.yc_c01365{bottom:651.165000px;}
.yb_c01365{bottom:675.315000px;}
.ya_c01365{bottom:699.315000px;}
.y9_c01365{bottom:723.615000px;}
.y8_c01365{bottom:747.015000px;}
.y7_c01365{bottom:771.615000px;}
.y6_c01365{bottom:796.215000px;}
.y5_c01365{bottom:820.515000px;}
.y4_c01365{bottom:844.515000px;}
.y3_c01365{bottom:868.815000px;}
.y2_c01365{bottom:892.665000px;}
.y1_c01365{bottom:928.815000px;}
.h7_c01365{height:13.200074px;}
.h8_c01365{height:43.804688px;}
.h6_c01365{height:66.713379px;}
.h3_c01365{height:73.571777px;}
.h5_c01365{height:82.441406px;}
.h4_c01365{height:98.756836px;}
.h2_c01365{height:136.740234px;}
.h1_c01365{height:986.250000px;}
.h0_c01365{height:986.325000px;}
.w2_c01365{width:104.875500px;}
.w0_c01365{width:667.425000px;}
.w1_c01365{width:667.500000px;}
.x0_c01365{left:0.000000px;}
.x5_c01365{left:103.950000px;}
.x2_c01365{left:107.100000px;}
.xa_c01365{left:108.300000px;}
.x4_c01365{left:109.650000px;}
.x7_c01365{left:111.300000px;}
.x3_c01365{left:112.800000px;}
.x9_c01365{left:114.150000px;}
.xb_c01365{left:115.200000px;}
.xc_c01365{left:116.550000px;}
.x8_c01365{left:136.050000px;}
.x6_c01365{left:155.250000px;}
.x1_c01365{left:275.700000px;}
.xe_c01365{left:285.526749px;}
.xd_c01365{left:578.850000px;}
@media print{
.v0_c01365{vertical-align:0.000000pt;}
.ls8_c01365{letter-spacing:0.000000pt;}
.ls1_c01365{letter-spacing:2.133333pt;}
.ls9_c01365{letter-spacing:2.666667pt;}
.ls0_c01365{letter-spacing:3.200000pt;}
.ls3_c01365{letter-spacing:3.733333pt;}
.ls5_c01365{letter-spacing:5.866667pt;}
.ls7_c01365{letter-spacing:8.000000pt;}
.ls4_c01365{letter-spacing:110.933333pt;}
.ls2_c01365{letter-spacing:126.933333pt;}
.ls6_c01365{letter-spacing:848.000000pt;}
.ws1_c01365{word-spacing:-22.533333pt;}
.ws5_c01365{word-spacing:-18.000000pt;}
.ws2_c01365{word-spacing:-16.709333pt;}
.ws0_c01365{word-spacing:-16.666667pt;}
.ws3_c01365{word-spacing:-12.210667pt;}
.ws6_c01365{word-spacing:0.000000pt;}
.ws4_c01365{word-spacing:1.570667pt;}
._0_c01365{margin-left:-29.088000pt;}
._33_c01365{margin-left:-21.813333pt;}
._2d_c01365{margin-left:-19.168000pt;}
._17_c01365{margin-left:-16.192000pt;}
._6_c01365{margin-left:-14.304000pt;}
._12_c01365{margin-left:-12.386667pt;}
._9_c01365{margin-left:-11.232000pt;}
._20_c01365{margin-left:-10.050667pt;}
._19_c01365{margin-left:-9.077333pt;}
._30_c01365{margin-left:-8.109333pt;}
._14_c01365{margin-left:-6.984000pt;}
._8_c01365{margin-left:-5.568000pt;}
._f_c01365{margin-left:-4.400000pt;}
._4_c01365{margin-left:-3.168000pt;}
._e_c01365{margin-left:-2.000000pt;}
._d_c01365{margin-left:-1.066667pt;}
._3_c01365{width:1.248000pt;}
._13_c01365{width:2.594667pt;}
._11_c01365{width:3.733333pt;}
._a_c01365{width:4.933333pt;}
._15_c01365{width:5.938667pt;}
._b_c01365{width:7.133333pt;}
._c_c01365{width:8.800000pt;}
._1d_c01365{width:9.896000pt;}
._5_c01365{width:10.848000pt;}
._7_c01365{width:12.672000pt;}
._2_c01365{width:13.728000pt;}
._23_c01365{width:15.085333pt;}
._2f_c01365{width:16.080000pt;}
._1f_c01365{width:17.784000pt;}
._31_c01365{width:19.026667pt;}
._29_c01365{width:19.941333pt;}
._36_c01365{width:23.154667pt;}
._39_c01365{width:28.125333pt;}
._1_c01365{width:30.048000pt;}
._1a_c01365{width:68.858667pt;}
._35_c01365{width:73.168000pt;}
._3b_c01365{width:77.344000pt;}
._21_c01365{width:79.837333pt;}
._2e_c01365{width:85.757333pt;}
._37_c01365{width:89.221333pt;}
._24_c01365{width:92.037333pt;}
._3c_c01365{width:94.461333pt;}
._2b_c01365{width:95.978667pt;}
._34_c01365{width:97.122667pt;}
._2a_c01365{width:100.629333pt;}
._2c_c01365{width:102.010667pt;}
._22_c01365{width:103.010667pt;}
._1c_c01365{width:117.333333pt;}
._1b_c01365{width:118.722667pt;}
._16_c01365{width:125.146667pt;}
._10_c01365{width:128.600000pt;}
._27_c01365{width:145.402667pt;}
._38_c01365{width:176.264000pt;}
._28_c01365{width:193.882667pt;}
._1e_c01365{width:199.405333pt;}
._32_c01365{width:239.314667pt;}
._18_c01365{width:274.536000pt;}
._3a_c01365{width:446.432000pt;}
._26_c01365{width:649.725333pt;}
._25_c01365{width:826.474667pt;}
.fs8_c01365{font-size:42.666667pt;}
.fs5_c01365{font-size:50.666667pt;}
.fs6_c01365{font-size:61.333333pt;}
.fs3_c01365{font-size:64.000000pt;}
.fs1_c01365{font-size:66.666667pt;}
.fs2_c01365{font-size:69.333333pt;}
.fs7_c01365{font-size:72.000000pt;}
.fs4_c01365{font-size:74.666667pt;}
.fs0_c01365{font-size:96.000000pt;}
.y0_c01365{bottom:0.000000pt;}
.y26_c01365{bottom:2.760000pt;}
.y25_c01365{bottom:6.425219pt;}
.y24_c01365{bottom:57.613333pt;}
.y23_c01365{bottom:80.813333pt;}
.y22_c01365{bottom:102.413333pt;}
.y21_c01365{bottom:124.546667pt;}
.y20_c01365{bottom:146.146667pt;}
.y1f_c01365{bottom:167.746667pt;}
.y1e_c01365{bottom:189.346667pt;}
.y1d_c01365{bottom:210.680000pt;}
.y1c_c01365{bottom:232.813333pt;}
.y1b_c01365{bottom:254.413333pt;}
.y1a_c01365{bottom:276.413333pt;}
.y19_c01365{bottom:297.880000pt;}
.y18_c01365{bottom:319.480000pt;}
.y17_c01365{bottom:341.213333pt;}
.y16_c01365{bottom:362.813333pt;}
.y15_c01365{bottom:384.413333pt;}
.y14_c01365{bottom:406.280000pt;}
.y13_c01365{bottom:427.880000pt;}
.y12_c01365{bottom:449.080000pt;}
.y11_c01365{bottom:470.813333pt;}
.y10_c01365{bottom:492.013333pt;}
.yf_c01365{bottom:513.880000pt;}
.ye_c01365{bottom:535.480000pt;}
.yd_c01365{bottom:557.480000pt;}
.yc_c01365{bottom:578.813333pt;}
.yb_c01365{bottom:600.280000pt;}
.ya_c01365{bottom:621.613333pt;}
.y9_c01365{bottom:643.213333pt;}
.y8_c01365{bottom:664.013333pt;}
.y7_c01365{bottom:685.880000pt;}
.y6_c01365{bottom:707.746667pt;}
.y5_c01365{bottom:729.346667pt;}
.y4_c01365{bottom:750.680000pt;}
.y3_c01365{bottom:772.280000pt;}
.y2_c01365{bottom:793.480000pt;}
.y1_c01365{bottom:825.613333pt;}
.h7_c01365{height:11.733399pt;}
.h8_c01365{height:38.937500pt;}
.h6_c01365{height:59.300781pt;}
.h3_c01365{height:65.397135pt;}
.h5_c01365{height:73.281250pt;}
.h4_c01365{height:87.783854pt;}
.h2_c01365{height:121.546875pt;}
.h1_c01365{height:876.666667pt;}
.h0_c01365{height:876.733333pt;}
.w2_c01365{width:93.222667pt;}
.w0_c01365{width:593.266667pt;}
.w1_c01365{width:593.333333pt;}
.x0_c01365{left:0.000000pt;}
.x5_c01365{left:92.400000pt;}
.x2_c01365{left:95.200000pt;}
.xa_c01365{left:96.266667pt;}
.x4_c01365{left:97.466667pt;}
.x7_c01365{left:98.933333pt;}
.x3_c01365{left:100.266667pt;}
.x9_c01365{left:101.466667pt;}
.xb_c01365{left:102.400000pt;}
.xc_c01365{left:103.600000pt;}
.x8_c01365{left:120.933333pt;}
.x6_c01365{left:138.000000pt;}
.x1_c01365{left:245.066667pt;}
.xe_c01365{left:253.801554pt;}
.xd_c01365{left:514.533333pt;}
}





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

.ir_c01366:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01366{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01366;src:url('chunks/assets/font_8179821e0f332e6e81f42775.woff2')format("woff");}.ff1_c01366{font-family:ff1_c01366;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01366;src:url('chunks/assets/font_5b8648adb69dfb7a13d06171.woff2')format("woff");}.ff2_c01366{font-family:ff2_c01366;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01366;src:url('chunks/assets/font_137ec085c7d1631c3d9c2caa.woff2')format("woff");}.ff3_c01366{font-family:ff3_c01366;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01366;src:url('chunks/assets/font_0e6d647c2c03c3b04ed142b2.woff2')format("woff");}.ff4_c01366{font-family:ff4_c01366;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01366;src:url('chunks/assets/font_6575b8d3d9491b58a3e1a15a.woff2')format("woff");}.ff5_c01366{font-family:ff5_c01366;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01366;src:url('chunks/assets/font_2b4b928cc2273eb6a540e9cb.woff2')format("woff");}.ff6_c01366{font-family:ff6_c01366;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01366;src:url('chunks/assets/font_c302dbefc7ae8cf56df7a833.woff2')format("woff");}.ff7_c01366{font-family:ff7_c01366;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c01366;src:url('chunks/assets/font_034d3f92d567d4b5e49e368f.woff2')format("woff");}.ff8_c01366{font-family:ff8_c01366;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c01366;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff9_c01366{font-family:ff9_c01366;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01366{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01366{vertical-align:0.000000px;}
.lsf_c01366{letter-spacing:-6.000000px;}
.lsd_c01366{letter-spacing:0.000000px;}
.ls3_c01366{letter-spacing:1.200000px;}
.ls7_c01366{letter-spacing:1.512000px;}
.ls9_c01366{letter-spacing:3.000000px;}
.ls6_c01366{letter-spacing:3.600000px;}
.lsb_c01366{letter-spacing:3.900000px;}
.ls8_c01366{letter-spacing:4.200000px;}
.lse_c01366{letter-spacing:9.000000px;}
.lsa_c01366{letter-spacing:20.076000px;}
.ls0_c01366{letter-spacing:22.200000px;}
.ls4_c01366{letter-spacing:25.200000px;}
.ls1_c01366{letter-spacing:106.200000px;}
.ls2_c01366{letter-spacing:108.000000px;}
.lsc_c01366{letter-spacing:297.000000px;}
.ls5_c01366{letter-spacing:1244.400000px;}
.sc__c01366{text-shadow:none;}
.sc0_c01366{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01366{-webkit-text-stroke:0px transparent;}
.sc0_c01366{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c01366{word-spacing:-79.209000px;}
.ws4_c01366{word-spacing:-30.696000px;}
.ws1_c01366{word-spacing:-27.750000px;}
.ws2_c01366{word-spacing:-20.250000px;}
.ws0_c01366{word-spacing:-18.750000px;}
.ws5_c01366{word-spacing:0.000000px;}
._2a_c01366{margin-left:-43.731000px;}
._27_c01366{margin-left:-20.751000px;}
._1c_c01366{margin-left:-19.719000px;}
._6_c01366{margin-left:-18.225000px;}
._1e_c01366{margin-left:-16.479000px;}
._1b_c01366{margin-left:-15.075000px;}
._15_c01366{margin-left:-13.650000px;}
._18_c01366{margin-left:-11.625000px;}
._1a_c01366{margin-left:-10.500000px;}
._28_c01366{margin-left:-9.450000px;}
._b_c01366{margin-left:-8.325000px;}
._12_c01366{margin-left:-6.882000px;}
._d_c01366{margin-left:-5.700000px;}
._4_c01366{margin-left:-4.275000px;}
._c_c01366{margin-left:-3.225000px;}
._8_c01366{margin-left:-2.100000px;}
._9_c01366{margin-left:-1.050000px;}
._0_c01366{width:1.725000px;}
._1_c01366{width:3.450000px;}
._5_c01366{width:5.250000px;}
._2_c01366{width:6.900000px;}
._3_c01366{width:8.850000px;}
._a_c01366{width:10.554000px;}
._10_c01366{width:12.471000px;}
._11_c01366{width:13.587000px;}
._21_c01366{width:15.252000px;}
._36_c01366{width:16.401000px;}
._31_c01366{width:28.248000px;}
._16_c01366{width:30.492000px;}
._34_c01366{width:33.267000px;}
._e_c01366{width:34.473000px;}
._30_c01366{width:52.350000px;}
._32_c01366{width:56.889000px;}
._2c_c01366{width:59.850000px;}
._2e_c01366{width:62.907000px;}
._2f_c01366{width:67.782000px;}
._2b_c01366{width:70.575000px;}
._2d_c01366{width:71.604000px;}
._26_c01366{width:75.855000px;}
._1f_c01366{width:78.513000px;}
._25_c01366{width:84.960000px;}
._24_c01366{width:87.051000px;}
._1d_c01366{width:94.875000px;}
._14_c01366{width:96.675000px;}
._17_c01366{width:98.925000px;}
._19_c01366{width:103.707000px;}
._13_c01366{width:108.063000px;}
._f_c01366{width:131.907000px;}
._22_c01366{width:158.952000px;}
._20_c01366{width:164.883000px;}
._35_c01366{width:175.389000px;}
._29_c01366{width:186.882000px;}
._7_c01366{width:237.975000px;}
._23_c01366{width:643.674000px;}
._33_c01366{width:737.088000px;}
.fc2_c01366{color:transparent;}
.fc1_c01366{color:rgb(128,128,128);}
.fc0_c01366{color:rgb(0,0,0);}
.fs4_c01366{font-size:48.000000px;}
.fs7_c01366{font-size:54.000000px;}
.fs2_c01366{font-size:66.000000px;}
.fs0_c01366{font-size:75.000000px;}
.fs9_c01366{font-size:78.000000px;}
.fs3_c01366{font-size:81.000000px;}
.fs1_c01366{font-size:84.000000px;}
.fs5_c01366{font-size:93.000000px;}
.fs6_c01366{font-size:102.000000px;}
.fs8_c01366{font-size:117.000000px;}
.y0_c01366{bottom:0.000000px;}
.y24_c01366{bottom:3.105000px;}
.y23_c01366{bottom:7.228369px;}
.y22_c01366{bottom:88.320000px;}
.y21_c01366{bottom:112.770000px;}
.y20_c01366{bottom:137.370000px;}
.y1f_c01366{bottom:161.370000px;}
.y1e_c01366{bottom:185.970000px;}
.y1d_c01366{bottom:210.270000px;}
.y1c_c01366{bottom:234.270000px;}
.y1b_c01366{bottom:259.470000px;}
.y1a_c01366{bottom:283.470000px;}
.y19_c01366{bottom:307.470000px;}
.y18_c01366{bottom:331.320000px;}
.y17_c01366{bottom:355.770000px;}
.y16_c01366{bottom:380.070000px;}
.y15_c01366{bottom:404.370000px;}
.y14_c01366{bottom:428.220000px;}
.y13_c01366{bottom:452.820000px;}
.y12_c01366{bottom:476.520000px;}
.y11_c01366{bottom:500.220000px;}
.y10_c01366{bottom:524.370000px;}
.yf_c01366{bottom:548.370000px;}
.ye_c01366{bottom:572.670000px;}
.yd_c01366{bottom:596.070000px;}
.yc_c01366{bottom:621.270000px;}
.yb_c01366{bottom:644.970000px;}
.ya_c01366{bottom:669.270000px;}
.y9_c01366{bottom:693.270000px;}
.y8_c01366{bottom:717.570000px;}
.y7_c01366{bottom:741.870000px;}
.y6_c01366{bottom:766.170000px;}
.y5_c01366{bottom:790.020000px;}
.y4_c01366{bottom:814.620000px;}
.y3_c01366{bottom:838.020000px;}
.y2_c01366{bottom:862.020000px;}
.y1_c01366{bottom:887.520000px;}
.h9_c01366{height:13.200073px;}
.ha_c01366{height:43.804688px;}
.h3_c01366{height:73.571777px;}
.h2_c01366{height:82.441406px;}
.h5_c01366{height:84.656250px;}
.h4_c01366{height:91.274414px;}
.h8_c01366{height:98.756836px;}
.h6_c01366{height:110.568000px;}
.h7_c01366{height:148.135254px;}
.h1_c01366{height:986.250000px;}
.h0_c01366{height:986.550000px;}
.w1_c01366{width:104.875500px;}
.w0_c01366{width:672.000000px;}
.x0_c01366{left:0.000000px;}
.x2_c01366{left:31.050000px;}
.x3_c01366{left:32.400000px;}
.x1_c01366{left:34.350000px;}
.x4_c01366{left:35.400000px;}
.x5_c01366{left:36.750000px;}
.x8_c01366{left:38.700000px;}
.x9_c01366{left:40.800000px;}
.x7_c01366{left:61.650000px;}
.x6_c01366{left:137.250000px;}
.xa_c01366{left:287.814240px;}
@media print{
.v0_c01366{vertical-align:0.000000pt;}
.lsf_c01366{letter-spacing:-5.333333pt;}
.lsd_c01366{letter-spacing:0.000000pt;}
.ls3_c01366{letter-spacing:1.066667pt;}
.ls7_c01366{letter-spacing:1.344000pt;}
.ls9_c01366{letter-spacing:2.666667pt;}
.ls6_c01366{letter-spacing:3.200000pt;}
.lsb_c01366{letter-spacing:3.466667pt;}
.ls8_c01366{letter-spacing:3.733333pt;}
.lse_c01366{letter-spacing:8.000000pt;}
.lsa_c01366{letter-spacing:17.845333pt;}
.ls0_c01366{letter-spacing:19.733333pt;}
.ls4_c01366{letter-spacing:22.400000pt;}
.ls1_c01366{letter-spacing:94.400000pt;}
.ls2_c01366{letter-spacing:96.000000pt;}
.lsc_c01366{letter-spacing:264.000000pt;}
.ls5_c01366{letter-spacing:1106.133333pt;}
.ws3_c01366{word-spacing:-70.408000pt;}
.ws4_c01366{word-spacing:-27.285333pt;}
.ws1_c01366{word-spacing:-24.666667pt;}
.ws2_c01366{word-spacing:-18.000000pt;}
.ws0_c01366{word-spacing:-16.666667pt;}
.ws5_c01366{word-spacing:0.000000pt;}
._2a_c01366{margin-left:-38.872000pt;}
._27_c01366{margin-left:-18.445333pt;}
._1c_c01366{margin-left:-17.528000pt;}
._6_c01366{margin-left:-16.200000pt;}
._1e_c01366{margin-left:-14.648000pt;}
._1b_c01366{margin-left:-13.400000pt;}
._15_c01366{margin-left:-12.133333pt;}
._18_c01366{margin-left:-10.333333pt;}
._1a_c01366{margin-left:-9.333333pt;}
._28_c01366{margin-left:-8.400000pt;}
._b_c01366{margin-left:-7.400000pt;}
._12_c01366{margin-left:-6.117333pt;}
._d_c01366{margin-left:-5.066667pt;}
._4_c01366{margin-left:-3.800000pt;}
._c_c01366{margin-left:-2.866667pt;}
._8_c01366{margin-left:-1.866667pt;}
._9_c01366{margin-left:-0.933333pt;}
._0_c01366{width:1.533333pt;}
._1_c01366{width:3.066667pt;}
._5_c01366{width:4.666667pt;}
._2_c01366{width:6.133333pt;}
._3_c01366{width:7.866667pt;}
._a_c01366{width:9.381333pt;}
._10_c01366{width:11.085333pt;}
._11_c01366{width:12.077333pt;}
._21_c01366{width:13.557333pt;}
._36_c01366{width:14.578667pt;}
._31_c01366{width:25.109333pt;}
._16_c01366{width:27.104000pt;}
._34_c01366{width:29.570667pt;}
._e_c01366{width:30.642667pt;}
._30_c01366{width:46.533333pt;}
._32_c01366{width:50.568000pt;}
._2c_c01366{width:53.200000pt;}
._2e_c01366{width:55.917333pt;}
._2f_c01366{width:60.250667pt;}
._2b_c01366{width:62.733333pt;}
._2d_c01366{width:63.648000pt;}
._26_c01366{width:67.426667pt;}
._1f_c01366{width:69.789333pt;}
._25_c01366{width:75.520000pt;}
._24_c01366{width:77.378667pt;}
._1d_c01366{width:84.333333pt;}
._14_c01366{width:85.933333pt;}
._17_c01366{width:87.933333pt;}
._19_c01366{width:92.184000pt;}
._13_c01366{width:96.056000pt;}
._f_c01366{width:117.250667pt;}
._22_c01366{width:141.290667pt;}
._20_c01366{width:146.562667pt;}
._35_c01366{width:155.901333pt;}
._29_c01366{width:166.117333pt;}
._7_c01366{width:211.533333pt;}
._23_c01366{width:572.154667pt;}
._33_c01366{width:655.189333pt;}
.fs4_c01366{font-size:42.666667pt;}
.fs7_c01366{font-size:48.000000pt;}
.fs2_c01366{font-size:58.666667pt;}
.fs0_c01366{font-size:66.666667pt;}
.fs9_c01366{font-size:69.333333pt;}
.fs3_c01366{font-size:72.000000pt;}
.fs1_c01366{font-size:74.666667pt;}
.fs5_c01366{font-size:82.666667pt;}
.fs6_c01366{font-size:90.666667pt;}
.fs8_c01366{font-size:104.000000pt;}
.y0_c01366{bottom:0.000000pt;}
.y24_c01366{bottom:2.760000pt;}
.y23_c01366{bottom:6.425217pt;}
.y22_c01366{bottom:78.506667pt;}
.y21_c01366{bottom:100.240000pt;}
.y20_c01366{bottom:122.106667pt;}
.y1f_c01366{bottom:143.440000pt;}
.y1e_c01366{bottom:165.306667pt;}
.y1d_c01366{bottom:186.906667pt;}
.y1c_c01366{bottom:208.240000pt;}
.y1b_c01366{bottom:230.640000pt;}
.y1a_c01366{bottom:251.973333pt;}
.y19_c01366{bottom:273.306667pt;}
.y18_c01366{bottom:294.506667pt;}
.y17_c01366{bottom:316.240000pt;}
.y16_c01366{bottom:337.840000pt;}
.y15_c01366{bottom:359.440000pt;}
.y14_c01366{bottom:380.640000pt;}
.y13_c01366{bottom:402.506667pt;}
.y12_c01366{bottom:423.573333pt;}
.y11_c01366{bottom:444.640000pt;}
.y10_c01366{bottom:466.106667pt;}
.yf_c01366{bottom:487.440000pt;}
.ye_c01366{bottom:509.040000pt;}
.yd_c01366{bottom:529.840000pt;}
.yc_c01366{bottom:552.240000pt;}
.yb_c01366{bottom:573.306667pt;}
.ya_c01366{bottom:594.906667pt;}
.y9_c01366{bottom:616.240000pt;}
.y8_c01366{bottom:637.840000pt;}
.y7_c01366{bottom:659.440000pt;}
.y6_c01366{bottom:681.040000pt;}
.y5_c01366{bottom:702.240000pt;}
.y4_c01366{bottom:724.106667pt;}
.y3_c01366{bottom:744.906667pt;}
.y2_c01366{bottom:766.240000pt;}
.y1_c01366{bottom:788.906667pt;}
.h9_c01366{height:11.733399pt;}
.ha_c01366{height:38.937500pt;}
.h3_c01366{height:65.397135pt;}
.h2_c01366{height:73.281250pt;}
.h5_c01366{height:75.250000pt;}
.h4_c01366{height:81.132812pt;}
.h8_c01366{height:87.783854pt;}
.h6_c01366{height:98.282667pt;}
.h7_c01366{height:131.675781pt;}
.h1_c01366{height:876.666667pt;}
.h0_c01366{height:876.933333pt;}
.w1_c01366{width:93.222667pt;}
.w0_c01366{width:597.333333pt;}
.x0_c01366{left:0.000000pt;}
.x2_c01366{left:27.600000pt;}
.x3_c01366{left:28.800000pt;}
.x1_c01366{left:30.533333pt;}
.x4_c01366{left:31.466667pt;}
.x5_c01366{left:32.666667pt;}
.x8_c01366{left:34.400000pt;}
.x9_c01366{left:36.266667pt;}
.x7_c01366{left:54.800000pt;}
.x6_c01366{left:122.000000pt;}
.xa_c01366{left:255.834880pt;}
}





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

.ir_c01367:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01367{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01367;src:url('chunks/assets/font_6ef2319844d27fed0c5ebd36.woff2')format("woff");}.ff1_c01367{font-family:ff1_c01367;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01367;src:url('chunks/assets/font_a66b8d1c1697a03c6ed816e1.woff2')format("woff");}.ff2_c01367{font-family:ff2_c01367;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01367;src:url('chunks/assets/font_fa9b8e17f4228cd4e984f805.woff2')format("woff");}.ff3_c01367{font-family:ff3_c01367;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01367;src:url('chunks/assets/font_924cc859250a40f680ca9d6f.woff2')format("woff");}.ff4_c01367{font-family:ff4_c01367;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01367;src:url('chunks/assets/font_1e51c89231e6ffd73f5da0ce.woff2')format("woff");}.ff5_c01367{font-family:ff5_c01367;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01367;src:url('chunks/assets/font_f653c6b01a908974151ece4f.woff2')format("woff");}.ff6_c01367{font-family:ff6_c01367;line-height:1.284668;font-style:normal;font-weight: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_c01367;src:url('chunks/assets/font_db0283bd92108c69b9b24f10.woff2')format("woff");}.ff7_c01367{font-family:ff7_c01367;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c01367;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff8_c01367{font-family:ff8_c01367;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01367{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01367{vertical-align:0.000000px;}
.ls7_c01367{letter-spacing:0.000000px;}
.ls1_c01367{letter-spacing:1.602000px;}
.ls5_c01367{letter-spacing:2.100000px;}
.ls8_c01367{letter-spacing:3.000000px;}
.ls2_c01367{letter-spacing:8.100000px;}
.ls6_c01367{letter-spacing:9.000000px;}
.ls0_c01367{letter-spacing:14.700000px;}
.ls4_c01367{letter-spacing:19.800000px;}
.ls3_c01367{letter-spacing:107.802000px;}
.sc__c01367{text-shadow:none;}
.sc0_c01367{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01367{-webkit-text-stroke:0px transparent;}
.sc0_c01367{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01367{word-spacing:-27.288000px;}
.ws4_c01367{word-spacing:-19.065600px;}
.ws3_c01367{word-spacing:-18.000000px;}
.ws1_c01367{word-spacing:-13.737000px;}
.ws5_c01367{word-spacing:0.000000px;}
.ws2_c01367{word-spacing:0.969000px;}
._3e_c01367{margin-left:-30.099000px;}
._30_c01367{margin-left:-27.309000px;}
._37_c01367{margin-left:-19.158000px;}
._17_c01367{margin-left:-15.054000px;}
._3_c01367{margin-left:-13.932000px;}
._36_c01367{margin-left:-12.552000px;}
._f_c01367{margin-left:-11.550000px;}
._14_c01367{margin-left:-9.708000px;}
._11_c01367{margin-left:-8.562000px;}
._2_c01367{margin-left:-7.452000px;}
._4_c01367{margin-left:-5.508000px;}
._1d_c01367{margin-left:-4.470000px;}
._e_c01367{margin-left:-3.237000px;}
._12_c01367{margin-left:-2.163000px;}
._15_c01367{margin-left:-1.143000px;}
._d_c01367{width:1.260000px;}
._6_c01367{width:2.280000px;}
._5_c01367{width:3.819000px;}
._7_c01367{width:5.124000px;}
._8_c01367{width:6.384000px;}
._1_c01367{width:7.668000px;}
._13_c01367{width:9.177000px;}
._0_c01367{width:11.016000px;}
._16_c01367{width:12.297000px;}
._18_c01367{width:13.524000px;}
._2a_c01367{width:15.219000px;}
._b_c01367{width:16.707000px;}
._c_c01367{width:18.663000px;}
._20_c01367{width:19.953000px;}
._1a_c01367{width:21.645000px;}
._a_c01367{width:23.412000px;}
._21_c01367{width:27.225000px;}
._22_c01367{width:41.439000px;}
._3d_c01367{width:60.981000px;}
._29_c01367{width:75.417000px;}
._2b_c01367{width:79.704000px;}
._39_c01367{width:80.754000px;}
._2d_c01367{width:86.805000px;}
._3a_c01367{width:88.362000px;}
._2c_c01367{width:90.066000px;}
._23_c01367{width:93.138000px;}
._28_c01367{width:94.536000px;}
._31_c01367{width:97.044000px;}
._38_c01367{width:98.193000px;}
._2e_c01367{width:100.530000px;}
._26_c01367{width:102.468000px;}
._34_c01367{width:103.560000px;}
._3b_c01367{width:106.413000px;}
._2f_c01367{width:108.117000px;}
._1b_c01367{width:110.142000px;}
._25_c01367{width:119.073000px;}
._10_c01367{width:122.775000px;}
._9_c01367{width:124.407000px;}
._24_c01367{width:165.933000px;}
._19_c01367{width:192.267000px;}
._1e_c01367{width:197.850000px;}
._27_c01367{width:201.360000px;}
._35_c01367{width:288.432000px;}
._33_c01367{width:293.715000px;}
._3c_c01367{width:333.285000px;}
._1f_c01367{width:519.600000px;}
._1c_c01367{width:618.267000px;}
._32_c01367{width:684.348000px;}
._3f_c01367{width:1278.426000px;}
.fc2_c01367{color:transparent;}
.fc1_c01367{color:rgb(128,128,128);}
.fc0_c01367{color:rgb(0,0,0);}
.fs9_c01367{font-size:48.000000px;}
.fs1_c01367{font-size:57.000000px;}
.fs8_c01367{font-size:57.600000px;}
.fs7_c01367{font-size:60.000000px;}
.fs2_c01367{font-size:63.000000px;}
.fs4_c01367{font-size:72.000000px;}
.fs3_c01367{font-size:78.000000px;}
.fs5_c01367{font-size:81.000000px;}
.fs6_c01367{font-size:84.000000px;}
.fs0_c01367{font-size:108.000000px;}
.y0_c01367{bottom:0.000000px;}
.y26_c01367{bottom:3.105000px;}
.y25_c01367{bottom:7.228355px;}
.y24_c01367{bottom:43.785000px;}
.y23_c01367{bottom:67.035000px;}
.y22_c01367{bottom:92.385000px;}
.y21_c01367{bottom:117.435000px;}
.y20_c01367{bottom:141.735000px;}
.y1f_c01367{bottom:166.635000px;}
.y1e_c01367{bottom:191.235000px;}
.y1d_c01367{bottom:214.335000px;}
.y1c_c01367{bottom:239.535000px;}
.y1b_c01367{bottom:264.285000px;}
.y1a_c01367{bottom:288.585000px;}
.y19_c01367{bottom:312.885000px;}
.y18_c01367{bottom:337.035000px;}
.y17_c01367{bottom:361.035000px;}
.y16_c01367{bottom:386.385000px;}
.y15_c01367{bottom:410.385000px;}
.y14_c01367{bottom:434.685000px;}
.y13_c01367{bottom:458.685000px;}
.y12_c01367{bottom:482.985000px;}
.y11_c01367{bottom:507.135000px;}
.y10_c01367{bottom:531.135000px;}
.yf_c01367{bottom:555.435000px;}
.ye_c01367{bottom:580.035000px;}
.yd_c01367{bottom:603.735000px;}
.yc_c01367{bottom:628.635000px;}
.yb_c01367{bottom:652.935000px;}
.ya_c01367{bottom:677.235000px;}
.y9_c01367{bottom:700.635000px;}
.y8_c01367{bottom:725.235000px;}
.y7_c01367{bottom:748.935000px;}
.y6_c01367{bottom:774.135000px;}
.y5_c01367{bottom:798.735000px;}
.y4_c01367{bottom:823.035000px;}
.y3_c01367{bottom:847.035000px;}
.y2_c01367{bottom:871.335000px;}
.y1_c01367{bottom:907.185000px;}
.h7_c01367{height:13.200074px;}
.h8_c01367{height:43.804688px;}
.h3_c01367{height:66.713379px;}
.h6_c01367{height:84.269531px;}
.h5_c01367{height:84.656250px;}
.h4_c01367{height:98.756836px;}
.h2_c01367{height:136.740234px;}
.h1_c01367{height:975.000000px;}
.h0_c01367{height:975.225000px;}
.w2_c01367{width:104.875500px;}
.w0_c01367{width:659.850000px;}
.w1_c01367{width:660.000000px;}
.x0_c01367{left:0.000000px;}
.x3_c01367{left:107.700000px;}
.x4_c01367{left:108.750000px;}
.x9_c01367{left:110.400000px;}
.xa_c01367{left:111.450000px;}
.xc_c01367{left:113.100000px;}
.xb_c01367{left:114.450000px;}
.x8_c01367{left:134.700000px;}
.xe_c01367{left:136.350000px;}
.x6_c01367{left:138.150000px;}
.xf_c01367{left:147.150000px;}
.xd_c01367{left:167.100000px;}
.x10_c01367{left:194.850000px;}
.x7_c01367{left:218.100000px;}
.x2_c01367{left:221.850000px;}
.x1_c01367{left:270.300000px;}
.x11_c01367{left:281.739258px;}
.x5_c01367{left:381.750000px;}
@media print{
.v0_c01367{vertical-align:0.000000pt;}
.ls7_c01367{letter-spacing:0.000000pt;}
.ls1_c01367{letter-spacing:1.424000pt;}
.ls5_c01367{letter-spacing:1.866667pt;}
.ls8_c01367{letter-spacing:2.666667pt;}
.ls2_c01367{letter-spacing:7.200000pt;}
.ls6_c01367{letter-spacing:8.000000pt;}
.ls0_c01367{letter-spacing:13.066667pt;}
.ls4_c01367{letter-spacing:17.600000pt;}
.ls3_c01367{letter-spacing:95.824000pt;}
.ws0_c01367{word-spacing:-24.256000pt;}
.ws4_c01367{word-spacing:-16.947200pt;}
.ws3_c01367{word-spacing:-16.000000pt;}
.ws1_c01367{word-spacing:-12.210667pt;}
.ws5_c01367{word-spacing:0.000000pt;}
.ws2_c01367{word-spacing:0.861333pt;}
._3e_c01367{margin-left:-26.754667pt;}
._30_c01367{margin-left:-24.274667pt;}
._37_c01367{margin-left:-17.029333pt;}
._17_c01367{margin-left:-13.381333pt;}
._3_c01367{margin-left:-12.384000pt;}
._36_c01367{margin-left:-11.157333pt;}
._f_c01367{margin-left:-10.266667pt;}
._14_c01367{margin-left:-8.629333pt;}
._11_c01367{margin-left:-7.610667pt;}
._2_c01367{margin-left:-6.624000pt;}
._4_c01367{margin-left:-4.896000pt;}
._1d_c01367{margin-left:-3.973333pt;}
._e_c01367{margin-left:-2.877333pt;}
._12_c01367{margin-left:-1.922667pt;}
._15_c01367{margin-left:-1.016000pt;}
._d_c01367{width:1.120000pt;}
._6_c01367{width:2.026667pt;}
._5_c01367{width:3.394667pt;}
._7_c01367{width:4.554667pt;}
._8_c01367{width:5.674667pt;}
._1_c01367{width:6.816000pt;}
._13_c01367{width:8.157333pt;}
._0_c01367{width:9.792000pt;}
._16_c01367{width:10.930667pt;}
._18_c01367{width:12.021333pt;}
._2a_c01367{width:13.528000pt;}
._b_c01367{width:14.850667pt;}
._c_c01367{width:16.589333pt;}
._20_c01367{width:17.736000pt;}
._1a_c01367{width:19.240000pt;}
._a_c01367{width:20.810667pt;}
._21_c01367{width:24.200000pt;}
._22_c01367{width:36.834667pt;}
._3d_c01367{width:54.205333pt;}
._29_c01367{width:67.037333pt;}
._2b_c01367{width:70.848000pt;}
._39_c01367{width:71.781333pt;}
._2d_c01367{width:77.160000pt;}
._3a_c01367{width:78.544000pt;}
._2c_c01367{width:80.058667pt;}
._23_c01367{width:82.789333pt;}
._28_c01367{width:84.032000pt;}
._31_c01367{width:86.261333pt;}
._38_c01367{width:87.282667pt;}
._2e_c01367{width:89.360000pt;}
._26_c01367{width:91.082667pt;}
._34_c01367{width:92.053333pt;}
._3b_c01367{width:94.589333pt;}
._2f_c01367{width:96.104000pt;}
._1b_c01367{width:97.904000pt;}
._25_c01367{width:105.842667pt;}
._10_c01367{width:109.133333pt;}
._9_c01367{width:110.584000pt;}
._24_c01367{width:147.496000pt;}
._19_c01367{width:170.904000pt;}
._1e_c01367{width:175.866667pt;}
._27_c01367{width:178.986667pt;}
._35_c01367{width:256.384000pt;}
._33_c01367{width:261.080000pt;}
._3c_c01367{width:296.253333pt;}
._1f_c01367{width:461.866667pt;}
._1c_c01367{width:549.570667pt;}
._32_c01367{width:608.309333pt;}
._3f_c01367{width:1136.378667pt;}
.fs9_c01367{font-size:42.666667pt;}
.fs1_c01367{font-size:50.666667pt;}
.fs8_c01367{font-size:51.200000pt;}
.fs7_c01367{font-size:53.333333pt;}
.fs2_c01367{font-size:56.000000pt;}
.fs4_c01367{font-size:64.000000pt;}
.fs3_c01367{font-size:69.333333pt;}
.fs5_c01367{font-size:72.000000pt;}
.fs6_c01367{font-size:74.666667pt;}
.fs0_c01367{font-size:96.000000pt;}
.y0_c01367{bottom:0.000000pt;}
.y26_c01367{bottom:2.760000pt;}
.y25_c01367{bottom:6.425204pt;}
.y24_c01367{bottom:38.920000pt;}
.y23_c01367{bottom:59.586667pt;}
.y22_c01367{bottom:82.120000pt;}
.y21_c01367{bottom:104.386667pt;}
.y20_c01367{bottom:125.986667pt;}
.y1f_c01367{bottom:148.120000pt;}
.y1e_c01367{bottom:169.986667pt;}
.y1d_c01367{bottom:190.520000pt;}
.y1c_c01367{bottom:212.920000pt;}
.y1b_c01367{bottom:234.920000pt;}
.y1a_c01367{bottom:256.520000pt;}
.y19_c01367{bottom:278.120000pt;}
.y18_c01367{bottom:299.586667pt;}
.y17_c01367{bottom:320.920000pt;}
.y16_c01367{bottom:343.453333pt;}
.y15_c01367{bottom:364.786667pt;}
.y14_c01367{bottom:386.386667pt;}
.y13_c01367{bottom:407.720000pt;}
.y12_c01367{bottom:429.320000pt;}
.y11_c01367{bottom:450.786667pt;}
.y10_c01367{bottom:472.120000pt;}
.yf_c01367{bottom:493.720000pt;}
.ye_c01367{bottom:515.586667pt;}
.yd_c01367{bottom:536.653333pt;}
.yc_c01367{bottom:558.786667pt;}
.yb_c01367{bottom:580.386667pt;}
.ya_c01367{bottom:601.986667pt;}
.y9_c01367{bottom:622.786667pt;}
.y8_c01367{bottom:644.653333pt;}
.y7_c01367{bottom:665.720000pt;}
.y6_c01367{bottom:688.120000pt;}
.y5_c01367{bottom:709.986667pt;}
.y4_c01367{bottom:731.586667pt;}
.y3_c01367{bottom:752.920000pt;}
.y2_c01367{bottom:774.520000pt;}
.y1_c01367{bottom:806.386667pt;}
.h7_c01367{height:11.733399pt;}
.h8_c01367{height:38.937500pt;}
.h3_c01367{height:59.300781pt;}
.h6_c01367{height:74.906250pt;}
.h5_c01367{height:75.250000pt;}
.h4_c01367{height:87.783854pt;}
.h2_c01367{height:121.546875pt;}
.h1_c01367{height:866.666667pt;}
.h0_c01367{height:866.866667pt;}
.w2_c01367{width:93.222667pt;}
.w0_c01367{width:586.533333pt;}
.w1_c01367{width:586.666667pt;}
.x0_c01367{left:0.000000pt;}
.x3_c01367{left:95.733333pt;}
.x4_c01367{left:96.666667pt;}
.x9_c01367{left:98.133333pt;}
.xa_c01367{left:99.066667pt;}
.xc_c01367{left:100.533333pt;}
.xb_c01367{left:101.733333pt;}
.x8_c01367{left:119.733333pt;}
.xe_c01367{left:121.200000pt;}
.x6_c01367{left:122.800000pt;}
.xf_c01367{left:130.800000pt;}
.xd_c01367{left:148.533333pt;}
.x10_c01367{left:173.200000pt;}
.x7_c01367{left:193.866667pt;}
.x2_c01367{left:197.200000pt;}
.x1_c01367{left:240.266667pt;}
.x11_c01367{left:250.434896pt;}
.x5_c01367{left:339.333333pt;}
}





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

.ir_c01368:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01368{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01368;src:url('chunks/assets/font_2b967910cb73edff7bb4ae7e.woff2')format("woff");}.ff1_c01368{font-family:ff1_c01368;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01368;src:url('chunks/assets/font_c43707d4e9e83df8dddbd0ba.woff2')format("woff");}.ff2_c01368{font-family:ff2_c01368;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01368;src:url('chunks/assets/font_54359b7b3b9ebc353459802a.woff2')format("woff");}.ff3_c01368{font-family:ff3_c01368;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01368;src:url('chunks/assets/font_fe94dffb12d48d0295c05328.woff2')format("woff");}.ff4_c01368{font-family:ff4_c01368;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01368;src:url('chunks/assets/font_8433b49dab0b7641ef43dfd8.woff2')format("woff");}.ff5_c01368{font-family:ff5_c01368;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01368;src:url('chunks/assets/font_b670f1e81f94910d49cbf4a1.woff2')format("woff");}.ff6_c01368{font-family:ff6_c01368;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01368;src:url('chunks/assets/font_f3f89b68a55976cd29ffb1e8.woff2')format("woff");}.ff7_c01368{font-family:ff7_c01368;line-height:1.284180;font-style:normal;font-weight: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_c01368;src:url('chunks/assets/font_b26cc9263aa2d112aeef316c.woff2')format("woff");}.ff8_c01368{font-family:ff8_c01368;line-height:1.284180;font-style:normal;font-weight: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_c01368;src:url('chunks/assets/font_80c1e8627c622eb4a1520c28.woff2')format("woff");}.ff9_c01368{font-family:ff9_c01368;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c01368;src:url('chunks/assets/font_3393aaf103d8ebbb8163bd4d.woff2')format("woff");}.ffa_c01368{font-family:ffa_c01368;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c01368;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ffb_c01368{font-family:ffb_c01368;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01368{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01368{vertical-align:0.000000px;}
.ls14_c01368{letter-spacing:-3.000000px;}
.ls11_c01368{letter-spacing:0.000000px;}
.ls6_c01368{letter-spacing:2.400000px;}
.ls1_c01368{letter-spacing:2.802000px;}
.ls16_c01368{letter-spacing:3.000000px;}
.ls4_c01368{letter-spacing:3.300000px;}
.ls3_c01368{letter-spacing:4.800000px;}
.ls13_c01368{letter-spacing:6.000000px;}
.ls2_c01368{letter-spacing:6.300000px;}
.lsb_c01368{letter-spacing:9.000000px;}
.lsd_c01368{letter-spacing:9.402000px;}
.ls15_c01368{letter-spacing:12.000000px;}
.lse_c01368{letter-spacing:13.002000px;}
.ls8_c01368{letter-spacing:14.100000px;}
.lsf_c01368{letter-spacing:15.000000px;}
.ls7_c01368{letter-spacing:19.500000px;}
.ls10_c01368{letter-spacing:27.000000px;}
.ls12_c01368{letter-spacing:33.000000px;}
.ls0_c01368{letter-spacing:67.002000px;}
.lsa_c01368{letter-spacing:78.402000px;}
.ls9_c01368{letter-spacing:175.602000px;}
.ls5_c01368{letter-spacing:352.500000px;}
.lsc_c01368{letter-spacing:607.002000px;}
.sc__c01368{text-shadow:none;}
.sc0_c01368{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01368{-webkit-text-stroke:0px transparent;}
.sc0_c01368{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01368{word-spacing:-46.737000px;}
.ws2_c01368{word-spacing:-26.250000px;}
.ws8_c01368{word-spacing:-25.488000px;}
.ws5_c01368{word-spacing:-23.250000px;}
.ws10_c01368{word-spacing:-17.352000px;}
.ws9_c01368{word-spacing:-17.250000px;}
.wse_c01368{word-spacing:-16.926000px;}
.wsb_c01368{word-spacing:-14.025000px;}
.ws4_c01368{word-spacing:-13.800000px;}
.ws1_c01368{word-spacing:-13.737000px;}
.wsc_c01368{word-spacing:-4.518000px;}
.wsf_c01368{word-spacing:-3.399000px;}
.ws7_c01368{word-spacing:-2.340000px;}
.ws3_c01368{word-spacing:-0.270000px;}
.ws11_c01368{word-spacing:0.000000px;}
.wsd_c01368{word-spacing:1.035000px;}
.wsa_c01368{word-spacing:3.300000px;}
.ws6_c01368{word-spacing:5.265000px;}
._36_c01368{margin-left:-42.300000px;}
._6_c01368{margin-left:-37.476000px;}
._4_c01368{margin-left:-28.728000px;}
._2c_c01368{margin-left:-26.070000px;}
._3_c01368{margin-left:-24.192000px;}
._11_c01368{margin-left:-20.247000px;}
._1a_c01368{margin-left:-18.105000px;}
._16_c01368{margin-left:-16.311000px;}
._19_c01368{margin-left:-14.157000px;}
._2d_c01368{margin-left:-12.168000px;}
._2_c01368{margin-left:-11.124000px;}
._0_c01368{margin-left:-9.720000px;}
._20_c01368{margin-left:-8.028000px;}
._1_c01368{margin-left:-5.940000px;}
._1c_c01368{margin-left:-3.909000px;}
._f_c01368{margin-left:-2.610000px;}
._10_c01368{margin-left:-1.368000px;}
._a_c01368{width:1.881000px;}
._9_c01368{width:3.258000px;}
._5_c01368{width:4.968000px;}
._c_c01368{width:6.384000px;}
._8_c01368{width:8.028000px;}
._7_c01368{width:9.462000px;}
._14_c01368{width:10.602000px;}
._e_c01368{width:12.417000px;}
._21_c01368{width:13.785000px;}
._b_c01368{width:14.934000px;}
._1f_c01368{width:16.815000px;}
._24_c01368{width:18.648000px;}
._29_c01368{width:19.800000px;}
._25_c01368{width:20.883000px;}
._22_c01368{width:22.725000px;}
._12_c01368{width:23.949000px;}
._2e_c01368{width:25.059000px;}
._2f_c01368{width:26.082000px;}
._28_c01368{width:28.281000px;}
._27_c01368{width:29.520000px;}
._2a_c01368{width:30.555000px;}
._42_c01368{width:32.475000px;}
._33_c01368{width:33.579000px;}
._40_c01368{width:35.934000px;}
._1d_c01368{width:38.532000px;}
._41_c01368{width:40.047000px;}
._3e_c01368{width:41.574000px;}
._3d_c01368{width:42.918000px;}
._3a_c01368{width:48.915000px;}
._38_c01368{width:50.892000px;}
._2b_c01368{width:53.103000px;}
._35_c01368{width:55.932000px;}
._30_c01368{width:58.260000px;}
._34_c01368{width:61.182000px;}
._26_c01368{width:62.919000px;}
._17_c01368{width:66.984000px;}
._23_c01368{width:68.604000px;}
._15_c01368{width:70.356000px;}
._13_c01368{width:73.359000px;}
._d_c01368{width:77.826000px;}
._3c_c01368{width:87.144000px;}
._31_c01368{width:88.416000px;}
._39_c01368{width:144.051000px;}
._18_c01368{width:158.772000px;}
._37_c01368{width:171.138000px;}
._1e_c01368{width:181.854000px;}
._3b_c01368{width:274.656000px;}
._3f_c01368{width:340.047000px;}
._32_c01368{width:418.533000px;}
._1b_c01368{width:565.788000px;}
.fc2_c01368{color:transparent;}
.fc1_c01368{color:rgb(128,128,128);}
.fc0_c01368{color:rgb(0,0,0);}
.fs5_c01368{font-size:45.000000px;}
.fsc_c01368{font-size:48.000000px;}
.fs3_c01368{font-size:54.000000px;}
.fs1_c01368{font-size:57.000000px;}
.fsa_c01368{font-size:60.000000px;}
.fs6_c01368{font-size:63.000000px;}
.fs8_c01368{font-size:66.000000px;}
.fsb_c01368{font-size:69.000000px;}
.fs9_c01368{font-size:72.000000px;}
.fs2_c01368{font-size:78.000000px;}
.fs4_c01368{font-size:81.000000px;}
.fs7_c01368{font-size:105.000000px;}
.fs0_c01368{font-size:108.000000px;}
.y0_c01368{bottom:0.000000px;}
.y26_c01368{bottom:3.105000px;}
.y25_c01368{bottom:7.228369px;}
.y24_c01368{bottom:58.770000px;}
.y23_c01368{bottom:85.620000px;}
.y22_c01368{bottom:110.670000px;}
.y21_c01368{bottom:135.570000px;}
.y20_c01368{bottom:159.870000px;}
.y1f_c01368{bottom:183.870000px;}
.y1e_c01368{bottom:207.870000px;}
.y1d_c01368{bottom:232.770000px;}
.y1c_c01368{bottom:257.520000px;}
.y1b_c01368{bottom:281.820000px;}
.y1a_c01368{bottom:306.120000px;}
.y19_c01368{bottom:330.420000px;}
.y18_c01368{bottom:354.420000px;}
.y17_c01368{bottom:379.020000px;}
.y16_c01368{bottom:403.620000px;}
.y15_c01368{bottom:428.520000px;}
.y14_c01368{bottom:451.920000px;}
.y13_c01368{bottom:476.220000px;}
.y12_c01368{bottom:500.520000px;}
.y11_c01368{bottom:524.520000px;}
.y10_c01368{bottom:548.070000px;}
.yf_c01368{bottom:572.670000px;}
.ye_c01368{bottom:596.370000px;}
.yd_c01368{bottom:620.370000px;}
.yc_c01368{bottom:644.670000px;}
.yb_c01368{bottom:668.970000px;}
.ya_c01368{bottom:693.120000px;}
.y9_c01368{bottom:717.420000px;}
.y8_c01368{bottom:741.720000px;}
.y7_c01368{bottom:765.120000px;}
.y6_c01368{bottom:789.120000px;}
.y5_c01368{bottom:814.320000px;}
.y4_c01368{bottom:838.020000px;}
.y3_c01368{bottom:862.020000px;}
.y2_c01368{bottom:886.620000px;}
.y1_c01368{bottom:922.770000px;}
.hd_c01368{height:13.200073px;}
.he_c01368{height:43.804688px;}
.ha_c01368{height:44.165039px;}
.h6_c01368{height:54.421875px;}
.h3_c01368{height:66.713379px;}
.hb_c01368{height:67.686035px;}
.hc_c01368{height:72.168457px;}
.h5_c01368{height:79.497070px;}
.h9_c01368{height:83.226000px;}
.h8_c01368{height:84.269531px;}
.h4_c01368{height:98.756836px;}
.h7_c01368{height:105.820312px;}
.h2_c01368{height:136.740234px;}
.h1_c01368{height:986.250000px;}
.h0_c01368{height:986.550000px;}
.w1_c01368{width:104.875500px;}
.w0_c01368{width:672.000000px;}
.x0_c01368{left:0.000000px;}
.x3_c01368{left:39.150000px;}
.x4_c01368{left:42.600000px;}
.x5_c01368{left:43.650000px;}
.xb_c01368{left:45.900000px;}
.xa_c01368{left:46.950000px;}
.x8_c01368{left:49.050000px;}
.xd_c01368{left:50.550000px;}
.xe_c01368{left:62.400000px;}
.x9_c01368{left:65.100000px;}
.xc_c01368{left:67.200000px;}
.x7_c01368{left:69.750000px;}
.x2_c01368{left:73.350000px;}
.x6_c01368{left:121.800000px;}
.x1_c01368{left:219.900000px;}
.x10_c01368{left:287.814240px;}
.xf_c01368{left:525.150000px;}
@media print{
.v0_c01368{vertical-align:0.000000pt;}
.ls14_c01368{letter-spacing:-2.666667pt;}
.ls11_c01368{letter-spacing:0.000000pt;}
.ls6_c01368{letter-spacing:2.133333pt;}
.ls1_c01368{letter-spacing:2.490667pt;}
.ls16_c01368{letter-spacing:2.666667pt;}
.ls4_c01368{letter-spacing:2.933333pt;}
.ls3_c01368{letter-spacing:4.266667pt;}
.ls13_c01368{letter-spacing:5.333333pt;}
.ls2_c01368{letter-spacing:5.600000pt;}
.lsb_c01368{letter-spacing:8.000000pt;}
.lsd_c01368{letter-spacing:8.357333pt;}
.ls15_c01368{letter-spacing:10.666667pt;}
.lse_c01368{letter-spacing:11.557333pt;}
.ls8_c01368{letter-spacing:12.533333pt;}
.lsf_c01368{letter-spacing:13.333333pt;}
.ls7_c01368{letter-spacing:17.333333pt;}
.ls10_c01368{letter-spacing:24.000000pt;}
.ls12_c01368{letter-spacing:29.333333pt;}
.ls0_c01368{letter-spacing:59.557333pt;}
.lsa_c01368{letter-spacing:69.690667pt;}
.ls9_c01368{letter-spacing:156.090667pt;}
.ls5_c01368{letter-spacing:313.333333pt;}
.lsc_c01368{letter-spacing:539.557333pt;}
.ws0_c01368{word-spacing:-41.544000pt;}
.ws2_c01368{word-spacing:-23.333333pt;}
.ws8_c01368{word-spacing:-22.656000pt;}
.ws5_c01368{word-spacing:-20.666667pt;}
.ws10_c01368{word-spacing:-15.424000pt;}
.ws9_c01368{word-spacing:-15.333333pt;}
.wse_c01368{word-spacing:-15.045333pt;}
.wsb_c01368{word-spacing:-12.466667pt;}
.ws4_c01368{word-spacing:-12.266667pt;}
.ws1_c01368{word-spacing:-12.210667pt;}
.wsc_c01368{word-spacing:-4.016000pt;}
.wsf_c01368{word-spacing:-3.021333pt;}
.ws7_c01368{word-spacing:-2.080000pt;}
.ws3_c01368{word-spacing:-0.240000pt;}
.ws11_c01368{word-spacing:0.000000pt;}
.wsd_c01368{word-spacing:0.920000pt;}
.wsa_c01368{word-spacing:2.933333pt;}
.ws6_c01368{word-spacing:4.680000pt;}
._36_c01368{margin-left:-37.600000pt;}
._6_c01368{margin-left:-33.312000pt;}
._4_c01368{margin-left:-25.536000pt;}
._2c_c01368{margin-left:-23.173333pt;}
._3_c01368{margin-left:-21.504000pt;}
._11_c01368{margin-left:-17.997333pt;}
._1a_c01368{margin-left:-16.093333pt;}
._16_c01368{margin-left:-14.498667pt;}
._19_c01368{margin-left:-12.584000pt;}
._2d_c01368{margin-left:-10.816000pt;}
._2_c01368{margin-left:-9.888000pt;}
._0_c01368{margin-left:-8.640000pt;}
._20_c01368{margin-left:-7.136000pt;}
._1_c01368{margin-left:-5.280000pt;}
._1c_c01368{margin-left:-3.474667pt;}
._f_c01368{margin-left:-2.320000pt;}
._10_c01368{margin-left:-1.216000pt;}
._a_c01368{width:1.672000pt;}
._9_c01368{width:2.896000pt;}
._5_c01368{width:4.416000pt;}
._c_c01368{width:5.674667pt;}
._8_c01368{width:7.136000pt;}
._7_c01368{width:8.410667pt;}
._14_c01368{width:9.424000pt;}
._e_c01368{width:11.037333pt;}
._21_c01368{width:12.253333pt;}
._b_c01368{width:13.274667pt;}
._1f_c01368{width:14.946667pt;}
._24_c01368{width:16.576000pt;}
._29_c01368{width:17.600000pt;}
._25_c01368{width:18.562667pt;}
._22_c01368{width:20.200000pt;}
._12_c01368{width:21.288000pt;}
._2e_c01368{width:22.274667pt;}
._2f_c01368{width:23.184000pt;}
._28_c01368{width:25.138667pt;}
._27_c01368{width:26.240000pt;}
._2a_c01368{width:27.160000pt;}
._42_c01368{width:28.866667pt;}
._33_c01368{width:29.848000pt;}
._40_c01368{width:31.941333pt;}
._1d_c01368{width:34.250667pt;}
._41_c01368{width:35.597333pt;}
._3e_c01368{width:36.954667pt;}
._3d_c01368{width:38.149333pt;}
._3a_c01368{width:43.480000pt;}
._38_c01368{width:45.237333pt;}
._2b_c01368{width:47.202667pt;}
._35_c01368{width:49.717333pt;}
._30_c01368{width:51.786667pt;}
._34_c01368{width:54.384000pt;}
._26_c01368{width:55.928000pt;}
._17_c01368{width:59.541333pt;}
._23_c01368{width:60.981333pt;}
._15_c01368{width:62.538667pt;}
._13_c01368{width:65.208000pt;}
._d_c01368{width:69.178667pt;}
._3c_c01368{width:77.461333pt;}
._31_c01368{width:78.592000pt;}
._39_c01368{width:128.045333pt;}
._18_c01368{width:141.130667pt;}
._37_c01368{width:152.122667pt;}
._1e_c01368{width:161.648000pt;}
._3b_c01368{width:244.138667pt;}
._3f_c01368{width:302.264000pt;}
._32_c01368{width:372.029333pt;}
._1b_c01368{width:502.922667pt;}
.fs5_c01368{font-size:40.000000pt;}
.fsc_c01368{font-size:42.666667pt;}
.fs3_c01368{font-size:48.000000pt;}
.fs1_c01368{font-size:50.666667pt;}
.fsa_c01368{font-size:53.333333pt;}
.fs6_c01368{font-size:56.000000pt;}
.fs8_c01368{font-size:58.666667pt;}
.fsb_c01368{font-size:61.333333pt;}
.fs9_c01368{font-size:64.000000pt;}
.fs2_c01368{font-size:69.333333pt;}
.fs4_c01368{font-size:72.000000pt;}
.fs7_c01368{font-size:93.333333pt;}
.fs0_c01368{font-size:96.000000pt;}
.y0_c01368{bottom:0.000000pt;}
.y26_c01368{bottom:2.760000pt;}
.y25_c01368{bottom:6.425217pt;}
.y24_c01368{bottom:52.240000pt;}
.y23_c01368{bottom:76.106667pt;}
.y22_c01368{bottom:98.373333pt;}
.y21_c01368{bottom:120.506667pt;}
.y20_c01368{bottom:142.106667pt;}
.y1f_c01368{bottom:163.440000pt;}
.y1e_c01368{bottom:184.773333pt;}
.y1d_c01368{bottom:206.906667pt;}
.y1c_c01368{bottom:228.906667pt;}
.y1b_c01368{bottom:250.506667pt;}
.y1a_c01368{bottom:272.106667pt;}
.y19_c01368{bottom:293.706667pt;}
.y18_c01368{bottom:315.040000pt;}
.y17_c01368{bottom:336.906667pt;}
.y16_c01368{bottom:358.773333pt;}
.y15_c01368{bottom:380.906667pt;}
.y14_c01368{bottom:401.706667pt;}
.y13_c01368{bottom:423.306667pt;}
.y12_c01368{bottom:444.906667pt;}
.y11_c01368{bottom:466.240000pt;}
.y10_c01368{bottom:487.173333pt;}
.yf_c01368{bottom:509.040000pt;}
.ye_c01368{bottom:530.106667pt;}
.yd_c01368{bottom:551.440000pt;}
.yc_c01368{bottom:573.040000pt;}
.yb_c01368{bottom:594.640000pt;}
.ya_c01368{bottom:616.106667pt;}
.y9_c01368{bottom:637.706667pt;}
.y8_c01368{bottom:659.306667pt;}
.y7_c01368{bottom:680.106667pt;}
.y6_c01368{bottom:701.440000pt;}
.y5_c01368{bottom:723.840000pt;}
.y4_c01368{bottom:744.906667pt;}
.y3_c01368{bottom:766.240000pt;}
.y2_c01368{bottom:788.106667pt;}
.y1_c01368{bottom:820.240000pt;}
.hd_c01368{height:11.733399pt;}
.he_c01368{height:38.937500pt;}
.ha_c01368{height:39.257812pt;}
.h6_c01368{height:48.375000pt;}
.h3_c01368{height:59.300781pt;}
.hb_c01368{height:60.165365pt;}
.hc_c01368{height:64.149740pt;}
.h5_c01368{height:70.664062pt;}
.h9_c01368{height:73.978667pt;}
.h8_c01368{height:74.906250pt;}
.h4_c01368{height:87.783854pt;}
.h7_c01368{height:94.062500pt;}
.h2_c01368{height:121.546875pt;}
.h1_c01368{height:876.666667pt;}
.h0_c01368{height:876.933333pt;}
.w1_c01368{width:93.222667pt;}
.w0_c01368{width:597.333333pt;}
.x0_c01368{left:0.000000pt;}
.x3_c01368{left:34.800000pt;}
.x4_c01368{left:37.866667pt;}
.x5_c01368{left:38.800000pt;}
.xb_c01368{left:40.800000pt;}
.xa_c01368{left:41.733333pt;}
.x8_c01368{left:43.600000pt;}
.xd_c01368{left:44.933333pt;}
.xe_c01368{left:55.466667pt;}
.x9_c01368{left:57.866667pt;}
.xc_c01368{left:59.733333pt;}
.x7_c01368{left:62.000000pt;}
.x2_c01368{left:65.200000pt;}
.x6_c01368{left:108.266667pt;}
.x1_c01368{left:195.466667pt;}
.x10_c01368{left:255.834880pt;}
.xf_c01368{left:466.800000pt;}
}





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

.ir_c01369:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01369{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01369;src:url('chunks/assets/font_84149b8fa239b0ab786ccb69.woff2')format("woff");}.ff1_c01369{font-family:ff1_c01369;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01369;src:url('chunks/assets/font_720216bd124080ab68f4b768.woff2')format("woff");}.ff2_c01369{font-family:ff2_c01369;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01369;src:url('chunks/assets/font_031e62388bdf7d517c9a51ed.woff2')format("woff");}.ff3_c01369{font-family:ff3_c01369;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01369;src:url('chunks/assets/font_dae7d2399c3ff5e8b03f304e.woff2')format("woff");}.ff4_c01369{font-family:ff4_c01369;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01369;src:url('chunks/assets/font_d63d383f22fb13ae5c15334f.woff2')format("woff");}.ff5_c01369{font-family:ff5_c01369;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01369;src:url('chunks/assets/font_4748bcf0a31ca588a678f645.woff2')format("woff");}.ff6_c01369{font-family:ff6_c01369;line-height:1.284180;font-style:normal;font-weight: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_c01369;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c01369{font-family:ff7_c01369;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01369{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01369{vertical-align:0.000000px;}
.ls5_c01369{letter-spacing:-12.000000px;}
.ls3_c01369{letter-spacing:0.000000px;}
.ls6_c01369{letter-spacing:3.000000px;}
.ls4_c01369{letter-spacing:15.000000px;}
.ls1_c01369{letter-spacing:18.300000px;}
.ls0_c01369{letter-spacing:122.802000px;}
.ls2_c01369{letter-spacing:392.202000px;}
.sc__c01369{text-shadow:none;}
.sc0_c01369{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01369{-webkit-text-stroke:0px transparent;}
.sc0_c01369{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa_c01369{word-spacing:-34.500000px;}
.ws8_c01369{word-spacing:-33.300000px;}
.ws6_c01369{word-spacing:-28.737000px;}
.ws9_c01369{word-spacing:-21.000000px;}
.ws3_c01369{word-spacing:-18.867000px;}
.ws7_c01369{word-spacing:-18.798000px;}
.ws5_c01369{word-spacing:-15.798000px;}
.ws2_c01369{word-spacing:-15.093600px;}
.ws0_c01369{word-spacing:-13.737000px;}
.wsb_c01369{word-spacing:0.000000px;}
.ws4_c01369{word-spacing:0.570000px;}
.ws1_c01369{word-spacing:15.105000px;}
._36_c01369{margin-left:-24.966000px;}
._40_c01369{margin-left:-21.126000px;}
._1f_c01369{margin-left:-18.096000px;}
._2f_c01369{margin-left:-16.650000px;}
._1c_c01369{margin-left:-14.802000px;}
._3b_c01369{margin-left:-13.737000px;}
._f_c01369{margin-left:-12.693000px;}
._28_c01369{margin-left:-11.304000px;}
._10_c01369{margin-left:-9.828000px;}
._17_c01369{margin-left:-8.220000px;}
._21_c01369{margin-left:-7.107000px;}
._1e_c01369{margin-left:-5.994000px;}
._11_c01369{margin-left:-4.134000px;}
._34_c01369{margin-left:-3.123000px;}
._12_c01369{margin-left:-2.106000px;}
._19_c01369{margin-left:-1.002000px;}
._6_c01369{width:1.197000px;}
._1_c01369{width:2.793000px;}
._5_c01369{width:4.332000px;}
._4_c01369{width:5.358000px;}
._3_c01369{width:6.726000px;}
._2_c01369{width:8.094000px;}
._0_c01369{width:9.405000px;}
._8_c01369{width:10.659000px;}
._e_c01369{width:12.426000px;}
._26_c01369{width:13.992000px;}
._d_c01369{width:15.162000px;}
._c_c01369{width:17.100000px;}
._b_c01369{width:18.696000px;}
._37_c01369{width:21.423000px;}
._a_c01369{width:22.515000px;}
._3a_c01369{width:24.849000px;}
._30_c01369{width:31.392000px;}
._3e_c01369{width:32.757000px;}
._14_c01369{width:41.421000px;}
._3f_c01369{width:71.502000px;}
._3d_c01369{width:74.646000px;}
._2a_c01369{width:79.668000px;}
._3c_c01369{width:82.173000px;}
._31_c01369{width:86.184000px;}
._32_c01369{width:87.504000px;}
._29_c01369{width:92.424000px;}
._27_c01369{width:95.820000px;}
._13_c01369{width:98.967000px;}
._16_c01369{width:101.688000px;}
._1b_c01369{width:106.419000px;}
._1d_c01369{width:107.559000px;}
._9_c01369{width:111.093000px;}
._7_c01369{width:117.363000px;}
._33_c01369{width:121.323000px;}
._2d_c01369{width:148.566000px;}
._15_c01369{width:151.904400px;}
._39_c01369{width:165.171000px;}
._25_c01369{width:190.035000px;}
._23_c01369{width:191.199000px;}
._18_c01369{width:197.100000px;}
._24_c01369{width:302.235000px;}
._22_c01369{width:378.324000px;}
._38_c01369{width:395.307000px;}
._35_c01369{width:398.058000px;}
._1a_c01369{width:402.666000px;}
._2b_c01369{width:466.398000px;}
._2c_c01369{width:569.469000px;}
._2e_c01369{width:578.436000px;}
._20_c01369{width:676.611000px;}
.fc2_c01369{color:transparent;}
.fc1_c01369{color:rgb(128,128,128);}
.fc0_c01369{color:rgb(0,0,0);}
.fs2_c01369{font-size:45.600000px;}
.fs9_c01369{font-size:48.000000px;}
.fs0_c01369{font-size:57.000000px;}
.fs7_c01369{font-size:60.000000px;}
.fs8_c01369{font-size:63.000000px;}
.fs6_c01369{font-size:72.000000px;}
.fs4_c01369{font-size:75.000000px;}
.fs1_c01369{font-size:78.000000px;}
.fs5_c01369{font-size:81.000000px;}
.fs3_c01369{font-size:84.000000px;}
.y0_c01369{bottom:0.000000px;}
.y25_c01369{bottom:3.105000px;}
.y24_c01369{bottom:7.228371px;}
.y23_c01369{bottom:63.765000px;}
.y22_c01369{bottom:76.365000px;}
.y21_c01369{bottom:102.015000px;}
.y20_c01369{bottom:126.915000px;}
.y1f_c01369{bottom:151.215000px;}
.y1e_c01369{bottom:175.515000px;}
.y1d_c01369{bottom:200.115000px;}
.y1c_c01369{bottom:224.565000px;}
.y1b_c01369{bottom:249.165000px;}
.y1a_c01369{bottom:274.065000px;}
.y19_c01369{bottom:297.765000px;}
.y18_c01369{bottom:322.665000px;}
.y17_c01369{bottom:346.965000px;}
.y16_c01369{bottom:371.265000px;}
.y15_c01369{bottom:394.665000px;}
.y14_c01369{bottom:420.165000px;}
.y13_c01369{bottom:444.465000px;}
.y12_c01369{bottom:467.865000px;}
.y11_c01369{bottom:492.765000px;}
.y10_c01369{bottom:517.365000px;}
.yf_c01369{bottom:541.665000px;}
.ye_c01369{bottom:565.065000px;}
.yd_c01369{bottom:589.965000px;}
.yc_c01369{bottom:613.965000px;}
.yb_c01369{bottom:638.265000px;}
.ya_c01369{bottom:663.165000px;}
.y9_c01369{bottom:687.615000px;}
.y8_c01369{bottom:710.565000px;}
.y7_c01369{bottom:734.715000px;}
.y6_c01369{bottom:756.765000px;}
.y5_c01369{bottom:783.465000px;}
.y4_c01369{bottom:807.765000px;}
.y3_c01369{bottom:832.065000px;}
.y2_c01369{bottom:855.915000px;}
.y1_c01369{bottom:880.515000px;}
.h7_c01369{height:13.200074px;}
.h8_c01369{height:43.804688px;}
.h2_c01369{height:66.713379px;}
.h5_c01369{height:79.497070px;}
.h6_c01369{height:84.269531px;}
.h4_c01369{height:84.656250px;}
.h3_c01369{height:98.756836px;}
.h1_c01369{height:986.250000px;}
.h0_c01369{height:986.325000px;}
.w2_c01369{width:104.875500px;}
.w0_c01369{width:667.425000px;}
.w1_c01369{width:667.500000px;}
.x0_c01369{left:0.000000px;}
.x8_c01369{left:115.050000px;}
.x3_c01369{left:117.900000px;}
.x1_c01369{left:119.850000px;}
.x2_c01369{left:120.900000px;}
.x6_c01369{left:121.950000px;}
.xa_c01369{left:138.000000px;}
.x5_c01369{left:145.800000px;}
.x9_c01369{left:147.150000px;}
.x4_c01369{left:195.450000px;}
.x7_c01369{left:212.850000px;}
.xc_c01369{left:285.526749px;}
.xb_c01369{left:510.000000px;}
@media print{
.v0_c01369{vertical-align:0.000000pt;}
.ls5_c01369{letter-spacing:-10.666667pt;}
.ls3_c01369{letter-spacing:0.000000pt;}
.ls6_c01369{letter-spacing:2.666667pt;}
.ls4_c01369{letter-spacing:13.333333pt;}
.ls1_c01369{letter-spacing:16.266667pt;}
.ls0_c01369{letter-spacing:109.157333pt;}
.ls2_c01369{letter-spacing:348.624000pt;}
.wsa_c01369{word-spacing:-30.666667pt;}
.ws8_c01369{word-spacing:-29.600000pt;}
.ws6_c01369{word-spacing:-25.544000pt;}
.ws9_c01369{word-spacing:-18.666667pt;}
.ws3_c01369{word-spacing:-16.770667pt;}
.ws7_c01369{word-spacing:-16.709333pt;}
.ws5_c01369{word-spacing:-14.042667pt;}
.ws2_c01369{word-spacing:-13.416533pt;}
.ws0_c01369{word-spacing:-12.210667pt;}
.wsb_c01369{word-spacing:0.000000pt;}
.ws4_c01369{word-spacing:0.506667pt;}
.ws1_c01369{word-spacing:13.426667pt;}
._36_c01369{margin-left:-22.192000pt;}
._40_c01369{margin-left:-18.778667pt;}
._1f_c01369{margin-left:-16.085333pt;}
._2f_c01369{margin-left:-14.800000pt;}
._1c_c01369{margin-left:-13.157333pt;}
._3b_c01369{margin-left:-12.210667pt;}
._f_c01369{margin-left:-11.282667pt;}
._28_c01369{margin-left:-10.048000pt;}
._10_c01369{margin-left:-8.736000pt;}
._17_c01369{margin-left:-7.306667pt;}
._21_c01369{margin-left:-6.317333pt;}
._1e_c01369{margin-left:-5.328000pt;}
._11_c01369{margin-left:-3.674667pt;}
._34_c01369{margin-left:-2.776000pt;}
._12_c01369{margin-left:-1.872000pt;}
._19_c01369{margin-left:-0.890667pt;}
._6_c01369{width:1.064000pt;}
._1_c01369{width:2.482667pt;}
._5_c01369{width:3.850667pt;}
._4_c01369{width:4.762667pt;}
._3_c01369{width:5.978667pt;}
._2_c01369{width:7.194667pt;}
._0_c01369{width:8.360000pt;}
._8_c01369{width:9.474667pt;}
._e_c01369{width:11.045333pt;}
._26_c01369{width:12.437333pt;}
._d_c01369{width:13.477333pt;}
._c_c01369{width:15.200000pt;}
._b_c01369{width:16.618667pt;}
._37_c01369{width:19.042667pt;}
._a_c01369{width:20.013333pt;}
._3a_c01369{width:22.088000pt;}
._30_c01369{width:27.904000pt;}
._3e_c01369{width:29.117333pt;}
._14_c01369{width:36.818667pt;}
._3f_c01369{width:63.557333pt;}
._3d_c01369{width:66.352000pt;}
._2a_c01369{width:70.816000pt;}
._3c_c01369{width:73.042667pt;}
._31_c01369{width:76.608000pt;}
._32_c01369{width:77.781333pt;}
._29_c01369{width:82.154667pt;}
._27_c01369{width:85.173333pt;}
._13_c01369{width:87.970667pt;}
._16_c01369{width:90.389333pt;}
._1b_c01369{width:94.594667pt;}
._1d_c01369{width:95.608000pt;}
._9_c01369{width:98.749333pt;}
._7_c01369{width:104.322667pt;}
._33_c01369{width:107.842667pt;}
._2d_c01369{width:132.058667pt;}
._15_c01369{width:135.026133pt;}
._39_c01369{width:146.818667pt;}
._25_c01369{width:168.920000pt;}
._23_c01369{width:169.954667pt;}
._18_c01369{width:175.200000pt;}
._24_c01369{width:268.653333pt;}
._22_c01369{width:336.288000pt;}
._38_c01369{width:351.384000pt;}
._35_c01369{width:353.829333pt;}
._1a_c01369{width:357.925333pt;}
._2b_c01369{width:414.576000pt;}
._2c_c01369{width:506.194667pt;}
._2e_c01369{width:514.165333pt;}
._20_c01369{width:601.432000pt;}
.fs2_c01369{font-size:40.533333pt;}
.fs9_c01369{font-size:42.666667pt;}
.fs0_c01369{font-size:50.666667pt;}
.fs7_c01369{font-size:53.333333pt;}
.fs8_c01369{font-size:56.000000pt;}
.fs6_c01369{font-size:64.000000pt;}
.fs4_c01369{font-size:66.666667pt;}
.fs1_c01369{font-size:69.333333pt;}
.fs5_c01369{font-size:72.000000pt;}
.fs3_c01369{font-size:74.666667pt;}
.y0_c01369{bottom:0.000000pt;}
.y25_c01369{bottom:2.760000pt;}
.y24_c01369{bottom:6.425219pt;}
.y23_c01369{bottom:56.680000pt;}
.y22_c01369{bottom:67.880000pt;}
.y21_c01369{bottom:90.680000pt;}
.y20_c01369{bottom:112.813333pt;}
.y1f_c01369{bottom:134.413333pt;}
.y1e_c01369{bottom:156.013333pt;}
.y1d_c01369{bottom:177.880000pt;}
.y1c_c01369{bottom:199.613333pt;}
.y1b_c01369{bottom:221.480000pt;}
.y1a_c01369{bottom:243.613333pt;}
.y19_c01369{bottom:264.680000pt;}
.y18_c01369{bottom:286.813333pt;}
.y17_c01369{bottom:308.413333pt;}
.y16_c01369{bottom:330.013333pt;}
.y15_c01369{bottom:350.813333pt;}
.y14_c01369{bottom:373.480000pt;}
.y13_c01369{bottom:395.080000pt;}
.y12_c01369{bottom:415.880000pt;}
.y11_c01369{bottom:438.013333pt;}
.y10_c01369{bottom:459.880000pt;}
.yf_c01369{bottom:481.480000pt;}
.ye_c01369{bottom:502.280000pt;}
.yd_c01369{bottom:524.413333pt;}
.yc_c01369{bottom:545.746667pt;}
.yb_c01369{bottom:567.346667pt;}
.ya_c01369{bottom:589.480000pt;}
.y9_c01369{bottom:611.213333pt;}
.y8_c01369{bottom:631.613333pt;}
.y7_c01369{bottom:653.080000pt;}
.y6_c01369{bottom:672.680000pt;}
.y5_c01369{bottom:696.413333pt;}
.y4_c01369{bottom:718.013333pt;}
.y3_c01369{bottom:739.613333pt;}
.y2_c01369{bottom:760.813333pt;}
.y1_c01369{bottom:782.680000pt;}
.h7_c01369{height:11.733399pt;}
.h8_c01369{height:38.937500pt;}
.h2_c01369{height:59.300781pt;}
.h5_c01369{height:70.664062pt;}
.h6_c01369{height:74.906250pt;}
.h4_c01369{height:75.250000pt;}
.h3_c01369{height:87.783854pt;}
.h1_c01369{height:876.666667pt;}
.h0_c01369{height:876.733333pt;}
.w2_c01369{width:93.222667pt;}
.w0_c01369{width:593.266667pt;}
.w1_c01369{width:593.333333pt;}
.x0_c01369{left:0.000000pt;}
.x8_c01369{left:102.266667pt;}
.x3_c01369{left:104.800000pt;}
.x1_c01369{left:106.533333pt;}
.x2_c01369{left:107.466667pt;}
.x6_c01369{left:108.400000pt;}
.xa_c01369{left:122.666667pt;}
.x5_c01369{left:129.600000pt;}
.x9_c01369{left:130.800000pt;}
.x4_c01369{left:173.733333pt;}
.x7_c01369{left:189.200000pt;}
.xc_c01369{left:253.801554pt;}
.xb_c01369{left:453.333333pt;}
}





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

.ir_c01370:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01370{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01370;src:url('chunks/assets/font_e75ef027bbd51a07c4730c51.woff2')format("woff");}.ff1_c01370{font-family:ff1_c01370;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01370;src:url('chunks/assets/font_03a1d657456bd267479f9abe.woff2')format("woff");}.ff2_c01370{font-family:ff2_c01370;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01370;src:url('chunks/assets/font_ef50fe010904f0de2fe9ed79.woff2')format("woff");}.ff3_c01370{font-family:ff3_c01370;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01370;src:url('chunks/assets/font_40f3bed2cc941c233de59610.woff2')format("woff");}.ff4_c01370{font-family:ff4_c01370;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01370;src:url('chunks/assets/font_dba27acb6bab373a8531e93f.woff2')format("woff");}.ff5_c01370{font-family:ff5_c01370;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01370;src:url('chunks/assets/font_3d9cfc8abac31b11a0b5687a.woff2')format("woff");}.ff6_c01370{font-family:ff6_c01370;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01370;src:url('chunks/assets/font_39de9990d5bac2d56a4ddefd.woff2')format("woff");}.ff7_c01370{font-family:ff7_c01370;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c01370;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff8_c01370{font-family:ff8_c01370;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01370{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01370{vertical-align:0.000000px;}
.lsc_c01370{letter-spacing:-9.000000px;}
.lsd_c01370{letter-spacing:-3.000000px;}
.lsa_c01370{letter-spacing:0.000000px;}
.ls0_c01370{letter-spacing:2.730000px;}
.ls7_c01370{letter-spacing:2.802000px;}
.ls6_c01370{letter-spacing:4.500000px;}
.ls5_c01370{letter-spacing:5.802000px;}
.lsb_c01370{letter-spacing:6.000000px;}
.ls4_c01370{letter-spacing:7.002000px;}
.ls3_c01370{letter-spacing:8.202000px;}
.ls2_c01370{letter-spacing:8.802000px;}
.ls8_c01370{letter-spacing:24.402000px;}
.ls9_c01370{letter-spacing:33.000000px;}
.ls1_c01370{letter-spacing:437.202000px;}
.sc__c01370{text-shadow:none;}
.sc0_c01370{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01370{-webkit-text-stroke:0px transparent;}
.sc0_c01370{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa_c01370{word-spacing:-27.000000px;}
.ws1_c01370{word-spacing:-21.750000px;}
.ws2_c01370{word-spacing:-21.528000px;}
.ws5_c01370{word-spacing:-21.000000px;}
.ws3_c01370{word-spacing:-20.250000px;}
.ws8_c01370{word-spacing:-18.798000px;}
.ws4_c01370{word-spacing:-13.737000px;}
.ws9_c01370{word-spacing:-8.352000px;}
.ws0_c01370{word-spacing:-7.533600px;}
.ws7_c01370{word-spacing:-0.114000px;}
.wsb_c01370{word-spacing:0.000000px;}
.ws6_c01370{word-spacing:6.897000px;}
._12_c01370{margin-left:-36.750000px;}
._2b_c01370{margin-left:-30.027000px;}
._2a_c01370{margin-left:-27.450000px;}
._13_c01370{margin-left:-26.040000px;}
._f_c01370{margin-left:-23.415000px;}
._29_c01370{margin-left:-20.526600px;}
._27_c01370{margin-left:-18.201000px;}
._15_c01370{margin-left:-16.890000px;}
._36_c01370{margin-left:-15.855000px;}
._e_c01370{margin-left:-14.526000px;}
._19_c01370{margin-left:-12.519000px;}
._8_c01370{margin-left:-10.440000px;}
._35_c01370{margin-left:-9.147000px;}
._c_c01370{margin-left:-8.064000px;}
._5_c01370{margin-left:-6.696000px;}
._6_c01370{margin-left:-5.040000px;}
._16_c01370{margin-left:-4.032000px;}
._4_c01370{margin-left:-2.880000px;}
._b_c01370{margin-left:-1.224000px;}
._2_c01370{width:1.872000px;}
._3_c01370{width:3.312000px;}
._10_c01370{width:4.710000px;}
._14_c01370{width:5.874000px;}
._9_c01370{width:7.632000px;}
._d_c01370{width:9.120000px;}
._1c_c01370{width:10.470000px;}
._18_c01370{width:11.859000px;}
._7_c01370{width:13.320000px;}
._21_c01370{width:15.522000px;}
._1b_c01370{width:16.815000px;}
._24_c01370{width:18.006000px;}
._1d_c01370{width:19.377000px;}
._26_c01370{width:21.258000px;}
._31_c01370{width:23.085000px;}
._2e_c01370{width:24.231600px;}
._3e_c01370{width:25.476000px;}
._37_c01370{width:27.156000px;}
._3a_c01370{width:33.705000px;}
._3f_c01370{width:35.928000px;}
._38_c01370{width:40.965000px;}
._3b_c01370{width:43.056000px;}
._1_c01370{width:45.554400px;}
._39_c01370{width:46.578000px;}
._0_c01370{width:47.757600px;}
._30_c01370{width:48.759000px;}
._3d_c01370{width:51.444000px;}
._28_c01370{width:55.320000px;}
._11_c01370{width:56.790000px;}
._2d_c01370{width:58.218000px;}
._17_c01370{width:59.640000px;}
._a_c01370{width:61.560000px;}
._1a_c01370{width:63.687000px;}
._1e_c01370{width:66.960000px;}
._42_c01370{width:162.990000px;}
._2f_c01370{width:173.952000px;}
._33_c01370{width:194.598000px;}
._22_c01370{width:205.842000px;}
._25_c01370{width:214.155000px;}
._34_c01370{width:270.846000px;}
._20_c01370{width:294.468000px;}
._23_c01370{width:343.218000px;}
._41_c01370{width:348.972000px;}
._40_c01370{width:406.506000px;}
._2c_c01370{width:434.988600px;}
._3c_c01370{width:535.694400px;}
._32_c01370{width:619.503000px;}
._1f_c01370{width:740.964000px;}
.fc2_c01370{color:transparent;}
.fc1_c01370{color:rgb(128,128,128);}
.fc0_c01370{color:rgb(0,0,0);}
.fs8_c01370{font-size:48.000000px;}
.fs6_c01370{font-size:57.000000px;}
.fs7_c01370{font-size:60.000000px;}
.fs3_c01370{font-size:63.000000px;}
.fs0_c01370{font-size:64.800000px;}
.fs2_c01370{font-size:72.000000px;}
.fs5_c01370{font-size:78.000000px;}
.fs1_c01370{font-size:81.000000px;}
.fs4_c01370{font-size:105.000000px;}
.y0_c01370{bottom:0.000000px;}
.y26_c01370{bottom:3.105000px;}
.y25_c01370{bottom:7.228369px;}
.y24_c01370{bottom:56.970000px;}
.y23_c01370{bottom:81.570000px;}
.y22_c01370{bottom:106.620000px;}
.y21_c01370{bottom:131.520000px;}
.y20_c01370{bottom:155.520000px;}
.y1f_c01370{bottom:180.270000px;}
.y1e_c01370{bottom:204.570000px;}
.y1d_c01370{bottom:229.470000px;}
.y1c_c01370{bottom:254.070000px;}
.y1b_c01370{bottom:277.770000px;}
.y1a_c01370{bottom:302.370000px;}
.y19_c01370{bottom:326.370000px;}
.y18_c01370{bottom:351.270000px;}
.y17_c01370{bottom:374.520000px;}
.y16_c01370{bottom:399.570000px;}
.y15_c01370{bottom:423.870000px;}
.y14_c01370{bottom:448.470000px;}
.y13_c01370{bottom:472.170000px;}
.y12_c01370{bottom:496.470000px;}
.y11_c01370{bottom:520.470000px;}
.y10_c01370{bottom:544.020000px;}
.yf_c01370{bottom:568.920000px;}
.ye_c01370{bottom:592.920000px;}
.yd_c01370{bottom:617.220000px;}
.yc_c01370{bottom:640.620000px;}
.yb_c01370{bottom:664.770000px;}
.ya_c01370{bottom:688.770000px;}
.y9_c01370{bottom:712.170000px;}
.y8_c01370{bottom:736.320000px;}
.y7_c01370{bottom:760.620000px;}
.y6_c01370{bottom:784.920000px;}
.y5_c01370{bottom:809.220000px;}
.y4_c01370{bottom:833.220000px;}
.y3_c01370{bottom:857.220000px;}
.y2_c01370{bottom:881.220000px;}
.y1_c01370{bottom:916.920000px;}
.h7_c01370{height:13.200073px;}
.h8_c01370{height:43.804688px;}
.h6_c01370{height:66.713379px;}
.h2_c01370{height:79.497070px;}
.h3_c01370{height:84.269531px;}
.h5_c01370{height:98.756836px;}
.h4_c01370{height:105.820312px;}
.h1_c01370{height:986.250000px;}
.h0_c01370{height:986.550000px;}
.w1_c01370{width:104.875500px;}
.w0_c01370{width:672.000000px;}
.x0_c01370{left:0.000000px;}
.xb_c01370{left:36.450000px;}
.x9_c01370{left:38.550000px;}
.x3_c01370{left:39.900000px;}
.x2_c01370{left:41.100000px;}
.x8_c01370{left:42.300000px;}
.xc_c01370{left:43.650000px;}
.x7_c01370{left:65.250000px;}
.xa_c01370{left:67.500000px;}
.x6_c01370{left:79.050000px;}
.x5_c01370{left:86.100000px;}
.x4_c01370{left:107.100000px;}
.x1_c01370{left:231.450000px;}
.xe_c01370{left:287.814240px;}
.xd_c01370{left:517.800000px;}
@media print{
.v0_c01370{vertical-align:0.000000pt;}
.lsc_c01370{letter-spacing:-8.000000pt;}
.lsd_c01370{letter-spacing:-2.666667pt;}
.lsa_c01370{letter-spacing:0.000000pt;}
.ls0_c01370{letter-spacing:2.426667pt;}
.ls7_c01370{letter-spacing:2.490667pt;}
.ls6_c01370{letter-spacing:4.000000pt;}
.ls5_c01370{letter-spacing:5.157333pt;}
.lsb_c01370{letter-spacing:5.333333pt;}
.ls4_c01370{letter-spacing:6.224000pt;}
.ls3_c01370{letter-spacing:7.290667pt;}
.ls2_c01370{letter-spacing:7.824000pt;}
.ls8_c01370{letter-spacing:21.690667pt;}
.ls9_c01370{letter-spacing:29.333333pt;}
.ls1_c01370{letter-spacing:388.624000pt;}
.wsa_c01370{word-spacing:-24.000000pt;}
.ws1_c01370{word-spacing:-19.333333pt;}
.ws2_c01370{word-spacing:-19.136000pt;}
.ws5_c01370{word-spacing:-18.666667pt;}
.ws3_c01370{word-spacing:-18.000000pt;}
.ws8_c01370{word-spacing:-16.709333pt;}
.ws4_c01370{word-spacing:-12.210667pt;}
.ws9_c01370{word-spacing:-7.424000pt;}
.ws0_c01370{word-spacing:-6.696533pt;}
.ws7_c01370{word-spacing:-0.101333pt;}
.wsb_c01370{word-spacing:0.000000pt;}
.ws6_c01370{word-spacing:6.130667pt;}
._12_c01370{margin-left:-32.666667pt;}
._2b_c01370{margin-left:-26.690667pt;}
._2a_c01370{margin-left:-24.400000pt;}
._13_c01370{margin-left:-23.146667pt;}
._f_c01370{margin-left:-20.813333pt;}
._29_c01370{margin-left:-18.245867pt;}
._27_c01370{margin-left:-16.178667pt;}
._15_c01370{margin-left:-15.013333pt;}
._36_c01370{margin-left:-14.093333pt;}
._e_c01370{margin-left:-12.912000pt;}
._19_c01370{margin-left:-11.128000pt;}
._8_c01370{margin-left:-9.280000pt;}
._35_c01370{margin-left:-8.130667pt;}
._c_c01370{margin-left:-7.168000pt;}
._5_c01370{margin-left:-5.952000pt;}
._6_c01370{margin-left:-4.480000pt;}
._16_c01370{margin-left:-3.584000pt;}
._4_c01370{margin-left:-2.560000pt;}
._b_c01370{margin-left:-1.088000pt;}
._2_c01370{width:1.664000pt;}
._3_c01370{width:2.944000pt;}
._10_c01370{width:4.186667pt;}
._14_c01370{width:5.221333pt;}
._9_c01370{width:6.784000pt;}
._d_c01370{width:8.106667pt;}
._1c_c01370{width:9.306667pt;}
._18_c01370{width:10.541333pt;}
._7_c01370{width:11.840000pt;}
._21_c01370{width:13.797333pt;}
._1b_c01370{width:14.946667pt;}
._24_c01370{width:16.005333pt;}
._1d_c01370{width:17.224000pt;}
._26_c01370{width:18.896000pt;}
._31_c01370{width:20.520000pt;}
._2e_c01370{width:21.539200pt;}
._3e_c01370{width:22.645333pt;}
._37_c01370{width:24.138667pt;}
._3a_c01370{width:29.960000pt;}
._3f_c01370{width:31.936000pt;}
._38_c01370{width:36.413333pt;}
._3b_c01370{width:38.272000pt;}
._1_c01370{width:40.492800pt;}
._39_c01370{width:41.402667pt;}
._0_c01370{width:42.451200pt;}
._30_c01370{width:43.341333pt;}
._3d_c01370{width:45.728000pt;}
._28_c01370{width:49.173333pt;}
._11_c01370{width:50.480000pt;}
._2d_c01370{width:51.749333pt;}
._17_c01370{width:53.013333pt;}
._a_c01370{width:54.720000pt;}
._1a_c01370{width:56.610667pt;}
._1e_c01370{width:59.520000pt;}
._42_c01370{width:144.880000pt;}
._2f_c01370{width:154.624000pt;}
._33_c01370{width:172.976000pt;}
._22_c01370{width:182.970667pt;}
._25_c01370{width:190.360000pt;}
._34_c01370{width:240.752000pt;}
._20_c01370{width:261.749333pt;}
._23_c01370{width:305.082667pt;}
._41_c01370{width:310.197333pt;}
._40_c01370{width:361.338667pt;}
._2c_c01370{width:386.656533pt;}
._3c_c01370{width:476.172800pt;}
._32_c01370{width:550.669333pt;}
._1f_c01370{width:658.634667pt;}
.fs8_c01370{font-size:42.666667pt;}
.fs6_c01370{font-size:50.666667pt;}
.fs7_c01370{font-size:53.333333pt;}
.fs3_c01370{font-size:56.000000pt;}
.fs0_c01370{font-size:57.600000pt;}
.fs2_c01370{font-size:64.000000pt;}
.fs5_c01370{font-size:69.333333pt;}
.fs1_c01370{font-size:72.000000pt;}
.fs4_c01370{font-size:93.333333pt;}
.y0_c01370{bottom:0.000000pt;}
.y26_c01370{bottom:2.760000pt;}
.y25_c01370{bottom:6.425217pt;}
.y24_c01370{bottom:50.640000pt;}
.y23_c01370{bottom:72.506667pt;}
.y22_c01370{bottom:94.773333pt;}
.y21_c01370{bottom:116.906667pt;}
.y20_c01370{bottom:138.240000pt;}
.y1f_c01370{bottom:160.240000pt;}
.y1e_c01370{bottom:181.840000pt;}
.y1d_c01370{bottom:203.973333pt;}
.y1c_c01370{bottom:225.840000pt;}
.y1b_c01370{bottom:246.906667pt;}
.y1a_c01370{bottom:268.773333pt;}
.y19_c01370{bottom:290.106667pt;}
.y18_c01370{bottom:312.240000pt;}
.y17_c01370{bottom:332.906667pt;}
.y16_c01370{bottom:355.173333pt;}
.y15_c01370{bottom:376.773333pt;}
.y14_c01370{bottom:398.640000pt;}
.y13_c01370{bottom:419.706667pt;}
.y12_c01370{bottom:441.306667pt;}
.y11_c01370{bottom:462.640000pt;}
.y10_c01370{bottom:483.573333pt;}
.yf_c01370{bottom:505.706667pt;}
.ye_c01370{bottom:527.040000pt;}
.yd_c01370{bottom:548.640000pt;}
.yc_c01370{bottom:569.440000pt;}
.yb_c01370{bottom:590.906667pt;}
.ya_c01370{bottom:612.240000pt;}
.y9_c01370{bottom:633.040000pt;}
.y8_c01370{bottom:654.506667pt;}
.y7_c01370{bottom:676.106667pt;}
.y6_c01370{bottom:697.706667pt;}
.y5_c01370{bottom:719.306667pt;}
.y4_c01370{bottom:740.640000pt;}
.y3_c01370{bottom:761.973333pt;}
.y2_c01370{bottom:783.306667pt;}
.y1_c01370{bottom:815.040000pt;}
.h7_c01370{height:11.733399pt;}
.h8_c01370{height:38.937500pt;}
.h6_c01370{height:59.300781pt;}
.h2_c01370{height:70.664062pt;}
.h3_c01370{height:74.906250pt;}
.h5_c01370{height:87.783854pt;}
.h4_c01370{height:94.062500pt;}
.h1_c01370{height:876.666667pt;}
.h0_c01370{height:876.933333pt;}
.w1_c01370{width:93.222667pt;}
.w0_c01370{width:597.333333pt;}
.x0_c01370{left:0.000000pt;}
.xb_c01370{left:32.400000pt;}
.x9_c01370{left:34.266667pt;}
.x3_c01370{left:35.466667pt;}
.x2_c01370{left:36.533333pt;}
.x8_c01370{left:37.600000pt;}
.xc_c01370{left:38.800000pt;}
.x7_c01370{left:58.000000pt;}
.xa_c01370{left:60.000000pt;}
.x6_c01370{left:70.266667pt;}
.x5_c01370{left:76.533333pt;}
.x4_c01370{left:95.200000pt;}
.x1_c01370{left:205.733333pt;}
.xe_c01370{left:255.834880pt;}
.xd_c01370{left:460.266667pt;}
}





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

.ir_c01371:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01371{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01371;src:url('chunks/assets/font_b59a6a8fec16fbbfcdef8706.woff2')format("woff");}.ff1_c01371{font-family:ff1_c01371;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01371;src:url('chunks/assets/font_e8c3b7d5cb07a7a3fdfd8b76.woff2')format("woff");}.ff2_c01371{font-family:ff2_c01371;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01371;src:url('chunks/assets/font_afe51ebdeee5278169dcdf0c.woff2')format("woff");}.ff3_c01371{font-family:ff3_c01371;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01371;src:url('chunks/assets/font_2944f8142976c44943fe9a3a.woff2')format("woff");}.ff4_c01371{font-family:ff4_c01371;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01371;src:url('chunks/assets/font_8c4d8f41a885126e01e88d17.woff2')format("woff");}.ff5_c01371{font-family:ff5_c01371;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01371;src:url('chunks/assets/font_2f2a9a3008ce5490772b6837.woff2')format("woff");}.ff6_c01371{font-family:ff6_c01371;line-height:1.284180;font-style:normal;font-weight: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_c01371;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c01371{font-family:ff7_c01371;line-height:1.219238;font-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_c01371{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m0_c01371{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01371{vertical-align:0.000000px;}
.ls12_c01371{letter-spacing:-6.000000px;}
.ls11_c01371{letter-spacing:0.000000px;}
.ls3_c01371{letter-spacing:0.402000px;}
.ls5_c01371{letter-spacing:3.000000px;}
.ls6_c01371{letter-spacing:4.002000px;}
.lse_c01371{letter-spacing:5.202000px;}
.ls13_c01371{letter-spacing:6.000000px;}
.ls0_c01371{letter-spacing:6.600000px;}
.ls2_c01371{letter-spacing:8.202000px;}
.ls9_c01371{letter-spacing:8.700000px;}
.ls14_c01371{letter-spacing:9.000000px;}
.lsb_c01371{letter-spacing:9.180000px;}
.ls1_c01371{letter-spacing:10.800000px;}
.ls8_c01371{letter-spacing:12.000000px;}
.lsc_c01371{letter-spacing:12.600000px;}
.lsa_c01371{letter-spacing:12.750000px;}
.ls4_c01371{letter-spacing:14.802000px;}
.ls10_c01371{letter-spacing:15.000000px;}
.lsf_c01371{letter-spacing:16.800000px;}
.lsd_c01371{letter-spacing:17.100000px;}
.ls7_c01371{letter-spacing:18.402000px;}
.sc__c01371{text-shadow:none;}
.sc0_c01371{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01371{-webkit-text-stroke:0px transparent;}
.sc0_c01371{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c01371{word-spacing:-39.000000px;}
.wse_c01371{word-spacing:-32.250000px;}
.ws0_c01371{word-spacing:-28.737000px;}
.ws7_c01371{word-spacing:-26.250000px;}
.ws2_c01371{word-spacing:-21.000000px;}
.ws3_c01371{word-spacing:-18.798000px;}
.ws9_c01371{word-spacing:-18.750000px;}
.ws1_c01371{word-spacing:-13.737000px;}
.wsa_c01371{word-spacing:-5.850000px;}
.wsd_c01371{word-spacing:-5.565000px;}
.ws4_c01371{word-spacing:-5.394000px;}
.wsf_c01371{word-spacing:-4.254000px;}
.ws6_c01371{word-spacing:-3.171000px;}
.ws8_c01371{word-spacing:-0.513000px;}
.ws5_c01371{word-spacing:-0.171000px;}
.ws10_c01371{word-spacing:0.000000px;}
.wsb_c01371{word-spacing:0.969000px;}
._16_c01371{margin-left:-34.554000px;}
._15_c01371{margin-left:-28.554000px;}
._14_c01371{margin-left:-23.100000px;}
._24_c01371{margin-left:-20.616000px;}
._1e_c01371{margin-left:-19.344000px;}
._1c_c01371{margin-left:-17.472000px;}
._1f_c01371{margin-left:-15.738000px;}
._20_c01371{margin-left:-13.212000px;}
._21_c01371{margin-left:-11.751000px;}
._e_c01371{margin-left:-9.819000px;}
._23_c01371{margin-left:-8.676000px;}
._a_c01371{margin-left:-7.644000px;}
._b_c01371{margin-left:-6.318000px;}
._f_c01371{margin-left:-5.175000px;}
._d_c01371{margin-left:-3.249000px;}
._13_c01371{margin-left:-2.199000px;}
._7_c01371{margin-left:-1.026000px;}
._1a_c01371{width:1.044000px;}
._4_c01371{width:2.100000px;}
._3_c01371{width:4.056000px;}
._5_c01371{width:5.520000px;}
._6_c01371{width:7.239000px;}
._c_c01371{width:8.502000px;}
._0_c01371{width:9.519000px;}
._1_c01371{width:11.001000px;}
._2_c01371{width:12.027000px;}
._10_c01371{width:13.062000px;}
._11_c01371{width:14.799000px;}
._12_c01371{width:16.443000px;}
._26_c01371{width:17.466000px;}
._9_c01371{width:18.639000px;}
._1b_c01371{width:19.998000px;}
._19_c01371{width:21.471000px;}
._18_c01371{width:24.396000px;}
._17_c01371{width:27.198000px;}
._22_c01371{width:29.337000px;}
._8_c01371{width:45.429000px;}
._25_c01371{width:103.821000px;}
._1d_c01371{width:205.998000px;}
.fc2_c01371{color:transparent;}
.fc1_c01371{color:rgb(128,128,128);}
.fc0_c01371{color:rgb(0,0,0);}
.fs9_c01371{font-size:48.000000px;}
.fs3_c01371{font-size:54.000000px;}
.fs0_c01371{font-size:57.000000px;}
.fs1_c01371{font-size:60.000000px;}
.fs4_c01371{font-size:63.000000px;}
.fs7_c01371{font-size:66.000000px;}
.fs6_c01371{font-size:69.000000px;}
.fs2_c01371{font-size:78.000000px;}
.fs8_c01371{font-size:93.000000px;}
.fs5_c01371{font-size:120.000000px;}
.y0_c01371{bottom:0.000000px;}
.y42_c01371{bottom:3.105000px;}
.y41_c01371{bottom:7.228363px;}
.y40_c01371{bottom:48.150000px;}
.y21_c01371{bottom:69.900000px;}
.y3f_c01371{bottom:71.100000px;}
.y20_c01371{bottom:96.150000px;}
.y3e_c01371{bottom:96.600000px;}
.y1f_c01371{bottom:120.600000px;}
.y3d_c01371{bottom:144.750000px;}
.y1e_c01371{bottom:145.200000px;}
.y3c_c01371{bottom:169.350000px;}
.y1d_c01371{bottom:170.100000px;}
.y3b_c01371{bottom:193.650000px;}
.y1c_c01371{bottom:194.400000px;}
.y1b_c01371{bottom:219.000000px;}
.y3a_c01371{bottom:219.300000px;}
.y1a_c01371{bottom:243.450000px;}
.y39_c01371{bottom:243.900000px;}
.y19_c01371{bottom:267.900000px;}
.y18_c01371{bottom:292.500000px;}
.y38_c01371{bottom:292.650000px;}
.y17_c01371{bottom:316.500000px;}
.y37_c01371{bottom:316.950000px;}
.y36_c01371{bottom:341.100000px;}
.y16_c01371{bottom:341.250000px;}
.y15_c01371{bottom:365.550000px;}
.y14_c01371{bottom:389.850000px;}
.y35_c01371{bottom:390.450000px;}
.y13_c01371{bottom:414.750000px;}
.y12_c01371{bottom:438.750000px;}
.y34_c01371{bottom:439.050000px;}
.y11_c01371{bottom:462.750000px;}
.y33_c01371{bottom:463.650000px;}
.y32_c01371{bottom:488.250000px;}
.y10_c01371{bottom:510.900000px;}
.y31_c01371{bottom:512.700000px;}
.yf_c01371{bottom:535.650000px;}
.y30_c01371{bottom:537.000000px;}
.ye_c01371{bottom:559.650000px;}
.y2f_c01371{bottom:561.150000px;}
.yd_c01371{bottom:584.550000px;}
.y2e_c01371{bottom:584.850000px;}
.yc_c01371{bottom:608.250000px;}
.y2d_c01371{bottom:609.750000px;}
.yb_c01371{bottom:632.250000px;}
.y2c_c01371{bottom:633.900000px;}
.ya_c01371{bottom:656.550000px;}
.y2b_c01371{bottom:658.200000px;}
.y9_c01371{bottom:681.000000px;}
.y2a_c01371{bottom:682.800000px;}
.y29_c01371{bottom:700.950000px;}
.y8_c01371{bottom:705.150000px;}
.y7_c01371{bottom:729.450000px;}
.y28_c01371{bottom:730.800000px;}
.y6_c01371{bottom:753.300000px;}
.y27_c01371{bottom:755.400000px;}
.y5_c01371{bottom:777.600000px;}
.y26_c01371{bottom:779.250000px;}
.y4_c01371{bottom:802.200000px;}
.y25_c01371{bottom:804.600000px;}
.y3_c01371{bottom:825.900000px;}
.y24_c01371{bottom:828.900000px;}
.y2_c01371{bottom:850.050000px;}
.y23_c01371{bottom:852.300000px;}
.y1_c01371{bottom:874.800000px;}
.y22_c01371{bottom:876.600000px;}
.ha_c01371{height:13.200074px;}
.hb_c01371{height:43.804688px;}
.h3_c01371{height:57.445312px;}
.h9_c01371{height:58.886719px;}
.h2_c01371{height:66.713379px;}
.h5_c01371{height:72.168457px;}
.h8_c01371{height:93.726562px;}
.h4_c01371{height:98.756836px;}
.h6_c01371{height:99.356836px;}
.h7_c01371{height:120.937500px;}
.h1_c01371{height:977.250000px;}
.h0_c01371{height:977.400000px;}
.w1_c01371{width:104.875500px;}
.w0_c01371{width:661.500000px;}
.x0_c01371{left:0.000000px;}
.xa_c01371{left:99.000000px;}
.xc_c01371{left:101.550000px;}
.xb_c01371{left:102.600000px;}
.x4_c01371{left:103.950000px;}
.x7_c01371{left:105.000000px;}
.x5_c01371{left:106.350000px;}
.x6_c01371{left:107.700000px;}
.x1_c01371{left:109.350000px;}
.x2_c01371{left:113.400000px;}
.x9_c01371{left:128.250000px;}
.x3_c01371{left:131.700000px;}
.x8_c01371{left:186.600000px;}
.x1b_c01371{left:282.564240px;}
.x17_c01371{left:378.450000px;}
.x14_c01371{left:379.800000px;}
.x11_c01371{left:381.450000px;}
.x10_c01371{left:382.800000px;}
.xf_c01371{left:383.850000px;}
.x19_c01371{left:403.950000px;}
.x13_c01371{left:406.800000px;}
.xe_c01371{left:408.000000px;}
.x12_c01371{left:418.800000px;}
.x18_c01371{left:456.300000px;}
.xd_c01371{left:461.700000px;}
.x15_c01371{left:544.050000px;}
.x16_c01371{left:555.300000px;}
.x1a_c01371{left:579.600000px;}
@media print{
.v0_c01371{vertical-align:0.000000pt;}
.ls12_c01371{letter-spacing:-5.333333pt;}
.ls11_c01371{letter-spacing:0.000000pt;}
.ls3_c01371{letter-spacing:0.357333pt;}
.ls5_c01371{letter-spacing:2.666667pt;}
.ls6_c01371{letter-spacing:3.557333pt;}
.lse_c01371{letter-spacing:4.624000pt;}
.ls13_c01371{letter-spacing:5.333333pt;}
.ls0_c01371{letter-spacing:5.866667pt;}
.ls2_c01371{letter-spacing:7.290667pt;}
.ls9_c01371{letter-spacing:7.733333pt;}
.ls14_c01371{letter-spacing:8.000000pt;}
.lsb_c01371{letter-spacing:8.160000pt;}
.ls1_c01371{letter-spacing:9.600000pt;}
.ls8_c01371{letter-spacing:10.666667pt;}
.lsc_c01371{letter-spacing:11.200000pt;}
.lsa_c01371{letter-spacing:11.333333pt;}
.ls4_c01371{letter-spacing:13.157333pt;}
.ls10_c01371{letter-spacing:13.333333pt;}
.lsf_c01371{letter-spacing:14.933333pt;}
.lsd_c01371{letter-spacing:15.200000pt;}
.ls7_c01371{letter-spacing:16.357333pt;}
.wsc_c01371{word-spacing:-34.666667pt;}
.wse_c01371{word-spacing:-28.666667pt;}
.ws0_c01371{word-spacing:-25.544000pt;}
.ws7_c01371{word-spacing:-23.333333pt;}
.ws2_c01371{word-spacing:-18.666667pt;}
.ws3_c01371{word-spacing:-16.709333pt;}
.ws9_c01371{word-spacing:-16.666667pt;}
.ws1_c01371{word-spacing:-12.210667pt;}
.wsa_c01371{word-spacing:-5.200000pt;}
.wsd_c01371{word-spacing:-4.946667pt;}
.ws4_c01371{word-spacing:-4.794667pt;}
.wsf_c01371{word-spacing:-3.781333pt;}
.ws6_c01371{word-spacing:-2.818667pt;}
.ws8_c01371{word-spacing:-0.456000pt;}
.ws5_c01371{word-spacing:-0.152000pt;}
.ws10_c01371{word-spacing:0.000000pt;}
.wsb_c01371{word-spacing:0.861333pt;}
._16_c01371{margin-left:-30.714667pt;}
._15_c01371{margin-left:-25.381333pt;}
._14_c01371{margin-left:-20.533333pt;}
._24_c01371{margin-left:-18.325333pt;}
._1e_c01371{margin-left:-17.194667pt;}
._1c_c01371{margin-left:-15.530667pt;}
._1f_c01371{margin-left:-13.989333pt;}
._20_c01371{margin-left:-11.744000pt;}
._21_c01371{margin-left:-10.445333pt;}
._e_c01371{margin-left:-8.728000pt;}
._23_c01371{margin-left:-7.712000pt;}
._a_c01371{margin-left:-6.794667pt;}
._b_c01371{margin-left:-5.616000pt;}
._f_c01371{margin-left:-4.600000pt;}
._d_c01371{margin-left:-2.888000pt;}
._13_c01371{margin-left:-1.954667pt;}
._7_c01371{margin-left:-0.912000pt;}
._1a_c01371{width:0.928000pt;}
._4_c01371{width:1.866667pt;}
._3_c01371{width:3.605333pt;}
._5_c01371{width:4.906667pt;}
._6_c01371{width:6.434667pt;}
._c_c01371{width:7.557333pt;}
._0_c01371{width:8.461333pt;}
._1_c01371{width:9.778667pt;}
._2_c01371{width:10.690667pt;}
._10_c01371{width:11.610667pt;}
._11_c01371{width:13.154667pt;}
._12_c01371{width:14.616000pt;}
._26_c01371{width:15.525333pt;}
._9_c01371{width:16.568000pt;}
._1b_c01371{width:17.776000pt;}
._19_c01371{width:19.085333pt;}
._18_c01371{width:21.685333pt;}
._17_c01371{width:24.176000pt;}
._22_c01371{width:26.077333pt;}
._8_c01371{width:40.381333pt;}
._25_c01371{width:92.285333pt;}
._1d_c01371{width:183.109333pt;}
.fs9_c01371{font-size:42.666667pt;}
.fs3_c01371{font-size:48.000000pt;}
.fs0_c01371{font-size:50.666667pt;}
.fs1_c01371{font-size:53.333333pt;}
.fs4_c01371{font-size:56.000000pt;}
.fs7_c01371{font-size:58.666667pt;}
.fs6_c01371{font-size:61.333333pt;}
.fs2_c01371{font-size:69.333333pt;}
.fs8_c01371{font-size:82.666667pt;}
.fs5_c01371{font-size:106.666667pt;}
.y0_c01371{bottom:0.000000pt;}
.y42_c01371{bottom:2.760000pt;}
.y41_c01371{bottom:6.425212pt;}
.y40_c01371{bottom:42.800000pt;}
.y21_c01371{bottom:62.133333pt;}
.y3f_c01371{bottom:63.200000pt;}
.y20_c01371{bottom:85.466667pt;}
.y3e_c01371{bottom:85.866667pt;}
.y1f_c01371{bottom:107.200000pt;}
.y3d_c01371{bottom:128.666667pt;}
.y1e_c01371{bottom:129.066667pt;}
.y3c_c01371{bottom:150.533333pt;}
.y1d_c01371{bottom:151.200000pt;}
.y3b_c01371{bottom:172.133333pt;}
.y1c_c01371{bottom:172.800000pt;}
.y1b_c01371{bottom:194.666667pt;}
.y3a_c01371{bottom:194.933333pt;}
.y1a_c01371{bottom:216.400000pt;}
.y39_c01371{bottom:216.800000pt;}
.y19_c01371{bottom:238.133333pt;}
.y18_c01371{bottom:260.000000pt;}
.y38_c01371{bottom:260.133333pt;}
.y17_c01371{bottom:281.333333pt;}
.y37_c01371{bottom:281.733333pt;}
.y36_c01371{bottom:303.200000pt;}
.y16_c01371{bottom:303.333333pt;}
.y15_c01371{bottom:324.933333pt;}
.y14_c01371{bottom:346.533333pt;}
.y35_c01371{bottom:347.066667pt;}
.y13_c01371{bottom:368.666667pt;}
.y12_c01371{bottom:390.000000pt;}
.y34_c01371{bottom:390.266667pt;}
.y11_c01371{bottom:411.333333pt;}
.y33_c01371{bottom:412.133333pt;}
.y32_c01371{bottom:434.000000pt;}
.y10_c01371{bottom:454.133333pt;}
.y31_c01371{bottom:455.733333pt;}
.yf_c01371{bottom:476.133333pt;}
.y30_c01371{bottom:477.333333pt;}
.ye_c01371{bottom:497.466667pt;}
.y2f_c01371{bottom:498.800000pt;}
.yd_c01371{bottom:519.600000pt;}
.y2e_c01371{bottom:519.866667pt;}
.yc_c01371{bottom:540.666667pt;}
.y2d_c01371{bottom:542.000000pt;}
.yb_c01371{bottom:562.000000pt;}
.y2c_c01371{bottom:563.466667pt;}
.ya_c01371{bottom:583.600000pt;}
.y2b_c01371{bottom:585.066667pt;}
.y9_c01371{bottom:605.333333pt;}
.y2a_c01371{bottom:606.933333pt;}
.y29_c01371{bottom:623.066667pt;}
.y8_c01371{bottom:626.800000pt;}
.y7_c01371{bottom:648.400000pt;}
.y28_c01371{bottom:649.600000pt;}
.y6_c01371{bottom:669.600000pt;}
.y27_c01371{bottom:671.466667pt;}
.y5_c01371{bottom:691.200000pt;}
.y26_c01371{bottom:692.666667pt;}
.y4_c01371{bottom:713.066667pt;}
.y25_c01371{bottom:715.200000pt;}
.y3_c01371{bottom:734.133333pt;}
.y24_c01371{bottom:736.800000pt;}
.y2_c01371{bottom:755.600000pt;}
.y23_c01371{bottom:757.600000pt;}
.y1_c01371{bottom:777.600000pt;}
.y22_c01371{bottom:779.200000pt;}
.ha_c01371{height:11.733399pt;}
.hb_c01371{height:38.937500pt;}
.h3_c01371{height:51.062500pt;}
.h9_c01371{height:52.343750pt;}
.h2_c01371{height:59.300781pt;}
.h5_c01371{height:64.149740pt;}
.h8_c01371{height:83.312500pt;}
.h4_c01371{height:87.783854pt;}
.h6_c01371{height:88.317188pt;}
.h7_c01371{height:107.500000pt;}
.h1_c01371{height:868.666667pt;}
.h0_c01371{height:868.800000pt;}
.w1_c01371{width:93.222667pt;}
.w0_c01371{width:588.000000pt;}
.x0_c01371{left:0.000000pt;}
.xa_c01371{left:88.000000pt;}
.xc_c01371{left:90.266667pt;}
.xb_c01371{left:91.200000pt;}
.x4_c01371{left:92.400000pt;}
.x7_c01371{left:93.333333pt;}
.x5_c01371{left:94.533333pt;}
.x6_c01371{left:95.733333pt;}
.x1_c01371{left:97.200000pt;}
.x2_c01371{left:100.800000pt;}
.x9_c01371{left:114.000000pt;}
.x3_c01371{left:117.066667pt;}
.x8_c01371{left:165.866667pt;}
.x1b_c01371{left:251.168213pt;}
.x17_c01371{left:336.400000pt;}
.x14_c01371{left:337.600000pt;}
.x11_c01371{left:339.066667pt;}
.x10_c01371{left:340.266667pt;}
.xf_c01371{left:341.200000pt;}
.x19_c01371{left:359.066667pt;}
.x13_c01371{left:361.600000pt;}
.xe_c01371{left:362.666667pt;}
.x12_c01371{left:372.266667pt;}
.x18_c01371{left:405.600000pt;}
.xd_c01371{left:410.400000pt;}
.x15_c01371{left:483.600000pt;}
.x16_c01371{left:493.600000pt;}
.x1a_c01371{left:515.200000pt;}
}





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

.ir_c01372:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01372{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01372;src:url('chunks/assets/font_2b967910cb73edff7bb4ae7e.woff2')format("woff");}.ff1_c01372{font-family:ff1_c01372;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01372;src:url('chunks/assets/font_38ff984c41b9faca338155ca.woff2')format("woff");}.ff2_c01372{font-family:ff2_c01372;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01372;src:url('chunks/assets/font_442ccec3d020683cc5b9e881.woff2')format("woff");}.ff3_c01372{font-family:ff3_c01372;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01372;src:url('chunks/assets/font_1a0fc68fc675af444663783b.woff2')format("woff");}.ff4_c01372{font-family:ff4_c01372;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01372;src:url('chunks/assets/font_cf23c0fe877599720dfb0e70.woff2')format("woff");}.ff5_c01372{font-family:ff5_c01372;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01372;src:url('chunks/assets/font_865d55418764f5ce354b3eb7.woff2')format("woff");}.ff6_c01372{font-family:ff6_c01372;line-height:1.284668;font-style:normal;font-weight: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_c01372;src:url('chunks/assets/font_c9d663831d68a4ba1899f513.woff2')format("woff");}.ff7_c01372{font-family:ff7_c01372;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c01372;src:url('chunks/assets/font_95b3ed8f602b473c4f69aa9d.woff2')format("woff");}.ff8_c01372{font-family:ff8_c01372;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c01372;src:url('chunks/assets/font_385c17e995f3e8f0f310ed07.woff2')format("woff");}.ff9_c01372{font-family:ff9_c01372;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c01372;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ffa_c01372{font-family:ffa_c01372;line-height:1.219238;font-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_c01372{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m0_c01372{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01372{vertical-align:0.000000px;}
.lsb_c01372{letter-spacing:-6.000000px;}
.ls6_c01372{letter-spacing:0.000000px;}
.ls0_c01372{letter-spacing:0.900000px;}
.ls8_c01372{letter-spacing:3.000000px;}
.ls1_c01372{letter-spacing:3.900000px;}
.lsa_c01372{letter-spacing:6.000000px;}
.ls3_c01372{letter-spacing:10.500000px;}
.ls2_c01372{letter-spacing:13.770000px;}
.ls9_c01372{letter-spacing:15.000000px;}
.ls5_c01372{letter-spacing:27.000000px;}
.ls7_c01372{letter-spacing:126.000000px;}
.ls4_c01372{letter-spacing:292.002000px;}
.sc__c01372{text-shadow:none;}
.sc0_c01372{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01372{-webkit-text-stroke:0px transparent;}
.sc0_c01372{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c01372{word-spacing:-34.500000px;}
.ws6_c01372{word-spacing:-32.568000px;}
.ws5_c01372{word-spacing:-28.737000px;}
.ws7_c01372{word-spacing:-20.250000px;}
.ws3_c01372{word-spacing:-18.867000px;}
.ws2_c01372{word-spacing:-15.093600px;}
.ws0_c01372{word-spacing:-13.737000px;}
.ws1_c01372{word-spacing:-12.513000px;}
.ws8_c01372{word-spacing:0.000000px;}
._12_c01372{margin-left:-122.721000px;}
._10_c01372{margin-left:-120.327000px;}
._11_c01372{margin-left:-112.176000px;}
._6_c01372{margin-left:-38.988000px;}
._4_c01372{margin-left:-36.396000px;}
._25_c01372{margin-left:-34.776000px;}
._30_c01372{margin-left:-29.508000px;}
._2_c01372{margin-left:-27.864000px;}
._3e_c01372{margin-left:-23.034000px;}
._19_c01372{margin-left:-19.752000px;}
._36_c01372{margin-left:-18.303000px;}
._32_c01372{margin-left:-16.779000px;}
._2d_c01372{margin-left:-14.571000px;}
._3f_c01372{margin-left:-12.948000px;}
._16_c01372{margin-left:-11.934000px;}
._28_c01372{margin-left:-10.242000px;}
._0_c01372{margin-left:-8.748000px;}
._15_c01372{margin-left:-7.269000px;}
._3_c01372{margin-left:-5.832000px;}
._1_c01372{margin-left:-3.780000px;}
._5_c01372{margin-left:-2.268000px;}
._b_c01372{margin-left:-1.140000px;}
._7_c01372{width:1.368000px;}
._a_c01372{width:2.793000px;}
._9_c01372{width:4.332000px;}
._18_c01372{width:5.415000px;}
._13_c01372{width:6.441000px;}
._8_c01372{width:7.761000px;}
._20_c01372{width:8.835000px;}
._c_c01372{width:9.975000px;}
._14_c01372{width:11.364000px;}
._1a_c01372{width:13.413000px;}
._1b_c01372{width:15.390000px;}
._1c_c01372{width:16.872000px;}
._1d_c01372{width:18.240000px;}
._23_c01372{width:19.533000px;}
._33_c01372{width:20.691000px;}
._21_c01372{width:21.771000px;}
._29_c01372{width:23.826000px;}
._26_c01372{width:30.975000px;}
._22_c01372{width:32.946000px;}
._3d_c01372{width:42.006000px;}
._42_c01372{width:44.013000px;}
._49_c01372{width:49.386000px;}
._40_c01372{width:66.972000px;}
._48_c01372{width:70.728000px;}
._41_c01372{width:96.699000px;}
._35_c01372{width:98.394000px;}
._38_c01372{width:103.122000px;}
._37_c01372{width:108.615000px;}
._27_c01372{width:110.997000px;}
._31_c01372{width:116.568000px;}
._34_c01372{width:123.144000px;}
._1e_c01372{width:125.457000px;}
._d_c01372{width:126.474000px;}
._e_c01372{width:130.986000px;}
._f_c01372{width:132.297000px;}
._2e_c01372{width:133.692000px;}
._24_c01372{width:137.433000px;}
._2f_c01372{width:141.738000px;}
._47_c01372{width:145.029000px;}
._45_c01372{width:151.497000px;}
._3c_c01372{width:153.513000px;}
._39_c01372{width:171.768000px;}
._44_c01372{width:181.233000px;}
._17_c01372{width:219.111000px;}
._2c_c01372{width:235.449000px;}
._4d_c01372{width:252.333000px;}
._43_c01372{width:265.302000px;}
._4c_c01372{width:269.565000px;}
._1f_c01372{width:274.104000px;}
._3a_c01372{width:337.851000px;}
._4a_c01372{width:400.836000px;}
._2b_c01372{width:549.588000px;}
._3b_c01372{width:634.773000px;}
._46_c01372{width:773.133000px;}
._4b_c01372{width:786.396000px;}
._2a_c01372{width:952.347000px;}
.fc2_c01372{color:transparent;}
.fc1_c01372{color:rgb(128,128,128);}
.fc0_c01372{color:rgb(0,0,0);}
.fsa_c01372{font-size:39.000000px;}
.fs6_c01372{font-size:45.600000px;}
.fsc_c01372{font-size:48.000000px;}
.fs1_c01372{font-size:57.000000px;}
.fsb_c01372{font-size:60.000000px;}
.fs2_c01372{font-size:63.000000px;}
.fs8_c01372{font-size:69.000000px;}
.fs7_c01372{font-size:75.000000px;}
.fs3_c01372{font-size:78.000000px;}
.fs9_c01372{font-size:81.000000px;}
.fs4_c01372{font-size:96.000000px;}
.fs5_c01372{font-size:99.000000px;}
.fs0_c01372{font-size:108.000000px;}
.y0_c01372{bottom:0.000000px;}
.y25_c01372{bottom:0.030000px;}
.y27_c01372{bottom:3.105000px;}
.y26_c01372{bottom:7.228357px;}
.y24_c01372{bottom:49.980000px;}
.y23_c01372{bottom:76.380000px;}
.y22_c01372{bottom:102.630000px;}
.y21_c01372{bottom:126.630000px;}
.y20_c01372{bottom:151.230000px;}
.y1f_c01372{bottom:176.280000px;}
.y1e_c01372{bottom:200.580000px;}
.y1d_c01372{bottom:224.880000px;}
.y1c_c01372{bottom:249.480000px;}
.y1b_c01372{bottom:273.480000px;}
.y1a_c01372{bottom:298.380000px;}
.y19_c01372{bottom:322.680000px;}
.y18_c01372{bottom:346.980000px;}
.y17_c01372{bottom:370.980000px;}
.y16_c01372{bottom:395.580000px;}
.y15_c01372{bottom:420.480000px;}
.y14_c01372{bottom:444.930000px;}
.y13_c01372{bottom:468.480000px;}
.y12_c01372{bottom:493.380000px;}
.y11_c01372{bottom:517.380000px;}
.y10_c01372{bottom:541.980000px;}
.yf_c01372{bottom:565.380000px;}
.ye_c01372{bottom:589.380000px;}
.yd_c01372{bottom:613.680000px;}
.yc_c01372{bottom:637.980000px;}
.yb_c01372{bottom:662.280000px;}
.ya_c01372{bottom:686.880000px;}
.y9_c01372{bottom:709.380000px;}
.y8_c01372{bottom:734.430000px;}
.y7_c01372{bottom:758.430000px;}
.y6_c01372{bottom:783.330000px;}
.y5_c01372{bottom:806.730000px;}
.y4_c01372{bottom:830.880000px;}
.y3_c01372{bottom:855.180000px;}
.y2_c01372{bottom:878.580000px;}
.y1_c01372{bottom:916.080000px;}
.h8_c01372{height:13.200074px;}
.h9_c01372{height:43.804688px;}
.h3_c01372{height:66.713379px;}
.h6_c01372{height:72.168457px;}
.h7_c01372{height:79.497070px;}
.h5_c01372{height:98.672872px;}
.h4_c01372{height:98.756836px;}
.h2_c01372{height:136.740234px;}
.h1_c01372{height:973.500000px;}
.h0_c01372{height:973.650000px;}
.w2_c01372{width:104.875500px;}
.w1_c01372{width:662.250000px;}
.w0_c01372{width:662.550000px;}
.x0_c01372{left:0.000000px;}
.x2_c01372{left:25.650000px;}
.xc_c01372{left:26.700000px;}
.x5_c01372{left:27.900000px;}
.x6_c01372{left:30.000000px;}
.x8_c01372{left:31.650000px;}
.x9_c01372{left:34.350000px;}
.x7_c01372{left:42.150000px;}
.xa_c01372{left:54.300000px;}
.xb_c01372{left:58.350000px;}
.x1_c01372{left:211.350000px;}
.xf_c01372{left:283.089249px;}
.xd_c01372{left:301.350000px;}
.x3_c01372{left:476.100000px;}
.x4_c01372{left:484.200000px;}
.xe_c01372{left:582.450000px;}
@media print{
.v0_c01372{vertical-align:0.000000pt;}
.lsb_c01372{letter-spacing:-5.333333pt;}
.ls6_c01372{letter-spacing:0.000000pt;}
.ls0_c01372{letter-spacing:0.800000pt;}
.ls8_c01372{letter-spacing:2.666667pt;}
.ls1_c01372{letter-spacing:3.466667pt;}
.lsa_c01372{letter-spacing:5.333333pt;}
.ls3_c01372{letter-spacing:9.333333pt;}
.ls2_c01372{letter-spacing:12.240000pt;}
.ls9_c01372{letter-spacing:13.333333pt;}
.ls5_c01372{letter-spacing:24.000000pt;}
.ls7_c01372{letter-spacing:112.000000pt;}
.ls4_c01372{letter-spacing:259.557333pt;}
.ws4_c01372{word-spacing:-30.666667pt;}
.ws6_c01372{word-spacing:-28.949333pt;}
.ws5_c01372{word-spacing:-25.544000pt;}
.ws7_c01372{word-spacing:-18.000000pt;}
.ws3_c01372{word-spacing:-16.770667pt;}
.ws2_c01372{word-spacing:-13.416533pt;}
.ws0_c01372{word-spacing:-12.210667pt;}
.ws1_c01372{word-spacing:-11.122667pt;}
.ws8_c01372{word-spacing:0.000000pt;}
._12_c01372{margin-left:-109.085333pt;}
._10_c01372{margin-left:-106.957333pt;}
._11_c01372{margin-left:-99.712000pt;}
._6_c01372{margin-left:-34.656000pt;}
._4_c01372{margin-left:-32.352000pt;}
._25_c01372{margin-left:-30.912000pt;}
._30_c01372{margin-left:-26.229333pt;}
._2_c01372{margin-left:-24.768000pt;}
._3e_c01372{margin-left:-20.474667pt;}
._19_c01372{margin-left:-17.557333pt;}
._36_c01372{margin-left:-16.269333pt;}
._32_c01372{margin-left:-14.914667pt;}
._2d_c01372{margin-left:-12.952000pt;}
._3f_c01372{margin-left:-11.509333pt;}
._16_c01372{margin-left:-10.608000pt;}
._28_c01372{margin-left:-9.104000pt;}
._0_c01372{margin-left:-7.776000pt;}
._15_c01372{margin-left:-6.461333pt;}
._3_c01372{margin-left:-5.184000pt;}
._1_c01372{margin-left:-3.360000pt;}
._5_c01372{margin-left:-2.016000pt;}
._b_c01372{margin-left:-1.013333pt;}
._7_c01372{width:1.216000pt;}
._a_c01372{width:2.482667pt;}
._9_c01372{width:3.850667pt;}
._18_c01372{width:4.813333pt;}
._13_c01372{width:5.725333pt;}
._8_c01372{width:6.898667pt;}
._20_c01372{width:7.853333pt;}
._c_c01372{width:8.866667pt;}
._14_c01372{width:10.101333pt;}
._1a_c01372{width:11.922667pt;}
._1b_c01372{width:13.680000pt;}
._1c_c01372{width:14.997333pt;}
._1d_c01372{width:16.213333pt;}
._23_c01372{width:17.362667pt;}
._33_c01372{width:18.392000pt;}
._21_c01372{width:19.352000pt;}
._29_c01372{width:21.178667pt;}
._26_c01372{width:27.533333pt;}
._22_c01372{width:29.285333pt;}
._3d_c01372{width:37.338667pt;}
._42_c01372{width:39.122667pt;}
._49_c01372{width:43.898667pt;}
._40_c01372{width:59.530667pt;}
._48_c01372{width:62.869333pt;}
._41_c01372{width:85.954667pt;}
._35_c01372{width:87.461333pt;}
._38_c01372{width:91.664000pt;}
._37_c01372{width:96.546667pt;}
._27_c01372{width:98.664000pt;}
._31_c01372{width:103.616000pt;}
._34_c01372{width:109.461333pt;}
._1e_c01372{width:111.517333pt;}
._d_c01372{width:112.421333pt;}
._e_c01372{width:116.432000pt;}
._f_c01372{width:117.597333pt;}
._2e_c01372{width:118.837333pt;}
._24_c01372{width:122.162667pt;}
._2f_c01372{width:125.989333pt;}
._47_c01372{width:128.914667pt;}
._45_c01372{width:134.664000pt;}
._3c_c01372{width:136.456000pt;}
._39_c01372{width:152.682667pt;}
._44_c01372{width:161.096000pt;}
._17_c01372{width:194.765333pt;}
._2c_c01372{width:209.288000pt;}
._4d_c01372{width:224.296000pt;}
._43_c01372{width:235.824000pt;}
._4c_c01372{width:239.613333pt;}
._1f_c01372{width:243.648000pt;}
._3a_c01372{width:300.312000pt;}
._4a_c01372{width:356.298667pt;}
._2b_c01372{width:488.522667pt;}
._3b_c01372{width:564.242667pt;}
._46_c01372{width:687.229333pt;}
._4b_c01372{width:699.018667pt;}
._2a_c01372{width:846.530667pt;}
.fsa_c01372{font-size:34.666667pt;}
.fs6_c01372{font-size:40.533333pt;}
.fsc_c01372{font-size:42.666667pt;}
.fs1_c01372{font-size:50.666667pt;}
.fsb_c01372{font-size:53.333333pt;}
.fs2_c01372{font-size:56.000000pt;}
.fs8_c01372{font-size:61.333333pt;}
.fs7_c01372{font-size:66.666667pt;}
.fs3_c01372{font-size:69.333333pt;}
.fs9_c01372{font-size:72.000000pt;}
.fs4_c01372{font-size:85.333333pt;}
.fs5_c01372{font-size:88.000000pt;}
.fs0_c01372{font-size:96.000000pt;}
.y0_c01372{bottom:0.000000pt;}
.y25_c01372{bottom:0.026667pt;}
.y27_c01372{bottom:2.760000pt;}
.y26_c01372{bottom:6.425206pt;}
.y24_c01372{bottom:44.426667pt;}
.y23_c01372{bottom:67.893333pt;}
.y22_c01372{bottom:91.226667pt;}
.y21_c01372{bottom:112.560000pt;}
.y20_c01372{bottom:134.426667pt;}
.y1f_c01372{bottom:156.693333pt;}
.y1e_c01372{bottom:178.293333pt;}
.y1d_c01372{bottom:199.893333pt;}
.y1c_c01372{bottom:221.760000pt;}
.y1b_c01372{bottom:243.093333pt;}
.y1a_c01372{bottom:265.226667pt;}
.y19_c01372{bottom:286.826667pt;}
.y18_c01372{bottom:308.426667pt;}
.y17_c01372{bottom:329.760000pt;}
.y16_c01372{bottom:351.626667pt;}
.y15_c01372{bottom:373.760000pt;}
.y14_c01372{bottom:395.493333pt;}
.y13_c01372{bottom:416.426667pt;}
.y12_c01372{bottom:438.560000pt;}
.y11_c01372{bottom:459.893333pt;}
.y10_c01372{bottom:481.760000pt;}
.yf_c01372{bottom:502.560000pt;}
.ye_c01372{bottom:523.893333pt;}
.yd_c01372{bottom:545.493333pt;}
.yc_c01372{bottom:567.093333pt;}
.yb_c01372{bottom:588.693333pt;}
.ya_c01372{bottom:610.560000pt;}
.y9_c01372{bottom:630.560000pt;}
.y8_c01372{bottom:652.826667pt;}
.y7_c01372{bottom:674.160000pt;}
.y6_c01372{bottom:696.293333pt;}
.y5_c01372{bottom:717.093333pt;}
.y4_c01372{bottom:738.560000pt;}
.y3_c01372{bottom:760.160000pt;}
.y2_c01372{bottom:780.960000pt;}
.y1_c01372{bottom:814.293333pt;}
.h8_c01372{height:11.733399pt;}
.h9_c01372{height:38.937500pt;}
.h3_c01372{height:59.300781pt;}
.h6_c01372{height:64.149740pt;}
.h7_c01372{height:70.664062pt;}
.h5_c01372{height:87.709220pt;}
.h4_c01372{height:87.783854pt;}
.h2_c01372{height:121.546875pt;}
.h1_c01372{height:865.333333pt;}
.h0_c01372{height:865.466667pt;}
.w2_c01372{width:93.222667pt;}
.w1_c01372{width:588.666667pt;}
.w0_c01372{width:588.933333pt;}
.x0_c01372{left:0.000000pt;}
.x2_c01372{left:22.800000pt;}
.xc_c01372{left:23.733333pt;}
.x5_c01372{left:24.800000pt;}
.x6_c01372{left:26.666667pt;}
.x8_c01372{left:28.133333pt;}
.x9_c01372{left:30.533333pt;}
.x7_c01372{left:37.466667pt;}
.xa_c01372{left:48.266667pt;}
.xb_c01372{left:51.866667pt;}
.x1_c01372{left:187.866667pt;}
.xf_c01372{left:251.634888pt;}
.xd_c01372{left:267.866667pt;}
.x3_c01372{left:423.200000pt;}
.x4_c01372{left:430.400000pt;}
.xe_c01372{left:517.733333pt;}
}





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

.ir_c01373:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01373{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01373;src:url('chunks/assets/font_d0166a6803409197455684d7.woff2')format("woff");}.ff1_c01373{font-family:ff1_c01373;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01373;src:url('chunks/assets/font_f3810d10ebba3956c7e5e264.woff2')format("woff");}.ff2_c01373{font-family:ff2_c01373;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01373;src:url('chunks/assets/font_68f84ca7bfc55961c055571b.woff2')format("woff");}.ff3_c01373{font-family:ff3_c01373;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01373;src:url('chunks/assets/font_eaf37ddb20e785a896ba03bf.woff2')format("woff");}.ff4_c01373{font-family:ff4_c01373;line-height:1.401855;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01373;src:url('chunks/assets/font_2ea776330b2371cf4261b10c.woff2')format("woff");}.ff5_c01373{font-family:ff5_c01373;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01373;src:url('chunks/assets/font_a18c8d990bb7bd47260fd6d7.woff2')format("woff");}.ff6_c01373{font-family:ff6_c01373;line-height:1.311035;font-style:normal;font-weight: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_c01373;src:url('chunks/assets/font_876ac9ae37a5d4e7a1acdae4.woff2')format("woff");}.ff7_c01373{font-family:ff7_c01373;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c01373;src:url('chunks/assets/font_e4f4aa58c9c92dc44fce7780.woff2')format("woff");}.ff8_c01373{font-family:ff8_c01373;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c01373;src:url('chunks/assets/font_99c378b10164629fb1081289.woff2')format("woff");}.ff9_c01373{font-family:ff9_c01373;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c01373;src:url('chunks/assets/font_5eaf55e00687c3cd31a4f6ca.woff2')format("woff");}.ffa_c01373{font-family:ffa_c01373;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c01373;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ffb_c01373{font-family:ffb_c01373;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01373{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01373{vertical-align:0.000000px;}
.lsd_c01373{letter-spacing:-12.000000px;}
.lse_c01373{letter-spacing:-9.000000px;}
.lsc_c01373{letter-spacing:-3.000000px;}
.lsb_c01373{letter-spacing:0.000000px;}
.lsf_c01373{letter-spacing:3.000000px;}
.ls0_c01373{letter-spacing:4.200000px;}
.ls3_c01373{letter-spacing:4.500000px;}
.ls4_c01373{letter-spacing:5.400000px;}
.ls10_c01373{letter-spacing:6.000000px;}
.ls7_c01373{letter-spacing:7.800000px;}
.ls1_c01373{letter-spacing:9.600000px;}
.ls8_c01373{letter-spacing:10.002000px;}
.lsa_c01373{letter-spacing:10.800000px;}
.ls6_c01373{letter-spacing:12.000000px;}
.ls5_c01373{letter-spacing:13.317000px;}
.ls2_c01373{letter-spacing:13.800000px;}
.ls9_c01373{letter-spacing:17.100000px;}
.sc__c01373{text-shadow:none;}
.sc0_c01373{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01373{-webkit-text-stroke:0px transparent;}
.sc0_c01373{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01373{word-spacing:-34.200000px;}
.ws0_c01373{word-spacing:-30.000000px;}
.ws2_c01373{word-spacing:-27.000000px;}
.wsa_c01373{word-spacing:-21.000000px;}
.ws8_c01373{word-spacing:-18.750000px;}
.ws3_c01373{word-spacing:-18.000000px;}
.ws4_c01373{word-spacing:-13.737000px;}
.ws7_c01373{word-spacing:-0.456000px;}
.wsb_c01373{word-spacing:-0.171000px;}
.wsc_c01373{word-spacing:0.000000px;}
.ws5_c01373{word-spacing:6.858000px;}
.ws6_c01373{word-spacing:7.350000px;}
.ws9_c01373{word-spacing:10.431000px;}
._2f_c01373{margin-left:-55.194000px;}
._3f_c01373{margin-left:-49.191000px;}
._25_c01373{margin-left:-28.314000px;}
._30_c01373{margin-left:-25.596000px;}
._38_c01373{margin-left:-24.498000px;}
._2b_c01373{margin-left:-21.744000px;}
._22_c01373{margin-left:-20.148000px;}
._47_c01373{margin-left:-18.195000px;}
._29_c01373{margin-left:-16.587000px;}
._1b_c01373{margin-left:-14.472000px;}
._5_c01373{margin-left:-12.900000px;}
._17_c01373{margin-left:-10.842000px;}
._1a_c01373{margin-left:-9.576000px;}
._c_c01373{margin-left:-7.782000px;}
._0_c01373{margin-left:-6.156000px;}
._19_c01373{margin-left:-4.200000px;}
._10_c01373{margin-left:-2.772000px;}
._4_c01373{margin-left:-1.200000px;}
._14_c01373{width:1.278000px;}
._b_c01373{width:2.382000px;}
._2_c01373{width:3.726000px;}
._6_c01373{width:4.896000px;}
._7_c01373{width:6.348000px;}
._1_c01373{width:7.668000px;}
._3_c01373{width:8.814000px;}
._f_c01373{width:10.062000px;}
._d_c01373{width:11.400000px;}
._e_c01373{width:12.600000px;}
._2d_c01373{width:13.632000px;}
._9_c01373{width:14.700000px;}
._12_c01373{width:16.578000px;}
._11_c01373{width:17.616000px;}
._42_c01373{width:18.651000px;}
._1e_c01373{width:19.986000px;}
._32_c01373{width:21.276000px;}
._33_c01373{width:23.580000px;}
._3a_c01373{width:24.966000px;}
._8_c01373{width:35.082000px;}
._28_c01373{width:39.672000px;}
._43_c01373{width:43.686000px;}
._15_c01373{width:48.852000px;}
._3e_c01373{width:63.321000px;}
._2e_c01373{width:82.422000px;}
._49_c01373{width:83.724000px;}
._26_c01373{width:88.854000px;}
._31_c01373{width:92.742000px;}
._36_c01373{width:99.936000px;}
._1c_c01373{width:101.022000px;}
._35_c01373{width:104.691000px;}
._16_c01373{width:106.008000px;}
._3c_c01373{width:108.333000px;}
._a_c01373{width:112.200000px;}
._3b_c01373{width:113.208000px;}
._45_c01373{width:114.588000px;}
._3d_c01373{width:116.373000px;}
._13_c01373{width:119.424000px;}
._20_c01373{width:125.394000px;}
._4a_c01373{width:129.012000px;}
._21_c01373{width:134.421000px;}
._4c_c01373{width:148.356000px;}
._24_c01373{width:150.603000px;}
._50_c01373{width:172.344000px;}
._2a_c01373{width:185.934000px;}
._46_c01373{width:205.659000px;}
._4f_c01373{width:213.330000px;}
._40_c01373{width:214.971000px;}
._4e_c01373{width:219.318000px;}
._27_c01373{width:252.822000px;}
._23_c01373{width:254.499000px;}
._34_c01373{width:268.512000px;}
._4b_c01373{width:278.928000px;}
._2c_c01373{width:315.108000px;}
._37_c01373{width:319.665000px;}
._44_c01373{width:332.184000px;}
._39_c01373{width:371.082000px;}
._4d_c01373{width:375.768000px;}
._41_c01373{width:414.123000px;}
._18_c01373{width:434.574000px;}
._48_c01373{width:448.167000px;}
._52_c01373{width:582.252000px;}
._1d_c01373{width:603.000000px;}
._51_c01373{width:608.292000px;}
._1f_c01373{width:743.544000px;}
.fc2_c01373{color:transparent;}
.fc1_c01373{color:rgb(128,128,128);}
.fc0_c01373{color:rgb(0,0,0);}
.fs9_c01373{font-size:48.000000px;}
.fs0_c01373{font-size:54.000000px;}
.fs5_c01373{font-size:57.000000px;}
.fs1_c01373{font-size:60.000000px;}
.fs8_c01373{font-size:63.000000px;}
.fs2_c01373{font-size:66.000000px;}
.fs4_c01373{font-size:72.000000px;}
.fs3_c01373{font-size:75.000000px;}
.fs6_c01373{font-size:78.000000px;}
.fs7_c01373{font-size:81.000000px;}
.y0_c01373{bottom:0.000000px;}
.y24_c01373{bottom:3.105000px;}
.y23_c01373{bottom:7.228371px;}
.y22_c01373{bottom:72.315000px;}
.y21_c01373{bottom:98.565000px;}
.y20_c01373{bottom:122.865000px;}
.y1f_c01373{bottom:147.465000px;}
.y1e_c01373{bottom:172.215000px;}
.y1d_c01373{bottom:196.215000px;}
.y1c_c01373{bottom:220.065000px;}
.y1b_c01373{bottom:246.015000px;}
.y1a_c01373{bottom:270.315000px;}
.y19_c01373{bottom:295.365000px;}
.y18_c01373{bottom:319.365000px;}
.y17_c01373{bottom:344.715000px;}
.y16_c01373{bottom:368.865000px;}
.y15_c01373{bottom:393.615000px;}
.y14_c01373{bottom:417.915000px;}
.y13_c01373{bottom:442.815000px;}
.y12_c01373{bottom:466.815000px;}
.y11_c01373{bottom:491.415000px;}
.y10_c01373{bottom:515.415000px;}
.yf_c01373{bottom:540.015000px;}
.ye_c01373{bottom:564.315000px;}
.yd_c01373{bottom:588.315000px;}
.yc_c01373{bottom:612.615000px;}
.yb_c01373{bottom:636.915000px;}
.ya_c01373{bottom:660.915000px;}
.y9_c01373{bottom:685.815000px;}
.y8_c01373{bottom:710.115000px;}
.y7_c01373{bottom:733.815000px;}
.y6_c01373{bottom:757.665000px;}
.y5_c01373{bottom:782.415000px;}
.y4_c01373{bottom:806.415000px;}
.y3_c01373{bottom:830.715000px;}
.y2_c01373{bottom:855.015000px;}
.y1_c01373{bottom:879.315000px;}
.hd_c01373{height:13.200074px;}
.he_c01373{height:43.804688px;}
.h4_c01373{height:65.040000px;}
.hb_c01373{height:66.713379px;}
.h3_c01373{height:68.370117px;}
.h2_c01373{height:69.168000px;}
.h7_c01373{height:72.562500px;}
.h5_c01373{height:73.571777px;}
.h8_c01373{height:73.608398px;}
.h9_c01373{height:79.497070px;}
.ha_c01373{height:83.226000px;}
.hc_c01373{height:84.269531px;}
.h6_c01373{height:98.756836px;}
.h1_c01373{height:986.250000px;}
.h0_c01373{height:986.325000px;}
.w2_c01373{width:104.875500px;}
.w0_c01373{width:667.425000px;}
.w1_c01373{width:667.500000px;}
.x0_c01373{left:0.000000px;}
.xb_c01373{left:109.950000px;}
.x7_c01373{left:112.650000px;}
.x5_c01373{left:116.550000px;}
.x3_c01373{left:117.900000px;}
.x1_c01373{left:119.100000px;}
.x2_c01373{left:120.900000px;}
.x6_c01373{left:122.550000px;}
.x4_c01373{left:124.200000px;}
.xa_c01373{left:148.200000px;}
.x8_c01373{left:163.350000px;}
.x9_c01373{left:189.600000px;}
.xc_c01373{left:285.526749px;}
@media print{
.v0_c01373{vertical-align:0.000000pt;}
.lsd_c01373{letter-spacing:-10.666667pt;}
.lse_c01373{letter-spacing:-8.000000pt;}
.lsc_c01373{letter-spacing:-2.666667pt;}
.lsb_c01373{letter-spacing:0.000000pt;}
.lsf_c01373{letter-spacing:2.666667pt;}
.ls0_c01373{letter-spacing:3.733333pt;}
.ls3_c01373{letter-spacing:4.000000pt;}
.ls4_c01373{letter-spacing:4.800000pt;}
.ls10_c01373{letter-spacing:5.333333pt;}
.ls7_c01373{letter-spacing:6.933333pt;}
.ls1_c01373{letter-spacing:8.533333pt;}
.ls8_c01373{letter-spacing:8.890667pt;}
.lsa_c01373{letter-spacing:9.600000pt;}
.ls6_c01373{letter-spacing:10.666667pt;}
.ls5_c01373{letter-spacing:11.837333pt;}
.ls2_c01373{letter-spacing:12.266667pt;}
.ls9_c01373{letter-spacing:15.200000pt;}
.ws1_c01373{word-spacing:-30.400000pt;}
.ws0_c01373{word-spacing:-26.666667pt;}
.ws2_c01373{word-spacing:-24.000000pt;}
.wsa_c01373{word-spacing:-18.666667pt;}
.ws8_c01373{word-spacing:-16.666667pt;}
.ws3_c01373{word-spacing:-16.000000pt;}
.ws4_c01373{word-spacing:-12.210667pt;}
.ws7_c01373{word-spacing:-0.405333pt;}
.wsb_c01373{word-spacing:-0.152000pt;}
.wsc_c01373{word-spacing:0.000000pt;}
.ws5_c01373{word-spacing:6.096000pt;}
.ws6_c01373{word-spacing:6.533333pt;}
.ws9_c01373{word-spacing:9.272000pt;}
._2f_c01373{margin-left:-49.061333pt;}
._3f_c01373{margin-left:-43.725333pt;}
._25_c01373{margin-left:-25.168000pt;}
._30_c01373{margin-left:-22.752000pt;}
._38_c01373{margin-left:-21.776000pt;}
._2b_c01373{margin-left:-19.328000pt;}
._22_c01373{margin-left:-17.909333pt;}
._47_c01373{margin-left:-16.173333pt;}
._29_c01373{margin-left:-14.744000pt;}
._1b_c01373{margin-left:-12.864000pt;}
._5_c01373{margin-left:-11.466667pt;}
._17_c01373{margin-left:-9.637333pt;}
._1a_c01373{margin-left:-8.512000pt;}
._c_c01373{margin-left:-6.917333pt;}
._0_c01373{margin-left:-5.472000pt;}
._19_c01373{margin-left:-3.733333pt;}
._10_c01373{margin-left:-2.464000pt;}
._4_c01373{margin-left:-1.066667pt;}
._14_c01373{width:1.136000pt;}
._b_c01373{width:2.117333pt;}
._2_c01373{width:3.312000pt;}
._6_c01373{width:4.352000pt;}
._7_c01373{width:5.642667pt;}
._1_c01373{width:6.816000pt;}
._3_c01373{width:7.834667pt;}
._f_c01373{width:8.944000pt;}
._d_c01373{width:10.133333pt;}
._e_c01373{width:11.200000pt;}
._2d_c01373{width:12.117333pt;}
._9_c01373{width:13.066667pt;}
._12_c01373{width:14.736000pt;}
._11_c01373{width:15.658667pt;}
._42_c01373{width:16.578667pt;}
._1e_c01373{width:17.765333pt;}
._32_c01373{width:18.912000pt;}
._33_c01373{width:20.960000pt;}
._3a_c01373{width:22.192000pt;}
._8_c01373{width:31.184000pt;}
._28_c01373{width:35.264000pt;}
._43_c01373{width:38.832000pt;}
._15_c01373{width:43.424000pt;}
._3e_c01373{width:56.285333pt;}
._2e_c01373{width:73.264000pt;}
._49_c01373{width:74.421333pt;}
._26_c01373{width:78.981333pt;}
._31_c01373{width:82.437333pt;}
._36_c01373{width:88.832000pt;}
._1c_c01373{width:89.797333pt;}
._35_c01373{width:93.058667pt;}
._16_c01373{width:94.229333pt;}
._3c_c01373{width:96.296000pt;}
._a_c01373{width:99.733333pt;}
._3b_c01373{width:100.629333pt;}
._45_c01373{width:101.856000pt;}
._3d_c01373{width:103.442667pt;}
._13_c01373{width:106.154667pt;}
._20_c01373{width:111.461333pt;}
._4a_c01373{width:114.677333pt;}
._21_c01373{width:119.485333pt;}
._4c_c01373{width:131.872000pt;}
._24_c01373{width:133.869333pt;}
._50_c01373{width:153.194667pt;}
._2a_c01373{width:165.274667pt;}
._46_c01373{width:182.808000pt;}
._4f_c01373{width:189.626667pt;}
._40_c01373{width:191.085333pt;}
._4e_c01373{width:194.949333pt;}
._27_c01373{width:224.730667pt;}
._23_c01373{width:226.221333pt;}
._34_c01373{width:238.677333pt;}
._4b_c01373{width:247.936000pt;}
._2c_c01373{width:280.096000pt;}
._37_c01373{width:284.146667pt;}
._44_c01373{width:295.274667pt;}
._39_c01373{width:329.850667pt;}
._4d_c01373{width:334.016000pt;}
._41_c01373{width:368.109333pt;}
._18_c01373{width:386.288000pt;}
._48_c01373{width:398.370667pt;}
._52_c01373{width:517.557333pt;}
._1d_c01373{width:536.000000pt;}
._51_c01373{width:540.704000pt;}
._1f_c01373{width:660.928000pt;}
.fs9_c01373{font-size:42.666667pt;}
.fs0_c01373{font-size:48.000000pt;}
.fs5_c01373{font-size:50.666667pt;}
.fs1_c01373{font-size:53.333333pt;}
.fs8_c01373{font-size:56.000000pt;}
.fs2_c01373{font-size:58.666667pt;}
.fs4_c01373{font-size:64.000000pt;}
.fs3_c01373{font-size:66.666667pt;}
.fs6_c01373{font-size:69.333333pt;}
.fs7_c01373{font-size:72.000000pt;}
.y0_c01373{bottom:0.000000pt;}
.y24_c01373{bottom:2.760000pt;}
.y23_c01373{bottom:6.425219pt;}
.y22_c01373{bottom:64.280000pt;}
.y21_c01373{bottom:87.613333pt;}
.y20_c01373{bottom:109.213333pt;}
.y1f_c01373{bottom:131.080000pt;}
.y1e_c01373{bottom:153.080000pt;}
.y1d_c01373{bottom:174.413333pt;}
.y1c_c01373{bottom:195.613333pt;}
.y1b_c01373{bottom:218.680000pt;}
.y1a_c01373{bottom:240.280000pt;}
.y19_c01373{bottom:262.546667pt;}
.y18_c01373{bottom:283.880000pt;}
.y17_c01373{bottom:306.413333pt;}
.y16_c01373{bottom:327.880000pt;}
.y15_c01373{bottom:349.880000pt;}
.y14_c01373{bottom:371.480000pt;}
.y13_c01373{bottom:393.613333pt;}
.y12_c01373{bottom:414.946667pt;}
.y11_c01373{bottom:436.813333pt;}
.y10_c01373{bottom:458.146667pt;}
.yf_c01373{bottom:480.013333pt;}
.ye_c01373{bottom:501.613333pt;}
.yd_c01373{bottom:522.946667pt;}
.yc_c01373{bottom:544.546667pt;}
.yb_c01373{bottom:566.146667pt;}
.ya_c01373{bottom:587.480000pt;}
.y9_c01373{bottom:609.613333pt;}
.y8_c01373{bottom:631.213333pt;}
.y7_c01373{bottom:652.280000pt;}
.y6_c01373{bottom:673.480000pt;}
.y5_c01373{bottom:695.480000pt;}
.y4_c01373{bottom:716.813333pt;}
.y3_c01373{bottom:738.413333pt;}
.y2_c01373{bottom:760.013333pt;}
.y1_c01373{bottom:781.613333pt;}
.hd_c01373{height:11.733399pt;}
.he_c01373{height:38.937500pt;}
.h4_c01373{height:57.813333pt;}
.hb_c01373{height:59.300781pt;}
.h3_c01373{height:60.773438pt;}
.h2_c01373{height:61.482667pt;}
.h7_c01373{height:64.500000pt;}
.h5_c01373{height:65.397135pt;}
.h8_c01373{height:65.429688pt;}
.h9_c01373{height:70.664062pt;}
.ha_c01373{height:73.978667pt;}
.hc_c01373{height:74.906250pt;}
.h6_c01373{height:87.783854pt;}
.h1_c01373{height:876.666667pt;}
.h0_c01373{height:876.733333pt;}
.w2_c01373{width:93.222667pt;}
.w0_c01373{width:593.266667pt;}
.w1_c01373{width:593.333333pt;}
.x0_c01373{left:0.000000pt;}
.xb_c01373{left:97.733333pt;}
.x7_c01373{left:100.133333pt;}
.x5_c01373{left:103.600000pt;}
.x3_c01373{left:104.800000pt;}
.x1_c01373{left:105.866667pt;}
.x2_c01373{left:107.466667pt;}
.x6_c01373{left:108.933333pt;}
.x4_c01373{left:110.400000pt;}
.xa_c01373{left:131.733333pt;}
.x8_c01373{left:145.200000pt;}
.x9_c01373{left:168.533333pt;}
.xc_c01373{left:253.801554pt;}
}





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

.ir_c01374:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01374{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01374;src:url('chunks/assets/font_7928273782a053f084c8e7bb.woff2')format("woff");}.ff1_c01374{font-family:ff1_c01374;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01374;src:url('chunks/assets/font_0354977d3eb75b532656bf6a.woff2')format("woff");}.ff2_c01374{font-family:ff2_c01374;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01374;src:url('chunks/assets/font_fefc3e8202dfd45cf7e68997.woff2')format("woff");}.ff3_c01374{font-family:ff3_c01374;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01374;src:url('chunks/assets/font_b3aca991851f0e4ebdfabcf5.woff2')format("woff");}.ff4_c01374{font-family:ff4_c01374;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01374;src:url('chunks/assets/font_26615259770e6ed56d8b4e75.woff2')format("woff");}.ff5_c01374{font-family:ff5_c01374;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01374;src:url('chunks/assets/font_ab54001d2c4e0bd653f9ba13.woff2')format("woff");}.ff6_c01374{font-family:ff6_c01374;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01374;src:url('chunks/assets/font_37eaf60fbb864bdff61c354a.woff2')format("woff");}.ff7_c01374{font-family:ff7_c01374;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c01374;src:url('chunks/assets/font_da09e68d88fde32489f160e2.woff2')format("woff");}.ff8_c01374{font-family:ff8_c01374;line-height:1.284668;font-style:normal;font-weight: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_c01374;src:url('chunks/assets/font_ecb4ffa0fd626ba3e5df0c9e.woff2')format("woff");}.ff9_c01374{font-family:ff9_c01374;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c01374;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ffa_c01374{font-family:ffa_c01374;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01374{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01374{vertical-align:0.000000px;}
.ls16_c01374{letter-spacing:-3.000000px;}
.ls12_c01374{letter-spacing:0.000000px;}
.ls6_c01374{letter-spacing:0.402000px;}
.ls5_c01374{letter-spacing:2.874000px;}
.ls15_c01374{letter-spacing:3.000000px;}
.ls9_c01374{letter-spacing:3.402000px;}
.lsd_c01374{letter-spacing:5.202000px;}
.ls3_c01374{letter-spacing:5.208000px;}
.lsb_c01374{letter-spacing:5.400000px;}
.ls17_c01374{letter-spacing:6.000000px;}
.lsa_c01374{letter-spacing:6.402000px;}
.lsc_c01374{letter-spacing:7.002000px;}
.ls0_c01374{letter-spacing:8.700000px;}
.ls11_c01374{letter-spacing:9.000000px;}
.lse_c01374{letter-spacing:9.756000px;}
.lsf_c01374{letter-spacing:11.202000px;}
.ls13_c01374{letter-spacing:12.000000px;}
.ls2_c01374{letter-spacing:14.910000px;}
.ls14_c01374{letter-spacing:15.000000px;}
.ls7_c01374{letter-spacing:16.200000px;}
.ls10_c01374{letter-spacing:27.000000px;}
.ls8_c01374{letter-spacing:28.200000px;}
.ls4_c01374{letter-spacing:110.802000px;}
.ls1_c01374{letter-spacing:114.900000px;}
.sc__c01374{text-shadow:none;}
.sc0_c01374{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01374{-webkit-text-stroke:0px transparent;}
.sc0_c01374{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c01374{word-spacing:-31.500000px;}
.ws2_c01374{word-spacing:-28.812000px;}
.ws10_c01374{word-spacing:-28.737000px;}
.ws1_c01374{word-spacing:-28.500000px;}
.wsd_c01374{word-spacing:-21.000000px;}
.ws11_c01374{word-spacing:-18.867000px;}
.wsf_c01374{word-spacing:-18.750000px;}
.ws3_c01374{word-spacing:-16.500000px;}
.wsa_c01374{word-spacing:-15.804000px;}
.wse_c01374{word-spacing:-15.093600px;}
.wsc_c01374{word-spacing:-13.737000px;}
.ws8_c01374{word-spacing:-13.500000px;}
.ws0_c01374{word-spacing:-9.975000px;}
.ws13_c01374{word-spacing:0.000000px;}
.wsb_c01374{word-spacing:0.150000px;}
.ws9_c01374{word-spacing:1.188000px;}
.ws12_c01374{word-spacing:1.482000px;}
.ws6_c01374{word-spacing:2.745000px;}
.ws7_c01374{word-spacing:2.835000px;}
.ws4_c01374{word-spacing:5.850000px;}
._7_c01374{margin-left:-38.664000px;}
._4_c01374{margin-left:-34.452000px;}
._2_c01374{margin-left:-29.916000px;}
._35_c01374{margin-left:-26.736000px;}
._5_c01374{margin-left:-25.488000px;}
._1e_c01374{margin-left:-20.208000px;}
._2f_c01374{margin-left:-18.486000px;}
._36_c01374{margin-left:-17.208000px;}
._34_c01374{margin-left:-15.381000px;}
._10_c01374{margin-left:-13.200000px;}
._1d_c01374{margin-left:-11.943000px;}
._1a_c01374{margin-left:-10.077000px;}
._6_c01374{margin-left:-8.208000px;}
._0_c01374{margin-left:-6.696000px;}
._1f_c01374{margin-left:-4.818000px;}
._30_c01374{margin-left:-3.315000px;}
._25_c01374{margin-left:-1.989000px;}
._31_c01374{width:1.560000px;}
._1_c01374{width:2.592000px;}
._13_c01374{width:3.816000px;}
._1b_c01374{width:5.487000px;}
._12_c01374{width:6.786000px;}
._3f_c01374{width:7.788000px;}
._c_c01374{width:8.820000px;}
._15_c01374{width:10.125000px;}
._1c_c01374{width:12.135000px;}
._9_c01374{width:13.275000px;}
._f_c01374{width:14.595000px;}
._e_c01374{width:15.705000px;}
._d_c01374{width:17.280000px;}
._17_c01374{width:18.351000px;}
._16_c01374{width:19.899000px;}
._27_c01374{width:21.159000px;}
._b_c01374{width:22.185000px;}
._45_c01374{width:23.217000px;}
._a_c01374{width:24.480000px;}
._18_c01374{width:25.695000px;}
._28_c01374{width:27.300000px;}
._8_c01374{width:30.408000px;}
._2e_c01374{width:34.062000px;}
._2b_c01374{width:37.008000px;}
._11_c01374{width:58.482000px;}
._22_c01374{width:64.116000px;}
._42_c01374{width:77.907000px;}
._26_c01374{width:97.446000px;}
._3d_c01374{width:100.974000px;}
._46_c01374{width:103.746000px;}
._47_c01374{width:105.405000px;}
._23_c01374{width:107.550000px;}
._33_c01374{width:108.993000px;}
._19_c01374{width:111.327000px;}
._3e_c01374{width:114.219000px;}
._3c_c01374{width:116.958000px;}
._39_c01374{width:122.709000px;}
._3b_c01374{width:147.537000px;}
._38_c01374{width:167.328000px;}
._29_c01374{width:172.053000px;}
._2c_c01374{width:191.208000px;}
._41_c01374{width:202.308000px;}
._32_c01374{width:216.258000px;}
._24_c01374{width:232.608000px;}
._21_c01374{width:236.595000px;}
._49_c01374{width:323.418000px;}
._20_c01374{width:354.687000px;}
._40_c01374{width:357.405000px;}
._48_c01374{width:420.420000px;}
._37_c01374{width:425.790000px;}
._44_c01374{width:432.402000px;}
._14_c01374{width:434.376000px;}
._2d_c01374{width:438.102000px;}
._43_c01374{width:500.553000px;}
._3_c01374{width:696.168000px;}
._3a_c01374{width:783.708000px;}
._2a_c01374{width:1438.884000px;}
.fc2_c01374{color:transparent;}
.fc1_c01374{color:rgb(128,128,128);}
.fc0_c01374{color:rgb(0,0,0);}
.fs5_c01374{font-size:36.000000px;}
.fs2_c01374{font-size:45.000000px;}
.fs8_c01374{font-size:45.600000px;}
.fsc_c01374{font-size:48.000000px;}
.fs1_c01374{font-size:54.000000px;}
.fs6_c01374{font-size:57.000000px;}
.fs7_c01374{font-size:60.000000px;}
.fsa_c01374{font-size:63.000000px;}
.fs3_c01374{font-size:66.000000px;}
.fs9_c01374{font-size:72.000000px;}
.fs4_c01374{font-size:78.000000px;}
.fsb_c01374{font-size:84.000000px;}
.fs0_c01374{font-size:108.000000px;}
.y0_c01374{bottom:0.000000px;}
.y25_c01374{bottom:3.105000px;}
.y24_c01374{bottom:7.228369px;}
.y23_c01374{bottom:89.070000px;}
.y22_c01374{bottom:114.420000px;}
.y21_c01374{bottom:138.720000px;}
.y20_c01374{bottom:163.020000px;}
.y1f_c01374{bottom:187.920000px;}
.y1e_c01374{bottom:212.220000px;}
.y1d_c01374{bottom:236.220000px;}
.y1c_c01374{bottom:259.920000px;}
.y1b_c01374{bottom:285.420000px;}
.y1a_c01374{bottom:310.170000px;}
.y19_c01374{bottom:334.470000px;}
.y18_c01374{bottom:358.020000px;}
.y17_c01374{bottom:382.770000px;}
.y16_c01374{bottom:406.920000px;}
.y15_c01374{bottom:431.220000px;}
.y14_c01374{bottom:455.520000px;}
.y13_c01374{bottom:479.820000px;}
.y12_c01374{bottom:503.220000px;}
.y11_c01374{bottom:528.120000px;}
.y10_c01374{bottom:553.170000px;}
.yf_c01374{bottom:576.120000px;}
.ye_c01374{bottom:601.020000px;}
.yd_c01374{bottom:624.420000px;}
.yc_c01374{bottom:648.570000px;}
.yb_c01374{bottom:673.620000px;}
.ya_c01374{bottom:698.220000px;}
.y9_c01374{bottom:715.170000px;}
.y8_c01374{bottom:745.920000px;}
.y7_c01374{bottom:770.220000px;}
.y6_c01374{bottom:794.520000px;}
.y5_c01374{bottom:817.770000px;}
.y4_c01374{bottom:842.070000px;}
.y3_c01374{bottom:868.770000px;}
.y2_c01374{bottom:891.720000px;}
.y1_c01374{bottom:927.720000px;}
.ha_c01374{height:13.200073px;}
.hb_c01374{height:43.804688px;}
.h3_c01374{height:54.421875px;}
.h7_c01374{height:57.445312px;}
.h5_c01374{height:66.515625px;}
.h8_c01374{height:66.713379px;}
.h6_c01374{height:69.168000px;}
.h9_c01374{height:84.269531px;}
.h4_c01374{height:98.756836px;}
.h2_c01374{height:136.740234px;}
.h1_c01374{height:986.250000px;}
.h0_c01374{height:986.550000px;}
.w1_c01374{width:104.875500px;}
.w0_c01374{width:672.000000px;}
.x0_c01374{left:0.000000px;}
.xc_c01374{left:31.950000px;}
.x4_c01374{left:33.750000px;}
.x5_c01374{left:34.800000px;}
.x6_c01374{left:36.900000px;}
.x7_c01374{left:38.100000px;}
.x2_c01374{left:42.300000px;}
.x9_c01374{left:43.500000px;}
.xa_c01374{left:47.850000px;}
.xe_c01374{left:58.500000px;}
.xb_c01374{left:60.300000px;}
.xf_c01374{left:88.050000px;}
.x8_c01374{left:115.350000px;}
.xd_c01374{left:116.400000px;}
.x3_c01374{left:132.600000px;}
.x1_c01374{left:229.200000px;}
.x10_c01374{left:287.814240px;}
@media print{
.v0_c01374{vertical-align:0.000000pt;}
.ls16_c01374{letter-spacing:-2.666667pt;}
.ls12_c01374{letter-spacing:0.000000pt;}
.ls6_c01374{letter-spacing:0.357333pt;}
.ls5_c01374{letter-spacing:2.554667pt;}
.ls15_c01374{letter-spacing:2.666667pt;}
.ls9_c01374{letter-spacing:3.024000pt;}
.lsd_c01374{letter-spacing:4.624000pt;}
.ls3_c01374{letter-spacing:4.629333pt;}
.lsb_c01374{letter-spacing:4.800000pt;}
.ls17_c01374{letter-spacing:5.333333pt;}
.lsa_c01374{letter-spacing:5.690667pt;}
.lsc_c01374{letter-spacing:6.224000pt;}
.ls0_c01374{letter-spacing:7.733333pt;}
.ls11_c01374{letter-spacing:8.000000pt;}
.lse_c01374{letter-spacing:8.672000pt;}
.lsf_c01374{letter-spacing:9.957333pt;}
.ls13_c01374{letter-spacing:10.666667pt;}
.ls2_c01374{letter-spacing:13.253333pt;}
.ls14_c01374{letter-spacing:13.333333pt;}
.ls7_c01374{letter-spacing:14.400000pt;}
.ls10_c01374{letter-spacing:24.000000pt;}
.ls8_c01374{letter-spacing:25.066667pt;}
.ls4_c01374{letter-spacing:98.490667pt;}
.ls1_c01374{letter-spacing:102.133333pt;}
.ws5_c01374{word-spacing:-28.000000pt;}
.ws2_c01374{word-spacing:-25.610667pt;}
.ws10_c01374{word-spacing:-25.544000pt;}
.ws1_c01374{word-spacing:-25.333333pt;}
.wsd_c01374{word-spacing:-18.666667pt;}
.ws11_c01374{word-spacing:-16.770667pt;}
.wsf_c01374{word-spacing:-16.666667pt;}
.ws3_c01374{word-spacing:-14.666667pt;}
.wsa_c01374{word-spacing:-14.048000pt;}
.wse_c01374{word-spacing:-13.416533pt;}
.wsc_c01374{word-spacing:-12.210667pt;}
.ws8_c01374{word-spacing:-12.000000pt;}
.ws0_c01374{word-spacing:-8.866667pt;}
.ws13_c01374{word-spacing:0.000000pt;}
.wsb_c01374{word-spacing:0.133333pt;}
.ws9_c01374{word-spacing:1.056000pt;}
.ws12_c01374{word-spacing:1.317333pt;}
.ws6_c01374{word-spacing:2.440000pt;}
.ws7_c01374{word-spacing:2.520000pt;}
.ws4_c01374{word-spacing:5.200000pt;}
._7_c01374{margin-left:-34.368000pt;}
._4_c01374{margin-left:-30.624000pt;}
._2_c01374{margin-left:-26.592000pt;}
._35_c01374{margin-left:-23.765333pt;}
._5_c01374{margin-left:-22.656000pt;}
._1e_c01374{margin-left:-17.962667pt;}
._2f_c01374{margin-left:-16.432000pt;}
._36_c01374{margin-left:-15.296000pt;}
._34_c01374{margin-left:-13.672000pt;}
._10_c01374{margin-left:-11.733333pt;}
._1d_c01374{margin-left:-10.616000pt;}
._1a_c01374{margin-left:-8.957333pt;}
._6_c01374{margin-left:-7.296000pt;}
._0_c01374{margin-left:-5.952000pt;}
._1f_c01374{margin-left:-4.282667pt;}
._30_c01374{margin-left:-2.946667pt;}
._25_c01374{margin-left:-1.768000pt;}
._31_c01374{width:1.386667pt;}
._1_c01374{width:2.304000pt;}
._13_c01374{width:3.392000pt;}
._1b_c01374{width:4.877333pt;}
._12_c01374{width:6.032000pt;}
._3f_c01374{width:6.922667pt;}
._c_c01374{width:7.840000pt;}
._15_c01374{width:9.000000pt;}
._1c_c01374{width:10.786667pt;}
._9_c01374{width:11.800000pt;}
._f_c01374{width:12.973333pt;}
._e_c01374{width:13.960000pt;}
._d_c01374{width:15.360000pt;}
._17_c01374{width:16.312000pt;}
._16_c01374{width:17.688000pt;}
._27_c01374{width:18.808000pt;}
._b_c01374{width:19.720000pt;}
._45_c01374{width:20.637333pt;}
._a_c01374{width:21.760000pt;}
._18_c01374{width:22.840000pt;}
._28_c01374{width:24.266667pt;}
._8_c01374{width:27.029333pt;}
._2e_c01374{width:30.277333pt;}
._2b_c01374{width:32.896000pt;}
._11_c01374{width:51.984000pt;}
._22_c01374{width:56.992000pt;}
._42_c01374{width:69.250667pt;}
._26_c01374{width:86.618667pt;}
._3d_c01374{width:89.754667pt;}
._46_c01374{width:92.218667pt;}
._47_c01374{width:93.693333pt;}
._23_c01374{width:95.600000pt;}
._33_c01374{width:96.882667pt;}
._19_c01374{width:98.957333pt;}
._3e_c01374{width:101.528000pt;}
._3c_c01374{width:103.962667pt;}
._39_c01374{width:109.074667pt;}
._3b_c01374{width:131.144000pt;}
._38_c01374{width:148.736000pt;}
._29_c01374{width:152.936000pt;}
._2c_c01374{width:169.962667pt;}
._41_c01374{width:179.829333pt;}
._32_c01374{width:192.229333pt;}
._24_c01374{width:206.762667pt;}
._21_c01374{width:210.306667pt;}
._49_c01374{width:287.482667pt;}
._20_c01374{width:315.277333pt;}
._40_c01374{width:317.693333pt;}
._48_c01374{width:373.706667pt;}
._37_c01374{width:378.480000pt;}
._44_c01374{width:384.357333pt;}
._14_c01374{width:386.112000pt;}
._2d_c01374{width:389.424000pt;}
._43_c01374{width:444.936000pt;}
._3_c01374{width:618.816000pt;}
._3a_c01374{width:696.629333pt;}
._2a_c01374{width:1279.008000pt;}
.fs5_c01374{font-size:32.000000pt;}
.fs2_c01374{font-size:40.000000pt;}
.fs8_c01374{font-size:40.533333pt;}
.fsc_c01374{font-size:42.666667pt;}
.fs1_c01374{font-size:48.000000pt;}
.fs6_c01374{font-size:50.666667pt;}
.fs7_c01374{font-size:53.333333pt;}
.fsa_c01374{font-size:56.000000pt;}
.fs3_c01374{font-size:58.666667pt;}
.fs9_c01374{font-size:64.000000pt;}
.fs4_c01374{font-size:69.333333pt;}
.fsb_c01374{font-size:74.666667pt;}
.fs0_c01374{font-size:96.000000pt;}
.y0_c01374{bottom:0.000000pt;}
.y25_c01374{bottom:2.760000pt;}
.y24_c01374{bottom:6.425217pt;}
.y23_c01374{bottom:79.173333pt;}
.y22_c01374{bottom:101.706667pt;}
.y21_c01374{bottom:123.306667pt;}
.y20_c01374{bottom:144.906667pt;}
.y1f_c01374{bottom:167.040000pt;}
.y1e_c01374{bottom:188.640000pt;}
.y1d_c01374{bottom:209.973333pt;}
.y1c_c01374{bottom:231.040000pt;}
.y1b_c01374{bottom:253.706667pt;}
.y1a_c01374{bottom:275.706667pt;}
.y19_c01374{bottom:297.306667pt;}
.y18_c01374{bottom:318.240000pt;}
.y17_c01374{bottom:340.240000pt;}
.y16_c01374{bottom:361.706667pt;}
.y15_c01374{bottom:383.306667pt;}
.y14_c01374{bottom:404.906667pt;}
.y13_c01374{bottom:426.506667pt;}
.y12_c01374{bottom:447.306667pt;}
.y11_c01374{bottom:469.440000pt;}
.y10_c01374{bottom:491.706667pt;}
.yf_c01374{bottom:512.106667pt;}
.ye_c01374{bottom:534.240000pt;}
.yd_c01374{bottom:555.040000pt;}
.yc_c01374{bottom:576.506667pt;}
.yb_c01374{bottom:598.773333pt;}
.ya_c01374{bottom:620.640000pt;}
.y9_c01374{bottom:635.706667pt;}
.y8_c01374{bottom:663.040000pt;}
.y7_c01374{bottom:684.640000pt;}
.y6_c01374{bottom:706.240000pt;}
.y5_c01374{bottom:726.906667pt;}
.y4_c01374{bottom:748.506667pt;}
.y3_c01374{bottom:772.240000pt;}
.y2_c01374{bottom:792.640000pt;}
.y1_c01374{bottom:824.640000pt;}
.ha_c01374{height:11.733399pt;}
.hb_c01374{height:38.937500pt;}
.h3_c01374{height:48.375000pt;}
.h7_c01374{height:51.062500pt;}
.h5_c01374{height:59.125000pt;}
.h8_c01374{height:59.300781pt;}
.h6_c01374{height:61.482667pt;}
.h9_c01374{height:74.906250pt;}
.h4_c01374{height:87.783854pt;}
.h2_c01374{height:121.546875pt;}
.h1_c01374{height:876.666667pt;}
.h0_c01374{height:876.933333pt;}
.w1_c01374{width:93.222667pt;}
.w0_c01374{width:597.333333pt;}
.x0_c01374{left:0.000000pt;}
.xc_c01374{left:28.400000pt;}
.x4_c01374{left:30.000000pt;}
.x5_c01374{left:30.933333pt;}
.x6_c01374{left:32.800000pt;}
.x7_c01374{left:33.866667pt;}
.x2_c01374{left:37.600000pt;}
.x9_c01374{left:38.666667pt;}
.xa_c01374{left:42.533333pt;}
.xe_c01374{left:52.000000pt;}
.xb_c01374{left:53.600000pt;}
.xf_c01374{left:78.266667pt;}
.x8_c01374{left:102.533333pt;}
.xd_c01374{left:103.466667pt;}
.x3_c01374{left:117.866667pt;}
.x1_c01374{left:203.733333pt;}
.x10_c01374{left:255.834880pt;}
}





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

.ir_c01375:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01375{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01375;src:url('chunks/assets/font_99547201c3afdc2b941cb7fb.woff2')format("woff");}.ff1_c01375{font-family:ff1_c01375;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01375;src:url('chunks/assets/font_8865dee7c0e80088e9194a70.woff2')format("woff");}.ff2_c01375{font-family:ff2_c01375;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01375;src:url('chunks/assets/font_a181a92464d68ca51e87c11f.woff2')format("woff");}.ff3_c01375{font-family:ff3_c01375;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01375;src:url('chunks/assets/font_d2cb4549322a61f30db963c1.woff2')format("woff");}.ff4_c01375{font-family:ff4_c01375;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01375;src:url('chunks/assets/font_27208435c7c97d6acd6c65e5.woff2')format("woff");}.ff5_c01375{font-family:ff5_c01375;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01375;src:url('chunks/assets/font_a84a9f2bd79a6d4d4bd1af6b.woff2')format("woff");}.ff6_c01375{font-family:ff6_c01375;line-height:1.314453;font-style:normal;font-weight: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_c01375;src:url('chunks/assets/font_ac636dad18c937b7e4180213.woff2')format("woff");}.ff7_c01375{font-family:ff7_c01375;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c01375;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff8_c01375{font-family:ff8_c01375;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01375{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01375{vertical-align:-1.200000px;}
.v0_c01375{vertical-align:0.000000px;}
.ls3_c01375{letter-spacing:-6.000000px;}
.ls4_c01375{letter-spacing:0.000000px;}
.ls5_c01375{letter-spacing:3.000000px;}
.ls0_c01375{letter-spacing:8.700000px;}
.ls6_c01375{letter-spacing:27.000000px;}
.ls2_c01375{letter-spacing:33.000000px;}
.ls1_c01375{letter-spacing:721.200000px;}
.sc__c01375{text-shadow:none;}
.sc0_c01375{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01375{-webkit-text-stroke:0px transparent;}
.sc0_c01375{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c01375{word-spacing:-41.364000px;}
.ws1_c01375{word-spacing:-34.500000px;}
.ws6_c01375{word-spacing:-27.086400px;}
.ws5_c01375{word-spacing:-17.352000px;}
.ws0_c01375{word-spacing:-13.737000px;}
.ws7_c01375{word-spacing:0.000000px;}
.ws3_c01375{word-spacing:2.793000px;}
.ws2_c01375{word-spacing:68.970000px;}
._26_c01375{margin-left:-31.575000px;}
._20_c01375{margin-left:-21.417000px;}
._24_c01375{margin-left:-19.971000px;}
._6_c01375{margin-left:-18.000000px;}
._b_c01375{margin-left:-15.960000px;}
._9_c01375{margin-left:-14.100000px;}
._22_c01375{margin-left:-12.621000px;}
._17_c01375{margin-left:-10.560000px;}
._1a_c01375{margin-left:-8.175000px;}
._1e_c01375{margin-left:-6.789000px;}
._a_c01375{margin-left:-5.400000px;}
._13_c01375{margin-left:-3.978000px;}
._8_c01375{margin-left:-2.700000px;}
._1c_c01375{margin-left:-1.080000px;}
._16_c01375{width:1.140000px;}
._10_c01375{width:2.394000px;}
._c_c01375{width:3.513000px;}
._e_c01375{width:5.457000px;}
._d_c01375{width:6.519000px;}
._4_c01375{width:8.343000px;}
._0_c01375{width:9.477000px;}
._2_c01375{width:11.259000px;}
._1_c01375{width:12.555000px;}
._3_c01375{width:14.094000px;}
._1d_c01375{width:16.149000px;}
._15_c01375{width:19.359000px;}
._f_c01375{width:20.856000px;}
._23_c01375{width:24.336000px;}
._12_c01375{width:33.234000px;}
._14_c01375{width:38.136000px;}
._18_c01375{width:57.918000px;}
._11_c01375{width:78.432000px;}
._1f_c01375{width:83.142000px;}
._21_c01375{width:85.425000px;}
._1b_c01375{width:87.510000px;}
._25_c01375{width:96.207000px;}
._5_c01375{width:128.394000px;}
._19_c01375{width:143.508000px;}
._7_c01375{width:946.500000px;}
.fc2_c01375{color:transparent;}
.fc1_c01375{color:rgb(128,128,128);}
.fc0_c01375{color:rgb(0,0,0);}
.fs8_c01375{font-size:24.000000px;}
.fs6_c01375{font-size:36.000000px;}
.fsa_c01375{font-size:48.000000px;}
.fs2_c01375{font-size:57.000000px;}
.fs1_c01375{font-size:60.000000px;}
.fs4_c01375{font-size:63.000000px;}
.fs5_c01375{font-size:69.000000px;}
.fs7_c01375{font-size:72.000000px;}
.fs3_c01375{font-size:78.000000px;}
.fs0_c01375{font-size:81.000000px;}
.fs9_c01375{font-size:86.400000px;}
.y0_c01375{bottom:0.000000px;}
.y13_c01375{bottom:3.105000px;}
.y12_c01375{bottom:7.228371px;}
.yf_c01375{bottom:279.765000px;}
.y11_c01375{bottom:536.265000px;}
.ye_c01375{bottom:548.565000px;}
.y10_c01375{bottom:625.515000px;}
.yd_c01375{bottom:643.965000px;}
.yc_c01375{bottom:652.515000px;}
.yb_c01375{bottom:691.515000px;}
.ya_c01375{bottom:716.265000px;}
.y9_c01375{bottom:740.565000px;}
.y8_c01375{bottom:764.565000px;}
.y7_c01375{bottom:788.865000px;}
.y6_c01375{bottom:813.015000px;}
.y5_c01375{bottom:837.015000px;}
.y4_c01375{bottom:861.015000px;}
.y3_c01375{bottom:886.065000px;}
.y2_c01375{bottom:910.665000px;}
.y1_c01375{bottom:922.065000px;}
.h9_c01375{height:13.200074px;}
.h6_c01375{height:35.314453px;}
.ha_c01375{height:43.804688px;}
.h3_c01375{height:58.886719px;}
.h5_c01375{height:69.539062px;}
.h2_c01375{height:79.497070px;}
.h7_c01375{height:84.269531px;}
.h4_c01375{height:98.756836px;}
.h8_c01375{height:108.192188px;}
.h1_c01375{height:986.250000px;}
.h0_c01375{height:986.325000px;}
.w2_c01375{width:104.875500px;}
.w0_c01375{width:667.425000px;}
.w1_c01375{width:667.500000px;}
.x0_c01375{left:0.000000px;}
.x4_c01375{left:105.300000px;}
.x6_c01375{left:108.000000px;}
.x7_c01375{left:109.350000px;}
.x5_c01375{left:111.000000px;}
.x8_c01375{left:143.100000px;}
.xa_c01375{left:157.650000px;}
.x9_c01375{left:197.400000px;}
.x2_c01375{left:200.400000px;}
.x3_c01375{left:211.500000px;}
.xb_c01375{left:280.350000px;}
.xf_c01375{left:285.526749px;}
.x1_c01375{left:287.550000px;}
.xc_c01375{left:301.650000px;}
.xe_c01375{left:311.100000px;}
.xd_c01375{left:627.000000px;}
@media print{
.v1_c01375{vertical-align:-1.066667pt;}
.v0_c01375{vertical-align:0.000000pt;}
.ls3_c01375{letter-spacing:-5.333333pt;}
.ls4_c01375{letter-spacing:0.000000pt;}
.ls5_c01375{letter-spacing:2.666667pt;}
.ls0_c01375{letter-spacing:7.733333pt;}
.ls6_c01375{letter-spacing:24.000000pt;}
.ls2_c01375{letter-spacing:29.333333pt;}
.ls1_c01375{letter-spacing:641.066667pt;}
.ws4_c01375{word-spacing:-36.768000pt;}
.ws1_c01375{word-spacing:-30.666667pt;}
.ws6_c01375{word-spacing:-24.076800pt;}
.ws5_c01375{word-spacing:-15.424000pt;}
.ws0_c01375{word-spacing:-12.210667pt;}
.ws7_c01375{word-spacing:0.000000pt;}
.ws3_c01375{word-spacing:2.482667pt;}
.ws2_c01375{word-spacing:61.306667pt;}
._26_c01375{margin-left:-28.066667pt;}
._20_c01375{margin-left:-19.037333pt;}
._24_c01375{margin-left:-17.752000pt;}
._6_c01375{margin-left:-16.000000pt;}
._b_c01375{margin-left:-14.186667pt;}
._9_c01375{margin-left:-12.533333pt;}
._22_c01375{margin-left:-11.218667pt;}
._17_c01375{margin-left:-9.386667pt;}
._1a_c01375{margin-left:-7.266667pt;}
._1e_c01375{margin-left:-6.034667pt;}
._a_c01375{margin-left:-4.800000pt;}
._13_c01375{margin-left:-3.536000pt;}
._8_c01375{margin-left:-2.400000pt;}
._1c_c01375{margin-left:-0.960000pt;}
._16_c01375{width:1.013333pt;}
._10_c01375{width:2.128000pt;}
._c_c01375{width:3.122667pt;}
._e_c01375{width:4.850667pt;}
._d_c01375{width:5.794667pt;}
._4_c01375{width:7.416000pt;}
._0_c01375{width:8.424000pt;}
._2_c01375{width:10.008000pt;}
._1_c01375{width:11.160000pt;}
._3_c01375{width:12.528000pt;}
._1d_c01375{width:14.354667pt;}
._15_c01375{width:17.208000pt;}
._f_c01375{width:18.538667pt;}
._23_c01375{width:21.632000pt;}
._12_c01375{width:29.541333pt;}
._14_c01375{width:33.898667pt;}
._18_c01375{width:51.482667pt;}
._11_c01375{width:69.717333pt;}
._1f_c01375{width:73.904000pt;}
._21_c01375{width:75.933333pt;}
._1b_c01375{width:77.786667pt;}
._25_c01375{width:85.517333pt;}
._5_c01375{width:114.128000pt;}
._19_c01375{width:127.562667pt;}
._7_c01375{width:841.333333pt;}
.fs8_c01375{font-size:21.333333pt;}
.fs6_c01375{font-size:32.000000pt;}
.fsa_c01375{font-size:42.666667pt;}
.fs2_c01375{font-size:50.666667pt;}
.fs1_c01375{font-size:53.333333pt;}
.fs4_c01375{font-size:56.000000pt;}
.fs5_c01375{font-size:61.333333pt;}
.fs7_c01375{font-size:64.000000pt;}
.fs3_c01375{font-size:69.333333pt;}
.fs0_c01375{font-size:72.000000pt;}
.fs9_c01375{font-size:76.800000pt;}
.y0_c01375{bottom:0.000000pt;}
.y13_c01375{bottom:2.760000pt;}
.y12_c01375{bottom:6.425219pt;}
.yf_c01375{bottom:248.680000pt;}
.y11_c01375{bottom:476.680000pt;}
.ye_c01375{bottom:487.613333pt;}
.y10_c01375{bottom:556.013333pt;}
.yd_c01375{bottom:572.413333pt;}
.yc_c01375{bottom:580.013333pt;}
.yb_c01375{bottom:614.680000pt;}
.ya_c01375{bottom:636.680000pt;}
.y9_c01375{bottom:658.280000pt;}
.y8_c01375{bottom:679.613333pt;}
.y7_c01375{bottom:701.213333pt;}
.y6_c01375{bottom:722.680000pt;}
.y5_c01375{bottom:744.013333pt;}
.y4_c01375{bottom:765.346667pt;}
.y3_c01375{bottom:787.613333pt;}
.y2_c01375{bottom:809.480000pt;}
.y1_c01375{bottom:819.613333pt;}
.h9_c01375{height:11.733399pt;}
.h6_c01375{height:31.390625pt;}
.ha_c01375{height:38.937500pt;}
.h3_c01375{height:52.343750pt;}
.h5_c01375{height:61.812500pt;}
.h2_c01375{height:70.664062pt;}
.h7_c01375{height:74.906250pt;}
.h4_c01375{height:87.783854pt;}
.h8_c01375{height:96.170833pt;}
.h1_c01375{height:876.666667pt;}
.h0_c01375{height:876.733333pt;}
.w2_c01375{width:93.222667pt;}
.w0_c01375{width:593.266667pt;}
.w1_c01375{width:593.333333pt;}
.x0_c01375{left:0.000000pt;}
.x4_c01375{left:93.600000pt;}
.x6_c01375{left:96.000000pt;}
.x7_c01375{left:97.200000pt;}
.x5_c01375{left:98.666667pt;}
.x8_c01375{left:127.200000pt;}
.xa_c01375{left:140.133333pt;}
.x9_c01375{left:175.466667pt;}
.x2_c01375{left:178.133333pt;}
.x3_c01375{left:188.000000pt;}
.xb_c01375{left:249.200000pt;}
.xf_c01375{left:253.801554pt;}
.x1_c01375{left:255.600000pt;}
.xc_c01375{left:268.133333pt;}
.xe_c01375{left:276.533333pt;}
.xd_c01375{left:557.333333pt;}
}





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

.ir_c01376:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01376{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01376;src:url('chunks/assets/font_8901d7c4683ba3883df03175.woff2')format("woff");}.ff1_c01376{font-family:ff1_c01376;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01376;src:url('chunks/assets/font_2bbe55233e002d0f5008d243.woff2')format("woff");}.ff2_c01376{font-family:ff2_c01376;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01376;src:url('chunks/assets/font_dedd2563c16df36f2161c0f9.woff2')format("woff");}.ff3_c01376{font-family:ff3_c01376;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01376;src:url('chunks/assets/font_45533efe3d208d71c92cea31.woff2')format("woff");}.ff4_c01376{font-family:ff4_c01376;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01376;src:url('chunks/assets/font_5ab1c0516dd29777f479f285.woff2')format("woff");}.ff5_c01376{font-family:ff5_c01376;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01376;src:url('chunks/assets/font_b81115367788b7f52e8e903b.woff2')format("woff");}.ff6_c01376{font-family:ff6_c01376;line-height:1.284180;font-style:normal;font-weight: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_c01376;src:url('chunks/assets/font_fe0c3d578287e0dd58f31789.woff2')format("woff");}.ff7_c01376{font-family:ff7_c01376;line-height:1.437000;font-style:normal;font-weight: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_c01376;src:url('chunks/assets/font_c302dbefc7ae8cf56df7a833.woff2')format("woff");}.ff8_c01376{font-family:ff8_c01376;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c01376;src:url('chunks/assets/font_251e74158359aae4ffc766ee.woff2')format("woff");}.ff9_c01376{font-family:ff9_c01376;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c01376;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ffa_c01376{font-family:ffa_c01376;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01376{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01376{vertical-align:-82.800000px;}
.v0_c01376{vertical-align:0.000000px;}
.ls14_c01376{letter-spacing:-9.000000px;}
.ls11_c01376{letter-spacing:0.000000px;}
.lsb_c01376{letter-spacing:1.215000px;}
.ls0_c01376{letter-spacing:3.000000px;}
.ls12_c01376{letter-spacing:6.000000px;}
.ls4_c01376{letter-spacing:6.150000px;}
.lsa_c01376{letter-spacing:14.100000px;}
.ls13_c01376{letter-spacing:15.000000px;}
.ls7_c01376{letter-spacing:15.600000px;}
.lse_c01376{letter-spacing:16.200000px;}
.ls9_c01376{letter-spacing:18.300000px;}
.ls5_c01376{letter-spacing:19.800000px;}
.ls2_c01376{letter-spacing:20.100000px;}
.lsf_c01376{letter-spacing:24.000000px;}
.ls10_c01376{letter-spacing:27.000000px;}
.ls8_c01376{letter-spacing:35.802000px;}
.lsc_c01376{letter-spacing:38.700000px;}
.ls6_c01376{letter-spacing:46.602000px;}
.ls1_c01376{letter-spacing:269.802000px;}
.ls3_c01376{letter-spacing:293.550000px;}
.lsd_c01376{letter-spacing:613.950000px;}
.sc__c01376{text-shadow:none;}
.sc0_c01376{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01376{-webkit-text-stroke:0px transparent;}
.sc0_c01376{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7_c01376{word-spacing:-64.992000px;}
.ws5_c01376{word-spacing:-39.000000px;}
.ws2_c01376{word-spacing:-35.100000px;}
.wsa_c01376{word-spacing:-34.500000px;}
.ws8_c01376{word-spacing:-30.183000px;}
.ws9_c01376{word-spacing:-21.000000px;}
.ws6_c01376{word-spacing:-20.250000px;}
.wsd_c01376{word-spacing:-19.500000px;}
.ws3_c01376{word-spacing:-18.798000px;}
.ws1_c01376{word-spacing:-17.352000px;}
.wsb_c01376{word-spacing:-13.737000px;}
.wsc_c01376{word-spacing:-8.352000px;}
.ws0_c01376{word-spacing:-5.918400px;}
.wse_c01376{word-spacing:0.000000px;}
.ws4_c01376{word-spacing:87.264000px;}
._26_c01376{margin-left:-35.736000px;}
._40_c01376{margin-left:-27.531000px;}
._1e_c01376{margin-left:-19.540200px;}
._25_c01376{margin-left:-17.868000px;}
._3f_c01376{margin-left:-16.677000px;}
._2f_c01376{margin-left:-15.165000px;}
._2e_c01376{margin-left:-13.494000px;}
._30_c01376{margin-left:-11.823000px;}
._14_c01376{margin-left:-9.315000px;}
._11_c01376{margin-left:-8.085000px;}
._2b_c01376{margin-left:-6.966000px;}
._20_c01376{margin-left:-5.766000px;}
._c_c01376{margin-left:-4.620000px;}
._10_c01376{margin-left:-3.570000px;}
._b_c01376{margin-left:-1.995000px;}
._e_c01376{width:1.470000px;}
._f_c01376{width:3.255000px;}
._d_c01376{width:4.305000px;}
._12_c01376{width:5.565000px;}
._13_c01376{width:7.560000px;}
._1a_c01376{width:8.925000px;}
._1f_c01376{width:10.374000px;}
._9_c01376{width:11.952000px;}
._6_c01376{width:13.104000px;}
._5_c01376{width:14.544000px;}
._17_c01376{width:15.876000px;}
._7_c01376{width:17.136000px;}
._4_c01376{width:18.144000px;}
._8_c01376{width:19.872000px;}
._0_c01376{width:21.888000px;}
._a_c01376{width:23.155200px;}
._3a_c01376{width:30.105000px;}
._2_c01376{width:31.536000px;}
._3_c01376{width:32.832000px;}
._37_c01376{width:34.641000px;}
._29_c01376{width:36.147000px;}
._1_c01376{width:37.152000px;}
._2c_c01376{width:38.232000px;}
._19_c01376{width:39.597000px;}
._35_c01376{width:40.671000px;}
._43_c01376{width:42.510000px;}
._44_c01376{width:43.569000px;}
._45_c01376{width:49.053000px;}
._38_c01376{width:52.917000px;}
._2d_c01376{width:75.096000px;}
._1c_c01376{width:80.040000px;}
._1b_c01376{width:83.052000px;}
._1d_c01376{width:88.713000px;}
._28_c01376{width:95.061000px;}
._23_c01376{width:120.240000px;}
._48_c01376{width:162.303000px;}
._18_c01376{width:191.511000px;}
._24_c01376{width:200.088000px;}
._31_c01376{width:201.558000px;}
._16_c01376{width:204.036000px;}
._22_c01376{width:231.552000px;}
._32_c01376{width:266.706000px;}
._27_c01376{width:273.639000px;}
._15_c01376{width:281.880000px;}
._41_c01376{width:356.265000px;}
._34_c01376{width:361.146000px;}
._47_c01376{width:389.025000px;}
._36_c01376{width:467.916000px;}
._3b_c01376{width:473.598000px;}
._3d_c01376{width:506.439000px;}
._3e_c01376{width:516.294000px;}
._42_c01376{width:517.875000px;}
._21_c01376{width:594.783000px;}
._49_c01376{width:665.502000px;}
._33_c01376{width:774.450000px;}
._46_c01376{width:798.735000px;}
._3c_c01376{width:805.395000px;}
._39_c01376{width:897.006000px;}
._2a_c01376{width:902.691000px;}
.fc2_c01376{color:transparent;}
.fc1_c01376{color:rgb(128,128,128);}
.fc0_c01376{color:rgb(0,0,0);}
.fsc_c01376{font-size:48.000000px;}
.fs7_c01376{font-size:57.000000px;}
.fs8_c01376{font-size:60.000000px;}
.fsb_c01376{font-size:63.000000px;}
.fs9_c01376{font-size:66.000000px;}
.fs5_c01376{font-size:72.000000px;}
.fs6_c01376{font-size:78.000000px;}
.fs4_c01376{font-size:81.000000px;}
.fs1_c01376{font-size:86.400000px;}
.fsa_c01376{font-size:96.000000px;}
.fs3_c01376{font-size:105.000000px;}
.fs2_c01376{font-size:108.000000px;}
.fs0_c01376{font-size:144.000000px;}
.y0_c01376{bottom:0.000000px;}
.y22_c01376{bottom:3.105000px;}
.y21_c01376{bottom:7.228357px;}
.y20_c01376{bottom:84.480000px;}
.y1f_c01376{bottom:110.130000px;}
.y1e_c01376{bottom:134.730000px;}
.y1d_c01376{bottom:158.730000px;}
.y1c_c01376{bottom:184.380000px;}
.y1b_c01376{bottom:207.630000px;}
.y1a_c01376{bottom:232.530000px;}
.y19_c01376{bottom:256.830000px;}
.y18_c01376{bottom:279.780000px;}
.y17_c01376{bottom:305.430000px;}
.y16_c01376{bottom:329.130000px;}
.y15_c01376{bottom:352.980000px;}
.y14_c01376{bottom:378.030000px;}
.y13_c01376{bottom:401.730000px;}
.y12_c01376{bottom:426.630000px;}
.y11_c01376{bottom:450.330000px;}
.y10_c01376{bottom:475.230000px;}
.yf_c01376{bottom:499.830000px;}
.ye_c01376{bottom:522.780000px;}
.yd_c01376{bottom:548.130000px;}
.yc_c01376{bottom:571.680000px;}
.yb_c01376{bottom:595.980000px;}
.ya_c01376{bottom:621.030000px;}
.y9_c01376{bottom:644.730000px;}
.y8_c01376{bottom:667.230000px;}
.y7_c01376{bottom:691.980000px;}
.y6_c01376{bottom:716.130000px;}
.y5_c01376{bottom:736.530000px;}
.y4_c01376{bottom:764.130000px;}
.y3_c01376{bottom:795.780000px;}
.y2_c01376{bottom:827.880000px;}
.y1_c01376{bottom:865.080000px;}
.hd_c01376{height:13.200074px;}
.he_c01376{height:43.804688px;}
.ha_c01376{height:66.713379px;}
.h9_c01376{height:72.168457px;}
.hc_c01376{height:76.552734px;}
.h4_c01376{height:79.497070px;}
.h5_c01376{height:84.269531px;}
.h7_c01376{height:91.160156px;}
.hb_c01376{height:91.291992px;}
.h6_c01376{height:98.756836px;}
.h3_c01376{height:105.820312px;}
.h8_c01376{height:121.546875px;}
.h2_c01376{height:136.740234px;}
.h1_c01376{height:182.320312px;}
.h0_c01376{height:968.250000px;}
.w2_c01376{width:104.875500px;}
.w1_c01376{width:659.250000px;}
.w0_c01376{width:659.325000px;}
.x0_c01376{left:0.000000px;}
.x2_c01376{left:34.050000px;}
.x1_c01376{left:36.150000px;}
.x7_c01376{left:37.500000px;}
.x9_c01376{left:39.450000px;}
.x6_c01376{left:42.900000px;}
.x13_c01376{left:43.950000px;}
.xb_c01376{left:58.350000px;}
.xd_c01376{left:61.800000px;}
.x3_c01376{left:63.450000px;}
.xe_c01376{left:65.100000px;}
.x11_c01376{left:66.450000px;}
.x8_c01376{left:72.600000px;}
.xa_c01376{left:74.250000px;}
.x4_c01376{left:121.200000px;}
.x12_c01376{left:122.550000px;}
.xf_c01376{left:124.950000px;}
.xc_c01376{left:130.800000px;}
.x10_c01376{left:138.750000px;}
.x14_c01376{left:281.476730px;}
.x5_c01376{left:292.050000px;}
@media print{
.v1_c01376{vertical-align:-73.600000pt;}
.v0_c01376{vertical-align:0.000000pt;}
.ls14_c01376{letter-spacing:-8.000000pt;}
.ls11_c01376{letter-spacing:0.000000pt;}
.lsb_c01376{letter-spacing:1.080000pt;}
.ls0_c01376{letter-spacing:2.666667pt;}
.ls12_c01376{letter-spacing:5.333333pt;}
.ls4_c01376{letter-spacing:5.466667pt;}
.lsa_c01376{letter-spacing:12.533333pt;}
.ls13_c01376{letter-spacing:13.333333pt;}
.ls7_c01376{letter-spacing:13.866667pt;}
.lse_c01376{letter-spacing:14.400000pt;}
.ls9_c01376{letter-spacing:16.266667pt;}
.ls5_c01376{letter-spacing:17.600000pt;}
.ls2_c01376{letter-spacing:17.866667pt;}
.lsf_c01376{letter-spacing:21.333333pt;}
.ls10_c01376{letter-spacing:24.000000pt;}
.ls8_c01376{letter-spacing:31.824000pt;}
.lsc_c01376{letter-spacing:34.400000pt;}
.ls6_c01376{letter-spacing:41.424000pt;}
.ls1_c01376{letter-spacing:239.824000pt;}
.ls3_c01376{letter-spacing:260.933333pt;}
.lsd_c01376{letter-spacing:545.733333pt;}
.ws7_c01376{word-spacing:-57.770667pt;}
.ws5_c01376{word-spacing:-34.666667pt;}
.ws2_c01376{word-spacing:-31.200000pt;}
.wsa_c01376{word-spacing:-30.666667pt;}
.ws8_c01376{word-spacing:-26.829333pt;}
.ws9_c01376{word-spacing:-18.666667pt;}
.ws6_c01376{word-spacing:-18.000000pt;}
.wsd_c01376{word-spacing:-17.333333pt;}
.ws3_c01376{word-spacing:-16.709333pt;}
.ws1_c01376{word-spacing:-15.424000pt;}
.wsb_c01376{word-spacing:-12.210667pt;}
.wsc_c01376{word-spacing:-7.424000pt;}
.ws0_c01376{word-spacing:-5.260800pt;}
.wse_c01376{word-spacing:0.000000pt;}
.ws4_c01376{word-spacing:77.568000pt;}
._26_c01376{margin-left:-31.765333pt;}
._40_c01376{margin-left:-24.472000pt;}
._1e_c01376{margin-left:-17.369067pt;}
._25_c01376{margin-left:-15.882667pt;}
._3f_c01376{margin-left:-14.824000pt;}
._2f_c01376{margin-left:-13.480000pt;}
._2e_c01376{margin-left:-11.994667pt;}
._30_c01376{margin-left:-10.509333pt;}
._14_c01376{margin-left:-8.280000pt;}
._11_c01376{margin-left:-7.186667pt;}
._2b_c01376{margin-left:-6.192000pt;}
._20_c01376{margin-left:-5.125333pt;}
._c_c01376{margin-left:-4.106667pt;}
._10_c01376{margin-left:-3.173333pt;}
._b_c01376{margin-left:-1.773333pt;}
._e_c01376{width:1.306667pt;}
._f_c01376{width:2.893333pt;}
._d_c01376{width:3.826667pt;}
._12_c01376{width:4.946667pt;}
._13_c01376{width:6.720000pt;}
._1a_c01376{width:7.933333pt;}
._1f_c01376{width:9.221333pt;}
._9_c01376{width:10.624000pt;}
._6_c01376{width:11.648000pt;}
._5_c01376{width:12.928000pt;}
._17_c01376{width:14.112000pt;}
._7_c01376{width:15.232000pt;}
._4_c01376{width:16.128000pt;}
._8_c01376{width:17.664000pt;}
._0_c01376{width:19.456000pt;}
._a_c01376{width:20.582400pt;}
._3a_c01376{width:26.760000pt;}
._2_c01376{width:28.032000pt;}
._3_c01376{width:29.184000pt;}
._37_c01376{width:30.792000pt;}
._29_c01376{width:32.130667pt;}
._1_c01376{width:33.024000pt;}
._2c_c01376{width:33.984000pt;}
._19_c01376{width:35.197333pt;}
._35_c01376{width:36.152000pt;}
._43_c01376{width:37.786667pt;}
._44_c01376{width:38.728000pt;}
._45_c01376{width:43.602667pt;}
._38_c01376{width:47.037333pt;}
._2d_c01376{width:66.752000pt;}
._1c_c01376{width:71.146667pt;}
._1b_c01376{width:73.824000pt;}
._1d_c01376{width:78.856000pt;}
._28_c01376{width:84.498667pt;}
._23_c01376{width:106.880000pt;}
._48_c01376{width:144.269333pt;}
._18_c01376{width:170.232000pt;}
._24_c01376{width:177.856000pt;}
._31_c01376{width:179.162667pt;}
._16_c01376{width:181.365333pt;}
._22_c01376{width:205.824000pt;}
._32_c01376{width:237.072000pt;}
._27_c01376{width:243.234667pt;}
._15_c01376{width:250.560000pt;}
._41_c01376{width:316.680000pt;}
._34_c01376{width:321.018667pt;}
._47_c01376{width:345.800000pt;}
._36_c01376{width:415.925333pt;}
._3b_c01376{width:420.976000pt;}
._3d_c01376{width:450.168000pt;}
._3e_c01376{width:458.928000pt;}
._42_c01376{width:460.333333pt;}
._21_c01376{width:528.696000pt;}
._49_c01376{width:591.557333pt;}
._33_c01376{width:688.400000pt;}
._46_c01376{width:709.986667pt;}
._3c_c01376{width:715.906667pt;}
._39_c01376{width:797.338667pt;}
._2a_c01376{width:802.392000pt;}
.fsc_c01376{font-size:42.666667pt;}
.fs7_c01376{font-size:50.666667pt;}
.fs8_c01376{font-size:53.333333pt;}
.fsb_c01376{font-size:56.000000pt;}
.fs9_c01376{font-size:58.666667pt;}
.fs5_c01376{font-size:64.000000pt;}
.fs6_c01376{font-size:69.333333pt;}
.fs4_c01376{font-size:72.000000pt;}
.fs1_c01376{font-size:76.800000pt;}
.fsa_c01376{font-size:85.333333pt;}
.fs3_c01376{font-size:93.333333pt;}
.fs2_c01376{font-size:96.000000pt;}
.fs0_c01376{font-size:128.000000pt;}
.y0_c01376{bottom:0.000000pt;}
.y22_c01376{bottom:2.760000pt;}
.y21_c01376{bottom:6.425206pt;}
.y20_c01376{bottom:75.093333pt;}
.y1f_c01376{bottom:97.893333pt;}
.y1e_c01376{bottom:119.760000pt;}
.y1d_c01376{bottom:141.093333pt;}
.y1c_c01376{bottom:163.893333pt;}
.y1b_c01376{bottom:184.560000pt;}
.y1a_c01376{bottom:206.693333pt;}
.y19_c01376{bottom:228.293333pt;}
.y18_c01376{bottom:248.693333pt;}
.y17_c01376{bottom:271.493333pt;}
.y16_c01376{bottom:292.560000pt;}
.y15_c01376{bottom:313.760000pt;}
.y14_c01376{bottom:336.026667pt;}
.y13_c01376{bottom:357.093333pt;}
.y12_c01376{bottom:379.226667pt;}
.y11_c01376{bottom:400.293333pt;}
.y10_c01376{bottom:422.426667pt;}
.yf_c01376{bottom:444.293333pt;}
.ye_c01376{bottom:464.693333pt;}
.yd_c01376{bottom:487.226667pt;}
.yc_c01376{bottom:508.160000pt;}
.yb_c01376{bottom:529.760000pt;}
.ya_c01376{bottom:552.026667pt;}
.y9_c01376{bottom:573.093333pt;}
.y8_c01376{bottom:593.093333pt;}
.y7_c01376{bottom:615.093333pt;}
.y6_c01376{bottom:636.560000pt;}
.y5_c01376{bottom:654.693333pt;}
.y4_c01376{bottom:679.226667pt;}
.y3_c01376{bottom:707.360000pt;}
.y2_c01376{bottom:735.893333pt;}
.y1_c01376{bottom:768.960000pt;}
.hd_c01376{height:11.733399pt;}
.he_c01376{height:38.937500pt;}
.ha_c01376{height:59.300781pt;}
.h9_c01376{height:64.149740pt;}
.hc_c01376{height:68.046875pt;}
.h4_c01376{height:70.664062pt;}
.h5_c01376{height:74.906250pt;}
.h7_c01376{height:81.031250pt;}
.hb_c01376{height:81.148438pt;}
.h6_c01376{height:87.783854pt;}
.h3_c01376{height:94.062500pt;}
.h8_c01376{height:108.041667pt;}
.h2_c01376{height:121.546875pt;}
.h1_c01376{height:162.062500pt;}
.h0_c01376{height:860.666667pt;}
.w2_c01376{width:93.222667pt;}
.w1_c01376{width:586.000000pt;}
.w0_c01376{width:586.066667pt;}
.x0_c01376{left:0.000000pt;}
.x2_c01376{left:30.266667pt;}
.x1_c01376{left:32.133333pt;}
.x7_c01376{left:33.333333pt;}
.x9_c01376{left:35.066667pt;}
.x6_c01376{left:38.133333pt;}
.x13_c01376{left:39.066667pt;}
.xb_c01376{left:51.866667pt;}
.xd_c01376{left:54.933333pt;}
.x3_c01376{left:56.400000pt;}
.xe_c01376{left:57.866667pt;}
.x11_c01376{left:59.066667pt;}
.x8_c01376{left:64.533333pt;}
.xa_c01376{left:66.000000pt;}
.x4_c01376{left:107.733333pt;}
.x12_c01376{left:108.933333pt;}
.xf_c01376{left:111.066667pt;}
.xc_c01376{left:116.266667pt;}
.x10_c01376{left:123.333333pt;}
.x14_c01376{left:250.201538pt;}
.x5_c01376{left:259.600000pt;}
}





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

.ir_c01377:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01377{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01377;src:url('chunks/assets/font_c173f0c0f4f65b22a1b6159d.woff2')format("woff");}.ff1_c01377{font-family:ff1_c01377;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01377;src:url('chunks/assets/font_278b8ec1690cbf864ad5b47d.woff2')format("woff");}.ff2_c01377{font-family:ff2_c01377;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01377;src:url('chunks/assets/font_1a52bcdcbec4329fcb340bed.woff2')format("woff");}.ff3_c01377{font-family:ff3_c01377;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01377;src:url('chunks/assets/font_e941c7c1e2466203841c4232.woff2')format("woff");}.ff4_c01377{font-family:ff4_c01377;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01377;src:url('chunks/assets/font_12f6cdc30180c90b49122443.woff2')format("woff");}.ff5_c01377{font-family:ff5_c01377;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01377;src:url('chunks/assets/font_7ffdad85bb4510ab0ea9a6c0.woff2')format("woff");}.ff6_c01377{font-family:ff6_c01377;line-height:1.437000;font-style:normal;font-weight: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_c01377;src:url('chunks/assets/font_e6fec5fe8a83cf365305bd08.woff2')format("woff");}.ff7_c01377{font-family:ff7_c01377;line-height:1.284180;font-style:normal;font-weight: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_c01377;src:url('chunks/assets/font_e22a878a7bbd025e5062dec2.woff2')format("woff");}.ff8_c01377{font-family:ff8_c01377;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c01377;src:url('chunks/assets/font_f68975f163f5dd936004636b.woff2')format("woff");}.ff9_c01377{font-family:ff9_c01377;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c01377;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ffa_c01377{font-family:ffa_c01377;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01377{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01377{vertical-align:-93.000000px;}
.v0_c01377{vertical-align:0.000000px;}
.ls5_c01377{letter-spacing:-3.000000px;}
.ls4_c01377{letter-spacing:0.000000px;}
.ls6_c01377{letter-spacing:3.000000px;}
.ls0_c01377{letter-spacing:6.000000px;}
.ls2_c01377{letter-spacing:13.500000px;}
.ls3_c01377{letter-spacing:15.000000px;}
.ls1_c01377{letter-spacing:20.700000px;}
.ls7_c01377{letter-spacing:27.000000px;}
.sc__c01377{text-shadow:none;}
.sc0_c01377{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01377{-webkit-text-stroke:0px transparent;}
.sc0_c01377{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c01377{word-spacing:-100.116000px;}
.ws4_c01377{word-spacing:-73.686000px;}
.ws6_c01377{word-spacing:-32.250000px;}
.ws13_c01377{word-spacing:-28.737000px;}
.ws2_c01377{word-spacing:-23.250000px;}
.wsb_c01377{word-spacing:-22.500000px;}
.ws7_c01377{word-spacing:-21.000000px;}
.ws8_c01377{word-spacing:-20.574000px;}
.ws11_c01377{word-spacing:-20.250000px;}
.wsd_c01377{word-spacing:-18.798000px;}
.ws0_c01377{word-spacing:-17.352000px;}
.ws10_c01377{word-spacing:-15.342000px;}
.ws3_c01377{word-spacing:-13.737000px;}
.wsf_c01377{word-spacing:-9.657000px;}
.ws9_c01377{word-spacing:-8.700000px;}
.ws5_c01377{word-spacing:-4.374000px;}
.wsa_c01377{word-spacing:-0.114000px;}
.ws14_c01377{word-spacing:0.000000px;}
.ws12_c01377{word-spacing:0.627000px;}
.ws1_c01377{word-spacing:16.464000px;}
.wse_c01377{word-spacing:33.636000px;}
._28_c01377{margin-left:-30.000000px;}
._31_c01377{margin-left:-23.535000px;}
._26_c01377{margin-left:-22.218000px;}
._20_c01377{margin-left:-20.553000px;}
._1f_c01377{margin-left:-19.422000px;}
._1e_c01377{margin-left:-18.330000px;}
._e_c01377{margin-left:-16.935000px;}
._10_c01377{margin-left:-15.600000px;}
._27_c01377{margin-left:-13.959000px;}
._f_c01377{margin-left:-12.783000px;}
._1c_c01377{margin-left:-11.730000px;}
._14_c01377{margin-left:-10.623000px;}
._21_c01377{margin-left:-9.567000px;}
._17_c01377{margin-left:-8.190000px;}
._12_c01377{margin-left:-7.038000px;}
._7_c01377{margin-left:-5.688000px;}
._3_c01377{margin-left:-4.392000px;}
._4_c01377{margin-left:-3.024000px;}
._5_c01377{margin-left:-1.728000px;}
._0_c01377{width:1.728000px;}
._1_c01377{width:3.456000px;}
._2_c01377{width:5.040000px;}
._a_c01377{width:6.075000px;}
._1b_c01377{width:7.095000px;}
._9_c01377{width:8.208000px;}
._15_c01377{width:9.249000px;}
._b_c01377{width:10.317000px;}
._16_c01377{width:11.319000px;}
._6_c01377{width:13.104000px;}
._19_c01377{width:14.184000px;}
._c_c01377{width:15.498000px;}
._11_c01377{width:17.133000px;}
._22_c01377{width:18.225000px;}
._25_c01377{width:19.365000px;}
._d_c01377{width:21.105000px;}
._2c_c01377{width:22.287000px;}
._13_c01377{width:25.365000px;}
._2f_c01377{width:30.237000px;}
._2b_c01377{width:31.533000px;}
._23_c01377{width:32.946000px;}
._2e_c01377{width:35.487000px;}
._2d_c01377{width:38.268000px;}
._29_c01377{width:41.148000px;}
._1a_c01377{width:42.552000px;}
._18_c01377{width:44.100000px;}
._2a_c01377{width:45.516000px;}
._24_c01377{width:48.222000px;}
._1d_c01377{width:52.959000px;}
._8_c01377{width:60.933000px;}
._30_c01377{width:247.743000px;}
.fc2_c01377{color:transparent;}
.fc1_c01377{color:rgb(128,128,128);}
.fc0_c01377{color:rgb(0,0,0);}
.fsd_c01377{font-size:48.000000px;}
.fs3_c01377{font-size:54.000000px;}
.fs1_c01377{font-size:57.000000px;}
.fsb_c01377{font-size:60.000000px;}
.fs9_c01377{font-size:63.000000px;}
.fs7_c01377{font-size:66.000000px;}
.fs4_c01377{font-size:69.000000px;}
.fs0_c01377{font-size:72.000000px;}
.fsa_c01377{font-size:75.000000px;}
.fs2_c01377{font-size:78.000000px;}
.fs6_c01377{font-size:81.000000px;}
.fs8_c01377{font-size:84.000000px;}
.fs5_c01377{font-size:87.000000px;}
.fsc_c01377{font-size:108.000000px;}
.y0_c01377{bottom:0.000000px;}
.y43_c01377{bottom:3.105000px;}
.y42_c01377{bottom:7.228363px;}
.y22_c01377{bottom:78.750000px;}
.y41_c01377{bottom:79.350000px;}
.y21_c01377{bottom:103.650000px;}
.y40_c01377{bottom:104.250000px;}
.y3f_c01377{bottom:128.550000px;}
.y20_c01377{bottom:128.700000px;}
.y1f_c01377{bottom:152.850000px;}
.y3e_c01377{bottom:154.350000px;}
.y3d_c01377{bottom:177.150000px;}
.y1e_c01377{bottom:177.300000px;}
.y1d_c01377{bottom:202.500000px;}
.y3c_c01377{bottom:203.550000px;}
.y1c_c01377{bottom:227.100000px;}
.y3b_c01377{bottom:227.850000px;}
.y1b_c01377{bottom:251.100000px;}
.y3a_c01377{bottom:251.550000px;}
.y1a_c01377{bottom:275.700000px;}
.y39_c01377{bottom:277.800000px;}
.y19_c01377{bottom:301.050000px;}
.y38_c01377{bottom:303.150000px;}
.y18_c01377{bottom:325.650000px;}
.y37_c01377{bottom:327.150000px;}
.y36_c01377{bottom:351.000000px;}
.y17_c01377{bottom:351.300000px;}
.y35_c01377{bottom:375.300000px;}
.y16_c01377{bottom:375.900000px;}
.y15_c01377{bottom:400.050000px;}
.y34_c01377{bottom:400.350000px;}
.y14_c01377{bottom:424.650000px;}
.y13_c01377{bottom:450.300000px;}
.y33_c01377{bottom:450.600000px;}
.y32_c01377{bottom:473.550000px;}
.y12_c01377{bottom:474.750000px;}
.y11_c01377{bottom:494.400000px;}
.y10_c01377{bottom:522.150000px;}
.y31_c01377{bottom:524.250000px;}
.yf_c01377{bottom:548.400000px;}
.y30_c01377{bottom:549.750000px;}
.y2f_c01377{bottom:570.750000px;}
.ye_c01377{bottom:572.700000px;}
.yd_c01377{bottom:593.100000px;}
.y2e_c01377{bottom:598.800000px;}
.y2d_c01377{bottom:622.050000px;}
.yc_c01377{bottom:622.650000px;}
.yb_c01377{bottom:646.650000px;}
.y2c_c01377{bottom:647.100000px;}
.ya_c01377{bottom:671.400000px;}
.y2b_c01377{bottom:672.300000px;}
.y9_c01377{bottom:693.300000px;}
.y2a_c01377{bottom:695.700000px;}
.y8_c01377{bottom:720.000000px;}
.y29_c01377{bottom:721.200000px;}
.y7_c01377{bottom:744.600000px;}
.y28_c01377{bottom:768.450000px;}
.y6_c01377{bottom:769.800000px;}
.y5_c01377{bottom:792.750000px;}
.y27_c01377{bottom:793.200000px;}
.y4_c01377{bottom:817.800000px;}
.y26_c01377{bottom:818.100000px;}
.y3_c01377{bottom:842.100000px;}
.y25_c01377{bottom:842.700000px;}
.y2_c01377{bottom:866.400000px;}
.y24_c01377{bottom:883.350000px;}
.y1_c01377{bottom:891.300000px;}
.y23_c01377{bottom:926.100000px;}
.hf_c01377{height:13.200074px;}
.h10_c01377{height:43.804688px;}
.h6_c01377{height:66.713379px;}
.h5_c01377{height:69.539062px;}
.h3_c01377{height:72.168457px;}
.ha_c01377{height:73.608398px;}
.he_c01377{height:77.247070px;}
.hb_c01377{height:78.609375px;}
.hd_c01377{height:79.497070px;}
.h9_c01377{height:82.441406px;}
.h2_c01377{height:84.269531px;}
.h8_c01377{height:91.160156px;}
.h7_c01377{height:91.176000px;}
.h4_c01377{height:98.756836px;}
.hc_c01377{height:136.740234px;}
.h1_c01377{height:977.250000px;}
.h0_c01377{height:977.400000px;}
.w1_c01377{width:104.875500px;}
.w0_c01377{width:661.500000px;}
.x0_c01377{left:0.000000px;}
.xc_c01377{left:96.750000px;}
.xa_c01377{left:98.550000px;}
.x6_c01377{left:100.950000px;}
.x1_c01377{left:102.300000px;}
.x2_c01377{left:105.000000px;}
.xf_c01377{left:120.150000px;}
.xd_c01377{left:121.500000px;}
.xb_c01377{left:122.850000px;}
.x3_c01377{left:124.500000px;}
.x9_c01377{left:125.850000px;}
.x5_c01377{left:127.800000px;}
.x7_c01377{left:129.150000px;}
.xe_c01377{left:150.900000px;}
.x4_c01377{left:198.750000px;}
.x10_c01377{left:265.950000px;}
.x20_c01377{left:282.564240px;}
.x8_c01377{left:290.850000px;}
.x1f_c01377{left:372.300000px;}
.x1c_c01377{left:373.650000px;}
.x11_c01377{left:375.600000px;}
.x17_c01377{left:377.400000px;}
.x15_c01377{left:379.050000px;}
.x1a_c01377{left:395.100000px;}
.x1d_c01377{left:397.200000px;}
.x16_c01377{left:398.850000px;}
.x19_c01377{left:400.050000px;}
.x13_c01377{left:401.250000px;}
.x12_c01377{left:409.950000px;}
.x14_c01377{left:424.950000px;}
.x1b_c01377{left:438.450000px;}
.x18_c01377{left:451.200000px;}
.x1e_c01377{left:453.300000px;}
@media print{
.v1_c01377{vertical-align:-82.666667pt;}
.v0_c01377{vertical-align:0.000000pt;}
.ls5_c01377{letter-spacing:-2.666667pt;}
.ls4_c01377{letter-spacing:0.000000pt;}
.ls6_c01377{letter-spacing:2.666667pt;}
.ls0_c01377{letter-spacing:5.333333pt;}
.ls2_c01377{letter-spacing:12.000000pt;}
.ls3_c01377{letter-spacing:13.333333pt;}
.ls1_c01377{letter-spacing:18.400000pt;}
.ls7_c01377{letter-spacing:24.000000pt;}
.wsc_c01377{word-spacing:-88.992000pt;}
.ws4_c01377{word-spacing:-65.498667pt;}
.ws6_c01377{word-spacing:-28.666667pt;}
.ws13_c01377{word-spacing:-25.544000pt;}
.ws2_c01377{word-spacing:-20.666667pt;}
.wsb_c01377{word-spacing:-20.000000pt;}
.ws7_c01377{word-spacing:-18.666667pt;}
.ws8_c01377{word-spacing:-18.288000pt;}
.ws11_c01377{word-spacing:-18.000000pt;}
.wsd_c01377{word-spacing:-16.709333pt;}
.ws0_c01377{word-spacing:-15.424000pt;}
.ws10_c01377{word-spacing:-13.637333pt;}
.ws3_c01377{word-spacing:-12.210667pt;}
.wsf_c01377{word-spacing:-8.584000pt;}
.ws9_c01377{word-spacing:-7.733333pt;}
.ws5_c01377{word-spacing:-3.888000pt;}
.wsa_c01377{word-spacing:-0.101333pt;}
.ws14_c01377{word-spacing:0.000000pt;}
.ws12_c01377{word-spacing:0.557333pt;}
.ws1_c01377{word-spacing:14.634667pt;}
.wse_c01377{word-spacing:29.898667pt;}
._28_c01377{margin-left:-26.666667pt;}
._31_c01377{margin-left:-20.920000pt;}
._26_c01377{margin-left:-19.749333pt;}
._20_c01377{margin-left:-18.269333pt;}
._1f_c01377{margin-left:-17.264000pt;}
._1e_c01377{margin-left:-16.293333pt;}
._e_c01377{margin-left:-15.053333pt;}
._10_c01377{margin-left:-13.866667pt;}
._27_c01377{margin-left:-12.408000pt;}
._f_c01377{margin-left:-11.362667pt;}
._1c_c01377{margin-left:-10.426667pt;}
._14_c01377{margin-left:-9.442667pt;}
._21_c01377{margin-left:-8.504000pt;}
._17_c01377{margin-left:-7.280000pt;}
._12_c01377{margin-left:-6.256000pt;}
._7_c01377{margin-left:-5.056000pt;}
._3_c01377{margin-left:-3.904000pt;}
._4_c01377{margin-left:-2.688000pt;}
._5_c01377{margin-left:-1.536000pt;}
._0_c01377{width:1.536000pt;}
._1_c01377{width:3.072000pt;}
._2_c01377{width:4.480000pt;}
._a_c01377{width:5.400000pt;}
._1b_c01377{width:6.306667pt;}
._9_c01377{width:7.296000pt;}
._15_c01377{width:8.221333pt;}
._b_c01377{width:9.170667pt;}
._16_c01377{width:10.061333pt;}
._6_c01377{width:11.648000pt;}
._19_c01377{width:12.608000pt;}
._c_c01377{width:13.776000pt;}
._11_c01377{width:15.229333pt;}
._22_c01377{width:16.200000pt;}
._25_c01377{width:17.213333pt;}
._d_c01377{width:18.760000pt;}
._2c_c01377{width:19.810667pt;}
._13_c01377{width:22.546667pt;}
._2f_c01377{width:26.877333pt;}
._2b_c01377{width:28.029333pt;}
._23_c01377{width:29.285333pt;}
._2e_c01377{width:31.544000pt;}
._2d_c01377{width:34.016000pt;}
._29_c01377{width:36.576000pt;}
._1a_c01377{width:37.824000pt;}
._18_c01377{width:39.200000pt;}
._2a_c01377{width:40.458667pt;}
._24_c01377{width:42.864000pt;}
._1d_c01377{width:47.074667pt;}
._8_c01377{width:54.162667pt;}
._30_c01377{width:220.216000pt;}
.fsd_c01377{font-size:42.666667pt;}
.fs3_c01377{font-size:48.000000pt;}
.fs1_c01377{font-size:50.666667pt;}
.fsb_c01377{font-size:53.333333pt;}
.fs9_c01377{font-size:56.000000pt;}
.fs7_c01377{font-size:58.666667pt;}
.fs4_c01377{font-size:61.333333pt;}
.fs0_c01377{font-size:64.000000pt;}
.fsa_c01377{font-size:66.666667pt;}
.fs2_c01377{font-size:69.333333pt;}
.fs6_c01377{font-size:72.000000pt;}
.fs8_c01377{font-size:74.666667pt;}
.fs5_c01377{font-size:77.333333pt;}
.fsc_c01377{font-size:96.000000pt;}
.y0_c01377{bottom:0.000000pt;}
.y43_c01377{bottom:2.760000pt;}
.y42_c01377{bottom:6.425212pt;}
.y22_c01377{bottom:70.000000pt;}
.y41_c01377{bottom:70.533333pt;}
.y21_c01377{bottom:92.133333pt;}
.y40_c01377{bottom:92.666667pt;}
.y3f_c01377{bottom:114.266667pt;}
.y20_c01377{bottom:114.400000pt;}
.y1f_c01377{bottom:135.866667pt;}
.y3e_c01377{bottom:137.200000pt;}
.y3d_c01377{bottom:157.466667pt;}
.y1e_c01377{bottom:157.600000pt;}
.y1d_c01377{bottom:180.000000pt;}
.y3c_c01377{bottom:180.933333pt;}
.y1c_c01377{bottom:201.866667pt;}
.y3b_c01377{bottom:202.533333pt;}
.y1b_c01377{bottom:223.200000pt;}
.y3a_c01377{bottom:223.600000pt;}
.y1a_c01377{bottom:245.066667pt;}
.y39_c01377{bottom:246.933333pt;}
.y19_c01377{bottom:267.600000pt;}
.y38_c01377{bottom:269.466667pt;}
.y18_c01377{bottom:289.466667pt;}
.y37_c01377{bottom:290.800000pt;}
.y36_c01377{bottom:312.000000pt;}
.y17_c01377{bottom:312.266667pt;}
.y35_c01377{bottom:333.600000pt;}
.y16_c01377{bottom:334.133333pt;}
.y15_c01377{bottom:355.600000pt;}
.y34_c01377{bottom:355.866667pt;}
.y14_c01377{bottom:377.466667pt;}
.y13_c01377{bottom:400.266667pt;}
.y33_c01377{bottom:400.533333pt;}
.y32_c01377{bottom:420.933333pt;}
.y12_c01377{bottom:422.000000pt;}
.y11_c01377{bottom:439.466667pt;}
.y10_c01377{bottom:464.133333pt;}
.y31_c01377{bottom:466.000000pt;}
.yf_c01377{bottom:487.466667pt;}
.y30_c01377{bottom:488.666667pt;}
.y2f_c01377{bottom:507.333333pt;}
.ye_c01377{bottom:509.066667pt;}
.yd_c01377{bottom:527.200000pt;}
.y2e_c01377{bottom:532.266667pt;}
.y2d_c01377{bottom:552.933333pt;}
.yc_c01377{bottom:553.466667pt;}
.yb_c01377{bottom:574.800000pt;}
.y2c_c01377{bottom:575.200000pt;}
.ya_c01377{bottom:596.800000pt;}
.y2b_c01377{bottom:597.600000pt;}
.y9_c01377{bottom:616.266667pt;}
.y2a_c01377{bottom:618.400000pt;}
.y8_c01377{bottom:640.000000pt;}
.y29_c01377{bottom:641.066667pt;}
.y7_c01377{bottom:661.866667pt;}
.y28_c01377{bottom:683.066667pt;}
.y6_c01377{bottom:684.266667pt;}
.y5_c01377{bottom:704.666667pt;}
.y27_c01377{bottom:705.066667pt;}
.y4_c01377{bottom:726.933333pt;}
.y26_c01377{bottom:727.200000pt;}
.y3_c01377{bottom:748.533333pt;}
.y25_c01377{bottom:749.066667pt;}
.y2_c01377{bottom:770.133333pt;}
.y24_c01377{bottom:785.200000pt;}
.y1_c01377{bottom:792.266667pt;}
.y23_c01377{bottom:823.200000pt;}
.hf_c01377{height:11.733399pt;}
.h10_c01377{height:38.937500pt;}
.h6_c01377{height:59.300781pt;}
.h5_c01377{height:61.812500pt;}
.h3_c01377{height:64.149740pt;}
.ha_c01377{height:65.429688pt;}
.he_c01377{height:68.664062pt;}
.hb_c01377{height:69.875000pt;}
.hd_c01377{height:70.664062pt;}
.h9_c01377{height:73.281250pt;}
.h2_c01377{height:74.906250pt;}
.h8_c01377{height:81.031250pt;}
.h7_c01377{height:81.045333pt;}
.h4_c01377{height:87.783854pt;}
.hc_c01377{height:121.546875pt;}
.h1_c01377{height:868.666667pt;}
.h0_c01377{height:868.800000pt;}
.w1_c01377{width:93.222667pt;}
.w0_c01377{width:588.000000pt;}
.x0_c01377{left:0.000000pt;}
.xc_c01377{left:86.000000pt;}
.xa_c01377{left:87.600000pt;}
.x6_c01377{left:89.733333pt;}
.x1_c01377{left:90.933333pt;}
.x2_c01377{left:93.333333pt;}
.xf_c01377{left:106.800000pt;}
.xd_c01377{left:108.000000pt;}
.xb_c01377{left:109.200000pt;}
.x3_c01377{left:110.666667pt;}
.x9_c01377{left:111.866667pt;}
.x5_c01377{left:113.600000pt;}
.x7_c01377{left:114.800000pt;}
.xe_c01377{left:134.133333pt;}
.x4_c01377{left:176.666667pt;}
.x10_c01377{left:236.400000pt;}
.x20_c01377{left:251.168213pt;}
.x8_c01377{left:258.533333pt;}
.x1f_c01377{left:330.933333pt;}
.x1c_c01377{left:332.133333pt;}
.x11_c01377{left:333.866667pt;}
.x17_c01377{left:335.466667pt;}
.x15_c01377{left:336.933333pt;}
.x1a_c01377{left:351.200000pt;}
.x1d_c01377{left:353.066667pt;}
.x16_c01377{left:354.533333pt;}
.x19_c01377{left:355.600000pt;}
.x13_c01377{left:356.666667pt;}
.x12_c01377{left:364.400000pt;}
.x14_c01377{left:377.733333pt;}
.x1b_c01377{left:389.733333pt;}
.x18_c01377{left:401.066667pt;}
.x1e_c01377{left:402.933333pt;}
}





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

.ir_c01378:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01378{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01378;src:url('chunks/assets/font_5ffe16ce49dca0899008a81c.woff2')format("woff");}.ff1_c01378{font-family:ff1_c01378;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01378;src:url('chunks/assets/font_90d0dfc4d961dbf05c33bfa7.woff2')format("woff");}.ff2_c01378{font-family:ff2_c01378;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01378;src:url('chunks/assets/font_c339f65f01f8c0ae6ffb2133.woff2')format("woff");}.ff3_c01378{font-family:ff3_c01378;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01378;src:url('chunks/assets/font_018633355e4254dd42d3c028.woff2')format("woff");}.ff4_c01378{font-family:ff4_c01378;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01378;src:url('chunks/assets/font_233b239b6d0f08975211dcee.woff2')format("woff");}.ff5_c01378{font-family:ff5_c01378;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01378;src:url('chunks/assets/font_cd7e32302f91968e534f28e5.woff2')format("woff");}.ff6_c01378{font-family:ff6_c01378;line-height:1.437000;font-style:normal;font-weight: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_c01378;src:url('chunks/assets/font_0340b511ce01ebae9da34c6d.woff2')format("woff");}.ff7_c01378{font-family:ff7_c01378;line-height:1.437000;font-style:normal;font-weight: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_c01378;src:url('chunks/assets/font_7fff9ccd5100fb7add7f1cc0.woff2')format("woff");}.ff8_c01378{font-family:ff8_c01378;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c01378;src:url('chunks/assets/font_c21f704694173c7587cc89f0.woff2')format("woff");}.ff9_c01378{font-family:ff9_c01378;line-height:1.401855;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c01378;src:url('chunks/assets/font_a0088271faa5c48280deb21c.woff2')format("woff");}.ffa_c01378{font-family:ffa_c01378;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c01378;src:url('chunks/assets/font_5bdb89d12c1c63d4f501c868.woff2')format("woff");}.ffb_c01378{font-family:ffb_c01378;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc_c01378;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ffc_c01378{font-family:ffc_c01378;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01378{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01378{vertical-align:0.000000px;}
.ls15_c01378{letter-spacing:-12.000000px;}
.ls16_c01378{letter-spacing:-6.000000px;}
.ls14_c01378{letter-spacing:-3.000000px;}
.ls11_c01378{letter-spacing:0.000000px;}
.ls5_c01378{letter-spacing:0.300000px;}
.lsb_c01378{letter-spacing:0.600000px;}
.lsf_c01378{letter-spacing:2.400000px;}
.ls17_c01378{letter-spacing:3.000000px;}
.ls1_c01378{letter-spacing:4.500000px;}
.lsc_c01378{letter-spacing:5.100000px;}
.ls10_c01378{letter-spacing:6.000000px;}
.lsa_c01378{letter-spacing:9.000000px;}
.lse_c01378{letter-spacing:9.009000px;}
.ls7_c01378{letter-spacing:9.600000px;}
.ls0_c01378{letter-spacing:10.200000px;}
.ls8_c01378{letter-spacing:12.786000px;}
.ls2_c01378{letter-spacing:12.900000px;}
.ls12_c01378{letter-spacing:15.000000px;}
.ls13_c01378{letter-spacing:21.000000px;}
.ls4_c01378{letter-spacing:37.200000px;}
.ls9_c01378{letter-spacing:43.650000px;}
.ls6_c01378{letter-spacing:505.986000px;}
.lsd_c01378{letter-spacing:603.450000px;}
.ls3_c01378{letter-spacing:658.986000px;}
.sc__c01378{text-shadow:none;}
.sc0_c01378{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01378{-webkit-text-stroke:0px transparent;}
.sc0_c01378{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c01378{word-spacing:-73.686000px;}
.ws11_c01378{word-spacing:-32.400000px;}
.ws5_c01378{word-spacing:-30.300000px;}
.ws4_c01378{word-spacing:-27.000000px;}
.ws8_c01378{word-spacing:-24.750000px;}
.wsc_c01378{word-spacing:-24.000000px;}
.wsd_c01378{word-spacing:-21.750000px;}
.wsa_c01378{word-spacing:-20.250000px;}
.wsf_c01378{word-spacing:-18.750000px;}
.ws7_c01378{word-spacing:-18.000000px;}
.ws0_c01378{word-spacing:-17.352000px;}
.ws2_c01378{word-spacing:-17.250000px;}
.ws9_c01378{word-spacing:-15.750000px;}
.ws1_c01378{word-spacing:-11.760000px;}
.ws12_c01378{word-spacing:-9.600000px;}
.ws3_c01378{word-spacing:-3.624000px;}
.wse_c01378{word-spacing:-3.339000px;}
.ws6_c01378{word-spacing:-0.756000px;}
.ws13_c01378{word-spacing:0.000000px;}
.ws10_c01378{word-spacing:1.764000px;}
._1c_c01378{margin-left:-31.779000px;}
._0_c01378{margin-left:-29.877000px;}
._c_c01378{margin-left:-24.000000px;}
._38_c01378{margin-left:-17.829000px;}
._3b_c01378{margin-left:-16.695000px;}
._2c_c01378{margin-left:-14.898000px;}
._14_c01378{margin-left:-13.803000px;}
._1a_c01378{margin-left:-12.204000px;}
._a_c01378{margin-left:-10.695000px;}
._3_c01378{margin-left:-9.177000px;}
._9_c01378{margin-left:-7.452000px;}
._28_c01378{margin-left:-6.258000px;}
._15_c01378{margin-left:-4.857000px;}
._1b_c01378{margin-left:-3.717000px;}
._16_c01378{margin-left:-2.520000px;}
._12_c01378{margin-left:-1.452000px;}
._d_c01378{width:1.398000px;}
._5_c01378{width:2.484000px;}
._10_c01378{width:3.921000px;}
._7_c01378{width:4.968000px;}
._6_c01378{width:6.141000px;}
._4_c01378{width:7.314000px;}
._f_c01378{width:9.114000px;}
._17_c01378{width:10.248000px;}
._e_c01378{width:11.598000px;}
._2b_c01378{width:13.356000px;}
._2_c01378{width:14.421000px;}
._1f_c01378{width:15.852000px;}
._30_c01378{width:17.073000px;}
._1d_c01378{width:18.669000px;}
._22_c01378{width:21.000000px;}
._36_c01378{width:24.555000px;}
._24_c01378{width:27.246000px;}
._b_c01378{width:29.277000px;}
._44_c01378{width:31.488000px;}
._4a_c01378{width:32.505000px;}
._29_c01378{width:36.120000px;}
._21_c01378{width:37.830000px;}
._27_c01378{width:38.943000px;}
._19_c01378{width:40.380000px;}
._1_c01378{width:42.711000px;}
._4e_c01378{width:44.223000px;}
._3e_c01378{width:45.471000px;}
._32_c01378{width:50.361000px;}
._48_c01378{width:51.480000px;}
._2d_c01378{width:53.808000px;}
._31_c01378{width:60.795000px;}
._3f_c01378{width:63.657000px;}
._47_c01378{width:75.678000px;}
._33_c01378{width:88.212000px;}
._46_c01378{width:102.060000px;}
._3d_c01378{width:104.184000px;}
._13_c01378{width:125.136000px;}
._35_c01378{width:160.797000px;}
._39_c01378{width:175.329000px;}
._37_c01378{width:202.503000px;}
._18_c01378{width:265.872000px;}
._2a_c01378{width:269.787000px;}
._2e_c01378{width:302.640000px;}
._11_c01378{width:316.770000px;}
._3a_c01378{width:340.500000px;}
._25_c01378{width:349.212000px;}
._26_c01378{width:371.568000px;}
._2f_c01378{width:381.078000px;}
._42_c01378{width:421.377000px;}
._4d_c01378{width:451.329000px;}
._3c_c01378{width:455.301000px;}
._45_c01378{width:532.449000px;}
._1e_c01378{width:535.620000px;}
._8_c01378{width:547.653000px;}
._4b_c01378{width:577.629000px;}
._4c_c01378{width:593.397000px;}
._49_c01378{width:605.976000px;}
._34_c01378{width:676.755000px;}
._50_c01378{width:704.571000px;}
._40_c01378{width:813.255000px;}
._23_c01378{width:827.550000px;}
._20_c01378{width:832.281000px;}
._43_c01378{width:943.236000px;}
._41_c01378{width:1018.005000px;}
._4f_c01378{width:1048.092000px;}
.fc2_c01378{color:transparent;}
.fc1_c01378{color:rgb(128,128,128);}
.fc0_c01378{color:rgb(0,0,0);}
.fs5_c01378{font-size:24.000000px;}
.fsa_c01378{font-size:48.000000px;}
.fs7_c01378{font-size:54.000000px;}
.fs1_c01378{font-size:60.000000px;}
.fs3_c01378{font-size:63.000000px;}
.fs4_c01378{font-size:66.000000px;}
.fs0_c01378{font-size:69.000000px;}
.fs2_c01378{font-size:72.000000px;}
.fs9_c01378{font-size:75.000000px;}
.fs6_c01378{font-size:81.000000px;}
.fs8_c01378{font-size:87.000000px;}
.y0_c01378{bottom:0.000000px;}
.y24_c01378{bottom:3.105000px;}
.y23_c01378{bottom:7.228369px;}
.y22_c01378{bottom:58.320000px;}
.y21_c01378{bottom:80.370000px;}
.y20_c01378{bottom:105.570000px;}
.y1f_c01378{bottom:131.670000px;}
.y1e_c01378{bottom:155.970000px;}
.y1d_c01378{bottom:181.470000px;}
.y1c_c01378{bottom:205.470000px;}
.y1b_c01378{bottom:230.820000px;}
.y1a_c01378{bottom:254.370000px;}
.y19_c01378{bottom:278.670000px;}
.y18_c01378{bottom:303.120000px;}
.y17_c01378{bottom:326.970000px;}
.y16_c01378{bottom:351.720000px;}
.y15_c01378{bottom:376.020000px;}
.y14_c01378{bottom:401.520000px;}
.y13_c01378{bottom:422.520000px;}
.y12_c01378{bottom:449.220000px;}
.y11_c01378{bottom:470.070000px;}
.y10_c01378{bottom:497.520000px;}
.yf_c01378{bottom:521.070000px;}
.ye_c01378{bottom:546.120000px;}
.yd_c01378{bottom:569.070000px;}
.yc_c01378{bottom:594.570000px;}
.yb_c01378{bottom:619.020000px;}
.ya_c01378{bottom:643.320000px;}
.y9_c01378{bottom:667.620000px;}
.y8_c01378{bottom:690.870000px;}
.y7_c01378{bottom:715.770000px;}
.y6_c01378{bottom:739.020000px;}
.y5_c01378{bottom:764.070000px;}
.y4_c01378{bottom:782.670000px;}
.y3_c01378{bottom:811.320000px;}
.y2_c01378{bottom:835.320000px;}
.y1_c01378{bottom:859.170000px;}
.hf_c01378{height:13.200073px;}
.h10_c01378{height:43.804688px;}
.h3_c01378{height:61.800293px;}
.hb_c01378{height:61.831055px;}
.ha_c01378{height:65.040000px;}
.hd_c01378{height:66.515625px;}
.h9_c01378{height:68.370117px;}
.h8_c01378{height:70.664062px;}
.h6_c01378{height:72.312000px;}
.h7_c01378{height:72.562500px;}
.he_c01378{height:73.608398px;}
.h4_c01378{height:77.247070px;}
.h5_c01378{height:79.497070px;}
.h2_c01378{height:84.269531px;}
.hc_c01378{height:91.176000px;}
.h0_c01378{height:970.350000px;}
.h1_c01378{height:970.500000px;}
.w2_c01378{width:104.875500px;}
.w0_c01378{width:660.450000px;}
.w1_c01378{width:660.750000px;}
.x0_c01378{left:0.000000px;}
.x11_c01378{left:29.100000px;}
.x9_c01378{left:30.450000px;}
.x6_c01378{left:34.050000px;}
.x2_c01378{left:35.400000px;}
.x1_c01378{left:39.150000px;}
.x8_c01378{left:40.800000px;}
.xf_c01378{left:48.900000px;}
.x10_c01378{left:58.350000px;}
.x7_c01378{left:61.050000px;}
.x3_c01378{left:63.150000px;}
.xc_c01378{left:65.250000px;}
.xe_c01378{left:105.000000px;}
.xb_c01378{left:117.900000px;}
.x5_c01378{left:142.050000px;}
.xa_c01378{left:233.850000px;}
.x12_c01378{left:282.039230px;}
.xd_c01378{left:314.250000px;}
.x4_c01378{left:337.800000px;}
@media print{
.v0_c01378{vertical-align:0.000000pt;}
.ls15_c01378{letter-spacing:-10.666667pt;}
.ls16_c01378{letter-spacing:-5.333333pt;}
.ls14_c01378{letter-spacing:-2.666667pt;}
.ls11_c01378{letter-spacing:0.000000pt;}
.ls5_c01378{letter-spacing:0.266667pt;}
.lsb_c01378{letter-spacing:0.533333pt;}
.lsf_c01378{letter-spacing:2.133333pt;}
.ls17_c01378{letter-spacing:2.666667pt;}
.ls1_c01378{letter-spacing:4.000000pt;}
.lsc_c01378{letter-spacing:4.533333pt;}
.ls10_c01378{letter-spacing:5.333333pt;}
.lsa_c01378{letter-spacing:8.000000pt;}
.lse_c01378{letter-spacing:8.008000pt;}
.ls7_c01378{letter-spacing:8.533333pt;}
.ls0_c01378{letter-spacing:9.066667pt;}
.ls8_c01378{letter-spacing:11.365333pt;}
.ls2_c01378{letter-spacing:11.466667pt;}
.ls12_c01378{letter-spacing:13.333333pt;}
.ls13_c01378{letter-spacing:18.666667pt;}
.ls4_c01378{letter-spacing:33.066667pt;}
.ls9_c01378{letter-spacing:38.800000pt;}
.ls6_c01378{letter-spacing:449.765333pt;}
.lsd_c01378{letter-spacing:536.400000pt;}
.ls3_c01378{letter-spacing:585.765333pt;}
.wsb_c01378{word-spacing:-65.498667pt;}
.ws11_c01378{word-spacing:-28.800000pt;}
.ws5_c01378{word-spacing:-26.933333pt;}
.ws4_c01378{word-spacing:-24.000000pt;}
.ws8_c01378{word-spacing:-22.000000pt;}
.wsc_c01378{word-spacing:-21.333333pt;}
.wsd_c01378{word-spacing:-19.333333pt;}
.wsa_c01378{word-spacing:-18.000000pt;}
.wsf_c01378{word-spacing:-16.666667pt;}
.ws7_c01378{word-spacing:-16.000000pt;}
.ws0_c01378{word-spacing:-15.424000pt;}
.ws2_c01378{word-spacing:-15.333333pt;}
.ws9_c01378{word-spacing:-14.000000pt;}
.ws1_c01378{word-spacing:-10.453333pt;}
.ws12_c01378{word-spacing:-8.533333pt;}
.ws3_c01378{word-spacing:-3.221333pt;}
.wse_c01378{word-spacing:-2.968000pt;}
.ws6_c01378{word-spacing:-0.672000pt;}
.ws13_c01378{word-spacing:0.000000pt;}
.ws10_c01378{word-spacing:1.568000pt;}
._1c_c01378{margin-left:-28.248000pt;}
._0_c01378{margin-left:-26.557333pt;}
._c_c01378{margin-left:-21.333333pt;}
._38_c01378{margin-left:-15.848000pt;}
._3b_c01378{margin-left:-14.840000pt;}
._2c_c01378{margin-left:-13.242667pt;}
._14_c01378{margin-left:-12.269333pt;}
._1a_c01378{margin-left:-10.848000pt;}
._a_c01378{margin-left:-9.506667pt;}
._3_c01378{margin-left:-8.157333pt;}
._9_c01378{margin-left:-6.624000pt;}
._28_c01378{margin-left:-5.562667pt;}
._15_c01378{margin-left:-4.317333pt;}
._1b_c01378{margin-left:-3.304000pt;}
._16_c01378{margin-left:-2.240000pt;}
._12_c01378{margin-left:-1.290667pt;}
._d_c01378{width:1.242667pt;}
._5_c01378{width:2.208000pt;}
._10_c01378{width:3.485333pt;}
._7_c01378{width:4.416000pt;}
._6_c01378{width:5.458667pt;}
._4_c01378{width:6.501333pt;}
._f_c01378{width:8.101333pt;}
._17_c01378{width:9.109333pt;}
._e_c01378{width:10.309333pt;}
._2b_c01378{width:11.872000pt;}
._2_c01378{width:12.818667pt;}
._1f_c01378{width:14.090667pt;}
._30_c01378{width:15.176000pt;}
._1d_c01378{width:16.594667pt;}
._22_c01378{width:18.666667pt;}
._36_c01378{width:21.826667pt;}
._24_c01378{width:24.218667pt;}
._b_c01378{width:26.024000pt;}
._44_c01378{width:27.989333pt;}
._4a_c01378{width:28.893333pt;}
._29_c01378{width:32.106667pt;}
._21_c01378{width:33.626667pt;}
._27_c01378{width:34.616000pt;}
._19_c01378{width:35.893333pt;}
._1_c01378{width:37.965333pt;}
._4e_c01378{width:39.309333pt;}
._3e_c01378{width:40.418667pt;}
._32_c01378{width:44.765333pt;}
._48_c01378{width:45.760000pt;}
._2d_c01378{width:47.829333pt;}
._31_c01378{width:54.040000pt;}
._3f_c01378{width:56.584000pt;}
._47_c01378{width:67.269333pt;}
._33_c01378{width:78.410667pt;}
._46_c01378{width:90.720000pt;}
._3d_c01378{width:92.608000pt;}
._13_c01378{width:111.232000pt;}
._35_c01378{width:142.930667pt;}
._39_c01378{width:155.848000pt;}
._37_c01378{width:180.002667pt;}
._18_c01378{width:236.330667pt;}
._2a_c01378{width:239.810667pt;}
._2e_c01378{width:269.013333pt;}
._11_c01378{width:281.573333pt;}
._3a_c01378{width:302.666667pt;}
._25_c01378{width:310.410667pt;}
._26_c01378{width:330.282667pt;}
._2f_c01378{width:338.736000pt;}
._42_c01378{width:374.557333pt;}
._4d_c01378{width:401.181333pt;}
._3c_c01378{width:404.712000pt;}
._45_c01378{width:473.288000pt;}
._1e_c01378{width:476.106667pt;}
._8_c01378{width:486.802667pt;}
._4b_c01378{width:513.448000pt;}
._4c_c01378{width:527.464000pt;}
._49_c01378{width:538.645333pt;}
._34_c01378{width:601.560000pt;}
._50_c01378{width:626.285333pt;}
._40_c01378{width:722.893333pt;}
._23_c01378{width:735.600000pt;}
._20_c01378{width:739.805333pt;}
._43_c01378{width:838.432000pt;}
._41_c01378{width:904.893333pt;}
._4f_c01378{width:931.637333pt;}
.fs5_c01378{font-size:21.333333pt;}
.fsa_c01378{font-size:42.666667pt;}
.fs7_c01378{font-size:48.000000pt;}
.fs1_c01378{font-size:53.333333pt;}
.fs3_c01378{font-size:56.000000pt;}
.fs4_c01378{font-size:58.666667pt;}
.fs0_c01378{font-size:61.333333pt;}
.fs2_c01378{font-size:64.000000pt;}
.fs9_c01378{font-size:66.666667pt;}
.fs6_c01378{font-size:72.000000pt;}
.fs8_c01378{font-size:77.333333pt;}
.y0_c01378{bottom:0.000000pt;}
.y24_c01378{bottom:2.760000pt;}
.y23_c01378{bottom:6.425217pt;}
.y22_c01378{bottom:51.840000pt;}
.y21_c01378{bottom:71.440000pt;}
.y20_c01378{bottom:93.840000pt;}
.y1f_c01378{bottom:117.040000pt;}
.y1e_c01378{bottom:138.640000pt;}
.y1d_c01378{bottom:161.306667pt;}
.y1c_c01378{bottom:182.640000pt;}
.y1b_c01378{bottom:205.173333pt;}
.y1a_c01378{bottom:226.106667pt;}
.y19_c01378{bottom:247.706667pt;}
.y18_c01378{bottom:269.440000pt;}
.y17_c01378{bottom:290.640000pt;}
.y16_c01378{bottom:312.640000pt;}
.y15_c01378{bottom:334.240000pt;}
.y14_c01378{bottom:356.906667pt;}
.y13_c01378{bottom:375.573333pt;}
.y12_c01378{bottom:399.306667pt;}
.y11_c01378{bottom:417.840000pt;}
.y10_c01378{bottom:442.240000pt;}
.yf_c01378{bottom:463.173333pt;}
.ye_c01378{bottom:485.440000pt;}
.yd_c01378{bottom:505.840000pt;}
.yc_c01378{bottom:528.506667pt;}
.yb_c01378{bottom:550.240000pt;}
.ya_c01378{bottom:571.840000pt;}
.y9_c01378{bottom:593.440000pt;}
.y8_c01378{bottom:614.106667pt;}
.y7_c01378{bottom:636.240000pt;}
.y6_c01378{bottom:656.906667pt;}
.y5_c01378{bottom:679.173333pt;}
.y4_c01378{bottom:695.706667pt;}
.y3_c01378{bottom:721.173333pt;}
.y2_c01378{bottom:742.506667pt;}
.y1_c01378{bottom:763.706667pt;}
.hf_c01378{height:11.733399pt;}
.h10_c01378{height:38.937500pt;}
.h3_c01378{height:54.933594pt;}
.hb_c01378{height:54.960938pt;}
.ha_c01378{height:57.813333pt;}
.hd_c01378{height:59.125000pt;}
.h9_c01378{height:60.773438pt;}
.h8_c01378{height:62.812500pt;}
.h6_c01378{height:64.277333pt;}
.h7_c01378{height:64.500000pt;}
.he_c01378{height:65.429688pt;}
.h4_c01378{height:68.664062pt;}
.h5_c01378{height:70.664062pt;}
.h2_c01378{height:74.906250pt;}
.hc_c01378{height:81.045333pt;}
.h0_c01378{height:862.533333pt;}
.h1_c01378{height:862.666667pt;}
.w2_c01378{width:93.222667pt;}
.w0_c01378{width:587.066667pt;}
.w1_c01378{width:587.333333pt;}
.x0_c01378{left:0.000000pt;}
.x11_c01378{left:25.866667pt;}
.x9_c01378{left:27.066667pt;}
.x6_c01378{left:30.266667pt;}
.x2_c01378{left:31.466667pt;}
.x1_c01378{left:34.800000pt;}
.x8_c01378{left:36.266667pt;}
.xf_c01378{left:43.466667pt;}
.x10_c01378{left:51.866667pt;}
.x7_c01378{left:54.266667pt;}
.x3_c01378{left:56.133333pt;}
.xc_c01378{left:58.000000pt;}
.xe_c01378{left:93.333333pt;}
.xb_c01378{left:104.800000pt;}
.x5_c01378{left:126.266667pt;}
.xa_c01378{left:207.866667pt;}
.x12_c01378{left:250.701538pt;}
.xd_c01378{left:279.333333pt;}
.x4_c01378{left:300.266667pt;}
}





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

.ir_c01379:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01379{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01379;src:url('chunks/assets/font_5ebd755dd3feecf14b7a0740.woff2')format("woff");}.ff1_c01379{font-family:ff1_c01379;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01379;src:url('chunks/assets/font_55c1b0a5e82c9fae8c6c6996.woff2')format("woff");}.ff2_c01379{font-family:ff2_c01379;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01379;src:url('chunks/assets/font_10b09c3ada2b6fcbc969ab24.woff2')format("woff");}.ff3_c01379{font-family:ff3_c01379;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01379;src:url('chunks/assets/font_cca849e9d9e0deb1a483d93e.woff2')format("woff");}.ff4_c01379{font-family:ff4_c01379;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01379;src:url('chunks/assets/font_6a0a6a6989210ddafa35c21c.woff2')format("woff");}.ff5_c01379{font-family:ff5_c01379;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01379;src:url('chunks/assets/font_6c927bdd041839b890a2e701.woff2')format("woff");}.ff6_c01379{font-family:ff6_c01379;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01379;src:url('chunks/assets/font_c6824b726c166230adda0d67.woff2')format("woff");}.ff7_c01379{font-family:ff7_c01379;line-height:1.311035;font-style:normal;font-weight: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_c01379;src:url('chunks/assets/font_d1e056f27c295462cf03a99f.woff2')format("woff");}.ff8_c01379{font-family:ff8_c01379;line-height:1.284668;font-style:normal;font-weight: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_c01379;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff9_c01379{font-family:ff9_c01379;line-height:1.219238;font-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_c01379{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m0_c01379{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2_c01379{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01379{vertical-align:0.000000px;}
.ls1d_c01379{letter-spacing:-6.000000px;}
.ls1a_c01379{letter-spacing:0.000000px;}
.ls7_c01379{letter-spacing:0.150000px;}
.lsa_c01379{letter-spacing:1.500000px;}
.ls11_c01379{letter-spacing:1.701000px;}
.lsb_c01379{letter-spacing:2.250000px;}
.lsf_c01379{letter-spacing:2.700000px;}
.ls1e_c01379{letter-spacing:3.000000px;}
.ls5_c01379{letter-spacing:3.450000px;}
.ls15_c01379{letter-spacing:4.650000px;}
.ls3_c01379{letter-spacing:5.100000px;}
.ls1b_c01379{letter-spacing:6.000000px;}
.ls8_c01379{letter-spacing:6.300000px;}
.ls17_c01379{letter-spacing:6.600000px;}
.lse_c01379{letter-spacing:9.000000px;}
.ls10_c01379{letter-spacing:11.700000px;}
.ls14_c01379{letter-spacing:12.507000px;}
.ls0_c01379{letter-spacing:14.100000px;}
.ls13_c01379{letter-spacing:14.985000px;}
.lsc_c01379{letter-spacing:15.300000px;}
.ls9_c01379{letter-spacing:15.450000px;}
.lsd_c01379{letter-spacing:15.900000px;}
.ls1_c01379{letter-spacing:17.100000px;}
.ls12_c01379{letter-spacing:17.814000px;}
.ls1c_c01379{letter-spacing:18.000000px;}
.ls2_c01379{letter-spacing:18.300000px;}
.ls16_c01379{letter-spacing:20.700000px;}
.ls1f_c01379{letter-spacing:21.000000px;}
.ls4_c01379{letter-spacing:28.602000px;}
.ls19_c01379{letter-spacing:43.200000px;}
.ls18_c01379{letter-spacing:47.400000px;}
.ls6_c01379{letter-spacing:51.402000px;}
.sc__c01379{text-shadow:none;}
.sc0_c01379{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01379{-webkit-text-stroke:0px transparent;}
.sc0_c01379{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c01379{word-spacing:-73.686000px;}
.ws8_c01379{word-spacing:-39.750000px;}
.ws0_c01379{word-spacing:-24.750000px;}
.ws2_c01379{word-spacing:-21.750000px;}
.ws3_c01379{word-spacing:-21.000000px;}
.ws4_c01379{word-spacing:-20.250000px;}
.ws6_c01379{word-spacing:-18.798000px;}
.wsa_c01379{word-spacing:-17.352000px;}
.ws1_c01379{word-spacing:-15.750000px;}
.ws16_c01379{word-spacing:-15.000000px;}
.wsd_c01379{word-spacing:-13.737000px;}
.wse_c01379{word-spacing:-12.600000px;}
.ws9_c01379{word-spacing:-7.737000px;}
.ws11_c01379{word-spacing:-3.465000px;}
.wsc_c01379{word-spacing:-3.213000px;}
.ws5_c01379{word-spacing:-3.150000px;}
.ws12_c01379{word-spacing:-2.406000px;}
.wsf_c01379{word-spacing:-2.400000px;}
.ws7_c01379{word-spacing:-0.756000px;}
.ws17_c01379{word-spacing:0.000000px;}
.ws10_c01379{word-spacing:1.260000px;}
.ws14_c01379{word-spacing:1.449000px;}
.ws15_c01379{word-spacing:1.890000px;}
.ws13_c01379{word-spacing:2.646000px;}
._3c_c01379{margin-left:-33.453000px;}
._28_c01379{margin-left:-26.442000px;}
._3b_c01379{margin-left:-21.180000px;}
._1e_c01379{margin-left:-19.902000px;}
._26_c01379{margin-left:-18.081000px;}
._18_c01379{margin-left:-16.506000px;}
._2a_c01379{margin-left:-15.381000px;}
._1d_c01379{margin-left:-13.566000px;}
._c_c01379{margin-left:-11.583000px;}
._9_c01379{margin-left:-10.458000px;}
._15_c01379{margin-left:-8.784000px;}
._6_c01379{margin-left:-7.560000px;}
._1b_c01379{margin-left:-6.084000px;}
._10_c01379{margin-left:-4.893000px;}
._e_c01379{margin-left:-3.510000px;}
._7_c01379{margin-left:-2.016000px;}
._8_c01379{width:1.512000px;}
._3_c01379{width:3.276000px;}
._1_c01379{width:4.914000px;}
._0_c01379{width:6.363000px;}
._b_c01379{width:7.623000px;}
._2_c01379{width:9.135000px;}
._17_c01379{width:10.773000px;}
._a_c01379{width:11.970000px;}
._14_c01379{width:13.131000px;}
._d_c01379{width:14.403000px;}
._2b_c01379{width:15.636000px;}
._22_c01379{width:17.199000px;}
._12_c01379{width:19.149000px;}
._21_c01379{width:20.430000px;}
._19_c01379{width:22.275000px;}
._11_c01379{width:23.727000px;}
._1a_c01379{width:27.357000px;}
._2f_c01379{width:28.791000px;}
._25_c01379{width:30.576000px;}
._13_c01379{width:32.886000px;}
._23_c01379{width:33.969000px;}
._2d_c01379{width:35.850000px;}
._16_c01379{width:38.241000px;}
._33_c01379{width:39.426000px;}
._20_c01379{width:41.670000px;}
._f_c01379{width:42.972000px;}
._2c_c01379{width:44.415000px;}
._1f_c01379{width:45.777000px;}
._1c_c01379{width:46.938000px;}
._34_c01379{width:49.692000px;}
._30_c01379{width:51.642000px;}
._38_c01379{width:54.600000px;}
._5_c01379{width:57.267000px;}
._27_c01379{width:60.384000px;}
._37_c01379{width:69.609000px;}
._36_c01379{width:70.740000px;}
._3d_c01379{width:86.916000px;}
._24_c01379{width:168.090000px;}
._31_c01379{width:180.015000px;}
._35_c01379{width:219.438000px;}
._4_c01379{width:310.062000px;}
._3a_c01379{width:323.382000px;}
._39_c01379{width:350.829000px;}
._32_c01379{width:401.508000px;}
._2e_c01379{width:414.915000px;}
._29_c01379{width:464.484000px;}
._3e_c01379{width:470.160000px;}
.fc2_c01379{color:transparent;}
.fc1_c01379{color:rgb(128,128,128);}
.fc0_c01379{color:rgb(0,0,0);}
.fsa_c01379{font-size:24.000000px;}
.fs7_c01379{font-size:36.000000px;}
.fsb_c01379{font-size:48.000000px;}
.fs8_c01379{font-size:50.400000px;}
.fs2_c01379{font-size:57.000000px;}
.fs5_c01379{font-size:60.000000px;}
.fs0_c01379{font-size:63.000000px;}
.fs9_c01379{font-size:66.000000px;}
.fs6_c01379{font-size:72.000000px;}
.fs1_c01379{font-size:78.000000px;}
.fs3_c01379{font-size:81.000000px;}
.fs4_c01379{font-size:87.000000px;}
.y0_c01379{bottom:0.000000px;}
.y44_c01379{bottom:3.105000px;}
.y43_c01379{bottom:7.228355px;}
.y42_c01379{bottom:83.685000px;}
.y22_c01379{bottom:86.685000px;}
.y21_c01379{bottom:111.585000px;}
.y41_c01379{bottom:112.635000px;}
.y40_c01379{bottom:129.885000px;}
.y20_c01379{bottom:136.635000px;}
.y3f_c01379{bottom:160.635000px;}
.y1f_c01379{bottom:161.685000px;}
.y1e_c01379{bottom:176.085000px;}
.y3e_c01379{bottom:184.485000px;}
.y1d_c01379{bottom:185.835000px;}
.y1c_c01379{bottom:209.535000px;}
.y3d_c01379{bottom:209.835000px;}
.y3c_c01379{bottom:233.835000px;}
.y1b_c01379{bottom:234.885000px;}
.y1a_c01379{bottom:259.185000px;}
.y3b_c01379{bottom:259.485000px;}
.y19_c01379{bottom:283.485000px;}
.y3a_c01379{bottom:283.785000px;}
.y18_c01379{bottom:307.785000px;}
.y39_c01379{bottom:308.385000px;}
.y38_c01379{bottom:332.085000px;}
.y17_c01379{bottom:333.435000px;}
.y16_c01379{bottom:353.235000px;}
.y37_c01379{bottom:356.985000px;}
.y15_c01379{bottom:381.735000px;}
.y36_c01379{bottom:406.035000px;}
.y14_c01379{bottom:407.685000px;}
.y35_c01379{bottom:430.185000px;}
.y13_c01379{bottom:430.635000px;}
.y12_c01379{bottom:449.235000px;}
.y34_c01379{bottom:455.535000px;}
.y33_c01379{bottom:479.235000px;}
.y11_c01379{bottom:479.535000px;}
.y32_c01379{bottom:503.085000px;}
.y10_c01379{bottom:504.135000px;}
.y31_c01379{bottom:527.535000px;}
.yf_c01379{bottom:528.435000px;}
.y30_c01379{bottom:551.835000px;}
.ye_c01379{bottom:552.435000px;}
.y2f_c01379{bottom:574.635000px;}
.yd_c01379{bottom:577.335000px;}
.y2e_c01379{bottom:600.435000px;}
.yc_c01379{bottom:601.335000px;}
.y2d_c01379{bottom:623.985000px;}
.yb_c01379{bottom:624.585000px;}
.y2c_c01379{bottom:648.585000px;}
.ya_c01379{bottom:650.385000px;}
.y9_c01379{bottom:672.585000px;}
.y2b_c01379{bottom:673.185000px;}
.y2a_c01379{bottom:697.485000px;}
.y8_c01379{bottom:697.635000px;}
.y29_c01379{bottom:721.935000px;}
.y28_c01379{bottom:745.785000px;}
.y7_c01379{bottom:746.085000px;}
.y6_c01379{bottom:769.785000px;}
.y27_c01379{bottom:770.385000px;}
.y5_c01379{bottom:794.685000px;}
.y4_c01379{bottom:818.385000px;}
.y26_c01379{bottom:818.685000px;}
.y25_c01379{bottom:841.035000px;}
.y3_c01379{bottom:841.635000px;}
.y2_c01379{bottom:865.635000px;}
.y24_c01379{bottom:866.385000px;}
.y1_c01379{bottom:889.935000px;}
.y23_c01379{bottom:891.285000px;}
.he_c01379{height:13.200074px;}
.hf_c01379{height:43.804688px;}
.hc_c01379{height:58.886719px;}
.h2_c01379{height:61.800293px;}
.h3_c01379{height:61.831055px;}
.hd_c01379{height:66.713379px;}
.h6_c01379{height:72.168457px;}
.h7_c01379{height:79.497070px;}
.h8_c01379{height:83.226000px;}
.ha_c01379{height:84.269531px;}
.h9_c01379{height:87.679688px;}
.hb_c01379{height:91.160156px;}
.h5_c01379{height:91.176000px;}
.h4_c01379{height:98.756836px;}
.h1_c01379{height:975.000000px;}
.h0_c01379{height:975.225000px;}
.w2_c01379{width:104.875500px;}
.w0_c01379{width:659.850000px;}
.w1_c01379{width:660.000000px;}
.x0_c01379{left:0.000000px;}
.x7_c01379{left:96.150000px;}
.x13_c01379{left:97.500000px;}
.xc_c01379{left:100.200000px;}
.x6_c01379{left:102.300000px;}
.x5_c01379{left:104.850000px;}
.x1_c01379{left:105.900000px;}
.x4_c01379{left:107.550000px;}
.x11_c01379{left:114.450000px;}
.x9_c01379{left:117.750000px;}
.x12_c01379{left:119.850000px;}
.x8_c01379{left:121.500000px;}
.x14_c01379{left:122.850000px;}
.xf_c01379{left:126.150000px;}
.xa_c01379{left:127.500000px;}
.x2_c01379{left:132.000000px;}
.x3_c01379{left:149.850000px;}
.x10_c01379{left:166.050000px;}
.xb_c01379{left:177.300000px;}
.xd_c01379{left:196.800000px;}
.xe_c01379{left:231.900000px;}
.x24_c01379{left:281.739258px;}
.x21_c01379{left:374.550000px;}
.x19_c01379{left:376.350000px;}
.x1d_c01379{left:378.300000px;}
.x1e_c01379{left:379.350000px;}
.x1c_c01379{left:380.700000px;}
.x22_c01379{left:381.750000px;}
.x16_c01379{left:383.100000px;}
.x1f_c01379{left:402.300000px;}
.x18_c01379{left:403.650000px;}
.x17_c01379{left:405.000000px;}
.x1a_c01379{left:406.650000px;}
.x1b_c01379{left:408.600000px;}
.x20_c01379{left:457.650000px;}
.x23_c01379{left:476.550000px;}
.x15_c01379{left:480.600000px;}
@media print{
.v0_c01379{vertical-align:0.000000pt;}
.ls1d_c01379{letter-spacing:-5.333333pt;}
.ls1a_c01379{letter-spacing:0.000000pt;}
.ls7_c01379{letter-spacing:0.133333pt;}
.lsa_c01379{letter-spacing:1.333333pt;}
.ls11_c01379{letter-spacing:1.512000pt;}
.lsb_c01379{letter-spacing:2.000000pt;}
.lsf_c01379{letter-spacing:2.400000pt;}
.ls1e_c01379{letter-spacing:2.666667pt;}
.ls5_c01379{letter-spacing:3.066667pt;}
.ls15_c01379{letter-spacing:4.133333pt;}
.ls3_c01379{letter-spacing:4.533333pt;}
.ls1b_c01379{letter-spacing:5.333333pt;}
.ls8_c01379{letter-spacing:5.600000pt;}
.ls17_c01379{letter-spacing:5.866667pt;}
.lse_c01379{letter-spacing:8.000000pt;}
.ls10_c01379{letter-spacing:10.400000pt;}
.ls14_c01379{letter-spacing:11.117333pt;}
.ls0_c01379{letter-spacing:12.533333pt;}
.ls13_c01379{letter-spacing:13.320000pt;}
.lsc_c01379{letter-spacing:13.600000pt;}
.ls9_c01379{letter-spacing:13.733333pt;}
.lsd_c01379{letter-spacing:14.133333pt;}
.ls1_c01379{letter-spacing:15.200000pt;}
.ls12_c01379{letter-spacing:15.834667pt;}
.ls1c_c01379{letter-spacing:16.000000pt;}
.ls2_c01379{letter-spacing:16.266667pt;}
.ls16_c01379{letter-spacing:18.400000pt;}
.ls1f_c01379{letter-spacing:18.666667pt;}
.ls4_c01379{letter-spacing:25.424000pt;}
.ls19_c01379{letter-spacing:38.400000pt;}
.ls18_c01379{letter-spacing:42.133333pt;}
.ls6_c01379{letter-spacing:45.690667pt;}
.wsb_c01379{word-spacing:-65.498667pt;}
.ws8_c01379{word-spacing:-35.333333pt;}
.ws0_c01379{word-spacing:-22.000000pt;}
.ws2_c01379{word-spacing:-19.333333pt;}
.ws3_c01379{word-spacing:-18.666667pt;}
.ws4_c01379{word-spacing:-18.000000pt;}
.ws6_c01379{word-spacing:-16.709333pt;}
.wsa_c01379{word-spacing:-15.424000pt;}
.ws1_c01379{word-spacing:-14.000000pt;}
.ws16_c01379{word-spacing:-13.333333pt;}
.wsd_c01379{word-spacing:-12.210667pt;}
.wse_c01379{word-spacing:-11.200000pt;}
.ws9_c01379{word-spacing:-6.877333pt;}
.ws11_c01379{word-spacing:-3.080000pt;}
.wsc_c01379{word-spacing:-2.856000pt;}
.ws5_c01379{word-spacing:-2.800000pt;}
.ws12_c01379{word-spacing:-2.138667pt;}
.wsf_c01379{word-spacing:-2.133333pt;}
.ws7_c01379{word-spacing:-0.672000pt;}
.ws17_c01379{word-spacing:0.000000pt;}
.ws10_c01379{word-spacing:1.120000pt;}
.ws14_c01379{word-spacing:1.288000pt;}
.ws15_c01379{word-spacing:1.680000pt;}
.ws13_c01379{word-spacing:2.352000pt;}
._3c_c01379{margin-left:-29.736000pt;}
._28_c01379{margin-left:-23.504000pt;}
._3b_c01379{margin-left:-18.826667pt;}
._1e_c01379{margin-left:-17.690667pt;}
._26_c01379{margin-left:-16.072000pt;}
._18_c01379{margin-left:-14.672000pt;}
._2a_c01379{margin-left:-13.672000pt;}
._1d_c01379{margin-left:-12.058667pt;}
._c_c01379{margin-left:-10.296000pt;}
._9_c01379{margin-left:-9.296000pt;}
._15_c01379{margin-left:-7.808000pt;}
._6_c01379{margin-left:-6.720000pt;}
._1b_c01379{margin-left:-5.408000pt;}
._10_c01379{margin-left:-4.349333pt;}
._e_c01379{margin-left:-3.120000pt;}
._7_c01379{margin-left:-1.792000pt;}
._8_c01379{width:1.344000pt;}
._3_c01379{width:2.912000pt;}
._1_c01379{width:4.368000pt;}
._0_c01379{width:5.656000pt;}
._b_c01379{width:6.776000pt;}
._2_c01379{width:8.120000pt;}
._17_c01379{width:9.576000pt;}
._a_c01379{width:10.640000pt;}
._14_c01379{width:11.672000pt;}
._d_c01379{width:12.802667pt;}
._2b_c01379{width:13.898667pt;}
._22_c01379{width:15.288000pt;}
._12_c01379{width:17.021333pt;}
._21_c01379{width:18.160000pt;}
._19_c01379{width:19.800000pt;}
._11_c01379{width:21.090667pt;}
._1a_c01379{width:24.317333pt;}
._2f_c01379{width:25.592000pt;}
._25_c01379{width:27.178667pt;}
._13_c01379{width:29.232000pt;}
._23_c01379{width:30.194667pt;}
._2d_c01379{width:31.866667pt;}
._16_c01379{width:33.992000pt;}
._33_c01379{width:35.045333pt;}
._20_c01379{width:37.040000pt;}
._f_c01379{width:38.197333pt;}
._2c_c01379{width:39.480000pt;}
._1f_c01379{width:40.690667pt;}
._1c_c01379{width:41.722667pt;}
._34_c01379{width:44.170667pt;}
._30_c01379{width:45.904000pt;}
._38_c01379{width:48.533333pt;}
._5_c01379{width:50.904000pt;}
._27_c01379{width:53.674667pt;}
._37_c01379{width:61.874667pt;}
._36_c01379{width:62.880000pt;}
._3d_c01379{width:77.258667pt;}
._24_c01379{width:149.413333pt;}
._31_c01379{width:160.013333pt;}
._35_c01379{width:195.056000pt;}
._4_c01379{width:275.610667pt;}
._3a_c01379{width:287.450667pt;}
._39_c01379{width:311.848000pt;}
._32_c01379{width:356.896000pt;}
._2e_c01379{width:368.813333pt;}
._29_c01379{width:412.874667pt;}
._3e_c01379{width:417.920000pt;}
.fsa_c01379{font-size:21.333333pt;}
.fs7_c01379{font-size:32.000000pt;}
.fsb_c01379{font-size:42.666667pt;}
.fs8_c01379{font-size:44.800000pt;}
.fs2_c01379{font-size:50.666667pt;}
.fs5_c01379{font-size:53.333333pt;}
.fs0_c01379{font-size:56.000000pt;}
.fs9_c01379{font-size:58.666667pt;}
.fs6_c01379{font-size:64.000000pt;}
.fs1_c01379{font-size:69.333333pt;}
.fs3_c01379{font-size:72.000000pt;}
.fs4_c01379{font-size:77.333333pt;}
.y0_c01379{bottom:0.000000pt;}
.y44_c01379{bottom:2.760000pt;}
.y43_c01379{bottom:6.425204pt;}
.y42_c01379{bottom:74.386667pt;}
.y22_c01379{bottom:77.053333pt;}
.y21_c01379{bottom:99.186667pt;}
.y41_c01379{bottom:100.120000pt;}
.y40_c01379{bottom:115.453333pt;}
.y20_c01379{bottom:121.453333pt;}
.y3f_c01379{bottom:142.786667pt;}
.y1f_c01379{bottom:143.720000pt;}
.y1e_c01379{bottom:156.520000pt;}
.y3e_c01379{bottom:163.986667pt;}
.y1d_c01379{bottom:165.186667pt;}
.y1c_c01379{bottom:186.253333pt;}
.y3d_c01379{bottom:186.520000pt;}
.y3c_c01379{bottom:207.853333pt;}
.y1b_c01379{bottom:208.786667pt;}
.y1a_c01379{bottom:230.386667pt;}
.y3b_c01379{bottom:230.653333pt;}
.y19_c01379{bottom:251.986667pt;}
.y3a_c01379{bottom:252.253333pt;}
.y18_c01379{bottom:273.586667pt;}
.y39_c01379{bottom:274.120000pt;}
.y38_c01379{bottom:295.186667pt;}
.y17_c01379{bottom:296.386667pt;}
.y16_c01379{bottom:313.986667pt;}
.y37_c01379{bottom:317.320000pt;}
.y15_c01379{bottom:339.320000pt;}
.y36_c01379{bottom:360.920000pt;}
.y14_c01379{bottom:362.386667pt;}
.y35_c01379{bottom:382.386667pt;}
.y13_c01379{bottom:382.786667pt;}
.y12_c01379{bottom:399.320000pt;}
.y34_c01379{bottom:404.920000pt;}
.y33_c01379{bottom:425.986667pt;}
.y11_c01379{bottom:426.253333pt;}
.y32_c01379{bottom:447.186667pt;}
.y10_c01379{bottom:448.120000pt;}
.y31_c01379{bottom:468.920000pt;}
.yf_c01379{bottom:469.720000pt;}
.y30_c01379{bottom:490.520000pt;}
.ye_c01379{bottom:491.053333pt;}
.y2f_c01379{bottom:510.786667pt;}
.yd_c01379{bottom:513.186667pt;}
.y2e_c01379{bottom:533.720000pt;}
.yc_c01379{bottom:534.520000pt;}
.y2d_c01379{bottom:554.653333pt;}
.yb_c01379{bottom:555.186667pt;}
.y2c_c01379{bottom:576.520000pt;}
.ya_c01379{bottom:578.120000pt;}
.y9_c01379{bottom:597.853333pt;}
.y2b_c01379{bottom:598.386667pt;}
.y2a_c01379{bottom:619.986667pt;}
.y8_c01379{bottom:620.120000pt;}
.y29_c01379{bottom:641.720000pt;}
.y28_c01379{bottom:662.920000pt;}
.y7_c01379{bottom:663.186667pt;}
.y6_c01379{bottom:684.253333pt;}
.y27_c01379{bottom:684.786667pt;}
.y5_c01379{bottom:706.386667pt;}
.y4_c01379{bottom:727.453333pt;}
.y26_c01379{bottom:727.720000pt;}
.y25_c01379{bottom:747.586667pt;}
.y3_c01379{bottom:748.120000pt;}
.y2_c01379{bottom:769.453333pt;}
.y24_c01379{bottom:770.120000pt;}
.y1_c01379{bottom:791.053333pt;}
.y23_c01379{bottom:792.253333pt;}
.he_c01379{height:11.733399pt;}
.hf_c01379{height:38.937500pt;}
.hc_c01379{height:52.343750pt;}
.h2_c01379{height:54.933594pt;}
.h3_c01379{height:54.960938pt;}
.hd_c01379{height:59.300781pt;}
.h6_c01379{height:64.149740pt;}
.h7_c01379{height:70.664062pt;}
.h8_c01379{height:73.978667pt;}
.ha_c01379{height:74.906250pt;}
.h9_c01379{height:77.937500pt;}
.hb_c01379{height:81.031250pt;}
.h5_c01379{height:81.045333pt;}
.h4_c01379{height:87.783854pt;}
.h1_c01379{height:866.666667pt;}
.h0_c01379{height:866.866667pt;}
.w2_c01379{width:93.222667pt;}
.w0_c01379{width:586.533333pt;}
.w1_c01379{width:586.666667pt;}
.x0_c01379{left:0.000000pt;}
.x7_c01379{left:85.466667pt;}
.x13_c01379{left:86.666667pt;}
.xc_c01379{left:89.066667pt;}
.x6_c01379{left:90.933333pt;}
.x5_c01379{left:93.200000pt;}
.x1_c01379{left:94.133333pt;}
.x4_c01379{left:95.600000pt;}
.x11_c01379{left:101.733333pt;}
.x9_c01379{left:104.666667pt;}
.x12_c01379{left:106.533333pt;}
.x8_c01379{left:108.000000pt;}
.x14_c01379{left:109.200000pt;}
.xf_c01379{left:112.133333pt;}
.xa_c01379{left:113.333333pt;}
.x2_c01379{left:117.333333pt;}
.x3_c01379{left:133.200000pt;}
.x10_c01379{left:147.600000pt;}
.xb_c01379{left:157.600000pt;}
.xd_c01379{left:174.933333pt;}
.xe_c01379{left:206.133333pt;}
.x24_c01379{left:250.434896pt;}
.x21_c01379{left:332.933333pt;}
.x19_c01379{left:334.533333pt;}
.x1d_c01379{left:336.266667pt;}
.x1e_c01379{left:337.200000pt;}
.x1c_c01379{left:338.400000pt;}
.x22_c01379{left:339.333333pt;}
.x16_c01379{left:340.533333pt;}
.x1f_c01379{left:357.600000pt;}
.x18_c01379{left:358.800000pt;}
.x17_c01379{left:360.000000pt;}
.x1a_c01379{left:361.466667pt;}
.x1b_c01379{left:363.200000pt;}
.x20_c01379{left:406.800000pt;}
.x23_c01379{left:423.600000pt;}
.x15_c01379{left:427.200000pt;}
}





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

.ir_c01380:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01380{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01380;src:url('chunks/assets/font_c3b709d1855553a45ae0ad1c.woff2')format("woff");}.ff1_c01380{font-family:ff1_c01380;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01380;src:url('chunks/assets/font_39a372cd7cc2f668235d2891.woff2')format("woff");}.ff2_c01380{font-family:ff2_c01380;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01380;src:url('chunks/assets/font_1794116b67d3dcf9ec6469e7.woff2')format("woff");}.ff3_c01380{font-family:ff3_c01380;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01380;src:url('chunks/assets/font_4131f67635d0d3f9b60ca00f.woff2')format("woff");}.ff4_c01380{font-family:ff4_c01380;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01380;src:url('chunks/assets/font_de289a94d07076cd004973c1.woff2')format("woff");}.ff5_c01380{font-family:ff5_c01380;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01380;src:url('chunks/assets/font_17c5074b4290eb63b1b949a5.woff2')format("woff");}.ff6_c01380{font-family:ff6_c01380;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01380;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff7_c01380{font-family:ff7_c01380;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01380{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01380{vertical-align:0.000000px;}
.ls19_c01380{letter-spacing:0.000000px;}
.ls12_c01380{letter-spacing:0.450000px;}
.ls4_c01380{letter-spacing:2.850000px;}
.ls13_c01380{letter-spacing:2.940000px;}
.lsa_c01380{letter-spacing:3.000000px;}
.lsc_c01380{letter-spacing:5.850000px;}
.ls10_c01380{letter-spacing:6.000000px;}
.ls8_c01380{letter-spacing:6.600000px;}
.lsf_c01380{letter-spacing:8.250000px;}
.ls1a_c01380{letter-spacing:9.000000px;}
.lsd_c01380{letter-spacing:9.021000px;}
.ls17_c01380{letter-spacing:10.500000px;}
.ls7_c01380{letter-spacing:11.700000px;}
.ls1b_c01380{letter-spacing:12.000000px;}
.ls16_c01380{letter-spacing:12.300000px;}
.ls14_c01380{letter-spacing:13.797000px;}
.lse_c01380{letter-spacing:15.300000px;}
.ls18_c01380{letter-spacing:25.014000px;}
.ls0_c01380{letter-spacing:34.050000px;}
.ls15_c01380{letter-spacing:34.686000px;}
.ls6_c01380{letter-spacing:38.700000px;}
.lsb_c01380{letter-spacing:39.648000px;}
.ls11_c01380{letter-spacing:196.050000px;}
.ls2_c01380{letter-spacing:298.050000px;}
.ls1_c01380{letter-spacing:317.250000px;}
.ls3_c01380{letter-spacing:493.050000px;}
.ls9_c01380{letter-spacing:992.850000px;}
.ls5_c01380{letter-spacing:1013.850000px;}
.sc__c01380{text-shadow:none;}
.sc0_c01380{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01380{-webkit-text-stroke:0px transparent;}
.sc0_c01380{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa_c01380{word-spacing:-51.996000px;}
.ws9_c01380{word-spacing:-48.696000px;}
.wsb_c01380{word-spacing:-29.547000px;}
.wsc_c01380{word-spacing:-27.750000px;}
.ws5_c01380{word-spacing:-24.750000px;}
.ws6_c01380{word-spacing:-21.750000px;}
.ws3_c01380{word-spacing:-20.250000px;}
.ws0_c01380{word-spacing:-15.750000px;}
.ws7_c01380{word-spacing:-2.772000px;}
.ws2_c01380{word-spacing:-2.520000px;}
.ws1_c01380{word-spacing:-2.124000px;}
.ws8_c01380{word-spacing:-1.953000px;}
.wse_c01380{word-spacing:-1.575000px;}
.wsf_c01380{word-spacing:0.000000px;}
.ws4_c01380{word-spacing:0.882000px;}
.wsd_c01380{word-spacing:6.360000px;}
._37_c01380{margin-left:-28.275000px;}
._38_c01380{margin-left:-23.631000px;}
._32_c01380{margin-left:-16.800000px;}
._2a_c01380{margin-left:-14.892000px;}
._11_c01380{margin-left:-13.482000px;}
._21_c01380{margin-left:-11.412000px;}
._f_c01380{margin-left:-10.182000px;}
._10_c01380{margin-left:-8.817000px;}
._22_c01380{margin-left:-7.182000px;}
._29_c01380{margin-left:-5.124000px;}
._a_c01380{margin-left:-4.032000px;}
._12_c01380{margin-left:-2.457000px;}
._19_c01380{margin-left:-1.284000px;}
._0_c01380{width:1.512000px;}
._e_c01380{width:3.501000px;}
._1_c01380{width:5.223000px;}
._3_c01380{width:6.993000px;}
._2_c01380{width:8.379000px;}
._b_c01380{width:9.504000px;}
._7_c01380{width:10.584000px;}
._d_c01380{width:11.907000px;}
._1e_c01380{width:13.437000px;}
._5_c01380{width:14.490000px;}
._3b_c01380{width:15.507000px;}
._8_c01380{width:17.199000px;}
._15_c01380{width:18.558000px;}
._6_c01380{width:20.223000px;}
._1a_c01380{width:22.110000px;}
._4_c01380{width:23.445000px;}
._4d_c01380{width:25.137000px;}
._9_c01380{width:27.405000px;}
._26_c01380{width:31.215000px;}
._14_c01380{width:33.747000px;}
._2d_c01380{width:35.124000px;}
._1d_c01380{width:37.536000px;}
._3f_c01380{width:39.186000px;}
._18_c01380{width:40.572000px;}
._c_c01380{width:42.648000px;}
._1b_c01380{width:44.049000px;}
._42_c01380{width:46.206000px;}
._47_c01380{width:48.510000px;}
._20_c01380{width:49.581000px;}
._3e_c01380{width:59.820000px;}
._4c_c01380{width:67.935000px;}
._30_c01380{width:69.384000px;}
._4a_c01380{width:74.136000px;}
._28_c01380{width:75.336000px;}
._3a_c01380{width:83.979000px;}
._27_c01380{width:87.771000px;}
._1c_c01380{width:95.073000px;}
._49_c01380{width:100.968000px;}
._23_c01380{width:106.863000px;}
._2f_c01380{width:123.189000px;}
._3c_c01380{width:134.163000px;}
._17_c01380{width:143.832000px;}
._40_c01380{width:161.514000px;}
._34_c01380{width:230.349000px;}
._44_c01380{width:268.548000px;}
._2b_c01380{width:291.405000px;}
._25_c01380{width:295.458000px;}
._48_c01380{width:296.622000px;}
._39_c01380{width:309.873000px;}
._13_c01380{width:356.643000px;}
._2e_c01380{width:374.367000px;}
._2c_c01380{width:377.322000px;}
._3d_c01380{width:408.936000px;}
._24_c01380{width:427.179000px;}
._46_c01380{width:436.512000px;}
._45_c01380{width:483.738000px;}
._35_c01380{width:623.952000px;}
._43_c01380{width:658.491000px;}
._36_c01380{width:664.839000px;}
._33_c01380{width:735.711000px;}
._16_c01380{width:769.437000px;}
._41_c01380{width:826.380000px;}
._4b_c01380{width:853.413000px;}
._1f_c01380{width:1056.123000px;}
._31_c01380{width:1221.243000px;}
.fc2_c01380{color:transparent;}
.fc1_c01380{color:rgb(128,128,128);}
.fc0_c01380{color:rgb(0,0,0);}
.fs7_c01380{font-size:48.000000px;}
.fs2_c01380{font-size:60.000000px;}
.fs0_c01380{font-size:63.000000px;}
.fs3_c01380{font-size:66.000000px;}
.fs4_c01380{font-size:72.000000px;}
.fs1_c01380{font-size:81.000000px;}
.fs5_c01380{font-size:93.000000px;}
.fs6_c01380{font-size:177.000000px;}
.y0_c01380{bottom:0.000000px;}
.y25_c01380{bottom:3.105000px;}
.y24_c01380{bottom:7.228355px;}
.y23_c01380{bottom:28.635000px;}
.y22_c01380{bottom:51.585000px;}
.y21_c01380{bottom:77.835000px;}
.y20_c01380{bottom:101.235000px;}
.y1f_c01380{bottom:127.485000px;}
.y1e_c01380{bottom:150.435000px;}
.y1d_c01380{bottom:175.185000px;}
.y1c_c01380{bottom:200.685000px;}
.y1b_c01380{bottom:222.735000px;}
.y1a_c01380{bottom:250.335000px;}
.y19_c01380{bottom:274.935000px;}
.y18_c01380{bottom:299.385000px;}
.y17_c01380{bottom:323.985000px;}
.y16_c01380{bottom:347.835000px;}
.y15_c01380{bottom:372.585000px;}
.y14_c01380{bottom:396.585000px;}
.y13_c01380{bottom:420.885000px;}
.y12_c01380{bottom:444.735000px;}
.y11_c01380{bottom:465.735000px;}
.y10_c01380{bottom:492.435000px;}
.yf_c01380{bottom:516.285000px;}
.ye_c01380{bottom:539.535000px;}
.yd_c01380{bottom:564.285000px;}
.yc_c01380{bottom:587.835000px;}
.yb_c01380{bottom:613.485000px;}
.ya_c01380{bottom:635.535000px;}
.y9_c01380{bottom:657.135000px;}
.y8_c01380{bottom:685.335000px;}
.y7_c01380{bottom:709.635000px;}
.y6_c01380{bottom:732.285000px;}
.y5_c01380{bottom:755.685000px;}
.y4_c01380{bottom:779.835000px;}
.y3_c01380{bottom:804.885000px;}
.y2_c01380{bottom:826.785000px;}
.y1_c01380{bottom:853.185000px;}
.h9_c01380{height:13.200074px;}
.ha_c01380{height:43.804688px;}
.h4_c01380{height:61.800293px;}
.h2_c01380{height:61.831055px;}
.h6_c01380{height:66.515625px;}
.h3_c01380{height:79.497070px;}
.h5_c01380{height:84.269531px;}
.h7_c01380{height:91.274414px;}
.h8_c01380{height:188.859000px;}
.h1_c01380{height:942.750000px;}
.h0_c01380{height:942.825000px;}
.w2_c01380{width:104.875500px;}
.w1_c01380{width:642.000000px;}
.w0_c01380{width:642.075000px;}
.x0_c01380{left:0.000000px;}
.x15_c01380{left:27.000000px;}
.x1_c01380{left:35.400000px;}
.x3_c01380{left:37.200000px;}
.x6_c01380{left:40.500000px;}
.x9_c01380{left:41.550000px;}
.xa_c01380{left:43.200000px;}
.xf_c01380{left:46.200000px;}
.x10_c01380{left:47.250000px;}
.x4_c01380{left:61.350000px;}
.x8_c01380{left:62.550000px;}
.x7_c01380{left:65.100000px;}
.x12_c01380{left:67.500000px;}
.xb_c01380{left:68.700000px;}
.xc_c01380{left:70.650000px;}
.x13_c01380{left:72.450000px;}
.x11_c01380{left:78.300000px;}
.x5_c01380{left:121.200000px;}
.x2_c01380{left:124.500000px;}
.xd_c01380{left:135.900000px;}
.x14_c01380{left:140.700000px;}
.xe_c01380{left:144.600000px;}
.x17_c01380{left:272.851730px;}
.x16_c01380{left:473.700000px;}
@media print{
.v0_c01380{vertical-align:0.000000pt;}
.ls19_c01380{letter-spacing:0.000000pt;}
.ls12_c01380{letter-spacing:0.400000pt;}
.ls4_c01380{letter-spacing:2.533333pt;}
.ls13_c01380{letter-spacing:2.613333pt;}
.lsa_c01380{letter-spacing:2.666667pt;}
.lsc_c01380{letter-spacing:5.200000pt;}
.ls10_c01380{letter-spacing:5.333333pt;}
.ls8_c01380{letter-spacing:5.866667pt;}
.lsf_c01380{letter-spacing:7.333333pt;}
.ls1a_c01380{letter-spacing:8.000000pt;}
.lsd_c01380{letter-spacing:8.018667pt;}
.ls17_c01380{letter-spacing:9.333333pt;}
.ls7_c01380{letter-spacing:10.400000pt;}
.ls1b_c01380{letter-spacing:10.666667pt;}
.ls16_c01380{letter-spacing:10.933333pt;}
.ls14_c01380{letter-spacing:12.264000pt;}
.lse_c01380{letter-spacing:13.600000pt;}
.ls18_c01380{letter-spacing:22.234667pt;}
.ls0_c01380{letter-spacing:30.266667pt;}
.ls15_c01380{letter-spacing:30.832000pt;}
.ls6_c01380{letter-spacing:34.400000pt;}
.lsb_c01380{letter-spacing:35.242667pt;}
.ls11_c01380{letter-spacing:174.266667pt;}
.ls2_c01380{letter-spacing:264.933333pt;}
.ls1_c01380{letter-spacing:282.000000pt;}
.ls3_c01380{letter-spacing:438.266667pt;}
.ls9_c01380{letter-spacing:882.533333pt;}
.ls5_c01380{letter-spacing:901.200000pt;}
.wsa_c01380{word-spacing:-46.218667pt;}
.ws9_c01380{word-spacing:-43.285333pt;}
.wsb_c01380{word-spacing:-26.264000pt;}
.wsc_c01380{word-spacing:-24.666667pt;}
.ws5_c01380{word-spacing:-22.000000pt;}
.ws6_c01380{word-spacing:-19.333333pt;}
.ws3_c01380{word-spacing:-18.000000pt;}
.ws0_c01380{word-spacing:-14.000000pt;}
.ws7_c01380{word-spacing:-2.464000pt;}
.ws2_c01380{word-spacing:-2.240000pt;}
.ws1_c01380{word-spacing:-1.888000pt;}
.ws8_c01380{word-spacing:-1.736000pt;}
.wse_c01380{word-spacing:-1.400000pt;}
.wsf_c01380{word-spacing:0.000000pt;}
.ws4_c01380{word-spacing:0.784000pt;}
.wsd_c01380{word-spacing:5.653333pt;}
._37_c01380{margin-left:-25.133333pt;}
._38_c01380{margin-left:-21.005333pt;}
._32_c01380{margin-left:-14.933333pt;}
._2a_c01380{margin-left:-13.237333pt;}
._11_c01380{margin-left:-11.984000pt;}
._21_c01380{margin-left:-10.144000pt;}
._f_c01380{margin-left:-9.050667pt;}
._10_c01380{margin-left:-7.837333pt;}
._22_c01380{margin-left:-6.384000pt;}
._29_c01380{margin-left:-4.554667pt;}
._a_c01380{margin-left:-3.584000pt;}
._12_c01380{margin-left:-2.184000pt;}
._19_c01380{margin-left:-1.141333pt;}
._0_c01380{width:1.344000pt;}
._e_c01380{width:3.112000pt;}
._1_c01380{width:4.642667pt;}
._3_c01380{width:6.216000pt;}
._2_c01380{width:7.448000pt;}
._b_c01380{width:8.448000pt;}
._7_c01380{width:9.408000pt;}
._d_c01380{width:10.584000pt;}
._1e_c01380{width:11.944000pt;}
._5_c01380{width:12.880000pt;}
._3b_c01380{width:13.784000pt;}
._8_c01380{width:15.288000pt;}
._15_c01380{width:16.496000pt;}
._6_c01380{width:17.976000pt;}
._1a_c01380{width:19.653333pt;}
._4_c01380{width:20.840000pt;}
._4d_c01380{width:22.344000pt;}
._9_c01380{width:24.360000pt;}
._26_c01380{width:27.746667pt;}
._14_c01380{width:29.997333pt;}
._2d_c01380{width:31.221333pt;}
._1d_c01380{width:33.365333pt;}
._3f_c01380{width:34.832000pt;}
._18_c01380{width:36.064000pt;}
._c_c01380{width:37.909333pt;}
._1b_c01380{width:39.154667pt;}
._42_c01380{width:41.072000pt;}
._47_c01380{width:43.120000pt;}
._20_c01380{width:44.072000pt;}
._3e_c01380{width:53.173333pt;}
._4c_c01380{width:60.386667pt;}
._30_c01380{width:61.674667pt;}
._4a_c01380{width:65.898667pt;}
._28_c01380{width:66.965333pt;}
._3a_c01380{width:74.648000pt;}
._27_c01380{width:78.018667pt;}
._1c_c01380{width:84.509333pt;}
._49_c01380{width:89.749333pt;}
._23_c01380{width:94.989333pt;}
._2f_c01380{width:109.501333pt;}
._3c_c01380{width:119.256000pt;}
._17_c01380{width:127.850667pt;}
._40_c01380{width:143.568000pt;}
._34_c01380{width:204.754667pt;}
._44_c01380{width:238.709333pt;}
._2b_c01380{width:259.026667pt;}
._25_c01380{width:262.629333pt;}
._48_c01380{width:263.664000pt;}
._39_c01380{width:275.442667pt;}
._13_c01380{width:317.016000pt;}
._2e_c01380{width:332.770667pt;}
._2c_c01380{width:335.397333pt;}
._3d_c01380{width:363.498667pt;}
._24_c01380{width:379.714667pt;}
._46_c01380{width:388.010667pt;}
._45_c01380{width:429.989333pt;}
._35_c01380{width:554.624000pt;}
._43_c01380{width:585.325333pt;}
._36_c01380{width:590.968000pt;}
._33_c01380{width:653.965333pt;}
._16_c01380{width:683.944000pt;}
._41_c01380{width:734.560000pt;}
._4b_c01380{width:758.589333pt;}
._1f_c01380{width:938.776000pt;}
._31_c01380{width:1085.549333pt;}
.fs7_c01380{font-size:42.666667pt;}
.fs2_c01380{font-size:53.333333pt;}
.fs0_c01380{font-size:56.000000pt;}
.fs3_c01380{font-size:58.666667pt;}
.fs4_c01380{font-size:64.000000pt;}
.fs1_c01380{font-size:72.000000pt;}
.fs5_c01380{font-size:82.666667pt;}
.fs6_c01380{font-size:157.333333pt;}
.y0_c01380{bottom:0.000000pt;}
.y25_c01380{bottom:2.760000pt;}
.y24_c01380{bottom:6.425204pt;}
.y23_c01380{bottom:25.453333pt;}
.y22_c01380{bottom:45.853333pt;}
.y21_c01380{bottom:69.186667pt;}
.y20_c01380{bottom:89.986667pt;}
.y1f_c01380{bottom:113.320000pt;}
.y1e_c01380{bottom:133.720000pt;}
.y1d_c01380{bottom:155.720000pt;}
.y1c_c01380{bottom:178.386667pt;}
.y1b_c01380{bottom:197.986667pt;}
.y1a_c01380{bottom:222.520000pt;}
.y19_c01380{bottom:244.386667pt;}
.y18_c01380{bottom:266.120000pt;}
.y17_c01380{bottom:287.986667pt;}
.y16_c01380{bottom:309.186667pt;}
.y15_c01380{bottom:331.186667pt;}
.y14_c01380{bottom:352.520000pt;}
.y13_c01380{bottom:374.120000pt;}
.y12_c01380{bottom:395.320000pt;}
.y11_c01380{bottom:413.986667pt;}
.y10_c01380{bottom:437.720000pt;}
.yf_c01380{bottom:458.920000pt;}
.ye_c01380{bottom:479.586667pt;}
.yd_c01380{bottom:501.586667pt;}
.yc_c01380{bottom:522.520000pt;}
.yb_c01380{bottom:545.320000pt;}
.ya_c01380{bottom:564.920000pt;}
.y9_c01380{bottom:584.120000pt;}
.y8_c01380{bottom:609.186667pt;}
.y7_c01380{bottom:630.786667pt;}
.y6_c01380{bottom:650.920000pt;}
.y5_c01380{bottom:671.720000pt;}
.y4_c01380{bottom:693.186667pt;}
.y3_c01380{bottom:715.453333pt;}
.y2_c01380{bottom:734.920000pt;}
.y1_c01380{bottom:758.386667pt;}
.h9_c01380{height:11.733399pt;}
.ha_c01380{height:38.937500pt;}
.h4_c01380{height:54.933594pt;}
.h2_c01380{height:54.960938pt;}
.h6_c01380{height:59.125000pt;}
.h3_c01380{height:70.664062pt;}
.h5_c01380{height:74.906250pt;}
.h7_c01380{height:81.132812pt;}
.h8_c01380{height:167.874667pt;}
.h1_c01380{height:838.000000pt;}
.h0_c01380{height:838.066667pt;}
.w2_c01380{width:93.222667pt;}
.w1_c01380{width:570.666667pt;}
.w0_c01380{width:570.733333pt;}
.x0_c01380{left:0.000000pt;}
.x15_c01380{left:24.000000pt;}
.x1_c01380{left:31.466667pt;}
.x3_c01380{left:33.066667pt;}
.x6_c01380{left:36.000000pt;}
.x9_c01380{left:36.933333pt;}
.xa_c01380{left:38.400000pt;}
.xf_c01380{left:41.066667pt;}
.x10_c01380{left:42.000000pt;}
.x4_c01380{left:54.533333pt;}
.x8_c01380{left:55.600000pt;}
.x7_c01380{left:57.866667pt;}
.x12_c01380{left:60.000000pt;}
.xb_c01380{left:61.066667pt;}
.xc_c01380{left:62.800000pt;}
.x13_c01380{left:64.400000pt;}
.x11_c01380{left:69.600000pt;}
.x5_c01380{left:107.733333pt;}
.x2_c01380{left:110.666667pt;}
.xd_c01380{left:120.800000pt;}
.x14_c01380{left:125.066667pt;}
.xe_c01380{left:128.533333pt;}
.x17_c01380{left:242.534871pt;}
.x16_c01380{left:421.066667pt;}
}





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

.ir_c01381:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01381{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01381;src:url('chunks/assets/font_98d8b215ea8c7908078dd1ac.woff2')format("woff");}.ff1_c01381{font-family:ff1_c01381;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01381;src:url('chunks/assets/font_f498c5cb40422fa2d5065340.woff2')format("woff");}.ff2_c01381{font-family:ff2_c01381;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01381;src:url('chunks/assets/font_94290b276a12b6868626059e.woff2')format("woff");}.ff3_c01381{font-family:ff3_c01381;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01381;src:url('chunks/assets/font_d4c9e1425d75656249471f64.woff2')format("woff");}.ff4_c01381{font-family:ff4_c01381;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01381;src:url('chunks/assets/font_6f96b4e13d44f94f3bcadf0e.woff2')format("woff");}.ff5_c01381{font-family:ff5_c01381;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01381;src:url('chunks/assets/font_61939148e8da370bbd5eb2fa.woff2')format("woff");}.ff6_c01381{font-family:ff6_c01381;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01381;src:url('chunks/assets/font_b9d71f32310931300ceb8be6.woff2')format("woff");}.ff7_c01381{font-family:ff7_c01381;line-height:1.437000;font-style:normal;font-weight: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_c01381;src:url('chunks/assets/font_8606b1dced5a1e63ae1dcd2d.woff2')format("woff");}.ff8_c01381{font-family:ff8_c01381;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c01381;src:url('chunks/assets/font_62e0c8597b7a49c518503772.woff2')format("woff");}.ff9_c01381{font-family:ff9_c01381;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c01381;src:url('chunks/assets/font_70177f865a1051f918bb0374.woff2')format("woff");}.ffa_c01381{font-family:ffa_c01381;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c01381;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ffb_c01381{font-family:ffb_c01381;line-height:1.219238;font-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_c01381{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m0_c01381{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01381{vertical-align:0.000000px;}
.ls8_c01381{letter-spacing:-9.000000px;}
.lsb_c01381{letter-spacing:-6.000000px;}
.ls6_c01381{letter-spacing:0.000000px;}
.ls2_c01381{letter-spacing:0.294000px;}
.ls4_c01381{letter-spacing:3.000000px;}
.ls3_c01381{letter-spacing:3.294000px;}
.ls5_c01381{letter-spacing:5.100000px;}
.ls1_c01381{letter-spacing:5.415000px;}
.ls0_c01381{letter-spacing:6.000000px;}
.ls9_c01381{letter-spacing:9.000000px;}
.lsa_c01381{letter-spacing:12.000000px;}
.ls7_c01381{letter-spacing:15.000000px;}
.sc__c01381{text-shadow:none;}
.sc0_c01381{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01381{-webkit-text-stroke:0px transparent;}
.sc0_c01381{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c01381{word-spacing:-73.686000px;}
.wsa_c01381{word-spacing:-49.032000px;}
.wsc_c01381{word-spacing:-37.500000px;}
.wsd_c01381{word-spacing:-30.000000px;}
.ws4_c01381{word-spacing:-28.500000px;}
.ws6_c01381{word-spacing:-28.098000px;}
.wsb_c01381{word-spacing:-26.250000px;}
.ws7_c01381{word-spacing:-24.906000px;}
.ws9_c01381{word-spacing:-22.500000px;}
.ws8_c01381{word-spacing:-20.526000px;}
.ws3_c01381{word-spacing:-20.250000px;}
.ws0_c01381{word-spacing:-17.250000px;}
.wse_c01381{word-spacing:-15.906000px;}
.ws2_c01381{word-spacing:-15.183000px;}
.ws1_c01381{word-spacing:-8.352000px;}
.wsf_c01381{word-spacing:0.000000px;}
._2d_c01381{margin-left:-85.674000px;}
._21_c01381{margin-left:-40.875000px;}
._37_c01381{margin-left:-35.178000px;}
._24_c01381{margin-left:-29.465909px;}
._26_c01381{margin-left:-25.146000px;}
._33_c01381{margin-left:-22.359000px;}
._2b_c01381{margin-left:-20.769000px;}
._16_c01381{margin-left:-17.781000px;}
._30_c01381{margin-left:-15.801000px;}
._12_c01381{margin-left:-14.661000px;}
._36_c01381{margin-left:-13.593000px;}
._1c_c01381{margin-left:-12.276000px;}
._11_c01381{margin-left:-11.076000px;}
._2c_c01381{margin-left:-9.726000px;}
._e_c01381{margin-left:-8.007000px;}
._f_c01381{margin-left:-6.003000px;}
._a_c01381{margin-left:-4.272000px;}
._32_c01381{margin-left:-3.270000px;}
._14_c01381{margin-left:-2.265000px;}
._4_c01381{margin-left:-1.035000px;}
._9_c01381{width:1.704000px;}
._5_c01381{width:3.036000px;}
._0_c01381{width:4.485000px;}
._1_c01381{width:6.210000px;}
._3_c01381{width:7.383000px;}
._2_c01381{width:9.039000px;}
._1b_c01381{width:10.647000px;}
._7_c01381{width:11.868000px;}
._35_c01381{width:13.005000px;}
._6_c01381{width:14.076000px;}
._8_c01381{width:15.180000px;}
._17_c01381{width:17.739000px;}
._25_c01381{width:18.834000px;}
._27_c01381{width:20.964000px;}
._22_c01381{width:22.974000px;}
._c_c01381{width:28.032000px;}
._20_c01381{width:29.403000px;}
._15_c01381{width:34.047000px;}
._28_c01381{width:35.589000px;}
._3a_c01381{width:37.383000px;}
._1e_c01381{width:39.429000px;}
._29_c01381{width:41.472000px;}
._31_c01381{width:43.509000px;}
._13_c01381{width:44.532000px;}
._18_c01381{width:46.638000px;}
._d_c01381{width:48.624000px;}
._2f_c01381{width:49.773000px;}
._1d_c01381{width:52.494000px;}
._23_c01381{width:68.655000px;}
._38_c01381{width:70.851000px;}
._10_c01381{width:77.832000px;}
._2e_c01381{width:101.007000px;}
._1f_c01381{width:105.612000px;}
._39_c01381{width:112.596000px;}
._2a_c01381{width:118.947000px;}
._34_c01381{width:212.931000px;}
._19_c01381{width:254.829000px;}
._1a_c01381{width:321.717000px;}
._b_c01381{width:495.408000px;}
.fc2_c01381{color:transparent;}
.fc1_c01381{color:rgb(128,128,128);}
.fc0_c01381{color:rgb(0,0,0);}
.fs1_c01381{font-size:48.000000px;}
.fs7_c01381{font-size:60.000000px;}
.fs4_c01381{font-size:63.000000px;}
.fs5_c01381{font-size:66.000000px;}
.fs0_c01381{font-size:69.000000px;}
.fs3_c01381{font-size:72.000000px;}
.fs2_c01381{font-size:81.000000px;}
.fs6_c01381{font-size:87.000000px;}
.fs8_c01381{font-size:90.000000px;}
.y0_c01381{bottom:0.000000px;}
.y40_c01381{bottom:3.105000px;}
.y3f_c01381{bottom:7.228369px;}
.y3e_c01381{bottom:47.220000px;}
.y3d_c01381{bottom:69.420000px;}
.y20_c01381{bottom:91.170000px;}
.y3c_c01381{bottom:94.170000px;}
.y1f_c01381{bottom:112.620000px;}
.y3b_c01381{bottom:117.720000px;}
.y1e_c01381{bottom:140.670000px;}
.y3a_c01381{bottom:142.470000px;}
.y39_c01381{bottom:165.420000px;}
.y1d_c01381{bottom:166.620000px;}
.y38_c01381{bottom:191.370000px;}
.y1c_c01381{bottom:196.470000px;}
.y1b_c01381{bottom:215.220000px;}
.y37_c01381{bottom:215.970000px;}
.y1a_c01381{bottom:239.670000px;}
.y36_c01381{bottom:241.020000px;}
.y19_c01381{bottom:265.170000px;}
.y18_c01381{bottom:288.570000px;}
.y35_c01381{bottom:290.520000px;}
.y17_c01381{bottom:312.120000px;}
.y34_c01381{bottom:313.920000px;}
.y16_c01381{bottom:338.220000px;}
.y33_c01381{bottom:339.420000px;}
.y15_c01381{bottom:363.420000px;}
.y32_c01381{bottom:363.720000px;}
.y14_c01381{bottom:387.720000px;}
.y31_c01381{bottom:389.520000px;}
.y13_c01381{bottom:412.470000px;}
.y30_c01381{bottom:413.670000px;}
.y2f_c01381{bottom:437.370000px;}
.y12_c01381{bottom:461.970000px;}
.y11_c01381{bottom:485.670000px;}
.y2e_c01381{bottom:489.420000px;}
.y10_c01381{bottom:510.870000px;}
.y2d_c01381{bottom:512.220000px;}
.yf_c01381{bottom:534.570000px;}
.y2c_c01381{bottom:538.020000px;}
.ye_c01381{bottom:544.620000px;}
.yd_c01381{bottom:559.470000px;}
.yc_c01381{bottom:583.470000px;}
.y2b_c01381{bottom:584.820000px;}
.y2a_c01381{bottom:608.520000px;}
.yb_c01381{bottom:608.820000px;}
.ya_c01381{bottom:632.370000px;}
.y29_c01381{bottom:633.120000px;}
.y9_c01381{bottom:657.420000px;}
.y28_c01381{bottom:658.770000px;}
.y8_c01381{bottom:681.720000px;}
.y7_c01381{bottom:705.270000px;}
.y27_c01381{bottom:706.770000px;}
.y6_c01381{bottom:730.620000px;}
.y26_c01381{bottom:755.220000px;}
.y5_c01381{bottom:778.620000px;}
.y25_c01381{bottom:779.520000px;}
.y4_c01381{bottom:802.920000px;}
.y24_c01381{bottom:803.520000px;}
.y3_c01381{bottom:827.820000px;}
.y23_c01381{bottom:828.570000px;}
.y2_c01381{bottom:851.220000px;}
.y22_c01381{bottom:852.570000px;}
.y21_c01381{bottom:875.820000px;}
.y1_c01381{bottom:876.420000px;}
.h11_c01381{height:13.200073px;}
.h12_c01381{height:43.804688px;}
.h3_c01381{height:48.375000px;}
.h10_c01381{height:58.857422px;}
.hd_c01381{height:64.775391px;}
.h7_c01381{height:69.539062px;}
.h2_c01381{height:72.312000px;}
.he_c01381{height:72.562500px;}
.h5_c01381{height:73.735840px;}
.ha_c01381{height:77.247070px;}
.hc_c01381{height:79.497070px;}
.hb_c01381{height:83.563477px;}
.h4_c01381{height:84.269531px;}
.h6_c01381{height:87.361816px;}
.hf_c01381{height:90.703125px;}
.h8_c01381{height:91.176000px;}
.h9_c01381{height:110.151855px;}
.h1_c01381{height:972.750000px;}
.h0_c01381{height:973.050000px;}
.w2_c01381{width:104.875500px;}
.w0_c01381{width:658.275000px;}
.w1_c01381{width:658.500000px;}
.x0_c01381{left:0.000000px;}
.xf_c01381{left:96.150000px;}
.x3_c01381{left:97.800000px;}
.x5_c01381{left:100.350000px;}
.x4_c01381{left:101.550000px;}
.x6_c01381{left:102.600000px;}
.xd_c01381{left:105.000000px;}
.x9_c01381{left:106.350000px;}
.xe_c01381{left:108.300000px;}
.x10_c01381{left:110.700000px;}
.x13_c01381{left:115.500000px;}
.x1_c01381{left:119.850000px;}
.x2_c01381{left:123.300000px;}
.x8_c01381{left:126.300000px;}
.xb_c01381{left:129.000000px;}
.xa_c01381{left:130.650000px;}
.x12_c01381{left:136.800000px;}
.x11_c01381{left:181.200000px;}
.x15_c01381{left:208.350000px;}
.xc_c01381{left:248.400000px;}
.x7_c01381{left:253.350000px;}
.x14_c01381{left:261.000000px;}
.x2c_c01381{left:280.951767px;}
.x2a_c01381{left:372.000000px;}
.x1a_c01381{left:375.000000px;}
.x18_c01381{left:377.400000px;}
.x17_c01381{left:378.750000px;}
.x1d_c01381{left:382.800000px;}
.x1e_c01381{left:384.150000px;}
.x1f_c01381{left:387.150000px;}
.x21_c01381{left:388.200000px;}
.x23_c01381{left:389.250000px;}
.x27_c01381{left:390.450000px;}
.x25_c01381{left:391.500000px;}
.x29_c01381{left:393.150000px;}
.x19_c01381{left:401.250000px;}
.x1b_c01381{left:405.000000px;}
.x1c_c01381{left:406.800000px;}
.x20_c01381{left:409.350000px;}
.x22_c01381{left:410.700000px;}
.x24_c01381{left:412.050000px;}
.x26_c01381{left:413.850000px;}
.x28_c01381{left:415.500000px;}
.x16_c01381{left:470.850000px;}
.x2b_c01381{left:592.950000px;}
@media print{
.v0_c01381{vertical-align:0.000000pt;}
.ls8_c01381{letter-spacing:-8.000000pt;}
.lsb_c01381{letter-spacing:-5.333333pt;}
.ls6_c01381{letter-spacing:0.000000pt;}
.ls2_c01381{letter-spacing:0.261333pt;}
.ls4_c01381{letter-spacing:2.666667pt;}
.ls3_c01381{letter-spacing:2.928000pt;}
.ls5_c01381{letter-spacing:4.533333pt;}
.ls1_c01381{letter-spacing:4.813333pt;}
.ls0_c01381{letter-spacing:5.333333pt;}
.ls9_c01381{letter-spacing:8.000000pt;}
.lsa_c01381{letter-spacing:10.666667pt;}
.ls7_c01381{letter-spacing:13.333333pt;}
.ws5_c01381{word-spacing:-65.498667pt;}
.wsa_c01381{word-spacing:-43.584000pt;}
.wsc_c01381{word-spacing:-33.333333pt;}
.wsd_c01381{word-spacing:-26.666667pt;}
.ws4_c01381{word-spacing:-25.333333pt;}
.ws6_c01381{word-spacing:-24.976000pt;}
.wsb_c01381{word-spacing:-23.333333pt;}
.ws7_c01381{word-spacing:-22.138667pt;}
.ws9_c01381{word-spacing:-20.000000pt;}
.ws8_c01381{word-spacing:-18.245333pt;}
.ws3_c01381{word-spacing:-18.000000pt;}
.ws0_c01381{word-spacing:-15.333333pt;}
.wse_c01381{word-spacing:-14.138667pt;}
.ws2_c01381{word-spacing:-13.496000pt;}
.ws1_c01381{word-spacing:-7.424000pt;}
.wsf_c01381{word-spacing:0.000000pt;}
._2d_c01381{margin-left:-76.154667pt;}
._21_c01381{margin-left:-36.333333pt;}
._37_c01381{margin-left:-31.269333pt;}
._24_c01381{margin-left:-26.191919pt;}
._26_c01381{margin-left:-22.352000pt;}
._33_c01381{margin-left:-19.874667pt;}
._2b_c01381{margin-left:-18.461333pt;}
._16_c01381{margin-left:-15.805333pt;}
._30_c01381{margin-left:-14.045333pt;}
._12_c01381{margin-left:-13.032000pt;}
._36_c01381{margin-left:-12.082667pt;}
._1c_c01381{margin-left:-10.912000pt;}
._11_c01381{margin-left:-9.845333pt;}
._2c_c01381{margin-left:-8.645333pt;}
._e_c01381{margin-left:-7.117333pt;}
._f_c01381{margin-left:-5.336000pt;}
._a_c01381{margin-left:-3.797333pt;}
._32_c01381{margin-left:-2.906667pt;}
._14_c01381{margin-left:-2.013333pt;}
._4_c01381{margin-left:-0.920000pt;}
._9_c01381{width:1.514667pt;}
._5_c01381{width:2.698667pt;}
._0_c01381{width:3.986667pt;}
._1_c01381{width:5.520000pt;}
._3_c01381{width:6.562667pt;}
._2_c01381{width:8.034667pt;}
._1b_c01381{width:9.464000pt;}
._7_c01381{width:10.549333pt;}
._35_c01381{width:11.560000pt;}
._6_c01381{width:12.512000pt;}
._8_c01381{width:13.493333pt;}
._17_c01381{width:15.768000pt;}
._25_c01381{width:16.741333pt;}
._27_c01381{width:18.634667pt;}
._22_c01381{width:20.421333pt;}
._c_c01381{width:24.917333pt;}
._20_c01381{width:26.136000pt;}
._15_c01381{width:30.264000pt;}
._28_c01381{width:31.634667pt;}
._3a_c01381{width:33.229333pt;}
._1e_c01381{width:35.048000pt;}
._29_c01381{width:36.864000pt;}
._31_c01381{width:38.674667pt;}
._13_c01381{width:39.584000pt;}
._18_c01381{width:41.456000pt;}
._d_c01381{width:43.221333pt;}
._2f_c01381{width:44.242667pt;}
._1d_c01381{width:46.661333pt;}
._23_c01381{width:61.026667pt;}
._38_c01381{width:62.978667pt;}
._10_c01381{width:69.184000pt;}
._2e_c01381{width:89.784000pt;}
._1f_c01381{width:93.877333pt;}
._39_c01381{width:100.085333pt;}
._2a_c01381{width:105.730667pt;}
._34_c01381{width:189.272000pt;}
._19_c01381{width:226.514667pt;}
._1a_c01381{width:285.970667pt;}
._b_c01381{width:440.362667pt;}
.fs1_c01381{font-size:42.666667pt;}
.fs7_c01381{font-size:53.333333pt;}
.fs4_c01381{font-size:56.000000pt;}
.fs5_c01381{font-size:58.666667pt;}
.fs0_c01381{font-size:61.333333pt;}
.fs3_c01381{font-size:64.000000pt;}
.fs2_c01381{font-size:72.000000pt;}
.fs6_c01381{font-size:77.333333pt;}
.fs8_c01381{font-size:80.000000pt;}
.y0_c01381{bottom:0.000000pt;}
.y40_c01381{bottom:2.760000pt;}
.y3f_c01381{bottom:6.425217pt;}
.y3e_c01381{bottom:41.973333pt;}
.y3d_c01381{bottom:61.706667pt;}
.y20_c01381{bottom:81.040000pt;}
.y3c_c01381{bottom:83.706667pt;}
.y1f_c01381{bottom:100.106667pt;}
.y3b_c01381{bottom:104.640000pt;}
.y1e_c01381{bottom:125.040000pt;}
.y3a_c01381{bottom:126.640000pt;}
.y39_c01381{bottom:147.040000pt;}
.y1d_c01381{bottom:148.106667pt;}
.y38_c01381{bottom:170.106667pt;}
.y1c_c01381{bottom:174.640000pt;}
.y1b_c01381{bottom:191.306667pt;}
.y37_c01381{bottom:191.973333pt;}
.y1a_c01381{bottom:213.040000pt;}
.y36_c01381{bottom:214.240000pt;}
.y19_c01381{bottom:235.706667pt;}
.y18_c01381{bottom:256.506667pt;}
.y35_c01381{bottom:258.240000pt;}
.y17_c01381{bottom:277.440000pt;}
.y34_c01381{bottom:279.040000pt;}
.y16_c01381{bottom:300.640000pt;}
.y33_c01381{bottom:301.706667pt;}
.y15_c01381{bottom:323.040000pt;}
.y32_c01381{bottom:323.306667pt;}
.y14_c01381{bottom:344.640000pt;}
.y31_c01381{bottom:346.240000pt;}
.y13_c01381{bottom:366.640000pt;}
.y30_c01381{bottom:367.706667pt;}
.y2f_c01381{bottom:388.773333pt;}
.y12_c01381{bottom:410.640000pt;}
.y11_c01381{bottom:431.706667pt;}
.y2e_c01381{bottom:435.040000pt;}
.y10_c01381{bottom:454.106667pt;}
.y2d_c01381{bottom:455.306667pt;}
.yf_c01381{bottom:475.173333pt;}
.y2c_c01381{bottom:478.240000pt;}
.ye_c01381{bottom:484.106667pt;}
.yd_c01381{bottom:497.306667pt;}
.yc_c01381{bottom:518.640000pt;}
.y2b_c01381{bottom:519.840000pt;}
.y2a_c01381{bottom:540.906667pt;}
.yb_c01381{bottom:541.173333pt;}
.ya_c01381{bottom:562.106667pt;}
.y29_c01381{bottom:562.773333pt;}
.y9_c01381{bottom:584.373333pt;}
.y28_c01381{bottom:585.573333pt;}
.y8_c01381{bottom:605.973333pt;}
.y7_c01381{bottom:626.906667pt;}
.y27_c01381{bottom:628.240000pt;}
.y6_c01381{bottom:649.440000pt;}
.y26_c01381{bottom:671.306667pt;}
.y5_c01381{bottom:692.106667pt;}
.y25_c01381{bottom:692.906667pt;}
.y4_c01381{bottom:713.706667pt;}
.y24_c01381{bottom:714.240000pt;}
.y3_c01381{bottom:735.840000pt;}
.y23_c01381{bottom:736.506667pt;}
.y2_c01381{bottom:756.640000pt;}
.y22_c01381{bottom:757.840000pt;}
.y21_c01381{bottom:778.506667pt;}
.y1_c01381{bottom:779.040000pt;}
.h11_c01381{height:11.733399pt;}
.h12_c01381{height:38.937500pt;}
.h3_c01381{height:43.000000pt;}
.h10_c01381{height:52.317708pt;}
.hd_c01381{height:57.578125pt;}
.h7_c01381{height:61.812500pt;}
.h2_c01381{height:64.277333pt;}
.he_c01381{height:64.500000pt;}
.h5_c01381{height:65.542969pt;}
.ha_c01381{height:68.664062pt;}
.hc_c01381{height:70.664062pt;}
.hb_c01381{height:74.278646pt;}
.h4_c01381{height:74.906250pt;}
.h6_c01381{height:77.654948pt;}
.hf_c01381{height:80.625000pt;}
.h8_c01381{height:81.045333pt;}
.h9_c01381{height:97.912760pt;}
.h1_c01381{height:864.666667pt;}
.h0_c01381{height:864.933333pt;}
.w2_c01381{width:93.222667pt;}
.w0_c01381{width:585.133333pt;}
.w1_c01381{width:585.333333pt;}
.x0_c01381{left:0.000000pt;}
.xf_c01381{left:85.466667pt;}
.x3_c01381{left:86.933333pt;}
.x5_c01381{left:89.200000pt;}
.x4_c01381{left:90.266667pt;}
.x6_c01381{left:91.200000pt;}
.xd_c01381{left:93.333333pt;}
.x9_c01381{left:94.533333pt;}
.xe_c01381{left:96.266667pt;}
.x10_c01381{left:98.400000pt;}
.x13_c01381{left:102.666667pt;}
.x1_c01381{left:106.533333pt;}
.x2_c01381{left:109.600000pt;}
.x8_c01381{left:112.266667pt;}
.xb_c01381{left:114.666667pt;}
.xa_c01381{left:116.133333pt;}
.x12_c01381{left:121.600000pt;}
.x11_c01381{left:161.066667pt;}
.x15_c01381{left:185.200000pt;}
.xc_c01381{left:220.800000pt;}
.x7_c01381{left:225.200000pt;}
.x14_c01381{left:232.000000pt;}
.x2c_c01381{left:249.734904pt;}
.x2a_c01381{left:330.666667pt;}
.x1a_c01381{left:333.333333pt;}
.x18_c01381{left:335.466667pt;}
.x17_c01381{left:336.666667pt;}
.x1d_c01381{left:340.266667pt;}
.x1e_c01381{left:341.466667pt;}
.x1f_c01381{left:344.133333pt;}
.x21_c01381{left:345.066667pt;}
.x23_c01381{left:346.000000pt;}
.x27_c01381{left:347.066667pt;}
.x25_c01381{left:348.000000pt;}
.x29_c01381{left:349.466667pt;}
.x19_c01381{left:356.666667pt;}
.x1b_c01381{left:360.000000pt;}
.x1c_c01381{left:361.600000pt;}
.x20_c01381{left:363.866667pt;}
.x22_c01381{left:365.066667pt;}
.x24_c01381{left:366.266667pt;}
.x26_c01381{left:367.866667pt;}
.x28_c01381{left:369.333333pt;}
.x16_c01381{left:418.533333pt;}
.x2b_c01381{left:527.066667pt;}
}





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

.ir_c01382:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01382{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01382;src:url('chunks/assets/font_52f7bf57c49f826e964f0672.woff2')format("woff");}.ff1_c01382{font-family:ff1_c01382;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01382;src:url('chunks/assets/font_75a131096b74edc721440214.woff2')format("woff");}.ff2_c01382{font-family:ff2_c01382;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01382;src:url('chunks/assets/font_90a7a060607f516d61ab8848.woff2')format("woff");}.ff3_c01382{font-family:ff3_c01382;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01382;src:url('chunks/assets/font_cf40d6f16fd69b4c66d9deb7.woff2')format("woff");}.ff4_c01382{font-family:ff4_c01382;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01382;src:url('chunks/assets/font_18a26d5e0521a93b53106e8b.woff2')format("woff");}.ff5_c01382{font-family:ff5_c01382;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01382;src:url('chunks/assets/font_1c14e1fdfa3f52f25b0a4a9c.woff2')format("woff");}.ff6_c01382{font-family:ff6_c01382;line-height:1.284180;font-style:normal;font-weight: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_c01382;src:url('chunks/assets/font_6418e0eeaf0c813168abd809.woff2')format("woff");}.ff7_c01382{font-family:ff7_c01382;line-height:1.311035;font-style:normal;font-weight: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_c01382;src:url('chunks/assets/font_7fb97a6b36282c3d51b7c473.woff2')format("woff");}.ff8_c01382{font-family:ff8_c01382;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c01382;src:url('chunks/assets/font_d04e7b58341532cc6972b267.woff2')format("woff");}.ff9_c01382{font-family:ff9_c01382;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c01382;src:url('chunks/assets/font_9ae34f48021959b59a6082fd.woff2')format("woff");}.ffa_c01382{font-family:ffa_c01382;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c01382;src:url('chunks/assets/font_f741b4c69c4dbc8451502d73.woff2')format("woff");}.ffb_c01382{font-family:ffb_c01382;line-height:1.401855;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc_c01382;src:url('chunks/assets/font_77abecfbfe05b5449e6545c9.woff2')format("woff");}.ffc_c01382{font-family:ffc_c01382;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd_c01382;src:url('chunks/assets/font_92c82b032da586e295a8ee9a.woff2')format("woff");}.ffd_c01382{font-family:ffd_c01382;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe_c01382;src:url('chunks/assets/font_7e52db246e1e05728c80e4e5.woff2')format("woff");}.ffe_c01382{font-family:ffe_c01382;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff_c01382;src:url('chunks/assets/font_5b53b770fc6b5874cc6ffa84.woff2')format("woff");}.fff_c01382{font-family:fff_c01382;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10_c01382;src:url('chunks/assets/font_3897a291daf627828b5f1926.woff2')format("woff");}.ff10_c01382{font-family:ff10_c01382;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11_c01382;src:url('chunks/assets/font_1b0c4f6256f9a365e1b619d8.woff2')format("woff");}.ff11_c01382{font-family:ff11_c01382;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12_c01382;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff12_c01382{font-family:ff12_c01382;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01382{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01382{vertical-align:0.000000px;}
.ls1a_c01382{letter-spacing:-12.000000px;}
.ls18_c01382{letter-spacing:-6.000000px;}
.ls1b_c01382{letter-spacing:-3.000000px;}
.ls16_c01382{letter-spacing:0.000000px;}
.lsf_c01382{letter-spacing:0.150000px;}
.ls14_c01382{letter-spacing:0.600000px;}
.ls5_c01382{letter-spacing:1.971000px;}
.ls0_c01382{letter-spacing:3.000000px;}
.ls6_c01382{letter-spacing:3.600000px;}
.ls15_c01382{letter-spacing:4.800000px;}
.ls8_c01382{letter-spacing:5.394000px;}
.ls1c_c01382{letter-spacing:6.000000px;}
.ls7_c01382{letter-spacing:6.600000px;}
.ls1_c01382{letter-spacing:7.200000px;}
.ls12_c01382{letter-spacing:7.488000px;}
.ls10_c01382{letter-spacing:7.500000px;}
.ls2_c01382{letter-spacing:8.400000px;}
.ls17_c01382{letter-spacing:9.000000px;}
.ls1d_c01382{letter-spacing:12.000000px;}
.lsd_c01382{letter-spacing:12.600000px;}
.ls4_c01382{letter-spacing:13.200000px;}
.lsc_c01382{letter-spacing:13.800000px;}
.ls19_c01382{letter-spacing:15.000000px;}
.ls13_c01382{letter-spacing:15.900000px;}
.ls9_c01382{letter-spacing:18.000000px;}
.ls3_c01382{letter-spacing:19.500000px;}
.ls11_c01382{letter-spacing:20.316000px;}
.lsa_c01382{letter-spacing:27.600000px;}
.lse_c01382{letter-spacing:33.150000px;}
.lsb_c01382{letter-spacing:48.786000px;}
.sc__c01382{text-shadow:none;}
.sc0_c01382{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01382{-webkit-text-stroke:0px transparent;}
.sc0_c01382{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsf_c01382{word-spacing:-73.686000px;}
.ws8_c01382{word-spacing:-36.600000px;}
.ws10_c01382{word-spacing:-33.000000px;}
.wsd_c01382{word-spacing:-31.629000px;}
.ws12_c01382{word-spacing:-31.500000px;}
.ws7_c01382{word-spacing:-30.000000px;}
.ws1_c01382{word-spacing:-27.000000px;}
.wsa_c01382{word-spacing:-25.500000px;}
.ws6_c01382{word-spacing:-22.500000px;}
.ws9_c01382{word-spacing:-21.144000px;}
.ws0_c01382{word-spacing:-20.250000px;}
.wse_c01382{word-spacing:-19.629000px;}
.wsb_c01382{word-spacing:-19.500000px;}
.ws13_c01382{word-spacing:-19.422000px;}
.ws11_c01382{word-spacing:-18.798000px;}
.ws5_c01382{word-spacing:-18.750000px;}
.ws3_c01382{word-spacing:-17.250000px;}
.ws4_c01382{word-spacing:-11.250000px;}
.wsc_c01382{word-spacing:-0.075000px;}
.ws14_c01382{word-spacing:0.000000px;}
.ws2_c01382{word-spacing:1.932000px;}
._27_c01382{margin-left:-48.000000px;}
._f_c01382{margin-left:-40.248000px;}
._21_c01382{margin-left:-26.082000px;}
._16_c01382{margin-left:-21.354000px;}
._24_c01382{margin-left:-20.217000px;}
._1b_c01382{margin-left:-18.795000px;}
._1e_c01382{margin-left:-17.604000px;}
._2c_c01382{margin-left:-16.515000px;}
._1d_c01382{margin-left:-14.610000px;}
._19_c01382{margin-left:-12.636000px;}
._c_c01382{margin-left:-11.373000px;}
._17_c01382{margin-left:-9.282000px;}
._11_c01382{margin-left:-7.995000px;}
._12_c01382{margin-left:-6.369000px;}
._9_c01382{margin-left:-4.347000px;}
._4_c01382{margin-left:-3.084000px;}
._a_c01382{margin-left:-1.212000px;}
._8_c01382{width:1.164000px;}
._2_c01382{width:2.898000px;}
._0_c01382{width:4.410000px;}
._b_c01382{width:5.451000px;}
._1_c01382{width:7.371000px;}
._6_c01382{width:8.418000px;}
._10_c01382{width:9.603000px;}
._d_c01382{width:10.971000px;}
._e_c01382{width:12.063000px;}
._7_c01382{width:13.179000px;}
._3_c01382{width:14.427000px;}
._5_c01382{width:15.732000px;}
._28_c01382{width:20.400000px;}
._2e_c01382{width:25.836000px;}
._31_c01382{width:26.904000px;}
._13_c01382{width:29.352000px;}
._30_c01382{width:31.761000px;}
._26_c01382{width:35.166000px;}
._2f_c01382{width:37.002000px;}
._1c_c01382{width:40.800000px;}
._1a_c01382{width:42.285000px;}
._29_c01382{width:43.512000px;}
._2d_c01382{width:47.202000px;}
._14_c01382{width:48.375000px;}
._20_c01382{width:51.192000px;}
._1f_c01382{width:60.900000px;}
._25_c01382{width:65.550000px;}
._15_c01382{width:76.431000px;}
._22_c01382{width:77.556000px;}
._2b_c01382{width:79.101000px;}
._18_c01382{width:86.595000px;}
._23_c01382{width:134.532000px;}
._2a_c01382{width:204.849000px;}
.fc2_c01382{color:transparent;}
.fc1_c01382{color:rgb(128,128,128);}
.fc0_c01382{color:rgb(0,0,0);}
.fsc_c01382{font-size:48.000000px;}
.fs7_c01382{font-size:54.000000px;}
.fsb_c01382{font-size:57.000000px;}
.fs6_c01382{font-size:60.000000px;}
.fs0_c01382{font-size:63.000000px;}
.fs4_c01382{font-size:66.000000px;}
.fs1_c01382{font-size:69.000000px;}
.fs3_c01382{font-size:72.000000px;}
.fs8_c01382{font-size:75.000000px;}
.fs5_c01382{font-size:78.000000px;}
.fs2_c01382{font-size:81.000000px;}
.fsa_c01382{font-size:84.000000px;}
.fs9_c01382{font-size:87.000000px;}
.y0_c01382{bottom:0.000000px;}
.y44_c01382{bottom:3.105000px;}
.y43_c01382{bottom:7.228369px;}
.y23_c01382{bottom:61.470000px;}
.y42_c01382{bottom:65.370000px;}
.y22_c01382{bottom:87.120000px;}
.y41_c01382{bottom:88.470000px;}
.y21_c01382{bottom:110.670000px;}
.y40_c01382{bottom:113.970000px;}
.y20_c01382{bottom:136.620000px;}
.y3f_c01382{bottom:137.670000px;}
.y1f_c01382{bottom:156.570000px;}
.y3e_c01382{bottom:162.720000px;}
.y1e_c01382{bottom:185.520000px;}
.y3d_c01382{bottom:186.570000px;}
.y1d_c01382{bottom:208.470000px;}
.y1c_c01382{bottom:233.220000px;}
.y3c_c01382{bottom:235.620000px;}
.y1b_c01382{bottom:257.820000px;}
.y3b_c01382{bottom:260.520000px;}
.y1a_c01382{bottom:281.520000px;}
.y3a_c01382{bottom:284.520000px;}
.y19_c01382{bottom:305.670000px;}
.y39_c01382{bottom:308.820000px;}
.y18_c01382{bottom:322.620000px;}
.y17_c01382{bottom:329.370000px;}
.y38_c01382{bottom:330.420000px;}
.y16_c01382{bottom:353.670000px;}
.y37_c01382{bottom:356.970000px;}
.y15_c01382{bottom:378.570000px;}
.y36_c01382{bottom:381.270000px;}
.y14_c01382{bottom:403.320000px;}
.y35_c01382{bottom:405.270000px;}
.y13_c01382{bottom:426.870000px;}
.y34_c01382{bottom:428.670000px;}
.y12_c01382{bottom:450.870000px;}
.y33_c01382{bottom:453.270000px;}
.y11_c01382{bottom:476.220000px;}
.y32_c01382{bottom:476.820000px;}
.y10_c01382{bottom:498.720000px;}
.y31_c01382{bottom:501.120000px;}
.yf_c01382{bottom:524.070000px;}
.ye_c01382{bottom:546.720000px;}
.y30_c01382{bottom:550.020000px;}
.yd_c01382{bottom:569.970000px;}
.y2f_c01382{bottom:574.020000px;}
.yc_c01382{bottom:590.670000px;}
.y2e_c01382{bottom:597.720000px;}
.yb_c01382{bottom:618.870000px;}
.y2d_c01382{bottom:622.020000px;}
.ya_c01382{bottom:643.620000px;}
.y9_c01382{bottom:666.570000px;}
.y2c_c01382{bottom:670.620000px;}
.y8_c01382{bottom:691.470000px;}
.y2b_c01382{bottom:694.470000px;}
.y7_c01382{bottom:715.470000px;}
.y2a_c01382{bottom:718.170000px;}
.y6_c01382{bottom:739.020000px;}
.y29_c01382{bottom:743.220000px;}
.y5_c01382{bottom:763.020000px;}
.y28_c01382{bottom:766.770000px;}
.y4_c01382{bottom:788.070000px;}
.y27_c01382{bottom:790.770000px;}
.y3_c01382{bottom:811.920000px;}
.y26_c01382{bottom:814.770000px;}
.y25_c01382{bottom:835.320000px;}
.y2_c01382{bottom:836.370000px;}
.y1_c01382{bottom:860.970000px;}
.y24_c01382{bottom:863.370000px;}
.h14_c01382{height:13.200073px;}
.h15_c01382{height:43.804688px;}
.h9_c01382{height:58.886719px;}
.h7_c01382{height:61.800293px;}
.h2_c01382{height:61.831055px;}
.ha_c01382{height:65.040000px;}
.hc_c01382{height:68.370117px;}
.hb_c01382{height:69.168000px;}
.h5_c01382{height:72.312000px;}
.h3_c01382{height:74.796000px;}
.h8_c01382{height:76.552734px;}
.h4_c01382{height:79.497070px;}
.hd_c01382{height:80.025000px;}
.h13_c01382{height:83.226000px;}
.h12_c01382{height:84.269531px;}
.hf_c01382{height:84.656250px;}
.h6_c01382{height:87.361816px;}
.he_c01382{height:91.176000px;}
.h11_c01382{height:98.756836px;}
.h10_c01382{height:110.151855px;}
.h0_c01382{height:970.350000px;}
.h1_c01382{height:970.500000px;}
.w2_c01382{width:104.875500px;}
.w0_c01382{width:660.450000px;}
.w1_c01382{width:660.750000px;}
.x0_c01382{left:0.000000px;}
.xd_c01382{left:25.650000px;}
.xe_c01382{left:27.600000px;}
.x4_c01382{left:30.000000px;}
.x8_c01382{left:31.050000px;}
.x2_c01382{left:35.100000px;}
.x9_c01382{left:36.450000px;}
.x7_c01382{left:37.800000px;}
.xa_c01382{left:39.600000px;}
.x11_c01382{left:42.450000px;}
.x10_c01382{left:43.500000px;}
.x12_c01382{left:44.550000px;}
.x5_c01382{left:56.400000px;}
.x1_c01382{left:58.050000px;}
.xc_c01382{left:61.350000px;}
.xb_c01382{left:62.550000px;}
.xf_c01382{left:65.850000px;}
.x15_c01382{left:68.850000px;}
.x13_c01382{left:70.800000px;}
.x6_c01382{left:80.400000px;}
.x14_c01382{left:85.950000px;}
.x3_c01382{left:123.150000px;}
.x28_c01382{left:282.039230px;}
.x18_c01382{left:307.800000px;}
.x16_c01382{left:308.850000px;}
.x1a_c01382{left:311.550000px;}
.x1d_c01382{left:312.750000px;}
.x1f_c01382{left:314.550000px;}
.x22_c01382{left:316.500000px;}
.x25_c01382{left:317.850000px;}
.x26_c01382{left:321.000000px;}
.x17_c01382{left:330.300000px;}
.x19_c01382{left:334.800000px;}
.x1b_c01382{left:336.150000px;}
.x20_c01382{left:337.200000px;}
.x1e_c01382{left:338.400000px;}
.x23_c01382{left:340.200000px;}
.x1c_c01382{left:343.200000px;}
.x27_c01382{left:362.700000px;}
.x24_c01382{left:363.750000px;}
.x21_c01382{left:370.950000px;}
@media print{
.v0_c01382{vertical-align:0.000000pt;}
.ls1a_c01382{letter-spacing:-10.666667pt;}
.ls18_c01382{letter-spacing:-5.333333pt;}
.ls1b_c01382{letter-spacing:-2.666667pt;}
.ls16_c01382{letter-spacing:0.000000pt;}
.lsf_c01382{letter-spacing:0.133333pt;}
.ls14_c01382{letter-spacing:0.533333pt;}
.ls5_c01382{letter-spacing:1.752000pt;}
.ls0_c01382{letter-spacing:2.666667pt;}
.ls6_c01382{letter-spacing:3.200000pt;}
.ls15_c01382{letter-spacing:4.266667pt;}
.ls8_c01382{letter-spacing:4.794667pt;}
.ls1c_c01382{letter-spacing:5.333333pt;}
.ls7_c01382{letter-spacing:5.866667pt;}
.ls1_c01382{letter-spacing:6.400000pt;}
.ls12_c01382{letter-spacing:6.656000pt;}
.ls10_c01382{letter-spacing:6.666667pt;}
.ls2_c01382{letter-spacing:7.466667pt;}
.ls17_c01382{letter-spacing:8.000000pt;}
.ls1d_c01382{letter-spacing:10.666667pt;}
.lsd_c01382{letter-spacing:11.200000pt;}
.ls4_c01382{letter-spacing:11.733333pt;}
.lsc_c01382{letter-spacing:12.266667pt;}
.ls19_c01382{letter-spacing:13.333333pt;}
.ls13_c01382{letter-spacing:14.133333pt;}
.ls9_c01382{letter-spacing:16.000000pt;}
.ls3_c01382{letter-spacing:17.333333pt;}
.ls11_c01382{letter-spacing:18.058667pt;}
.lsa_c01382{letter-spacing:24.533333pt;}
.lse_c01382{letter-spacing:29.466667pt;}
.lsb_c01382{letter-spacing:43.365333pt;}
.wsf_c01382{word-spacing:-65.498667pt;}
.ws8_c01382{word-spacing:-32.533333pt;}
.ws10_c01382{word-spacing:-29.333333pt;}
.wsd_c01382{word-spacing:-28.114667pt;}
.ws12_c01382{word-spacing:-28.000000pt;}
.ws7_c01382{word-spacing:-26.666667pt;}
.ws1_c01382{word-spacing:-24.000000pt;}
.wsa_c01382{word-spacing:-22.666667pt;}
.ws6_c01382{word-spacing:-20.000000pt;}
.ws9_c01382{word-spacing:-18.794667pt;}
.ws0_c01382{word-spacing:-18.000000pt;}
.wse_c01382{word-spacing:-17.448000pt;}
.wsb_c01382{word-spacing:-17.333333pt;}
.ws13_c01382{word-spacing:-17.264000pt;}
.ws11_c01382{word-spacing:-16.709333pt;}
.ws5_c01382{word-spacing:-16.666667pt;}
.ws3_c01382{word-spacing:-15.333333pt;}
.ws4_c01382{word-spacing:-10.000000pt;}
.wsc_c01382{word-spacing:-0.066667pt;}
.ws14_c01382{word-spacing:0.000000pt;}
.ws2_c01382{word-spacing:1.717333pt;}
._27_c01382{margin-left:-42.666667pt;}
._f_c01382{margin-left:-35.776000pt;}
._21_c01382{margin-left:-23.184000pt;}
._16_c01382{margin-left:-18.981333pt;}
._24_c01382{margin-left:-17.970667pt;}
._1b_c01382{margin-left:-16.706667pt;}
._1e_c01382{margin-left:-15.648000pt;}
._2c_c01382{margin-left:-14.680000pt;}
._1d_c01382{margin-left:-12.986667pt;}
._19_c01382{margin-left:-11.232000pt;}
._c_c01382{margin-left:-10.109333pt;}
._17_c01382{margin-left:-8.250667pt;}
._11_c01382{margin-left:-7.106667pt;}
._12_c01382{margin-left:-5.661333pt;}
._9_c01382{margin-left:-3.864000pt;}
._4_c01382{margin-left:-2.741333pt;}
._a_c01382{margin-left:-1.077333pt;}
._8_c01382{width:1.034667pt;}
._2_c01382{width:2.576000pt;}
._0_c01382{width:3.920000pt;}
._b_c01382{width:4.845333pt;}
._1_c01382{width:6.552000pt;}
._6_c01382{width:7.482667pt;}
._10_c01382{width:8.536000pt;}
._d_c01382{width:9.752000pt;}
._e_c01382{width:10.722667pt;}
._7_c01382{width:11.714667pt;}
._3_c01382{width:12.824000pt;}
._5_c01382{width:13.984000pt;}
._28_c01382{width:18.133333pt;}
._2e_c01382{width:22.965333pt;}
._31_c01382{width:23.914667pt;}
._13_c01382{width:26.090667pt;}
._30_c01382{width:28.232000pt;}
._26_c01382{width:31.258667pt;}
._2f_c01382{width:32.890667pt;}
._1c_c01382{width:36.266667pt;}
._1a_c01382{width:37.586667pt;}
._29_c01382{width:38.677333pt;}
._2d_c01382{width:41.957333pt;}
._14_c01382{width:43.000000pt;}
._20_c01382{width:45.504000pt;}
._1f_c01382{width:54.133333pt;}
._25_c01382{width:58.266667pt;}
._15_c01382{width:67.938667pt;}
._22_c01382{width:68.938667pt;}
._2b_c01382{width:70.312000pt;}
._18_c01382{width:76.973333pt;}
._23_c01382{width:119.584000pt;}
._2a_c01382{width:182.088000pt;}
.fsc_c01382{font-size:42.666667pt;}
.fs7_c01382{font-size:48.000000pt;}
.fsb_c01382{font-size:50.666667pt;}
.fs6_c01382{font-size:53.333333pt;}
.fs0_c01382{font-size:56.000000pt;}
.fs4_c01382{font-size:58.666667pt;}
.fs1_c01382{font-size:61.333333pt;}
.fs3_c01382{font-size:64.000000pt;}
.fs8_c01382{font-size:66.666667pt;}
.fs5_c01382{font-size:69.333333pt;}
.fs2_c01382{font-size:72.000000pt;}
.fsa_c01382{font-size:74.666667pt;}
.fs9_c01382{font-size:77.333333pt;}
.y0_c01382{bottom:0.000000pt;}
.y44_c01382{bottom:2.760000pt;}
.y43_c01382{bottom:6.425217pt;}
.y23_c01382{bottom:54.640000pt;}
.y42_c01382{bottom:58.106667pt;}
.y22_c01382{bottom:77.440000pt;}
.y41_c01382{bottom:78.640000pt;}
.y21_c01382{bottom:98.373333pt;}
.y40_c01382{bottom:101.306667pt;}
.y20_c01382{bottom:121.440000pt;}
.y3f_c01382{bottom:122.373333pt;}
.y1f_c01382{bottom:139.173333pt;}
.y3e_c01382{bottom:144.640000pt;}
.y1e_c01382{bottom:164.906667pt;}
.y3d_c01382{bottom:165.840000pt;}
.y1d_c01382{bottom:185.306667pt;}
.y1c_c01382{bottom:207.306667pt;}
.y3c_c01382{bottom:209.440000pt;}
.y1b_c01382{bottom:229.173333pt;}
.y3b_c01382{bottom:231.573333pt;}
.y1a_c01382{bottom:250.240000pt;}
.y3a_c01382{bottom:252.906667pt;}
.y19_c01382{bottom:271.706667pt;}
.y39_c01382{bottom:274.506667pt;}
.y18_c01382{bottom:286.773333pt;}
.y17_c01382{bottom:292.773333pt;}
.y38_c01382{bottom:293.706667pt;}
.y16_c01382{bottom:314.373333pt;}
.y37_c01382{bottom:317.306667pt;}
.y15_c01382{bottom:336.506667pt;}
.y36_c01382{bottom:338.906667pt;}
.y14_c01382{bottom:358.506667pt;}
.y35_c01382{bottom:360.240000pt;}
.y13_c01382{bottom:379.440000pt;}
.y34_c01382{bottom:381.040000pt;}
.y12_c01382{bottom:400.773333pt;}
.y33_c01382{bottom:402.906667pt;}
.y11_c01382{bottom:423.306667pt;}
.y32_c01382{bottom:423.840000pt;}
.y10_c01382{bottom:443.306667pt;}
.y31_c01382{bottom:445.440000pt;}
.yf_c01382{bottom:465.840000pt;}
.ye_c01382{bottom:485.973333pt;}
.y30_c01382{bottom:488.906667pt;}
.yd_c01382{bottom:506.640000pt;}
.y2f_c01382{bottom:510.240000pt;}
.yc_c01382{bottom:525.040000pt;}
.y2e_c01382{bottom:531.306667pt;}
.yb_c01382{bottom:550.106667pt;}
.y2d_c01382{bottom:552.906667pt;}
.ya_c01382{bottom:572.106667pt;}
.y9_c01382{bottom:592.506667pt;}
.y2c_c01382{bottom:596.106667pt;}
.y8_c01382{bottom:614.640000pt;}
.y2b_c01382{bottom:617.306667pt;}
.y7_c01382{bottom:635.973333pt;}
.y2a_c01382{bottom:638.373333pt;}
.y6_c01382{bottom:656.906667pt;}
.y29_c01382{bottom:660.640000pt;}
.y5_c01382{bottom:678.240000pt;}
.y28_c01382{bottom:681.573333pt;}
.y4_c01382{bottom:700.506667pt;}
.y27_c01382{bottom:702.906667pt;}
.y3_c01382{bottom:721.706667pt;}
.y26_c01382{bottom:724.240000pt;}
.y25_c01382{bottom:742.506667pt;}
.y2_c01382{bottom:743.440000pt;}
.y1_c01382{bottom:765.306667pt;}
.y24_c01382{bottom:767.440000pt;}
.h14_c01382{height:11.733399pt;}
.h15_c01382{height:38.937500pt;}
.h9_c01382{height:52.343750pt;}
.h7_c01382{height:54.933594pt;}
.h2_c01382{height:54.960938pt;}
.ha_c01382{height:57.813333pt;}
.hc_c01382{height:60.773438pt;}
.hb_c01382{height:61.482667pt;}
.h5_c01382{height:64.277333pt;}
.h3_c01382{height:66.485333pt;}
.h8_c01382{height:68.046875pt;}
.h4_c01382{height:70.664062pt;}
.hd_c01382{height:71.133333pt;}
.h13_c01382{height:73.978667pt;}
.h12_c01382{height:74.906250pt;}
.hf_c01382{height:75.250000pt;}
.h6_c01382{height:77.654948pt;}
.he_c01382{height:81.045333pt;}
.h11_c01382{height:87.783854pt;}
.h10_c01382{height:97.912760pt;}
.h0_c01382{height:862.533333pt;}
.h1_c01382{height:862.666667pt;}
.w2_c01382{width:93.222667pt;}
.w0_c01382{width:587.066667pt;}
.w1_c01382{width:587.333333pt;}
.x0_c01382{left:0.000000pt;}
.xd_c01382{left:22.800000pt;}
.xe_c01382{left:24.533333pt;}
.x4_c01382{left:26.666667pt;}
.x8_c01382{left:27.600000pt;}
.x2_c01382{left:31.200000pt;}
.x9_c01382{left:32.400000pt;}
.x7_c01382{left:33.600000pt;}
.xa_c01382{left:35.200000pt;}
.x11_c01382{left:37.733333pt;}
.x10_c01382{left:38.666667pt;}
.x12_c01382{left:39.600000pt;}
.x5_c01382{left:50.133333pt;}
.x1_c01382{left:51.600000pt;}
.xc_c01382{left:54.533333pt;}
.xb_c01382{left:55.600000pt;}
.xf_c01382{left:58.533333pt;}
.x15_c01382{left:61.200000pt;}
.x13_c01382{left:62.933333pt;}
.x6_c01382{left:71.466667pt;}
.x14_c01382{left:76.400000pt;}
.x3_c01382{left:109.466667pt;}
.x28_c01382{left:250.701538pt;}
.x18_c01382{left:273.600000pt;}
.x16_c01382{left:274.533333pt;}
.x1a_c01382{left:276.933333pt;}
.x1d_c01382{left:278.000000pt;}
.x1f_c01382{left:279.600000pt;}
.x22_c01382{left:281.333333pt;}
.x25_c01382{left:282.533333pt;}
.x26_c01382{left:285.333333pt;}
.x17_c01382{left:293.600000pt;}
.x19_c01382{left:297.600000pt;}
.x1b_c01382{left:298.800000pt;}
.x20_c01382{left:299.733333pt;}
.x1e_c01382{left:300.800000pt;}
.x23_c01382{left:302.400000pt;}
.x1c_c01382{left:305.066667pt;}
.x27_c01382{left:322.400000pt;}
.x24_c01382{left:323.333333pt;}
.x21_c01382{left:329.733333pt;}
}





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

.ir_c01383:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01383{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01383;src:url('chunks/assets/font_13cb4a383207605f16f61d35.woff2')format("woff");}.ff1_c01383{font-family:ff1_c01383;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01383;src:url('chunks/assets/font_aa8386c2630b884346340ac9.woff2')format("woff");}.ff2_c01383{font-family:ff2_c01383;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01383;src:url('chunks/assets/font_dc53bfa43663d142282c0677.woff2')format("woff");}.ff3_c01383{font-family:ff3_c01383;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01383;src:url('chunks/assets/font_150f52aed28da2b2506e7dfc.woff2')format("woff");}.ff4_c01383{font-family:ff4_c01383;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01383;src:url('chunks/assets/font_85952e4cac55276374004b77.woff2')format("woff");}.ff5_c01383{font-family:ff5_c01383;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01383;src:url('chunks/assets/font_16616dc881219df287630d4e.woff2')format("woff");}.ff6_c01383{font-family:ff6_c01383;line-height:1.311035;font-style:normal;font-weight: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_c01383;src:url('chunks/assets/font_7ed51f78372d0cd38545f76f.woff2')format("woff");}.ff7_c01383{font-family:ff7_c01383;line-height:1.284180;font-style:normal;font-weight: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_c01383;src:url('chunks/assets/font_8c118b61d4cac43e00f67db3.woff2')format("woff");}.ff8_c01383{font-family:ff8_c01383;line-height:1.437000;font-style:normal;font-weight: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_c01383;src:url('chunks/assets/font_9bbcaf5708b9c2ed57e34fc2.woff2')format("woff");}.ff9_c01383{font-family:ff9_c01383;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c01383;src:url('chunks/assets/font_be9ec32e53ecf4c0e49fa53e.woff2')format("woff");}.ffa_c01383{font-family:ffa_c01383;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c01383;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ffb_c01383{font-family:ffb_c01383;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01383{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c01383{vertical-align:-90.600000px;}
.v0_c01383{vertical-align:0.000000px;}
.ls18_c01383{letter-spacing:-9.000000px;}
.ls15_c01383{letter-spacing:-6.000000px;}
.ls14_c01383{letter-spacing:0.000000px;}
.ls5_c01383{letter-spacing:0.750000px;}
.ls12_c01383{letter-spacing:2.100000px;}
.ls10_c01383{letter-spacing:3.150000px;}
.ls9_c01383{letter-spacing:3.750000px;}
.ls11_c01383{letter-spacing:4.002000px;}
.ls8_c01383{letter-spacing:4.350000px;}
.ls17_c01383{letter-spacing:6.000000px;}
.lse_c01383{letter-spacing:6.444000px;}
.lsa_c01383{letter-spacing:7.950000px;}
.lsb_c01383{letter-spacing:9.000000px;}
.ls6_c01383{letter-spacing:10.200000px;}
.lsd_c01383{letter-spacing:11.700000px;}
.ls3_c01383{letter-spacing:11.728800px;}
.ls16_c01383{letter-spacing:12.000000px;}
.ls4_c01383{letter-spacing:13.200000px;}
.ls2_c01383{letter-spacing:21.990000px;}
.ls0_c01383{letter-spacing:22.827000px;}
.ls1_c01383{letter-spacing:34.002000px;}
.lsf_c01383{letter-spacing:34.350000px;}
.ls13_c01383{letter-spacing:38.448000px;}
.ls7_c01383{letter-spacing:45.750000px;}
.lsc_c01383{letter-spacing:47.700000px;}
.sc__c01383{text-shadow:none;}
.sc0_c01383{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01383{-webkit-text-stroke:0px transparent;}
.sc0_c01383{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c01383{word-spacing:-49.032000px;}
.ws8_c01383{word-spacing:-28.500000px;}
.wsa_c01383{word-spacing:-27.750000px;}
.ws5_c01383{word-spacing:-20.250000px;}
.ws4_c01383{word-spacing:-18.798000px;}
.ws3_c01383{word-spacing:-17.250000px;}
.wsc_c01383{word-spacing:-13.737000px;}
.ws9_c01383{word-spacing:-11.250000px;}
.ws7_c01383{word-spacing:-8.898000px;}
.wse_c01383{word-spacing:-8.250000px;}
.ws2_c01383{word-spacing:-7.737000px;}
.ws0_c01383{word-spacing:-0.570000px;}
.ws11_c01383{word-spacing:0.000000px;}
.ws1_c01383{word-spacing:0.360000px;}
.wsd_c01383{word-spacing:2.835000px;}
.ws10_c01383{word-spacing:6.654000px;}
.wsb_c01383{word-spacing:6.666000px;}
.wsf_c01383{word-spacing:7.965000px;}
._2f_c01383{margin-left:-31.605000px;}
._30_c01383{margin-left:-30.057000px;}
._13_c01383{margin-left:-26.583000px;}
._2c_c01383{margin-left:-24.186000px;}
._2e_c01383{margin-left:-22.599000px;}
._2d_c01383{margin-left:-20.412000px;}
._f_c01383{margin-left:-18.096000px;}
._29_c01383{margin-left:-16.524000px;}
._1b_c01383{margin-left:-15.276000px;}
._19_c01383{margin-left:-14.223000px;}
._e_c01383{margin-left:-13.026000px;}
._22_c01383{margin-left:-11.607000px;}
._1a_c01383{margin-left:-9.600000px;}
._d_c01383{margin-left:-7.488000px;}
._21_c01383{margin-left:-6.477000px;}
._15_c01383{margin-left:-4.797000px;}
._11_c01383{margin-left:-3.648000px;}
._14_c01383{margin-left:-2.334000px;}
._b_c01383{margin-left:-1.110000px;}
._8_c01383{width:1.425000px;}
._2_c01383{width:3.078000px;}
._0_c01383{width:4.275000px;}
._1_c01383{width:5.643000px;}
._3_c01383{width:7.182000px;}
._a_c01383{width:8.265000px;}
._5_c01383{width:9.405000px;}
._20_c01383{width:10.482000px;}
._7_c01383{width:11.514000px;}
._6_c01383{width:12.867000px;}
._c_c01383{width:14.976000px;}
._12_c01383{width:16.191000px;}
._2a_c01383{width:17.241000px;}
._17_c01383{width:18.306000px;}
._1f_c01383{width:19.551000px;}
._4_c01383{width:20.634000px;}
._27_c01383{width:21.666000px;}
._25_c01383{width:22.791000px;}
._2b_c01383{width:24.348000px;}
._1e_c01383{width:27.072000px;}
._28_c01383{width:28.884000px;}
._26_c01383{width:30.537000px;}
._24_c01383{width:31.926000px;}
._9_c01383{width:34.200000px;}
._18_c01383{width:36.126000px;}
._23_c01383{width:37.800000px;}
._10_c01383{width:39.408000px;}
._1d_c01383{width:47.904000px;}
._1c_c01383{width:50.772000px;}
._16_c01383{width:53.607000px;}
.fc2_c01383{color:transparent;}
.fc1_c01383{color:rgb(128,128,128);}
.fc0_c01383{color:rgb(0,0,0);}
.fsb_c01383{font-size:45.000000px;}
.fs3_c01383{font-size:45.600000px;}
.fsd_c01383{font-size:48.000000px;}
.fsa_c01383{font-size:54.000000px;}
.fs2_c01383{font-size:57.000000px;}
.fs4_c01383{font-size:60.000000px;}
.fs8_c01383{font-size:66.000000px;}
.fs5_c01383{font-size:69.000000px;}
.fs6_c01383{font-size:72.000000px;}
.fs7_c01383{font-size:75.000000px;}
.fs1_c01383{font-size:78.000000px;}
.fs0_c01383{font-size:81.000000px;}
.fs9_c01383{font-size:87.000000px;}
.fsc_c01383{font-size:189.000000px;}
.y0_c01383{bottom:0.000000px;}
.y38_c01383{bottom:3.105000px;}
.y37_c01383{bottom:7.228369px;}
.y36_c01383{bottom:89.670000px;}
.y19_c01383{bottom:184.920000px;}
.y35_c01383{bottom:186.570000px;}
.y18_c01383{bottom:209.820000px;}
.y34_c01383{bottom:211.320000px;}
.y17_c01383{bottom:234.120000px;}
.y33_c01383{bottom:235.620000px;}
.y16_c01383{bottom:258.120000px;}
.y32_c01383{bottom:260.820000px;}
.y15_c01383{bottom:282.870000px;}
.y31_c01383{bottom:284.520000px;}
.y14_c01383{bottom:307.170000px;}
.y30_c01383{bottom:309.870000px;}
.y13_c01383{bottom:331.770000px;}
.y2f_c01383{bottom:335.070000px;}
.y2e_c01383{bottom:359.670000px;}
.y12_c01383{bottom:381.270000px;}
.y2d_c01383{bottom:384.420000px;}
.y11_c01383{bottom:405.270000px;}
.y2c_c01383{bottom:408.420000px;}
.y10_c01383{bottom:430.020000px;}
.y2b_c01383{bottom:432.720000px;}
.yf_c01383{bottom:454.320000px;}
.y2a_c01383{bottom:458.220000px;}
.ye_c01383{bottom:478.470000px;}
.y29_c01383{bottom:482.220000px;}
.yd_c01383{bottom:503.520000px;}
.y28_c01383{bottom:506.220000px;}
.yc_c01383{bottom:527.220000px;}
.y27_c01383{bottom:530.220000px;}
.y26_c01383{bottom:554.520000px;}
.yb_c01383{bottom:576.420000px;}
.y25_c01383{bottom:578.820000px;}
.ya_c01383{bottom:600.420000px;}
.y24_c01383{bottom:603.120000px;}
.y9_c01383{bottom:624.720000px;}
.y23_c01383{bottom:627.720000px;}
.y8_c01383{bottom:648.570000px;}
.y22_c01383{bottom:652.320000px;}
.y7_c01383{bottom:673.620000px;}
.y21_c01383{bottom:675.570000px;}
.y20_c01383{bottom:694.920000px;}
.y6_c01383{bottom:698.670000px;}
.y5_c01383{bottom:721.920000px;}
.y1f_c01383{bottom:724.620000px;}
.y4_c01383{bottom:771.420000px;}
.y1e_c01383{bottom:771.570000px;}
.y1d_c01383{bottom:797.220000px;}
.y3_c01383{bottom:820.170000px;}
.y1c_c01383{bottom:821.820000px;}
.y2_c01383{bottom:844.020000px;}
.y1b_c01383{bottom:845.370000px;}
.y1_c01383{bottom:868.620000px;}
.y1a_c01383{bottom:870.720000px;}
.hc_c01383{height:13.200073px;}
.hd_c01383{height:43.804688px;}
.ha_c01383{height:44.143066px;}
.h3_c01383{height:66.713379px;}
.h4_c01383{height:72.312000px;}
.h7_c01383{height:73.571777px;}
.h6_c01383{height:79.497070px;}
.h5_c01383{height:84.269531px;}
.h8_c01383{height:91.160156px;}
.h9_c01383{height:91.176000px;}
.h2_c01383{height:98.756836px;}
.hb_c01383{height:198.072000px;}
.h1_c01383{height:972.750000px;}
.h0_c01383{height:973.050000px;}
.w2_c01383{width:104.875500px;}
.w0_c01383{width:658.275000px;}
.w1_c01383{width:658.500000px;}
.x0_c01383{left:0.000000px;}
.x6_c01383{left:108.900000px;}
.x1_c01383{left:110.400000px;}
.x3_c01383{left:112.350000px;}
.x9_c01383{left:114.300000px;}
.xc_c01383{left:115.500000px;}
.x2_c01383{left:135.450000px;}
.x8_c01383{left:136.650000px;}
.xd_c01383{left:138.000000px;}
.x7_c01383{left:139.350000px;}
.xa_c01383{left:167.700000px;}
.x5_c01383{left:176.400000px;}
.x4_c01383{left:180.300000px;}
.xe_c01383{left:193.350000px;}
.xb_c01383{left:199.800000px;}
.x1c_c01383{left:261.600000px;}
.x1d_c01383{left:280.951767px;}
.x1a_c01383{left:385.200000px;}
.x12_c01383{left:386.400000px;}
.x14_c01383{left:387.900000px;}
.xf_c01383{left:390.150000px;}
.x18_c01383{left:391.500000px;}
.x15_c01383{left:392.850000px;}
.x17_c01383{left:393.900000px;}
.x10_c01383{left:412.200000px;}
.x13_c01383{left:413.850000px;}
.x16_c01383{left:415.800000px;}
.x1b_c01383{left:416.850000px;}
.x19_c01383{left:418.200000px;}
.x11_c01383{left:445.950000px;}
@media print{
.v1_c01383{vertical-align:-80.533333pt;}
.v0_c01383{vertical-align:0.000000pt;}
.ls18_c01383{letter-spacing:-8.000000pt;}
.ls15_c01383{letter-spacing:-5.333333pt;}
.ls14_c01383{letter-spacing:0.000000pt;}
.ls5_c01383{letter-spacing:0.666667pt;}
.ls12_c01383{letter-spacing:1.866667pt;}
.ls10_c01383{letter-spacing:2.800000pt;}
.ls9_c01383{letter-spacing:3.333333pt;}
.ls11_c01383{letter-spacing:3.557333pt;}
.ls8_c01383{letter-spacing:3.866667pt;}
.ls17_c01383{letter-spacing:5.333333pt;}
.lse_c01383{letter-spacing:5.728000pt;}
.lsa_c01383{letter-spacing:7.066667pt;}
.lsb_c01383{letter-spacing:8.000000pt;}
.ls6_c01383{letter-spacing:9.066667pt;}
.lsd_c01383{letter-spacing:10.400000pt;}
.ls3_c01383{letter-spacing:10.425600pt;}
.ls16_c01383{letter-spacing:10.666667pt;}
.ls4_c01383{letter-spacing:11.733333pt;}
.ls2_c01383{letter-spacing:19.546667pt;}
.ls0_c01383{letter-spacing:20.290667pt;}
.ls1_c01383{letter-spacing:30.224000pt;}
.lsf_c01383{letter-spacing:30.533333pt;}
.ls13_c01383{letter-spacing:34.176000pt;}
.ls7_c01383{letter-spacing:40.666667pt;}
.lsc_c01383{letter-spacing:42.400000pt;}
.ws6_c01383{word-spacing:-43.584000pt;}
.ws8_c01383{word-spacing:-25.333333pt;}
.wsa_c01383{word-spacing:-24.666667pt;}
.ws5_c01383{word-spacing:-18.000000pt;}
.ws4_c01383{word-spacing:-16.709333pt;}
.ws3_c01383{word-spacing:-15.333333pt;}
.wsc_c01383{word-spacing:-12.210667pt;}
.ws9_c01383{word-spacing:-10.000000pt;}
.ws7_c01383{word-spacing:-7.909333pt;}
.wse_c01383{word-spacing:-7.333333pt;}
.ws2_c01383{word-spacing:-6.877333pt;}
.ws0_c01383{word-spacing:-0.506667pt;}
.ws11_c01383{word-spacing:0.000000pt;}
.ws1_c01383{word-spacing:0.320000pt;}
.wsd_c01383{word-spacing:2.520000pt;}
.ws10_c01383{word-spacing:5.914667pt;}
.wsb_c01383{word-spacing:5.925333pt;}
.wsf_c01383{word-spacing:7.080000pt;}
._2f_c01383{margin-left:-28.093333pt;}
._30_c01383{margin-left:-26.717333pt;}
._13_c01383{margin-left:-23.629333pt;}
._2c_c01383{margin-left:-21.498667pt;}
._2e_c01383{margin-left:-20.088000pt;}
._2d_c01383{margin-left:-18.144000pt;}
._f_c01383{margin-left:-16.085333pt;}
._29_c01383{margin-left:-14.688000pt;}
._1b_c01383{margin-left:-13.578667pt;}
._19_c01383{margin-left:-12.642667pt;}
._e_c01383{margin-left:-11.578667pt;}
._22_c01383{margin-left:-10.317333pt;}
._1a_c01383{margin-left:-8.533333pt;}
._d_c01383{margin-left:-6.656000pt;}
._21_c01383{margin-left:-5.757333pt;}
._15_c01383{margin-left:-4.264000pt;}
._11_c01383{margin-left:-3.242667pt;}
._14_c01383{margin-left:-2.074667pt;}
._b_c01383{margin-left:-0.986667pt;}
._8_c01383{width:1.266667pt;}
._2_c01383{width:2.736000pt;}
._0_c01383{width:3.800000pt;}
._1_c01383{width:5.016000pt;}
._3_c01383{width:6.384000pt;}
._a_c01383{width:7.346667pt;}
._5_c01383{width:8.360000pt;}
._20_c01383{width:9.317333pt;}
._7_c01383{width:10.234667pt;}
._6_c01383{width:11.437333pt;}
._c_c01383{width:13.312000pt;}
._12_c01383{width:14.392000pt;}
._2a_c01383{width:15.325333pt;}
._17_c01383{width:16.272000pt;}
._1f_c01383{width:17.378667pt;}
._4_c01383{width:18.341333pt;}
._27_c01383{width:19.258667pt;}
._25_c01383{width:20.258667pt;}
._2b_c01383{width:21.642667pt;}
._1e_c01383{width:24.064000pt;}
._28_c01383{width:25.674667pt;}
._26_c01383{width:27.144000pt;}
._24_c01383{width:28.378667pt;}
._9_c01383{width:30.400000pt;}
._18_c01383{width:32.112000pt;}
._23_c01383{width:33.600000pt;}
._10_c01383{width:35.029333pt;}
._1d_c01383{width:42.581333pt;}
._1c_c01383{width:45.130667pt;}
._16_c01383{width:47.650667pt;}
.fsb_c01383{font-size:40.000000pt;}
.fs3_c01383{font-size:40.533333pt;}
.fsd_c01383{font-size:42.666667pt;}
.fsa_c01383{font-size:48.000000pt;}
.fs2_c01383{font-size:50.666667pt;}
.fs4_c01383{font-size:53.333333pt;}
.fs8_c01383{font-size:58.666667pt;}
.fs5_c01383{font-size:61.333333pt;}
.fs6_c01383{font-size:64.000000pt;}
.fs7_c01383{font-size:66.666667pt;}
.fs1_c01383{font-size:69.333333pt;}
.fs0_c01383{font-size:72.000000pt;}
.fs9_c01383{font-size:77.333333pt;}
.fsc_c01383{font-size:168.000000pt;}
.y0_c01383{bottom:0.000000pt;}
.y38_c01383{bottom:2.760000pt;}
.y37_c01383{bottom:6.425217pt;}
.y36_c01383{bottom:79.706667pt;}
.y19_c01383{bottom:164.373333pt;}
.y35_c01383{bottom:165.840000pt;}
.y18_c01383{bottom:186.506667pt;}
.y34_c01383{bottom:187.840000pt;}
.y17_c01383{bottom:208.106667pt;}
.y33_c01383{bottom:209.440000pt;}
.y16_c01383{bottom:229.440000pt;}
.y32_c01383{bottom:231.840000pt;}
.y15_c01383{bottom:251.440000pt;}
.y31_c01383{bottom:252.906667pt;}
.y14_c01383{bottom:273.040000pt;}
.y30_c01383{bottom:275.440000pt;}
.y13_c01383{bottom:294.906667pt;}
.y2f_c01383{bottom:297.840000pt;}
.y2e_c01383{bottom:319.706667pt;}
.y12_c01383{bottom:338.906667pt;}
.y2d_c01383{bottom:341.706667pt;}
.y11_c01383{bottom:360.240000pt;}
.y2c_c01383{bottom:363.040000pt;}
.y10_c01383{bottom:382.240000pt;}
.y2b_c01383{bottom:384.640000pt;}
.yf_c01383{bottom:403.840000pt;}
.y2a_c01383{bottom:407.306667pt;}
.ye_c01383{bottom:425.306667pt;}
.y29_c01383{bottom:428.640000pt;}
.yd_c01383{bottom:447.573333pt;}
.y28_c01383{bottom:449.973333pt;}
.yc_c01383{bottom:468.640000pt;}
.y27_c01383{bottom:471.306667pt;}
.y26_c01383{bottom:492.906667pt;}
.yb_c01383{bottom:512.373333pt;}
.y25_c01383{bottom:514.506667pt;}
.ya_c01383{bottom:533.706667pt;}
.y24_c01383{bottom:536.106667pt;}
.y9_c01383{bottom:555.306667pt;}
.y23_c01383{bottom:557.973333pt;}
.y8_c01383{bottom:576.506667pt;}
.y22_c01383{bottom:579.840000pt;}
.y7_c01383{bottom:598.773333pt;}
.y21_c01383{bottom:600.506667pt;}
.y20_c01383{bottom:617.706667pt;}
.y6_c01383{bottom:621.040000pt;}
.y5_c01383{bottom:641.706667pt;}
.y1f_c01383{bottom:644.106667pt;}
.y4_c01383{bottom:685.706667pt;}
.y1e_c01383{bottom:685.840000pt;}
.y1d_c01383{bottom:708.640000pt;}
.y3_c01383{bottom:729.040000pt;}
.y1c_c01383{bottom:730.506667pt;}
.y2_c01383{bottom:750.240000pt;}
.y1b_c01383{bottom:751.440000pt;}
.y1_c01383{bottom:772.106667pt;}
.y1a_c01383{bottom:773.973333pt;}
.hc_c01383{height:11.733399pt;}
.hd_c01383{height:38.937500pt;}
.ha_c01383{height:39.238281pt;}
.h3_c01383{height:59.300781pt;}
.h4_c01383{height:64.277333pt;}
.h7_c01383{height:65.397135pt;}
.h6_c01383{height:70.664062pt;}
.h5_c01383{height:74.906250pt;}
.h8_c01383{height:81.031250pt;}
.h9_c01383{height:81.045333pt;}
.h2_c01383{height:87.783854pt;}
.hb_c01383{height:176.064000pt;}
.h1_c01383{height:864.666667pt;}
.h0_c01383{height:864.933333pt;}
.w2_c01383{width:93.222667pt;}
.w0_c01383{width:585.133333pt;}
.w1_c01383{width:585.333333pt;}
.x0_c01383{left:0.000000pt;}
.x6_c01383{left:96.800000pt;}
.x1_c01383{left:98.133333pt;}
.x3_c01383{left:99.866667pt;}
.x9_c01383{left:101.600000pt;}
.xc_c01383{left:102.666667pt;}
.x2_c01383{left:120.400000pt;}
.x8_c01383{left:121.466667pt;}
.xd_c01383{left:122.666667pt;}
.x7_c01383{left:123.866667pt;}
.xa_c01383{left:149.066667pt;}
.x5_c01383{left:156.800000pt;}
.x4_c01383{left:160.266667pt;}
.xe_c01383{left:171.866667pt;}
.xb_c01383{left:177.600000pt;}
.x1c_c01383{left:232.533333pt;}
.x1d_c01383{left:249.734904pt;}
.x1a_c01383{left:342.400000pt;}
.x12_c01383{left:343.466667pt;}
.x14_c01383{left:344.800000pt;}
.xf_c01383{left:346.800000pt;}
.x18_c01383{left:348.000000pt;}
.x15_c01383{left:349.200000pt;}
.x17_c01383{left:350.133333pt;}
.x10_c01383{left:366.400000pt;}
.x13_c01383{left:367.866667pt;}
.x16_c01383{left:369.600000pt;}
.x1b_c01383{left:370.533333pt;}
.x19_c01383{left:371.733333pt;}
.x11_c01383{left:396.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_c01384 {
    display:none;
  }
  .loading-indicator_c01384.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01384 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01384 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01384" -> "#page-container .classname_c01384")
 */
.pf_c01384 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01384 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01384.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01384 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01384 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01384 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01384 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01384 {overflow:visible;}
  }
}
.c_c01384 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01384 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01384:after { /* webkit #35443 */
  content: '';
}
.t_c01384:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01384 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01384 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01384 { /* info for Javascript */
  display:none;
}
.l_c01384 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01384 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01384 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01384:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01384{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01384;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff1_c01384{font-family:ff1_c01384;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01384{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01384{vertical-align:0.000000px;}
.ls0_c01384{letter-spacing:0.000000px;}
.sc__c01384{text-shadow:none;}
.sc0_c01384{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01384{-webkit-text-stroke:0px transparent;}
.sc0_c01384{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01384{word-spacing:0.000000px;}
.fc0_c01384{color:rgb(128,128,128);}
.fs0_c01384{font-size:48.000000px;}
.y0_c01384{bottom:0.000000px;}
.y2_c01384{bottom:3.105000px;}
.y1_c01384{bottom:7.228369px;}
.h2_c01384{height:13.200073px;}
.h3_c01384{height:43.804688px;}
.h1_c01384{height:986.250000px;}
.h0_c01384{height:986.550000px;}
.w1_c01384{width:104.875500px;}
.w0_c01384{width:672.000000px;}
.x0_c01384{left:0.000000px;}
.x1_c01384{left:287.814240px;}
@media print{
.v0_c01384{vertical-align:0.000000pt;}
.ls0_c01384{letter-spacing:0.000000pt;}
.ws0_c01384{word-spacing:0.000000pt;}
.fs0_c01384{font-size:42.666667pt;}
.y0_c01384{bottom:0.000000pt;}
.y2_c01384{bottom:2.760000pt;}
.y1_c01384{bottom:6.425217pt;}
.h2_c01384{height:11.733399pt;}
.h3_c01384{height:38.937500pt;}
.h1_c01384{height:876.666667pt;}
.h0_c01384{height:876.933333pt;}
.w1_c01384{width:93.222667pt;}
.w0_c01384{width:597.333333pt;}
.x0_c01384{left:0.000000pt;}
.x1_c01384{left:255.834880pt;}
}





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

.ir_c01385:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01385{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01385;src:url('chunks/assets/font_50614f166e2f88813e0757e9.woff2')format("woff");}.ff1_c01385{font-family:ff1_c01385;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01385;src:url('chunks/assets/font_2567d19bc093acbb40076f7a.woff2')format("woff");}.ff2_c01385{font-family:ff2_c01385;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01385;src:url('chunks/assets/font_cb5c638360b1505f890cc141.woff2')format("woff");}.ff3_c01385{font-family:ff3_c01385;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01385;src:url('chunks/assets/font_7e54f3190a7b0117df2c0610.woff2')format("woff");}.ff4_c01385{font-family:ff4_c01385;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01385;src:url('chunks/assets/font_6fd70d0a2fba5a7c81cb624c.woff2')format("woff");}.ff5_c01385{font-family:ff5_c01385;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01385;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff6_c01385{font-family:ff6_c01385;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01385{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01385{vertical-align:0.000000px;}
.ls2_c01385{letter-spacing:0.000000px;}
.ls0_c01385{letter-spacing:4.482000px;}
.ls1_c01385{letter-spacing:9.000000px;}
.sc__c01385{text-shadow:none;}
.sc0_c01385{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01385{-webkit-text-stroke:0px transparent;}
.sc0_c01385{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01385{word-spacing:-20.250000px;}
.ws2_c01385{word-spacing:-17.352000px;}
.ws1_c01385{word-spacing:-16.200000px;}
.ws3_c01385{word-spacing:0.000000px;}
._1c_c01385{margin-left:-74.166000px;}
._1a_c01385{margin-left:-68.376000px;}
._22_c01385{margin-left:-41.391000px;}
._24_c01385{margin-left:-33.969000px;}
._17_c01385{margin-left:-28.482000px;}
._9_c01385{margin-left:-25.110000px;}
._e_c01385{margin-left:-22.518000px;}
._15_c01385{margin-left:-20.436000px;}
._1e_c01385{margin-left:-18.096000px;}
._d_c01385{margin-left:-16.119000px;}
._16_c01385{margin-left:-14.820000px;}
._11_c01385{margin-left:-12.960000px;}
._f_c01385{margin-left:-11.583000px;}
._b_c01385{margin-left:-10.206000px;}
._7_c01385{margin-left:-8.829000px;}
._0_c01385{margin-left:-6.885000px;}
._1_c01385{margin-left:-5.427000px;}
._20_c01385{margin-left:-3.726000px;}
._2_c01385{margin-left:-2.349000px;}
._5_c01385{margin-left:-1.296000px;}
._1b_c01385{width:1.560000px;}
._c_c01385{width:5.265000px;}
._10_c01385{width:6.804000px;}
._18_c01385{width:9.396000px;}
._6_c01385{width:12.231000px;}
._8_c01385{width:14.256000px;}
._a_c01385{width:16.362000px;}
._21_c01385{width:17.496000px;}
._1f_c01385{width:31.104000px;}
._23_c01385{width:34.236000px;}
._3_c01385{width:40.083000px;}
._12_c01385{width:44.955000px;}
._4_c01385{width:49.170600px;}
._19_c01385{width:58.254000px;}
._14_c01385{width:60.021000px;}
._1d_c01385{width:70.656000px;}
._13_c01385{width:83.835000px;}
.fc2_c01385{color:transparent;}
.fc1_c01385{color:rgb(128,128,128);}
.fc0_c01385{color:rgb(0,0,0);}
.fs6_c01385{font-size:48.000000px;}
.fs4_c01385{font-size:57.000000px;}
.fs2_c01385{font-size:64.800000px;}
.fs0_c01385{font-size:69.000000px;}
.fs5_c01385{font-size:72.000000px;}
.fs3_c01385{font-size:78.000000px;}
.fs1_c01385{font-size:81.000000px;}
.y0_c01385{bottom:0.000000px;}
.y8_c01385{bottom:3.105000px;}
.y7_c01385{bottom:7.228371px;}
.y6_c01385{bottom:622.815000px;}
.y5_c01385{bottom:668.715000px;}
.y4_c01385{bottom:696.315000px;}
.y2_c01385{bottom:812.415000px;}
.y1_c01385{bottom:831.915000px;}
.y3_c01385{bottom:840.165000px;}
.h6_c01385{height:13.200074px;}
.h7_c01385{height:43.804688px;}
.h2_c01385{height:69.539062px;}
.h3_c01385{height:79.497070px;}
.h5_c01385{height:84.269531px;}
.h4_c01385{height:98.756836px;}
.h1_c01385{height:986.250000px;}
.h0_c01385{height:986.325000px;}
.w2_c01385{width:104.875500px;}
.w0_c01385{width:667.425000px;}
.w1_c01385{width:667.500000px;}
.x0_c01385{left:0.000000px;}
.x5_c01385{left:129.900000px;}
.x4_c01385{left:146.700000px;}
.x6_c01385{left:150.150000px;}
.x2_c01385{left:184.200000px;}
.x1_c01385{left:240.300000px;}
.x7_c01385{left:285.526749px;}
.x3_c01385{left:414.450000px;}
@media print{
.v0_c01385{vertical-align:0.000000pt;}
.ls2_c01385{letter-spacing:0.000000pt;}
.ls0_c01385{letter-spacing:3.984000pt;}
.ls1_c01385{letter-spacing:8.000000pt;}
.ws0_c01385{word-spacing:-18.000000pt;}
.ws2_c01385{word-spacing:-15.424000pt;}
.ws1_c01385{word-spacing:-14.400000pt;}
.ws3_c01385{word-spacing:0.000000pt;}
._1c_c01385{margin-left:-65.925333pt;}
._1a_c01385{margin-left:-60.778667pt;}
._22_c01385{margin-left:-36.792000pt;}
._24_c01385{margin-left:-30.194667pt;}
._17_c01385{margin-left:-25.317333pt;}
._9_c01385{margin-left:-22.320000pt;}
._e_c01385{margin-left:-20.016000pt;}
._15_c01385{margin-left:-18.165333pt;}
._1e_c01385{margin-left:-16.085333pt;}
._d_c01385{margin-left:-14.328000pt;}
._16_c01385{margin-left:-13.173333pt;}
._11_c01385{margin-left:-11.520000pt;}
._f_c01385{margin-left:-10.296000pt;}
._b_c01385{margin-left:-9.072000pt;}
._7_c01385{margin-left:-7.848000pt;}
._0_c01385{margin-left:-6.120000pt;}
._1_c01385{margin-left:-4.824000pt;}
._20_c01385{margin-left:-3.312000pt;}
._2_c01385{margin-left:-2.088000pt;}
._5_c01385{margin-left:-1.152000pt;}
._1b_c01385{width:1.386667pt;}
._c_c01385{width:4.680000pt;}
._10_c01385{width:6.048000pt;}
._18_c01385{width:8.352000pt;}
._6_c01385{width:10.872000pt;}
._8_c01385{width:12.672000pt;}
._a_c01385{width:14.544000pt;}
._21_c01385{width:15.552000pt;}
._1f_c01385{width:27.648000pt;}
._23_c01385{width:30.432000pt;}
._3_c01385{width:35.629333pt;}
._12_c01385{width:39.960000pt;}
._4_c01385{width:43.707200pt;}
._19_c01385{width:51.781333pt;}
._14_c01385{width:53.352000pt;}
._1d_c01385{width:62.805333pt;}
._13_c01385{width:74.520000pt;}
.fs6_c01385{font-size:42.666667pt;}
.fs4_c01385{font-size:50.666667pt;}
.fs2_c01385{font-size:57.600000pt;}
.fs0_c01385{font-size:61.333333pt;}
.fs5_c01385{font-size:64.000000pt;}
.fs3_c01385{font-size:69.333333pt;}
.fs1_c01385{font-size:72.000000pt;}
.y0_c01385{bottom:0.000000pt;}
.y8_c01385{bottom:2.760000pt;}
.y7_c01385{bottom:6.425219pt;}
.y6_c01385{bottom:553.613333pt;}
.y5_c01385{bottom:594.413333pt;}
.y4_c01385{bottom:618.946667pt;}
.y2_c01385{bottom:722.146667pt;}
.y1_c01385{bottom:739.480000pt;}
.y3_c01385{bottom:746.813333pt;}
.h6_c01385{height:11.733399pt;}
.h7_c01385{height:38.937500pt;}
.h2_c01385{height:61.812500pt;}
.h3_c01385{height:70.664062pt;}
.h5_c01385{height:74.906250pt;}
.h4_c01385{height:87.783854pt;}
.h1_c01385{height:876.666667pt;}
.h0_c01385{height:876.733333pt;}
.w2_c01385{width:93.222667pt;}
.w0_c01385{width:593.266667pt;}
.w1_c01385{width:593.333333pt;}
.x0_c01385{left:0.000000pt;}
.x5_c01385{left:115.466667pt;}
.x4_c01385{left:130.400000pt;}
.x6_c01385{left:133.466667pt;}
.x2_c01385{left:163.733333pt;}
.x1_c01385{left:213.600000pt;}
.x7_c01385{left:253.801554pt;}
.x3_c01385{left:368.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_c01386 {
    display:none;
  }
  .loading-indicator_c01386.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01386 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01386 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01386" -> "#page-container .classname_c01386")
 */
.pf_c01386 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01386 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01386.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01386 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01386 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01386 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01386 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01386 {overflow:visible;}
  }
}
.c_c01386 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01386 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01386:after { /* webkit #35443 */
  content: '';
}
.t_c01386:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01386 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01386 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01386 { /* info for Javascript */
  display:none;
}
.l_c01386 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01386 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01386 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01386:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01386{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01386;src:url('chunks/assets/font_607c1d79b3722db4cda9fb6a.woff2')format("woff");}.ff1_c01386{font-family:ff1_c01386;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01386;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff2_c01386{font-family:ff2_c01386;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01386{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01386{vertical-align:0.000000px;}
.ls0_c01386{letter-spacing:0.000000px;}
.sc__c01386{text-shadow:none;}
.sc0_c01386{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01386{-webkit-text-stroke:0px transparent;}
.sc0_c01386{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01386{word-spacing:0.000000px;}
._0_c01386{width:1.248000px;}
._1_c01386{width:22.776000px;}
.fc2_c01386{color:transparent;}
.fc1_c01386{color:rgb(128,128,128);}
.fc0_c01386{color:rgb(0,0,0);}
.fs1_c01386{font-size:48.000000px;}
.fs0_c01386{font-size:78.000000px;}
.y1_c01386{bottom:-0.030000px;}
.y0_c01386{bottom:0.000000px;}
.y3_c01386{bottom:3.105000px;}
.y2_c01386{bottom:7.228369px;}
.h3_c01386{height:13.200073px;}
.h4_c01386{height:43.804688px;}
.h2_c01386{height:98.756836px;}
.h1_c01386{height:999.750000px;}
.h0_c01386{height:1000.050000px;}
.w1_c01386{width:104.875500px;}
.w0_c01386{width:681.750000px;}
.x0_c01386{left:0.000000px;}
.x1_c01386{left:9.150000px;}
.x2_c01386{left:292.689240px;}
@media print{
.v0_c01386{vertical-align:0.000000pt;}
.ls0_c01386{letter-spacing:0.000000pt;}
.ws0_c01386{word-spacing:0.000000pt;}
._0_c01386{width:1.109333pt;}
._1_c01386{width:20.245333pt;}
.fs1_c01386{font-size:42.666667pt;}
.fs0_c01386{font-size:69.333333pt;}
.y1_c01386{bottom:-0.026667pt;}
.y0_c01386{bottom:0.000000pt;}
.y3_c01386{bottom:2.760000pt;}
.y2_c01386{bottom:6.425217pt;}
.h3_c01386{height:11.733399pt;}
.h4_c01386{height:38.937500pt;}
.h2_c01386{height:87.783854pt;}
.h1_c01386{height:888.666667pt;}
.h0_c01386{height:888.933333pt;}
.w1_c01386{width:93.222667pt;}
.w0_c01386{width:606.000000pt;}
.x0_c01386{left:0.000000pt;}
.x1_c01386{left:8.133333pt;}
.x2_c01386{left:260.168213pt;}
}





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

.ir_c01387:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01387{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01387;src:url('chunks/assets/font_789852f2c3cf60175cace41b.woff2')format("woff");}.ff1_c01387{font-family:ff1_c01387;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01387;src:url('chunks/assets/font_fb0bb471f3b8f9d0b28ffcb9.woff2')format("woff");}.ff2_c01387{font-family:ff2_c01387;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01387;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff3_c01387{font-family:ff3_c01387;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01387{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01387{vertical-align:0.000000px;}
.ls0_c01387{letter-spacing:0.000000px;}
.sc__c01387{text-shadow:none;}
.sc0_c01387{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01387{-webkit-text-stroke:0px transparent;}
.sc0_c01387{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01387{word-spacing:-58.482000px;}
.ws1_c01387{word-spacing:0.000000px;}
._2_c01387{margin-left:-11.232000px;}
._0_c01387{margin-left:-9.315000px;}
._4_c01387{margin-left:-6.741000px;}
._3_c01387{margin-left:-5.616000px;}
._1_c01387{margin-left:-2.754000px;}
._5_c01387{width:7.560000px;}
.fc2_c01387{color:transparent;}
.fc1_c01387{color:rgb(128,128,128);}
.fc0_c01387{color:rgb(0,0,0);}
.fs2_c01387{font-size:48.000000px;}
.fs1_c01387{font-size:72.000000px;}
.fs0_c01387{font-size:81.000000px;}
.y0_c01387{bottom:0.000000px;}
.y4_c01387{bottom:3.105000px;}
.y3_c01387{bottom:7.228357px;}
.y2_c01387{bottom:373.680000px;}
.y1_c01387{bottom:469.230000px;}
.h4_c01387{height:13.200074px;}
.h5_c01387{height:43.804688px;}
.h2_c01387{height:79.497070px;}
.h3_c01387{height:84.269531px;}
.h0_c01387{height:1031.700000px;}
.h1_c01387{height:1032.000000px;}
.w2_c01387{width:104.875500px;}
.w0_c01387{width:754.950000px;}
.w1_c01387{width:755.250000px;}
.x0_c01387{left:0.000000px;}
.x3_c01387{left:329.289230px;}
.x1_c01387{left:476.850000px;}
.x2_c01387{left:556.200000px;}
@media print{
.v0_c01387{vertical-align:0.000000pt;}
.ls0_c01387{letter-spacing:0.000000pt;}
.ws0_c01387{word-spacing:-51.984000pt;}
.ws1_c01387{word-spacing:0.000000pt;}
._2_c01387{margin-left:-9.984000pt;}
._0_c01387{margin-left:-8.280000pt;}
._4_c01387{margin-left:-5.992000pt;}
._3_c01387{margin-left:-4.992000pt;}
._1_c01387{margin-left:-2.448000pt;}
._5_c01387{width:6.720000pt;}
.fs2_c01387{font-size:42.666667pt;}
.fs1_c01387{font-size:64.000000pt;}
.fs0_c01387{font-size:72.000000pt;}
.y0_c01387{bottom:0.000000pt;}
.y4_c01387{bottom:2.760000pt;}
.y3_c01387{bottom:6.425206pt;}
.y2_c01387{bottom:332.160000pt;}
.y1_c01387{bottom:417.093333pt;}
.h4_c01387{height:11.733399pt;}
.h5_c01387{height:38.937500pt;}
.h2_c01387{height:70.664062pt;}
.h3_c01387{height:74.906250pt;}
.h0_c01387{height:917.066667pt;}
.h1_c01387{height:917.333333pt;}
.w2_c01387{width:93.222667pt;}
.w0_c01387{width:671.066667pt;}
.w1_c01387{width:671.333333pt;}
.x0_c01387{left:0.000000pt;}
.x3_c01387{left:292.701538pt;}
.x1_c01387{left:423.866667pt;}
.x2_c01387{left:494.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_c01388 {
    display:none;
  }
  .loading-indicator_c01388.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01388 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01388 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01388" -> "#page-container .classname_c01388")
 */
.pf_c01388 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01388 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01388.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01388 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01388 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01388 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01388 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01388 {overflow:visible;}
  }
}
.c_c01388 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01388 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01388:after { /* webkit #35443 */
  content: '';
}
.t_c01388:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01388 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01388 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01388 { /* info for Javascript */
  display:none;
}
.l_c01388 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01388 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01388 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01388:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01388{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01388;src:url('chunks/assets/font_374de2a2e2fcb4e17aadfec5.woff2')format("woff");}.ff1_c01388{font-family:ff1_c01388;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01388;src:url('chunks/assets/font_860425b5ce7f0598e1e9ca5e.woff2')format("woff");}.ff2_c01388{font-family:ff2_c01388;line-height:1.437000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01388;src:url('chunks/assets/font_57b6441c053cbb3bde08679d.woff2')format("woff");}.ff3_c01388{font-family:ff3_c01388;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01388;src:url('chunks/assets/font_d14dd6f65344c756d93b1038.woff2')format("woff");}.ff4_c01388{font-family:ff4_c01388;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01388;src:url('chunks/assets/font_f52dbf15edd28482774504b6.woff2')format("woff");}.ff5_c01388{font-family:ff5_c01388;line-height:1.480469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01388;src:url('chunks/assets/font_a38b7a529ed6b4c97b7da532.woff2')format("woff");}.ff6_c01388{font-family:ff6_c01388;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01388;src:url('chunks/assets/font_fb240d9672442aa326177aee.woff2')format("woff");}.ff7_c01388{font-family:ff7_c01388;line-height:1.568848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c01388;src:url('chunks/assets/font_73fb478185b72692e88f1ac2.woff2')format("woff");}.ff8_c01388{font-family:ff8_c01388;line-height:1.219238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01388{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01388{vertical-align:0.000000px;}
.v1_c01388{vertical-align:73.800000px;}
.v2_c01388{vertical-align:136.200000px;}
.ls5_c01388{letter-spacing:-9.000000px;}
.ls6_c01388{letter-spacing:-6.000000px;}
.ls3_c01388{letter-spacing:0.000000px;}
.ls2_c01388{letter-spacing:3.900000px;}
.ls4_c01388{letter-spacing:6.000000px;}
.ls0_c01388{letter-spacing:6.990000px;}
.ls1_c01388{letter-spacing:64.602000px;}
.sc__c01388{text-shadow:none;}
.sc0_c01388{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01388{-webkit-text-stroke:0px transparent;}
.sc0_c01388{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01388{word-spacing:-73.686000px;}
.ws1_c01388{word-spacing:-43.767000px;}
.ws6_c01388{word-spacing:-20.250000px;}
.ws3_c01388{word-spacing:-20.016000px;}
.ws5_c01388{word-spacing:-10.327200px;}
.ws4_c01388{word-spacing:-9.000000px;}
.ws2_c01388{word-spacing:-3.483000px;}
.ws7_c01388{word-spacing:0.000000px;}
._6_c01388{margin-left:-24.300000px;}
._2_c01388{margin-left:-18.300000px;}
._a_c01388{margin-left:-14.337000px;}
._4_c01388{margin-left:-12.798000px;}
._16_c01388{margin-left:-10.494000px;}
._14_c01388{margin-left:-9.396000px;}
._8_c01388{margin-left:-7.128000px;}
._9_c01388{margin-left:-6.075000px;}
._15_c01388{margin-left:-5.074800px;}
._0_c01388{margin-left:-2.430000px;}
._3_c01388{width:1.377000px;}
._12_c01388{width:3.276000px;}
._13_c01388{width:5.520000px;}
._18_c01388{width:6.585000px;}
._c_c01388{width:9.999000px;}
._d_c01388{width:12.120000px;}
._f_c01388{width:14.742000px;}
._e_c01388{width:17.814000px;}
._1_c01388{width:22.062000px;}
._10_c01388{width:23.409000px;}
._17_c01388{width:37.017000px;}
._b_c01388{width:62.964000px;}
._5_c01388{width:138.510000px;}
._7_c01388{width:160.299000px;}
._11_c01388{width:256.821000px;}
.fc2_c01388{color:transparent;}
.fc1_c01388{color:rgb(128,128,128);}
.fc0_c01388{color:rgb(0,0,0);}
.fs5_c01388{font-size:31.200000px;}
.fs3_c01388{font-size:36.000000px;}
.fs6_c01388{font-size:39.000000px;}
.fs9_c01388{font-size:48.000000px;}
.fs4_c01388{font-size:60.000000px;}
.fs8_c01388{font-size:78.000000px;}
.fs0_c01388{font-size:81.000000px;}
.fs1_c01388{font-size:87.000000px;}
.fs2_c01388{font-size:99.000000px;}
.fs7_c01388{font-size:162.000000px;}
.y0_c01388{bottom:0.000000px;}
.y9_c01388{bottom:3.105000px;}
.y8_c01388{bottom:7.228357px;}
.y7_c01388{bottom:125.580000px;}
.y6_c01388{bottom:271.380000px;}
.y5_c01388{bottom:316.680000px;}
.y3_c01388{bottom:565.080000px;}
.y4_c01388{bottom:565.380000px;}
.y2_c01388{bottom:600.780000px;}
.y1_c01388{bottom:739.530000px;}
.h8_c01388{height:13.200074px;}
.h9_c01388{height:43.804688px;}
.h5_c01388{height:58.886719px;}
.h7_c01388{height:79.497070px;}
.h2_c01388{height:91.176000px;}
.h4_c01388{height:110.081250px;}
.h3_c01388{height:115.870605px;}
.h6_c01388{height:234.956836px;}
.h1_c01388{height:1101.750000px;}
.h0_c01388{height:1101.900000px;}
.w2_c01388{width:104.875500px;}
.w0_c01388{width:289.950000px;}
.w1_c01388{width:290.250000px;}
.x0_c01388{left:0.000000px;}
.x2_c01388{left:7.350000px;}
.x1_c01388{left:52.200000px;}
.x3_c01388{left:56.400000px;}
.x5_c01388{left:67.200000px;}
.x7_c01388{left:96.789253px;}
.x4_c01388{left:167.400000px;}
.x6_c01388{left:267.000000px;}
@media print{
.v0_c01388{vertical-align:0.000000pt;}
.v1_c01388{vertical-align:65.600000pt;}
.v2_c01388{vertical-align:121.066667pt;}
.ls5_c01388{letter-spacing:-8.000000pt;}
.ls6_c01388{letter-spacing:-5.333333pt;}
.ls3_c01388{letter-spacing:0.000000pt;}
.ls2_c01388{letter-spacing:3.466667pt;}
.ls4_c01388{letter-spacing:5.333333pt;}
.ls0_c01388{letter-spacing:6.213333pt;}
.ls1_c01388{letter-spacing:57.424000pt;}
.ws0_c01388{word-spacing:-65.498667pt;}
.ws1_c01388{word-spacing:-38.904000pt;}
.ws6_c01388{word-spacing:-18.000000pt;}
.ws3_c01388{word-spacing:-17.792000pt;}
.ws5_c01388{word-spacing:-9.179733pt;}
.ws4_c01388{word-spacing:-8.000000pt;}
.ws2_c01388{word-spacing:-3.096000pt;}
.ws7_c01388{word-spacing:0.000000pt;}
._6_c01388{margin-left:-21.600000pt;}
._2_c01388{margin-left:-16.266667pt;}
._a_c01388{margin-left:-12.744000pt;}
._4_c01388{margin-left:-11.376000pt;}
._16_c01388{margin-left:-9.328000pt;}
._14_c01388{margin-left:-8.352000pt;}
._8_c01388{margin-left:-6.336000pt;}
._9_c01388{margin-left:-5.400000pt;}
._15_c01388{margin-left:-4.510933pt;}
._0_c01388{margin-left:-2.160000pt;}
._3_c01388{width:1.224000pt;}
._12_c01388{width:2.912000pt;}
._13_c01388{width:4.906667pt;}
._18_c01388{width:5.853333pt;}
._c_c01388{width:8.888000pt;}
._d_c01388{width:10.773333pt;}
._f_c01388{width:13.104000pt;}
._e_c01388{width:15.834667pt;}
._1_c01388{width:19.610667pt;}
._10_c01388{width:20.808000pt;}
._17_c01388{width:32.904000pt;}
._b_c01388{width:55.968000pt;}
._5_c01388{width:123.120000pt;}
._7_c01388{width:142.488000pt;}
._11_c01388{width:228.285333pt;}
.fs5_c01388{font-size:27.733333pt;}
.fs3_c01388{font-size:32.000000pt;}
.fs6_c01388{font-size:34.666667pt;}
.fs9_c01388{font-size:42.666667pt;}
.fs4_c01388{font-size:53.333333pt;}
.fs8_c01388{font-size:69.333333pt;}
.fs0_c01388{font-size:72.000000pt;}
.fs1_c01388{font-size:77.333333pt;}
.fs2_c01388{font-size:88.000000pt;}
.fs7_c01388{font-size:144.000000pt;}
.y0_c01388{bottom:0.000000pt;}
.y9_c01388{bottom:2.760000pt;}
.y8_c01388{bottom:6.425206pt;}
.y7_c01388{bottom:111.626667pt;}
.y6_c01388{bottom:241.226667pt;}
.y5_c01388{bottom:281.493333pt;}
.y3_c01388{bottom:502.293333pt;}
.y4_c01388{bottom:502.560000pt;}
.y2_c01388{bottom:534.026667pt;}
.y1_c01388{bottom:657.360000pt;}
.h8_c01388{height:11.733399pt;}
.h9_c01388{height:38.937500pt;}
.h5_c01388{height:52.343750pt;}
.h7_c01388{height:70.664062pt;}
.h2_c01388{height:81.045333pt;}
.h4_c01388{height:97.850000pt;}
.h3_c01388{height:102.996094pt;}
.h6_c01388{height:208.850521pt;}
.h1_c01388{height:979.333333pt;}
.h0_c01388{height:979.466667pt;}
.w2_c01388{width:93.222667pt;}
.w0_c01388{width:257.733333pt;}
.w1_c01388{width:258.000000pt;}
.x0_c01388{left:0.000000pt;}
.x2_c01388{left:6.533333pt;}
.x1_c01388{left:46.400000pt;}
.x3_c01388{left:50.133333pt;}
.x5_c01388{left:59.733333pt;}
.x7_c01388{left:86.034892pt;}
.x4_c01388{left:148.800000pt;}
.x6_c01388{left:237.333333pt;}
}




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